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.
 
 
 

46927 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: ["mammal"]
  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. "mew": {
  1040. name: "Mew",
  1041. parents: ["pokemon"]
  1042. },
  1043. "eevee": {
  1044. name: "Eevee",
  1045. parents: ["eeveelution"]
  1046. },
  1047. "mienshao": {
  1048. name: "Mienshao",
  1049. parents: ["pokemon"]
  1050. },
  1051. "sugar-glider": {
  1052. name: "Sugar Glider",
  1053. parents: ["opossum"]
  1054. },
  1055. "spectral-bat": {
  1056. name: "Spectral Bat",
  1057. parents: ["bat"]
  1058. },
  1059. "scolipede": {
  1060. name: "Scolipede",
  1061. parents: ["pokemon", "insect"]
  1062. },
  1063. "jackalope": {
  1064. name: "Jackalope",
  1065. parents: ["rabbit", "antelope"]
  1066. },
  1067. "caracal": {
  1068. name: "Caracal",
  1069. parents: ["cat"]
  1070. },
  1071. "stoat": {
  1072. name: "Stoat",
  1073. parents: ["mammal"]
  1074. },
  1075. "african-golden-cat": {
  1076. name: "African Golden Cat",
  1077. parents: ["cat"]
  1078. },
  1079. "gigantosaurus": {
  1080. name: "Gigantosaurus",
  1081. parents: ["dinosaur"]
  1082. },
  1083. "zorgoia": {
  1084. name: "Zorgoia",
  1085. parents: ["mammal"]
  1086. },
  1087. "monitor-lizard": {
  1088. name: "Monitor Lizard",
  1089. parents: ["lizard"]
  1090. },
  1091. "ziralkia": {
  1092. name: "Ziralkia",
  1093. parents: ["mammal"]
  1094. },
  1095. "kiiasi": {
  1096. name: "Kiiasi",
  1097. parents: ["animal"]
  1098. },
  1099. "synx": {
  1100. name: "Synx",
  1101. parents: ["monster"]
  1102. },
  1103. "panther": {
  1104. name: "Panther",
  1105. parents: ["cat"]
  1106. },
  1107. "azumarill": {
  1108. name: "Azumarill",
  1109. parents: ["pokemon"]
  1110. },
  1111. "river-snaptail": {
  1112. name: "River Snaptail",
  1113. parents: ["otter", "crocodile"]
  1114. },
  1115. "great-blue-heron": {
  1116. name: "Great Blue Heron",
  1117. parents: ["avian"]
  1118. },
  1119. "smeargle": {
  1120. name: "Smeargle",
  1121. parents: ["pokemon"]
  1122. },
  1123. "vendeilen": {
  1124. name: "Vendeilen",
  1125. parents: ["monster"]
  1126. },
  1127. "ventura": {
  1128. name: "Ventura",
  1129. parents: ["canine"]
  1130. },
  1131. "clouded-leopard": {
  1132. name: "Clouded Leopard",
  1133. parents: ["leopard"]
  1134. },
  1135. "argonian": {
  1136. name: "Argonian",
  1137. parents: ["lizard"]
  1138. },
  1139. "salazzle": {
  1140. name: "Salazzle",
  1141. parents: ["pokemon", "lizard"]
  1142. },
  1143. "je-stoff-drachen": {
  1144. name: "Je-Stoff Drachen",
  1145. parents: ["dragon"]
  1146. },
  1147. "finnish-spitz-dog": {
  1148. name: "Finnish Spitz Dog",
  1149. parents: ["dog"]
  1150. },
  1151. "gray-fox": {
  1152. name: "Gray Fox",
  1153. parents: ["fox"]
  1154. },
  1155. "opossum": {
  1156. name: "Opossum",
  1157. parents: ["mammal"]
  1158. },
  1159. "antelope": {
  1160. name: "Antelope",
  1161. parents: ["mammal"]
  1162. },
  1163. "weavile": {
  1164. name: "Weavile",
  1165. parents: ["pokemon"]
  1166. },
  1167. "pikachu": {
  1168. name: "Pikachu",
  1169. parents: ["pokemon", "mouse"]
  1170. },
  1171. "grovyle": {
  1172. name: "Grovyle",
  1173. parents: ["pokemon", "plant"]
  1174. },
  1175. "sthara": {
  1176. name: "Sthara",
  1177. parents: ["snow-leopard", "reptile"]
  1178. },
  1179. "star-warrior": {
  1180. name: "Star Warrior",
  1181. parents: ["magical"]
  1182. },
  1183. "dragonoid": {
  1184. name: "Dragonoid",
  1185. parents: ["dragon"]
  1186. },
  1187. "suicune": {
  1188. name: "Suicune",
  1189. parents: ["pokemon"]
  1190. },
  1191. "vole": {
  1192. name: "Vole",
  1193. parents: ["mammal"]
  1194. },
  1195. "blaziken": {
  1196. name: "Blaziken",
  1197. parents: ["pokemon", "avian"]
  1198. },
  1199. "buizel": {
  1200. name: "Buizel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "floatzel": {
  1204. name: "Floatzel",
  1205. parents: ["pokemon", "fish"]
  1206. },
  1207. "umok": {
  1208. name: "Umok",
  1209. parents: ["avian"]
  1210. },
  1211. "sea-monster": {
  1212. name: "Sea Monster",
  1213. parents: ["monster", "fish"]
  1214. },
  1215. "egyptian-vulture": {
  1216. name: "Egyptian Vulture",
  1217. parents: ["avian"]
  1218. },
  1219. "doberman": {
  1220. name: "Doberman",
  1221. parents: ["dog"]
  1222. },
  1223. "zangoose": {
  1224. name: "Zangoose",
  1225. parents: ["pokemon", "mongoose"]
  1226. },
  1227. "mongoose": {
  1228. name: "Mongoose",
  1229. parents: ["mammal"]
  1230. },
  1231. "wickerbeast": {
  1232. name: "Wickerbeast",
  1233. parents: ["monster"]
  1234. },
  1235. "zenari": {
  1236. name: "Zenari",
  1237. parents: ["lizard"]
  1238. },
  1239. "plant": {
  1240. name: "Plant",
  1241. parents: []
  1242. },
  1243. "raskatox": {
  1244. name: "Raskatox",
  1245. parents: ["raccoon", "skunk", "cat", "fox"]
  1246. },
  1247. "mikromare": {
  1248. name: "mikromare",
  1249. parents: ["alien"]
  1250. },
  1251. "alien": {
  1252. name: "Alien",
  1253. parents: ["animal"]
  1254. },
  1255. "deity": {
  1256. name: "Deity",
  1257. parents: []
  1258. },
  1259. "skarlan": {
  1260. name: "Skarlan",
  1261. parents: ["slug", "dragon"]
  1262. },
  1263. "slug": {
  1264. name: "Slug",
  1265. parents: ["mollusk"]
  1266. },
  1267. "mollusk": {
  1268. name: "Mollusk",
  1269. parents: ["animal"]
  1270. },
  1271. "chimera": {
  1272. name: "Chimera",
  1273. parents: ["monster"]
  1274. },
  1275. "gestalt": {
  1276. name: "Gestalt",
  1277. parents: ["construct"]
  1278. },
  1279. "mimic": {
  1280. name: "Mimic",
  1281. parents: ["monster"]
  1282. },
  1283. "calico-rat": {
  1284. name: "Calico Rat",
  1285. parents: ["rat"]
  1286. },
  1287. "panda": {
  1288. name: "Panda",
  1289. parents: ["mammal"]
  1290. },
  1291. "oni": {
  1292. name: "Oni",
  1293. parents: ["monster"]
  1294. },
  1295. "pegasus": {
  1296. name: "Pegasus",
  1297. parents: ["horse"]
  1298. },
  1299. "vulpera": {
  1300. name: "Vulpera",
  1301. parents: ["fennec-fox"]
  1302. },
  1303. "ceratosaurus": {
  1304. name: "Ceratosaurus",
  1305. parents: ["dinosaur"]
  1306. },
  1307. "nykur": {
  1308. name: "Nykur",
  1309. parents: ["horse", "monster"]
  1310. },
  1311. "giraffe": {
  1312. name: "Giraffe",
  1313. parents: ["mammal"]
  1314. },
  1315. "tauren": {
  1316. name: "Tauren",
  1317. parents: ["cow"]
  1318. },
  1319. "draconi": {
  1320. name: "Draconi",
  1321. parents: ["alien", "cat", "cyborg"]
  1322. },
  1323. "dire-wolf": {
  1324. name: "Dire Wolf",
  1325. parents: ["wolf"]
  1326. },
  1327. "ferromorph": {
  1328. name: "Ferromorph",
  1329. parents: ["construct"]
  1330. },
  1331. "meowth": {
  1332. name: "Meowth",
  1333. parents: ["cat", "pokemon"]
  1334. },
  1335. "pavodragon": {
  1336. name: "Pavodragon",
  1337. parents: ["dragon"]
  1338. },
  1339. "aaltranae": {
  1340. name: "Aaltranae",
  1341. parents: ["dragon"]
  1342. },
  1343. "cyborg": {
  1344. name: "Cyborg",
  1345. parents: ["machine"]
  1346. },
  1347. "draptor": {
  1348. name: "Draptor",
  1349. parents: ["dragon"]
  1350. },
  1351. "candy": {
  1352. name: "Candy",
  1353. parents: []
  1354. },
  1355. "drenath": {
  1356. name: "Drenath",
  1357. parents: ["dragon", "snake", "rabbit"]
  1358. },
  1359. "coyju": {
  1360. name: "Coyju",
  1361. parents: ["coyote", "kaiju"]
  1362. },
  1363. "kaiju": {
  1364. name: "Kaiju",
  1365. parents: ["monster"]
  1366. },
  1367. "nickit": {
  1368. name: "Nickit",
  1369. parents: ["pokemon", "cat"]
  1370. },
  1371. "lopunny": {
  1372. name: "Lopunny",
  1373. parents: ["pokemon", "rabbit"]
  1374. },
  1375. "korean-jindo-dog": {
  1376. name: "Korean Jindo Dog",
  1377. parents: ["dog"]
  1378. },
  1379. "naga": {
  1380. name: "Naga",
  1381. parents: ["snake", "monster"]
  1382. },
  1383. "undead": {
  1384. name: "Undead",
  1385. parents: ["monster"]
  1386. },
  1387. "whale": {
  1388. name: "Whale",
  1389. parents: ["fish"]
  1390. },
  1391. "gelato-bee": {
  1392. name: "Gelato Bee",
  1393. parents: ["bee"]
  1394. },
  1395. "bee": {
  1396. name: "Bee",
  1397. parents: ["insect"]
  1398. },
  1399. "gardevoir": {
  1400. name: "Gardevoir",
  1401. parents: ["pokemon"]
  1402. },
  1403. "ant": {
  1404. name: "Ant",
  1405. parents: ["insect"]
  1406. },
  1407. "frog": {
  1408. name: "Frog",
  1409. parents: ["amphibian"]
  1410. },
  1411. "amphibian": {
  1412. name: "Amphibian",
  1413. parents: ["animal"]
  1414. },
  1415. "pangolin": {
  1416. name: "Pangolin",
  1417. parents: ["mammal"]
  1418. },
  1419. "uragi'viidorn": {
  1420. name: "Uragi'viidorn",
  1421. parents: ["avian", "bear"]
  1422. },
  1423. "gryphdelphais": {
  1424. name: "Gryphdelphais",
  1425. parents: ["dolphin", "gryphon"]
  1426. },
  1427. "plush": {
  1428. name: "Plush",
  1429. parents: ["construct"]
  1430. },
  1431. "draiger": {
  1432. name: "Draiger",
  1433. parents: ["dragon","tiger"]
  1434. },
  1435. "foxsky": {
  1436. name: "Foxsky",
  1437. parents: ["fox", "husky"]
  1438. },
  1439. "umbreon": {
  1440. name: "Umbreon",
  1441. parents: ["eeveelution"]
  1442. },
  1443. "slime-dragon": {
  1444. name: "Slime Dragon",
  1445. parents: ["dragon", "goo"]
  1446. },
  1447. "enderman": {
  1448. name: "Enderman",
  1449. parents: ["monster"]
  1450. },
  1451. "gremlin": {
  1452. name: "Gremlin",
  1453. parents: ["monster"]
  1454. },
  1455. "dragonsune": {
  1456. name: "Dragonsune",
  1457. parents: ["dragon", "kitsune"]
  1458. },
  1459. "ghost": {
  1460. name: "Ghost",
  1461. parents: ["supernatural"]
  1462. },
  1463. "false-vampire-bat": {
  1464. name: "False Vampire Bat",
  1465. parents: ["bat"]
  1466. },
  1467. "succubus": {
  1468. name: "Succubus",
  1469. parents: ["demon"]
  1470. },
  1471. "mia": {
  1472. name: "Mia",
  1473. parents: ["canine"]
  1474. },
  1475. "rainbow": {
  1476. name: "Rainbow",
  1477. parents: ["monster"]
  1478. },
  1479. "solgaleo": {
  1480. name: "Solgaleo",
  1481. parents: ["pokemon"]
  1482. },
  1483. "lucent-nargacuga": {
  1484. name: "Lucent Nargacuga",
  1485. parents: ["monster-hunter"]
  1486. },
  1487. "monster-hunter": {
  1488. name: "Monster Hunter",
  1489. parents: ["monster"]
  1490. },
  1491. "leviathan": {
  1492. "name": "Leviathan",
  1493. "url": "sea-monster"
  1494. },
  1495. "bull": {
  1496. name: "Bull",
  1497. parents: ["mammal"]
  1498. },
  1499. "tanuki": {
  1500. name: "Tanuki",
  1501. parents: ["monster"]
  1502. },
  1503. "chakat": {
  1504. name: "Chakat",
  1505. parents: ["cat"]
  1506. },
  1507. "hydra": {
  1508. name: "Hydra",
  1509. parents: ["monster"]
  1510. },
  1511. "zigzagoon": {
  1512. name: "Zigzagoon",
  1513. parents: ["raccoon", "pokemon"]
  1514. },
  1515. "vulture": {
  1516. name: "Vulture",
  1517. parents: ["avian"]
  1518. },
  1519. "eastern-dragon": {
  1520. name: "Eastern Dragon",
  1521. parents: ["dragon"]
  1522. },
  1523. "gryffon": {
  1524. name: "Gryffon",
  1525. parents: ["phoenix", "red-panda"]
  1526. },
  1527. "amtsvane": {
  1528. name: "Amtsvane",
  1529. parents: ["reptile"]
  1530. },
  1531. "kigavi": {
  1532. name: "Kigavi",
  1533. parents: ["avian"]
  1534. },
  1535. "turian": {
  1536. name: "Turian",
  1537. parents: ["avian"]
  1538. },
  1539. "zeraora": {
  1540. name: "Zeraora",
  1541. parents: ["pokemon"]
  1542. },
  1543. "sandshrew": {
  1544. name: "Sandshrew",
  1545. parents: ["pokemon", "pangolin"]
  1546. },
  1547. "valais-blacknose-sheep": {
  1548. name: "Valais Blacknose Sheep",
  1549. parents: ["sheep"]
  1550. },
  1551. "novaleit": {
  1552. name: "Novaleit",
  1553. parents: ["mammal"]
  1554. },
  1555. "dunnoh": {
  1556. name: "Dunnoh",
  1557. parents: ["mammal"]
  1558. },
  1559. "lunaral-dragon": {
  1560. name: "Lunaral Dragon",
  1561. parents: ["dragon"]
  1562. },
  1563. "arctic-wolf": {
  1564. name: "Arctic Wolf",
  1565. parents: ["wolf"]
  1566. },
  1567. "donkey": {
  1568. name: "Donkey",
  1569. parents: ["horse"]
  1570. },
  1571. "chinchilla": {
  1572. name: "Chinchilla",
  1573. parents: ["rodent"]
  1574. },
  1575. "felkin": {
  1576. name: "Felkin",
  1577. parents: ["dragon"]
  1578. },
  1579. "tykeriel": {
  1580. name: "Tykeriel",
  1581. parents: ["avian"]
  1582. },
  1583. "folf": {
  1584. name: "Folf",
  1585. parents: ["fox", "wolf"]
  1586. },
  1587. "pooltoy": {
  1588. name: "Pooltoy",
  1589. parents: ["construct"]
  1590. },
  1591. "demi": {
  1592. name: "Demi",
  1593. parents: ["human"]
  1594. },
  1595. "stegosaurus": {
  1596. name: "Stegosaurus",
  1597. parents: ["dinosaur"]
  1598. },
  1599. "computer-virus": {
  1600. name: "Computer Virus",
  1601. parents: ["program"]
  1602. },
  1603. "program": {
  1604. name: "Program",
  1605. parents: ["construct"]
  1606. },
  1607. "space-springhare": {
  1608. name: "Space Springhare",
  1609. parents: ["rabbit"]
  1610. },
  1611. "river-drake": {
  1612. name: "River Drake",
  1613. parents: ["dragon"]
  1614. },
  1615. "djinn": {
  1616. "name": "Djinn",
  1617. "url": "supernatural"
  1618. },
  1619. "supernatural": {
  1620. name: "Supernatural",
  1621. parents: ["monster"]
  1622. },
  1623. "grasshopper-mouse": {
  1624. name: "Grasshopper Mouse",
  1625. parents: ["mouse"]
  1626. },
  1627. "somali-cat": {
  1628. name: "Somali Cat",
  1629. parents: ["cat"]
  1630. },
  1631. "minccino": {
  1632. name: "Minccino",
  1633. parents: ["pokemon", "chinchilla"]
  1634. },
  1635. "pine-marten": {
  1636. name: "Pine Marten",
  1637. parents: ["marten"]
  1638. },
  1639. "marten": {
  1640. name: "Marten",
  1641. parents: ["mustelid"]
  1642. },
  1643. "mustelid": {
  1644. name: "Mustelid",
  1645. parents: ["mammal"]
  1646. },
  1647. "caribou": {
  1648. name: "Caribou",
  1649. parents: ["deer"]
  1650. },
  1651. "gnoll": {
  1652. name: "Gnoll",
  1653. parents: ["hyena", "monster"]
  1654. },
  1655. "peacekeeper": {
  1656. name: "Peacekeeper",
  1657. parents: ["human"]
  1658. },
  1659. "river-otter": {
  1660. name: "River Otter",
  1661. parents: ["otter"]
  1662. },
  1663. "dhole": {
  1664. name: "Dhole",
  1665. parents: ["canine"]
  1666. },
  1667. "springbok": {
  1668. name: "Springbok",
  1669. parents: ["antelope"]
  1670. },
  1671. "marsupial": {
  1672. name: "Marsupial",
  1673. parents: ["mammal"]
  1674. },
  1675. "townsend-big-eared-bat": {
  1676. name: "Townsend Big-eared Bat",
  1677. parents: ["bat"]
  1678. },
  1679. "squirrel": {
  1680. name: "Squirrel",
  1681. parents: ["rodent"]
  1682. },
  1683. "magpie": {
  1684. name: "Magpie",
  1685. parents: ["corvid"]
  1686. },
  1687. "civet": {
  1688. name: "Civet",
  1689. parents: ["feliform"]
  1690. },
  1691. "feliform": {
  1692. name: "Feliform",
  1693. parents: ["mammal"]
  1694. },
  1695. "tiefling": {
  1696. name: "Tiefling",
  1697. parents: ["devil"]
  1698. },
  1699. "devil": {
  1700. name: "Devil",
  1701. parents: ["supernatural"]
  1702. },
  1703. "sika-deer": {
  1704. name: "Sika Deer",
  1705. parents: ["deer"]
  1706. },
  1707. "vaporeon": {
  1708. name: "Vaporeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "leafeon": {
  1712. name: "Leafeon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "jolteon": {
  1716. name: "Jolteon",
  1717. parents: ["eeveelution"]
  1718. },
  1719. "spireborn": {
  1720. name: "Spireborn",
  1721. parents: ["zorgoia"]
  1722. },
  1723. "vampire": {
  1724. name: "Vampire",
  1725. parents: ["monster"]
  1726. },
  1727. "extraplanar": {
  1728. name: "Extraplanar",
  1729. parents: []
  1730. },
  1731. "goo": {
  1732. name: "Goo",
  1733. parents: []
  1734. },
  1735. "skink": {
  1736. name: "Skink",
  1737. parents: ["lizard"]
  1738. },
  1739. "bat-eared-fox": {
  1740. name: "Bat-eared Fox",
  1741. parents: ["fox"]
  1742. },
  1743. "belted-kingfisher": {
  1744. name: "Belted Kingfisher",
  1745. parents: ["avian"]
  1746. },
  1747. "omnifalcon": {
  1748. name: "Omnifalcon",
  1749. parents: ["gryphon", "falcon", "harpy-eagle"]
  1750. },
  1751. "falcon": {
  1752. name: "Falcon",
  1753. parents: ["avian"]
  1754. },
  1755. "avali": {
  1756. name: "Avali",
  1757. parents: ["avian", "alien"]
  1758. },
  1759. "arctic-fox": {
  1760. name: "Arctic Fox",
  1761. parents: ["fox"]
  1762. },
  1763. "snow-tiger": {
  1764. name: "Snow Tiger",
  1765. parents: ["tiger"]
  1766. },
  1767. "marble-fox": {
  1768. name: "Marble Fox",
  1769. parents: ["fox"]
  1770. },
  1771. "king-wickerbeast": {
  1772. name: "King Wickerbeast",
  1773. parents: ["wickerbeast"]
  1774. },
  1775. "wickerbeast": {
  1776. name: "Wickerbeast",
  1777. parents: ["mammal"]
  1778. },
  1779. "european-polecat": {
  1780. name: "European Polecat",
  1781. parents: ["mustelid"]
  1782. },
  1783. "teshari": {
  1784. name: "Teshari",
  1785. parents: ["avian", "raptor"]
  1786. },
  1787. "alicorn": {
  1788. name: "Alicorn",
  1789. parents: ["horse"]
  1790. },
  1791. "atlas-moth": {
  1792. name: "Atlas Moth",
  1793. parents: ["moth"]
  1794. },
  1795. "owlbear": {
  1796. name: "Owlbear",
  1797. parents: ["owl", "bear", "monster"]
  1798. },
  1799. "owl": {
  1800. name: "Owl",
  1801. parents: ["avian"]
  1802. },
  1803. "silvertongue": {
  1804. name: "Silvertongue",
  1805. parents: ["reptile"]
  1806. },
  1807. "ahuizotl": {
  1808. name: "Ahuizotl",
  1809. parents: ["monster"]
  1810. },
  1811. "ender-dragon": {
  1812. name: "Ender Dragon",
  1813. parents: ["dragon"]
  1814. },
  1815. "bruhathkayosaurus": {
  1816. name: "Bruhathkayosaurus",
  1817. parents: ["sauropod"]
  1818. },
  1819. "sauropod": {
  1820. name: "Sauropod",
  1821. parents: ["dinosaur"]
  1822. },
  1823. "black-sable-antelope": {
  1824. name: "Black Sable Antelope",
  1825. parents: ["antelope"]
  1826. },
  1827. "slime": {
  1828. name: "Slime",
  1829. parents: ["goo"]
  1830. },
  1831. "utahraptor": {
  1832. name: "Utahraptor",
  1833. parents: ["raptor"]
  1834. },
  1835. "indian-giant-squirrel": {
  1836. name: "Indian Giant Squirrel",
  1837. parents: ["squirrel"]
  1838. },
  1839. }
  1840. //species
  1841. function getSpeciesInfo(speciesList) {
  1842. let result = new Set();
  1843. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1844. result.add(entry)
  1845. });
  1846. return Array.from(result);
  1847. };
  1848. function getSpeciesInfoHelper(species) {
  1849. if (!speciesData[species]) {
  1850. console.warn(species + " doesn't exist");
  1851. return [];
  1852. }
  1853. if (speciesData[species].parents) {
  1854. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1855. } else {
  1856. return [species];
  1857. }
  1858. }
  1859. characterMakers.push(() => makeCharacter(
  1860. {
  1861. name: "Fen",
  1862. species: ["crux"],
  1863. description: {
  1864. title: "Bio",
  1865. text: "Very furry. Sheds on everything."
  1866. },
  1867. tags: [
  1868. "anthro",
  1869. "goo"
  1870. ]
  1871. },
  1872. {
  1873. front: {
  1874. height: math.unit(12, "feet"),
  1875. weight: math.unit(1600, "lb"),
  1876. name: "Front",
  1877. image: {
  1878. source: "./media/characters/fen/front.svg",
  1879. extra: 1804/1562,
  1880. bottom: 205/2009
  1881. }
  1882. },
  1883. diving: {
  1884. height: math.unit(4.9, "meters"),
  1885. weight: math.unit(1600, "lb"),
  1886. name: "Diving",
  1887. image: {
  1888. source: "./media/characters/fen/diving.svg"
  1889. }
  1890. },
  1891. goo: {
  1892. height: math.unit(12, "feet"),
  1893. weight: math.unit(1600, "lb"),
  1894. capacity: math.unit(6, "people"),
  1895. name: "Goo",
  1896. image: {
  1897. source: "./media/characters/fen/goo.svg",
  1898. extra: 1307/1071,
  1899. bottom: 134/1441
  1900. }
  1901. },
  1902. maw: {
  1903. height: math.unit(5.03, "feet"),
  1904. name: "Maw",
  1905. image: {
  1906. source: "./media/characters/fen/maw.svg"
  1907. }
  1908. },
  1909. gooCeiling: {
  1910. height: math.unit(6.6, "feet"),
  1911. weight: math.unit(1600, "lb"),
  1912. capacity: math.unit(6, "people"),
  1913. name: "Goo (Ceiling)",
  1914. image: {
  1915. source: "./media/characters/fen/goo-ceiling.svg"
  1916. }
  1917. },
  1918. back: {
  1919. height: math.unit(12, "feet"),
  1920. weight: math.unit(1600, "lb"),
  1921. name: "Back",
  1922. image: {
  1923. source: "./media/characters/fen/back.svg",
  1924. },
  1925. info: {
  1926. description: {
  1927. mode: "append",
  1928. text: "\n\nHe is not currently looking at you."
  1929. }
  1930. }
  1931. },
  1932. full: {
  1933. height: math.unit(1.6, "meter"),
  1934. weight: math.unit(2200, "lb"),
  1935. name: "Full",
  1936. image: {
  1937. source: "./media/characters/fen/full.svg",
  1938. extra: 1133/859,
  1939. bottom: 145/1278
  1940. },
  1941. info: {
  1942. description: {
  1943. mode: "append",
  1944. text: "\n\nMunch."
  1945. }
  1946. }
  1947. },
  1948. gooLounging: {
  1949. height: math.unit(4.53, "feet"),
  1950. weight: math.unit(1600, "lb"),
  1951. capacity: math.unit(6, "people"),
  1952. name: "Goo (Lounging)",
  1953. image: {
  1954. source: "./media/characters/fen/goo.svg",
  1955. bottom: 116 / 613
  1956. }
  1957. },
  1958. lounging: {
  1959. height: math.unit(10.52, "feet"),
  1960. weight: math.unit(1600, "lb"),
  1961. name: "Lounging",
  1962. image: {
  1963. source: "./media/characters/fen/lounging.svg"
  1964. }
  1965. },
  1966. },
  1967. [
  1968. {
  1969. name: "Small",
  1970. height: math.unit(2.2428, "meter")
  1971. },
  1972. {
  1973. name: "Normal",
  1974. height: math.unit(12, "feet"),
  1975. default: true,
  1976. },
  1977. {
  1978. name: "Big",
  1979. height: math.unit(20, "feet")
  1980. },
  1981. {
  1982. name: "Minimacro",
  1983. height: math.unit(40, "feet"),
  1984. info: {
  1985. description: {
  1986. mode: "append",
  1987. text: "\n\nTOO DAMN BIG"
  1988. }
  1989. }
  1990. },
  1991. {
  1992. name: "Macro",
  1993. height: math.unit(100, "feet"),
  1994. info: {
  1995. description: {
  1996. mode: "append",
  1997. text: "\n\nTOO DAMN BIG"
  1998. }
  1999. }
  2000. },
  2001. {
  2002. name: "Megamacro",
  2003. height: math.unit(2, "miles")
  2004. },
  2005. {
  2006. name: "Gigamacro",
  2007. height: math.unit(10, "earths")
  2008. },
  2009. ]
  2010. ))
  2011. characterMakers.push(() => makeCharacter(
  2012. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2013. {
  2014. front: {
  2015. height: math.unit(183, "cm"),
  2016. weight: math.unit(80, "kg"),
  2017. name: "Front",
  2018. image: {
  2019. source: "./media/characters/sofia-fluttertail/front.svg",
  2020. bottom: 0.01,
  2021. extra: 2154 / 2081
  2022. }
  2023. },
  2024. frontAlt: {
  2025. height: math.unit(183, "cm"),
  2026. weight: math.unit(80, "kg"),
  2027. name: "Front (alt)",
  2028. image: {
  2029. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2030. }
  2031. },
  2032. back: {
  2033. height: math.unit(183, "cm"),
  2034. weight: math.unit(80, "kg"),
  2035. name: "Back",
  2036. image: {
  2037. source: "./media/characters/sofia-fluttertail/back.svg"
  2038. }
  2039. },
  2040. kneeling: {
  2041. height: math.unit(125, "cm"),
  2042. weight: math.unit(80, "kg"),
  2043. name: "Kneeling",
  2044. image: {
  2045. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2046. extra: 1033 / 977,
  2047. bottom: 23.7 / 1057
  2048. }
  2049. },
  2050. maw: {
  2051. height: math.unit(183 / 5, "cm"),
  2052. name: "Maw",
  2053. image: {
  2054. source: "./media/characters/sofia-fluttertail/maw.svg"
  2055. }
  2056. },
  2057. mawcloseup: {
  2058. height: math.unit(183 / 5 * 0.41, "cm"),
  2059. name: "Maw (Closeup)",
  2060. image: {
  2061. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2062. }
  2063. },
  2064. paws: {
  2065. height: math.unit(1.17, "feet"),
  2066. name: "Paws",
  2067. image: {
  2068. source: "./media/characters/sofia-fluttertail/paws.svg",
  2069. extra: 851 / 851,
  2070. bottom: 17 / 868
  2071. }
  2072. },
  2073. },
  2074. [
  2075. {
  2076. name: "Normal",
  2077. height: math.unit(1.83, "meter")
  2078. },
  2079. {
  2080. name: "Size Thief",
  2081. height: math.unit(18, "feet")
  2082. },
  2083. {
  2084. name: "50 Foot Collie",
  2085. height: math.unit(50, "feet")
  2086. },
  2087. {
  2088. name: "Macro",
  2089. height: math.unit(96, "feet"),
  2090. default: true
  2091. },
  2092. {
  2093. name: "Megamerger",
  2094. height: math.unit(650, "feet")
  2095. },
  2096. ]
  2097. ))
  2098. characterMakers.push(() => makeCharacter(
  2099. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2100. {
  2101. front: {
  2102. height: math.unit(7, "feet"),
  2103. weight: math.unit(100, "kg"),
  2104. name: "Front",
  2105. image: {
  2106. source: "./media/characters/march/front.svg",
  2107. extra: 1992/1851,
  2108. bottom: 39/2031
  2109. }
  2110. },
  2111. foot: {
  2112. height: math.unit(0.9, "feet"),
  2113. name: "Foot",
  2114. image: {
  2115. source: "./media/characters/march/foot.svg"
  2116. }
  2117. },
  2118. },
  2119. [
  2120. {
  2121. name: "Normal",
  2122. height: math.unit(7.9, "feet")
  2123. },
  2124. {
  2125. name: "Macro",
  2126. height: math.unit(220, "meters")
  2127. },
  2128. {
  2129. name: "Megamacro",
  2130. height: math.unit(2.98, "km"),
  2131. default: true
  2132. },
  2133. {
  2134. name: "Gigamacro",
  2135. height: math.unit(15963, "km")
  2136. },
  2137. {
  2138. name: "Teramacro",
  2139. height: math.unit(2980000000, "km")
  2140. },
  2141. {
  2142. name: "Examacro",
  2143. height: math.unit(250, "parsecs")
  2144. },
  2145. ]
  2146. ))
  2147. characterMakers.push(() => makeCharacter(
  2148. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2149. {
  2150. front: {
  2151. height: math.unit(6, "feet"),
  2152. weight: math.unit(60, "kg"),
  2153. name: "Front",
  2154. image: {
  2155. source: "./media/characters/noir/front.svg",
  2156. extra: 1,
  2157. bottom: 0.032
  2158. }
  2159. },
  2160. },
  2161. [
  2162. {
  2163. name: "Normal",
  2164. height: math.unit(6.6, "feet")
  2165. },
  2166. {
  2167. name: "Macro",
  2168. height: math.unit(500, "feet")
  2169. },
  2170. {
  2171. name: "Megamacro",
  2172. height: math.unit(2.5, "km"),
  2173. default: true
  2174. },
  2175. {
  2176. name: "Gigamacro",
  2177. height: math.unit(22500, "km")
  2178. },
  2179. {
  2180. name: "Teramacro",
  2181. height: math.unit(2500000000, "km")
  2182. },
  2183. {
  2184. name: "Examacro",
  2185. height: math.unit(200, "parsecs")
  2186. },
  2187. ]
  2188. ))
  2189. characterMakers.push(() => makeCharacter(
  2190. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  2191. {
  2192. front: {
  2193. height: math.unit(7, "feet"),
  2194. weight: math.unit(100, "kg"),
  2195. name: "Front",
  2196. image: {
  2197. source: "./media/characters/okuri/front.svg",
  2198. extra: 1,
  2199. bottom: 0.037
  2200. }
  2201. },
  2202. back: {
  2203. height: math.unit(7, "feet"),
  2204. weight: math.unit(100, "kg"),
  2205. name: "Back",
  2206. image: {
  2207. source: "./media/characters/okuri/back.svg",
  2208. extra: 1,
  2209. bottom: 0.007
  2210. }
  2211. },
  2212. },
  2213. [
  2214. {
  2215. name: "Megamacro",
  2216. height: math.unit(100, "miles"),
  2217. default: true
  2218. },
  2219. ]
  2220. ))
  2221. characterMakers.push(() => makeCharacter(
  2222. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2223. {
  2224. front: {
  2225. height: math.unit(7, "feet"),
  2226. weight: math.unit(100, "kg"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/manny/front.svg",
  2230. extra: 1,
  2231. bottom: 0.06
  2232. }
  2233. },
  2234. back: {
  2235. height: math.unit(7, "feet"),
  2236. weight: math.unit(100, "kg"),
  2237. name: "Back",
  2238. image: {
  2239. source: "./media/characters/manny/back.svg",
  2240. extra: 1,
  2241. bottom: 0.014
  2242. }
  2243. },
  2244. },
  2245. [
  2246. {
  2247. name: "Normal",
  2248. height: math.unit(7, "feet"),
  2249. },
  2250. {
  2251. name: "Macro",
  2252. height: math.unit(78, "feet"),
  2253. default: true
  2254. },
  2255. {
  2256. name: "Macro+",
  2257. height: math.unit(300, "meters")
  2258. },
  2259. {
  2260. name: "Macro++",
  2261. height: math.unit(2400, "meters")
  2262. },
  2263. {
  2264. name: "Megamacro",
  2265. height: math.unit(5167, "meters")
  2266. },
  2267. {
  2268. name: "Gigamacro",
  2269. height: math.unit(41769, "miles")
  2270. },
  2271. ]
  2272. ))
  2273. characterMakers.push(() => makeCharacter(
  2274. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2275. {
  2276. front: {
  2277. height: math.unit(7, "feet"),
  2278. weight: math.unit(100, "kg"),
  2279. name: "Front",
  2280. image: {
  2281. source: "./media/characters/adake/front-1.svg"
  2282. }
  2283. },
  2284. frontAlt: {
  2285. height: math.unit(7, "feet"),
  2286. weight: math.unit(100, "kg"),
  2287. name: "Front (Alt)",
  2288. image: {
  2289. source: "./media/characters/adake/front-2.svg",
  2290. extra: 1,
  2291. bottom: 0.01
  2292. }
  2293. },
  2294. back: {
  2295. height: math.unit(7, "feet"),
  2296. weight: math.unit(100, "kg"),
  2297. name: "Back",
  2298. image: {
  2299. source: "./media/characters/adake/back.svg",
  2300. }
  2301. },
  2302. kneel: {
  2303. height: math.unit(5.385, "feet"),
  2304. weight: math.unit(100, "kg"),
  2305. name: "Kneeling",
  2306. image: {
  2307. source: "./media/characters/adake/kneel.svg",
  2308. bottom: 0.052
  2309. }
  2310. },
  2311. },
  2312. [
  2313. {
  2314. name: "Normal",
  2315. height: math.unit(7, "feet"),
  2316. },
  2317. {
  2318. name: "Macro",
  2319. height: math.unit(78, "feet"),
  2320. default: true
  2321. },
  2322. {
  2323. name: "Macro+",
  2324. height: math.unit(300, "meters")
  2325. },
  2326. {
  2327. name: "Macro++",
  2328. height: math.unit(2400, "meters")
  2329. },
  2330. {
  2331. name: "Megamacro",
  2332. height: math.unit(5167, "meters")
  2333. },
  2334. {
  2335. name: "Gigamacro",
  2336. height: math.unit(41769, "miles")
  2337. },
  2338. ]
  2339. ))
  2340. characterMakers.push(() => makeCharacter(
  2341. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2342. {
  2343. front: {
  2344. height: math.unit(1.65, "meters"),
  2345. weight: math.unit(50, "kg"),
  2346. name: "Front",
  2347. image: {
  2348. source: "./media/characters/elijah/front.svg",
  2349. extra: 858 / 830,
  2350. bottom: 95.5 / 953.8559
  2351. }
  2352. },
  2353. back: {
  2354. height: math.unit(1.65, "meters"),
  2355. weight: math.unit(50, "kg"),
  2356. name: "Back",
  2357. image: {
  2358. source: "./media/characters/elijah/back.svg",
  2359. extra: 895 / 850,
  2360. bottom: 5.3 / 897.956
  2361. }
  2362. },
  2363. frontNsfw: {
  2364. height: math.unit(1.65, "meters"),
  2365. weight: math.unit(50, "kg"),
  2366. name: "Front (NSFW)",
  2367. image: {
  2368. source: "./media/characters/elijah/front-nsfw.svg",
  2369. extra: 858 / 830,
  2370. bottom: 95.5 / 953.8559
  2371. }
  2372. },
  2373. backNsfw: {
  2374. height: math.unit(1.65, "meters"),
  2375. weight: math.unit(50, "kg"),
  2376. name: "Back (NSFW)",
  2377. image: {
  2378. source: "./media/characters/elijah/back-nsfw.svg",
  2379. extra: 895 / 850,
  2380. bottom: 5.3 / 897.956
  2381. }
  2382. },
  2383. dick: {
  2384. height: math.unit(1, "feet"),
  2385. name: "Dick",
  2386. image: {
  2387. source: "./media/characters/elijah/dick.svg"
  2388. }
  2389. },
  2390. beakOpen: {
  2391. height: math.unit(1.25, "feet"),
  2392. name: "Beak (Open)",
  2393. image: {
  2394. source: "./media/characters/elijah/beak-open.svg"
  2395. }
  2396. },
  2397. beakShut: {
  2398. height: math.unit(1.25, "feet"),
  2399. name: "Beak (Shut)",
  2400. image: {
  2401. source: "./media/characters/elijah/beak-shut.svg"
  2402. }
  2403. },
  2404. footFlexing: {
  2405. height: math.unit(1.61, "feet"),
  2406. name: "Foot (Flexing)",
  2407. image: {
  2408. source: "./media/characters/elijah/foot-flexing.svg"
  2409. }
  2410. },
  2411. footStepping: {
  2412. height: math.unit(1.44, "feet"),
  2413. name: "Foot (Stepping)",
  2414. image: {
  2415. source: "./media/characters/elijah/foot-stepping.svg"
  2416. }
  2417. },
  2418. plantigradeLeg: {
  2419. height: math.unit(2.34, "feet"),
  2420. name: "Plantigrade Leg",
  2421. image: {
  2422. source: "./media/characters/elijah/plantigrade-leg.svg"
  2423. }
  2424. },
  2425. plantigradeFootLeft: {
  2426. height: math.unit(0.9, "feet"),
  2427. name: "Plantigrade Foot (Left)",
  2428. image: {
  2429. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2430. }
  2431. },
  2432. plantigradeFootRight: {
  2433. height: math.unit(0.9, "feet"),
  2434. name: "Plantigrade Foot (Right)",
  2435. image: {
  2436. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2437. }
  2438. },
  2439. },
  2440. [
  2441. {
  2442. name: "Normal",
  2443. height: math.unit(1.65, "meters")
  2444. },
  2445. {
  2446. name: "Macro",
  2447. height: math.unit(55, "meters"),
  2448. default: true
  2449. },
  2450. {
  2451. name: "Macro+",
  2452. height: math.unit(105, "meters")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(7 + 2/12, "feet"),
  2461. weight: math.unit(320, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/rai/front.svg",
  2465. extra: 1802/1696,
  2466. bottom: 68/1870
  2467. }
  2468. },
  2469. frontDressed: {
  2470. height: math.unit(7 + 2/12, "feet"),
  2471. weight: math.unit(320, "kg"),
  2472. name: "Front (Dressed)",
  2473. image: {
  2474. source: "./media/characters/rai/front-dressed.svg",
  2475. extra: 1802/1696,
  2476. bottom: 68/1870
  2477. }
  2478. },
  2479. side: {
  2480. height: math.unit(7 + 2/12, "feet"),
  2481. weight: math.unit(320, "kg"),
  2482. name: "Side",
  2483. image: {
  2484. source: "./media/characters/rai/side.svg",
  2485. extra: 1789/1710,
  2486. bottom: 115/1904
  2487. }
  2488. },
  2489. back: {
  2490. height: math.unit(7 + 2/12, "feet"),
  2491. weight: math.unit(320, "kg"),
  2492. name: "Back",
  2493. image: {
  2494. source: "./media/characters/rai/back.svg",
  2495. extra: 1770/1707,
  2496. bottom: 28/1798
  2497. }
  2498. },
  2499. feral: {
  2500. height: math.unit(9.5, "feet"),
  2501. weight: math.unit(640, "kg"),
  2502. name: "Feral",
  2503. image: {
  2504. source: "./media/characters/rai/feral.svg",
  2505. extra: 945/553,
  2506. bottom: 176/1121
  2507. }
  2508. },
  2509. dragon: {
  2510. height: math.unit(23, "feet"),
  2511. weight: math.unit(50000, "lb"),
  2512. name: "Dragon",
  2513. image: {
  2514. source: "./media/characters/rai/dragon.svg",
  2515. extra: 2498 / 2030,
  2516. bottom: 85.2 / 2584
  2517. }
  2518. },
  2519. maw: {
  2520. height: math.unit(1.69, "feet"),
  2521. name: "Maw",
  2522. image: {
  2523. source: "./media/characters/rai/maw.svg"
  2524. }
  2525. },
  2526. },
  2527. [
  2528. {
  2529. name: "Normal",
  2530. height: math.unit(7 + 2/12, "feet")
  2531. },
  2532. {
  2533. name: "Big",
  2534. height: math.unit(11, "feet")
  2535. },
  2536. {
  2537. name: "Macro",
  2538. height: math.unit(302, "feet"),
  2539. default: true
  2540. },
  2541. ]
  2542. ))
  2543. characterMakers.push(() => makeCharacter(
  2544. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2545. {
  2546. frontDressed: {
  2547. height: math.unit(216, "feet"),
  2548. weight: math.unit(7000000, "lb"),
  2549. name: "Front (Dressed)",
  2550. image: {
  2551. source: "./media/characters/jazzy/front-dressed.svg",
  2552. extra: 2738 / 2651,
  2553. bottom: 41.8 / 2786
  2554. }
  2555. },
  2556. backDressed: {
  2557. height: math.unit(216, "feet"),
  2558. weight: math.unit(7000000, "lb"),
  2559. name: "Back (Dressed)",
  2560. image: {
  2561. source: "./media/characters/jazzy/back-dressed.svg",
  2562. extra: 2775 / 2673,
  2563. bottom: 36.8 / 2817
  2564. }
  2565. },
  2566. front: {
  2567. height: math.unit(216, "feet"),
  2568. weight: math.unit(7000000, "lb"),
  2569. name: "Front",
  2570. image: {
  2571. source: "./media/characters/jazzy/front.svg",
  2572. extra: 2738 / 2651,
  2573. bottom: 41.8 / 2786
  2574. }
  2575. },
  2576. back: {
  2577. height: math.unit(216, "feet"),
  2578. weight: math.unit(7000000, "lb"),
  2579. name: "Back",
  2580. image: {
  2581. source: "./media/characters/jazzy/back.svg",
  2582. extra: 2775 / 2673,
  2583. bottom: 36.8 / 2817
  2584. }
  2585. },
  2586. maw: {
  2587. height: math.unit(20, "feet"),
  2588. name: "Maw",
  2589. image: {
  2590. source: "./media/characters/jazzy/maw.svg"
  2591. }
  2592. },
  2593. paws: {
  2594. height: math.unit(27.5, "feet"),
  2595. name: "Paws",
  2596. image: {
  2597. source: "./media/characters/jazzy/paws.svg"
  2598. }
  2599. },
  2600. eye: {
  2601. height: math.unit(4.4, "feet"),
  2602. name: "Eye",
  2603. image: {
  2604. source: "./media/characters/jazzy/eye.svg"
  2605. }
  2606. },
  2607. droneOffense: {
  2608. height: math.unit(9.5, "inches"),
  2609. name: "Drone (Offense)",
  2610. image: {
  2611. source: "./media/characters/jazzy/drone-offense.svg"
  2612. }
  2613. },
  2614. droneRecon: {
  2615. height: math.unit(9.5, "inches"),
  2616. name: "Drone (Recon)",
  2617. image: {
  2618. source: "./media/characters/jazzy/drone-recon.svg"
  2619. }
  2620. },
  2621. droneDefense: {
  2622. height: math.unit(9.5, "inches"),
  2623. name: "Drone (Defense)",
  2624. image: {
  2625. source: "./media/characters/jazzy/drone-defense.svg"
  2626. }
  2627. },
  2628. },
  2629. [
  2630. {
  2631. name: "Macro",
  2632. height: math.unit(216, "feet"),
  2633. default: true
  2634. },
  2635. ]
  2636. ))
  2637. characterMakers.push(() => makeCharacter(
  2638. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2639. {
  2640. front: {
  2641. height: math.unit(9 + 6/12, "feet"),
  2642. weight: math.unit(700, "lb"),
  2643. name: "Front",
  2644. image: {
  2645. source: "./media/characters/flamm/front.svg",
  2646. extra: 1751/1632,
  2647. bottom: 46/1797
  2648. }
  2649. },
  2650. buff: {
  2651. height: math.unit(9 + 6/12, "feet"),
  2652. weight: math.unit(950, "lb"),
  2653. name: "Buff",
  2654. image: {
  2655. source: "./media/characters/flamm/buff.svg",
  2656. extra: 3018/2874,
  2657. bottom: 221/3239
  2658. }
  2659. },
  2660. },
  2661. [
  2662. {
  2663. name: "Normal",
  2664. height: math.unit(9.5, "feet")
  2665. },
  2666. {
  2667. name: "Macro",
  2668. height: math.unit(200, "feet"),
  2669. default: true
  2670. },
  2671. ]
  2672. ))
  2673. characterMakers.push(() => makeCharacter(
  2674. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2675. {
  2676. front: {
  2677. height: math.unit(5 + 3/12, "feet"),
  2678. weight: math.unit(60, "kg"),
  2679. name: "Front",
  2680. image: {
  2681. source: "./media/characters/zephiro/front.svg",
  2682. extra: 2309 / 2162,
  2683. bottom: 0.069
  2684. }
  2685. },
  2686. side: {
  2687. height: math.unit(5 + 3/12, "feet"),
  2688. weight: math.unit(60, "kg"),
  2689. name: "Side",
  2690. image: {
  2691. source: "./media/characters/zephiro/side.svg",
  2692. extra: 2403 / 2279,
  2693. bottom: 0.015
  2694. }
  2695. },
  2696. back: {
  2697. height: math.unit(5 + 3/12, "feet"),
  2698. weight: math.unit(60, "kg"),
  2699. name: "Back",
  2700. image: {
  2701. source: "./media/characters/zephiro/back.svg",
  2702. extra: 2373 / 2244,
  2703. bottom: 0.013
  2704. }
  2705. },
  2706. hand: {
  2707. height: math.unit(0.68, "feet"),
  2708. name: "Hand",
  2709. image: {
  2710. source: "./media/characters/zephiro/hand.svg"
  2711. }
  2712. },
  2713. paw: {
  2714. height: math.unit(1, "feet"),
  2715. name: "Paw",
  2716. image: {
  2717. source: "./media/characters/zephiro/paw.svg"
  2718. }
  2719. },
  2720. beans: {
  2721. height: math.unit(0.93, "feet"),
  2722. name: "Beans",
  2723. image: {
  2724. source: "./media/characters/zephiro/beans.svg"
  2725. }
  2726. },
  2727. },
  2728. [
  2729. {
  2730. name: "Micro",
  2731. height: math.unit(3, "inches")
  2732. },
  2733. {
  2734. name: "Normal",
  2735. height: math.unit(5 + 3 / 12, "feet"),
  2736. default: true
  2737. },
  2738. {
  2739. name: "Macro",
  2740. height: math.unit(118, "feet")
  2741. },
  2742. ]
  2743. ))
  2744. characterMakers.push(() => makeCharacter(
  2745. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2746. {
  2747. front: {
  2748. height: math.unit(5, "feet"),
  2749. weight: math.unit(90, "kg"),
  2750. name: "Front",
  2751. image: {
  2752. source: "./media/characters/fory/front.svg",
  2753. extra: 2862 / 2674,
  2754. bottom: 180 / 3043.8
  2755. }
  2756. },
  2757. back: {
  2758. height: math.unit(5, "feet"),
  2759. weight: math.unit(90, "kg"),
  2760. name: "Back",
  2761. image: {
  2762. source: "./media/characters/fory/back.svg",
  2763. extra: 2962 / 2791,
  2764. bottom: 106 / 3071.8
  2765. }
  2766. },
  2767. foot: {
  2768. height: math.unit(2.14, "feet"),
  2769. name: "Foot",
  2770. image: {
  2771. source: "./media/characters/fory/foot.svg"
  2772. }
  2773. },
  2774. },
  2775. [
  2776. {
  2777. name: "Normal",
  2778. height: math.unit(5, "feet")
  2779. },
  2780. {
  2781. name: "Macro",
  2782. height: math.unit(50, "feet"),
  2783. default: true
  2784. },
  2785. {
  2786. name: "Megamacro",
  2787. height: math.unit(10, "miles")
  2788. },
  2789. {
  2790. name: "Gigamacro",
  2791. height: math.unit(5, "earths")
  2792. },
  2793. ]
  2794. ))
  2795. characterMakers.push(() => makeCharacter(
  2796. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2797. {
  2798. front: {
  2799. height: math.unit(7, "feet"),
  2800. weight: math.unit(90, "kg"),
  2801. name: "Front",
  2802. image: {
  2803. source: "./media/characters/kurrikage/front.svg",
  2804. extra: 1845/1733,
  2805. bottom: 119/1964
  2806. }
  2807. },
  2808. back: {
  2809. height: math.unit(7, "feet"),
  2810. weight: math.unit(90, "kg"),
  2811. name: "Back",
  2812. image: {
  2813. source: "./media/characters/kurrikage/back.svg",
  2814. extra: 1790/1677,
  2815. bottom: 61/1851
  2816. }
  2817. },
  2818. dressed: {
  2819. height: math.unit(7, "feet"),
  2820. weight: math.unit(90, "kg"),
  2821. name: "Dressed",
  2822. image: {
  2823. source: "./media/characters/kurrikage/dressed.svg",
  2824. extra: 1845/1733,
  2825. bottom: 119/1964
  2826. }
  2827. },
  2828. foot: {
  2829. height: math.unit(1.5, "feet"),
  2830. name: "Foot",
  2831. image: {
  2832. source: "./media/characters/kurrikage/foot.svg"
  2833. }
  2834. },
  2835. staff: {
  2836. height: math.unit(6.7, "feet"),
  2837. name: "Staff",
  2838. image: {
  2839. source: "./media/characters/kurrikage/staff.svg"
  2840. }
  2841. },
  2842. peek: {
  2843. height: math.unit(1.05, "feet"),
  2844. name: "Peeking",
  2845. image: {
  2846. source: "./media/characters/kurrikage/peek.svg",
  2847. bottom: 0.08
  2848. }
  2849. },
  2850. },
  2851. [
  2852. {
  2853. name: "Normal",
  2854. height: math.unit(12, "feet"),
  2855. default: true
  2856. },
  2857. {
  2858. name: "Big",
  2859. height: math.unit(20, "feet")
  2860. },
  2861. {
  2862. name: "Macro",
  2863. height: math.unit(500, "feet")
  2864. },
  2865. {
  2866. name: "Megamacro",
  2867. height: math.unit(20, "miles")
  2868. },
  2869. ]
  2870. ))
  2871. characterMakers.push(() => makeCharacter(
  2872. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2873. {
  2874. front: {
  2875. height: math.unit(6, "feet"),
  2876. weight: math.unit(75, "kg"),
  2877. name: "Front",
  2878. image: {
  2879. source: "./media/characters/shingo/front.svg",
  2880. extra: 1900/1825,
  2881. bottom: 82/1982
  2882. }
  2883. },
  2884. side: {
  2885. height: math.unit(6, "feet"),
  2886. weight: math.unit(75, "kg"),
  2887. name: "Side",
  2888. image: {
  2889. source: "./media/characters/shingo/side.svg",
  2890. extra: 1930/1865,
  2891. bottom: 16/1946
  2892. }
  2893. },
  2894. back: {
  2895. height: math.unit(6, "feet"),
  2896. weight: math.unit(75, "kg"),
  2897. name: "Back",
  2898. image: {
  2899. source: "./media/characters/shingo/back.svg",
  2900. extra: 1922/1852,
  2901. bottom: 16/1938
  2902. }
  2903. },
  2904. frontDressed: {
  2905. height: math.unit(6, "feet"),
  2906. weight: math.unit(150, "lb"),
  2907. name: "Front-dressed",
  2908. image: {
  2909. source: "./media/characters/shingo/front-dressed.svg",
  2910. extra: 1900/1825,
  2911. bottom: 82/1982
  2912. }
  2913. },
  2914. paw: {
  2915. height: math.unit(1.29, "feet"),
  2916. name: "Paw",
  2917. image: {
  2918. source: "./media/characters/shingo/paw.svg"
  2919. }
  2920. },
  2921. hand: {
  2922. height: math.unit(1.07, "feet"),
  2923. name: "Hand",
  2924. image: {
  2925. source: "./media/characters/shingo/hand.svg"
  2926. }
  2927. },
  2928. frontAlt: {
  2929. height: math.unit(6, "feet"),
  2930. weight: math.unit(75, "kg"),
  2931. name: "Front (Alt)",
  2932. image: {
  2933. source: "./media/characters/shingo/front-alt.svg",
  2934. extra: 3511 / 3338,
  2935. bottom: 0.005
  2936. }
  2937. },
  2938. frontAlt2: {
  2939. height: math.unit(6, "feet"),
  2940. weight: math.unit(75, "kg"),
  2941. name: "Front (Alt 2)",
  2942. image: {
  2943. source: "./media/characters/shingo/front-alt-2.svg",
  2944. extra: 706/681,
  2945. bottom: 11/717
  2946. }
  2947. },
  2948. pawAlt: {
  2949. height: math.unit(1, "feet"),
  2950. name: "Paw (Alt)",
  2951. image: {
  2952. source: "./media/characters/shingo/paw-alt.svg"
  2953. }
  2954. },
  2955. },
  2956. [
  2957. {
  2958. name: "Micro",
  2959. height: math.unit(4, "inches")
  2960. },
  2961. {
  2962. name: "Normal",
  2963. height: math.unit(6, "feet"),
  2964. default: true
  2965. },
  2966. {
  2967. name: "Macro",
  2968. height: math.unit(108, "feet")
  2969. },
  2970. {
  2971. name: "Macro+",
  2972. height: math.unit(1500, "feet")
  2973. },
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2978. {
  2979. side: {
  2980. height: math.unit(6, "feet"),
  2981. weight: math.unit(75, "kg"),
  2982. name: "Side",
  2983. image: {
  2984. source: "./media/characters/aigey/side.svg"
  2985. }
  2986. },
  2987. },
  2988. [
  2989. {
  2990. name: "Macro",
  2991. height: math.unit(200, "feet"),
  2992. default: true
  2993. },
  2994. {
  2995. name: "Megamacro",
  2996. height: math.unit(100, "miles")
  2997. },
  2998. ]
  2999. )
  3000. )
  3001. characterMakers.push(() => makeCharacter(
  3002. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3003. {
  3004. front: {
  3005. height: math.unit(5 + 5 / 12, "feet"),
  3006. weight: math.unit(75, "kg"),
  3007. name: "Front",
  3008. image: {
  3009. source: "./media/characters/natasha/front.svg",
  3010. extra: 859 / 824,
  3011. bottom: 23 / 879.6
  3012. }
  3013. },
  3014. frontNsfw: {
  3015. height: math.unit(5 + 5 / 12, "feet"),
  3016. weight: math.unit(75, "kg"),
  3017. name: "Front (NSFW)",
  3018. image: {
  3019. source: "./media/characters/natasha/front-nsfw.svg",
  3020. extra: 859 / 824,
  3021. bottom: 23 / 879.6
  3022. }
  3023. },
  3024. frontErect: {
  3025. height: math.unit(5 + 5 / 12, "feet"),
  3026. weight: math.unit(75, "kg"),
  3027. name: "Front (Erect)",
  3028. image: {
  3029. source: "./media/characters/natasha/front-erect.svg",
  3030. extra: 859 / 824,
  3031. bottom: 23 / 879.6
  3032. }
  3033. },
  3034. back: {
  3035. height: math.unit(5 + 5 / 12, "feet"),
  3036. weight: math.unit(75, "kg"),
  3037. name: "Back",
  3038. image: {
  3039. source: "./media/characters/natasha/back.svg",
  3040. extra: 887.9 / 852.6,
  3041. bottom: 9.7 / 896.4
  3042. }
  3043. },
  3044. backAlt: {
  3045. height: math.unit(5 + 5 / 12, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Back (Alt)",
  3048. image: {
  3049. source: "./media/characters/natasha/back-alt.svg",
  3050. extra: 1236.7 / 1192,
  3051. bottom: 22.3 / 1258.2
  3052. }
  3053. },
  3054. dick: {
  3055. height: math.unit(1.772, "feet"),
  3056. name: "Dick",
  3057. image: {
  3058. source: "./media/characters/natasha/dick.svg"
  3059. }
  3060. },
  3061. paw: {
  3062. height: math.unit(0.250, "meters"),
  3063. name: "Paw",
  3064. image: {
  3065. source: "./media/characters/natasha/paw.svg"
  3066. }
  3067. },
  3068. },
  3069. [
  3070. {
  3071. name: "Normal",
  3072. height: math.unit(5 + 5 / 12, "feet")
  3073. },
  3074. {
  3075. name: "Large",
  3076. height: math.unit(12, "feet")
  3077. },
  3078. {
  3079. name: "Macro",
  3080. height: math.unit(100, "feet"),
  3081. default: true
  3082. },
  3083. {
  3084. name: "Macro+",
  3085. height: math.unit(260, "feet")
  3086. },
  3087. {
  3088. name: "Macro++",
  3089. height: math.unit(1, "mile")
  3090. },
  3091. ]
  3092. ))
  3093. characterMakers.push(() => makeCharacter(
  3094. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3095. {
  3096. front: {
  3097. height: math.unit(6, "feet"),
  3098. weight: math.unit(75, "kg"),
  3099. name: "Front",
  3100. image: {
  3101. source: "./media/characters/malik/front.svg"
  3102. }
  3103. },
  3104. side: {
  3105. height: math.unit(6, "feet"),
  3106. weight: math.unit(75, "kg"),
  3107. name: "Side",
  3108. image: {
  3109. source: "./media/characters/malik/side.svg",
  3110. extra: 1.1539
  3111. }
  3112. },
  3113. back: {
  3114. height: math.unit(6, "feet"),
  3115. weight: math.unit(75, "kg"),
  3116. name: "Back",
  3117. image: {
  3118. source: "./media/characters/malik/back.svg"
  3119. }
  3120. },
  3121. },
  3122. [
  3123. {
  3124. name: "Macro",
  3125. height: math.unit(156, "feet"),
  3126. default: true
  3127. },
  3128. {
  3129. name: "Macro+",
  3130. height: math.unit(1188, "feet")
  3131. },
  3132. ]
  3133. ))
  3134. characterMakers.push(() => makeCharacter(
  3135. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3136. {
  3137. front: {
  3138. height: math.unit(6, "feet"),
  3139. weight: math.unit(75, "kg"),
  3140. name: "Front",
  3141. image: {
  3142. source: "./media/characters/sefer/front.svg",
  3143. extra: 848 / 659,
  3144. bottom: 28.3 / 876.442
  3145. }
  3146. },
  3147. back: {
  3148. height: math.unit(6, "feet"),
  3149. weight: math.unit(75, "kg"),
  3150. name: "Back",
  3151. image: {
  3152. source: "./media/characters/sefer/back.svg",
  3153. extra: 864 / 695,
  3154. bottom: 10 / 871
  3155. }
  3156. },
  3157. frontDressed: {
  3158. height: math.unit(6, "feet"),
  3159. weight: math.unit(75, "kg"),
  3160. name: "Front (Dressed)",
  3161. image: {
  3162. source: "./media/characters/sefer/front-dressed.svg",
  3163. extra: 839 / 653,
  3164. bottom: 37.6 / 878
  3165. }
  3166. },
  3167. },
  3168. [
  3169. {
  3170. name: "Normal",
  3171. height: math.unit(6, "feet"),
  3172. default: true
  3173. },
  3174. ]
  3175. ))
  3176. characterMakers.push(() => makeCharacter(
  3177. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3178. {
  3179. body: {
  3180. height: math.unit(2.2428, "meter"),
  3181. weight: math.unit(124.738, "kg"),
  3182. name: "Body",
  3183. image: {
  3184. extra: 1225 / 1050,
  3185. source: "./media/characters/north/front.svg"
  3186. }
  3187. }
  3188. },
  3189. [
  3190. {
  3191. name: "Micro",
  3192. height: math.unit(4, "inches")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(63, "meters")
  3197. },
  3198. {
  3199. name: "Megamacro",
  3200. height: math.unit(101, "miles"),
  3201. default: true
  3202. }
  3203. ]
  3204. ))
  3205. characterMakers.push(() => makeCharacter(
  3206. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3207. {
  3208. angled: {
  3209. height: math.unit(4, "meter"),
  3210. weight: math.unit(150, "kg"),
  3211. name: "Angled",
  3212. image: {
  3213. source: "./media/characters/talan/angled-sfw.svg",
  3214. bottom: 29 / 3734
  3215. }
  3216. },
  3217. angledNsfw: {
  3218. height: math.unit(4, "meter"),
  3219. weight: math.unit(150, "kg"),
  3220. name: "Angled (NSFW)",
  3221. image: {
  3222. source: "./media/characters/talan/angled-nsfw.svg",
  3223. bottom: 29 / 3734
  3224. }
  3225. },
  3226. frontNsfw: {
  3227. height: math.unit(4, "meter"),
  3228. weight: math.unit(150, "kg"),
  3229. name: "Front (NSFW)",
  3230. image: {
  3231. source: "./media/characters/talan/front-nsfw.svg",
  3232. bottom: 29 / 3734
  3233. }
  3234. },
  3235. sideNsfw: {
  3236. height: math.unit(4, "meter"),
  3237. weight: math.unit(150, "kg"),
  3238. name: "Side (NSFW)",
  3239. image: {
  3240. source: "./media/characters/talan/side-nsfw.svg",
  3241. bottom: 29 / 3734
  3242. }
  3243. },
  3244. back: {
  3245. height: math.unit(4, "meter"),
  3246. weight: math.unit(150, "kg"),
  3247. name: "Back",
  3248. image: {
  3249. source: "./media/characters/talan/back.svg"
  3250. }
  3251. },
  3252. dickBottom: {
  3253. height: math.unit(0.621, "meter"),
  3254. name: "Dick (Bottom)",
  3255. image: {
  3256. source: "./media/characters/talan/dick-bottom.svg"
  3257. }
  3258. },
  3259. dickTop: {
  3260. height: math.unit(0.621, "meter"),
  3261. name: "Dick (Top)",
  3262. image: {
  3263. source: "./media/characters/talan/dick-top.svg"
  3264. }
  3265. },
  3266. dickSide: {
  3267. height: math.unit(0.305, "meter"),
  3268. name: "Dick (Side)",
  3269. image: {
  3270. source: "./media/characters/talan/dick-side.svg"
  3271. }
  3272. },
  3273. dickFront: {
  3274. height: math.unit(0.305, "meter"),
  3275. name: "Dick (Front)",
  3276. image: {
  3277. source: "./media/characters/talan/dick-front.svg"
  3278. }
  3279. },
  3280. },
  3281. [
  3282. {
  3283. name: "Normal",
  3284. height: math.unit(4, "meters")
  3285. },
  3286. {
  3287. name: "Macro",
  3288. height: math.unit(100, "meters")
  3289. },
  3290. {
  3291. name: "Megamacro",
  3292. height: math.unit(2, "miles"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Gigamacro",
  3297. height: math.unit(5000, "miles")
  3298. },
  3299. {
  3300. name: "Teramacro",
  3301. height: math.unit(100, "parsecs")
  3302. }
  3303. ]
  3304. ))
  3305. characterMakers.push(() => makeCharacter(
  3306. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3307. {
  3308. front: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(90, "kg"),
  3311. name: "Front",
  3312. image: {
  3313. source: "./media/characters/gael'rathus/front.svg"
  3314. }
  3315. },
  3316. frontAlt: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(90, "kg"),
  3319. name: "Front (alt)",
  3320. image: {
  3321. source: "./media/characters/gael'rathus/front-alt.svg"
  3322. }
  3323. },
  3324. frontAlt2: {
  3325. height: math.unit(2, "meter"),
  3326. weight: math.unit(90, "kg"),
  3327. name: "Front (alt 2)",
  3328. image: {
  3329. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3330. }
  3331. }
  3332. },
  3333. [
  3334. {
  3335. name: "Normal",
  3336. height: math.unit(9, "feet"),
  3337. default: true
  3338. },
  3339. {
  3340. name: "Large",
  3341. height: math.unit(25, "feet")
  3342. },
  3343. {
  3344. name: "Macro",
  3345. height: math.unit(0.25, "miles")
  3346. },
  3347. {
  3348. name: "Megamacro",
  3349. height: math.unit(10, "miles")
  3350. }
  3351. ]
  3352. ))
  3353. characterMakers.push(() => makeCharacter(
  3354. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3355. {
  3356. side: {
  3357. height: math.unit(2, "meter"),
  3358. weight: math.unit(140, "kg"),
  3359. name: "Side",
  3360. image: {
  3361. source: "./media/characters/sosha/side.svg",
  3362. bottom: 0.042
  3363. }
  3364. },
  3365. },
  3366. [
  3367. {
  3368. name: "Normal",
  3369. height: math.unit(12, "feet"),
  3370. default: true
  3371. }
  3372. ]
  3373. ))
  3374. characterMakers.push(() => makeCharacter(
  3375. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3376. {
  3377. side: {
  3378. height: math.unit(5 + 5 / 12, "feet"),
  3379. weight: math.unit(170, "kg"),
  3380. name: "Side",
  3381. image: {
  3382. source: "./media/characters/runnola/side.svg",
  3383. extra: 741 / 448,
  3384. bottom: 0.05
  3385. }
  3386. },
  3387. },
  3388. [
  3389. {
  3390. name: "Small",
  3391. height: math.unit(3, "feet")
  3392. },
  3393. {
  3394. name: "Normal",
  3395. height: math.unit(5 + 5 / 12, "feet"),
  3396. default: true
  3397. },
  3398. {
  3399. name: "Big",
  3400. height: math.unit(10, "feet")
  3401. },
  3402. ]
  3403. ))
  3404. characterMakers.push(() => makeCharacter(
  3405. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3406. {
  3407. front: {
  3408. height: math.unit(2, "meter"),
  3409. weight: math.unit(50, "kg"),
  3410. name: "Front",
  3411. image: {
  3412. source: "./media/characters/kurribird/front.svg",
  3413. bottom: 0.015
  3414. }
  3415. },
  3416. frontAlt: {
  3417. height: math.unit(1.5, "meter"),
  3418. weight: math.unit(50, "kg"),
  3419. name: "Front (Alt)",
  3420. image: {
  3421. source: "./media/characters/kurribird/front-alt.svg",
  3422. extra: 1.45
  3423. }
  3424. },
  3425. },
  3426. [
  3427. {
  3428. name: "Normal",
  3429. height: math.unit(7, "feet")
  3430. },
  3431. {
  3432. name: "Big",
  3433. height: math.unit(12, "feet"),
  3434. default: true
  3435. },
  3436. {
  3437. name: "Macro",
  3438. height: math.unit(1500, "feet")
  3439. },
  3440. {
  3441. name: "Megamacro",
  3442. height: math.unit(2, "miles")
  3443. }
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3448. {
  3449. front: {
  3450. height: math.unit(2, "meter"),
  3451. weight: math.unit(80, "kg"),
  3452. name: "Front",
  3453. image: {
  3454. source: "./media/characters/elbial/front.svg",
  3455. extra: 1643 / 1556,
  3456. bottom: 60.2 / 1696
  3457. }
  3458. },
  3459. side: {
  3460. height: math.unit(2, "meter"),
  3461. weight: math.unit(80, "kg"),
  3462. name: "Side",
  3463. image: {
  3464. source: "./media/characters/elbial/side.svg",
  3465. extra: 1601/1528,
  3466. bottom: 97/1698
  3467. }
  3468. },
  3469. back: {
  3470. height: math.unit(2, "meter"),
  3471. weight: math.unit(80, "kg"),
  3472. name: "Back",
  3473. image: {
  3474. source: "./media/characters/elbial/back.svg",
  3475. extra: 1653/1569,
  3476. bottom: 20/1673
  3477. }
  3478. },
  3479. frontDressed: {
  3480. height: math.unit(2, "meter"),
  3481. weight: math.unit(80, "kg"),
  3482. name: "Front (Dressed)",
  3483. image: {
  3484. source: "./media/characters/elbial/front-dressed.svg",
  3485. extra: 1638/1569,
  3486. bottom: 70/1708
  3487. }
  3488. },
  3489. genitals: {
  3490. height: math.unit(2 / 3.367, "meter"),
  3491. name: "Genitals",
  3492. image: {
  3493. source: "./media/characters/elbial/genitals.svg"
  3494. }
  3495. },
  3496. },
  3497. [
  3498. {
  3499. name: "Large",
  3500. height: math.unit(100, "feet")
  3501. },
  3502. {
  3503. name: "Macro",
  3504. height: math.unit(500, "feet"),
  3505. default: true
  3506. },
  3507. {
  3508. name: "Megamacro",
  3509. height: math.unit(10, "miles")
  3510. },
  3511. {
  3512. name: "Gigamacro",
  3513. height: math.unit(25000, "miles")
  3514. },
  3515. {
  3516. name: "Full-Size",
  3517. height: math.unit(8000000, "gigaparsecs")
  3518. }
  3519. ]
  3520. ))
  3521. characterMakers.push(() => makeCharacter(
  3522. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3523. {
  3524. front: {
  3525. height: math.unit(2, "meter"),
  3526. weight: math.unit(60, "kg"),
  3527. name: "Front",
  3528. image: {
  3529. source: "./media/characters/noah/front.svg"
  3530. }
  3531. },
  3532. talons: {
  3533. height: math.unit(0.315, "meter"),
  3534. name: "Talons",
  3535. image: {
  3536. source: "./media/characters/noah/talons.svg"
  3537. }
  3538. }
  3539. },
  3540. [
  3541. {
  3542. name: "Large",
  3543. height: math.unit(50, "feet")
  3544. },
  3545. {
  3546. name: "Macro",
  3547. height: math.unit(750, "feet"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Megamacro",
  3552. height: math.unit(50, "miles")
  3553. },
  3554. {
  3555. name: "Gigamacro",
  3556. height: math.unit(100000, "miles")
  3557. },
  3558. {
  3559. name: "Full-Size",
  3560. height: math.unit(3000000000, "miles")
  3561. }
  3562. ]
  3563. ))
  3564. characterMakers.push(() => makeCharacter(
  3565. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3566. {
  3567. front: {
  3568. height: math.unit(2, "meter"),
  3569. weight: math.unit(80, "kg"),
  3570. name: "Front",
  3571. image: {
  3572. source: "./media/characters/natalya/front.svg"
  3573. }
  3574. },
  3575. back: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Back",
  3579. image: {
  3580. source: "./media/characters/natalya/back.svg"
  3581. }
  3582. }
  3583. },
  3584. [
  3585. {
  3586. name: "Normal",
  3587. height: math.unit(150, "feet"),
  3588. default: true
  3589. },
  3590. {
  3591. name: "Megamacro",
  3592. height: math.unit(5, "miles")
  3593. },
  3594. {
  3595. name: "Full-Size",
  3596. height: math.unit(600, "kiloparsecs")
  3597. }
  3598. ]
  3599. ))
  3600. characterMakers.push(() => makeCharacter(
  3601. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3602. {
  3603. front: {
  3604. height: math.unit(2, "meter"),
  3605. weight: math.unit(50, "kg"),
  3606. name: "Front",
  3607. image: {
  3608. source: "./media/characters/erestrebah/front.svg",
  3609. extra: 1262/1162,
  3610. bottom: 96/1358
  3611. }
  3612. },
  3613. back: {
  3614. height: math.unit(2, "meter"),
  3615. weight: math.unit(50, "kg"),
  3616. name: "Back",
  3617. image: {
  3618. source: "./media/characters/erestrebah/back.svg",
  3619. extra: 1257/1139,
  3620. bottom: 13/1270
  3621. }
  3622. },
  3623. wing: {
  3624. height: math.unit(2, "meter"),
  3625. weight: math.unit(50, "kg"),
  3626. name: "Wing",
  3627. image: {
  3628. source: "./media/characters/erestrebah/wing.svg",
  3629. extra: 1262/1162,
  3630. bottom: 96/1358
  3631. }
  3632. },
  3633. mouth: {
  3634. height: math.unit(0.39, "feet"),
  3635. name: "Mouth",
  3636. image: {
  3637. source: "./media/characters/erestrebah/mouth.svg"
  3638. }
  3639. }
  3640. },
  3641. [
  3642. {
  3643. name: "Normal",
  3644. height: math.unit(10, "feet")
  3645. },
  3646. {
  3647. name: "Large",
  3648. height: math.unit(50, "feet"),
  3649. default: true
  3650. },
  3651. {
  3652. name: "Macro",
  3653. height: math.unit(300, "feet")
  3654. },
  3655. {
  3656. name: "Macro+",
  3657. height: math.unit(750, "feet")
  3658. },
  3659. {
  3660. name: "Megamacro",
  3661. height: math.unit(3, "miles")
  3662. }
  3663. ]
  3664. ))
  3665. characterMakers.push(() => makeCharacter(
  3666. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3667. {
  3668. front: {
  3669. height: math.unit(2, "meter"),
  3670. weight: math.unit(80, "kg"),
  3671. name: "Front",
  3672. image: {
  3673. source: "./media/characters/jennifer/front.svg",
  3674. bottom: 0.11,
  3675. extra: 1.16
  3676. }
  3677. },
  3678. frontAlt: {
  3679. height: math.unit(2, "meter"),
  3680. weight: math.unit(80, "kg"),
  3681. name: "Front (Alt)",
  3682. image: {
  3683. source: "./media/characters/jennifer/front-alt.svg"
  3684. }
  3685. }
  3686. },
  3687. [
  3688. {
  3689. name: "Canon Height",
  3690. height: math.unit(120, "feet"),
  3691. default: true
  3692. },
  3693. {
  3694. name: "Macro+",
  3695. height: math.unit(300, "feet")
  3696. },
  3697. {
  3698. name: "Megamacro",
  3699. height: math.unit(20000, "feet")
  3700. }
  3701. ]
  3702. ))
  3703. characterMakers.push(() => makeCharacter(
  3704. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3705. {
  3706. front: {
  3707. height: math.unit(2, "meter"),
  3708. weight: math.unit(50, "kg"),
  3709. name: "Front",
  3710. image: {
  3711. source: "./media/characters/kalista/front.svg",
  3712. extra: 1314/1145,
  3713. bottom: 101/1415
  3714. }
  3715. },
  3716. back: {
  3717. height: math.unit(2, "meter"),
  3718. weight: math.unit(50, "kg"),
  3719. name: "Back",
  3720. image: {
  3721. source: "./media/characters/kalista/back.svg",
  3722. extra: 1366 / 1156,
  3723. bottom: 33.9 / 1362.78
  3724. }
  3725. }
  3726. },
  3727. [
  3728. {
  3729. name: "Uncomfortably Small",
  3730. height: math.unit(10, "feet")
  3731. },
  3732. {
  3733. name: "Small",
  3734. height: math.unit(30, "feet")
  3735. },
  3736. {
  3737. name: "Macro",
  3738. height: math.unit(100, "feet"),
  3739. default: true
  3740. },
  3741. {
  3742. name: "Macro+",
  3743. height: math.unit(2000, "feet")
  3744. },
  3745. {
  3746. name: "True Form",
  3747. height: math.unit(8924, "miles")
  3748. }
  3749. ]
  3750. ))
  3751. characterMakers.push(() => makeCharacter(
  3752. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3753. {
  3754. front: {
  3755. height: math.unit(2, "meter"),
  3756. weight: math.unit(120, "kg"),
  3757. name: "Front",
  3758. image: {
  3759. source: "./media/characters/ggv/front.svg"
  3760. }
  3761. },
  3762. side: {
  3763. height: math.unit(2, "meter"),
  3764. weight: math.unit(120, "kg"),
  3765. name: "Side",
  3766. image: {
  3767. source: "./media/characters/ggv/side.svg"
  3768. }
  3769. }
  3770. },
  3771. [
  3772. {
  3773. name: "Extremely Puny",
  3774. height: math.unit(9 + 5 / 12, "feet")
  3775. },
  3776. {
  3777. name: "Horribly Small",
  3778. height: math.unit(47.7, "miles"),
  3779. default: true
  3780. },
  3781. {
  3782. name: "Reasonably Sized",
  3783. height: math.unit(25000, "parsecs")
  3784. },
  3785. {
  3786. name: "Slightly Uncompressed",
  3787. height: math.unit(7.77e31, "parsecs")
  3788. },
  3789. {
  3790. name: "Omniversal",
  3791. height: math.unit(1e300, "meters")
  3792. },
  3793. ]
  3794. ))
  3795. characterMakers.push(() => makeCharacter(
  3796. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3797. {
  3798. front: {
  3799. height: math.unit(2, "meter"),
  3800. weight: math.unit(75, "lb"),
  3801. name: "Front",
  3802. image: {
  3803. source: "./media/characters/napalm/front.svg"
  3804. }
  3805. },
  3806. back: {
  3807. height: math.unit(2, "meter"),
  3808. weight: math.unit(75, "lb"),
  3809. name: "Back",
  3810. image: {
  3811. source: "./media/characters/napalm/back.svg"
  3812. }
  3813. }
  3814. },
  3815. [
  3816. {
  3817. name: "Standard",
  3818. height: math.unit(55, "feet"),
  3819. default: true
  3820. }
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(7 + 5 / 6, "feet"),
  3828. weight: math.unit(325, "lb"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/asana/front.svg",
  3832. extra: 1133 / 1060,
  3833. bottom: 15.2 / 1148.6
  3834. }
  3835. },
  3836. back: {
  3837. height: math.unit(7 + 5 / 6, "feet"),
  3838. weight: math.unit(325, "lb"),
  3839. name: "Back",
  3840. image: {
  3841. source: "./media/characters/asana/back.svg",
  3842. extra: 1114 / 1043,
  3843. bottom: 5 / 1120
  3844. }
  3845. },
  3846. dressedDark: {
  3847. height: math.unit(7 + 5 / 6, "feet"),
  3848. weight: math.unit(325, "lb"),
  3849. name: "Dressed (Dark)",
  3850. image: {
  3851. source: "./media/characters/asana/dressed-dark.svg",
  3852. extra: 1133 / 1060,
  3853. bottom: 15.2 / 1148.6
  3854. }
  3855. },
  3856. dressedLight: {
  3857. height: math.unit(7 + 5 / 6, "feet"),
  3858. weight: math.unit(325, "lb"),
  3859. name: "Dressed (Light)",
  3860. image: {
  3861. source: "./media/characters/asana/dressed-light.svg",
  3862. extra: 1133 / 1060,
  3863. bottom: 15.2 / 1148.6
  3864. }
  3865. },
  3866. },
  3867. [
  3868. {
  3869. name: "Standard",
  3870. height: math.unit(7 + 5 / 6, "feet"),
  3871. default: true
  3872. },
  3873. {
  3874. name: "Large",
  3875. height: math.unit(10, "meters")
  3876. },
  3877. {
  3878. name: "Macro",
  3879. height: math.unit(2500, "meters")
  3880. },
  3881. {
  3882. name: "Megamacro",
  3883. height: math.unit(5e6, "meters")
  3884. },
  3885. {
  3886. name: "Examacro",
  3887. height: math.unit(5e12, "lightyears")
  3888. },
  3889. {
  3890. name: "Max Size",
  3891. height: math.unit(1e31, "lightyears")
  3892. }
  3893. ]
  3894. ))
  3895. characterMakers.push(() => makeCharacter(
  3896. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3897. {
  3898. front: {
  3899. height: math.unit(2, "meter"),
  3900. weight: math.unit(60, "kg"),
  3901. name: "Front",
  3902. image: {
  3903. source: "./media/characters/ebony/front.svg",
  3904. bottom: 0.03,
  3905. extra: 1045 / 810 + 0.03
  3906. }
  3907. },
  3908. side: {
  3909. height: math.unit(2, "meter"),
  3910. weight: math.unit(60, "kg"),
  3911. name: "Side",
  3912. image: {
  3913. source: "./media/characters/ebony/side.svg",
  3914. bottom: 0.03,
  3915. extra: 1045 / 810 + 0.03
  3916. }
  3917. },
  3918. back: {
  3919. height: math.unit(2, "meter"),
  3920. weight: math.unit(60, "kg"),
  3921. name: "Back",
  3922. image: {
  3923. source: "./media/characters/ebony/back.svg",
  3924. bottom: 0.01,
  3925. extra: 1045 / 810 + 0.01
  3926. }
  3927. },
  3928. },
  3929. [
  3930. // TODO check why I did this lol
  3931. {
  3932. name: "Standard",
  3933. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3934. default: true
  3935. },
  3936. {
  3937. name: "Macro",
  3938. height: math.unit(200, "feet")
  3939. },
  3940. {
  3941. name: "Gigamacro",
  3942. height: math.unit(13000, "km")
  3943. }
  3944. ]
  3945. ))
  3946. characterMakers.push(() => makeCharacter(
  3947. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3948. {
  3949. front: {
  3950. height: math.unit(6, "feet"),
  3951. weight: math.unit(175, "lb"),
  3952. name: "Front",
  3953. image: {
  3954. source: "./media/characters/mountain/front.svg",
  3955. extra: 972 / 955,
  3956. bottom: 64 / 1036.6
  3957. }
  3958. },
  3959. back: {
  3960. height: math.unit(6, "feet"),
  3961. weight: math.unit(175, "lb"),
  3962. name: "Back",
  3963. image: {
  3964. source: "./media/characters/mountain/back.svg",
  3965. extra: 970 / 950,
  3966. bottom: 28.25 / 999
  3967. }
  3968. },
  3969. },
  3970. [
  3971. {
  3972. name: "Large",
  3973. height: math.unit(20, "meters")
  3974. },
  3975. {
  3976. name: "Macro",
  3977. height: math.unit(300, "meters")
  3978. },
  3979. {
  3980. name: "Gigamacro",
  3981. height: math.unit(10000, "km"),
  3982. default: true
  3983. },
  3984. {
  3985. name: "Examacro",
  3986. height: math.unit(10e9, "lightyears")
  3987. }
  3988. ]
  3989. ))
  3990. characterMakers.push(() => makeCharacter(
  3991. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3992. {
  3993. front: {
  3994. height: math.unit(8, "feet"),
  3995. weight: math.unit(500, "lb"),
  3996. name: "Front",
  3997. image: {
  3998. source: "./media/characters/rick/front.svg"
  3999. }
  4000. }
  4001. },
  4002. [
  4003. {
  4004. name: "Normal",
  4005. height: math.unit(8, "feet"),
  4006. default: true
  4007. },
  4008. {
  4009. name: "Macro",
  4010. height: math.unit(5, "km")
  4011. }
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4016. {
  4017. front: {
  4018. height: math.unit(8, "feet"),
  4019. weight: math.unit(120, "lb"),
  4020. name: "Front",
  4021. image: {
  4022. source: "./media/characters/ona/front.svg"
  4023. }
  4024. },
  4025. frontAlt: {
  4026. height: math.unit(8, "feet"),
  4027. weight: math.unit(120, "lb"),
  4028. name: "Front (Alt)",
  4029. image: {
  4030. source: "./media/characters/ona/front-alt.svg"
  4031. }
  4032. },
  4033. back: {
  4034. height: math.unit(8, "feet"),
  4035. weight: math.unit(120, "lb"),
  4036. name: "Back",
  4037. image: {
  4038. source: "./media/characters/ona/back.svg"
  4039. }
  4040. },
  4041. foot: {
  4042. height: math.unit(1.1, "feet"),
  4043. name: "Foot",
  4044. image: {
  4045. source: "./media/characters/ona/foot.svg"
  4046. }
  4047. }
  4048. },
  4049. [
  4050. {
  4051. name: "Megamacro",
  4052. height: math.unit(70, "km"),
  4053. default: true
  4054. },
  4055. {
  4056. name: "Gigamacro",
  4057. height: math.unit(681818, "miles")
  4058. },
  4059. {
  4060. name: "Examacro",
  4061. height: math.unit(3800000, "lightyears")
  4062. },
  4063. ]
  4064. ))
  4065. characterMakers.push(() => makeCharacter(
  4066. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4067. {
  4068. front: {
  4069. height: math.unit(12, "feet"),
  4070. weight: math.unit(3000, "lb"),
  4071. name: "Front",
  4072. image: {
  4073. source: "./media/characters/mech/front.svg",
  4074. extra: 2900 / 2770,
  4075. bottom: 110 / 3010
  4076. }
  4077. },
  4078. back: {
  4079. height: math.unit(12, "feet"),
  4080. weight: math.unit(3000, "lb"),
  4081. name: "Back",
  4082. image: {
  4083. source: "./media/characters/mech/back.svg",
  4084. extra: 3011 / 2890,
  4085. bottom: 94 / 3105
  4086. }
  4087. },
  4088. maw: {
  4089. height: math.unit(3.07, "feet"),
  4090. name: "Maw",
  4091. image: {
  4092. source: "./media/characters/mech/maw.svg"
  4093. }
  4094. },
  4095. head: {
  4096. height: math.unit(2.82, "feet"),
  4097. name: "Head",
  4098. image: {
  4099. source: "./media/characters/mech/head.svg"
  4100. }
  4101. },
  4102. dick: {
  4103. height: math.unit(1.43, "feet"),
  4104. name: "Dick",
  4105. image: {
  4106. source: "./media/characters/mech/dick.svg"
  4107. }
  4108. },
  4109. },
  4110. [
  4111. {
  4112. name: "Normal",
  4113. height: math.unit(12, "feet")
  4114. },
  4115. {
  4116. name: "Macro",
  4117. height: math.unit(300, "feet"),
  4118. default: true
  4119. },
  4120. {
  4121. name: "Macro+",
  4122. height: math.unit(1500, "feet")
  4123. },
  4124. ]
  4125. ))
  4126. characterMakers.push(() => makeCharacter(
  4127. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4128. {
  4129. front: {
  4130. height: math.unit(1.3, "meter"),
  4131. weight: math.unit(30, "kg"),
  4132. name: "Front",
  4133. image: {
  4134. source: "./media/characters/gregory/front.svg",
  4135. }
  4136. }
  4137. },
  4138. [
  4139. {
  4140. name: "Normal",
  4141. height: math.unit(1.3, "meter"),
  4142. default: true
  4143. },
  4144. {
  4145. name: "Macro",
  4146. height: math.unit(20, "meter")
  4147. }
  4148. ]
  4149. ))
  4150. characterMakers.push(() => makeCharacter(
  4151. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4152. {
  4153. front: {
  4154. height: math.unit(2.8, "meter"),
  4155. weight: math.unit(200, "kg"),
  4156. name: "Front",
  4157. image: {
  4158. source: "./media/characters/elory/front.svg",
  4159. }
  4160. }
  4161. },
  4162. [
  4163. {
  4164. name: "Normal",
  4165. height: math.unit(2.8, "meter"),
  4166. default: true
  4167. },
  4168. {
  4169. name: "Macro",
  4170. height: math.unit(38, "meter")
  4171. }
  4172. ]
  4173. ))
  4174. characterMakers.push(() => makeCharacter(
  4175. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4176. {
  4177. front: {
  4178. height: math.unit(470, "feet"),
  4179. weight: math.unit(924, "tons"),
  4180. name: "Front",
  4181. image: {
  4182. source: "./media/characters/angelpatamon/front.svg",
  4183. }
  4184. }
  4185. },
  4186. [
  4187. {
  4188. name: "Normal",
  4189. height: math.unit(470, "feet"),
  4190. default: true
  4191. },
  4192. {
  4193. name: "Deity Size I",
  4194. height: math.unit(28651.2, "km")
  4195. },
  4196. {
  4197. name: "Deity Size II",
  4198. height: math.unit(171907.2, "km")
  4199. }
  4200. ]
  4201. ))
  4202. characterMakers.push(() => makeCharacter(
  4203. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4204. {
  4205. side: {
  4206. height: math.unit(7.2, "meter"),
  4207. weight: math.unit(8.2, "tons"),
  4208. name: "Side",
  4209. image: {
  4210. source: "./media/characters/cryae/side.svg",
  4211. extra: 3500 / 1500
  4212. }
  4213. }
  4214. },
  4215. [
  4216. {
  4217. name: "Normal",
  4218. height: math.unit(7.2, "meter"),
  4219. default: true
  4220. }
  4221. ]
  4222. ))
  4223. characterMakers.push(() => makeCharacter(
  4224. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4225. {
  4226. front: {
  4227. height: math.unit(6, "feet"),
  4228. weight: math.unit(175, "lb"),
  4229. name: "Front",
  4230. image: {
  4231. source: "./media/characters/xera/front.svg",
  4232. extra: 2377 / 1972,
  4233. bottom: 75.5 / 2452
  4234. }
  4235. },
  4236. side: {
  4237. height: math.unit(6, "feet"),
  4238. weight: math.unit(175, "lb"),
  4239. name: "Side",
  4240. image: {
  4241. source: "./media/characters/xera/side.svg",
  4242. extra: 2345 / 2019,
  4243. bottom: 39.7 / 2384
  4244. }
  4245. },
  4246. back: {
  4247. height: math.unit(6, "feet"),
  4248. weight: math.unit(175, "lb"),
  4249. name: "Back",
  4250. image: {
  4251. source: "./media/characters/xera/back.svg",
  4252. extra: 2095 / 1984,
  4253. bottom: 67 / 2166
  4254. }
  4255. },
  4256. },
  4257. [
  4258. {
  4259. name: "Small",
  4260. height: math.unit(10, "feet")
  4261. },
  4262. {
  4263. name: "Macro",
  4264. height: math.unit(500, "meters"),
  4265. default: true
  4266. },
  4267. {
  4268. name: "Macro+",
  4269. height: math.unit(10, "km")
  4270. },
  4271. {
  4272. name: "Gigamacro",
  4273. height: math.unit(25000, "km")
  4274. },
  4275. {
  4276. name: "Teramacro",
  4277. height: math.unit(3e6, "km")
  4278. }
  4279. ]
  4280. ))
  4281. characterMakers.push(() => makeCharacter(
  4282. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4283. {
  4284. front: {
  4285. height: math.unit(6, "feet"),
  4286. weight: math.unit(175, "lb"),
  4287. name: "Front",
  4288. image: {
  4289. source: "./media/characters/nebula/front.svg",
  4290. extra: 2566 / 2362,
  4291. bottom: 81 / 2644
  4292. }
  4293. }
  4294. },
  4295. [
  4296. {
  4297. name: "Small",
  4298. height: math.unit(4.5, "meters")
  4299. },
  4300. {
  4301. name: "Macro",
  4302. height: math.unit(1500, "meters"),
  4303. default: true
  4304. },
  4305. {
  4306. name: "Megamacro",
  4307. height: math.unit(150, "km")
  4308. },
  4309. {
  4310. name: "Gigamacro",
  4311. height: math.unit(27000, "km")
  4312. }
  4313. ]
  4314. ))
  4315. characterMakers.push(() => makeCharacter(
  4316. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4317. {
  4318. front: {
  4319. height: math.unit(6, "feet"),
  4320. weight: math.unit(225, "lb"),
  4321. name: "Front",
  4322. image: {
  4323. source: "./media/characters/abysgar/front.svg"
  4324. }
  4325. }
  4326. },
  4327. [
  4328. {
  4329. name: "Small",
  4330. height: math.unit(4.5, "meters")
  4331. },
  4332. {
  4333. name: "Macro",
  4334. height: math.unit(1250, "meters"),
  4335. default: true
  4336. },
  4337. {
  4338. name: "Megamacro",
  4339. height: math.unit(125, "km")
  4340. },
  4341. {
  4342. name: "Gigamacro",
  4343. height: math.unit(26000, "km")
  4344. }
  4345. ]
  4346. ))
  4347. characterMakers.push(() => makeCharacter(
  4348. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4349. {
  4350. front: {
  4351. height: math.unit(6, "feet"),
  4352. weight: math.unit(180, "lb"),
  4353. name: "Front",
  4354. image: {
  4355. source: "./media/characters/yakuz/front.svg"
  4356. }
  4357. }
  4358. },
  4359. [
  4360. {
  4361. name: "Small",
  4362. height: math.unit(5, "meters")
  4363. },
  4364. {
  4365. name: "Macro",
  4366. height: math.unit(1500, "meters"),
  4367. default: true
  4368. },
  4369. {
  4370. name: "Megamacro",
  4371. height: math.unit(200, "km")
  4372. },
  4373. {
  4374. name: "Gigamacro",
  4375. height: math.unit(100000, "km")
  4376. }
  4377. ]
  4378. ))
  4379. characterMakers.push(() => makeCharacter(
  4380. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4381. {
  4382. front: {
  4383. height: math.unit(6, "feet"),
  4384. weight: math.unit(175, "lb"),
  4385. name: "Front",
  4386. image: {
  4387. source: "./media/characters/mirova/front.svg",
  4388. extra: 3334 / 3071,
  4389. bottom: 42 / 3375.6
  4390. }
  4391. }
  4392. },
  4393. [
  4394. {
  4395. name: "Small",
  4396. height: math.unit(5, "meters")
  4397. },
  4398. {
  4399. name: "Macro",
  4400. height: math.unit(900, "meters"),
  4401. default: true
  4402. },
  4403. {
  4404. name: "Megamacro",
  4405. height: math.unit(135, "km")
  4406. },
  4407. {
  4408. name: "Gigamacro",
  4409. height: math.unit(20000, "km")
  4410. }
  4411. ]
  4412. ))
  4413. characterMakers.push(() => makeCharacter(
  4414. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4415. {
  4416. side: {
  4417. height: math.unit(28.35, "feet"),
  4418. weight: math.unit(99.75, "tons"),
  4419. name: "Side",
  4420. image: {
  4421. source: "./media/characters/asana-mech/side.svg",
  4422. extra: 923 / 699,
  4423. bottom: 50 / 975
  4424. }
  4425. },
  4426. chaingun: {
  4427. height: math.unit(7, "feet"),
  4428. weight: math.unit(2400, "lb"),
  4429. name: "Chaingun",
  4430. image: {
  4431. source: "./media/characters/asana-mech/chaingun.svg"
  4432. }
  4433. },
  4434. laser: {
  4435. height: math.unit(7.12, "feet"),
  4436. weight: math.unit(2000, "lb"),
  4437. name: "Laser",
  4438. image: {
  4439. source: "./media/characters/asana-mech/laser.svg"
  4440. }
  4441. },
  4442. },
  4443. [
  4444. {
  4445. name: "Normal",
  4446. height: math.unit(28.35, "feet"),
  4447. default: true
  4448. },
  4449. {
  4450. name: "Macro",
  4451. height: math.unit(2500, "feet")
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(25, "miles")
  4456. },
  4457. {
  4458. name: "Examacro",
  4459. height: math.unit(6e8, "lightyears")
  4460. },
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(5, "meters"),
  4468. weight: math.unit(1000, "kg"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/asche/front.svg",
  4472. extra: 1258 / 1190,
  4473. bottom: 47 / 1305
  4474. }
  4475. },
  4476. frontUnderwear: {
  4477. height: math.unit(5, "meters"),
  4478. weight: math.unit(1000, "kg"),
  4479. name: "Front (Underwear)",
  4480. image: {
  4481. source: "./media/characters/asche/front-underwear.svg",
  4482. extra: 1258 / 1190,
  4483. bottom: 47 / 1305
  4484. }
  4485. },
  4486. frontDressed: {
  4487. height: math.unit(5, "meters"),
  4488. weight: math.unit(1000, "kg"),
  4489. name: "Front (Dressed)",
  4490. image: {
  4491. source: "./media/characters/asche/front-dressed.svg",
  4492. extra: 1258 / 1190,
  4493. bottom: 47 / 1305
  4494. }
  4495. },
  4496. frontArmor: {
  4497. height: math.unit(5, "meters"),
  4498. weight: math.unit(1000, "kg"),
  4499. name: "Front (Armored)",
  4500. image: {
  4501. source: "./media/characters/asche/front-armored.svg",
  4502. extra: 1374 / 1308,
  4503. bottom: 23 / 1397
  4504. }
  4505. },
  4506. mp724: {
  4507. height: math.unit(0.96, "meters"),
  4508. weight: math.unit(38, "kg"),
  4509. name: "H&K MP724",
  4510. image: {
  4511. source: "./media/characters/asche/h&k-mp724.svg"
  4512. }
  4513. },
  4514. side: {
  4515. height: math.unit(5, "meters"),
  4516. weight: math.unit(1000, "kg"),
  4517. name: "Side",
  4518. image: {
  4519. source: "./media/characters/asche/side.svg",
  4520. extra: 1717 / 1609,
  4521. bottom: 0.005
  4522. }
  4523. },
  4524. back: {
  4525. height: math.unit(5, "meters"),
  4526. weight: math.unit(1000, "kg"),
  4527. name: "Back",
  4528. image: {
  4529. source: "./media/characters/asche/back.svg",
  4530. extra: 1570 / 1501
  4531. }
  4532. },
  4533. },
  4534. [
  4535. {
  4536. name: "DEFCON 5",
  4537. height: math.unit(5, "meters")
  4538. },
  4539. {
  4540. name: "DEFCON 4",
  4541. height: math.unit(500, "meters"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "DEFCON 3",
  4546. height: math.unit(5, "km")
  4547. },
  4548. {
  4549. name: "DEFCON 2",
  4550. height: math.unit(500, "km")
  4551. },
  4552. {
  4553. name: "DEFCON 1",
  4554. height: math.unit(500000, "km")
  4555. },
  4556. {
  4557. name: "DEFCON 0",
  4558. height: math.unit(3, "gigaparsecs")
  4559. },
  4560. ]
  4561. ))
  4562. characterMakers.push(() => makeCharacter(
  4563. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4564. {
  4565. front: {
  4566. height: math.unit(2, "meters"),
  4567. weight: math.unit(76, "kg"),
  4568. name: "Front",
  4569. image: {
  4570. source: "./media/characters/gale/front.svg"
  4571. }
  4572. },
  4573. frontAlt1: {
  4574. height: math.unit(2, "meters"),
  4575. weight: math.unit(76, "kg"),
  4576. name: "Front (Alt 1)",
  4577. image: {
  4578. source: "./media/characters/gale/front-alt-1.svg"
  4579. }
  4580. },
  4581. frontAlt2: {
  4582. height: math.unit(2, "meters"),
  4583. weight: math.unit(76, "kg"),
  4584. name: "Front (Alt 2)",
  4585. image: {
  4586. source: "./media/characters/gale/front-alt-2.svg"
  4587. }
  4588. },
  4589. },
  4590. [
  4591. {
  4592. name: "Normal",
  4593. height: math.unit(7, "feet")
  4594. },
  4595. {
  4596. name: "Macro",
  4597. height: math.unit(150, "feet"),
  4598. default: true
  4599. },
  4600. {
  4601. name: "Macro+",
  4602. height: math.unit(300, "feet")
  4603. },
  4604. ]
  4605. ))
  4606. characterMakers.push(() => makeCharacter(
  4607. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4608. {
  4609. front: {
  4610. height: math.unit(5 + 10/12, "feet"),
  4611. weight: math.unit(67, "kg"),
  4612. name: "Front",
  4613. image: {
  4614. source: "./media/characters/draylen/front.svg",
  4615. extra: 832/777,
  4616. bottom: 85/917
  4617. }
  4618. }
  4619. },
  4620. [
  4621. {
  4622. name: "Normal",
  4623. height: math.unit(5 + 10/12, "feet")
  4624. },
  4625. {
  4626. name: "Macro",
  4627. height: math.unit(150, "feet"),
  4628. default: true
  4629. }
  4630. ]
  4631. ))
  4632. characterMakers.push(() => makeCharacter(
  4633. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4634. {
  4635. front: {
  4636. height: math.unit(7 + 9 / 12, "feet"),
  4637. weight: math.unit(379, "lbs"),
  4638. name: "Front",
  4639. image: {
  4640. source: "./media/characters/chez/front.svg"
  4641. }
  4642. },
  4643. side: {
  4644. height: math.unit(7 + 9 / 12, "feet"),
  4645. weight: math.unit(379, "lbs"),
  4646. name: "Side",
  4647. image: {
  4648. source: "./media/characters/chez/side.svg"
  4649. }
  4650. }
  4651. },
  4652. [
  4653. {
  4654. name: "Normal",
  4655. height: math.unit(7 + 9 / 12, "feet"),
  4656. default: true
  4657. },
  4658. {
  4659. name: "God King",
  4660. height: math.unit(9750000, "meters")
  4661. }
  4662. ]
  4663. ))
  4664. characterMakers.push(() => makeCharacter(
  4665. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4666. {
  4667. front: {
  4668. height: math.unit(6, "feet"),
  4669. weight: math.unit(275, "lbs"),
  4670. name: "Front",
  4671. image: {
  4672. source: "./media/characters/kaylum/front.svg",
  4673. bottom: 0.01,
  4674. extra: 1166 / 1031
  4675. }
  4676. },
  4677. frontWingless: {
  4678. height: math.unit(6, "feet"),
  4679. weight: math.unit(275, "lbs"),
  4680. name: "Front (Wingless)",
  4681. image: {
  4682. source: "./media/characters/kaylum/front-wingless.svg",
  4683. bottom: 0.01,
  4684. extra: 1117 / 1031
  4685. }
  4686. }
  4687. },
  4688. [
  4689. {
  4690. name: "Normal",
  4691. height: math.unit(3.05, "meters")
  4692. },
  4693. {
  4694. name: "Master",
  4695. height: math.unit(5.5, "meters")
  4696. },
  4697. {
  4698. name: "Rampage",
  4699. height: math.unit(19, "meters")
  4700. },
  4701. {
  4702. name: "Macro Lite",
  4703. height: math.unit(37, "meters")
  4704. },
  4705. {
  4706. name: "Hyper Predator",
  4707. height: math.unit(61, "meters")
  4708. },
  4709. {
  4710. name: "Macro",
  4711. height: math.unit(138, "meters"),
  4712. default: true
  4713. }
  4714. ]
  4715. ))
  4716. characterMakers.push(() => makeCharacter(
  4717. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4718. {
  4719. front: {
  4720. height: math.unit(6, "feet"),
  4721. weight: math.unit(150, "lbs"),
  4722. name: "Front",
  4723. image: {
  4724. source: "./media/characters/geta/front.svg"
  4725. }
  4726. }
  4727. },
  4728. [
  4729. {
  4730. name: "Micro",
  4731. height: math.unit(3, "inches"),
  4732. default: true
  4733. },
  4734. {
  4735. name: "Normal",
  4736. height: math.unit(5 + 5 / 12, "feet")
  4737. }
  4738. ]
  4739. ))
  4740. characterMakers.push(() => makeCharacter(
  4741. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4742. {
  4743. front: {
  4744. height: math.unit(6, "feet"),
  4745. weight: math.unit(300, "lbs"),
  4746. name: "Front",
  4747. image: {
  4748. source: "./media/characters/tyrnn/front.svg"
  4749. }
  4750. }
  4751. },
  4752. [
  4753. {
  4754. name: "Main Height",
  4755. height: math.unit(355, "feet"),
  4756. default: true
  4757. },
  4758. {
  4759. name: "Fave. Height",
  4760. height: math.unit(2400, "feet")
  4761. }
  4762. ]
  4763. ))
  4764. characterMakers.push(() => makeCharacter(
  4765. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4766. {
  4767. front: {
  4768. height: math.unit(6, "feet"),
  4769. weight: math.unit(300, "lbs"),
  4770. name: "Front",
  4771. image: {
  4772. source: "./media/characters/appledectomy/front.svg"
  4773. }
  4774. }
  4775. },
  4776. [
  4777. {
  4778. name: "Macro",
  4779. height: math.unit(2500, "feet")
  4780. },
  4781. {
  4782. name: "Megamacro",
  4783. height: math.unit(50, "miles"),
  4784. default: true
  4785. },
  4786. {
  4787. name: "Gigamacro",
  4788. height: math.unit(5000, "miles")
  4789. },
  4790. {
  4791. name: "Teramacro",
  4792. height: math.unit(250000, "miles")
  4793. },
  4794. ]
  4795. ))
  4796. characterMakers.push(() => makeCharacter(
  4797. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4798. {
  4799. front: {
  4800. height: math.unit(6, "feet"),
  4801. weight: math.unit(200, "lbs"),
  4802. name: "Front",
  4803. image: {
  4804. source: "./media/characters/vulpes/front.svg",
  4805. extra: 573 / 543,
  4806. bottom: 0.033
  4807. }
  4808. },
  4809. side: {
  4810. height: math.unit(6, "feet"),
  4811. weight: math.unit(200, "lbs"),
  4812. name: "Side",
  4813. image: {
  4814. source: "./media/characters/vulpes/side.svg",
  4815. extra: 577 / 549,
  4816. bottom: 11 / 588
  4817. }
  4818. },
  4819. back: {
  4820. height: math.unit(6, "feet"),
  4821. weight: math.unit(200, "lbs"),
  4822. name: "Back",
  4823. image: {
  4824. source: "./media/characters/vulpes/back.svg",
  4825. extra: 573 / 549,
  4826. bottom: 20 / 593
  4827. }
  4828. },
  4829. feet: {
  4830. height: math.unit(1.276, "feet"),
  4831. name: "Feet",
  4832. image: {
  4833. source: "./media/characters/vulpes/feet.svg"
  4834. }
  4835. },
  4836. maw: {
  4837. height: math.unit(1.18, "feet"),
  4838. name: "Maw",
  4839. image: {
  4840. source: "./media/characters/vulpes/maw.svg"
  4841. }
  4842. },
  4843. },
  4844. [
  4845. {
  4846. name: "Micro",
  4847. height: math.unit(2, "inches")
  4848. },
  4849. {
  4850. name: "Normal",
  4851. height: math.unit(6.3, "feet")
  4852. },
  4853. {
  4854. name: "Macro",
  4855. height: math.unit(850, "feet")
  4856. },
  4857. {
  4858. name: "Megamacro",
  4859. height: math.unit(7500, "feet"),
  4860. default: true
  4861. },
  4862. {
  4863. name: "Gigamacro",
  4864. height: math.unit(570000, "miles")
  4865. }
  4866. ]
  4867. ))
  4868. characterMakers.push(() => makeCharacter(
  4869. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4870. {
  4871. front: {
  4872. height: math.unit(6, "feet"),
  4873. weight: math.unit(210, "lbs"),
  4874. name: "Front",
  4875. image: {
  4876. source: "./media/characters/rain-fallen/front.svg"
  4877. }
  4878. },
  4879. side: {
  4880. height: math.unit(6, "feet"),
  4881. weight: math.unit(210, "lbs"),
  4882. name: "Side",
  4883. image: {
  4884. source: "./media/characters/rain-fallen/side.svg"
  4885. }
  4886. },
  4887. back: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(210, "lbs"),
  4890. name: "Back",
  4891. image: {
  4892. source: "./media/characters/rain-fallen/back.svg"
  4893. }
  4894. },
  4895. feral: {
  4896. height: math.unit(9, "feet"),
  4897. weight: math.unit(700, "lbs"),
  4898. name: "Feral",
  4899. image: {
  4900. source: "./media/characters/rain-fallen/feral.svg"
  4901. }
  4902. },
  4903. },
  4904. [
  4905. {
  4906. name: "Meddling with Mortals",
  4907. height: math.unit(8 + 8/12, "feet")
  4908. },
  4909. {
  4910. name: "Normal",
  4911. height: math.unit(5, "meter")
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(150, "meter"),
  4916. default: true
  4917. },
  4918. {
  4919. name: "Megamacro",
  4920. height: math.unit(278e6, "meter")
  4921. },
  4922. {
  4923. name: "Gigamacro",
  4924. height: math.unit(2e9, "meter")
  4925. },
  4926. {
  4927. name: "Teramacro",
  4928. height: math.unit(8e12, "meter")
  4929. },
  4930. {
  4931. name: "Devourer",
  4932. height: math.unit(14, "zettameters")
  4933. },
  4934. {
  4935. name: "Scarlet King",
  4936. height: math.unit(18, "yottameters")
  4937. },
  4938. {
  4939. name: "Void",
  4940. height: math.unit(1e88, "yottameters")
  4941. }
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4946. {
  4947. standing: {
  4948. height: math.unit(6, "feet"),
  4949. weight: math.unit(180, "lbs"),
  4950. name: "Standing",
  4951. image: {
  4952. source: "./media/characters/zaakira/standing.svg",
  4953. extra: 1599/1504,
  4954. bottom: 39/1638
  4955. }
  4956. },
  4957. laying: {
  4958. height: math.unit(3, "feet"),
  4959. weight: math.unit(180, "lbs"),
  4960. name: "Laying",
  4961. image: {
  4962. source: "./media/characters/zaakira/laying.svg"
  4963. }
  4964. },
  4965. },
  4966. [
  4967. {
  4968. name: "Normal",
  4969. height: math.unit(12, "feet")
  4970. },
  4971. {
  4972. name: "Macro",
  4973. height: math.unit(279, "feet"),
  4974. default: true
  4975. }
  4976. ]
  4977. ))
  4978. characterMakers.push(() => makeCharacter(
  4979. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4980. {
  4981. femSfw: {
  4982. height: math.unit(8, "feet"),
  4983. weight: math.unit(350, "lb"),
  4984. name: "Fem",
  4985. image: {
  4986. source: "./media/characters/sigvald/fem-sfw.svg",
  4987. extra: 182 / 164,
  4988. bottom: 8.7 / 190.5
  4989. }
  4990. },
  4991. femNsfw: {
  4992. height: math.unit(8, "feet"),
  4993. weight: math.unit(350, "lb"),
  4994. name: "Fem (NSFW)",
  4995. image: {
  4996. source: "./media/characters/sigvald/fem-nsfw.svg",
  4997. extra: 182 / 164,
  4998. bottom: 8.7 / 190.5
  4999. }
  5000. },
  5001. maleNsfw: {
  5002. height: math.unit(8, "feet"),
  5003. weight: math.unit(350, "lb"),
  5004. name: "Male (NSFW)",
  5005. image: {
  5006. source: "./media/characters/sigvald/male-nsfw.svg",
  5007. extra: 182 / 164,
  5008. bottom: 8.7 / 190.5
  5009. }
  5010. },
  5011. hermNsfw: {
  5012. height: math.unit(8, "feet"),
  5013. weight: math.unit(350, "lb"),
  5014. name: "Herm (NSFW)",
  5015. image: {
  5016. source: "./media/characters/sigvald/herm-nsfw.svg",
  5017. extra: 182 / 164,
  5018. bottom: 8.7 / 190.5
  5019. }
  5020. },
  5021. dick: {
  5022. height: math.unit(2.36, "feet"),
  5023. name: "Dick",
  5024. image: {
  5025. source: "./media/characters/sigvald/dick.svg"
  5026. }
  5027. },
  5028. eye: {
  5029. height: math.unit(0.31, "feet"),
  5030. name: "Eye",
  5031. image: {
  5032. source: "./media/characters/sigvald/eye.svg"
  5033. }
  5034. },
  5035. mouth: {
  5036. height: math.unit(0.92, "feet"),
  5037. name: "Mouth",
  5038. image: {
  5039. source: "./media/characters/sigvald/mouth.svg"
  5040. }
  5041. },
  5042. paws: {
  5043. height: math.unit(2.2, "feet"),
  5044. name: "Paws",
  5045. image: {
  5046. source: "./media/characters/sigvald/paws.svg"
  5047. }
  5048. }
  5049. },
  5050. [
  5051. {
  5052. name: "Normal",
  5053. height: math.unit(8, "feet")
  5054. },
  5055. {
  5056. name: "Large",
  5057. height: math.unit(12, "feet")
  5058. },
  5059. {
  5060. name: "Larger",
  5061. height: math.unit(20, "feet")
  5062. },
  5063. {
  5064. name: "Macro",
  5065. height: math.unit(150, "feet")
  5066. },
  5067. {
  5068. name: "Macro+",
  5069. height: math.unit(200, "feet"),
  5070. default: true
  5071. },
  5072. ]
  5073. ))
  5074. characterMakers.push(() => makeCharacter(
  5075. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5076. {
  5077. side: {
  5078. height: math.unit(12, "feet"),
  5079. weight: math.unit(2000, "kg"),
  5080. name: "Side",
  5081. image: {
  5082. source: "./media/characters/scott/side.svg",
  5083. extra: 754 / 724,
  5084. bottom: 0.069
  5085. }
  5086. },
  5087. upright: {
  5088. height: math.unit(12, "feet"),
  5089. weight: math.unit(2000, "kg"),
  5090. name: "Upright",
  5091. image: {
  5092. source: "./media/characters/scott/upright.svg",
  5093. extra: 3881 / 3722,
  5094. bottom: 0.05
  5095. }
  5096. },
  5097. },
  5098. [
  5099. {
  5100. name: "Normal",
  5101. height: math.unit(12, "feet"),
  5102. default: true
  5103. },
  5104. ]
  5105. ))
  5106. characterMakers.push(() => makeCharacter(
  5107. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5108. {
  5109. side: {
  5110. height: math.unit(8, "meters"),
  5111. weight: math.unit(84755, "lbs"),
  5112. name: "Side",
  5113. image: {
  5114. source: "./media/characters/tobias/side.svg",
  5115. extra: 1474 / 1096,
  5116. bottom: 38.9 / 1513.1235
  5117. }
  5118. },
  5119. },
  5120. [
  5121. {
  5122. name: "Normal",
  5123. height: math.unit(8, "meters"),
  5124. default: true
  5125. },
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5130. {
  5131. front: {
  5132. height: math.unit(5.5, "feet"),
  5133. weight: math.unit(400, "lbs"),
  5134. name: "Front",
  5135. image: {
  5136. source: "./media/characters/kieran/front.svg",
  5137. extra: 2694 / 2364,
  5138. bottom: 217 / 2908
  5139. }
  5140. },
  5141. side: {
  5142. height: math.unit(5.5, "feet"),
  5143. weight: math.unit(400, "lbs"),
  5144. name: "Side",
  5145. image: {
  5146. source: "./media/characters/kieran/side.svg",
  5147. extra: 875 / 777,
  5148. bottom: 84.6 / 959
  5149. }
  5150. },
  5151. },
  5152. [
  5153. {
  5154. name: "Normal",
  5155. height: math.unit(5.5, "feet"),
  5156. default: true
  5157. },
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5162. {
  5163. side: {
  5164. height: math.unit(2, "meters"),
  5165. weight: math.unit(70, "kg"),
  5166. name: "Side",
  5167. image: {
  5168. source: "./media/characters/sanya/side.svg",
  5169. bottom: 0.02,
  5170. extra: 1.02
  5171. }
  5172. },
  5173. },
  5174. [
  5175. {
  5176. name: "Small",
  5177. height: math.unit(2, "meters")
  5178. },
  5179. {
  5180. name: "Normal",
  5181. height: math.unit(3, "meters")
  5182. },
  5183. {
  5184. name: "Macro",
  5185. height: math.unit(16, "meters"),
  5186. default: true
  5187. },
  5188. ]
  5189. ))
  5190. characterMakers.push(() => makeCharacter(
  5191. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5192. {
  5193. front: {
  5194. height: math.unit(2, "meters"),
  5195. weight: math.unit(120, "kg"),
  5196. name: "Front",
  5197. image: {
  5198. source: "./media/characters/miranda/front.svg",
  5199. extra: 195 / 185,
  5200. bottom: 10.9 / 206.5
  5201. }
  5202. },
  5203. back: {
  5204. height: math.unit(2, "meters"),
  5205. weight: math.unit(120, "kg"),
  5206. name: "Back",
  5207. image: {
  5208. source: "./media/characters/miranda/back.svg",
  5209. extra: 201 / 193,
  5210. bottom: 2.3 / 203.7
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(10, "feet"),
  5218. default: true
  5219. }
  5220. ]
  5221. ))
  5222. characterMakers.push(() => makeCharacter(
  5223. { name: "James", species: ["deer"], tags: ["anthro"] },
  5224. {
  5225. side: {
  5226. height: math.unit(2, "meters"),
  5227. weight: math.unit(100, "kg"),
  5228. name: "Front",
  5229. image: {
  5230. source: "./media/characters/james/front.svg",
  5231. extra: 10 / 8.5
  5232. }
  5233. },
  5234. },
  5235. [
  5236. {
  5237. name: "Normal",
  5238. height: math.unit(8.5, "feet"),
  5239. default: true
  5240. }
  5241. ]
  5242. ))
  5243. characterMakers.push(() => makeCharacter(
  5244. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5245. {
  5246. side: {
  5247. height: math.unit(9.5, "feet"),
  5248. weight: math.unit(2500, "lbs"),
  5249. name: "Side",
  5250. image: {
  5251. source: "./media/characters/heather/side.svg"
  5252. }
  5253. },
  5254. },
  5255. [
  5256. {
  5257. name: "Normal",
  5258. height: math.unit(9.5, "feet"),
  5259. default: true
  5260. }
  5261. ]
  5262. ))
  5263. characterMakers.push(() => makeCharacter(
  5264. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5265. {
  5266. side: {
  5267. height: math.unit(6.5, "feet"),
  5268. weight: math.unit(400, "lbs"),
  5269. name: "Side",
  5270. image: {
  5271. source: "./media/characters/lukas/side.svg",
  5272. extra: 7.25 / 6.5
  5273. }
  5274. },
  5275. },
  5276. [
  5277. {
  5278. name: "Normal",
  5279. height: math.unit(6.5, "feet"),
  5280. default: true
  5281. }
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5286. {
  5287. side: {
  5288. height: math.unit(5, "feet"),
  5289. weight: math.unit(3000, "lbs"),
  5290. name: "Side",
  5291. image: {
  5292. source: "./media/characters/louise/side.svg"
  5293. }
  5294. },
  5295. },
  5296. [
  5297. {
  5298. name: "Normal",
  5299. height: math.unit(5, "feet"),
  5300. default: true
  5301. }
  5302. ]
  5303. ))
  5304. characterMakers.push(() => makeCharacter(
  5305. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5306. {
  5307. side: {
  5308. height: math.unit(6, "feet"),
  5309. weight: math.unit(150, "lbs"),
  5310. name: "Side",
  5311. image: {
  5312. source: "./media/characters/ramona/side.svg",
  5313. extra: 871/854,
  5314. bottom: 41/912
  5315. }
  5316. },
  5317. },
  5318. [
  5319. {
  5320. name: "Normal",
  5321. height: math.unit(5.3, "meters"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "Macro",
  5326. height: math.unit(20, "stories")
  5327. },
  5328. {
  5329. name: "Macro+",
  5330. height: math.unit(50, "stories")
  5331. },
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5336. {
  5337. standing: {
  5338. height: math.unit(5.75, "feet"),
  5339. weight: math.unit(160, "lbs"),
  5340. name: "Standing",
  5341. image: {
  5342. source: "./media/characters/deerpuff/standing.svg",
  5343. extra: 682 / 624
  5344. }
  5345. },
  5346. sitting: {
  5347. height: math.unit(5.75 / 1.79, "feet"),
  5348. weight: math.unit(160, "lbs"),
  5349. name: "Sitting",
  5350. image: {
  5351. source: "./media/characters/deerpuff/sitting.svg",
  5352. bottom: 44 / 400,
  5353. extra: 1
  5354. }
  5355. },
  5356. taurLaying: {
  5357. height: math.unit(6, "feet"),
  5358. weight: math.unit(400, "lbs"),
  5359. name: "Taur (Laying)",
  5360. image: {
  5361. source: "./media/characters/deerpuff/taur-laying.svg"
  5362. }
  5363. },
  5364. },
  5365. [
  5366. {
  5367. name: "Puffball",
  5368. height: math.unit(6, "inches")
  5369. },
  5370. {
  5371. name: "Normalpuff",
  5372. height: math.unit(5.75, "feet")
  5373. },
  5374. {
  5375. name: "Macropuff",
  5376. height: math.unit(1500, "feet"),
  5377. default: true
  5378. },
  5379. {
  5380. name: "Megapuff",
  5381. height: math.unit(500, "miles")
  5382. },
  5383. {
  5384. name: "Gigapuff",
  5385. height: math.unit(250000, "miles")
  5386. },
  5387. {
  5388. name: "Omegapuff",
  5389. height: math.unit(1000, "lightyears")
  5390. },
  5391. ]
  5392. ))
  5393. characterMakers.push(() => makeCharacter(
  5394. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5395. {
  5396. stomping: {
  5397. height: math.unit(6, "feet"),
  5398. weight: math.unit(170, "lbs"),
  5399. name: "Stomping",
  5400. image: {
  5401. source: "./media/characters/vivian/stomping.svg"
  5402. }
  5403. },
  5404. sitting: {
  5405. height: math.unit(6 / 1.75, "feet"),
  5406. weight: math.unit(170, "lbs"),
  5407. name: "Sitting",
  5408. image: {
  5409. source: "./media/characters/vivian/sitting.svg",
  5410. bottom: 1 / 6.4,
  5411. extra: 1,
  5412. }
  5413. },
  5414. },
  5415. [
  5416. {
  5417. name: "Normal",
  5418. height: math.unit(7, "feet"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Macro",
  5423. height: math.unit(10, "stories")
  5424. },
  5425. {
  5426. name: "Macro+",
  5427. height: math.unit(30, "stories")
  5428. },
  5429. {
  5430. name: "Megamacro",
  5431. height: math.unit(10, "miles")
  5432. },
  5433. {
  5434. name: "Megamacro+",
  5435. height: math.unit(2750000, "meters")
  5436. },
  5437. ]
  5438. ))
  5439. characterMakers.push(() => makeCharacter(
  5440. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5441. {
  5442. front: {
  5443. height: math.unit(6, "feet"),
  5444. weight: math.unit(160, "lbs"),
  5445. name: "Front",
  5446. image: {
  5447. source: "./media/characters/prince/front.svg",
  5448. extra: 3400 / 3000
  5449. }
  5450. },
  5451. jumping: {
  5452. height: math.unit(6, "feet"),
  5453. weight: math.unit(160, "lbs"),
  5454. name: "Jumping",
  5455. image: {
  5456. source: "./media/characters/prince/jump.svg",
  5457. extra: 2555 / 2134
  5458. }
  5459. },
  5460. },
  5461. [
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(7.75, "feet"),
  5465. default: true
  5466. },
  5467. {
  5468. name: "Not cute",
  5469. height: math.unit(17, "feet")
  5470. },
  5471. {
  5472. name: "I said NOT",
  5473. height: math.unit(91, "feet")
  5474. },
  5475. {
  5476. name: "Please stop",
  5477. height: math.unit(560, "feet")
  5478. },
  5479. {
  5480. name: "What have you done",
  5481. height: math.unit(2200, "feet")
  5482. },
  5483. {
  5484. name: "Deer God",
  5485. height: math.unit(3.6, "miles")
  5486. },
  5487. ]
  5488. ))
  5489. characterMakers.push(() => makeCharacter(
  5490. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5491. {
  5492. standing: {
  5493. height: math.unit(6, "feet"),
  5494. weight: math.unit(300, "lbs"),
  5495. name: "Standing",
  5496. image: {
  5497. source: "./media/characters/psymon/standing.svg",
  5498. extra: 1888 / 1810,
  5499. bottom: 0.05
  5500. }
  5501. },
  5502. slithering: {
  5503. height: math.unit(6, "feet"),
  5504. weight: math.unit(300, "lbs"),
  5505. name: "Slithering",
  5506. image: {
  5507. source: "./media/characters/psymon/slithering.svg",
  5508. extra: 1330 / 1224
  5509. }
  5510. },
  5511. slitheringAlt: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(300, "lbs"),
  5514. name: "Slithering (Alt)",
  5515. image: {
  5516. source: "./media/characters/psymon/slithering-alt.svg",
  5517. extra: 1330 / 1224
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Normal",
  5524. height: math.unit(11.25, "feet"),
  5525. default: true
  5526. },
  5527. {
  5528. name: "Large",
  5529. height: math.unit(27, "feet")
  5530. },
  5531. {
  5532. name: "Giant",
  5533. height: math.unit(87, "feet")
  5534. },
  5535. {
  5536. name: "Macro",
  5537. height: math.unit(365, "feet")
  5538. },
  5539. {
  5540. name: "Megamacro",
  5541. height: math.unit(3, "miles")
  5542. },
  5543. {
  5544. name: "World Serpent",
  5545. height: math.unit(8000, "miles")
  5546. },
  5547. ]
  5548. ))
  5549. characterMakers.push(() => makeCharacter(
  5550. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5551. {
  5552. front: {
  5553. height: math.unit(6, "feet"),
  5554. weight: math.unit(180, "lbs"),
  5555. name: "Front",
  5556. image: {
  5557. source: "./media/characters/daimos/front.svg",
  5558. extra: 4160 / 3897,
  5559. bottom: 0.021
  5560. }
  5561. }
  5562. },
  5563. [
  5564. {
  5565. name: "Normal",
  5566. height: math.unit(8, "feet"),
  5567. default: true
  5568. },
  5569. {
  5570. name: "Big Dog",
  5571. height: math.unit(22, "feet")
  5572. },
  5573. {
  5574. name: "Macro",
  5575. height: math.unit(127, "feet")
  5576. },
  5577. {
  5578. name: "Megamacro",
  5579. height: math.unit(3600, "feet")
  5580. },
  5581. ]
  5582. ))
  5583. characterMakers.push(() => makeCharacter(
  5584. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5585. {
  5586. side: {
  5587. height: math.unit(6, "feet"),
  5588. weight: math.unit(180, "lbs"),
  5589. name: "Side",
  5590. image: {
  5591. source: "./media/characters/blake/side.svg",
  5592. extra: 1212 / 1120,
  5593. bottom: 0.05
  5594. }
  5595. },
  5596. crouched: {
  5597. height: math.unit(6 * 0.57, "feet"),
  5598. weight: math.unit(180, "lbs"),
  5599. name: "Crouched",
  5600. image: {
  5601. source: "./media/characters/blake/crouched.svg",
  5602. extra: 840 / 587,
  5603. bottom: 0.04
  5604. }
  5605. },
  5606. bent: {
  5607. height: math.unit(6 * 0.75, "feet"),
  5608. weight: math.unit(180, "lbs"),
  5609. name: "Bent",
  5610. image: {
  5611. source: "./media/characters/blake/bent.svg",
  5612. extra: 592 / 544,
  5613. bottom: 0.035
  5614. }
  5615. },
  5616. },
  5617. [
  5618. {
  5619. name: "Normal",
  5620. height: math.unit(8 + 1 / 6, "feet"),
  5621. default: true
  5622. },
  5623. {
  5624. name: "Big Backside",
  5625. height: math.unit(37, "feet")
  5626. },
  5627. {
  5628. name: "Subway Shredder",
  5629. height: math.unit(72, "feet")
  5630. },
  5631. {
  5632. name: "City Carver",
  5633. height: math.unit(1675, "feet")
  5634. },
  5635. {
  5636. name: "Tectonic Tweaker",
  5637. height: math.unit(2300, "miles")
  5638. },
  5639. ]
  5640. ))
  5641. characterMakers.push(() => makeCharacter(
  5642. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5643. {
  5644. front: {
  5645. height: math.unit(6, "feet"),
  5646. weight: math.unit(180, "lbs"),
  5647. name: "Front",
  5648. image: {
  5649. source: "./media/characters/guisetto/front.svg",
  5650. extra: 856 / 817,
  5651. bottom: 0.06
  5652. }
  5653. },
  5654. airborne: {
  5655. height: math.unit(6, "feet"),
  5656. weight: math.unit(180, "lbs"),
  5657. name: "Airborne",
  5658. image: {
  5659. source: "./media/characters/guisetto/airborne.svg",
  5660. extra: 584 / 525
  5661. }
  5662. },
  5663. },
  5664. [
  5665. {
  5666. name: "Normal",
  5667. height: math.unit(10 + 11 / 12, "feet"),
  5668. default: true
  5669. },
  5670. {
  5671. name: "Large",
  5672. height: math.unit(35, "feet")
  5673. },
  5674. {
  5675. name: "Macro",
  5676. height: math.unit(475, "feet")
  5677. },
  5678. ]
  5679. ))
  5680. characterMakers.push(() => makeCharacter(
  5681. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5682. {
  5683. front: {
  5684. height: math.unit(6, "feet"),
  5685. weight: math.unit(180, "lbs"),
  5686. name: "Front",
  5687. image: {
  5688. source: "./media/characters/luxor/front.svg",
  5689. extra: 2940 / 2152
  5690. }
  5691. },
  5692. back: {
  5693. height: math.unit(6, "feet"),
  5694. weight: math.unit(180, "lbs"),
  5695. name: "Back",
  5696. image: {
  5697. source: "./media/characters/luxor/back.svg",
  5698. extra: 1083 / 960
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Normal",
  5705. height: math.unit(5 + 5 / 6, "feet"),
  5706. default: true
  5707. },
  5708. {
  5709. name: "Lamp",
  5710. height: math.unit(50, "feet")
  5711. },
  5712. {
  5713. name: "Lämp",
  5714. height: math.unit(300, "feet")
  5715. },
  5716. {
  5717. name: "The sun is a lamp",
  5718. height: math.unit(250000, "miles")
  5719. },
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5724. {
  5725. front: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(50, "lbs"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/huoyan/front.svg"
  5731. }
  5732. },
  5733. side: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(180, "lbs"),
  5736. name: "Side",
  5737. image: {
  5738. source: "./media/characters/huoyan/side.svg"
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Chef",
  5745. height: math.unit(9, "feet")
  5746. },
  5747. {
  5748. name: "Normal",
  5749. height: math.unit(65, "feet"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Macro",
  5754. height: math.unit(780, "feet")
  5755. },
  5756. {
  5757. name: "Flaming Mountain",
  5758. height: math.unit(4.8, "miles")
  5759. },
  5760. {
  5761. name: "Celestial",
  5762. height: math.unit(765000, "miles")
  5763. },
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(5 + 3 / 4, "feet"),
  5771. weight: math.unit(120, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/tails/front.svg"
  5775. }
  5776. }
  5777. },
  5778. [
  5779. {
  5780. name: "Normal",
  5781. height: math.unit(5 + 3 / 4, "feet"),
  5782. default: true
  5783. }
  5784. ]
  5785. ))
  5786. characterMakers.push(() => makeCharacter(
  5787. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5788. {
  5789. front: {
  5790. height: math.unit(4, "feet"),
  5791. weight: math.unit(50, "lbs"),
  5792. name: "Front",
  5793. image: {
  5794. source: "./media/characters/rainy/front.svg"
  5795. }
  5796. }
  5797. },
  5798. [
  5799. {
  5800. name: "Macro",
  5801. height: math.unit(800, "feet"),
  5802. default: true
  5803. }
  5804. ]
  5805. ))
  5806. characterMakers.push(() => makeCharacter(
  5807. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5808. {
  5809. front: {
  5810. height: math.unit(6, "feet"),
  5811. weight: math.unit(150, "lbs"),
  5812. name: "Front",
  5813. image: {
  5814. source: "./media/characters/rainier/front.svg"
  5815. }
  5816. }
  5817. },
  5818. [
  5819. {
  5820. name: "Micro",
  5821. height: math.unit(2, "mm"),
  5822. default: true
  5823. }
  5824. ]
  5825. ))
  5826. characterMakers.push(() => makeCharacter(
  5827. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5828. {
  5829. front: {
  5830. height: math.unit(8 + 4/12, "feet"),
  5831. name: "Front",
  5832. image: {
  5833. source: "./media/characters/andy-renard/front.svg",
  5834. extra: 1839/1726,
  5835. bottom: 134/1973
  5836. }
  5837. },
  5838. back: {
  5839. height: math.unit(8 + 4/12, "feet"),
  5840. name: "Back",
  5841. image: {
  5842. source: "./media/characters/andy-renard/back.svg",
  5843. extra: 1838/1710,
  5844. bottom: 105/1943
  5845. }
  5846. },
  5847. },
  5848. [
  5849. {
  5850. name: "Tall",
  5851. height: math.unit(8 + 4/12, "feet")
  5852. },
  5853. {
  5854. name: "Mini Macro",
  5855. height: math.unit(15, "feet"),
  5856. default: true
  5857. },
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(100, "feet")
  5861. },
  5862. {
  5863. name: "Mega Macro",
  5864. height: math.unit(1000, "feet")
  5865. },
  5866. {
  5867. name: "Giga Macro",
  5868. height: math.unit(10, "miles")
  5869. },
  5870. {
  5871. name: "God Macro",
  5872. height: math.unit(1, "multiverse")
  5873. },
  5874. ]
  5875. ))
  5876. characterMakers.push(() => makeCharacter(
  5877. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5878. {
  5879. front: {
  5880. height: math.unit(6, "feet"),
  5881. weight: math.unit(210, "lbs"),
  5882. name: "Front",
  5883. image: {
  5884. source: "./media/characters/cimmaron/front-sfw.svg",
  5885. extra: 701 / 676,
  5886. bottom: 0.046
  5887. }
  5888. },
  5889. back: {
  5890. height: math.unit(6, "feet"),
  5891. weight: math.unit(210, "lbs"),
  5892. name: "Back",
  5893. image: {
  5894. source: "./media/characters/cimmaron/back-sfw.svg",
  5895. extra: 701 / 676,
  5896. bottom: 0.046
  5897. }
  5898. },
  5899. frontNsfw: {
  5900. height: math.unit(6, "feet"),
  5901. weight: math.unit(210, "lbs"),
  5902. name: "Front (NSFW)",
  5903. image: {
  5904. source: "./media/characters/cimmaron/front-nsfw.svg",
  5905. extra: 701 / 676,
  5906. bottom: 0.046
  5907. }
  5908. },
  5909. backNsfw: {
  5910. height: math.unit(6, "feet"),
  5911. weight: math.unit(210, "lbs"),
  5912. name: "Back (NSFW)",
  5913. image: {
  5914. source: "./media/characters/cimmaron/back-nsfw.svg",
  5915. extra: 701 / 676,
  5916. bottom: 0.046
  5917. }
  5918. },
  5919. dick: {
  5920. height: math.unit(1.714, "feet"),
  5921. name: "Dick",
  5922. image: {
  5923. source: "./media/characters/cimmaron/dick.svg"
  5924. }
  5925. },
  5926. },
  5927. [
  5928. {
  5929. name: "Normal",
  5930. height: math.unit(6, "feet"),
  5931. default: true
  5932. },
  5933. {
  5934. name: "Macro Mayor",
  5935. height: math.unit(350, "meters")
  5936. },
  5937. ]
  5938. ))
  5939. characterMakers.push(() => makeCharacter(
  5940. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5941. {
  5942. front: {
  5943. height: math.unit(6, "feet"),
  5944. weight: math.unit(200, "lbs"),
  5945. name: "Front",
  5946. image: {
  5947. source: "./media/characters/akari/front.svg",
  5948. extra: 962 / 901,
  5949. bottom: 0.04
  5950. }
  5951. }
  5952. },
  5953. [
  5954. {
  5955. name: "Micro",
  5956. height: math.unit(5, "inches"),
  5957. default: true
  5958. },
  5959. {
  5960. name: "Normal",
  5961. height: math.unit(7, "feet")
  5962. },
  5963. ]
  5964. ))
  5965. characterMakers.push(() => makeCharacter(
  5966. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5967. {
  5968. front: {
  5969. height: math.unit(6, "feet"),
  5970. weight: math.unit(140, "lbs"),
  5971. name: "Front",
  5972. image: {
  5973. source: "./media/characters/cynosura/front.svg",
  5974. extra: 896 / 847
  5975. }
  5976. },
  5977. back: {
  5978. height: math.unit(6, "feet"),
  5979. weight: math.unit(140, "lbs"),
  5980. name: "Back",
  5981. image: {
  5982. source: "./media/characters/cynosura/back.svg",
  5983. extra: 1365 / 1250
  5984. }
  5985. },
  5986. },
  5987. [
  5988. {
  5989. name: "Micro",
  5990. height: math.unit(4, "inches")
  5991. },
  5992. {
  5993. name: "Normal",
  5994. height: math.unit(5.75, "feet"),
  5995. default: true
  5996. },
  5997. {
  5998. name: "Tall",
  5999. height: math.unit(10, "feet")
  6000. },
  6001. {
  6002. name: "Big",
  6003. height: math.unit(20, "feet")
  6004. },
  6005. {
  6006. name: "Macro",
  6007. height: math.unit(50, "feet")
  6008. },
  6009. ]
  6010. ))
  6011. characterMakers.push(() => makeCharacter(
  6012. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6013. {
  6014. front: {
  6015. height: math.unit(13 + 2/12, "feet"),
  6016. weight: math.unit(800, "kg"),
  6017. name: "Front",
  6018. image: {
  6019. source: "./media/characters/gin/front.svg",
  6020. extra: 1312/1191,
  6021. bottom: 45/1357
  6022. }
  6023. },
  6024. mouth: {
  6025. height: math.unit(2.39 * 1.8, "feet"),
  6026. name: "Mouth",
  6027. image: {
  6028. source: "./media/characters/gin/mouth.svg"
  6029. }
  6030. },
  6031. hand: {
  6032. height: math.unit(1.57 * 2.19, "feet"),
  6033. name: "Hand",
  6034. image: {
  6035. source: "./media/characters/gin/hand.svg"
  6036. }
  6037. },
  6038. foot: {
  6039. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6040. name: "Foot",
  6041. image: {
  6042. source: "./media/characters/gin/foot.svg"
  6043. }
  6044. },
  6045. sole: {
  6046. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6047. name: "Sole",
  6048. image: {
  6049. source: "./media/characters/gin/sole.svg"
  6050. }
  6051. },
  6052. },
  6053. [
  6054. {
  6055. name: "Very Small",
  6056. height: math.unit(13 + 2 / 12, "feet")
  6057. },
  6058. {
  6059. name: "Micro",
  6060. height: math.unit(600, "miles")
  6061. },
  6062. {
  6063. name: "Regular",
  6064. height: math.unit(20, "earths"),
  6065. default: true
  6066. },
  6067. {
  6068. name: "Macro",
  6069. height: math.unit(2.2, "solarradii")
  6070. },
  6071. {
  6072. name: "Teramacro",
  6073. height: math.unit(1.2, "galaxies")
  6074. },
  6075. {
  6076. name: "Omegamacro",
  6077. height: math.unit(200, "universes")
  6078. },
  6079. ]
  6080. ))
  6081. characterMakers.push(() => makeCharacter(
  6082. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6083. {
  6084. front: {
  6085. height: math.unit(6 + 1 / 6, "feet"),
  6086. weight: math.unit(178, "lbs"),
  6087. name: "Front",
  6088. image: {
  6089. source: "./media/characters/guy/front.svg"
  6090. }
  6091. }
  6092. },
  6093. [
  6094. {
  6095. name: "Normal",
  6096. height: math.unit(6 + 1 / 6, "feet"),
  6097. default: true
  6098. },
  6099. {
  6100. name: "Large",
  6101. height: math.unit(25 + 7 / 12, "feet")
  6102. },
  6103. {
  6104. name: "Macro",
  6105. height: math.unit(60 + 9 / 12, "feet")
  6106. },
  6107. {
  6108. name: "Macro+",
  6109. height: math.unit(246, "feet")
  6110. },
  6111. {
  6112. name: "Macro++",
  6113. height: math.unit(878, "feet")
  6114. }
  6115. ]
  6116. ))
  6117. characterMakers.push(() => makeCharacter(
  6118. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6119. {
  6120. front: {
  6121. height: math.unit(9, "feet"),
  6122. weight: math.unit(800, "lbs"),
  6123. name: "Front",
  6124. image: {
  6125. source: "./media/characters/tiberius/front.svg",
  6126. extra: 2295 / 2071
  6127. }
  6128. },
  6129. back: {
  6130. height: math.unit(9, "feet"),
  6131. weight: math.unit(800, "lbs"),
  6132. name: "Back",
  6133. image: {
  6134. source: "./media/characters/tiberius/back.svg",
  6135. extra: 2373 / 2160
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(9, "feet"),
  6143. default: true
  6144. }
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6149. {
  6150. front: {
  6151. height: math.unit(6, "feet"),
  6152. weight: math.unit(600, "lbs"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/surgo/front.svg",
  6156. extra: 3591 / 2227
  6157. }
  6158. },
  6159. back: {
  6160. height: math.unit(6, "feet"),
  6161. weight: math.unit(600, "lbs"),
  6162. name: "Back",
  6163. image: {
  6164. source: "./media/characters/surgo/back.svg",
  6165. extra: 3557 / 2228
  6166. }
  6167. },
  6168. laying: {
  6169. height: math.unit(6 * 0.85, "feet"),
  6170. weight: math.unit(600, "lbs"),
  6171. name: "Laying",
  6172. image: {
  6173. source: "./media/characters/surgo/laying.svg"
  6174. }
  6175. },
  6176. },
  6177. [
  6178. {
  6179. name: "Normal",
  6180. height: math.unit(6, "feet"),
  6181. default: true
  6182. }
  6183. ]
  6184. ))
  6185. characterMakers.push(() => makeCharacter(
  6186. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6187. {
  6188. side: {
  6189. height: math.unit(6, "feet"),
  6190. weight: math.unit(150, "lbs"),
  6191. name: "Side",
  6192. image: {
  6193. source: "./media/characters/cibus/side.svg",
  6194. extra: 800 / 400
  6195. }
  6196. },
  6197. },
  6198. [
  6199. {
  6200. name: "Normal",
  6201. height: math.unit(6, "feet"),
  6202. default: true
  6203. }
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(6, "feet"),
  6211. weight: math.unit(240, "lbs"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/nibbles/front.svg"
  6215. }
  6216. },
  6217. side: {
  6218. height: math.unit(6, "feet"),
  6219. weight: math.unit(240, "lbs"),
  6220. name: "Side",
  6221. image: {
  6222. source: "./media/characters/nibbles/side.svg"
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(9, "feet"),
  6230. default: true
  6231. }
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6236. {
  6237. side: {
  6238. height: math.unit(5 + 1 / 6, "feet"),
  6239. weight: math.unit(130, "lbs"),
  6240. name: "Side",
  6241. image: {
  6242. source: "./media/characters/rikky/side.svg",
  6243. extra: 851 / 801
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(5 + 1 / 6, "feet")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(152, "feet"),
  6255. default: true
  6256. },
  6257. {
  6258. name: "Megamacro",
  6259. height: math.unit(7, "miles")
  6260. }
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6265. {
  6266. side: {
  6267. height: math.unit(370, "cm"),
  6268. weight: math.unit(350, "lbs"),
  6269. name: "Side",
  6270. image: {
  6271. source: "./media/characters/malfressa/side.svg"
  6272. }
  6273. },
  6274. walking: {
  6275. height: math.unit(370, "cm"),
  6276. weight: math.unit(350, "lbs"),
  6277. name: "Walking",
  6278. image: {
  6279. source: "./media/characters/malfressa/walking.svg"
  6280. }
  6281. },
  6282. feral: {
  6283. height: math.unit(2500, "cm"),
  6284. weight: math.unit(100000, "lbs"),
  6285. name: "Feral",
  6286. image: {
  6287. source: "./media/characters/malfressa/feral.svg",
  6288. extra: 2108 / 837,
  6289. bottom: 0.02
  6290. }
  6291. },
  6292. },
  6293. [
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(370, "cm")
  6297. },
  6298. {
  6299. name: "Macro",
  6300. height: math.unit(300, "meters"),
  6301. default: true
  6302. }
  6303. ]
  6304. ))
  6305. characterMakers.push(() => makeCharacter(
  6306. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6307. {
  6308. front: {
  6309. height: math.unit(6, "feet"),
  6310. weight: math.unit(60, "kg"),
  6311. name: "Front",
  6312. image: {
  6313. source: "./media/characters/jaro/front.svg"
  6314. }
  6315. },
  6316. back: {
  6317. height: math.unit(6, "feet"),
  6318. weight: math.unit(60, "kg"),
  6319. name: "Back",
  6320. image: {
  6321. source: "./media/characters/jaro/back.svg"
  6322. }
  6323. },
  6324. },
  6325. [
  6326. {
  6327. name: "Micro",
  6328. height: math.unit(7, "inches")
  6329. },
  6330. {
  6331. name: "Normal",
  6332. height: math.unit(5.5, "feet"),
  6333. default: true
  6334. },
  6335. {
  6336. name: "Minimacro",
  6337. height: math.unit(20, "feet")
  6338. },
  6339. {
  6340. name: "Macro",
  6341. height: math.unit(200, "meters")
  6342. }
  6343. ]
  6344. ))
  6345. characterMakers.push(() => makeCharacter(
  6346. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6347. {
  6348. front: {
  6349. height: math.unit(6, "feet"),
  6350. weight: math.unit(195, "lb"),
  6351. name: "Front",
  6352. image: {
  6353. source: "./media/characters/rogue/front.svg"
  6354. }
  6355. },
  6356. },
  6357. [
  6358. {
  6359. name: "Macro",
  6360. height: math.unit(90, "feet"),
  6361. default: true
  6362. },
  6363. ]
  6364. ))
  6365. characterMakers.push(() => makeCharacter(
  6366. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6367. {
  6368. front: {
  6369. height: math.unit(5 + 8 / 12, "feet"),
  6370. weight: math.unit(140, "lb"),
  6371. name: "Front",
  6372. image: {
  6373. source: "./media/characters/piper/front.svg",
  6374. extra: 3948/3655,
  6375. bottom: 0/3948
  6376. }
  6377. },
  6378. },
  6379. [
  6380. {
  6381. name: "Micro",
  6382. height: math.unit(2, "inches")
  6383. },
  6384. {
  6385. name: "Normal",
  6386. height: math.unit(5 + 8 / 12, "feet")
  6387. },
  6388. {
  6389. name: "Macro",
  6390. height: math.unit(250, "feet"),
  6391. default: true
  6392. },
  6393. {
  6394. name: "Megamacro",
  6395. height: math.unit(7, "miles")
  6396. },
  6397. ]
  6398. ))
  6399. characterMakers.push(() => makeCharacter(
  6400. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6401. {
  6402. front: {
  6403. height: math.unit(6, "feet"),
  6404. weight: math.unit(220, "lb"),
  6405. name: "Front",
  6406. image: {
  6407. source: "./media/characters/gemini/front.svg"
  6408. }
  6409. },
  6410. back: {
  6411. height: math.unit(6, "feet"),
  6412. weight: math.unit(220, "lb"),
  6413. name: "Back",
  6414. image: {
  6415. source: "./media/characters/gemini/back.svg"
  6416. }
  6417. },
  6418. kneeling: {
  6419. height: math.unit(6 / 1.5, "feet"),
  6420. weight: math.unit(220, "lb"),
  6421. name: "Kneeling",
  6422. image: {
  6423. source: "./media/characters/gemini/kneeling.svg",
  6424. bottom: 0.02
  6425. }
  6426. },
  6427. },
  6428. [
  6429. {
  6430. name: "Macro",
  6431. height: math.unit(300, "meters"),
  6432. default: true
  6433. },
  6434. {
  6435. name: "Megamacro",
  6436. height: math.unit(6900, "meters")
  6437. },
  6438. ]
  6439. ))
  6440. characterMakers.push(() => makeCharacter(
  6441. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6442. {
  6443. anthro: {
  6444. height: math.unit(2.35, "meters"),
  6445. weight: math.unit(73, "kg"),
  6446. name: "Anthro",
  6447. image: {
  6448. source: "./media/characters/alicia/anthro.svg",
  6449. extra: 2571 / 2385,
  6450. bottom: 75 / 2648
  6451. }
  6452. },
  6453. paw: {
  6454. height: math.unit(1.32, "feet"),
  6455. name: "Paw",
  6456. image: {
  6457. source: "./media/characters/alicia/paw.svg"
  6458. }
  6459. },
  6460. feral: {
  6461. height: math.unit(1.69, "meters"),
  6462. weight: math.unit(73, "kg"),
  6463. name: "Feral",
  6464. image: {
  6465. source: "./media/characters/alicia/feral.svg",
  6466. extra: 2123 / 1715,
  6467. bottom: 222 / 2349
  6468. }
  6469. },
  6470. },
  6471. [
  6472. {
  6473. name: "Normal",
  6474. height: math.unit(2.35, "meters")
  6475. },
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(60, "meters"),
  6479. default: true
  6480. },
  6481. {
  6482. name: "Megamacro",
  6483. height: math.unit(10000, "kilometers")
  6484. },
  6485. ]
  6486. ))
  6487. characterMakers.push(() => makeCharacter(
  6488. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6489. {
  6490. front: {
  6491. height: math.unit(7, "feet"),
  6492. weight: math.unit(250, "lbs"),
  6493. name: "Front",
  6494. image: {
  6495. source: "./media/characters/archy/front.svg"
  6496. }
  6497. }
  6498. },
  6499. [
  6500. {
  6501. name: "Micro",
  6502. height: math.unit(1, "inch")
  6503. },
  6504. {
  6505. name: "Shorty",
  6506. height: math.unit(5, "feet")
  6507. },
  6508. {
  6509. name: "Normal",
  6510. height: math.unit(7, "feet")
  6511. },
  6512. {
  6513. name: "Macro",
  6514. height: math.unit(600, "meters"),
  6515. default: true
  6516. },
  6517. {
  6518. name: "Megamacro",
  6519. height: math.unit(1, "mile")
  6520. },
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6525. {
  6526. front: {
  6527. height: math.unit(1.65, "meters"),
  6528. weight: math.unit(74, "kg"),
  6529. name: "Front",
  6530. image: {
  6531. source: "./media/characters/berri/front.svg",
  6532. extra: 857 / 837,
  6533. bottom: 18 / 877
  6534. }
  6535. },
  6536. bum: {
  6537. height: math.unit(1.46, "feet"),
  6538. name: "Bum",
  6539. image: {
  6540. source: "./media/characters/berri/bum.svg"
  6541. }
  6542. },
  6543. mouth: {
  6544. height: math.unit(0.44, "feet"),
  6545. name: "Mouth",
  6546. image: {
  6547. source: "./media/characters/berri/mouth.svg"
  6548. }
  6549. },
  6550. paw: {
  6551. height: math.unit(0.826, "feet"),
  6552. name: "Paw",
  6553. image: {
  6554. source: "./media/characters/berri/paw.svg"
  6555. }
  6556. },
  6557. },
  6558. [
  6559. {
  6560. name: "Normal",
  6561. height: math.unit(1.65, "meters")
  6562. },
  6563. {
  6564. name: "Macro",
  6565. height: math.unit(60, "m"),
  6566. default: true
  6567. },
  6568. {
  6569. name: "Megamacro",
  6570. height: math.unit(9.213, "km")
  6571. },
  6572. {
  6573. name: "Planet Eater",
  6574. height: math.unit(489, "megameters")
  6575. },
  6576. {
  6577. name: "Teramacro",
  6578. height: math.unit(2471635000000, "meters")
  6579. },
  6580. {
  6581. name: "Examacro",
  6582. height: math.unit(8.0624e+26, "meters")
  6583. }
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(1.72, "meters"),
  6591. weight: math.unit(68, "kg"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/lexi/front.svg"
  6595. }
  6596. }
  6597. },
  6598. [
  6599. {
  6600. name: "Very Smol",
  6601. height: math.unit(10, "mm")
  6602. },
  6603. {
  6604. name: "Micro",
  6605. height: math.unit(6.8, "cm"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Normal",
  6610. height: math.unit(1.72, "m")
  6611. }
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(1.69, "meters"),
  6619. weight: math.unit(68, "kg"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/martin/front.svg",
  6623. extra: 596 / 581
  6624. }
  6625. }
  6626. },
  6627. [
  6628. {
  6629. name: "Micro",
  6630. height: math.unit(6.85, "cm"),
  6631. default: true
  6632. },
  6633. {
  6634. name: "Normal",
  6635. height: math.unit(1.69, "m")
  6636. }
  6637. ]
  6638. ))
  6639. characterMakers.push(() => makeCharacter(
  6640. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6641. {
  6642. front: {
  6643. height: math.unit(1.69, "meters"),
  6644. weight: math.unit(68, "kg"),
  6645. name: "Front",
  6646. image: {
  6647. source: "./media/characters/juno/front.svg"
  6648. }
  6649. }
  6650. },
  6651. [
  6652. {
  6653. name: "Micro",
  6654. height: math.unit(7, "cm")
  6655. },
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(1.89, "m")
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(353, "meters"),
  6663. default: true
  6664. }
  6665. ]
  6666. ))
  6667. characterMakers.push(() => makeCharacter(
  6668. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6669. {
  6670. front: {
  6671. height: math.unit(1.93, "meters"),
  6672. weight: math.unit(83, "kg"),
  6673. name: "Front",
  6674. image: {
  6675. source: "./media/characters/samantha/front.svg"
  6676. }
  6677. },
  6678. frontClothed: {
  6679. height: math.unit(1.93, "meters"),
  6680. weight: math.unit(83, "kg"),
  6681. name: "Front (Clothed)",
  6682. image: {
  6683. source: "./media/characters/samantha/front-clothed.svg"
  6684. }
  6685. },
  6686. back: {
  6687. height: math.unit(1.93, "meters"),
  6688. weight: math.unit(83, "kg"),
  6689. name: "Back",
  6690. image: {
  6691. source: "./media/characters/samantha/back.svg"
  6692. }
  6693. },
  6694. },
  6695. [
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(1.93, "m")
  6699. },
  6700. {
  6701. name: "Macro",
  6702. height: math.unit(74, "meters"),
  6703. default: true
  6704. },
  6705. {
  6706. name: "Macro+",
  6707. height: math.unit(223, "meters"),
  6708. },
  6709. {
  6710. name: "Megamacro",
  6711. height: math.unit(8381, "meters"),
  6712. },
  6713. {
  6714. name: "Megamacro+",
  6715. height: math.unit(12000, "kilometers")
  6716. },
  6717. ]
  6718. ))
  6719. characterMakers.push(() => makeCharacter(
  6720. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6721. {
  6722. front: {
  6723. height: math.unit(1.92, "meters"),
  6724. weight: math.unit(80, "kg"),
  6725. name: "Front",
  6726. image: {
  6727. source: "./media/characters/dr-clay/front.svg"
  6728. }
  6729. },
  6730. frontClothed: {
  6731. height: math.unit(1.92, "meters"),
  6732. weight: math.unit(80, "kg"),
  6733. name: "Front (Clothed)",
  6734. image: {
  6735. source: "./media/characters/dr-clay/front-clothed.svg"
  6736. }
  6737. }
  6738. },
  6739. [
  6740. {
  6741. name: "Normal",
  6742. height: math.unit(1.92, "m")
  6743. },
  6744. {
  6745. name: "Macro",
  6746. height: math.unit(214, "meters"),
  6747. default: true
  6748. },
  6749. {
  6750. name: "Macro+",
  6751. height: math.unit(12.237, "meters"),
  6752. },
  6753. {
  6754. name: "Megamacro",
  6755. height: math.unit(557, "megameters"),
  6756. },
  6757. {
  6758. name: "Unimaginable",
  6759. height: math.unit(120e9, "lightyears")
  6760. },
  6761. ]
  6762. ))
  6763. characterMakers.push(() => makeCharacter(
  6764. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6765. {
  6766. front: {
  6767. height: math.unit(2, "meters"),
  6768. weight: math.unit(80, "kg"),
  6769. name: "Front",
  6770. image: {
  6771. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6772. }
  6773. }
  6774. },
  6775. [
  6776. {
  6777. name: "Teramacro",
  6778. height: math.unit(500000, "lightyears"),
  6779. default: true
  6780. },
  6781. ]
  6782. ))
  6783. characterMakers.push(() => makeCharacter(
  6784. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6785. {
  6786. crux: {
  6787. height: math.unit(2, "meters"),
  6788. weight: math.unit(150, "kg"),
  6789. name: "Crux",
  6790. image: {
  6791. source: "./media/characters/vemus/crux.svg",
  6792. extra: 1074/936,
  6793. bottom: 23/1097
  6794. }
  6795. },
  6796. skunkTanuki: {
  6797. height: math.unit(2, "meters"),
  6798. weight: math.unit(150, "kg"),
  6799. name: "Skunk-Tanuki",
  6800. image: {
  6801. source: "./media/characters/vemus/skunk-tanuki.svg",
  6802. extra: 926/893,
  6803. bottom: 20/946
  6804. }
  6805. },
  6806. },
  6807. [
  6808. {
  6809. name: "Normal",
  6810. height: math.unit(3.75, "meters"),
  6811. default: true
  6812. },
  6813. {
  6814. name: "Big",
  6815. height: math.unit(8, "meters")
  6816. },
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(100, "meters")
  6820. },
  6821. {
  6822. name: "Macro+",
  6823. height: math.unit(1500, "meters")
  6824. },
  6825. {
  6826. name: "Stellar",
  6827. height: math.unit(14e8, "meters")
  6828. },
  6829. ]
  6830. ))
  6831. characterMakers.push(() => makeCharacter(
  6832. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6833. {
  6834. front: {
  6835. height: math.unit(2, "meters"),
  6836. weight: math.unit(70, "kg"),
  6837. name: "Front",
  6838. image: {
  6839. source: "./media/characters/beherit/front.svg",
  6840. extra: 1408 / 1242
  6841. }
  6842. }
  6843. },
  6844. [
  6845. {
  6846. name: "Normal",
  6847. height: math.unit(6, "feet")
  6848. },
  6849. {
  6850. name: "Lorg",
  6851. height: math.unit(25, "feet"),
  6852. default: true
  6853. },
  6854. {
  6855. name: "Lorger",
  6856. height: math.unit(75, "feet")
  6857. },
  6858. {
  6859. name: "Macro",
  6860. height: math.unit(200, "meters")
  6861. },
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(2, "meters"),
  6869. weight: math.unit(150, "kg"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/everett/front.svg",
  6873. extra: 2038 / 1737,
  6874. bottom: 0.03
  6875. }
  6876. },
  6877. paw: {
  6878. height: math.unit(2 / 3.6, "meters"),
  6879. name: "Paw",
  6880. image: {
  6881. source: "./media/characters/everett/paw.svg"
  6882. }
  6883. },
  6884. },
  6885. [
  6886. {
  6887. name: "Normal",
  6888. height: math.unit(15, "feet"),
  6889. default: true
  6890. },
  6891. {
  6892. name: "Lorg",
  6893. height: math.unit(70, "feet"),
  6894. default: true
  6895. },
  6896. {
  6897. name: "Lorger",
  6898. height: math.unit(250, "feet")
  6899. },
  6900. {
  6901. name: "Macro",
  6902. height: math.unit(500, "meters")
  6903. },
  6904. ]
  6905. ))
  6906. characterMakers.push(() => makeCharacter(
  6907. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6908. {
  6909. front: {
  6910. height: math.unit(2, "meters"),
  6911. weight: math.unit(86, "kg"),
  6912. name: "Front",
  6913. image: {
  6914. source: "./media/characters/rose/front.svg",
  6915. extra: 1785/1636,
  6916. bottom: 30/1815
  6917. }
  6918. },
  6919. frontSporty: {
  6920. height: math.unit(2, "meters"),
  6921. weight: math.unit(86, "kg"),
  6922. name: "Front (Sporty)",
  6923. image: {
  6924. source: "./media/characters/rose/front-sporty.svg",
  6925. extra: 350/335,
  6926. bottom: 10/360
  6927. }
  6928. },
  6929. frontAlt: {
  6930. height: math.unit(1.6, "meters"),
  6931. weight: math.unit(86, "kg"),
  6932. name: "Front (Alt)",
  6933. image: {
  6934. source: "./media/characters/rose/front-alt.svg",
  6935. extra: 299/283,
  6936. bottom: 3/302
  6937. }
  6938. },
  6939. plush: {
  6940. height: math.unit(2, "meters"),
  6941. weight: math.unit(86/3, "kg"),
  6942. name: "Plush",
  6943. image: {
  6944. source: "./media/characters/rose/plush.svg",
  6945. extra: 361/337,
  6946. bottom: 11/372
  6947. }
  6948. },
  6949. },
  6950. [
  6951. {
  6952. name: "True Micro",
  6953. height: math.unit(9, "cm")
  6954. },
  6955. {
  6956. name: "Micro",
  6957. height: math.unit(16, "cm")
  6958. },
  6959. {
  6960. name: "Normal",
  6961. height: math.unit(1.85, "meters"),
  6962. default: true
  6963. },
  6964. {
  6965. name: "Mini-Macro",
  6966. height: math.unit(5, "meters")
  6967. },
  6968. {
  6969. name: "Macro",
  6970. height: math.unit(15, "meters")
  6971. },
  6972. {
  6973. name: "True Macro",
  6974. height: math.unit(40, "meters")
  6975. },
  6976. {
  6977. name: "City Scale",
  6978. height: math.unit(1, "km")
  6979. },
  6980. ]
  6981. ))
  6982. characterMakers.push(() => makeCharacter(
  6983. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6984. {
  6985. front: {
  6986. height: math.unit(2, "meters"),
  6987. weight: math.unit(350, "lbs"),
  6988. name: "Front",
  6989. image: {
  6990. source: "./media/characters/regal/front.svg"
  6991. }
  6992. },
  6993. back: {
  6994. height: math.unit(2, "meters"),
  6995. weight: math.unit(350, "lbs"),
  6996. name: "Back",
  6997. image: {
  6998. source: "./media/characters/regal/back.svg"
  6999. }
  7000. },
  7001. },
  7002. [
  7003. {
  7004. name: "Macro",
  7005. height: math.unit(350, "feet"),
  7006. default: true
  7007. }
  7008. ]
  7009. ))
  7010. characterMakers.push(() => makeCharacter(
  7011. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7012. {
  7013. front: {
  7014. height: math.unit(4 + 11 / 12, "feet"),
  7015. weight: math.unit(100, "lbs"),
  7016. name: "Front",
  7017. image: {
  7018. source: "./media/characters/opal/front.svg"
  7019. }
  7020. },
  7021. frontAlt: {
  7022. height: math.unit(4 + 11 / 12, "feet"),
  7023. weight: math.unit(100, "lbs"),
  7024. name: "Front (Alt)",
  7025. image: {
  7026. source: "./media/characters/opal/front-alt.svg"
  7027. }
  7028. },
  7029. },
  7030. [
  7031. {
  7032. name: "Small",
  7033. height: math.unit(4 + 11 / 12, "feet")
  7034. },
  7035. {
  7036. name: "Normal",
  7037. height: math.unit(20, "feet"),
  7038. default: true
  7039. },
  7040. {
  7041. name: "Macro",
  7042. height: math.unit(120, "feet")
  7043. },
  7044. {
  7045. name: "Megamacro",
  7046. height: math.unit(80, "miles")
  7047. },
  7048. {
  7049. name: "True Size",
  7050. height: math.unit(100000, "lightyears")
  7051. },
  7052. ]
  7053. ))
  7054. characterMakers.push(() => makeCharacter(
  7055. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7056. {
  7057. front: {
  7058. height: math.unit(6, "feet"),
  7059. weight: math.unit(200, "lbs"),
  7060. name: "Front",
  7061. image: {
  7062. source: "./media/characters/vector-wuff/front.svg"
  7063. }
  7064. }
  7065. },
  7066. [
  7067. {
  7068. name: "Normal",
  7069. height: math.unit(2.8, "meters")
  7070. },
  7071. {
  7072. name: "Macro",
  7073. height: math.unit(450, "meters"),
  7074. default: true
  7075. },
  7076. {
  7077. name: "Megamacro",
  7078. height: math.unit(15, "kilometers")
  7079. }
  7080. ]
  7081. ))
  7082. characterMakers.push(() => makeCharacter(
  7083. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7084. {
  7085. front: {
  7086. height: math.unit(6, "feet"),
  7087. weight: math.unit(256, "lbs"),
  7088. name: "Front",
  7089. image: {
  7090. source: "./media/characters/dannik/front.svg"
  7091. }
  7092. }
  7093. },
  7094. [
  7095. {
  7096. name: "Macro",
  7097. height: math.unit(69.57, "meters"),
  7098. default: true
  7099. },
  7100. ]
  7101. ))
  7102. characterMakers.push(() => makeCharacter(
  7103. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7104. {
  7105. front: {
  7106. height: math.unit(6, "feet"),
  7107. weight: math.unit(120, "lbs"),
  7108. name: "Front",
  7109. image: {
  7110. source: "./media/characters/azura-saharah/front.svg"
  7111. }
  7112. },
  7113. back: {
  7114. height: math.unit(6, "feet"),
  7115. weight: math.unit(120, "lbs"),
  7116. name: "Back",
  7117. image: {
  7118. source: "./media/characters/azura-saharah/back.svg"
  7119. }
  7120. },
  7121. },
  7122. [
  7123. {
  7124. name: "Macro",
  7125. height: math.unit(100, "feet"),
  7126. default: true
  7127. },
  7128. ]
  7129. ))
  7130. characterMakers.push(() => makeCharacter(
  7131. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7132. {
  7133. side: {
  7134. height: math.unit(5 + 4 / 12, "feet"),
  7135. weight: math.unit(163, "lbs"),
  7136. name: "Side",
  7137. image: {
  7138. source: "./media/characters/kennedy/side.svg"
  7139. }
  7140. }
  7141. },
  7142. [
  7143. {
  7144. name: "Standard Doggo",
  7145. height: math.unit(5 + 4 / 12, "feet")
  7146. },
  7147. {
  7148. name: "Big Doggo",
  7149. height: math.unit(25 + 3 / 12, "feet"),
  7150. default: true
  7151. },
  7152. ]
  7153. ))
  7154. characterMakers.push(() => makeCharacter(
  7155. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7156. {
  7157. front: {
  7158. height: math.unit(5 + 5/12, "feet"),
  7159. weight: math.unit(100, "lbs"),
  7160. name: "Front",
  7161. image: {
  7162. source: "./media/characters/odios-de-lunar/front.svg",
  7163. extra: 1468/1323,
  7164. bottom: 22/1490
  7165. }
  7166. }
  7167. },
  7168. [
  7169. {
  7170. name: "Micro",
  7171. height: math.unit(3, "inches")
  7172. },
  7173. {
  7174. name: "Normal",
  7175. height: math.unit(5.5, "feet"),
  7176. default: true
  7177. },
  7178. {
  7179. name: "Macro",
  7180. height: math.unit(100, "feet")
  7181. },
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7186. {
  7187. back: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(220, "lbs"),
  7190. name: "Back",
  7191. image: {
  7192. source: "./media/characters/mandake/back.svg"
  7193. }
  7194. }
  7195. },
  7196. [
  7197. {
  7198. name: "Normal",
  7199. height: math.unit(7, "feet"),
  7200. default: true
  7201. },
  7202. {
  7203. name: "Macro",
  7204. height: math.unit(78, "feet")
  7205. },
  7206. {
  7207. name: "Macro+",
  7208. height: math.unit(300, "meters")
  7209. },
  7210. {
  7211. name: "Macro++",
  7212. height: math.unit(2400, "feet")
  7213. },
  7214. {
  7215. name: "Megamacro",
  7216. height: math.unit(5167, "meters")
  7217. },
  7218. {
  7219. name: "Gigamacro",
  7220. height: math.unit(41769, "miles")
  7221. },
  7222. ]
  7223. ))
  7224. characterMakers.push(() => makeCharacter(
  7225. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7226. {
  7227. front: {
  7228. height: math.unit(6, "feet"),
  7229. weight: math.unit(120, "lbs"),
  7230. name: "Front",
  7231. image: {
  7232. source: "./media/characters/yozey/front.svg"
  7233. }
  7234. },
  7235. frontAlt: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(120, "lbs"),
  7238. name: "Front (Alt)",
  7239. image: {
  7240. source: "./media/characters/yozey/front-alt.svg"
  7241. }
  7242. },
  7243. side: {
  7244. height: math.unit(6, "feet"),
  7245. weight: math.unit(120, "lbs"),
  7246. name: "Side",
  7247. image: {
  7248. source: "./media/characters/yozey/side.svg"
  7249. }
  7250. },
  7251. },
  7252. [
  7253. {
  7254. name: "Micro",
  7255. height: math.unit(3, "inches"),
  7256. default: true
  7257. },
  7258. {
  7259. name: "Normal",
  7260. height: math.unit(6, "feet")
  7261. }
  7262. ]
  7263. ))
  7264. characterMakers.push(() => makeCharacter(
  7265. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7266. {
  7267. front: {
  7268. height: math.unit(6, "feet"),
  7269. weight: math.unit(103, "lbs"),
  7270. name: "Front",
  7271. image: {
  7272. source: "./media/characters/valeska-voss/front.svg"
  7273. }
  7274. }
  7275. },
  7276. [
  7277. {
  7278. name: "Mini-Sized Sub",
  7279. height: math.unit(3.1, "inches")
  7280. },
  7281. {
  7282. name: "Mid-Sized Sub",
  7283. height: math.unit(6.2, "inches")
  7284. },
  7285. {
  7286. name: "Full-Sized Sub",
  7287. height: math.unit(9.3, "inches")
  7288. },
  7289. {
  7290. name: "Normal",
  7291. height: math.unit(5 + 2 / 12, "foot"),
  7292. default: true
  7293. },
  7294. ]
  7295. ))
  7296. characterMakers.push(() => makeCharacter(
  7297. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7298. {
  7299. front: {
  7300. height: math.unit(6, "feet"),
  7301. weight: math.unit(160, "lbs"),
  7302. name: "Front",
  7303. image: {
  7304. source: "./media/characters/gene-zeta/front.svg",
  7305. extra: 3006 / 2826,
  7306. bottom: 182 / 3188
  7307. }
  7308. }
  7309. },
  7310. [
  7311. {
  7312. name: "Micro",
  7313. height: math.unit(6, "inches")
  7314. },
  7315. {
  7316. name: "Normal",
  7317. height: math.unit(5 + 11 / 12, "foot"),
  7318. default: true
  7319. },
  7320. {
  7321. name: "Macro",
  7322. height: math.unit(140, "feet")
  7323. },
  7324. {
  7325. name: "Supercharged",
  7326. height: math.unit(2500, "feet")
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(6, "feet"),
  7335. weight: math.unit(350, "lbs"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/razinox/front.svg",
  7339. extra: 1686 / 1548,
  7340. bottom: 28.2 / 1868
  7341. }
  7342. },
  7343. back: {
  7344. height: math.unit(6, "feet"),
  7345. weight: math.unit(350, "lbs"),
  7346. name: "Back",
  7347. image: {
  7348. source: "./media/characters/razinox/back.svg",
  7349. extra: 1660 / 1590,
  7350. bottom: 15 / 1665
  7351. }
  7352. },
  7353. },
  7354. [
  7355. {
  7356. name: "Normal",
  7357. height: math.unit(10 + 8 / 12, "foot")
  7358. },
  7359. {
  7360. name: "Minimacro",
  7361. height: math.unit(15, "foot")
  7362. },
  7363. {
  7364. name: "Macro",
  7365. height: math.unit(60, "foot"),
  7366. default: true
  7367. },
  7368. {
  7369. name: "Megamacro",
  7370. height: math.unit(5, "miles")
  7371. },
  7372. {
  7373. name: "Gigamacro",
  7374. height: math.unit(6000, "miles")
  7375. },
  7376. ]
  7377. ))
  7378. characterMakers.push(() => makeCharacter(
  7379. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7380. {
  7381. front: {
  7382. height: math.unit(6, "feet"),
  7383. weight: math.unit(150, "lbs"),
  7384. name: "Front",
  7385. image: {
  7386. source: "./media/characters/cobalt/front.svg"
  7387. }
  7388. }
  7389. },
  7390. [
  7391. {
  7392. name: "Normal",
  7393. height: math.unit(8 + 1 / 12, "foot")
  7394. },
  7395. {
  7396. name: "Macro",
  7397. height: math.unit(111, "foot"),
  7398. default: true
  7399. },
  7400. {
  7401. name: "Supracosmic",
  7402. height: math.unit(1e42, "feet")
  7403. },
  7404. ]
  7405. ))
  7406. characterMakers.push(() => makeCharacter(
  7407. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7408. {
  7409. front: {
  7410. height: math.unit(6, "feet"),
  7411. weight: math.unit(140, "lbs"),
  7412. name: "Front",
  7413. image: {
  7414. source: "./media/characters/amanda/front.svg"
  7415. }
  7416. }
  7417. },
  7418. [
  7419. {
  7420. name: "Micro",
  7421. height: math.unit(5, "inches"),
  7422. default: true
  7423. },
  7424. ]
  7425. ))
  7426. characterMakers.push(() => makeCharacter(
  7427. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7428. {
  7429. front: {
  7430. height: math.unit(2.75, "meters"),
  7431. weight: math.unit(1200, "lb"),
  7432. name: "Front",
  7433. image: {
  7434. source: "./media/characters/teal/front.svg",
  7435. extra: 2463 / 2320,
  7436. bottom: 166 / 2629
  7437. }
  7438. },
  7439. back: {
  7440. height: math.unit(2.75, "meters"),
  7441. weight: math.unit(1200, "lb"),
  7442. name: "Back",
  7443. image: {
  7444. source: "./media/characters/teal/back.svg",
  7445. extra: 2580 / 2489,
  7446. bottom: 151 / 2731
  7447. }
  7448. },
  7449. sitting: {
  7450. height: math.unit(1.9, "meters"),
  7451. weight: math.unit(1200, "lb"),
  7452. name: "Sitting",
  7453. image: {
  7454. source: "./media/characters/teal/sitting.svg",
  7455. extra: 623 / 590,
  7456. bottom: 121 / 744
  7457. }
  7458. },
  7459. standing: {
  7460. height: math.unit(2.75, "meters"),
  7461. weight: math.unit(1200, "lb"),
  7462. name: "Standing",
  7463. image: {
  7464. source: "./media/characters/teal/standing.svg",
  7465. extra: 923 / 893,
  7466. bottom: 60 / 983
  7467. }
  7468. },
  7469. stretching: {
  7470. height: math.unit(3.65, "meters"),
  7471. weight: math.unit(1200, "lb"),
  7472. name: "Stretching",
  7473. image: {
  7474. source: "./media/characters/teal/stretching.svg",
  7475. extra: 1276 / 1244,
  7476. bottom: 0 / 1276
  7477. }
  7478. },
  7479. legged: {
  7480. height: math.unit(1.3, "meters"),
  7481. weight: math.unit(100, "lb"),
  7482. name: "Legged",
  7483. image: {
  7484. source: "./media/characters/teal/legged.svg",
  7485. extra: 462 / 437,
  7486. bottom: 24 / 486
  7487. }
  7488. },
  7489. naga: {
  7490. height: math.unit(5.4, "meters"),
  7491. weight: math.unit(4000, "lb"),
  7492. name: "Naga",
  7493. image: {
  7494. source: "./media/characters/teal/naga.svg",
  7495. extra: 1902 / 1858,
  7496. bottom: 0 / 1902
  7497. }
  7498. },
  7499. hand: {
  7500. height: math.unit(0.52, "meters"),
  7501. name: "Hand",
  7502. image: {
  7503. source: "./media/characters/teal/hand.svg"
  7504. }
  7505. },
  7506. maw: {
  7507. height: math.unit(0.43, "meters"),
  7508. name: "Maw",
  7509. image: {
  7510. source: "./media/characters/teal/maw.svg"
  7511. }
  7512. },
  7513. slit: {
  7514. height: math.unit(0.25, "meters"),
  7515. name: "Slit",
  7516. image: {
  7517. source: "./media/characters/teal/slit.svg"
  7518. }
  7519. },
  7520. },
  7521. [
  7522. {
  7523. name: "Normal",
  7524. height: math.unit(2.75, "meters"),
  7525. default: true
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(300, "feet")
  7530. },
  7531. {
  7532. name: "Macro+",
  7533. height: math.unit(2000, "feet")
  7534. },
  7535. ]
  7536. ))
  7537. characterMakers.push(() => makeCharacter(
  7538. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7539. {
  7540. frontCat: {
  7541. height: math.unit(6, "feet"),
  7542. weight: math.unit(180, "lbs"),
  7543. name: "Front (Cat)",
  7544. image: {
  7545. source: "./media/characters/ravin-amulet/front-cat.svg"
  7546. }
  7547. },
  7548. frontCatAlt: {
  7549. height: math.unit(6, "feet"),
  7550. weight: math.unit(180, "lbs"),
  7551. name: "Front (Alt, Cat)",
  7552. image: {
  7553. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7554. }
  7555. },
  7556. frontWerewolf: {
  7557. height: math.unit(6 * 1.2, "feet"),
  7558. weight: math.unit(225, "lbs"),
  7559. name: "Front (Werewolf)",
  7560. image: {
  7561. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7562. }
  7563. },
  7564. backWerewolf: {
  7565. height: math.unit(6 * 1.2, "feet"),
  7566. weight: math.unit(225, "lbs"),
  7567. name: "Back (Werewolf)",
  7568. image: {
  7569. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7570. }
  7571. },
  7572. },
  7573. [
  7574. {
  7575. name: "Nano",
  7576. height: math.unit(1, "micrometer")
  7577. },
  7578. {
  7579. name: "Micro",
  7580. height: math.unit(1, "inch")
  7581. },
  7582. {
  7583. name: "Normal",
  7584. height: math.unit(6, "feet"),
  7585. default: true
  7586. },
  7587. {
  7588. name: "Macro",
  7589. height: math.unit(60, "feet")
  7590. }
  7591. ]
  7592. ))
  7593. characterMakers.push(() => makeCharacter(
  7594. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7595. {
  7596. front: {
  7597. height: math.unit(6, "feet"),
  7598. weight: math.unit(165, "lbs"),
  7599. name: "Front",
  7600. image: {
  7601. source: "./media/characters/fluoresce/front.svg"
  7602. }
  7603. }
  7604. },
  7605. [
  7606. {
  7607. name: "Micro",
  7608. height: math.unit(6, "cm")
  7609. },
  7610. {
  7611. name: "Normal",
  7612. height: math.unit(5 + 7 / 12, "feet"),
  7613. default: true
  7614. },
  7615. {
  7616. name: "Macro",
  7617. height: math.unit(56, "feet")
  7618. },
  7619. {
  7620. name: "Megamacro",
  7621. height: math.unit(1.9, "miles")
  7622. },
  7623. ]
  7624. ))
  7625. characterMakers.push(() => makeCharacter(
  7626. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7627. {
  7628. front: {
  7629. height: math.unit(9 + 6 / 12, "feet"),
  7630. weight: math.unit(523, "lbs"),
  7631. name: "Side",
  7632. image: {
  7633. source: "./media/characters/aurora/side.svg"
  7634. }
  7635. }
  7636. },
  7637. [
  7638. {
  7639. name: "Normal",
  7640. height: math.unit(9 + 6 / 12, "feet")
  7641. },
  7642. {
  7643. name: "Macro",
  7644. height: math.unit(96, "feet"),
  7645. default: true
  7646. },
  7647. {
  7648. name: "Macro+",
  7649. height: math.unit(243, "feet")
  7650. },
  7651. ]
  7652. ))
  7653. characterMakers.push(() => makeCharacter(
  7654. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7655. {
  7656. front: {
  7657. height: math.unit(194, "cm"),
  7658. weight: math.unit(90, "kg"),
  7659. name: "Front",
  7660. image: {
  7661. source: "./media/characters/ranek/front.svg"
  7662. }
  7663. },
  7664. side: {
  7665. height: math.unit(194, "cm"),
  7666. weight: math.unit(90, "kg"),
  7667. name: "Side",
  7668. image: {
  7669. source: "./media/characters/ranek/side.svg"
  7670. }
  7671. },
  7672. back: {
  7673. height: math.unit(194, "cm"),
  7674. weight: math.unit(90, "kg"),
  7675. name: "Back",
  7676. image: {
  7677. source: "./media/characters/ranek/back.svg"
  7678. }
  7679. },
  7680. feral: {
  7681. height: math.unit(30, "cm"),
  7682. weight: math.unit(1.6, "lbs"),
  7683. name: "Feral",
  7684. image: {
  7685. source: "./media/characters/ranek/feral.svg"
  7686. }
  7687. },
  7688. },
  7689. [
  7690. {
  7691. name: "Normal",
  7692. height: math.unit(194, "cm"),
  7693. default: true
  7694. },
  7695. {
  7696. name: "Macro",
  7697. height: math.unit(100, "meters")
  7698. },
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(5 + 6 / 12, "feet"),
  7706. weight: math.unit(153, "lbs"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/andrew-cooper/front.svg"
  7710. }
  7711. },
  7712. },
  7713. [
  7714. {
  7715. name: "Nano",
  7716. height: math.unit(1, "mm")
  7717. },
  7718. {
  7719. name: "Micro",
  7720. height: math.unit(2, "inches")
  7721. },
  7722. {
  7723. name: "Normal",
  7724. height: math.unit(5 + 6 / 12, "feet"),
  7725. default: true
  7726. }
  7727. ]
  7728. ))
  7729. characterMakers.push(() => makeCharacter(
  7730. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7731. {
  7732. front: {
  7733. height: math.unit(6, "feet"),
  7734. weight: math.unit(180, "lbs"),
  7735. name: "Front",
  7736. image: {
  7737. source: "./media/characters/akane-sato/front.svg",
  7738. extra: 1219 / 1140
  7739. }
  7740. },
  7741. back: {
  7742. height: math.unit(6, "feet"),
  7743. weight: math.unit(180, "lbs"),
  7744. name: "Back",
  7745. image: {
  7746. source: "./media/characters/akane-sato/back.svg",
  7747. extra: 1219 / 1170
  7748. }
  7749. },
  7750. },
  7751. [
  7752. {
  7753. name: "Normal",
  7754. height: math.unit(2.5, "meters")
  7755. },
  7756. {
  7757. name: "Macro",
  7758. height: math.unit(250, "meters"),
  7759. default: true
  7760. },
  7761. {
  7762. name: "Megamacro",
  7763. height: math.unit(25, "km")
  7764. },
  7765. ]
  7766. ))
  7767. characterMakers.push(() => makeCharacter(
  7768. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7769. {
  7770. front: {
  7771. height: math.unit(6, "feet"),
  7772. weight: math.unit(65, "kg"),
  7773. name: "Front",
  7774. image: {
  7775. source: "./media/characters/rook/front.svg",
  7776. extra: 960 / 950
  7777. }
  7778. }
  7779. },
  7780. [
  7781. {
  7782. name: "Normal",
  7783. height: math.unit(8.8, "feet")
  7784. },
  7785. {
  7786. name: "Macro",
  7787. height: math.unit(88, "feet"),
  7788. default: true
  7789. },
  7790. {
  7791. name: "Megamacro",
  7792. height: math.unit(8, "miles")
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(12 + 2 / 12, "feet"),
  7801. weight: math.unit(808, "lbs"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/prodigy/front.svg"
  7805. }
  7806. }
  7807. },
  7808. [
  7809. {
  7810. name: "Normal",
  7811. height: math.unit(12 + 2 / 12, "feet"),
  7812. default: true
  7813. },
  7814. {
  7815. name: "Macro",
  7816. height: math.unit(143, "feet")
  7817. },
  7818. {
  7819. name: "Macro+",
  7820. height: math.unit(400, "feet")
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(6, "feet"),
  7829. weight: math.unit(225, "lbs"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/daniel/front.svg"
  7833. }
  7834. },
  7835. leaning: {
  7836. height: math.unit(6, "feet"),
  7837. weight: math.unit(225, "lbs"),
  7838. name: "Leaning",
  7839. image: {
  7840. source: "./media/characters/daniel/leaning.svg"
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Macro",
  7847. height: math.unit(1000, "feet"),
  7848. default: true
  7849. },
  7850. ]
  7851. ))
  7852. characterMakers.push(() => makeCharacter(
  7853. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7854. {
  7855. front: {
  7856. height: math.unit(6, "feet"),
  7857. weight: math.unit(88, "lbs"),
  7858. name: "Front",
  7859. image: {
  7860. source: "./media/characters/chiros/front.svg",
  7861. extra: 306 / 226
  7862. }
  7863. },
  7864. side: {
  7865. height: math.unit(6, "feet"),
  7866. weight: math.unit(88, "lbs"),
  7867. name: "Side",
  7868. image: {
  7869. source: "./media/characters/chiros/side.svg",
  7870. extra: 306 / 226
  7871. }
  7872. },
  7873. },
  7874. [
  7875. {
  7876. name: "Normal",
  7877. height: math.unit(6, "cm"),
  7878. default: true
  7879. },
  7880. ]
  7881. ))
  7882. characterMakers.push(() => makeCharacter(
  7883. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7884. {
  7885. front: {
  7886. height: math.unit(6, "feet"),
  7887. weight: math.unit(100, "lbs"),
  7888. name: "Front",
  7889. image: {
  7890. source: "./media/characters/selka/front.svg",
  7891. extra: 947 / 887
  7892. }
  7893. }
  7894. },
  7895. [
  7896. {
  7897. name: "Normal",
  7898. height: math.unit(5, "cm"),
  7899. default: true
  7900. },
  7901. ]
  7902. ))
  7903. characterMakers.push(() => makeCharacter(
  7904. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7905. {
  7906. front: {
  7907. height: math.unit(8 + 3 / 12, "feet"),
  7908. weight: math.unit(424, "lbs"),
  7909. name: "Front",
  7910. image: {
  7911. source: "./media/characters/verin/front.svg",
  7912. extra: 1845 / 1550
  7913. }
  7914. },
  7915. frontArmored: {
  7916. height: math.unit(8 + 3 / 12, "feet"),
  7917. weight: math.unit(424, "lbs"),
  7918. name: "Front (Armored)",
  7919. image: {
  7920. source: "./media/characters/verin/front-armor.svg",
  7921. extra: 1845 / 1550,
  7922. bottom: 0.01
  7923. }
  7924. },
  7925. back: {
  7926. height: math.unit(8 + 3 / 12, "feet"),
  7927. weight: math.unit(424, "lbs"),
  7928. name: "Back",
  7929. image: {
  7930. source: "./media/characters/verin/back.svg",
  7931. bottom: 0.1,
  7932. extra: 1
  7933. }
  7934. },
  7935. foot: {
  7936. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7937. name: "Foot",
  7938. image: {
  7939. source: "./media/characters/verin/foot.svg"
  7940. }
  7941. },
  7942. },
  7943. [
  7944. {
  7945. name: "Normal",
  7946. height: math.unit(8 + 3 / 12, "feet")
  7947. },
  7948. {
  7949. name: "Minimacro",
  7950. height: math.unit(21, "feet"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Macro",
  7955. height: math.unit(626, "feet")
  7956. },
  7957. ]
  7958. ))
  7959. characterMakers.push(() => makeCharacter(
  7960. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7961. {
  7962. front: {
  7963. height: math.unit(2.718, "meters"),
  7964. weight: math.unit(150, "lbs"),
  7965. name: "Front",
  7966. image: {
  7967. source: "./media/characters/sovrim-terraquian/front.svg"
  7968. }
  7969. },
  7970. back: {
  7971. height: math.unit(2.718, "meters"),
  7972. weight: math.unit(150, "lbs"),
  7973. name: "Back",
  7974. image: {
  7975. source: "./media/characters/sovrim-terraquian/back.svg"
  7976. }
  7977. }
  7978. },
  7979. [
  7980. {
  7981. name: "Micro",
  7982. height: math.unit(2, "inches")
  7983. },
  7984. {
  7985. name: "Small",
  7986. height: math.unit(1, "meter")
  7987. },
  7988. {
  7989. name: "Normal",
  7990. height: math.unit(Math.E, "meters"),
  7991. default: true
  7992. },
  7993. {
  7994. name: "Macro",
  7995. height: math.unit(20, "meters")
  7996. },
  7997. {
  7998. name: "Macro+",
  7999. height: math.unit(400, "meters")
  8000. },
  8001. ]
  8002. ))
  8003. characterMakers.push(() => makeCharacter(
  8004. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8005. {
  8006. front: {
  8007. height: math.unit(7, "feet"),
  8008. weight: math.unit(489, "lbs"),
  8009. name: "Front",
  8010. image: {
  8011. source: "./media/characters/reece-silvermane/front.svg",
  8012. bottom: 0.02,
  8013. extra: 1
  8014. }
  8015. },
  8016. },
  8017. [
  8018. {
  8019. name: "Macro",
  8020. height: math.unit(1.5, "miles"),
  8021. default: true
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(6, "feet"),
  8030. weight: math.unit(78, "kg"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/kane/front.svg",
  8034. extra: 978 / 899
  8035. }
  8036. },
  8037. },
  8038. [
  8039. {
  8040. name: "Normal",
  8041. height: math.unit(2.1, "m"),
  8042. },
  8043. {
  8044. name: "Macro",
  8045. height: math.unit(1, "km"),
  8046. default: true
  8047. },
  8048. ]
  8049. ))
  8050. characterMakers.push(() => makeCharacter(
  8051. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8052. {
  8053. front: {
  8054. height: math.unit(6, "feet"),
  8055. weight: math.unit(200, "kg"),
  8056. name: "Front",
  8057. image: {
  8058. source: "./media/characters/tegon/front.svg",
  8059. bottom: 0.01,
  8060. extra: 1
  8061. }
  8062. },
  8063. },
  8064. [
  8065. {
  8066. name: "Micro",
  8067. height: math.unit(1, "inch")
  8068. },
  8069. {
  8070. name: "Normal",
  8071. height: math.unit(6 + 3 / 12, "feet"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Macro",
  8076. height: math.unit(300, "feet")
  8077. },
  8078. {
  8079. name: "Megamacro",
  8080. height: math.unit(69, "miles")
  8081. },
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8086. {
  8087. side: {
  8088. height: math.unit(6, "feet"),
  8089. weight: math.unit(2304, "lbs"),
  8090. name: "Side",
  8091. image: {
  8092. source: "./media/characters/arcturax/side.svg",
  8093. extra: 790 / 376,
  8094. bottom: 0.01
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Micro",
  8101. height: math.unit(2, "inch")
  8102. },
  8103. {
  8104. name: "Normal",
  8105. height: math.unit(6, "feet")
  8106. },
  8107. {
  8108. name: "Macro",
  8109. height: math.unit(39, "feet"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Megamacro",
  8114. height: math.unit(7, "miles")
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(6, "feet"),
  8123. weight: math.unit(50, "lbs"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/sentri/front.svg",
  8127. extra: 1750 / 1570,
  8128. bottom: 0.025
  8129. }
  8130. },
  8131. frontAlt: {
  8132. height: math.unit(6, "feet"),
  8133. weight: math.unit(50, "lbs"),
  8134. name: "Front (Alt)",
  8135. image: {
  8136. source: "./media/characters/sentri/front-alt.svg",
  8137. extra: 1750 / 1570,
  8138. bottom: 0.025
  8139. }
  8140. },
  8141. },
  8142. [
  8143. {
  8144. name: "Normal",
  8145. height: math.unit(15, "feet"),
  8146. default: true
  8147. },
  8148. {
  8149. name: "Macro",
  8150. height: math.unit(2500, "feet")
  8151. }
  8152. ]
  8153. ))
  8154. characterMakers.push(() => makeCharacter(
  8155. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8156. {
  8157. front: {
  8158. height: math.unit(5 + 8 / 12, "feet"),
  8159. weight: math.unit(130, "lbs"),
  8160. name: "Front",
  8161. image: {
  8162. source: "./media/characters/corvin/front.svg",
  8163. extra: 1803 / 1629
  8164. }
  8165. },
  8166. frontShirt: {
  8167. height: math.unit(5 + 8 / 12, "feet"),
  8168. weight: math.unit(130, "lbs"),
  8169. name: "Front (Shirt)",
  8170. image: {
  8171. source: "./media/characters/corvin/front-shirt.svg",
  8172. extra: 1803 / 1629
  8173. }
  8174. },
  8175. frontPoncho: {
  8176. height: math.unit(5 + 8 / 12, "feet"),
  8177. weight: math.unit(130, "lbs"),
  8178. name: "Front (Poncho)",
  8179. image: {
  8180. source: "./media/characters/corvin/front-poncho.svg",
  8181. extra: 1803 / 1629
  8182. }
  8183. },
  8184. side: {
  8185. height: math.unit(5 + 8 / 12, "feet"),
  8186. weight: math.unit(130, "lbs"),
  8187. name: "Side",
  8188. image: {
  8189. source: "./media/characters/corvin/side.svg",
  8190. extra: 1012 / 945
  8191. }
  8192. },
  8193. back: {
  8194. height: math.unit(5 + 8 / 12, "feet"),
  8195. weight: math.unit(130, "lbs"),
  8196. name: "Back",
  8197. image: {
  8198. source: "./media/characters/corvin/back.svg",
  8199. extra: 1803 / 1629
  8200. }
  8201. },
  8202. },
  8203. [
  8204. {
  8205. name: "Micro",
  8206. height: math.unit(3, "inches")
  8207. },
  8208. {
  8209. name: "Normal",
  8210. height: math.unit(5 + 8 / 12, "feet")
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(300, "feet"),
  8215. default: true
  8216. },
  8217. {
  8218. name: "Megamacro",
  8219. height: math.unit(500, "miles")
  8220. }
  8221. ]
  8222. ))
  8223. characterMakers.push(() => makeCharacter(
  8224. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8225. {
  8226. front: {
  8227. height: math.unit(6, "feet"),
  8228. weight: math.unit(135, "lbs"),
  8229. name: "Front",
  8230. image: {
  8231. source: "./media/characters/q/front.svg",
  8232. extra: 854 / 752,
  8233. bottom: 0.005
  8234. }
  8235. },
  8236. back: {
  8237. height: math.unit(6, "feet"),
  8238. weight: math.unit(130, "lbs"),
  8239. name: "Back",
  8240. image: {
  8241. source: "./media/characters/q/back.svg",
  8242. extra: 854 / 752
  8243. }
  8244. },
  8245. },
  8246. [
  8247. {
  8248. name: "Macro",
  8249. height: math.unit(90, "feet"),
  8250. default: true
  8251. },
  8252. {
  8253. name: "Extra Macro",
  8254. height: math.unit(300, "feet"),
  8255. },
  8256. {
  8257. name: "BIG WALF",
  8258. height: math.unit(750, "feet"),
  8259. },
  8260. ]
  8261. ))
  8262. characterMakers.push(() => makeCharacter(
  8263. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8264. {
  8265. front: {
  8266. height: math.unit(6, "feet"),
  8267. weight: math.unit(150, "lbs"),
  8268. name: "Front",
  8269. image: {
  8270. source: "./media/characters/carley/front.svg",
  8271. extra: 3927 / 3540,
  8272. bottom: 29.2 / 735
  8273. }
  8274. }
  8275. },
  8276. [
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(6 + 3 / 12, "feet")
  8280. },
  8281. {
  8282. name: "Macro",
  8283. height: math.unit(185, "feet"),
  8284. default: true
  8285. },
  8286. {
  8287. name: "Megamacro",
  8288. height: math.unit(8, "miles"),
  8289. },
  8290. ]
  8291. ))
  8292. characterMakers.push(() => makeCharacter(
  8293. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8294. {
  8295. front: {
  8296. height: math.unit(3, "feet"),
  8297. weight: math.unit(28, "lbs"),
  8298. name: "Front",
  8299. image: {
  8300. source: "./media/characters/citrine/front.svg"
  8301. }
  8302. }
  8303. },
  8304. [
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(3, "feet"),
  8308. default: true
  8309. }
  8310. ]
  8311. ))
  8312. characterMakers.push(() => makeCharacter(
  8313. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8314. {
  8315. front: {
  8316. height: math.unit(14, "feet"),
  8317. weight: math.unit(1450, "kg"),
  8318. capacity: math.unit(15, "people"),
  8319. name: "Front",
  8320. image: {
  8321. source: "./media/characters/aura-starwind/front.svg",
  8322. extra: 1440/1327,
  8323. bottom: 11/1451
  8324. }
  8325. },
  8326. side: {
  8327. height: math.unit(14, "feet"),
  8328. weight: math.unit(1450, "kg"),
  8329. capacity: math.unit(15, "people"),
  8330. name: "Side",
  8331. image: {
  8332. source: "./media/characters/aura-starwind/side.svg",
  8333. extra: 1654 / 1497
  8334. }
  8335. },
  8336. taur: {
  8337. height: math.unit(18, "feet"),
  8338. weight: math.unit(5500, "kg"),
  8339. capacity: math.unit(50, "people"),
  8340. name: "Taur",
  8341. image: {
  8342. source: "./media/characters/aura-starwind/taur.svg",
  8343. extra: 1760 / 1650
  8344. }
  8345. },
  8346. feral: {
  8347. height: math.unit(46, "feet"),
  8348. weight: math.unit(25000, "kg"),
  8349. capacity: math.unit(120, "people"),
  8350. name: "Feral",
  8351. image: {
  8352. source: "./media/characters/aura-starwind/feral.svg"
  8353. }
  8354. },
  8355. },
  8356. [
  8357. {
  8358. name: "Normal",
  8359. height: math.unit(14, "feet"),
  8360. default: true
  8361. },
  8362. {
  8363. name: "Macro",
  8364. height: math.unit(50, "meters")
  8365. },
  8366. {
  8367. name: "Megamacro",
  8368. height: math.unit(5000, "meters")
  8369. },
  8370. {
  8371. name: "Gigamacro",
  8372. height: math.unit(100000, "kilometers")
  8373. },
  8374. ]
  8375. ))
  8376. characterMakers.push(() => makeCharacter(
  8377. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8378. {
  8379. front: {
  8380. height: math.unit(2 + 7 / 12, "feet"),
  8381. weight: math.unit(32, "lbs"),
  8382. name: "Front",
  8383. image: {
  8384. source: "./media/characters/rivet/front.svg",
  8385. extra: 1716 / 1658,
  8386. bottom: 0.03
  8387. }
  8388. },
  8389. foot: {
  8390. height: math.unit(0.551, "feet"),
  8391. name: "Rivet's Foot",
  8392. image: {
  8393. source: "./media/characters/rivet/foot.svg"
  8394. },
  8395. rename: true
  8396. }
  8397. },
  8398. [
  8399. {
  8400. name: "Micro",
  8401. height: math.unit(1.5, "inches"),
  8402. },
  8403. {
  8404. name: "Normal",
  8405. height: math.unit(2 + 7 / 12, "feet"),
  8406. default: true
  8407. },
  8408. {
  8409. name: "Macro",
  8410. height: math.unit(85, "feet")
  8411. },
  8412. {
  8413. name: "Megamacro",
  8414. height: math.unit(2.2, "km")
  8415. }
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8420. {
  8421. front: {
  8422. height: math.unit(5 + 9 / 12, "feet"),
  8423. weight: math.unit(150, "lbs"),
  8424. name: "Front",
  8425. image: {
  8426. source: "./media/characters/coffee/front.svg",
  8427. extra: 3666 / 3032,
  8428. bottom: 0.04
  8429. }
  8430. },
  8431. foot: {
  8432. height: math.unit(1.29, "feet"),
  8433. name: "Foot",
  8434. image: {
  8435. source: "./media/characters/coffee/foot.svg"
  8436. }
  8437. },
  8438. },
  8439. [
  8440. {
  8441. name: "Micro",
  8442. height: math.unit(2, "inches"),
  8443. },
  8444. {
  8445. name: "Normal",
  8446. height: math.unit(5 + 9 / 12, "feet"),
  8447. default: true
  8448. },
  8449. {
  8450. name: "Macro",
  8451. height: math.unit(800, "feet")
  8452. },
  8453. {
  8454. name: "Megamacro",
  8455. height: math.unit(25, "miles")
  8456. }
  8457. ]
  8458. ))
  8459. characterMakers.push(() => makeCharacter(
  8460. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8461. {
  8462. front: {
  8463. height: math.unit(6, "feet"),
  8464. weight: math.unit(200, "lbs"),
  8465. name: "Front",
  8466. image: {
  8467. source: "./media/characters/chari-gal/front.svg",
  8468. extra: 1568 / 1385,
  8469. bottom: 0.047
  8470. }
  8471. },
  8472. gigantamax: {
  8473. height: math.unit(6 * 16, "feet"),
  8474. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8475. name: "Gigantamax",
  8476. image: {
  8477. source: "./media/characters/chari-gal/gigantamax.svg",
  8478. extra: 1124 / 888,
  8479. bottom: 0.03
  8480. }
  8481. },
  8482. },
  8483. [
  8484. {
  8485. name: "Normal",
  8486. height: math.unit(5 + 7 / 12, "feet")
  8487. },
  8488. {
  8489. name: "Macro",
  8490. height: math.unit(200, "feet"),
  8491. default: true
  8492. }
  8493. ]
  8494. ))
  8495. characterMakers.push(() => makeCharacter(
  8496. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8497. {
  8498. front: {
  8499. height: math.unit(6, "feet"),
  8500. weight: math.unit(150, "lbs"),
  8501. name: "Front",
  8502. image: {
  8503. source: "./media/characters/nova/front.svg",
  8504. extra: 5000 / 4722,
  8505. bottom: 0.02
  8506. }
  8507. }
  8508. },
  8509. [
  8510. {
  8511. name: "Micro-",
  8512. height: math.unit(0.8, "inches")
  8513. },
  8514. {
  8515. name: "Micro",
  8516. height: math.unit(2, "inches"),
  8517. default: true
  8518. },
  8519. ]
  8520. ))
  8521. characterMakers.push(() => makeCharacter(
  8522. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8523. {
  8524. front: {
  8525. height: math.unit(3 + 1 / 12, "feet"),
  8526. weight: math.unit(21.7, "lbs"),
  8527. name: "Front",
  8528. image: {
  8529. source: "./media/characters/argent/front.svg",
  8530. extra: 1471 / 1331,
  8531. bottom: 100.8 / 1575.5
  8532. }
  8533. }
  8534. },
  8535. [
  8536. {
  8537. name: "Micro",
  8538. height: math.unit(2, "inches")
  8539. },
  8540. {
  8541. name: "Normal",
  8542. height: math.unit(3 + 1 / 12, "feet"),
  8543. default: true
  8544. },
  8545. {
  8546. name: "Macro",
  8547. height: math.unit(120, "feet")
  8548. },
  8549. ]
  8550. ))
  8551. characterMakers.push(() => makeCharacter(
  8552. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8553. {
  8554. lamp: {
  8555. height: math.unit(7 * 1559 / 989, "feet"),
  8556. name: "Magic Lamp",
  8557. image: {
  8558. source: "./media/characters/mira-al-cul/lamp.svg",
  8559. extra: 1617 / 1559
  8560. }
  8561. },
  8562. front: {
  8563. height: math.unit(7, "feet"),
  8564. name: "Front",
  8565. image: {
  8566. source: "./media/characters/mira-al-cul/front.svg",
  8567. extra: 1044 / 990
  8568. }
  8569. },
  8570. },
  8571. [
  8572. {
  8573. name: "Heavily Restricted",
  8574. height: math.unit(7 * 1559 / 989, "feet")
  8575. },
  8576. {
  8577. name: "Freshly Freed",
  8578. height: math.unit(50 * 1559 / 989, "feet")
  8579. },
  8580. {
  8581. name: "World Encompassing",
  8582. height: math.unit(10000 * 1559 / 989, "miles")
  8583. },
  8584. {
  8585. name: "Galactic",
  8586. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8587. },
  8588. {
  8589. name: "Palmed Universe",
  8590. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8591. default: true
  8592. },
  8593. {
  8594. name: "Multiversal Matriarch",
  8595. height: math.unit(8.87e10, "yottameters")
  8596. },
  8597. {
  8598. name: "Void Mother",
  8599. height: math.unit(3.14e110, "yottaparsecs")
  8600. },
  8601. {
  8602. name: "Toying with Transcendence",
  8603. height: math.unit(1e307, "meters")
  8604. },
  8605. ]
  8606. ))
  8607. characterMakers.push(() => makeCharacter(
  8608. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8609. {
  8610. front: {
  8611. height: math.unit(17 + 1 / 12, "feet"),
  8612. weight: math.unit(476.2 * 5, "lbs"),
  8613. name: "Front",
  8614. image: {
  8615. source: "./media/characters/kuro-shi-uchū/front.svg",
  8616. extra: 2329 / 1835,
  8617. bottom: 0.02
  8618. }
  8619. },
  8620. },
  8621. [
  8622. {
  8623. name: "Micro",
  8624. height: math.unit(2, "inches")
  8625. },
  8626. {
  8627. name: "Normal",
  8628. height: math.unit(12, "meters")
  8629. },
  8630. {
  8631. name: "Planetary",
  8632. height: math.unit(0.00929, "AU"),
  8633. default: true
  8634. },
  8635. {
  8636. name: "Universal",
  8637. height: math.unit(20, "gigaparsecs")
  8638. },
  8639. ]
  8640. ))
  8641. characterMakers.push(() => makeCharacter(
  8642. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8643. {
  8644. front: {
  8645. height: math.unit(5 + 2 / 12, "feet"),
  8646. weight: math.unit(120, "lbs"),
  8647. name: "Front",
  8648. image: {
  8649. source: "./media/characters/katherine/front.svg",
  8650. extra: 2075 / 1969
  8651. }
  8652. },
  8653. dress: {
  8654. height: math.unit(5 + 2 / 12, "feet"),
  8655. weight: math.unit(120, "lbs"),
  8656. name: "Dress",
  8657. image: {
  8658. source: "./media/characters/katherine/dress.svg",
  8659. extra: 2258 / 2064
  8660. }
  8661. },
  8662. },
  8663. [
  8664. {
  8665. name: "Micro",
  8666. height: math.unit(1, "inches"),
  8667. default: true
  8668. },
  8669. {
  8670. name: "Normal",
  8671. height: math.unit(5 + 2 / 12, "feet")
  8672. },
  8673. {
  8674. name: "Macro",
  8675. height: math.unit(100, "meters")
  8676. },
  8677. {
  8678. name: "Megamacro",
  8679. height: math.unit(80, "miles")
  8680. },
  8681. ]
  8682. ))
  8683. characterMakers.push(() => makeCharacter(
  8684. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8685. {
  8686. front: {
  8687. height: math.unit(7 + 8 / 12, "feet"),
  8688. weight: math.unit(250, "lbs"),
  8689. name: "Front",
  8690. image: {
  8691. source: "./media/characters/yevis/front.svg",
  8692. extra: 1938 / 1755
  8693. }
  8694. }
  8695. },
  8696. [
  8697. {
  8698. name: "Mortal",
  8699. height: math.unit(7 + 8 / 12, "feet")
  8700. },
  8701. {
  8702. name: "Battle",
  8703. height: math.unit(25 + 11 / 12, "feet")
  8704. },
  8705. {
  8706. name: "Wrath",
  8707. height: math.unit(1654 + 11 / 12, "feet")
  8708. },
  8709. {
  8710. name: "Planet Destroyer",
  8711. height: math.unit(12000, "miles")
  8712. },
  8713. {
  8714. name: "Galaxy Conqueror",
  8715. height: math.unit(1.45, "zettameters"),
  8716. default: true
  8717. },
  8718. {
  8719. name: "Universal War",
  8720. height: math.unit(184, "gigaparsecs")
  8721. },
  8722. {
  8723. name: "Eternity War",
  8724. height: math.unit(1.98e55, "yottaparsecs")
  8725. },
  8726. ]
  8727. ))
  8728. characterMakers.push(() => makeCharacter(
  8729. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8730. {
  8731. front: {
  8732. height: math.unit(5 + 8 / 12, "feet"),
  8733. weight: math.unit(63, "kg"),
  8734. name: "Front",
  8735. image: {
  8736. source: "./media/characters/xavier/front.svg",
  8737. extra: 944 / 883
  8738. }
  8739. },
  8740. frontStretch: {
  8741. height: math.unit(5 + 8 / 12, "feet"),
  8742. weight: math.unit(63, "kg"),
  8743. name: "Stretching",
  8744. image: {
  8745. source: "./media/characters/xavier/front-stretch.svg",
  8746. extra: 962 / 820
  8747. }
  8748. },
  8749. },
  8750. [
  8751. {
  8752. name: "Normal",
  8753. height: math.unit(5 + 8 / 12, "feet")
  8754. },
  8755. {
  8756. name: "Macro",
  8757. height: math.unit(100, "meters"),
  8758. default: true
  8759. },
  8760. {
  8761. name: "McLargeHuge",
  8762. height: math.unit(10, "miles")
  8763. },
  8764. ]
  8765. ))
  8766. characterMakers.push(() => makeCharacter(
  8767. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8768. {
  8769. front: {
  8770. height: math.unit(5 + 5 / 12, "feet"),
  8771. weight: math.unit(150, "lb"),
  8772. name: "Front",
  8773. image: {
  8774. source: "./media/characters/joshii/front.svg",
  8775. extra: 765 / 653,
  8776. bottom: 51 / 816
  8777. }
  8778. },
  8779. foot: {
  8780. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8781. name: "Foot",
  8782. image: {
  8783. source: "./media/characters/joshii/foot.svg"
  8784. }
  8785. },
  8786. },
  8787. [
  8788. {
  8789. name: "Micro",
  8790. height: math.unit(2, "inches"),
  8791. default: true
  8792. },
  8793. {
  8794. name: "Normal",
  8795. height: math.unit(5 + 5 / 12, "feet")
  8796. },
  8797. {
  8798. name: "Macro",
  8799. height: math.unit(785, "feet")
  8800. },
  8801. {
  8802. name: "Megamacro",
  8803. height: math.unit(24.5, "miles")
  8804. },
  8805. ]
  8806. ))
  8807. characterMakers.push(() => makeCharacter(
  8808. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8809. {
  8810. front: {
  8811. height: math.unit(6, "feet"),
  8812. weight: math.unit(150, "lb"),
  8813. name: "Front",
  8814. image: {
  8815. source: "./media/characters/goddess-elizabeth/front.svg",
  8816. extra: 1800 / 1525,
  8817. bottom: 0.005
  8818. }
  8819. },
  8820. foot: {
  8821. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8822. name: "Foot",
  8823. image: {
  8824. source: "./media/characters/goddess-elizabeth/foot.svg"
  8825. }
  8826. },
  8827. mouth: {
  8828. height: math.unit(6, "feet"),
  8829. name: "Mouth",
  8830. image: {
  8831. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8832. }
  8833. },
  8834. },
  8835. [
  8836. {
  8837. name: "Micro",
  8838. height: math.unit(12, "feet")
  8839. },
  8840. {
  8841. name: "Normal",
  8842. height: math.unit(80, "miles"),
  8843. default: true
  8844. },
  8845. {
  8846. name: "Macro",
  8847. height: math.unit(15000, "parsecs")
  8848. },
  8849. ]
  8850. ))
  8851. characterMakers.push(() => makeCharacter(
  8852. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8853. {
  8854. front: {
  8855. height: math.unit(5 + 9 / 12, "feet"),
  8856. weight: math.unit(144, "lb"),
  8857. name: "Front",
  8858. image: {
  8859. source: "./media/characters/kara/front.svg"
  8860. }
  8861. },
  8862. feet: {
  8863. height: math.unit(6 / 6.765, "feet"),
  8864. name: "Kara's Feet",
  8865. rename: true,
  8866. image: {
  8867. source: "./media/characters/kara/feet.svg"
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Normal",
  8874. height: math.unit(5 + 9 / 12, "feet")
  8875. },
  8876. {
  8877. name: "Macro",
  8878. height: math.unit(174, "feet"),
  8879. default: true
  8880. },
  8881. ]
  8882. ))
  8883. characterMakers.push(() => makeCharacter(
  8884. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8885. {
  8886. front: {
  8887. height: math.unit(18, "feet"),
  8888. weight: math.unit(4050, "lb"),
  8889. name: "Front",
  8890. image: {
  8891. source: "./media/characters/tyrone/front.svg",
  8892. extra: 2405 / 2270,
  8893. bottom: 182 / 2587
  8894. }
  8895. },
  8896. },
  8897. [
  8898. {
  8899. name: "Normal",
  8900. height: math.unit(18, "feet"),
  8901. default: true
  8902. },
  8903. {
  8904. name: "Macro",
  8905. height: math.unit(300, "feet")
  8906. },
  8907. {
  8908. name: "Megamacro",
  8909. height: math.unit(15, "km")
  8910. },
  8911. {
  8912. name: "Gigamacro",
  8913. height: math.unit(500, "km")
  8914. },
  8915. {
  8916. name: "Teramacro",
  8917. height: math.unit(0.5, "gigameters")
  8918. },
  8919. {
  8920. name: "Omnimacro",
  8921. height: math.unit(1e252, "yottauniverse")
  8922. },
  8923. ]
  8924. ))
  8925. characterMakers.push(() => makeCharacter(
  8926. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8927. {
  8928. front: {
  8929. height: math.unit(7 + 8 / 12, "feet"),
  8930. weight: math.unit(120, "lb"),
  8931. name: "Front",
  8932. image: {
  8933. source: "./media/characters/danny/front.svg",
  8934. extra: 1490 / 1350
  8935. }
  8936. },
  8937. back: {
  8938. height: math.unit(7 + 8 / 12, "feet"),
  8939. weight: math.unit(120, "lb"),
  8940. name: "Back",
  8941. image: {
  8942. source: "./media/characters/danny/back.svg",
  8943. extra: 1490 / 1350
  8944. }
  8945. },
  8946. },
  8947. [
  8948. {
  8949. name: "Normal",
  8950. height: math.unit(7 + 8 / 12, "feet"),
  8951. default: true
  8952. },
  8953. ]
  8954. ))
  8955. characterMakers.push(() => makeCharacter(
  8956. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8957. {
  8958. front: {
  8959. height: math.unit(3.5, "inches"),
  8960. weight: math.unit(19, "grams"),
  8961. name: "Front",
  8962. image: {
  8963. source: "./media/characters/mallow/front.svg",
  8964. extra: 471 / 431
  8965. }
  8966. },
  8967. back: {
  8968. height: math.unit(3.5, "inches"),
  8969. weight: math.unit(19, "grams"),
  8970. name: "Back",
  8971. image: {
  8972. source: "./media/characters/mallow/back.svg",
  8973. extra: 471 / 431
  8974. }
  8975. },
  8976. },
  8977. [
  8978. {
  8979. name: "Normal",
  8980. height: math.unit(3.5, "inches"),
  8981. default: true
  8982. },
  8983. ]
  8984. ))
  8985. characterMakers.push(() => makeCharacter(
  8986. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8987. {
  8988. front: {
  8989. height: math.unit(9, "feet"),
  8990. weight: math.unit(230, "kg"),
  8991. name: "Front",
  8992. image: {
  8993. source: "./media/characters/starry-aqua/front.svg"
  8994. }
  8995. },
  8996. back: {
  8997. height: math.unit(9, "feet"),
  8998. weight: math.unit(230, "kg"),
  8999. name: "Back",
  9000. image: {
  9001. source: "./media/characters/starry-aqua/back.svg"
  9002. }
  9003. },
  9004. hand: {
  9005. height: math.unit(9 * 0.1168, "feet"),
  9006. name: "Hand",
  9007. image: {
  9008. source: "./media/characters/starry-aqua/hand.svg"
  9009. }
  9010. },
  9011. foot: {
  9012. height: math.unit(9 * 0.18, "feet"),
  9013. name: "Foot",
  9014. image: {
  9015. source: "./media/characters/starry-aqua/foot.svg"
  9016. }
  9017. }
  9018. },
  9019. [
  9020. {
  9021. name: "Micro",
  9022. height: math.unit(3, "inches")
  9023. },
  9024. {
  9025. name: "Normal",
  9026. height: math.unit(9, "feet")
  9027. },
  9028. {
  9029. name: "Macro",
  9030. height: math.unit(300, "feet"),
  9031. default: true
  9032. },
  9033. {
  9034. name: "Megamacro",
  9035. height: math.unit(3200, "feet")
  9036. }
  9037. ]
  9038. ))
  9039. characterMakers.push(() => makeCharacter(
  9040. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9041. {
  9042. front: {
  9043. height: math.unit(15, "feet"),
  9044. weight: math.unit(5026, "lb"),
  9045. name: "Front",
  9046. image: {
  9047. source: "./media/characters/luka-towers/front.svg",
  9048. extra: 1269/1133,
  9049. bottom: 51/1320
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(15, "feet"),
  9057. default: true
  9058. },
  9059. {
  9060. name: "Minimacro",
  9061. height: math.unit(25, "feet")
  9062. },
  9063. {
  9064. name: "Macro",
  9065. height: math.unit(320, "feet")
  9066. },
  9067. {
  9068. name: "Megamacro",
  9069. height: math.unit(35000, "feet")
  9070. },
  9071. {
  9072. name: "Gigamacro",
  9073. height: math.unit(4000, "miles")
  9074. },
  9075. {
  9076. name: "Teramacro",
  9077. height: math.unit(15000, "miles")
  9078. },
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9083. {
  9084. front: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(150, "lb"),
  9087. name: "Front",
  9088. image: {
  9089. source: "./media/characters/natalie-nightring/front.svg",
  9090. extra: 1,
  9091. bottom: 0.06
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Uh Oh",
  9098. height: math.unit(0.1, "mm")
  9099. },
  9100. {
  9101. name: "Small",
  9102. height: math.unit(3, "inches")
  9103. },
  9104. {
  9105. name: "Human Scale",
  9106. height: math.unit(6, "feet")
  9107. },
  9108. {
  9109. name: "Librarian",
  9110. height: math.unit(50, "feet"),
  9111. default: true
  9112. },
  9113. {
  9114. name: "Immense",
  9115. height: math.unit(200, "miles")
  9116. },
  9117. ]
  9118. ))
  9119. characterMakers.push(() => makeCharacter(
  9120. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9121. {
  9122. front: {
  9123. height: math.unit(6, "feet"),
  9124. weight: math.unit(180, "lbs"),
  9125. name: "Front",
  9126. image: {
  9127. source: "./media/characters/danni-rosie/front.svg",
  9128. extra: 1260 / 1128,
  9129. bottom: 0.022
  9130. }
  9131. },
  9132. },
  9133. [
  9134. {
  9135. name: "Micro",
  9136. height: math.unit(2, "inches"),
  9137. default: true
  9138. },
  9139. ]
  9140. ))
  9141. characterMakers.push(() => makeCharacter(
  9142. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9143. {
  9144. front: {
  9145. height: math.unit(5 + 9 / 12, "feet"),
  9146. weight: math.unit(220, "lb"),
  9147. name: "Front",
  9148. image: {
  9149. source: "./media/characters/samantha-kruse/front.svg",
  9150. extra: (985 / 935),
  9151. bottom: 0.03
  9152. }
  9153. },
  9154. frontUndressed: {
  9155. height: math.unit(5 + 9 / 12, "feet"),
  9156. weight: math.unit(220, "lb"),
  9157. name: "Front (Undressed)",
  9158. image: {
  9159. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9160. extra: (973 / 923),
  9161. bottom: 0.025
  9162. }
  9163. },
  9164. fat: {
  9165. height: math.unit(5 + 9 / 12, "feet"),
  9166. weight: math.unit(900, "lb"),
  9167. name: "Front (Fat)",
  9168. image: {
  9169. source: "./media/characters/samantha-kruse/fat.svg",
  9170. extra: 2688 / 2561
  9171. }
  9172. },
  9173. },
  9174. [
  9175. {
  9176. name: "Normal",
  9177. height: math.unit(5 + 9 / 12, "feet"),
  9178. default: true
  9179. }
  9180. ]
  9181. ))
  9182. characterMakers.push(() => makeCharacter(
  9183. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9184. {
  9185. back: {
  9186. height: math.unit(5 + 4 / 12, "feet"),
  9187. weight: math.unit(4963, "lb"),
  9188. name: "Back",
  9189. image: {
  9190. source: "./media/characters/amelia-rosie/back.svg",
  9191. extra: 1113 / 963,
  9192. bottom: 0.01
  9193. }
  9194. },
  9195. },
  9196. [
  9197. {
  9198. name: "Level 0",
  9199. height: math.unit(5 + 4 / 12, "feet")
  9200. },
  9201. {
  9202. name: "Level 1",
  9203. height: math.unit(164597, "feet"),
  9204. default: true
  9205. },
  9206. {
  9207. name: "Level 2",
  9208. height: math.unit(956243, "miles")
  9209. },
  9210. {
  9211. name: "Level 3",
  9212. height: math.unit(29421709423, "miles")
  9213. },
  9214. {
  9215. name: "Level 4",
  9216. height: math.unit(154, "lightyears")
  9217. },
  9218. {
  9219. name: "Level 5",
  9220. height: math.unit(4738272, "lightyears")
  9221. },
  9222. {
  9223. name: "Level 6",
  9224. height: math.unit(145787152896, "lightyears")
  9225. },
  9226. ]
  9227. ))
  9228. characterMakers.push(() => makeCharacter(
  9229. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9230. {
  9231. front: {
  9232. height: math.unit(5 + 11 / 12, "feet"),
  9233. weight: math.unit(65, "kg"),
  9234. name: "Front",
  9235. image: {
  9236. source: "./media/characters/rook-kitara/front.svg",
  9237. extra: 1347 / 1274,
  9238. bottom: 0.005
  9239. }
  9240. },
  9241. },
  9242. [
  9243. {
  9244. name: "Totally Unfair",
  9245. height: math.unit(1.8, "mm")
  9246. },
  9247. {
  9248. name: "Lap Rookie",
  9249. height: math.unit(1.4, "feet")
  9250. },
  9251. {
  9252. name: "Normal",
  9253. height: math.unit(5 + 11 / 12, "feet"),
  9254. default: true
  9255. },
  9256. {
  9257. name: "How Did This Happen",
  9258. height: math.unit(80, "miles")
  9259. }
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(7, "feet"),
  9267. weight: math.unit(300, "lb"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/pisces/front.svg",
  9271. extra: 2255 / 2115,
  9272. bottom: 0.03
  9273. }
  9274. },
  9275. back: {
  9276. height: math.unit(7, "feet"),
  9277. weight: math.unit(300, "lb"),
  9278. name: "Back",
  9279. image: {
  9280. source: "./media/characters/pisces/back.svg",
  9281. extra: 2146 / 2055,
  9282. bottom: 0.04
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(7, "feet"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Swimming Pool",
  9294. height: math.unit(12.2, "meters")
  9295. },
  9296. {
  9297. name: "Olympic Swimming Pool",
  9298. height: math.unit(56.3, "meters")
  9299. },
  9300. {
  9301. name: "Lake Superior",
  9302. height: math.unit(93900, "meters")
  9303. },
  9304. {
  9305. name: "Mediterranean Sea",
  9306. height: math.unit(644457, "meters")
  9307. },
  9308. {
  9309. name: "World's Oceans",
  9310. height: math.unit(4567491, "meters")
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(2.3, "meters"),
  9319. weight: math.unit(120, "kg"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/zelas/front.svg"
  9323. }
  9324. },
  9325. side: {
  9326. height: math.unit(2.3, "meters"),
  9327. weight: math.unit(120, "kg"),
  9328. name: "Side",
  9329. image: {
  9330. source: "./media/characters/zelas/side.svg"
  9331. }
  9332. },
  9333. back: {
  9334. height: math.unit(2.3, "meters"),
  9335. weight: math.unit(120, "kg"),
  9336. name: "Back",
  9337. image: {
  9338. source: "./media/characters/zelas/back.svg"
  9339. }
  9340. },
  9341. foot: {
  9342. height: math.unit(1.116, "feet"),
  9343. name: "Foot",
  9344. image: {
  9345. source: "./media/characters/zelas/foot.svg"
  9346. }
  9347. },
  9348. },
  9349. [
  9350. {
  9351. name: "Normal",
  9352. height: math.unit(2.3, "meters")
  9353. },
  9354. {
  9355. name: "Macro",
  9356. height: math.unit(30, "meters"),
  9357. default: true
  9358. },
  9359. ]
  9360. ))
  9361. characterMakers.push(() => makeCharacter(
  9362. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9363. {
  9364. front: {
  9365. height: math.unit(1, "inch"),
  9366. weight: math.unit(0.21, "grams"),
  9367. name: "Front",
  9368. image: {
  9369. source: "./media/characters/talbot/front.svg",
  9370. extra: 594 / 544
  9371. }
  9372. },
  9373. },
  9374. [
  9375. {
  9376. name: "Micro",
  9377. height: math.unit(1, "inch"),
  9378. default: true
  9379. },
  9380. ]
  9381. ))
  9382. characterMakers.push(() => makeCharacter(
  9383. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9384. {
  9385. front: {
  9386. height: math.unit(3 + 3 / 12, "feet"),
  9387. weight: math.unit(51.8, "lb"),
  9388. name: "Front",
  9389. image: {
  9390. source: "./media/characters/fliss/front.svg",
  9391. extra: 840 / 640
  9392. }
  9393. },
  9394. },
  9395. [
  9396. {
  9397. name: "Teeny Tiny",
  9398. height: math.unit(1, "mm")
  9399. },
  9400. {
  9401. name: "Small",
  9402. height: math.unit(1, "inch"),
  9403. default: true
  9404. },
  9405. {
  9406. name: "Standard Sylveon",
  9407. height: math.unit(3 + 3 / 12, "feet")
  9408. },
  9409. {
  9410. name: "Large Nuisance",
  9411. height: math.unit(33, "feet")
  9412. },
  9413. {
  9414. name: "City Filler",
  9415. height: math.unit(3000, "feet")
  9416. },
  9417. {
  9418. name: "New Horizon",
  9419. height: math.unit(6000, "miles")
  9420. },
  9421. ]
  9422. ))
  9423. characterMakers.push(() => makeCharacter(
  9424. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9425. {
  9426. front: {
  9427. height: math.unit(5, "cm"),
  9428. weight: math.unit(1.94, "g"),
  9429. name: "Front",
  9430. image: {
  9431. source: "./media/characters/fleta/front.svg",
  9432. extra: 835 / 803
  9433. }
  9434. },
  9435. back: {
  9436. height: math.unit(5, "cm"),
  9437. weight: math.unit(1.94, "g"),
  9438. name: "Back",
  9439. image: {
  9440. source: "./media/characters/fleta/back.svg",
  9441. extra: 835 / 803
  9442. }
  9443. },
  9444. },
  9445. [
  9446. {
  9447. name: "Micro",
  9448. height: math.unit(5, "cm"),
  9449. default: true
  9450. },
  9451. ]
  9452. ))
  9453. characterMakers.push(() => makeCharacter(
  9454. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9455. {
  9456. front: {
  9457. height: math.unit(6, "feet"),
  9458. weight: math.unit(225, "lb"),
  9459. name: "Front",
  9460. image: {
  9461. source: "./media/characters/dominic/front.svg",
  9462. extra: 1770 / 1620,
  9463. bottom: 0.025
  9464. }
  9465. },
  9466. back: {
  9467. height: math.unit(6, "feet"),
  9468. weight: math.unit(225, "lb"),
  9469. name: "Back",
  9470. image: {
  9471. source: "./media/characters/dominic/back.svg",
  9472. extra: 1745 / 1620,
  9473. bottom: 0.065
  9474. }
  9475. },
  9476. },
  9477. [
  9478. {
  9479. name: "Nano",
  9480. height: math.unit(0.1, "mm")
  9481. },
  9482. {
  9483. name: "Micro-",
  9484. height: math.unit(1, "mm")
  9485. },
  9486. {
  9487. name: "Micro",
  9488. height: math.unit(4, "inches")
  9489. },
  9490. {
  9491. name: "Normal",
  9492. height: math.unit(6 + 4 / 12, "feet"),
  9493. default: true
  9494. },
  9495. {
  9496. name: "Macro",
  9497. height: math.unit(115, "feet")
  9498. },
  9499. {
  9500. name: "Macro+",
  9501. height: math.unit(955, "feet")
  9502. },
  9503. {
  9504. name: "Megamacro",
  9505. height: math.unit(8990, "feet")
  9506. },
  9507. {
  9508. name: "Gigmacro",
  9509. height: math.unit(9310, "miles")
  9510. },
  9511. {
  9512. name: "Teramacro",
  9513. height: math.unit(1567005010, "miles")
  9514. },
  9515. {
  9516. name: "Examacro",
  9517. height: math.unit(1425, "parsecs")
  9518. },
  9519. ]
  9520. ))
  9521. characterMakers.push(() => makeCharacter(
  9522. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9523. {
  9524. front: {
  9525. height: math.unit(400, "feet"),
  9526. weight: math.unit(44444444, "lb"),
  9527. name: "Front",
  9528. image: {
  9529. source: "./media/characters/major-colonel/front.svg"
  9530. }
  9531. },
  9532. back: {
  9533. height: math.unit(400, "feet"),
  9534. weight: math.unit(44444444, "lb"),
  9535. name: "Back",
  9536. image: {
  9537. source: "./media/characters/major-colonel/back.svg"
  9538. }
  9539. },
  9540. },
  9541. [
  9542. {
  9543. name: "Macro",
  9544. height: math.unit(400, "feet"),
  9545. default: true
  9546. },
  9547. ]
  9548. ))
  9549. characterMakers.push(() => makeCharacter(
  9550. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9551. {
  9552. catFront: {
  9553. height: math.unit(6, "feet"),
  9554. weight: math.unit(120, "lb"),
  9555. name: "Front (Cat Side)",
  9556. image: {
  9557. source: "./media/characters/axel-lycan/cat-front.svg",
  9558. extra: 430 / 402,
  9559. bottom: 43 / 472.35
  9560. }
  9561. },
  9562. catBack: {
  9563. height: math.unit(6, "feet"),
  9564. weight: math.unit(120, "lb"),
  9565. name: "Back (Cat Side)",
  9566. image: {
  9567. source: "./media/characters/axel-lycan/cat-back.svg",
  9568. extra: 447 / 419,
  9569. bottom: 23.3 / 469
  9570. }
  9571. },
  9572. wolfFront: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(120, "lb"),
  9575. name: "Front (Wolf Side)",
  9576. image: {
  9577. source: "./media/characters/axel-lycan/wolf-front.svg",
  9578. extra: 485 / 456,
  9579. bottom: 19 / 504
  9580. }
  9581. },
  9582. wolfBack: {
  9583. height: math.unit(6, "feet"),
  9584. weight: math.unit(120, "lb"),
  9585. name: "Back (Wolf Side)",
  9586. image: {
  9587. source: "./media/characters/axel-lycan/wolf-back.svg",
  9588. extra: 475 / 438,
  9589. bottom: 39.2 / 514
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Macro",
  9596. height: math.unit(1, "km"),
  9597. default: true
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9603. {
  9604. front: {
  9605. height: math.unit(5 + 9 / 12, "feet"),
  9606. weight: math.unit(175, "lb"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/vanrel-hyena/front.svg",
  9610. extra: 1086 / 1010,
  9611. bottom: 0.04
  9612. }
  9613. },
  9614. },
  9615. [
  9616. {
  9617. name: "Normal",
  9618. height: math.unit(5 + 9 / 12, "feet"),
  9619. default: true
  9620. },
  9621. ]
  9622. ))
  9623. characterMakers.push(() => makeCharacter(
  9624. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9625. {
  9626. front: {
  9627. height: math.unit(6, "feet"),
  9628. weight: math.unit(103, "lb"),
  9629. name: "Front",
  9630. image: {
  9631. source: "./media/characters/abbott-absol/front.svg",
  9632. extra: 2010 / 1842
  9633. }
  9634. },
  9635. },
  9636. [
  9637. {
  9638. name: "Megamicro",
  9639. height: math.unit(0.1, "mm")
  9640. },
  9641. {
  9642. name: "Micro",
  9643. height: math.unit(1, "inch")
  9644. },
  9645. {
  9646. name: "Normal",
  9647. height: math.unit(6, "feet"),
  9648. default: true
  9649. },
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9654. {
  9655. front: {
  9656. height: math.unit(6, "feet"),
  9657. weight: math.unit(264, "lb"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/hector/front.svg",
  9661. extra: 2280 / 2130,
  9662. bottom: 0.07
  9663. }
  9664. },
  9665. },
  9666. [
  9667. {
  9668. name: "Normal",
  9669. height: math.unit(12.25, "foot"),
  9670. default: true
  9671. },
  9672. {
  9673. name: "Macro",
  9674. height: math.unit(160, "feet")
  9675. },
  9676. ]
  9677. ))
  9678. characterMakers.push(() => makeCharacter(
  9679. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9680. {
  9681. front: {
  9682. height: math.unit(6, "feet"),
  9683. weight: math.unit(150, "lb"),
  9684. name: "Front",
  9685. image: {
  9686. source: "./media/characters/sal/front.svg",
  9687. extra: 1846 / 1699,
  9688. bottom: 0.04
  9689. }
  9690. },
  9691. },
  9692. [
  9693. {
  9694. name: "Megamacro",
  9695. height: math.unit(10, "miles"),
  9696. default: true
  9697. },
  9698. ]
  9699. ))
  9700. characterMakers.push(() => makeCharacter(
  9701. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9702. {
  9703. front: {
  9704. height: math.unit(3, "meters"),
  9705. weight: math.unit(450, "kg"),
  9706. name: "front",
  9707. image: {
  9708. source: "./media/characters/ranger/front.svg",
  9709. extra: 2401 / 2243,
  9710. bottom: 0.05
  9711. }
  9712. },
  9713. },
  9714. [
  9715. {
  9716. name: "Normal",
  9717. height: math.unit(3, "meters"),
  9718. default: true
  9719. },
  9720. ]
  9721. ))
  9722. characterMakers.push(() => makeCharacter(
  9723. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9724. {
  9725. front: {
  9726. height: math.unit(14, "feet"),
  9727. weight: math.unit(800, "kg"),
  9728. name: "Front",
  9729. image: {
  9730. source: "./media/characters/theresa/front.svg",
  9731. extra: 3575 / 3346,
  9732. bottom: 0.03
  9733. }
  9734. },
  9735. },
  9736. [
  9737. {
  9738. name: "Normal",
  9739. height: math.unit(14, "feet"),
  9740. default: true
  9741. },
  9742. ]
  9743. ))
  9744. characterMakers.push(() => makeCharacter(
  9745. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9746. {
  9747. front: {
  9748. height: math.unit(6, "feet"),
  9749. weight: math.unit(3, "kg"),
  9750. name: "Front",
  9751. image: {
  9752. source: "./media/characters/ine/front.svg",
  9753. extra: 678 / 539,
  9754. bottom: 0.023
  9755. }
  9756. },
  9757. },
  9758. [
  9759. {
  9760. name: "Normal",
  9761. height: math.unit(2.265, "feet"),
  9762. default: true
  9763. },
  9764. ]
  9765. ))
  9766. characterMakers.push(() => makeCharacter(
  9767. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9768. {
  9769. front: {
  9770. height: math.unit(5, "feet"),
  9771. weight: math.unit(30, "kg"),
  9772. name: "Front",
  9773. image: {
  9774. source: "./media/characters/vial/front.svg",
  9775. extra: 1365 / 1277,
  9776. bottom: 0.04
  9777. }
  9778. },
  9779. },
  9780. [
  9781. {
  9782. name: "Normal",
  9783. height: math.unit(5, "feet"),
  9784. default: true
  9785. },
  9786. ]
  9787. ))
  9788. characterMakers.push(() => makeCharacter(
  9789. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9790. {
  9791. side: {
  9792. height: math.unit(3.4, "meters"),
  9793. weight: math.unit(1000, "lb"),
  9794. name: "Side",
  9795. image: {
  9796. source: "./media/characters/rovoska/side.svg",
  9797. extra: 4403 / 1515
  9798. }
  9799. },
  9800. },
  9801. [
  9802. {
  9803. name: "Normal",
  9804. height: math.unit(3.4, "meters"),
  9805. default: true
  9806. },
  9807. ]
  9808. ))
  9809. characterMakers.push(() => makeCharacter(
  9810. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9811. {
  9812. front: {
  9813. height: math.unit(8, "feet"),
  9814. weight: math.unit(315, "lb"),
  9815. name: "Front",
  9816. image: {
  9817. source: "./media/characters/gunner-rotthbauer/front.svg"
  9818. }
  9819. },
  9820. back: {
  9821. height: math.unit(8, "feet"),
  9822. weight: math.unit(315, "lb"),
  9823. name: "Back",
  9824. image: {
  9825. source: "./media/characters/gunner-rotthbauer/back.svg"
  9826. }
  9827. },
  9828. },
  9829. [
  9830. {
  9831. name: "Micro",
  9832. height: math.unit(3.5, "inches")
  9833. },
  9834. {
  9835. name: "Normal",
  9836. height: math.unit(8, "feet"),
  9837. default: true
  9838. },
  9839. {
  9840. name: "Macro",
  9841. height: math.unit(250, "feet")
  9842. },
  9843. {
  9844. name: "Megamacro",
  9845. height: math.unit(1, "AU")
  9846. },
  9847. ]
  9848. ))
  9849. characterMakers.push(() => makeCharacter(
  9850. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9851. {
  9852. front: {
  9853. height: math.unit(5 + 5 / 12, "feet"),
  9854. weight: math.unit(140, "lb"),
  9855. name: "Front",
  9856. image: {
  9857. source: "./media/characters/allatia/front.svg",
  9858. extra: 1227 / 1180,
  9859. bottom: 0.027
  9860. }
  9861. },
  9862. },
  9863. [
  9864. {
  9865. name: "Normal",
  9866. height: math.unit(5 + 5 / 12, "feet")
  9867. },
  9868. {
  9869. name: "Macro",
  9870. height: math.unit(250, "feet"),
  9871. default: true
  9872. },
  9873. {
  9874. name: "Megamacro",
  9875. height: math.unit(8, "miles")
  9876. }
  9877. ]
  9878. ))
  9879. characterMakers.push(() => makeCharacter(
  9880. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9881. {
  9882. front: {
  9883. height: math.unit(6, "feet"),
  9884. weight: math.unit(120, "lb"),
  9885. name: "Front",
  9886. image: {
  9887. source: "./media/characters/tene/front.svg",
  9888. extra: 1728 / 1578,
  9889. bottom: 0.022
  9890. }
  9891. },
  9892. stomping: {
  9893. height: math.unit(2.025, "meters"),
  9894. weight: math.unit(120, "lb"),
  9895. name: "Stomping",
  9896. image: {
  9897. source: "./media/characters/tene/stomping.svg",
  9898. extra: 938 / 873,
  9899. bottom: 0.01
  9900. }
  9901. },
  9902. sitting: {
  9903. height: math.unit(1, "meter"),
  9904. weight: math.unit(120, "lb"),
  9905. name: "Sitting",
  9906. image: {
  9907. source: "./media/characters/tene/sitting.svg",
  9908. extra: 437 / 415,
  9909. bottom: 0.1
  9910. }
  9911. },
  9912. feral: {
  9913. height: math.unit(3.9, "feet"),
  9914. weight: math.unit(250, "lb"),
  9915. name: "Feral",
  9916. image: {
  9917. source: "./media/characters/tene/feral.svg",
  9918. extra: 717 / 458,
  9919. bottom: 0.179
  9920. }
  9921. },
  9922. },
  9923. [
  9924. {
  9925. name: "Normal",
  9926. height: math.unit(6, "feet")
  9927. },
  9928. {
  9929. name: "Macro",
  9930. height: math.unit(300, "feet"),
  9931. default: true
  9932. },
  9933. {
  9934. name: "Megamacro",
  9935. height: math.unit(5, "miles")
  9936. },
  9937. ]
  9938. ))
  9939. characterMakers.push(() => makeCharacter(
  9940. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9941. {
  9942. side: {
  9943. height: math.unit(6, "feet"),
  9944. name: "Side",
  9945. image: {
  9946. source: "./media/characters/evander/side.svg",
  9947. extra: 877 / 477
  9948. }
  9949. },
  9950. },
  9951. [
  9952. {
  9953. name: "Normal",
  9954. height: math.unit(0.83, "meters"),
  9955. default: true
  9956. },
  9957. ]
  9958. ))
  9959. characterMakers.push(() => makeCharacter(
  9960. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9961. {
  9962. front: {
  9963. height: math.unit(12, "feet"),
  9964. weight: math.unit(1000, "lb"),
  9965. name: "Front",
  9966. image: {
  9967. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9968. extra: 1762 / 1611
  9969. }
  9970. },
  9971. back: {
  9972. height: math.unit(12, "feet"),
  9973. weight: math.unit(1000, "lb"),
  9974. name: "Back",
  9975. image: {
  9976. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9977. extra: 1762 / 1611
  9978. }
  9979. },
  9980. },
  9981. [
  9982. {
  9983. name: "Normal",
  9984. height: math.unit(12, "feet"),
  9985. default: true
  9986. },
  9987. {
  9988. name: "Kaiju",
  9989. height: math.unit(150, "feet")
  9990. },
  9991. ]
  9992. ))
  9993. characterMakers.push(() => makeCharacter(
  9994. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9995. {
  9996. front: {
  9997. height: math.unit(6, "feet"),
  9998. weight: math.unit(150, "lb"),
  9999. name: "Front",
  10000. image: {
  10001. source: "./media/characters/zero-alurus/front.svg"
  10002. }
  10003. },
  10004. back: {
  10005. height: math.unit(6, "feet"),
  10006. weight: math.unit(150, "lb"),
  10007. name: "Back",
  10008. image: {
  10009. source: "./media/characters/zero-alurus/back.svg"
  10010. }
  10011. },
  10012. },
  10013. [
  10014. {
  10015. name: "Normal",
  10016. height: math.unit(5 + 10 / 12, "feet")
  10017. },
  10018. {
  10019. name: "Macro",
  10020. height: math.unit(60, "feet"),
  10021. default: true
  10022. },
  10023. {
  10024. name: "Macro+",
  10025. height: math.unit(450, "feet")
  10026. },
  10027. ]
  10028. ))
  10029. characterMakers.push(() => makeCharacter(
  10030. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10031. {
  10032. front: {
  10033. height: math.unit(6, "feet"),
  10034. weight: math.unit(200, "lb"),
  10035. name: "Front",
  10036. image: {
  10037. source: "./media/characters/mega-shi/front.svg",
  10038. extra: 1279 / 1250,
  10039. bottom: 0.02
  10040. }
  10041. },
  10042. back: {
  10043. height: math.unit(6, "feet"),
  10044. weight: math.unit(200, "lb"),
  10045. name: "Back",
  10046. image: {
  10047. source: "./media/characters/mega-shi/back.svg",
  10048. extra: 1279 / 1250,
  10049. bottom: 0.02
  10050. }
  10051. },
  10052. },
  10053. [
  10054. {
  10055. name: "Micro",
  10056. height: math.unit(16 + 6 / 12, "feet")
  10057. },
  10058. {
  10059. name: "Third Dimension",
  10060. height: math.unit(40, "meters")
  10061. },
  10062. {
  10063. name: "Normal",
  10064. height: math.unit(660, "feet"),
  10065. default: true
  10066. },
  10067. {
  10068. name: "Megamacro",
  10069. height: math.unit(10, "miles")
  10070. },
  10071. {
  10072. name: "Planetary Launch",
  10073. height: math.unit(500, "miles")
  10074. },
  10075. {
  10076. name: "Interstellar",
  10077. height: math.unit(1e9, "miles")
  10078. },
  10079. {
  10080. name: "Leaving the Universe",
  10081. height: math.unit(1, "gigaparsec")
  10082. },
  10083. {
  10084. name: "Travelling Universes",
  10085. height: math.unit(30e15, "parsecs")
  10086. },
  10087. ]
  10088. ))
  10089. characterMakers.push(() => makeCharacter(
  10090. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10091. {
  10092. front: {
  10093. height: math.unit(6, "feet"),
  10094. weight: math.unit(150, "lb"),
  10095. name: "Front",
  10096. image: {
  10097. source: "./media/characters/odyssey/front.svg",
  10098. extra: 1782 / 1582,
  10099. bottom: 0.01
  10100. }
  10101. },
  10102. side: {
  10103. height: math.unit(5.7, "feet"),
  10104. weight: math.unit(140, "lb"),
  10105. name: "Side",
  10106. image: {
  10107. source: "./media/characters/odyssey/side.svg",
  10108. extra: 6462 / 5700
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Normal",
  10115. height: math.unit(5 + 4 / 12, "feet")
  10116. },
  10117. {
  10118. name: "Macro",
  10119. height: math.unit(1, "km")
  10120. },
  10121. {
  10122. name: "Megamacro",
  10123. height: math.unit(3000, "km")
  10124. },
  10125. {
  10126. name: "Gigamacro",
  10127. height: math.unit(1, "AU"),
  10128. default: true
  10129. },
  10130. {
  10131. name: "Omniversal",
  10132. height: math.unit(100e14, "lightyears")
  10133. },
  10134. ]
  10135. ))
  10136. characterMakers.push(() => makeCharacter(
  10137. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10138. {
  10139. front: {
  10140. height: math.unit(6, "feet"),
  10141. weight: math.unit(300, "lb"),
  10142. name: "Front",
  10143. image: {
  10144. source: "./media/characters/mekuto/front.svg",
  10145. extra: 921 / 832,
  10146. bottom: 0.03
  10147. }
  10148. },
  10149. hand: {
  10150. height: math.unit(6 / 10.24, "feet"),
  10151. name: "Hand",
  10152. image: {
  10153. source: "./media/characters/mekuto/hand.svg"
  10154. }
  10155. },
  10156. foot: {
  10157. height: math.unit(6 / 5.05, "feet"),
  10158. name: "Foot",
  10159. image: {
  10160. source: "./media/characters/mekuto/foot.svg"
  10161. }
  10162. },
  10163. },
  10164. [
  10165. {
  10166. name: "Minimicro",
  10167. height: math.unit(0.2, "inches")
  10168. },
  10169. {
  10170. name: "Micro",
  10171. height: math.unit(1.5, "inches")
  10172. },
  10173. {
  10174. name: "Normal",
  10175. height: math.unit(5 + 11 / 12, "feet"),
  10176. default: true
  10177. },
  10178. {
  10179. name: "Minimacro",
  10180. height: math.unit(17 + 9 / 12, "feet")
  10181. },
  10182. {
  10183. name: "Macro",
  10184. height: math.unit(177.5, "feet")
  10185. },
  10186. {
  10187. name: "Megamacro",
  10188. height: math.unit(152, "miles")
  10189. },
  10190. ]
  10191. ))
  10192. characterMakers.push(() => makeCharacter(
  10193. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10194. {
  10195. front: {
  10196. height: math.unit(6.5, "inches"),
  10197. weight: math.unit(13, "oz"),
  10198. name: "Front",
  10199. image: {
  10200. source: "./media/characters/dafydd-tomos/front.svg",
  10201. extra: 2990 / 2603,
  10202. bottom: 0.03
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Micro",
  10209. height: math.unit(6.5, "inches"),
  10210. default: true
  10211. },
  10212. ]
  10213. ))
  10214. characterMakers.push(() => makeCharacter(
  10215. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10216. {
  10217. front: {
  10218. height: math.unit(6, "feet"),
  10219. weight: math.unit(150, "lb"),
  10220. name: "Front",
  10221. image: {
  10222. source: "./media/characters/splinter/front.svg",
  10223. extra: 2990 / 2882,
  10224. bottom: 0.04
  10225. }
  10226. },
  10227. back: {
  10228. height: math.unit(6, "feet"),
  10229. weight: math.unit(150, "lb"),
  10230. name: "Back",
  10231. image: {
  10232. source: "./media/characters/splinter/back.svg",
  10233. extra: 2990 / 2882,
  10234. bottom: 0.04
  10235. }
  10236. },
  10237. },
  10238. [
  10239. {
  10240. name: "Normal",
  10241. height: math.unit(6, "feet")
  10242. },
  10243. {
  10244. name: "Macro",
  10245. height: math.unit(230, "meters"),
  10246. default: true
  10247. },
  10248. ]
  10249. ))
  10250. characterMakers.push(() => makeCharacter(
  10251. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10252. {
  10253. front: {
  10254. height: math.unit(4 + 10 / 12, "feet"),
  10255. weight: math.unit(480, "lb"),
  10256. name: "Front",
  10257. image: {
  10258. source: "./media/characters/snow-gabumon/front.svg",
  10259. extra: 1140 / 963,
  10260. bottom: 0.058
  10261. }
  10262. },
  10263. back: {
  10264. height: math.unit(4 + 10 / 12, "feet"),
  10265. weight: math.unit(480, "lb"),
  10266. name: "Back",
  10267. image: {
  10268. source: "./media/characters/snow-gabumon/back.svg",
  10269. extra: 1115 / 962,
  10270. bottom: 0.041
  10271. }
  10272. },
  10273. frontUndresed: {
  10274. height: math.unit(4 + 10 / 12, "feet"),
  10275. weight: math.unit(480, "lb"),
  10276. name: "Front (Undressed)",
  10277. image: {
  10278. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10279. extra: 1061 / 960,
  10280. bottom: 0.045
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Micro",
  10287. height: math.unit(1, "inch")
  10288. },
  10289. {
  10290. name: "Normal",
  10291. height: math.unit(4 + 10 / 12, "feet"),
  10292. default: true
  10293. },
  10294. {
  10295. name: "Macro",
  10296. height: math.unit(200, "feet")
  10297. },
  10298. {
  10299. name: "Megamacro",
  10300. height: math.unit(120, "miles")
  10301. },
  10302. {
  10303. name: "Gigamacro",
  10304. height: math.unit(9800, "miles")
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(1.7, "meters"),
  10313. weight: math.unit(140, "lb"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/moody/front.svg",
  10317. extra: 3226 / 3007,
  10318. bottom: 0.087
  10319. }
  10320. },
  10321. },
  10322. [
  10323. {
  10324. name: "Micro",
  10325. height: math.unit(1, "mm")
  10326. },
  10327. {
  10328. name: "Normal",
  10329. height: math.unit(1.7, "meters"),
  10330. default: true
  10331. },
  10332. {
  10333. name: "Macro",
  10334. height: math.unit(80, "meters")
  10335. },
  10336. {
  10337. name: "Macro+",
  10338. height: math.unit(500, "meters")
  10339. },
  10340. ]
  10341. ))
  10342. characterMakers.push(() => makeCharacter(
  10343. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10344. {
  10345. front: {
  10346. height: math.unit(6, "feet"),
  10347. weight: math.unit(150, "lb"),
  10348. name: "Front",
  10349. image: {
  10350. source: "./media/characters/zyas/front.svg",
  10351. extra: 1180 / 1120,
  10352. bottom: 0.045
  10353. }
  10354. },
  10355. },
  10356. [
  10357. {
  10358. name: "Normal",
  10359. height: math.unit(10, "feet"),
  10360. default: true
  10361. },
  10362. {
  10363. name: "Macro",
  10364. height: math.unit(500, "feet")
  10365. },
  10366. {
  10367. name: "Megamacro",
  10368. height: math.unit(5, "miles")
  10369. },
  10370. {
  10371. name: "Teramacro",
  10372. height: math.unit(150000, "miles")
  10373. },
  10374. ]
  10375. ))
  10376. characterMakers.push(() => makeCharacter(
  10377. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10378. {
  10379. front: {
  10380. height: math.unit(6, "feet"),
  10381. weight: math.unit(150, "lb"),
  10382. name: "Front",
  10383. image: {
  10384. source: "./media/characters/cuon/front.svg",
  10385. extra: 1390 / 1320,
  10386. bottom: 0.008
  10387. }
  10388. },
  10389. },
  10390. [
  10391. {
  10392. name: "Micro",
  10393. height: math.unit(3, "inches")
  10394. },
  10395. {
  10396. name: "Normal",
  10397. height: math.unit(18 + 9 / 12, "feet"),
  10398. default: true
  10399. },
  10400. {
  10401. name: "Macro",
  10402. height: math.unit(360, "feet")
  10403. },
  10404. {
  10405. name: "Megamacro",
  10406. height: math.unit(360, "miles")
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10412. {
  10413. front: {
  10414. height: math.unit(2.4, "meters"),
  10415. weight: math.unit(70, "kg"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/nyanuxk/front.svg",
  10419. extra: 1172 / 1084,
  10420. bottom: 0.065
  10421. }
  10422. },
  10423. side: {
  10424. height: math.unit(2.4, "meters"),
  10425. weight: math.unit(70, "kg"),
  10426. name: "Side",
  10427. image: {
  10428. source: "./media/characters/nyanuxk/side.svg",
  10429. extra: 1190 / 1132,
  10430. bottom: 0.007
  10431. }
  10432. },
  10433. back: {
  10434. height: math.unit(2.4, "meters"),
  10435. weight: math.unit(70, "kg"),
  10436. name: "Back",
  10437. image: {
  10438. source: "./media/characters/nyanuxk/back.svg",
  10439. extra: 1200 / 1141,
  10440. bottom: 0.015
  10441. }
  10442. },
  10443. foot: {
  10444. height: math.unit(0.52, "meters"),
  10445. name: "Foot",
  10446. image: {
  10447. source: "./media/characters/nyanuxk/foot.svg"
  10448. }
  10449. },
  10450. },
  10451. [
  10452. {
  10453. name: "Micro",
  10454. height: math.unit(2, "cm")
  10455. },
  10456. {
  10457. name: "Normal",
  10458. height: math.unit(2.4, "meters"),
  10459. default: true
  10460. },
  10461. {
  10462. name: "Smaller Macro",
  10463. height: math.unit(120, "meters")
  10464. },
  10465. {
  10466. name: "Bigger Macro",
  10467. height: math.unit(1.2, "km")
  10468. },
  10469. {
  10470. name: "Megamacro",
  10471. height: math.unit(15, "kilometers")
  10472. },
  10473. {
  10474. name: "Gigamacro",
  10475. height: math.unit(2000, "km")
  10476. },
  10477. {
  10478. name: "Teramacro",
  10479. height: math.unit(500000, "km")
  10480. },
  10481. ]
  10482. ))
  10483. characterMakers.push(() => makeCharacter(
  10484. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10485. {
  10486. side: {
  10487. height: math.unit(6, "feet"),
  10488. name: "Side",
  10489. image: {
  10490. source: "./media/characters/ailbhe/side.svg",
  10491. extra: 757 / 464,
  10492. bottom: 0.041
  10493. }
  10494. },
  10495. },
  10496. [
  10497. {
  10498. name: "Normal",
  10499. height: math.unit(1.07, "meters"),
  10500. default: true
  10501. },
  10502. ]
  10503. ))
  10504. characterMakers.push(() => makeCharacter(
  10505. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10506. {
  10507. front: {
  10508. height: math.unit(6, "feet"),
  10509. weight: math.unit(120, "kg"),
  10510. name: "Front",
  10511. image: {
  10512. source: "./media/characters/zevulfius/front.svg",
  10513. extra: 965 / 903
  10514. }
  10515. },
  10516. side: {
  10517. height: math.unit(6, "feet"),
  10518. weight: math.unit(120, "kg"),
  10519. name: "Side",
  10520. image: {
  10521. source: "./media/characters/zevulfius/side.svg",
  10522. extra: 939 / 900
  10523. }
  10524. },
  10525. back: {
  10526. height: math.unit(6, "feet"),
  10527. weight: math.unit(120, "kg"),
  10528. name: "Back",
  10529. image: {
  10530. source: "./media/characters/zevulfius/back.svg",
  10531. extra: 918 / 854,
  10532. bottom: 0.005
  10533. }
  10534. },
  10535. foot: {
  10536. height: math.unit(6 / 3.72, "feet"),
  10537. name: "Foot",
  10538. image: {
  10539. source: "./media/characters/zevulfius/foot.svg"
  10540. }
  10541. },
  10542. },
  10543. [
  10544. {
  10545. name: "Macro",
  10546. height: math.unit(750, "meters")
  10547. },
  10548. {
  10549. name: "Megamacro",
  10550. height: math.unit(20, "km"),
  10551. default: true
  10552. },
  10553. {
  10554. name: "Gigamacro",
  10555. height: math.unit(2000, "km")
  10556. },
  10557. {
  10558. name: "Teramacro",
  10559. height: math.unit(250000, "km")
  10560. },
  10561. ]
  10562. ))
  10563. characterMakers.push(() => makeCharacter(
  10564. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10565. {
  10566. front: {
  10567. height: math.unit(100, "feet"),
  10568. weight: math.unit(350, "kg"),
  10569. name: "Front",
  10570. image: {
  10571. source: "./media/characters/rikes/front.svg",
  10572. extra: 1565 / 1483,
  10573. bottom: 0.017
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Macro",
  10580. height: math.unit(100, "feet"),
  10581. default: true
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(8, "feet"),
  10590. weight: math.unit(356, "lb"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/adam-silver-mane/front.svg",
  10594. extra: 1036/937,
  10595. bottom: 63/1099
  10596. }
  10597. },
  10598. side: {
  10599. height: math.unit(8, "feet"),
  10600. weight: math.unit(356, "lb"),
  10601. name: "Side",
  10602. image: {
  10603. source: "./media/characters/adam-silver-mane/side.svg",
  10604. extra: 997/901,
  10605. bottom: 59/1056
  10606. }
  10607. },
  10608. frontNsfw: {
  10609. height: math.unit(8, "feet"),
  10610. weight: math.unit(356, "lb"),
  10611. name: "Front (NSFW)",
  10612. image: {
  10613. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10614. extra: 1036/937,
  10615. bottom: 63/1099
  10616. }
  10617. },
  10618. sideNsfw: {
  10619. height: math.unit(8, "feet"),
  10620. weight: math.unit(356, "lb"),
  10621. name: "Side (NSFW)",
  10622. image: {
  10623. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10624. extra: 997/901,
  10625. bottom: 59/1056
  10626. }
  10627. },
  10628. dick: {
  10629. height: math.unit(2.1, "feet"),
  10630. name: "Dick",
  10631. image: {
  10632. source: "./media/characters/adam-silver-mane/dick.svg"
  10633. }
  10634. },
  10635. taur: {
  10636. height: math.unit(16, "feet"),
  10637. weight: math.unit(1500, "kg"),
  10638. name: "Taur",
  10639. image: {
  10640. source: "./media/characters/adam-silver-mane/taur.svg",
  10641. extra: 1713 / 1571,
  10642. bottom: 0.01
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(8, "feet")
  10650. },
  10651. {
  10652. name: "Minimacro",
  10653. height: math.unit(80, "feet")
  10654. },
  10655. {
  10656. name: "MDA",
  10657. height: math.unit(80, "meters")
  10658. },
  10659. {
  10660. name: "Macro",
  10661. height: math.unit(800, "feet"),
  10662. default: true
  10663. },
  10664. {
  10665. name: "Megamacro",
  10666. height: math.unit(8000, "feet")
  10667. },
  10668. {
  10669. name: "Gigamacro",
  10670. height: math.unit(800, "miles")
  10671. },
  10672. {
  10673. name: "Teramacro",
  10674. height: math.unit(80000, "miles")
  10675. },
  10676. {
  10677. name: "Celestial",
  10678. height: math.unit(8e6, "miles")
  10679. },
  10680. {
  10681. name: "Star Dragon",
  10682. height: math.unit(800000, "parsecs")
  10683. },
  10684. {
  10685. name: "Godly",
  10686. height: math.unit(800, "teraparsecs")
  10687. },
  10688. ]
  10689. ))
  10690. characterMakers.push(() => makeCharacter(
  10691. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10692. {
  10693. front: {
  10694. height: math.unit(6, "feet"),
  10695. weight: math.unit(150, "lb"),
  10696. name: "Front",
  10697. image: {
  10698. source: "./media/characters/ky'owin/front.svg",
  10699. extra: 3888 / 3068,
  10700. bottom: 0.015
  10701. }
  10702. },
  10703. },
  10704. [
  10705. {
  10706. name: "Normal",
  10707. height: math.unit(6 + 8 / 12, "feet")
  10708. },
  10709. {
  10710. name: "Large",
  10711. height: math.unit(68, "feet")
  10712. },
  10713. {
  10714. name: "Macro",
  10715. height: math.unit(132, "feet")
  10716. },
  10717. {
  10718. name: "Macro+",
  10719. height: math.unit(340, "feet")
  10720. },
  10721. {
  10722. name: "Macro++",
  10723. height: math.unit(680, "feet"),
  10724. default: true
  10725. },
  10726. {
  10727. name: "Megamacro",
  10728. height: math.unit(1, "mile")
  10729. },
  10730. {
  10731. name: "Megamacro+",
  10732. height: math.unit(10, "miles")
  10733. },
  10734. ]
  10735. ))
  10736. characterMakers.push(() => makeCharacter(
  10737. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10738. {
  10739. front: {
  10740. height: math.unit(4, "feet"),
  10741. weight: math.unit(50, "lb"),
  10742. name: "Front",
  10743. image: {
  10744. source: "./media/characters/mal/front.svg",
  10745. extra: 785 / 724,
  10746. bottom: 0.07
  10747. }
  10748. },
  10749. },
  10750. [
  10751. {
  10752. name: "Micro",
  10753. height: math.unit(4, "inches")
  10754. },
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(4, "feet"),
  10758. default: true
  10759. },
  10760. {
  10761. name: "Macro",
  10762. height: math.unit(200, "feet")
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10768. {
  10769. front: {
  10770. height: math.unit(6, "feet"),
  10771. weight: math.unit(150, "lb"),
  10772. name: "Front",
  10773. image: {
  10774. source: "./media/characters/jordan-deware/front.svg",
  10775. extra: 1191 / 1012
  10776. }
  10777. },
  10778. },
  10779. [
  10780. {
  10781. name: "Nano",
  10782. height: math.unit(0.01, "mm")
  10783. },
  10784. {
  10785. name: "Minimicro",
  10786. height: math.unit(1, "mm")
  10787. },
  10788. {
  10789. name: "Micro",
  10790. height: math.unit(0.5, "inches")
  10791. },
  10792. {
  10793. name: "Normal",
  10794. height: math.unit(4, "feet"),
  10795. default: true
  10796. },
  10797. {
  10798. name: "Minimacro",
  10799. height: math.unit(40, "meters")
  10800. },
  10801. {
  10802. name: "Small Macro",
  10803. height: math.unit(400, "meters")
  10804. },
  10805. {
  10806. name: "Macro",
  10807. height: math.unit(4, "miles")
  10808. },
  10809. {
  10810. name: "Megamacro",
  10811. height: math.unit(40, "miles")
  10812. },
  10813. {
  10814. name: "Megamacro+",
  10815. height: math.unit(400, "miles")
  10816. },
  10817. {
  10818. name: "Gigamacro",
  10819. height: math.unit(400000, "miles")
  10820. },
  10821. ]
  10822. ))
  10823. characterMakers.push(() => makeCharacter(
  10824. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10825. {
  10826. side: {
  10827. height: math.unit(6, "feet"),
  10828. weight: math.unit(150, "lb"),
  10829. name: "Side",
  10830. image: {
  10831. source: "./media/characters/kimiko/side.svg",
  10832. extra: 600 / 358
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(15, "feet"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(220, "feet")
  10845. },
  10846. {
  10847. name: "Macro+",
  10848. height: math.unit(1450, "feet")
  10849. },
  10850. {
  10851. name: "Megamacro",
  10852. height: math.unit(11500, "feet")
  10853. },
  10854. {
  10855. name: "Gigamacro",
  10856. height: math.unit(9500, "miles")
  10857. },
  10858. {
  10859. name: "Teramacro",
  10860. height: math.unit(2208005005, "miles")
  10861. },
  10862. {
  10863. name: "Examacro",
  10864. height: math.unit(2750, "parsecs")
  10865. },
  10866. {
  10867. name: "Zettamacro",
  10868. height: math.unit(101500, "parsecs")
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10874. {
  10875. front: {
  10876. height: math.unit(6, "feet"),
  10877. weight: math.unit(70, "kg"),
  10878. name: "Front",
  10879. image: {
  10880. source: "./media/characters/andrew-sleepy/front.svg"
  10881. }
  10882. },
  10883. side: {
  10884. height: math.unit(6, "feet"),
  10885. weight: math.unit(70, "kg"),
  10886. name: "Side",
  10887. image: {
  10888. source: "./media/characters/andrew-sleepy/side.svg"
  10889. }
  10890. },
  10891. },
  10892. [
  10893. {
  10894. name: "Micro",
  10895. height: math.unit(1, "mm"),
  10896. default: true
  10897. },
  10898. ]
  10899. ))
  10900. characterMakers.push(() => makeCharacter(
  10901. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10902. {
  10903. front: {
  10904. height: math.unit(6, "feet"),
  10905. weight: math.unit(150, "lb"),
  10906. name: "Front",
  10907. image: {
  10908. source: "./media/characters/judio/front.svg",
  10909. extra: 1258 / 1110
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Normal",
  10916. height: math.unit(5 + 6 / 12, "feet")
  10917. },
  10918. {
  10919. name: "Macro",
  10920. height: math.unit(1000, "feet"),
  10921. default: true
  10922. },
  10923. {
  10924. name: "Megamacro",
  10925. height: math.unit(10, "miles")
  10926. },
  10927. ]
  10928. ))
  10929. characterMakers.push(() => makeCharacter(
  10930. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10931. {
  10932. front: {
  10933. height: math.unit(6, "feet"),
  10934. weight: math.unit(68, "kg"),
  10935. name: "Front",
  10936. image: {
  10937. source: "./media/characters/nomaxice/front.svg",
  10938. extra: 1498 / 1073,
  10939. bottom: 0.075
  10940. }
  10941. },
  10942. foot: {
  10943. height: math.unit(1.1, "feet"),
  10944. name: "Foot",
  10945. image: {
  10946. source: "./media/characters/nomaxice/foot.svg"
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Micro",
  10953. height: math.unit(8, "cm")
  10954. },
  10955. {
  10956. name: "Norm",
  10957. height: math.unit(1.82, "m")
  10958. },
  10959. {
  10960. name: "Norm+",
  10961. height: math.unit(8.8, "feet")
  10962. },
  10963. {
  10964. name: "Big",
  10965. height: math.unit(8, "meters"),
  10966. default: true
  10967. },
  10968. {
  10969. name: "Macro",
  10970. height: math.unit(18, "meters")
  10971. },
  10972. {
  10973. name: "Macro+",
  10974. height: math.unit(88, "meters")
  10975. },
  10976. ]
  10977. ))
  10978. characterMakers.push(() => makeCharacter(
  10979. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10980. {
  10981. front: {
  10982. height: math.unit(12, "feet"),
  10983. weight: math.unit(1.5, "tons"),
  10984. name: "Front",
  10985. image: {
  10986. source: "./media/characters/dydros/front.svg",
  10987. extra: 863 / 800,
  10988. bottom: 0.015
  10989. }
  10990. },
  10991. back: {
  10992. height: math.unit(12, "feet"),
  10993. weight: math.unit(1.5, "tons"),
  10994. name: "Back",
  10995. image: {
  10996. source: "./media/characters/dydros/back.svg",
  10997. extra: 900 / 843,
  10998. bottom: 0.005
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Normal",
  11005. height: math.unit(12, "feet"),
  11006. default: true
  11007. },
  11008. ]
  11009. ))
  11010. characterMakers.push(() => makeCharacter(
  11011. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11012. {
  11013. front: {
  11014. height: math.unit(6, "feet"),
  11015. weight: math.unit(100, "kg"),
  11016. name: "Front",
  11017. image: {
  11018. source: "./media/characters/riggi/front.svg",
  11019. extra: 5787 / 5303
  11020. }
  11021. },
  11022. hyper: {
  11023. height: math.unit(6 * 5 / 3, "feet"),
  11024. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11025. name: "Hyper",
  11026. image: {
  11027. source: "./media/characters/riggi/hyper.svg",
  11028. extra: 3595 / 3485
  11029. }
  11030. },
  11031. },
  11032. [
  11033. {
  11034. name: "Small Macro",
  11035. height: math.unit(50, "feet")
  11036. },
  11037. {
  11038. name: "Default",
  11039. height: math.unit(200, "feet"),
  11040. default: true
  11041. },
  11042. {
  11043. name: "Loom",
  11044. height: math.unit(10000, "feet")
  11045. },
  11046. {
  11047. name: "Cruising Altitude",
  11048. height: math.unit(30000, "feet")
  11049. },
  11050. {
  11051. name: "Megamacro",
  11052. height: math.unit(100, "miles")
  11053. },
  11054. {
  11055. name: "Continent Sized",
  11056. height: math.unit(2800, "miles")
  11057. },
  11058. {
  11059. name: "Earth Sized",
  11060. height: math.unit(8000, "miles")
  11061. },
  11062. ]
  11063. ))
  11064. characterMakers.push(() => makeCharacter(
  11065. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11066. {
  11067. front: {
  11068. height: math.unit(6, "feet"),
  11069. weight: math.unit(250, "lb"),
  11070. name: "Front",
  11071. image: {
  11072. source: "./media/characters/alexi/front.svg",
  11073. extra: 3483 / 3291,
  11074. bottom: 0.04
  11075. }
  11076. },
  11077. back: {
  11078. height: math.unit(6, "feet"),
  11079. weight: math.unit(250, "lb"),
  11080. name: "Back",
  11081. image: {
  11082. source: "./media/characters/alexi/back.svg",
  11083. extra: 3533 / 3356,
  11084. bottom: 0.021
  11085. }
  11086. },
  11087. frontTransforming: {
  11088. height: math.unit(8.58, "feet"),
  11089. weight: math.unit(1300, "lb"),
  11090. name: "Transforming",
  11091. image: {
  11092. source: "./media/characters/alexi/front-transforming.svg",
  11093. extra: 437 / 409,
  11094. bottom: 19 / 458.66
  11095. }
  11096. },
  11097. frontTransformed: {
  11098. height: math.unit(12.5, "feet"),
  11099. weight: math.unit(4000, "lb"),
  11100. name: "Transformed",
  11101. image: {
  11102. source: "./media/characters/alexi/front-transformed.svg",
  11103. extra: 639 / 614,
  11104. bottom: 30.55 / 671
  11105. }
  11106. },
  11107. },
  11108. [
  11109. {
  11110. name: "Normal",
  11111. height: math.unit(14, "feet"),
  11112. default: true
  11113. },
  11114. {
  11115. name: "Minimacro",
  11116. height: math.unit(30, "meters")
  11117. },
  11118. {
  11119. name: "Macro",
  11120. height: math.unit(500, "meters")
  11121. },
  11122. {
  11123. name: "Megamacro",
  11124. height: math.unit(9000, "km")
  11125. },
  11126. {
  11127. name: "Teramacro",
  11128. height: math.unit(384000, "km")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11134. {
  11135. front: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(150, "lb"),
  11138. name: "Front",
  11139. image: {
  11140. source: "./media/characters/kayroo/front.svg",
  11141. extra: 1153 / 1038,
  11142. bottom: 0.06
  11143. }
  11144. },
  11145. foot: {
  11146. height: math.unit(6, "feet"),
  11147. weight: math.unit(150, "lb"),
  11148. name: "Foot",
  11149. image: {
  11150. source: "./media/characters/kayroo/foot.svg"
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(8, "feet"),
  11158. default: true
  11159. },
  11160. {
  11161. name: "Minimacro",
  11162. height: math.unit(250, "feet")
  11163. },
  11164. {
  11165. name: "Macro",
  11166. height: math.unit(2800, "feet")
  11167. },
  11168. {
  11169. name: "Megamacro",
  11170. height: math.unit(5200, "feet")
  11171. },
  11172. {
  11173. name: "Gigamacro",
  11174. height: math.unit(27000, "feet")
  11175. },
  11176. {
  11177. name: "Omega",
  11178. height: math.unit(45000, "feet")
  11179. },
  11180. ]
  11181. ))
  11182. characterMakers.push(() => makeCharacter(
  11183. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11184. {
  11185. front: {
  11186. height: math.unit(18, "feet"),
  11187. weight: math.unit(5800, "lb"),
  11188. name: "Front",
  11189. image: {
  11190. source: "./media/characters/rhys/front.svg",
  11191. extra: 3386 / 3090,
  11192. bottom: 0.07
  11193. }
  11194. },
  11195. },
  11196. [
  11197. {
  11198. name: "Normal",
  11199. height: math.unit(18, "feet"),
  11200. default: true
  11201. },
  11202. {
  11203. name: "Working Size",
  11204. height: math.unit(200, "feet")
  11205. },
  11206. {
  11207. name: "Demolition Size",
  11208. height: math.unit(2000, "feet")
  11209. },
  11210. {
  11211. name: "Maximum Licensed Size",
  11212. height: math.unit(5, "miles")
  11213. },
  11214. {
  11215. name: "Maximum Observed Size",
  11216. height: math.unit(10, "yottameters")
  11217. },
  11218. ]
  11219. ))
  11220. characterMakers.push(() => makeCharacter(
  11221. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11222. {
  11223. front: {
  11224. height: math.unit(6, "feet"),
  11225. weight: math.unit(250, "lb"),
  11226. name: "Front",
  11227. image: {
  11228. source: "./media/characters/toto/front.svg",
  11229. extra: 527 / 479,
  11230. bottom: 0.05
  11231. }
  11232. },
  11233. },
  11234. [
  11235. {
  11236. name: "Micro",
  11237. height: math.unit(3, "feet")
  11238. },
  11239. {
  11240. name: "Normal",
  11241. height: math.unit(10, "feet")
  11242. },
  11243. {
  11244. name: "Macro",
  11245. height: math.unit(150, "feet"),
  11246. default: true
  11247. },
  11248. {
  11249. name: "Megamacro",
  11250. height: math.unit(1200, "feet")
  11251. },
  11252. ]
  11253. ))
  11254. characterMakers.push(() => makeCharacter(
  11255. { name: "King", species: ["lion"], tags: ["anthro"] },
  11256. {
  11257. back: {
  11258. height: math.unit(6, "feet"),
  11259. weight: math.unit(150, "lb"),
  11260. name: "Back",
  11261. image: {
  11262. source: "./media/characters/king/back.svg"
  11263. }
  11264. },
  11265. },
  11266. [
  11267. {
  11268. name: "Micro",
  11269. height: math.unit(2, "inches")
  11270. },
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(8, "feet")
  11274. },
  11275. {
  11276. name: "Macro",
  11277. height: math.unit(200, "feet"),
  11278. default: true
  11279. },
  11280. {
  11281. name: "Megamacro",
  11282. height: math.unit(50, "miles")
  11283. },
  11284. ]
  11285. ))
  11286. characterMakers.push(() => makeCharacter(
  11287. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11288. {
  11289. front: {
  11290. height: math.unit(11, "feet"),
  11291. weight: math.unit(1400, "lb"),
  11292. name: "Front",
  11293. image: {
  11294. source: "./media/characters/cordite/front.svg",
  11295. extra: 1919/1827,
  11296. bottom: 40/1959
  11297. }
  11298. },
  11299. side: {
  11300. height: math.unit(11, "feet"),
  11301. weight: math.unit(1400, "lb"),
  11302. name: "Side",
  11303. image: {
  11304. source: "./media/characters/cordite/side.svg",
  11305. extra: 1908/1793,
  11306. bottom: 38/1946
  11307. }
  11308. },
  11309. back: {
  11310. height: math.unit(11, "feet"),
  11311. weight: math.unit(1400, "lb"),
  11312. name: "Back",
  11313. image: {
  11314. source: "./media/characters/cordite/back.svg",
  11315. extra: 1938/1837,
  11316. bottom: 10/1948
  11317. }
  11318. },
  11319. feral: {
  11320. height: math.unit(2, "feet"),
  11321. weight: math.unit(90, "lb"),
  11322. name: "Feral",
  11323. image: {
  11324. source: "./media/characters/cordite/feral.svg",
  11325. extra: 1260 / 755,
  11326. bottom: 0.05
  11327. }
  11328. },
  11329. },
  11330. [
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(11, "feet"),
  11334. default: true
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(150, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/pianostrong/front.svg",
  11347. extra: 6577 / 6254,
  11348. bottom: 0.02
  11349. }
  11350. },
  11351. side: {
  11352. height: math.unit(6, "feet"),
  11353. weight: math.unit(150, "lb"),
  11354. name: "Side",
  11355. image: {
  11356. source: "./media/characters/pianostrong/side.svg",
  11357. extra: 6106 / 5730
  11358. }
  11359. },
  11360. back: {
  11361. height: math.unit(6, "feet"),
  11362. weight: math.unit(150, "lb"),
  11363. name: "Back",
  11364. image: {
  11365. source: "./media/characters/pianostrong/back.svg",
  11366. extra: 6085 / 5733,
  11367. bottom: 0.01
  11368. }
  11369. },
  11370. },
  11371. [
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(100, "feet")
  11375. },
  11376. {
  11377. name: "Macro+",
  11378. height: math.unit(300, "feet"),
  11379. default: true
  11380. },
  11381. {
  11382. name: "Macro++",
  11383. height: math.unit(1000, "feet")
  11384. },
  11385. ]
  11386. ))
  11387. characterMakers.push(() => makeCharacter(
  11388. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11389. {
  11390. front: {
  11391. height: math.unit(6, "feet"),
  11392. weight: math.unit(150, "lb"),
  11393. name: "Front",
  11394. image: {
  11395. source: "./media/characters/kona/front.svg",
  11396. extra: 2960 / 2629,
  11397. bottom: 0.005
  11398. }
  11399. },
  11400. },
  11401. [
  11402. {
  11403. name: "Normal",
  11404. height: math.unit(11 + 8 / 12, "feet")
  11405. },
  11406. {
  11407. name: "Macro",
  11408. height: math.unit(850, "feet"),
  11409. default: true
  11410. },
  11411. {
  11412. name: "Macro+",
  11413. height: math.unit(1.5, "km"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Megamacro",
  11418. height: math.unit(80, "miles")
  11419. },
  11420. {
  11421. name: "Gigamacro",
  11422. height: math.unit(3500, "miles")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11428. {
  11429. side: {
  11430. height: math.unit(1.9, "meters"),
  11431. weight: math.unit(326, "kg"),
  11432. name: "Side",
  11433. image: {
  11434. source: "./media/characters/levi/side.svg",
  11435. extra: 1704 / 1334,
  11436. bottom: 0.02
  11437. }
  11438. },
  11439. },
  11440. [
  11441. {
  11442. name: "Normal",
  11443. height: math.unit(1.9, "meters"),
  11444. default: true
  11445. },
  11446. {
  11447. name: "Macro",
  11448. height: math.unit(20, "meters")
  11449. },
  11450. {
  11451. name: "Macro+",
  11452. height: math.unit(200, "meters")
  11453. },
  11454. {
  11455. name: "Megamacro",
  11456. height: math.unit(2, "km")
  11457. },
  11458. {
  11459. name: "Megamacro+",
  11460. height: math.unit(20, "km")
  11461. },
  11462. {
  11463. name: "Gigamacro",
  11464. height: math.unit(2500, "km")
  11465. },
  11466. {
  11467. name: "Gigamacro+",
  11468. height: math.unit(120000, "km")
  11469. },
  11470. {
  11471. name: "Teramacro",
  11472. height: math.unit(7.77e6, "km")
  11473. },
  11474. ]
  11475. ))
  11476. characterMakers.push(() => makeCharacter(
  11477. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11478. {
  11479. front: {
  11480. height: math.unit(6 + 4/12, "feet"),
  11481. weight: math.unit(190, "lb"),
  11482. name: "Front",
  11483. image: {
  11484. source: "./media/characters/bmc/front.svg",
  11485. extra: 1626/1472,
  11486. bottom: 79/1705
  11487. }
  11488. },
  11489. back: {
  11490. height: math.unit(6 + 4/12, "feet"),
  11491. weight: math.unit(190, "lb"),
  11492. name: "Back",
  11493. image: {
  11494. source: "./media/characters/bmc/back.svg",
  11495. extra: 1640/1479,
  11496. bottom: 45/1685
  11497. }
  11498. },
  11499. frontArmor: {
  11500. height: math.unit(6 + 4/12, "feet"),
  11501. weight: math.unit(190, "lb"),
  11502. name: "Front-armor",
  11503. image: {
  11504. source: "./media/characters/bmc/front-armor.svg",
  11505. extra: 1538/1468,
  11506. bottom: 79/1617
  11507. }
  11508. },
  11509. },
  11510. [
  11511. {
  11512. name: "Human-sized",
  11513. height: math.unit(6 + 4 / 12, "feet")
  11514. },
  11515. {
  11516. name: "Interactive Size",
  11517. height: math.unit(25, "feet")
  11518. },
  11519. {
  11520. name: "Small",
  11521. height: math.unit(250, "feet")
  11522. },
  11523. {
  11524. name: "Normal",
  11525. height: math.unit(1250, "feet"),
  11526. default: true
  11527. },
  11528. {
  11529. name: "Good Day",
  11530. height: math.unit(88, "miles")
  11531. },
  11532. {
  11533. name: "Largest Measured Size",
  11534. height: math.unit(105.960, "galaxies")
  11535. },
  11536. ]
  11537. ))
  11538. characterMakers.push(() => makeCharacter(
  11539. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11540. {
  11541. front: {
  11542. height: math.unit(20, "feet"),
  11543. weight: math.unit(2016, "kg"),
  11544. name: "Front",
  11545. image: {
  11546. source: "./media/characters/sven-the-kaiju/front.svg",
  11547. extra: 1277/1250,
  11548. bottom: 35/1312
  11549. }
  11550. },
  11551. mouth: {
  11552. height: math.unit(1.85, "feet"),
  11553. name: "Mouth",
  11554. image: {
  11555. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11556. }
  11557. },
  11558. },
  11559. [
  11560. {
  11561. name: "Fairy",
  11562. height: math.unit(6, "inches")
  11563. },
  11564. {
  11565. name: "Normal",
  11566. height: math.unit(20, "feet"),
  11567. default: true
  11568. },
  11569. {
  11570. name: "Rampage",
  11571. height: math.unit(200, "feet")
  11572. },
  11573. {
  11574. name: "Archfey Forest Guardian",
  11575. height: math.unit(1, "mile")
  11576. },
  11577. ]
  11578. ))
  11579. characterMakers.push(() => makeCharacter(
  11580. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11581. {
  11582. front: {
  11583. height: math.unit(4, "meters"),
  11584. weight: math.unit(2, "tons"),
  11585. name: "Front",
  11586. image: {
  11587. source: "./media/characters/marik/front.svg",
  11588. extra: 1057 / 1003,
  11589. bottom: 0.08
  11590. }
  11591. },
  11592. },
  11593. [
  11594. {
  11595. name: "Normal",
  11596. height: math.unit(4, "meters"),
  11597. default: true
  11598. },
  11599. {
  11600. name: "Macro",
  11601. height: math.unit(20, "meters")
  11602. },
  11603. {
  11604. name: "Megamacro",
  11605. height: math.unit(50, "km")
  11606. },
  11607. {
  11608. name: "Gigamacro",
  11609. height: math.unit(100, "km")
  11610. },
  11611. {
  11612. name: "Alpha Macro",
  11613. height: math.unit(7.88e7, "yottameters")
  11614. },
  11615. ]
  11616. ))
  11617. characterMakers.push(() => makeCharacter(
  11618. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11619. {
  11620. front: {
  11621. height: math.unit(6, "feet"),
  11622. weight: math.unit(110, "lb"),
  11623. name: "Front",
  11624. image: {
  11625. source: "./media/characters/mel/front.svg",
  11626. extra: 736 / 617,
  11627. bottom: 0.017
  11628. }
  11629. },
  11630. },
  11631. [
  11632. {
  11633. name: "Pico",
  11634. height: math.unit(3, "pm")
  11635. },
  11636. {
  11637. name: "Nano",
  11638. height: math.unit(3, "nm")
  11639. },
  11640. {
  11641. name: "Micro",
  11642. height: math.unit(0.3, "mm"),
  11643. default: true
  11644. },
  11645. {
  11646. name: "Micro+",
  11647. height: math.unit(3, "mm")
  11648. },
  11649. {
  11650. name: "Normal",
  11651. height: math.unit(5 + 10.5 / 12, "feet")
  11652. },
  11653. ]
  11654. ))
  11655. characterMakers.push(() => makeCharacter(
  11656. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11657. {
  11658. kaiju: {
  11659. height: math.unit(1.75, "meters"),
  11660. weight: math.unit(55, "kg"),
  11661. name: "Kaiju",
  11662. image: {
  11663. source: "./media/characters/lykonous/kaiju.svg",
  11664. extra: 1055 / 946,
  11665. bottom: 0.135
  11666. }
  11667. },
  11668. },
  11669. [
  11670. {
  11671. name: "Normal",
  11672. height: math.unit(2.5, "meters"),
  11673. default: true
  11674. },
  11675. {
  11676. name: "Kaiju Dragon",
  11677. height: math.unit(60, "meters")
  11678. },
  11679. {
  11680. name: "Mega Kaiju",
  11681. height: math.unit(120, "km")
  11682. },
  11683. {
  11684. name: "Giga Kaiju",
  11685. height: math.unit(200, "megameters")
  11686. },
  11687. {
  11688. name: "Terra Kaiju",
  11689. height: math.unit(400, "gigameters")
  11690. },
  11691. {
  11692. name: "Kaiju Dragon God",
  11693. height: math.unit(13000, "exaparsecs")
  11694. },
  11695. ]
  11696. ))
  11697. characterMakers.push(() => makeCharacter(
  11698. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11699. {
  11700. front: {
  11701. height: math.unit(6, "feet"),
  11702. weight: math.unit(150, "lb"),
  11703. name: "Front",
  11704. image: {
  11705. source: "./media/characters/blü/front.svg",
  11706. extra: 1883 / 1564,
  11707. bottom: 0.031
  11708. }
  11709. },
  11710. },
  11711. [
  11712. {
  11713. name: "Normal",
  11714. height: math.unit(13, "feet"),
  11715. default: true
  11716. },
  11717. {
  11718. name: "Big Boi",
  11719. height: math.unit(150, "meters")
  11720. },
  11721. {
  11722. name: "Mini Stomper",
  11723. height: math.unit(300, "meters")
  11724. },
  11725. {
  11726. name: "Macro",
  11727. height: math.unit(1000, "meters")
  11728. },
  11729. {
  11730. name: "Megamacro",
  11731. height: math.unit(11000, "meters")
  11732. },
  11733. {
  11734. name: "Gigamacro",
  11735. height: math.unit(11000, "km")
  11736. },
  11737. {
  11738. name: "Teramacro",
  11739. height: math.unit(420000, "km")
  11740. },
  11741. {
  11742. name: "Examacro",
  11743. height: math.unit(120, "parsecs")
  11744. },
  11745. {
  11746. name: "God Tho",
  11747. height: math.unit(98000000000, "parsecs")
  11748. },
  11749. ]
  11750. ))
  11751. characterMakers.push(() => makeCharacter(
  11752. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11753. {
  11754. taurFront: {
  11755. height: math.unit(6, "feet"),
  11756. weight: math.unit(200, "lb"),
  11757. name: "Taur (Front)",
  11758. image: {
  11759. source: "./media/characters/scales/taur-front.svg",
  11760. extra: 1,
  11761. bottom: 0.05
  11762. }
  11763. },
  11764. taurBack: {
  11765. height: math.unit(6, "feet"),
  11766. weight: math.unit(200, "lb"),
  11767. name: "Taur (Back)",
  11768. image: {
  11769. source: "./media/characters/scales/taur-back.svg",
  11770. extra: 1,
  11771. bottom: 0.08
  11772. }
  11773. },
  11774. anthro: {
  11775. height: math.unit(6 * 7 / 12, "feet"),
  11776. weight: math.unit(100, "lb"),
  11777. name: "Anthro",
  11778. image: {
  11779. source: "./media/characters/scales/anthro.svg",
  11780. extra: 1,
  11781. bottom: 0.06
  11782. }
  11783. },
  11784. },
  11785. [
  11786. {
  11787. name: "Normal",
  11788. height: math.unit(12, "feet"),
  11789. default: true
  11790. },
  11791. ]
  11792. ))
  11793. characterMakers.push(() => makeCharacter(
  11794. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11795. {
  11796. front: {
  11797. height: math.unit(6, "feet"),
  11798. weight: math.unit(150, "lb"),
  11799. name: "Front",
  11800. image: {
  11801. source: "./media/characters/koragos/front.svg",
  11802. extra: 841 / 794,
  11803. bottom: 0.035
  11804. }
  11805. },
  11806. back: {
  11807. height: math.unit(6, "feet"),
  11808. weight: math.unit(150, "lb"),
  11809. name: "Back",
  11810. image: {
  11811. source: "./media/characters/koragos/back.svg",
  11812. extra: 841 / 810,
  11813. bottom: 0.022
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Normal",
  11820. height: math.unit(6 + 11 / 12, "feet"),
  11821. default: true
  11822. },
  11823. {
  11824. name: "Macro",
  11825. height: math.unit(490, "feet")
  11826. },
  11827. {
  11828. name: "Megamacro",
  11829. height: math.unit(10, "miles")
  11830. },
  11831. {
  11832. name: "Gigamacro",
  11833. height: math.unit(50, "miles")
  11834. },
  11835. ]
  11836. ))
  11837. characterMakers.push(() => makeCharacter(
  11838. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11839. {
  11840. front: {
  11841. height: math.unit(6, "feet"),
  11842. weight: math.unit(250, "lb"),
  11843. name: "Front",
  11844. image: {
  11845. source: "./media/characters/xylrem/front.svg",
  11846. extra: 3323 / 3050,
  11847. bottom: 0.065
  11848. }
  11849. },
  11850. },
  11851. [
  11852. {
  11853. name: "Micro",
  11854. height: math.unit(4, "feet")
  11855. },
  11856. {
  11857. name: "Normal",
  11858. height: math.unit(16, "feet"),
  11859. default: true
  11860. },
  11861. {
  11862. name: "Macro",
  11863. height: math.unit(2720, "feet")
  11864. },
  11865. {
  11866. name: "Megamacro",
  11867. height: math.unit(25000, "miles")
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11873. {
  11874. front: {
  11875. height: math.unit(8, "feet"),
  11876. weight: math.unit(250, "kg"),
  11877. name: "Front",
  11878. image: {
  11879. source: "./media/characters/ikideru/front.svg",
  11880. extra: 930 / 870,
  11881. bottom: 0.087
  11882. }
  11883. },
  11884. back: {
  11885. height: math.unit(8, "feet"),
  11886. weight: math.unit(250, "kg"),
  11887. name: "Back",
  11888. image: {
  11889. source: "./media/characters/ikideru/back.svg",
  11890. extra: 919 / 852,
  11891. bottom: 0.055
  11892. }
  11893. },
  11894. },
  11895. [
  11896. {
  11897. name: "Rare",
  11898. height: math.unit(8, "feet"),
  11899. default: true
  11900. },
  11901. {
  11902. name: "Playful Loom",
  11903. height: math.unit(80, "feet")
  11904. },
  11905. {
  11906. name: "City Leaner",
  11907. height: math.unit(230, "feet")
  11908. },
  11909. {
  11910. name: "Megamacro",
  11911. height: math.unit(2500, "feet")
  11912. },
  11913. {
  11914. name: "Gigamacro",
  11915. height: math.unit(26400, "feet")
  11916. },
  11917. {
  11918. name: "Tectonic Shifter",
  11919. height: math.unit(1.7, "megameters")
  11920. },
  11921. {
  11922. name: "Planet Carer",
  11923. height: math.unit(21, "megameters")
  11924. },
  11925. {
  11926. name: "God",
  11927. height: math.unit(11157.22, "parsecs")
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11933. {
  11934. front: {
  11935. height: math.unit(6, "feet"),
  11936. weight: math.unit(120, "lb"),
  11937. name: "Front",
  11938. image: {
  11939. source: "./media/characters/neo/front.svg"
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Micro",
  11946. height: math.unit(2, "inches"),
  11947. default: true
  11948. },
  11949. {
  11950. name: "Human Size",
  11951. height: math.unit(5 + 8 / 12, "feet")
  11952. },
  11953. ]
  11954. ))
  11955. characterMakers.push(() => makeCharacter(
  11956. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11957. {
  11958. front: {
  11959. height: math.unit(13 + 10 / 12, "feet"),
  11960. weight: math.unit(5320, "lb"),
  11961. name: "Front",
  11962. image: {
  11963. source: "./media/characters/chauncey-chantz/front.svg",
  11964. extra: 1587 / 1435,
  11965. bottom: 0.02
  11966. }
  11967. },
  11968. },
  11969. [
  11970. {
  11971. name: "Normal",
  11972. height: math.unit(13 + 10 / 12, "feet"),
  11973. default: true
  11974. },
  11975. {
  11976. name: "Macro",
  11977. height: math.unit(45, "feet")
  11978. },
  11979. {
  11980. name: "Megamacro",
  11981. height: math.unit(250, "miles")
  11982. },
  11983. {
  11984. name: "Planetary",
  11985. height: math.unit(10000, "miles")
  11986. },
  11987. {
  11988. name: "Galactic",
  11989. height: math.unit(40000, "parsecs")
  11990. },
  11991. {
  11992. name: "Universal",
  11993. height: math.unit(1, "yottameter")
  11994. },
  11995. ]
  11996. ))
  11997. characterMakers.push(() => makeCharacter(
  11998. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11999. {
  12000. front: {
  12001. height: math.unit(6, "feet"),
  12002. weight: math.unit(150, "lb"),
  12003. name: "Front",
  12004. image: {
  12005. source: "./media/characters/epifox/front.svg",
  12006. extra: 1,
  12007. bottom: 0.075
  12008. }
  12009. },
  12010. },
  12011. [
  12012. {
  12013. name: "Micro",
  12014. height: math.unit(6, "inches")
  12015. },
  12016. {
  12017. name: "Normal",
  12018. height: math.unit(12, "feet"),
  12019. default: true
  12020. },
  12021. {
  12022. name: "Macro",
  12023. height: math.unit(3810, "feet")
  12024. },
  12025. {
  12026. name: "Megamacro",
  12027. height: math.unit(500, "miles")
  12028. },
  12029. ]
  12030. ))
  12031. characterMakers.push(() => makeCharacter(
  12032. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12033. {
  12034. front: {
  12035. height: math.unit(1.8796, "m"),
  12036. weight: math.unit(230, "lb"),
  12037. name: "Front",
  12038. image: {
  12039. source: "./media/characters/colin-t/front.svg",
  12040. extra: 1272 / 1193,
  12041. bottom: 0.07
  12042. }
  12043. },
  12044. },
  12045. [
  12046. {
  12047. name: "Micro",
  12048. height: math.unit(0.571, "meters")
  12049. },
  12050. {
  12051. name: "Normal",
  12052. height: math.unit(1.8796, "meters"),
  12053. default: true
  12054. },
  12055. {
  12056. name: "Tall",
  12057. height: math.unit(4, "meters")
  12058. },
  12059. {
  12060. name: "Macro",
  12061. height: math.unit(67.241, "meters")
  12062. },
  12063. {
  12064. name: "Megamacro",
  12065. height: math.unit(371.856, "meters")
  12066. },
  12067. {
  12068. name: "Planetary",
  12069. height: math.unit(12631.5689, "km")
  12070. },
  12071. ]
  12072. ))
  12073. characterMakers.push(() => makeCharacter(
  12074. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12075. {
  12076. front: {
  12077. height: math.unit(1.85, "meters"),
  12078. weight: math.unit(80, "kg"),
  12079. name: "Front",
  12080. image: {
  12081. source: "./media/characters/matvei/front.svg",
  12082. extra: 614 / 594,
  12083. bottom: 0.01
  12084. }
  12085. },
  12086. },
  12087. [
  12088. {
  12089. name: "Normal",
  12090. height: math.unit(1.85, "meters"),
  12091. default: true
  12092. },
  12093. ]
  12094. ))
  12095. characterMakers.push(() => makeCharacter(
  12096. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12097. {
  12098. front: {
  12099. height: math.unit(5 + 9 / 12, "feet"),
  12100. weight: math.unit(70, "lb"),
  12101. name: "Front",
  12102. image: {
  12103. source: "./media/characters/quincy/front.svg",
  12104. extra: 3041 / 2751
  12105. }
  12106. },
  12107. back: {
  12108. height: math.unit(5 + 9 / 12, "feet"),
  12109. weight: math.unit(70, "lb"),
  12110. name: "Back",
  12111. image: {
  12112. source: "./media/characters/quincy/back.svg",
  12113. extra: 3041 / 2751
  12114. }
  12115. },
  12116. flying: {
  12117. height: math.unit(5 + 4 / 12, "feet"),
  12118. weight: math.unit(70, "lb"),
  12119. name: "Flying",
  12120. image: {
  12121. source: "./media/characters/quincy/flying.svg",
  12122. extra: 1044 / 930
  12123. }
  12124. },
  12125. },
  12126. [
  12127. {
  12128. name: "Micro",
  12129. height: math.unit(3, "cm")
  12130. },
  12131. {
  12132. name: "Normal",
  12133. height: math.unit(5 + 9 / 12, "feet")
  12134. },
  12135. {
  12136. name: "Macro",
  12137. height: math.unit(200, "meters"),
  12138. default: true
  12139. },
  12140. {
  12141. name: "Megamacro",
  12142. height: math.unit(1000, "meters")
  12143. },
  12144. ]
  12145. ))
  12146. characterMakers.push(() => makeCharacter(
  12147. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12148. {
  12149. front: {
  12150. height: math.unit(3 + 11/12, "feet"),
  12151. weight: math.unit(50, "lb"),
  12152. name: "Front",
  12153. image: {
  12154. source: "./media/characters/vanrel/front.svg",
  12155. extra: 1104/949,
  12156. bottom: 52/1156
  12157. }
  12158. },
  12159. back: {
  12160. height: math.unit(3 + 11/12, "feet"),
  12161. weight: math.unit(50, "lb"),
  12162. name: "Back",
  12163. image: {
  12164. source: "./media/characters/vanrel/back.svg",
  12165. extra: 1119/976,
  12166. bottom: 37/1156
  12167. }
  12168. },
  12169. tome: {
  12170. height: math.unit(1.35, "feet"),
  12171. weight: math.unit(10, "lb"),
  12172. name: "Vanrel's Tome",
  12173. rename: true,
  12174. image: {
  12175. source: "./media/characters/vanrel/tome.svg"
  12176. }
  12177. },
  12178. beans: {
  12179. height: math.unit(0.89, "feet"),
  12180. name: "Beans",
  12181. image: {
  12182. source: "./media/characters/vanrel/beans.svg"
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(3 + 11/12, "feet"),
  12190. default: true
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12196. {
  12197. front: {
  12198. height: math.unit(7 + 5 / 12, "feet"),
  12199. name: "Front",
  12200. image: {
  12201. source: "./media/characters/kuiper-vanrel/front.svg",
  12202. extra: 1219/1169,
  12203. bottom: 69/1288
  12204. }
  12205. },
  12206. back: {
  12207. height: math.unit(7 + 5 / 12, "feet"),
  12208. name: "Back",
  12209. image: {
  12210. source: "./media/characters/kuiper-vanrel/back.svg",
  12211. extra: 1236/1193,
  12212. bottom: 27/1263
  12213. }
  12214. },
  12215. foot: {
  12216. height: math.unit(0.55, "meters"),
  12217. name: "Foot",
  12218. image: {
  12219. source: "./media/characters/kuiper-vanrel/foot.svg",
  12220. }
  12221. },
  12222. battle: {
  12223. height: math.unit(6.824, "feet"),
  12224. name: "Battle",
  12225. image: {
  12226. source: "./media/characters/kuiper-vanrel/battle.svg",
  12227. extra: 1466 / 1327,
  12228. bottom: 29 / 1492.5
  12229. }
  12230. },
  12231. meerkui: {
  12232. height: math.unit(18, "inches"),
  12233. name: "Meerkui",
  12234. image: {
  12235. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12236. extra: 1354/1289,
  12237. bottom: 69/1423
  12238. }
  12239. },
  12240. },
  12241. [
  12242. {
  12243. name: "Normal",
  12244. height: math.unit(7 + 5 / 12, "feet"),
  12245. default: true
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12251. {
  12252. front: {
  12253. height: math.unit(8 + 5 / 12, "feet"),
  12254. name: "Front",
  12255. image: {
  12256. source: "./media/characters/keset-vanrel/front.svg",
  12257. extra: 1231/1148,
  12258. bottom: 82/1313
  12259. }
  12260. },
  12261. back: {
  12262. height: math.unit(8 + 5 / 12, "feet"),
  12263. name: "Back",
  12264. image: {
  12265. source: "./media/characters/keset-vanrel/back.svg",
  12266. extra: 1240/1174,
  12267. bottom: 33/1273
  12268. }
  12269. },
  12270. hand: {
  12271. height: math.unit(0.6, "meters"),
  12272. name: "Hand",
  12273. image: {
  12274. source: "./media/characters/keset-vanrel/hand.svg"
  12275. }
  12276. },
  12277. foot: {
  12278. height: math.unit(0.94978, "meters"),
  12279. name: "Foot",
  12280. image: {
  12281. source: "./media/characters/keset-vanrel/foot.svg"
  12282. }
  12283. },
  12284. battle: {
  12285. height: math.unit(7.408, "feet"),
  12286. name: "Battle",
  12287. image: {
  12288. source: "./media/characters/keset-vanrel/battle.svg",
  12289. extra: 1890 / 1386,
  12290. bottom: 73.28 / 1970
  12291. }
  12292. },
  12293. },
  12294. [
  12295. {
  12296. name: "Normal",
  12297. height: math.unit(8 + 5 / 12, "feet"),
  12298. default: true
  12299. },
  12300. ]
  12301. ))
  12302. characterMakers.push(() => makeCharacter(
  12303. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12304. {
  12305. front: {
  12306. height: math.unit(6, "feet"),
  12307. weight: math.unit(150, "lb"),
  12308. name: "Front",
  12309. image: {
  12310. source: "./media/characters/neos/front.svg",
  12311. extra: 1696 / 992,
  12312. bottom: 0.14
  12313. }
  12314. },
  12315. },
  12316. [
  12317. {
  12318. name: "Normal",
  12319. height: math.unit(54, "cm"),
  12320. default: true
  12321. },
  12322. {
  12323. name: "Macro",
  12324. height: math.unit(100, "m")
  12325. },
  12326. {
  12327. name: "Megamacro",
  12328. height: math.unit(10, "km")
  12329. },
  12330. {
  12331. name: "Megamacro+",
  12332. height: math.unit(100, "km")
  12333. },
  12334. {
  12335. name: "Gigamacro",
  12336. height: math.unit(100, "Mm")
  12337. },
  12338. {
  12339. name: "Teramacro",
  12340. height: math.unit(100, "Gm")
  12341. },
  12342. {
  12343. name: "Examacro",
  12344. height: math.unit(100, "Em")
  12345. },
  12346. {
  12347. name: "Godly",
  12348. height: math.unit(10000, "Ym")
  12349. },
  12350. {
  12351. name: "Beyond Godly",
  12352. height: math.unit(25, "multiverses")
  12353. },
  12354. ]
  12355. ))
  12356. characterMakers.push(() => makeCharacter(
  12357. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12358. {
  12359. feminine: {
  12360. height: math.unit(5, "feet"),
  12361. weight: math.unit(100, "lb"),
  12362. name: "Feminine",
  12363. image: {
  12364. source: "./media/characters/sammy-mouse/feminine.svg",
  12365. extra: 2526 / 2425,
  12366. bottom: 0.123
  12367. }
  12368. },
  12369. masculine: {
  12370. height: math.unit(5, "feet"),
  12371. weight: math.unit(100, "lb"),
  12372. name: "Masculine",
  12373. image: {
  12374. source: "./media/characters/sammy-mouse/masculine.svg",
  12375. extra: 2526 / 2425,
  12376. bottom: 0.123
  12377. }
  12378. },
  12379. },
  12380. [
  12381. {
  12382. name: "Micro",
  12383. height: math.unit(5, "inches")
  12384. },
  12385. {
  12386. name: "Normal",
  12387. height: math.unit(5, "feet"),
  12388. default: true
  12389. },
  12390. {
  12391. name: "Macro",
  12392. height: math.unit(60, "feet")
  12393. },
  12394. ]
  12395. ))
  12396. characterMakers.push(() => makeCharacter(
  12397. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12398. {
  12399. front: {
  12400. height: math.unit(4, "feet"),
  12401. weight: math.unit(50, "lb"),
  12402. name: "Front",
  12403. image: {
  12404. source: "./media/characters/kole/front.svg",
  12405. extra: 1423 / 1303,
  12406. bottom: 0.025
  12407. }
  12408. },
  12409. back: {
  12410. height: math.unit(4, "feet"),
  12411. weight: math.unit(50, "lb"),
  12412. name: "Back",
  12413. image: {
  12414. source: "./media/characters/kole/back.svg",
  12415. extra: 1426 / 1280,
  12416. bottom: 0.02
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(4, "feet"),
  12424. default: true
  12425. },
  12426. ]
  12427. ))
  12428. characterMakers.push(() => makeCharacter(
  12429. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12430. {
  12431. front: {
  12432. height: math.unit(2.5, "feet"),
  12433. weight: math.unit(32, "lb"),
  12434. name: "Front",
  12435. image: {
  12436. source: "./media/characters/rufran/front.svg",
  12437. extra: 1313/885,
  12438. bottom: 94/1407
  12439. }
  12440. },
  12441. side: {
  12442. height: math.unit(2.5, "feet"),
  12443. weight: math.unit(32, "lb"),
  12444. name: "Side",
  12445. image: {
  12446. source: "./media/characters/rufran/side.svg",
  12447. extra: 1109/852,
  12448. bottom: 118/1227
  12449. }
  12450. },
  12451. back: {
  12452. height: math.unit(2.5, "feet"),
  12453. weight: math.unit(32, "lb"),
  12454. name: "Back",
  12455. image: {
  12456. source: "./media/characters/rufran/back.svg",
  12457. extra: 1280/878,
  12458. bottom: 131/1411
  12459. }
  12460. },
  12461. mouth: {
  12462. height: math.unit(1.13, "feet"),
  12463. name: "Mouth",
  12464. image: {
  12465. source: "./media/characters/rufran/mouth.svg"
  12466. }
  12467. },
  12468. foot: {
  12469. height: math.unit(1.33, "feet"),
  12470. name: "Foot",
  12471. image: {
  12472. source: "./media/characters/rufran/foot.svg"
  12473. }
  12474. },
  12475. koboldFront: {
  12476. height: math.unit(2 + 6 / 12, "feet"),
  12477. weight: math.unit(20, "lb"),
  12478. name: "Front (Kobold)",
  12479. image: {
  12480. source: "./media/characters/rufran/kobold-front.svg",
  12481. extra: 2041 / 1839,
  12482. bottom: 0.055
  12483. }
  12484. },
  12485. koboldBack: {
  12486. height: math.unit(2 + 6 / 12, "feet"),
  12487. weight: math.unit(20, "lb"),
  12488. name: "Back (Kobold)",
  12489. image: {
  12490. source: "./media/characters/rufran/kobold-back.svg",
  12491. extra: 2054 / 1839,
  12492. bottom: 0.01
  12493. }
  12494. },
  12495. koboldHand: {
  12496. height: math.unit(0.2166, "meters"),
  12497. name: "Hand (Kobold)",
  12498. image: {
  12499. source: "./media/characters/rufran/kobold-hand.svg"
  12500. }
  12501. },
  12502. koboldFoot: {
  12503. height: math.unit(0.185, "meters"),
  12504. name: "Foot (Kobold)",
  12505. image: {
  12506. source: "./media/characters/rufran/kobold-foot.svg"
  12507. }
  12508. },
  12509. },
  12510. [
  12511. {
  12512. name: "Micro",
  12513. height: math.unit(1, "inch")
  12514. },
  12515. {
  12516. name: "Normal",
  12517. height: math.unit(2 + 6 / 12, "feet"),
  12518. default: true
  12519. },
  12520. {
  12521. name: "Big",
  12522. height: math.unit(60, "feet")
  12523. },
  12524. {
  12525. name: "Macro",
  12526. height: math.unit(325, "feet")
  12527. },
  12528. ]
  12529. ))
  12530. characterMakers.push(() => makeCharacter(
  12531. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12532. {
  12533. front: {
  12534. height: math.unit(0.3, "meters"),
  12535. weight: math.unit(3.5, "kg"),
  12536. name: "Front",
  12537. image: {
  12538. source: "./media/characters/chip/front.svg",
  12539. extra: 748 / 674
  12540. }
  12541. },
  12542. },
  12543. [
  12544. {
  12545. name: "Micro",
  12546. height: math.unit(1, "inch"),
  12547. default: true
  12548. },
  12549. ]
  12550. ))
  12551. characterMakers.push(() => makeCharacter(
  12552. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12553. {
  12554. side: {
  12555. height: math.unit(2.3, "meters"),
  12556. weight: math.unit(3500, "lb"),
  12557. name: "Side",
  12558. image: {
  12559. source: "./media/characters/torvid/side.svg",
  12560. extra: 1972 / 722,
  12561. bottom: 0.035
  12562. }
  12563. },
  12564. },
  12565. [
  12566. {
  12567. name: "Normal",
  12568. height: math.unit(2.3, "meters"),
  12569. default: true
  12570. },
  12571. ]
  12572. ))
  12573. characterMakers.push(() => makeCharacter(
  12574. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12575. {
  12576. front: {
  12577. height: math.unit(2, "meters"),
  12578. weight: math.unit(150.5, "kg"),
  12579. name: "Front",
  12580. image: {
  12581. source: "./media/characters/susan/front.svg",
  12582. extra: 693 / 635,
  12583. bottom: 0.05
  12584. }
  12585. },
  12586. },
  12587. [
  12588. {
  12589. name: "Megamacro",
  12590. height: math.unit(505, "miles"),
  12591. default: true
  12592. },
  12593. ]
  12594. ))
  12595. characterMakers.push(() => makeCharacter(
  12596. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12597. {
  12598. front: {
  12599. height: math.unit(6, "feet"),
  12600. weight: math.unit(150, "lb"),
  12601. name: "Front",
  12602. image: {
  12603. source: "./media/characters/raindrops/front.svg",
  12604. extra: 2655 / 2461,
  12605. bottom: 49 / 2705
  12606. }
  12607. },
  12608. back: {
  12609. height: math.unit(6, "feet"),
  12610. weight: math.unit(150, "lb"),
  12611. name: "Back",
  12612. image: {
  12613. source: "./media/characters/raindrops/back.svg",
  12614. extra: 2574 / 2400,
  12615. bottom: 65 / 2634
  12616. }
  12617. },
  12618. },
  12619. [
  12620. {
  12621. name: "Micro",
  12622. height: math.unit(6, "inches")
  12623. },
  12624. {
  12625. name: "Normal",
  12626. height: math.unit(6 + 2 / 12, "feet")
  12627. },
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(131, "feet"),
  12631. default: true
  12632. },
  12633. {
  12634. name: "Megamacro",
  12635. height: math.unit(15, "miles")
  12636. },
  12637. {
  12638. name: "Gigamacro",
  12639. height: math.unit(4000, "miles")
  12640. },
  12641. {
  12642. name: "Teramacro",
  12643. height: math.unit(315000, "miles")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12649. {
  12650. front: {
  12651. height: math.unit(2.794, "meters"),
  12652. weight: math.unit(325, "kg"),
  12653. name: "Front",
  12654. image: {
  12655. source: "./media/characters/tezwa/front.svg",
  12656. extra: 2083 / 1906,
  12657. bottom: 0.031
  12658. }
  12659. },
  12660. foot: {
  12661. height: math.unit(0.687, "meters"),
  12662. name: "Foot",
  12663. image: {
  12664. source: "./media/characters/tezwa/foot.svg"
  12665. }
  12666. },
  12667. },
  12668. [
  12669. {
  12670. name: "Normal",
  12671. height: math.unit(9 + 2 / 12, "feet"),
  12672. default: true
  12673. },
  12674. ]
  12675. ))
  12676. characterMakers.push(() => makeCharacter(
  12677. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12678. {
  12679. front: {
  12680. height: math.unit(58, "feet"),
  12681. weight: math.unit(89000, "lb"),
  12682. name: "Front",
  12683. image: {
  12684. source: "./media/characters/typhus/front.svg",
  12685. extra: 816 / 800,
  12686. bottom: 0.065
  12687. }
  12688. },
  12689. },
  12690. [
  12691. {
  12692. name: "Macro",
  12693. height: math.unit(58, "feet"),
  12694. default: true
  12695. },
  12696. ]
  12697. ))
  12698. characterMakers.push(() => makeCharacter(
  12699. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12700. {
  12701. front: {
  12702. height: math.unit(12, "feet"),
  12703. weight: math.unit(6, "tonnes"),
  12704. name: "Front",
  12705. image: {
  12706. source: "./media/characters/lyra-von-wulf/front.svg",
  12707. extra: 1,
  12708. bottom: 0.10
  12709. }
  12710. },
  12711. frontMecha: {
  12712. height: math.unit(12, "feet"),
  12713. weight: math.unit(12, "tonnes"),
  12714. name: "Front (Mecha)",
  12715. image: {
  12716. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12717. extra: 1,
  12718. bottom: 0.042
  12719. }
  12720. },
  12721. maw: {
  12722. height: math.unit(2.2, "feet"),
  12723. name: "Maw",
  12724. image: {
  12725. source: "./media/characters/lyra-von-wulf/maw.svg"
  12726. }
  12727. },
  12728. },
  12729. [
  12730. {
  12731. name: "Normal",
  12732. height: math.unit(12, "feet"),
  12733. default: true
  12734. },
  12735. {
  12736. name: "Classic",
  12737. height: math.unit(50, "feet")
  12738. },
  12739. {
  12740. name: "Macro",
  12741. height: math.unit(500, "feet")
  12742. },
  12743. {
  12744. name: "Megamacro",
  12745. height: math.unit(1, "mile")
  12746. },
  12747. {
  12748. name: "Gigamacro",
  12749. height: math.unit(400, "miles")
  12750. },
  12751. {
  12752. name: "Teramacro",
  12753. height: math.unit(22000, "miles")
  12754. },
  12755. {
  12756. name: "Solarmacro",
  12757. height: math.unit(8600000, "miles")
  12758. },
  12759. {
  12760. name: "Galactic",
  12761. height: math.unit(1057000, "lightyears")
  12762. },
  12763. ]
  12764. ))
  12765. characterMakers.push(() => makeCharacter(
  12766. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12767. {
  12768. front: {
  12769. height: math.unit(6 + 10 / 12, "feet"),
  12770. weight: math.unit(150, "lb"),
  12771. name: "Front",
  12772. image: {
  12773. source: "./media/characters/dixon/front.svg",
  12774. extra: 3361 / 3209,
  12775. bottom: 0.01
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Normal",
  12782. height: math.unit(6 + 10 / 12, "feet"),
  12783. default: true
  12784. },
  12785. {
  12786. name: "Big",
  12787. height: math.unit(12, "meters")
  12788. },
  12789. {
  12790. name: "Macro",
  12791. height: math.unit(500, "meters")
  12792. },
  12793. {
  12794. name: "Megamacro",
  12795. height: math.unit(2, "km")
  12796. },
  12797. ]
  12798. ))
  12799. characterMakers.push(() => makeCharacter(
  12800. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12801. {
  12802. front: {
  12803. height: math.unit(185, "cm"),
  12804. weight: math.unit(68, "kg"),
  12805. name: "Front",
  12806. image: {
  12807. source: "./media/characters/kauko/front.svg",
  12808. extra: 1455 / 1421,
  12809. bottom: 0.03
  12810. }
  12811. },
  12812. back: {
  12813. height: math.unit(185, "cm"),
  12814. weight: math.unit(68, "kg"),
  12815. name: "Back",
  12816. image: {
  12817. source: "./media/characters/kauko/back.svg",
  12818. extra: 1455 / 1421,
  12819. bottom: 0.004
  12820. }
  12821. },
  12822. },
  12823. [
  12824. {
  12825. name: "Normal",
  12826. height: math.unit(185, "cm"),
  12827. default: true
  12828. },
  12829. ]
  12830. ))
  12831. characterMakers.push(() => makeCharacter(
  12832. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12833. {
  12834. front: {
  12835. height: math.unit(6, "feet"),
  12836. weight: math.unit(150, "kg"),
  12837. name: "Front",
  12838. image: {
  12839. source: "./media/characters/varg/front.svg",
  12840. extra: 1108 / 1018,
  12841. bottom: 0.0375
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Normal",
  12848. height: math.unit(5, "meters")
  12849. },
  12850. {
  12851. name: "Macro",
  12852. height: math.unit(200, "meters")
  12853. },
  12854. {
  12855. name: "Megamacro",
  12856. height: math.unit(20, "kilometers")
  12857. },
  12858. {
  12859. name: "True Size",
  12860. height: math.unit(211, "km"),
  12861. default: true
  12862. },
  12863. {
  12864. name: "Gigamacro",
  12865. height: math.unit(1000, "km")
  12866. },
  12867. {
  12868. name: "Gigamacro+",
  12869. height: math.unit(8000, "km")
  12870. },
  12871. {
  12872. name: "Teramacro",
  12873. height: math.unit(1000000, "km")
  12874. },
  12875. ]
  12876. ))
  12877. characterMakers.push(() => makeCharacter(
  12878. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12879. {
  12880. front: {
  12881. height: math.unit(7 + 7 / 12, "feet"),
  12882. weight: math.unit(267, "lb"),
  12883. name: "Front",
  12884. image: {
  12885. source: "./media/characters/dayza/front.svg",
  12886. extra: 1262 / 1200,
  12887. bottom: 0.035
  12888. }
  12889. },
  12890. side: {
  12891. height: math.unit(7 + 7 / 12, "feet"),
  12892. weight: math.unit(267, "lb"),
  12893. name: "Side",
  12894. image: {
  12895. source: "./media/characters/dayza/side.svg",
  12896. extra: 1295 / 1245,
  12897. bottom: 0.05
  12898. }
  12899. },
  12900. back: {
  12901. height: math.unit(7 + 7 / 12, "feet"),
  12902. weight: math.unit(267, "lb"),
  12903. name: "Back",
  12904. image: {
  12905. source: "./media/characters/dayza/back.svg",
  12906. extra: 1241 / 1170
  12907. }
  12908. },
  12909. },
  12910. [
  12911. {
  12912. name: "Normal",
  12913. height: math.unit(7 + 7 / 12, "feet"),
  12914. default: true
  12915. },
  12916. {
  12917. name: "Macro",
  12918. height: math.unit(155, "feet")
  12919. },
  12920. ]
  12921. ))
  12922. characterMakers.push(() => makeCharacter(
  12923. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12924. {
  12925. front: {
  12926. height: math.unit(6 + 5 / 12, "feet"),
  12927. weight: math.unit(160, "lb"),
  12928. name: "Front",
  12929. image: {
  12930. source: "./media/characters/xanthos/front.svg",
  12931. extra: 1,
  12932. bottom: 0.04
  12933. }
  12934. },
  12935. back: {
  12936. height: math.unit(6 + 5 / 12, "feet"),
  12937. weight: math.unit(160, "lb"),
  12938. name: "Back",
  12939. image: {
  12940. source: "./media/characters/xanthos/back.svg",
  12941. extra: 1,
  12942. bottom: 0.03
  12943. }
  12944. },
  12945. hand: {
  12946. height: math.unit(0.928, "feet"),
  12947. name: "Hand",
  12948. image: {
  12949. source: "./media/characters/xanthos/hand.svg"
  12950. }
  12951. },
  12952. foot: {
  12953. height: math.unit(1.286, "feet"),
  12954. name: "Foot",
  12955. image: {
  12956. source: "./media/characters/xanthos/foot.svg"
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Normal",
  12963. height: math.unit(6 + 5 / 12, "feet"),
  12964. default: true
  12965. },
  12966. {
  12967. name: "Normal+",
  12968. height: math.unit(6, "meters")
  12969. },
  12970. {
  12971. name: "Macro",
  12972. height: math.unit(40, "feet")
  12973. },
  12974. {
  12975. name: "Macro+",
  12976. height: math.unit(200, "meters")
  12977. },
  12978. {
  12979. name: "Megamacro",
  12980. height: math.unit(20, "km")
  12981. },
  12982. {
  12983. name: "Megamacro+",
  12984. height: math.unit(100, "km")
  12985. },
  12986. {
  12987. name: "Gigamacro",
  12988. height: math.unit(200, "megameters")
  12989. },
  12990. {
  12991. name: "Gigamacro+",
  12992. height: math.unit(1.5, "gigameters")
  12993. },
  12994. ]
  12995. ))
  12996. characterMakers.push(() => makeCharacter(
  12997. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12998. {
  12999. front: {
  13000. height: math.unit(6 + 3 / 12, "feet"),
  13001. weight: math.unit(215, "lb"),
  13002. name: "Front",
  13003. image: {
  13004. source: "./media/characters/grynn/front.svg",
  13005. extra: 4627 / 4209,
  13006. bottom: 0.047
  13007. }
  13008. },
  13009. },
  13010. [
  13011. {
  13012. name: "Micro",
  13013. height: math.unit(6, "inches")
  13014. },
  13015. {
  13016. name: "Normal",
  13017. height: math.unit(6 + 3 / 12, "feet"),
  13018. default: true
  13019. },
  13020. {
  13021. name: "Big",
  13022. height: math.unit(104, "feet")
  13023. },
  13024. {
  13025. name: "Macro",
  13026. height: math.unit(944, "feet")
  13027. },
  13028. {
  13029. name: "Macro+",
  13030. height: math.unit(9480, "feet")
  13031. },
  13032. {
  13033. name: "Megamacro",
  13034. height: math.unit(78752, "feet")
  13035. },
  13036. {
  13037. name: "Megamacro+",
  13038. height: math.unit(630128, "feet")
  13039. },
  13040. {
  13041. name: "Megamacro++",
  13042. height: math.unit(3150695, "feet")
  13043. },
  13044. ]
  13045. ))
  13046. characterMakers.push(() => makeCharacter(
  13047. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13048. {
  13049. front: {
  13050. height: math.unit(7 + 5 / 12, "feet"),
  13051. weight: math.unit(450, "lb"),
  13052. name: "Front",
  13053. image: {
  13054. source: "./media/characters/mocha-aura/front.svg",
  13055. extra: 1907 / 1817,
  13056. bottom: 0.04
  13057. }
  13058. },
  13059. back: {
  13060. height: math.unit(7 + 5 / 12, "feet"),
  13061. weight: math.unit(450, "lb"),
  13062. name: "Back",
  13063. image: {
  13064. source: "./media/characters/mocha-aura/back.svg",
  13065. extra: 1900 / 1825,
  13066. bottom: 0.045
  13067. }
  13068. },
  13069. },
  13070. [
  13071. {
  13072. name: "Nano",
  13073. height: math.unit(1, "nm")
  13074. },
  13075. {
  13076. name: "Megamicro",
  13077. height: math.unit(1, "mm")
  13078. },
  13079. {
  13080. name: "Micro",
  13081. height: math.unit(3, "inches")
  13082. },
  13083. {
  13084. name: "Normal",
  13085. height: math.unit(7 + 5 / 12, "feet"),
  13086. default: true
  13087. },
  13088. {
  13089. name: "Macro",
  13090. height: math.unit(30, "feet")
  13091. },
  13092. {
  13093. name: "Megamacro",
  13094. height: math.unit(3500, "feet")
  13095. },
  13096. {
  13097. name: "Teramacro",
  13098. height: math.unit(500000, "miles")
  13099. },
  13100. {
  13101. name: "Petamacro",
  13102. height: math.unit(50000000000000000, "parsecs")
  13103. },
  13104. ]
  13105. ))
  13106. characterMakers.push(() => makeCharacter(
  13107. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13108. {
  13109. front: {
  13110. height: math.unit(6, "feet"),
  13111. weight: math.unit(150, "lb"),
  13112. name: "Front",
  13113. image: {
  13114. source: "./media/characters/ilisha-devya/front.svg",
  13115. extra: 1053/1049,
  13116. bottom: 270/1323
  13117. }
  13118. },
  13119. back: {
  13120. height: math.unit(6, "feet"),
  13121. weight: math.unit(150, "lb"),
  13122. name: "Back",
  13123. image: {
  13124. source: "./media/characters/ilisha-devya/back.svg",
  13125. extra: 1131/1128,
  13126. bottom: 39/1170
  13127. }
  13128. },
  13129. },
  13130. [
  13131. {
  13132. name: "Macro",
  13133. height: math.unit(500, "feet"),
  13134. default: true
  13135. },
  13136. {
  13137. name: "Megamacro",
  13138. height: math.unit(10, "miles")
  13139. },
  13140. {
  13141. name: "Gigamacro",
  13142. height: math.unit(100000, "miles")
  13143. },
  13144. {
  13145. name: "Examacro",
  13146. height: math.unit(1e9, "lightyears")
  13147. },
  13148. {
  13149. name: "Omniversal",
  13150. height: math.unit(1e33, "lightyears")
  13151. },
  13152. {
  13153. name: "Beyond Infinite",
  13154. height: math.unit(1e100, "lightyears")
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13160. {
  13161. Side: {
  13162. height: math.unit(6, "feet"),
  13163. weight: math.unit(150, "lb"),
  13164. name: "Side",
  13165. image: {
  13166. source: "./media/characters/mira/side.svg",
  13167. extra: 900 / 799,
  13168. bottom: 0.02
  13169. }
  13170. },
  13171. },
  13172. [
  13173. {
  13174. name: "Human Size",
  13175. height: math.unit(6, "feet")
  13176. },
  13177. {
  13178. name: "Macro",
  13179. height: math.unit(100, "feet"),
  13180. default: true
  13181. },
  13182. {
  13183. name: "Megamacro",
  13184. height: math.unit(10, "miles")
  13185. },
  13186. {
  13187. name: "Gigamacro",
  13188. height: math.unit(25000, "miles")
  13189. },
  13190. {
  13191. name: "Teramacro",
  13192. height: math.unit(300, "AU")
  13193. },
  13194. {
  13195. name: "Full Size",
  13196. height: math.unit(4.5e10, "lightyears")
  13197. },
  13198. ]
  13199. ))
  13200. characterMakers.push(() => makeCharacter(
  13201. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13202. {
  13203. front: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(150, "lb"),
  13206. name: "Front",
  13207. image: {
  13208. source: "./media/characters/holly/front.svg",
  13209. extra: 639 / 606
  13210. }
  13211. },
  13212. back: {
  13213. height: math.unit(6, "feet"),
  13214. weight: math.unit(150, "lb"),
  13215. name: "Back",
  13216. image: {
  13217. source: "./media/characters/holly/back.svg",
  13218. extra: 623 / 598
  13219. }
  13220. },
  13221. frontWorking: {
  13222. height: math.unit(6, "feet"),
  13223. weight: math.unit(150, "lb"),
  13224. name: "Front (Working)",
  13225. image: {
  13226. source: "./media/characters/holly/front-working.svg",
  13227. extra: 607 / 577,
  13228. bottom: 0.048
  13229. }
  13230. },
  13231. },
  13232. [
  13233. {
  13234. name: "Normal",
  13235. height: math.unit(12 + 3 / 12, "feet"),
  13236. default: true
  13237. },
  13238. ]
  13239. ))
  13240. characterMakers.push(() => makeCharacter(
  13241. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13242. {
  13243. front: {
  13244. height: math.unit(6, "feet"),
  13245. weight: math.unit(150, "lb"),
  13246. name: "Front",
  13247. image: {
  13248. source: "./media/characters/porter/front.svg",
  13249. extra: 1,
  13250. bottom: 0.01
  13251. }
  13252. },
  13253. frontRobes: {
  13254. height: math.unit(6, "feet"),
  13255. weight: math.unit(150, "lb"),
  13256. name: "Front (Robes)",
  13257. image: {
  13258. source: "./media/characters/porter/front-robes.svg",
  13259. extra: 1.01,
  13260. bottom: 0.01
  13261. }
  13262. },
  13263. },
  13264. [
  13265. {
  13266. name: "Normal",
  13267. height: math.unit(11 + 9 / 12, "feet"),
  13268. default: true
  13269. },
  13270. ]
  13271. ))
  13272. characterMakers.push(() => makeCharacter(
  13273. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13274. {
  13275. legendary: {
  13276. height: math.unit(6, "feet"),
  13277. weight: math.unit(150, "lb"),
  13278. name: "Legendary",
  13279. image: {
  13280. source: "./media/characters/lucy/legendary.svg",
  13281. extra: 1355 / 1100,
  13282. bottom: 0.045
  13283. }
  13284. },
  13285. },
  13286. [
  13287. {
  13288. name: "Legendary",
  13289. height: math.unit(86882 * 2, "miles"),
  13290. default: true
  13291. },
  13292. ]
  13293. ))
  13294. characterMakers.push(() => makeCharacter(
  13295. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13296. {
  13297. front: {
  13298. height: math.unit(6, "feet"),
  13299. weight: math.unit(150, "lb"),
  13300. name: "Front",
  13301. image: {
  13302. source: "./media/characters/drusilla/front.svg",
  13303. extra: 678 / 635,
  13304. bottom: 0.03
  13305. }
  13306. },
  13307. back: {
  13308. height: math.unit(6, "feet"),
  13309. weight: math.unit(150, "lb"),
  13310. name: "Back",
  13311. image: {
  13312. source: "./media/characters/drusilla/back.svg",
  13313. extra: 678 / 635,
  13314. bottom: 0.005
  13315. }
  13316. },
  13317. },
  13318. [
  13319. {
  13320. name: "Macro",
  13321. height: math.unit(100, "feet")
  13322. },
  13323. {
  13324. name: "Canon Height",
  13325. height: math.unit(2000, "feet"),
  13326. default: true
  13327. },
  13328. ]
  13329. ))
  13330. characterMakers.push(() => makeCharacter(
  13331. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13332. {
  13333. front: {
  13334. height: math.unit(6, "feet"),
  13335. weight: math.unit(180, "lb"),
  13336. name: "Front",
  13337. image: {
  13338. source: "./media/characters/renard-thatch/front.svg",
  13339. extra: 2411 / 2275,
  13340. bottom: 0.01
  13341. }
  13342. },
  13343. frontPosing: {
  13344. height: math.unit(6, "feet"),
  13345. weight: math.unit(180, "lb"),
  13346. name: "Front (Posing)",
  13347. image: {
  13348. source: "./media/characters/renard-thatch/front-posing.svg",
  13349. extra: 2381 / 2261,
  13350. bottom: 0.01
  13351. }
  13352. },
  13353. back: {
  13354. height: math.unit(6, "feet"),
  13355. weight: math.unit(180, "lb"),
  13356. name: "Back",
  13357. image: {
  13358. source: "./media/characters/renard-thatch/back.svg",
  13359. extra: 2428 / 2288
  13360. }
  13361. },
  13362. },
  13363. [
  13364. {
  13365. name: "Micro",
  13366. height: math.unit(3, "inches")
  13367. },
  13368. {
  13369. name: "Default",
  13370. height: math.unit(6, "feet"),
  13371. default: true
  13372. },
  13373. {
  13374. name: "Macro",
  13375. height: math.unit(75, "feet")
  13376. },
  13377. ]
  13378. ))
  13379. characterMakers.push(() => makeCharacter(
  13380. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13381. {
  13382. front: {
  13383. height: math.unit(1450, "feet"),
  13384. weight: math.unit(1.21e6, "tons"),
  13385. name: "Front",
  13386. image: {
  13387. source: "./media/characters/sekvra/front.svg",
  13388. extra: 1193/1190,
  13389. bottom: 78/1271
  13390. }
  13391. },
  13392. side: {
  13393. height: math.unit(1450, "feet"),
  13394. weight: math.unit(1.21e6, "tons"),
  13395. name: "Side",
  13396. image: {
  13397. source: "./media/characters/sekvra/side.svg",
  13398. extra: 1193/1190,
  13399. bottom: 52/1245
  13400. }
  13401. },
  13402. back: {
  13403. height: math.unit(1450, "feet"),
  13404. weight: math.unit(1.21e6, "tons"),
  13405. name: "Back",
  13406. image: {
  13407. source: "./media/characters/sekvra/back.svg",
  13408. extra: 1219/1216,
  13409. bottom: 21/1240
  13410. }
  13411. },
  13412. frontClothed: {
  13413. height: math.unit(1450, "feet"),
  13414. weight: math.unit(1.21e6, "tons"),
  13415. name: "Front (Clothed)",
  13416. image: {
  13417. source: "./media/characters/sekvra/front-clothed.svg",
  13418. extra: 1192/1189,
  13419. bottom: 79/1271
  13420. }
  13421. },
  13422. },
  13423. [
  13424. {
  13425. name: "Macro",
  13426. height: math.unit(1450, "feet"),
  13427. default: true
  13428. },
  13429. {
  13430. name: "Megamacro",
  13431. height: math.unit(15000, "feet")
  13432. },
  13433. ]
  13434. ))
  13435. characterMakers.push(() => makeCharacter(
  13436. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13437. {
  13438. front: {
  13439. height: math.unit(6, "feet"),
  13440. weight: math.unit(150, "lb"),
  13441. name: "Front",
  13442. image: {
  13443. source: "./media/characters/carmine/front.svg",
  13444. extra: 1,
  13445. bottom: 0.035
  13446. }
  13447. },
  13448. frontArmor: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(150, "lb"),
  13451. name: "Front (Armor)",
  13452. image: {
  13453. source: "./media/characters/carmine/front-armor.svg",
  13454. extra: 1,
  13455. bottom: 0.035
  13456. }
  13457. },
  13458. },
  13459. [
  13460. {
  13461. name: "Large",
  13462. height: math.unit(1, "mile")
  13463. },
  13464. {
  13465. name: "Huge",
  13466. height: math.unit(40, "miles"),
  13467. default: true
  13468. },
  13469. {
  13470. name: "Colossal",
  13471. height: math.unit(2500, "miles")
  13472. },
  13473. ]
  13474. ))
  13475. characterMakers.push(() => makeCharacter(
  13476. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13477. {
  13478. front: {
  13479. height: math.unit(6, "feet"),
  13480. weight: math.unit(150, "lb"),
  13481. name: "Front",
  13482. image: {
  13483. source: "./media/characters/elyssia/front.svg",
  13484. extra: 2201 / 2035,
  13485. bottom: 0.05
  13486. }
  13487. },
  13488. frontClothed: {
  13489. height: math.unit(6, "feet"),
  13490. weight: math.unit(150, "lb"),
  13491. name: "Front (Clothed)",
  13492. image: {
  13493. source: "./media/characters/elyssia/front-clothed.svg",
  13494. extra: 2201 / 2035,
  13495. bottom: 0.05
  13496. }
  13497. },
  13498. back: {
  13499. height: math.unit(6, "feet"),
  13500. weight: math.unit(150, "lb"),
  13501. name: "Back",
  13502. image: {
  13503. source: "./media/characters/elyssia/back.svg",
  13504. extra: 2201 / 2035,
  13505. bottom: 0.013
  13506. }
  13507. },
  13508. },
  13509. [
  13510. {
  13511. name: "Smaller",
  13512. height: math.unit(150, "feet")
  13513. },
  13514. {
  13515. name: "Standard",
  13516. height: math.unit(1400, "feet"),
  13517. default: true
  13518. },
  13519. {
  13520. name: "Distracted",
  13521. height: math.unit(15000, "feet")
  13522. },
  13523. ]
  13524. ))
  13525. characterMakers.push(() => makeCharacter(
  13526. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13527. {
  13528. front: {
  13529. height: math.unit(7 + 4/12, "feet"),
  13530. weight: math.unit(690, "lb"),
  13531. name: "Front",
  13532. image: {
  13533. source: "./media/characters/geno-maxwell/front.svg",
  13534. extra: 984/856,
  13535. bottom: 87/1071
  13536. }
  13537. },
  13538. back: {
  13539. height: math.unit(7 + 4/12, "feet"),
  13540. weight: math.unit(690, "lb"),
  13541. name: "Back",
  13542. image: {
  13543. source: "./media/characters/geno-maxwell/back.svg",
  13544. extra: 981/854,
  13545. bottom: 57/1038
  13546. }
  13547. },
  13548. frontCostume: {
  13549. height: math.unit(7 + 4/12, "feet"),
  13550. weight: math.unit(690, "lb"),
  13551. name: "Front (Costume)",
  13552. image: {
  13553. source: "./media/characters/geno-maxwell/front-costume.svg",
  13554. extra: 984/856,
  13555. bottom: 87/1071
  13556. }
  13557. },
  13558. backcostume: {
  13559. height: math.unit(7 + 4/12, "feet"),
  13560. weight: math.unit(690, "lb"),
  13561. name: "Back (Costume)",
  13562. image: {
  13563. source: "./media/characters/geno-maxwell/back-costume.svg",
  13564. extra: 981/854,
  13565. bottom: 57/1038
  13566. }
  13567. },
  13568. },
  13569. [
  13570. {
  13571. name: "Micro",
  13572. height: math.unit(3, "inches")
  13573. },
  13574. {
  13575. name: "Normal",
  13576. height: math.unit(7 + 4 / 12, "feet"),
  13577. default: true
  13578. },
  13579. {
  13580. name: "Macro",
  13581. height: math.unit(220, "feet")
  13582. },
  13583. {
  13584. name: "Megamacro",
  13585. height: math.unit(11, "miles")
  13586. },
  13587. ]
  13588. ))
  13589. characterMakers.push(() => makeCharacter(
  13590. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13591. {
  13592. front: {
  13593. height: math.unit(7 + 4/12, "feet"),
  13594. weight: math.unit(750, "lb"),
  13595. name: "Front",
  13596. image: {
  13597. source: "./media/characters/regena-maxwell/front.svg",
  13598. extra: 984/856,
  13599. bottom: 87/1071
  13600. }
  13601. },
  13602. back: {
  13603. height: math.unit(7 + 4/12, "feet"),
  13604. weight: math.unit(750, "lb"),
  13605. name: "Back",
  13606. image: {
  13607. source: "./media/characters/regena-maxwell/back.svg",
  13608. extra: 981/854,
  13609. bottom: 57/1038
  13610. }
  13611. },
  13612. frontCostume: {
  13613. height: math.unit(7 + 4/12, "feet"),
  13614. weight: math.unit(750, "lb"),
  13615. name: "Front (Costume)",
  13616. image: {
  13617. source: "./media/characters/regena-maxwell/front-costume.svg",
  13618. extra: 984/856,
  13619. bottom: 87/1071
  13620. }
  13621. },
  13622. backcostume: {
  13623. height: math.unit(7 + 4/12, "feet"),
  13624. weight: math.unit(750, "lb"),
  13625. name: "Back (Costume)",
  13626. image: {
  13627. source: "./media/characters/regena-maxwell/back-costume.svg",
  13628. extra: 981/854,
  13629. bottom: 57/1038
  13630. }
  13631. },
  13632. },
  13633. [
  13634. {
  13635. name: "Normal",
  13636. height: math.unit(7 + 4 / 12, "feet"),
  13637. default: true
  13638. },
  13639. {
  13640. name: "Macro",
  13641. height: math.unit(220, "feet")
  13642. },
  13643. {
  13644. name: "Megamacro",
  13645. height: math.unit(11, "miles")
  13646. },
  13647. ]
  13648. ))
  13649. characterMakers.push(() => makeCharacter(
  13650. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13651. {
  13652. front: {
  13653. height: math.unit(6, "feet"),
  13654. weight: math.unit(150, "lb"),
  13655. name: "Front",
  13656. image: {
  13657. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13658. extra: 860 / 690,
  13659. bottom: 0.03
  13660. }
  13661. },
  13662. },
  13663. [
  13664. {
  13665. name: "Normal",
  13666. height: math.unit(1.7, "meters"),
  13667. default: true
  13668. },
  13669. ]
  13670. ))
  13671. characterMakers.push(() => makeCharacter(
  13672. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13673. {
  13674. front: {
  13675. height: math.unit(6, "feet"),
  13676. weight: math.unit(150, "lb"),
  13677. name: "Front",
  13678. image: {
  13679. source: "./media/characters/quilly/front.svg",
  13680. extra: 890 / 776
  13681. }
  13682. },
  13683. },
  13684. [
  13685. {
  13686. name: "Gigamacro",
  13687. height: math.unit(404090, "miles"),
  13688. default: true
  13689. },
  13690. ]
  13691. ))
  13692. characterMakers.push(() => makeCharacter(
  13693. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13694. {
  13695. front: {
  13696. height: math.unit(7 + 8 / 12, "feet"),
  13697. weight: math.unit(350, "lb"),
  13698. name: "Front",
  13699. image: {
  13700. source: "./media/characters/tempest/front.svg",
  13701. extra: 1175 / 1086,
  13702. bottom: 0.02
  13703. }
  13704. },
  13705. },
  13706. [
  13707. {
  13708. name: "Normal",
  13709. height: math.unit(7 + 8 / 12, "feet"),
  13710. default: true
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13716. {
  13717. side: {
  13718. height: math.unit(4 + 5 / 12, "feet"),
  13719. weight: math.unit(80, "lb"),
  13720. name: "Side",
  13721. image: {
  13722. source: "./media/characters/rodger/side.svg",
  13723. extra: 1235 / 1118
  13724. }
  13725. },
  13726. },
  13727. [
  13728. {
  13729. name: "Micro",
  13730. height: math.unit(1, "inch")
  13731. },
  13732. {
  13733. name: "Normal",
  13734. height: math.unit(4 + 5 / 12, "feet"),
  13735. default: true
  13736. },
  13737. {
  13738. name: "Macro",
  13739. height: math.unit(120, "feet")
  13740. },
  13741. ]
  13742. ))
  13743. characterMakers.push(() => makeCharacter(
  13744. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13745. {
  13746. front: {
  13747. height: math.unit(6, "feet"),
  13748. weight: math.unit(150, "lb"),
  13749. name: "Front",
  13750. image: {
  13751. source: "./media/characters/danyel/front.svg",
  13752. extra: 1185 / 1123,
  13753. bottom: 0.05
  13754. }
  13755. },
  13756. },
  13757. [
  13758. {
  13759. name: "Shrunken",
  13760. height: math.unit(0.5, "mm")
  13761. },
  13762. {
  13763. name: "Micro",
  13764. height: math.unit(1, "mm"),
  13765. default: true
  13766. },
  13767. {
  13768. name: "Upsized",
  13769. height: math.unit(5 + 5 / 12, "feet")
  13770. },
  13771. ]
  13772. ))
  13773. characterMakers.push(() => makeCharacter(
  13774. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13775. {
  13776. front: {
  13777. height: math.unit(5 + 6 / 12, "feet"),
  13778. weight: math.unit(200, "lb"),
  13779. name: "Front",
  13780. image: {
  13781. source: "./media/characters/vivian-bijoux/front.svg",
  13782. extra: 1217/1209,
  13783. bottom: 76/1293
  13784. }
  13785. },
  13786. back: {
  13787. height: math.unit(5 + 6 / 12, "feet"),
  13788. weight: math.unit(200, "lb"),
  13789. name: "Back",
  13790. image: {
  13791. source: "./media/characters/vivian-bijoux/back.svg",
  13792. extra: 1214/1208,
  13793. bottom: 51/1265
  13794. }
  13795. },
  13796. dressed: {
  13797. height: math.unit(5 + 6 / 12, "feet"),
  13798. weight: math.unit(200, "lb"),
  13799. name: "Dressed",
  13800. image: {
  13801. source: "./media/characters/vivian-bijoux/dressed.svg",
  13802. extra: 1217/1209,
  13803. bottom: 76/1293
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Normal",
  13810. height: math.unit(5 + 6 / 12, "feet"),
  13811. default: true
  13812. },
  13813. {
  13814. name: "Bad Dream",
  13815. height: math.unit(500, "feet")
  13816. },
  13817. {
  13818. name: "Nightmare",
  13819. height: math.unit(500, "miles")
  13820. },
  13821. ]
  13822. ))
  13823. characterMakers.push(() => makeCharacter(
  13824. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13825. {
  13826. front: {
  13827. height: math.unit(6 + 1 / 12, "feet"),
  13828. weight: math.unit(260, "lb"),
  13829. name: "Front",
  13830. image: {
  13831. source: "./media/characters/zeta/front.svg",
  13832. extra: 1968 / 1889,
  13833. bottom: 0.06
  13834. }
  13835. },
  13836. back: {
  13837. height: math.unit(6 + 1 / 12, "feet"),
  13838. weight: math.unit(260, "lb"),
  13839. name: "Back",
  13840. image: {
  13841. source: "./media/characters/zeta/back.svg",
  13842. extra: 1944 / 1858,
  13843. bottom: 0.03
  13844. }
  13845. },
  13846. hand: {
  13847. height: math.unit(1.112, "feet"),
  13848. name: "Hand",
  13849. image: {
  13850. source: "./media/characters/zeta/hand.svg"
  13851. }
  13852. },
  13853. foot: {
  13854. height: math.unit(1.48, "feet"),
  13855. name: "Foot",
  13856. image: {
  13857. source: "./media/characters/zeta/foot.svg"
  13858. }
  13859. },
  13860. },
  13861. [
  13862. {
  13863. name: "Micro",
  13864. height: math.unit(6, "inches")
  13865. },
  13866. {
  13867. name: "Normal",
  13868. height: math.unit(6 + 1 / 12, "feet"),
  13869. default: true
  13870. },
  13871. {
  13872. name: "Macro",
  13873. height: math.unit(20, "feet")
  13874. },
  13875. ]
  13876. ))
  13877. characterMakers.push(() => makeCharacter(
  13878. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13879. {
  13880. front: {
  13881. height: math.unit(6, "feet"),
  13882. weight: math.unit(150, "lb"),
  13883. name: "Front",
  13884. image: {
  13885. source: "./media/characters/jamie-larsen/front.svg",
  13886. extra: 962 / 933,
  13887. bottom: 0.02
  13888. }
  13889. },
  13890. back: {
  13891. height: math.unit(6, "feet"),
  13892. weight: math.unit(150, "lb"),
  13893. name: "Back",
  13894. image: {
  13895. source: "./media/characters/jamie-larsen/back.svg",
  13896. extra: 997 / 946
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Macro",
  13903. height: math.unit(28 + 7 / 12, "feet"),
  13904. default: true
  13905. },
  13906. {
  13907. name: "Macro+",
  13908. height: math.unit(180, "feet")
  13909. },
  13910. {
  13911. name: "Megamacro",
  13912. height: math.unit(10, "miles")
  13913. },
  13914. {
  13915. name: "Gigamacro",
  13916. height: math.unit(200000, "miles")
  13917. },
  13918. ]
  13919. ))
  13920. characterMakers.push(() => makeCharacter(
  13921. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13922. {
  13923. front: {
  13924. height: math.unit(6, "feet"),
  13925. weight: math.unit(120, "lb"),
  13926. name: "Front",
  13927. image: {
  13928. source: "./media/characters/vance/front.svg",
  13929. extra: 1980 / 1890,
  13930. bottom: 0.09
  13931. }
  13932. },
  13933. back: {
  13934. height: math.unit(6, "feet"),
  13935. weight: math.unit(120, "lb"),
  13936. name: "Back",
  13937. image: {
  13938. source: "./media/characters/vance/back.svg",
  13939. extra: 2081 / 1994,
  13940. bottom: 0.014
  13941. }
  13942. },
  13943. hand: {
  13944. height: math.unit(0.88, "feet"),
  13945. name: "Hand",
  13946. image: {
  13947. source: "./media/characters/vance/hand.svg"
  13948. }
  13949. },
  13950. foot: {
  13951. height: math.unit(0.64, "feet"),
  13952. name: "Foot",
  13953. image: {
  13954. source: "./media/characters/vance/foot.svg"
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Small",
  13961. height: math.unit(90, "feet"),
  13962. default: true
  13963. },
  13964. {
  13965. name: "Macro",
  13966. height: math.unit(100, "meters")
  13967. },
  13968. {
  13969. name: "Megamacro",
  13970. height: math.unit(15, "miles")
  13971. },
  13972. ]
  13973. ))
  13974. characterMakers.push(() => makeCharacter(
  13975. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13976. {
  13977. front: {
  13978. height: math.unit(6, "feet"),
  13979. weight: math.unit(180, "lb"),
  13980. name: "Front",
  13981. image: {
  13982. source: "./media/characters/xochitl/front.svg",
  13983. extra: 2297 / 2261,
  13984. bottom: 0.065
  13985. }
  13986. },
  13987. back: {
  13988. height: math.unit(6, "feet"),
  13989. weight: math.unit(180, "lb"),
  13990. name: "Back",
  13991. image: {
  13992. source: "./media/characters/xochitl/back.svg",
  13993. extra: 2386 / 2354,
  13994. bottom: 0.01
  13995. }
  13996. },
  13997. foot: {
  13998. height: math.unit(6 / 5 * 1.15, "feet"),
  13999. weight: math.unit(150, "lb"),
  14000. name: "Foot",
  14001. image: {
  14002. source: "./media/characters/xochitl/foot.svg"
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Macro",
  14009. height: math.unit(80, "feet")
  14010. },
  14011. {
  14012. name: "Macro+",
  14013. height: math.unit(400, "feet"),
  14014. default: true
  14015. },
  14016. {
  14017. name: "Gigamacro",
  14018. height: math.unit(80000, "miles")
  14019. },
  14020. {
  14021. name: "Gigamacro+",
  14022. height: math.unit(400000, "miles")
  14023. },
  14024. {
  14025. name: "Teramacro",
  14026. height: math.unit(300, "AU")
  14027. },
  14028. ]
  14029. ))
  14030. characterMakers.push(() => makeCharacter(
  14031. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14032. {
  14033. front: {
  14034. height: math.unit(6, "feet"),
  14035. weight: math.unit(150, "lb"),
  14036. name: "Front",
  14037. image: {
  14038. source: "./media/characters/vincent/front.svg",
  14039. extra: 1130 / 1080,
  14040. bottom: 0.055
  14041. }
  14042. },
  14043. beak: {
  14044. height: math.unit(6 * 0.1, "feet"),
  14045. name: "Beak",
  14046. image: {
  14047. source: "./media/characters/vincent/beak.svg"
  14048. }
  14049. },
  14050. hand: {
  14051. height: math.unit(6 * 0.85, "feet"),
  14052. weight: math.unit(150, "lb"),
  14053. name: "Hand",
  14054. image: {
  14055. source: "./media/characters/vincent/hand.svg"
  14056. }
  14057. },
  14058. foot: {
  14059. height: math.unit(6 * 0.19, "feet"),
  14060. weight: math.unit(150, "lb"),
  14061. name: "Foot",
  14062. image: {
  14063. source: "./media/characters/vincent/foot.svg"
  14064. }
  14065. },
  14066. },
  14067. [
  14068. {
  14069. name: "Base",
  14070. height: math.unit(6 + 5 / 12, "feet"),
  14071. default: true
  14072. },
  14073. {
  14074. name: "Macro",
  14075. height: math.unit(300, "feet")
  14076. },
  14077. {
  14078. name: "Megamacro",
  14079. height: math.unit(2, "miles")
  14080. },
  14081. {
  14082. name: "Gigamacro",
  14083. height: math.unit(1000, "miles")
  14084. },
  14085. ]
  14086. ))
  14087. characterMakers.push(() => makeCharacter(
  14088. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14089. {
  14090. front: {
  14091. height: math.unit(2, "meters"),
  14092. weight: math.unit(500, "kg"),
  14093. name: "Front",
  14094. image: {
  14095. source: "./media/characters/coatl/front.svg",
  14096. extra: 3948 / 3500,
  14097. bottom: 0.082
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Normal",
  14104. height: math.unit(4, "meters")
  14105. },
  14106. {
  14107. name: "Macro",
  14108. height: math.unit(100, "meters"),
  14109. default: true
  14110. },
  14111. {
  14112. name: "Macro+",
  14113. height: math.unit(300, "meters")
  14114. },
  14115. {
  14116. name: "Megamacro",
  14117. height: math.unit(3, "gigameters")
  14118. },
  14119. {
  14120. name: "Megamacro+",
  14121. height: math.unit(300, "terameters")
  14122. },
  14123. {
  14124. name: "Megamacro++",
  14125. height: math.unit(3, "lightyears")
  14126. },
  14127. ]
  14128. ))
  14129. characterMakers.push(() => makeCharacter(
  14130. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14131. {
  14132. front: {
  14133. height: math.unit(6, "feet"),
  14134. weight: math.unit(50, "kg"),
  14135. name: "front",
  14136. image: {
  14137. source: "./media/characters/shiroryu/front.svg",
  14138. extra: 1990 / 1935
  14139. }
  14140. },
  14141. },
  14142. [
  14143. {
  14144. name: "Mortal Mingling",
  14145. height: math.unit(3, "meters")
  14146. },
  14147. {
  14148. name: "Kaiju-ish",
  14149. height: math.unit(250, "meters")
  14150. },
  14151. {
  14152. name: "Somewhat Godly",
  14153. height: math.unit(400, "km"),
  14154. default: true
  14155. },
  14156. {
  14157. name: "Planetary",
  14158. height: math.unit(300, "megameters")
  14159. },
  14160. {
  14161. name: "Galaxy-dwarfing",
  14162. height: math.unit(450, "kiloparsecs")
  14163. },
  14164. {
  14165. name: "Universe Eater",
  14166. height: math.unit(150, "gigaparsecs")
  14167. },
  14168. {
  14169. name: "Almost Immeasurable",
  14170. height: math.unit(1.3e266, "yottaparsecs")
  14171. },
  14172. ]
  14173. ))
  14174. characterMakers.push(() => makeCharacter(
  14175. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14176. {
  14177. front: {
  14178. height: math.unit(6, "feet"),
  14179. weight: math.unit(150, "lb"),
  14180. name: "Front",
  14181. image: {
  14182. source: "./media/characters/umeko/front.svg",
  14183. extra: 1,
  14184. bottom: 0.019
  14185. }
  14186. },
  14187. frontArmored: {
  14188. height: math.unit(6, "feet"),
  14189. weight: math.unit(150, "lb"),
  14190. name: "Front (Armored)",
  14191. image: {
  14192. source: "./media/characters/umeko/front-armored.svg",
  14193. extra: 1,
  14194. bottom: 0.021
  14195. }
  14196. },
  14197. },
  14198. [
  14199. {
  14200. name: "Macro",
  14201. height: math.unit(220, "feet"),
  14202. default: true
  14203. },
  14204. {
  14205. name: "Guardian Dragon",
  14206. height: math.unit(50, "miles")
  14207. },
  14208. {
  14209. name: "Cosmic",
  14210. height: math.unit(800000, "miles")
  14211. },
  14212. ]
  14213. ))
  14214. characterMakers.push(() => makeCharacter(
  14215. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14216. {
  14217. front: {
  14218. height: math.unit(6, "feet"),
  14219. weight: math.unit(150, "lb"),
  14220. name: "Front",
  14221. image: {
  14222. source: "./media/characters/cassidy/front.svg",
  14223. extra: 810/808,
  14224. bottom: 41/851
  14225. }
  14226. },
  14227. },
  14228. [
  14229. {
  14230. name: "Canon Height",
  14231. height: math.unit(120, "feet"),
  14232. default: true
  14233. },
  14234. {
  14235. name: "Macro+",
  14236. height: math.unit(400, "feet")
  14237. },
  14238. {
  14239. name: "Macro++",
  14240. height: math.unit(4000, "feet")
  14241. },
  14242. {
  14243. name: "Megamacro",
  14244. height: math.unit(3, "miles")
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14250. {
  14251. front: {
  14252. height: math.unit(6, "feet"),
  14253. weight: math.unit(150, "lb"),
  14254. name: "Front",
  14255. image: {
  14256. source: "./media/characters/isaac/front.svg",
  14257. extra: 896 / 815,
  14258. bottom: 0.11
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Human Size",
  14265. height: math.unit(8, "feet"),
  14266. default: true
  14267. },
  14268. {
  14269. name: "Macro",
  14270. height: math.unit(400, "feet")
  14271. },
  14272. {
  14273. name: "Megamacro",
  14274. height: math.unit(50, "miles")
  14275. },
  14276. {
  14277. name: "Canon Height",
  14278. height: math.unit(200, "AU")
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14284. {
  14285. front: {
  14286. height: math.unit(6, "feet"),
  14287. weight: math.unit(72, "kg"),
  14288. name: "Front",
  14289. image: {
  14290. source: "./media/characters/sleekit/front.svg",
  14291. extra: 4693 / 4487,
  14292. bottom: 0.012
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Minimum Height",
  14299. height: math.unit(10, "meters")
  14300. },
  14301. {
  14302. name: "Smaller",
  14303. height: math.unit(25, "meters")
  14304. },
  14305. {
  14306. name: "Larger",
  14307. height: math.unit(38, "meters"),
  14308. default: true
  14309. },
  14310. {
  14311. name: "Maximum height",
  14312. height: math.unit(100, "meters")
  14313. },
  14314. ]
  14315. ))
  14316. characterMakers.push(() => makeCharacter(
  14317. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14318. {
  14319. front: {
  14320. height: math.unit(6, "feet"),
  14321. weight: math.unit(150, "lb"),
  14322. name: "Front",
  14323. image: {
  14324. source: "./media/characters/nillia/front.svg",
  14325. extra: 2195 / 2037,
  14326. bottom: 0.005
  14327. }
  14328. },
  14329. back: {
  14330. height: math.unit(6, "feet"),
  14331. weight: math.unit(150, "lb"),
  14332. name: "Back",
  14333. image: {
  14334. source: "./media/characters/nillia/back.svg",
  14335. extra: 2195 / 2037,
  14336. bottom: 0.005
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Canon Height",
  14343. height: math.unit(489, "feet"),
  14344. default: true
  14345. }
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(6, "feet"),
  14353. weight: math.unit(150, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/mesmyriza/front.svg",
  14357. extra: 2067 / 1784,
  14358. bottom: 0.035
  14359. }
  14360. },
  14361. foot: {
  14362. height: math.unit(6 / (250 / 35), "feet"),
  14363. name: "Foot",
  14364. image: {
  14365. source: "./media/characters/mesmyriza/foot.svg"
  14366. }
  14367. },
  14368. },
  14369. [
  14370. {
  14371. name: "Macro",
  14372. height: math.unit(457, "meters"),
  14373. default: true
  14374. },
  14375. {
  14376. name: "Megamacro",
  14377. height: math.unit(8, "megameters")
  14378. },
  14379. ]
  14380. ))
  14381. characterMakers.push(() => makeCharacter(
  14382. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14383. {
  14384. front: {
  14385. height: math.unit(6, "feet"),
  14386. weight: math.unit(250, "lb"),
  14387. name: "Front",
  14388. image: {
  14389. source: "./media/characters/saudade/front.svg",
  14390. extra: 1172 / 1139,
  14391. bottom: 0.035
  14392. }
  14393. },
  14394. },
  14395. [
  14396. {
  14397. name: "Micro",
  14398. height: math.unit(3, "inches")
  14399. },
  14400. {
  14401. name: "Normal",
  14402. height: math.unit(6, "feet"),
  14403. default: true
  14404. },
  14405. {
  14406. name: "Macro",
  14407. height: math.unit(50, "feet")
  14408. },
  14409. {
  14410. name: "Megamacro",
  14411. height: math.unit(2800, "feet")
  14412. },
  14413. ]
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(5 + 4 / 12, "feet"),
  14420. weight: math.unit(100, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/keireer/front.svg",
  14424. extra: 716 / 666,
  14425. bottom: 0.05
  14426. }
  14427. },
  14428. },
  14429. [
  14430. {
  14431. name: "Normal",
  14432. height: math.unit(5 + 4 / 12, "feet"),
  14433. default: true
  14434. },
  14435. ]
  14436. ))
  14437. characterMakers.push(() => makeCharacter(
  14438. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14439. {
  14440. front: {
  14441. height: math.unit(6, "feet"),
  14442. weight: math.unit(90, "kg"),
  14443. name: "Front",
  14444. image: {
  14445. source: "./media/characters/mirja/front.svg",
  14446. extra: 1789 / 1683,
  14447. bottom: 0.05
  14448. }
  14449. },
  14450. frontDressed: {
  14451. height: math.unit(6, "feet"),
  14452. weight: math.unit(90, "lb"),
  14453. name: "Front (Dressed)",
  14454. image: {
  14455. source: "./media/characters/mirja/front-dressed.svg",
  14456. extra: 1789 / 1683,
  14457. bottom: 0.05
  14458. }
  14459. },
  14460. back: {
  14461. height: math.unit(6, "feet"),
  14462. weight: math.unit(90, "lb"),
  14463. name: "Back",
  14464. image: {
  14465. source: "./media/characters/mirja/back.svg",
  14466. extra: 953 / 917,
  14467. bottom: 0.017
  14468. }
  14469. },
  14470. },
  14471. [
  14472. {
  14473. name: "\"Incognito\"",
  14474. height: math.unit(3, "meters")
  14475. },
  14476. {
  14477. name: "Strolling Size",
  14478. height: math.unit(15, "km")
  14479. },
  14480. {
  14481. name: "Larger Strolling Size",
  14482. height: math.unit(400, "km")
  14483. },
  14484. {
  14485. name: "Preferred Size",
  14486. height: math.unit(5000, "km")
  14487. },
  14488. {
  14489. name: "True Size",
  14490. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14491. default: true
  14492. },
  14493. ]
  14494. ))
  14495. characterMakers.push(() => makeCharacter(
  14496. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14497. {
  14498. front: {
  14499. height: math.unit(15, "feet"),
  14500. weight: math.unit(880, "kg"),
  14501. name: "Front",
  14502. image: {
  14503. source: "./media/characters/nightraver/front.svg",
  14504. extra: 2444 / 2160,
  14505. bottom: 0.027
  14506. }
  14507. },
  14508. back: {
  14509. height: math.unit(15, "feet"),
  14510. weight: math.unit(880, "kg"),
  14511. name: "Back",
  14512. image: {
  14513. source: "./media/characters/nightraver/back.svg",
  14514. extra: 2309 / 2180,
  14515. bottom: 0.005
  14516. }
  14517. },
  14518. sole: {
  14519. height: math.unit(2.878, "feet"),
  14520. name: "Sole",
  14521. image: {
  14522. source: "./media/characters/nightraver/sole.svg"
  14523. }
  14524. },
  14525. foot: {
  14526. height: math.unit(2.285, "feet"),
  14527. name: "Foot",
  14528. image: {
  14529. source: "./media/characters/nightraver/foot.svg"
  14530. }
  14531. },
  14532. maw: {
  14533. height: math.unit(2.67, "feet"),
  14534. name: "Maw",
  14535. image: {
  14536. source: "./media/characters/nightraver/maw.svg"
  14537. }
  14538. },
  14539. },
  14540. [
  14541. {
  14542. name: "Micro",
  14543. height: math.unit(1, "cm")
  14544. },
  14545. {
  14546. name: "Normal",
  14547. height: math.unit(15, "feet"),
  14548. default: true
  14549. },
  14550. {
  14551. name: "Macro",
  14552. height: math.unit(300, "feet")
  14553. },
  14554. {
  14555. name: "Megamacro",
  14556. height: math.unit(300, "miles")
  14557. },
  14558. {
  14559. name: "Gigamacro",
  14560. height: math.unit(10000, "miles")
  14561. },
  14562. ]
  14563. ))
  14564. characterMakers.push(() => makeCharacter(
  14565. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14566. {
  14567. side: {
  14568. height: math.unit(2, "inches"),
  14569. weight: math.unit(5, "grams"),
  14570. name: "Side",
  14571. image: {
  14572. source: "./media/characters/arc/side.svg"
  14573. }
  14574. },
  14575. },
  14576. [
  14577. {
  14578. name: "Micro",
  14579. height: math.unit(2, "inches"),
  14580. default: true
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14586. {
  14587. front: {
  14588. height: math.unit(1.1938, "meters"),
  14589. weight: math.unit(54, "kg"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/nebula-shahar/front.svg",
  14593. extra: 1642 / 1436,
  14594. bottom: 0.06
  14595. }
  14596. },
  14597. },
  14598. [
  14599. {
  14600. name: "Megamicro",
  14601. height: math.unit(0.3, "mm")
  14602. },
  14603. {
  14604. name: "Micro",
  14605. height: math.unit(3, "cm")
  14606. },
  14607. {
  14608. name: "Normal",
  14609. height: math.unit(138, "cm"),
  14610. default: true
  14611. },
  14612. {
  14613. name: "Macro",
  14614. height: math.unit(30, "m")
  14615. },
  14616. ]
  14617. ))
  14618. characterMakers.push(() => makeCharacter(
  14619. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14620. {
  14621. front: {
  14622. height: math.unit(5.24, "feet"),
  14623. weight: math.unit(150, "lb"),
  14624. name: "Front",
  14625. image: {
  14626. source: "./media/characters/shayla/front.svg",
  14627. extra: 1512 / 1414,
  14628. bottom: 0.01
  14629. }
  14630. },
  14631. back: {
  14632. height: math.unit(5.24, "feet"),
  14633. weight: math.unit(150, "lb"),
  14634. name: "Back",
  14635. image: {
  14636. source: "./media/characters/shayla/back.svg",
  14637. extra: 1512 / 1414
  14638. }
  14639. },
  14640. hand: {
  14641. height: math.unit(0.7781496062992126, "feet"),
  14642. name: "Hand",
  14643. image: {
  14644. source: "./media/characters/shayla/hand.svg"
  14645. }
  14646. },
  14647. foot: {
  14648. height: math.unit(1.4206036745406823, "feet"),
  14649. name: "Foot",
  14650. image: {
  14651. source: "./media/characters/shayla/foot.svg"
  14652. }
  14653. },
  14654. },
  14655. [
  14656. {
  14657. name: "Micro",
  14658. height: math.unit(0.32, "feet")
  14659. },
  14660. {
  14661. name: "Normal",
  14662. height: math.unit(5.24, "feet"),
  14663. default: true
  14664. },
  14665. {
  14666. name: "Macro",
  14667. height: math.unit(492.12, "feet")
  14668. },
  14669. {
  14670. name: "Megamacro",
  14671. height: math.unit(186.41, "miles")
  14672. },
  14673. ]
  14674. ))
  14675. characterMakers.push(() => makeCharacter(
  14676. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14677. {
  14678. front: {
  14679. height: math.unit(2.2, "m"),
  14680. weight: math.unit(120, "kg"),
  14681. name: "Front",
  14682. image: {
  14683. source: "./media/characters/pia-jr/front.svg",
  14684. extra: 1000 / 970,
  14685. bottom: 0.035
  14686. }
  14687. },
  14688. hand: {
  14689. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14690. name: "Hand",
  14691. image: {
  14692. source: "./media/characters/pia-jr/hand.svg"
  14693. }
  14694. },
  14695. paw: {
  14696. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14697. name: "Paw",
  14698. image: {
  14699. source: "./media/characters/pia-jr/paw.svg"
  14700. }
  14701. },
  14702. },
  14703. [
  14704. {
  14705. name: "Micro",
  14706. height: math.unit(1.2, "cm")
  14707. },
  14708. {
  14709. name: "Normal",
  14710. height: math.unit(2.2, "m"),
  14711. default: true
  14712. },
  14713. {
  14714. name: "Macro",
  14715. height: math.unit(180, "m")
  14716. },
  14717. {
  14718. name: "Megamacro",
  14719. height: math.unit(420, "km")
  14720. },
  14721. ]
  14722. ))
  14723. characterMakers.push(() => makeCharacter(
  14724. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14725. {
  14726. front: {
  14727. height: math.unit(2, "m"),
  14728. weight: math.unit(115, "kg"),
  14729. name: "Front",
  14730. image: {
  14731. source: "./media/characters/pia-sr/front.svg",
  14732. extra: 760 / 730,
  14733. bottom: 0.015
  14734. }
  14735. },
  14736. back: {
  14737. height: math.unit(2, "m"),
  14738. weight: math.unit(115, "kg"),
  14739. name: "Back",
  14740. image: {
  14741. source: "./media/characters/pia-sr/back.svg",
  14742. extra: 760 / 730,
  14743. bottom: 0.01
  14744. }
  14745. },
  14746. hand: {
  14747. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14748. name: "Hand",
  14749. image: {
  14750. source: "./media/characters/pia-sr/hand.svg"
  14751. }
  14752. },
  14753. foot: {
  14754. height: math.unit(1.83, "feet"),
  14755. name: "Foot",
  14756. image: {
  14757. source: "./media/characters/pia-sr/foot.svg"
  14758. }
  14759. },
  14760. },
  14761. [
  14762. {
  14763. name: "Micro",
  14764. height: math.unit(88, "mm")
  14765. },
  14766. {
  14767. name: "Normal",
  14768. height: math.unit(2, "m"),
  14769. default: true
  14770. },
  14771. {
  14772. name: "Macro",
  14773. height: math.unit(200, "m")
  14774. },
  14775. {
  14776. name: "Megamacro",
  14777. height: math.unit(420, "km")
  14778. },
  14779. ]
  14780. ))
  14781. characterMakers.push(() => makeCharacter(
  14782. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14783. {
  14784. front: {
  14785. height: math.unit(8 + 2 / 12, "feet"),
  14786. weight: math.unit(300, "lb"),
  14787. name: "Front",
  14788. image: {
  14789. source: "./media/characters/kibibyte/front.svg",
  14790. extra: 2221 / 2098,
  14791. bottom: 0.04
  14792. }
  14793. },
  14794. },
  14795. [
  14796. {
  14797. name: "Normal",
  14798. height: math.unit(8 + 2 / 12, "feet"),
  14799. default: true
  14800. },
  14801. {
  14802. name: "Socialable Macro",
  14803. height: math.unit(50, "feet")
  14804. },
  14805. {
  14806. name: "Macro",
  14807. height: math.unit(300, "feet")
  14808. },
  14809. {
  14810. name: "Megamacro",
  14811. height: math.unit(500, "miles")
  14812. },
  14813. ]
  14814. ))
  14815. characterMakers.push(() => makeCharacter(
  14816. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14817. {
  14818. front: {
  14819. height: math.unit(6, "feet"),
  14820. weight: math.unit(150, "lb"),
  14821. name: "Front",
  14822. image: {
  14823. source: "./media/characters/felix/front.svg",
  14824. extra: 762 / 722,
  14825. bottom: 0.02
  14826. }
  14827. },
  14828. frontClothed: {
  14829. height: math.unit(6, "feet"),
  14830. weight: math.unit(150, "lb"),
  14831. name: "Front (Clothed)",
  14832. image: {
  14833. source: "./media/characters/felix/front-clothed.svg",
  14834. extra: 762 / 722,
  14835. bottom: 0.02
  14836. }
  14837. },
  14838. },
  14839. [
  14840. {
  14841. name: "Normal",
  14842. height: math.unit(6 + 8 / 12, "feet"),
  14843. default: true
  14844. },
  14845. {
  14846. name: "Macro",
  14847. height: math.unit(2600, "feet")
  14848. },
  14849. {
  14850. name: "Megamacro",
  14851. height: math.unit(450, "miles")
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(6 + 1 / 12, "feet"),
  14860. weight: math.unit(250, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/tobo/front.svg",
  14864. extra: 608 / 586,
  14865. bottom: 0.023
  14866. }
  14867. },
  14868. back: {
  14869. height: math.unit(6 + 1 / 12, "feet"),
  14870. weight: math.unit(250, "lb"),
  14871. name: "Back",
  14872. image: {
  14873. source: "./media/characters/tobo/back.svg",
  14874. extra: 608 / 586
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Nano",
  14881. height: math.unit(2, "nm")
  14882. },
  14883. {
  14884. name: "Megamicro",
  14885. height: math.unit(0.1, "mm")
  14886. },
  14887. {
  14888. name: "Micro",
  14889. height: math.unit(1, "inch"),
  14890. default: true
  14891. },
  14892. {
  14893. name: "Human-sized",
  14894. height: math.unit(6 + 1 / 12, "feet")
  14895. },
  14896. {
  14897. name: "Macro",
  14898. height: math.unit(250, "feet")
  14899. },
  14900. {
  14901. name: "Megamacro",
  14902. height: math.unit(75, "miles")
  14903. },
  14904. {
  14905. name: "Texas-sized",
  14906. height: math.unit(750, "miles")
  14907. },
  14908. {
  14909. name: "Teramacro",
  14910. height: math.unit(50000, "miles")
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14916. {
  14917. front: {
  14918. height: math.unit(6, "feet"),
  14919. weight: math.unit(269, "lb"),
  14920. name: "Front",
  14921. image: {
  14922. source: "./media/characters/danny-kapowsky/front.svg",
  14923. extra: 766 / 736,
  14924. bottom: 0.044
  14925. }
  14926. },
  14927. back: {
  14928. height: math.unit(6, "feet"),
  14929. weight: math.unit(269, "lb"),
  14930. name: "Back",
  14931. image: {
  14932. source: "./media/characters/danny-kapowsky/back.svg",
  14933. extra: 797 / 760,
  14934. bottom: 0.025
  14935. }
  14936. },
  14937. },
  14938. [
  14939. {
  14940. name: "Macro",
  14941. height: math.unit(150, "feet"),
  14942. default: true
  14943. },
  14944. {
  14945. name: "Macro+",
  14946. height: math.unit(200, "feet")
  14947. },
  14948. {
  14949. name: "Macro++",
  14950. height: math.unit(300, "feet")
  14951. },
  14952. {
  14953. name: "Macro+++",
  14954. height: math.unit(400, "feet")
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14960. {
  14961. side: {
  14962. height: math.unit(6, "feet"),
  14963. weight: math.unit(170, "lb"),
  14964. name: "Side",
  14965. image: {
  14966. source: "./media/characters/finn/side.svg",
  14967. extra: 1953 / 1807,
  14968. bottom: 0.057
  14969. }
  14970. },
  14971. },
  14972. [
  14973. {
  14974. name: "Megamacro",
  14975. height: math.unit(14445, "feet"),
  14976. default: true
  14977. },
  14978. ]
  14979. ))
  14980. characterMakers.push(() => makeCharacter(
  14981. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14982. {
  14983. front: {
  14984. height: math.unit(5 + 6 / 12, "feet"),
  14985. weight: math.unit(125, "lb"),
  14986. name: "Front",
  14987. image: {
  14988. source: "./media/characters/roy/front.svg",
  14989. extra: 1,
  14990. bottom: 0.11
  14991. }
  14992. },
  14993. },
  14994. [
  14995. {
  14996. name: "Micro",
  14997. height: math.unit(3, "inches"),
  14998. default: true
  14999. },
  15000. {
  15001. name: "Normal",
  15002. height: math.unit(5 + 6 / 12, "feet")
  15003. },
  15004. {
  15005. name: "Lesser Macro",
  15006. height: math.unit(60, "feet")
  15007. },
  15008. {
  15009. name: "Greater Macro",
  15010. height: math.unit(120, "feet")
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15016. {
  15017. front: {
  15018. height: math.unit(6, "feet"),
  15019. weight: math.unit(100, "lb"),
  15020. name: "Front",
  15021. image: {
  15022. source: "./media/characters/aevsivs/front.svg",
  15023. extra: 1,
  15024. bottom: 0.03
  15025. }
  15026. },
  15027. back: {
  15028. height: math.unit(6, "feet"),
  15029. weight: math.unit(100, "lb"),
  15030. name: "Back",
  15031. image: {
  15032. source: "./media/characters/aevsivs/back.svg"
  15033. }
  15034. },
  15035. },
  15036. [
  15037. {
  15038. name: "Micro",
  15039. height: math.unit(2, "inches"),
  15040. default: true
  15041. },
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(5, "feet")
  15045. },
  15046. ]
  15047. ))
  15048. characterMakers.push(() => makeCharacter(
  15049. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15050. {
  15051. front: {
  15052. height: math.unit(5 + 7 / 12, "feet"),
  15053. weight: math.unit(159, "lb"),
  15054. name: "Front",
  15055. image: {
  15056. source: "./media/characters/hildegard/front.svg",
  15057. extra: 289 / 269,
  15058. bottom: 7.63 / 297.8
  15059. }
  15060. },
  15061. back: {
  15062. height: math.unit(5 + 7 / 12, "feet"),
  15063. weight: math.unit(159, "lb"),
  15064. name: "Back",
  15065. image: {
  15066. source: "./media/characters/hildegard/back.svg",
  15067. extra: 280 / 260,
  15068. bottom: 2.3 / 282
  15069. }
  15070. },
  15071. },
  15072. [
  15073. {
  15074. name: "Normal",
  15075. height: math.unit(5 + 7 / 12, "feet"),
  15076. default: true
  15077. },
  15078. ]
  15079. ))
  15080. characterMakers.push(() => makeCharacter(
  15081. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15082. {
  15083. bernard: {
  15084. height: math.unit(2 + 7 / 12, "feet"),
  15085. weight: math.unit(66, "lb"),
  15086. name: "Bernard",
  15087. rename: true,
  15088. image: {
  15089. source: "./media/characters/bernard-wilder/bernard.svg",
  15090. extra: 192 / 128,
  15091. bottom: 0.05
  15092. }
  15093. },
  15094. wilder: {
  15095. height: math.unit(5 + 8 / 12, "feet"),
  15096. weight: math.unit(143, "lb"),
  15097. name: "Wilder",
  15098. rename: true,
  15099. image: {
  15100. source: "./media/characters/bernard-wilder/wilder.svg",
  15101. extra: 361 / 312,
  15102. bottom: 0.02
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Normal",
  15109. height: math.unit(2 + 7 / 12, "feet"),
  15110. default: true
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15116. {
  15117. anthro: {
  15118. height: math.unit(6 + 1 / 12, "feet"),
  15119. weight: math.unit(155, "lb"),
  15120. name: "Anthro",
  15121. image: {
  15122. source: "./media/characters/hearth/anthro.svg",
  15123. extra: 1178/1136,
  15124. bottom: 28/1206
  15125. }
  15126. },
  15127. feral: {
  15128. height: math.unit(3.78, "feet"),
  15129. weight: math.unit(35, "kg"),
  15130. name: "Feral",
  15131. image: {
  15132. source: "./media/characters/hearth/feral.svg",
  15133. extra: 153 / 135,
  15134. bottom: 0.03
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(6 + 1 / 12, "feet"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15148. {
  15149. front: {
  15150. height: math.unit(6, "feet"),
  15151. weight: math.unit(182, "lb"),
  15152. name: "Front",
  15153. image: {
  15154. source: "./media/characters/ingrid/front.svg",
  15155. extra: 294 / 268,
  15156. bottom: 0.027
  15157. }
  15158. },
  15159. },
  15160. [
  15161. {
  15162. name: "Normal",
  15163. height: math.unit(6, "feet"),
  15164. default: true
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15170. {
  15171. eevee: {
  15172. height: math.unit(2 + 10 / 12, "feet"),
  15173. weight: math.unit(86, "lb"),
  15174. name: "Malgam",
  15175. image: {
  15176. source: "./media/characters/malgam/eevee.svg",
  15177. extra: 952/784,
  15178. bottom: 38/990
  15179. }
  15180. },
  15181. sylveon: {
  15182. height: math.unit(4, "feet"),
  15183. weight: math.unit(101, "lb"),
  15184. name: "Future Malgam",
  15185. rename: true,
  15186. image: {
  15187. source: "./media/characters/malgam/sylveon.svg",
  15188. extra: 371 / 325,
  15189. bottom: 0.015
  15190. }
  15191. },
  15192. gigantamax: {
  15193. height: math.unit(50, "feet"),
  15194. name: "Gigantamax Malgam",
  15195. rename: true,
  15196. image: {
  15197. source: "./media/characters/malgam/gigantamax.svg"
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(2 + 10 / 12, "feet"),
  15205. default: true
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(5 + 11 / 12, "feet"),
  15214. weight: math.unit(188, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/fleur/front.svg",
  15218. extra: 309 / 283,
  15219. bottom: 0.007
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Normal",
  15226. height: math.unit(5 + 11 / 12, "feet"),
  15227. default: true
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15233. {
  15234. front: {
  15235. height: math.unit(5 + 4 / 12, "feet"),
  15236. weight: math.unit(122, "lb"),
  15237. name: "Front",
  15238. image: {
  15239. source: "./media/characters/jude/front.svg",
  15240. extra: 288 / 273,
  15241. bottom: 0.03
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Normal",
  15248. height: math.unit(5 + 4 / 12, "feet"),
  15249. default: true
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(5 + 11 / 12, "feet"),
  15258. weight: math.unit(190, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/seara/front.svg",
  15262. extra: 1,
  15263. bottom: 0.05
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(5 + 11 / 12, "feet"),
  15271. default: true
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(16 + 5 / 12, "feet"),
  15280. weight: math.unit(524, "lb"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/caspian/front.svg",
  15284. extra: 1,
  15285. bottom: 0.04
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(16 + 5 / 12, "feet"),
  15293. default: true
  15294. },
  15295. ]
  15296. ))
  15297. characterMakers.push(() => makeCharacter(
  15298. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15299. {
  15300. front: {
  15301. height: math.unit(5 + 7 / 12, "feet"),
  15302. weight: math.unit(170, "lb"),
  15303. name: "Front",
  15304. image: {
  15305. source: "./media/characters/mika/front.svg",
  15306. extra: 1,
  15307. bottom: 0.016
  15308. }
  15309. },
  15310. },
  15311. [
  15312. {
  15313. name: "Normal",
  15314. height: math.unit(5 + 7 / 12, "feet"),
  15315. default: true
  15316. },
  15317. ]
  15318. ))
  15319. characterMakers.push(() => makeCharacter(
  15320. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15321. {
  15322. front: {
  15323. height: math.unit(6 + 2 / 12, "feet"),
  15324. weight: math.unit(268, "lb"),
  15325. name: "Front",
  15326. image: {
  15327. source: "./media/characters/sol/front.svg",
  15328. extra: 247 / 231,
  15329. bottom: 0.05
  15330. }
  15331. },
  15332. },
  15333. [
  15334. {
  15335. name: "Normal",
  15336. height: math.unit(6 + 2 / 12, "feet"),
  15337. default: true
  15338. },
  15339. ]
  15340. ))
  15341. characterMakers.push(() => makeCharacter(
  15342. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15343. {
  15344. buizel: {
  15345. height: math.unit(2 + 5 / 12, "feet"),
  15346. weight: math.unit(87, "lb"),
  15347. name: "Buizel",
  15348. image: {
  15349. source: "./media/characters/umiko/buizel.svg",
  15350. extra: 172 / 157,
  15351. bottom: 0.01
  15352. }
  15353. },
  15354. floatzel: {
  15355. height: math.unit(5 + 9 / 12, "feet"),
  15356. weight: math.unit(250, "lb"),
  15357. name: "Floatzel",
  15358. image: {
  15359. source: "./media/characters/umiko/floatzel.svg",
  15360. extra: 262 / 248
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Normal",
  15367. height: math.unit(2 + 5 / 12, "feet"),
  15368. default: true
  15369. },
  15370. ]
  15371. ))
  15372. characterMakers.push(() => makeCharacter(
  15373. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15374. {
  15375. front: {
  15376. height: math.unit(6 + 2 / 12, "feet"),
  15377. weight: math.unit(146, "lb"),
  15378. name: "Front",
  15379. image: {
  15380. source: "./media/characters/iliac/front.svg",
  15381. extra: 389 / 365,
  15382. bottom: 0.035
  15383. }
  15384. },
  15385. },
  15386. [
  15387. {
  15388. name: "Normal",
  15389. height: math.unit(6 + 2 / 12, "feet"),
  15390. default: true
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15396. {
  15397. front: {
  15398. height: math.unit(6, "feet"),
  15399. weight: math.unit(170, "lb"),
  15400. name: "Front",
  15401. image: {
  15402. source: "./media/characters/topaz/front.svg",
  15403. extra: 317 / 303,
  15404. bottom: 0.055
  15405. }
  15406. },
  15407. },
  15408. [
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(6, "feet"),
  15412. default: true
  15413. },
  15414. ]
  15415. ))
  15416. characterMakers.push(() => makeCharacter(
  15417. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15418. {
  15419. front: {
  15420. height: math.unit(5 + 11 / 12, "feet"),
  15421. weight: math.unit(144, "lb"),
  15422. name: "Front",
  15423. image: {
  15424. source: "./media/characters/gabriel/front.svg",
  15425. extra: 285 / 262,
  15426. bottom: 0.004
  15427. }
  15428. },
  15429. },
  15430. [
  15431. {
  15432. name: "Normal",
  15433. height: math.unit(5 + 11 / 12, "feet"),
  15434. default: true
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15440. {
  15441. side: {
  15442. height: math.unit(6 + 5 / 12, "feet"),
  15443. weight: math.unit(300, "lb"),
  15444. name: "Side",
  15445. image: {
  15446. source: "./media/characters/tempest-suicune/side.svg",
  15447. extra: 195 / 154,
  15448. bottom: 0.04
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(6 + 5 / 12, "feet"),
  15456. default: true
  15457. },
  15458. ]
  15459. ))
  15460. characterMakers.push(() => makeCharacter(
  15461. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15462. {
  15463. front: {
  15464. height: math.unit(7 + 2 / 12, "feet"),
  15465. weight: math.unit(322, "lb"),
  15466. name: "Front",
  15467. image: {
  15468. source: "./media/characters/vulcan/front.svg",
  15469. extra: 154 / 147,
  15470. bottom: 0.04
  15471. }
  15472. },
  15473. },
  15474. [
  15475. {
  15476. name: "Normal",
  15477. height: math.unit(7 + 2 / 12, "feet"),
  15478. default: true
  15479. },
  15480. ]
  15481. ))
  15482. characterMakers.push(() => makeCharacter(
  15483. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15484. {
  15485. front: {
  15486. height: math.unit(5 + 10 / 12, "feet"),
  15487. weight: math.unit(264, "lb"),
  15488. name: "Front",
  15489. image: {
  15490. source: "./media/characters/gault/front.svg",
  15491. extra: 161 / 140,
  15492. bottom: 0.028
  15493. }
  15494. },
  15495. },
  15496. [
  15497. {
  15498. name: "Normal",
  15499. height: math.unit(5 + 10 / 12, "feet"),
  15500. default: true
  15501. },
  15502. ]
  15503. ))
  15504. characterMakers.push(() => makeCharacter(
  15505. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15506. {
  15507. front: {
  15508. height: math.unit(6, "feet"),
  15509. weight: math.unit(150, "lb"),
  15510. name: "Front",
  15511. image: {
  15512. source: "./media/characters/shard/front.svg",
  15513. extra: 273 / 238,
  15514. bottom: 0.02
  15515. }
  15516. },
  15517. },
  15518. [
  15519. {
  15520. name: "Normal",
  15521. height: math.unit(3 + 6 / 12, "feet"),
  15522. default: true
  15523. },
  15524. ]
  15525. ))
  15526. characterMakers.push(() => makeCharacter(
  15527. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15528. {
  15529. front: {
  15530. height: math.unit(5 + 11 / 12, "feet"),
  15531. weight: math.unit(146, "lb"),
  15532. name: "Front",
  15533. image: {
  15534. source: "./media/characters/ashe/front.svg",
  15535. extra: 400 / 373,
  15536. bottom: 0.01
  15537. }
  15538. },
  15539. },
  15540. [
  15541. {
  15542. name: "Normal",
  15543. height: math.unit(5 + 11 / 12, "feet"),
  15544. default: true
  15545. },
  15546. ]
  15547. ))
  15548. characterMakers.push(() => makeCharacter(
  15549. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15550. {
  15551. front: {
  15552. height: math.unit(5 + 5 / 12, "feet"),
  15553. weight: math.unit(135, "lb"),
  15554. name: "Front",
  15555. image: {
  15556. source: "./media/characters/beatrix/front.svg",
  15557. extra: 392 / 379,
  15558. bottom: 0.01
  15559. }
  15560. },
  15561. },
  15562. [
  15563. {
  15564. name: "Normal",
  15565. height: math.unit(6, "feet"),
  15566. default: true
  15567. },
  15568. ]
  15569. ))
  15570. characterMakers.push(() => makeCharacter(
  15571. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15572. {
  15573. front: {
  15574. height: math.unit(6 + 2/12, "feet"),
  15575. weight: math.unit(135, "lb"),
  15576. name: "Front",
  15577. image: {
  15578. source: "./media/characters/ignatius/front.svg",
  15579. extra: 1380/1259,
  15580. bottom: 27/1407
  15581. }
  15582. },
  15583. },
  15584. [
  15585. {
  15586. name: "Normal",
  15587. height: math.unit(6 + 2/12, "feet"),
  15588. default: true
  15589. },
  15590. ]
  15591. ))
  15592. characterMakers.push(() => makeCharacter(
  15593. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15594. {
  15595. front: {
  15596. height: math.unit(6 + 2 / 12, "feet"),
  15597. weight: math.unit(138, "lb"),
  15598. name: "Front",
  15599. image: {
  15600. source: "./media/characters/mei-li/front.svg",
  15601. extra: 237 / 229,
  15602. bottom: 0.03
  15603. }
  15604. },
  15605. },
  15606. [
  15607. {
  15608. name: "Normal",
  15609. height: math.unit(6 + 2 / 12, "feet"),
  15610. default: true
  15611. },
  15612. ]
  15613. ))
  15614. characterMakers.push(() => makeCharacter(
  15615. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15616. {
  15617. front: {
  15618. height: math.unit(2 + 4 / 12, "feet"),
  15619. weight: math.unit(62, "lb"),
  15620. name: "Front",
  15621. image: {
  15622. source: "./media/characters/puru/front.svg",
  15623. extra: 206 / 149,
  15624. bottom: 0.06
  15625. }
  15626. },
  15627. },
  15628. [
  15629. {
  15630. name: "Normal",
  15631. height: math.unit(2 + 4 / 12, "feet"),
  15632. default: true
  15633. },
  15634. ]
  15635. ))
  15636. characterMakers.push(() => makeCharacter(
  15637. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15638. {
  15639. anthro: {
  15640. height: math.unit(5 + 8/12, "feet"),
  15641. weight: math.unit(200, "lb"),
  15642. energyNeed: math.unit(2000, "kcal"),
  15643. name: "Anthro",
  15644. image: {
  15645. source: "./media/characters/kee/anthro.svg",
  15646. extra: 3251/3184,
  15647. bottom: 250/3501
  15648. }
  15649. },
  15650. taur: {
  15651. height: math.unit(11, "feet"),
  15652. weight: math.unit(500, "lb"),
  15653. energyNeed: math.unit(5000, "kcal"),
  15654. name: "Taur",
  15655. image: {
  15656. source: "./media/characters/kee/taur.svg",
  15657. extra: 1362/1320,
  15658. bottom: 83/1445
  15659. }
  15660. },
  15661. },
  15662. [
  15663. {
  15664. name: "Normal",
  15665. height: math.unit(5 + 8/12, "feet"),
  15666. default: true
  15667. },
  15668. {
  15669. name: "Macro",
  15670. height: math.unit(35, "feet")
  15671. },
  15672. ]
  15673. ))
  15674. characterMakers.push(() => makeCharacter(
  15675. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15676. {
  15677. anthro: {
  15678. height: math.unit(7, "feet"),
  15679. weight: math.unit(190, "lb"),
  15680. name: "Anthro",
  15681. image: {
  15682. source: "./media/characters/cobalt-dracha/anthro.svg",
  15683. extra: 231 / 225,
  15684. bottom: 0.04
  15685. }
  15686. },
  15687. feral: {
  15688. height: math.unit(9 + 7 / 12, "feet"),
  15689. weight: math.unit(294, "lb"),
  15690. name: "Feral",
  15691. image: {
  15692. source: "./media/characters/cobalt-dracha/feral.svg",
  15693. extra: 692 / 633,
  15694. bottom: 0.05
  15695. }
  15696. },
  15697. },
  15698. [
  15699. {
  15700. name: "Normal",
  15701. height: math.unit(7, "feet"),
  15702. default: true
  15703. },
  15704. ]
  15705. ))
  15706. characterMakers.push(() => makeCharacter(
  15707. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15708. {
  15709. fallen: {
  15710. height: math.unit(11 + 8 / 12, "feet"),
  15711. weight: math.unit(485, "lb"),
  15712. name: "Java (Fallen)",
  15713. rename: true,
  15714. image: {
  15715. source: "./media/characters/java/fallen.svg",
  15716. extra: 226 / 208,
  15717. bottom: 0.005
  15718. }
  15719. },
  15720. godkin: {
  15721. height: math.unit(10 + 6 / 12, "feet"),
  15722. weight: math.unit(328, "lb"),
  15723. name: "Java (Godkin)",
  15724. rename: true,
  15725. image: {
  15726. source: "./media/characters/java/godkin.svg",
  15727. extra: 1104/1068,
  15728. bottom: 36/1140
  15729. }
  15730. },
  15731. },
  15732. [
  15733. {
  15734. name: "Normal",
  15735. height: math.unit(11 + 8 / 12, "feet"),
  15736. default: true
  15737. },
  15738. ]
  15739. ))
  15740. characterMakers.push(() => makeCharacter(
  15741. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15742. {
  15743. front: {
  15744. height: math.unit(5 + 9 / 12, "feet"),
  15745. weight: math.unit(170, "lb"),
  15746. name: "Front",
  15747. image: {
  15748. source: "./media/characters/purna/front.svg",
  15749. extra: 239 / 229,
  15750. bottom: 0.01
  15751. }
  15752. },
  15753. },
  15754. [
  15755. {
  15756. name: "Normal",
  15757. height: math.unit(5 + 9 / 12, "feet"),
  15758. default: true
  15759. },
  15760. ]
  15761. ))
  15762. characterMakers.push(() => makeCharacter(
  15763. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15764. {
  15765. front: {
  15766. height: math.unit(5 + 9 / 12, "feet"),
  15767. weight: math.unit(142, "lb"),
  15768. name: "Front",
  15769. image: {
  15770. source: "./media/characters/kuva/front.svg",
  15771. extra: 281 / 271,
  15772. bottom: 0.006
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Normal",
  15779. height: math.unit(5 + 9 / 12, "feet"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15786. {
  15787. anthro: {
  15788. height: math.unit(9 + 2 / 12, "feet"),
  15789. weight: math.unit(270, "lb"),
  15790. name: "Anthro",
  15791. image: {
  15792. source: "./media/characters/embra/anthro.svg",
  15793. extra: 200 / 187,
  15794. bottom: 0.02
  15795. }
  15796. },
  15797. feral: {
  15798. height: math.unit(18 + 8 / 12, "feet"),
  15799. weight: math.unit(576, "lb"),
  15800. name: "Feral",
  15801. image: {
  15802. source: "./media/characters/embra/feral.svg",
  15803. extra: 152 / 137,
  15804. bottom: 0.037
  15805. }
  15806. },
  15807. },
  15808. [
  15809. {
  15810. name: "Normal",
  15811. height: math.unit(9 + 2 / 12, "feet"),
  15812. default: true
  15813. },
  15814. ]
  15815. ))
  15816. characterMakers.push(() => makeCharacter(
  15817. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15818. {
  15819. anthro: {
  15820. height: math.unit(10 + 9 / 12, "feet"),
  15821. weight: math.unit(224, "lb"),
  15822. name: "Anthro",
  15823. image: {
  15824. source: "./media/characters/grottos/anthro.svg",
  15825. extra: 350 / 332,
  15826. bottom: 0.045
  15827. }
  15828. },
  15829. feral: {
  15830. height: math.unit(20 + 7 / 12, "feet"),
  15831. weight: math.unit(629, "lb"),
  15832. name: "Feral",
  15833. image: {
  15834. source: "./media/characters/grottos/feral.svg",
  15835. extra: 207 / 190,
  15836. bottom: 0.05
  15837. }
  15838. },
  15839. },
  15840. [
  15841. {
  15842. name: "Normal",
  15843. height: math.unit(10 + 9 / 12, "feet"),
  15844. default: true
  15845. },
  15846. ]
  15847. ))
  15848. characterMakers.push(() => makeCharacter(
  15849. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15850. {
  15851. anthro: {
  15852. height: math.unit(9 + 6 / 12, "feet"),
  15853. weight: math.unit(298, "lb"),
  15854. name: "Anthro",
  15855. image: {
  15856. source: "./media/characters/frifna/anthro.svg",
  15857. extra: 282 / 269,
  15858. bottom: 0.015
  15859. }
  15860. },
  15861. feral: {
  15862. height: math.unit(16 + 2 / 12, "feet"),
  15863. weight: math.unit(624, "lb"),
  15864. name: "Feral",
  15865. image: {
  15866. source: "./media/characters/frifna/feral.svg"
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Normal",
  15873. height: math.unit(9 + 6 / 12, "feet"),
  15874. default: true
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(6 + 2 / 12, "feet"),
  15883. weight: math.unit(168, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/elise/front.svg",
  15887. extra: 276 / 271
  15888. }
  15889. },
  15890. },
  15891. [
  15892. {
  15893. name: "Normal",
  15894. height: math.unit(6 + 2 / 12, "feet"),
  15895. default: true
  15896. },
  15897. ]
  15898. ))
  15899. characterMakers.push(() => makeCharacter(
  15900. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15901. {
  15902. front: {
  15903. height: math.unit(5 + 10 / 12, "feet"),
  15904. weight: math.unit(210, "lb"),
  15905. name: "Front",
  15906. image: {
  15907. source: "./media/characters/glade/front.svg",
  15908. extra: 258 / 247,
  15909. bottom: 0.008
  15910. }
  15911. },
  15912. },
  15913. [
  15914. {
  15915. name: "Normal",
  15916. height: math.unit(5 + 10 / 12, "feet"),
  15917. default: true
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(5 + 10 / 12, "feet"),
  15926. weight: math.unit(129, "lb"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/rina/front.svg",
  15930. extra: 266 / 255,
  15931. bottom: 0.005
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Normal",
  15938. height: math.unit(5 + 10 / 12, "feet"),
  15939. default: true
  15940. },
  15941. ]
  15942. ))
  15943. characterMakers.push(() => makeCharacter(
  15944. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15945. {
  15946. front: {
  15947. height: math.unit(6 + 1 / 12, "feet"),
  15948. weight: math.unit(192, "lb"),
  15949. name: "Front",
  15950. image: {
  15951. source: "./media/characters/veronica/front.svg",
  15952. extra: 319 / 309,
  15953. bottom: 0.005
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(6 + 1 / 12, "feet"),
  15961. default: true
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15967. {
  15968. front: {
  15969. height: math.unit(9 + 3 / 12, "feet"),
  15970. weight: math.unit(1100, "lb"),
  15971. name: "Front",
  15972. image: {
  15973. source: "./media/characters/braxton/front.svg",
  15974. extra: 1057 / 984,
  15975. bottom: 0.05
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(9 + 3 / 12, "feet")
  15983. },
  15984. {
  15985. name: "Giant",
  15986. height: math.unit(300, "feet"),
  15987. default: true
  15988. },
  15989. {
  15990. name: "Macro",
  15991. height: math.unit(700, "feet")
  15992. },
  15993. {
  15994. name: "Megamacro",
  15995. height: math.unit(6000, "feet")
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(6 + 7 / 12, "feet"),
  16004. weight: math.unit(150, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/blue-feyonics/front.svg",
  16008. extra: 1403 / 1306,
  16009. bottom: 0.047
  16010. }
  16011. },
  16012. },
  16013. [
  16014. {
  16015. name: "Normal",
  16016. height: math.unit(6 + 7 / 12, "feet"),
  16017. default: true
  16018. },
  16019. ]
  16020. ))
  16021. characterMakers.push(() => makeCharacter(
  16022. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16023. {
  16024. front: {
  16025. height: math.unit(1.8, "meters"),
  16026. weight: math.unit(60, "kg"),
  16027. name: "Front",
  16028. image: {
  16029. source: "./media/characters/maxwell/front.svg",
  16030. extra: 2060 / 1873
  16031. }
  16032. },
  16033. },
  16034. [
  16035. {
  16036. name: "Micro",
  16037. height: math.unit(1, "mm")
  16038. },
  16039. {
  16040. name: "Normal",
  16041. height: math.unit(1.8, "meter"),
  16042. default: true
  16043. },
  16044. {
  16045. name: "Macro",
  16046. height: math.unit(30, "meters")
  16047. },
  16048. {
  16049. name: "Megamacro",
  16050. height: math.unit(10, "km")
  16051. },
  16052. ]
  16053. ))
  16054. characterMakers.push(() => makeCharacter(
  16055. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16056. {
  16057. front: {
  16058. height: math.unit(6, "feet"),
  16059. weight: math.unit(150, "lb"),
  16060. name: "Front",
  16061. image: {
  16062. source: "./media/characters/jack/front.svg",
  16063. extra: 1754 / 1640,
  16064. bottom: 0.01
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Normal",
  16071. height: math.unit(80000, "feet"),
  16072. default: true
  16073. },
  16074. {
  16075. name: "Max size",
  16076. height: math.unit(10, "lightyears")
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16082. {
  16083. urban: {
  16084. height: math.unit(5, "feet"),
  16085. weight: math.unit(240, "lb"),
  16086. name: "Urban",
  16087. image: {
  16088. source: "./media/characters/cafat/urban.svg",
  16089. extra: 1223/1126,
  16090. bottom: 205/1428
  16091. }
  16092. },
  16093. summer: {
  16094. height: math.unit(5, "feet"),
  16095. weight: math.unit(240, "lb"),
  16096. name: "Summer",
  16097. image: {
  16098. source: "./media/characters/cafat/summer.svg",
  16099. extra: 1223/1126,
  16100. bottom: 205/1428
  16101. }
  16102. },
  16103. winter: {
  16104. height: math.unit(5, "feet"),
  16105. weight: math.unit(240, "lb"),
  16106. name: "Winter",
  16107. image: {
  16108. source: "./media/characters/cafat/winter.svg",
  16109. extra: 1223/1126,
  16110. bottom: 205/1428
  16111. }
  16112. },
  16113. lingerie: {
  16114. height: math.unit(5, "feet"),
  16115. weight: math.unit(240, "lb"),
  16116. name: "Lingerie",
  16117. image: {
  16118. source: "./media/characters/cafat/lingerie.svg",
  16119. extra: 1223/1126,
  16120. bottom: 205/1428
  16121. }
  16122. },
  16123. upright: {
  16124. height: math.unit(6.3, "feet"),
  16125. weight: math.unit(240, "lb"),
  16126. name: "Upright",
  16127. image: {
  16128. source: "./media/characters/cafat/upright.svg",
  16129. bottom: 0.01
  16130. }
  16131. },
  16132. uprightFull: {
  16133. height: math.unit(6.3, "feet"),
  16134. weight: math.unit(240, "lb"),
  16135. name: "Upright (Full)",
  16136. image: {
  16137. source: "./media/characters/cafat/upright-full.svg",
  16138. bottom: 0.01
  16139. }
  16140. },
  16141. },
  16142. [
  16143. {
  16144. name: "Small",
  16145. height: math.unit(5, "feet"),
  16146. default: true
  16147. },
  16148. {
  16149. name: "Large",
  16150. height: math.unit(13, "feet")
  16151. },
  16152. ]
  16153. ))
  16154. characterMakers.push(() => makeCharacter(
  16155. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16156. {
  16157. front: {
  16158. height: math.unit(6, "feet"),
  16159. weight: math.unit(150, "lb"),
  16160. name: "Front",
  16161. image: {
  16162. source: "./media/characters/verin-raharra/front.svg",
  16163. extra: 5019 / 4835,
  16164. bottom: 0.023
  16165. }
  16166. },
  16167. },
  16168. [
  16169. {
  16170. name: "Normal",
  16171. height: math.unit(7 + 5 / 12, "feet"),
  16172. default: true
  16173. },
  16174. {
  16175. name: "Upsized",
  16176. height: math.unit(20, "feet")
  16177. },
  16178. ]
  16179. ))
  16180. characterMakers.push(() => makeCharacter(
  16181. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16182. {
  16183. front: {
  16184. height: math.unit(7, "feet"),
  16185. weight: math.unit(230, "lb"),
  16186. name: "Front",
  16187. image: {
  16188. source: "./media/characters/nakata/front.svg",
  16189. extra: 1.005,
  16190. bottom: 0.01
  16191. }
  16192. },
  16193. },
  16194. [
  16195. {
  16196. name: "Normal",
  16197. height: math.unit(7, "feet"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Big",
  16202. height: math.unit(14, "feet")
  16203. },
  16204. {
  16205. name: "Macro",
  16206. height: math.unit(400, "feet")
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(4.91, "feet"),
  16215. weight: math.unit(100, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/lily/front.svg",
  16219. extra: 1585 / 1415,
  16220. bottom: 0.02
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Normal",
  16227. height: math.unit(4.91, "feet"),
  16228. default: true
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16234. {
  16235. laying: {
  16236. height: math.unit(4 + 4 / 12, "feet"),
  16237. weight: math.unit(600, "lb"),
  16238. name: "Laying",
  16239. image: {
  16240. source: "./media/characters/sheila/laying.svg",
  16241. extra: 1333 / 1265,
  16242. bottom: 0.16
  16243. }
  16244. },
  16245. },
  16246. [
  16247. {
  16248. name: "Normal",
  16249. height: math.unit(4 + 4 / 12, "feet"),
  16250. default: true
  16251. },
  16252. ]
  16253. ))
  16254. characterMakers.push(() => makeCharacter(
  16255. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16256. {
  16257. front: {
  16258. height: math.unit(6, "feet"),
  16259. weight: math.unit(190, "lb"),
  16260. name: "Front",
  16261. image: {
  16262. source: "./media/characters/sax/front.svg",
  16263. extra: 1187 / 973,
  16264. bottom: 0.042
  16265. }
  16266. },
  16267. },
  16268. [
  16269. {
  16270. name: "Micro",
  16271. height: math.unit(4, "inches"),
  16272. default: true
  16273. },
  16274. ]
  16275. ))
  16276. characterMakers.push(() => makeCharacter(
  16277. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16278. {
  16279. front: {
  16280. height: math.unit(6, "feet"),
  16281. weight: math.unit(150, "lb"),
  16282. name: "Front",
  16283. image: {
  16284. source: "./media/characters/pandora/front.svg",
  16285. extra: 2720 / 2556,
  16286. bottom: 0.015
  16287. }
  16288. },
  16289. back: {
  16290. height: math.unit(6, "feet"),
  16291. weight: math.unit(150, "lb"),
  16292. name: "Back",
  16293. image: {
  16294. source: "./media/characters/pandora/back.svg",
  16295. extra: 2720 / 2556,
  16296. bottom: 0.01
  16297. }
  16298. },
  16299. beans: {
  16300. height: math.unit(6 / 8, "feet"),
  16301. name: "Beans",
  16302. image: {
  16303. source: "./media/characters/pandora/beans.svg"
  16304. }
  16305. },
  16306. collar: {
  16307. height: math.unit(0.31, "feet"),
  16308. name: "Collar",
  16309. image: {
  16310. source: "./media/characters/pandora/collar.svg"
  16311. }
  16312. },
  16313. skirt: {
  16314. height: math.unit(6, "feet"),
  16315. weight: math.unit(150, "lb"),
  16316. name: "Skirt",
  16317. image: {
  16318. source: "./media/characters/pandora/skirt.svg",
  16319. extra: 1622 / 1525,
  16320. bottom: 0.015
  16321. }
  16322. },
  16323. hoodie: {
  16324. height: math.unit(6, "feet"),
  16325. weight: math.unit(150, "lb"),
  16326. name: "Hoodie",
  16327. image: {
  16328. source: "./media/characters/pandora/hoodie.svg",
  16329. extra: 1622 / 1525,
  16330. bottom: 0.015
  16331. }
  16332. },
  16333. casual: {
  16334. height: math.unit(6, "feet"),
  16335. weight: math.unit(150, "lb"),
  16336. name: "Casual",
  16337. image: {
  16338. source: "./media/characters/pandora/casual.svg",
  16339. extra: 1622 / 1525,
  16340. bottom: 0.015
  16341. }
  16342. },
  16343. },
  16344. [
  16345. {
  16346. name: "Normal",
  16347. height: math.unit(6, "feet")
  16348. },
  16349. {
  16350. name: "Big Steppy",
  16351. height: math.unit(1, "km"),
  16352. default: true
  16353. },
  16354. {
  16355. name: "Galactic Steppy",
  16356. height: math.unit(2, "gigameters")
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16362. {
  16363. side: {
  16364. height: math.unit(10, "feet"),
  16365. weight: math.unit(800, "kg"),
  16366. name: "Side",
  16367. image: {
  16368. source: "./media/characters/venio-darcony/side.svg",
  16369. extra: 1373 / 1003,
  16370. bottom: 0.037
  16371. }
  16372. },
  16373. front: {
  16374. height: math.unit(19, "feet"),
  16375. weight: math.unit(800, "kg"),
  16376. name: "Front",
  16377. image: {
  16378. source: "./media/characters/venio-darcony/front.svg"
  16379. }
  16380. },
  16381. back: {
  16382. height: math.unit(19, "feet"),
  16383. weight: math.unit(800, "kg"),
  16384. name: "Back",
  16385. image: {
  16386. source: "./media/characters/venio-darcony/back.svg"
  16387. }
  16388. },
  16389. sideNsfw: {
  16390. height: math.unit(10, "feet"),
  16391. weight: math.unit(800, "kg"),
  16392. name: "Side (NSFW)",
  16393. image: {
  16394. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16395. extra: 1373 / 1003,
  16396. bottom: 0.037
  16397. }
  16398. },
  16399. frontNsfw: {
  16400. height: math.unit(19, "feet"),
  16401. weight: math.unit(800, "kg"),
  16402. name: "Front (NSFW)",
  16403. image: {
  16404. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16405. }
  16406. },
  16407. backNsfw: {
  16408. height: math.unit(19, "feet"),
  16409. weight: math.unit(800, "kg"),
  16410. name: "Back (NSFW)",
  16411. image: {
  16412. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16413. }
  16414. },
  16415. sideArmored: {
  16416. height: math.unit(10, "feet"),
  16417. weight: math.unit(800, "kg"),
  16418. name: "Side (Armored)",
  16419. image: {
  16420. source: "./media/characters/venio-darcony/side-armored.svg",
  16421. extra: 1373 / 1003,
  16422. bottom: 0.037
  16423. }
  16424. },
  16425. frontArmored: {
  16426. height: math.unit(19, "feet"),
  16427. weight: math.unit(900, "kg"),
  16428. name: "Front (Armored)",
  16429. image: {
  16430. source: "./media/characters/venio-darcony/front-armored.svg"
  16431. }
  16432. },
  16433. backArmored: {
  16434. height: math.unit(19, "feet"),
  16435. weight: math.unit(900, "kg"),
  16436. name: "Back (Armored)",
  16437. image: {
  16438. source: "./media/characters/venio-darcony/back-armored.svg"
  16439. }
  16440. },
  16441. sword: {
  16442. height: math.unit(10, "feet"),
  16443. weight: math.unit(50, "lb"),
  16444. name: "Sword",
  16445. image: {
  16446. source: "./media/characters/venio-darcony/sword.svg"
  16447. }
  16448. },
  16449. },
  16450. [
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(10, "feet")
  16454. },
  16455. {
  16456. name: "Macro",
  16457. height: math.unit(130, "feet"),
  16458. default: true
  16459. },
  16460. {
  16461. name: "Macro+",
  16462. height: math.unit(240, "feet")
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16468. {
  16469. front: {
  16470. height: math.unit(6, "feet"),
  16471. weight: math.unit(150, "lb"),
  16472. name: "Front",
  16473. image: {
  16474. source: "./media/characters/veski/front.svg",
  16475. extra: 1299 / 1225,
  16476. bottom: 0.04
  16477. }
  16478. },
  16479. back: {
  16480. height: math.unit(6, "feet"),
  16481. weight: math.unit(150, "lb"),
  16482. name: "Back",
  16483. image: {
  16484. source: "./media/characters/veski/back.svg",
  16485. extra: 1299 / 1225,
  16486. bottom: 0.008
  16487. }
  16488. },
  16489. maw: {
  16490. height: math.unit(1.5 * 1.21, "feet"),
  16491. name: "Maw",
  16492. image: {
  16493. source: "./media/characters/veski/maw.svg"
  16494. }
  16495. },
  16496. },
  16497. [
  16498. {
  16499. name: "Macro",
  16500. height: math.unit(2, "km"),
  16501. default: true
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(5 + 7 / 12, "feet"),
  16510. name: "Front",
  16511. image: {
  16512. source: "./media/characters/isabelle/front.svg",
  16513. extra: 2130 / 1976,
  16514. bottom: 0.05
  16515. }
  16516. },
  16517. },
  16518. [
  16519. {
  16520. name: "Supermicro",
  16521. height: math.unit(10, "micrometers")
  16522. },
  16523. {
  16524. name: "Micro",
  16525. height: math.unit(1, "inch")
  16526. },
  16527. {
  16528. name: "Tiny",
  16529. height: math.unit(5, "inches")
  16530. },
  16531. {
  16532. name: "Standard",
  16533. height: math.unit(5 + 7 / 12, "inches")
  16534. },
  16535. {
  16536. name: "Macro",
  16537. height: math.unit(80, "meters"),
  16538. default: true
  16539. },
  16540. {
  16541. name: "Megamacro",
  16542. height: math.unit(250, "meters")
  16543. },
  16544. {
  16545. name: "Gigamacro",
  16546. height: math.unit(5, "km")
  16547. },
  16548. {
  16549. name: "Cosmic",
  16550. height: math.unit(2.5e6, "miles")
  16551. },
  16552. ]
  16553. ))
  16554. characterMakers.push(() => makeCharacter(
  16555. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16556. {
  16557. front: {
  16558. height: math.unit(6, "feet"),
  16559. weight: math.unit(150, "lb"),
  16560. name: "Front",
  16561. image: {
  16562. source: "./media/characters/hanzo/front.svg",
  16563. extra: 374 / 344,
  16564. bottom: 0.02
  16565. }
  16566. },
  16567. },
  16568. [
  16569. {
  16570. name: "Normal",
  16571. height: math.unit(8, "feet"),
  16572. default: true
  16573. },
  16574. ]
  16575. ))
  16576. characterMakers.push(() => makeCharacter(
  16577. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16578. {
  16579. front: {
  16580. height: math.unit(7, "feet"),
  16581. weight: math.unit(130, "lb"),
  16582. name: "Front",
  16583. image: {
  16584. source: "./media/characters/anna/front.svg",
  16585. extra: 169 / 145,
  16586. bottom: 0.06
  16587. }
  16588. },
  16589. full: {
  16590. height: math.unit(4.96, "feet"),
  16591. weight: math.unit(220, "lb"),
  16592. name: "Full",
  16593. image: {
  16594. source: "./media/characters/anna/full.svg",
  16595. extra: 138 / 114,
  16596. bottom: 0.15
  16597. }
  16598. },
  16599. tongue: {
  16600. height: math.unit(2.53, "feet"),
  16601. name: "Tongue",
  16602. image: {
  16603. source: "./media/characters/anna/tongue.svg"
  16604. }
  16605. },
  16606. },
  16607. [
  16608. {
  16609. name: "Normal",
  16610. height: math.unit(7, "feet"),
  16611. default: true
  16612. },
  16613. ]
  16614. ))
  16615. characterMakers.push(() => makeCharacter(
  16616. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16617. {
  16618. front: {
  16619. height: math.unit(7, "feet"),
  16620. weight: math.unit(150, "lb"),
  16621. name: "Front",
  16622. image: {
  16623. source: "./media/characters/ian-corvid/front.svg",
  16624. extra: 150 / 142,
  16625. bottom: 0.02
  16626. }
  16627. },
  16628. back: {
  16629. height: math.unit(7, "feet"),
  16630. weight: math.unit(150, "lb"),
  16631. name: "Back",
  16632. image: {
  16633. source: "./media/characters/ian-corvid/back.svg",
  16634. extra: 150 / 143,
  16635. bottom: 0.01
  16636. }
  16637. },
  16638. stomping: {
  16639. height: math.unit(7, "feet"),
  16640. weight: math.unit(150, "lb"),
  16641. name: "Stomping",
  16642. image: {
  16643. source: "./media/characters/ian-corvid/stomping.svg",
  16644. extra: 76 / 72
  16645. }
  16646. },
  16647. sitting: {
  16648. height: math.unit(7 / 1.8, "feet"),
  16649. weight: math.unit(150, "lb"),
  16650. name: "Sitting",
  16651. image: {
  16652. source: "./media/characters/ian-corvid/sitting.svg",
  16653. extra: 1400 / 1269,
  16654. bottom: 0.15
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Tiny Microw",
  16661. height: math.unit(1, "inch")
  16662. },
  16663. {
  16664. name: "Microw",
  16665. height: math.unit(6, "inches")
  16666. },
  16667. {
  16668. name: "Crow",
  16669. height: math.unit(7 + 1 / 12, "feet"),
  16670. default: true
  16671. },
  16672. {
  16673. name: "Macrow",
  16674. height: math.unit(176, "feet")
  16675. },
  16676. ]
  16677. ))
  16678. characterMakers.push(() => makeCharacter(
  16679. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16680. {
  16681. front: {
  16682. height: math.unit(5 + 7 / 12, "feet"),
  16683. weight: math.unit(147, "lb"),
  16684. name: "Front",
  16685. image: {
  16686. source: "./media/characters/natalie-kellon/front.svg",
  16687. extra: 1214 / 1141,
  16688. bottom: 0.02
  16689. }
  16690. },
  16691. },
  16692. [
  16693. {
  16694. name: "Micro",
  16695. height: math.unit(1 / 16, "inch")
  16696. },
  16697. {
  16698. name: "Tiny",
  16699. height: math.unit(4, "inches")
  16700. },
  16701. {
  16702. name: "Normal",
  16703. height: math.unit(5 + 7 / 12, "feet"),
  16704. default: true
  16705. },
  16706. {
  16707. name: "Amazon",
  16708. height: math.unit(12, "feet")
  16709. },
  16710. {
  16711. name: "Giantess",
  16712. height: math.unit(160, "meters")
  16713. },
  16714. {
  16715. name: "Titaness",
  16716. height: math.unit(800, "meters")
  16717. },
  16718. ]
  16719. ))
  16720. characterMakers.push(() => makeCharacter(
  16721. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16722. {
  16723. front: {
  16724. height: math.unit(6, "feet"),
  16725. weight: math.unit(150, "lb"),
  16726. name: "Front",
  16727. image: {
  16728. source: "./media/characters/alluria/front.svg",
  16729. extra: 806 / 738,
  16730. bottom: 0.01
  16731. }
  16732. },
  16733. side: {
  16734. height: math.unit(6, "feet"),
  16735. weight: math.unit(150, "lb"),
  16736. name: "Side",
  16737. image: {
  16738. source: "./media/characters/alluria/side.svg",
  16739. extra: 800 / 750,
  16740. }
  16741. },
  16742. back: {
  16743. height: math.unit(6, "feet"),
  16744. weight: math.unit(150, "lb"),
  16745. name: "Back",
  16746. image: {
  16747. source: "./media/characters/alluria/back.svg",
  16748. extra: 806 / 738,
  16749. }
  16750. },
  16751. frontMaid: {
  16752. height: math.unit(6, "feet"),
  16753. weight: math.unit(150, "lb"),
  16754. name: "Front (Maid)",
  16755. image: {
  16756. source: "./media/characters/alluria/front-maid.svg",
  16757. extra: 806 / 738,
  16758. bottom: 0.01
  16759. }
  16760. },
  16761. sideMaid: {
  16762. height: math.unit(6, "feet"),
  16763. weight: math.unit(150, "lb"),
  16764. name: "Side (Maid)",
  16765. image: {
  16766. source: "./media/characters/alluria/side-maid.svg",
  16767. extra: 800 / 750,
  16768. bottom: 0.005
  16769. }
  16770. },
  16771. backMaid: {
  16772. height: math.unit(6, "feet"),
  16773. weight: math.unit(150, "lb"),
  16774. name: "Back (Maid)",
  16775. image: {
  16776. source: "./media/characters/alluria/back-maid.svg",
  16777. extra: 806 / 738,
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Micro",
  16784. height: math.unit(6, "inches"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(6, "feet"),
  16794. weight: math.unit(150, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/kyle/front.svg",
  16798. extra: 1069 / 962,
  16799. bottom: 77.228 / 1727.45
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Macro",
  16806. height: math.unit(150, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(6, "feet"),
  16816. weight: math.unit(300, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/duncan/front.svg",
  16820. extra: 1650 / 1482,
  16821. bottom: 0.05
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Macro",
  16828. height: math.unit(100, "feet"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(5 + 4 / 12, "feet"),
  16838. weight: math.unit(220, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/memory/front.svg",
  16842. extra: 3641 / 3545,
  16843. bottom: 0.03
  16844. }
  16845. },
  16846. back: {
  16847. height: math.unit(5 + 4 / 12, "feet"),
  16848. weight: math.unit(220, "lb"),
  16849. name: "Back",
  16850. image: {
  16851. source: "./media/characters/memory/back.svg",
  16852. extra: 3641 / 3545,
  16853. bottom: 0.025
  16854. }
  16855. },
  16856. frontSkirt: {
  16857. height: math.unit(5 + 4 / 12, "feet"),
  16858. weight: math.unit(220, "lb"),
  16859. name: "Front (Skirt)",
  16860. image: {
  16861. source: "./media/characters/memory/front-skirt.svg",
  16862. extra: 3641 / 3545,
  16863. bottom: 0.03
  16864. }
  16865. },
  16866. frontDress: {
  16867. height: math.unit(5 + 4 / 12, "feet"),
  16868. weight: math.unit(220, "lb"),
  16869. name: "Front (Dress)",
  16870. image: {
  16871. source: "./media/characters/memory/front-dress.svg",
  16872. extra: 3641 / 3545,
  16873. bottom: 0.03
  16874. }
  16875. },
  16876. },
  16877. [
  16878. {
  16879. name: "Micro",
  16880. height: math.unit(6, "inches"),
  16881. default: true
  16882. },
  16883. {
  16884. name: "Normal",
  16885. height: math.unit(5 + 4 / 12, "feet")
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16891. {
  16892. front: {
  16893. height: math.unit(4 + 11 / 12, "feet"),
  16894. weight: math.unit(100, "lb"),
  16895. name: "Front",
  16896. image: {
  16897. source: "./media/characters/luno/front.svg",
  16898. extra: 1535 / 1487,
  16899. bottom: 0.03
  16900. }
  16901. },
  16902. },
  16903. [
  16904. {
  16905. name: "Micro",
  16906. height: math.unit(3, "inches")
  16907. },
  16908. {
  16909. name: "Normal",
  16910. height: math.unit(4 + 11 / 12, "feet"),
  16911. default: true
  16912. },
  16913. {
  16914. name: "Macro",
  16915. height: math.unit(300, "feet")
  16916. },
  16917. {
  16918. name: "Megamacro",
  16919. height: math.unit(700, "miles")
  16920. },
  16921. ]
  16922. ))
  16923. characterMakers.push(() => makeCharacter(
  16924. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16925. {
  16926. front: {
  16927. height: math.unit(6 + 2 / 12, "feet"),
  16928. weight: math.unit(170, "lb"),
  16929. name: "Front",
  16930. image: {
  16931. source: "./media/characters/jamesy/front.svg",
  16932. extra: 440 / 382,
  16933. bottom: 0.005
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Micro",
  16940. height: math.unit(3, "inches")
  16941. },
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(6 + 2 / 12, "feet"),
  16945. default: true
  16946. },
  16947. {
  16948. name: "Macro",
  16949. height: math.unit(300, "feet")
  16950. },
  16951. {
  16952. name: "Megamacro",
  16953. height: math.unit(700, "miles")
  16954. },
  16955. ]
  16956. ))
  16957. characterMakers.push(() => makeCharacter(
  16958. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16959. {
  16960. front: {
  16961. height: math.unit(6, "feet"),
  16962. weight: math.unit(160, "lb"),
  16963. name: "Front",
  16964. image: {
  16965. source: "./media/characters/mark/front.svg",
  16966. extra: 3300 / 3100,
  16967. bottom: 136.42 / 3440.47
  16968. }
  16969. },
  16970. },
  16971. [
  16972. {
  16973. name: "Macro",
  16974. height: math.unit(120, "meters")
  16975. },
  16976. {
  16977. name: "Bigger Macro",
  16978. height: math.unit(350, "meters")
  16979. },
  16980. {
  16981. name: "Megamacro",
  16982. height: math.unit(8, "km"),
  16983. default: true
  16984. },
  16985. {
  16986. name: "Continental",
  16987. height: math.unit(4550, "km")
  16988. },
  16989. {
  16990. name: "Planetary",
  16991. height: math.unit(65000, "km")
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16997. {
  16998. front: {
  16999. height: math.unit(6, "feet"),
  17000. weight: math.unit(400, "lb"),
  17001. name: "Front",
  17002. image: {
  17003. source: "./media/characters/mac/front.svg",
  17004. extra: 1048 / 987.7,
  17005. bottom: 60 / 1107.6,
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Macro",
  17012. height: math.unit(500, "feet"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(5 + 2 / 12, "feet"),
  17022. weight: math.unit(190, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/bari/front.svg",
  17026. extra: 3156 / 2880,
  17027. bottom: 0.03
  17028. }
  17029. },
  17030. back: {
  17031. height: math.unit(5 + 2 / 12, "feet"),
  17032. weight: math.unit(190, "lb"),
  17033. name: "Back",
  17034. image: {
  17035. source: "./media/characters/bari/back.svg",
  17036. extra: 3260 / 2834,
  17037. bottom: 0.025
  17038. }
  17039. },
  17040. frontPlush: {
  17041. height: math.unit(5 + 2 / 12, "feet"),
  17042. weight: math.unit(190, "lb"),
  17043. name: "Front (Plush)",
  17044. image: {
  17045. source: "./media/characters/bari/front-plush.svg",
  17046. extra: 1112 / 1061,
  17047. bottom: 0.002
  17048. }
  17049. },
  17050. },
  17051. [
  17052. {
  17053. name: "Micro",
  17054. height: math.unit(3, "inches")
  17055. },
  17056. {
  17057. name: "Normal",
  17058. height: math.unit(5 + 2 / 12, "feet"),
  17059. default: true
  17060. },
  17061. {
  17062. name: "Macro",
  17063. height: math.unit(20, "feet")
  17064. },
  17065. ]
  17066. ))
  17067. characterMakers.push(() => makeCharacter(
  17068. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17069. {
  17070. front: {
  17071. height: math.unit(6 + 1 / 12, "feet"),
  17072. weight: math.unit(275, "lb"),
  17073. name: "Front",
  17074. image: {
  17075. source: "./media/characters/hunter-misha-raven/front.svg"
  17076. }
  17077. },
  17078. },
  17079. [
  17080. {
  17081. name: "Mortal",
  17082. height: math.unit(6 + 1 / 12, "feet")
  17083. },
  17084. {
  17085. name: "Divine",
  17086. height: math.unit(1.12134e34, "parsecs"),
  17087. default: true
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17093. {
  17094. front: {
  17095. height: math.unit(6 + 3 / 12, "feet"),
  17096. weight: math.unit(220, "lb"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/max-calore/front.svg",
  17100. extra: 1700 / 1648,
  17101. bottom: 0.01
  17102. }
  17103. },
  17104. back: {
  17105. height: math.unit(6 + 3 / 12, "feet"),
  17106. weight: math.unit(220, "lb"),
  17107. name: "Back",
  17108. image: {
  17109. source: "./media/characters/max-calore/back.svg",
  17110. extra: 1700 / 1648,
  17111. bottom: 0.01
  17112. }
  17113. },
  17114. },
  17115. [
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(6 + 3 / 12, "feet"),
  17119. default: true
  17120. },
  17121. ]
  17122. ))
  17123. characterMakers.push(() => makeCharacter(
  17124. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17125. {
  17126. side: {
  17127. height: math.unit(2 + 8 / 12, "feet"),
  17128. weight: math.unit(99, "lb"),
  17129. name: "Side",
  17130. image: {
  17131. source: "./media/characters/aspen/side.svg",
  17132. extra: 152 / 138,
  17133. bottom: 0.032
  17134. }
  17135. },
  17136. },
  17137. [
  17138. {
  17139. name: "Normal",
  17140. height: math.unit(2 + 8 / 12, "feet"),
  17141. default: true
  17142. },
  17143. ]
  17144. ))
  17145. characterMakers.push(() => makeCharacter(
  17146. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17147. {
  17148. side: {
  17149. height: math.unit(3 + 2 / 12, "feet"),
  17150. weight: math.unit(224, "lb"),
  17151. name: "Side",
  17152. image: {
  17153. source: "./media/characters/sheila-feral-wolf/side.svg",
  17154. extra: 179 / 166,
  17155. bottom: 0.03
  17156. }
  17157. },
  17158. },
  17159. [
  17160. {
  17161. name: "Normal",
  17162. height: math.unit(3 + 2 / 12, "feet"),
  17163. default: true
  17164. },
  17165. ]
  17166. ))
  17167. characterMakers.push(() => makeCharacter(
  17168. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17169. {
  17170. side: {
  17171. height: math.unit(1 + 9 / 12, "feet"),
  17172. weight: math.unit(38, "lb"),
  17173. name: "Side",
  17174. image: {
  17175. source: "./media/characters/michelle/side.svg",
  17176. extra: 147 / 136.7,
  17177. bottom: 0.03
  17178. }
  17179. },
  17180. },
  17181. [
  17182. {
  17183. name: "Normal",
  17184. height: math.unit(1 + 9 / 12, "feet"),
  17185. default: true
  17186. },
  17187. ]
  17188. ))
  17189. characterMakers.push(() => makeCharacter(
  17190. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17191. {
  17192. front: {
  17193. height: math.unit(1.54, "feet"),
  17194. weight: math.unit(50, "lb"),
  17195. name: "Front",
  17196. image: {
  17197. source: "./media/characters/nino/front.svg"
  17198. }
  17199. },
  17200. },
  17201. [
  17202. {
  17203. name: "Normal",
  17204. height: math.unit(1.54, "feet"),
  17205. default: true
  17206. },
  17207. ]
  17208. ))
  17209. characterMakers.push(() => makeCharacter(
  17210. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17211. {
  17212. front: {
  17213. height: math.unit(1, "feet"),
  17214. weight: math.unit(16, "lb"),
  17215. name: "Front",
  17216. image: {
  17217. source: "./media/characters/viola/front.svg"
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(1, "feet"),
  17225. default: true
  17226. },
  17227. ]
  17228. ))
  17229. characterMakers.push(() => makeCharacter(
  17230. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17231. {
  17232. front: {
  17233. height: math.unit(6 + 5 / 12, "feet"),
  17234. weight: math.unit(580, "lb"),
  17235. name: "Front",
  17236. image: {
  17237. source: "./media/characters/atlas/front.svg",
  17238. extra: 298.5 / 290,
  17239. bottom: 0.015
  17240. }
  17241. },
  17242. },
  17243. [
  17244. {
  17245. name: "Normal",
  17246. height: math.unit(6 + 5 / 12, "feet"),
  17247. default: true
  17248. },
  17249. ]
  17250. ))
  17251. characterMakers.push(() => makeCharacter(
  17252. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17253. {
  17254. side: {
  17255. height: math.unit(1 + 10 / 12, "feet"),
  17256. weight: math.unit(25, "lb"),
  17257. name: "Side",
  17258. image: {
  17259. source: "./media/characters/davy/side.svg",
  17260. extra: 200 / 170,
  17261. bottom: 0.01
  17262. }
  17263. },
  17264. },
  17265. [
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(1 + 10 / 12, "feet"),
  17269. default: true
  17270. },
  17271. ]
  17272. ))
  17273. characterMakers.push(() => makeCharacter(
  17274. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17275. {
  17276. side: {
  17277. height: math.unit(4 + 8 / 12, "feet"),
  17278. weight: math.unit(166, "lb"),
  17279. name: "Side",
  17280. image: {
  17281. source: "./media/characters/fiona/side.svg",
  17282. extra: 232 / 220,
  17283. bottom: 0.03
  17284. }
  17285. },
  17286. },
  17287. [
  17288. {
  17289. name: "Normal",
  17290. height: math.unit(4 + 8 / 12, "feet"),
  17291. default: true
  17292. },
  17293. ]
  17294. ))
  17295. characterMakers.push(() => makeCharacter(
  17296. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17297. {
  17298. front: {
  17299. height: math.unit(3, "feet"),
  17300. weight: math.unit(100, "lb"),
  17301. name: "Front",
  17302. image: {
  17303. source: "./media/characters/lyla/front.svg",
  17304. bottom: 0.1
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Normal",
  17311. height: math.unit(3, "feet"),
  17312. default: true
  17313. },
  17314. ]
  17315. ))
  17316. characterMakers.push(() => makeCharacter(
  17317. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17318. {
  17319. side: {
  17320. height: math.unit(1.8, "feet"),
  17321. weight: math.unit(44, "lb"),
  17322. name: "Side",
  17323. image: {
  17324. source: "./media/characters/perseus/side.svg",
  17325. bottom: 0.21
  17326. }
  17327. },
  17328. },
  17329. [
  17330. {
  17331. name: "Normal",
  17332. height: math.unit(1.8, "feet"),
  17333. default: true
  17334. },
  17335. ]
  17336. ))
  17337. characterMakers.push(() => makeCharacter(
  17338. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17339. {
  17340. side: {
  17341. height: math.unit(4 + 2 / 12, "feet"),
  17342. weight: math.unit(20, "lb"),
  17343. name: "Side",
  17344. image: {
  17345. source: "./media/characters/remus/side.svg"
  17346. }
  17347. },
  17348. },
  17349. [
  17350. {
  17351. name: "Normal",
  17352. height: math.unit(4 + 2 / 12, "feet"),
  17353. default: true
  17354. },
  17355. ]
  17356. ))
  17357. characterMakers.push(() => makeCharacter(
  17358. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17359. {
  17360. front: {
  17361. height: math.unit(4 + 11 / 12, "feet"),
  17362. weight: math.unit(114, "lb"),
  17363. name: "Front",
  17364. image: {
  17365. source: "./media/characters/raf/front.svg",
  17366. extra: 1504/1339,
  17367. bottom: 26/1530
  17368. }
  17369. },
  17370. side: {
  17371. height: math.unit(4 + 11 / 12, "feet"),
  17372. weight: math.unit(114, "lb"),
  17373. name: "Side",
  17374. image: {
  17375. source: "./media/characters/raf/side.svg",
  17376. extra: 1466/1316,
  17377. bottom: 29/1495
  17378. }
  17379. },
  17380. },
  17381. [
  17382. {
  17383. name: "Micro",
  17384. height: math.unit(2, "inches")
  17385. },
  17386. {
  17387. name: "Normal",
  17388. height: math.unit(4 + 11 / 12, "feet"),
  17389. default: true
  17390. },
  17391. {
  17392. name: "Macro",
  17393. height: math.unit(70, "feet")
  17394. },
  17395. ]
  17396. ))
  17397. characterMakers.push(() => makeCharacter(
  17398. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17399. {
  17400. front: {
  17401. height: math.unit(1.5, "meters"),
  17402. weight: math.unit(68, "kg"),
  17403. name: "Front",
  17404. image: {
  17405. source: "./media/characters/liam-einarr/front.svg",
  17406. extra: 2822 / 2666
  17407. }
  17408. },
  17409. back: {
  17410. height: math.unit(1.5, "meters"),
  17411. weight: math.unit(68, "kg"),
  17412. name: "Back",
  17413. image: {
  17414. source: "./media/characters/liam-einarr/back.svg",
  17415. extra: 2822 / 2666,
  17416. bottom: 0.015
  17417. }
  17418. },
  17419. },
  17420. [
  17421. {
  17422. name: "Normal",
  17423. height: math.unit(1.5, "meters"),
  17424. default: true
  17425. },
  17426. {
  17427. name: "Macro",
  17428. height: math.unit(150, "meters")
  17429. },
  17430. {
  17431. name: "Megamacro",
  17432. height: math.unit(35, "km")
  17433. },
  17434. ]
  17435. ))
  17436. characterMakers.push(() => makeCharacter(
  17437. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17438. {
  17439. front: {
  17440. height: math.unit(6, "feet"),
  17441. weight: math.unit(75, "kg"),
  17442. name: "Front",
  17443. image: {
  17444. source: "./media/characters/linda/front.svg",
  17445. extra: 930 / 874,
  17446. bottom: 0.004
  17447. }
  17448. },
  17449. },
  17450. [
  17451. {
  17452. name: "Normal",
  17453. height: math.unit(6, "feet"),
  17454. default: true
  17455. },
  17456. ]
  17457. ))
  17458. characterMakers.push(() => makeCharacter(
  17459. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17460. {
  17461. front: {
  17462. height: math.unit(6 + 8 / 12, "feet"),
  17463. weight: math.unit(220, "lb"),
  17464. name: "Front",
  17465. image: {
  17466. source: "./media/characters/caylex/front.svg",
  17467. extra: 821 / 772,
  17468. bottom: 0.07
  17469. }
  17470. },
  17471. back: {
  17472. height: math.unit(6 + 8 / 12, "feet"),
  17473. weight: math.unit(220, "lb"),
  17474. name: "Back",
  17475. image: {
  17476. source: "./media/characters/caylex/back.svg",
  17477. extra: 821 / 772,
  17478. bottom: 0.022
  17479. }
  17480. },
  17481. hand: {
  17482. height: math.unit(1.25, "feet"),
  17483. name: "Hand",
  17484. image: {
  17485. source: "./media/characters/caylex/hand.svg"
  17486. }
  17487. },
  17488. foot: {
  17489. height: math.unit(1.6, "feet"),
  17490. name: "Foot",
  17491. image: {
  17492. source: "./media/characters/caylex/foot.svg"
  17493. }
  17494. },
  17495. armored: {
  17496. height: math.unit(6 + 8 / 12, "feet"),
  17497. weight: math.unit(250, "lb"),
  17498. name: "Armored",
  17499. image: {
  17500. source: "./media/characters/caylex/armored.svg",
  17501. extra: 1420 / 1310,
  17502. bottom: 0.045
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(6 + 8 / 12, "feet"),
  17510. default: true
  17511. },
  17512. {
  17513. name: "Normal+",
  17514. height: math.unit(12, "feet")
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17520. {
  17521. front: {
  17522. height: math.unit(7 + 6 / 12, "feet"),
  17523. weight: math.unit(288, "lb"),
  17524. name: "Front",
  17525. image: {
  17526. source: "./media/characters/alana/front.svg",
  17527. extra: 679 / 653,
  17528. bottom: 22.5 / 701
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(7 + 6 / 12, "feet")
  17536. },
  17537. {
  17538. name: "Large",
  17539. height: math.unit(50, "feet")
  17540. },
  17541. {
  17542. name: "Macro",
  17543. height: math.unit(100, "feet"),
  17544. default: true
  17545. },
  17546. {
  17547. name: "Macro+",
  17548. height: math.unit(200, "feet")
  17549. },
  17550. ]
  17551. ))
  17552. characterMakers.push(() => makeCharacter(
  17553. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17554. {
  17555. front: {
  17556. height: math.unit(6 + 1 / 12, "feet"),
  17557. weight: math.unit(210, "lb"),
  17558. name: "Front",
  17559. image: {
  17560. source: "./media/characters/hasani/front.svg",
  17561. extra: 244 / 232,
  17562. bottom: 0.01
  17563. }
  17564. },
  17565. back: {
  17566. height: math.unit(6 + 1 / 12, "feet"),
  17567. weight: math.unit(210, "lb"),
  17568. name: "Back",
  17569. image: {
  17570. source: "./media/characters/hasani/back.svg",
  17571. extra: 244 / 232,
  17572. bottom: 0.01
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(6 + 1 / 12, "feet")
  17580. },
  17581. {
  17582. name: "Macro",
  17583. height: math.unit(175, "feet"),
  17584. default: true
  17585. },
  17586. ]
  17587. ))
  17588. characterMakers.push(() => makeCharacter(
  17589. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17590. {
  17591. front: {
  17592. height: math.unit(1.82, "meters"),
  17593. weight: math.unit(140, "lb"),
  17594. name: "Front",
  17595. image: {
  17596. source: "./media/characters/nita/front.svg",
  17597. extra: 2473 / 2363,
  17598. bottom: 0.01
  17599. }
  17600. },
  17601. },
  17602. [
  17603. {
  17604. name: "Normal",
  17605. height: math.unit(1.82, "m")
  17606. },
  17607. {
  17608. name: "Macro",
  17609. height: math.unit(300, "m")
  17610. },
  17611. {
  17612. name: "Mistake Canon",
  17613. height: math.unit(0.5, "miles"),
  17614. default: true
  17615. },
  17616. {
  17617. name: "Big Mistake",
  17618. height: math.unit(13, "miles")
  17619. },
  17620. {
  17621. name: "Playing God",
  17622. height: math.unit(2450, "miles")
  17623. },
  17624. ]
  17625. ))
  17626. characterMakers.push(() => makeCharacter(
  17627. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17628. {
  17629. front: {
  17630. height: math.unit(4, "feet"),
  17631. weight: math.unit(120, "lb"),
  17632. name: "Front",
  17633. image: {
  17634. source: "./media/characters/shiriko/front.svg",
  17635. extra: 970/934,
  17636. bottom: 5/975
  17637. }
  17638. },
  17639. },
  17640. [
  17641. {
  17642. name: "Normal",
  17643. height: math.unit(4, "feet"),
  17644. default: true
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17650. {
  17651. front: {
  17652. height: math.unit(6, "feet"),
  17653. name: "front",
  17654. image: {
  17655. source: "./media/characters/deja/front.svg",
  17656. extra: 926 / 840,
  17657. bottom: 0.07
  17658. }
  17659. },
  17660. },
  17661. [
  17662. {
  17663. name: "Planck Length",
  17664. height: math.unit(1.6e-35, "meters")
  17665. },
  17666. {
  17667. name: "Normal",
  17668. height: math.unit(30.48, "meters"),
  17669. default: true
  17670. },
  17671. {
  17672. name: "Universal",
  17673. height: math.unit(8.8e26, "meters")
  17674. },
  17675. ]
  17676. ))
  17677. characterMakers.push(() => makeCharacter(
  17678. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17679. {
  17680. side: {
  17681. height: math.unit(8, "feet"),
  17682. weight: math.unit(6300, "lb"),
  17683. name: "Side",
  17684. image: {
  17685. source: "./media/characters/anima/side.svg",
  17686. bottom: 0.035
  17687. }
  17688. },
  17689. },
  17690. [
  17691. {
  17692. name: "Normal",
  17693. height: math.unit(8, "feet"),
  17694. default: true
  17695. },
  17696. ]
  17697. ))
  17698. characterMakers.push(() => makeCharacter(
  17699. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17700. {
  17701. front: {
  17702. height: math.unit(8, "feet"),
  17703. weight: math.unit(350, "lb"),
  17704. name: "Front",
  17705. image: {
  17706. source: "./media/characters/bianca/front.svg",
  17707. extra: 234 / 225,
  17708. bottom: 0.03
  17709. }
  17710. },
  17711. },
  17712. [
  17713. {
  17714. name: "Normal",
  17715. height: math.unit(8, "feet"),
  17716. default: true
  17717. },
  17718. ]
  17719. ))
  17720. characterMakers.push(() => makeCharacter(
  17721. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17722. {
  17723. front: {
  17724. height: math.unit(6, "feet"),
  17725. weight: math.unit(150, "lb"),
  17726. name: "Front",
  17727. image: {
  17728. source: "./media/characters/adinia/front.svg",
  17729. extra: 1845 / 1672,
  17730. bottom: 0.02
  17731. }
  17732. },
  17733. back: {
  17734. height: math.unit(6, "feet"),
  17735. weight: math.unit(150, "lb"),
  17736. name: "Back",
  17737. image: {
  17738. source: "./media/characters/adinia/back.svg",
  17739. extra: 1845 / 1672,
  17740. bottom: 0.002
  17741. }
  17742. },
  17743. },
  17744. [
  17745. {
  17746. name: "Normal",
  17747. height: math.unit(11 + 5 / 12, "feet"),
  17748. default: true
  17749. },
  17750. ]
  17751. ))
  17752. characterMakers.push(() => makeCharacter(
  17753. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17754. {
  17755. front: {
  17756. height: math.unit(3, "meters"),
  17757. weight: math.unit(200, "kg"),
  17758. name: "Front",
  17759. image: {
  17760. source: "./media/characters/lykasa/front.svg",
  17761. extra: 1076 / 976,
  17762. bottom: 0.06
  17763. }
  17764. },
  17765. },
  17766. [
  17767. {
  17768. name: "Normal",
  17769. height: math.unit(3, "meters")
  17770. },
  17771. {
  17772. name: "Kaiju",
  17773. height: math.unit(120, "meters"),
  17774. default: true
  17775. },
  17776. {
  17777. name: "Mega Kaiju",
  17778. height: math.unit(240, "km")
  17779. },
  17780. {
  17781. name: "Giga Kaiju",
  17782. height: math.unit(400, "megameters")
  17783. },
  17784. {
  17785. name: "Tera Kaiju",
  17786. height: math.unit(800, "gigameters")
  17787. },
  17788. {
  17789. name: "Kaiju Dragon Goddess",
  17790. height: math.unit(26, "zettaparsecs")
  17791. },
  17792. ]
  17793. ))
  17794. characterMakers.push(() => makeCharacter(
  17795. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17796. {
  17797. side: {
  17798. height: math.unit(283 / 124 * 6, "feet"),
  17799. weight: math.unit(35000, "lb"),
  17800. name: "Side",
  17801. image: {
  17802. source: "./media/characters/malfaren/side.svg",
  17803. extra: 2500 / 1010,
  17804. bottom: 0.01
  17805. }
  17806. },
  17807. front: {
  17808. height: math.unit(22.36, "feet"),
  17809. weight: math.unit(35000, "lb"),
  17810. name: "Front",
  17811. image: {
  17812. source: "./media/characters/malfaren/front.svg",
  17813. extra: 1631 / 1476,
  17814. bottom: 0.01
  17815. }
  17816. },
  17817. maw: {
  17818. height: math.unit(6.9, "feet"),
  17819. name: "Maw",
  17820. image: {
  17821. source: "./media/characters/malfaren/maw.svg"
  17822. }
  17823. },
  17824. },
  17825. [
  17826. {
  17827. name: "Big",
  17828. height: math.unit(283 / 162 * 6, "feet"),
  17829. },
  17830. {
  17831. name: "Bigger",
  17832. height: math.unit(283 / 124 * 6, "feet")
  17833. },
  17834. {
  17835. name: "Massive",
  17836. height: math.unit(283 / 92 * 6, "feet"),
  17837. default: true
  17838. },
  17839. {
  17840. name: "👀💦",
  17841. height: math.unit(283 / 73 * 6, "feet"),
  17842. },
  17843. ]
  17844. ))
  17845. characterMakers.push(() => makeCharacter(
  17846. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17847. {
  17848. front: {
  17849. height: math.unit(1.7, "m"),
  17850. weight: math.unit(70, "kg"),
  17851. name: "Front",
  17852. image: {
  17853. source: "./media/characters/kernel/front.svg",
  17854. extra: 222 / 210,
  17855. bottom: 0.007
  17856. }
  17857. },
  17858. },
  17859. [
  17860. {
  17861. name: "Nano",
  17862. height: math.unit(17, "micrometers")
  17863. },
  17864. {
  17865. name: "Micro",
  17866. height: math.unit(1.7, "mm")
  17867. },
  17868. {
  17869. name: "Small",
  17870. height: math.unit(1.7, "cm")
  17871. },
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(1.7, "m"),
  17875. default: true
  17876. },
  17877. ]
  17878. ))
  17879. characterMakers.push(() => makeCharacter(
  17880. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17881. {
  17882. front: {
  17883. height: math.unit(1.75, "meters"),
  17884. weight: math.unit(65, "kg"),
  17885. name: "Front",
  17886. image: {
  17887. source: "./media/characters/jayne-folest/front.svg",
  17888. extra: 2115 / 2007,
  17889. bottom: 0.02
  17890. }
  17891. },
  17892. back: {
  17893. height: math.unit(1.75, "meters"),
  17894. weight: math.unit(65, "kg"),
  17895. name: "Back",
  17896. image: {
  17897. source: "./media/characters/jayne-folest/back.svg",
  17898. extra: 2115 / 2007,
  17899. bottom: 0.005
  17900. }
  17901. },
  17902. frontClothed: {
  17903. height: math.unit(1.75, "meters"),
  17904. weight: math.unit(65, "kg"),
  17905. name: "Front (Clothed)",
  17906. image: {
  17907. source: "./media/characters/jayne-folest/front-clothed.svg",
  17908. extra: 2115 / 2007,
  17909. bottom: 0.035
  17910. }
  17911. },
  17912. hand: {
  17913. height: math.unit(1 / 1.260, "feet"),
  17914. name: "Hand",
  17915. image: {
  17916. source: "./media/characters/jayne-folest/hand.svg"
  17917. }
  17918. },
  17919. foot: {
  17920. height: math.unit(1 / 0.918, "feet"),
  17921. name: "Foot",
  17922. image: {
  17923. source: "./media/characters/jayne-folest/foot.svg"
  17924. }
  17925. },
  17926. },
  17927. [
  17928. {
  17929. name: "Micro",
  17930. height: math.unit(4, "cm")
  17931. },
  17932. {
  17933. name: "Normal",
  17934. height: math.unit(1.75, "meters")
  17935. },
  17936. {
  17937. name: "Macro",
  17938. height: math.unit(47.5, "meters"),
  17939. default: true
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(180, "cm"),
  17948. weight: math.unit(70, "kg"),
  17949. name: "Front",
  17950. image: {
  17951. source: "./media/characters/algier/front.svg",
  17952. extra: 596 / 572,
  17953. bottom: 0.04
  17954. }
  17955. },
  17956. back: {
  17957. height: math.unit(180, "cm"),
  17958. weight: math.unit(70, "kg"),
  17959. name: "Back",
  17960. image: {
  17961. source: "./media/characters/algier/back.svg",
  17962. extra: 596 / 572,
  17963. bottom: 0.025
  17964. }
  17965. },
  17966. frontdressed: {
  17967. height: math.unit(180, "cm"),
  17968. weight: math.unit(150, "kg"),
  17969. name: "Front-dressed",
  17970. image: {
  17971. source: "./media/characters/algier/front-dressed.svg",
  17972. extra: 596 / 572,
  17973. bottom: 0.038
  17974. }
  17975. },
  17976. },
  17977. [
  17978. {
  17979. name: "Micro",
  17980. height: math.unit(5, "cm")
  17981. },
  17982. {
  17983. name: "Normal",
  17984. height: math.unit(180, "cm"),
  17985. default: true
  17986. },
  17987. {
  17988. name: "Macro",
  17989. height: math.unit(64, "m")
  17990. },
  17991. ]
  17992. ))
  17993. characterMakers.push(() => makeCharacter(
  17994. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17995. {
  17996. upright: {
  17997. height: math.unit(7, "feet"),
  17998. weight: math.unit(300, "lb"),
  17999. name: "Upright",
  18000. image: {
  18001. source: "./media/characters/pretzel/upright.svg",
  18002. extra: 534 / 522,
  18003. bottom: 0.065
  18004. }
  18005. },
  18006. sprawling: {
  18007. height: math.unit(3.75, "feet"),
  18008. weight: math.unit(300, "lb"),
  18009. name: "Sprawling",
  18010. image: {
  18011. source: "./media/characters/pretzel/sprawling.svg",
  18012. extra: 314 / 281,
  18013. bottom: 0.1
  18014. }
  18015. },
  18016. tongue: {
  18017. height: math.unit(2, "feet"),
  18018. name: "Tongue",
  18019. image: {
  18020. source: "./media/characters/pretzel/tongue.svg"
  18021. }
  18022. },
  18023. },
  18024. [
  18025. {
  18026. name: "Normal",
  18027. height: math.unit(7, "feet"),
  18028. default: true
  18029. },
  18030. {
  18031. name: "Oversized",
  18032. height: math.unit(15, "feet")
  18033. },
  18034. {
  18035. name: "Huge",
  18036. height: math.unit(30, "feet")
  18037. },
  18038. {
  18039. name: "Macro",
  18040. height: math.unit(250, "feet")
  18041. },
  18042. ]
  18043. ))
  18044. characterMakers.push(() => makeCharacter(
  18045. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18046. {
  18047. sideFront: {
  18048. height: math.unit(5 + 2 / 12, "feet"),
  18049. weight: math.unit(120, "lb"),
  18050. name: "Front Side",
  18051. image: {
  18052. source: "./media/characters/roxi/side-front.svg",
  18053. extra: 2924 / 2717,
  18054. bottom: 0.08
  18055. }
  18056. },
  18057. sideBack: {
  18058. height: math.unit(5 + 2 / 12, "feet"),
  18059. weight: math.unit(120, "lb"),
  18060. name: "Back Side",
  18061. image: {
  18062. source: "./media/characters/roxi/side-back.svg",
  18063. extra: 2904 / 2693,
  18064. bottom: 0.06
  18065. }
  18066. },
  18067. front: {
  18068. height: math.unit(5 + 2 / 12, "feet"),
  18069. weight: math.unit(120, "lb"),
  18070. name: "Front",
  18071. image: {
  18072. source: "./media/characters/roxi/front.svg",
  18073. extra: 2028 / 1907,
  18074. bottom: 0.01
  18075. }
  18076. },
  18077. frontAlt: {
  18078. height: math.unit(5 + 2 / 12, "feet"),
  18079. weight: math.unit(120, "lb"),
  18080. name: "Front (Alt)",
  18081. image: {
  18082. source: "./media/characters/roxi/front-alt.svg",
  18083. extra: 1828 / 1798,
  18084. bottom: 0.01
  18085. }
  18086. },
  18087. sitting: {
  18088. height: math.unit(2.8, "feet"),
  18089. weight: math.unit(120, "lb"),
  18090. name: "Sitting",
  18091. image: {
  18092. source: "./media/characters/roxi/sitting.svg",
  18093. extra: 2660 / 2462,
  18094. bottom: 0.1
  18095. }
  18096. },
  18097. },
  18098. [
  18099. {
  18100. name: "Normal",
  18101. height: math.unit(5 + 2 / 12, "feet"),
  18102. default: true
  18103. },
  18104. ]
  18105. ))
  18106. characterMakers.push(() => makeCharacter(
  18107. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18108. {
  18109. side: {
  18110. height: math.unit(55, "feet"),
  18111. weight: math.unit(153, "tons"),
  18112. name: "Side",
  18113. image: {
  18114. source: "./media/characters/shadow/side.svg",
  18115. extra: 701 / 628,
  18116. bottom: 0.02
  18117. }
  18118. },
  18119. flying: {
  18120. height: math.unit(145, "feet"),
  18121. weight: math.unit(153, "tons"),
  18122. name: "Flying",
  18123. image: {
  18124. source: "./media/characters/shadow/flying.svg"
  18125. }
  18126. },
  18127. },
  18128. [
  18129. {
  18130. name: "Normal",
  18131. height: math.unit(55, "feet"),
  18132. default: true
  18133. },
  18134. ]
  18135. ))
  18136. characterMakers.push(() => makeCharacter(
  18137. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18138. {
  18139. front: {
  18140. height: math.unit(6, "feet"),
  18141. weight: math.unit(200, "lb"),
  18142. name: "Front",
  18143. image: {
  18144. source: "./media/characters/marcie/front.svg",
  18145. extra: 960 / 876,
  18146. bottom: 58 / 1017.87
  18147. }
  18148. },
  18149. },
  18150. [
  18151. {
  18152. name: "Macro",
  18153. height: math.unit(1, "mile"),
  18154. default: true
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(7, "feet"),
  18163. weight: math.unit(200, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/kachina/front.svg",
  18167. extra: 1290.68 / 1119,
  18168. bottom: 36.5 / 1327.18
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Normal",
  18175. height: math.unit(7, "feet"),
  18176. default: true
  18177. },
  18178. ]
  18179. ))
  18180. characterMakers.push(() => makeCharacter(
  18181. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18182. {
  18183. looking: {
  18184. height: math.unit(2, "meters"),
  18185. weight: math.unit(300, "kg"),
  18186. name: "Looking",
  18187. image: {
  18188. source: "./media/characters/kash/looking.svg",
  18189. extra: 474 / 344,
  18190. bottom: 0.03
  18191. }
  18192. },
  18193. side: {
  18194. height: math.unit(2, "meters"),
  18195. weight: math.unit(300, "kg"),
  18196. name: "Side",
  18197. image: {
  18198. source: "./media/characters/kash/side.svg",
  18199. extra: 302 / 251,
  18200. bottom: 0.03
  18201. }
  18202. },
  18203. front: {
  18204. height: math.unit(2, "meters"),
  18205. weight: math.unit(300, "kg"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/kash/front.svg",
  18209. extra: 495 / 360,
  18210. bottom: 0.015
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Normal",
  18217. height: math.unit(2, "meters"),
  18218. default: true
  18219. },
  18220. {
  18221. name: "Big",
  18222. height: math.unit(3, "meters")
  18223. },
  18224. {
  18225. name: "Large",
  18226. height: math.unit(5, "meters")
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18232. {
  18233. feeding: {
  18234. height: math.unit(6.7, "feet"),
  18235. weight: math.unit(350, "lb"),
  18236. name: "Feeding",
  18237. image: {
  18238. source: "./media/characters/lalim/feeding.svg",
  18239. }
  18240. },
  18241. },
  18242. [
  18243. {
  18244. name: "Normal",
  18245. height: math.unit(6.7, "feet"),
  18246. default: true
  18247. },
  18248. ]
  18249. ))
  18250. characterMakers.push(() => makeCharacter(
  18251. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18252. {
  18253. front: {
  18254. height: math.unit(9.5, "feet"),
  18255. weight: math.unit(600, "lb"),
  18256. name: "Front",
  18257. image: {
  18258. source: "./media/characters/de'vout/front.svg",
  18259. extra: 1443 / 1328,
  18260. bottom: 0.025
  18261. }
  18262. },
  18263. back: {
  18264. height: math.unit(9.5, "feet"),
  18265. weight: math.unit(600, "lb"),
  18266. name: "Back",
  18267. image: {
  18268. source: "./media/characters/de'vout/back.svg",
  18269. extra: 1443 / 1328
  18270. }
  18271. },
  18272. frontDressed: {
  18273. height: math.unit(9.5, "feet"),
  18274. weight: math.unit(600, "lb"),
  18275. name: "Front (Dressed",
  18276. image: {
  18277. source: "./media/characters/de'vout/front-dressed.svg",
  18278. extra: 1443 / 1328,
  18279. bottom: 0.025
  18280. }
  18281. },
  18282. backDressed: {
  18283. height: math.unit(9.5, "feet"),
  18284. weight: math.unit(600, "lb"),
  18285. name: "Back (Dressed",
  18286. image: {
  18287. source: "./media/characters/de'vout/back-dressed.svg",
  18288. extra: 1443 / 1328
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Normal",
  18295. height: math.unit(9.5, "feet"),
  18296. default: true
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(8, "feet"),
  18305. weight: math.unit(225, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/talana/front.svg",
  18309. extra: 1410 / 1300,
  18310. bottom: 0.015
  18311. }
  18312. },
  18313. frontDressed: {
  18314. height: math.unit(8, "feet"),
  18315. weight: math.unit(225, "lb"),
  18316. name: "Front (Dressed",
  18317. image: {
  18318. source: "./media/characters/talana/front-dressed.svg",
  18319. extra: 1410 / 1300,
  18320. bottom: 0.015
  18321. }
  18322. },
  18323. },
  18324. [
  18325. {
  18326. name: "Normal",
  18327. height: math.unit(8, "feet"),
  18328. default: true
  18329. },
  18330. ]
  18331. ))
  18332. characterMakers.push(() => makeCharacter(
  18333. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18334. {
  18335. side: {
  18336. height: math.unit(7.2, "feet"),
  18337. weight: math.unit(150, "lb"),
  18338. name: "Side",
  18339. image: {
  18340. source: "./media/characters/xeauvok/side.svg",
  18341. extra: 1975 / 1523,
  18342. bottom: 0.07
  18343. }
  18344. },
  18345. },
  18346. [
  18347. {
  18348. name: "Normal",
  18349. height: math.unit(7.2, "feet"),
  18350. default: true
  18351. },
  18352. ]
  18353. ))
  18354. characterMakers.push(() => makeCharacter(
  18355. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18356. {
  18357. side: {
  18358. height: math.unit(10, "feet"),
  18359. weight: math.unit(900, "kg"),
  18360. name: "Side",
  18361. image: {
  18362. source: "./media/characters/zara/side.svg",
  18363. extra: 504 / 498
  18364. }
  18365. },
  18366. },
  18367. [
  18368. {
  18369. name: "Normal",
  18370. height: math.unit(10, "feet"),
  18371. default: true
  18372. },
  18373. ]
  18374. ))
  18375. characterMakers.push(() => makeCharacter(
  18376. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18377. {
  18378. side: {
  18379. height: math.unit(6, "feet"),
  18380. weight: math.unit(150, "lb"),
  18381. name: "Side",
  18382. image: {
  18383. source: "./media/characters/richard-dragon/side.svg",
  18384. extra: 845 / 340,
  18385. bottom: 0.017
  18386. }
  18387. },
  18388. maw: {
  18389. height: math.unit(2.97, "feet"),
  18390. name: "Maw",
  18391. image: {
  18392. source: "./media/characters/richard-dragon/maw.svg"
  18393. }
  18394. },
  18395. },
  18396. [
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18401. {
  18402. front: {
  18403. height: math.unit(4, "feet"),
  18404. weight: math.unit(100, "lb"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/richard-smeargle/front.svg",
  18408. extra: 2952 / 2820,
  18409. bottom: 0.028
  18410. }
  18411. },
  18412. },
  18413. [
  18414. {
  18415. name: "Normal",
  18416. height: math.unit(4, "feet"),
  18417. default: true
  18418. },
  18419. {
  18420. name: "Dynamax",
  18421. height: math.unit(20, "meters")
  18422. },
  18423. ]
  18424. ))
  18425. characterMakers.push(() => makeCharacter(
  18426. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18427. {
  18428. front: {
  18429. height: math.unit(6, "feet"),
  18430. weight: math.unit(110, "lb"),
  18431. name: "Front",
  18432. image: {
  18433. source: "./media/characters/klay/front.svg",
  18434. extra: 962 / 883,
  18435. bottom: 0.04
  18436. }
  18437. },
  18438. back: {
  18439. height: math.unit(6, "feet"),
  18440. weight: math.unit(110, "lb"),
  18441. name: "Back",
  18442. image: {
  18443. source: "./media/characters/klay/back.svg",
  18444. extra: 962 / 883
  18445. }
  18446. },
  18447. beans: {
  18448. height: math.unit(1.15, "feet"),
  18449. name: "Beans",
  18450. image: {
  18451. source: "./media/characters/klay/beans.svg"
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Micro",
  18458. height: math.unit(6, "inches")
  18459. },
  18460. {
  18461. name: "Mini",
  18462. height: math.unit(3, "feet")
  18463. },
  18464. {
  18465. name: "Normal",
  18466. height: math.unit(6, "feet"),
  18467. default: true
  18468. },
  18469. {
  18470. name: "Big",
  18471. height: math.unit(25, "feet")
  18472. },
  18473. {
  18474. name: "Macro",
  18475. height: math.unit(100, "feet")
  18476. },
  18477. {
  18478. name: "Megamacro",
  18479. height: math.unit(400, "feet")
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(6, "feet"),
  18488. weight: math.unit(160, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/marcus/front.svg",
  18492. extra: 734 / 676,
  18493. bottom: 0.03
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Little",
  18500. height: math.unit(6, "feet")
  18501. },
  18502. {
  18503. name: "Normal",
  18504. height: math.unit(110, "feet"),
  18505. default: true
  18506. },
  18507. {
  18508. name: "Macro",
  18509. height: math.unit(250, "feet")
  18510. },
  18511. {
  18512. name: "Megamacro",
  18513. height: math.unit(1000, "feet")
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18519. {
  18520. front: {
  18521. height: math.unit(7, "feet"),
  18522. weight: math.unit(275, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/claude-delroute/front.svg",
  18526. extra: 902/827,
  18527. bottom: 26/928
  18528. }
  18529. },
  18530. side: {
  18531. height: math.unit(7, "feet"),
  18532. weight: math.unit(275, "lb"),
  18533. name: "Side",
  18534. image: {
  18535. source: "./media/characters/claude-delroute/side.svg",
  18536. extra: 908/853,
  18537. bottom: 16/924
  18538. }
  18539. },
  18540. back: {
  18541. height: math.unit(7, "feet"),
  18542. weight: math.unit(275, "lb"),
  18543. name: "Back",
  18544. image: {
  18545. source: "./media/characters/claude-delroute/back.svg",
  18546. extra: 911/829,
  18547. bottom: 18/929
  18548. }
  18549. },
  18550. maw: {
  18551. height: math.unit(0.6407, "meters"),
  18552. name: "Maw",
  18553. image: {
  18554. source: "./media/characters/claude-delroute/maw.svg"
  18555. }
  18556. },
  18557. },
  18558. [
  18559. {
  18560. name: "Normal",
  18561. height: math.unit(7, "feet"),
  18562. default: true
  18563. },
  18564. {
  18565. name: "Lorge",
  18566. height: math.unit(20, "feet")
  18567. },
  18568. ]
  18569. ))
  18570. characterMakers.push(() => makeCharacter(
  18571. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18572. {
  18573. front: {
  18574. height: math.unit(8 + 4 / 12, "feet"),
  18575. weight: math.unit(600, "lb"),
  18576. name: "Front",
  18577. image: {
  18578. source: "./media/characters/dragonien/front.svg",
  18579. extra: 100 / 94,
  18580. bottom: 3.3 / 103.3445
  18581. }
  18582. },
  18583. back: {
  18584. height: math.unit(8 + 4 / 12, "feet"),
  18585. weight: math.unit(600, "lb"),
  18586. name: "Back",
  18587. image: {
  18588. source: "./media/characters/dragonien/back.svg",
  18589. extra: 776 / 746,
  18590. bottom: 6.4 / 782.0616
  18591. }
  18592. },
  18593. foot: {
  18594. height: math.unit(1.54, "feet"),
  18595. name: "Foot",
  18596. image: {
  18597. source: "./media/characters/dragonien/foot.svg",
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(8 + 4 / 12, "feet"),
  18605. default: true
  18606. },
  18607. {
  18608. name: "Macro",
  18609. height: math.unit(200, "feet")
  18610. },
  18611. {
  18612. name: "Megamacro",
  18613. height: math.unit(1, "mile")
  18614. },
  18615. {
  18616. name: "Gigamacro",
  18617. height: math.unit(1000, "miles")
  18618. },
  18619. ]
  18620. ))
  18621. characterMakers.push(() => makeCharacter(
  18622. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18623. {
  18624. front: {
  18625. height: math.unit(5 + 2 / 12, "feet"),
  18626. weight: math.unit(110, "lb"),
  18627. name: "Front",
  18628. image: {
  18629. source: "./media/characters/desta/front.svg",
  18630. extra: 767 / 726,
  18631. bottom: 11.7 / 779
  18632. }
  18633. },
  18634. back: {
  18635. height: math.unit(5 + 2 / 12, "feet"),
  18636. weight: math.unit(110, "lb"),
  18637. name: "Back",
  18638. image: {
  18639. source: "./media/characters/desta/back.svg",
  18640. extra: 777 / 728,
  18641. bottom: 6 / 784
  18642. }
  18643. },
  18644. frontAlt: {
  18645. height: math.unit(5 + 2 / 12, "feet"),
  18646. weight: math.unit(110, "lb"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/desta/front-alt.svg",
  18650. extra: 1482 / 1417
  18651. }
  18652. },
  18653. side: {
  18654. height: math.unit(5 + 2 / 12, "feet"),
  18655. weight: math.unit(110, "lb"),
  18656. name: "Side",
  18657. image: {
  18658. source: "./media/characters/desta/side.svg",
  18659. extra: 2579 / 2491,
  18660. bottom: 0.053
  18661. }
  18662. },
  18663. },
  18664. [
  18665. {
  18666. name: "Micro",
  18667. height: math.unit(6, "inches")
  18668. },
  18669. {
  18670. name: "Normal",
  18671. height: math.unit(5 + 2 / 12, "feet"),
  18672. default: true
  18673. },
  18674. {
  18675. name: "Macro",
  18676. height: math.unit(62, "feet")
  18677. },
  18678. {
  18679. name: "Megamacro",
  18680. height: math.unit(1800, "feet")
  18681. },
  18682. ]
  18683. ))
  18684. characterMakers.push(() => makeCharacter(
  18685. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18686. {
  18687. front: {
  18688. height: math.unit(10, "feet"),
  18689. weight: math.unit(700, "lb"),
  18690. name: "Front",
  18691. image: {
  18692. source: "./media/characters/storm-alystar/front.svg",
  18693. extra: 2112 / 1898,
  18694. bottom: 0.034
  18695. }
  18696. },
  18697. },
  18698. [
  18699. {
  18700. name: "Micro",
  18701. height: math.unit(3.5, "inches")
  18702. },
  18703. {
  18704. name: "Normal",
  18705. height: math.unit(10, "feet"),
  18706. default: true
  18707. },
  18708. {
  18709. name: "Macro",
  18710. height: math.unit(400, "feet")
  18711. },
  18712. {
  18713. name: "Deific",
  18714. height: math.unit(60, "miles")
  18715. },
  18716. ]
  18717. ))
  18718. characterMakers.push(() => makeCharacter(
  18719. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18720. {
  18721. front: {
  18722. height: math.unit(2.35, "meters"),
  18723. weight: math.unit(119, "kg"),
  18724. name: "Front",
  18725. image: {
  18726. source: "./media/characters/ilia/front.svg",
  18727. extra: 1285 / 1255,
  18728. bottom: 0.06
  18729. }
  18730. },
  18731. },
  18732. [
  18733. {
  18734. name: "Normal",
  18735. height: math.unit(2.35, "meters")
  18736. },
  18737. {
  18738. name: "Macro",
  18739. height: math.unit(140, "meters"),
  18740. default: true
  18741. },
  18742. {
  18743. name: "Megamacro",
  18744. height: math.unit(100, "miles")
  18745. },
  18746. ]
  18747. ))
  18748. characterMakers.push(() => makeCharacter(
  18749. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18750. {
  18751. front: {
  18752. height: math.unit(6 + 5 / 12, "feet"),
  18753. weight: math.unit(190, "lb"),
  18754. name: "Front",
  18755. image: {
  18756. source: "./media/characters/kingdead/front.svg",
  18757. extra: 1228 / 1177
  18758. }
  18759. },
  18760. },
  18761. [
  18762. {
  18763. name: "Micro",
  18764. height: math.unit(7, "inches")
  18765. },
  18766. {
  18767. name: "Normal",
  18768. height: math.unit(6 + 5 / 12, "feet")
  18769. },
  18770. {
  18771. name: "Macro",
  18772. height: math.unit(150, "feet"),
  18773. default: true
  18774. },
  18775. {
  18776. name: "Megamacro",
  18777. height: math.unit(200, "miles")
  18778. },
  18779. ]
  18780. ))
  18781. characterMakers.push(() => makeCharacter(
  18782. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18783. {
  18784. front: {
  18785. height: math.unit(8, "feet"),
  18786. weight: math.unit(600, "lb"),
  18787. name: "Front",
  18788. image: {
  18789. source: "./media/characters/kyrehx/front.svg",
  18790. extra: 1195 / 1095,
  18791. bottom: 0.034
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Micro",
  18798. height: math.unit(2, "inches")
  18799. },
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(8, "feet"),
  18803. default: true
  18804. },
  18805. {
  18806. name: "Macro",
  18807. height: math.unit(255, "feet")
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18816. weight: math.unit(184, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/xang/front.svg",
  18820. extra: 845 / 755
  18821. }
  18822. },
  18823. },
  18824. [
  18825. {
  18826. name: "Normal",
  18827. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18828. default: true
  18829. },
  18830. {
  18831. name: "Macro",
  18832. height: math.unit(0.935 * 146, "feet")
  18833. },
  18834. {
  18835. name: "Megamacro",
  18836. height: math.unit(0.935 * 3, "miles")
  18837. },
  18838. ]
  18839. ))
  18840. characterMakers.push(() => makeCharacter(
  18841. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18842. {
  18843. frontDressed: {
  18844. height: math.unit(5 + 7 / 12, "feet"),
  18845. weight: math.unit(140, "lb"),
  18846. name: "Front (Dressed)",
  18847. image: {
  18848. source: "./media/characters/doc-weardno/front-dressed.svg",
  18849. extra: 263 / 234
  18850. }
  18851. },
  18852. backDressed: {
  18853. height: math.unit(5 + 7 / 12, "feet"),
  18854. weight: math.unit(140, "lb"),
  18855. name: "Back (Dressed)",
  18856. image: {
  18857. source: "./media/characters/doc-weardno/back-dressed.svg",
  18858. extra: 266 / 238
  18859. }
  18860. },
  18861. front: {
  18862. height: math.unit(5 + 7 / 12, "feet"),
  18863. weight: math.unit(140, "lb"),
  18864. name: "Front",
  18865. image: {
  18866. source: "./media/characters/doc-weardno/front.svg",
  18867. extra: 254 / 233
  18868. }
  18869. },
  18870. },
  18871. [
  18872. {
  18873. name: "Micro",
  18874. height: math.unit(3, "inches")
  18875. },
  18876. {
  18877. name: "Normal",
  18878. height: math.unit(5 + 7 / 12, "feet"),
  18879. default: true
  18880. },
  18881. {
  18882. name: "Macro",
  18883. height: math.unit(25, "feet")
  18884. },
  18885. {
  18886. name: "Megamacro",
  18887. height: math.unit(2, "miles")
  18888. },
  18889. ]
  18890. ))
  18891. characterMakers.push(() => makeCharacter(
  18892. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18893. {
  18894. front: {
  18895. height: math.unit(6 + 2 / 12, "feet"),
  18896. weight: math.unit(153, "lb"),
  18897. name: "Front",
  18898. image: {
  18899. source: "./media/characters/seth-whilst/front.svg",
  18900. bottom: 0.07
  18901. }
  18902. },
  18903. },
  18904. [
  18905. {
  18906. name: "Micro",
  18907. height: math.unit(5, "inches")
  18908. },
  18909. {
  18910. name: "Normal",
  18911. height: math.unit(6 + 2 / 12, "feet"),
  18912. default: true
  18913. },
  18914. ]
  18915. ))
  18916. characterMakers.push(() => makeCharacter(
  18917. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18918. {
  18919. front: {
  18920. height: math.unit(3, "inches"),
  18921. weight: math.unit(8, "grams"),
  18922. name: "Front",
  18923. image: {
  18924. source: "./media/characters/pocket-jabari/front.svg",
  18925. extra: 1024 / 974,
  18926. bottom: 0.039
  18927. }
  18928. },
  18929. },
  18930. [
  18931. {
  18932. name: "Minimicro",
  18933. height: math.unit(8, "mm")
  18934. },
  18935. {
  18936. name: "Micro",
  18937. height: math.unit(3, "inches"),
  18938. default: true
  18939. },
  18940. {
  18941. name: "Normal",
  18942. height: math.unit(3, "feet")
  18943. },
  18944. ]
  18945. ))
  18946. characterMakers.push(() => makeCharacter(
  18947. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18948. {
  18949. front: {
  18950. height: math.unit(15, "feet"),
  18951. weight: math.unit(3280, "lb"),
  18952. name: "Front",
  18953. image: {
  18954. source: "./media/characters/sapphy/front.svg",
  18955. extra: 671 / 577,
  18956. bottom: 0.085
  18957. }
  18958. },
  18959. back: {
  18960. height: math.unit(15, "feet"),
  18961. weight: math.unit(3280, "lb"),
  18962. name: "Back",
  18963. image: {
  18964. source: "./media/characters/sapphy/back.svg",
  18965. extra: 631 / 607,
  18966. bottom: 0.045
  18967. }
  18968. },
  18969. },
  18970. [
  18971. {
  18972. name: "Normal",
  18973. height: math.unit(15, "feet")
  18974. },
  18975. {
  18976. name: "Casual Macro",
  18977. height: math.unit(120, "feet")
  18978. },
  18979. {
  18980. name: "Macro",
  18981. height: math.unit(2150, "feet"),
  18982. default: true
  18983. },
  18984. {
  18985. name: "Megamacro",
  18986. height: math.unit(8, "miles")
  18987. },
  18988. {
  18989. name: "Galaxy Mom",
  18990. height: math.unit(6, "megalightyears")
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(6, "feet"),
  18999. weight: math.unit(170, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/kiro/front.svg",
  19003. extra: 1064 / 1012,
  19004. bottom: 0.052
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Micro",
  19011. height: math.unit(6, "inches")
  19012. },
  19013. {
  19014. name: "Normal",
  19015. height: math.unit(6, "feet"),
  19016. default: true
  19017. },
  19018. {
  19019. name: "Macro",
  19020. height: math.unit(72, "feet")
  19021. },
  19022. ]
  19023. ))
  19024. characterMakers.push(() => makeCharacter(
  19025. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19026. {
  19027. front: {
  19028. height: math.unit(5 + 9 / 12, "feet"),
  19029. weight: math.unit(175, "lb"),
  19030. name: "Front",
  19031. image: {
  19032. source: "./media/characters/irishfox/front.svg",
  19033. extra: 1912 / 1680,
  19034. bottom: 0.02
  19035. }
  19036. },
  19037. },
  19038. [
  19039. {
  19040. name: "Nano",
  19041. height: math.unit(1, "mm")
  19042. },
  19043. {
  19044. name: "Micro",
  19045. height: math.unit(2, "inches")
  19046. },
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(5 + 9 / 12, "feet"),
  19050. default: true
  19051. },
  19052. {
  19053. name: "Macro",
  19054. height: math.unit(45, "feet")
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19060. {
  19061. front: {
  19062. height: math.unit(6 + 1 / 12, "feet"),
  19063. weight: math.unit(75, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/aronai-sieyes/front.svg",
  19067. extra: 1532/1450,
  19068. bottom: 42/1574
  19069. }
  19070. },
  19071. side: {
  19072. height: math.unit(6 + 1 / 12, "feet"),
  19073. weight: math.unit(75, "lb"),
  19074. name: "Side",
  19075. image: {
  19076. source: "./media/characters/aronai-sieyes/side.svg",
  19077. extra: 1422/1365,
  19078. bottom: 148/1570
  19079. }
  19080. },
  19081. back: {
  19082. height: math.unit(6 + 1 / 12, "feet"),
  19083. weight: math.unit(75, "lb"),
  19084. name: "Back",
  19085. image: {
  19086. source: "./media/characters/aronai-sieyes/back.svg",
  19087. extra: 1526/1464,
  19088. bottom: 51/1577
  19089. }
  19090. },
  19091. dressed: {
  19092. height: math.unit(6 + 1 / 12, "feet"),
  19093. weight: math.unit(75, "lb"),
  19094. name: "Dressed",
  19095. image: {
  19096. source: "./media/characters/aronai-sieyes/dressed.svg",
  19097. extra: 1559/1483,
  19098. bottom: 39/1598
  19099. }
  19100. },
  19101. slit: {
  19102. height: math.unit(1.3, "feet"),
  19103. name: "Slit",
  19104. image: {
  19105. source: "./media/characters/aronai-sieyes/slit.svg"
  19106. }
  19107. },
  19108. slitSpread: {
  19109. height: math.unit(0.9, "feet"),
  19110. name: "Slit (Spread)",
  19111. image: {
  19112. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19113. }
  19114. },
  19115. rump: {
  19116. height: math.unit(1.3, "feet"),
  19117. name: "Rump",
  19118. image: {
  19119. source: "./media/characters/aronai-sieyes/rump.svg"
  19120. }
  19121. },
  19122. maw: {
  19123. height: math.unit(1.25, "feet"),
  19124. name: "Maw",
  19125. image: {
  19126. source: "./media/characters/aronai-sieyes/maw.svg"
  19127. }
  19128. },
  19129. feral: {
  19130. height: math.unit(18, "feet"),
  19131. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19132. name: "Feral",
  19133. image: {
  19134. source: "./media/characters/aronai-sieyes/feral.svg",
  19135. extra: 1530 / 1240,
  19136. bottom: 0.035
  19137. }
  19138. },
  19139. },
  19140. [
  19141. {
  19142. name: "Micro",
  19143. height: math.unit(2, "inches")
  19144. },
  19145. {
  19146. name: "Normal",
  19147. height: math.unit(6 + 1 / 12, "feet"),
  19148. default: true
  19149. }
  19150. ]
  19151. ))
  19152. characterMakers.push(() => makeCharacter(
  19153. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19154. {
  19155. front: {
  19156. height: math.unit(12, "feet"),
  19157. weight: math.unit(410, "kg"),
  19158. name: "Front",
  19159. image: {
  19160. source: "./media/characters/xuna/front.svg",
  19161. extra: 2184 / 1980
  19162. }
  19163. },
  19164. side: {
  19165. height: math.unit(12, "feet"),
  19166. weight: math.unit(410, "kg"),
  19167. name: "Side",
  19168. image: {
  19169. source: "./media/characters/xuna/side.svg",
  19170. extra: 2184 / 1980
  19171. }
  19172. },
  19173. back: {
  19174. height: math.unit(12, "feet"),
  19175. weight: math.unit(410, "kg"),
  19176. name: "Back",
  19177. image: {
  19178. source: "./media/characters/xuna/back.svg",
  19179. extra: 2184 / 1980
  19180. }
  19181. },
  19182. },
  19183. [
  19184. {
  19185. name: "Nano glow",
  19186. height: math.unit(10, "nm")
  19187. },
  19188. {
  19189. name: "Micro floof",
  19190. height: math.unit(0.3, "m")
  19191. },
  19192. {
  19193. name: "Huggable softy boi",
  19194. height: math.unit(3.6576, "m"),
  19195. default: true
  19196. },
  19197. {
  19198. name: "Admirable floof",
  19199. height: math.unit(80, "meters")
  19200. },
  19201. {
  19202. name: "Gentle macro",
  19203. height: math.unit(300, "meters")
  19204. },
  19205. {
  19206. name: "Very careful floof",
  19207. height: math.unit(3200, "meters")
  19208. },
  19209. {
  19210. name: "The mega floof",
  19211. height: math.unit(36000, "meters")
  19212. },
  19213. {
  19214. name: "Giga-fur-Wicker",
  19215. height: math.unit(4800000, "meters")
  19216. },
  19217. {
  19218. name: "Licky world",
  19219. height: math.unit(20000000, "meters")
  19220. },
  19221. {
  19222. name: "Floofy cyan sun",
  19223. height: math.unit(1500000000, "meters")
  19224. },
  19225. {
  19226. name: "Milky Wicker",
  19227. height: math.unit(1000000000000000000000, "meters")
  19228. },
  19229. {
  19230. name: "The observing Wicker",
  19231. height: math.unit(999999999999999999999999999, "meters")
  19232. },
  19233. ]
  19234. ))
  19235. characterMakers.push(() => makeCharacter(
  19236. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19237. {
  19238. front: {
  19239. height: math.unit(5 + 9 / 12, "feet"),
  19240. weight: math.unit(150, "lb"),
  19241. name: "Front",
  19242. image: {
  19243. source: "./media/characters/arokha-sieyes/front.svg",
  19244. extra: 1425 / 1284,
  19245. bottom: 0.05
  19246. }
  19247. },
  19248. },
  19249. [
  19250. {
  19251. name: "Normal",
  19252. height: math.unit(5 + 9 / 12, "feet")
  19253. },
  19254. {
  19255. name: "Macro",
  19256. height: math.unit(30, "meters"),
  19257. default: true
  19258. },
  19259. ]
  19260. ))
  19261. characterMakers.push(() => makeCharacter(
  19262. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19263. {
  19264. front: {
  19265. height: math.unit(6, "feet"),
  19266. weight: math.unit(180, "lb"),
  19267. name: "Front",
  19268. image: {
  19269. source: "./media/characters/arokh-sieyes/front.svg",
  19270. extra: 1830 / 1769,
  19271. bottom: 0.01
  19272. }
  19273. },
  19274. },
  19275. [
  19276. {
  19277. name: "Normal",
  19278. height: math.unit(6, "feet")
  19279. },
  19280. {
  19281. name: "Macro",
  19282. height: math.unit(30, "meters"),
  19283. default: true
  19284. },
  19285. ]
  19286. ))
  19287. characterMakers.push(() => makeCharacter(
  19288. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19289. {
  19290. side: {
  19291. height: math.unit(13 + 1 / 12, "feet"),
  19292. weight: math.unit(8.5, "tonnes"),
  19293. name: "Side",
  19294. image: {
  19295. source: "./media/characters/goldeneye/side.svg",
  19296. extra: 1182 / 778,
  19297. bottom: 0.067
  19298. }
  19299. },
  19300. paw: {
  19301. height: math.unit(3.4, "feet"),
  19302. name: "Paw",
  19303. image: {
  19304. source: "./media/characters/goldeneye/paw.svg"
  19305. }
  19306. },
  19307. },
  19308. [
  19309. {
  19310. name: "Normal",
  19311. height: math.unit(13 + 1 / 12, "feet"),
  19312. default: true
  19313. },
  19314. ]
  19315. ))
  19316. characterMakers.push(() => makeCharacter(
  19317. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19318. {
  19319. front: {
  19320. height: math.unit(6 + 1 / 12, "feet"),
  19321. weight: math.unit(210, "lb"),
  19322. name: "Front",
  19323. image: {
  19324. source: "./media/characters/leonardo-lycheborne/front.svg",
  19325. extra: 776/723,
  19326. bottom: 34/810
  19327. }
  19328. },
  19329. side: {
  19330. height: math.unit(6 + 1 / 12, "feet"),
  19331. weight: math.unit(210, "lb"),
  19332. name: "Side",
  19333. image: {
  19334. source: "./media/characters/leonardo-lycheborne/side.svg",
  19335. extra: 780/728,
  19336. bottom: 12/792
  19337. }
  19338. },
  19339. back: {
  19340. height: math.unit(6 + 1 / 12, "feet"),
  19341. weight: math.unit(210, "lb"),
  19342. name: "Back",
  19343. image: {
  19344. source: "./media/characters/leonardo-lycheborne/back.svg",
  19345. extra: 775/721,
  19346. bottom: 17/792
  19347. }
  19348. },
  19349. hand: {
  19350. height: math.unit(1.08, "feet"),
  19351. name: "Hand",
  19352. image: {
  19353. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19354. }
  19355. },
  19356. foot: {
  19357. height: math.unit(1.32, "feet"),
  19358. name: "Foot",
  19359. image: {
  19360. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19361. }
  19362. },
  19363. maw: {
  19364. height: math.unit(1, "feet"),
  19365. name: "Maw",
  19366. image: {
  19367. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19368. }
  19369. },
  19370. were: {
  19371. height: math.unit(20, "feet"),
  19372. weight: math.unit(7800, "lb"),
  19373. name: "Were",
  19374. image: {
  19375. source: "./media/characters/leonardo-lycheborne/were.svg",
  19376. extra: 1224/1165,
  19377. bottom: 72/1296
  19378. }
  19379. },
  19380. feral: {
  19381. height: math.unit(7.5, "feet"),
  19382. weight: math.unit(600, "lb"),
  19383. name: "Feral",
  19384. image: {
  19385. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19386. extra: 797/702,
  19387. bottom: 139/936
  19388. }
  19389. },
  19390. taur: {
  19391. height: math.unit(11, "feet"),
  19392. weight: math.unit(3300, "lb"),
  19393. name: "Taur",
  19394. image: {
  19395. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19396. extra: 1271/1197,
  19397. bottom: 47/1318
  19398. }
  19399. },
  19400. barghest: {
  19401. height: math.unit(11, "feet"),
  19402. weight: math.unit(1300, "lb"),
  19403. name: "Barghest",
  19404. image: {
  19405. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19406. extra: 1291/1204,
  19407. bottom: 37/1328
  19408. }
  19409. },
  19410. dick: {
  19411. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19412. name: "Dick",
  19413. image: {
  19414. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19415. }
  19416. },
  19417. dickWere: {
  19418. height: math.unit((20) / 3.8, "feet"),
  19419. name: "Dick (Were)",
  19420. image: {
  19421. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19422. }
  19423. },
  19424. },
  19425. [
  19426. {
  19427. name: "Normal",
  19428. height: math.unit(6 + 1 / 12, "feet"),
  19429. default: true
  19430. },
  19431. ]
  19432. ))
  19433. characterMakers.push(() => makeCharacter(
  19434. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19435. {
  19436. front: {
  19437. height: math.unit(10, "feet"),
  19438. weight: math.unit(350, "lb"),
  19439. name: "Front",
  19440. image: {
  19441. source: "./media/characters/jet/front.svg",
  19442. extra: 2050 / 1980,
  19443. bottom: 0.013
  19444. }
  19445. },
  19446. back: {
  19447. height: math.unit(10, "feet"),
  19448. weight: math.unit(350, "lb"),
  19449. name: "Back",
  19450. image: {
  19451. source: "./media/characters/jet/back.svg",
  19452. extra: 2050 / 1980,
  19453. bottom: 0.013
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Micro",
  19460. height: math.unit(6, "inches")
  19461. },
  19462. {
  19463. name: "Normal",
  19464. height: math.unit(10, "feet"),
  19465. default: true
  19466. },
  19467. {
  19468. name: "Macro",
  19469. height: math.unit(100, "feet")
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19475. {
  19476. front: {
  19477. height: math.unit(15, "feet"),
  19478. weight: math.unit(2800, "lb"),
  19479. name: "Front",
  19480. image: {
  19481. source: "./media/characters/tanarath/front.svg",
  19482. extra: 2392 / 2220,
  19483. bottom: 0.03
  19484. }
  19485. },
  19486. back: {
  19487. height: math.unit(15, "feet"),
  19488. weight: math.unit(2800, "lb"),
  19489. name: "Back",
  19490. image: {
  19491. source: "./media/characters/tanarath/back.svg",
  19492. extra: 2392 / 2220,
  19493. bottom: 0.03
  19494. }
  19495. },
  19496. },
  19497. [
  19498. {
  19499. name: "Normal",
  19500. height: math.unit(15, "feet"),
  19501. default: true
  19502. },
  19503. ]
  19504. ))
  19505. characterMakers.push(() => makeCharacter(
  19506. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19507. {
  19508. front: {
  19509. height: math.unit(7 + 1 / 12, "feet"),
  19510. weight: math.unit(175, "lb"),
  19511. name: "Front",
  19512. image: {
  19513. source: "./media/characters/patty-cattybatty/front.svg",
  19514. extra: 908 / 874,
  19515. bottom: 0.025
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Micro",
  19522. height: math.unit(1, "inch")
  19523. },
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(7 + 1 / 12, "feet")
  19527. },
  19528. {
  19529. name: "Mini Macro",
  19530. height: math.unit(155, "feet")
  19531. },
  19532. {
  19533. name: "Macro",
  19534. height: math.unit(1077, "feet")
  19535. },
  19536. {
  19537. name: "Mega Macro",
  19538. height: math.unit(47650, "feet"),
  19539. default: true
  19540. },
  19541. {
  19542. name: "Giga Macro",
  19543. height: math.unit(440, "miles")
  19544. },
  19545. {
  19546. name: "Tera Macro",
  19547. height: math.unit(8700, "miles")
  19548. },
  19549. {
  19550. name: "Planetary Macro",
  19551. height: math.unit(32700, "miles")
  19552. },
  19553. {
  19554. name: "Solar Macro",
  19555. height: math.unit(550000, "miles")
  19556. },
  19557. {
  19558. name: "Celestial Macro",
  19559. height: math.unit(2.5, "AU")
  19560. },
  19561. ]
  19562. ))
  19563. characterMakers.push(() => makeCharacter(
  19564. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19565. {
  19566. front: {
  19567. height: math.unit(4 + 5 / 12, "feet"),
  19568. weight: math.unit(90, "lb"),
  19569. name: "Front",
  19570. image: {
  19571. source: "./media/characters/cappu/front.svg",
  19572. extra: 1247 / 1152,
  19573. bottom: 0.012
  19574. }
  19575. },
  19576. },
  19577. [
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(4 + 5 / 12, "feet"),
  19581. default: true
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19587. {
  19588. frontDressed: {
  19589. height: math.unit(70, "cm"),
  19590. weight: math.unit(6, "kg"),
  19591. name: "Front (Dressed)",
  19592. image: {
  19593. source: "./media/characters/sebi/front-dressed.svg",
  19594. extra: 713.5 / 686.5,
  19595. bottom: 0.003
  19596. }
  19597. },
  19598. front: {
  19599. height: math.unit(70, "cm"),
  19600. weight: math.unit(5, "kg"),
  19601. name: "Front",
  19602. image: {
  19603. source: "./media/characters/sebi/front.svg",
  19604. extra: 713.5 / 686.5,
  19605. bottom: 0.003
  19606. }
  19607. }
  19608. },
  19609. [
  19610. {
  19611. name: "Normal",
  19612. height: math.unit(70, "cm"),
  19613. default: true
  19614. },
  19615. {
  19616. name: "Macro",
  19617. height: math.unit(8, "meters")
  19618. },
  19619. ]
  19620. ))
  19621. characterMakers.push(() => makeCharacter(
  19622. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  19623. {
  19624. front: {
  19625. height: math.unit(6, "feet"),
  19626. weight: math.unit(150, "lb"),
  19627. name: "Front",
  19628. image: {
  19629. source: "./media/characters/typhek/front.svg",
  19630. extra: 1948 / 1929,
  19631. bottom: 0.025
  19632. }
  19633. },
  19634. side: {
  19635. height: math.unit(6, "feet"),
  19636. weight: math.unit(150, "lb"),
  19637. name: "Side",
  19638. image: {
  19639. source: "./media/characters/typhek/side.svg",
  19640. extra: 2034 / 2010,
  19641. bottom: 0.003
  19642. }
  19643. },
  19644. back: {
  19645. height: math.unit(6, "feet"),
  19646. weight: math.unit(150, "lb"),
  19647. name: "Back",
  19648. image: {
  19649. source: "./media/characters/typhek/back.svg",
  19650. extra: 2005 / 1978,
  19651. bottom: 0.004
  19652. }
  19653. },
  19654. palm: {
  19655. height: math.unit(1.2, "feet"),
  19656. name: "Palm",
  19657. image: {
  19658. source: "./media/characters/typhek/palm.svg"
  19659. }
  19660. },
  19661. fist: {
  19662. height: math.unit(1.1, "feet"),
  19663. name: "Fist",
  19664. image: {
  19665. source: "./media/characters/typhek/fist.svg"
  19666. }
  19667. },
  19668. foot: {
  19669. height: math.unit(1.57, "feet"),
  19670. name: "Foot",
  19671. image: {
  19672. source: "./media/characters/typhek/foot.svg"
  19673. }
  19674. },
  19675. sole: {
  19676. height: math.unit(2.05, "feet"),
  19677. name: "Sole",
  19678. image: {
  19679. source: "./media/characters/typhek/sole.svg"
  19680. }
  19681. },
  19682. },
  19683. [
  19684. {
  19685. name: "Macro",
  19686. height: math.unit(40, "stories"),
  19687. default: true
  19688. },
  19689. {
  19690. name: "Megamacro",
  19691. height: math.unit(1, "mile")
  19692. },
  19693. {
  19694. name: "Gigamacro",
  19695. height: math.unit(4000, "solarradii")
  19696. },
  19697. {
  19698. name: "Universal",
  19699. height: math.unit(1.1, "universes")
  19700. }
  19701. ]
  19702. ))
  19703. characterMakers.push(() => makeCharacter(
  19704. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  19705. {
  19706. side: {
  19707. height: math.unit(5 + 7 / 12, "feet"),
  19708. weight: math.unit(150, "lb"),
  19709. name: "Side",
  19710. image: {
  19711. source: "./media/characters/kassy/side.svg",
  19712. extra: 1280 / 1225,
  19713. bottom: 0.002
  19714. }
  19715. },
  19716. front: {
  19717. height: math.unit(5 + 7 / 12, "feet"),
  19718. weight: math.unit(150, "lb"),
  19719. name: "Front",
  19720. image: {
  19721. source: "./media/characters/kassy/front.svg",
  19722. extra: 1280 / 1225,
  19723. bottom: 0.025
  19724. }
  19725. },
  19726. back: {
  19727. height: math.unit(5 + 7 / 12, "feet"),
  19728. weight: math.unit(150, "lb"),
  19729. name: "Back",
  19730. image: {
  19731. source: "./media/characters/kassy/back.svg",
  19732. extra: 1280 / 1225,
  19733. bottom: 0.002
  19734. }
  19735. },
  19736. foot: {
  19737. height: math.unit(1.266, "feet"),
  19738. name: "Foot",
  19739. image: {
  19740. source: "./media/characters/kassy/foot.svg"
  19741. }
  19742. },
  19743. },
  19744. [
  19745. {
  19746. name: "Normal",
  19747. height: math.unit(5 + 7 / 12, "feet")
  19748. },
  19749. {
  19750. name: "Macro",
  19751. height: math.unit(137, "feet"),
  19752. default: true
  19753. },
  19754. {
  19755. name: "Megamacro",
  19756. height: math.unit(1, "mile")
  19757. },
  19758. ]
  19759. ))
  19760. characterMakers.push(() => makeCharacter(
  19761. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19762. {
  19763. front: {
  19764. height: math.unit(6 + 1 / 12, "feet"),
  19765. weight: math.unit(200, "lb"),
  19766. name: "Front",
  19767. image: {
  19768. source: "./media/characters/neil/front.svg",
  19769. extra: 1326 / 1250,
  19770. bottom: 0.023
  19771. }
  19772. },
  19773. },
  19774. [
  19775. {
  19776. name: "Normal",
  19777. height: math.unit(6 + 1 / 12, "feet"),
  19778. default: true
  19779. },
  19780. {
  19781. name: "Macro",
  19782. height: math.unit(200, "feet")
  19783. },
  19784. ]
  19785. ))
  19786. characterMakers.push(() => makeCharacter(
  19787. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19788. {
  19789. front: {
  19790. height: math.unit(5 + 9 / 12, "feet"),
  19791. weight: math.unit(190, "lb"),
  19792. name: "Front",
  19793. image: {
  19794. source: "./media/characters/atticus/front.svg",
  19795. extra: 2934 / 2785,
  19796. bottom: 0.025
  19797. }
  19798. },
  19799. },
  19800. [
  19801. {
  19802. name: "Normal",
  19803. height: math.unit(5 + 9 / 12, "feet"),
  19804. default: true
  19805. },
  19806. {
  19807. name: "Macro",
  19808. height: math.unit(180, "feet")
  19809. },
  19810. ]
  19811. ))
  19812. characterMakers.push(() => makeCharacter(
  19813. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19814. {
  19815. side: {
  19816. height: math.unit(9, "feet"),
  19817. weight: math.unit(650, "lb"),
  19818. name: "Side",
  19819. image: {
  19820. source: "./media/characters/milo/side.svg",
  19821. extra: 2644 / 2310,
  19822. bottom: 0.032
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Normal",
  19829. height: math.unit(9, "feet"),
  19830. default: true
  19831. },
  19832. {
  19833. name: "Macro",
  19834. height: math.unit(300, "feet")
  19835. },
  19836. ]
  19837. ))
  19838. characterMakers.push(() => makeCharacter(
  19839. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19840. {
  19841. side: {
  19842. height: math.unit(8, "meters"),
  19843. weight: math.unit(90000, "kg"),
  19844. name: "Side",
  19845. image: {
  19846. source: "./media/characters/ijzer/side.svg",
  19847. extra: 2756 / 1600,
  19848. bottom: 0.01
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Small",
  19855. height: math.unit(3, "meters")
  19856. },
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(8, "meters"),
  19860. default: true
  19861. },
  19862. {
  19863. name: "Normal+",
  19864. height: math.unit(10, "meters")
  19865. },
  19866. {
  19867. name: "Bigger",
  19868. height: math.unit(24, "meters")
  19869. },
  19870. {
  19871. name: "Huge",
  19872. height: math.unit(80, "meters")
  19873. },
  19874. ]
  19875. ))
  19876. characterMakers.push(() => makeCharacter(
  19877. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19878. {
  19879. front: {
  19880. height: math.unit(6 + 2 / 12, "feet"),
  19881. weight: math.unit(153, "lb"),
  19882. name: "Front",
  19883. image: {
  19884. source: "./media/characters/luca-cervicum/front.svg",
  19885. extra: 370 / 327,
  19886. bottom: 0.015
  19887. }
  19888. },
  19889. back: {
  19890. height: math.unit(6 + 2 / 12, "feet"),
  19891. weight: math.unit(153, "lb"),
  19892. name: "Back",
  19893. image: {
  19894. source: "./media/characters/luca-cervicum/back.svg",
  19895. extra: 367 / 333,
  19896. bottom: 0.005
  19897. }
  19898. },
  19899. frontGear: {
  19900. height: math.unit(6 + 2 / 12, "feet"),
  19901. weight: math.unit(173, "lb"),
  19902. name: "Front (Gear)",
  19903. image: {
  19904. source: "./media/characters/luca-cervicum/front-gear.svg",
  19905. extra: 377 / 333,
  19906. bottom: 0.006
  19907. }
  19908. },
  19909. },
  19910. [
  19911. {
  19912. name: "Normal",
  19913. height: math.unit(6 + 2 / 12, "feet"),
  19914. default: true
  19915. },
  19916. ]
  19917. ))
  19918. characterMakers.push(() => makeCharacter(
  19919. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19920. {
  19921. front: {
  19922. height: math.unit(6 + 1 / 12, "feet"),
  19923. weight: math.unit(304, "lb"),
  19924. name: "Front",
  19925. image: {
  19926. source: "./media/characters/oliver/front.svg",
  19927. extra: 157 / 143,
  19928. bottom: 0.08
  19929. }
  19930. },
  19931. },
  19932. [
  19933. {
  19934. name: "Normal",
  19935. height: math.unit(6 + 1 / 12, "feet"),
  19936. default: true
  19937. },
  19938. ]
  19939. ))
  19940. characterMakers.push(() => makeCharacter(
  19941. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19942. {
  19943. front: {
  19944. height: math.unit(5 + 7 / 12, "feet"),
  19945. weight: math.unit(140, "lb"),
  19946. name: "Front",
  19947. image: {
  19948. source: "./media/characters/shane/front.svg",
  19949. extra: 304 / 289,
  19950. bottom: 0.005
  19951. }
  19952. },
  19953. },
  19954. [
  19955. {
  19956. name: "Normal",
  19957. height: math.unit(5 + 7 / 12, "feet"),
  19958. default: true
  19959. },
  19960. ]
  19961. ))
  19962. characterMakers.push(() => makeCharacter(
  19963. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19964. {
  19965. front: {
  19966. height: math.unit(5 + 9 / 12, "feet"),
  19967. weight: math.unit(178, "lb"),
  19968. name: "Front",
  19969. image: {
  19970. source: "./media/characters/shin/front.svg",
  19971. extra: 159 / 151,
  19972. bottom: 0.015
  19973. }
  19974. },
  19975. },
  19976. [
  19977. {
  19978. name: "Normal",
  19979. height: math.unit(5 + 9 / 12, "feet"),
  19980. default: true
  19981. },
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19986. {
  19987. front: {
  19988. height: math.unit(5 + 10 / 12, "feet"),
  19989. weight: math.unit(168, "lb"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/xerxes/front.svg",
  19993. extra: 282 / 260,
  19994. bottom: 0.045
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Normal",
  20001. height: math.unit(5 + 10 / 12, "feet"),
  20002. default: true
  20003. },
  20004. ]
  20005. ))
  20006. characterMakers.push(() => makeCharacter(
  20007. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20008. {
  20009. front: {
  20010. height: math.unit(6 + 7 / 12, "feet"),
  20011. weight: math.unit(208, "lb"),
  20012. name: "Front",
  20013. image: {
  20014. source: "./media/characters/chaska/front.svg",
  20015. extra: 332 / 319,
  20016. bottom: 0.015
  20017. }
  20018. },
  20019. },
  20020. [
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(6 + 7 / 12, "feet"),
  20024. default: true
  20025. },
  20026. ]
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20030. {
  20031. front: {
  20032. height: math.unit(5 + 8 / 12, "feet"),
  20033. weight: math.unit(208, "lb"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/enuk/front.svg",
  20037. extra: 437 / 406,
  20038. bottom: 0.02
  20039. }
  20040. },
  20041. },
  20042. [
  20043. {
  20044. name: "Normal",
  20045. height: math.unit(5 + 8 / 12, "feet"),
  20046. default: true
  20047. },
  20048. ]
  20049. ))
  20050. characterMakers.push(() => makeCharacter(
  20051. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20052. {
  20053. front: {
  20054. height: math.unit(5 + 10 / 12, "feet"),
  20055. weight: math.unit(252, "lb"),
  20056. name: "Front",
  20057. image: {
  20058. source: "./media/characters/bruun/front.svg",
  20059. extra: 197 / 187,
  20060. bottom: 0.012
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(5 + 10 / 12, "feet"),
  20068. default: true
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(6 + 10 / 12, "feet"),
  20077. weight: math.unit(255, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/alexeev/front.svg",
  20081. extra: 213 / 200,
  20082. bottom: 0.05
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(6 + 10 / 12, "feet"),
  20090. default: true
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20096. {
  20097. front: {
  20098. height: math.unit(2 + 8 / 12, "feet"),
  20099. weight: math.unit(22, "lb"),
  20100. name: "Front",
  20101. image: {
  20102. source: "./media/characters/evelyn/front.svg",
  20103. extra: 208 / 180
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Normal",
  20110. height: math.unit(2 + 8 / 12, "feet"),
  20111. default: true
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20117. {
  20118. front: {
  20119. height: math.unit(5 + 9 / 12, "feet"),
  20120. weight: math.unit(139, "lb"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/inca/front.svg",
  20124. extra: 294 / 291,
  20125. bottom: 0.03
  20126. }
  20127. },
  20128. },
  20129. [
  20130. {
  20131. name: "Normal",
  20132. height: math.unit(5 + 9 / 12, "feet"),
  20133. default: true
  20134. },
  20135. ]
  20136. ))
  20137. characterMakers.push(() => makeCharacter(
  20138. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20139. {
  20140. front: {
  20141. height: math.unit(6 + 3 / 12, "feet"),
  20142. weight: math.unit(185, "lb"),
  20143. name: "Front",
  20144. image: {
  20145. source: "./media/characters/mera/front.svg",
  20146. extra: 291 / 277,
  20147. bottom: 0.03
  20148. }
  20149. },
  20150. },
  20151. [
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(6 + 3 / 12, "feet"),
  20155. default: true
  20156. },
  20157. ]
  20158. ))
  20159. characterMakers.push(() => makeCharacter(
  20160. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20161. {
  20162. front: {
  20163. height: math.unit(6 + 7 / 12, "feet"),
  20164. weight: math.unit(160, "lb"),
  20165. name: "Front",
  20166. image: {
  20167. source: "./media/characters/ceres/front.svg",
  20168. extra: 1023 / 950,
  20169. bottom: 0.027
  20170. }
  20171. },
  20172. back: {
  20173. height: math.unit(6 + 7 / 12, "feet"),
  20174. weight: math.unit(160, "lb"),
  20175. name: "Back",
  20176. image: {
  20177. source: "./media/characters/ceres/back.svg",
  20178. extra: 1023 / 950
  20179. }
  20180. },
  20181. },
  20182. [
  20183. {
  20184. name: "Normal",
  20185. height: math.unit(6 + 7 / 12, "feet"),
  20186. default: true
  20187. },
  20188. ]
  20189. ))
  20190. characterMakers.push(() => makeCharacter(
  20191. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20192. {
  20193. front: {
  20194. height: math.unit(5 + 10 / 12, "feet"),
  20195. weight: math.unit(150, "lb"),
  20196. name: "Front",
  20197. image: {
  20198. source: "./media/characters/kris/front.svg",
  20199. extra: 885 / 803,
  20200. bottom: 0.03
  20201. }
  20202. },
  20203. },
  20204. [
  20205. {
  20206. name: "Normal",
  20207. height: math.unit(5 + 10 / 12, "feet"),
  20208. default: true
  20209. },
  20210. ]
  20211. ))
  20212. characterMakers.push(() => makeCharacter(
  20213. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20214. {
  20215. front: {
  20216. height: math.unit(7, "feet"),
  20217. weight: math.unit(120, "kg"),
  20218. name: "Front",
  20219. image: {
  20220. source: "./media/characters/taluthus/front.svg",
  20221. extra: 903 / 833,
  20222. bottom: 0.015
  20223. }
  20224. },
  20225. },
  20226. [
  20227. {
  20228. name: "Normal",
  20229. height: math.unit(7, "feet"),
  20230. default: true
  20231. },
  20232. {
  20233. name: "Macro",
  20234. height: math.unit(300, "feet")
  20235. },
  20236. ]
  20237. ))
  20238. characterMakers.push(() => makeCharacter(
  20239. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20240. {
  20241. front: {
  20242. height: math.unit(5 + 9 / 12, "feet"),
  20243. weight: math.unit(145, "lb"),
  20244. name: "Front",
  20245. image: {
  20246. source: "./media/characters/dawn/front.svg",
  20247. extra: 2094 / 2016,
  20248. bottom: 0.025
  20249. }
  20250. },
  20251. back: {
  20252. height: math.unit(5 + 9 / 12, "feet"),
  20253. weight: math.unit(160, "lb"),
  20254. name: "Back",
  20255. image: {
  20256. source: "./media/characters/dawn/back.svg",
  20257. extra: 2112 / 2080,
  20258. bottom: 0.005
  20259. }
  20260. },
  20261. },
  20262. [
  20263. {
  20264. name: "Normal",
  20265. height: math.unit(6 + 7 / 12, "feet"),
  20266. default: true
  20267. },
  20268. ]
  20269. ))
  20270. characterMakers.push(() => makeCharacter(
  20271. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20272. {
  20273. anthro: {
  20274. height: math.unit(8 + 3 / 12, "feet"),
  20275. weight: math.unit(450, "lb"),
  20276. name: "Anthro",
  20277. image: {
  20278. source: "./media/characters/arador/anthro.svg",
  20279. extra: 1835 / 1718,
  20280. bottom: 0.025
  20281. }
  20282. },
  20283. feral: {
  20284. height: math.unit(4, "feet"),
  20285. weight: math.unit(200, "lb"),
  20286. name: "Feral",
  20287. image: {
  20288. source: "./media/characters/arador/feral.svg",
  20289. extra: 1683 / 1514,
  20290. bottom: 0.07
  20291. }
  20292. },
  20293. },
  20294. [
  20295. {
  20296. name: "Normal",
  20297. height: math.unit(8 + 3 / 12, "feet")
  20298. },
  20299. {
  20300. name: "Macro",
  20301. height: math.unit(82.5, "feet"),
  20302. default: true
  20303. },
  20304. ]
  20305. ))
  20306. characterMakers.push(() => makeCharacter(
  20307. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20308. {
  20309. front: {
  20310. height: math.unit(5 + 10 / 12, "feet"),
  20311. weight: math.unit(125, "lb"),
  20312. name: "Front",
  20313. image: {
  20314. source: "./media/characters/dharsi/front.svg",
  20315. extra: 716 / 630,
  20316. bottom: 0.035
  20317. }
  20318. },
  20319. },
  20320. [
  20321. {
  20322. name: "Nano",
  20323. height: math.unit(100, "nm")
  20324. },
  20325. {
  20326. name: "Micro",
  20327. height: math.unit(2, "inches")
  20328. },
  20329. {
  20330. name: "Normal",
  20331. height: math.unit(5 + 10 / 12, "feet"),
  20332. default: true
  20333. },
  20334. {
  20335. name: "Macro",
  20336. height: math.unit(1000, "feet")
  20337. },
  20338. {
  20339. name: "Megamacro",
  20340. height: math.unit(10, "miles")
  20341. },
  20342. {
  20343. name: "Gigamacro",
  20344. height: math.unit(3000, "miles")
  20345. },
  20346. {
  20347. name: "Teramacro",
  20348. height: math.unit(500000, "miles")
  20349. },
  20350. {
  20351. name: "Teramacro+",
  20352. height: math.unit(30, "galaxies")
  20353. },
  20354. ]
  20355. ))
  20356. characterMakers.push(() => makeCharacter(
  20357. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20358. {
  20359. front: {
  20360. height: math.unit(6, "feet"),
  20361. weight: math.unit(150, "lb"),
  20362. name: "Front",
  20363. image: {
  20364. source: "./media/characters/deathy/front.svg",
  20365. extra: 1552 / 1463,
  20366. bottom: 0.025
  20367. }
  20368. },
  20369. side: {
  20370. height: math.unit(6, "feet"),
  20371. weight: math.unit(150, "lb"),
  20372. name: "Side",
  20373. image: {
  20374. source: "./media/characters/deathy/side.svg",
  20375. extra: 1604 / 1455,
  20376. bottom: 0.025
  20377. }
  20378. },
  20379. back: {
  20380. height: math.unit(6, "feet"),
  20381. weight: math.unit(150, "lb"),
  20382. name: "Back",
  20383. image: {
  20384. source: "./media/characters/deathy/back.svg",
  20385. extra: 1580 / 1463,
  20386. bottom: 0.005
  20387. }
  20388. },
  20389. },
  20390. [
  20391. {
  20392. name: "Micro",
  20393. height: math.unit(5, "millimeters")
  20394. },
  20395. {
  20396. name: "Normal",
  20397. height: math.unit(6 + 5 / 12, "feet"),
  20398. default: true
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20404. {
  20405. front: {
  20406. height: math.unit(16, "feet"),
  20407. weight: math.unit(4000, "lb"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/juniper/front.svg",
  20411. bottom: 0.04
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(16, "feet"),
  20419. default: true
  20420. },
  20421. ]
  20422. ))
  20423. characterMakers.push(() => makeCharacter(
  20424. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20425. {
  20426. front: {
  20427. height: math.unit(6, "feet"),
  20428. weight: math.unit(150, "lb"),
  20429. name: "Front",
  20430. image: {
  20431. source: "./media/characters/hipster/front.svg",
  20432. extra: 1312 / 1209,
  20433. bottom: 0.025
  20434. }
  20435. },
  20436. back: {
  20437. height: math.unit(6, "feet"),
  20438. weight: math.unit(150, "lb"),
  20439. name: "Back",
  20440. image: {
  20441. source: "./media/characters/hipster/back.svg",
  20442. extra: 1281 / 1196,
  20443. bottom: 0.01
  20444. }
  20445. },
  20446. },
  20447. [
  20448. {
  20449. name: "Micro",
  20450. height: math.unit(1, "mm")
  20451. },
  20452. {
  20453. name: "Normal",
  20454. height: math.unit(4, "inches"),
  20455. default: true
  20456. },
  20457. {
  20458. name: "Macro",
  20459. height: math.unit(500, "feet")
  20460. },
  20461. {
  20462. name: "Megamacro",
  20463. height: math.unit(1000, "miles")
  20464. },
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20469. {
  20470. front: {
  20471. height: math.unit(6, "feet"),
  20472. weight: math.unit(150, "lb"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/tendirmuldr/front.svg",
  20476. extra: 1878 / 1772,
  20477. bottom: 0.015
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Megamacro",
  20484. height: math.unit(1500, "miles"),
  20485. default: true
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20491. {
  20492. front: {
  20493. height: math.unit(14, "feet"),
  20494. weight: math.unit(12000, "lb"),
  20495. name: "Front",
  20496. image: {
  20497. source: "./media/characters/mort/front.svg",
  20498. extra: 365 / 318,
  20499. bottom: 0.01
  20500. }
  20501. },
  20502. side: {
  20503. height: math.unit(14, "feet"),
  20504. weight: math.unit(12000, "lb"),
  20505. name: "Side",
  20506. image: {
  20507. source: "./media/characters/mort/side.svg",
  20508. extra: 365 / 318,
  20509. bottom: 0.052
  20510. },
  20511. default: true
  20512. },
  20513. back: {
  20514. height: math.unit(14, "feet"),
  20515. weight: math.unit(12000, "lb"),
  20516. name: "Back",
  20517. image: {
  20518. source: "./media/characters/mort/back.svg",
  20519. extra: 371 / 332,
  20520. bottom: 0.18
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(14, "feet"),
  20528. default: true
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20534. {
  20535. front: {
  20536. height: math.unit(8, "feet"),
  20537. weight: math.unit(1, "ton"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/lycoa/front.svg",
  20541. extra: 1875 / 1789,
  20542. bottom: 0.022
  20543. }
  20544. },
  20545. back: {
  20546. height: math.unit(8, "feet"),
  20547. weight: math.unit(1, "ton"),
  20548. name: "Back",
  20549. image: {
  20550. source: "./media/characters/lycoa/back.svg",
  20551. extra: 1835 / 1781,
  20552. bottom: 0.03
  20553. }
  20554. },
  20555. head: {
  20556. height: math.unit(2.1, "feet"),
  20557. name: "Head",
  20558. image: {
  20559. source: "./media/characters/lycoa/head.svg"
  20560. }
  20561. },
  20562. tailmaw: {
  20563. height: math.unit(1.9, "feet"),
  20564. name: "Tailmaw",
  20565. image: {
  20566. source: "./media/characters/lycoa/tailmaw.svg"
  20567. }
  20568. },
  20569. tentacles: {
  20570. height: math.unit(2.1, "feet"),
  20571. name: "Tentacles",
  20572. image: {
  20573. source: "./media/characters/lycoa/tentacles.svg"
  20574. }
  20575. },
  20576. dick: {
  20577. height: math.unit(1.73, "feet"),
  20578. name: "Dick",
  20579. image: {
  20580. source: "./media/characters/lycoa/dick.svg"
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "Normal",
  20587. height: math.unit(8, "feet"),
  20588. default: true
  20589. },
  20590. {
  20591. name: "Macro",
  20592. height: math.unit(30, "feet")
  20593. },
  20594. ]
  20595. ))
  20596. characterMakers.push(() => makeCharacter(
  20597. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20598. {
  20599. front: {
  20600. height: math.unit(4 + 2 / 12, "feet"),
  20601. weight: math.unit(70, "lb"),
  20602. name: "Front",
  20603. image: {
  20604. source: "./media/characters/naldara/front.svg",
  20605. extra: 841 / 720,
  20606. bottom: 0.04
  20607. }
  20608. },
  20609. naga: {
  20610. height: math.unit(23, "feet"),
  20611. weight: math.unit(15000, "kg"),
  20612. name: "Naga",
  20613. image: {
  20614. source: "./media/characters/naldara/naga.svg",
  20615. extra: 3290 / 2959,
  20616. bottom: 124 / 3432
  20617. }
  20618. },
  20619. },
  20620. [
  20621. {
  20622. name: "Normal",
  20623. height: math.unit(4 + 2 / 12, "feet"),
  20624. default: true
  20625. },
  20626. ]
  20627. ))
  20628. characterMakers.push(() => makeCharacter(
  20629. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  20630. {
  20631. front: {
  20632. height: math.unit(13 + 7 / 12, "feet"),
  20633. weight: math.unit(1500, "lb"),
  20634. name: "Front",
  20635. image: {
  20636. source: "./media/characters/briar/front.svg",
  20637. extra: 626 / 596,
  20638. bottom: 0.08
  20639. }
  20640. },
  20641. },
  20642. [
  20643. {
  20644. name: "Normal",
  20645. height: math.unit(13 + 7 / 12, "feet"),
  20646. default: true
  20647. },
  20648. ]
  20649. ))
  20650. characterMakers.push(() => makeCharacter(
  20651. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  20652. {
  20653. side: {
  20654. height: math.unit(10, "feet"),
  20655. weight: math.unit(500, "lb"),
  20656. name: "Side",
  20657. image: {
  20658. source: "./media/characters/vanguard/side.svg",
  20659. extra: 502 / 425,
  20660. bottom: 0.087
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Normal",
  20667. height: math.unit(10, "feet"),
  20668. default: true
  20669. },
  20670. ]
  20671. ))
  20672. characterMakers.push(() => makeCharacter(
  20673. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  20674. {
  20675. front: {
  20676. height: math.unit(7.5, "feet"),
  20677. weight: math.unit(2, "lb"),
  20678. name: "Front",
  20679. image: {
  20680. source: "./media/characters/artemis/front.svg",
  20681. extra: 1192 / 1075,
  20682. bottom: 0.07
  20683. }
  20684. },
  20685. frontNsfw: {
  20686. height: math.unit(7.5, "feet"),
  20687. weight: math.unit(2, "lb"),
  20688. name: "Front (NSFW)",
  20689. image: {
  20690. source: "./media/characters/artemis/front-nsfw.svg",
  20691. extra: 1192 / 1075,
  20692. bottom: 0.07
  20693. }
  20694. },
  20695. frontNsfwer: {
  20696. height: math.unit(7.5, "feet"),
  20697. weight: math.unit(2, "lb"),
  20698. name: "Front (NSFW-er)",
  20699. image: {
  20700. source: "./media/characters/artemis/front-nsfwer.svg",
  20701. extra: 1192 / 1075,
  20702. bottom: 0.07
  20703. }
  20704. },
  20705. side: {
  20706. height: math.unit(7.5, "feet"),
  20707. weight: math.unit(2, "lb"),
  20708. name: "Side",
  20709. image: {
  20710. source: "./media/characters/artemis/side.svg",
  20711. extra: 1192 / 1075,
  20712. bottom: 0.07
  20713. }
  20714. },
  20715. sideNsfw: {
  20716. height: math.unit(7.5, "feet"),
  20717. weight: math.unit(2, "lb"),
  20718. name: "Side (NSFW)",
  20719. image: {
  20720. source: "./media/characters/artemis/side-nsfw.svg",
  20721. extra: 1192 / 1075,
  20722. bottom: 0.07
  20723. }
  20724. },
  20725. sideNsfwer: {
  20726. height: math.unit(7.5, "feet"),
  20727. weight: math.unit(2, "lb"),
  20728. name: "Side (NSFW-er)",
  20729. image: {
  20730. source: "./media/characters/artemis/side-nsfwer.svg",
  20731. extra: 1192 / 1075,
  20732. bottom: 0.07
  20733. }
  20734. },
  20735. maw: {
  20736. height: math.unit(1.1, "feet"),
  20737. name: "Maw",
  20738. image: {
  20739. source: "./media/characters/artemis/maw.svg"
  20740. }
  20741. },
  20742. stomach: {
  20743. height: math.unit(0.95, "feet"),
  20744. name: "Stomach",
  20745. image: {
  20746. source: "./media/characters/artemis/stomach.svg"
  20747. }
  20748. },
  20749. dickCanine: {
  20750. height: math.unit(1, "feet"),
  20751. name: "Dick (Canine)",
  20752. image: {
  20753. source: "./media/characters/artemis/dick-canine.svg"
  20754. }
  20755. },
  20756. dickEquine: {
  20757. height: math.unit(0.85, "feet"),
  20758. name: "Dick (Equine)",
  20759. image: {
  20760. source: "./media/characters/artemis/dick-equine.svg"
  20761. }
  20762. },
  20763. dickExotic: {
  20764. height: math.unit(0.85, "feet"),
  20765. name: "Dick (Exotic)",
  20766. image: {
  20767. source: "./media/characters/artemis/dick-exotic.svg"
  20768. }
  20769. },
  20770. },
  20771. [
  20772. {
  20773. name: "Normal",
  20774. height: math.unit(7.5, "feet"),
  20775. default: true
  20776. },
  20777. {
  20778. name: "Enlarged",
  20779. height: math.unit(12, "feet")
  20780. },
  20781. ]
  20782. ))
  20783. characterMakers.push(() => makeCharacter(
  20784. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20785. {
  20786. front: {
  20787. height: math.unit(5 + 3 / 12, "feet"),
  20788. weight: math.unit(160, "lb"),
  20789. name: "Front",
  20790. image: {
  20791. source: "./media/characters/kira/front.svg",
  20792. extra: 906 / 786,
  20793. bottom: 0.01
  20794. }
  20795. },
  20796. back: {
  20797. height: math.unit(5 + 3 / 12, "feet"),
  20798. weight: math.unit(160, "lb"),
  20799. name: "Back",
  20800. image: {
  20801. source: "./media/characters/kira/back.svg",
  20802. extra: 882 / 757,
  20803. bottom: 0.005
  20804. }
  20805. },
  20806. frontDressed: {
  20807. height: math.unit(5 + 3 / 12, "feet"),
  20808. weight: math.unit(160, "lb"),
  20809. name: "Front (Dressed)",
  20810. image: {
  20811. source: "./media/characters/kira/front-dressed.svg",
  20812. extra: 906 / 786,
  20813. bottom: 0.01
  20814. }
  20815. },
  20816. beans: {
  20817. height: math.unit(0.92, "feet"),
  20818. name: "Beans",
  20819. image: {
  20820. source: "./media/characters/kira/beans.svg"
  20821. }
  20822. },
  20823. },
  20824. [
  20825. {
  20826. name: "Normal",
  20827. height: math.unit(5 + 3 / 12, "feet"),
  20828. default: true
  20829. },
  20830. ]
  20831. ))
  20832. characterMakers.push(() => makeCharacter(
  20833. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20834. {
  20835. front: {
  20836. height: math.unit(5 + 4 / 12, "feet"),
  20837. weight: math.unit(145, "lb"),
  20838. name: "Front",
  20839. image: {
  20840. source: "./media/characters/scramble/front.svg",
  20841. extra: 763 / 727,
  20842. bottom: 0.05
  20843. }
  20844. },
  20845. back: {
  20846. height: math.unit(5 + 4 / 12, "feet"),
  20847. weight: math.unit(145, "lb"),
  20848. name: "Back",
  20849. image: {
  20850. source: "./media/characters/scramble/back.svg",
  20851. extra: 826 / 737,
  20852. bottom: 0.002
  20853. }
  20854. },
  20855. },
  20856. [
  20857. {
  20858. name: "Normal",
  20859. height: math.unit(5 + 4 / 12, "feet"),
  20860. default: true
  20861. },
  20862. ]
  20863. ))
  20864. characterMakers.push(() => makeCharacter(
  20865. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20866. {
  20867. side: {
  20868. height: math.unit(6 + 2 / 12, "feet"),
  20869. weight: math.unit(190, "lb"),
  20870. name: "Side",
  20871. image: {
  20872. source: "./media/characters/biscuit/side.svg",
  20873. extra: 858 / 791,
  20874. bottom: 0.044
  20875. }
  20876. },
  20877. },
  20878. [
  20879. {
  20880. name: "Normal",
  20881. height: math.unit(6 + 2 / 12, "feet"),
  20882. default: true
  20883. },
  20884. ]
  20885. ))
  20886. characterMakers.push(() => makeCharacter(
  20887. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20888. {
  20889. front: {
  20890. height: math.unit(5 + 2 / 12, "feet"),
  20891. weight: math.unit(120, "lb"),
  20892. name: "Front",
  20893. image: {
  20894. source: "./media/characters/poffin/front.svg",
  20895. extra: 786 / 680,
  20896. bottom: 0.005
  20897. }
  20898. },
  20899. },
  20900. [
  20901. {
  20902. name: "Normal",
  20903. height: math.unit(5 + 2 / 12, "feet"),
  20904. default: true
  20905. },
  20906. ]
  20907. ))
  20908. characterMakers.push(() => makeCharacter(
  20909. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20910. {
  20911. front: {
  20912. height: math.unit(6 + 3 / 12, "feet"),
  20913. weight: math.unit(519, "lb"),
  20914. name: "Front",
  20915. image: {
  20916. source: "./media/characters/dhari/front.svg",
  20917. extra: 1048 / 946,
  20918. bottom: 0.015
  20919. }
  20920. },
  20921. back: {
  20922. height: math.unit(6 + 3 / 12, "feet"),
  20923. weight: math.unit(519, "lb"),
  20924. name: "Back",
  20925. image: {
  20926. source: "./media/characters/dhari/back.svg",
  20927. extra: 1048 / 931,
  20928. bottom: 0.005
  20929. }
  20930. },
  20931. frontDressed: {
  20932. height: math.unit(6 + 3 / 12, "feet"),
  20933. weight: math.unit(519, "lb"),
  20934. name: "Front (Dressed)",
  20935. image: {
  20936. source: "./media/characters/dhari/front-dressed.svg",
  20937. extra: 1713 / 1546,
  20938. bottom: 0.02
  20939. }
  20940. },
  20941. backDressed: {
  20942. height: math.unit(6 + 3 / 12, "feet"),
  20943. weight: math.unit(519, "lb"),
  20944. name: "Back (Dressed)",
  20945. image: {
  20946. source: "./media/characters/dhari/back-dressed.svg",
  20947. extra: 1699 / 1537,
  20948. bottom: 0.01
  20949. }
  20950. },
  20951. maw: {
  20952. height: math.unit(0.95, "feet"),
  20953. name: "Maw",
  20954. image: {
  20955. source: "./media/characters/dhari/maw.svg"
  20956. }
  20957. },
  20958. wereFront: {
  20959. height: math.unit(12 + 8 / 12, "feet"),
  20960. weight: math.unit(4000, "lb"),
  20961. name: "Front (Were)",
  20962. image: {
  20963. source: "./media/characters/dhari/were-front.svg",
  20964. extra: 1065 / 969,
  20965. bottom: 0.015
  20966. }
  20967. },
  20968. wereBack: {
  20969. height: math.unit(12 + 8 / 12, "feet"),
  20970. weight: math.unit(4000, "lb"),
  20971. name: "Back (Were)",
  20972. image: {
  20973. source: "./media/characters/dhari/were-back.svg",
  20974. extra: 1065 / 969,
  20975. bottom: 0.012
  20976. }
  20977. },
  20978. wereMaw: {
  20979. height: math.unit(0.625, "meters"),
  20980. name: "Maw (Were)",
  20981. image: {
  20982. source: "./media/characters/dhari/were-maw.svg"
  20983. }
  20984. },
  20985. },
  20986. [
  20987. {
  20988. name: "Normal",
  20989. height: math.unit(6 + 3 / 12, "feet"),
  20990. default: true
  20991. },
  20992. ]
  20993. ))
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20996. {
  20997. anthro: {
  20998. height: math.unit(5 + 7 / 12, "feet"),
  20999. weight: math.unit(175, "lb"),
  21000. name: "Anthro",
  21001. image: {
  21002. source: "./media/characters/rena-dyne/anthro.svg",
  21003. extra: 1849 / 1785,
  21004. bottom: 0.005
  21005. }
  21006. },
  21007. taur: {
  21008. height: math.unit(15 + 6 / 12, "feet"),
  21009. weight: math.unit(8000, "lb"),
  21010. name: "Taur",
  21011. image: {
  21012. source: "./media/characters/rena-dyne/taur.svg",
  21013. extra: 2315 / 2234,
  21014. bottom: 0.033
  21015. }
  21016. },
  21017. },
  21018. [
  21019. {
  21020. name: "Normal",
  21021. height: math.unit(5 + 7 / 12, "feet"),
  21022. default: true
  21023. },
  21024. ]
  21025. ))
  21026. characterMakers.push(() => makeCharacter(
  21027. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21028. {
  21029. front: {
  21030. height: math.unit(8, "feet"),
  21031. weight: math.unit(600, "lb"),
  21032. name: "Front",
  21033. image: {
  21034. source: "./media/characters/weremeep/front.svg",
  21035. extra: 967 / 862,
  21036. bottom: 0.01
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(8, "feet"),
  21044. default: true
  21045. },
  21046. {
  21047. name: "Lorg",
  21048. height: math.unit(12, "feet")
  21049. },
  21050. {
  21051. name: "Oh Lawd She Comin'",
  21052. height: math.unit(20, "feet")
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21058. {
  21059. front: {
  21060. height: math.unit(4, "feet"),
  21061. weight: math.unit(90, "lb"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/reza/front.svg",
  21065. extra: 1183 / 1111,
  21066. bottom: 0.017
  21067. }
  21068. },
  21069. back: {
  21070. height: math.unit(4, "feet"),
  21071. weight: math.unit(90, "lb"),
  21072. name: "Back",
  21073. image: {
  21074. source: "./media/characters/reza/back.svg",
  21075. extra: 1183 / 1111,
  21076. bottom: 0.01
  21077. }
  21078. },
  21079. drake: {
  21080. height: math.unit(30, "feet"),
  21081. weight: math.unit(246960, "lb"),
  21082. name: "Drake",
  21083. image: {
  21084. source: "./media/characters/reza/drake.svg",
  21085. extra: 2350 / 2024,
  21086. bottom: 60.7 / 2403
  21087. }
  21088. },
  21089. },
  21090. [
  21091. {
  21092. name: "Normal",
  21093. height: math.unit(4, "feet"),
  21094. default: true
  21095. },
  21096. ]
  21097. ))
  21098. characterMakers.push(() => makeCharacter(
  21099. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21100. {
  21101. side: {
  21102. height: math.unit(15, "feet"),
  21103. weight: math.unit(14, "tons"),
  21104. name: "Side",
  21105. image: {
  21106. source: "./media/characters/athea/side.svg",
  21107. extra: 960 / 540,
  21108. bottom: 0.003
  21109. }
  21110. },
  21111. sitting: {
  21112. height: math.unit(6 * 2.85, "feet"),
  21113. weight: math.unit(14, "tons"),
  21114. name: "Sitting",
  21115. image: {
  21116. source: "./media/characters/athea/sitting.svg",
  21117. extra: 621 / 581,
  21118. bottom: 0.075
  21119. }
  21120. },
  21121. maw: {
  21122. height: math.unit(7.59498031496063, "feet"),
  21123. name: "Maw",
  21124. image: {
  21125. source: "./media/characters/athea/maw.svg"
  21126. }
  21127. },
  21128. },
  21129. [
  21130. {
  21131. name: "Lap Cat",
  21132. height: math.unit(2.5, "feet")
  21133. },
  21134. {
  21135. name: "Minimacro",
  21136. height: math.unit(15, "feet"),
  21137. default: true
  21138. },
  21139. {
  21140. name: "Macro",
  21141. height: math.unit(120, "feet")
  21142. },
  21143. {
  21144. name: "Macro+",
  21145. height: math.unit(640, "feet")
  21146. },
  21147. {
  21148. name: "Colossus",
  21149. height: math.unit(2.2, "miles")
  21150. },
  21151. ]
  21152. ))
  21153. characterMakers.push(() => makeCharacter(
  21154. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21155. {
  21156. front: {
  21157. height: math.unit(8 + 8 / 12, "feet"),
  21158. weight: math.unit(130, "kg"),
  21159. name: "Front",
  21160. image: {
  21161. source: "./media/characters/seroko/front.svg",
  21162. extra: 1385 / 1280,
  21163. bottom: 0.025
  21164. }
  21165. },
  21166. back: {
  21167. height: math.unit(8 + 8 / 12, "feet"),
  21168. weight: math.unit(130, "kg"),
  21169. name: "Back",
  21170. image: {
  21171. source: "./media/characters/seroko/back.svg",
  21172. extra: 1369 / 1238,
  21173. bottom: 0.018
  21174. }
  21175. },
  21176. frontDressed: {
  21177. height: math.unit(8 + 8 / 12, "feet"),
  21178. weight: math.unit(130, "kg"),
  21179. name: "Front (Dressed)",
  21180. image: {
  21181. source: "./media/characters/seroko/front-dressed.svg",
  21182. extra: 1366 / 1275,
  21183. bottom: 0.03
  21184. }
  21185. },
  21186. },
  21187. [
  21188. {
  21189. name: "Normal",
  21190. height: math.unit(8 + 8 / 12, "feet"),
  21191. default: true
  21192. },
  21193. ]
  21194. ))
  21195. characterMakers.push(() => makeCharacter(
  21196. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21197. {
  21198. front: {
  21199. height: math.unit(5.5, "feet"),
  21200. weight: math.unit(160, "lb"),
  21201. name: "Front",
  21202. image: {
  21203. source: "./media/characters/quatzi/front.svg",
  21204. extra: 2346 / 2242,
  21205. bottom: 0.015
  21206. }
  21207. },
  21208. },
  21209. [
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(5.5, "feet"),
  21213. default: true
  21214. },
  21215. {
  21216. name: "Big",
  21217. height: math.unit(7.7, "feet")
  21218. },
  21219. ]
  21220. ))
  21221. characterMakers.push(() => makeCharacter(
  21222. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21223. {
  21224. front: {
  21225. height: math.unit(5 + 11 / 12, "feet"),
  21226. weight: math.unit(180, "lb"),
  21227. name: "Front",
  21228. image: {
  21229. source: "./media/characters/sen/front.svg",
  21230. extra: 1321 / 1254,
  21231. bottom: 0.015
  21232. }
  21233. },
  21234. side: {
  21235. height: math.unit(5 + 11 / 12, "feet"),
  21236. weight: math.unit(180, "lb"),
  21237. name: "Side",
  21238. image: {
  21239. source: "./media/characters/sen/side.svg",
  21240. extra: 1321 / 1254,
  21241. bottom: 0.007
  21242. }
  21243. },
  21244. back: {
  21245. height: math.unit(5 + 11 / 12, "feet"),
  21246. weight: math.unit(180, "lb"),
  21247. name: "Back",
  21248. image: {
  21249. source: "./media/characters/sen/back.svg",
  21250. extra: 1321 / 1254
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Normal",
  21257. height: math.unit(5 + 11 / 12, "feet"),
  21258. default: true
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21264. {
  21265. front: {
  21266. height: math.unit(166.6, "cm"),
  21267. weight: math.unit(66.6, "kg"),
  21268. name: "Front",
  21269. image: {
  21270. source: "./media/characters/fruity/front.svg",
  21271. extra: 1510 / 1386,
  21272. bottom: 0.04
  21273. }
  21274. },
  21275. back: {
  21276. height: math.unit(166.6, "cm"),
  21277. weight: math.unit(66.6, "lb"),
  21278. name: "Back",
  21279. image: {
  21280. source: "./media/characters/fruity/back.svg",
  21281. extra: 1563 / 1435,
  21282. bottom: 0.005
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Normal",
  21289. height: math.unit(166.6, "cm"),
  21290. default: true
  21291. },
  21292. {
  21293. name: "Demonic",
  21294. height: math.unit(166.6, "feet")
  21295. },
  21296. ]
  21297. ))
  21298. characterMakers.push(() => makeCharacter(
  21299. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21300. {
  21301. side: {
  21302. height: math.unit(10, "feet"),
  21303. weight: math.unit(500, "lb"),
  21304. name: "Side",
  21305. image: {
  21306. source: "./media/characters/zost/side.svg",
  21307. extra: 966 / 880,
  21308. bottom: 0.075
  21309. }
  21310. },
  21311. mawFront: {
  21312. height: math.unit(1.08, "meters"),
  21313. name: "Maw (Front)",
  21314. image: {
  21315. source: "./media/characters/zost/maw-front.svg"
  21316. }
  21317. },
  21318. mawSide: {
  21319. height: math.unit(2.66, "feet"),
  21320. name: "Maw (Side)",
  21321. image: {
  21322. source: "./media/characters/zost/maw-side.svg"
  21323. }
  21324. },
  21325. },
  21326. [
  21327. {
  21328. name: "Normal",
  21329. height: math.unit(10, "feet"),
  21330. default: true
  21331. },
  21332. ]
  21333. ))
  21334. characterMakers.push(() => makeCharacter(
  21335. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21336. {
  21337. front: {
  21338. height: math.unit(5 + 4 / 12, "feet"),
  21339. weight: math.unit(120, "lb"),
  21340. name: "Front",
  21341. image: {
  21342. source: "./media/characters/luci/front.svg",
  21343. extra: 1985 / 1884,
  21344. bottom: 0.04
  21345. }
  21346. },
  21347. back: {
  21348. height: math.unit(5 + 4 / 12, "feet"),
  21349. weight: math.unit(120, "lb"),
  21350. name: "Back",
  21351. image: {
  21352. source: "./media/characters/luci/back.svg",
  21353. extra: 1892 / 1791,
  21354. bottom: 0.002
  21355. }
  21356. },
  21357. },
  21358. [
  21359. {
  21360. name: "Normal",
  21361. height: math.unit(5 + 4 / 12, "feet"),
  21362. default: true
  21363. },
  21364. ]
  21365. ))
  21366. characterMakers.push(() => makeCharacter(
  21367. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21368. {
  21369. front: {
  21370. height: math.unit(1500, "feet"),
  21371. weight: math.unit(3.8e6, "tons"),
  21372. name: "Front",
  21373. image: {
  21374. source: "./media/characters/2th/front.svg",
  21375. extra: 3489 / 3350,
  21376. bottom: 0.1
  21377. }
  21378. },
  21379. foot: {
  21380. height: math.unit(461, "feet"),
  21381. name: "Foot",
  21382. image: {
  21383. source: "./media/characters/2th/foot.svg"
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "\"Micro\"",
  21390. height: math.unit(15 + 7 / 12, "feet")
  21391. },
  21392. {
  21393. name: "Normal",
  21394. height: math.unit(1500, "feet"),
  21395. default: true
  21396. },
  21397. {
  21398. name: "Macro",
  21399. height: math.unit(5000, "feet")
  21400. },
  21401. {
  21402. name: "Megamacro",
  21403. height: math.unit(15, "miles")
  21404. },
  21405. {
  21406. name: "Gigamacro",
  21407. height: math.unit(4000, "miles")
  21408. },
  21409. {
  21410. name: "Galactic",
  21411. height: math.unit(50, "AU")
  21412. },
  21413. ]
  21414. ))
  21415. characterMakers.push(() => makeCharacter(
  21416. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21417. {
  21418. front: {
  21419. height: math.unit(5 + 6 / 12, "feet"),
  21420. weight: math.unit(220, "lb"),
  21421. name: "Front",
  21422. image: {
  21423. source: "./media/characters/amethyst/front.svg",
  21424. extra: 2078 / 2040,
  21425. bottom: 0.045
  21426. }
  21427. },
  21428. back: {
  21429. height: math.unit(5 + 6 / 12, "feet"),
  21430. weight: math.unit(220, "lb"),
  21431. name: "Back",
  21432. image: {
  21433. source: "./media/characters/amethyst/back.svg",
  21434. extra: 2021 / 1989,
  21435. bottom: 0.02
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(5 + 6 / 12, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21449. {
  21450. front: {
  21451. height: math.unit(4 + 11 / 12, "feet"),
  21452. weight: math.unit(120, "lb"),
  21453. name: "Front",
  21454. image: {
  21455. source: "./media/characters/yumi-akiyama/front.svg",
  21456. extra: 1327 / 1235,
  21457. bottom: 0.02
  21458. }
  21459. },
  21460. back: {
  21461. height: math.unit(4 + 11 / 12, "feet"),
  21462. weight: math.unit(120, "lb"),
  21463. name: "Back",
  21464. image: {
  21465. source: "./media/characters/yumi-akiyama/back.svg",
  21466. extra: 1287 / 1245,
  21467. bottom: 0.002
  21468. }
  21469. },
  21470. },
  21471. [
  21472. {
  21473. name: "Galactic",
  21474. height: math.unit(50, "galaxies"),
  21475. default: true
  21476. },
  21477. {
  21478. name: "Universal",
  21479. height: math.unit(100, "universes")
  21480. },
  21481. ]
  21482. ))
  21483. characterMakers.push(() => makeCharacter(
  21484. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21485. {
  21486. front: {
  21487. height: math.unit(8, "feet"),
  21488. weight: math.unit(500, "lb"),
  21489. name: "Front",
  21490. image: {
  21491. source: "./media/characters/rifter-yrmori/front.svg",
  21492. extra: 1180 / 1125,
  21493. bottom: 0.02
  21494. }
  21495. },
  21496. back: {
  21497. height: math.unit(8, "feet"),
  21498. weight: math.unit(500, "lb"),
  21499. name: "Back",
  21500. image: {
  21501. source: "./media/characters/rifter-yrmori/back.svg",
  21502. extra: 1190 / 1145,
  21503. bottom: 0.001
  21504. }
  21505. },
  21506. wings: {
  21507. height: math.unit(7.75, "feet"),
  21508. weight: math.unit(500, "lb"),
  21509. name: "Wings",
  21510. image: {
  21511. source: "./media/characters/rifter-yrmori/wings.svg",
  21512. extra: 1357 / 1285
  21513. }
  21514. },
  21515. maw: {
  21516. height: math.unit(0.8, "feet"),
  21517. name: "Maw",
  21518. image: {
  21519. source: "./media/characters/rifter-yrmori/maw.svg"
  21520. }
  21521. },
  21522. mawfront: {
  21523. height: math.unit(1.45, "feet"),
  21524. name: "Maw (Front)",
  21525. image: {
  21526. source: "./media/characters/rifter-yrmori/maw-front.svg"
  21527. }
  21528. },
  21529. },
  21530. [
  21531. {
  21532. name: "Normal",
  21533. height: math.unit(8, "feet"),
  21534. default: true
  21535. },
  21536. {
  21537. name: "Macro",
  21538. height: math.unit(42, "meters")
  21539. },
  21540. ]
  21541. ))
  21542. characterMakers.push(() => makeCharacter(
  21543. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  21544. {
  21545. were: {
  21546. height: math.unit(25 + 6 / 12, "feet"),
  21547. weight: math.unit(10000, "lb"),
  21548. name: "Were",
  21549. image: {
  21550. source: "./media/characters/tahajin/were.svg",
  21551. extra: 801 / 770,
  21552. bottom: 0.042
  21553. }
  21554. },
  21555. aquatic: {
  21556. height: math.unit(6 + 4 / 12, "feet"),
  21557. weight: math.unit(160, "lb"),
  21558. name: "Aquatic",
  21559. image: {
  21560. source: "./media/characters/tahajin/aquatic.svg",
  21561. extra: 572 / 542,
  21562. bottom: 0.04
  21563. }
  21564. },
  21565. chow: {
  21566. height: math.unit(8 + 11 / 12, "feet"),
  21567. weight: math.unit(450, "lb"),
  21568. name: "Chow",
  21569. image: {
  21570. source: "./media/characters/tahajin/chow.svg",
  21571. extra: 660 / 640,
  21572. bottom: 0.015
  21573. }
  21574. },
  21575. demiNaga: {
  21576. height: math.unit(6 + 8 / 12, "feet"),
  21577. weight: math.unit(300, "lb"),
  21578. name: "Demi Naga",
  21579. image: {
  21580. source: "./media/characters/tahajin/demi-naga.svg",
  21581. extra: 643 / 615,
  21582. bottom: 0.1
  21583. }
  21584. },
  21585. data: {
  21586. height: math.unit(5, "inches"),
  21587. weight: math.unit(0.1, "lb"),
  21588. name: "Data",
  21589. image: {
  21590. source: "./media/characters/tahajin/data.svg"
  21591. }
  21592. },
  21593. fluu: {
  21594. height: math.unit(5 + 7 / 12, "feet"),
  21595. weight: math.unit(140, "lb"),
  21596. name: "Fluu",
  21597. image: {
  21598. source: "./media/characters/tahajin/fluu.svg",
  21599. extra: 628 / 592,
  21600. bottom: 0.02
  21601. }
  21602. },
  21603. starWarrior: {
  21604. height: math.unit(4 + 5 / 12, "feet"),
  21605. weight: math.unit(50, "lb"),
  21606. name: "Star Warrior",
  21607. image: {
  21608. source: "./media/characters/tahajin/star-warrior.svg"
  21609. }
  21610. },
  21611. },
  21612. [
  21613. {
  21614. name: "Normal",
  21615. height: math.unit(25 + 6 / 12, "feet"),
  21616. default: true
  21617. },
  21618. ]
  21619. ))
  21620. characterMakers.push(() => makeCharacter(
  21621. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  21622. {
  21623. front: {
  21624. height: math.unit(8, "feet"),
  21625. weight: math.unit(350, "lb"),
  21626. name: "Front",
  21627. image: {
  21628. source: "./media/characters/gabira/front.svg",
  21629. extra: 608 / 580,
  21630. bottom: 0.03
  21631. }
  21632. },
  21633. back: {
  21634. height: math.unit(8, "feet"),
  21635. weight: math.unit(350, "lb"),
  21636. name: "Back",
  21637. image: {
  21638. source: "./media/characters/gabira/back.svg",
  21639. extra: 608 / 580,
  21640. bottom: 0.03
  21641. }
  21642. },
  21643. },
  21644. [
  21645. {
  21646. name: "Normal",
  21647. height: math.unit(8, "feet"),
  21648. default: true
  21649. },
  21650. ]
  21651. ))
  21652. characterMakers.push(() => makeCharacter(
  21653. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  21654. {
  21655. front: {
  21656. height: math.unit(5 + 3 / 12, "feet"),
  21657. weight: math.unit(137, "lb"),
  21658. name: "Front",
  21659. image: {
  21660. source: "./media/characters/sasha-katraine/front.svg",
  21661. bottom: 0.045
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Micro",
  21668. height: math.unit(5, "inches")
  21669. },
  21670. {
  21671. name: "Normal",
  21672. height: math.unit(5 + 3 / 12, "feet"),
  21673. default: true
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  21679. {
  21680. side: {
  21681. height: math.unit(4, "inches"),
  21682. weight: math.unit(200, "grams"),
  21683. name: "Side",
  21684. image: {
  21685. source: "./media/characters/der/side.svg",
  21686. extra: 719 / 400,
  21687. bottom: 30.6 / 749.9187
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Micro",
  21694. height: math.unit(4, "inches"),
  21695. default: true
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  21701. {
  21702. side: {
  21703. height: math.unit(30, "meters"),
  21704. weight: math.unit(700, "tonnes"),
  21705. name: "Side",
  21706. image: {
  21707. source: "./media/characters/fixerdragon/side.svg",
  21708. extra: (1293.0514 - 116.03) / 1106.86,
  21709. bottom: 116.03 / 1293.0514
  21710. }
  21711. },
  21712. },
  21713. [
  21714. {
  21715. name: "Planck",
  21716. height: math.unit(1.6e-35, "meters")
  21717. },
  21718. {
  21719. name: "Micro",
  21720. height: math.unit(0.4, "meters")
  21721. },
  21722. {
  21723. name: "Normal",
  21724. height: math.unit(30, "meters"),
  21725. default: true
  21726. },
  21727. {
  21728. name: "Megamacro",
  21729. height: math.unit(1.2, "megameters")
  21730. },
  21731. {
  21732. name: "Teramacro",
  21733. height: math.unit(130, "terameters")
  21734. },
  21735. {
  21736. name: "Yottamacro",
  21737. height: math.unit(6200, "yottameters")
  21738. },
  21739. ]
  21740. ));
  21741. characterMakers.push(() => makeCharacter(
  21742. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21743. {
  21744. front: {
  21745. height: math.unit(8, "feet"),
  21746. weight: math.unit(250, "lb"),
  21747. name: "Front",
  21748. image: {
  21749. source: "./media/characters/kite/front.svg",
  21750. extra: 2796 / 2659,
  21751. bottom: 0.002
  21752. }
  21753. },
  21754. },
  21755. [
  21756. {
  21757. name: "Normal",
  21758. height: math.unit(8, "feet"),
  21759. default: true
  21760. },
  21761. {
  21762. name: "Macro",
  21763. height: math.unit(360, "feet")
  21764. },
  21765. {
  21766. name: "Megamacro",
  21767. height: math.unit(1500, "feet")
  21768. },
  21769. ]
  21770. ))
  21771. characterMakers.push(() => makeCharacter(
  21772. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21773. {
  21774. front: {
  21775. height: math.unit(5 + 11/12, "feet"),
  21776. weight: math.unit(170, "lb"),
  21777. name: "Front",
  21778. image: {
  21779. source: "./media/characters/poojawa-vynar/front.svg",
  21780. extra: 1735/1585,
  21781. bottom: 96/1831
  21782. }
  21783. },
  21784. back: {
  21785. height: math.unit(5 + 11/12, "feet"),
  21786. weight: math.unit(170, "lb"),
  21787. name: "Back",
  21788. image: {
  21789. source: "./media/characters/poojawa-vynar/back.svg",
  21790. extra: 1749/1607,
  21791. bottom: 28/1777
  21792. }
  21793. },
  21794. male: {
  21795. height: math.unit(5 + 11/12, "feet"),
  21796. weight: math.unit(170, "lb"),
  21797. name: "Male",
  21798. image: {
  21799. source: "./media/characters/poojawa-vynar/male.svg",
  21800. extra: 1855/1713,
  21801. bottom: 63/1918
  21802. }
  21803. },
  21804. taur: {
  21805. height: math.unit(5 + 11/12, "feet"),
  21806. weight: math.unit(170, "lb"),
  21807. name: "Taur",
  21808. image: {
  21809. source: "./media/characters/poojawa-vynar/taur.svg",
  21810. extra: 1151/1059,
  21811. bottom: 356/1507
  21812. }
  21813. },
  21814. frontDressed: {
  21815. height: math.unit(5 + 11/12, "feet"),
  21816. weight: math.unit(170, "lb"),
  21817. name: "Front (Dressed)",
  21818. image: {
  21819. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  21820. extra: 1735/1585,
  21821. bottom: 96/1831
  21822. }
  21823. },
  21824. backDressed: {
  21825. height: math.unit(5 + 11/12, "feet"),
  21826. weight: math.unit(170, "lb"),
  21827. name: "Back (Dressed)",
  21828. image: {
  21829. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  21830. extra: 1749/1607,
  21831. bottom: 28/1777
  21832. }
  21833. },
  21834. maleDressed: {
  21835. height: math.unit(5 + 11/12, "feet"),
  21836. weight: math.unit(170, "lb"),
  21837. name: "Male (Dressed)",
  21838. image: {
  21839. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  21840. extra: 1855/1713,
  21841. bottom: 63/1918
  21842. }
  21843. },
  21844. taurDressed: {
  21845. height: math.unit(5 + 11/12, "feet"),
  21846. weight: math.unit(170, "lb"),
  21847. name: "Taur (Dressed)",
  21848. image: {
  21849. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  21850. extra: 1151/1059,
  21851. bottom: 356/1507
  21852. }
  21853. },
  21854. maw: {
  21855. height: math.unit(1.46, "feet"),
  21856. name: "Maw",
  21857. image: {
  21858. source: "./media/characters/poojawa-vynar/maw.svg"
  21859. }
  21860. },
  21861. head: {
  21862. height: math.unit(2.34, "feet"),
  21863. name: "Head",
  21864. image: {
  21865. source: "./media/characters/poojawa-vynar/head.svg"
  21866. }
  21867. },
  21868. paw: {
  21869. height: math.unit(1.61, "feet"),
  21870. name: "Paw",
  21871. image: {
  21872. source: "./media/characters/poojawa-vynar/paw.svg"
  21873. }
  21874. },
  21875. pawToering: {
  21876. height: math.unit(1.72, "feet"),
  21877. name: "Paw (Toering)",
  21878. image: {
  21879. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  21880. }
  21881. },
  21882. toering: {
  21883. height: math.unit(2.9, "inches"),
  21884. name: "Toering",
  21885. image: {
  21886. source: "./media/characters/poojawa-vynar/toering.svg"
  21887. }
  21888. },
  21889. shaft: {
  21890. height: math.unit(0.625, "feet"),
  21891. name: "Shaft",
  21892. image: {
  21893. source: "./media/characters/poojawa-vynar/shaft.svg"
  21894. }
  21895. },
  21896. spade: {
  21897. height: math.unit(0.42, "feet"),
  21898. name: "Spade",
  21899. image: {
  21900. source: "./media/characters/poojawa-vynar/spade.svg"
  21901. }
  21902. },
  21903. },
  21904. [
  21905. {
  21906. name: "Shortstack",
  21907. height: math.unit(4, "feet")
  21908. },
  21909. {
  21910. name: "Normal",
  21911. height: math.unit(5 + 11 / 12, "feet"),
  21912. default: true
  21913. },
  21914. {
  21915. name: "Tauric",
  21916. height: math.unit(4, "meters")
  21917. },
  21918. ]
  21919. ))
  21920. characterMakers.push(() => makeCharacter(
  21921. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21922. {
  21923. front: {
  21924. height: math.unit(293, "meters"),
  21925. weight: math.unit(70400, "tons"),
  21926. name: "Front",
  21927. image: {
  21928. source: "./media/characters/violette/front.svg",
  21929. extra: 1227 / 1180,
  21930. bottom: 0.005
  21931. }
  21932. },
  21933. back: {
  21934. height: math.unit(293, "meters"),
  21935. weight: math.unit(70400, "tons"),
  21936. name: "Back",
  21937. image: {
  21938. source: "./media/characters/violette/back.svg",
  21939. extra: 1227 / 1180,
  21940. bottom: 0.005
  21941. }
  21942. },
  21943. },
  21944. [
  21945. {
  21946. name: "Macro",
  21947. height: math.unit(293, "meters"),
  21948. default: true
  21949. },
  21950. ]
  21951. ))
  21952. characterMakers.push(() => makeCharacter(
  21953. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21954. {
  21955. front: {
  21956. height: math.unit(1050, "feet"),
  21957. weight: math.unit(200000, "tons"),
  21958. name: "Front",
  21959. image: {
  21960. source: "./media/characters/alessandra/front.svg",
  21961. extra: 960 / 912,
  21962. bottom: 0.06
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Macro",
  21969. height: math.unit(1050, "feet")
  21970. },
  21971. {
  21972. name: "Macro+",
  21973. height: math.unit(900, "meters"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(5, "feet"),
  21983. weight: math.unit(187, "lb"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/person/front.svg",
  21987. extra: 3087 / 2945,
  21988. bottom: 91 / 3181
  21989. }
  21990. },
  21991. },
  21992. [
  21993. {
  21994. name: "Micro",
  21995. height: math.unit(3, "inches")
  21996. },
  21997. {
  21998. name: "Normal",
  21999. height: math.unit(5, "feet"),
  22000. default: true
  22001. },
  22002. {
  22003. name: "Macro",
  22004. height: math.unit(90, "feet")
  22005. },
  22006. {
  22007. name: "Max Size",
  22008. height: math.unit(280, "feet")
  22009. },
  22010. ]
  22011. ))
  22012. characterMakers.push(() => makeCharacter(
  22013. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22014. {
  22015. front: {
  22016. height: math.unit(4.5, "meters"),
  22017. weight: math.unit(3200, "lb"),
  22018. name: "Front",
  22019. image: {
  22020. source: "./media/characters/ty/front.svg",
  22021. extra: 1038 / 960,
  22022. bottom: 31.156 / 1068
  22023. }
  22024. },
  22025. back: {
  22026. height: math.unit(4.5, "meters"),
  22027. weight: math.unit(3200, "lb"),
  22028. name: "Back",
  22029. image: {
  22030. source: "./media/characters/ty/back.svg",
  22031. extra: 1044 / 966,
  22032. bottom: 7.48 / 1049
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(4.5, "meters"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22046. {
  22047. front: {
  22048. height: math.unit(5 + 4 / 12, "feet"),
  22049. weight: math.unit(115, "lb"),
  22050. name: "Front",
  22051. image: {
  22052. source: "./media/characters/rocky/front.svg",
  22053. extra: 1012 / 975,
  22054. bottom: 54 / 1066
  22055. }
  22056. },
  22057. },
  22058. [
  22059. {
  22060. name: "Normal",
  22061. height: math.unit(5 + 4 / 12, "feet"),
  22062. default: true
  22063. },
  22064. ]
  22065. ))
  22066. characterMakers.push(() => makeCharacter(
  22067. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22068. {
  22069. upright: {
  22070. height: math.unit(6, "meters"),
  22071. weight: math.unit(4000, "kg"),
  22072. name: "Upright",
  22073. image: {
  22074. source: "./media/characters/ruin/upright.svg",
  22075. extra: 668 / 661,
  22076. bottom: 42 / 799.8396
  22077. }
  22078. },
  22079. },
  22080. [
  22081. {
  22082. name: "Normal",
  22083. height: math.unit(6, "meters"),
  22084. default: true
  22085. },
  22086. ]
  22087. ))
  22088. characterMakers.push(() => makeCharacter(
  22089. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22090. {
  22091. front: {
  22092. height: math.unit(5, "feet"),
  22093. weight: math.unit(106, "lb"),
  22094. name: "Front",
  22095. image: {
  22096. source: "./media/characters/robin/front.svg",
  22097. extra: 862 / 799,
  22098. bottom: 42.4 / 914.8856
  22099. }
  22100. },
  22101. },
  22102. [
  22103. {
  22104. name: "Normal",
  22105. height: math.unit(5, "feet"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22112. {
  22113. side: {
  22114. height: math.unit(3, "feet"),
  22115. weight: math.unit(225, "lb"),
  22116. name: "Side",
  22117. image: {
  22118. source: "./media/characters/saian/side.svg",
  22119. extra: 566 / 356,
  22120. bottom: 79.7 / 643
  22121. }
  22122. },
  22123. maw: {
  22124. height: math.unit(2.85, "feet"),
  22125. name: "Maw",
  22126. image: {
  22127. source: "./media/characters/saian/maw.svg"
  22128. }
  22129. },
  22130. },
  22131. [
  22132. {
  22133. name: "Normal",
  22134. height: math.unit(3, "feet"),
  22135. default: true
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22141. {
  22142. side: {
  22143. height: math.unit(8, "feet"),
  22144. weight: math.unit(300, "lb"),
  22145. name: "Side",
  22146. image: {
  22147. source: "./media/characters/equus-silvermane/side.svg",
  22148. extra: 2176 / 2050,
  22149. bottom: 65.7 / 2245
  22150. }
  22151. },
  22152. front: {
  22153. height: math.unit(8, "feet"),
  22154. weight: math.unit(300, "lb"),
  22155. name: "Front",
  22156. image: {
  22157. source: "./media/characters/equus-silvermane/front.svg",
  22158. extra: 4633 / 4400,
  22159. bottom: 71.3 / 4706.915
  22160. }
  22161. },
  22162. sideStepping: {
  22163. height: math.unit(8, "feet"),
  22164. weight: math.unit(300, "lb"),
  22165. name: "Side (Stepping)",
  22166. image: {
  22167. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22168. extra: 1968 / 1860,
  22169. bottom: 16.4 / 1989
  22170. }
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(8, "feet")
  22177. },
  22178. {
  22179. name: "Minimacro",
  22180. height: math.unit(75, "feet"),
  22181. default: true
  22182. },
  22183. {
  22184. name: "Macro",
  22185. height: math.unit(150, "feet")
  22186. },
  22187. {
  22188. name: "Macro+",
  22189. height: math.unit(1000, "feet")
  22190. },
  22191. {
  22192. name: "Megamacro",
  22193. height: math.unit(1, "mile")
  22194. },
  22195. ]
  22196. ))
  22197. characterMakers.push(() => makeCharacter(
  22198. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22199. {
  22200. side: {
  22201. height: math.unit(20, "feet"),
  22202. weight: math.unit(30000, "kg"),
  22203. name: "Side",
  22204. image: {
  22205. source: "./media/characters/windar/side.svg",
  22206. extra: 1491 / 1248,
  22207. bottom: 82.56 / 1568
  22208. }
  22209. },
  22210. },
  22211. [
  22212. {
  22213. name: "Normal",
  22214. height: math.unit(20, "feet"),
  22215. default: true
  22216. },
  22217. ]
  22218. ))
  22219. characterMakers.push(() => makeCharacter(
  22220. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22221. {
  22222. side: {
  22223. height: math.unit(15.66, "feet"),
  22224. weight: math.unit(150, "lb"),
  22225. name: "Side",
  22226. image: {
  22227. source: "./media/characters/melody/side.svg",
  22228. extra: 1097 / 944,
  22229. bottom: 11.8 / 1109
  22230. }
  22231. },
  22232. sideOutfit: {
  22233. height: math.unit(15.66, "feet"),
  22234. weight: math.unit(150, "lb"),
  22235. name: "Side (Outfit)",
  22236. image: {
  22237. source: "./media/characters/melody/side-outfit.svg",
  22238. extra: 1097 / 944,
  22239. bottom: 11.8 / 1109
  22240. }
  22241. },
  22242. },
  22243. [
  22244. {
  22245. name: "Normal",
  22246. height: math.unit(15.66, "feet"),
  22247. default: true
  22248. },
  22249. ]
  22250. ))
  22251. characterMakers.push(() => makeCharacter(
  22252. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22253. {
  22254. front: {
  22255. height: math.unit(8, "feet"),
  22256. weight: math.unit(325, "lb"),
  22257. name: "Front",
  22258. image: {
  22259. source: "./media/characters/windera/front.svg",
  22260. extra: 3180 / 2845,
  22261. bottom: 178 / 3365
  22262. }
  22263. },
  22264. },
  22265. [
  22266. {
  22267. name: "Normal",
  22268. height: math.unit(8, "feet"),
  22269. default: true
  22270. },
  22271. ]
  22272. ))
  22273. characterMakers.push(() => makeCharacter(
  22274. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22275. {
  22276. front: {
  22277. height: math.unit(28.75, "feet"),
  22278. weight: math.unit(2000, "kg"),
  22279. name: "Front",
  22280. image: {
  22281. source: "./media/characters/sonear/front.svg",
  22282. extra: 1041.1 / 964.9,
  22283. bottom: 53.7 / 1096.6
  22284. }
  22285. },
  22286. },
  22287. [
  22288. {
  22289. name: "Normal",
  22290. height: math.unit(28.75, "feet"),
  22291. default: true
  22292. },
  22293. ]
  22294. ))
  22295. characterMakers.push(() => makeCharacter(
  22296. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22297. {
  22298. side: {
  22299. height: math.unit(25.5, "feet"),
  22300. weight: math.unit(23000, "kg"),
  22301. name: "Side",
  22302. image: {
  22303. source: "./media/characters/kanara/side.svg"
  22304. }
  22305. },
  22306. },
  22307. [
  22308. {
  22309. name: "Normal",
  22310. height: math.unit(25.5, "feet"),
  22311. default: true
  22312. },
  22313. ]
  22314. ))
  22315. characterMakers.push(() => makeCharacter(
  22316. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22317. {
  22318. side: {
  22319. height: math.unit(10, "feet"),
  22320. weight: math.unit(1000, "kg"),
  22321. name: "Side",
  22322. image: {
  22323. source: "./media/characters/ereus/side.svg",
  22324. extra: 1157 / 959,
  22325. bottom: 153 / 1312.5
  22326. }
  22327. },
  22328. },
  22329. [
  22330. {
  22331. name: "Normal",
  22332. height: math.unit(10, "feet"),
  22333. default: true
  22334. },
  22335. ]
  22336. ))
  22337. characterMakers.push(() => makeCharacter(
  22338. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22339. {
  22340. side: {
  22341. height: math.unit(4.5, "feet"),
  22342. weight: math.unit(500, "lb"),
  22343. name: "Side",
  22344. image: {
  22345. source: "./media/characters/e-ter/side.svg",
  22346. extra: 1550 / 1248,
  22347. bottom: 146 / 1694
  22348. }
  22349. },
  22350. },
  22351. [
  22352. {
  22353. name: "Normal",
  22354. height: math.unit(4.5, "feet"),
  22355. default: true
  22356. },
  22357. ]
  22358. ))
  22359. characterMakers.push(() => makeCharacter(
  22360. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22361. {
  22362. side: {
  22363. height: math.unit(9.7, "feet"),
  22364. weight: math.unit(4000, "kg"),
  22365. name: "Side",
  22366. image: {
  22367. source: "./media/characters/yamie/side.svg"
  22368. }
  22369. },
  22370. },
  22371. [
  22372. {
  22373. name: "Normal",
  22374. height: math.unit(9.7, "feet"),
  22375. default: true
  22376. },
  22377. ]
  22378. ))
  22379. characterMakers.push(() => makeCharacter(
  22380. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22381. {
  22382. front: {
  22383. height: math.unit(50, "feet"),
  22384. weight: math.unit(50000, "kg"),
  22385. name: "Front",
  22386. image: {
  22387. source: "./media/characters/anders/front.svg",
  22388. extra: 570 / 539,
  22389. bottom: 14.7 / 586.7
  22390. }
  22391. },
  22392. },
  22393. [
  22394. {
  22395. name: "Large",
  22396. height: math.unit(50, "feet")
  22397. },
  22398. {
  22399. name: "Macro",
  22400. height: math.unit(2000, "feet"),
  22401. default: true
  22402. },
  22403. {
  22404. name: "Megamacro",
  22405. height: math.unit(12, "miles")
  22406. },
  22407. ]
  22408. ))
  22409. characterMakers.push(() => makeCharacter(
  22410. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22411. {
  22412. front: {
  22413. height: math.unit(7 + 2 / 12, "feet"),
  22414. weight: math.unit(300, "lb"),
  22415. name: "Front",
  22416. image: {
  22417. source: "./media/characters/reban/front.svg",
  22418. extra: 1287/1212,
  22419. bottom: 148/1435
  22420. }
  22421. },
  22422. head: {
  22423. height: math.unit(1.95, "feet"),
  22424. name: "Head",
  22425. image: {
  22426. source: "./media/characters/reban/head.svg"
  22427. }
  22428. },
  22429. maw: {
  22430. height: math.unit(0.95, "feet"),
  22431. name: "Maw",
  22432. image: {
  22433. source: "./media/characters/reban/maw.svg"
  22434. }
  22435. },
  22436. foot: {
  22437. height: math.unit(1.65, "feet"),
  22438. name: "Foot",
  22439. image: {
  22440. source: "./media/characters/reban/foot.svg"
  22441. }
  22442. },
  22443. dick: {
  22444. height: math.unit(7 / 5, "feet"),
  22445. name: "Dick",
  22446. image: {
  22447. source: "./media/characters/reban/dick.svg"
  22448. }
  22449. },
  22450. },
  22451. [
  22452. {
  22453. name: "Natural Height",
  22454. height: math.unit(7 + 2 / 12, "feet")
  22455. },
  22456. {
  22457. name: "Macro",
  22458. height: math.unit(500, "feet"),
  22459. default: true
  22460. },
  22461. {
  22462. name: "Canon Height",
  22463. height: math.unit(50, "AU")
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22469. {
  22470. front: {
  22471. height: math.unit(6, "feet"),
  22472. weight: math.unit(150, "lb"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/terrance-keayes/front.svg",
  22476. extra: 1.005,
  22477. bottom: 151 / 1615
  22478. }
  22479. },
  22480. side: {
  22481. height: math.unit(6, "feet"),
  22482. weight: math.unit(150, "lb"),
  22483. name: "Side",
  22484. image: {
  22485. source: "./media/characters/terrance-keayes/side.svg",
  22486. extra: 1.005,
  22487. bottom: 129.4 / 1544
  22488. }
  22489. },
  22490. back: {
  22491. height: math.unit(6, "feet"),
  22492. weight: math.unit(150, "lb"),
  22493. name: "Back",
  22494. image: {
  22495. source: "./media/characters/terrance-keayes/back.svg",
  22496. extra: 1.005,
  22497. bottom: 58.4 / 1557.3
  22498. }
  22499. },
  22500. dick: {
  22501. height: math.unit(6 * 0.208, "feet"),
  22502. name: "Dick",
  22503. image: {
  22504. source: "./media/characters/terrance-keayes/dick.svg"
  22505. }
  22506. },
  22507. },
  22508. [
  22509. {
  22510. name: "Canon Height",
  22511. height: math.unit(35, "miles"),
  22512. default: true
  22513. },
  22514. ]
  22515. ))
  22516. characterMakers.push(() => makeCharacter(
  22517. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  22518. {
  22519. front: {
  22520. height: math.unit(6, "feet"),
  22521. weight: math.unit(150, "lb"),
  22522. name: "Front",
  22523. image: {
  22524. source: "./media/characters/ofelia/front.svg",
  22525. extra: 1130/1117,
  22526. bottom: 91/1221
  22527. }
  22528. },
  22529. back: {
  22530. height: math.unit(6, "feet"),
  22531. weight: math.unit(150, "lb"),
  22532. name: "Back",
  22533. image: {
  22534. source: "./media/characters/ofelia/back.svg",
  22535. extra: 1172/1159,
  22536. bottom: 28/1200
  22537. }
  22538. },
  22539. maw: {
  22540. height: math.unit(1, "feet"),
  22541. name: "Maw",
  22542. image: {
  22543. source: "./media/characters/ofelia/maw.svg"
  22544. }
  22545. },
  22546. foot: {
  22547. height: math.unit(1.949, "feet"),
  22548. name: "Foot",
  22549. image: {
  22550. source: "./media/characters/ofelia/foot.svg"
  22551. }
  22552. },
  22553. },
  22554. [
  22555. {
  22556. name: "Canon Height",
  22557. height: math.unit(2000, "miles"),
  22558. default: true
  22559. },
  22560. ]
  22561. ))
  22562. characterMakers.push(() => makeCharacter(
  22563. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  22564. {
  22565. front: {
  22566. height: math.unit(6, "feet"),
  22567. weight: math.unit(150, "lb"),
  22568. name: "Front",
  22569. image: {
  22570. source: "./media/characters/samuel/front.svg",
  22571. extra: 265 / 258,
  22572. bottom: 2 / 266.1566
  22573. }
  22574. },
  22575. },
  22576. [
  22577. {
  22578. name: "Macro",
  22579. height: math.unit(100, "feet"),
  22580. default: true
  22581. },
  22582. {
  22583. name: "Full Size",
  22584. height: math.unit(1000, "miles")
  22585. },
  22586. ]
  22587. ))
  22588. characterMakers.push(() => makeCharacter(
  22589. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  22590. {
  22591. front: {
  22592. height: math.unit(6, "feet"),
  22593. weight: math.unit(300, "lb"),
  22594. name: "Front",
  22595. image: {
  22596. source: "./media/characters/beishir-kiel/front.svg",
  22597. extra: 569 / 547,
  22598. bottom: 41.9 / 609
  22599. }
  22600. },
  22601. maw: {
  22602. height: math.unit(6 * 0.202, "feet"),
  22603. name: "Maw",
  22604. image: {
  22605. source: "./media/characters/beishir-kiel/maw.svg"
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Macro",
  22612. height: math.unit(300, "feet"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  22619. {
  22620. front: {
  22621. height: math.unit(5 + 7/12, "feet"),
  22622. weight: math.unit(120, "lb"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/logan-grey/front.svg",
  22626. extra: 1836/1738,
  22627. bottom: 108/1944
  22628. }
  22629. },
  22630. back: {
  22631. height: math.unit(5 + 7/12, "feet"),
  22632. weight: math.unit(120, "lb"),
  22633. name: "Back",
  22634. image: {
  22635. source: "./media/characters/logan-grey/back.svg",
  22636. extra: 1880/1794,
  22637. bottom: 24/1904
  22638. }
  22639. },
  22640. frontSfw: {
  22641. height: math.unit(5 + 7/12, "feet"),
  22642. weight: math.unit(120, "lb"),
  22643. name: "Front (SFW)",
  22644. image: {
  22645. source: "./media/characters/logan-grey/front-sfw.svg",
  22646. extra: 1836/1738,
  22647. bottom: 108/1944
  22648. }
  22649. },
  22650. backSfw: {
  22651. height: math.unit(5 + 7/12, "feet"),
  22652. weight: math.unit(120, "lb"),
  22653. name: "Back (SFW)",
  22654. image: {
  22655. source: "./media/characters/logan-grey/back-sfw.svg",
  22656. extra: 1880/1794,
  22657. bottom: 24/1904
  22658. }
  22659. },
  22660. hands: {
  22661. height: math.unit(0.84, "feet"),
  22662. name: "Hands",
  22663. image: {
  22664. source: "./media/characters/logan-grey/hands.svg"
  22665. }
  22666. },
  22667. paws: {
  22668. height: math.unit(0.72, "feet"),
  22669. name: "Paws",
  22670. image: {
  22671. source: "./media/characters/logan-grey/paws.svg"
  22672. }
  22673. },
  22674. cock: {
  22675. height: math.unit(1.45, "feet"),
  22676. name: "Cock",
  22677. image: {
  22678. source: "./media/characters/logan-grey/cock.svg"
  22679. }
  22680. },
  22681. cockAlt: {
  22682. height: math.unit(1.437, "feet"),
  22683. name: "Cock (alt)",
  22684. image: {
  22685. source: "./media/characters/logan-grey/cock-alt.svg"
  22686. }
  22687. },
  22688. },
  22689. [
  22690. {
  22691. name: "Normal",
  22692. height: math.unit(5 + 8 / 12, "feet")
  22693. },
  22694. {
  22695. name: "The 500 Foot Femboy",
  22696. height: math.unit(500, "feet"),
  22697. default: true
  22698. },
  22699. {
  22700. name: "Megmacro",
  22701. height: math.unit(20, "miles")
  22702. },
  22703. ]
  22704. ))
  22705. characterMakers.push(() => makeCharacter(
  22706. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  22707. {
  22708. front: {
  22709. height: math.unit(8 + 2 / 12, "feet"),
  22710. weight: math.unit(275, "lb"),
  22711. name: "Front",
  22712. image: {
  22713. source: "./media/characters/draganta/front.svg",
  22714. extra: 1177 / 1135,
  22715. bottom: 33.46 / 1212.1
  22716. }
  22717. },
  22718. },
  22719. [
  22720. {
  22721. name: "Normal",
  22722. height: math.unit(8 + 6 / 12, "feet"),
  22723. default: true
  22724. },
  22725. {
  22726. name: "Macro",
  22727. height: math.unit(150, "feet")
  22728. },
  22729. {
  22730. name: "Megamacro",
  22731. height: math.unit(1000, "miles")
  22732. },
  22733. ]
  22734. ))
  22735. characterMakers.push(() => makeCharacter(
  22736. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  22737. {
  22738. front: {
  22739. height: math.unit(1.72, "m"),
  22740. weight: math.unit(80, "lb"),
  22741. name: "Front",
  22742. image: {
  22743. source: "./media/characters/voski/front.svg",
  22744. extra: 2076.22 / 2022.4,
  22745. bottom: 102.7 / 2177.3866
  22746. }
  22747. },
  22748. frontNsfw: {
  22749. height: math.unit(1.72, "m"),
  22750. weight: math.unit(80, "lb"),
  22751. name: "Front (NSFW)",
  22752. image: {
  22753. source: "./media/characters/voski/front-nsfw.svg",
  22754. extra: 2076.22 / 2022.4,
  22755. bottom: 102.7 / 2177.3866
  22756. }
  22757. },
  22758. back: {
  22759. height: math.unit(1.72, "m"),
  22760. weight: math.unit(80, "lb"),
  22761. name: "Back",
  22762. image: {
  22763. source: "./media/characters/voski/back.svg",
  22764. extra: 2104 / 2051,
  22765. bottom: 10.45 / 2113.63
  22766. }
  22767. },
  22768. },
  22769. [
  22770. {
  22771. name: "Normal",
  22772. height: math.unit(1.72, "m")
  22773. },
  22774. {
  22775. name: "Macro",
  22776. height: math.unit(55, "m"),
  22777. default: true
  22778. },
  22779. {
  22780. name: "Macro+",
  22781. height: math.unit(300, "m")
  22782. },
  22783. {
  22784. name: "Macro++",
  22785. height: math.unit(700, "m")
  22786. },
  22787. {
  22788. name: "Macro+++",
  22789. height: math.unit(4500, "m")
  22790. },
  22791. {
  22792. name: "Macro++++",
  22793. height: math.unit(45, "km")
  22794. },
  22795. {
  22796. name: "Macro+++++",
  22797. height: math.unit(1220, "km")
  22798. },
  22799. ]
  22800. ))
  22801. characterMakers.push(() => makeCharacter(
  22802. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  22803. {
  22804. front: {
  22805. height: math.unit(2.3, "m"),
  22806. weight: math.unit(304, "kg"),
  22807. name: "Front",
  22808. image: {
  22809. source: "./media/characters/icowom-lee/front.svg",
  22810. extra: 985 / 955,
  22811. bottom: 25.4 / 1012
  22812. }
  22813. },
  22814. fronttentacles: {
  22815. height: math.unit(2.3, "m"),
  22816. weight: math.unit(304, "kg"),
  22817. name: "Front-tentacles",
  22818. image: {
  22819. source: "./media/characters/icowom-lee/front-tentacles.svg",
  22820. extra: 985 / 955,
  22821. bottom: 25.4 / 1012
  22822. }
  22823. },
  22824. back: {
  22825. height: math.unit(2.3, "m"),
  22826. weight: math.unit(304, "kg"),
  22827. name: "Back",
  22828. image: {
  22829. source: "./media/characters/icowom-lee/back.svg",
  22830. extra: 975 / 954,
  22831. bottom: 9.5 / 985
  22832. }
  22833. },
  22834. backtentacles: {
  22835. height: math.unit(2.3, "m"),
  22836. weight: math.unit(304, "kg"),
  22837. name: "Back-tentacles",
  22838. image: {
  22839. source: "./media/characters/icowom-lee/back-tentacles.svg",
  22840. extra: 975 / 954,
  22841. bottom: 9.5 / 985
  22842. }
  22843. },
  22844. frontDressed: {
  22845. height: math.unit(2.3, "m"),
  22846. weight: math.unit(304, "kg"),
  22847. name: "Front (Dressed)",
  22848. image: {
  22849. source: "./media/characters/icowom-lee/front-dressed.svg",
  22850. extra: 3076 / 2933,
  22851. bottom: 51.4 / 3125.1889
  22852. }
  22853. },
  22854. rump: {
  22855. height: math.unit(0.776, "meters"),
  22856. name: "Rump",
  22857. image: {
  22858. source: "./media/characters/icowom-lee/rump.svg"
  22859. }
  22860. },
  22861. genitals: {
  22862. height: math.unit(0.78, "meters"),
  22863. name: "Genitals",
  22864. image: {
  22865. source: "./media/characters/icowom-lee/genitals.svg"
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Normal",
  22872. height: math.unit(2.3, "meters"),
  22873. default: true
  22874. },
  22875. {
  22876. name: "Macro",
  22877. height: math.unit(94, "meters"),
  22878. default: true
  22879. },
  22880. ]
  22881. ))
  22882. characterMakers.push(() => makeCharacter(
  22883. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  22884. {
  22885. front: {
  22886. height: math.unit(22, "meters"),
  22887. weight: math.unit(21000, "kg"),
  22888. name: "Front",
  22889. image: {
  22890. source: "./media/characters/shock-diamond/front.svg",
  22891. extra: 2204 / 2053,
  22892. bottom: 65 / 2239.47
  22893. }
  22894. },
  22895. frontNude: {
  22896. height: math.unit(22, "meters"),
  22897. weight: math.unit(21000, "kg"),
  22898. name: "Front (Nude)",
  22899. image: {
  22900. source: "./media/characters/shock-diamond/front-nude.svg",
  22901. extra: 2514 / 2285,
  22902. bottom: 13 / 2527.56
  22903. }
  22904. },
  22905. },
  22906. [
  22907. {
  22908. name: "Normal",
  22909. height: math.unit(3, "meters")
  22910. },
  22911. {
  22912. name: "Macro",
  22913. height: math.unit(22, "meters"),
  22914. default: true
  22915. },
  22916. ]
  22917. ))
  22918. characterMakers.push(() => makeCharacter(
  22919. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22920. {
  22921. front: {
  22922. height: math.unit(5 + 4 / 12, "feet"),
  22923. weight: math.unit(120, "lb"),
  22924. name: "Front",
  22925. image: {
  22926. source: "./media/characters/rory/front.svg",
  22927. extra: 1318/1241,
  22928. bottom: 42/1360
  22929. }
  22930. },
  22931. back: {
  22932. height: math.unit(5 + 4 / 12, "feet"),
  22933. weight: math.unit(120, "lb"),
  22934. name: "Back",
  22935. image: {
  22936. source: "./media/characters/rory/back.svg",
  22937. extra: 1318/1241,
  22938. bottom: 42/1360
  22939. }
  22940. },
  22941. butt: {
  22942. height: math.unit(1.74, "feet"),
  22943. name: "Butt",
  22944. image: {
  22945. source: "./media/characters/rory/butt.svg"
  22946. }
  22947. },
  22948. dick: {
  22949. height: math.unit(1.02, "feet"),
  22950. name: "Dick",
  22951. image: {
  22952. source: "./media/characters/rory/dick.svg"
  22953. }
  22954. },
  22955. paws: {
  22956. height: math.unit(1, "feet"),
  22957. name: "Paws",
  22958. image: {
  22959. source: "./media/characters/rory/paws.svg"
  22960. }
  22961. },
  22962. frontAlt: {
  22963. height: math.unit(5 + 4 / 12, "feet"),
  22964. weight: math.unit(120, "lb"),
  22965. name: "Front (Alt)",
  22966. image: {
  22967. source: "./media/characters/rory/front-alt.svg",
  22968. extra: 589 / 556,
  22969. bottom: 45.7 / 635.76
  22970. }
  22971. },
  22972. frontAltNude: {
  22973. height: math.unit(5 + 4 / 12, "feet"),
  22974. weight: math.unit(120, "lb"),
  22975. name: "Front (Alt, Nude)",
  22976. image: {
  22977. source: "./media/characters/rory/front-alt-nude.svg",
  22978. extra: 589 / 556,
  22979. bottom: 45.7 / 635.76
  22980. }
  22981. },
  22982. side: {
  22983. height: math.unit(5 + 4 / 12, "feet"),
  22984. weight: math.unit(120, "lb"),
  22985. name: "Side",
  22986. image: {
  22987. source: "./media/characters/rory/side.svg",
  22988. extra: 597 / 564,
  22989. bottom: 55 / 653
  22990. }
  22991. },
  22992. backAlt: {
  22993. height: math.unit(5 + 4 / 12, "feet"),
  22994. weight: math.unit(120, "lb"),
  22995. name: "Back (Alt)",
  22996. image: {
  22997. source: "./media/characters/rory/back-alt.svg",
  22998. extra: 620 / 585,
  22999. bottom: 8.86 / 630.43
  23000. }
  23001. },
  23002. dickAlt: {
  23003. height: math.unit(0.86, "feet"),
  23004. name: "Dick (Alt)",
  23005. image: {
  23006. source: "./media/characters/rory/dick-alt.svg"
  23007. }
  23008. },
  23009. },
  23010. [
  23011. {
  23012. name: "Normal",
  23013. height: math.unit(5 + 4 / 12, "feet"),
  23014. default: true
  23015. },
  23016. {
  23017. name: "Macro",
  23018. height: math.unit(100, "feet")
  23019. },
  23020. {
  23021. name: "Macro+",
  23022. height: math.unit(140, "feet")
  23023. },
  23024. {
  23025. name: "Macro++",
  23026. height: math.unit(300, "feet")
  23027. },
  23028. ]
  23029. ))
  23030. characterMakers.push(() => makeCharacter(
  23031. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23032. {
  23033. front: {
  23034. height: math.unit(5 + 9 / 12, "feet"),
  23035. weight: math.unit(190, "lb"),
  23036. name: "Front",
  23037. image: {
  23038. source: "./media/characters/sprisk/front.svg",
  23039. extra: 1225 / 1180,
  23040. bottom: 42.7 / 1266.4
  23041. }
  23042. },
  23043. frontNsfw: {
  23044. height: math.unit(5 + 9 / 12, "feet"),
  23045. weight: math.unit(190, "lb"),
  23046. name: "Front (NSFW)",
  23047. image: {
  23048. source: "./media/characters/sprisk/front-nsfw.svg",
  23049. extra: 1225 / 1180,
  23050. bottom: 42.7 / 1266.4
  23051. }
  23052. },
  23053. back: {
  23054. height: math.unit(5 + 9 / 12, "feet"),
  23055. weight: math.unit(190, "lb"),
  23056. name: "Back",
  23057. image: {
  23058. source: "./media/characters/sprisk/back.svg",
  23059. extra: 1247 / 1200,
  23060. bottom: 5.6 / 1253.04
  23061. }
  23062. },
  23063. },
  23064. [
  23065. {
  23066. name: "Tiny",
  23067. height: math.unit(2, "inches")
  23068. },
  23069. {
  23070. name: "Normal",
  23071. height: math.unit(5 + 9 / 12, "feet"),
  23072. default: true
  23073. },
  23074. {
  23075. name: "Mini Macro",
  23076. height: math.unit(18, "feet")
  23077. },
  23078. {
  23079. name: "Macro",
  23080. height: math.unit(100, "feet")
  23081. },
  23082. {
  23083. name: "MACRO",
  23084. height: math.unit(50, "miles")
  23085. },
  23086. {
  23087. name: "M A C R O",
  23088. height: math.unit(300, "miles")
  23089. },
  23090. ]
  23091. ))
  23092. characterMakers.push(() => makeCharacter(
  23093. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23094. {
  23095. side: {
  23096. height: math.unit(15.6, "meters"),
  23097. weight: math.unit(700000, "kg"),
  23098. name: "Side",
  23099. image: {
  23100. source: "./media/characters/bunsen/side.svg",
  23101. extra: 1644 / 358
  23102. }
  23103. },
  23104. foot: {
  23105. height: math.unit(1.611 * 1644 / 358, "meter"),
  23106. name: "Foot",
  23107. image: {
  23108. source: "./media/characters/bunsen/foot.svg"
  23109. }
  23110. },
  23111. },
  23112. [
  23113. {
  23114. name: "Small",
  23115. height: math.unit(10, "feet")
  23116. },
  23117. {
  23118. name: "Normal",
  23119. height: math.unit(15.6, "meters"),
  23120. default: true
  23121. },
  23122. ]
  23123. ))
  23124. characterMakers.push(() => makeCharacter(
  23125. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23126. {
  23127. front: {
  23128. height: math.unit(4 + 11 / 12, "feet"),
  23129. weight: math.unit(140, "lb"),
  23130. name: "Front",
  23131. image: {
  23132. source: "./media/characters/sesh/front.svg",
  23133. extra: 3420 / 3231,
  23134. bottom: 72 / 3949.5
  23135. }
  23136. },
  23137. },
  23138. [
  23139. {
  23140. name: "Normal",
  23141. height: math.unit(4 + 11 / 12, "feet")
  23142. },
  23143. {
  23144. name: "Grown",
  23145. height: math.unit(15, "feet"),
  23146. default: true
  23147. },
  23148. {
  23149. name: "Macro",
  23150. height: math.unit(1500, "feet")
  23151. },
  23152. {
  23153. name: "Megamacro",
  23154. height: math.unit(30, "miles")
  23155. },
  23156. {
  23157. name: "Continental",
  23158. height: math.unit(3000, "miles")
  23159. },
  23160. {
  23161. name: "Gravity Mass",
  23162. height: math.unit(300000, "miles")
  23163. },
  23164. {
  23165. name: "Planet Buster",
  23166. height: math.unit(30000000, "miles")
  23167. },
  23168. {
  23169. name: "Big",
  23170. height: math.unit(3000000000, "miles")
  23171. },
  23172. ]
  23173. ))
  23174. characterMakers.push(() => makeCharacter(
  23175. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23176. {
  23177. front: {
  23178. height: math.unit(9, "feet"),
  23179. weight: math.unit(350, "lb"),
  23180. name: "Front",
  23181. image: {
  23182. source: "./media/characters/pepper/front.svg",
  23183. extra: 1448 / 1312,
  23184. bottom: 9.4 / 1457.88
  23185. }
  23186. },
  23187. back: {
  23188. height: math.unit(9, "feet"),
  23189. weight: math.unit(350, "lb"),
  23190. name: "Back",
  23191. image: {
  23192. source: "./media/characters/pepper/back.svg",
  23193. extra: 1423 / 1300,
  23194. bottom: 4.6 / 1429
  23195. }
  23196. },
  23197. maw: {
  23198. height: math.unit(0.932, "feet"),
  23199. name: "Maw",
  23200. image: {
  23201. source: "./media/characters/pepper/maw.svg"
  23202. }
  23203. },
  23204. },
  23205. [
  23206. {
  23207. name: "Normal",
  23208. height: math.unit(9, "feet"),
  23209. default: true
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23215. {
  23216. front: {
  23217. height: math.unit(6, "feet"),
  23218. weight: math.unit(150, "lb"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/maelstrom/front.svg",
  23222. extra: 2100 / 1883,
  23223. bottom: 94 / 2196.7
  23224. }
  23225. },
  23226. },
  23227. [
  23228. {
  23229. name: "Less Kaiju",
  23230. height: math.unit(200, "feet")
  23231. },
  23232. {
  23233. name: "Kaiju",
  23234. height: math.unit(400, "feet"),
  23235. default: true
  23236. },
  23237. {
  23238. name: "Kaiju-er",
  23239. height: math.unit(600, "feet")
  23240. },
  23241. ]
  23242. ))
  23243. characterMakers.push(() => makeCharacter(
  23244. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23245. {
  23246. front: {
  23247. height: math.unit(6 + 5 / 12, "feet"),
  23248. weight: math.unit(180, "lb"),
  23249. name: "Front",
  23250. image: {
  23251. source: "./media/characters/lexir/front.svg",
  23252. extra: 180 / 172,
  23253. bottom: 12 / 192
  23254. }
  23255. },
  23256. back: {
  23257. height: math.unit(6 + 5 / 12, "feet"),
  23258. weight: math.unit(180, "lb"),
  23259. name: "Back",
  23260. image: {
  23261. source: "./media/characters/lexir/back.svg",
  23262. extra: 183.84 / 175.5,
  23263. bottom: 3.1 / 187
  23264. }
  23265. },
  23266. },
  23267. [
  23268. {
  23269. name: "Very Smal",
  23270. height: math.unit(1, "nm")
  23271. },
  23272. {
  23273. name: "Normal",
  23274. height: math.unit(6 + 5 / 12, "feet"),
  23275. default: true
  23276. },
  23277. {
  23278. name: "Macro",
  23279. height: math.unit(1, "mile")
  23280. },
  23281. {
  23282. name: "Megamacro",
  23283. height: math.unit(50, "miles")
  23284. },
  23285. ]
  23286. ))
  23287. characterMakers.push(() => makeCharacter(
  23288. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23289. {
  23290. front: {
  23291. height: math.unit(1.5, "meters"),
  23292. weight: math.unit(100, "lb"),
  23293. name: "Front",
  23294. image: {
  23295. source: "./media/characters/maksio/front.svg",
  23296. extra: 1549 / 1531,
  23297. bottom: 123.7 / 1674.5429
  23298. }
  23299. },
  23300. back: {
  23301. height: math.unit(1.5, "meters"),
  23302. weight: math.unit(100, "lb"),
  23303. name: "Back",
  23304. image: {
  23305. source: "./media/characters/maksio/back.svg",
  23306. extra: 1541 / 1509,
  23307. bottom: 97 / 1639
  23308. }
  23309. },
  23310. hand: {
  23311. height: math.unit(0.621, "feet"),
  23312. name: "Hand",
  23313. image: {
  23314. source: "./media/characters/maksio/hand.svg"
  23315. }
  23316. },
  23317. foot: {
  23318. height: math.unit(1.611, "feet"),
  23319. name: "Foot",
  23320. image: {
  23321. source: "./media/characters/maksio/foot.svg"
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Shrunken",
  23328. height: math.unit(10, "cm")
  23329. },
  23330. {
  23331. name: "Normal",
  23332. height: math.unit(150, "cm"),
  23333. default: true
  23334. },
  23335. ]
  23336. ))
  23337. characterMakers.push(() => makeCharacter(
  23338. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23339. {
  23340. front: {
  23341. height: math.unit(100, "feet"),
  23342. name: "Front",
  23343. image: {
  23344. source: "./media/characters/erza-bear/front.svg",
  23345. extra: 2449 / 2390,
  23346. bottom: 46 / 2494
  23347. }
  23348. },
  23349. back: {
  23350. height: math.unit(100, "feet"),
  23351. name: "Back",
  23352. image: {
  23353. source: "./media/characters/erza-bear/back.svg",
  23354. extra: 2489 / 2430,
  23355. bottom: 85.4 / 2480
  23356. }
  23357. },
  23358. tail: {
  23359. height: math.unit(42, "feet"),
  23360. name: "Tail",
  23361. image: {
  23362. source: "./media/characters/erza-bear/tail.svg"
  23363. }
  23364. },
  23365. tongue: {
  23366. height: math.unit(8, "feet"),
  23367. name: "Tongue",
  23368. image: {
  23369. source: "./media/characters/erza-bear/tongue.svg"
  23370. }
  23371. },
  23372. dick: {
  23373. height: math.unit(10.5, "feet"),
  23374. name: "Dick",
  23375. image: {
  23376. source: "./media/characters/erza-bear/dick.svg"
  23377. }
  23378. },
  23379. dickVertical: {
  23380. height: math.unit(16.9, "feet"),
  23381. name: "Dick (Vertical)",
  23382. image: {
  23383. source: "./media/characters/erza-bear/dick-vertical.svg"
  23384. }
  23385. },
  23386. },
  23387. [
  23388. {
  23389. name: "Macro",
  23390. height: math.unit(100, "feet"),
  23391. default: true
  23392. },
  23393. ]
  23394. ))
  23395. characterMakers.push(() => makeCharacter(
  23396. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23397. {
  23398. front: {
  23399. height: math.unit(172, "cm"),
  23400. weight: math.unit(73, "kg"),
  23401. name: "Front",
  23402. image: {
  23403. source: "./media/characters/violet-flor/front.svg",
  23404. extra: 1530 / 1442,
  23405. bottom: 61.9 / 1588.8
  23406. }
  23407. },
  23408. back: {
  23409. height: math.unit(180, "cm"),
  23410. weight: math.unit(73, "kg"),
  23411. name: "Back",
  23412. image: {
  23413. source: "./media/characters/violet-flor/back.svg",
  23414. extra: 1692 / 1630,
  23415. bottom: 20 / 1712
  23416. }
  23417. },
  23418. },
  23419. [
  23420. {
  23421. name: "Normal",
  23422. height: math.unit(172, "cm"),
  23423. default: true
  23424. },
  23425. ]
  23426. ))
  23427. characterMakers.push(() => makeCharacter(
  23428. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23429. {
  23430. front: {
  23431. height: math.unit(6, "feet"),
  23432. weight: math.unit(220, "lb"),
  23433. name: "Front",
  23434. image: {
  23435. source: "./media/characters/lynn-rhea/front.svg",
  23436. extra: 310 / 273
  23437. }
  23438. },
  23439. back: {
  23440. height: math.unit(6, "feet"),
  23441. weight: math.unit(220, "lb"),
  23442. name: "Back",
  23443. image: {
  23444. source: "./media/characters/lynn-rhea/back.svg",
  23445. extra: 310 / 273
  23446. }
  23447. },
  23448. dicks: {
  23449. height: math.unit(0.9, "feet"),
  23450. name: "Dicks",
  23451. image: {
  23452. source: "./media/characters/lynn-rhea/dicks.svg"
  23453. }
  23454. },
  23455. slit: {
  23456. height: math.unit(0.4, "feet"),
  23457. name: "Slit",
  23458. image: {
  23459. source: "./media/characters/lynn-rhea/slit.svg"
  23460. }
  23461. },
  23462. },
  23463. [
  23464. {
  23465. name: "Micro",
  23466. height: math.unit(1, "inch")
  23467. },
  23468. {
  23469. name: "Macro",
  23470. height: math.unit(60, "feet"),
  23471. default: true
  23472. },
  23473. {
  23474. name: "Megamacro",
  23475. height: math.unit(2, "miles")
  23476. },
  23477. {
  23478. name: "Gigamacro",
  23479. height: math.unit(3, "earths")
  23480. },
  23481. {
  23482. name: "Galactic",
  23483. height: math.unit(0.8, "galaxies")
  23484. },
  23485. ]
  23486. ))
  23487. characterMakers.push(() => makeCharacter(
  23488. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  23489. {
  23490. front: {
  23491. height: math.unit(1600, "feet"),
  23492. weight: math.unit(85758785169, "kg"),
  23493. name: "Front",
  23494. image: {
  23495. source: "./media/characters/valathos/front.svg",
  23496. extra: 1451 / 1339
  23497. }
  23498. },
  23499. },
  23500. [
  23501. {
  23502. name: "Macro",
  23503. height: math.unit(1600, "feet"),
  23504. default: true
  23505. },
  23506. ]
  23507. ))
  23508. characterMakers.push(() => makeCharacter(
  23509. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  23510. {
  23511. front: {
  23512. height: math.unit(7 + 5 / 12, "feet"),
  23513. weight: math.unit(300, "lb"),
  23514. name: "Front",
  23515. image: {
  23516. source: "./media/characters/azula/front.svg",
  23517. extra: 3208 / 2880,
  23518. bottom: 80.2 / 3277
  23519. }
  23520. },
  23521. back: {
  23522. height: math.unit(7 + 5 / 12, "feet"),
  23523. weight: math.unit(300, "lb"),
  23524. name: "Back",
  23525. image: {
  23526. source: "./media/characters/azula/back.svg",
  23527. extra: 3169 / 2822,
  23528. bottom: 150.6 / 3321
  23529. }
  23530. },
  23531. },
  23532. [
  23533. {
  23534. name: "Normal",
  23535. height: math.unit(7 + 5 / 12, "feet"),
  23536. default: true
  23537. },
  23538. {
  23539. name: "Big",
  23540. height: math.unit(20, "feet")
  23541. },
  23542. ]
  23543. ))
  23544. characterMakers.push(() => makeCharacter(
  23545. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  23546. {
  23547. front: {
  23548. height: math.unit(5 + 1 / 12, "feet"),
  23549. weight: math.unit(110, "lb"),
  23550. name: "Front",
  23551. image: {
  23552. source: "./media/characters/rupert/front.svg",
  23553. extra: 1549 / 1495,
  23554. bottom: 54.2 / 1604.4
  23555. }
  23556. },
  23557. },
  23558. [
  23559. {
  23560. name: "Normal",
  23561. height: math.unit(5 + 1 / 12, "feet"),
  23562. default: true
  23563. },
  23564. ]
  23565. ))
  23566. characterMakers.push(() => makeCharacter(
  23567. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  23568. {
  23569. front: {
  23570. height: math.unit(8 + 4 / 12, "feet"),
  23571. weight: math.unit(350, "lb"),
  23572. name: "Front",
  23573. image: {
  23574. source: "./media/characters/sheera-castellar/front.svg",
  23575. extra: 1957 / 1894,
  23576. bottom: 26.97 / 1975.017
  23577. }
  23578. },
  23579. side: {
  23580. height: math.unit(8 + 4 / 12, "feet"),
  23581. weight: math.unit(350, "lb"),
  23582. name: "Side",
  23583. image: {
  23584. source: "./media/characters/sheera-castellar/side.svg",
  23585. extra: 1957 / 1894
  23586. }
  23587. },
  23588. back: {
  23589. height: math.unit(8 + 4 / 12, "feet"),
  23590. weight: math.unit(350, "lb"),
  23591. name: "Back",
  23592. image: {
  23593. source: "./media/characters/sheera-castellar/back.svg",
  23594. extra: 1957 / 1894
  23595. }
  23596. },
  23597. angled: {
  23598. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  23599. weight: math.unit(350, "lb"),
  23600. name: "Angled",
  23601. image: {
  23602. source: "./media/characters/sheera-castellar/angled.svg",
  23603. extra: 1807 / 1707,
  23604. bottom: 68 / 1875
  23605. }
  23606. },
  23607. genitals: {
  23608. height: math.unit(2.2, "feet"),
  23609. name: "Genitals",
  23610. image: {
  23611. source: "./media/characters/sheera-castellar/genitals.svg"
  23612. }
  23613. },
  23614. taur: {
  23615. height: math.unit(10 + 6/12, "feet"),
  23616. name: "Taur",
  23617. image: {
  23618. source: "./media/characters/sheera-castellar/taur.svg",
  23619. extra: 2017/1909,
  23620. bottom: 185/2202
  23621. }
  23622. },
  23623. },
  23624. [
  23625. {
  23626. name: "Normal",
  23627. height: math.unit(8 + 4 / 12, "feet")
  23628. },
  23629. {
  23630. name: "Macro",
  23631. height: math.unit(150, "feet"),
  23632. default: true
  23633. },
  23634. {
  23635. name: "Macro+",
  23636. height: math.unit(800, "feet")
  23637. },
  23638. ]
  23639. ))
  23640. characterMakers.push(() => makeCharacter(
  23641. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  23642. {
  23643. front: {
  23644. height: math.unit(6, "feet"),
  23645. weight: math.unit(150, "lb"),
  23646. name: "Front",
  23647. image: {
  23648. source: "./media/characters/jaipur/front.svg",
  23649. extra: 3860 / 3731,
  23650. bottom: 287 / 4140
  23651. }
  23652. },
  23653. back: {
  23654. height: math.unit(6, "feet"),
  23655. weight: math.unit(150, "lb"),
  23656. name: "Back",
  23657. image: {
  23658. source: "./media/characters/jaipur/back.svg",
  23659. extra: 4060 / 3930,
  23660. bottom: 151 / 4200
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Normal",
  23667. height: math.unit(1.85, "meters"),
  23668. default: true
  23669. },
  23670. {
  23671. name: "Macro",
  23672. height: math.unit(150, "meters")
  23673. },
  23674. {
  23675. name: "Macro+",
  23676. height: math.unit(0.5, "miles")
  23677. },
  23678. {
  23679. name: "Macro++",
  23680. height: math.unit(2.5, "miles")
  23681. },
  23682. {
  23683. name: "Macro+++",
  23684. height: math.unit(12, "miles")
  23685. },
  23686. {
  23687. name: "Macro++++",
  23688. height: math.unit(120, "miles")
  23689. },
  23690. {
  23691. name: "Macro+++++",
  23692. height: math.unit(1200, "miles")
  23693. },
  23694. ]
  23695. ))
  23696. characterMakers.push(() => makeCharacter(
  23697. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  23698. {
  23699. front: {
  23700. height: math.unit(6, "feet"),
  23701. weight: math.unit(150, "lb"),
  23702. name: "Front",
  23703. image: {
  23704. source: "./media/characters/sheila-wolf/front.svg",
  23705. extra: 1931 / 1808,
  23706. bottom: 29.5 / 1960
  23707. }
  23708. },
  23709. dick: {
  23710. height: math.unit(1.464, "feet"),
  23711. name: "Dick",
  23712. image: {
  23713. source: "./media/characters/sheila-wolf/dick.svg"
  23714. }
  23715. },
  23716. muzzle: {
  23717. height: math.unit(0.513, "feet"),
  23718. name: "Muzzle",
  23719. image: {
  23720. source: "./media/characters/sheila-wolf/muzzle.svg"
  23721. }
  23722. },
  23723. },
  23724. [
  23725. {
  23726. name: "Macro",
  23727. height: math.unit(70, "feet"),
  23728. default: true
  23729. },
  23730. ]
  23731. ))
  23732. characterMakers.push(() => makeCharacter(
  23733. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  23734. {
  23735. front: {
  23736. height: math.unit(32, "meters"),
  23737. weight: math.unit(300000, "kg"),
  23738. name: "Front",
  23739. image: {
  23740. source: "./media/characters/almor/front.svg",
  23741. extra: 1408 / 1322,
  23742. bottom: 94.6 / 1506.5
  23743. }
  23744. },
  23745. },
  23746. [
  23747. {
  23748. name: "Macro",
  23749. height: math.unit(32, "meters"),
  23750. default: true
  23751. },
  23752. ]
  23753. ))
  23754. characterMakers.push(() => makeCharacter(
  23755. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  23756. {
  23757. front: {
  23758. height: math.unit(7, "feet"),
  23759. weight: math.unit(200, "lb"),
  23760. name: "Front",
  23761. image: {
  23762. source: "./media/characters/silver/front.svg",
  23763. extra: 472.1 / 450.5,
  23764. bottom: 26.5 / 499.424
  23765. }
  23766. },
  23767. },
  23768. [
  23769. {
  23770. name: "Normal",
  23771. height: math.unit(7, "feet"),
  23772. default: true
  23773. },
  23774. {
  23775. name: "Macro",
  23776. height: math.unit(800, "feet")
  23777. },
  23778. {
  23779. name: "Megamacro",
  23780. height: math.unit(250, "miles")
  23781. },
  23782. ]
  23783. ))
  23784. characterMakers.push(() => makeCharacter(
  23785. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  23786. {
  23787. front: {
  23788. height: math.unit(6, "feet"),
  23789. weight: math.unit(150, "lb"),
  23790. name: "Front",
  23791. image: {
  23792. source: "./media/characters/pliskin/front.svg",
  23793. extra: 1469 / 1359,
  23794. bottom: 70 / 1540
  23795. }
  23796. },
  23797. },
  23798. [
  23799. {
  23800. name: "Micro",
  23801. height: math.unit(3, "inches")
  23802. },
  23803. {
  23804. name: "Normal",
  23805. height: math.unit(5 + 11 / 12, "feet"),
  23806. default: true
  23807. },
  23808. {
  23809. name: "Macro",
  23810. height: math.unit(120, "feet")
  23811. },
  23812. ]
  23813. ))
  23814. characterMakers.push(() => makeCharacter(
  23815. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  23816. {
  23817. front: {
  23818. height: math.unit(6, "feet"),
  23819. weight: math.unit(150, "lb"),
  23820. name: "Front",
  23821. image: {
  23822. source: "./media/characters/sammy/front.svg",
  23823. extra: 1193 / 1089,
  23824. bottom: 30.5 / 1226
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Macro",
  23831. height: math.unit(1700, "feet"),
  23832. default: true
  23833. },
  23834. {
  23835. name: "Examacro",
  23836. height: math.unit(2.5e9, "lightyears")
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  23842. {
  23843. front: {
  23844. height: math.unit(21, "meters"),
  23845. weight: math.unit(12, "tonnes"),
  23846. name: "Front",
  23847. image: {
  23848. source: "./media/characters/kuru/front.svg",
  23849. extra: 4301 / 3785,
  23850. bottom: 371.3 / 4691
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Macro",
  23857. height: math.unit(21, "meters"),
  23858. default: true
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  23864. {
  23865. front: {
  23866. height: math.unit(23, "meters"),
  23867. weight: math.unit(12.2, "tonnes"),
  23868. name: "Front",
  23869. image: {
  23870. source: "./media/characters/rakka/front.svg",
  23871. extra: 4670 / 4169,
  23872. bottom: 301 / 4968.7
  23873. }
  23874. },
  23875. },
  23876. [
  23877. {
  23878. name: "Macro",
  23879. height: math.unit(23, "meters"),
  23880. default: true
  23881. },
  23882. ]
  23883. ))
  23884. characterMakers.push(() => makeCharacter(
  23885. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  23886. {
  23887. front: {
  23888. height: math.unit(6, "feet"),
  23889. weight: math.unit(150, "lb"),
  23890. name: "Front",
  23891. image: {
  23892. source: "./media/characters/rhys-feline/front.svg",
  23893. extra: 2488 / 2308,
  23894. bottom: 35.67 / 2519.19
  23895. }
  23896. },
  23897. },
  23898. [
  23899. {
  23900. name: "Really Small",
  23901. height: math.unit(1, "nm")
  23902. },
  23903. {
  23904. name: "Micro",
  23905. height: math.unit(4, "inches")
  23906. },
  23907. {
  23908. name: "Normal",
  23909. height: math.unit(4 + 10 / 12, "feet"),
  23910. default: true
  23911. },
  23912. {
  23913. name: "Macro",
  23914. height: math.unit(100, "feet")
  23915. },
  23916. {
  23917. name: "Megamacto",
  23918. height: math.unit(50, "miles")
  23919. },
  23920. ]
  23921. ))
  23922. characterMakers.push(() => makeCharacter(
  23923. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  23924. {
  23925. side: {
  23926. height: math.unit(30, "feet"),
  23927. weight: math.unit(35000, "kg"),
  23928. name: "Side",
  23929. image: {
  23930. source: "./media/characters/alydar/side.svg",
  23931. extra: 234 / 222,
  23932. bottom: 6.5 / 241
  23933. }
  23934. },
  23935. front: {
  23936. height: math.unit(30, "feet"),
  23937. weight: math.unit(35000, "kg"),
  23938. name: "Front",
  23939. image: {
  23940. source: "./media/characters/alydar/front.svg",
  23941. extra: 223.37 / 210.2,
  23942. bottom: 22.3 / 246.76
  23943. }
  23944. },
  23945. top: {
  23946. height: math.unit(64.54, "feet"),
  23947. weight: math.unit(35000, "kg"),
  23948. name: "Top",
  23949. image: {
  23950. source: "./media/characters/alydar/top.svg"
  23951. }
  23952. },
  23953. anthro: {
  23954. height: math.unit(30, "feet"),
  23955. weight: math.unit(9000, "kg"),
  23956. name: "Anthro",
  23957. image: {
  23958. source: "./media/characters/alydar/anthro.svg",
  23959. extra: 432 / 421,
  23960. bottom: 7.18 / 440
  23961. }
  23962. },
  23963. maw: {
  23964. height: math.unit(11.693, "feet"),
  23965. name: "Maw",
  23966. image: {
  23967. source: "./media/characters/alydar/maw.svg"
  23968. }
  23969. },
  23970. head: {
  23971. height: math.unit(11.693, "feet"),
  23972. name: "Head",
  23973. image: {
  23974. source: "./media/characters/alydar/head.svg"
  23975. }
  23976. },
  23977. headAlt: {
  23978. height: math.unit(12.861, "feet"),
  23979. name: "Head (Alt)",
  23980. image: {
  23981. source: "./media/characters/alydar/head-alt.svg"
  23982. }
  23983. },
  23984. wing: {
  23985. height: math.unit(20.712, "feet"),
  23986. name: "Wing",
  23987. image: {
  23988. source: "./media/characters/alydar/wing.svg"
  23989. }
  23990. },
  23991. wingFeather: {
  23992. height: math.unit(9.662, "feet"),
  23993. name: "Wing Feather",
  23994. image: {
  23995. source: "./media/characters/alydar/wing-feather.svg"
  23996. }
  23997. },
  23998. countourFeather: {
  23999. height: math.unit(4.154, "feet"),
  24000. name: "Contour Feather",
  24001. image: {
  24002. source: "./media/characters/alydar/contour-feather.svg"
  24003. }
  24004. },
  24005. },
  24006. [
  24007. {
  24008. name: "Diplomatic",
  24009. height: math.unit(13, "feet"),
  24010. default: true
  24011. },
  24012. {
  24013. name: "Small",
  24014. height: math.unit(30, "feet")
  24015. },
  24016. {
  24017. name: "Normal",
  24018. height: math.unit(95, "feet"),
  24019. default: true
  24020. },
  24021. {
  24022. name: "Large",
  24023. height: math.unit(285, "feet")
  24024. },
  24025. {
  24026. name: "Incomprehensible",
  24027. height: math.unit(450, "megameters")
  24028. },
  24029. ]
  24030. ))
  24031. characterMakers.push(() => makeCharacter(
  24032. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24033. {
  24034. side: {
  24035. height: math.unit(11, "feet"),
  24036. weight: math.unit(1750, "kg"),
  24037. name: "Side",
  24038. image: {
  24039. source: "./media/characters/selicia/side.svg",
  24040. extra: 440 / 396,
  24041. bottom: 24.8 / 465.979
  24042. }
  24043. },
  24044. maw: {
  24045. height: math.unit(4.665, "feet"),
  24046. name: "Maw",
  24047. image: {
  24048. source: "./media/characters/selicia/maw.svg"
  24049. }
  24050. },
  24051. },
  24052. [
  24053. {
  24054. name: "Normal",
  24055. height: math.unit(11, "feet"),
  24056. default: true
  24057. },
  24058. ]
  24059. ))
  24060. characterMakers.push(() => makeCharacter(
  24061. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24062. {
  24063. side: {
  24064. height: math.unit(2 + 6 / 12, "feet"),
  24065. weight: math.unit(30, "lb"),
  24066. name: "Side",
  24067. image: {
  24068. source: "./media/characters/layla/side.svg",
  24069. extra: 244 / 188,
  24070. bottom: 18.2 / 262.1
  24071. }
  24072. },
  24073. back: {
  24074. height: math.unit(2 + 6 / 12, "feet"),
  24075. weight: math.unit(30, "lb"),
  24076. name: "Back",
  24077. image: {
  24078. source: "./media/characters/layla/back.svg",
  24079. extra: 308 / 241.5,
  24080. bottom: 8.9 / 316.8
  24081. }
  24082. },
  24083. cumming: {
  24084. height: math.unit(2 + 6 / 12, "feet"),
  24085. weight: math.unit(30, "lb"),
  24086. name: "Cumming",
  24087. image: {
  24088. source: "./media/characters/layla/cumming.svg",
  24089. extra: 342 / 279,
  24090. bottom: 595 / 938
  24091. }
  24092. },
  24093. dickFlaccid: {
  24094. height: math.unit(2.595, "feet"),
  24095. name: "Flaccid Genitals",
  24096. image: {
  24097. source: "./media/characters/layla/dick-flaccid.svg"
  24098. }
  24099. },
  24100. dickErect: {
  24101. height: math.unit(2.359, "feet"),
  24102. name: "Erect Genitals",
  24103. image: {
  24104. source: "./media/characters/layla/dick-erect.svg"
  24105. }
  24106. },
  24107. dragon: {
  24108. height: math.unit(40, "feet"),
  24109. name: "Dragon",
  24110. image: {
  24111. source: "./media/characters/layla/dragon.svg",
  24112. extra: 610/535,
  24113. bottom: 367/977
  24114. }
  24115. },
  24116. taur: {
  24117. height: math.unit(30, "feet"),
  24118. name: "Taur",
  24119. image: {
  24120. source: "./media/characters/layla/taur.svg",
  24121. extra: 1268/1199,
  24122. bottom: 112/1380
  24123. }
  24124. },
  24125. },
  24126. [
  24127. {
  24128. name: "Micro",
  24129. height: math.unit(1, "inch")
  24130. },
  24131. {
  24132. name: "Small",
  24133. height: math.unit(1, "foot")
  24134. },
  24135. {
  24136. name: "Normal",
  24137. height: math.unit(2 + 6 / 12, "feet"),
  24138. default: true
  24139. },
  24140. {
  24141. name: "Macro",
  24142. height: math.unit(200, "feet")
  24143. },
  24144. {
  24145. name: "Megamacro",
  24146. height: math.unit(1000, "miles")
  24147. },
  24148. {
  24149. name: "Planetary",
  24150. height: math.unit(8000, "miles")
  24151. },
  24152. {
  24153. name: "True Layla",
  24154. height: math.unit(200000 * 7, "multiverses")
  24155. },
  24156. ]
  24157. ))
  24158. characterMakers.push(() => makeCharacter(
  24159. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24160. {
  24161. back: {
  24162. height: math.unit(10.5, "feet"),
  24163. weight: math.unit(800, "lb"),
  24164. name: "Back",
  24165. image: {
  24166. source: "./media/characters/knox/back.svg",
  24167. extra: 1486 / 1089,
  24168. bottom: 107 / 1601.4
  24169. }
  24170. },
  24171. side: {
  24172. height: math.unit(10.5, "feet"),
  24173. weight: math.unit(800, "lb"),
  24174. name: "Side",
  24175. image: {
  24176. source: "./media/characters/knox/side.svg",
  24177. extra: 244 / 218,
  24178. bottom: 14 / 260
  24179. }
  24180. },
  24181. },
  24182. [
  24183. {
  24184. name: "Compact",
  24185. height: math.unit(10.5, "feet"),
  24186. default: true
  24187. },
  24188. {
  24189. name: "Dynamax",
  24190. height: math.unit(210, "feet")
  24191. },
  24192. {
  24193. name: "Full Macro",
  24194. height: math.unit(850, "feet")
  24195. },
  24196. ]
  24197. ))
  24198. characterMakers.push(() => makeCharacter(
  24199. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24200. {
  24201. front: {
  24202. height: math.unit(28, "feet"),
  24203. weight: math.unit(10500, "lb"),
  24204. name: "Front",
  24205. image: {
  24206. source: "./media/characters/kayda/front.svg",
  24207. extra: 1536 / 1428,
  24208. bottom: 68.7 / 1603
  24209. }
  24210. },
  24211. back: {
  24212. height: math.unit(28, "feet"),
  24213. weight: math.unit(10500, "lb"),
  24214. name: "Back",
  24215. image: {
  24216. source: "./media/characters/kayda/back.svg",
  24217. extra: 1557 / 1464,
  24218. bottom: 39.5 / 1597.49
  24219. }
  24220. },
  24221. dick: {
  24222. height: math.unit(3.858, "feet"),
  24223. name: "Dick",
  24224. image: {
  24225. source: "./media/characters/kayda/dick.svg"
  24226. }
  24227. },
  24228. },
  24229. [
  24230. {
  24231. name: "Macro",
  24232. height: math.unit(28, "feet"),
  24233. default: true
  24234. },
  24235. ]
  24236. ))
  24237. characterMakers.push(() => makeCharacter(
  24238. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24239. {
  24240. front: {
  24241. height: math.unit(10 + 11 / 12, "feet"),
  24242. weight: math.unit(1400, "lb"),
  24243. name: "Front",
  24244. image: {
  24245. source: "./media/characters/brian/front.svg",
  24246. extra: 737 / 692,
  24247. bottom: 55.4 / 785
  24248. }
  24249. },
  24250. },
  24251. [
  24252. {
  24253. name: "Normal",
  24254. height: math.unit(10 + 11 / 12, "feet"),
  24255. default: true
  24256. },
  24257. ]
  24258. ))
  24259. characterMakers.push(() => makeCharacter(
  24260. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24261. {
  24262. front: {
  24263. height: math.unit(5 + 8 / 12, "feet"),
  24264. weight: math.unit(140, "lb"),
  24265. name: "Front",
  24266. image: {
  24267. source: "./media/characters/khemri/front.svg",
  24268. extra: 4780 / 4059,
  24269. bottom: 80.1 / 4859.25
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Micro",
  24276. height: math.unit(6, "inches")
  24277. },
  24278. {
  24279. name: "Normal",
  24280. height: math.unit(5 + 8 / 12, "feet"),
  24281. default: true
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24287. {
  24288. front: {
  24289. height: math.unit(13, "feet"),
  24290. weight: math.unit(1700, "lb"),
  24291. name: "Front",
  24292. image: {
  24293. source: "./media/characters/felix-braveheart/front.svg",
  24294. extra: 1222 / 1157,
  24295. bottom: 53.2 / 1280
  24296. }
  24297. },
  24298. back: {
  24299. height: math.unit(13, "feet"),
  24300. weight: math.unit(1700, "lb"),
  24301. name: "Back",
  24302. image: {
  24303. source: "./media/characters/felix-braveheart/back.svg",
  24304. extra: 1277 / 1203,
  24305. bottom: 50.2 / 1327
  24306. }
  24307. },
  24308. feral: {
  24309. height: math.unit(6, "feet"),
  24310. weight: math.unit(400, "lb"),
  24311. name: "Feral",
  24312. image: {
  24313. source: "./media/characters/felix-braveheart/feral.svg",
  24314. extra: 682 / 625,
  24315. bottom: 6.9 / 688
  24316. }
  24317. },
  24318. },
  24319. [
  24320. {
  24321. name: "Normal",
  24322. height: math.unit(13, "feet"),
  24323. default: true
  24324. },
  24325. ]
  24326. ))
  24327. characterMakers.push(() => makeCharacter(
  24328. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24329. {
  24330. side: {
  24331. height: math.unit(5 + 11 / 12, "feet"),
  24332. weight: math.unit(1400, "lb"),
  24333. name: "Side",
  24334. image: {
  24335. source: "./media/characters/shadow-blade/side.svg",
  24336. extra: 1726 / 1267,
  24337. bottom: 58.4 / 1785
  24338. }
  24339. },
  24340. },
  24341. [
  24342. {
  24343. name: "Normal",
  24344. height: math.unit(5 + 11 / 12, "feet"),
  24345. default: true
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24351. {
  24352. front: {
  24353. height: math.unit(1 + 6 / 12, "feet"),
  24354. weight: math.unit(25, "lb"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/karla-halldor/front.svg",
  24358. extra: 1459 / 1383,
  24359. bottom: 12 / 1472
  24360. }
  24361. },
  24362. },
  24363. [
  24364. {
  24365. name: "Normal",
  24366. height: math.unit(1 + 6 / 12, "feet"),
  24367. default: true
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24373. {
  24374. front: {
  24375. height: math.unit(6 + 2 / 12, "feet"),
  24376. weight: math.unit(160, "lb"),
  24377. name: "Front",
  24378. image: {
  24379. source: "./media/characters/ariam/front.svg",
  24380. extra: 1073/976,
  24381. bottom: 52/1125
  24382. }
  24383. },
  24384. back: {
  24385. height: math.unit(6 + 2/12, "feet"),
  24386. weight: math.unit(160, "lb"),
  24387. name: "Back",
  24388. image: {
  24389. source: "./media/characters/ariam/back.svg",
  24390. extra: 1103/1023,
  24391. bottom: 9/1112
  24392. }
  24393. },
  24394. dressed: {
  24395. height: math.unit(6 + 2/12, "feet"),
  24396. weight: math.unit(160, "lb"),
  24397. name: "Dressed",
  24398. image: {
  24399. source: "./media/characters/ariam/dressed.svg",
  24400. extra: 1099/1009,
  24401. bottom: 25/1124
  24402. }
  24403. },
  24404. squatting: {
  24405. height: math.unit(4.1, "feet"),
  24406. weight: math.unit(160, "lb"),
  24407. name: "Squatting",
  24408. image: {
  24409. source: "./media/characters/ariam/squatting.svg",
  24410. extra: 2617 / 2112,
  24411. bottom: 61.2 / 2681,
  24412. }
  24413. },
  24414. },
  24415. [
  24416. {
  24417. name: "Normal",
  24418. height: math.unit(6 + 2 / 12, "feet"),
  24419. default: true
  24420. },
  24421. {
  24422. name: "Normal+",
  24423. height: math.unit(4, "meters")
  24424. },
  24425. {
  24426. name: "Macro",
  24427. height: math.unit(50, "meters")
  24428. },
  24429. {
  24430. name: "Macro+",
  24431. height: math.unit(100, "meters")
  24432. },
  24433. {
  24434. name: "Megamacro",
  24435. height: math.unit(20, "km")
  24436. },
  24437. {
  24438. name: "Caretaker",
  24439. height: math.unit(444, "megameters")
  24440. },
  24441. ]
  24442. ))
  24443. characterMakers.push(() => makeCharacter(
  24444. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24445. {
  24446. front: {
  24447. height: math.unit(1.67, "meters"),
  24448. weight: math.unit(140, "lb"),
  24449. name: "Front",
  24450. image: {
  24451. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24452. extra: 438 / 410,
  24453. bottom: 0.75 / 439
  24454. }
  24455. },
  24456. },
  24457. [
  24458. {
  24459. name: "Shrunken",
  24460. height: math.unit(7.6, "cm")
  24461. },
  24462. {
  24463. name: "Human Scale",
  24464. height: math.unit(1.67, "meters")
  24465. },
  24466. {
  24467. name: "Wolxi Scale",
  24468. height: math.unit(36.7, "meters"),
  24469. default: true
  24470. },
  24471. ]
  24472. ))
  24473. characterMakers.push(() => makeCharacter(
  24474. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  24475. {
  24476. front: {
  24477. height: math.unit(1.73, "meters"),
  24478. weight: math.unit(240, "lb"),
  24479. name: "Front",
  24480. image: {
  24481. source: "./media/characters/izue-two-mothers/front.svg",
  24482. extra: 469 / 437,
  24483. bottom: 1.24 / 470.6
  24484. }
  24485. },
  24486. },
  24487. [
  24488. {
  24489. name: "Shrunken",
  24490. height: math.unit(7.86, "cm")
  24491. },
  24492. {
  24493. name: "Human Scale",
  24494. height: math.unit(1.73, "meters")
  24495. },
  24496. {
  24497. name: "Wolxi Scale",
  24498. height: math.unit(38, "meters"),
  24499. default: true
  24500. },
  24501. ]
  24502. ))
  24503. characterMakers.push(() => makeCharacter(
  24504. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  24505. {
  24506. front: {
  24507. height: math.unit(1.55, "meters"),
  24508. weight: math.unit(120, "lb"),
  24509. name: "Front",
  24510. image: {
  24511. source: "./media/characters/teeku-love-shack/front.svg",
  24512. extra: 387 / 362,
  24513. bottom: 1.51 / 388
  24514. }
  24515. },
  24516. },
  24517. [
  24518. {
  24519. name: "Shrunken",
  24520. height: math.unit(7, "cm")
  24521. },
  24522. {
  24523. name: "Human Scale",
  24524. height: math.unit(1.55, "meters")
  24525. },
  24526. {
  24527. name: "Wolxi Scale",
  24528. height: math.unit(34.1, "meters"),
  24529. default: true
  24530. },
  24531. ]
  24532. ))
  24533. characterMakers.push(() => makeCharacter(
  24534. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  24535. {
  24536. front: {
  24537. height: math.unit(1.83, "meters"),
  24538. weight: math.unit(135, "lb"),
  24539. name: "Front",
  24540. image: {
  24541. source: "./media/characters/dejma-the-red/front.svg",
  24542. extra: 480 / 458,
  24543. bottom: 1.8 / 482
  24544. }
  24545. },
  24546. },
  24547. [
  24548. {
  24549. name: "Shrunken",
  24550. height: math.unit(8.3, "cm")
  24551. },
  24552. {
  24553. name: "Human Scale",
  24554. height: math.unit(1.83, "meters")
  24555. },
  24556. {
  24557. name: "Wolxi Scale",
  24558. height: math.unit(40, "meters"),
  24559. default: true
  24560. },
  24561. ]
  24562. ))
  24563. characterMakers.push(() => makeCharacter(
  24564. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  24565. {
  24566. front: {
  24567. height: math.unit(1.78, "meters"),
  24568. weight: math.unit(65, "kg"),
  24569. name: "Front",
  24570. image: {
  24571. source: "./media/characters/aki/front.svg",
  24572. extra: 452 / 415
  24573. }
  24574. },
  24575. frontNsfw: {
  24576. height: math.unit(1.78, "meters"),
  24577. weight: math.unit(65, "kg"),
  24578. name: "Front (NSFW)",
  24579. image: {
  24580. source: "./media/characters/aki/front-nsfw.svg",
  24581. extra: 452 / 415
  24582. }
  24583. },
  24584. back: {
  24585. height: math.unit(1.78, "meters"),
  24586. weight: math.unit(65, "kg"),
  24587. name: "Back",
  24588. image: {
  24589. source: "./media/characters/aki/back.svg",
  24590. extra: 452 / 415
  24591. }
  24592. },
  24593. rump: {
  24594. height: math.unit(2.05, "feet"),
  24595. name: "Rump",
  24596. image: {
  24597. source: "./media/characters/aki/rump.svg"
  24598. }
  24599. },
  24600. dick: {
  24601. height: math.unit(0.95, "feet"),
  24602. name: "Dick",
  24603. image: {
  24604. source: "./media/characters/aki/dick.svg"
  24605. }
  24606. },
  24607. },
  24608. [
  24609. {
  24610. name: "Micro",
  24611. height: math.unit(15, "cm")
  24612. },
  24613. {
  24614. name: "Normal",
  24615. height: math.unit(178, "cm"),
  24616. default: true
  24617. },
  24618. {
  24619. name: "Macro",
  24620. height: math.unit(214, "m")
  24621. },
  24622. {
  24623. name: "Macro+",
  24624. height: math.unit(534, "m")
  24625. },
  24626. ]
  24627. ))
  24628. characterMakers.push(() => makeCharacter(
  24629. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  24630. {
  24631. front: {
  24632. height: math.unit(5 + 5 / 12, "feet"),
  24633. weight: math.unit(120, "lb"),
  24634. name: "Front",
  24635. image: {
  24636. source: "./media/characters/ari/front.svg",
  24637. extra: 714.5 / 682,
  24638. bottom: 8 / 722.5
  24639. }
  24640. },
  24641. },
  24642. [
  24643. {
  24644. name: "Normal",
  24645. height: math.unit(5 + 5 / 12, "feet")
  24646. },
  24647. {
  24648. name: "Macro",
  24649. height: math.unit(100, "feet"),
  24650. default: true
  24651. },
  24652. {
  24653. name: "Megamacro",
  24654. height: math.unit(100, "miles")
  24655. },
  24656. {
  24657. name: "Gigamacro",
  24658. height: math.unit(80000, "miles")
  24659. },
  24660. ]
  24661. ))
  24662. characterMakers.push(() => makeCharacter(
  24663. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  24664. {
  24665. side: {
  24666. height: math.unit(9, "feet"),
  24667. weight: math.unit(400, "kg"),
  24668. name: "Side",
  24669. image: {
  24670. source: "./media/characters/bolt/side.svg",
  24671. extra: 1126 / 896,
  24672. bottom: 60 / 1187.3,
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Micro",
  24679. height: math.unit(5, "inches")
  24680. },
  24681. {
  24682. name: "Normal",
  24683. height: math.unit(9, "feet"),
  24684. default: true
  24685. },
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(700, "feet")
  24689. },
  24690. {
  24691. name: "Max Size",
  24692. height: math.unit(1.52e22, "yottameters")
  24693. },
  24694. ]
  24695. ))
  24696. characterMakers.push(() => makeCharacter(
  24697. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  24698. {
  24699. front: {
  24700. height: math.unit(4.53, "meters"),
  24701. weight: math.unit(3, "tons"),
  24702. name: "Front",
  24703. image: {
  24704. source: "./media/characters/draekon-sylviar/front.svg",
  24705. extra: 1228 / 1068,
  24706. bottom: 41 / 1270
  24707. }
  24708. },
  24709. tail: {
  24710. height: math.unit(1.772, "meter"),
  24711. name: "Tail",
  24712. image: {
  24713. source: "./media/characters/draekon-sylviar/tail.svg"
  24714. }
  24715. },
  24716. head: {
  24717. height: math.unit(1.331, "meter"),
  24718. name: "Head",
  24719. image: {
  24720. source: "./media/characters/draekon-sylviar/head.svg"
  24721. }
  24722. },
  24723. hand: {
  24724. height: math.unit(0.564, "meter"),
  24725. name: "Hand",
  24726. image: {
  24727. source: "./media/characters/draekon-sylviar/hand.svg"
  24728. }
  24729. },
  24730. foot: {
  24731. height: math.unit(0.621, "meter"),
  24732. name: "Foot",
  24733. image: {
  24734. source: "./media/characters/draekon-sylviar/foot.svg",
  24735. bottom: 32 / 324
  24736. }
  24737. },
  24738. dick: {
  24739. height: math.unit(61, "cm"),
  24740. name: "Dick",
  24741. image: {
  24742. source: "./media/characters/draekon-sylviar/dick.svg"
  24743. }
  24744. },
  24745. dickseparated: {
  24746. height: math.unit(61, "cm"),
  24747. name: "Dick-separated",
  24748. image: {
  24749. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  24750. }
  24751. },
  24752. },
  24753. [
  24754. {
  24755. name: "Small",
  24756. height: math.unit(4.53 / 2, "meters"),
  24757. default: true
  24758. },
  24759. {
  24760. name: "Normal",
  24761. height: math.unit(4.53, "meters"),
  24762. default: true
  24763. },
  24764. {
  24765. name: "Large",
  24766. height: math.unit(4.53 * 2, "meters"),
  24767. },
  24768. ]
  24769. ))
  24770. characterMakers.push(() => makeCharacter(
  24771. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  24772. {
  24773. front: {
  24774. height: math.unit(6 + 2 / 12, "feet"),
  24775. weight: math.unit(180, "lb"),
  24776. name: "Front",
  24777. image: {
  24778. source: "./media/characters/brawler/front.svg",
  24779. extra: 3301 / 3027,
  24780. bottom: 138 / 3439
  24781. }
  24782. },
  24783. },
  24784. [
  24785. {
  24786. name: "Normal",
  24787. height: math.unit(6 + 2 / 12, "feet"),
  24788. default: true
  24789. },
  24790. ]
  24791. ))
  24792. characterMakers.push(() => makeCharacter(
  24793. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  24794. {
  24795. front: {
  24796. height: math.unit(11, "feet"),
  24797. weight: math.unit(1000, "lb"),
  24798. name: "Front",
  24799. image: {
  24800. source: "./media/characters/alex/front.svg",
  24801. bottom: 44.5 / 620
  24802. }
  24803. },
  24804. },
  24805. [
  24806. {
  24807. name: "Micro",
  24808. height: math.unit(5, "inches")
  24809. },
  24810. {
  24811. name: "Normal",
  24812. height: math.unit(11, "feet"),
  24813. default: true
  24814. },
  24815. {
  24816. name: "Macro",
  24817. height: math.unit(9.5e9, "feet")
  24818. },
  24819. {
  24820. name: "Max Size",
  24821. height: math.unit(1.4e283, "yottameters")
  24822. },
  24823. ]
  24824. ))
  24825. characterMakers.push(() => makeCharacter(
  24826. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  24827. {
  24828. female: {
  24829. height: math.unit(29.9, "m"),
  24830. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  24831. name: "Female",
  24832. image: {
  24833. source: "./media/characters/zenari/female.svg",
  24834. extra: 3281.6 / 3217,
  24835. bottom: 72.2 / 3353
  24836. }
  24837. },
  24838. male: {
  24839. height: math.unit(27.7, "m"),
  24840. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  24841. name: "Male",
  24842. image: {
  24843. source: "./media/characters/zenari/male.svg",
  24844. extra: 3008 / 2991,
  24845. bottom: 54.6 / 3069
  24846. }
  24847. },
  24848. },
  24849. [
  24850. {
  24851. name: "Macro",
  24852. height: math.unit(29.7, "meters"),
  24853. default: true
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  24859. {
  24860. female: {
  24861. height: math.unit(23.8, "m"),
  24862. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24863. name: "Female",
  24864. image: {
  24865. source: "./media/characters/mactarian/female.svg",
  24866. extra: 2662 / 2569,
  24867. bottom: 73 / 2736
  24868. }
  24869. },
  24870. male: {
  24871. height: math.unit(23.8, "m"),
  24872. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  24873. name: "Male",
  24874. image: {
  24875. source: "./media/characters/mactarian/male.svg",
  24876. extra: 2673 / 2600,
  24877. bottom: 76 / 2750
  24878. }
  24879. },
  24880. },
  24881. [
  24882. {
  24883. name: "Macro",
  24884. height: math.unit(23.8, "meters"),
  24885. default: true
  24886. },
  24887. ]
  24888. ))
  24889. characterMakers.push(() => makeCharacter(
  24890. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  24891. {
  24892. female: {
  24893. height: math.unit(19.3, "m"),
  24894. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  24895. name: "Female",
  24896. image: {
  24897. source: "./media/characters/umok/female.svg",
  24898. extra: 2186 / 2078,
  24899. bottom: 87 / 2277
  24900. }
  24901. },
  24902. male: {
  24903. height: math.unit(19.5, "m"),
  24904. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  24905. name: "Male",
  24906. image: {
  24907. source: "./media/characters/umok/male.svg",
  24908. extra: 2233 / 2140,
  24909. bottom: 24.4 / 2258
  24910. }
  24911. },
  24912. },
  24913. [
  24914. {
  24915. name: "Macro",
  24916. height: math.unit(19.3, "meters"),
  24917. default: true
  24918. },
  24919. ]
  24920. ))
  24921. characterMakers.push(() => makeCharacter(
  24922. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  24923. {
  24924. female: {
  24925. height: math.unit(26.15, "m"),
  24926. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  24927. name: "Female",
  24928. image: {
  24929. source: "./media/characters/joraxian/female.svg",
  24930. extra: 2912 / 2824,
  24931. bottom: 36 / 2956
  24932. }
  24933. },
  24934. male: {
  24935. height: math.unit(25.4, "m"),
  24936. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24937. name: "Male",
  24938. image: {
  24939. source: "./media/characters/joraxian/male.svg",
  24940. extra: 2877 / 2721,
  24941. bottom: 82 / 2967
  24942. }
  24943. },
  24944. },
  24945. [
  24946. {
  24947. name: "Macro",
  24948. height: math.unit(26.15, "meters"),
  24949. default: true
  24950. },
  24951. ]
  24952. ))
  24953. characterMakers.push(() => makeCharacter(
  24954. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24955. {
  24956. female: {
  24957. height: math.unit(21.6, "m"),
  24958. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24959. name: "Female",
  24960. image: {
  24961. source: "./media/characters/sthara/female.svg",
  24962. extra: 2516 / 2347,
  24963. bottom: 21.5 / 2537
  24964. }
  24965. },
  24966. male: {
  24967. height: math.unit(24, "m"),
  24968. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24969. name: "Male",
  24970. image: {
  24971. source: "./media/characters/sthara/male.svg",
  24972. extra: 2732 / 2607,
  24973. bottom: 23 / 2732
  24974. }
  24975. },
  24976. },
  24977. [
  24978. {
  24979. name: "Macro",
  24980. height: math.unit(21.6, "meters"),
  24981. default: true
  24982. },
  24983. ]
  24984. ))
  24985. characterMakers.push(() => makeCharacter(
  24986. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24987. {
  24988. front: {
  24989. height: math.unit(6 + 4 / 12, "feet"),
  24990. weight: math.unit(175, "lb"),
  24991. name: "Front",
  24992. image: {
  24993. source: "./media/characters/luka-bryzant/front.svg",
  24994. extra: 311 / 289,
  24995. bottom: 4 / 315
  24996. }
  24997. },
  24998. back: {
  24999. height: math.unit(6 + 4 / 12, "feet"),
  25000. weight: math.unit(175, "lb"),
  25001. name: "Back",
  25002. image: {
  25003. source: "./media/characters/luka-bryzant/back.svg",
  25004. extra: 311 / 289,
  25005. bottom: 3.8 / 313.7
  25006. }
  25007. },
  25008. },
  25009. [
  25010. {
  25011. name: "Micro",
  25012. height: math.unit(10, "inches")
  25013. },
  25014. {
  25015. name: "Normal",
  25016. height: math.unit(6 + 4 / 12, "feet"),
  25017. default: true
  25018. },
  25019. {
  25020. name: "Large",
  25021. height: math.unit(12, "feet")
  25022. },
  25023. ]
  25024. ))
  25025. characterMakers.push(() => makeCharacter(
  25026. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25027. {
  25028. front: {
  25029. height: math.unit(5 + 7 / 12, "feet"),
  25030. weight: math.unit(185, "lb"),
  25031. name: "Front",
  25032. image: {
  25033. source: "./media/characters/aman-aquila/front.svg",
  25034. extra: 1013 / 976,
  25035. bottom: 45.6 / 1057
  25036. }
  25037. },
  25038. side: {
  25039. height: math.unit(5 + 7 / 12, "feet"),
  25040. weight: math.unit(185, "lb"),
  25041. name: "Side",
  25042. image: {
  25043. source: "./media/characters/aman-aquila/side.svg",
  25044. extra: 1054 / 1011,
  25045. bottom: 15 / 1070
  25046. }
  25047. },
  25048. back: {
  25049. height: math.unit(5 + 7 / 12, "feet"),
  25050. weight: math.unit(185, "lb"),
  25051. name: "Back",
  25052. image: {
  25053. source: "./media/characters/aman-aquila/back.svg",
  25054. extra: 1026 / 970,
  25055. bottom: 12 / 1039
  25056. }
  25057. },
  25058. head: {
  25059. height: math.unit(1.211, "feet"),
  25060. name: "Head",
  25061. image: {
  25062. source: "./media/characters/aman-aquila/head.svg",
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Minimicro",
  25069. height: math.unit(0.057, "inches")
  25070. },
  25071. {
  25072. name: "Micro",
  25073. height: math.unit(7, "inches")
  25074. },
  25075. {
  25076. name: "Mini",
  25077. height: math.unit(3 + 7 / 12, "feet")
  25078. },
  25079. {
  25080. name: "Normal",
  25081. height: math.unit(5 + 7 / 12, "feet"),
  25082. default: true
  25083. },
  25084. {
  25085. name: "Macro",
  25086. height: math.unit(157 + 7 / 12, "feet")
  25087. },
  25088. {
  25089. name: "Megamacro",
  25090. height: math.unit(1557 + 7 / 12, "feet")
  25091. },
  25092. {
  25093. name: "Gigamacro",
  25094. height: math.unit(15557 + 7 / 12, "feet")
  25095. },
  25096. ]
  25097. ))
  25098. characterMakers.push(() => makeCharacter(
  25099. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25100. {
  25101. front: {
  25102. height: math.unit(3 + 2 / 12, "inches"),
  25103. weight: math.unit(0.3, "ounces"),
  25104. name: "Front",
  25105. image: {
  25106. source: "./media/characters/hiphae/front.svg",
  25107. extra: 1931 / 1683,
  25108. bottom: 24 / 1955
  25109. }
  25110. },
  25111. },
  25112. [
  25113. {
  25114. name: "Normal",
  25115. height: math.unit(3 + 1 / 2, "inches"),
  25116. default: true
  25117. },
  25118. ]
  25119. ))
  25120. characterMakers.push(() => makeCharacter(
  25121. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25122. {
  25123. front: {
  25124. height: math.unit(5 + 10 / 12, "feet"),
  25125. weight: math.unit(165, "lb"),
  25126. name: "Front",
  25127. image: {
  25128. source: "./media/characters/nicky/front.svg",
  25129. extra: 3144 / 2886,
  25130. bottom: 45.6 / 3192
  25131. }
  25132. },
  25133. back: {
  25134. height: math.unit(5 + 10 / 12, "feet"),
  25135. weight: math.unit(165, "lb"),
  25136. name: "Back",
  25137. image: {
  25138. source: "./media/characters/nicky/back.svg",
  25139. extra: 3055 / 2804,
  25140. bottom: 28.4 / 3087
  25141. }
  25142. },
  25143. frontclothed: {
  25144. height: math.unit(5 + 10 / 12, "feet"),
  25145. weight: math.unit(165, "lb"),
  25146. name: "Front-clothed",
  25147. image: {
  25148. source: "./media/characters/nicky/front-clothed.svg",
  25149. extra: 3184.9 / 2926.9,
  25150. bottom: 86.5 / 3239.9
  25151. }
  25152. },
  25153. foot: {
  25154. height: math.unit(1.16, "feet"),
  25155. name: "Foot",
  25156. image: {
  25157. source: "./media/characters/nicky/foot.svg"
  25158. }
  25159. },
  25160. feet: {
  25161. height: math.unit(1.34, "feet"),
  25162. name: "Feet",
  25163. image: {
  25164. source: "./media/characters/nicky/feet.svg"
  25165. }
  25166. },
  25167. maw: {
  25168. height: math.unit(0.9, "feet"),
  25169. name: "Maw",
  25170. image: {
  25171. source: "./media/characters/nicky/maw.svg"
  25172. }
  25173. },
  25174. },
  25175. [
  25176. {
  25177. name: "Normal",
  25178. height: math.unit(5 + 10 / 12, "feet"),
  25179. default: true
  25180. },
  25181. {
  25182. name: "Macro",
  25183. height: math.unit(60, "feet")
  25184. },
  25185. {
  25186. name: "Megamacro",
  25187. height: math.unit(1, "mile")
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25193. {
  25194. side: {
  25195. height: math.unit(10, "feet"),
  25196. weight: math.unit(600, "lb"),
  25197. name: "Side",
  25198. image: {
  25199. source: "./media/characters/blair/side.svg",
  25200. bottom: 16.6 / 475,
  25201. extra: 458 / 431
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Micro",
  25208. height: math.unit(8, "inches")
  25209. },
  25210. {
  25211. name: "Normal",
  25212. height: math.unit(10, "feet"),
  25213. default: true
  25214. },
  25215. {
  25216. name: "Macro",
  25217. height: math.unit(180, "feet")
  25218. },
  25219. ]
  25220. ))
  25221. characterMakers.push(() => makeCharacter(
  25222. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25223. {
  25224. front: {
  25225. height: math.unit(5 + 4 / 12, "feet"),
  25226. weight: math.unit(125, "lb"),
  25227. name: "Front",
  25228. image: {
  25229. source: "./media/characters/fisher/front.svg",
  25230. extra: 444 / 390,
  25231. bottom: 2 / 444.8
  25232. }
  25233. },
  25234. },
  25235. [
  25236. {
  25237. name: "Micro",
  25238. height: math.unit(4, "inches")
  25239. },
  25240. {
  25241. name: "Normal",
  25242. height: math.unit(5 + 4 / 12, "feet"),
  25243. default: true
  25244. },
  25245. {
  25246. name: "Macro",
  25247. height: math.unit(100, "feet")
  25248. },
  25249. ]
  25250. ))
  25251. characterMakers.push(() => makeCharacter(
  25252. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25253. {
  25254. front: {
  25255. height: math.unit(6.71, "feet"),
  25256. weight: math.unit(200, "lb"),
  25257. capacity: math.unit(1000000, "people"),
  25258. name: "Front",
  25259. image: {
  25260. source: "./media/characters/gliss/front.svg",
  25261. extra: 2347 / 2231,
  25262. bottom: 113 / 2462
  25263. }
  25264. },
  25265. hammerspaceSize: {
  25266. height: math.unit(6.71 * 717, "feet"),
  25267. weight: math.unit(200, "lb"),
  25268. capacity: math.unit(1000000, "people"),
  25269. name: "Hammerspace Size",
  25270. image: {
  25271. source: "./media/characters/gliss/front.svg",
  25272. extra: 2347 / 2231,
  25273. bottom: 113 / 2462
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "Normal",
  25280. height: math.unit(6.71, "feet"),
  25281. default: true
  25282. },
  25283. ]
  25284. ))
  25285. characterMakers.push(() => makeCharacter(
  25286. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25287. {
  25288. side: {
  25289. height: math.unit(1.44, "m"),
  25290. weight: math.unit(80, "kg"),
  25291. name: "Side",
  25292. image: {
  25293. source: "./media/characters/dune-anderson/side.svg",
  25294. bottom: 49 / 1426
  25295. }
  25296. },
  25297. },
  25298. [
  25299. {
  25300. name: "Wolf-sized",
  25301. height: math.unit(1.44, "meters")
  25302. },
  25303. {
  25304. name: "Normal",
  25305. height: math.unit(5.05, "meters"),
  25306. default: true
  25307. },
  25308. {
  25309. name: "Big",
  25310. height: math.unit(14.4, "meters")
  25311. },
  25312. {
  25313. name: "Huge",
  25314. height: math.unit(144, "meters")
  25315. },
  25316. ]
  25317. ))
  25318. characterMakers.push(() => makeCharacter(
  25319. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25320. {
  25321. front: {
  25322. height: math.unit(7, "feet"),
  25323. weight: math.unit(425, "lb"),
  25324. name: "Front",
  25325. image: {
  25326. source: "./media/characters/hind/front.svg",
  25327. extra: 2091 / 1860,
  25328. bottom: 129 / 2220
  25329. }
  25330. },
  25331. back: {
  25332. height: math.unit(7, "feet"),
  25333. weight: math.unit(425, "lb"),
  25334. name: "Back",
  25335. image: {
  25336. source: "./media/characters/hind/back.svg",
  25337. extra: 2091 / 1860,
  25338. bottom: 24.6 / 2309
  25339. }
  25340. },
  25341. tail: {
  25342. height: math.unit(2.8, "feet"),
  25343. name: "Tail",
  25344. image: {
  25345. source: "./media/characters/hind/tail.svg"
  25346. }
  25347. },
  25348. head: {
  25349. height: math.unit(2.55, "feet"),
  25350. name: "Head",
  25351. image: {
  25352. source: "./media/characters/hind/head.svg"
  25353. }
  25354. },
  25355. },
  25356. [
  25357. {
  25358. name: "XS",
  25359. height: math.unit(0.7, "feet")
  25360. },
  25361. {
  25362. name: "Normal",
  25363. height: math.unit(7, "feet"),
  25364. default: true
  25365. },
  25366. {
  25367. name: "XL",
  25368. height: math.unit(70, "feet")
  25369. },
  25370. ]
  25371. ))
  25372. characterMakers.push(() => makeCharacter(
  25373. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25374. {
  25375. front: {
  25376. height: math.unit(2.1, "meters"),
  25377. weight: math.unit(150, "lb"),
  25378. name: "Front",
  25379. image: {
  25380. source: "./media/characters/tharquench-sizestealer/front.svg",
  25381. extra: 1605/1470,
  25382. bottom: 36/1641
  25383. }
  25384. },
  25385. frontAlt: {
  25386. height: math.unit(2.1, "meters"),
  25387. weight: math.unit(150, "lb"),
  25388. name: "Front (Alt)",
  25389. image: {
  25390. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25391. extra: 2318 / 2063,
  25392. bottom: 93.4 / 2410
  25393. }
  25394. },
  25395. },
  25396. [
  25397. {
  25398. name: "Nano",
  25399. height: math.unit(1, "mm")
  25400. },
  25401. {
  25402. name: "Micro",
  25403. height: math.unit(1, "cm")
  25404. },
  25405. {
  25406. name: "Normal",
  25407. height: math.unit(2.1, "meters"),
  25408. default: true
  25409. },
  25410. ]
  25411. ))
  25412. characterMakers.push(() => makeCharacter(
  25413. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25414. {
  25415. front: {
  25416. height: math.unit(7 + 5 / 12, "feet"),
  25417. weight: math.unit(357, "lb"),
  25418. name: "Front",
  25419. image: {
  25420. source: "./media/characters/solex-draconov/front.svg",
  25421. extra: 1993 / 1865,
  25422. bottom: 117 / 2111
  25423. }
  25424. },
  25425. },
  25426. [
  25427. {
  25428. name: "Natural Height",
  25429. height: math.unit(7 + 5 / 12, "feet"),
  25430. default: true
  25431. },
  25432. {
  25433. name: "Macro",
  25434. height: math.unit(350, "feet")
  25435. },
  25436. {
  25437. name: "Macro+",
  25438. height: math.unit(1000, "feet")
  25439. },
  25440. {
  25441. name: "Megamacro",
  25442. height: math.unit(20, "km")
  25443. },
  25444. {
  25445. name: "Megamacro+",
  25446. height: math.unit(1000, "km")
  25447. },
  25448. {
  25449. name: "Gigamacro",
  25450. height: math.unit(2.5, "Gm")
  25451. },
  25452. {
  25453. name: "Teramacro",
  25454. height: math.unit(15, "Tm")
  25455. },
  25456. {
  25457. name: "Galactic",
  25458. height: math.unit(30, "Zm")
  25459. },
  25460. {
  25461. name: "Universal",
  25462. height: math.unit(21000, "Ym")
  25463. },
  25464. {
  25465. name: "Omniversal",
  25466. height: math.unit(9.861e50, "Ym")
  25467. },
  25468. {
  25469. name: "Existential",
  25470. height: math.unit(1e300, "meters")
  25471. },
  25472. ]
  25473. ))
  25474. characterMakers.push(() => makeCharacter(
  25475. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  25476. {
  25477. side: {
  25478. height: math.unit(25, "feet"),
  25479. weight: math.unit(90000, "lb"),
  25480. name: "Side",
  25481. image: {
  25482. source: "./media/characters/mandarax/side.svg",
  25483. extra: 614 / 332,
  25484. bottom: 55 / 630
  25485. }
  25486. },
  25487. head: {
  25488. height: math.unit(11.4, "feet"),
  25489. name: "Head",
  25490. image: {
  25491. source: "./media/characters/mandarax/head.svg"
  25492. }
  25493. },
  25494. belly: {
  25495. height: math.unit(33, "feet"),
  25496. name: "Belly",
  25497. capacity: math.unit(500, "people"),
  25498. image: {
  25499. source: "./media/characters/mandarax/belly.svg"
  25500. }
  25501. },
  25502. dick: {
  25503. height: math.unit(8.46, "feet"),
  25504. name: "Dick",
  25505. image: {
  25506. source: "./media/characters/mandarax/dick.svg"
  25507. }
  25508. },
  25509. top: {
  25510. height: math.unit(28, "meters"),
  25511. name: "Top",
  25512. image: {
  25513. source: "./media/characters/mandarax/top.svg"
  25514. }
  25515. },
  25516. },
  25517. [
  25518. {
  25519. name: "Normal",
  25520. height: math.unit(25, "feet"),
  25521. default: true
  25522. },
  25523. ]
  25524. ))
  25525. characterMakers.push(() => makeCharacter(
  25526. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  25527. {
  25528. front: {
  25529. height: math.unit(5, "feet"),
  25530. weight: math.unit(90, "lb"),
  25531. name: "Front",
  25532. image: {
  25533. source: "./media/characters/pixil/front.svg",
  25534. extra: 2000 / 1618,
  25535. bottom: 12.3 / 2011
  25536. }
  25537. },
  25538. },
  25539. [
  25540. {
  25541. name: "Normal",
  25542. height: math.unit(5, "feet"),
  25543. default: true
  25544. },
  25545. {
  25546. name: "Megamacro",
  25547. height: math.unit(10, "miles"),
  25548. },
  25549. ]
  25550. ))
  25551. characterMakers.push(() => makeCharacter(
  25552. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  25553. {
  25554. front: {
  25555. height: math.unit(7 + 2 / 12, "feet"),
  25556. weight: math.unit(200, "lb"),
  25557. name: "Front",
  25558. image: {
  25559. source: "./media/characters/angel/front.svg",
  25560. extra: 1830 / 1737,
  25561. bottom: 22.6 / 1854,
  25562. }
  25563. },
  25564. },
  25565. [
  25566. {
  25567. name: "Normal",
  25568. height: math.unit(7 + 2 / 12, "feet"),
  25569. default: true
  25570. },
  25571. {
  25572. name: "Macro",
  25573. height: math.unit(1000, "feet")
  25574. },
  25575. {
  25576. name: "Megamacro",
  25577. height: math.unit(2, "miles")
  25578. },
  25579. {
  25580. name: "Gigamacro",
  25581. height: math.unit(20, "earths")
  25582. },
  25583. ]
  25584. ))
  25585. characterMakers.push(() => makeCharacter(
  25586. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  25587. {
  25588. front: {
  25589. height: math.unit(5, "feet"),
  25590. weight: math.unit(180, "lb"),
  25591. name: "Front",
  25592. image: {
  25593. source: "./media/characters/mekana/front.svg",
  25594. extra: 1671 / 1605,
  25595. bottom: 3.5 / 1691
  25596. }
  25597. },
  25598. side: {
  25599. height: math.unit(5, "feet"),
  25600. weight: math.unit(180, "lb"),
  25601. name: "Side",
  25602. image: {
  25603. source: "./media/characters/mekana/side.svg",
  25604. extra: 1671 / 1605,
  25605. bottom: 3.5 / 1691
  25606. }
  25607. },
  25608. back: {
  25609. height: math.unit(5, "feet"),
  25610. weight: math.unit(180, "lb"),
  25611. name: "Back",
  25612. image: {
  25613. source: "./media/characters/mekana/back.svg",
  25614. extra: 1671 / 1605,
  25615. bottom: 3.5 / 1691
  25616. }
  25617. },
  25618. },
  25619. [
  25620. {
  25621. name: "Normal",
  25622. height: math.unit(5, "feet"),
  25623. default: true
  25624. },
  25625. ]
  25626. ))
  25627. characterMakers.push(() => makeCharacter(
  25628. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  25629. {
  25630. front: {
  25631. height: math.unit(4 + 6 / 12, "feet"),
  25632. weight: math.unit(80, "lb"),
  25633. name: "Front",
  25634. image: {
  25635. source: "./media/characters/pixie/front.svg",
  25636. extra: 1924 / 1825,
  25637. bottom: 22.4 / 1946
  25638. }
  25639. },
  25640. },
  25641. [
  25642. {
  25643. name: "Normal",
  25644. height: math.unit(4 + 6 / 12, "feet"),
  25645. default: true
  25646. },
  25647. {
  25648. name: "Macro",
  25649. height: math.unit(40, "feet")
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  25655. {
  25656. front: {
  25657. height: math.unit(2.1, "meters"),
  25658. weight: math.unit(200, "lb"),
  25659. name: "Front",
  25660. image: {
  25661. source: "./media/characters/the-lascivious/front.svg",
  25662. extra: 1 / 0.893,
  25663. bottom: 3.5 / 573.7
  25664. }
  25665. },
  25666. },
  25667. [
  25668. {
  25669. name: "Human Scale",
  25670. height: math.unit(2.1, "meters")
  25671. },
  25672. {
  25673. name: "Wolxi Scale",
  25674. height: math.unit(46.2, "m"),
  25675. default: true
  25676. },
  25677. {
  25678. name: "Boinker of Buildings",
  25679. height: math.unit(10, "km")
  25680. },
  25681. {
  25682. name: "Shagger of Skyscrapers",
  25683. height: math.unit(40, "km")
  25684. },
  25685. {
  25686. name: "Banger of Boroughs",
  25687. height: math.unit(4000, "km")
  25688. },
  25689. {
  25690. name: "Screwer of States",
  25691. height: math.unit(100000, "km")
  25692. },
  25693. {
  25694. name: "Pounder of Planets",
  25695. height: math.unit(2000000, "km")
  25696. },
  25697. ]
  25698. ))
  25699. characterMakers.push(() => makeCharacter(
  25700. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  25701. {
  25702. front: {
  25703. height: math.unit(6, "feet"),
  25704. weight: math.unit(150, "lb"),
  25705. name: "Front",
  25706. image: {
  25707. source: "./media/characters/aj/front.svg",
  25708. extra: 2039 / 1562,
  25709. bottom: 40 / 2079
  25710. }
  25711. },
  25712. },
  25713. [
  25714. {
  25715. name: "Normal",
  25716. height: math.unit(11 + 6 / 12, "feet"),
  25717. default: true
  25718. },
  25719. {
  25720. name: "Megamacro",
  25721. height: math.unit(60, "megameters")
  25722. },
  25723. ]
  25724. ))
  25725. characterMakers.push(() => makeCharacter(
  25726. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  25727. {
  25728. side: {
  25729. height: math.unit(31 + 8 / 12, "feet"),
  25730. weight: math.unit(75000, "kg"),
  25731. name: "Side",
  25732. image: {
  25733. source: "./media/characters/koros/side.svg",
  25734. extra: 1442 / 1297,
  25735. bottom: 122.7 / 1562
  25736. }
  25737. },
  25738. dicksKingsCrown: {
  25739. height: math.unit(6, "feet"),
  25740. name: "Dicks (King's Crown)",
  25741. image: {
  25742. source: "./media/characters/koros/dicks-kings-crown.svg"
  25743. }
  25744. },
  25745. dicksTailSet: {
  25746. height: math.unit(3, "feet"),
  25747. name: "Dicks (Tail Set)",
  25748. image: {
  25749. source: "./media/characters/koros/dicks-tail-set.svg"
  25750. }
  25751. },
  25752. dickCumming: {
  25753. height: math.unit(7.98, "feet"),
  25754. name: "Dick (Cumming)",
  25755. image: {
  25756. source: "./media/characters/koros/dick-cumming.svg"
  25757. }
  25758. },
  25759. dicksBack: {
  25760. height: math.unit(5.9, "feet"),
  25761. name: "Dicks (Back)",
  25762. image: {
  25763. source: "./media/characters/koros/dicks-back.svg"
  25764. }
  25765. },
  25766. dicksFront: {
  25767. height: math.unit(3.72, "feet"),
  25768. name: "Dicks (Front)",
  25769. image: {
  25770. source: "./media/characters/koros/dicks-front.svg"
  25771. }
  25772. },
  25773. dicksPeeking: {
  25774. height: math.unit(3.0, "feet"),
  25775. name: "Dicks (Peeking)",
  25776. image: {
  25777. source: "./media/characters/koros/dicks-peeking.svg"
  25778. }
  25779. },
  25780. eye: {
  25781. height: math.unit(1.7, "feet"),
  25782. name: "Eye",
  25783. image: {
  25784. source: "./media/characters/koros/eye.svg"
  25785. }
  25786. },
  25787. headFront: {
  25788. height: math.unit(11.69, "feet"),
  25789. name: "Head (Front)",
  25790. image: {
  25791. source: "./media/characters/koros/head-front.svg"
  25792. }
  25793. },
  25794. headSide: {
  25795. height: math.unit(14, "feet"),
  25796. name: "Head (Side)",
  25797. image: {
  25798. source: "./media/characters/koros/head-side.svg"
  25799. }
  25800. },
  25801. leg: {
  25802. height: math.unit(17, "feet"),
  25803. name: "Leg",
  25804. image: {
  25805. source: "./media/characters/koros/leg.svg"
  25806. }
  25807. },
  25808. mawSide: {
  25809. height: math.unit(12.8, "feet"),
  25810. name: "Maw (Side)",
  25811. image: {
  25812. source: "./media/characters/koros/maw-side.svg"
  25813. }
  25814. },
  25815. mawSpitting: {
  25816. height: math.unit(17, "feet"),
  25817. name: "Maw (Spitting)",
  25818. image: {
  25819. source: "./media/characters/koros/maw-spitting.svg"
  25820. }
  25821. },
  25822. slit: {
  25823. height: math.unit(2.8, "feet"),
  25824. name: "Slit",
  25825. image: {
  25826. source: "./media/characters/koros/slit.svg"
  25827. }
  25828. },
  25829. stomach: {
  25830. height: math.unit(6.8, "feet"),
  25831. capacity: math.unit(20, "people"),
  25832. name: "Stomach",
  25833. image: {
  25834. source: "./media/characters/koros/stomach.svg"
  25835. }
  25836. },
  25837. wingspanBottom: {
  25838. height: math.unit(114, "feet"),
  25839. name: "Wingspan (Bottom)",
  25840. image: {
  25841. source: "./media/characters/koros/wingspan-bottom.svg"
  25842. }
  25843. },
  25844. wingspanTop: {
  25845. height: math.unit(104, "feet"),
  25846. name: "Wingspan (Top)",
  25847. image: {
  25848. source: "./media/characters/koros/wingspan-top.svg"
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Normal",
  25855. height: math.unit(31 + 8 / 12, "feet"),
  25856. default: true
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  25862. {
  25863. front: {
  25864. height: math.unit(18 + 5 / 12, "feet"),
  25865. weight: math.unit(3750, "kg"),
  25866. name: "Front",
  25867. image: {
  25868. source: "./media/characters/vexx/front.svg",
  25869. extra: 426 / 396,
  25870. bottom: 31.5 / 458
  25871. }
  25872. },
  25873. maw: {
  25874. height: math.unit(6, "feet"),
  25875. name: "Maw",
  25876. image: {
  25877. source: "./media/characters/vexx/maw.svg"
  25878. }
  25879. },
  25880. },
  25881. [
  25882. {
  25883. name: "Normal",
  25884. height: math.unit(18 + 5 / 12, "feet"),
  25885. default: true
  25886. },
  25887. ]
  25888. ))
  25889. characterMakers.push(() => makeCharacter(
  25890. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  25891. {
  25892. front: {
  25893. height: math.unit(17 + 6 / 12, "feet"),
  25894. weight: math.unit(150, "lb"),
  25895. name: "Front",
  25896. image: {
  25897. source: "./media/characters/baadra/front.svg",
  25898. extra: 3137 / 2890,
  25899. bottom: 168.4 / 3305
  25900. }
  25901. },
  25902. back: {
  25903. height: math.unit(17 + 6 / 12, "feet"),
  25904. weight: math.unit(150, "lb"),
  25905. name: "Back",
  25906. image: {
  25907. source: "./media/characters/baadra/back.svg",
  25908. extra: 3142 / 2890,
  25909. bottom: 220 / 3371
  25910. }
  25911. },
  25912. head: {
  25913. height: math.unit(5.45, "feet"),
  25914. name: "Head",
  25915. image: {
  25916. source: "./media/characters/baadra/head.svg"
  25917. }
  25918. },
  25919. headAngry: {
  25920. height: math.unit(4.95, "feet"),
  25921. name: "Head (Angry)",
  25922. image: {
  25923. source: "./media/characters/baadra/head-angry.svg"
  25924. }
  25925. },
  25926. headOpen: {
  25927. height: math.unit(6, "feet"),
  25928. name: "Head (Open)",
  25929. image: {
  25930. source: "./media/characters/baadra/head-open.svg"
  25931. }
  25932. },
  25933. },
  25934. [
  25935. {
  25936. name: "Normal",
  25937. height: math.unit(17 + 6 / 12, "feet"),
  25938. default: true
  25939. },
  25940. ]
  25941. ))
  25942. characterMakers.push(() => makeCharacter(
  25943. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25944. {
  25945. front: {
  25946. height: math.unit(7 + 3 / 12, "feet"),
  25947. weight: math.unit(180, "lb"),
  25948. name: "Front",
  25949. image: {
  25950. source: "./media/characters/juri/front.svg",
  25951. extra: 1401 / 1237,
  25952. bottom: 18.5 / 1418
  25953. }
  25954. },
  25955. side: {
  25956. height: math.unit(7 + 3 / 12, "feet"),
  25957. weight: math.unit(180, "lb"),
  25958. name: "Side",
  25959. image: {
  25960. source: "./media/characters/juri/side.svg",
  25961. extra: 1424 / 1242,
  25962. bottom: 18.5 / 1447
  25963. }
  25964. },
  25965. sitting: {
  25966. height: math.unit(6, "feet"),
  25967. weight: math.unit(180, "lb"),
  25968. name: "Sitting",
  25969. image: {
  25970. source: "./media/characters/juri/sitting.svg",
  25971. extra: 1270 / 1143,
  25972. bottom: 100 / 1343
  25973. }
  25974. },
  25975. back: {
  25976. height: math.unit(7 + 3 / 12, "feet"),
  25977. weight: math.unit(180, "lb"),
  25978. name: "Back",
  25979. image: {
  25980. source: "./media/characters/juri/back.svg",
  25981. extra: 1377 / 1240,
  25982. bottom: 23.7 / 1405
  25983. }
  25984. },
  25985. maw: {
  25986. height: math.unit(2.8, "feet"),
  25987. name: "Maw",
  25988. image: {
  25989. source: "./media/characters/juri/maw.svg"
  25990. }
  25991. },
  25992. stomach: {
  25993. height: math.unit(0.89, "feet"),
  25994. capacity: math.unit(4, "liters"),
  25995. name: "Stomach",
  25996. image: {
  25997. source: "./media/characters/juri/stomach.svg"
  25998. }
  25999. },
  26000. },
  26001. [
  26002. {
  26003. name: "Normal",
  26004. height: math.unit(7 + 3 / 12, "feet"),
  26005. default: true
  26006. },
  26007. ]
  26008. ))
  26009. characterMakers.push(() => makeCharacter(
  26010. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26011. {
  26012. fox: {
  26013. height: math.unit(5 + 6 / 12, "feet"),
  26014. weight: math.unit(140, "lb"),
  26015. name: "Fox",
  26016. image: {
  26017. source: "./media/characters/maxene-sita/fox.svg",
  26018. extra: 146 / 138,
  26019. bottom: 2.1 / 148.19
  26020. }
  26021. },
  26022. foxLaying: {
  26023. height: math.unit(1.70, "feet"),
  26024. weight: math.unit(140, "lb"),
  26025. name: "Fox (Laying)",
  26026. image: {
  26027. source: "./media/characters/maxene-sita/fox-laying.svg",
  26028. extra: 910 / 572,
  26029. bottom: 71 / 981
  26030. }
  26031. },
  26032. kitsune: {
  26033. height: math.unit(10, "feet"),
  26034. weight: math.unit(800, "lb"),
  26035. name: "Kitsune",
  26036. image: {
  26037. source: "./media/characters/maxene-sita/kitsune.svg",
  26038. extra: 185 / 176,
  26039. bottom: 4.7 / 189.9
  26040. }
  26041. },
  26042. hellhound: {
  26043. height: math.unit(10, "feet"),
  26044. weight: math.unit(700, "lb"),
  26045. name: "Hellhound",
  26046. image: {
  26047. source: "./media/characters/maxene-sita/hellhound.svg",
  26048. extra: 1600 / 1545,
  26049. bottom: 81 / 1681
  26050. }
  26051. },
  26052. },
  26053. [
  26054. {
  26055. name: "Normal",
  26056. height: math.unit(5 + 6 / 12, "feet"),
  26057. default: true
  26058. },
  26059. ]
  26060. ))
  26061. characterMakers.push(() => makeCharacter(
  26062. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26063. {
  26064. front: {
  26065. height: math.unit(3 + 4 / 12, "feet"),
  26066. weight: math.unit(70, "lb"),
  26067. name: "Front",
  26068. image: {
  26069. source: "./media/characters/maia/front.svg",
  26070. extra: 227 / 219.5,
  26071. bottom: 40 / 267
  26072. }
  26073. },
  26074. back: {
  26075. height: math.unit(3 + 4 / 12, "feet"),
  26076. weight: math.unit(70, "lb"),
  26077. name: "Back",
  26078. image: {
  26079. source: "./media/characters/maia/back.svg",
  26080. extra: 237 / 225
  26081. }
  26082. },
  26083. },
  26084. [
  26085. {
  26086. name: "Normal",
  26087. height: math.unit(3 + 4 / 12, "feet"),
  26088. default: true
  26089. },
  26090. ]
  26091. ))
  26092. characterMakers.push(() => makeCharacter(
  26093. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26094. {
  26095. front: {
  26096. height: math.unit(5 + 10 / 12, "feet"),
  26097. weight: math.unit(197, "lb"),
  26098. name: "Front",
  26099. image: {
  26100. source: "./media/characters/jabaro/front.svg",
  26101. extra: 225 / 216,
  26102. bottom: 5.06 / 230
  26103. }
  26104. },
  26105. back: {
  26106. height: math.unit(5 + 10 / 12, "feet"),
  26107. weight: math.unit(197, "lb"),
  26108. name: "Back",
  26109. image: {
  26110. source: "./media/characters/jabaro/back.svg",
  26111. extra: 225 / 219,
  26112. bottom: 1.9 / 227
  26113. }
  26114. },
  26115. },
  26116. [
  26117. {
  26118. name: "Normal",
  26119. height: math.unit(5 + 10 / 12, "feet"),
  26120. default: true
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26126. {
  26127. front: {
  26128. height: math.unit(5 + 8 / 12, "feet"),
  26129. weight: math.unit(139, "lb"),
  26130. name: "Front",
  26131. image: {
  26132. source: "./media/characters/risa/front.svg",
  26133. extra: 270 / 260,
  26134. bottom: 11.2 / 282
  26135. }
  26136. },
  26137. back: {
  26138. height: math.unit(5 + 8 / 12, "feet"),
  26139. weight: math.unit(139, "lb"),
  26140. name: "Back",
  26141. image: {
  26142. source: "./media/characters/risa/back.svg",
  26143. extra: 264 / 255,
  26144. bottom: 4 / 268
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Normal",
  26151. height: math.unit(5 + 8 / 12, "feet"),
  26152. default: true
  26153. },
  26154. ]
  26155. ))
  26156. characterMakers.push(() => makeCharacter(
  26157. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26158. {
  26159. front: {
  26160. height: math.unit(2 + 11 / 12, "feet"),
  26161. weight: math.unit(30, "lb"),
  26162. name: "Front",
  26163. image: {
  26164. source: "./media/characters/weatley/front.svg",
  26165. bottom: 10.7 / 414,
  26166. extra: 403.5 / 362
  26167. }
  26168. },
  26169. back: {
  26170. height: math.unit(2 + 11 / 12, "feet"),
  26171. weight: math.unit(30, "lb"),
  26172. name: "Back",
  26173. image: {
  26174. source: "./media/characters/weatley/back.svg",
  26175. bottom: 10.7 / 414,
  26176. extra: 403.5 / 362
  26177. }
  26178. },
  26179. },
  26180. [
  26181. {
  26182. name: "Normal",
  26183. height: math.unit(2 + 11 / 12, "feet"),
  26184. default: true
  26185. },
  26186. ]
  26187. ))
  26188. characterMakers.push(() => makeCharacter(
  26189. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26190. {
  26191. front: {
  26192. height: math.unit(5 + 2 / 12, "feet"),
  26193. weight: math.unit(50, "kg"),
  26194. name: "Front",
  26195. image: {
  26196. source: "./media/characters/mercury-crescent/front.svg",
  26197. extra: 1088 / 1033,
  26198. bottom: 18.9 / 1109
  26199. }
  26200. },
  26201. },
  26202. [
  26203. {
  26204. name: "Normal",
  26205. height: math.unit(5 + 2 / 12, "feet"),
  26206. default: true
  26207. },
  26208. ]
  26209. ))
  26210. characterMakers.push(() => makeCharacter(
  26211. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26212. {
  26213. front: {
  26214. height: math.unit(2, "feet"),
  26215. weight: math.unit(15, "kg"),
  26216. name: "Front",
  26217. image: {
  26218. source: "./media/characters/diamond-jones/front.svg",
  26219. extra: 727/723,
  26220. bottom: 46/773
  26221. }
  26222. },
  26223. },
  26224. [
  26225. {
  26226. name: "Normal",
  26227. height: math.unit(2, "feet"),
  26228. default: true
  26229. },
  26230. ]
  26231. ))
  26232. characterMakers.push(() => makeCharacter(
  26233. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26234. {
  26235. front: {
  26236. height: math.unit(3, "feet"),
  26237. weight: math.unit(30, "kg"),
  26238. name: "Front",
  26239. image: {
  26240. source: "./media/characters/sweet-bit/front.svg",
  26241. extra: 675 / 567,
  26242. bottom: 27.7 / 703
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Normal",
  26249. height: math.unit(3, "feet"),
  26250. default: true
  26251. },
  26252. ]
  26253. ))
  26254. characterMakers.push(() => makeCharacter(
  26255. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26256. {
  26257. side: {
  26258. height: math.unit(9.178, "feet"),
  26259. weight: math.unit(500, "lb"),
  26260. name: "Side",
  26261. image: {
  26262. source: "./media/characters/umbrazen/side.svg",
  26263. extra: 1730 / 1473,
  26264. bottom: 34.6 / 1765
  26265. }
  26266. },
  26267. },
  26268. [
  26269. {
  26270. name: "Normal",
  26271. height: math.unit(9.178, "feet"),
  26272. default: true
  26273. },
  26274. ]
  26275. ))
  26276. characterMakers.push(() => makeCharacter(
  26277. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26278. {
  26279. front: {
  26280. height: math.unit(10, "feet"),
  26281. weight: math.unit(750, "lb"),
  26282. name: "Front",
  26283. image: {
  26284. source: "./media/characters/arlist/front.svg",
  26285. extra: 961 / 778,
  26286. bottom: 6.2 / 986
  26287. }
  26288. },
  26289. },
  26290. [
  26291. {
  26292. name: "Normal",
  26293. height: math.unit(10, "feet"),
  26294. default: true
  26295. },
  26296. ]
  26297. ))
  26298. characterMakers.push(() => makeCharacter(
  26299. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26300. {
  26301. front: {
  26302. height: math.unit(5 + 1 / 12, "feet"),
  26303. weight: math.unit(110, "lb"),
  26304. name: "Front",
  26305. image: {
  26306. source: "./media/characters/aradel/front.svg",
  26307. extra: 324 / 303,
  26308. bottom: 3.6 / 329.4
  26309. }
  26310. },
  26311. },
  26312. [
  26313. {
  26314. name: "Normal",
  26315. height: math.unit(5 + 1 / 12, "feet"),
  26316. default: true
  26317. },
  26318. ]
  26319. ))
  26320. characterMakers.push(() => makeCharacter(
  26321. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26322. {
  26323. front: {
  26324. height: math.unit(3 + 8 / 12, "feet"),
  26325. weight: math.unit(50, "lb"),
  26326. name: "Front",
  26327. image: {
  26328. source: "./media/characters/serryn/front.svg",
  26329. extra: 1792 / 1656,
  26330. bottom: 43.5 / 1840
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(3 + 8 / 12, "feet"),
  26338. default: true
  26339. },
  26340. ]
  26341. ))
  26342. characterMakers.push(() => makeCharacter(
  26343. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26344. {
  26345. front: {
  26346. height: math.unit(7 + 10 / 12, "feet"),
  26347. weight: math.unit(255, "lb"),
  26348. name: "Front",
  26349. image: {
  26350. source: "./media/characters/xavier-thyme/front.svg",
  26351. extra: 3733 / 3642,
  26352. bottom: 131 / 3869
  26353. }
  26354. },
  26355. frontRaven: {
  26356. height: math.unit(7 + 10 / 12, "feet"),
  26357. weight: math.unit(255, "lb"),
  26358. name: "Front (Raven)",
  26359. image: {
  26360. source: "./media/characters/xavier-thyme/front-raven.svg",
  26361. extra: 4385 / 3642,
  26362. bottom: 131 / 4517
  26363. }
  26364. },
  26365. },
  26366. [
  26367. {
  26368. name: "Normal",
  26369. height: math.unit(7 + 10 / 12, "feet"),
  26370. default: true
  26371. },
  26372. ]
  26373. ))
  26374. characterMakers.push(() => makeCharacter(
  26375. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26376. {
  26377. front: {
  26378. height: math.unit(1.6, "m"),
  26379. weight: math.unit(50, "kg"),
  26380. name: "Front",
  26381. image: {
  26382. source: "./media/characters/kiki/front.svg",
  26383. extra: 4682 / 3610,
  26384. bottom: 115 / 4777
  26385. }
  26386. },
  26387. },
  26388. [
  26389. {
  26390. name: "Normal",
  26391. height: math.unit(1.6, "meters"),
  26392. default: true
  26393. },
  26394. ]
  26395. ))
  26396. characterMakers.push(() => makeCharacter(
  26397. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26398. {
  26399. front: {
  26400. height: math.unit(50, "m"),
  26401. weight: math.unit(500, "tonnes"),
  26402. name: "Front",
  26403. image: {
  26404. source: "./media/characters/ryoko/front.svg",
  26405. extra: 4632 / 3926,
  26406. bottom: 193 / 4823
  26407. }
  26408. },
  26409. },
  26410. [
  26411. {
  26412. name: "Normal",
  26413. height: math.unit(50, "meters"),
  26414. default: true
  26415. },
  26416. ]
  26417. ))
  26418. characterMakers.push(() => makeCharacter(
  26419. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  26420. {
  26421. front: {
  26422. height: math.unit(30, "m"),
  26423. weight: math.unit(22, "tonnes"),
  26424. name: "Front",
  26425. image: {
  26426. source: "./media/characters/elio/front.svg",
  26427. extra: 4582 / 3720,
  26428. bottom: 236 / 4828
  26429. }
  26430. },
  26431. },
  26432. [
  26433. {
  26434. name: "Normal",
  26435. height: math.unit(30, "meters"),
  26436. default: true
  26437. },
  26438. ]
  26439. ))
  26440. characterMakers.push(() => makeCharacter(
  26441. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  26442. {
  26443. front: {
  26444. height: math.unit(6 + 3 / 12, "feet"),
  26445. weight: math.unit(120, "lb"),
  26446. name: "Front",
  26447. image: {
  26448. source: "./media/characters/azura/front.svg",
  26449. extra: 1149 / 1135,
  26450. bottom: 45 / 1194
  26451. }
  26452. },
  26453. frontClothed: {
  26454. height: math.unit(6 + 3 / 12, "feet"),
  26455. weight: math.unit(120, "lb"),
  26456. name: "Front (Clothed)",
  26457. image: {
  26458. source: "./media/characters/azura/front-clothed.svg",
  26459. extra: 1149 / 1135,
  26460. bottom: 45 / 1194
  26461. }
  26462. },
  26463. },
  26464. [
  26465. {
  26466. name: "Normal",
  26467. height: math.unit(6 + 3 / 12, "feet"),
  26468. default: true
  26469. },
  26470. {
  26471. name: "Macro",
  26472. height: math.unit(20 + 6 / 12, "feet")
  26473. },
  26474. {
  26475. name: "Megamacro",
  26476. height: math.unit(12, "miles")
  26477. },
  26478. {
  26479. name: "Gigamacro",
  26480. height: math.unit(10000, "miles")
  26481. },
  26482. {
  26483. name: "Teramacro",
  26484. height: math.unit(900000, "miles")
  26485. },
  26486. ]
  26487. ))
  26488. characterMakers.push(() => makeCharacter(
  26489. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  26490. {
  26491. front: {
  26492. height: math.unit(12, "feet"),
  26493. weight: math.unit(1, "ton"),
  26494. capacity: math.unit(660000, "gallons"),
  26495. name: "Front",
  26496. image: {
  26497. source: "./media/characters/zeus/front.svg",
  26498. extra: 5005 / 4717,
  26499. bottom: 363 / 5388
  26500. }
  26501. },
  26502. },
  26503. [
  26504. {
  26505. name: "Normal",
  26506. height: math.unit(12, "feet")
  26507. },
  26508. {
  26509. name: "Preferred Size",
  26510. height: math.unit(0.5, "miles"),
  26511. default: true
  26512. },
  26513. {
  26514. name: "Giga Horse",
  26515. height: math.unit(300, "miles")
  26516. },
  26517. {
  26518. name: "Riding Planets",
  26519. height: math.unit(30, "megameters")
  26520. },
  26521. {
  26522. name: "Cosmic Giant",
  26523. height: math.unit(3, "zettameters")
  26524. },
  26525. {
  26526. name: "Breeding God",
  26527. height: math.unit(9.92e22, "yottameters")
  26528. },
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Fang", species: ["monster"], tags: ["feral"] },
  26533. {
  26534. side: {
  26535. height: math.unit(9, "feet"),
  26536. weight: math.unit(1500, "kg"),
  26537. name: "Side",
  26538. image: {
  26539. source: "./media/characters/fang/side.svg",
  26540. extra: 924 / 866,
  26541. bottom: 47.5 / 972.3
  26542. }
  26543. },
  26544. },
  26545. [
  26546. {
  26547. name: "Normal",
  26548. height: math.unit(9, "feet"),
  26549. default: true
  26550. },
  26551. {
  26552. name: "Macro",
  26553. height: math.unit(75 + 6 / 12, "feet")
  26554. },
  26555. {
  26556. name: "Teramacro",
  26557. height: math.unit(50000, "miles")
  26558. },
  26559. ]
  26560. ))
  26561. characterMakers.push(() => makeCharacter(
  26562. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  26563. {
  26564. front: {
  26565. height: math.unit(10, "feet"),
  26566. weight: math.unit(2, "tons"),
  26567. name: "Front",
  26568. image: {
  26569. source: "./media/characters/rekhit/front.svg",
  26570. extra: 2796 / 2590,
  26571. bottom: 225 / 3022
  26572. }
  26573. },
  26574. },
  26575. [
  26576. {
  26577. name: "Normal",
  26578. height: math.unit(10, "feet"),
  26579. default: true
  26580. },
  26581. {
  26582. name: "Macro",
  26583. height: math.unit(500, "feet")
  26584. },
  26585. ]
  26586. ))
  26587. characterMakers.push(() => makeCharacter(
  26588. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  26589. {
  26590. front: {
  26591. height: math.unit(7 + 6.451 / 12, "feet"),
  26592. weight: math.unit(310, "lb"),
  26593. name: "Front",
  26594. image: {
  26595. source: "./media/characters/dahlia-verrick/front.svg",
  26596. extra: 1488 / 1365,
  26597. bottom: 6.2 / 1495
  26598. }
  26599. },
  26600. back: {
  26601. height: math.unit(7 + 6.451 / 12, "feet"),
  26602. weight: math.unit(310, "lb"),
  26603. name: "Back",
  26604. image: {
  26605. source: "./media/characters/dahlia-verrick/back.svg",
  26606. extra: 1472 / 1351,
  26607. bottom: 5.28 / 1477
  26608. }
  26609. },
  26610. frontBusiness: {
  26611. height: math.unit(7 + 6.451 / 12, "feet"),
  26612. weight: math.unit(200, "lb"),
  26613. name: "Front (Business)",
  26614. image: {
  26615. source: "./media/characters/dahlia-verrick/front-business.svg",
  26616. extra: 1478 / 1381,
  26617. bottom: 5.5 / 1484
  26618. }
  26619. },
  26620. frontCasual: {
  26621. height: math.unit(7 + 6.451 / 12, "feet"),
  26622. weight: math.unit(200, "lb"),
  26623. name: "Front (Casual)",
  26624. image: {
  26625. source: "./media/characters/dahlia-verrick/front-casual.svg",
  26626. extra: 1478 / 1381,
  26627. bottom: 5.5 / 1484
  26628. }
  26629. },
  26630. },
  26631. [
  26632. {
  26633. name: "Travel-Sized",
  26634. height: math.unit(7.45, "inches")
  26635. },
  26636. {
  26637. name: "Normal",
  26638. height: math.unit(7 + 6.451 / 12, "feet"),
  26639. default: true
  26640. },
  26641. {
  26642. name: "Hitting the Town",
  26643. height: math.unit(37 + 8 / 12, "feet")
  26644. },
  26645. {
  26646. name: "Stomp in the Suburbs",
  26647. height: math.unit(964 + 9.728 / 12, "feet")
  26648. },
  26649. {
  26650. name: "Sit on the City",
  26651. height: math.unit(61747 + 10.592 / 12, "feet")
  26652. },
  26653. {
  26654. name: "Glomp the Globe",
  26655. height: math.unit(252919327 + 4.832 / 12, "feet")
  26656. },
  26657. ]
  26658. ))
  26659. characterMakers.push(() => makeCharacter(
  26660. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  26661. {
  26662. front: {
  26663. height: math.unit(6 + 4 / 12, "feet"),
  26664. weight: math.unit(320, "lb"),
  26665. name: "Front",
  26666. image: {
  26667. source: "./media/characters/balina-mahigan/front.svg",
  26668. extra: 447 / 428,
  26669. bottom: 18 / 466
  26670. }
  26671. },
  26672. back: {
  26673. height: math.unit(6 + 4 / 12, "feet"),
  26674. weight: math.unit(320, "lb"),
  26675. name: "Back",
  26676. image: {
  26677. source: "./media/characters/balina-mahigan/back.svg",
  26678. extra: 445 / 428,
  26679. bottom: 4.07 / 448
  26680. }
  26681. },
  26682. arm: {
  26683. height: math.unit(1.88, "feet"),
  26684. name: "Arm",
  26685. image: {
  26686. source: "./media/characters/balina-mahigan/arm.svg"
  26687. }
  26688. },
  26689. backPort: {
  26690. height: math.unit(0.685, "feet"),
  26691. name: "Back Port",
  26692. image: {
  26693. source: "./media/characters/balina-mahigan/back-port.svg"
  26694. }
  26695. },
  26696. hoofpaw: {
  26697. height: math.unit(1.41, "feet"),
  26698. name: "Hoofpaw",
  26699. image: {
  26700. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  26701. }
  26702. },
  26703. leftHandBack: {
  26704. height: math.unit(0.938, "feet"),
  26705. name: "Left Hand (Back)",
  26706. image: {
  26707. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  26708. }
  26709. },
  26710. leftHandFront: {
  26711. height: math.unit(0.938, "feet"),
  26712. name: "Left Hand (Front)",
  26713. image: {
  26714. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  26715. }
  26716. },
  26717. rightHandBack: {
  26718. height: math.unit(0.95, "feet"),
  26719. name: "Right Hand (Back)",
  26720. image: {
  26721. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  26722. }
  26723. },
  26724. rightHandFront: {
  26725. height: math.unit(0.95, "feet"),
  26726. name: "Right Hand (Front)",
  26727. image: {
  26728. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  26729. }
  26730. },
  26731. },
  26732. [
  26733. {
  26734. name: "Normal",
  26735. height: math.unit(6 + 4 / 12, "feet"),
  26736. default: true
  26737. },
  26738. ]
  26739. ))
  26740. characterMakers.push(() => makeCharacter(
  26741. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  26742. {
  26743. front: {
  26744. height: math.unit(6, "feet"),
  26745. weight: math.unit(320, "lb"),
  26746. name: "Front",
  26747. image: {
  26748. source: "./media/characters/balina-mejeri/front.svg",
  26749. extra: 517 / 488,
  26750. bottom: 44.2 / 561
  26751. }
  26752. },
  26753. },
  26754. [
  26755. {
  26756. name: "Normal",
  26757. height: math.unit(6 + 4 / 12, "feet")
  26758. },
  26759. {
  26760. name: "Business",
  26761. height: math.unit(155, "feet"),
  26762. default: true
  26763. },
  26764. ]
  26765. ))
  26766. characterMakers.push(() => makeCharacter(
  26767. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  26768. {
  26769. kneeling: {
  26770. height: math.unit(6 + 4 / 12, "feet"),
  26771. weight: math.unit(300 * 20, "lb"),
  26772. name: "Kneeling",
  26773. image: {
  26774. source: "./media/characters/balbarian/kneeling.svg",
  26775. extra: 922 / 862,
  26776. bottom: 42.4 / 965
  26777. }
  26778. },
  26779. },
  26780. [
  26781. {
  26782. name: "Normal",
  26783. height: math.unit(6 + 4 / 12, "feet")
  26784. },
  26785. {
  26786. name: "Treasured",
  26787. height: math.unit(18 + 9 / 12, "feet"),
  26788. default: true
  26789. },
  26790. {
  26791. name: "Macro",
  26792. height: math.unit(900, "feet")
  26793. },
  26794. ]
  26795. ))
  26796. characterMakers.push(() => makeCharacter(
  26797. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  26798. {
  26799. front: {
  26800. height: math.unit(6 + 4 / 12, "feet"),
  26801. weight: math.unit(325, "lb"),
  26802. name: "Front",
  26803. image: {
  26804. source: "./media/characters/balina-amarini/front.svg",
  26805. extra: 415 / 403,
  26806. bottom: 19 / 433.4
  26807. }
  26808. },
  26809. back: {
  26810. height: math.unit(6 + 4 / 12, "feet"),
  26811. weight: math.unit(325, "lb"),
  26812. name: "Back",
  26813. image: {
  26814. source: "./media/characters/balina-amarini/back.svg",
  26815. extra: 415 / 403,
  26816. bottom: 13.5 / 432
  26817. }
  26818. },
  26819. overdrive: {
  26820. height: math.unit(6 + 4 / 12, "feet"),
  26821. weight: math.unit(400, "lb"),
  26822. name: "Overdrive",
  26823. image: {
  26824. source: "./media/characters/balina-amarini/overdrive.svg",
  26825. extra: 269 / 259,
  26826. bottom: 12 / 282
  26827. }
  26828. },
  26829. },
  26830. [
  26831. {
  26832. name: "Boom",
  26833. height: math.unit(9 + 10 / 12, "feet"),
  26834. default: true
  26835. },
  26836. {
  26837. name: "Macro",
  26838. height: math.unit(280, "feet")
  26839. },
  26840. ]
  26841. ))
  26842. characterMakers.push(() => makeCharacter(
  26843. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  26844. {
  26845. goddess: {
  26846. height: math.unit(600, "feet"),
  26847. weight: math.unit(2000000, "tons"),
  26848. name: "Goddess",
  26849. image: {
  26850. source: "./media/characters/lady-kubwa/goddess.svg",
  26851. extra: 1240.5 / 1223,
  26852. bottom: 22 / 1263
  26853. }
  26854. },
  26855. goddesser: {
  26856. height: math.unit(900, "feet"),
  26857. weight: math.unit(20000000, "lb"),
  26858. name: "Goddess-er",
  26859. image: {
  26860. source: "./media/characters/lady-kubwa/goddess-er.svg",
  26861. extra: 899 / 888,
  26862. bottom: 12.6 / 912
  26863. }
  26864. },
  26865. },
  26866. [
  26867. {
  26868. name: "Macro",
  26869. height: math.unit(600, "feet"),
  26870. default: true
  26871. },
  26872. {
  26873. name: "Megamacro",
  26874. height: math.unit(250, "miles")
  26875. },
  26876. ]
  26877. ))
  26878. characterMakers.push(() => makeCharacter(
  26879. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  26880. {
  26881. front: {
  26882. height: math.unit(7 + 7 / 12, "feet"),
  26883. weight: math.unit(250, "lb"),
  26884. name: "Front",
  26885. image: {
  26886. source: "./media/characters/tala-grovehorn/front.svg",
  26887. extra: 2636 / 2525,
  26888. bottom: 147 / 2781
  26889. }
  26890. },
  26891. back: {
  26892. height: math.unit(7 + 7 / 12, "feet"),
  26893. weight: math.unit(250, "lb"),
  26894. name: "Back",
  26895. image: {
  26896. source: "./media/characters/tala-grovehorn/back.svg",
  26897. extra: 2635 / 2539,
  26898. bottom: 100 / 2732.8
  26899. }
  26900. },
  26901. mouth: {
  26902. height: math.unit(1.15, "feet"),
  26903. name: "Mouth",
  26904. image: {
  26905. source: "./media/characters/tala-grovehorn/mouth.svg"
  26906. }
  26907. },
  26908. dick: {
  26909. height: math.unit(2.36, "feet"),
  26910. name: "Dick",
  26911. image: {
  26912. source: "./media/characters/tala-grovehorn/dick.svg"
  26913. }
  26914. },
  26915. slit: {
  26916. height: math.unit(0.61, "feet"),
  26917. name: "Slit",
  26918. image: {
  26919. source: "./media/characters/tala-grovehorn/slit.svg"
  26920. }
  26921. },
  26922. },
  26923. [
  26924. ]
  26925. ))
  26926. characterMakers.push(() => makeCharacter(
  26927. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  26928. {
  26929. front: {
  26930. height: math.unit(7 + 7 / 12, "feet"),
  26931. weight: math.unit(225, "lb"),
  26932. name: "Front",
  26933. image: {
  26934. source: "./media/characters/epona/front.svg",
  26935. extra: 2445 / 2290,
  26936. bottom: 251 / 2696
  26937. }
  26938. },
  26939. back: {
  26940. height: math.unit(7 + 7 / 12, "feet"),
  26941. weight: math.unit(225, "lb"),
  26942. name: "Back",
  26943. image: {
  26944. source: "./media/characters/epona/back.svg",
  26945. extra: 2546 / 2408,
  26946. bottom: 44 / 2589
  26947. }
  26948. },
  26949. genitals: {
  26950. height: math.unit(1.5, "feet"),
  26951. name: "Genitals",
  26952. image: {
  26953. source: "./media/characters/epona/genitals.svg"
  26954. }
  26955. },
  26956. },
  26957. [
  26958. {
  26959. name: "Normal",
  26960. height: math.unit(7 + 7 / 12, "feet"),
  26961. default: true
  26962. },
  26963. ]
  26964. ))
  26965. characterMakers.push(() => makeCharacter(
  26966. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26967. {
  26968. front: {
  26969. height: math.unit(7, "feet"),
  26970. weight: math.unit(518, "lb"),
  26971. name: "Front",
  26972. image: {
  26973. source: "./media/characters/avia-bloodbourn/front.svg",
  26974. extra: 1466 / 1350,
  26975. bottom: 65 / 1527
  26976. }
  26977. },
  26978. },
  26979. [
  26980. ]
  26981. ))
  26982. characterMakers.push(() => makeCharacter(
  26983. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26984. {
  26985. front: {
  26986. height: math.unit(9.35, "feet"),
  26987. weight: math.unit(600, "lb"),
  26988. name: "Front",
  26989. image: {
  26990. source: "./media/characters/amera/front.svg",
  26991. extra: 891 / 818,
  26992. bottom: 30 / 922.7
  26993. }
  26994. },
  26995. back: {
  26996. height: math.unit(9.35, "feet"),
  26997. weight: math.unit(600, "lb"),
  26998. name: "Back",
  26999. image: {
  27000. source: "./media/characters/amera/back.svg",
  27001. extra: 876 / 824,
  27002. bottom: 6.8 / 884
  27003. }
  27004. },
  27005. dick: {
  27006. height: math.unit(2.14, "feet"),
  27007. name: "Dick",
  27008. image: {
  27009. source: "./media/characters/amera/dick.svg"
  27010. }
  27011. },
  27012. },
  27013. [
  27014. {
  27015. name: "Normal",
  27016. height: math.unit(9.35, "feet"),
  27017. default: true
  27018. },
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27023. {
  27024. kneeling: {
  27025. height: math.unit(3 + 4 / 12, "feet"),
  27026. weight: math.unit(90, "lb"),
  27027. name: "Kneeling",
  27028. image: {
  27029. source: "./media/characters/rosewen/kneeling.svg",
  27030. extra: 1835 / 1571,
  27031. bottom: 27.7 / 1862
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Normal",
  27038. height: math.unit(3 + 4 / 12, "feet"),
  27039. default: true
  27040. },
  27041. ]
  27042. ))
  27043. characterMakers.push(() => makeCharacter(
  27044. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27045. {
  27046. front: {
  27047. height: math.unit(5 + 10 / 12, "feet"),
  27048. weight: math.unit(200, "lb"),
  27049. name: "Front",
  27050. image: {
  27051. source: "./media/characters/sabah/front.svg",
  27052. extra: 849 / 763,
  27053. bottom: 33.9 / 881
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Normal",
  27060. height: math.unit(5 + 10 / 12, "feet"),
  27061. default: true
  27062. },
  27063. ]
  27064. ))
  27065. characterMakers.push(() => makeCharacter(
  27066. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27067. {
  27068. front: {
  27069. height: math.unit(3 + 5 / 12, "feet"),
  27070. weight: math.unit(40, "kg"),
  27071. name: "Front",
  27072. image: {
  27073. source: "./media/characters/purple-flame/front.svg",
  27074. extra: 1577 / 1412,
  27075. bottom: 97 / 1694
  27076. }
  27077. },
  27078. frontDressed: {
  27079. height: math.unit(3 + 5 / 12, "feet"),
  27080. weight: math.unit(40, "kg"),
  27081. name: "Front (Dressed)",
  27082. image: {
  27083. source: "./media/characters/purple-flame/front-dressed.svg",
  27084. extra: 1577 / 1412,
  27085. bottom: 97 / 1694
  27086. }
  27087. },
  27088. headphones: {
  27089. height: math.unit(0.85, "feet"),
  27090. name: "Headphones",
  27091. image: {
  27092. source: "./media/characters/purple-flame/headphones.svg"
  27093. }
  27094. },
  27095. },
  27096. [
  27097. {
  27098. name: "Really Small",
  27099. height: math.unit(5, "cm")
  27100. },
  27101. {
  27102. name: "Micro",
  27103. height: math.unit(1 + 5 / 12, "feet")
  27104. },
  27105. {
  27106. name: "Normal",
  27107. height: math.unit(3 + 5 / 12, "feet"),
  27108. default: true
  27109. },
  27110. {
  27111. name: "Minimacro",
  27112. height: math.unit(125, "feet")
  27113. },
  27114. {
  27115. name: "Macro",
  27116. height: math.unit(0.5, "miles")
  27117. },
  27118. {
  27119. name: "Megamacro",
  27120. height: math.unit(50, "miles")
  27121. },
  27122. {
  27123. name: "Gigantic",
  27124. height: math.unit(750, "miles")
  27125. },
  27126. {
  27127. name: "Planetary",
  27128. height: math.unit(15000, "miles")
  27129. },
  27130. ]
  27131. ))
  27132. characterMakers.push(() => makeCharacter(
  27133. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27134. {
  27135. front: {
  27136. height: math.unit(14, "feet"),
  27137. weight: math.unit(959, "lb"),
  27138. name: "Front",
  27139. image: {
  27140. source: "./media/characters/arsenal/front.svg",
  27141. extra: 2357 / 2157,
  27142. bottom: 93 / 2458
  27143. }
  27144. },
  27145. },
  27146. [
  27147. {
  27148. name: "Normal",
  27149. height: math.unit(14, "feet"),
  27150. default: true
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27156. {
  27157. front: {
  27158. height: math.unit(6, "feet"),
  27159. weight: math.unit(150, "lb"),
  27160. name: "Front",
  27161. image: {
  27162. source: "./media/characters/adira/front.svg",
  27163. extra: 1078 / 1029,
  27164. bottom: 87 / 1166
  27165. }
  27166. },
  27167. },
  27168. [
  27169. {
  27170. name: "Micro",
  27171. height: math.unit(4, "inches"),
  27172. default: true
  27173. },
  27174. {
  27175. name: "Macro",
  27176. height: math.unit(50, "feet")
  27177. },
  27178. ]
  27179. ))
  27180. characterMakers.push(() => makeCharacter(
  27181. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27182. {
  27183. front: {
  27184. height: math.unit(16, "feet"),
  27185. weight: math.unit(1000, "lb"),
  27186. name: "Front",
  27187. image: {
  27188. source: "./media/characters/grim/front.svg",
  27189. extra: 622 / 614,
  27190. bottom: 18.1 / 642
  27191. }
  27192. },
  27193. back: {
  27194. height: math.unit(16, "feet"),
  27195. weight: math.unit(1000, "lb"),
  27196. name: "Back",
  27197. image: {
  27198. source: "./media/characters/grim/back.svg",
  27199. extra: 610.6 / 602,
  27200. bottom: 40.8 / 652
  27201. }
  27202. },
  27203. hunched: {
  27204. height: math.unit(9.75, "feet"),
  27205. weight: math.unit(1000, "lb"),
  27206. name: "Hunched",
  27207. image: {
  27208. source: "./media/characters/grim/hunched.svg",
  27209. extra: 304 / 297,
  27210. bottom: 35.4 / 394
  27211. }
  27212. },
  27213. },
  27214. [
  27215. {
  27216. name: "Normal",
  27217. height: math.unit(16, "feet"),
  27218. default: true
  27219. },
  27220. ]
  27221. ))
  27222. characterMakers.push(() => makeCharacter(
  27223. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27224. {
  27225. front: {
  27226. height: math.unit(2.3, "meters"),
  27227. weight: math.unit(300, "lb"),
  27228. name: "Front",
  27229. image: {
  27230. source: "./media/characters/sinja/front-sfw.svg",
  27231. extra: 1393 / 1294,
  27232. bottom: 70 / 1463
  27233. }
  27234. },
  27235. frontNsfw: {
  27236. height: math.unit(2.3, "meters"),
  27237. weight: math.unit(300, "lb"),
  27238. name: "Front (NSFW)",
  27239. image: {
  27240. source: "./media/characters/sinja/front-nsfw.svg",
  27241. extra: 1393 / 1294,
  27242. bottom: 70 / 1463
  27243. }
  27244. },
  27245. back: {
  27246. height: math.unit(2.3, "meters"),
  27247. weight: math.unit(300, "lb"),
  27248. name: "Back",
  27249. image: {
  27250. source: "./media/characters/sinja/back.svg",
  27251. extra: 1393 / 1294,
  27252. bottom: 70 / 1463
  27253. }
  27254. },
  27255. head: {
  27256. height: math.unit(1.771, "feet"),
  27257. name: "Head",
  27258. image: {
  27259. source: "./media/characters/sinja/head.svg"
  27260. }
  27261. },
  27262. slit: {
  27263. height: math.unit(0.8, "feet"),
  27264. name: "Slit",
  27265. image: {
  27266. source: "./media/characters/sinja/slit.svg"
  27267. }
  27268. },
  27269. },
  27270. [
  27271. {
  27272. name: "Normal",
  27273. height: math.unit(2.3, "meters")
  27274. },
  27275. {
  27276. name: "Macro",
  27277. height: math.unit(91, "meters"),
  27278. default: true
  27279. },
  27280. {
  27281. name: "Megamacro",
  27282. height: math.unit(91440, "meters")
  27283. },
  27284. {
  27285. name: "Gigamacro",
  27286. height: math.unit(60960000, "meters")
  27287. },
  27288. {
  27289. name: "Teramacro",
  27290. height: math.unit(9144000000, "meters")
  27291. },
  27292. ]
  27293. ))
  27294. characterMakers.push(() => makeCharacter(
  27295. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27296. {
  27297. front: {
  27298. height: math.unit(1.7, "meters"),
  27299. weight: math.unit(130, "lb"),
  27300. name: "Front",
  27301. image: {
  27302. source: "./media/characters/kyu/front.svg",
  27303. extra: 415 / 395,
  27304. bottom: 5 / 420
  27305. }
  27306. },
  27307. head: {
  27308. height: math.unit(1.75, "feet"),
  27309. name: "Head",
  27310. image: {
  27311. source: "./media/characters/kyu/head.svg"
  27312. }
  27313. },
  27314. foot: {
  27315. height: math.unit(0.81, "feet"),
  27316. name: "Foot",
  27317. image: {
  27318. source: "./media/characters/kyu/foot.svg"
  27319. }
  27320. },
  27321. },
  27322. [
  27323. {
  27324. name: "Normal",
  27325. height: math.unit(1.7, "meters")
  27326. },
  27327. {
  27328. name: "Macro",
  27329. height: math.unit(131, "feet"),
  27330. default: true
  27331. },
  27332. {
  27333. name: "Megamacro",
  27334. height: math.unit(91440, "meters")
  27335. },
  27336. {
  27337. name: "Gigamacro",
  27338. height: math.unit(60960000, "meters")
  27339. },
  27340. {
  27341. name: "Teramacro",
  27342. height: math.unit(9144000000, "meters")
  27343. },
  27344. ]
  27345. ))
  27346. characterMakers.push(() => makeCharacter(
  27347. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27348. {
  27349. front: {
  27350. height: math.unit(7 + 1 / 12, "feet"),
  27351. weight: math.unit(250, "lb"),
  27352. name: "Front",
  27353. image: {
  27354. source: "./media/characters/joey/front.svg",
  27355. extra: 1791 / 1537,
  27356. bottom: 28 / 1816
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Micro",
  27363. height: math.unit(3, "inches")
  27364. },
  27365. {
  27366. name: "Normal",
  27367. height: math.unit(7 + 1 / 12, "feet"),
  27368. default: true
  27369. },
  27370. ]
  27371. ))
  27372. characterMakers.push(() => makeCharacter(
  27373. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27374. {
  27375. front: {
  27376. height: math.unit(165, "cm"),
  27377. weight: math.unit(140, "lb"),
  27378. name: "Front",
  27379. image: {
  27380. source: "./media/characters/sam-evans/front.svg",
  27381. extra: 3417 / 3230,
  27382. bottom: 41.3 / 3417
  27383. }
  27384. },
  27385. frontSixTails: {
  27386. height: math.unit(165, "cm"),
  27387. weight: math.unit(140, "lb"),
  27388. name: "Front-six-tails",
  27389. image: {
  27390. source: "./media/characters/sam-evans/front-six-tails.svg",
  27391. extra: 3417 / 3230,
  27392. bottom: 41.3 / 3417
  27393. }
  27394. },
  27395. back: {
  27396. height: math.unit(165, "cm"),
  27397. weight: math.unit(140, "lb"),
  27398. name: "Back",
  27399. image: {
  27400. source: "./media/characters/sam-evans/back.svg",
  27401. extra: 3227 / 3032,
  27402. bottom: 6.8 / 3234
  27403. }
  27404. },
  27405. face: {
  27406. height: math.unit(0.68, "feet"),
  27407. name: "Face",
  27408. image: {
  27409. source: "./media/characters/sam-evans/face.svg"
  27410. }
  27411. },
  27412. },
  27413. [
  27414. {
  27415. name: "Normal",
  27416. height: math.unit(165, "cm"),
  27417. default: true
  27418. },
  27419. {
  27420. name: "Macro",
  27421. height: math.unit(100, "meters")
  27422. },
  27423. {
  27424. name: "Macro+",
  27425. height: math.unit(800, "meters")
  27426. },
  27427. {
  27428. name: "Macro++",
  27429. height: math.unit(3, "km")
  27430. },
  27431. {
  27432. name: "Macro+++",
  27433. height: math.unit(30, "km")
  27434. },
  27435. ]
  27436. ))
  27437. characterMakers.push(() => makeCharacter(
  27438. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  27439. {
  27440. front: {
  27441. height: math.unit(10, "feet"),
  27442. weight: math.unit(750, "lb"),
  27443. name: "Front",
  27444. image: {
  27445. source: "./media/characters/juliet-a/front.svg",
  27446. extra: 1766 / 1720,
  27447. bottom: 43 / 1809
  27448. }
  27449. },
  27450. back: {
  27451. height: math.unit(10, "feet"),
  27452. weight: math.unit(750, "lb"),
  27453. name: "Back",
  27454. image: {
  27455. source: "./media/characters/juliet-a/back.svg",
  27456. extra: 1781 / 1734,
  27457. bottom: 35 / 1810,
  27458. }
  27459. },
  27460. },
  27461. [
  27462. {
  27463. name: "Normal",
  27464. height: math.unit(10, "feet"),
  27465. default: true
  27466. },
  27467. {
  27468. name: "Dragon Form",
  27469. height: math.unit(250, "feet")
  27470. },
  27471. {
  27472. name: "Macro",
  27473. height: math.unit(1000, "feet")
  27474. },
  27475. {
  27476. name: "Megamacro",
  27477. height: math.unit(10000, "feet")
  27478. }
  27479. ]
  27480. ))
  27481. characterMakers.push(() => makeCharacter(
  27482. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  27483. {
  27484. regular: {
  27485. height: math.unit(7 + 3 / 12, "feet"),
  27486. weight: math.unit(260, "lb"),
  27487. name: "Regular",
  27488. image: {
  27489. source: "./media/characters/wild/regular.svg",
  27490. extra: 97.45 / 92,
  27491. bottom: 6.8 / 104.3
  27492. }
  27493. },
  27494. biggums: {
  27495. height: math.unit(8 + 6 / 12, "feet"),
  27496. weight: math.unit(425, "lb"),
  27497. name: "Biggums",
  27498. image: {
  27499. source: "./media/characters/wild/biggums.svg",
  27500. extra: 97.45 / 92,
  27501. bottom: 7.5 / 132.34
  27502. }
  27503. },
  27504. mawRegular: {
  27505. height: math.unit(1.24, "feet"),
  27506. name: "Maw (Regular)",
  27507. image: {
  27508. source: "./media/characters/wild/maw.svg"
  27509. }
  27510. },
  27511. mawBiggums: {
  27512. height: math.unit(1.47, "feet"),
  27513. name: "Maw (Biggums)",
  27514. image: {
  27515. source: "./media/characters/wild/maw.svg"
  27516. }
  27517. },
  27518. },
  27519. [
  27520. {
  27521. name: "Normal",
  27522. height: math.unit(7 + 3 / 12, "feet"),
  27523. default: true
  27524. },
  27525. ]
  27526. ))
  27527. characterMakers.push(() => makeCharacter(
  27528. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  27529. {
  27530. front: {
  27531. height: math.unit(2.5, "meters"),
  27532. weight: math.unit(200, "kg"),
  27533. name: "Front",
  27534. image: {
  27535. source: "./media/characters/vidar/front.svg",
  27536. extra: 2994 / 2795,
  27537. bottom: 56 / 3061
  27538. }
  27539. },
  27540. back: {
  27541. height: math.unit(2.5, "meters"),
  27542. weight: math.unit(200, "kg"),
  27543. name: "Back",
  27544. image: {
  27545. source: "./media/characters/vidar/back.svg",
  27546. extra: 3131 / 2928,
  27547. bottom: 13.5 / 3141.5
  27548. }
  27549. },
  27550. feral: {
  27551. height: math.unit(2.5, "meters"),
  27552. weight: math.unit(2000, "kg"),
  27553. name: "Feral",
  27554. image: {
  27555. source: "./media/characters/vidar/feral.svg",
  27556. extra: 2790 / 1765,
  27557. bottom: 6 / 2796
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(2.5, "meters"),
  27565. default: true
  27566. },
  27567. {
  27568. name: "Macro",
  27569. height: math.unit(100, "meters")
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  27575. {
  27576. front: {
  27577. height: math.unit(5 + 9 / 12, "feet"),
  27578. weight: math.unit(120, "lb"),
  27579. name: "Front",
  27580. image: {
  27581. source: "./media/characters/ash/front.svg",
  27582. extra: 2189 / 1961,
  27583. bottom: 5.2 / 2194
  27584. }
  27585. },
  27586. },
  27587. [
  27588. {
  27589. name: "Normal",
  27590. height: math.unit(5 + 9 / 12, "feet"),
  27591. default: true
  27592. },
  27593. ]
  27594. ))
  27595. characterMakers.push(() => makeCharacter(
  27596. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  27597. {
  27598. front: {
  27599. height: math.unit(9, "feet"),
  27600. weight: math.unit(10000, "lb"),
  27601. name: "Front",
  27602. image: {
  27603. source: "./media/characters/gygabite/front.svg",
  27604. bottom: 31.7 / 537.8,
  27605. extra: 505 / 370
  27606. }
  27607. },
  27608. },
  27609. [
  27610. {
  27611. name: "Normal",
  27612. height: math.unit(9, "feet"),
  27613. default: true
  27614. },
  27615. ]
  27616. ))
  27617. characterMakers.push(() => makeCharacter(
  27618. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  27619. {
  27620. front: {
  27621. height: math.unit(12, "feet"),
  27622. weight: math.unit(35000, "lb"),
  27623. name: "Front",
  27624. image: {
  27625. source: "./media/characters/p0tat0/front.svg",
  27626. extra: 1065 / 921,
  27627. bottom: 55.7 / 1121.25
  27628. }
  27629. },
  27630. },
  27631. [
  27632. {
  27633. name: "Normal",
  27634. height: math.unit(12, "feet"),
  27635. default: true
  27636. },
  27637. ]
  27638. ))
  27639. characterMakers.push(() => makeCharacter(
  27640. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  27641. {
  27642. side: {
  27643. height: math.unit(6.5, "feet"),
  27644. weight: math.unit(800, "lb"),
  27645. name: "Side",
  27646. image: {
  27647. source: "./media/characters/dusk/side.svg",
  27648. extra: 615 / 373,
  27649. bottom: 53 / 664
  27650. }
  27651. },
  27652. sitting: {
  27653. height: math.unit(7, "feet"),
  27654. weight: math.unit(800, "lb"),
  27655. name: "Sitting",
  27656. image: {
  27657. source: "./media/characters/dusk/sitting.svg",
  27658. extra: 753 / 425,
  27659. bottom: 33 / 774
  27660. }
  27661. },
  27662. head: {
  27663. height: math.unit(6.1, "feet"),
  27664. name: "Head",
  27665. image: {
  27666. source: "./media/characters/dusk/head.svg"
  27667. }
  27668. },
  27669. },
  27670. [
  27671. {
  27672. name: "Normal",
  27673. height: math.unit(7, "feet"),
  27674. default: true
  27675. },
  27676. ]
  27677. ))
  27678. characterMakers.push(() => makeCharacter(
  27679. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  27680. {
  27681. front: {
  27682. height: math.unit(15, "feet"),
  27683. weight: math.unit(7000, "lb"),
  27684. name: "Front",
  27685. image: {
  27686. source: "./media/characters/jay-direwolf/front.svg",
  27687. extra: 1810 / 1732,
  27688. bottom: 66 / 1892
  27689. }
  27690. },
  27691. },
  27692. [
  27693. {
  27694. name: "Normal",
  27695. height: math.unit(15, "feet"),
  27696. default: true
  27697. },
  27698. ]
  27699. ))
  27700. characterMakers.push(() => makeCharacter(
  27701. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  27702. {
  27703. front: {
  27704. height: math.unit(4 + 9 / 12, "feet"),
  27705. weight: math.unit(130, "lb"),
  27706. name: "Front",
  27707. image: {
  27708. source: "./media/characters/anchovie/front.svg",
  27709. extra: 382 / 350,
  27710. bottom: 25 / 409
  27711. }
  27712. },
  27713. back: {
  27714. height: math.unit(4 + 9 / 12, "feet"),
  27715. weight: math.unit(130, "lb"),
  27716. name: "Back",
  27717. image: {
  27718. source: "./media/characters/anchovie/back.svg",
  27719. extra: 385 / 352,
  27720. bottom: 16.6 / 402
  27721. }
  27722. },
  27723. frontDressed: {
  27724. height: math.unit(4 + 9 / 12, "feet"),
  27725. weight: math.unit(130, "lb"),
  27726. name: "Front (Dressed)",
  27727. image: {
  27728. source: "./media/characters/anchovie/front-dressed.svg",
  27729. extra: 382 / 350,
  27730. bottom: 25 / 409
  27731. }
  27732. },
  27733. backDressed: {
  27734. height: math.unit(4 + 9 / 12, "feet"),
  27735. weight: math.unit(130, "lb"),
  27736. name: "Back (Dressed)",
  27737. image: {
  27738. source: "./media/characters/anchovie/back-dressed.svg",
  27739. extra: 385 / 352,
  27740. bottom: 16.6 / 402
  27741. }
  27742. },
  27743. },
  27744. [
  27745. {
  27746. name: "Micro",
  27747. height: math.unit(6.4, "inches")
  27748. },
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(4 + 9 / 12, "feet"),
  27752. default: true
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  27758. {
  27759. front: {
  27760. height: math.unit(2, "meters"),
  27761. weight: math.unit(180, "lb"),
  27762. name: "Front",
  27763. image: {
  27764. source: "./media/characters/acidrenamon/front.svg",
  27765. extra: 987 / 890,
  27766. bottom: 22.8 / 1009
  27767. }
  27768. },
  27769. back: {
  27770. height: math.unit(2, "meters"),
  27771. weight: math.unit(180, "lb"),
  27772. name: "Back",
  27773. image: {
  27774. source: "./media/characters/acidrenamon/back.svg",
  27775. extra: 983 / 891,
  27776. bottom: 8.4 / 992
  27777. }
  27778. },
  27779. head: {
  27780. height: math.unit(1.92, "feet"),
  27781. name: "Head",
  27782. image: {
  27783. source: "./media/characters/acidrenamon/head.svg"
  27784. }
  27785. },
  27786. rump: {
  27787. height: math.unit(1.72, "feet"),
  27788. name: "Rump",
  27789. image: {
  27790. source: "./media/characters/acidrenamon/rump.svg"
  27791. }
  27792. },
  27793. tail: {
  27794. height: math.unit(4.2, "feet"),
  27795. name: "Tail",
  27796. image: {
  27797. source: "./media/characters/acidrenamon/tail.svg"
  27798. }
  27799. },
  27800. },
  27801. [
  27802. {
  27803. name: "Normal",
  27804. height: math.unit(2, "meters"),
  27805. default: true
  27806. },
  27807. {
  27808. name: "Minimacro",
  27809. height: math.unit(7, "meters")
  27810. },
  27811. {
  27812. name: "Macro",
  27813. height: math.unit(200, "meters")
  27814. },
  27815. {
  27816. name: "Gigamacro",
  27817. height: math.unit(0.2, "earths")
  27818. },
  27819. ]
  27820. ))
  27821. characterMakers.push(() => makeCharacter(
  27822. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  27823. {
  27824. front: {
  27825. height: math.unit(152, "feet"),
  27826. name: "Front",
  27827. image: {
  27828. source: "./media/characters/kenzie-lee/front.svg",
  27829. extra: 1869/1774,
  27830. bottom: 128/1997
  27831. }
  27832. },
  27833. side: {
  27834. height: math.unit(86, "feet"),
  27835. name: "Side",
  27836. image: {
  27837. source: "./media/characters/kenzie-lee/side.svg",
  27838. extra: 930/815,
  27839. bottom: 177/1107
  27840. }
  27841. },
  27842. paw: {
  27843. height: math.unit(15, "feet"),
  27844. name: "Paw",
  27845. image: {
  27846. source: "./media/characters/kenzie-lee/paw.svg"
  27847. }
  27848. },
  27849. },
  27850. [
  27851. {
  27852. name: "Micro",
  27853. height: math.unit(1.5, "inches")
  27854. },
  27855. {
  27856. name: "Normal",
  27857. height: math.unit(152, "feet"),
  27858. default: true
  27859. },
  27860. {
  27861. name: "Megamacro",
  27862. height: math.unit(7, "miles")
  27863. },
  27864. {
  27865. name: "Gigamacro",
  27866. height: math.unit(8000, "miles")
  27867. },
  27868. ]
  27869. ))
  27870. characterMakers.push(() => makeCharacter(
  27871. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  27872. {
  27873. side: {
  27874. height: math.unit(6, "feet"),
  27875. weight: math.unit(150, "lb"),
  27876. name: "Side",
  27877. image: {
  27878. source: "./media/characters/withers/side.svg",
  27879. extra: 1830 / 1728,
  27880. bottom: 96 / 1927
  27881. }
  27882. },
  27883. front: {
  27884. height: math.unit(6, "feet"),
  27885. weight: math.unit(150, "lb"),
  27886. name: "Front",
  27887. image: {
  27888. source: "./media/characters/withers/front.svg",
  27889. extra: 1514 / 1438,
  27890. bottom: 118 / 1632
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Macro",
  27897. height: math.unit(168, "feet"),
  27898. default: true
  27899. },
  27900. {
  27901. name: "Megamacro",
  27902. height: math.unit(15, "miles")
  27903. }
  27904. ]
  27905. ))
  27906. characterMakers.push(() => makeCharacter(
  27907. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  27908. {
  27909. front: {
  27910. height: math.unit(6 + 7 / 12, "feet"),
  27911. weight: math.unit(250, "lb"),
  27912. name: "Front",
  27913. image: {
  27914. source: "./media/characters/nemoskii/front.svg",
  27915. extra: 2270 / 1734,
  27916. bottom: 86 / 2354
  27917. }
  27918. },
  27919. back: {
  27920. height: math.unit(6 + 7 / 12, "feet"),
  27921. weight: math.unit(250, "lb"),
  27922. name: "Back",
  27923. image: {
  27924. source: "./media/characters/nemoskii/back.svg",
  27925. extra: 1845 / 1788,
  27926. bottom: 10.5 / 1852
  27927. }
  27928. },
  27929. head: {
  27930. height: math.unit(1.31, "feet"),
  27931. name: "Head",
  27932. image: {
  27933. source: "./media/characters/nemoskii/head.svg"
  27934. }
  27935. },
  27936. },
  27937. [
  27938. {
  27939. name: "Micro",
  27940. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27941. },
  27942. {
  27943. name: "Normal",
  27944. height: math.unit(6 + 7 / 12, "feet"),
  27945. default: true
  27946. },
  27947. {
  27948. name: "Macro",
  27949. height: math.unit((6 + 7 / 12) * 150, "feet")
  27950. },
  27951. {
  27952. name: "Macro+",
  27953. height: math.unit((6 + 7 / 12) * 500, "feet")
  27954. },
  27955. {
  27956. name: "Megamacro",
  27957. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27958. },
  27959. ]
  27960. ))
  27961. characterMakers.push(() => makeCharacter(
  27962. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27963. {
  27964. front: {
  27965. height: math.unit(1, "mile"),
  27966. weight: math.unit(265261.9, "lb"),
  27967. name: "Front",
  27968. image: {
  27969. source: "./media/characters/shui/front.svg",
  27970. extra: 1633 / 1564,
  27971. bottom: 91.5 / 1726
  27972. }
  27973. },
  27974. },
  27975. [
  27976. {
  27977. name: "Macro",
  27978. height: math.unit(1, "mile"),
  27979. default: true
  27980. },
  27981. ]
  27982. ))
  27983. characterMakers.push(() => makeCharacter(
  27984. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27985. {
  27986. front: {
  27987. height: math.unit(12 + 6 / 12, "feet"),
  27988. weight: math.unit(1342, "lb"),
  27989. name: "Front",
  27990. image: {
  27991. source: "./media/characters/arokh-takakura/front.svg",
  27992. extra: 1089 / 1043,
  27993. bottom: 77.4 / 1176.7
  27994. }
  27995. },
  27996. back: {
  27997. height: math.unit(12 + 6 / 12, "feet"),
  27998. weight: math.unit(1342, "lb"),
  27999. name: "Back",
  28000. image: {
  28001. source: "./media/characters/arokh-takakura/back.svg",
  28002. extra: 1046 / 1019,
  28003. bottom: 102 / 1150
  28004. }
  28005. },
  28006. },
  28007. [
  28008. {
  28009. name: "Big",
  28010. height: math.unit(12 + 6 / 12, "feet"),
  28011. default: true
  28012. },
  28013. ]
  28014. ))
  28015. characterMakers.push(() => makeCharacter(
  28016. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28017. {
  28018. front: {
  28019. height: math.unit(5 + 6 / 12, "feet"),
  28020. weight: math.unit(150, "lb"),
  28021. name: "Front",
  28022. image: {
  28023. source: "./media/characters/theo/front.svg",
  28024. extra: 1184 / 1131,
  28025. bottom: 7.4 / 1191
  28026. }
  28027. },
  28028. },
  28029. [
  28030. {
  28031. name: "Micro",
  28032. height: math.unit(5, "inches")
  28033. },
  28034. {
  28035. name: "Normal",
  28036. height: math.unit(5 + 6 / 12, "feet"),
  28037. default: true
  28038. },
  28039. ]
  28040. ))
  28041. characterMakers.push(() => makeCharacter(
  28042. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28043. {
  28044. front: {
  28045. height: math.unit(5 + 9 / 12, "feet"),
  28046. weight: math.unit(130, "lb"),
  28047. name: "Front",
  28048. image: {
  28049. source: "./media/characters/cecelia-swift/front.svg",
  28050. extra: 502 / 484,
  28051. bottom: 23 / 523
  28052. }
  28053. },
  28054. back: {
  28055. height: math.unit(5 + 9 / 12, "feet"),
  28056. weight: math.unit(130, "lb"),
  28057. name: "Back",
  28058. image: {
  28059. source: "./media/characters/cecelia-swift/back.svg",
  28060. extra: 499 / 485,
  28061. bottom: 12 / 511
  28062. }
  28063. },
  28064. head: {
  28065. height: math.unit(0.90, "feet"),
  28066. name: "Head",
  28067. image: {
  28068. source: "./media/characters/cecelia-swift/head.svg"
  28069. }
  28070. },
  28071. rump: {
  28072. height: math.unit(1.75, "feet"),
  28073. name: "Rump",
  28074. image: {
  28075. source: "./media/characters/cecelia-swift/rump.svg"
  28076. }
  28077. },
  28078. },
  28079. [
  28080. {
  28081. name: "Normal",
  28082. height: math.unit(5 + 9 / 12, "feet"),
  28083. default: true
  28084. },
  28085. {
  28086. name: "Big",
  28087. height: math.unit(50, "feet")
  28088. },
  28089. {
  28090. name: "Macro",
  28091. height: math.unit(100, "feet")
  28092. },
  28093. {
  28094. name: "Macro+",
  28095. height: math.unit(500, "feet")
  28096. },
  28097. {
  28098. name: "Macro++",
  28099. height: math.unit(1000, "feet")
  28100. },
  28101. ]
  28102. ))
  28103. characterMakers.push(() => makeCharacter(
  28104. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28105. {
  28106. front: {
  28107. height: math.unit(6, "feet"),
  28108. weight: math.unit(150, "lb"),
  28109. name: "Front",
  28110. image: {
  28111. source: "./media/characters/kaunan/front.svg",
  28112. extra: 2890 / 2523,
  28113. bottom: 49 / 2939
  28114. }
  28115. },
  28116. },
  28117. [
  28118. {
  28119. name: "Macro",
  28120. height: math.unit(150, "feet"),
  28121. default: true
  28122. },
  28123. ]
  28124. ))
  28125. characterMakers.push(() => makeCharacter(
  28126. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28127. {
  28128. front: {
  28129. height: math.unit(175, "cm"),
  28130. weight: math.unit(60, "kg"),
  28131. name: "Front",
  28132. image: {
  28133. source: "./media/characters/fei/front.svg",
  28134. extra: 1873/1723,
  28135. bottom: 53/1926
  28136. }
  28137. },
  28138. },
  28139. [
  28140. {
  28141. name: "Mortal",
  28142. height: math.unit(175, "cm")
  28143. },
  28144. {
  28145. name: "Normal",
  28146. height: math.unit(3500, "m"),
  28147. default: true
  28148. },
  28149. {
  28150. name: "Stroll",
  28151. height: math.unit(17.5, "km")
  28152. },
  28153. {
  28154. name: "Showoff",
  28155. height: math.unit(175, "km")
  28156. },
  28157. ]
  28158. ))
  28159. characterMakers.push(() => makeCharacter(
  28160. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28161. {
  28162. front: {
  28163. height: math.unit(7, "feet"),
  28164. weight: math.unit(1000, "kg"),
  28165. name: "Front",
  28166. image: {
  28167. source: "./media/characters/edrax/front.svg",
  28168. extra: 2838 / 2550,
  28169. bottom: 130 / 2968
  28170. }
  28171. },
  28172. },
  28173. [
  28174. {
  28175. name: "Small",
  28176. height: math.unit(7, "feet")
  28177. },
  28178. {
  28179. name: "Normal",
  28180. height: math.unit(1500, "meters")
  28181. },
  28182. {
  28183. name: "Mega",
  28184. height: math.unit(12000000, "km"),
  28185. default: true
  28186. },
  28187. {
  28188. name: "Megamacro",
  28189. height: math.unit(10600000, "lightyears")
  28190. },
  28191. {
  28192. name: "Hypermacro",
  28193. height: math.unit(256, "yottameters")
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28199. {
  28200. front: {
  28201. height: math.unit(10, "feet"),
  28202. weight: math.unit(750, "lb"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/clove/front.svg",
  28206. extra: 1918/1751,
  28207. bottom: 52/1970
  28208. }
  28209. },
  28210. back: {
  28211. height: math.unit(10, "feet"),
  28212. weight: math.unit(750, "lb"),
  28213. name: "Back",
  28214. image: {
  28215. source: "./media/characters/clove/back.svg",
  28216. extra: 1912/1747,
  28217. bottom: 50/1962
  28218. }
  28219. },
  28220. },
  28221. [
  28222. {
  28223. name: "Normal",
  28224. height: math.unit(10, "feet"),
  28225. default: true
  28226. },
  28227. ]
  28228. ))
  28229. characterMakers.push(() => makeCharacter(
  28230. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28231. {
  28232. front: {
  28233. height: math.unit(4, "feet"),
  28234. weight: math.unit(50, "lb"),
  28235. name: "Front",
  28236. image: {
  28237. source: "./media/characters/alex-rabbit/front.svg",
  28238. extra: 507 / 458,
  28239. bottom: 18.5 / 527
  28240. }
  28241. },
  28242. back: {
  28243. height: math.unit(4, "feet"),
  28244. weight: math.unit(50, "lb"),
  28245. name: "Back",
  28246. image: {
  28247. source: "./media/characters/alex-rabbit/back.svg",
  28248. extra: 502 / 460,
  28249. bottom: 18.9 / 521
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Normal",
  28256. height: math.unit(4, "feet"),
  28257. default: true
  28258. },
  28259. ]
  28260. ))
  28261. characterMakers.push(() => makeCharacter(
  28262. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28263. {
  28264. front: {
  28265. height: math.unit(1 + 3 / 12, "feet"),
  28266. weight: math.unit(80, "lb"),
  28267. name: "Front",
  28268. image: {
  28269. source: "./media/characters/zander-rose/front.svg",
  28270. extra: 916 / 797,
  28271. bottom: 17 / 933
  28272. }
  28273. },
  28274. back: {
  28275. height: math.unit(1 + 3 / 12, "feet"),
  28276. weight: math.unit(80, "lb"),
  28277. name: "Back",
  28278. image: {
  28279. source: "./media/characters/zander-rose/back.svg",
  28280. extra: 903 / 779,
  28281. bottom: 31 / 934
  28282. }
  28283. },
  28284. },
  28285. [
  28286. {
  28287. name: "Normal",
  28288. height: math.unit(1 + 3 / 12, "feet"),
  28289. default: true
  28290. },
  28291. ]
  28292. ))
  28293. characterMakers.push(() => makeCharacter(
  28294. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28295. {
  28296. anthro: {
  28297. height: math.unit(6, "feet"),
  28298. weight: math.unit(150, "lb"),
  28299. name: "Anthro",
  28300. image: {
  28301. source: "./media/characters/razz/anthro.svg",
  28302. extra: 1437 / 1343,
  28303. bottom: 48 / 1485
  28304. }
  28305. },
  28306. feral: {
  28307. height: math.unit(6, "feet"),
  28308. weight: math.unit(150, "lb"),
  28309. name: "Feral",
  28310. image: {
  28311. source: "./media/characters/razz/feral.svg",
  28312. extra: 2569 / 1385,
  28313. bottom: 95 / 2664
  28314. }
  28315. },
  28316. },
  28317. [
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(6, "feet"),
  28321. default: true
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28327. {
  28328. front: {
  28329. height: math.unit(9 + 4 / 12, "feet"),
  28330. weight: math.unit(500, "lb"),
  28331. name: "Front",
  28332. image: {
  28333. source: "./media/characters/morrigan/front.svg",
  28334. extra: 2707 / 2579,
  28335. bottom: 156 / 2863
  28336. }
  28337. },
  28338. },
  28339. [
  28340. {
  28341. name: "Normal",
  28342. height: math.unit(9 + 4 / 12, "feet"),
  28343. default: true
  28344. },
  28345. ]
  28346. ))
  28347. characterMakers.push(() => makeCharacter(
  28348. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28349. {
  28350. front: {
  28351. height: math.unit(5, "stories"),
  28352. weight: math.unit(4000, "lb"),
  28353. name: "Front",
  28354. image: {
  28355. source: "./media/characters/jenene/front.svg",
  28356. extra: 1780 / 1710,
  28357. bottom: 57 / 1837
  28358. }
  28359. },
  28360. },
  28361. [
  28362. {
  28363. name: "Normal",
  28364. height: math.unit(5, "stories"),
  28365. default: true
  28366. },
  28367. ]
  28368. ))
  28369. characterMakers.push(() => makeCharacter(
  28370. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28371. {
  28372. taurSfw: {
  28373. height: math.unit(10, "meters"),
  28374. weight: math.unit(17500, "kg"),
  28375. name: "Taur",
  28376. image: {
  28377. source: "./media/characters/faey/taur-sfw.svg",
  28378. extra: 1200 / 968,
  28379. bottom: 41 / 1241
  28380. }
  28381. },
  28382. chestmaw: {
  28383. height: math.unit(2.01, "meters"),
  28384. name: "Chestmaw",
  28385. image: {
  28386. source: "./media/characters/faey/chestmaw.svg"
  28387. }
  28388. },
  28389. foot: {
  28390. height: math.unit(2.43, "meters"),
  28391. name: "Foot",
  28392. image: {
  28393. source: "./media/characters/faey/foot.svg"
  28394. }
  28395. },
  28396. jaws: {
  28397. height: math.unit(1.66, "meters"),
  28398. name: "Jaws",
  28399. image: {
  28400. source: "./media/characters/faey/jaws.svg"
  28401. }
  28402. },
  28403. tongues: {
  28404. height: math.unit(2.01, "meters"),
  28405. name: "Tongues",
  28406. image: {
  28407. source: "./media/characters/faey/tongues.svg"
  28408. }
  28409. },
  28410. },
  28411. [
  28412. {
  28413. name: "Small",
  28414. height: math.unit(10, "meters"),
  28415. default: true
  28416. },
  28417. {
  28418. name: "Big",
  28419. height: math.unit(500000, "km")
  28420. },
  28421. ]
  28422. ))
  28423. characterMakers.push(() => makeCharacter(
  28424. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  28425. {
  28426. front: {
  28427. height: math.unit(7, "feet"),
  28428. weight: math.unit(275, "lb"),
  28429. name: "Front",
  28430. image: {
  28431. source: "./media/characters/roku/front.svg",
  28432. extra: 903 / 878,
  28433. bottom: 37 / 940
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(7, "feet"),
  28441. default: true
  28442. },
  28443. {
  28444. name: "Macro",
  28445. height: math.unit(500, "feet")
  28446. },
  28447. {
  28448. name: "Megamacro",
  28449. height: math.unit(200, "miles")
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(6 + 2 / 12, "feet"),
  28458. weight: math.unit(150, "lb"),
  28459. name: "Front",
  28460. image: {
  28461. source: "./media/characters/lira/front.svg",
  28462. extra: 1727 / 1605,
  28463. bottom: 26 / 1753
  28464. }
  28465. },
  28466. back: {
  28467. height: math.unit(6 + 2 / 12, "feet"),
  28468. weight: math.unit(150, "lb"),
  28469. name: "Back",
  28470. image: {
  28471. source: "./media/characters/lira/back.svg",
  28472. extra: 1713/1621,
  28473. bottom: 20/1733
  28474. }
  28475. },
  28476. hand: {
  28477. height: math.unit(0.75, "feet"),
  28478. name: "Hand",
  28479. image: {
  28480. source: "./media/characters/lira/hand.svg"
  28481. }
  28482. },
  28483. maw: {
  28484. height: math.unit(0.65, "feet"),
  28485. name: "Maw",
  28486. image: {
  28487. source: "./media/characters/lira/maw.svg"
  28488. }
  28489. },
  28490. pawDigi: {
  28491. height: math.unit(1.6, "feet"),
  28492. name: "Paw Digi",
  28493. image: {
  28494. source: "./media/characters/lira/paw-digi.svg"
  28495. }
  28496. },
  28497. pawPlanti: {
  28498. height: math.unit(1.4, "feet"),
  28499. name: "Paw Planti",
  28500. image: {
  28501. source: "./media/characters/lira/paw-planti.svg"
  28502. }
  28503. },
  28504. },
  28505. [
  28506. {
  28507. name: "Normal",
  28508. height: math.unit(6 + 2 / 12, "feet"),
  28509. default: true
  28510. },
  28511. {
  28512. name: "Macro",
  28513. height: math.unit(100, "feet")
  28514. },
  28515. {
  28516. name: "Macro²",
  28517. height: math.unit(1600, "feet")
  28518. },
  28519. {
  28520. name: "Planetary",
  28521. height: math.unit(20, "earths")
  28522. },
  28523. ]
  28524. ))
  28525. characterMakers.push(() => makeCharacter(
  28526. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  28527. {
  28528. front: {
  28529. height: math.unit(6, "feet"),
  28530. weight: math.unit(150, "lb"),
  28531. name: "Front",
  28532. image: {
  28533. source: "./media/characters/hadjet/front.svg",
  28534. extra: 1480 / 1346,
  28535. bottom: 26 / 1506
  28536. }
  28537. },
  28538. frontNsfw: {
  28539. height: math.unit(6, "feet"),
  28540. weight: math.unit(150, "lb"),
  28541. name: "Front (NSFW)",
  28542. image: {
  28543. source: "./media/characters/hadjet/front-nsfw.svg",
  28544. extra: 1440 / 1358,
  28545. bottom: 52 / 1492
  28546. }
  28547. },
  28548. },
  28549. [
  28550. {
  28551. name: "Macro",
  28552. height: math.unit(10, "stories"),
  28553. default: true
  28554. },
  28555. {
  28556. name: "Megamacro",
  28557. height: math.unit(1.5, "miles")
  28558. },
  28559. {
  28560. name: "Megamacro+",
  28561. height: math.unit(5, "miles")
  28562. },
  28563. ]
  28564. ))
  28565. characterMakers.push(() => makeCharacter(
  28566. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  28567. {
  28568. side: {
  28569. height: math.unit(106, "feet"),
  28570. weight: math.unit(500, "tonnes"),
  28571. name: "Side",
  28572. image: {
  28573. source: "./media/characters/kodran/side.svg",
  28574. extra: 553 / 480,
  28575. bottom: 33 / 586
  28576. }
  28577. },
  28578. front: {
  28579. height: math.unit(132, "feet"),
  28580. weight: math.unit(500, "tonnes"),
  28581. name: "Front",
  28582. image: {
  28583. source: "./media/characters/kodran/front.svg",
  28584. extra: 667 / 643,
  28585. bottom: 42 / 709
  28586. }
  28587. },
  28588. flying: {
  28589. height: math.unit(350, "feet"),
  28590. weight: math.unit(500, "tonnes"),
  28591. name: "Flying",
  28592. image: {
  28593. source: "./media/characters/kodran/flying.svg"
  28594. }
  28595. },
  28596. foot: {
  28597. height: math.unit(33, "feet"),
  28598. name: "Foot",
  28599. image: {
  28600. source: "./media/characters/kodran/foot.svg"
  28601. }
  28602. },
  28603. footFront: {
  28604. height: math.unit(19, "feet"),
  28605. name: "Foot (Front)",
  28606. image: {
  28607. source: "./media/characters/kodran/foot-front.svg",
  28608. extra: 261 / 261,
  28609. bottom: 91 / 352
  28610. }
  28611. },
  28612. headFront: {
  28613. height: math.unit(53, "feet"),
  28614. name: "Head (Front)",
  28615. image: {
  28616. source: "./media/characters/kodran/head-front.svg"
  28617. }
  28618. },
  28619. headSide: {
  28620. height: math.unit(65, "feet"),
  28621. name: "Head (Side)",
  28622. image: {
  28623. source: "./media/characters/kodran/head-side.svg"
  28624. }
  28625. },
  28626. throat: {
  28627. height: math.unit(79, "feet"),
  28628. name: "Throat",
  28629. image: {
  28630. source: "./media/characters/kodran/throat.svg"
  28631. }
  28632. },
  28633. },
  28634. [
  28635. {
  28636. name: "Large",
  28637. height: math.unit(106, "feet"),
  28638. default: true
  28639. },
  28640. ]
  28641. ))
  28642. characterMakers.push(() => makeCharacter(
  28643. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  28644. {
  28645. side: {
  28646. height: math.unit(11, "feet"),
  28647. weight: math.unit(150, "lb"),
  28648. name: "Side",
  28649. image: {
  28650. source: "./media/characters/pyxaron/side.svg",
  28651. extra: 305 / 195,
  28652. bottom: 17 / 322
  28653. }
  28654. },
  28655. },
  28656. [
  28657. {
  28658. name: "Normal",
  28659. height: math.unit(11, "feet"),
  28660. default: true
  28661. },
  28662. ]
  28663. ))
  28664. characterMakers.push(() => makeCharacter(
  28665. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  28666. {
  28667. front: {
  28668. height: math.unit(6, "feet"),
  28669. weight: math.unit(150, "lb"),
  28670. name: "Front",
  28671. image: {
  28672. source: "./media/characters/meep/front.svg",
  28673. extra: 88 / 80,
  28674. bottom: 6 / 94
  28675. }
  28676. },
  28677. },
  28678. [
  28679. {
  28680. name: "Fun Sized",
  28681. height: math.unit(2, "inches"),
  28682. default: true
  28683. },
  28684. {
  28685. name: "Friend Sized",
  28686. height: math.unit(8, "inches")
  28687. },
  28688. ]
  28689. ))
  28690. characterMakers.push(() => makeCharacter(
  28691. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28692. {
  28693. front: {
  28694. height: math.unit(15, "feet"),
  28695. weight: math.unit(2500, "lb"),
  28696. name: "Front",
  28697. image: {
  28698. source: "./media/characters/holly-rabbit/front.svg",
  28699. extra: 1433 / 1233,
  28700. bottom: 125 / 1558
  28701. }
  28702. },
  28703. dick: {
  28704. height: math.unit(4.6, "feet"),
  28705. name: "Dick",
  28706. image: {
  28707. source: "./media/characters/holly-rabbit/dick.svg"
  28708. }
  28709. },
  28710. },
  28711. [
  28712. {
  28713. name: "Normal",
  28714. height: math.unit(15, "feet"),
  28715. default: true
  28716. },
  28717. {
  28718. name: "Macro",
  28719. height: math.unit(250, "feet")
  28720. },
  28721. {
  28722. name: "Macro+",
  28723. height: math.unit(2500, "feet")
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(3.02, "meters"),
  28732. weight: math.unit(500, "kg"),
  28733. name: "Front",
  28734. image: {
  28735. source: "./media/characters/drena/front.svg",
  28736. extra: 282 / 243,
  28737. bottom: 8 / 290
  28738. }
  28739. },
  28740. side: {
  28741. height: math.unit(3.02, "meters"),
  28742. weight: math.unit(500, "kg"),
  28743. name: "Side",
  28744. image: {
  28745. source: "./media/characters/drena/side.svg",
  28746. extra: 280 / 245,
  28747. bottom: 10 / 290
  28748. }
  28749. },
  28750. back: {
  28751. height: math.unit(3.02, "meters"),
  28752. weight: math.unit(500, "kg"),
  28753. name: "Back",
  28754. image: {
  28755. source: "./media/characters/drena/back.svg",
  28756. extra: 278 / 243,
  28757. bottom: 2 / 280
  28758. }
  28759. },
  28760. foot: {
  28761. height: math.unit(0.75, "meters"),
  28762. name: "Foot",
  28763. image: {
  28764. source: "./media/characters/drena/foot.svg"
  28765. }
  28766. },
  28767. maw: {
  28768. height: math.unit(0.82, "meters"),
  28769. name: "Maw",
  28770. image: {
  28771. source: "./media/characters/drena/maw.svg"
  28772. }
  28773. },
  28774. rump: {
  28775. height: math.unit(0.93, "meters"),
  28776. name: "Rump",
  28777. image: {
  28778. source: "./media/characters/drena/rump.svg"
  28779. }
  28780. },
  28781. },
  28782. [
  28783. {
  28784. name: "Normal",
  28785. height: math.unit(3.02, "meters"),
  28786. default: true
  28787. },
  28788. ]
  28789. ))
  28790. characterMakers.push(() => makeCharacter(
  28791. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  28792. {
  28793. front: {
  28794. height: math.unit(6 + 4 / 12, "feet"),
  28795. weight: math.unit(250, "lb"),
  28796. name: "Front",
  28797. image: {
  28798. source: "./media/characters/remmyzilla/front.svg",
  28799. extra: 4033 / 3588,
  28800. bottom: 123 / 4156
  28801. }
  28802. },
  28803. back: {
  28804. height: math.unit(6 + 4 / 12, "feet"),
  28805. weight: math.unit(250, "lb"),
  28806. name: "Back",
  28807. image: {
  28808. source: "./media/characters/remmyzilla/back.svg",
  28809. extra: 2687 / 2555,
  28810. bottom: 48 / 2735
  28811. }
  28812. },
  28813. paw: {
  28814. height: math.unit(1.73, "feet"),
  28815. name: "Paw",
  28816. image: {
  28817. source: "./media/characters/remmyzilla/paw.svg"
  28818. }
  28819. },
  28820. maw: {
  28821. height: math.unit(1.73, "feet"),
  28822. name: "Maw",
  28823. image: {
  28824. source: "./media/characters/remmyzilla/maw.svg"
  28825. }
  28826. },
  28827. },
  28828. [
  28829. {
  28830. name: "Normal",
  28831. height: math.unit(6 + 4 / 12, "feet")
  28832. },
  28833. {
  28834. name: "Minimacro",
  28835. height: math.unit(12 + 8 / 12, "feet")
  28836. },
  28837. {
  28838. name: "Normal",
  28839. height: math.unit(640, "feet"),
  28840. default: true
  28841. },
  28842. {
  28843. name: "Megamacro",
  28844. height: math.unit(6400, "feet")
  28845. },
  28846. {
  28847. name: "Gigamacro",
  28848. height: math.unit(64000, "miles")
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  28854. {
  28855. front: {
  28856. height: math.unit(2.5, "meters"),
  28857. weight: math.unit(300, "lb"),
  28858. name: "Front",
  28859. image: {
  28860. source: "./media/characters/lawrence/front.svg",
  28861. extra: 357 / 335,
  28862. bottom: 30 / 387
  28863. }
  28864. },
  28865. back: {
  28866. height: math.unit(2.5, "meters"),
  28867. weight: math.unit(300, "lb"),
  28868. name: "Back",
  28869. image: {
  28870. source: "./media/characters/lawrence/back.svg",
  28871. extra: 357 / 338,
  28872. bottom: 16 / 373
  28873. }
  28874. },
  28875. head: {
  28876. height: math.unit(0.9, "meter"),
  28877. name: "Head",
  28878. image: {
  28879. source: "./media/characters/lawrence/head.svg"
  28880. }
  28881. },
  28882. maw: {
  28883. height: math.unit(0.7, "meter"),
  28884. name: "Maw",
  28885. image: {
  28886. source: "./media/characters/lawrence/maw.svg"
  28887. }
  28888. },
  28889. footBottom: {
  28890. height: math.unit(0.5, "meter"),
  28891. name: "Foot (Bottom)",
  28892. image: {
  28893. source: "./media/characters/lawrence/foot-bottom.svg"
  28894. }
  28895. },
  28896. footTop: {
  28897. height: math.unit(0.5, "meter"),
  28898. name: "Foot (Top)",
  28899. image: {
  28900. source: "./media/characters/lawrence/foot-top.svg"
  28901. }
  28902. },
  28903. },
  28904. [
  28905. {
  28906. name: "Normal",
  28907. height: math.unit(2.5, "meters"),
  28908. default: true
  28909. },
  28910. {
  28911. name: "Macro",
  28912. height: math.unit(95, "meters")
  28913. },
  28914. {
  28915. name: "Megamacro",
  28916. height: math.unit(150, "km")
  28917. },
  28918. ]
  28919. ))
  28920. characterMakers.push(() => makeCharacter(
  28921. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28922. {
  28923. front: {
  28924. height: math.unit(4.2, "meters"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/sydney/front.svg",
  28928. extra: 1323 / 1277,
  28929. bottom: 111 / 1434
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(4.2, "meters"),
  28937. default: true
  28938. },
  28939. ]
  28940. ))
  28941. characterMakers.push(() => makeCharacter(
  28942. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28943. {
  28944. back: {
  28945. height: math.unit(201, "feet"),
  28946. name: "Back",
  28947. image: {
  28948. source: "./media/characters/jessica/back.svg",
  28949. extra: 273 / 259,
  28950. bottom: 7 / 280
  28951. }
  28952. },
  28953. },
  28954. [
  28955. {
  28956. name: "Normal",
  28957. height: math.unit(201, "feet"),
  28958. default: true
  28959. },
  28960. {
  28961. name: "Megamacro",
  28962. height: math.unit(8, "miles")
  28963. },
  28964. ]
  28965. ))
  28966. characterMakers.push(() => makeCharacter(
  28967. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28968. {
  28969. side: {
  28970. height: math.unit(5.6, "m"),
  28971. weight: math.unit(8000, "kg"),
  28972. name: "Side",
  28973. image: {
  28974. source: "./media/characters/victoria/side.svg",
  28975. extra: 1542/1229,
  28976. bottom: 124/1666
  28977. }
  28978. },
  28979. maw: {
  28980. height: math.unit(7.14, "feet"),
  28981. name: "Maw",
  28982. image: {
  28983. source: "./media/characters/victoria/maw.svg"
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Normal",
  28990. height: math.unit(5.6, "m"),
  28991. default: true
  28992. },
  28993. ]
  28994. ))
  28995. characterMakers.push(() => makeCharacter(
  28996. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28997. {
  28998. front: {
  28999. height: math.unit(5 + 6 / 12, "feet"),
  29000. name: "Front",
  29001. image: {
  29002. source: "./media/characters/cat/front.svg",
  29003. extra: 1449/1295,
  29004. bottom: 34/1483
  29005. }
  29006. },
  29007. back: {
  29008. height: math.unit(5 + 6 / 12, "feet"),
  29009. name: "Back",
  29010. image: {
  29011. source: "./media/characters/cat/back.svg",
  29012. extra: 1466/1301,
  29013. bottom: 19/1485
  29014. }
  29015. },
  29016. taur: {
  29017. height: math.unit(7, "feet"),
  29018. name: "Taur",
  29019. image: {
  29020. source: "./media/characters/cat/taur.svg",
  29021. extra: 1389/1233,
  29022. bottom: 83/1472
  29023. }
  29024. },
  29025. lucarioFront: {
  29026. height: math.unit(4, "feet"),
  29027. name: "Lucario (Front)",
  29028. image: {
  29029. source: "./media/characters/cat/lucario-front.svg",
  29030. extra: 1149/1019,
  29031. bottom: 84/1233
  29032. }
  29033. },
  29034. lucarioBack: {
  29035. height: math.unit(4, "feet"),
  29036. name: "Lucario (Back)",
  29037. image: {
  29038. source: "./media/characters/cat/lucario-back.svg",
  29039. extra: 1190/1059,
  29040. bottom: 33/1223
  29041. }
  29042. },
  29043. megaLucario: {
  29044. height: math.unit(4, "feet"),
  29045. name: "Mega Lucario",
  29046. image: {
  29047. source: "./media/characters/cat/mega-lucario.svg",
  29048. extra: 1515 / 1319,
  29049. bottom: 63 / 1578
  29050. }
  29051. },
  29052. nickit: {
  29053. height: math.unit(2, "feet"),
  29054. name: "Nickit",
  29055. image: {
  29056. source: "./media/characters/cat/nickit.svg",
  29057. extra: 1980 / 1585,
  29058. bottom: 102 / 2082
  29059. }
  29060. },
  29061. lopunnyFront: {
  29062. height: math.unit(5, "feet"),
  29063. name: "Lopunny (Front)",
  29064. image: {
  29065. source: "./media/characters/cat/lopunny-front.svg",
  29066. extra: 1782 / 1469,
  29067. bottom: 38 / 1820
  29068. }
  29069. },
  29070. lopunnyBack: {
  29071. height: math.unit(5, "feet"),
  29072. name: "Lopunny (Back)",
  29073. image: {
  29074. source: "./media/characters/cat/lopunny-back.svg",
  29075. extra: 1660 / 1490,
  29076. bottom: 25 / 1685
  29077. }
  29078. },
  29079. },
  29080. [
  29081. {
  29082. name: "Really small",
  29083. height: math.unit(1, "nm")
  29084. },
  29085. {
  29086. name: "Micro",
  29087. height: math.unit(5, "inches")
  29088. },
  29089. {
  29090. name: "Normal",
  29091. height: math.unit(5 + 6 / 12, "feet"),
  29092. default: true
  29093. },
  29094. {
  29095. name: "Macro",
  29096. height: math.unit(50, "feet")
  29097. },
  29098. {
  29099. name: "Macro+",
  29100. height: math.unit(150, "feet")
  29101. },
  29102. {
  29103. name: "Megamacro",
  29104. height: math.unit(100, "miles")
  29105. },
  29106. ]
  29107. ))
  29108. characterMakers.push(() => makeCharacter(
  29109. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29110. {
  29111. front: {
  29112. height: math.unit(63.4, "meters"),
  29113. weight: math.unit(3.28349e+6, "kilograms"),
  29114. name: "Front",
  29115. image: {
  29116. source: "./media/characters/kirina-violet/front.svg",
  29117. extra: 2812 / 2725,
  29118. bottom: 0 / 2812
  29119. }
  29120. },
  29121. back: {
  29122. height: math.unit(63.4, "meters"),
  29123. weight: math.unit(3.28349e+6, "kilograms"),
  29124. name: "Back",
  29125. image: {
  29126. source: "./media/characters/kirina-violet/back.svg",
  29127. extra: 2812 / 2725,
  29128. bottom: 0 / 2812
  29129. }
  29130. },
  29131. mouth: {
  29132. height: math.unit(4.35, "meters"),
  29133. name: "Mouth",
  29134. image: {
  29135. source: "./media/characters/kirina-violet/mouth.svg"
  29136. }
  29137. },
  29138. paw: {
  29139. height: math.unit(5.6, "meters"),
  29140. name: "Paw",
  29141. image: {
  29142. source: "./media/characters/kirina-violet/paw.svg"
  29143. }
  29144. },
  29145. tail: {
  29146. height: math.unit(18, "meters"),
  29147. name: "Tail",
  29148. image: {
  29149. source: "./media/characters/kirina-violet/tail.svg"
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Macro",
  29156. height: math.unit(63.4, "meters"),
  29157. default: true
  29158. },
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29163. {
  29164. front: {
  29165. height: math.unit(75, "feet"),
  29166. name: "Front",
  29167. image: {
  29168. source: "./media/characters/cat-gigachu/front.svg",
  29169. extra: 1239/1027,
  29170. bottom: 32/1271
  29171. }
  29172. },
  29173. back: {
  29174. height: math.unit(75, "feet"),
  29175. name: "Back",
  29176. image: {
  29177. source: "./media/characters/cat-gigachu/back.svg",
  29178. extra: 1229/1030,
  29179. bottom: 9/1238
  29180. }
  29181. },
  29182. },
  29183. [
  29184. {
  29185. name: "Dynamax",
  29186. height: math.unit(75, "feet"),
  29187. default: true
  29188. },
  29189. ]
  29190. ))
  29191. characterMakers.push(() => makeCharacter(
  29192. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29193. {
  29194. front: {
  29195. height: math.unit(6, "feet"),
  29196. weight: math.unit(150, "lb"),
  29197. name: "Front",
  29198. image: {
  29199. source: "./media/characters/sfaiyan/front.svg",
  29200. extra: 999 / 978,
  29201. bottom: 5 / 1004
  29202. }
  29203. },
  29204. },
  29205. [
  29206. {
  29207. name: "Normal",
  29208. height: math.unit(1.82, "meters")
  29209. },
  29210. {
  29211. name: "Giant",
  29212. height: math.unit(2.27, "km"),
  29213. default: true
  29214. },
  29215. ]
  29216. ))
  29217. characterMakers.push(() => makeCharacter(
  29218. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29219. {
  29220. front: {
  29221. height: math.unit(179, "cm"),
  29222. weight: math.unit(100, "kg"),
  29223. name: "Front",
  29224. image: {
  29225. source: "./media/characters/raunehkeli/front.svg",
  29226. extra: 1934 / 1926,
  29227. bottom: 0 / 1934
  29228. }
  29229. },
  29230. },
  29231. [
  29232. {
  29233. name: "Normal",
  29234. height: math.unit(179, "cm")
  29235. },
  29236. {
  29237. name: "Maximum",
  29238. height: math.unit(575, "meters"),
  29239. default: true
  29240. },
  29241. ]
  29242. ))
  29243. characterMakers.push(() => makeCharacter(
  29244. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29245. {
  29246. front: {
  29247. height: math.unit(6, "feet"),
  29248. weight: math.unit(150, "lb"),
  29249. name: "Front",
  29250. image: {
  29251. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29252. extra: 2625 / 2518,
  29253. bottom: 60 / 2685
  29254. }
  29255. },
  29256. },
  29257. [
  29258. {
  29259. name: "Normal",
  29260. height: math.unit(6 + 2 / 12, "feet")
  29261. },
  29262. {
  29263. name: "Macro",
  29264. height: math.unit(1180, "feet"),
  29265. default: true
  29266. },
  29267. ]
  29268. ))
  29269. characterMakers.push(() => makeCharacter(
  29270. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29271. {
  29272. front: {
  29273. height: math.unit(5 + 6 / 12, "feet"),
  29274. weight: math.unit(108, "lb"),
  29275. name: "Front",
  29276. image: {
  29277. source: "./media/characters/lilith-zott/front.svg",
  29278. extra: 2510 / 2238,
  29279. bottom: 100 / 2610
  29280. }
  29281. },
  29282. frontDressed: {
  29283. height: math.unit(5 + 6 / 12, "feet"),
  29284. weight: math.unit(108, "lb"),
  29285. name: "Front (Dressed)",
  29286. image: {
  29287. source: "./media/characters/lilith-zott/front-dressed.svg",
  29288. extra: 2510 / 2238,
  29289. bottom: 100 / 2610
  29290. }
  29291. },
  29292. },
  29293. [
  29294. {
  29295. name: "Normal",
  29296. height: math.unit(5 + 6 / 12, "feet")
  29297. },
  29298. {
  29299. name: "Macro",
  29300. height: math.unit(1030, "feet"),
  29301. default: true
  29302. },
  29303. ]
  29304. ))
  29305. characterMakers.push(() => makeCharacter(
  29306. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29307. {
  29308. front: {
  29309. height: math.unit(6, "feet"),
  29310. weight: math.unit(150, "lb"),
  29311. name: "Front",
  29312. image: {
  29313. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29314. extra: 2567 / 2435,
  29315. bottom: 39 / 2606
  29316. }
  29317. },
  29318. frontSuper: {
  29319. height: math.unit(6, "feet"),
  29320. name: "Front (Super)",
  29321. image: {
  29322. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29323. extra: 2567 / 2435,
  29324. bottom: 39 / 2606
  29325. }
  29326. },
  29327. },
  29328. [
  29329. {
  29330. name: "Normal",
  29331. height: math.unit(5 + 10 / 12, "feet")
  29332. },
  29333. {
  29334. name: "Macro",
  29335. height: math.unit(1100, "feet"),
  29336. default: true
  29337. },
  29338. ]
  29339. ))
  29340. characterMakers.push(() => makeCharacter(
  29341. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29342. {
  29343. front: {
  29344. height: math.unit(100, "miles"),
  29345. name: "Front",
  29346. image: {
  29347. source: "./media/characters/sona/front.svg",
  29348. extra: 2433 / 2201,
  29349. bottom: 53 / 2486
  29350. }
  29351. },
  29352. foot: {
  29353. height: math.unit(16.1, "miles"),
  29354. name: "Foot",
  29355. image: {
  29356. source: "./media/characters/sona/foot.svg"
  29357. }
  29358. },
  29359. },
  29360. [
  29361. {
  29362. name: "Macro",
  29363. height: math.unit(100, "miles"),
  29364. default: true
  29365. },
  29366. ]
  29367. ))
  29368. characterMakers.push(() => makeCharacter(
  29369. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29370. {
  29371. front: {
  29372. height: math.unit(6, "feet"),
  29373. weight: math.unit(150, "lb"),
  29374. name: "Front",
  29375. image: {
  29376. source: "./media/characters/bailey/front.svg",
  29377. extra: 1778 / 1724,
  29378. bottom: 30 / 1808
  29379. }
  29380. },
  29381. },
  29382. [
  29383. {
  29384. name: "Micro",
  29385. height: math.unit(4, "inches")
  29386. },
  29387. {
  29388. name: "Normal",
  29389. height: math.unit(5 + 5 / 12, "feet"),
  29390. default: true
  29391. },
  29392. {
  29393. name: "Macro",
  29394. height: math.unit(250, "feet")
  29395. },
  29396. {
  29397. name: "Megamacro",
  29398. height: math.unit(100, "miles")
  29399. },
  29400. ]
  29401. ))
  29402. characterMakers.push(() => makeCharacter(
  29403. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  29404. {
  29405. front: {
  29406. height: math.unit(5 + 2 / 12, "feet"),
  29407. weight: math.unit(120, "lb"),
  29408. name: "Front",
  29409. image: {
  29410. source: "./media/characters/snaps/front.svg",
  29411. extra: 2370 / 2177,
  29412. bottom: 48 / 2418
  29413. }
  29414. },
  29415. back: {
  29416. height: math.unit(5 + 2 / 12, "feet"),
  29417. weight: math.unit(120, "lb"),
  29418. name: "Back",
  29419. image: {
  29420. source: "./media/characters/snaps/back.svg",
  29421. extra: 2408 / 2258,
  29422. bottom: 15 / 2423
  29423. }
  29424. },
  29425. },
  29426. [
  29427. {
  29428. name: "Micro",
  29429. height: math.unit(9, "inches")
  29430. },
  29431. {
  29432. name: "Normal",
  29433. height: math.unit(5 + 2 / 12, "feet"),
  29434. default: true
  29435. },
  29436. {
  29437. name: "Mini Macro",
  29438. height: math.unit(10, "feet")
  29439. },
  29440. ]
  29441. ))
  29442. characterMakers.push(() => makeCharacter(
  29443. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  29444. {
  29445. front: {
  29446. height: math.unit(1.8, "meters"),
  29447. weight: math.unit(85, "kg"),
  29448. name: "Front",
  29449. image: {
  29450. source: "./media/characters/azteck/front.svg",
  29451. extra: 2815 / 2625,
  29452. bottom: 89 / 2904
  29453. }
  29454. },
  29455. back: {
  29456. height: math.unit(1.8, "meters"),
  29457. weight: math.unit(85, "kg"),
  29458. name: "Back",
  29459. image: {
  29460. source: "./media/characters/azteck/back.svg",
  29461. extra: 2856 / 2648,
  29462. bottom: 85 / 2941
  29463. }
  29464. },
  29465. frontDressed: {
  29466. height: math.unit(1.8, "meters"),
  29467. weight: math.unit(85, "kg"),
  29468. name: "Front (Dressed)",
  29469. image: {
  29470. source: "./media/characters/azteck/front-dressed.svg",
  29471. extra: 2147 / 2003,
  29472. bottom: 68 / 2215
  29473. }
  29474. },
  29475. head: {
  29476. height: math.unit(0.47, "meters"),
  29477. weight: math.unit(85, "kg"),
  29478. name: "Head",
  29479. image: {
  29480. source: "./media/characters/azteck/head.svg"
  29481. }
  29482. },
  29483. },
  29484. [
  29485. {
  29486. name: "Bite sized",
  29487. height: math.unit(16, "cm")
  29488. },
  29489. {
  29490. name: "Normal",
  29491. height: math.unit(1.8, "meters"),
  29492. default: true
  29493. },
  29494. ]
  29495. ))
  29496. characterMakers.push(() => makeCharacter(
  29497. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  29498. {
  29499. front: {
  29500. height: math.unit(6, "feet"),
  29501. weight: math.unit(150, "lb"),
  29502. name: "Front",
  29503. image: {
  29504. source: "./media/characters/pidge/front.svg",
  29505. extra: 620 / 588,
  29506. bottom: 9 / 629
  29507. }
  29508. },
  29509. back: {
  29510. height: math.unit(6, "feet"),
  29511. weight: math.unit(150, "lb"),
  29512. name: "Back",
  29513. image: {
  29514. source: "./media/characters/pidge/back.svg",
  29515. extra: 620 / 588,
  29516. bottom: 9 / 629
  29517. }
  29518. },
  29519. },
  29520. [
  29521. {
  29522. name: "Macro",
  29523. height: math.unit(1, "mile"),
  29524. default: true
  29525. },
  29526. ]
  29527. ))
  29528. characterMakers.push(() => makeCharacter(
  29529. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  29530. {
  29531. front: {
  29532. height: math.unit(6, "feet"),
  29533. weight: math.unit(150, "lb"),
  29534. name: "Front",
  29535. image: {
  29536. source: "./media/characters/en/front.svg",
  29537. extra: 1697 / 1563,
  29538. bottom: 103 / 1800
  29539. }
  29540. },
  29541. back: {
  29542. height: math.unit(6, "feet"),
  29543. weight: math.unit(150, "lb"),
  29544. name: "Back",
  29545. image: {
  29546. source: "./media/characters/en/back.svg",
  29547. extra: 1700 / 1570,
  29548. bottom: 51 / 1751
  29549. }
  29550. },
  29551. frontDressed: {
  29552. height: math.unit(6, "feet"),
  29553. weight: math.unit(150, "lb"),
  29554. name: "Front (Dressed)",
  29555. image: {
  29556. source: "./media/characters/en/front-dressed.svg",
  29557. extra: 1697 / 1563,
  29558. bottom: 103 / 1800
  29559. }
  29560. },
  29561. backDressed: {
  29562. height: math.unit(6, "feet"),
  29563. weight: math.unit(150, "lb"),
  29564. name: "Back (Dressed)",
  29565. image: {
  29566. source: "./media/characters/en/back-dressed.svg",
  29567. extra: 1700 / 1570,
  29568. bottom: 51 / 1751
  29569. }
  29570. },
  29571. },
  29572. [
  29573. {
  29574. name: "Macro",
  29575. height: math.unit(210, "feet"),
  29576. default: true
  29577. },
  29578. ]
  29579. ))
  29580. characterMakers.push(() => makeCharacter(
  29581. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  29582. {
  29583. front: {
  29584. height: math.unit(6, "feet"),
  29585. weight: math.unit(150, "lb"),
  29586. name: "Front",
  29587. image: {
  29588. source: "./media/characters/haze-orris/front.svg",
  29589. extra: 3975 / 3525,
  29590. bottom: 137 / 4112
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Micro",
  29597. height: math.unit(150, "mm"),
  29598. default: true
  29599. },
  29600. ]
  29601. ))
  29602. characterMakers.push(() => makeCharacter(
  29603. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  29604. {
  29605. front: {
  29606. height: math.unit(6, "feet"),
  29607. weight: math.unit(150, "lb"),
  29608. name: "Front",
  29609. image: {
  29610. source: "./media/characters/casselene-yaro/front.svg",
  29611. extra: 4721 / 4541,
  29612. bottom: 82 / 4803
  29613. }
  29614. },
  29615. back: {
  29616. height: math.unit(6, "feet"),
  29617. weight: math.unit(150, "lb"),
  29618. name: "Back",
  29619. image: {
  29620. source: "./media/characters/casselene-yaro/back.svg",
  29621. extra: 4569 / 4377,
  29622. bottom: 69 / 4638
  29623. }
  29624. },
  29625. frontDressed: {
  29626. height: math.unit(6, "feet"),
  29627. weight: math.unit(150, "lb"),
  29628. name: "Front-dressed",
  29629. image: {
  29630. source: "./media/characters/casselene-yaro/front-dressed.svg",
  29631. extra: 4721 / 4541,
  29632. bottom: 82 / 4803
  29633. }
  29634. },
  29635. },
  29636. [
  29637. {
  29638. name: "Macro",
  29639. height: math.unit(190, "feet"),
  29640. default: true
  29641. },
  29642. ]
  29643. ))
  29644. characterMakers.push(() => makeCharacter(
  29645. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  29646. {
  29647. front: {
  29648. height: math.unit(6, "feet"),
  29649. weight: math.unit(150, "lb"),
  29650. name: "Front",
  29651. image: {
  29652. source: "./media/characters/myra-rue-delore/front.svg",
  29653. extra: 1340 / 1308,
  29654. bottom: 67 / 1407
  29655. }
  29656. },
  29657. back: {
  29658. height: math.unit(6, "feet"),
  29659. weight: math.unit(150, "lb"),
  29660. name: "Back",
  29661. image: {
  29662. source: "./media/characters/myra-rue-delore/back.svg",
  29663. extra: 1341 / 1310,
  29664. bottom: 40 / 1381
  29665. }
  29666. },
  29667. frontDressed: {
  29668. height: math.unit(6, "feet"),
  29669. weight: math.unit(150, "lb"),
  29670. name: "Front (Dressed)",
  29671. image: {
  29672. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  29673. extra: 1340 / 1308,
  29674. bottom: 67 / 1407
  29675. }
  29676. },
  29677. },
  29678. [
  29679. {
  29680. name: "Macro",
  29681. height: math.unit(150, "feet"),
  29682. default: true
  29683. },
  29684. ]
  29685. ))
  29686. characterMakers.push(() => makeCharacter(
  29687. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  29688. {
  29689. front: {
  29690. height: math.unit(10, "feet"),
  29691. weight: math.unit(15015, "lb"),
  29692. name: "Front",
  29693. image: {
  29694. source: "./media/characters/fem!plat/front.svg",
  29695. extra: 2799 / 2604,
  29696. bottom: 149 / 2948
  29697. }
  29698. },
  29699. },
  29700. [
  29701. {
  29702. name: "Normal",
  29703. height: math.unit(10, "feet"),
  29704. default: true
  29705. },
  29706. {
  29707. name: "Macro",
  29708. height: math.unit(100, "feet")
  29709. },
  29710. {
  29711. name: "Megamacro",
  29712. height: math.unit(1000, "feet")
  29713. },
  29714. ]
  29715. ))
  29716. characterMakers.push(() => makeCharacter(
  29717. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  29718. {
  29719. front: {
  29720. height: math.unit(15 + 5 / 12, "feet"),
  29721. weight: math.unit(4600, "lb"),
  29722. name: "Front",
  29723. image: {
  29724. source: "./media/characters/neapolitan-ananassa/front.svg",
  29725. extra: 2903 / 2736,
  29726. bottom: 0 / 2903
  29727. }
  29728. },
  29729. side: {
  29730. height: math.unit(15 + 5 / 12, "feet"),
  29731. weight: math.unit(4600, "lb"),
  29732. name: "Side",
  29733. image: {
  29734. source: "./media/characters/neapolitan-ananassa/side.svg",
  29735. extra: 2925 / 2719,
  29736. bottom: 0 / 2925
  29737. }
  29738. },
  29739. back: {
  29740. height: math.unit(15 + 5 / 12, "feet"),
  29741. weight: math.unit(4600, "lb"),
  29742. name: "Back",
  29743. image: {
  29744. source: "./media/characters/neapolitan-ananassa/back.svg",
  29745. extra: 2903 / 2736,
  29746. bottom: 0 / 2903
  29747. }
  29748. },
  29749. },
  29750. [
  29751. {
  29752. name: "Normal",
  29753. height: math.unit(15 + 5 / 12, "feet"),
  29754. default: true
  29755. },
  29756. {
  29757. name: "Post-Millenium",
  29758. height: math.unit(35 + 5 / 12, "feet")
  29759. },
  29760. {
  29761. name: "Post-Era",
  29762. height: math.unit(450 + 5 / 12, "feet")
  29763. },
  29764. ]
  29765. ))
  29766. characterMakers.push(() => makeCharacter(
  29767. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  29768. {
  29769. front: {
  29770. height: math.unit(300, "meters"),
  29771. weight: math.unit(125000, "tonnes"),
  29772. name: "Front",
  29773. image: {
  29774. source: "./media/characters/pazuzu/front.svg",
  29775. extra: 877 / 794,
  29776. bottom: 47 / 924
  29777. }
  29778. },
  29779. },
  29780. [
  29781. {
  29782. name: "Macro",
  29783. height: math.unit(300, "meters"),
  29784. default: true
  29785. },
  29786. ]
  29787. ))
  29788. characterMakers.push(() => makeCharacter(
  29789. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  29790. {
  29791. side: {
  29792. height: math.unit(10 + 7 / 12, "feet"),
  29793. weight: math.unit(2.5, "tons"),
  29794. name: "Side",
  29795. image: {
  29796. source: "./media/characters/aasha/side.svg",
  29797. extra: 1345 / 1245,
  29798. bottom: 111 / 1456
  29799. }
  29800. },
  29801. back: {
  29802. height: math.unit(10 + 7 / 12, "feet"),
  29803. weight: math.unit(2.5, "tons"),
  29804. name: "Back",
  29805. image: {
  29806. source: "./media/characters/aasha/back.svg",
  29807. extra: 1133 / 1057,
  29808. bottom: 257 / 1390
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Normal",
  29815. height: math.unit(10 + 7 / 12, "feet"),
  29816. default: true
  29817. },
  29818. ]
  29819. ))
  29820. characterMakers.push(() => makeCharacter(
  29821. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  29822. {
  29823. front: {
  29824. height: math.unit(6 + 3 / 12, "feet"),
  29825. name: "Front",
  29826. image: {
  29827. source: "./media/characters/nevan/front.svg",
  29828. extra: 704 / 704,
  29829. bottom: 28 / 732
  29830. }
  29831. },
  29832. back: {
  29833. height: math.unit(6 + 3 / 12, "feet"),
  29834. name: "Back",
  29835. image: {
  29836. source: "./media/characters/nevan/back.svg",
  29837. extra: 714 / 714,
  29838. bottom: 21 / 735
  29839. }
  29840. },
  29841. frontFlaccid: {
  29842. height: math.unit(6 + 3 / 12, "feet"),
  29843. name: "Front (Flaccid)",
  29844. image: {
  29845. source: "./media/characters/nevan/front-flaccid.svg",
  29846. extra: 704 / 704,
  29847. bottom: 28 / 732
  29848. }
  29849. },
  29850. frontErect: {
  29851. height: math.unit(6 + 3 / 12, "feet"),
  29852. name: "Front (Erect)",
  29853. image: {
  29854. source: "./media/characters/nevan/front-erect.svg",
  29855. extra: 704 / 704,
  29856. bottom: 28 / 732
  29857. }
  29858. },
  29859. backFlaccid: {
  29860. height: math.unit(6 + 3 / 12, "feet"),
  29861. name: "Back (Flaccid)",
  29862. image: {
  29863. source: "./media/characters/nevan/back-flaccid.svg",
  29864. extra: 714 / 714,
  29865. bottom: 21 / 735
  29866. }
  29867. },
  29868. },
  29869. [
  29870. {
  29871. name: "Normal",
  29872. height: math.unit(6 + 3 / 12, "feet"),
  29873. default: true
  29874. },
  29875. ]
  29876. ))
  29877. characterMakers.push(() => makeCharacter(
  29878. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  29879. {
  29880. front: {
  29881. height: math.unit(4, "feet"),
  29882. name: "Front",
  29883. image: {
  29884. source: "./media/characters/arhan/front.svg",
  29885. extra: 3368 / 3133,
  29886. bottom: 0 / 3368
  29887. }
  29888. },
  29889. side: {
  29890. height: math.unit(4, "feet"),
  29891. name: "Side",
  29892. image: {
  29893. source: "./media/characters/arhan/side.svg",
  29894. extra: 3347 / 3105,
  29895. bottom: 0 / 3347
  29896. }
  29897. },
  29898. tongue: {
  29899. height: math.unit(1.42, "feet"),
  29900. name: "Tongue",
  29901. image: {
  29902. source: "./media/characters/arhan/tongue.svg"
  29903. }
  29904. },
  29905. head: {
  29906. height: math.unit(0.85, "feet"),
  29907. name: "Head",
  29908. image: {
  29909. source: "./media/characters/arhan/head.svg"
  29910. }
  29911. },
  29912. },
  29913. [
  29914. {
  29915. name: "Normal",
  29916. height: math.unit(4, "feet"),
  29917. default: true
  29918. },
  29919. ]
  29920. ))
  29921. characterMakers.push(() => makeCharacter(
  29922. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29923. {
  29924. front: {
  29925. height: math.unit(5 + 7.5 / 12, "feet"),
  29926. weight: math.unit(120, "lb"),
  29927. name: "Front",
  29928. image: {
  29929. source: "./media/characters/digi-duncan/front.svg",
  29930. extra: 330 / 326,
  29931. bottom: 16 / 346
  29932. }
  29933. },
  29934. side: {
  29935. height: math.unit(5 + 7.5 / 12, "feet"),
  29936. weight: math.unit(120, "lb"),
  29937. name: "Side",
  29938. image: {
  29939. source: "./media/characters/digi-duncan/side.svg",
  29940. extra: 341 / 337,
  29941. bottom: 1 / 342
  29942. }
  29943. },
  29944. back: {
  29945. height: math.unit(5 + 7.5 / 12, "feet"),
  29946. weight: math.unit(120, "lb"),
  29947. name: "Back",
  29948. image: {
  29949. source: "./media/characters/digi-duncan/back.svg",
  29950. extra: 330 / 326,
  29951. bottom: 12 / 342
  29952. }
  29953. },
  29954. },
  29955. [
  29956. {
  29957. name: "Speck",
  29958. height: math.unit(0.25, "mm")
  29959. },
  29960. {
  29961. name: "Micro",
  29962. height: math.unit(5, "mm")
  29963. },
  29964. {
  29965. name: "Tiny",
  29966. height: math.unit(0.5, "inches"),
  29967. default: true
  29968. },
  29969. {
  29970. name: "Human",
  29971. height: math.unit(5 + 7.5 / 12, "feet")
  29972. },
  29973. {
  29974. name: "Minigiant",
  29975. height: math.unit(8 + 5.25, "feet")
  29976. },
  29977. {
  29978. name: "Giant",
  29979. height: math.unit(2000, "feet")
  29980. },
  29981. {
  29982. name: "Mega",
  29983. height: math.unit(371.1, "miles")
  29984. },
  29985. ]
  29986. ))
  29987. characterMakers.push(() => makeCharacter(
  29988. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29989. {
  29990. front: {
  29991. height: math.unit(2, "meters"),
  29992. weight: math.unit(350, "kg"),
  29993. name: "Front",
  29994. image: {
  29995. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29996. extra: 898 / 838,
  29997. bottom: 9 / 907
  29998. }
  29999. },
  30000. },
  30001. [
  30002. {
  30003. name: "Micro",
  30004. height: math.unit(8, "meters")
  30005. },
  30006. {
  30007. name: "Normal",
  30008. height: math.unit(50, "meters"),
  30009. default: true
  30010. },
  30011. {
  30012. name: "Macro",
  30013. height: math.unit(500, "meters")
  30014. },
  30015. ]
  30016. ))
  30017. characterMakers.push(() => makeCharacter(
  30018. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30019. {
  30020. front: {
  30021. height: math.unit(6 + 6 / 12, "feet"),
  30022. name: "Front",
  30023. image: {
  30024. source: "./media/characters/khardesh/front.svg",
  30025. extra: 1788/1596,
  30026. bottom: 66/1854
  30027. }
  30028. },
  30029. back: {
  30030. height: math.unit(6 + 6 / 12, "feet"),
  30031. name: "Back",
  30032. image: {
  30033. source: "./media/characters/khardesh/back.svg",
  30034. extra: 1781/1584,
  30035. bottom: 68/1849
  30036. }
  30037. },
  30038. },
  30039. [
  30040. {
  30041. name: "Normal",
  30042. height: math.unit(6 + 6 / 12, "feet"),
  30043. default: true
  30044. },
  30045. {
  30046. name: "Normal+",
  30047. height: math.unit(4, "meters")
  30048. },
  30049. {
  30050. name: "Macro",
  30051. height: math.unit(50, "meters")
  30052. },
  30053. {
  30054. name: "Macro+",
  30055. height: math.unit(100, "meters")
  30056. },
  30057. {
  30058. name: "Megamacro",
  30059. height: math.unit(20, "km")
  30060. },
  30061. ]
  30062. ))
  30063. characterMakers.push(() => makeCharacter(
  30064. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30065. {
  30066. front: {
  30067. height: math.unit(6, "feet"),
  30068. weight: math.unit(150, "lb"),
  30069. name: "Front",
  30070. image: {
  30071. source: "./media/characters/kosho/front.svg",
  30072. extra: 1847 / 1847,
  30073. bottom: 86 / 1933
  30074. }
  30075. },
  30076. },
  30077. [
  30078. {
  30079. name: "Second-stage micro",
  30080. height: math.unit(0.5, "inches")
  30081. },
  30082. {
  30083. name: "First-stage micro",
  30084. height: math.unit(6, "inches")
  30085. },
  30086. {
  30087. name: "Normal",
  30088. height: math.unit(6, "feet"),
  30089. default: true
  30090. },
  30091. {
  30092. name: "First-stage macro",
  30093. height: math.unit(72, "feet")
  30094. },
  30095. {
  30096. name: "Second-stage macro",
  30097. height: math.unit(864, "feet")
  30098. },
  30099. ]
  30100. ))
  30101. characterMakers.push(() => makeCharacter(
  30102. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30103. {
  30104. normal: {
  30105. height: math.unit(4 + 6 / 12, "feet"),
  30106. name: "Normal",
  30107. image: {
  30108. source: "./media/characters/hydra/normal.svg",
  30109. extra: 2833 / 2634,
  30110. bottom: 68 / 2901
  30111. }
  30112. },
  30113. smol: {
  30114. height: math.unit(0.705, "inches"),
  30115. name: "Smol",
  30116. image: {
  30117. source: "./media/characters/hydra/smol.svg",
  30118. extra: 2715 / 2540,
  30119. bottom: 0 / 2715
  30120. }
  30121. },
  30122. },
  30123. [
  30124. {
  30125. name: "Normal",
  30126. height: math.unit(4 + 6 / 12, "feet"),
  30127. default: true
  30128. }
  30129. ]
  30130. ))
  30131. characterMakers.push(() => makeCharacter(
  30132. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30133. {
  30134. front: {
  30135. height: math.unit(0.6, "cm"),
  30136. name: "Front",
  30137. image: {
  30138. source: "./media/characters/daz/front.svg",
  30139. extra: 1682 / 1164,
  30140. bottom: 42 / 1724
  30141. }
  30142. },
  30143. },
  30144. [
  30145. {
  30146. name: "Normal",
  30147. height: math.unit(0.6, "cm"),
  30148. default: true
  30149. },
  30150. ]
  30151. ))
  30152. characterMakers.push(() => makeCharacter(
  30153. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30154. {
  30155. front: {
  30156. height: math.unit(6, "feet"),
  30157. weight: math.unit(235, "lb"),
  30158. name: "Front",
  30159. image: {
  30160. source: "./media/characters/theo-pangolin/front.svg",
  30161. extra: 1996 / 1969,
  30162. bottom: 115 / 2111
  30163. }
  30164. },
  30165. back: {
  30166. height: math.unit(6, "feet"),
  30167. weight: math.unit(235, "lb"),
  30168. name: "Back",
  30169. image: {
  30170. source: "./media/characters/theo-pangolin/back.svg",
  30171. extra: 1979 / 1979,
  30172. bottom: 40 / 2019
  30173. }
  30174. },
  30175. feral: {
  30176. height: math.unit(2, "feet"),
  30177. weight: math.unit(30, "lb"),
  30178. name: "Feral",
  30179. image: {
  30180. source: "./media/characters/theo-pangolin/feral.svg",
  30181. extra: 803 / 791,
  30182. bottom: 181 / 984
  30183. }
  30184. },
  30185. footFive: {
  30186. height: math.unit(1.43, "feet"),
  30187. name: "Foot (Five Toes)",
  30188. image: {
  30189. source: "./media/characters/theo-pangolin/foot-five.svg"
  30190. }
  30191. },
  30192. footFour: {
  30193. height: math.unit(1.43, "feet"),
  30194. name: "Foot (Four Toes)",
  30195. image: {
  30196. source: "./media/characters/theo-pangolin/foot-four.svg"
  30197. }
  30198. },
  30199. handFour: {
  30200. height: math.unit(0.81, "feet"),
  30201. name: "Hand (Four Fingers)",
  30202. image: {
  30203. source: "./media/characters/theo-pangolin/hand-four.svg"
  30204. }
  30205. },
  30206. handThree: {
  30207. height: math.unit(0.81, "feet"),
  30208. name: "Hand (Three Fingers)",
  30209. image: {
  30210. source: "./media/characters/theo-pangolin/hand-three.svg"
  30211. }
  30212. },
  30213. headFront: {
  30214. height: math.unit(1.37, "feet"),
  30215. name: "Head (Front)",
  30216. image: {
  30217. source: "./media/characters/theo-pangolin/head-front.svg"
  30218. }
  30219. },
  30220. headSide: {
  30221. height: math.unit(1.43, "feet"),
  30222. name: "Head (Side)",
  30223. image: {
  30224. source: "./media/characters/theo-pangolin/head-side.svg"
  30225. }
  30226. },
  30227. tongue: {
  30228. height: math.unit(2.29, "feet"),
  30229. name: "Tongue",
  30230. image: {
  30231. source: "./media/characters/theo-pangolin/tongue.svg"
  30232. }
  30233. },
  30234. },
  30235. [
  30236. {
  30237. name: "Normal",
  30238. height: math.unit(6, "feet")
  30239. },
  30240. {
  30241. name: "Macro",
  30242. height: math.unit(400, "feet"),
  30243. default: true
  30244. },
  30245. ]
  30246. ))
  30247. characterMakers.push(() => makeCharacter(
  30248. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30249. {
  30250. front: {
  30251. height: math.unit(6, "inches"),
  30252. weight: math.unit(0.036, "kg"),
  30253. name: "Front",
  30254. image: {
  30255. source: "./media/characters/renée/front.svg",
  30256. extra: 900 / 886,
  30257. bottom: 8 / 908
  30258. }
  30259. },
  30260. },
  30261. [
  30262. {
  30263. name: "Nano",
  30264. height: math.unit(1, "nm")
  30265. },
  30266. {
  30267. name: "Micro",
  30268. height: math.unit(1, "mm")
  30269. },
  30270. {
  30271. name: "Normal",
  30272. height: math.unit(6, "inches")
  30273. },
  30274. {
  30275. name: "Macro",
  30276. height: math.unit(2000, "feet"),
  30277. default: true
  30278. },
  30279. {
  30280. name: "Megamacro",
  30281. height: math.unit(2, "km")
  30282. },
  30283. {
  30284. name: "Gigamacro",
  30285. height: math.unit(2000, "km")
  30286. },
  30287. {
  30288. name: "Teramacro",
  30289. height: math.unit(250000, "km")
  30290. },
  30291. ]
  30292. ))
  30293. characterMakers.push(() => makeCharacter(
  30294. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30295. {
  30296. front: {
  30297. height: math.unit(4, "meters"),
  30298. weight: math.unit(150, "kg"),
  30299. name: "Front",
  30300. image: {
  30301. source: "./media/characters/caledvwlch/front.svg",
  30302. extra: 1760 / 1551,
  30303. bottom: 28 / 1788
  30304. }
  30305. },
  30306. side: {
  30307. height: math.unit(4, "meters"),
  30308. weight: math.unit(150, "kg"),
  30309. name: "Side",
  30310. image: {
  30311. source: "./media/characters/caledvwlch/side.svg",
  30312. extra: 1605 / 1536,
  30313. bottom: 31 / 1636
  30314. }
  30315. },
  30316. back: {
  30317. height: math.unit(4, "meters"),
  30318. weight: math.unit(150, "kg"),
  30319. name: "Back",
  30320. image: {
  30321. source: "./media/characters/caledvwlch/back.svg",
  30322. extra: 1635 / 1565,
  30323. bottom: 27 / 1662
  30324. }
  30325. },
  30326. },
  30327. [
  30328. {
  30329. name: "\"Incognito\"",
  30330. height: math.unit(4, "meters")
  30331. },
  30332. {
  30333. name: "Small rampage",
  30334. height: math.unit(600, "meters")
  30335. },
  30336. {
  30337. name: "Mega",
  30338. height: math.unit(30, "km")
  30339. },
  30340. {
  30341. name: "Home-size",
  30342. height: math.unit(50, "km"),
  30343. default: true
  30344. },
  30345. {
  30346. name: "Giga",
  30347. height: math.unit(300, "km")
  30348. },
  30349. {
  30350. name: "Lounging",
  30351. height: math.unit(11000, "km")
  30352. },
  30353. {
  30354. name: "Planet snacking",
  30355. height: math.unit(2000000, "km")
  30356. },
  30357. ]
  30358. ))
  30359. characterMakers.push(() => makeCharacter(
  30360. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30361. {
  30362. front: {
  30363. height: math.unit(6, "feet"),
  30364. weight: math.unit(215, "lb"),
  30365. name: "Front",
  30366. image: {
  30367. source: "./media/characters/sapphire-svell/front.svg",
  30368. extra: 495 / 455,
  30369. bottom: 20 / 515
  30370. }
  30371. },
  30372. back: {
  30373. height: math.unit(6, "feet"),
  30374. weight: math.unit(216, "lb"),
  30375. name: "Back",
  30376. image: {
  30377. source: "./media/characters/sapphire-svell/back.svg",
  30378. extra: 497 / 477,
  30379. bottom: 7 / 504
  30380. }
  30381. },
  30382. maw: {
  30383. height: math.unit(1.57, "feet"),
  30384. name: "Maw",
  30385. image: {
  30386. source: "./media/characters/sapphire-svell/maw.svg"
  30387. }
  30388. },
  30389. foot: {
  30390. height: math.unit(1.07, "feet"),
  30391. name: "Foot",
  30392. image: {
  30393. source: "./media/characters/sapphire-svell/foot.svg"
  30394. }
  30395. },
  30396. toering: {
  30397. height: math.unit(1.7, "inch"),
  30398. name: "Toering",
  30399. image: {
  30400. source: "./media/characters/sapphire-svell/toering.svg"
  30401. }
  30402. },
  30403. },
  30404. [
  30405. {
  30406. name: "Normal",
  30407. height: math.unit(300, "feet"),
  30408. default: true
  30409. },
  30410. {
  30411. name: "Augmented",
  30412. height: math.unit(1250, "feet")
  30413. },
  30414. {
  30415. name: "Unleashed",
  30416. height: math.unit(3000, "feet")
  30417. },
  30418. ]
  30419. ))
  30420. characterMakers.push(() => makeCharacter(
  30421. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  30422. {
  30423. side: {
  30424. height: math.unit(2 + 3 / 12, "feet"),
  30425. weight: math.unit(110, "lb"),
  30426. name: "Side",
  30427. image: {
  30428. source: "./media/characters/glitch-flux/side.svg",
  30429. extra: 997 / 805,
  30430. bottom: 20 / 1017
  30431. }
  30432. },
  30433. },
  30434. [
  30435. {
  30436. name: "Normal",
  30437. height: math.unit(2 + 3 / 12, "feet"),
  30438. default: true
  30439. },
  30440. ]
  30441. ))
  30442. characterMakers.push(() => makeCharacter(
  30443. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  30444. {
  30445. front: {
  30446. height: math.unit(4, "meters"),
  30447. name: "Front",
  30448. image: {
  30449. source: "./media/characters/mid/front.svg",
  30450. extra: 507 / 476,
  30451. bottom: 17 / 524
  30452. }
  30453. },
  30454. back: {
  30455. height: math.unit(4, "meters"),
  30456. name: "Back",
  30457. image: {
  30458. source: "./media/characters/mid/back.svg",
  30459. extra: 519 / 487,
  30460. bottom: 7 / 526
  30461. }
  30462. },
  30463. stuck: {
  30464. height: math.unit(2.2, "meters"),
  30465. name: "Stuck",
  30466. image: {
  30467. source: "./media/characters/mid/stuck.svg",
  30468. extra: 1951 / 1869,
  30469. bottom: 88 / 2039
  30470. }
  30471. }
  30472. },
  30473. [
  30474. {
  30475. name: "Normal",
  30476. height: math.unit(4, "meters"),
  30477. default: true
  30478. },
  30479. {
  30480. name: "Big",
  30481. height: math.unit(10, "meters")
  30482. },
  30483. {
  30484. name: "Macro",
  30485. height: math.unit(800, "meters")
  30486. },
  30487. {
  30488. name: "Megamacro",
  30489. height: math.unit(100, "km")
  30490. },
  30491. {
  30492. name: "Overgrown",
  30493. height: math.unit(1, "parsec")
  30494. },
  30495. ]
  30496. ))
  30497. characterMakers.push(() => makeCharacter(
  30498. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  30499. {
  30500. front: {
  30501. height: math.unit(2.5, "meters"),
  30502. weight: math.unit(225, "kg"),
  30503. name: "Front",
  30504. image: {
  30505. source: "./media/characters/iris/front.svg",
  30506. extra: 3348 / 3251,
  30507. bottom: 205 / 3553
  30508. }
  30509. },
  30510. maw: {
  30511. height: math.unit(0.56, "meter"),
  30512. name: "Maw",
  30513. image: {
  30514. source: "./media/characters/iris/maw.svg"
  30515. }
  30516. },
  30517. },
  30518. [
  30519. {
  30520. name: "Mewter cat",
  30521. height: math.unit(1.2, "meters")
  30522. },
  30523. {
  30524. name: "Minimacro",
  30525. height: math.unit(2.5, "meters"),
  30526. default: true
  30527. },
  30528. {
  30529. name: "Macro",
  30530. height: math.unit(180, "meters")
  30531. },
  30532. {
  30533. name: "Megamacro",
  30534. height: math.unit(2746, "meters")
  30535. },
  30536. ]
  30537. ))
  30538. characterMakers.push(() => makeCharacter(
  30539. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  30540. {
  30541. front: {
  30542. height: math.unit(6, "feet"),
  30543. weight: math.unit(135, "lb"),
  30544. name: "Front",
  30545. image: {
  30546. source: "./media/characters/axel/front.svg",
  30547. extra: 908 / 908,
  30548. bottom: 58 / 966
  30549. }
  30550. },
  30551. side: {
  30552. height: math.unit(6, "feet"),
  30553. weight: math.unit(135, "lb"),
  30554. name: "Side",
  30555. image: {
  30556. source: "./media/characters/axel/side.svg",
  30557. extra: 958 / 958,
  30558. bottom: 11 / 969
  30559. }
  30560. },
  30561. back: {
  30562. height: math.unit(6, "feet"),
  30563. weight: math.unit(135, "lb"),
  30564. name: "Back",
  30565. image: {
  30566. source: "./media/characters/axel/back.svg",
  30567. extra: 887 / 887,
  30568. bottom: 34 / 921
  30569. }
  30570. },
  30571. head: {
  30572. height: math.unit(1.07, "feet"),
  30573. name: "Head",
  30574. image: {
  30575. source: "./media/characters/axel/head.svg"
  30576. }
  30577. },
  30578. beak: {
  30579. height: math.unit(1.4, "feet"),
  30580. name: "Beak",
  30581. image: {
  30582. source: "./media/characters/axel/beak.svg"
  30583. }
  30584. },
  30585. beakSide: {
  30586. height: math.unit(1.4, "feet"),
  30587. name: "Beak Side",
  30588. image: {
  30589. source: "./media/characters/axel/beak-side.svg"
  30590. }
  30591. },
  30592. sheath: {
  30593. height: math.unit(0.5, "feet"),
  30594. name: "Sheath",
  30595. image: {
  30596. source: "./media/characters/axel/sheath.svg"
  30597. }
  30598. },
  30599. dick: {
  30600. height: math.unit(0.98, "feet"),
  30601. name: "Dick",
  30602. image: {
  30603. source: "./media/characters/axel/dick.svg"
  30604. }
  30605. },
  30606. },
  30607. [
  30608. {
  30609. name: "Macro",
  30610. height: math.unit(68, "meters"),
  30611. default: true
  30612. },
  30613. ]
  30614. ))
  30615. characterMakers.push(() => makeCharacter(
  30616. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  30617. {
  30618. front: {
  30619. height: math.unit(3.5, "meters"),
  30620. weight: math.unit(1200, "kg"),
  30621. name: "Front",
  30622. image: {
  30623. source: "./media/characters/joanna/front.svg",
  30624. extra: 1596 / 1488,
  30625. bottom: 29 / 1625
  30626. }
  30627. },
  30628. back: {
  30629. height: math.unit(3.5, "meters"),
  30630. weight: math.unit(1200, "kg"),
  30631. name: "Back",
  30632. image: {
  30633. source: "./media/characters/joanna/back.svg",
  30634. extra: 1594 / 1495,
  30635. bottom: 26 / 1620
  30636. }
  30637. },
  30638. frontShorts: {
  30639. height: math.unit(3.5, "meters"),
  30640. weight: math.unit(1200, "kg"),
  30641. name: "Front (Shorts)",
  30642. image: {
  30643. source: "./media/characters/joanna/front-shorts.svg",
  30644. extra: 1596 / 1488,
  30645. bottom: 29 / 1625
  30646. }
  30647. },
  30648. frontBiker: {
  30649. height: math.unit(3.5, "meters"),
  30650. weight: math.unit(1200, "kg"),
  30651. name: "Front (Biker)",
  30652. image: {
  30653. source: "./media/characters/joanna/front-biker.svg",
  30654. extra: 1596 / 1488,
  30655. bottom: 29 / 1625
  30656. }
  30657. },
  30658. backBiker: {
  30659. height: math.unit(3.5, "meters"),
  30660. weight: math.unit(1200, "kg"),
  30661. name: "Back (Biker)",
  30662. image: {
  30663. source: "./media/characters/joanna/back-biker.svg",
  30664. extra: 1594 / 1495,
  30665. bottom: 88 / 1682
  30666. }
  30667. },
  30668. bikeLeft: {
  30669. height: math.unit(2.4, "meters"),
  30670. weight: math.unit(1600, "kg"),
  30671. name: "Bike (Left)",
  30672. image: {
  30673. source: "./media/characters/joanna/bike-left.svg",
  30674. extra: 720 / 720,
  30675. bottom: 8 / 728
  30676. }
  30677. },
  30678. bikeRight: {
  30679. height: math.unit(2.4, "meters"),
  30680. weight: math.unit(1600, "kg"),
  30681. name: "Bike (Right)",
  30682. image: {
  30683. source: "./media/characters/joanna/bike-right.svg",
  30684. extra: 720 / 720,
  30685. bottom: 8 / 728
  30686. }
  30687. },
  30688. },
  30689. [
  30690. {
  30691. name: "Incognito",
  30692. height: math.unit(3.5, "meters")
  30693. },
  30694. {
  30695. name: "Casual Big",
  30696. height: math.unit(200, "meters")
  30697. },
  30698. {
  30699. name: "Macro",
  30700. height: math.unit(600, "meters")
  30701. },
  30702. {
  30703. name: "Original",
  30704. height: math.unit(20, "km"),
  30705. default: true
  30706. },
  30707. {
  30708. name: "Giga",
  30709. height: math.unit(400, "km")
  30710. },
  30711. {
  30712. name: "Lounging",
  30713. height: math.unit(1500, "km")
  30714. },
  30715. {
  30716. name: "Planetary",
  30717. height: math.unit(200000, "km")
  30718. },
  30719. ]
  30720. ))
  30721. characterMakers.push(() => makeCharacter(
  30722. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  30723. {
  30724. front: {
  30725. height: math.unit(6, "feet"),
  30726. weight: math.unit(150, "lb"),
  30727. name: "Front",
  30728. image: {
  30729. source: "./media/characters/hugo-sigil/front.svg",
  30730. extra: 522 / 500,
  30731. bottom: 2 / 524
  30732. }
  30733. },
  30734. back: {
  30735. height: math.unit(6, "feet"),
  30736. weight: math.unit(150, "lb"),
  30737. name: "Back",
  30738. image: {
  30739. source: "./media/characters/hugo-sigil/back.svg",
  30740. extra: 519 / 495,
  30741. bottom: 5 / 524
  30742. }
  30743. },
  30744. maw: {
  30745. height: math.unit(1.4, "feet"),
  30746. weight: math.unit(150, "lb"),
  30747. name: "Maw",
  30748. image: {
  30749. source: "./media/characters/hugo-sigil/maw.svg"
  30750. }
  30751. },
  30752. feet: {
  30753. height: math.unit(1.56, "feet"),
  30754. weight: math.unit(150, "lb"),
  30755. name: "Feet",
  30756. image: {
  30757. source: "./media/characters/hugo-sigil/feet.svg",
  30758. extra: 177 / 177,
  30759. bottom: 12 / 189
  30760. }
  30761. },
  30762. },
  30763. [
  30764. {
  30765. name: "Normal",
  30766. height: math.unit(6, "feet")
  30767. },
  30768. {
  30769. name: "Macro",
  30770. height: math.unit(200, "feet"),
  30771. default: true
  30772. },
  30773. ]
  30774. ))
  30775. characterMakers.push(() => makeCharacter(
  30776. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  30777. {
  30778. front: {
  30779. height: math.unit(6, "feet"),
  30780. weight: math.unit(150, "lb"),
  30781. name: "Front",
  30782. image: {
  30783. source: "./media/characters/peri/front.svg",
  30784. extra: 2354 / 2233,
  30785. bottom: 49 / 2403
  30786. }
  30787. },
  30788. },
  30789. [
  30790. {
  30791. name: "Really Small",
  30792. height: math.unit(1, "nm")
  30793. },
  30794. {
  30795. name: "Micro",
  30796. height: math.unit(4, "inches")
  30797. },
  30798. {
  30799. name: "Normal",
  30800. height: math.unit(7, "inches"),
  30801. default: true
  30802. },
  30803. {
  30804. name: "Macro",
  30805. height: math.unit(400, "feet")
  30806. },
  30807. {
  30808. name: "Megamacro",
  30809. height: math.unit(100, "miles")
  30810. },
  30811. ]
  30812. ))
  30813. characterMakers.push(() => makeCharacter(
  30814. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  30815. {
  30816. frontSlim: {
  30817. height: math.unit(7, "feet"),
  30818. name: "Front (Slim)",
  30819. image: {
  30820. source: "./media/characters/issilora/front-slim.svg",
  30821. extra: 529 / 449,
  30822. bottom: 53 / 582
  30823. }
  30824. },
  30825. sideSlim: {
  30826. height: math.unit(7, "feet"),
  30827. name: "Side (Slim)",
  30828. image: {
  30829. source: "./media/characters/issilora/side-slim.svg",
  30830. extra: 570 / 480,
  30831. bottom: 30 / 600
  30832. }
  30833. },
  30834. backSlim: {
  30835. height: math.unit(7, "feet"),
  30836. name: "Back (Slim)",
  30837. image: {
  30838. source: "./media/characters/issilora/back-slim.svg",
  30839. extra: 537 / 455,
  30840. bottom: 46 / 583
  30841. }
  30842. },
  30843. frontBuff: {
  30844. height: math.unit(7, "feet"),
  30845. name: "Front (Buff)",
  30846. image: {
  30847. source: "./media/characters/issilora/front-buff.svg",
  30848. extra: 2310 / 2035,
  30849. bottom: 335 / 2645
  30850. }
  30851. },
  30852. head: {
  30853. height: math.unit(1.94, "feet"),
  30854. name: "Head",
  30855. image: {
  30856. source: "./media/characters/issilora/head.svg"
  30857. }
  30858. },
  30859. },
  30860. [
  30861. {
  30862. name: "Minimum",
  30863. height: math.unit(7, "feet")
  30864. },
  30865. {
  30866. name: "Comfortable",
  30867. height: math.unit(17, "feet")
  30868. },
  30869. {
  30870. name: "Fun Size",
  30871. height: math.unit(47, "feet")
  30872. },
  30873. {
  30874. name: "Natural Macro",
  30875. height: math.unit(137, "feet"),
  30876. default: true
  30877. },
  30878. {
  30879. name: "Maximum Kaiju",
  30880. height: math.unit(397, "feet")
  30881. },
  30882. ]
  30883. ))
  30884. characterMakers.push(() => makeCharacter(
  30885. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  30886. {
  30887. front: {
  30888. height: math.unit(50 + 9/12, "feet"),
  30889. weight: math.unit(32.8, "tons"),
  30890. name: "Front",
  30891. image: {
  30892. source: "./media/characters/irb'iiritaahn/front.svg",
  30893. extra: 1878/1826,
  30894. bottom: 326/2204
  30895. }
  30896. },
  30897. back: {
  30898. height: math.unit(50 + 9/12, "feet"),
  30899. weight: math.unit(32.8, "tons"),
  30900. name: "Back",
  30901. image: {
  30902. source: "./media/characters/irb'iiritaahn/back.svg",
  30903. extra: 2052/2018,
  30904. bottom: 152/2204
  30905. }
  30906. },
  30907. head: {
  30908. height: math.unit(12.86, "feet"),
  30909. name: "Head",
  30910. image: {
  30911. source: "./media/characters/irb'iiritaahn/head.svg"
  30912. }
  30913. },
  30914. maw: {
  30915. height: math.unit(9.66, "feet"),
  30916. name: "Maw",
  30917. image: {
  30918. source: "./media/characters/irb'iiritaahn/maw.svg"
  30919. }
  30920. },
  30921. frontDick: {
  30922. height: math.unit(8.78461, "feet"),
  30923. name: "Front Dick",
  30924. image: {
  30925. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30926. }
  30927. },
  30928. rearDick: {
  30929. height: math.unit(8.78461, "feet"),
  30930. name: "Rear Dick",
  30931. image: {
  30932. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30933. }
  30934. },
  30935. rearDickUnfolded: {
  30936. height: math.unit(8.78, "feet"),
  30937. name: "Rear Dick (Unfolded)",
  30938. image: {
  30939. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30940. }
  30941. },
  30942. wings: {
  30943. height: math.unit(43, "feet"),
  30944. name: "Wings",
  30945. image: {
  30946. source: "./media/characters/irb'iiritaahn/wings.svg"
  30947. }
  30948. },
  30949. },
  30950. [
  30951. {
  30952. name: "Macro",
  30953. height: math.unit(50 + 9/12, "feet"),
  30954. default: true
  30955. },
  30956. ]
  30957. ))
  30958. characterMakers.push(() => makeCharacter(
  30959. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30960. {
  30961. front: {
  30962. height: math.unit(205, "cm"),
  30963. weight: math.unit(102, "kg"),
  30964. name: "Front",
  30965. image: {
  30966. source: "./media/characters/irbisgreif/front.svg",
  30967. extra: 785/706,
  30968. bottom: 13/798
  30969. }
  30970. },
  30971. back: {
  30972. height: math.unit(205, "cm"),
  30973. weight: math.unit(102, "kg"),
  30974. name: "Back",
  30975. image: {
  30976. source: "./media/characters/irbisgreif/back.svg",
  30977. extra: 713/701,
  30978. bottom: 26/739
  30979. }
  30980. },
  30981. frontDressed: {
  30982. height: math.unit(216, "cm"),
  30983. weight: math.unit(102, "kg"),
  30984. name: "Front-dressed",
  30985. image: {
  30986. source: "./media/characters/irbisgreif/front-dressed.svg",
  30987. extra: 902/776,
  30988. bottom: 14/916
  30989. }
  30990. },
  30991. sideDressed: {
  30992. height: math.unit(195, "cm"),
  30993. weight: math.unit(102, "kg"),
  30994. name: "Side-dressed",
  30995. image: {
  30996. source: "./media/characters/irbisgreif/side-dressed.svg",
  30997. extra: 788/688,
  30998. bottom: 21/809
  30999. }
  31000. },
  31001. backDressed: {
  31002. height: math.unit(216, "cm"),
  31003. weight: math.unit(102, "kg"),
  31004. name: "Back-dressed",
  31005. image: {
  31006. source: "./media/characters/irbisgreif/back-dressed.svg",
  31007. extra: 901/783,
  31008. bottom: 10/911
  31009. }
  31010. },
  31011. dick: {
  31012. height: math.unit(0.49, "feet"),
  31013. name: "Dick",
  31014. image: {
  31015. source: "./media/characters/irbisgreif/dick.svg"
  31016. }
  31017. },
  31018. wingTop: {
  31019. height: math.unit(1.93 , "feet"),
  31020. name: "Wing-top",
  31021. image: {
  31022. source: "./media/characters/irbisgreif/wing-top.svg"
  31023. }
  31024. },
  31025. wingBottom: {
  31026. height: math.unit(1.93 , "feet"),
  31027. name: "Wing-bottom",
  31028. image: {
  31029. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31030. }
  31031. },
  31032. },
  31033. [
  31034. {
  31035. name: "Normal",
  31036. height: math.unit(216, "cm"),
  31037. default: true
  31038. },
  31039. ]
  31040. ))
  31041. characterMakers.push(() => makeCharacter(
  31042. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31043. {
  31044. front: {
  31045. height: math.unit(6, "feet"),
  31046. weight: math.unit(150, "lb"),
  31047. name: "Front",
  31048. image: {
  31049. source: "./media/characters/pride/front.svg",
  31050. extra: 1299/1230,
  31051. bottom: 18/1317
  31052. }
  31053. },
  31054. },
  31055. [
  31056. {
  31057. name: "Normal",
  31058. height: math.unit(7, "feet")
  31059. },
  31060. {
  31061. name: "Mini-macro",
  31062. height: math.unit(11, "feet")
  31063. },
  31064. {
  31065. name: "Macro",
  31066. height: math.unit(15, "meters"),
  31067. default: true
  31068. },
  31069. {
  31070. name: "Macro+",
  31071. height: math.unit(40, "meters")
  31072. },
  31073. ]
  31074. ))
  31075. characterMakers.push(() => makeCharacter(
  31076. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31077. {
  31078. front: {
  31079. height: math.unit(4 + 2 / 12, "feet"),
  31080. weight: math.unit(95, "lb"),
  31081. name: "Front",
  31082. image: {
  31083. source: "./media/characters/vaelophis-nyx/front.svg",
  31084. extra: 2532/2330,
  31085. bottom: 0/2532
  31086. }
  31087. },
  31088. back: {
  31089. height: math.unit(4 + 2 / 12, "feet"),
  31090. weight: math.unit(95, "lb"),
  31091. name: "Back",
  31092. image: {
  31093. source: "./media/characters/vaelophis-nyx/back.svg",
  31094. extra: 2484/2361,
  31095. bottom: 0/2484
  31096. }
  31097. },
  31098. feralSide: {
  31099. height: math.unit(2 + 1/12, "feet"),
  31100. weight: math.unit(20, "lb"),
  31101. name: "Feral (Side)",
  31102. image: {
  31103. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31104. extra: 1721/1581,
  31105. bottom: 70/1791
  31106. }
  31107. },
  31108. feralLazing: {
  31109. height: math.unit(1.08, "feet"),
  31110. weight: math.unit(20, "lb"),
  31111. name: "Feral (Lazing)",
  31112. image: {
  31113. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31114. extra: 822/822,
  31115. bottom: 248/1070
  31116. }
  31117. },
  31118. ear: {
  31119. height: math.unit(0.416, "feet"),
  31120. name: "Ear",
  31121. image: {
  31122. source: "./media/characters/vaelophis-nyx/ear.svg"
  31123. }
  31124. },
  31125. eye: {
  31126. height: math.unit(0.0748, "feet"),
  31127. name: "Eye",
  31128. image: {
  31129. source: "./media/characters/vaelophis-nyx/eye.svg"
  31130. }
  31131. },
  31132. mouth: {
  31133. height: math.unit(0.378, "feet"),
  31134. name: "Mouth",
  31135. image: {
  31136. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31137. }
  31138. },
  31139. spade: {
  31140. height: math.unit(0.55, "feet"),
  31141. name: "Spade",
  31142. image: {
  31143. source: "./media/characters/vaelophis-nyx/spade.svg"
  31144. }
  31145. },
  31146. },
  31147. [
  31148. {
  31149. name: "Normal",
  31150. height: math.unit(4 + 2/12, "feet"),
  31151. default: true
  31152. },
  31153. ]
  31154. ))
  31155. characterMakers.push(() => makeCharacter(
  31156. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31157. {
  31158. front: {
  31159. height: math.unit(7, "feet"),
  31160. weight: math.unit(231, "lb"),
  31161. name: "Front",
  31162. image: {
  31163. source: "./media/characters/flux/front.svg",
  31164. extra: 919/871,
  31165. bottom: 0/919
  31166. }
  31167. },
  31168. back: {
  31169. height: math.unit(7, "feet"),
  31170. weight: math.unit(231, "lb"),
  31171. name: "Back",
  31172. image: {
  31173. source: "./media/characters/flux/back.svg",
  31174. extra: 1040/992,
  31175. bottom: 0/1040
  31176. }
  31177. },
  31178. frontDressed: {
  31179. height: math.unit(7, "feet"),
  31180. weight: math.unit(231, "lb"),
  31181. name: "Front (Dressed)",
  31182. image: {
  31183. source: "./media/characters/flux/front-dressed.svg",
  31184. extra: 919/871,
  31185. bottom: 0/919
  31186. }
  31187. },
  31188. feralSide: {
  31189. height: math.unit(5, "feet"),
  31190. weight: math.unit(150, "lb"),
  31191. name: "Feral (Side)",
  31192. image: {
  31193. source: "./media/characters/flux/feral-side.svg",
  31194. extra: 598/528,
  31195. bottom: 28/626
  31196. }
  31197. },
  31198. head: {
  31199. height: math.unit(1.585, "feet"),
  31200. name: "Head",
  31201. image: {
  31202. source: "./media/characters/flux/head.svg"
  31203. }
  31204. },
  31205. headSide: {
  31206. height: math.unit(1.74, "feet"),
  31207. name: "Head (Side)",
  31208. image: {
  31209. source: "./media/characters/flux/head-side.svg"
  31210. }
  31211. },
  31212. headSideFire: {
  31213. height: math.unit(1.76, "feet"),
  31214. name: "Head (Side, Fire)",
  31215. image: {
  31216. source: "./media/characters/flux/head-side-fire.svg"
  31217. }
  31218. },
  31219. },
  31220. [
  31221. {
  31222. name: "Normal",
  31223. height: math.unit(7, "feet"),
  31224. default: true
  31225. },
  31226. ]
  31227. ))
  31228. characterMakers.push(() => makeCharacter(
  31229. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31230. {
  31231. front: {
  31232. height: math.unit(9, "feet"),
  31233. weight: math.unit(1012, "lb"),
  31234. name: "Front",
  31235. image: {
  31236. source: "./media/characters/ulfra-lupae/front.svg",
  31237. extra: 1083/1011,
  31238. bottom: 67/1150
  31239. }
  31240. },
  31241. },
  31242. [
  31243. {
  31244. name: "Micro",
  31245. height: math.unit(6, "inches")
  31246. },
  31247. {
  31248. name: "Socializing",
  31249. height: math.unit(6 + 5/12, "feet")
  31250. },
  31251. {
  31252. name: "Normal",
  31253. height: math.unit(9, "feet"),
  31254. default: true
  31255. },
  31256. {
  31257. name: "Macro",
  31258. height: math.unit(150, "feet")
  31259. },
  31260. ]
  31261. ))
  31262. characterMakers.push(() => makeCharacter(
  31263. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31264. {
  31265. front: {
  31266. height: math.unit(5 + 2/12, "feet"),
  31267. weight: math.unit(120, "lb"),
  31268. name: "Front",
  31269. image: {
  31270. source: "./media/characters/timber/front.svg",
  31271. extra: 2814/2705,
  31272. bottom: 181/2995
  31273. }
  31274. },
  31275. },
  31276. [
  31277. {
  31278. name: "Normal",
  31279. height: math.unit(5 + 2/12, "feet"),
  31280. default: true
  31281. },
  31282. ]
  31283. ))
  31284. characterMakers.push(() => makeCharacter(
  31285. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31286. {
  31287. front: {
  31288. height: math.unit(5 + 7/12, "feet"),
  31289. weight: math.unit(220, "lb"),
  31290. name: "Front",
  31291. image: {
  31292. source: "./media/characters/nicki/front.svg",
  31293. extra: 453/419,
  31294. bottom: 7/460
  31295. }
  31296. },
  31297. frontAlt: {
  31298. height: math.unit(5 + 7/12, "feet"),
  31299. weight: math.unit(220, "lb"),
  31300. name: "Front-alt",
  31301. image: {
  31302. source: "./media/characters/nicki/front-alt.svg",
  31303. extra: 435/411,
  31304. bottom: 12/447
  31305. }
  31306. },
  31307. back: {
  31308. height: math.unit(5 + 7/12, "feet"),
  31309. weight: math.unit(220, "lb"),
  31310. name: "Back",
  31311. image: {
  31312. source: "./media/characters/nicki/back.svg",
  31313. extra: 440/413,
  31314. bottom: 19/459
  31315. }
  31316. },
  31317. taur: {
  31318. height: math.unit(7 + 6/12, "feet"),
  31319. weight: math.unit(700, "lb"),
  31320. name: "Taur",
  31321. image: {
  31322. source: "./media/characters/nicki/taur.svg",
  31323. extra: 975/773,
  31324. bottom: 0/975
  31325. }
  31326. },
  31327. frontNsfw: {
  31328. height: math.unit(5 + 7/12, "feet"),
  31329. weight: math.unit(220, "lb"),
  31330. name: "Front (NSFW)",
  31331. image: {
  31332. source: "./media/characters/nicki/front-nsfw.svg",
  31333. extra: 453/419,
  31334. bottom: 7/460
  31335. }
  31336. },
  31337. frontNsfwAlt: {
  31338. height: math.unit(5 + 7/12, "feet"),
  31339. weight: math.unit(220, "lb"),
  31340. name: "Front (Alt, NSFW)",
  31341. image: {
  31342. source: "./media/characters/nicki/front-alt-nsfw.svg",
  31343. extra: 435/411,
  31344. bottom: 12/447
  31345. }
  31346. },
  31347. backNsfw: {
  31348. height: math.unit(5 + 7/12, "feet"),
  31349. weight: math.unit(220, "lb"),
  31350. name: "Back (NSFW)",
  31351. image: {
  31352. source: "./media/characters/nicki/back-nsfw.svg",
  31353. extra: 440/413,
  31354. bottom: 19/459
  31355. }
  31356. },
  31357. head: {
  31358. height: math.unit(2.1, "feet"),
  31359. name: "Head",
  31360. image: {
  31361. source: "./media/characters/nicki/head.svg"
  31362. }
  31363. },
  31364. paw: {
  31365. height: math.unit(1.88, "feet"),
  31366. name: "Paw",
  31367. image: {
  31368. source: "./media/characters/nicki/paw.svg"
  31369. }
  31370. },
  31371. },
  31372. [
  31373. {
  31374. name: "Normal",
  31375. height: math.unit(5 + 7/12, "feet"),
  31376. default: true
  31377. },
  31378. ]
  31379. ))
  31380. characterMakers.push(() => makeCharacter(
  31381. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31382. {
  31383. front: {
  31384. height: math.unit(7 + 10/12, "feet"),
  31385. weight: math.unit(3.5, "tons"),
  31386. name: "Front",
  31387. image: {
  31388. source: "./media/characters/lee/front.svg",
  31389. extra: 1773/1615,
  31390. bottom: 86/1859
  31391. }
  31392. },
  31393. hand: {
  31394. height: math.unit(1.78, "feet"),
  31395. name: "Hand",
  31396. image: {
  31397. source: "./media/characters/lee/hand.svg"
  31398. }
  31399. },
  31400. maw: {
  31401. height: math.unit(1.18, "feet"),
  31402. name: "Maw",
  31403. image: {
  31404. source: "./media/characters/lee/maw.svg"
  31405. }
  31406. },
  31407. },
  31408. [
  31409. {
  31410. name: "Normal",
  31411. height: math.unit(7 + 10/12, "feet"),
  31412. default: true
  31413. },
  31414. ]
  31415. ))
  31416. characterMakers.push(() => makeCharacter(
  31417. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  31418. {
  31419. front: {
  31420. height: math.unit(9, "feet"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/guti/front.svg",
  31424. extra: 4551/4355,
  31425. bottom: 123/4674
  31426. }
  31427. },
  31428. tongue: {
  31429. height: math.unit(1, "feet"),
  31430. name: "Tongue",
  31431. image: {
  31432. source: "./media/characters/guti/tongue.svg"
  31433. }
  31434. },
  31435. paw: {
  31436. height: math.unit(1.18, "feet"),
  31437. name: "Paw",
  31438. image: {
  31439. source: "./media/characters/guti/paw.svg"
  31440. }
  31441. },
  31442. },
  31443. [
  31444. {
  31445. name: "Normal",
  31446. height: math.unit(9, "feet"),
  31447. default: true
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  31453. {
  31454. side: {
  31455. height: math.unit(5, "meters"),
  31456. name: "Side",
  31457. image: {
  31458. source: "./media/characters/vesper/side.svg",
  31459. extra: 1605/1518,
  31460. bottom: 0/1605
  31461. }
  31462. },
  31463. },
  31464. [
  31465. {
  31466. name: "Small",
  31467. height: math.unit(5, "meters")
  31468. },
  31469. {
  31470. name: "Sage",
  31471. height: math.unit(100, "meters"),
  31472. default: true
  31473. },
  31474. {
  31475. name: "Fun Size",
  31476. height: math.unit(600, "meters")
  31477. },
  31478. {
  31479. name: "Goddess",
  31480. height: math.unit(20000, "km")
  31481. },
  31482. {
  31483. name: "Maximum",
  31484. height: math.unit(5, "galaxies")
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(6 + 3/12, "feet"),
  31493. weight: math.unit(190, "lb"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/gawain/front.svg",
  31497. extra: 2222/2139,
  31498. bottom: 90/2312
  31499. }
  31500. },
  31501. back: {
  31502. height: math.unit(6 + 3/12, "feet"),
  31503. weight: math.unit(190, "lb"),
  31504. name: "Back",
  31505. image: {
  31506. source: "./media/characters/gawain/back.svg",
  31507. extra: 2199/2111,
  31508. bottom: 73/2272
  31509. }
  31510. },
  31511. },
  31512. [
  31513. {
  31514. name: "Normal",
  31515. height: math.unit(6 + 3/12, "feet"),
  31516. default: true
  31517. },
  31518. ]
  31519. ))
  31520. characterMakers.push(() => makeCharacter(
  31521. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  31522. {
  31523. side: {
  31524. height: math.unit(3.5, "meters"),
  31525. weight: math.unit(16000, "lb"),
  31526. name: "Side",
  31527. image: {
  31528. source: "./media/characters/dascalti/side.svg",
  31529. extra: 392/273,
  31530. bottom: 47/439
  31531. }
  31532. },
  31533. breath: {
  31534. height: math.unit(7.4, "feet"),
  31535. name: "Breath",
  31536. image: {
  31537. source: "./media/characters/dascalti/breath.svg"
  31538. }
  31539. },
  31540. fed: {
  31541. height: math.unit(3.6, "meters"),
  31542. weight: math.unit(16000, "lb"),
  31543. name: "Fed",
  31544. image: {
  31545. source: "./media/characters/dascalti/fed.svg",
  31546. extra: 1419/820,
  31547. bottom: 95/1514
  31548. }
  31549. },
  31550. },
  31551. [
  31552. {
  31553. name: "Normal",
  31554. height: math.unit(3.5, "meters"),
  31555. default: true
  31556. },
  31557. ]
  31558. ))
  31559. characterMakers.push(() => makeCharacter(
  31560. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  31561. {
  31562. front: {
  31563. height: math.unit(3 + 5/12, "feet"),
  31564. name: "Front",
  31565. image: {
  31566. source: "./media/characters/mauve/front.svg",
  31567. extra: 1126/1033,
  31568. bottom: 65/1191
  31569. }
  31570. },
  31571. side: {
  31572. height: math.unit(3 + 5/12, "feet"),
  31573. name: "Side",
  31574. image: {
  31575. source: "./media/characters/mauve/side.svg",
  31576. extra: 1089/1001,
  31577. bottom: 29/1118
  31578. }
  31579. },
  31580. back: {
  31581. height: math.unit(3 + 5/12, "feet"),
  31582. name: "Back",
  31583. image: {
  31584. source: "./media/characters/mauve/back.svg",
  31585. extra: 1173/1053,
  31586. bottom: 109/1282
  31587. }
  31588. },
  31589. },
  31590. [
  31591. {
  31592. name: "Normal",
  31593. height: math.unit(3 + 5/12, "feet"),
  31594. default: true
  31595. },
  31596. ]
  31597. ))
  31598. characterMakers.push(() => makeCharacter(
  31599. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  31600. {
  31601. front: {
  31602. height: math.unit(6 + 3/12, "feet"),
  31603. weight: math.unit(430, "lb"),
  31604. name: "Front",
  31605. image: {
  31606. source: "./media/characters/carlos/front.svg",
  31607. extra: 1964/1913,
  31608. bottom: 70/2034
  31609. }
  31610. },
  31611. },
  31612. [
  31613. {
  31614. name: "Normal",
  31615. height: math.unit(6 + 3/12, "feet"),
  31616. default: true
  31617. },
  31618. ]
  31619. ))
  31620. characterMakers.push(() => makeCharacter(
  31621. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  31622. {
  31623. back: {
  31624. height: math.unit(5 + 10/12, "feet"),
  31625. weight: math.unit(200, "lb"),
  31626. name: "Back",
  31627. image: {
  31628. source: "./media/characters/jax/back.svg",
  31629. extra: 764/739,
  31630. bottom: 25/789
  31631. }
  31632. },
  31633. },
  31634. [
  31635. {
  31636. name: "Normal",
  31637. height: math.unit(5 + 10/12, "feet"),
  31638. default: true
  31639. },
  31640. ]
  31641. ))
  31642. characterMakers.push(() => makeCharacter(
  31643. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  31644. {
  31645. front: {
  31646. height: math.unit(8, "feet"),
  31647. weight: math.unit(250, "lb"),
  31648. name: "Front",
  31649. image: {
  31650. source: "./media/characters/eikthynir/front.svg",
  31651. extra: 1332/1166,
  31652. bottom: 82/1414
  31653. }
  31654. },
  31655. back: {
  31656. height: math.unit(8, "feet"),
  31657. weight: math.unit(250, "lb"),
  31658. name: "Back",
  31659. image: {
  31660. source: "./media/characters/eikthynir/back.svg",
  31661. extra: 1342/1190,
  31662. bottom: 19/1361
  31663. }
  31664. },
  31665. dick: {
  31666. height: math.unit(2.35, "feet"),
  31667. name: "Dick",
  31668. image: {
  31669. source: "./media/characters/eikthynir/dick.svg"
  31670. }
  31671. },
  31672. },
  31673. [
  31674. {
  31675. name: "Normal",
  31676. height: math.unit(8, "feet"),
  31677. default: true
  31678. },
  31679. ]
  31680. ))
  31681. characterMakers.push(() => makeCharacter(
  31682. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  31683. {
  31684. front: {
  31685. height: math.unit(99, "meters"),
  31686. weight: math.unit(13000, "tons"),
  31687. name: "Front",
  31688. image: {
  31689. source: "./media/characters/zlmos/front.svg",
  31690. extra: 2202/1992,
  31691. bottom: 315/2517
  31692. }
  31693. },
  31694. },
  31695. [
  31696. {
  31697. name: "Macro",
  31698. height: math.unit(99, "meters"),
  31699. default: true
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  31705. {
  31706. front: {
  31707. height: math.unit(6 + 5/12, "feet"),
  31708. name: "Front",
  31709. image: {
  31710. source: "./media/characters/purri/front.svg",
  31711. extra: 1698/1610,
  31712. bottom: 32/1730
  31713. }
  31714. },
  31715. frontAlt: {
  31716. height: math.unit(6 + 5/12, "feet"),
  31717. name: "Front (Alt)",
  31718. image: {
  31719. source: "./media/characters/purri/front-alt.svg",
  31720. extra: 450/420,
  31721. bottom: 26/476
  31722. }
  31723. },
  31724. boots: {
  31725. height: math.unit(5.5, "feet"),
  31726. name: "Boots",
  31727. image: {
  31728. source: "./media/characters/purri/boots.svg",
  31729. extra: 905/853,
  31730. bottom: 18/923
  31731. }
  31732. },
  31733. lying: {
  31734. height: math.unit(2, "feet"),
  31735. name: "Lying",
  31736. image: {
  31737. source: "./media/characters/purri/lying.svg",
  31738. extra: 940/843,
  31739. bottom: 146/1086
  31740. }
  31741. },
  31742. devious: {
  31743. height: math.unit(1.77, "feet"),
  31744. name: "Devious",
  31745. image: {
  31746. source: "./media/characters/purri/devious.svg",
  31747. extra: 1440/1155,
  31748. bottom: 147/1587
  31749. }
  31750. },
  31751. bean: {
  31752. height: math.unit(1.94, "feet"),
  31753. name: "Bean",
  31754. image: {
  31755. source: "./media/characters/purri/bean.svg"
  31756. }
  31757. },
  31758. },
  31759. [
  31760. {
  31761. name: "Micro",
  31762. height: math.unit(1, "mm")
  31763. },
  31764. {
  31765. name: "Normal",
  31766. height: math.unit(6 + 5/12, "feet"),
  31767. default: true
  31768. },
  31769. {
  31770. name: "Macro :3c",
  31771. height: math.unit(2, "miles")
  31772. },
  31773. ]
  31774. ))
  31775. characterMakers.push(() => makeCharacter(
  31776. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  31777. {
  31778. front: {
  31779. height: math.unit(6 + 2/12, "feet"),
  31780. weight: math.unit(250, "lb"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/moonlight/front.svg",
  31784. extra: 1044/908,
  31785. bottom: 56/1100
  31786. }
  31787. },
  31788. feral: {
  31789. height: math.unit(3 + 1/12, "feet"),
  31790. weight: math.unit(50, "kg"),
  31791. name: "Feral",
  31792. image: {
  31793. source: "./media/characters/moonlight/feral.svg",
  31794. extra: 3705/2791,
  31795. bottom: 145/3850
  31796. }
  31797. },
  31798. paw: {
  31799. height: math.unit(1, "feet"),
  31800. name: "Paw",
  31801. image: {
  31802. source: "./media/characters/moonlight/paw.svg"
  31803. }
  31804. },
  31805. paws: {
  31806. height: math.unit(0.98, "feet"),
  31807. name: "Paws",
  31808. image: {
  31809. source: "./media/characters/moonlight/paws.svg",
  31810. extra: 939/939,
  31811. bottom: 50/989
  31812. }
  31813. },
  31814. mouth: {
  31815. height: math.unit(0.48, "feet"),
  31816. name: "Mouth",
  31817. image: {
  31818. source: "./media/characters/moonlight/mouth.svg"
  31819. }
  31820. },
  31821. dick: {
  31822. height: math.unit(1.46, "feet"),
  31823. name: "Dick",
  31824. image: {
  31825. source: "./media/characters/moonlight/dick.svg"
  31826. }
  31827. },
  31828. },
  31829. [
  31830. {
  31831. name: "Normal",
  31832. height: math.unit(6 + 2/12, "feet"),
  31833. default: true
  31834. },
  31835. {
  31836. name: "Macro",
  31837. height: math.unit(300, "feet")
  31838. },
  31839. {
  31840. name: "Macro+",
  31841. height: math.unit(1, "mile")
  31842. },
  31843. {
  31844. name: "Mt. Moon",
  31845. height: math.unit(5, "miles")
  31846. },
  31847. {
  31848. name: "Megamacro",
  31849. height: math.unit(15, "miles")
  31850. },
  31851. ]
  31852. ))
  31853. characterMakers.push(() => makeCharacter(
  31854. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  31855. {
  31856. back: {
  31857. height: math.unit(6, "feet"),
  31858. weight: math.unit(150, "lb"),
  31859. name: "Back",
  31860. image: {
  31861. source: "./media/characters/sylen/back.svg",
  31862. extra: 1335/1273,
  31863. bottom: 107/1442
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Normal",
  31870. height: math.unit(5 + 5/12, "feet")
  31871. },
  31872. {
  31873. name: "Megamacro",
  31874. height: math.unit(3, "miles"),
  31875. default: true
  31876. },
  31877. ]
  31878. ))
  31879. characterMakers.push(() => makeCharacter(
  31880. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  31881. {
  31882. front: {
  31883. height: math.unit(6, "feet"),
  31884. weight: math.unit(190, "lb"),
  31885. name: "Front",
  31886. image: {
  31887. source: "./media/characters/huttser/front.svg",
  31888. extra: 1152/1058,
  31889. bottom: 23/1175
  31890. }
  31891. },
  31892. side: {
  31893. height: math.unit(6, "feet"),
  31894. weight: math.unit(190, "lb"),
  31895. name: "Side",
  31896. image: {
  31897. source: "./media/characters/huttser/side.svg",
  31898. extra: 1174/1065,
  31899. bottom: 18/1192
  31900. }
  31901. },
  31902. back: {
  31903. height: math.unit(6, "feet"),
  31904. weight: math.unit(190, "lb"),
  31905. name: "Back",
  31906. image: {
  31907. source: "./media/characters/huttser/back.svg",
  31908. extra: 1158/1056,
  31909. bottom: 12/1170
  31910. }
  31911. },
  31912. },
  31913. [
  31914. ]
  31915. ))
  31916. characterMakers.push(() => makeCharacter(
  31917. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31918. {
  31919. side: {
  31920. height: math.unit(12 + 9/12, "feet"),
  31921. weight: math.unit(15000, "lb"),
  31922. name: "Side",
  31923. image: {
  31924. source: "./media/characters/faan/side.svg",
  31925. extra: 2747/2697,
  31926. bottom: 0/2747
  31927. }
  31928. },
  31929. front: {
  31930. height: math.unit(12 + 9/12, "feet"),
  31931. weight: math.unit(15000, "lb"),
  31932. name: "Front",
  31933. image: {
  31934. source: "./media/characters/faan/front.svg",
  31935. extra: 607/571,
  31936. bottom: 24/631
  31937. }
  31938. },
  31939. head: {
  31940. height: math.unit(2.85, "feet"),
  31941. name: "Head",
  31942. image: {
  31943. source: "./media/characters/faan/head.svg"
  31944. }
  31945. },
  31946. headAlt: {
  31947. height: math.unit(3.13, "feet"),
  31948. name: "Head-alt",
  31949. image: {
  31950. source: "./media/characters/faan/head-alt.svg"
  31951. }
  31952. },
  31953. },
  31954. [
  31955. {
  31956. name: "Normal",
  31957. height: math.unit(12 + 9/12, "feet"),
  31958. default: true
  31959. },
  31960. ]
  31961. ))
  31962. characterMakers.push(() => makeCharacter(
  31963. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31964. {
  31965. front: {
  31966. height: math.unit(6, "feet"),
  31967. weight: math.unit(300, "lb"),
  31968. name: "Front",
  31969. image: {
  31970. source: "./media/characters/tanio/front.svg",
  31971. extra: 711/673,
  31972. bottom: 25/736
  31973. }
  31974. },
  31975. },
  31976. [
  31977. {
  31978. name: "Normal",
  31979. height: math.unit(6, "feet"),
  31980. default: true
  31981. },
  31982. ]
  31983. ))
  31984. characterMakers.push(() => makeCharacter(
  31985. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31986. {
  31987. front: {
  31988. height: math.unit(3, "inches"),
  31989. name: "Front",
  31990. image: {
  31991. source: "./media/characters/noboru/front.svg",
  31992. extra: 1039/932,
  31993. bottom: 18/1057
  31994. }
  31995. },
  31996. },
  31997. [
  31998. {
  31999. name: "Micro",
  32000. height: math.unit(3, "inches"),
  32001. default: true
  32002. },
  32003. ]
  32004. ))
  32005. characterMakers.push(() => makeCharacter(
  32006. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32007. {
  32008. front: {
  32009. height: math.unit(1.85, "meters"),
  32010. weight: math.unit(80, "kg"),
  32011. name: "Front",
  32012. image: {
  32013. source: "./media/characters/daniel-barrett/front.svg",
  32014. extra: 355/337,
  32015. bottom: 9/364
  32016. }
  32017. },
  32018. },
  32019. [
  32020. {
  32021. name: "Pico",
  32022. height: math.unit(0.0433, "mm")
  32023. },
  32024. {
  32025. name: "Nano",
  32026. height: math.unit(1.5, "mm")
  32027. },
  32028. {
  32029. name: "Micro",
  32030. height: math.unit(5.3, "cm"),
  32031. default: true
  32032. },
  32033. {
  32034. name: "Normal",
  32035. height: math.unit(1.85, "meters")
  32036. },
  32037. {
  32038. name: "Macro",
  32039. height: math.unit(64.7, "meters")
  32040. },
  32041. {
  32042. name: "Megamacro",
  32043. height: math.unit(2.26, "km")
  32044. },
  32045. {
  32046. name: "Gigamacro",
  32047. height: math.unit(79, "km")
  32048. },
  32049. {
  32050. name: "Teramacro",
  32051. height: math.unit(2765, "km")
  32052. },
  32053. {
  32054. name: "Petamacro",
  32055. height: math.unit(96678, "km")
  32056. },
  32057. ]
  32058. ))
  32059. characterMakers.push(() => makeCharacter(
  32060. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32061. {
  32062. front: {
  32063. height: math.unit(30, "meters"),
  32064. weight: math.unit(400, "tons"),
  32065. name: "Front",
  32066. image: {
  32067. source: "./media/characters/zeel/front.svg",
  32068. extra: 2599/2599,
  32069. bottom: 226/2825
  32070. }
  32071. },
  32072. },
  32073. [
  32074. {
  32075. name: "Macro",
  32076. height: math.unit(30, "meters"),
  32077. default: true
  32078. },
  32079. ]
  32080. ))
  32081. characterMakers.push(() => makeCharacter(
  32082. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32083. {
  32084. front: {
  32085. height: math.unit(6 + 7/12, "feet"),
  32086. weight: math.unit(210, "lb"),
  32087. name: "Front",
  32088. image: {
  32089. source: "./media/characters/tarn/front.svg",
  32090. extra: 3517/3220,
  32091. bottom: 91/3608
  32092. }
  32093. },
  32094. back: {
  32095. height: math.unit(6 + 7/12, "feet"),
  32096. weight: math.unit(210, "lb"),
  32097. name: "Back",
  32098. image: {
  32099. source: "./media/characters/tarn/back.svg",
  32100. extra: 3566/3241,
  32101. bottom: 34/3600
  32102. }
  32103. },
  32104. dick: {
  32105. height: math.unit(1.65, "feet"),
  32106. name: "Dick",
  32107. image: {
  32108. source: "./media/characters/tarn/dick.svg"
  32109. }
  32110. },
  32111. paw: {
  32112. height: math.unit(1.80, "feet"),
  32113. name: "Paw",
  32114. image: {
  32115. source: "./media/characters/tarn/paw.svg"
  32116. }
  32117. },
  32118. tongue: {
  32119. height: math.unit(0.97, "feet"),
  32120. name: "Tongue",
  32121. image: {
  32122. source: "./media/characters/tarn/tongue.svg"
  32123. }
  32124. },
  32125. },
  32126. [
  32127. {
  32128. name: "Micro",
  32129. height: math.unit(4, "inches")
  32130. },
  32131. {
  32132. name: "Normal",
  32133. height: math.unit(6 + 7/12, "feet"),
  32134. default: true
  32135. },
  32136. {
  32137. name: "Macro",
  32138. height: math.unit(300, "feet")
  32139. },
  32140. ]
  32141. ))
  32142. characterMakers.push(() => makeCharacter(
  32143. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32144. {
  32145. front: {
  32146. height: math.unit(5 + 7/12, "feet"),
  32147. weight: math.unit(80, "kg"),
  32148. name: "Front",
  32149. image: {
  32150. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32151. extra: 3023/2865,
  32152. bottom: 33/3056
  32153. }
  32154. },
  32155. back: {
  32156. height: math.unit(5 + 7/12, "feet"),
  32157. weight: math.unit(80, "kg"),
  32158. name: "Back",
  32159. image: {
  32160. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32161. extra: 3020/2886,
  32162. bottom: 30/3050
  32163. }
  32164. },
  32165. dick: {
  32166. height: math.unit(0.98, "feet"),
  32167. name: "Dick",
  32168. image: {
  32169. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32170. }
  32171. },
  32172. anatomy: {
  32173. height: math.unit(2.86, "feet"),
  32174. name: "Anatomy",
  32175. image: {
  32176. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32177. }
  32178. },
  32179. },
  32180. [
  32181. {
  32182. name: "Really Small",
  32183. height: math.unit(2, "inches")
  32184. },
  32185. {
  32186. name: "Micro",
  32187. height: math.unit(5.583, "inches")
  32188. },
  32189. {
  32190. name: "Normal",
  32191. height: math.unit(5 + 7/12, "feet"),
  32192. default: true
  32193. },
  32194. {
  32195. name: "Macro",
  32196. height: math.unit(67, "feet")
  32197. },
  32198. {
  32199. name: "Megamacro",
  32200. height: math.unit(134, "feet")
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32206. {
  32207. front: {
  32208. height: math.unit(9, "feet"),
  32209. weight: math.unit(120, "lb"),
  32210. name: "Front",
  32211. image: {
  32212. source: "./media/characters/sally/front.svg",
  32213. extra: 1506/1349,
  32214. bottom: 66/1572
  32215. }
  32216. },
  32217. },
  32218. [
  32219. {
  32220. name: "Normal",
  32221. height: math.unit(9, "feet"),
  32222. default: true
  32223. },
  32224. ]
  32225. ))
  32226. characterMakers.push(() => makeCharacter(
  32227. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32228. {
  32229. front: {
  32230. height: math.unit(8, "feet"),
  32231. weight: math.unit(900, "lb"),
  32232. name: "Front",
  32233. image: {
  32234. source: "./media/characters/owen/front.svg",
  32235. extra: 1761/1657,
  32236. bottom: 74/1835
  32237. }
  32238. },
  32239. side: {
  32240. height: math.unit(8, "feet"),
  32241. weight: math.unit(900, "lb"),
  32242. name: "Side",
  32243. image: {
  32244. source: "./media/characters/owen/side.svg",
  32245. extra: 1797/1734,
  32246. bottom: 30/1827
  32247. }
  32248. },
  32249. back: {
  32250. height: math.unit(8, "feet"),
  32251. weight: math.unit(900, "lb"),
  32252. name: "Back",
  32253. image: {
  32254. source: "./media/characters/owen/back.svg",
  32255. extra: 1796/1706,
  32256. bottom: 59/1855
  32257. }
  32258. },
  32259. maw: {
  32260. height: math.unit(1.76, "feet"),
  32261. name: "Maw",
  32262. image: {
  32263. source: "./media/characters/owen/maw.svg"
  32264. }
  32265. },
  32266. },
  32267. [
  32268. {
  32269. name: "Normal",
  32270. height: math.unit(8, "feet"),
  32271. default: true
  32272. },
  32273. ]
  32274. ))
  32275. characterMakers.push(() => makeCharacter(
  32276. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32277. {
  32278. front: {
  32279. height: math.unit(4, "feet"),
  32280. weight: math.unit(400, "lb"),
  32281. name: "Front",
  32282. image: {
  32283. source: "./media/characters/ryth/front.svg",
  32284. extra: 1920/1748,
  32285. bottom: 42/1962
  32286. }
  32287. },
  32288. back: {
  32289. height: math.unit(4, "feet"),
  32290. weight: math.unit(400, "lb"),
  32291. name: "Back",
  32292. image: {
  32293. source: "./media/characters/ryth/back.svg",
  32294. extra: 1897/1690,
  32295. bottom: 89/1986
  32296. }
  32297. },
  32298. mouth: {
  32299. height: math.unit(1.39, "feet"),
  32300. name: "Mouth",
  32301. image: {
  32302. source: "./media/characters/ryth/mouth.svg"
  32303. }
  32304. },
  32305. tailmaw: {
  32306. height: math.unit(1.23, "feet"),
  32307. name: "Tailmaw",
  32308. image: {
  32309. source: "./media/characters/ryth/tailmaw.svg"
  32310. }
  32311. },
  32312. goia: {
  32313. height: math.unit(4, "meters"),
  32314. weight: math.unit(10800, "lb"),
  32315. name: "Goia",
  32316. image: {
  32317. source: "./media/characters/ryth/goia.svg",
  32318. extra: 745/640,
  32319. bottom: 107/852
  32320. }
  32321. },
  32322. goiaFront: {
  32323. height: math.unit(4, "meters"),
  32324. weight: math.unit(10800, "lb"),
  32325. name: "Goia (Front)",
  32326. image: {
  32327. source: "./media/characters/ryth/goia-front.svg",
  32328. extra: 750/586,
  32329. bottom: 114/864
  32330. }
  32331. },
  32332. goiaMaw: {
  32333. height: math.unit(5.55, "feet"),
  32334. name: "Goia Maw",
  32335. image: {
  32336. source: "./media/characters/ryth/goia-maw.svg"
  32337. }
  32338. },
  32339. goiaForepaw: {
  32340. height: math.unit(3.5, "feet"),
  32341. name: "Goia Forepaw",
  32342. image: {
  32343. source: "./media/characters/ryth/goia-forepaw.svg"
  32344. }
  32345. },
  32346. goiaHindpaw: {
  32347. height: math.unit(5.55, "feet"),
  32348. name: "Goia Hindpaw",
  32349. image: {
  32350. source: "./media/characters/ryth/goia-hindpaw.svg"
  32351. }
  32352. },
  32353. },
  32354. [
  32355. {
  32356. name: "Normal",
  32357. height: math.unit(4, "feet"),
  32358. default: true
  32359. },
  32360. ]
  32361. ))
  32362. characterMakers.push(() => makeCharacter(
  32363. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32364. {
  32365. front: {
  32366. height: math.unit(7, "feet"),
  32367. weight: math.unit(180, "lb"),
  32368. name: "Front",
  32369. image: {
  32370. source: "./media/characters/necrolance/front.svg",
  32371. extra: 1062/947,
  32372. bottom: 41/1103
  32373. }
  32374. },
  32375. back: {
  32376. height: math.unit(7, "feet"),
  32377. weight: math.unit(180, "lb"),
  32378. name: "Back",
  32379. image: {
  32380. source: "./media/characters/necrolance/back.svg",
  32381. extra: 1045/984,
  32382. bottom: 14/1059
  32383. }
  32384. },
  32385. wing: {
  32386. height: math.unit(2.67, "feet"),
  32387. name: "Wing",
  32388. image: {
  32389. source: "./media/characters/necrolance/wing.svg"
  32390. }
  32391. },
  32392. },
  32393. [
  32394. {
  32395. name: "Normal",
  32396. height: math.unit(7, "feet"),
  32397. default: true
  32398. },
  32399. ]
  32400. ))
  32401. characterMakers.push(() => makeCharacter(
  32402. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32403. {
  32404. front: {
  32405. height: math.unit(76, "meters"),
  32406. weight: math.unit(30000, "tons"),
  32407. name: "Front",
  32408. image: {
  32409. source: "./media/characters/tyler/front.svg",
  32410. extra: 1640/1640,
  32411. bottom: 114/1754
  32412. }
  32413. },
  32414. },
  32415. [
  32416. {
  32417. name: "Macro",
  32418. height: math.unit(76, "meters"),
  32419. default: true
  32420. },
  32421. ]
  32422. ))
  32423. characterMakers.push(() => makeCharacter(
  32424. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  32425. {
  32426. front: {
  32427. height: math.unit(4 + 11/12, "feet"),
  32428. weight: math.unit(132, "lb"),
  32429. name: "Front",
  32430. image: {
  32431. source: "./media/characters/icey/front.svg",
  32432. extra: 2750/2550,
  32433. bottom: 33/2783
  32434. }
  32435. },
  32436. back: {
  32437. height: math.unit(4 + 11/12, "feet"),
  32438. weight: math.unit(132, "lb"),
  32439. name: "Back",
  32440. image: {
  32441. source: "./media/characters/icey/back.svg",
  32442. extra: 2624/2481,
  32443. bottom: 35/2659
  32444. }
  32445. },
  32446. },
  32447. [
  32448. {
  32449. name: "Normal",
  32450. height: math.unit(4 + 11/12, "feet"),
  32451. default: true
  32452. },
  32453. ]
  32454. ))
  32455. characterMakers.push(() => makeCharacter(
  32456. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  32457. {
  32458. front: {
  32459. height: math.unit(100, "feet"),
  32460. weight: math.unit(0, "lb"),
  32461. name: "Front",
  32462. image: {
  32463. source: "./media/characters/smile/front.svg",
  32464. extra: 2983/2912,
  32465. bottom: 162/3145
  32466. }
  32467. },
  32468. back: {
  32469. height: math.unit(100, "feet"),
  32470. weight: math.unit(0, "lb"),
  32471. name: "Back",
  32472. image: {
  32473. source: "./media/characters/smile/back.svg",
  32474. extra: 3143/3031,
  32475. bottom: 91/3234
  32476. }
  32477. },
  32478. head: {
  32479. height: math.unit(26.3, "feet"),
  32480. weight: math.unit(0, "lb"),
  32481. name: "Head",
  32482. image: {
  32483. source: "./media/characters/smile/head.svg"
  32484. }
  32485. },
  32486. collar: {
  32487. height: math.unit(5.3, "feet"),
  32488. weight: math.unit(0, "lb"),
  32489. name: "Collar",
  32490. image: {
  32491. source: "./media/characters/smile/collar.svg"
  32492. }
  32493. },
  32494. },
  32495. [
  32496. {
  32497. name: "Macro",
  32498. height: math.unit(100, "feet"),
  32499. default: true
  32500. },
  32501. ]
  32502. ))
  32503. characterMakers.push(() => makeCharacter(
  32504. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  32505. {
  32506. dragon: {
  32507. height: math.unit(26, "feet"),
  32508. weight: math.unit(36, "tons"),
  32509. name: "Dragon",
  32510. image: {
  32511. source: "./media/characters/arimphae/dragon.svg",
  32512. extra: 1574/983,
  32513. bottom: 357/1931
  32514. }
  32515. },
  32516. drake: {
  32517. height: math.unit(9, "feet"),
  32518. weight: math.unit(1.5, "tons"),
  32519. name: "Drake",
  32520. image: {
  32521. source: "./media/characters/arimphae/drake.svg",
  32522. extra: 1120/925,
  32523. bottom: 435/1555
  32524. }
  32525. },
  32526. },
  32527. [
  32528. {
  32529. name: "Small",
  32530. height: math.unit(26*5/9, "feet")
  32531. },
  32532. {
  32533. name: "Normal",
  32534. height: math.unit(26, "feet"),
  32535. default: true
  32536. },
  32537. ]
  32538. ))
  32539. characterMakers.push(() => makeCharacter(
  32540. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  32541. {
  32542. front: {
  32543. height: math.unit(8 + 9/12, "feet"),
  32544. name: "Front",
  32545. image: {
  32546. source: "./media/characters/xander/front.svg",
  32547. extra: 1237/974,
  32548. bottom: 94/1331
  32549. }
  32550. },
  32551. },
  32552. [
  32553. {
  32554. name: "Normal",
  32555. height: math.unit(8 + 9/12, "feet"),
  32556. default: true
  32557. },
  32558. {
  32559. name: "Gaze Grabber",
  32560. height: math.unit(13 + 8/12, "feet")
  32561. },
  32562. {
  32563. name: "Jaw Dropper",
  32564. height: math.unit(27, "feet")
  32565. },
  32566. {
  32567. name: "Show Stopper",
  32568. height: math.unit(136, "feet")
  32569. },
  32570. {
  32571. name: "Superstar",
  32572. height: math.unit(1.9e6, "miles")
  32573. },
  32574. ]
  32575. ))
  32576. characterMakers.push(() => makeCharacter(
  32577. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  32578. {
  32579. side: {
  32580. height: math.unit(2100, "feet"),
  32581. name: "Side",
  32582. image: {
  32583. source: "./media/characters/osiris/side.svg",
  32584. extra: 1105/939,
  32585. bottom: 167/1272
  32586. }
  32587. },
  32588. },
  32589. [
  32590. {
  32591. name: "Macro",
  32592. height: math.unit(2100, "feet"),
  32593. default: true
  32594. },
  32595. ]
  32596. ))
  32597. characterMakers.push(() => makeCharacter(
  32598. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  32599. {
  32600. front: {
  32601. height: math.unit(6 + 8/12, "feet"),
  32602. weight: math.unit(225, "lb"),
  32603. name: "Front",
  32604. image: {
  32605. source: "./media/characters/rhys-londe/front.svg",
  32606. extra: 2258/2141,
  32607. bottom: 188/2446
  32608. }
  32609. },
  32610. back: {
  32611. height: math.unit(6 + 8/12, "feet"),
  32612. weight: math.unit(225, "lb"),
  32613. name: "Back",
  32614. image: {
  32615. source: "./media/characters/rhys-londe/back.svg",
  32616. extra: 2237/2137,
  32617. bottom: 63/2300
  32618. }
  32619. },
  32620. frontNsfw: {
  32621. height: math.unit(6 + 8/12, "feet"),
  32622. weight: math.unit(225, "lb"),
  32623. name: "Front (NSFW)",
  32624. image: {
  32625. source: "./media/characters/rhys-londe/front-nsfw.svg",
  32626. extra: 2258/2141,
  32627. bottom: 188/2446
  32628. }
  32629. },
  32630. backNsfw: {
  32631. height: math.unit(6 + 8/12, "feet"),
  32632. weight: math.unit(225, "lb"),
  32633. name: "Back (NSFW)",
  32634. image: {
  32635. source: "./media/characters/rhys-londe/back-nsfw.svg",
  32636. extra: 2237/2137,
  32637. bottom: 63/2300
  32638. }
  32639. },
  32640. dick: {
  32641. height: math.unit(30, "inches"),
  32642. name: "Dick",
  32643. image: {
  32644. source: "./media/characters/rhys-londe/dick.svg"
  32645. }
  32646. },
  32647. maw: {
  32648. height: math.unit(1.6, "feet"),
  32649. name: "Maw",
  32650. image: {
  32651. source: "./media/characters/rhys-londe/maw.svg"
  32652. }
  32653. },
  32654. },
  32655. [
  32656. {
  32657. name: "Normal",
  32658. height: math.unit(6 + 8/12, "feet"),
  32659. default: true
  32660. },
  32661. ]
  32662. ))
  32663. characterMakers.push(() => makeCharacter(
  32664. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  32665. {
  32666. front: {
  32667. height: math.unit(3 + 10/12, "feet"),
  32668. weight: math.unit(90, "lb"),
  32669. name: "Front",
  32670. image: {
  32671. source: "./media/characters/taivas-ensim/front.svg",
  32672. extra: 1327/1216,
  32673. bottom: 96/1423
  32674. }
  32675. },
  32676. back: {
  32677. height: math.unit(3 + 10/12, "feet"),
  32678. weight: math.unit(90, "lb"),
  32679. name: "Back",
  32680. image: {
  32681. source: "./media/characters/taivas-ensim/back.svg",
  32682. extra: 1355/1247,
  32683. bottom: 11/1366
  32684. }
  32685. },
  32686. frontNsfw: {
  32687. height: math.unit(3 + 10/12, "feet"),
  32688. weight: math.unit(90, "lb"),
  32689. name: "Front (NSFW)",
  32690. image: {
  32691. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  32692. extra: 1327/1216,
  32693. bottom: 96/1423
  32694. }
  32695. },
  32696. backNsfw: {
  32697. height: math.unit(3 + 10/12, "feet"),
  32698. weight: math.unit(90, "lb"),
  32699. name: "Back (NSFW)",
  32700. image: {
  32701. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  32702. extra: 1355/1247,
  32703. bottom: 11/1366
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Normal",
  32710. height: math.unit(3 + 10/12, "feet"),
  32711. default: true
  32712. },
  32713. ]
  32714. ))
  32715. characterMakers.push(() => makeCharacter(
  32716. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  32717. {
  32718. front: {
  32719. height: math.unit(9 + 6/12, "feet"),
  32720. weight: math.unit(940, "lb"),
  32721. name: "Front",
  32722. image: {
  32723. source: "./media/characters/byliss/front.svg",
  32724. extra: 1327/1290,
  32725. bottom: 82/1409
  32726. }
  32727. },
  32728. back: {
  32729. height: math.unit(9 + 6/12, "feet"),
  32730. weight: math.unit(940, "lb"),
  32731. name: "Back",
  32732. image: {
  32733. source: "./media/characters/byliss/back.svg",
  32734. extra: 1376/1349,
  32735. bottom: 9/1385
  32736. }
  32737. },
  32738. frontNsfw: {
  32739. height: math.unit(9 + 6/12, "feet"),
  32740. weight: math.unit(940, "lb"),
  32741. name: "Front (NSFW)",
  32742. image: {
  32743. source: "./media/characters/byliss/front-nsfw.svg",
  32744. extra: 1327/1290,
  32745. bottom: 82/1409
  32746. }
  32747. },
  32748. backNsfw: {
  32749. height: math.unit(9 + 6/12, "feet"),
  32750. weight: math.unit(940, "lb"),
  32751. name: "Back (NSFW)",
  32752. image: {
  32753. source: "./media/characters/byliss/back-nsfw.svg",
  32754. extra: 1376/1349,
  32755. bottom: 9/1385
  32756. }
  32757. },
  32758. },
  32759. [
  32760. {
  32761. name: "Normal",
  32762. height: math.unit(9 + 6/12, "feet"),
  32763. default: true
  32764. },
  32765. ]
  32766. ))
  32767. characterMakers.push(() => makeCharacter(
  32768. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  32769. {
  32770. front: {
  32771. height: math.unit(5 + 2/12, "feet"),
  32772. weight: math.unit(200, "lb"),
  32773. name: "Front",
  32774. image: {
  32775. source: "./media/characters/noraly/front.svg",
  32776. extra: 4985/4773,
  32777. bottom: 150/5135
  32778. }
  32779. },
  32780. full: {
  32781. height: math.unit(5 + 2/12, "feet"),
  32782. weight: math.unit(164, "lb"),
  32783. name: "Full",
  32784. image: {
  32785. source: "./media/characters/noraly/full.svg",
  32786. extra: 1114/1059,
  32787. bottom: 35/1149
  32788. }
  32789. },
  32790. fuller: {
  32791. height: math.unit(5 + 2/12, "feet"),
  32792. weight: math.unit(230, "lb"),
  32793. name: "Fuller",
  32794. image: {
  32795. source: "./media/characters/noraly/fuller.svg",
  32796. extra: 1114/1059,
  32797. bottom: 35/1149
  32798. }
  32799. },
  32800. fullest: {
  32801. height: math.unit(5 + 2/12, "feet"),
  32802. weight: math.unit(300, "lb"),
  32803. name: "Fullest",
  32804. image: {
  32805. source: "./media/characters/noraly/fullest.svg",
  32806. extra: 1114/1059,
  32807. bottom: 35/1149
  32808. }
  32809. },
  32810. },
  32811. [
  32812. {
  32813. name: "Normal",
  32814. height: math.unit(5 + 2/12, "feet"),
  32815. default: true
  32816. },
  32817. ]
  32818. ))
  32819. characterMakers.push(() => makeCharacter(
  32820. { name: "Pera", species: ["snake"], tags: ["naga"] },
  32821. {
  32822. front: {
  32823. height: math.unit(5 + 2/12, "feet"),
  32824. weight: math.unit(210, "lb"),
  32825. name: "Front",
  32826. image: {
  32827. source: "./media/characters/pera/front.svg",
  32828. extra: 1560/1531,
  32829. bottom: 165/1725
  32830. }
  32831. },
  32832. back: {
  32833. height: math.unit(5 + 2/12, "feet"),
  32834. weight: math.unit(210, "lb"),
  32835. name: "Back",
  32836. image: {
  32837. source: "./media/characters/pera/back.svg",
  32838. extra: 1523/1493,
  32839. bottom: 152/1675
  32840. }
  32841. },
  32842. dick: {
  32843. height: math.unit(2.4, "feet"),
  32844. name: "Dick",
  32845. image: {
  32846. source: "./media/characters/pera/dick.svg"
  32847. }
  32848. },
  32849. },
  32850. [
  32851. {
  32852. name: "Normal",
  32853. height: math.unit(5 + 2/12, "feet"),
  32854. default: true
  32855. },
  32856. ]
  32857. ))
  32858. characterMakers.push(() => makeCharacter(
  32859. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  32860. {
  32861. front: {
  32862. height: math.unit(12, "feet"),
  32863. weight: math.unit(3200, "lb"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/julian/front.svg",
  32867. extra: 2962/2701,
  32868. bottom: 184/3146
  32869. }
  32870. },
  32871. maw: {
  32872. height: math.unit(5.35, "feet"),
  32873. name: "Maw",
  32874. image: {
  32875. source: "./media/characters/julian/maw.svg"
  32876. }
  32877. },
  32878. paw: {
  32879. height: math.unit(3.07, "feet"),
  32880. name: "Paw",
  32881. image: {
  32882. source: "./media/characters/julian/paw.svg"
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Default",
  32889. height: math.unit(12, "feet"),
  32890. default: true
  32891. },
  32892. {
  32893. name: "Big",
  32894. height: math.unit(50, "feet")
  32895. },
  32896. {
  32897. name: "Really Big",
  32898. height: math.unit(1, "mile")
  32899. },
  32900. {
  32901. name: "Extremely Big",
  32902. height: math.unit(100, "miles")
  32903. },
  32904. {
  32905. name: "Planet Hugger",
  32906. height: math.unit(200, "megameters")
  32907. },
  32908. {
  32909. name: "Unreasonably Big",
  32910. height: math.unit(1e300, "meters")
  32911. },
  32912. ]
  32913. ))
  32914. characterMakers.push(() => makeCharacter(
  32915. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  32916. {
  32917. solgooleo: {
  32918. height: math.unit(4, "meters"),
  32919. weight: math.unit(6000*1.5, "kg"),
  32920. volume: math.unit(6000, "liters"),
  32921. name: "Solgooleo",
  32922. image: {
  32923. source: "./media/characters/pi/solgooleo.svg",
  32924. extra: 388/331,
  32925. bottom: 29/417
  32926. }
  32927. },
  32928. },
  32929. [
  32930. {
  32931. name: "Normal",
  32932. height: math.unit(4, "meters"),
  32933. default: true
  32934. },
  32935. ]
  32936. ))
  32937. characterMakers.push(() => makeCharacter(
  32938. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  32939. {
  32940. front: {
  32941. height: math.unit(8, "feet"),
  32942. weight: math.unit(4, "tons"),
  32943. name: "Front",
  32944. image: {
  32945. source: "./media/characters/shaun/front.svg",
  32946. extra: 503/495,
  32947. bottom: 20/523
  32948. }
  32949. },
  32950. back: {
  32951. height: math.unit(8, "feet"),
  32952. weight: math.unit(4, "tons"),
  32953. name: "Back",
  32954. image: {
  32955. source: "./media/characters/shaun/back.svg",
  32956. extra: 487/480,
  32957. bottom: 20/507
  32958. }
  32959. },
  32960. },
  32961. [
  32962. {
  32963. name: "Lorg",
  32964. height: math.unit(8, "feet"),
  32965. default: true
  32966. },
  32967. ]
  32968. ))
  32969. characterMakers.push(() => makeCharacter(
  32970. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32971. {
  32972. front: {
  32973. height: math.unit(7, "feet"),
  32974. name: "Front",
  32975. image: {
  32976. source: "./media/characters/sini/front.svg",
  32977. extra: 726/678,
  32978. bottom: 35/761
  32979. }
  32980. },
  32981. back: {
  32982. height: math.unit(7, "feet"),
  32983. name: "Back",
  32984. image: {
  32985. source: "./media/characters/sini/back.svg",
  32986. extra: 743/701,
  32987. bottom: 12/755
  32988. }
  32989. },
  32990. mawAnthro: {
  32991. height: math.unit(2.14, "feet"),
  32992. name: "Maw (Anthro)",
  32993. image: {
  32994. source: "./media/characters/sini/maw-anthro.svg"
  32995. }
  32996. },
  32997. dick: {
  32998. height: math.unit(1.45, "feet"),
  32999. name: "Dick (Anthro)",
  33000. image: {
  33001. source: "./media/characters/sini/dick-anthro.svg"
  33002. }
  33003. },
  33004. feral: {
  33005. height: math.unit(16, "feet"),
  33006. name: "Feral",
  33007. image: {
  33008. source: "./media/characters/sini/feral.svg",
  33009. extra: 814/605,
  33010. bottom: 11/825
  33011. }
  33012. },
  33013. mawFeral: {
  33014. height: math.unit(5.66, "feet"),
  33015. name: "Maw-feral",
  33016. image: {
  33017. source: "./media/characters/sini/maw-feral.svg"
  33018. }
  33019. },
  33020. footFeral: {
  33021. height: math.unit(5.17, "feet"),
  33022. name: "Foot-feral",
  33023. image: {
  33024. source: "./media/characters/sini/foot-feral.svg"
  33025. }
  33026. },
  33027. },
  33028. [
  33029. {
  33030. name: "Normal",
  33031. height: math.unit(7, "feet"),
  33032. default: true
  33033. },
  33034. ]
  33035. ))
  33036. characterMakers.push(() => makeCharacter(
  33037. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33038. {
  33039. side: {
  33040. height: math.unit(13, "meters"),
  33041. weight: math.unit(9072, "kg"),
  33042. name: "Side",
  33043. image: {
  33044. source: "./media/characters/raylldo/side.svg",
  33045. extra: 403/344,
  33046. bottom: 42/445
  33047. }
  33048. },
  33049. leaping: {
  33050. height: math.unit(12.3, "meters"),
  33051. weight: math.unit(9072, "kg"),
  33052. name: "Leaping",
  33053. image: {
  33054. source: "./media/characters/raylldo/leaping.svg",
  33055. extra: 470/249,
  33056. bottom: 13/483
  33057. }
  33058. },
  33059. flying: {
  33060. height: math.unit(18, "meters"),
  33061. weight: math.unit(9072, "kg"),
  33062. name: "Flying",
  33063. image: {
  33064. source: "./media/characters/raylldo/flying.svg"
  33065. }
  33066. },
  33067. head: {
  33068. height: math.unit(5.85, "meters"),
  33069. name: "Head",
  33070. image: {
  33071. source: "./media/characters/raylldo/head.svg"
  33072. }
  33073. },
  33074. maw: {
  33075. height: math.unit(5.32, "meters"),
  33076. name: "Maw",
  33077. image: {
  33078. source: "./media/characters/raylldo/maw.svg"
  33079. }
  33080. },
  33081. eye: {
  33082. height: math.unit(0.54, "meters"),
  33083. name: "Eye",
  33084. image: {
  33085. source: "./media/characters/raylldo/eye.svg"
  33086. }
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(13, "meters"),
  33093. default: true
  33094. },
  33095. ]
  33096. ))
  33097. characterMakers.push(() => makeCharacter(
  33098. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33099. {
  33100. anthroFront: {
  33101. height: math.unit(9, "feet"),
  33102. weight: math.unit(600, "lb"),
  33103. name: "Anthro (Front)",
  33104. image: {
  33105. source: "./media/characters/glint/anthro-front.svg",
  33106. extra: 1097/1018,
  33107. bottom: 28/1125
  33108. }
  33109. },
  33110. anthroBack: {
  33111. height: math.unit(9, "feet"),
  33112. weight: math.unit(600, "lb"),
  33113. name: "Anthro (Back)",
  33114. image: {
  33115. source: "./media/characters/glint/anthro-back.svg",
  33116. extra: 1154/997,
  33117. bottom: 36/1190
  33118. }
  33119. },
  33120. feral: {
  33121. height: math.unit(11, "feet"),
  33122. weight: math.unit(50000, "lb"),
  33123. name: "Feral",
  33124. image: {
  33125. source: "./media/characters/glint/feral.svg",
  33126. extra: 3035/1585,
  33127. bottom: 1169/4204
  33128. }
  33129. },
  33130. dickAnthro: {
  33131. height: math.unit(0.7, "meters"),
  33132. name: "Dick (Anthro)",
  33133. image: {
  33134. source: "./media/characters/glint/dick-anthro.svg"
  33135. }
  33136. },
  33137. dickFeral: {
  33138. height: math.unit(2.65, "meters"),
  33139. name: "Dick (Feral)",
  33140. image: {
  33141. source: "./media/characters/glint/dick-feral.svg"
  33142. }
  33143. },
  33144. slitHidden: {
  33145. height: math.unit(5.85, "meters"),
  33146. name: "Slit (Hidden)",
  33147. image: {
  33148. source: "./media/characters/glint/slit-hidden.svg"
  33149. }
  33150. },
  33151. slitErect: {
  33152. height: math.unit(5.85, "meters"),
  33153. name: "Slit (Erect)",
  33154. image: {
  33155. source: "./media/characters/glint/slit-erect.svg"
  33156. }
  33157. },
  33158. mawAnthro: {
  33159. height: math.unit(0.63, "meters"),
  33160. name: "Maw (Anthro)",
  33161. image: {
  33162. source: "./media/characters/glint/maw.svg"
  33163. }
  33164. },
  33165. mawFeral: {
  33166. height: math.unit(2.89, "meters"),
  33167. name: "Maw (Feral)",
  33168. image: {
  33169. source: "./media/characters/glint/maw.svg"
  33170. }
  33171. },
  33172. },
  33173. [
  33174. {
  33175. name: "Normal",
  33176. height: math.unit(9, "feet"),
  33177. default: true
  33178. },
  33179. ]
  33180. ))
  33181. characterMakers.push(() => makeCharacter(
  33182. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33183. {
  33184. side: {
  33185. height: math.unit(15, "feet"),
  33186. weight: math.unit(5000, "kg"),
  33187. name: "Side",
  33188. image: {
  33189. source: "./media/characters/kairne/side.svg",
  33190. extra: 979/811,
  33191. bottom: 13/992
  33192. }
  33193. },
  33194. front: {
  33195. height: math.unit(15, "feet"),
  33196. weight: math.unit(5000, "kg"),
  33197. name: "Front",
  33198. image: {
  33199. source: "./media/characters/kairne/front.svg",
  33200. extra: 908/814,
  33201. bottom: 26/934
  33202. }
  33203. },
  33204. sideNsfw: {
  33205. height: math.unit(15, "feet"),
  33206. weight: math.unit(5000, "kg"),
  33207. name: "Side (NSFW)",
  33208. image: {
  33209. source: "./media/characters/kairne/side-nsfw.svg",
  33210. extra: 979/811,
  33211. bottom: 13/992
  33212. }
  33213. },
  33214. frontNsfw: {
  33215. height: math.unit(15, "feet"),
  33216. weight: math.unit(5000, "kg"),
  33217. name: "Front (NSFW)",
  33218. image: {
  33219. source: "./media/characters/kairne/front-nsfw.svg",
  33220. extra: 908/814,
  33221. bottom: 26/934
  33222. }
  33223. },
  33224. dickCaged: {
  33225. height: math.unit(0.65, "meters"),
  33226. name: "Dick-caged",
  33227. image: {
  33228. source: "./media/characters/kairne/dick-caged.svg"
  33229. }
  33230. },
  33231. dick: {
  33232. height: math.unit(0.79, "meters"),
  33233. name: "Dick",
  33234. image: {
  33235. source: "./media/characters/kairne/dick.svg"
  33236. }
  33237. },
  33238. genitals: {
  33239. height: math.unit(1.29, "meters"),
  33240. name: "Genitals",
  33241. image: {
  33242. source: "./media/characters/kairne/genitals.svg"
  33243. }
  33244. },
  33245. maw: {
  33246. height: math.unit(1.73, "meters"),
  33247. name: "Maw",
  33248. image: {
  33249. source: "./media/characters/kairne/maw.svg"
  33250. }
  33251. },
  33252. },
  33253. [
  33254. {
  33255. name: "Normal",
  33256. height: math.unit(15, "feet"),
  33257. default: true
  33258. },
  33259. ]
  33260. ))
  33261. characterMakers.push(() => makeCharacter(
  33262. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33263. {
  33264. front: {
  33265. height: math.unit(5 + 8/12, "feet"),
  33266. weight: math.unit(139, "lb"),
  33267. name: "Front",
  33268. image: {
  33269. source: "./media/characters/biscuit-jackal/front.svg",
  33270. extra: 2106/1961,
  33271. bottom: 58/2164
  33272. }
  33273. },
  33274. back: {
  33275. height: math.unit(5 + 8/12, "feet"),
  33276. weight: math.unit(139, "lb"),
  33277. name: "Back",
  33278. image: {
  33279. source: "./media/characters/biscuit-jackal/back.svg",
  33280. extra: 2132/1976,
  33281. bottom: 57/2189
  33282. }
  33283. },
  33284. werejackal: {
  33285. height: math.unit(6 + 3/12, "feet"),
  33286. weight: math.unit(188, "lb"),
  33287. name: "Werejackal",
  33288. image: {
  33289. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33290. extra: 2373/2178,
  33291. bottom: 53/2426
  33292. }
  33293. },
  33294. },
  33295. [
  33296. {
  33297. name: "Normal",
  33298. height: math.unit(5 + 8/12, "feet"),
  33299. default: true
  33300. },
  33301. ]
  33302. ))
  33303. characterMakers.push(() => makeCharacter(
  33304. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33305. {
  33306. front: {
  33307. height: math.unit(140, "cm"),
  33308. weight: math.unit(45, "kg"),
  33309. name: "Front",
  33310. image: {
  33311. source: "./media/characters/tayra-white/front.svg",
  33312. extra: 2229/2192,
  33313. bottom: 75/2304
  33314. }
  33315. },
  33316. },
  33317. [
  33318. {
  33319. name: "Normal",
  33320. height: math.unit(140, "cm"),
  33321. default: true
  33322. },
  33323. ]
  33324. ))
  33325. characterMakers.push(() => makeCharacter(
  33326. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  33327. {
  33328. front: {
  33329. height: math.unit(4 + 5/12, "feet"),
  33330. name: "Front",
  33331. image: {
  33332. source: "./media/characters/scoop/front.svg",
  33333. extra: 1257/1136,
  33334. bottom: 69/1326
  33335. }
  33336. },
  33337. back: {
  33338. height: math.unit(4 + 5/12, "feet"),
  33339. name: "Back",
  33340. image: {
  33341. source: "./media/characters/scoop/back.svg",
  33342. extra: 1321/1152,
  33343. bottom: 32/1353
  33344. }
  33345. },
  33346. maw: {
  33347. height: math.unit(0.68, "feet"),
  33348. name: "Maw",
  33349. image: {
  33350. source: "./media/characters/scoop/maw.svg"
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Really Small",
  33357. height: math.unit(1, "mm")
  33358. },
  33359. {
  33360. name: "Micro",
  33361. height: math.unit(1, "inch")
  33362. },
  33363. {
  33364. name: "Normal",
  33365. height: math.unit(4 + 5/12, "feet"),
  33366. default: true
  33367. },
  33368. {
  33369. name: "Macro",
  33370. height: math.unit(200, "feet")
  33371. },
  33372. {
  33373. name: "Megamacro",
  33374. height: math.unit(3240, "feet")
  33375. },
  33376. {
  33377. name: "Teramacro",
  33378. height: math.unit(2500, "miles")
  33379. },
  33380. ]
  33381. ))
  33382. characterMakers.push(() => makeCharacter(
  33383. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  33384. {
  33385. front: {
  33386. height: math.unit(15 + 7/12, "feet"),
  33387. name: "Front",
  33388. image: {
  33389. source: "./media/characters/saphinara/front.svg",
  33390. extra: 604/546,
  33391. bottom: 19/623
  33392. }
  33393. },
  33394. side: {
  33395. height: math.unit(15 + 7/12, "feet"),
  33396. name: "Side",
  33397. image: {
  33398. source: "./media/characters/saphinara/side.svg",
  33399. extra: 605/547,
  33400. bottom: 6/611
  33401. }
  33402. },
  33403. back: {
  33404. height: math.unit(15 + 7/12, "feet"),
  33405. name: "Back",
  33406. image: {
  33407. source: "./media/characters/saphinara/back.svg",
  33408. extra: 591/531,
  33409. bottom: 13/604
  33410. }
  33411. },
  33412. frontTail: {
  33413. height: math.unit(15 + 7/12, "feet"),
  33414. name: "Front (Full Tail)",
  33415. image: {
  33416. source: "./media/characters/saphinara/front-tail.svg",
  33417. extra: 748/547,
  33418. bottom: 66/814
  33419. }
  33420. },
  33421. },
  33422. [
  33423. {
  33424. name: "Normal",
  33425. height: math.unit(15 + 7/12, "feet"),
  33426. default: true
  33427. },
  33428. {
  33429. name: "Angry",
  33430. height: math.unit(30 + 6/12, "feet")
  33431. },
  33432. {
  33433. name: "Enraged",
  33434. height: math.unit(102 + 1/12, "feet")
  33435. },
  33436. ]
  33437. ))
  33438. characterMakers.push(() => makeCharacter(
  33439. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  33440. {
  33441. front: {
  33442. height: math.unit(6 + 8/12, "feet"),
  33443. weight: math.unit(300, "lb"),
  33444. name: "Front",
  33445. image: {
  33446. source: "./media/characters/jrain/front.svg",
  33447. extra: 3039/2865,
  33448. bottom: 399/3438
  33449. }
  33450. },
  33451. back: {
  33452. height: math.unit(6 + 8/12, "feet"),
  33453. weight: math.unit(300, "lb"),
  33454. name: "Back",
  33455. image: {
  33456. source: "./media/characters/jrain/back.svg",
  33457. extra: 3089/2938,
  33458. bottom: 172/3261
  33459. }
  33460. },
  33461. head: {
  33462. height: math.unit(2.14, "feet"),
  33463. name: "Head",
  33464. image: {
  33465. source: "./media/characters/jrain/head.svg"
  33466. }
  33467. },
  33468. maw: {
  33469. height: math.unit(1.77, "feet"),
  33470. name: "Maw",
  33471. image: {
  33472. source: "./media/characters/jrain/maw.svg"
  33473. }
  33474. },
  33475. leftHand: {
  33476. height: math.unit(1.1, "feet"),
  33477. name: "Left Hand",
  33478. image: {
  33479. source: "./media/characters/jrain/left-hand.svg"
  33480. }
  33481. },
  33482. rightHand: {
  33483. height: math.unit(1.1, "feet"),
  33484. name: "Right Hand",
  33485. image: {
  33486. source: "./media/characters/jrain/right-hand.svg"
  33487. }
  33488. },
  33489. eye: {
  33490. height: math.unit(0.35, "feet"),
  33491. name: "Eye",
  33492. image: {
  33493. source: "./media/characters/jrain/eye.svg"
  33494. }
  33495. },
  33496. },
  33497. [
  33498. {
  33499. name: "Normal",
  33500. height: math.unit(6 + 8/12, "feet"),
  33501. default: true
  33502. },
  33503. {
  33504. name: "Casually Large",
  33505. height: math.unit(25, "feet")
  33506. },
  33507. {
  33508. name: "Giant",
  33509. height: math.unit(100, "feet")
  33510. },
  33511. {
  33512. name: "Kaiju",
  33513. height: math.unit(300, "feet")
  33514. },
  33515. ]
  33516. ))
  33517. characterMakers.push(() => makeCharacter(
  33518. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  33519. {
  33520. dragon: {
  33521. height: math.unit(5, "meters"),
  33522. name: "Dragon",
  33523. image: {
  33524. source: "./media/characters/sabrina/dragon.svg",
  33525. extra: 3670 / 2365,
  33526. bottom: 333 / 4003
  33527. }
  33528. },
  33529. gryphon: {
  33530. height: math.unit(3, "meters"),
  33531. name: "Gryphon",
  33532. image: {
  33533. source: "./media/characters/sabrina/gryphon.svg",
  33534. extra: 1576 / 945,
  33535. bottom: 71 / 1647
  33536. }
  33537. },
  33538. snake: {
  33539. height: math.unit(12, "meters"),
  33540. name: "Snake",
  33541. image: {
  33542. source: "./media/characters/sabrina/snake.svg",
  33543. extra: 1758 / 1320,
  33544. bottom: 186 / 1944
  33545. }
  33546. },
  33547. collar: {
  33548. height: math.unit(1.86, "meters"),
  33549. name: "Collar",
  33550. image: {
  33551. source: "./media/characters/sabrina/collar.svg"
  33552. }
  33553. },
  33554. eye: {
  33555. height: math.unit(0.53, "meters"),
  33556. name: "Eye",
  33557. image: {
  33558. source: "./media/characters/sabrina/eye.svg"
  33559. }
  33560. },
  33561. foot: {
  33562. height: math.unit(1.86, "meters"),
  33563. name: "Foot",
  33564. image: {
  33565. source: "./media/characters/sabrina/foot.svg"
  33566. }
  33567. },
  33568. hand: {
  33569. height: math.unit(1.32, "meters"),
  33570. name: "Hand",
  33571. image: {
  33572. source: "./media/characters/sabrina/hand.svg"
  33573. }
  33574. },
  33575. head: {
  33576. height: math.unit(2.44, "meters"),
  33577. name: "Head",
  33578. image: {
  33579. source: "./media/characters/sabrina/head.svg"
  33580. }
  33581. },
  33582. headAngry: {
  33583. height: math.unit(2.44, "meters"),
  33584. name: "Head (Angry))",
  33585. image: {
  33586. source: "./media/characters/sabrina/head-angry.svg"
  33587. }
  33588. },
  33589. maw: {
  33590. height: math.unit(1.65, "meters"),
  33591. name: "Maw",
  33592. image: {
  33593. source: "./media/characters/sabrina/maw.svg"
  33594. }
  33595. },
  33596. spikes: {
  33597. height: math.unit(1.69, "meters"),
  33598. name: "Spikes",
  33599. image: {
  33600. source: "./media/characters/sabrina/spikes.svg"
  33601. }
  33602. },
  33603. stomach: {
  33604. height: math.unit(1.15, "meters"),
  33605. name: "Stomach",
  33606. image: {
  33607. source: "./media/characters/sabrina/stomach.svg"
  33608. }
  33609. },
  33610. tongue: {
  33611. height: math.unit(1.27, "meters"),
  33612. name: "Tongue",
  33613. image: {
  33614. source: "./media/characters/sabrina/tongue.svg"
  33615. }
  33616. },
  33617. wingDorsal: {
  33618. height: math.unit(4.85, "meters"),
  33619. name: "Wing (Dorsal)",
  33620. image: {
  33621. source: "./media/characters/sabrina/wing-dorsal.svg"
  33622. }
  33623. },
  33624. wingVentral: {
  33625. height: math.unit(4.85, "meters"),
  33626. name: "Wing (Ventral)",
  33627. image: {
  33628. source: "./media/characters/sabrina/wing-ventral.svg"
  33629. }
  33630. },
  33631. },
  33632. [
  33633. {
  33634. name: "Normal",
  33635. height: math.unit(5, "meters"),
  33636. default: true
  33637. },
  33638. ]
  33639. ))
  33640. characterMakers.push(() => makeCharacter(
  33641. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  33642. {
  33643. frontMaid: {
  33644. height: math.unit(5 + 5/12, "feet"),
  33645. weight: math.unit(130, "lb"),
  33646. name: "Front (Maid)",
  33647. image: {
  33648. source: "./media/characters/midnight-tales/front-maid.svg",
  33649. extra: 489/454,
  33650. bottom: 61/550
  33651. }
  33652. },
  33653. frontFormal: {
  33654. height: math.unit(5 + 5/12, "feet"),
  33655. weight: math.unit(130, "lb"),
  33656. name: "Front (Formal)",
  33657. image: {
  33658. source: "./media/characters/midnight-tales/front-formal.svg",
  33659. extra: 489/454,
  33660. bottom: 61/550
  33661. }
  33662. },
  33663. back: {
  33664. height: math.unit(5 + 5/12, "feet"),
  33665. weight: math.unit(130, "lb"),
  33666. name: "Back",
  33667. image: {
  33668. source: "./media/characters/midnight-tales/back.svg",
  33669. extra: 498/456,
  33670. bottom: 33/531
  33671. }
  33672. },
  33673. frontBeast: {
  33674. height: math.unit(40, "feet"),
  33675. weight: math.unit(64000, "lb"),
  33676. name: "Front (Beast)",
  33677. image: {
  33678. source: "./media/characters/midnight-tales/front-beast.svg",
  33679. extra: 927/860,
  33680. bottom: 53/980
  33681. }
  33682. },
  33683. backBeast: {
  33684. height: math.unit(40, "feet"),
  33685. weight: math.unit(64000, "lb"),
  33686. name: "Back (Beast)",
  33687. image: {
  33688. source: "./media/characters/midnight-tales/back-beast.svg",
  33689. extra: 929/855,
  33690. bottom: 16/945
  33691. }
  33692. },
  33693. footBeast: {
  33694. height: math.unit(6.7, "feet"),
  33695. name: "Foot (Beast)",
  33696. image: {
  33697. source: "./media/characters/midnight-tales/foot-beast.svg"
  33698. }
  33699. },
  33700. headBeast: {
  33701. height: math.unit(8, "feet"),
  33702. name: "Head (Beast)",
  33703. image: {
  33704. source: "./media/characters/midnight-tales/head-beast.svg"
  33705. }
  33706. },
  33707. },
  33708. [
  33709. {
  33710. name: "Normal",
  33711. height: math.unit(5 + 5 / 12, "feet"),
  33712. default: true
  33713. },
  33714. {
  33715. name: "Macro",
  33716. height: math.unit(25, "feet")
  33717. },
  33718. ]
  33719. ))
  33720. characterMakers.push(() => makeCharacter(
  33721. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  33722. {
  33723. front: {
  33724. height: math.unit(5 + 10/12, "feet"),
  33725. name: "Front",
  33726. image: {
  33727. source: "./media/characters/argon/front.svg",
  33728. extra: 2009/1935,
  33729. bottom: 118/2127
  33730. }
  33731. },
  33732. back: {
  33733. height: math.unit(5 + 10/12, "feet"),
  33734. name: "Back",
  33735. image: {
  33736. source: "./media/characters/argon/back.svg",
  33737. extra: 2047/1992,
  33738. bottom: 20/2067
  33739. }
  33740. },
  33741. frontDressed: {
  33742. height: math.unit(5 + 10/12, "feet"),
  33743. name: "Front (Dressed)",
  33744. image: {
  33745. source: "./media/characters/argon/front-dressed.svg",
  33746. extra: 2009/1935,
  33747. bottom: 118/2127
  33748. }
  33749. },
  33750. },
  33751. [
  33752. {
  33753. name: "Normal",
  33754. height: math.unit(5 + 10/12, "feet"),
  33755. default: true
  33756. },
  33757. ]
  33758. ))
  33759. characterMakers.push(() => makeCharacter(
  33760. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  33761. {
  33762. front: {
  33763. height: math.unit(8 + 6/12, "feet"),
  33764. weight: math.unit(1150, "lb"),
  33765. name: "Front",
  33766. image: {
  33767. source: "./media/characters/kichi/front.svg",
  33768. extra: 1267/1164,
  33769. bottom: 61/1328
  33770. }
  33771. },
  33772. back: {
  33773. height: math.unit(8 + 6/12, "feet"),
  33774. weight: math.unit(1150, "lb"),
  33775. name: "Back",
  33776. image: {
  33777. source: "./media/characters/kichi/back.svg",
  33778. extra: 1273/1166,
  33779. bottom: 33/1306
  33780. }
  33781. },
  33782. },
  33783. [
  33784. {
  33785. name: "Normal",
  33786. height: math.unit(8 + 6/12, "feet"),
  33787. default: true
  33788. },
  33789. ]
  33790. ))
  33791. characterMakers.push(() => makeCharacter(
  33792. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  33793. {
  33794. front: {
  33795. height: math.unit(6, "feet"),
  33796. weight: math.unit(210, "lb"),
  33797. name: "Front",
  33798. image: {
  33799. source: "./media/characters/manetel-greyscale/front.svg",
  33800. extra: 350/312,
  33801. bottom: 8/358
  33802. }
  33803. },
  33804. },
  33805. [
  33806. {
  33807. name: "Micro",
  33808. height: math.unit(2, "inches")
  33809. },
  33810. {
  33811. name: "Normal",
  33812. height: math.unit(6, "feet"),
  33813. default: true
  33814. },
  33815. {
  33816. name: "Minimacro",
  33817. height: math.unit(17, "feet")
  33818. },
  33819. {
  33820. name: "Macro",
  33821. height: math.unit(117, "feet")
  33822. },
  33823. ]
  33824. ))
  33825. characterMakers.push(() => makeCharacter(
  33826. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  33827. {
  33828. side: {
  33829. height: math.unit(5 + 1/12, "feet"),
  33830. weight: math.unit(418, "lb"),
  33831. name: "Side",
  33832. image: {
  33833. source: "./media/characters/softpurr/side.svg",
  33834. extra: 1993/1945,
  33835. bottom: 134/2127
  33836. }
  33837. },
  33838. front: {
  33839. height: math.unit(5 + 1/12, "feet"),
  33840. weight: math.unit(418, "lb"),
  33841. name: "Front",
  33842. image: {
  33843. source: "./media/characters/softpurr/front.svg",
  33844. extra: 1950/1856,
  33845. bottom: 174/2124
  33846. }
  33847. },
  33848. paw: {
  33849. height: math.unit(1, "feet"),
  33850. name: "Paw",
  33851. image: {
  33852. source: "./media/characters/softpurr/paw.svg"
  33853. }
  33854. },
  33855. },
  33856. [
  33857. {
  33858. name: "Normal",
  33859. height: math.unit(5 + 1/12, "feet"),
  33860. default: true
  33861. },
  33862. ]
  33863. ))
  33864. characterMakers.push(() => makeCharacter(
  33865. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  33866. {
  33867. front: {
  33868. height: math.unit(260, "meters"),
  33869. name: "Front",
  33870. image: {
  33871. source: "./media/characters/anahita/front.svg",
  33872. extra: 665/635,
  33873. bottom: 89/754
  33874. }
  33875. },
  33876. },
  33877. [
  33878. {
  33879. name: "Macro",
  33880. height: math.unit(260, "meters"),
  33881. default: true
  33882. },
  33883. ]
  33884. ))
  33885. characterMakers.push(() => makeCharacter(
  33886. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  33887. {
  33888. front: {
  33889. height: math.unit(4 + 10/12, "feet"),
  33890. weight: math.unit(160, "lb"),
  33891. name: "Front",
  33892. image: {
  33893. source: "./media/characters/chip-mouse/front.svg",
  33894. extra: 3528/3408,
  33895. bottom: 0/3528
  33896. }
  33897. },
  33898. frontNsfw: {
  33899. height: math.unit(4 + 10/12, "feet"),
  33900. weight: math.unit(160, "lb"),
  33901. name: "Front (NSFW)",
  33902. image: {
  33903. source: "./media/characters/chip-mouse/front-nsfw.svg",
  33904. extra: 3528/3408,
  33905. bottom: 0/3528
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Normal",
  33912. height: math.unit(4 + 10/12, "feet"),
  33913. default: true
  33914. },
  33915. ]
  33916. ))
  33917. characterMakers.push(() => makeCharacter(
  33918. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  33919. {
  33920. side: {
  33921. height: math.unit(10, "feet"),
  33922. weight: math.unit(14000, "lb"),
  33923. name: "Side",
  33924. image: {
  33925. source: "./media/characters/kremm/side.svg",
  33926. extra: 1390/1053,
  33927. bottom: 90/1480
  33928. }
  33929. },
  33930. gut: {
  33931. height: math.unit(5.8, "feet"),
  33932. name: "Gut",
  33933. image: {
  33934. source: "./media/characters/kremm/gut.svg"
  33935. }
  33936. },
  33937. ass: {
  33938. height: math.unit(6.1, "feet"),
  33939. name: "Ass",
  33940. image: {
  33941. source: "./media/characters/kremm/ass.svg"
  33942. }
  33943. },
  33944. jaws: {
  33945. height: math.unit(2.2, "feet"),
  33946. name: "Jaws",
  33947. image: {
  33948. source: "./media/characters/kremm/jaws.svg"
  33949. }
  33950. },
  33951. dick: {
  33952. height: math.unit(4.26, "feet"),
  33953. name: "Dick",
  33954. image: {
  33955. source: "./media/characters/kremm/dick.svg"
  33956. }
  33957. },
  33958. },
  33959. [
  33960. {
  33961. name: "Normal",
  33962. height: math.unit(10, "feet"),
  33963. default: true
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33969. {
  33970. front: {
  33971. height: math.unit(30, "stories"),
  33972. name: "Front",
  33973. image: {
  33974. source: "./media/characters/kai/front.svg",
  33975. extra: 1892/1718,
  33976. bottom: 162/2054
  33977. }
  33978. },
  33979. },
  33980. [
  33981. {
  33982. name: "Macro",
  33983. height: math.unit(30, "stories"),
  33984. default: true
  33985. },
  33986. ]
  33987. ))
  33988. characterMakers.push(() => makeCharacter(
  33989. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33990. {
  33991. front: {
  33992. height: math.unit(6 + 4/12, "feet"),
  33993. weight: math.unit(145, "lb"),
  33994. name: "Front",
  33995. image: {
  33996. source: "./media/characters/sykes/front.svg",
  33997. extra: 1321 / 1187,
  33998. bottom: 66 / 1387
  33999. }
  34000. },
  34001. back: {
  34002. height: math.unit(6 + 4/12, "feet"),
  34003. weight: math.unit(145, "lb"),
  34004. name: "Back",
  34005. image: {
  34006. source: "./media/characters/sykes/back.svg",
  34007. extra: 1326/1181,
  34008. bottom: 31/1357
  34009. }
  34010. },
  34011. handBack: {
  34012. height: math.unit(0.9, "feet"),
  34013. name: "Hand (Back)",
  34014. image: {
  34015. source: "./media/characters/sykes/hand-back.svg"
  34016. }
  34017. },
  34018. handFront: {
  34019. height: math.unit(0.839, "feet"),
  34020. name: "Hand (Front)",
  34021. image: {
  34022. source: "./media/characters/sykes/hand-front.svg"
  34023. }
  34024. },
  34025. leftFoot: {
  34026. height: math.unit(1.2, "feet"),
  34027. name: "Foot (Left)",
  34028. image: {
  34029. source: "./media/characters/sykes/foot-left.svg"
  34030. }
  34031. },
  34032. rightFoot: {
  34033. height: math.unit(1.2, "feet"),
  34034. name: "Foot (Right)",
  34035. image: {
  34036. source: "./media/characters/sykes/foot-right.svg"
  34037. }
  34038. },
  34039. maw: {
  34040. height: math.unit(1.93, "feet"),
  34041. name: "Maw",
  34042. image: {
  34043. source: "./media/characters/sykes/maw.svg"
  34044. }
  34045. },
  34046. teeth: {
  34047. height: math.unit(0.51, "feet"),
  34048. name: "Teeth",
  34049. image: {
  34050. source: "./media/characters/sykes/teeth.svg"
  34051. }
  34052. },
  34053. tongue: {
  34054. height: math.unit(2.13, "feet"),
  34055. name: "Tongue",
  34056. image: {
  34057. source: "./media/characters/sykes/tongue.svg"
  34058. }
  34059. },
  34060. uvula: {
  34061. height: math.unit(0.16, "feet"),
  34062. name: "Uvula",
  34063. image: {
  34064. source: "./media/characters/sykes/uvula.svg"
  34065. }
  34066. },
  34067. collar: {
  34068. height: math.unit(0.287, "feet"),
  34069. name: "Collar",
  34070. image: {
  34071. source: "./media/characters/sykes/collar.svg"
  34072. }
  34073. },
  34074. },
  34075. [
  34076. {
  34077. name: "Shrunken",
  34078. height: math.unit(5, "inches")
  34079. },
  34080. {
  34081. name: "Normal",
  34082. height: math.unit(6 + 4 / 12, "feet"),
  34083. default: true
  34084. },
  34085. {
  34086. name: "Big",
  34087. height: math.unit(15, "feet")
  34088. },
  34089. ]
  34090. ))
  34091. characterMakers.push(() => makeCharacter(
  34092. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34093. {
  34094. front: {
  34095. height: math.unit(5 + 8/12, "feet"),
  34096. weight: math.unit(190, "lb"),
  34097. name: "Front",
  34098. image: {
  34099. source: "./media/characters/oven-otter/front.svg",
  34100. extra: 1809/1740,
  34101. bottom: 181/1990
  34102. }
  34103. },
  34104. back: {
  34105. height: math.unit(5 + 8/12, "feet"),
  34106. weight: math.unit(190, "lb"),
  34107. name: "Back",
  34108. image: {
  34109. source: "./media/characters/oven-otter/back.svg",
  34110. extra: 1709/1635,
  34111. bottom: 118/1827
  34112. }
  34113. },
  34114. hand: {
  34115. height: math.unit(1.07, "feet"),
  34116. name: "Hand",
  34117. image: {
  34118. source: "./media/characters/oven-otter/hand.svg"
  34119. }
  34120. },
  34121. beans: {
  34122. height: math.unit(1.74, "feet"),
  34123. name: "Beans",
  34124. image: {
  34125. source: "./media/characters/oven-otter/beans.svg"
  34126. }
  34127. },
  34128. },
  34129. [
  34130. {
  34131. name: "Micro",
  34132. height: math.unit(0.5, "inches")
  34133. },
  34134. {
  34135. name: "Normal",
  34136. height: math.unit(5 + 8/12, "feet"),
  34137. default: true
  34138. },
  34139. {
  34140. name: "Macro",
  34141. height: math.unit(250, "feet")
  34142. },
  34143. {
  34144. name: "Really High",
  34145. height: math.unit(420, "feet")
  34146. },
  34147. ]
  34148. ))
  34149. characterMakers.push(() => makeCharacter(
  34150. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34151. {
  34152. front: {
  34153. height: math.unit(5, "meters"),
  34154. weight: math.unit(292000000000000, "kg"),
  34155. name: "Front",
  34156. image: {
  34157. source: "./media/characters/devourer/front.svg",
  34158. extra: 1800/1733,
  34159. bottom: 211/2011
  34160. }
  34161. },
  34162. maw: {
  34163. height: math.unit(1.1, "meter"),
  34164. name: "Maw",
  34165. image: {
  34166. source: "./media/characters/devourer/maw.svg"
  34167. }
  34168. },
  34169. },
  34170. [
  34171. {
  34172. name: "Small",
  34173. height: math.unit(3, "meters")
  34174. },
  34175. {
  34176. name: "Large",
  34177. height: math.unit(5, "meters"),
  34178. default: true
  34179. },
  34180. ]
  34181. ))
  34182. characterMakers.push(() => makeCharacter(
  34183. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  34184. {
  34185. front: {
  34186. height: math.unit(6, "feet"),
  34187. weight: math.unit(400, "lb"),
  34188. name: "Front",
  34189. image: {
  34190. source: "./media/characters/ellarby/front.svg",
  34191. extra: 1909/1763,
  34192. bottom: 80/1989
  34193. }
  34194. },
  34195. back: {
  34196. height: math.unit(6, "feet"),
  34197. weight: math.unit(400, "lb"),
  34198. name: "Back",
  34199. image: {
  34200. source: "./media/characters/ellarby/back.svg",
  34201. extra: 1914/1784,
  34202. bottom: 172/2086
  34203. }
  34204. },
  34205. },
  34206. [
  34207. {
  34208. name: "Mischief",
  34209. height: math.unit(18, "inches")
  34210. },
  34211. {
  34212. name: "Trouble",
  34213. height: math.unit(12, "feet")
  34214. },
  34215. {
  34216. name: "Havoc",
  34217. height: math.unit(200, "feet"),
  34218. default: true
  34219. },
  34220. {
  34221. name: "Pandemonium",
  34222. height: math.unit(1, "mile")
  34223. },
  34224. {
  34225. name: "Catastrophe",
  34226. height: math.unit(100, "miles")
  34227. },
  34228. ]
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  34232. {
  34233. front: {
  34234. height: math.unit(4.7, "meters"),
  34235. weight: math.unit(6500, "kg"),
  34236. name: "Front",
  34237. image: {
  34238. source: "./media/characters/vex/front.svg",
  34239. extra: 1288/1140,
  34240. bottom: 100/1388
  34241. }
  34242. },
  34243. },
  34244. [
  34245. {
  34246. name: "Normal",
  34247. height: math.unit(4.7, "meters"),
  34248. default: true
  34249. },
  34250. ]
  34251. ))
  34252. characterMakers.push(() => makeCharacter(
  34253. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  34254. {
  34255. normal: {
  34256. height: math.unit(6, "feet"),
  34257. weight: math.unit(350, "lb"),
  34258. name: "Normal",
  34259. image: {
  34260. source: "./media/characters/teshy/normal.svg",
  34261. extra: 1795/1735,
  34262. bottom: 16/1811
  34263. }
  34264. },
  34265. monsterFront: {
  34266. height: math.unit(12, "feet"),
  34267. weight: math.unit(4700, "lb"),
  34268. name: "Monster (Front)",
  34269. image: {
  34270. source: "./media/characters/teshy/monster-front.svg",
  34271. extra: 2042/2034,
  34272. bottom: 128/2170
  34273. }
  34274. },
  34275. monsterSide: {
  34276. height: math.unit(12, "feet"),
  34277. weight: math.unit(4700, "lb"),
  34278. name: "Monster (Side)",
  34279. image: {
  34280. source: "./media/characters/teshy/monster-side.svg",
  34281. extra: 2067/2056,
  34282. bottom: 70/2137
  34283. }
  34284. },
  34285. monsterBack: {
  34286. height: math.unit(12, "feet"),
  34287. weight: math.unit(4700, "lb"),
  34288. name: "Monster (Back)",
  34289. image: {
  34290. source: "./media/characters/teshy/monster-back.svg",
  34291. extra: 1921/1914,
  34292. bottom: 171/2092
  34293. }
  34294. },
  34295. },
  34296. [
  34297. {
  34298. name: "Normal",
  34299. height: math.unit(6, "feet"),
  34300. default: true
  34301. },
  34302. ]
  34303. ))
  34304. characterMakers.push(() => makeCharacter(
  34305. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  34306. {
  34307. front: {
  34308. height: math.unit(6, "feet"),
  34309. name: "Front",
  34310. image: {
  34311. source: "./media/characters/ramey/front.svg",
  34312. extra: 790/787,
  34313. bottom: 27/817
  34314. }
  34315. },
  34316. },
  34317. [
  34318. {
  34319. name: "Normal",
  34320. height: math.unit(6, "feet"),
  34321. default: true
  34322. },
  34323. ]
  34324. ))
  34325. characterMakers.push(() => makeCharacter(
  34326. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  34327. {
  34328. front: {
  34329. height: math.unit(5 + 5/12, "feet"),
  34330. weight: math.unit(120, "lb"),
  34331. name: "Front",
  34332. image: {
  34333. source: "./media/characters/phirae/front.svg",
  34334. extra: 2491/2436,
  34335. bottom: 38/2529
  34336. }
  34337. },
  34338. },
  34339. [
  34340. {
  34341. name: "Normal",
  34342. height: math.unit(5 + 5/12, "feet"),
  34343. default: true
  34344. },
  34345. ]
  34346. ))
  34347. characterMakers.push(() => makeCharacter(
  34348. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  34349. {
  34350. front: {
  34351. height: math.unit(5 + 3/12, "feet"),
  34352. name: "Front",
  34353. image: {
  34354. source: "./media/characters/stagglas/front.svg",
  34355. extra: 962/882,
  34356. bottom: 53/1015
  34357. }
  34358. },
  34359. feral: {
  34360. height: math.unit(335, "cm"),
  34361. name: "Feral",
  34362. image: {
  34363. source: "./media/characters/stagglas/feral.svg",
  34364. extra: 1732/1090,
  34365. bottom: 48/1780
  34366. }
  34367. },
  34368. },
  34369. [
  34370. {
  34371. name: "Normal",
  34372. height: math.unit(5 + 3/12, "feet"),
  34373. default: true
  34374. },
  34375. ]
  34376. ))
  34377. characterMakers.push(() => makeCharacter(
  34378. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  34379. {
  34380. front: {
  34381. height: math.unit(5 + 4/12, "feet"),
  34382. weight: math.unit(145, "lb"),
  34383. name: "Front",
  34384. image: {
  34385. source: "./media/characters/starra/front.svg",
  34386. extra: 1790/1691,
  34387. bottom: 91/1881
  34388. }
  34389. },
  34390. },
  34391. [
  34392. {
  34393. name: "Normal",
  34394. height: math.unit(5 + 4/12, "feet"),
  34395. default: true
  34396. },
  34397. ]
  34398. ))
  34399. characterMakers.push(() => makeCharacter(
  34400. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  34401. {
  34402. front: {
  34403. height: math.unit(2.2, "meters"),
  34404. name: "Front",
  34405. image: {
  34406. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  34407. extra: 1194/1005,
  34408. bottom: 25/1219
  34409. }
  34410. },
  34411. },
  34412. [
  34413. {
  34414. name: "Normal",
  34415. height: math.unit(2.2, "meters"),
  34416. default: true
  34417. },
  34418. ]
  34419. ))
  34420. characterMakers.push(() => makeCharacter(
  34421. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  34422. {
  34423. side: {
  34424. height: math.unit(8 + 2/12, "feet"),
  34425. weight: math.unit(1240, "lb"),
  34426. name: "Side",
  34427. image: {
  34428. source: "./media/characters/mika-valentine/side.svg",
  34429. extra: 2670/2501,
  34430. bottom: 250/2920
  34431. }
  34432. },
  34433. },
  34434. [
  34435. {
  34436. name: "Normal",
  34437. height: math.unit(8 + 2/12, "feet"),
  34438. default: true
  34439. },
  34440. ]
  34441. ))
  34442. characterMakers.push(() => makeCharacter(
  34443. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  34444. {
  34445. front: {
  34446. height: math.unit(7 + 2/12, "feet"),
  34447. name: "Front",
  34448. image: {
  34449. source: "./media/characters/xoltol/front.svg",
  34450. extra: 2212/2124,
  34451. bottom: 84/2296
  34452. }
  34453. },
  34454. side: {
  34455. height: math.unit(7 + 2/12, "feet"),
  34456. name: "Side",
  34457. image: {
  34458. source: "./media/characters/xoltol/side.svg",
  34459. extra: 2273/2197,
  34460. bottom: 26/2299
  34461. }
  34462. },
  34463. hand: {
  34464. height: math.unit(2.5, "feet"),
  34465. name: "Hand",
  34466. image: {
  34467. source: "./media/characters/xoltol/hand.svg"
  34468. }
  34469. },
  34470. },
  34471. [
  34472. {
  34473. name: "Small-ish",
  34474. height: math.unit(5 + 11/12, "feet")
  34475. },
  34476. {
  34477. name: "Normal",
  34478. height: math.unit(7 + 2/12, "feet")
  34479. },
  34480. {
  34481. name: "\"Macro\"",
  34482. height: math.unit(14 + 9/12, "feet"),
  34483. default: true
  34484. },
  34485. {
  34486. name: "Alternate Height",
  34487. height: math.unit(20, "feet")
  34488. },
  34489. {
  34490. name: "Actually Macro",
  34491. height: math.unit(100, "feet")
  34492. },
  34493. ]
  34494. ))
  34495. characterMakers.push(() => makeCharacter(
  34496. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  34497. {
  34498. front: {
  34499. height: math.unit(5 + 2/12, "feet"),
  34500. name: "Front",
  34501. image: {
  34502. source: "./media/characters/kotetsu-redwood/front.svg",
  34503. extra: 1053/942,
  34504. bottom: 60/1113
  34505. }
  34506. },
  34507. },
  34508. [
  34509. {
  34510. name: "Normal",
  34511. height: math.unit(5 + 2/12, "feet"),
  34512. default: true
  34513. },
  34514. ]
  34515. ))
  34516. characterMakers.push(() => makeCharacter(
  34517. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  34518. {
  34519. front: {
  34520. height: math.unit(2.4, "meters"),
  34521. weight: math.unit(125, "kg"),
  34522. name: "Front",
  34523. image: {
  34524. source: "./media/characters/lilith/front.svg",
  34525. extra: 1590/1513,
  34526. bottom: 203/1793
  34527. }
  34528. },
  34529. },
  34530. [
  34531. {
  34532. name: "Humanoid",
  34533. height: math.unit(2.4, "meters")
  34534. },
  34535. {
  34536. name: "Normal",
  34537. height: math.unit(6, "meters"),
  34538. default: true
  34539. },
  34540. {
  34541. name: "Largest",
  34542. height: math.unit(55, "meters")
  34543. },
  34544. ]
  34545. ))
  34546. characterMakers.push(() => makeCharacter(
  34547. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  34548. {
  34549. front: {
  34550. height: math.unit(8 + 4/12, "feet"),
  34551. weight: math.unit(535, "lb"),
  34552. name: "Front",
  34553. image: {
  34554. source: "./media/characters/beh'kah-bolger/front.svg",
  34555. extra: 1660/1603,
  34556. bottom: 37/1697
  34557. }
  34558. },
  34559. },
  34560. [
  34561. {
  34562. name: "Normal",
  34563. height: math.unit(8 + 4/12, "feet"),
  34564. default: true
  34565. },
  34566. {
  34567. name: "Kaiju",
  34568. height: math.unit(250, "feet")
  34569. },
  34570. {
  34571. name: "Still Growing",
  34572. height: math.unit(10, "miles")
  34573. },
  34574. {
  34575. name: "Continental",
  34576. height: math.unit(5000, "miles")
  34577. },
  34578. {
  34579. name: "Final Form",
  34580. height: math.unit(2500000, "miles")
  34581. },
  34582. ]
  34583. ))
  34584. characterMakers.push(() => makeCharacter(
  34585. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  34586. {
  34587. front: {
  34588. height: math.unit(7 + 2/12, "feet"),
  34589. weight: math.unit(230, "kg"),
  34590. name: "Front",
  34591. image: {
  34592. source: "./media/characters/tatyana-milewska/front.svg",
  34593. extra: 1199/1150,
  34594. bottom: 86/1285
  34595. }
  34596. },
  34597. },
  34598. [
  34599. {
  34600. name: "Normal",
  34601. height: math.unit(7 + 2/12, "feet"),
  34602. default: true
  34603. },
  34604. {
  34605. name: "Big",
  34606. height: math.unit(12, "feet")
  34607. },
  34608. {
  34609. name: "Minimacro",
  34610. height: math.unit(20, "feet")
  34611. },
  34612. {
  34613. name: "Macro",
  34614. height: math.unit(120, "feet")
  34615. },
  34616. ]
  34617. ))
  34618. characterMakers.push(() => makeCharacter(
  34619. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  34620. {
  34621. front: {
  34622. height: math.unit(7 + 8/12, "feet"),
  34623. weight: math.unit(152, "kg"),
  34624. name: "Front",
  34625. image: {
  34626. source: "./media/characters/helen-arri/front.svg",
  34627. extra: 440/423,
  34628. bottom: 14/454
  34629. }
  34630. },
  34631. back: {
  34632. height: math.unit(7 + 8/12, "feet"),
  34633. weight: math.unit(152, "kg"),
  34634. name: "Back",
  34635. image: {
  34636. source: "./media/characters/helen-arri/back.svg",
  34637. extra: 443/426,
  34638. bottom: 8/451
  34639. }
  34640. },
  34641. },
  34642. [
  34643. {
  34644. name: "Normal",
  34645. height: math.unit(7 + 8/12, "feet"),
  34646. default: true
  34647. },
  34648. {
  34649. name: "Big",
  34650. height: math.unit(14, "feet")
  34651. },
  34652. {
  34653. name: "Minimacro",
  34654. height: math.unit(24, "feet")
  34655. },
  34656. {
  34657. name: "Macro",
  34658. height: math.unit(140, "feet")
  34659. },
  34660. ]
  34661. ))
  34662. characterMakers.push(() => makeCharacter(
  34663. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  34664. {
  34665. front: {
  34666. height: math.unit(6, "meters"),
  34667. name: "Front",
  34668. image: {
  34669. source: "./media/characters/ehanu-rehu/front.svg",
  34670. extra: 1800/1800,
  34671. bottom: 59/1859
  34672. }
  34673. },
  34674. },
  34675. [
  34676. {
  34677. name: "Normal",
  34678. height: math.unit(6, "meters"),
  34679. default: true
  34680. },
  34681. ]
  34682. ))
  34683. characterMakers.push(() => makeCharacter(
  34684. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  34685. {
  34686. front: {
  34687. height: math.unit(7 + 3/12, "feet"),
  34688. name: "Front",
  34689. image: {
  34690. source: "./media/characters/renholder/front.svg",
  34691. extra: 3096/2960,
  34692. bottom: 250/3346
  34693. }
  34694. },
  34695. },
  34696. [
  34697. {
  34698. name: "Normal Bat",
  34699. height: math.unit(7 + 3/12, "feet"),
  34700. default: true
  34701. },
  34702. {
  34703. name: "Slightly Tall Bat",
  34704. height: math.unit(100, "feet")
  34705. },
  34706. {
  34707. name: "Big Bat",
  34708. height: math.unit(1000, "feet")
  34709. },
  34710. {
  34711. name: "City-Sized Bat",
  34712. height: math.unit(200000, "feet")
  34713. },
  34714. {
  34715. name: "Bigger Bat",
  34716. height: math.unit(10000, "miles")
  34717. },
  34718. {
  34719. name: "Solar Sized Bat",
  34720. height: math.unit(100, "AU")
  34721. },
  34722. {
  34723. name: "Galactic Bat",
  34724. height: math.unit(200000, "lightyears")
  34725. },
  34726. {
  34727. name: "Universally Known Bat",
  34728. height: math.unit(1, "universe")
  34729. },
  34730. ]
  34731. ))
  34732. characterMakers.push(() => makeCharacter(
  34733. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  34734. {
  34735. front: {
  34736. height: math.unit(6 + 11/12, "feet"),
  34737. weight: math.unit(250, "lb"),
  34738. name: "Front",
  34739. image: {
  34740. source: "./media/characters/cookiecat/front.svg",
  34741. extra: 893/827,
  34742. bottom: 14/907
  34743. }
  34744. },
  34745. },
  34746. [
  34747. {
  34748. name: "Micro",
  34749. height: math.unit(3, "inches")
  34750. },
  34751. {
  34752. name: "Normal",
  34753. height: math.unit(6 + 11/12, "feet"),
  34754. default: true
  34755. },
  34756. {
  34757. name: "Macro",
  34758. height: math.unit(100, "feet")
  34759. },
  34760. {
  34761. name: "Macro+",
  34762. height: math.unit(404, "feet")
  34763. },
  34764. {
  34765. name: "Megamacro",
  34766. height: math.unit(165, "miles")
  34767. },
  34768. {
  34769. name: "Planetary",
  34770. height: math.unit(4600, "miles")
  34771. },
  34772. ]
  34773. ))
  34774. characterMakers.push(() => makeCharacter(
  34775. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  34776. {
  34777. front: {
  34778. height: math.unit(10 + 3/12, "feet"),
  34779. weight: math.unit(1500, "lb"),
  34780. name: "Front",
  34781. image: {
  34782. source: "./media/characters/tux-kusanagi/front.svg",
  34783. extra: 944/840,
  34784. bottom: 39/983
  34785. }
  34786. },
  34787. back: {
  34788. height: math.unit(10 + 3/12, "feet"),
  34789. weight: math.unit(1500, "lb"),
  34790. name: "Back",
  34791. image: {
  34792. source: "./media/characters/tux-kusanagi/back.svg",
  34793. extra: 941/842,
  34794. bottom: 28/969
  34795. }
  34796. },
  34797. rump: {
  34798. height: math.unit(5.25, "feet"),
  34799. name: "Rump",
  34800. image: {
  34801. source: "./media/characters/tux-kusanagi/rump.svg"
  34802. }
  34803. },
  34804. beak: {
  34805. height: math.unit(1.54, "feet"),
  34806. name: "Beak",
  34807. image: {
  34808. source: "./media/characters/tux-kusanagi/beak.svg"
  34809. }
  34810. },
  34811. },
  34812. [
  34813. {
  34814. name: "Normal",
  34815. height: math.unit(10 + 3/12, "feet"),
  34816. default: true
  34817. },
  34818. ]
  34819. ))
  34820. characterMakers.push(() => makeCharacter(
  34821. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  34822. {
  34823. front: {
  34824. height: math.unit(58, "feet"),
  34825. weight: math.unit(200, "tons"),
  34826. name: "Front",
  34827. image: {
  34828. source: "./media/characters/uzarmazari/front.svg",
  34829. extra: 1575/1455,
  34830. bottom: 152/1727
  34831. }
  34832. },
  34833. back: {
  34834. height: math.unit(58, "feet"),
  34835. weight: math.unit(200, "tons"),
  34836. name: "Back",
  34837. image: {
  34838. source: "./media/characters/uzarmazari/back.svg",
  34839. extra: 1585/1510,
  34840. bottom: 157/1742
  34841. }
  34842. },
  34843. head: {
  34844. height: math.unit(26, "feet"),
  34845. name: "Head",
  34846. image: {
  34847. source: "./media/characters/uzarmazari/head.svg"
  34848. }
  34849. },
  34850. },
  34851. [
  34852. {
  34853. name: "Normal",
  34854. height: math.unit(58, "feet"),
  34855. default: true
  34856. },
  34857. ]
  34858. ))
  34859. characterMakers.push(() => makeCharacter(
  34860. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  34861. {
  34862. side: {
  34863. height: math.unit(15, "feet"),
  34864. name: "Side",
  34865. image: {
  34866. source: "./media/characters/akitu/side.svg",
  34867. extra: 1421/1321,
  34868. bottom: 157/1578
  34869. }
  34870. },
  34871. front: {
  34872. height: math.unit(15, "feet"),
  34873. name: "Front",
  34874. image: {
  34875. source: "./media/characters/akitu/front.svg",
  34876. extra: 1435/1326,
  34877. bottom: 232/1667
  34878. }
  34879. },
  34880. },
  34881. [
  34882. {
  34883. name: "Normal",
  34884. height: math.unit(15, "feet"),
  34885. default: true
  34886. },
  34887. ]
  34888. ))
  34889. characterMakers.push(() => makeCharacter(
  34890. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  34891. {
  34892. front: {
  34893. height: math.unit(10 + 8/12, "feet"),
  34894. name: "Front",
  34895. image: {
  34896. source: "./media/characters/azalie-croixland/front.svg",
  34897. extra: 1972/1856,
  34898. bottom: 31/2003
  34899. }
  34900. },
  34901. },
  34902. [
  34903. {
  34904. name: "Original Height",
  34905. height: math.unit(5 + 4/12, "feet")
  34906. },
  34907. {
  34908. name: "Normal Height",
  34909. height: math.unit(10 + 8/12, "feet"),
  34910. default: true
  34911. },
  34912. ]
  34913. ))
  34914. characterMakers.push(() => makeCharacter(
  34915. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  34916. {
  34917. side: {
  34918. height: math.unit(7 + 1/12, "feet"),
  34919. weight: math.unit(245, "lb"),
  34920. name: "Side",
  34921. image: {
  34922. source: "./media/characters/kavus-kazian/side.svg",
  34923. extra: 349/342,
  34924. bottom: 15/364
  34925. }
  34926. },
  34927. },
  34928. [
  34929. {
  34930. name: "Normal",
  34931. height: math.unit(7 + 1/12, "feet"),
  34932. default: true
  34933. },
  34934. ]
  34935. ))
  34936. characterMakers.push(() => makeCharacter(
  34937. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  34938. {
  34939. normal: {
  34940. height: math.unit(5 + 11/12, "feet"),
  34941. name: "Normal",
  34942. image: {
  34943. source: "./media/characters/moonlight-rose/normal.svg",
  34944. extra: 1979/1835,
  34945. bottom: 14/1993
  34946. }
  34947. },
  34948. demon: {
  34949. height: math.unit(5, "km"),
  34950. name: "Demon",
  34951. image: {
  34952. source: "./media/characters/moonlight-rose/demon.svg",
  34953. extra: 986/916,
  34954. bottom: 28/1014
  34955. }
  34956. },
  34957. },
  34958. [
  34959. {
  34960. name: "\"Natural\" height",
  34961. height: math.unit(5 + 11/12, "feet")
  34962. },
  34963. {
  34964. name: "Comfortable Size",
  34965. height: math.unit(40, "meters")
  34966. },
  34967. {
  34968. name: "Common Size",
  34969. height: math.unit(50, "km"),
  34970. default: true
  34971. },
  34972. {
  34973. name: "Demonic",
  34974. height: math.unit(1.24415e+21, "meters")
  34975. },
  34976. ]
  34977. ))
  34978. characterMakers.push(() => makeCharacter(
  34979. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34980. {
  34981. front: {
  34982. height: math.unit(16, "feet"),
  34983. weight: math.unit(610, "kg"),
  34984. name: "Front",
  34985. image: {
  34986. source: "./media/characters/huckle/front.svg",
  34987. extra: 1731/1625,
  34988. bottom: 33/1764
  34989. }
  34990. },
  34991. back: {
  34992. height: math.unit(16, "feet"),
  34993. weight: math.unit(610, "kg"),
  34994. name: "Back",
  34995. image: {
  34996. source: "./media/characters/huckle/back.svg",
  34997. extra: 1738/1651,
  34998. bottom: 37/1775
  34999. }
  35000. },
  35001. laughing: {
  35002. height: math.unit(3.75, "feet"),
  35003. name: "Laughing",
  35004. image: {
  35005. source: "./media/characters/huckle/laughing.svg"
  35006. }
  35007. },
  35008. angry: {
  35009. height: math.unit(4.15, "feet"),
  35010. name: "Angry",
  35011. image: {
  35012. source: "./media/characters/huckle/angry.svg"
  35013. }
  35014. },
  35015. },
  35016. [
  35017. {
  35018. name: "Normal",
  35019. height: math.unit(16, "feet"),
  35020. default: true
  35021. },
  35022. {
  35023. name: "Mini Macro",
  35024. height: math.unit(463, "feet")
  35025. },
  35026. {
  35027. name: "Macro",
  35028. height: math.unit(1680, "meters")
  35029. },
  35030. {
  35031. name: "Mega Macro",
  35032. height: math.unit(175, "km")
  35033. },
  35034. {
  35035. name: "Terra Macro",
  35036. height: math.unit(32, "gigameters")
  35037. },
  35038. {
  35039. name: "Multiverse+",
  35040. height: math.unit(2.56e23, "yottameters")
  35041. },
  35042. ]
  35043. ))
  35044. characterMakers.push(() => makeCharacter(
  35045. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35046. {
  35047. front: {
  35048. height: math.unit(6 + 9/12, "feet"),
  35049. weight: math.unit(280, "lb"),
  35050. name: "Front",
  35051. image: {
  35052. source: "./media/characters/candy/front.svg",
  35053. extra: 234/217,
  35054. bottom: 11/245
  35055. }
  35056. },
  35057. },
  35058. [
  35059. {
  35060. name: "Really Small",
  35061. height: math.unit(0.1, "nm")
  35062. },
  35063. {
  35064. name: "Micro",
  35065. height: math.unit(2, "inches")
  35066. },
  35067. {
  35068. name: "Normal",
  35069. height: math.unit(6 + 9/12, "feet"),
  35070. default: true
  35071. },
  35072. {
  35073. name: "Small Macro",
  35074. height: math.unit(69, "feet")
  35075. },
  35076. {
  35077. name: "Macro",
  35078. height: math.unit(160, "feet")
  35079. },
  35080. {
  35081. name: "Megamacro",
  35082. height: math.unit(22000, "miles")
  35083. },
  35084. {
  35085. name: "Gigamacro",
  35086. height: math.unit(50000, "miles")
  35087. },
  35088. ]
  35089. ))
  35090. characterMakers.push(() => makeCharacter(
  35091. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  35092. {
  35093. front: {
  35094. height: math.unit(4, "feet"),
  35095. weight: math.unit(90, "lb"),
  35096. name: "Front",
  35097. image: {
  35098. source: "./media/characters/joey-mcdonald/front.svg",
  35099. extra: 1059/852,
  35100. bottom: 33/1092
  35101. }
  35102. },
  35103. back: {
  35104. height: math.unit(4, "feet"),
  35105. weight: math.unit(90, "lb"),
  35106. name: "Back",
  35107. image: {
  35108. source: "./media/characters/joey-mcdonald/back.svg",
  35109. extra: 1077/879,
  35110. bottom: 5/1082
  35111. }
  35112. },
  35113. frontKobold: {
  35114. height: math.unit(4, "feet"),
  35115. weight: math.unit(100, "lb"),
  35116. name: "Front-kobold",
  35117. image: {
  35118. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  35119. extra: 1480/1367,
  35120. bottom: 0/1480
  35121. }
  35122. },
  35123. backKobold: {
  35124. height: math.unit(4, "feet"),
  35125. weight: math.unit(100, "lb"),
  35126. name: "Back-kobold",
  35127. image: {
  35128. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  35129. extra: 1449/1361,
  35130. bottom: 0/1449
  35131. }
  35132. },
  35133. },
  35134. [
  35135. {
  35136. name: "Normal",
  35137. height: math.unit(4, "feet"),
  35138. default: true
  35139. },
  35140. ]
  35141. ))
  35142. characterMakers.push(() => makeCharacter(
  35143. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  35144. {
  35145. front: {
  35146. height: math.unit(12 + 6/12, "feet"),
  35147. name: "Front",
  35148. image: {
  35149. source: "./media/characters/kass-lockheed/front.svg",
  35150. extra: 354/343,
  35151. bottom: 9/363
  35152. }
  35153. },
  35154. back: {
  35155. height: math.unit(12 + 6/12, "feet"),
  35156. name: "Back",
  35157. image: {
  35158. source: "./media/characters/kass-lockheed/back.svg",
  35159. extra: 364/352,
  35160. bottom: 3/367
  35161. }
  35162. },
  35163. dick: {
  35164. height: math.unit(3.12, "feet"),
  35165. name: "Dick",
  35166. image: {
  35167. source: "./media/characters/kass-lockheed/dick.svg"
  35168. }
  35169. },
  35170. head: {
  35171. height: math.unit(2.6, "feet"),
  35172. name: "Head",
  35173. image: {
  35174. source: "./media/characters/kass-lockheed/head.svg"
  35175. }
  35176. },
  35177. bleh: {
  35178. height: math.unit(2.85, "feet"),
  35179. name: "Bleh",
  35180. image: {
  35181. source: "./media/characters/kass-lockheed/bleh.svg"
  35182. }
  35183. },
  35184. smug: {
  35185. height: math.unit(2.85, "feet"),
  35186. name: "Smug",
  35187. image: {
  35188. source: "./media/characters/kass-lockheed/smug.svg"
  35189. }
  35190. },
  35191. },
  35192. [
  35193. {
  35194. name: "Normal",
  35195. height: math.unit(12 + 6/12, "feet"),
  35196. default: true
  35197. },
  35198. ]
  35199. ))
  35200. characterMakers.push(() => makeCharacter(
  35201. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  35202. {
  35203. front: {
  35204. height: math.unit(6 + 2/12, "feet"),
  35205. name: "Front",
  35206. image: {
  35207. source: "./media/characters/taylor/front.svg",
  35208. extra: 639/495,
  35209. bottom: 12/651
  35210. }
  35211. },
  35212. },
  35213. [
  35214. {
  35215. name: "Normal",
  35216. height: math.unit(6 + 2/12, "feet"),
  35217. default: true
  35218. },
  35219. {
  35220. name: "Big",
  35221. height: math.unit(15, "feet")
  35222. },
  35223. {
  35224. name: "Lorg",
  35225. height: math.unit(80, "feet")
  35226. },
  35227. {
  35228. name: "Too Lorg",
  35229. height: math.unit(120, "feet")
  35230. },
  35231. ]
  35232. ))
  35233. characterMakers.push(() => makeCharacter(
  35234. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  35235. {
  35236. front: {
  35237. height: math.unit(15, "feet"),
  35238. name: "Front",
  35239. image: {
  35240. source: "./media/characters/kaizer/front.svg",
  35241. extra: 1612/1436,
  35242. bottom: 43/1655
  35243. }
  35244. },
  35245. },
  35246. [
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(15, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(2, "feet"),
  35259. weight: math.unit(30, "lb"),
  35260. name: "Front",
  35261. image: {
  35262. source: "./media/characters/sandy/front.svg",
  35263. extra: 1439/1307,
  35264. bottom: 194/1633
  35265. }
  35266. },
  35267. },
  35268. [
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(2, "feet"),
  35272. default: true
  35273. },
  35274. ]
  35275. ))
  35276. characterMakers.push(() => makeCharacter(
  35277. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  35278. {
  35279. front: {
  35280. height: math.unit(3, "feet"),
  35281. name: "Front",
  35282. image: {
  35283. source: "./media/characters/mellvi/front.svg",
  35284. extra: 1831/1630,
  35285. bottom: 58/1889
  35286. }
  35287. },
  35288. },
  35289. [
  35290. {
  35291. name: "Normal",
  35292. height: math.unit(3, "feet"),
  35293. default: true
  35294. },
  35295. ]
  35296. ))
  35297. characterMakers.push(() => makeCharacter(
  35298. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  35299. {
  35300. front: {
  35301. height: math.unit(5 + 11/12, "feet"),
  35302. weight: math.unit(200, "lb"),
  35303. name: "Front",
  35304. image: {
  35305. source: "./media/characters/shirou/front.svg",
  35306. extra: 2491/2383,
  35307. bottom: 189/2680
  35308. }
  35309. },
  35310. back: {
  35311. height: math.unit(5 + 11/12, "feet"),
  35312. weight: math.unit(200, "lb"),
  35313. name: "Back",
  35314. image: {
  35315. source: "./media/characters/shirou/back.svg",
  35316. extra: 2554/2450,
  35317. bottom: 76/2630
  35318. }
  35319. },
  35320. },
  35321. [
  35322. {
  35323. name: "Normal",
  35324. height: math.unit(5 + 11/12, "feet"),
  35325. default: true
  35326. },
  35327. ]
  35328. ))
  35329. characterMakers.push(() => makeCharacter(
  35330. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  35331. {
  35332. front: {
  35333. height: math.unit(6 + 3/12, "feet"),
  35334. weight: math.unit(177, "lb"),
  35335. name: "Front",
  35336. image: {
  35337. source: "./media/characters/noryu/front.svg",
  35338. extra: 973/885,
  35339. bottom: 10/983
  35340. }
  35341. },
  35342. },
  35343. [
  35344. {
  35345. name: "Normal",
  35346. height: math.unit(6 + 3/12, "feet"),
  35347. default: true
  35348. },
  35349. ]
  35350. ))
  35351. characterMakers.push(() => makeCharacter(
  35352. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  35353. {
  35354. front: {
  35355. height: math.unit(5 + 6/12, "feet"),
  35356. weight: math.unit(170, "lb"),
  35357. name: "Front",
  35358. image: {
  35359. source: "./media/characters/mevolas-rubenido/front.svg",
  35360. extra: 2109/1901,
  35361. bottom: 96/2205
  35362. }
  35363. },
  35364. },
  35365. [
  35366. {
  35367. name: "Normal",
  35368. height: math.unit(5 + 6/12, "feet"),
  35369. default: true
  35370. },
  35371. ]
  35372. ))
  35373. characterMakers.push(() => makeCharacter(
  35374. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  35375. {
  35376. front: {
  35377. height: math.unit(100, "feet"),
  35378. name: "Front",
  35379. image: {
  35380. source: "./media/characters/dee/front.svg",
  35381. extra: 2153/2036,
  35382. bottom: 59/2212
  35383. }
  35384. },
  35385. back: {
  35386. height: math.unit(100, "feet"),
  35387. name: "Back",
  35388. image: {
  35389. source: "./media/characters/dee/back.svg",
  35390. extra: 2183/2058,
  35391. bottom: 75/2258
  35392. }
  35393. },
  35394. foot: {
  35395. height: math.unit(19.43, "feet"),
  35396. name: "Foot",
  35397. image: {
  35398. source: "./media/characters/dee/foot.svg"
  35399. }
  35400. },
  35401. hoof: {
  35402. height: math.unit(20.6, "feet"),
  35403. name: "Hoof",
  35404. image: {
  35405. source: "./media/characters/dee/hoof.svg"
  35406. }
  35407. },
  35408. },
  35409. [
  35410. {
  35411. name: "Macro",
  35412. height: math.unit(100, "feet"),
  35413. default: true
  35414. },
  35415. ]
  35416. ))
  35417. characterMakers.push(() => makeCharacter(
  35418. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  35419. {
  35420. front: {
  35421. height: math.unit(5 + 6/12, "feet"),
  35422. name: "Front",
  35423. image: {
  35424. source: "./media/characters/teh/front.svg",
  35425. extra: 1002/847,
  35426. bottom: 62/1064
  35427. }
  35428. },
  35429. },
  35430. [
  35431. {
  35432. name: "Normal",
  35433. height: math.unit(5 + 6/12, "feet"),
  35434. default: true
  35435. },
  35436. ]
  35437. ))
  35438. characterMakers.push(() => makeCharacter(
  35439. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  35440. {
  35441. side: {
  35442. height: math.unit(6 + 1/12, "feet"),
  35443. weight: math.unit(204, "lb"),
  35444. name: "Side",
  35445. image: {
  35446. source: "./media/characters/quicksilver-ayukoti/side.svg",
  35447. extra: 974/775,
  35448. bottom: 169/1143
  35449. }
  35450. },
  35451. sitting: {
  35452. height: math.unit(6 + 2/12, "feet"),
  35453. weight: math.unit(204, "lb"),
  35454. name: "Sitting",
  35455. image: {
  35456. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  35457. extra: 1175/964,
  35458. bottom: 378/1553
  35459. }
  35460. },
  35461. },
  35462. [
  35463. {
  35464. name: "Normal",
  35465. height: math.unit(6 + 1/12, "feet"),
  35466. default: true
  35467. },
  35468. ]
  35469. ))
  35470. characterMakers.push(() => makeCharacter(
  35471. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  35472. {
  35473. front: {
  35474. height: math.unit(6, "inches"),
  35475. name: "Front",
  35476. image: {
  35477. source: "./media/characters/tululi/front.svg",
  35478. extra: 1997/1876,
  35479. bottom: 20/2017
  35480. }
  35481. },
  35482. },
  35483. [
  35484. {
  35485. name: "Normal",
  35486. height: math.unit(6, "inches"),
  35487. default: true
  35488. },
  35489. ]
  35490. ))
  35491. characterMakers.push(() => makeCharacter(
  35492. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  35493. {
  35494. front: {
  35495. height: math.unit(4 + 1/12, "feet"),
  35496. name: "Front",
  35497. image: {
  35498. source: "./media/characters/star/front.svg",
  35499. extra: 1493/1189,
  35500. bottom: 48/1541
  35501. }
  35502. },
  35503. },
  35504. [
  35505. {
  35506. name: "Normal",
  35507. height: math.unit(4 + 1/12, "feet"),
  35508. default: true
  35509. },
  35510. ]
  35511. ))
  35512. characterMakers.push(() => makeCharacter(
  35513. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  35514. {
  35515. front: {
  35516. height: math.unit(6 + 3/12, "feet"),
  35517. name: "Front",
  35518. image: {
  35519. source: "./media/characters/comet/front.svg",
  35520. extra: 1681/1462,
  35521. bottom: 26/1707
  35522. }
  35523. },
  35524. },
  35525. [
  35526. {
  35527. name: "Normal",
  35528. height: math.unit(6 + 3/12, "feet"),
  35529. default: true
  35530. },
  35531. ]
  35532. ))
  35533. characterMakers.push(() => makeCharacter(
  35534. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  35535. {
  35536. front: {
  35537. height: math.unit(950, "feet"),
  35538. name: "Front",
  35539. image: {
  35540. source: "./media/characters/vortex/front.svg",
  35541. extra: 1497/1434,
  35542. bottom: 56/1553
  35543. }
  35544. },
  35545. maw: {
  35546. height: math.unit(285, "feet"),
  35547. name: "Maw",
  35548. image: {
  35549. source: "./media/characters/vortex/maw.svg"
  35550. }
  35551. },
  35552. },
  35553. [
  35554. {
  35555. name: "Macro",
  35556. height: math.unit(950, "feet"),
  35557. default: true
  35558. },
  35559. ]
  35560. ))
  35561. characterMakers.push(() => makeCharacter(
  35562. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  35563. {
  35564. front: {
  35565. height: math.unit(600, "feet"),
  35566. weight: math.unit(0.02, "grams"),
  35567. name: "Front",
  35568. image: {
  35569. source: "./media/characters/doodle/front.svg",
  35570. extra: 1578/1413,
  35571. bottom: 37/1615
  35572. }
  35573. },
  35574. },
  35575. [
  35576. {
  35577. name: "Macro",
  35578. height: math.unit(600, "feet"),
  35579. default: true
  35580. },
  35581. ]
  35582. ))
  35583. characterMakers.push(() => makeCharacter(
  35584. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  35585. {
  35586. front: {
  35587. height: math.unit(6 + 6/12, "feet"),
  35588. name: "Front",
  35589. image: {
  35590. source: "./media/characters/jai/front.svg",
  35591. extra: 1645/1534,
  35592. bottom: 115/1760
  35593. }
  35594. },
  35595. },
  35596. [
  35597. {
  35598. name: "Normal",
  35599. height: math.unit(6 + 6/12, "feet"),
  35600. default: true
  35601. },
  35602. ]
  35603. ))
  35604. characterMakers.push(() => makeCharacter(
  35605. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  35606. {
  35607. front: {
  35608. height: math.unit(6 + 8/12, "feet"),
  35609. name: "Front",
  35610. image: {
  35611. source: "./media/characters/pixel/front.svg",
  35612. extra: 1900/1735,
  35613. bottom: 63/1963
  35614. }
  35615. },
  35616. },
  35617. [
  35618. {
  35619. name: "Normal",
  35620. height: math.unit(6 + 8/12, "feet"),
  35621. default: true
  35622. },
  35623. ]
  35624. ))
  35625. characterMakers.push(() => makeCharacter(
  35626. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  35627. {
  35628. back: {
  35629. height: math.unit(4 + 1/12, "feet"),
  35630. weight: math.unit(75, "lb"),
  35631. name: "Back",
  35632. image: {
  35633. source: "./media/characters/rhett/back.svg",
  35634. extra: 930/878,
  35635. bottom: 25/955
  35636. }
  35637. },
  35638. front: {
  35639. height: math.unit(4 + 1/12, "feet"),
  35640. weight: math.unit(75, "lb"),
  35641. name: "Front",
  35642. image: {
  35643. source: "./media/characters/rhett/front.svg",
  35644. extra: 1682/1586,
  35645. bottom: 92/1774
  35646. }
  35647. },
  35648. },
  35649. [
  35650. {
  35651. name: "Micro",
  35652. height: math.unit(8, "inches")
  35653. },
  35654. {
  35655. name: "Tiny",
  35656. height: math.unit(2, "feet")
  35657. },
  35658. {
  35659. name: "Normal",
  35660. height: math.unit(4 + 1/12, "feet"),
  35661. default: true
  35662. },
  35663. ]
  35664. ))
  35665. characterMakers.push(() => makeCharacter(
  35666. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  35667. {
  35668. front: {
  35669. height: math.unit(3 + 3/12, "feet"),
  35670. name: "Front",
  35671. image: {
  35672. source: "./media/characters/penny/front.svg",
  35673. extra: 1406/1311,
  35674. bottom: 26/1432
  35675. }
  35676. },
  35677. },
  35678. [
  35679. {
  35680. name: "Normal",
  35681. height: math.unit(3 + 3/12, "feet"),
  35682. default: true
  35683. },
  35684. ]
  35685. ))
  35686. characterMakers.push(() => makeCharacter(
  35687. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  35688. {
  35689. front: {
  35690. height: math.unit(4 + 11/12, "feet"),
  35691. name: "Front",
  35692. image: {
  35693. source: "./media/characters/monty/front.svg",
  35694. extra: 1479/1209,
  35695. bottom: 0/1479
  35696. }
  35697. },
  35698. },
  35699. [
  35700. {
  35701. name: "Normal",
  35702. height: math.unit(4 + 11/12, "feet"),
  35703. default: true
  35704. },
  35705. ]
  35706. ))
  35707. characterMakers.push(() => makeCharacter(
  35708. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  35709. {
  35710. front: {
  35711. height: math.unit(8 + 4/12, "feet"),
  35712. name: "Front",
  35713. image: {
  35714. source: "./media/characters/sterling/front.svg",
  35715. extra: 1420/1236,
  35716. bottom: 27/1447
  35717. }
  35718. },
  35719. },
  35720. [
  35721. {
  35722. name: "Normal",
  35723. height: math.unit(8 + 4/12, "feet"),
  35724. default: true
  35725. },
  35726. ]
  35727. ))
  35728. characterMakers.push(() => makeCharacter(
  35729. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  35730. {
  35731. front: {
  35732. height: math.unit(15, "feet"),
  35733. name: "Front",
  35734. image: {
  35735. source: "./media/characters/marble/front.svg",
  35736. extra: 973/937,
  35737. bottom: 32/1005
  35738. }
  35739. },
  35740. },
  35741. [
  35742. {
  35743. name: "Normal",
  35744. height: math.unit(15, "feet"),
  35745. default: true
  35746. },
  35747. ]
  35748. ))
  35749. characterMakers.push(() => makeCharacter(
  35750. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  35751. {
  35752. front: {
  35753. height: math.unit(3, "inches"),
  35754. name: "Front",
  35755. image: {
  35756. source: "./media/characters/powder/front.svg",
  35757. extra: 1504/1334,
  35758. bottom: 518/2022
  35759. }
  35760. },
  35761. },
  35762. [
  35763. {
  35764. name: "Normal",
  35765. height: math.unit(3, "inches"),
  35766. default: true
  35767. },
  35768. ]
  35769. ))
  35770. characterMakers.push(() => makeCharacter(
  35771. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  35772. {
  35773. front: {
  35774. height: math.unit(4 + 5/12, "feet"),
  35775. name: "Front",
  35776. image: {
  35777. source: "./media/characters/joey-raccoon/front.svg",
  35778. extra: 1273/1197,
  35779. bottom: 0/1273
  35780. }
  35781. },
  35782. },
  35783. [
  35784. {
  35785. name: "Normal",
  35786. height: math.unit(4 + 5/12, "feet"),
  35787. default: true
  35788. },
  35789. ]
  35790. ))
  35791. characterMakers.push(() => makeCharacter(
  35792. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  35793. {
  35794. front: {
  35795. height: math.unit(8 + 4/12, "feet"),
  35796. name: "Front",
  35797. image: {
  35798. source: "./media/characters/vick/front.svg",
  35799. extra: 2187/2118,
  35800. bottom: 47/2234
  35801. }
  35802. },
  35803. },
  35804. [
  35805. {
  35806. name: "Normal",
  35807. height: math.unit(8 + 4/12, "feet"),
  35808. default: true
  35809. },
  35810. ]
  35811. ))
  35812. characterMakers.push(() => makeCharacter(
  35813. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  35814. {
  35815. front: {
  35816. height: math.unit(5 + 5/12, "feet"),
  35817. name: "Front",
  35818. image: {
  35819. source: "./media/characters/mitsy/front.svg",
  35820. extra: 1842/1695,
  35821. bottom: 0/1842
  35822. }
  35823. },
  35824. },
  35825. [
  35826. {
  35827. name: "Normal",
  35828. height: math.unit(5 + 5/12, "feet"),
  35829. default: true
  35830. },
  35831. ]
  35832. ))
  35833. characterMakers.push(() => makeCharacter(
  35834. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  35835. {
  35836. front: {
  35837. height: math.unit(6 + 3/12, "feet"),
  35838. name: "Front",
  35839. image: {
  35840. source: "./media/characters/silvy/front.svg",
  35841. extra: 1995/1836,
  35842. bottom: 225/2220
  35843. }
  35844. },
  35845. },
  35846. [
  35847. {
  35848. name: "Normal",
  35849. height: math.unit(6 + 3/12, "feet"),
  35850. default: true
  35851. },
  35852. ]
  35853. ))
  35854. characterMakers.push(() => makeCharacter(
  35855. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  35856. {
  35857. front: {
  35858. height: math.unit(3 + 8/12, "feet"),
  35859. name: "Front",
  35860. image: {
  35861. source: "./media/characters/rodney/front.svg",
  35862. extra: 1956/1747,
  35863. bottom: 31/1987
  35864. }
  35865. },
  35866. frontDressed: {
  35867. height: math.unit(2.9, "feet"),
  35868. name: "Front (Dressed)",
  35869. image: {
  35870. source: "./media/characters/rodney/front-dressed.svg",
  35871. extra: 1382/1241,
  35872. bottom: 385/1767
  35873. }
  35874. },
  35875. },
  35876. [
  35877. {
  35878. name: "Normal",
  35879. height: math.unit(3 + 8/12, "feet"),
  35880. default: true
  35881. },
  35882. ]
  35883. ))
  35884. characterMakers.push(() => makeCharacter(
  35885. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  35886. {
  35887. front: {
  35888. height: math.unit(5 + 9/12, "feet"),
  35889. weight: math.unit(194, "lbs"),
  35890. name: "Front",
  35891. image: {
  35892. source: "./media/characters/zakail-sudekai/front.svg",
  35893. extra: 2696/2533,
  35894. bottom: 248/2944
  35895. }
  35896. },
  35897. maw: {
  35898. height: math.unit(1.35, "feet"),
  35899. name: "Maw",
  35900. image: {
  35901. source: "./media/characters/zakail-sudekai/maw.svg"
  35902. }
  35903. },
  35904. },
  35905. [
  35906. {
  35907. name: "Normal",
  35908. height: math.unit(5 + 9/12, "feet"),
  35909. default: true
  35910. },
  35911. ]
  35912. ))
  35913. characterMakers.push(() => makeCharacter(
  35914. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  35915. {
  35916. front: {
  35917. height: math.unit(8 + 4/12, "feet"),
  35918. weight: math.unit(1200, "lb"),
  35919. name: "Front",
  35920. image: {
  35921. source: "./media/characters/eleanor/front.svg",
  35922. extra: 1226/1192,
  35923. bottom: 52/1278
  35924. }
  35925. },
  35926. back: {
  35927. height: math.unit(8 + 4/12, "feet"),
  35928. weight: math.unit(1200, "lb"),
  35929. name: "Back",
  35930. image: {
  35931. source: "./media/characters/eleanor/back.svg",
  35932. extra: 1242/1184,
  35933. bottom: 60/1302
  35934. }
  35935. },
  35936. head: {
  35937. height: math.unit(2.62, "feet"),
  35938. name: "Head",
  35939. image: {
  35940. source: "./media/characters/eleanor/head.svg"
  35941. }
  35942. },
  35943. },
  35944. [
  35945. {
  35946. name: "Normal",
  35947. height: math.unit(8 + 4/12, "feet"),
  35948. default: true
  35949. },
  35950. ]
  35951. ))
  35952. characterMakers.push(() => makeCharacter(
  35953. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  35954. {
  35955. front: {
  35956. height: math.unit(8 + 4/12, "feet"),
  35957. weight: math.unit(750, "lb"),
  35958. name: "Front",
  35959. image: {
  35960. source: "./media/characters/tanya/front.svg",
  35961. extra: 1749/1615,
  35962. bottom: 33/1782
  35963. }
  35964. },
  35965. },
  35966. [
  35967. {
  35968. name: "Normal",
  35969. height: math.unit(8 + 4/12, "feet"),
  35970. default: true
  35971. },
  35972. ]
  35973. ))
  35974. characterMakers.push(() => makeCharacter(
  35975. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  35976. {
  35977. front: {
  35978. height: math.unit(5, "feet"),
  35979. weight: math.unit(225, "lb"),
  35980. name: "Front",
  35981. image: {
  35982. source: "./media/characters/cindy/front.svg",
  35983. extra: 1320/1250,
  35984. bottom: 42/1362
  35985. }
  35986. },
  35987. frontDressed: {
  35988. height: math.unit(5, "feet"),
  35989. weight: math.unit(225, "lb"),
  35990. name: "Front (Dressed)",
  35991. image: {
  35992. source: "./media/characters/cindy/front-dressed.svg",
  35993. extra: 1320/1250,
  35994. bottom: 42/1362
  35995. }
  35996. },
  35997. back: {
  35998. height: math.unit(5, "feet"),
  35999. weight: math.unit(225, "lb"),
  36000. name: "Back",
  36001. image: {
  36002. source: "./media/characters/cindy/back.svg",
  36003. extra: 1384/1346,
  36004. bottom: 14/1398
  36005. }
  36006. },
  36007. },
  36008. [
  36009. {
  36010. name: "Normal",
  36011. height: math.unit(5, "feet"),
  36012. default: true
  36013. },
  36014. ]
  36015. ))
  36016. characterMakers.push(() => makeCharacter(
  36017. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36018. {
  36019. front: {
  36020. height: math.unit(6 + 9/12, "feet"),
  36021. weight: math.unit(440, "lb"),
  36022. name: "Front",
  36023. image: {
  36024. source: "./media/characters/wilbur-owen/front.svg",
  36025. extra: 1575/1448,
  36026. bottom: 72/1647
  36027. }
  36028. },
  36029. back: {
  36030. height: math.unit(6 + 9/12, "feet"),
  36031. weight: math.unit(440, "lb"),
  36032. name: "Back",
  36033. image: {
  36034. source: "./media/characters/wilbur-owen/back.svg",
  36035. extra: 1578/1445,
  36036. bottom: 36/1614
  36037. }
  36038. },
  36039. },
  36040. [
  36041. {
  36042. name: "Normal",
  36043. height: math.unit(6 + 9/12, "feet"),
  36044. default: true
  36045. },
  36046. ]
  36047. ))
  36048. characterMakers.push(() => makeCharacter(
  36049. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36050. {
  36051. front: {
  36052. height: math.unit(6 + 5/12, "feet"),
  36053. weight: math.unit(650, "lb"),
  36054. name: "Front",
  36055. image: {
  36056. source: "./media/characters/keegan/front.svg",
  36057. extra: 2387/2198,
  36058. bottom: 33/2420
  36059. }
  36060. },
  36061. side: {
  36062. height: math.unit(6 + 5/12, "feet"),
  36063. weight: math.unit(650, "lb"),
  36064. name: "Side",
  36065. image: {
  36066. source: "./media/characters/keegan/side.svg",
  36067. extra: 2390/2202,
  36068. bottom: 47/2437
  36069. }
  36070. },
  36071. back: {
  36072. height: math.unit(6 + 5/12, "feet"),
  36073. weight: math.unit(650, "lb"),
  36074. name: "Back",
  36075. image: {
  36076. source: "./media/characters/keegan/back.svg",
  36077. extra: 2418/2268,
  36078. bottom: 15/2433
  36079. }
  36080. },
  36081. frontSfw: {
  36082. height: math.unit(6 + 5/12, "feet"),
  36083. weight: math.unit(650, "lb"),
  36084. name: "Front (SFW)",
  36085. image: {
  36086. source: "./media/characters/keegan/front-sfw.svg",
  36087. extra: 2387/2198,
  36088. bottom: 33/2420
  36089. }
  36090. },
  36091. beans: {
  36092. height: math.unit(1.85, "feet"),
  36093. name: "Beans",
  36094. image: {
  36095. source: "./media/characters/keegan/beans.svg"
  36096. }
  36097. },
  36098. },
  36099. [
  36100. {
  36101. name: "Normal",
  36102. height: math.unit(6 + 5/12, "feet"),
  36103. default: true
  36104. },
  36105. ]
  36106. ))
  36107. characterMakers.push(() => makeCharacter(
  36108. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  36109. {
  36110. front: {
  36111. height: math.unit(9, "feet"),
  36112. name: "Front",
  36113. image: {
  36114. source: "./media/characters/colton/front.svg",
  36115. extra: 1589/1326,
  36116. bottom: 139/1728
  36117. }
  36118. },
  36119. },
  36120. [
  36121. {
  36122. name: "Normal",
  36123. height: math.unit(9, "feet"),
  36124. default: true
  36125. },
  36126. ]
  36127. ))
  36128. characterMakers.push(() => makeCharacter(
  36129. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  36130. {
  36131. front: {
  36132. height: math.unit(2 + 9/12, "feet"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/bora/front.svg",
  36136. extra: 1265/1250,
  36137. bottom: 24/1289
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(2 + 9/12, "feet"),
  36145. default: true
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  36151. {
  36152. front: {
  36153. height: math.unit(8, "feet"),
  36154. name: "Front",
  36155. image: {
  36156. source: "./media/characters/myu-myu/front.svg",
  36157. extra: 1949/1857,
  36158. bottom: 90/2039
  36159. }
  36160. },
  36161. },
  36162. [
  36163. {
  36164. name: "Normal",
  36165. height: math.unit(8, "feet"),
  36166. default: true
  36167. },
  36168. {
  36169. name: "Big",
  36170. height: math.unit(15, "feet")
  36171. },
  36172. {
  36173. name: "BIG",
  36174. height: math.unit(25, "feet")
  36175. },
  36176. ]
  36177. ))
  36178. characterMakers.push(() => makeCharacter(
  36179. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  36180. {
  36181. side: {
  36182. height: math.unit(7 + 5/12, "feet"),
  36183. weight: math.unit(2800, "lb"),
  36184. name: "Side",
  36185. image: {
  36186. source: "./media/characters/haloren/side.svg",
  36187. extra: 1793/409,
  36188. bottom: 59/1852
  36189. }
  36190. },
  36191. frontPaw: {
  36192. height: math.unit(2.36, "feet"),
  36193. name: "Front paw",
  36194. image: {
  36195. source: "./media/characters/haloren/front-paw.svg"
  36196. }
  36197. },
  36198. hindPaw: {
  36199. height: math.unit(3.18, "feet"),
  36200. name: "Hind paw",
  36201. image: {
  36202. source: "./media/characters/haloren/hind-paw.svg"
  36203. }
  36204. },
  36205. maw: {
  36206. height: math.unit(5.05, "feet"),
  36207. name: "Maw",
  36208. image: {
  36209. source: "./media/characters/haloren/maw.svg"
  36210. }
  36211. },
  36212. dick: {
  36213. height: math.unit(2.90, "feet"),
  36214. name: "Dick",
  36215. image: {
  36216. source: "./media/characters/haloren/dick.svg"
  36217. }
  36218. },
  36219. },
  36220. [
  36221. {
  36222. name: "Normal",
  36223. height: math.unit(7 + 5/12, "feet"),
  36224. default: true
  36225. },
  36226. {
  36227. name: "Enhanced",
  36228. height: math.unit(14 + 3/12, "feet")
  36229. },
  36230. ]
  36231. ))
  36232. characterMakers.push(() => makeCharacter(
  36233. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  36234. {
  36235. front: {
  36236. height: math.unit(171, "cm"),
  36237. name: "Front",
  36238. image: {
  36239. source: "./media/characters/kimmy/front.svg",
  36240. extra: 1491/1435,
  36241. bottom: 53/1544
  36242. }
  36243. },
  36244. },
  36245. [
  36246. {
  36247. name: "Small",
  36248. height: math.unit(9, "cm")
  36249. },
  36250. {
  36251. name: "Normal",
  36252. height: math.unit(171, "cm"),
  36253. default: true
  36254. },
  36255. ]
  36256. ))
  36257. characterMakers.push(() => makeCharacter(
  36258. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  36259. {
  36260. front: {
  36261. height: math.unit(8, "feet"),
  36262. weight: math.unit(300, "lb"),
  36263. name: "Front",
  36264. image: {
  36265. source: "./media/characters/galeboomer/front.svg",
  36266. extra: 4651/4415,
  36267. bottom: 162/4813
  36268. }
  36269. },
  36270. back: {
  36271. height: math.unit(8, "feet"),
  36272. weight: math.unit(300, "lb"),
  36273. name: "Back",
  36274. image: {
  36275. source: "./media/characters/galeboomer/back.svg",
  36276. extra: 4544/4314,
  36277. bottom: 16/4560
  36278. }
  36279. },
  36280. frontAlt: {
  36281. height: math.unit(8, "feet"),
  36282. weight: math.unit(300, "lb"),
  36283. name: "Front (Alt)",
  36284. image: {
  36285. source: "./media/characters/galeboomer/front-alt.svg",
  36286. extra: 4458/4228,
  36287. bottom: 68/4526
  36288. }
  36289. },
  36290. maw: {
  36291. height: math.unit(1.2, "feet"),
  36292. name: "Maw",
  36293. image: {
  36294. source: "./media/characters/galeboomer/maw.svg"
  36295. }
  36296. },
  36297. },
  36298. [
  36299. {
  36300. name: "Normal",
  36301. height: math.unit(8, "feet"),
  36302. default: true
  36303. },
  36304. ]
  36305. ))
  36306. characterMakers.push(() => makeCharacter(
  36307. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  36308. {
  36309. front: {
  36310. height: math.unit(5 + 9/12, "feet"),
  36311. weight: math.unit(120, "lb"),
  36312. name: "Front",
  36313. image: {
  36314. source: "./media/characters/chyr/front.svg",
  36315. extra: 1323/1254,
  36316. bottom: 63/1386
  36317. }
  36318. },
  36319. back: {
  36320. height: math.unit(5 + 9/12, "feet"),
  36321. weight: math.unit(120, "lb"),
  36322. name: "Back",
  36323. image: {
  36324. source: "./media/characters/chyr/back.svg",
  36325. extra: 1323/1252,
  36326. bottom: 48/1371
  36327. }
  36328. },
  36329. },
  36330. [
  36331. {
  36332. name: "Normal",
  36333. height: math.unit(5 + 9/12, "feet"),
  36334. default: true
  36335. },
  36336. ]
  36337. ))
  36338. characterMakers.push(() => makeCharacter(
  36339. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  36340. {
  36341. front: {
  36342. height: math.unit(7, "feet"),
  36343. weight: math.unit(310, "lb"),
  36344. name: "Front",
  36345. image: {
  36346. source: "./media/characters/solarus/front.svg",
  36347. extra: 2415/2021,
  36348. bottom: 103/2518
  36349. }
  36350. },
  36351. back: {
  36352. height: math.unit(7, "feet"),
  36353. weight: math.unit(310, "lb"),
  36354. name: "Back",
  36355. image: {
  36356. source: "./media/characters/solarus/back.svg",
  36357. extra: 2463/2089,
  36358. bottom: 79/2542
  36359. }
  36360. },
  36361. },
  36362. [
  36363. {
  36364. name: "Normal",
  36365. height: math.unit(7, "feet"),
  36366. default: true
  36367. },
  36368. ]
  36369. ))
  36370. characterMakers.push(() => makeCharacter(
  36371. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  36372. {
  36373. front: {
  36374. height: math.unit(16, "feet"),
  36375. name: "Front",
  36376. image: {
  36377. source: "./media/characters/mutsuju-koizaemon/front.svg",
  36378. extra: 1844/1780,
  36379. bottom: 58/1902
  36380. }
  36381. },
  36382. winterCoat: {
  36383. height: math.unit(16, "feet"),
  36384. name: "Winter Coat",
  36385. image: {
  36386. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  36387. extra: 1807/1775,
  36388. bottom: 69/1876
  36389. }
  36390. },
  36391. },
  36392. [
  36393. {
  36394. name: "Normal",
  36395. height: math.unit(16, "feet"),
  36396. default: true
  36397. },
  36398. {
  36399. name: "Chicago Size",
  36400. height: math.unit(560, "feet")
  36401. },
  36402. ]
  36403. ))
  36404. characterMakers.push(() => makeCharacter(
  36405. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  36406. {
  36407. front: {
  36408. height: math.unit(11 + 6/12, "feet"),
  36409. weight: math.unit(1366, "lb"),
  36410. name: "Front",
  36411. image: {
  36412. source: "./media/characters/lexor/front.svg",
  36413. extra: 1560/1481,
  36414. bottom: 211/1771
  36415. }
  36416. },
  36417. back: {
  36418. height: math.unit(11 + 6/12, "feet"),
  36419. weight: math.unit(1366, "lb"),
  36420. name: "Back",
  36421. image: {
  36422. source: "./media/characters/lexor/back.svg",
  36423. extra: 1614/1533,
  36424. bottom: 76/1690
  36425. }
  36426. },
  36427. maw: {
  36428. height: math.unit(3, "feet"),
  36429. name: "Maw",
  36430. image: {
  36431. source: "./media/characters/lexor/maw.svg"
  36432. }
  36433. },
  36434. dick: {
  36435. height: math.unit(2.59, "feet"),
  36436. name: "Dick",
  36437. image: {
  36438. source: "./media/characters/lexor/dick.svg"
  36439. }
  36440. },
  36441. },
  36442. [
  36443. {
  36444. name: "Normal",
  36445. height: math.unit(11 + 6/12, "feet"),
  36446. default: true
  36447. },
  36448. ]
  36449. ))
  36450. characterMakers.push(() => makeCharacter(
  36451. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  36452. {
  36453. front: {
  36454. height: math.unit(5 + 8/12, "feet"),
  36455. name: "Front",
  36456. image: {
  36457. source: "./media/characters/magnum/front.svg",
  36458. extra: 942/855,
  36459. bottom: 26/968
  36460. }
  36461. },
  36462. },
  36463. [
  36464. {
  36465. name: "Normal",
  36466. height: math.unit(5 + 8/12, "feet"),
  36467. default: true
  36468. },
  36469. ]
  36470. ))
  36471. characterMakers.push(() => makeCharacter(
  36472. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  36473. {
  36474. front: {
  36475. height: math.unit(18 + 4/12, "feet"),
  36476. weight: math.unit(1500, "kg"),
  36477. name: "Front",
  36478. image: {
  36479. source: "./media/characters/solas-sharpsman/front.svg",
  36480. extra: 1698/1589,
  36481. bottom: 0/1698
  36482. }
  36483. },
  36484. },
  36485. [
  36486. {
  36487. name: "Normal",
  36488. height: math.unit(18 + 4/12, "feet"),
  36489. default: true
  36490. },
  36491. ]
  36492. ))
  36493. characterMakers.push(() => makeCharacter(
  36494. { name: "October", species: ["tiger"], tags: ["anthro"] },
  36495. {
  36496. front: {
  36497. height: math.unit(5 + 5/12, "feet"),
  36498. weight: math.unit(180, "lb"),
  36499. name: "Front",
  36500. image: {
  36501. source: "./media/characters/october/front.svg",
  36502. extra: 1800/1650,
  36503. bottom: 0/1800
  36504. }
  36505. },
  36506. frontNsfw: {
  36507. height: math.unit(5 + 5/12, "feet"),
  36508. weight: math.unit(180, "lb"),
  36509. name: "Front (NSFW)",
  36510. image: {
  36511. source: "./media/characters/october/front-nsfw.svg",
  36512. extra: 1392/1307,
  36513. bottom: 42/1434
  36514. }
  36515. },
  36516. },
  36517. [
  36518. {
  36519. name: "Normal",
  36520. height: math.unit(5 + 5/12, "feet"),
  36521. default: true
  36522. },
  36523. ]
  36524. ))
  36525. characterMakers.push(() => makeCharacter(
  36526. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  36527. {
  36528. front: {
  36529. height: math.unit(8 + 6/12, "feet"),
  36530. name: "Front",
  36531. image: {
  36532. source: "./media/characters/essynkardi/front.svg",
  36533. extra: 1914/1846,
  36534. bottom: 22/1936
  36535. }
  36536. },
  36537. },
  36538. [
  36539. {
  36540. name: "Normal",
  36541. height: math.unit(8 + 6/12, "feet"),
  36542. default: true
  36543. },
  36544. ]
  36545. ))
  36546. characterMakers.push(() => makeCharacter(
  36547. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  36548. {
  36549. front: {
  36550. height: math.unit(6 + 6/12, "feet"),
  36551. weight: math.unit(7, "lb"),
  36552. name: "Front",
  36553. image: {
  36554. source: "./media/characters/icky/front.svg",
  36555. extra: 813/782,
  36556. bottom: 66/879
  36557. }
  36558. },
  36559. back: {
  36560. height: math.unit(6 + 6/12, "feet"),
  36561. weight: math.unit(7, "lb"),
  36562. name: "Back",
  36563. image: {
  36564. source: "./media/characters/icky/back.svg",
  36565. extra: 754/735,
  36566. bottom: 56/810
  36567. }
  36568. },
  36569. },
  36570. [
  36571. {
  36572. name: "Normal",
  36573. height: math.unit(6 + 6/12, "feet"),
  36574. default: true
  36575. },
  36576. ]
  36577. ))
  36578. characterMakers.push(() => makeCharacter(
  36579. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  36580. {
  36581. front: {
  36582. height: math.unit(15, "feet"),
  36583. name: "Front",
  36584. image: {
  36585. source: "./media/characters/rojas/front.svg",
  36586. extra: 1462/1408,
  36587. bottom: 95/1557
  36588. }
  36589. },
  36590. back: {
  36591. height: math.unit(15, "feet"),
  36592. name: "Back",
  36593. image: {
  36594. source: "./media/characters/rojas/back.svg",
  36595. extra: 1023/954,
  36596. bottom: 28/1051
  36597. }
  36598. },
  36599. },
  36600. [
  36601. {
  36602. name: "Normal",
  36603. height: math.unit(15, "feet"),
  36604. default: true
  36605. },
  36606. ]
  36607. ))
  36608. characterMakers.push(() => makeCharacter(
  36609. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  36610. {
  36611. frontHuman: {
  36612. height: math.unit(5 + 7/12, "feet"),
  36613. name: "Front (Human)",
  36614. image: {
  36615. source: "./media/characters/alek-dryagan/front-human.svg",
  36616. extra: 1687/1667,
  36617. bottom: 69/1756
  36618. }
  36619. },
  36620. backHuman: {
  36621. height: math.unit(5 + 7/12, "feet"),
  36622. name: "Back (Human)",
  36623. image: {
  36624. source: "./media/characters/alek-dryagan/back-human.svg",
  36625. extra: 1670/1649,
  36626. bottom: 65/1735
  36627. }
  36628. },
  36629. frontDemi: {
  36630. height: math.unit(65, "feet"),
  36631. name: "Front (Demi)",
  36632. image: {
  36633. source: "./media/characters/alek-dryagan/front-demi.svg",
  36634. extra: 1669/1642,
  36635. bottom: 49/1718
  36636. }
  36637. },
  36638. backDemi: {
  36639. height: math.unit(65, "feet"),
  36640. name: "Back (Demi)",
  36641. image: {
  36642. source: "./media/characters/alek-dryagan/back-demi.svg",
  36643. extra: 1658/1637,
  36644. bottom: 40/1698
  36645. }
  36646. },
  36647. mawHuman: {
  36648. height: math.unit(0.3, "feet"),
  36649. name: "Maw (Human)",
  36650. image: {
  36651. source: "./media/characters/alek-dryagan/maw-human.svg"
  36652. }
  36653. },
  36654. mawDemi: {
  36655. height: math.unit(3.8, "feet"),
  36656. name: "Maw (Demi)",
  36657. image: {
  36658. source: "./media/characters/alek-dryagan/maw-demi.svg"
  36659. }
  36660. },
  36661. },
  36662. [
  36663. {
  36664. name: "Normal",
  36665. height: math.unit(5 + 7/12, "feet"),
  36666. default: true
  36667. },
  36668. ]
  36669. ))
  36670. characterMakers.push(() => makeCharacter(
  36671. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  36672. {
  36673. frontHuman: {
  36674. height: math.unit(5 + 2/12, "feet"),
  36675. name: "Front (Human)",
  36676. image: {
  36677. source: "./media/characters/gen/front-human.svg",
  36678. extra: 1627/1538,
  36679. bottom: 71/1698
  36680. }
  36681. },
  36682. backHuman: {
  36683. height: math.unit(5 + 2/12, "feet"),
  36684. name: "Back (Human)",
  36685. image: {
  36686. source: "./media/characters/gen/back-human.svg",
  36687. extra: 1638/1548,
  36688. bottom: 69/1707
  36689. }
  36690. },
  36691. frontDemi: {
  36692. height: math.unit(5 + 2/12, "feet"),
  36693. name: "Front (Demi)",
  36694. image: {
  36695. source: "./media/characters/gen/front-demi.svg",
  36696. extra: 1627/1538,
  36697. bottom: 71/1698
  36698. }
  36699. },
  36700. backDemi: {
  36701. height: math.unit(5 + 2/12, "feet"),
  36702. name: "Back (Demi)",
  36703. image: {
  36704. source: "./media/characters/gen/back-demi.svg",
  36705. extra: 1638/1548,
  36706. bottom: 69/1707
  36707. }
  36708. },
  36709. },
  36710. [
  36711. {
  36712. name: "Normal",
  36713. height: math.unit(5 + 2/12, "feet"),
  36714. default: true
  36715. },
  36716. ]
  36717. ))
  36718. characterMakers.push(() => makeCharacter(
  36719. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  36720. {
  36721. frontImp: {
  36722. height: math.unit(1 + 11/12, "feet"),
  36723. name: "Front (Imp)",
  36724. image: {
  36725. source: "./media/characters/max-kobold/front-imp.svg",
  36726. extra: 1238/1134,
  36727. bottom: 81/1319
  36728. }
  36729. },
  36730. backImp: {
  36731. height: math.unit(1 + 11/12, "feet"),
  36732. name: "Back (Imp)",
  36733. image: {
  36734. source: "./media/characters/max-kobold/back-imp.svg",
  36735. extra: 1334/1175,
  36736. bottom: 34/1368
  36737. }
  36738. },
  36739. frontDemi: {
  36740. height: math.unit(5 + 9/12, "feet"),
  36741. name: "Front (Demi)",
  36742. image: {
  36743. source: "./media/characters/max-kobold/front-demi.svg",
  36744. extra: 1715/1685,
  36745. bottom: 54/1769
  36746. }
  36747. },
  36748. backDemi: {
  36749. height: math.unit(5 + 9/12, "feet"),
  36750. name: "Back (Demi)",
  36751. image: {
  36752. source: "./media/characters/max-kobold/back-demi.svg",
  36753. extra: 1752/1729,
  36754. bottom: 41/1793
  36755. }
  36756. },
  36757. handImp: {
  36758. height: math.unit(0.45, "feet"),
  36759. name: "Hand (Imp)",
  36760. image: {
  36761. source: "./media/characters/max-kobold/hand.svg"
  36762. }
  36763. },
  36764. pawImp: {
  36765. height: math.unit(0.46, "feet"),
  36766. name: "Paw (Imp)",
  36767. image: {
  36768. source: "./media/characters/max-kobold/paw.svg"
  36769. }
  36770. },
  36771. handDemi: {
  36772. height: math.unit(0.80, "feet"),
  36773. name: "Hand (Demi)",
  36774. image: {
  36775. source: "./media/characters/max-kobold/hand.svg"
  36776. }
  36777. },
  36778. pawDemi: {
  36779. height: math.unit(1.1, "feet"),
  36780. name: "Paw (Demi)",
  36781. image: {
  36782. source: "./media/characters/max-kobold/paw.svg"
  36783. }
  36784. },
  36785. headImp: {
  36786. height: math.unit(1.33, "feet"),
  36787. name: "Head (Imp)",
  36788. image: {
  36789. source: "./media/characters/max-kobold/head-imp.svg"
  36790. }
  36791. },
  36792. mawImp: {
  36793. height: math.unit(0.75, "feet"),
  36794. name: "Maw (Imp)",
  36795. image: {
  36796. source: "./media/characters/max-kobold/maw-imp.svg"
  36797. }
  36798. },
  36799. mawDemi: {
  36800. height: math.unit(0.42, "feet"),
  36801. name: "Maw (Demi)",
  36802. image: {
  36803. source: "./media/characters/max-kobold/maw-demi.svg"
  36804. }
  36805. },
  36806. },
  36807. [
  36808. {
  36809. name: "Normal",
  36810. height: math.unit(1 + 11/12, "feet"),
  36811. default: true
  36812. },
  36813. ]
  36814. ))
  36815. characterMakers.push(() => makeCharacter(
  36816. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  36817. {
  36818. front: {
  36819. height: math.unit(7 + 5/12, "feet"),
  36820. name: "Front",
  36821. image: {
  36822. source: "./media/characters/carbon/front.svg",
  36823. extra: 1754/1689,
  36824. bottom: 65/1819
  36825. }
  36826. },
  36827. back: {
  36828. height: math.unit(7 + 5/12, "feet"),
  36829. name: "Back",
  36830. image: {
  36831. source: "./media/characters/carbon/back.svg",
  36832. extra: 1762/1695,
  36833. bottom: 24/1786
  36834. }
  36835. },
  36836. frontGigantamax: {
  36837. height: math.unit(150, "feet"),
  36838. name: "Front (Gigantamax)",
  36839. image: {
  36840. source: "./media/characters/carbon/front-gigantamax.svg",
  36841. extra: 1826/1669,
  36842. bottom: 59/1885
  36843. }
  36844. },
  36845. backGigantamax: {
  36846. height: math.unit(150, "feet"),
  36847. name: "Back (Gigantamax)",
  36848. image: {
  36849. source: "./media/characters/carbon/back-gigantamax.svg",
  36850. extra: 1796/1653,
  36851. bottom: 53/1849
  36852. }
  36853. },
  36854. maw: {
  36855. height: math.unit(0.48, "feet"),
  36856. name: "Maw",
  36857. image: {
  36858. source: "./media/characters/carbon/maw.svg"
  36859. }
  36860. },
  36861. mawGigantamax: {
  36862. height: math.unit(7.5, "feet"),
  36863. name: "Maw (Gigantamax)",
  36864. image: {
  36865. source: "./media/characters/carbon/maw-gigantamax.svg"
  36866. }
  36867. },
  36868. },
  36869. [
  36870. {
  36871. name: "Normal",
  36872. height: math.unit(7 + 5/12, "feet"),
  36873. default: true
  36874. },
  36875. ]
  36876. ))
  36877. characterMakers.push(() => makeCharacter(
  36878. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  36879. {
  36880. front: {
  36881. height: math.unit(6, "feet"),
  36882. name: "Front",
  36883. image: {
  36884. source: "./media/characters/maverick/front.svg",
  36885. extra: 1672/1661,
  36886. bottom: 85/1757
  36887. }
  36888. },
  36889. back: {
  36890. height: math.unit(6, "feet"),
  36891. name: "Back",
  36892. image: {
  36893. source: "./media/characters/maverick/back.svg",
  36894. extra: 1642/1631,
  36895. bottom: 38/1680
  36896. }
  36897. },
  36898. },
  36899. [
  36900. {
  36901. name: "Normal",
  36902. height: math.unit(6, "feet"),
  36903. default: true
  36904. },
  36905. ]
  36906. ))
  36907. characterMakers.push(() => makeCharacter(
  36908. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  36909. {
  36910. front: {
  36911. height: math.unit(15, "feet"),
  36912. weight: math.unit(615, "lb"),
  36913. name: "Front",
  36914. image: {
  36915. source: "./media/characters/grockle/front.svg",
  36916. extra: 1535/1427,
  36917. bottom: 56/1591
  36918. }
  36919. },
  36920. },
  36921. [
  36922. {
  36923. name: "Normal",
  36924. height: math.unit(15, "feet"),
  36925. default: true
  36926. },
  36927. {
  36928. name: "Large",
  36929. height: math.unit(150, "feet")
  36930. },
  36931. {
  36932. name: "Macro",
  36933. height: math.unit(1876, "feet")
  36934. },
  36935. {
  36936. name: "Mega Macro",
  36937. height: math.unit(121940, "feet")
  36938. },
  36939. {
  36940. name: "Giga Macro",
  36941. height: math.unit(750, "km")
  36942. },
  36943. {
  36944. name: "Tera Macro",
  36945. height: math.unit(750000, "km")
  36946. },
  36947. {
  36948. name: "Galactic",
  36949. height: math.unit(1.4e5, "km")
  36950. },
  36951. {
  36952. name: "Godlike",
  36953. height: math.unit(9.8e280, "galaxies")
  36954. },
  36955. ]
  36956. ))
  36957. characterMakers.push(() => makeCharacter(
  36958. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  36959. {
  36960. front: {
  36961. height: math.unit(11, "meters"),
  36962. weight: math.unit(20, "tonnes"),
  36963. name: "Front",
  36964. image: {
  36965. source: "./media/characters/alistair/front.svg",
  36966. extra: 1265/1009,
  36967. bottom: 93/1358
  36968. }
  36969. },
  36970. },
  36971. [
  36972. {
  36973. name: "Normal",
  36974. height: math.unit(11, "meters"),
  36975. default: true
  36976. },
  36977. ]
  36978. ))
  36979. characterMakers.push(() => makeCharacter(
  36980. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  36981. {
  36982. front: {
  36983. height: math.unit(5 + 8/12, "feet"),
  36984. name: "Front",
  36985. image: {
  36986. source: "./media/characters/haruka/front.svg",
  36987. extra: 2012/1952,
  36988. bottom: 0/2012
  36989. }
  36990. },
  36991. },
  36992. [
  36993. {
  36994. name: "Normal",
  36995. height: math.unit(5 + 8/12, "feet"),
  36996. default: true
  36997. },
  36998. ]
  36999. ))
  37000. characterMakers.push(() => makeCharacter(
  37001. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37002. {
  37003. back: {
  37004. height: math.unit(9, "feet"),
  37005. name: "Back",
  37006. image: {
  37007. source: "./media/characters/vivian-sylveon/back.svg",
  37008. extra: 1853/1714,
  37009. bottom: 0/1853
  37010. }
  37011. },
  37012. },
  37013. [
  37014. {
  37015. name: "Normal",
  37016. height: math.unit(9, "feet"),
  37017. default: true
  37018. },
  37019. {
  37020. name: "Macro",
  37021. height: math.unit(500, "feet")
  37022. },
  37023. {
  37024. name: "Megamacro",
  37025. height: math.unit(600, "miles")
  37026. },
  37027. {
  37028. name: "Gigamacro",
  37029. height: math.unit(30000, "miles")
  37030. },
  37031. ]
  37032. ))
  37033. characterMakers.push(() => makeCharacter(
  37034. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37035. {
  37036. anthro: {
  37037. height: math.unit(5 + 10/12, "feet"),
  37038. weight: math.unit(100, "lb"),
  37039. name: "Anthro",
  37040. image: {
  37041. source: "./media/characters/daiki/anthro.svg",
  37042. extra: 1115/1027,
  37043. bottom: 69/1184
  37044. }
  37045. },
  37046. feral: {
  37047. height: math.unit(200, "feet"),
  37048. name: "Feral",
  37049. image: {
  37050. source: "./media/characters/daiki/feral.svg",
  37051. extra: 1256/313,
  37052. bottom: 39/1295
  37053. }
  37054. },
  37055. feralHead: {
  37056. height: math.unit(171, "feet"),
  37057. name: "Feral Head",
  37058. image: {
  37059. source: "./media/characters/daiki/feral-head.svg"
  37060. }
  37061. },
  37062. manaDragon: {
  37063. height: math.unit(170, "meters"),
  37064. name: "Mana-dragon",
  37065. image: {
  37066. source: "./media/characters/daiki/mana-dragon.svg",
  37067. extra: 763/420,
  37068. bottom: 97/860
  37069. }
  37070. },
  37071. },
  37072. [
  37073. {
  37074. name: "Normal",
  37075. height: math.unit(5 + 10/12, "feet"),
  37076. default: true
  37077. },
  37078. ]
  37079. ))
  37080. characterMakers.push(() => makeCharacter(
  37081. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  37082. {
  37083. fullyEquippedFront: {
  37084. height: math.unit(3 + 1/12, "feet"),
  37085. weight: math.unit(24, "lb"),
  37086. name: "Fully Equipped (Front)",
  37087. image: {
  37088. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  37089. extra: 687/605,
  37090. bottom: 18/705
  37091. }
  37092. },
  37093. fullyEquippedBack: {
  37094. height: math.unit(3 + 1/12, "feet"),
  37095. weight: math.unit(24, "lb"),
  37096. name: "Fully Equipped (Back)",
  37097. image: {
  37098. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  37099. extra: 689/590,
  37100. bottom: 18/707
  37101. }
  37102. },
  37103. dailyWear: {
  37104. height: math.unit(3 + 1/12, "feet"),
  37105. weight: math.unit(24, "lb"),
  37106. name: "Daily Wear",
  37107. image: {
  37108. source: "./media/characters/tea-spot/daily-wear.svg",
  37109. extra: 701/620,
  37110. bottom: 21/722
  37111. }
  37112. },
  37113. maidWork: {
  37114. height: math.unit(3 + 1/12, "feet"),
  37115. weight: math.unit(24, "lb"),
  37116. name: "Maid Work",
  37117. image: {
  37118. source: "./media/characters/tea-spot/maid-work.svg",
  37119. extra: 693/609,
  37120. bottom: 15/708
  37121. }
  37122. },
  37123. },
  37124. [
  37125. {
  37126. name: "Normal",
  37127. height: math.unit(3 + 1/12, "feet"),
  37128. default: true
  37129. },
  37130. ]
  37131. ))
  37132. characterMakers.push(() => makeCharacter(
  37133. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  37134. {
  37135. front: {
  37136. height: math.unit(175, "cm"),
  37137. weight: math.unit(75, "kg"),
  37138. name: "Front",
  37139. image: {
  37140. source: "./media/characters/chee/front.svg",
  37141. extra: 1796/1740,
  37142. bottom: 40/1836
  37143. }
  37144. },
  37145. },
  37146. [
  37147. {
  37148. name: "Micro-Micro",
  37149. height: math.unit(1, "nm")
  37150. },
  37151. {
  37152. name: "Micro-erst",
  37153. height: math.unit(1, "micrometer")
  37154. },
  37155. {
  37156. name: "Micro-er",
  37157. height: math.unit(1, "cm")
  37158. },
  37159. {
  37160. name: "Normal",
  37161. height: math.unit(175, "cm"),
  37162. default: true
  37163. },
  37164. {
  37165. name: "Macro",
  37166. height: math.unit(100, "m")
  37167. },
  37168. {
  37169. name: "Macro-er",
  37170. height: math.unit(1, "km")
  37171. },
  37172. {
  37173. name: "Macro-erst",
  37174. height: math.unit(10, "km")
  37175. },
  37176. {
  37177. name: "Macro-Macro",
  37178. height: math.unit(100, "km")
  37179. },
  37180. ]
  37181. ))
  37182. characterMakers.push(() => makeCharacter(
  37183. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  37184. {
  37185. front: {
  37186. height: math.unit(11 + 9/12, "feet"),
  37187. weight: math.unit(935, "lb"),
  37188. name: "Front",
  37189. image: {
  37190. source: "./media/characters/kingsley/front.svg",
  37191. extra: 1803/1674,
  37192. bottom: 127/1930
  37193. }
  37194. },
  37195. frontNude: {
  37196. height: math.unit(11 + 9/12, "feet"),
  37197. weight: math.unit(935, "lb"),
  37198. name: "Front (Nude)",
  37199. image: {
  37200. source: "./media/characters/kingsley/front-nude.svg",
  37201. extra: 1803/1674,
  37202. bottom: 127/1930
  37203. }
  37204. },
  37205. },
  37206. [
  37207. {
  37208. name: "Normal",
  37209. height: math.unit(11 + 9/12, "feet"),
  37210. default: true
  37211. },
  37212. ]
  37213. ))
  37214. characterMakers.push(() => makeCharacter(
  37215. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  37216. {
  37217. side: {
  37218. height: math.unit(9, "feet"),
  37219. name: "Side",
  37220. image: {
  37221. source: "./media/characters/rymel/side.svg",
  37222. extra: 792/469,
  37223. bottom: 121/913
  37224. }
  37225. },
  37226. maw: {
  37227. height: math.unit(2.4, "meters"),
  37228. name: "Maw",
  37229. image: {
  37230. source: "./media/characters/rymel/maw.svg"
  37231. }
  37232. },
  37233. },
  37234. [
  37235. {
  37236. name: "House Drake",
  37237. height: math.unit(2, "feet")
  37238. },
  37239. {
  37240. name: "Reduced",
  37241. height: math.unit(4.5, "feet")
  37242. },
  37243. {
  37244. name: "Normal",
  37245. height: math.unit(9, "feet"),
  37246. default: true
  37247. },
  37248. ]
  37249. ))
  37250. characterMakers.push(() => makeCharacter(
  37251. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  37252. {
  37253. front: {
  37254. height: math.unit(1.74, "meters"),
  37255. weight: math.unit(55, "kg"),
  37256. name: "Front",
  37257. image: {
  37258. source: "./media/characters/rubus/front.svg",
  37259. extra: 1894/1742,
  37260. bottom: 44/1938
  37261. }
  37262. },
  37263. },
  37264. [
  37265. {
  37266. name: "Normal",
  37267. height: math.unit(1.74, "meters"),
  37268. default: true
  37269. },
  37270. ]
  37271. ))
  37272. characterMakers.push(() => makeCharacter(
  37273. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  37274. {
  37275. front: {
  37276. height: math.unit(5 + 2/12, "feet"),
  37277. weight: math.unit(112, "lb"),
  37278. name: "Front",
  37279. image: {
  37280. source: "./media/characters/cassie-kingston/front.svg",
  37281. extra: 1438/1390,
  37282. bottom: 47/1485
  37283. }
  37284. },
  37285. },
  37286. [
  37287. {
  37288. name: "Normal",
  37289. height: math.unit(5 + 2/12, "feet"),
  37290. default: true
  37291. },
  37292. {
  37293. name: "Macro",
  37294. height: math.unit(128, "feet")
  37295. },
  37296. {
  37297. name: "Megamacro",
  37298. height: math.unit(2.56, "miles")
  37299. },
  37300. ]
  37301. ))
  37302. characterMakers.push(() => makeCharacter(
  37303. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  37304. {
  37305. front: {
  37306. height: math.unit(7, "feet"),
  37307. name: "Front",
  37308. image: {
  37309. source: "./media/characters/fox/front.svg",
  37310. extra: 1798/1703,
  37311. bottom: 55/1853
  37312. }
  37313. },
  37314. back: {
  37315. height: math.unit(7, "feet"),
  37316. name: "Back",
  37317. image: {
  37318. source: "./media/characters/fox/back.svg",
  37319. extra: 1748/1649,
  37320. bottom: 32/1780
  37321. }
  37322. },
  37323. head: {
  37324. height: math.unit(1.95, "feet"),
  37325. name: "Head",
  37326. image: {
  37327. source: "./media/characters/fox/head.svg"
  37328. }
  37329. },
  37330. dick: {
  37331. height: math.unit(1.33, "feet"),
  37332. name: "Dick",
  37333. image: {
  37334. source: "./media/characters/fox/dick.svg"
  37335. }
  37336. },
  37337. foot: {
  37338. height: math.unit(1, "feet"),
  37339. name: "Foot",
  37340. image: {
  37341. source: "./media/characters/fox/foot.svg"
  37342. }
  37343. },
  37344. paw: {
  37345. height: math.unit(0.92, "feet"),
  37346. name: "Paw",
  37347. image: {
  37348. source: "./media/characters/fox/paw.svg"
  37349. }
  37350. },
  37351. },
  37352. [
  37353. {
  37354. name: "Small",
  37355. height: math.unit(3, "inches")
  37356. },
  37357. {
  37358. name: "\"Realistic\"",
  37359. height: math.unit(7, "feet")
  37360. },
  37361. {
  37362. name: "Normal",
  37363. height: math.unit(150, "feet"),
  37364. default: true
  37365. },
  37366. {
  37367. name: "BIG",
  37368. height: math.unit(1200, "feet")
  37369. },
  37370. {
  37371. name: "👀",
  37372. height: math.unit(5, "miles")
  37373. },
  37374. {
  37375. name: "👀👀👀",
  37376. height: math.unit(64, "miles")
  37377. },
  37378. ]
  37379. ))
  37380. characterMakers.push(() => makeCharacter(
  37381. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  37382. {
  37383. front: {
  37384. height: math.unit(625, "feet"),
  37385. name: "Front",
  37386. image: {
  37387. source: "./media/characters/asonja-rossa/front.svg",
  37388. extra: 1833/1686,
  37389. bottom: 24/1857
  37390. }
  37391. },
  37392. back: {
  37393. height: math.unit(625, "feet"),
  37394. name: "Back",
  37395. image: {
  37396. source: "./media/characters/asonja-rossa/back.svg",
  37397. extra: 1852/1753,
  37398. bottom: 26/1878
  37399. }
  37400. },
  37401. },
  37402. [
  37403. {
  37404. name: "Macro",
  37405. height: math.unit(625, "feet"),
  37406. default: true
  37407. },
  37408. ]
  37409. ))
  37410. characterMakers.push(() => makeCharacter(
  37411. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  37412. {
  37413. side: {
  37414. height: math.unit(8, "feet"),
  37415. name: "Side",
  37416. image: {
  37417. source: "./media/characters/rezukii/side.svg",
  37418. extra: 979/542,
  37419. bottom: 87/1066
  37420. }
  37421. },
  37422. sitting: {
  37423. height: math.unit(14.6, "feet"),
  37424. name: "Sitting",
  37425. image: {
  37426. source: "./media/characters/rezukii/sitting.svg",
  37427. extra: 1023/813,
  37428. bottom: 45/1068
  37429. }
  37430. },
  37431. },
  37432. [
  37433. {
  37434. name: "Tiny",
  37435. height: math.unit(2, "feet")
  37436. },
  37437. {
  37438. name: "Smol",
  37439. height: math.unit(4, "feet")
  37440. },
  37441. {
  37442. name: "Normal",
  37443. height: math.unit(8, "feet"),
  37444. default: true
  37445. },
  37446. {
  37447. name: "Big",
  37448. height: math.unit(12, "feet")
  37449. },
  37450. {
  37451. name: "Macro",
  37452. height: math.unit(30, "feet")
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(14, "feet"),
  37461. weight: math.unit(9.5, "tonnes"),
  37462. name: "Front",
  37463. image: {
  37464. source: "./media/characters/dawnheart/front.svg",
  37465. extra: 2792/2675,
  37466. bottom: 64/2856
  37467. }
  37468. },
  37469. },
  37470. [
  37471. {
  37472. name: "Normal",
  37473. height: math.unit(14, "feet"),
  37474. default: true
  37475. },
  37476. ]
  37477. ))
  37478. characterMakers.push(() => makeCharacter(
  37479. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  37480. {
  37481. front: {
  37482. height: math.unit(1.7, "m"),
  37483. name: "Front",
  37484. image: {
  37485. source: "./media/characters/gladi/front.svg",
  37486. extra: 1460/1362,
  37487. bottom: 19/1479
  37488. }
  37489. },
  37490. back: {
  37491. height: math.unit(1.7, "m"),
  37492. name: "Back",
  37493. image: {
  37494. source: "./media/characters/gladi/back.svg",
  37495. extra: 1459/1357,
  37496. bottom: 12/1471
  37497. }
  37498. },
  37499. feral: {
  37500. height: math.unit(2.05, "m"),
  37501. name: "Feral",
  37502. image: {
  37503. source: "./media/characters/gladi/feral.svg",
  37504. extra: 821/557,
  37505. bottom: 91/912
  37506. }
  37507. },
  37508. },
  37509. [
  37510. {
  37511. name: "Shortest",
  37512. height: math.unit(70, "cm")
  37513. },
  37514. {
  37515. name: "Normal",
  37516. height: math.unit(1.7, "m")
  37517. },
  37518. {
  37519. name: "Macro",
  37520. height: math.unit(10, "m"),
  37521. default: true
  37522. },
  37523. {
  37524. name: "Tallest",
  37525. height: math.unit(200, "m")
  37526. },
  37527. ]
  37528. ))
  37529. characterMakers.push(() => makeCharacter(
  37530. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  37531. {
  37532. front: {
  37533. height: math.unit(5 + 7/12, "feet"),
  37534. weight: math.unit(2, "tons"),
  37535. name: "Front",
  37536. image: {
  37537. source: "./media/characters/erdno/front.svg",
  37538. extra: 1234/1129,
  37539. bottom: 35/1269
  37540. }
  37541. },
  37542. angled: {
  37543. height: math.unit(5 + 7/12, "feet"),
  37544. weight: math.unit(2, "tons"),
  37545. name: "Angled",
  37546. image: {
  37547. source: "./media/characters/erdno/angled.svg",
  37548. extra: 1185/1139,
  37549. bottom: 36/1221
  37550. }
  37551. },
  37552. side: {
  37553. height: math.unit(5 + 7/12, "feet"),
  37554. weight: math.unit(2, "tons"),
  37555. name: "Side",
  37556. image: {
  37557. source: "./media/characters/erdno/side.svg",
  37558. extra: 1191/1144,
  37559. bottom: 40/1231
  37560. }
  37561. },
  37562. back: {
  37563. height: math.unit(5 + 7/12, "feet"),
  37564. weight: math.unit(2, "tons"),
  37565. name: "Back",
  37566. image: {
  37567. source: "./media/characters/erdno/back.svg",
  37568. extra: 1202/1146,
  37569. bottom: 17/1219
  37570. }
  37571. },
  37572. frontNsfw: {
  37573. height: math.unit(5 + 7/12, "feet"),
  37574. weight: math.unit(2, "tons"),
  37575. name: "Front (NSFW)",
  37576. image: {
  37577. source: "./media/characters/erdno/front-nsfw.svg",
  37578. extra: 1234/1129,
  37579. bottom: 35/1269
  37580. }
  37581. },
  37582. angledNsfw: {
  37583. height: math.unit(5 + 7/12, "feet"),
  37584. weight: math.unit(2, "tons"),
  37585. name: "Angled (NSFW)",
  37586. image: {
  37587. source: "./media/characters/erdno/angled-nsfw.svg",
  37588. extra: 1185/1139,
  37589. bottom: 36/1221
  37590. }
  37591. },
  37592. sideNsfw: {
  37593. height: math.unit(5 + 7/12, "feet"),
  37594. weight: math.unit(2, "tons"),
  37595. name: "Side (NSFW)",
  37596. image: {
  37597. source: "./media/characters/erdno/side-nsfw.svg",
  37598. extra: 1191/1144,
  37599. bottom: 40/1231
  37600. }
  37601. },
  37602. backNsfw: {
  37603. height: math.unit(5 + 7/12, "feet"),
  37604. weight: math.unit(2, "tons"),
  37605. name: "Back (NSFW)",
  37606. image: {
  37607. source: "./media/characters/erdno/back-nsfw.svg",
  37608. extra: 1202/1146,
  37609. bottom: 17/1219
  37610. }
  37611. },
  37612. frontHyper: {
  37613. height: math.unit(5 + 7/12, "feet"),
  37614. weight: math.unit(2, "tons"),
  37615. name: "Front (Hyper)",
  37616. image: {
  37617. source: "./media/characters/erdno/front-hyper.svg",
  37618. extra: 1298/1136,
  37619. bottom: 35/1333
  37620. }
  37621. },
  37622. },
  37623. [
  37624. {
  37625. name: "Normal",
  37626. height: math.unit(5 + 7/12, "feet"),
  37627. default: true
  37628. },
  37629. {
  37630. name: "Big",
  37631. height: math.unit(5.7, "meters")
  37632. },
  37633. {
  37634. name: "Macro",
  37635. height: math.unit(5.7, "kilometers")
  37636. },
  37637. {
  37638. name: "Megamacro",
  37639. height: math.unit(5.7, "earths")
  37640. },
  37641. ]
  37642. ))
  37643. characterMakers.push(() => makeCharacter(
  37644. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  37645. {
  37646. front: {
  37647. height: math.unit(5 + 10/12, "feet"),
  37648. weight: math.unit(150, "lb"),
  37649. name: "Front",
  37650. image: {
  37651. source: "./media/characters/jamie/front.svg",
  37652. extra: 1908/1768,
  37653. bottom: 19/1927
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Minimum",
  37660. height: math.unit(2, "cm")
  37661. },
  37662. {
  37663. name: "Micro",
  37664. height: math.unit(3, "inches")
  37665. },
  37666. {
  37667. name: "Normal",
  37668. height: math.unit(5 + 10/12, "feet"),
  37669. default: true
  37670. },
  37671. {
  37672. name: "Macro",
  37673. height: math.unit(150, "feet")
  37674. },
  37675. {
  37676. name: "Megamacro",
  37677. height: math.unit(10000, "m")
  37678. },
  37679. ]
  37680. ))
  37681. characterMakers.push(() => makeCharacter(
  37682. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  37683. {
  37684. front: {
  37685. height: math.unit(2, "meters"),
  37686. weight: math.unit(100, "kg"),
  37687. name: "Front",
  37688. image: {
  37689. source: "./media/characters/shiron/front.svg",
  37690. extra: 2103/1985,
  37691. bottom: 98/2201
  37692. }
  37693. },
  37694. back: {
  37695. height: math.unit(2, "meters"),
  37696. weight: math.unit(100, "kg"),
  37697. name: "Back",
  37698. image: {
  37699. source: "./media/characters/shiron/back.svg",
  37700. extra: 2110/2015,
  37701. bottom: 89/2199
  37702. }
  37703. },
  37704. hand: {
  37705. height: math.unit(0.96, "feet"),
  37706. name: "Hand",
  37707. image: {
  37708. source: "./media/characters/shiron/hand.svg"
  37709. }
  37710. },
  37711. foot: {
  37712. height: math.unit(1.464, "feet"),
  37713. name: "Foot",
  37714. image: {
  37715. source: "./media/characters/shiron/foot.svg"
  37716. }
  37717. },
  37718. },
  37719. [
  37720. {
  37721. name: "Normal",
  37722. height: math.unit(2, "meters")
  37723. },
  37724. {
  37725. name: "Macro",
  37726. height: math.unit(500, "meters"),
  37727. default: true
  37728. },
  37729. {
  37730. name: "Megamacro",
  37731. height: math.unit(20, "km")
  37732. },
  37733. ]
  37734. ))
  37735. characterMakers.push(() => makeCharacter(
  37736. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  37737. {
  37738. front: {
  37739. height: math.unit(6, "feet"),
  37740. name: "Front",
  37741. image: {
  37742. source: "./media/characters/sam/front.svg",
  37743. extra: 849/826,
  37744. bottom: 19/868
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Normal",
  37751. height: math.unit(6, "feet"),
  37752. default: true
  37753. },
  37754. ]
  37755. ))
  37756. characterMakers.push(() => makeCharacter(
  37757. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  37758. {
  37759. front: {
  37760. height: math.unit(8 + 4/12, "feet"),
  37761. weight: math.unit(122, "kg"),
  37762. name: "Front",
  37763. image: {
  37764. source: "./media/characters/namori-kurogawa/front.svg",
  37765. extra: 1894/1576,
  37766. bottom: 34/1928
  37767. }
  37768. },
  37769. },
  37770. [
  37771. {
  37772. name: "Normal",
  37773. height: math.unit(8 + 4/12, "feet"),
  37774. default: true
  37775. },
  37776. ]
  37777. ))
  37778. characterMakers.push(() => makeCharacter(
  37779. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  37780. {
  37781. front: {
  37782. height: math.unit(9, "feet"),
  37783. weight: math.unit(621, "lb"),
  37784. name: "Front",
  37785. image: {
  37786. source: "./media/characters/unmru/front.svg",
  37787. extra: 1853/1747,
  37788. bottom: 73/1926
  37789. }
  37790. },
  37791. side: {
  37792. height: math.unit(9, "feet"),
  37793. weight: math.unit(621, "lb"),
  37794. name: "Side",
  37795. image: {
  37796. source: "./media/characters/unmru/side.svg",
  37797. extra: 1781/1671,
  37798. bottom: 127/1908
  37799. }
  37800. },
  37801. back: {
  37802. height: math.unit(9, "feet"),
  37803. weight: math.unit(621, "lb"),
  37804. name: "Back",
  37805. image: {
  37806. source: "./media/characters/unmru/back.svg",
  37807. extra: 1894/1765,
  37808. bottom: 75/1969
  37809. }
  37810. },
  37811. dick: {
  37812. height: math.unit(3, "feet"),
  37813. weight: math.unit(35, "lb"),
  37814. name: "Dick",
  37815. image: {
  37816. source: "./media/characters/unmru/dick.svg"
  37817. }
  37818. },
  37819. },
  37820. [
  37821. {
  37822. name: "Normal",
  37823. height: math.unit(9, "feet")
  37824. },
  37825. {
  37826. name: "Natural",
  37827. height: math.unit(27, "feet"),
  37828. default: true
  37829. },
  37830. {
  37831. name: "Giant",
  37832. height: math.unit(90, "feet")
  37833. },
  37834. {
  37835. name: "Kaiju",
  37836. height: math.unit(270, "feet")
  37837. },
  37838. {
  37839. name: "Macro",
  37840. height: math.unit(900, "feet")
  37841. },
  37842. {
  37843. name: "Macro+",
  37844. height: math.unit(2700, "feet")
  37845. },
  37846. {
  37847. name: "Megamacro",
  37848. height: math.unit(9000, "feet")
  37849. },
  37850. {
  37851. name: "City-Crushing",
  37852. height: math.unit(27000, "feet")
  37853. },
  37854. {
  37855. name: "Mountain-Mashing",
  37856. height: math.unit(90000, "feet")
  37857. },
  37858. {
  37859. name: "Earth-Eclipsing",
  37860. height: math.unit(2.7e8, "feet")
  37861. },
  37862. {
  37863. name: "Sol-Swallowing",
  37864. height: math.unit(9e10, "feet")
  37865. },
  37866. {
  37867. name: "Majoris-Munching",
  37868. height: math.unit(2.7e13, "feet")
  37869. },
  37870. ]
  37871. ))
  37872. characterMakers.push(() => makeCharacter(
  37873. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  37874. {
  37875. front: {
  37876. height: math.unit(1, "inch"),
  37877. name: "Front",
  37878. image: {
  37879. source: "./media/characters/squeaks-mouse/front.svg",
  37880. extra: 352/308,
  37881. bottom: 25/377
  37882. }
  37883. },
  37884. },
  37885. [
  37886. {
  37887. name: "Micro",
  37888. height: math.unit(1, "inch"),
  37889. default: true
  37890. },
  37891. ]
  37892. ))
  37893. characterMakers.push(() => makeCharacter(
  37894. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  37895. {
  37896. side: {
  37897. height: math.unit(35, "feet"),
  37898. name: "Side",
  37899. image: {
  37900. source: "./media/characters/sayko/side.svg",
  37901. extra: 1697/1021,
  37902. bottom: 82/1779
  37903. }
  37904. },
  37905. head: {
  37906. height: math.unit(16, "feet"),
  37907. name: "Head",
  37908. image: {
  37909. source: "./media/characters/sayko/head.svg"
  37910. }
  37911. },
  37912. forepaw: {
  37913. height: math.unit(7.85, "feet"),
  37914. name: "Forepaw",
  37915. image: {
  37916. source: "./media/characters/sayko/forepaw.svg"
  37917. }
  37918. },
  37919. hindpaw: {
  37920. height: math.unit(8.8, "feet"),
  37921. name: "Hindpaw",
  37922. image: {
  37923. source: "./media/characters/sayko/hindpaw.svg"
  37924. }
  37925. },
  37926. },
  37927. [
  37928. {
  37929. name: "Normal",
  37930. height: math.unit(35, "feet"),
  37931. default: true
  37932. },
  37933. {
  37934. name: "Colossus",
  37935. height: math.unit(100, "meters")
  37936. },
  37937. {
  37938. name: "\"Small\" Deity",
  37939. height: math.unit(1, "km")
  37940. },
  37941. {
  37942. name: "\"Large\" Deity",
  37943. height: math.unit(15, "km")
  37944. },
  37945. ]
  37946. ))
  37947. characterMakers.push(() => makeCharacter(
  37948. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  37949. {
  37950. front: {
  37951. height: math.unit(6, "feet"),
  37952. weight: math.unit(250, "lb"),
  37953. name: "Front",
  37954. image: {
  37955. source: "./media/characters/mukiro/front.svg",
  37956. extra: 1368/1310,
  37957. bottom: 34/1402
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal",
  37964. height: math.unit(6, "feet"),
  37965. default: true
  37966. },
  37967. ]
  37968. ))
  37969. characterMakers.push(() => makeCharacter(
  37970. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  37971. {
  37972. front: {
  37973. height: math.unit(12 + 4/12, "feet"),
  37974. name: "Front",
  37975. image: {
  37976. source: "./media/characters/zeph-the-tiger-god/front.svg",
  37977. extra: 1346/1311,
  37978. bottom: 65/1411
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Base",
  37985. height: math.unit(12 + 4/12, "feet"),
  37986. default: true
  37987. },
  37988. {
  37989. name: "Macro",
  37990. height: math.unit(150, "feet")
  37991. },
  37992. {
  37993. name: "Mega",
  37994. height: math.unit(2, "miles")
  37995. },
  37996. {
  37997. name: "Demi God",
  37998. height: math.unit(4, "AU")
  37999. },
  38000. {
  38001. name: "God Size",
  38002. height: math.unit(1, "universe")
  38003. },
  38004. ]
  38005. ))
  38006. characterMakers.push(() => makeCharacter(
  38007. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38008. {
  38009. front: {
  38010. height: math.unit(3 + 3/12, "feet"),
  38011. weight: math.unit(88, "lb"),
  38012. name: "Front",
  38013. image: {
  38014. source: "./media/characters/trey/front.svg",
  38015. extra: 1815/1509,
  38016. bottom: 60/1875
  38017. }
  38018. },
  38019. },
  38020. [
  38021. {
  38022. name: "Normal",
  38023. height: math.unit(3 + 3/12, "feet"),
  38024. default: true
  38025. },
  38026. ]
  38027. ))
  38028. characterMakers.push(() => makeCharacter(
  38029. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38030. {
  38031. front: {
  38032. height: math.unit(4, "meters"),
  38033. name: "Front",
  38034. image: {
  38035. source: "./media/characters/adelonda/front.svg",
  38036. extra: 1077/982,
  38037. bottom: 39/1116
  38038. }
  38039. },
  38040. back: {
  38041. height: math.unit(4, "meters"),
  38042. name: "Back",
  38043. image: {
  38044. source: "./media/characters/adelonda/back.svg",
  38045. extra: 1105/1003,
  38046. bottom: 25/1130
  38047. }
  38048. },
  38049. feral: {
  38050. height: math.unit(40/1.5, "meters"),
  38051. name: "Feral",
  38052. image: {
  38053. source: "./media/characters/adelonda/feral.svg",
  38054. extra: 597/271,
  38055. bottom: 387/984
  38056. }
  38057. },
  38058. },
  38059. [
  38060. {
  38061. name: "Normal",
  38062. height: math.unit(4, "meters"),
  38063. default: true
  38064. },
  38065. ]
  38066. ))
  38067. characterMakers.push(() => makeCharacter(
  38068. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  38069. {
  38070. front: {
  38071. height: math.unit(8 + 4/12, "feet"),
  38072. weight: math.unit(670, "lb"),
  38073. name: "Front",
  38074. image: {
  38075. source: "./media/characters/acadiel/front.svg",
  38076. extra: 1901/1595,
  38077. bottom: 142/2043
  38078. }
  38079. },
  38080. },
  38081. [
  38082. {
  38083. name: "Normal",
  38084. height: math.unit(8 + 4/12, "feet"),
  38085. default: true
  38086. },
  38087. {
  38088. name: "Macro",
  38089. height: math.unit(200, "feet")
  38090. },
  38091. ]
  38092. ))
  38093. characterMakers.push(() => makeCharacter(
  38094. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  38095. {
  38096. front: {
  38097. height: math.unit(6 + 2/12, "feet"),
  38098. weight: math.unit(185, "lb"),
  38099. name: "Front",
  38100. image: {
  38101. source: "./media/characters/kayne-ein/front.svg",
  38102. extra: 1780/1560,
  38103. bottom: 81/1861
  38104. }
  38105. },
  38106. },
  38107. [
  38108. {
  38109. name: "Normal",
  38110. height: math.unit(6 + 2/12, "feet"),
  38111. default: true
  38112. },
  38113. {
  38114. name: "Transformation Stage",
  38115. height: math.unit(15, "feet")
  38116. },
  38117. {
  38118. name: "Macro",
  38119. height: math.unit(150, "feet")
  38120. },
  38121. {
  38122. name: "Earth's Shadow",
  38123. height: math.unit(6200, "miles")
  38124. },
  38125. {
  38126. name: "Universal Demon",
  38127. height: math.unit(28e9, "parsecs")
  38128. },
  38129. {
  38130. name: "Multiverse God",
  38131. height: math.unit(3, "multiverses")
  38132. },
  38133. ]
  38134. ))
  38135. characterMakers.push(() => makeCharacter(
  38136. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  38137. {
  38138. front: {
  38139. height: math.unit(5 + 5/12, "feet"),
  38140. name: "Front",
  38141. image: {
  38142. source: "./media/characters/fawn/front.svg",
  38143. extra: 1873/1731,
  38144. bottom: 95/1968
  38145. }
  38146. },
  38147. back: {
  38148. height: math.unit(5 + 5/12, "feet"),
  38149. name: "Back",
  38150. image: {
  38151. source: "./media/characters/fawn/back.svg",
  38152. extra: 1813/1700,
  38153. bottom: 14/1827
  38154. }
  38155. },
  38156. hoof: {
  38157. height: math.unit(1.45, "feet"),
  38158. name: "Hoof",
  38159. image: {
  38160. source: "./media/characters/fawn/hoof.svg"
  38161. }
  38162. },
  38163. },
  38164. [
  38165. {
  38166. name: "Normal",
  38167. height: math.unit(5 + 5/12, "feet"),
  38168. default: true
  38169. },
  38170. ]
  38171. ))
  38172. characterMakers.push(() => makeCharacter(
  38173. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  38174. {
  38175. front: {
  38176. height: math.unit(2 + 5/12, "feet"),
  38177. name: "Front",
  38178. image: {
  38179. source: "./media/characters/orion/front.svg",
  38180. extra: 1366/1304,
  38181. bottom: 43/1409
  38182. }
  38183. },
  38184. paw: {
  38185. height: math.unit(0.52, "feet"),
  38186. name: "Paw",
  38187. image: {
  38188. source: "./media/characters/orion/paw.svg"
  38189. }
  38190. },
  38191. },
  38192. [
  38193. {
  38194. name: "Normal",
  38195. height: math.unit(2 + 5/12, "feet"),
  38196. default: true
  38197. },
  38198. ]
  38199. ))
  38200. characterMakers.push(() => makeCharacter(
  38201. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  38202. {
  38203. front: {
  38204. height: math.unit(5 + 10/12, "feet"),
  38205. name: "Front",
  38206. image: {
  38207. source: "./media/characters/vera/front.svg",
  38208. extra: 1680/1575,
  38209. bottom: 49/1729
  38210. }
  38211. },
  38212. back: {
  38213. height: math.unit(5 + 10/12, "feet"),
  38214. name: "Back",
  38215. image: {
  38216. source: "./media/characters/vera/back.svg",
  38217. extra: 1700/1588,
  38218. bottom: 18/1718
  38219. }
  38220. },
  38221. arcanine: {
  38222. height: math.unit(6 + 8/12, "feet"),
  38223. name: "Arcanine",
  38224. image: {
  38225. source: "./media/characters/vera/arcanine.svg",
  38226. extra: 1590/1511,
  38227. bottom: 71/1661
  38228. }
  38229. },
  38230. maw: {
  38231. height: math.unit(0.82, "feet"),
  38232. name: "Maw",
  38233. image: {
  38234. source: "./media/characters/vera/maw.svg"
  38235. }
  38236. },
  38237. mawArcanine: {
  38238. height: math.unit(0.97, "feet"),
  38239. name: "Maw (Arcanine)",
  38240. image: {
  38241. source: "./media/characters/vera/maw-arcanine.svg"
  38242. }
  38243. },
  38244. paw: {
  38245. height: math.unit(0.75, "feet"),
  38246. name: "Paw",
  38247. image: {
  38248. source: "./media/characters/vera/paw.svg"
  38249. }
  38250. },
  38251. pawprint: {
  38252. height: math.unit(0.52, "feet"),
  38253. name: "Pawprint",
  38254. image: {
  38255. source: "./media/characters/vera/pawprint.svg"
  38256. }
  38257. },
  38258. },
  38259. [
  38260. {
  38261. name: "Normal",
  38262. height: math.unit(5 + 10/12, "feet"),
  38263. default: true
  38264. },
  38265. {
  38266. name: "Macro",
  38267. height: math.unit(75, "feet")
  38268. },
  38269. ]
  38270. ))
  38271. characterMakers.push(() => makeCharacter(
  38272. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  38273. {
  38274. front: {
  38275. height: math.unit(4, "feet"),
  38276. weight: math.unit(40, "lb"),
  38277. name: "Front",
  38278. image: {
  38279. source: "./media/characters/orvan-rabbit/front.svg",
  38280. extra: 1896/1642,
  38281. bottom: 29/1925
  38282. }
  38283. },
  38284. },
  38285. [
  38286. {
  38287. name: "Normal",
  38288. height: math.unit(4, "feet"),
  38289. default: true
  38290. },
  38291. ]
  38292. ))
  38293. characterMakers.push(() => makeCharacter(
  38294. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  38295. {
  38296. front: {
  38297. height: math.unit(6, "feet"),
  38298. weight: math.unit(168, "lb"),
  38299. name: "Front",
  38300. image: {
  38301. source: "./media/characters/lisa/front.svg",
  38302. extra: 2065/1867,
  38303. bottom: 46/2111
  38304. }
  38305. },
  38306. back: {
  38307. height: math.unit(6, "feet"),
  38308. weight: math.unit(168, "lb"),
  38309. name: "Back",
  38310. image: {
  38311. source: "./media/characters/lisa/back.svg",
  38312. extra: 1982/1838,
  38313. bottom: 29/2011
  38314. }
  38315. },
  38316. maw: {
  38317. height: math.unit(0.81, "feet"),
  38318. name: "Maw",
  38319. image: {
  38320. source: "./media/characters/lisa/maw.svg"
  38321. }
  38322. },
  38323. paw: {
  38324. height: math.unit(0.9, "feet"),
  38325. name: "Paw",
  38326. image: {
  38327. source: "./media/characters/lisa/paw.svg"
  38328. }
  38329. },
  38330. caribousune: {
  38331. height: math.unit(7 + 2/12, "feet"),
  38332. weight: math.unit(268, "lb"),
  38333. name: "Caribousune",
  38334. image: {
  38335. source: "./media/characters/lisa/caribousune.svg",
  38336. extra: 1843/1633,
  38337. bottom: 29/1872
  38338. }
  38339. },
  38340. frontCaribousune: {
  38341. height: math.unit(7 + 2/12, "feet"),
  38342. weight: math.unit(268, "lb"),
  38343. name: "Front (Caribousune)",
  38344. image: {
  38345. source: "./media/characters/lisa/front-caribousune.svg",
  38346. extra: 1818/1638,
  38347. bottom: 52/1870
  38348. }
  38349. },
  38350. sideCaribousune: {
  38351. height: math.unit(7 + 2/12, "feet"),
  38352. weight: math.unit(268, "lb"),
  38353. name: "Side (Caribousune)",
  38354. image: {
  38355. source: "./media/characters/lisa/side-caribousune.svg",
  38356. extra: 1851/1635,
  38357. bottom: 16/1867
  38358. }
  38359. },
  38360. backCaribousune: {
  38361. height: math.unit(7 + 2/12, "feet"),
  38362. weight: math.unit(268, "lb"),
  38363. name: "Back (Caribousune)",
  38364. image: {
  38365. source: "./media/characters/lisa/back-caribousune.svg",
  38366. extra: 1801/1604,
  38367. bottom: 44/1845
  38368. }
  38369. },
  38370. caribou: {
  38371. height: math.unit(7 + 2/12, "feet"),
  38372. weight: math.unit(268, "lb"),
  38373. name: "Caribou",
  38374. image: {
  38375. source: "./media/characters/lisa/caribou.svg",
  38376. extra: 1843/1633,
  38377. bottom: 29/1872
  38378. }
  38379. },
  38380. frontCaribou: {
  38381. height: math.unit(7 + 2/12, "feet"),
  38382. weight: math.unit(268, "lb"),
  38383. name: "Front (Caribou)",
  38384. image: {
  38385. source: "./media/characters/lisa/front-caribou.svg",
  38386. extra: 1818/1638,
  38387. bottom: 52/1870
  38388. }
  38389. },
  38390. sideCaribou: {
  38391. height: math.unit(7 + 2/12, "feet"),
  38392. weight: math.unit(268, "lb"),
  38393. name: "Side (Caribou)",
  38394. image: {
  38395. source: "./media/characters/lisa/side-caribou.svg",
  38396. extra: 1851/1635,
  38397. bottom: 16/1867
  38398. }
  38399. },
  38400. backCaribou: {
  38401. height: math.unit(7 + 2/12, "feet"),
  38402. weight: math.unit(268, "lb"),
  38403. name: "Back (Caribou)",
  38404. image: {
  38405. source: "./media/characters/lisa/back-caribou.svg",
  38406. extra: 1801/1604,
  38407. bottom: 44/1845
  38408. }
  38409. },
  38410. mawCaribou: {
  38411. height: math.unit(1.45, "feet"),
  38412. name: "Maw (Caribou)",
  38413. image: {
  38414. source: "./media/characters/lisa/maw-caribou.svg"
  38415. }
  38416. },
  38417. mawCaribousune: {
  38418. height: math.unit(1.45, "feet"),
  38419. name: "Maw (Caribousune)",
  38420. image: {
  38421. source: "./media/characters/lisa/maw-caribousune.svg"
  38422. }
  38423. },
  38424. pawCaribousune: {
  38425. height: math.unit(1.61, "feet"),
  38426. name: "Paw (Caribou)",
  38427. image: {
  38428. source: "./media/characters/lisa/paw-caribousune.svg"
  38429. }
  38430. },
  38431. },
  38432. [
  38433. {
  38434. name: "Normal",
  38435. height: math.unit(6, "feet")
  38436. },
  38437. {
  38438. name: "God Size",
  38439. height: math.unit(72, "feet"),
  38440. default: true
  38441. },
  38442. {
  38443. name: "Towering",
  38444. height: math.unit(288, "feet")
  38445. },
  38446. {
  38447. name: "City Size",
  38448. height: math.unit(48384, "feet")
  38449. },
  38450. {
  38451. name: "Continental",
  38452. height: math.unit(4200, "miles")
  38453. },
  38454. {
  38455. name: "Planet Eater",
  38456. height: math.unit(42, "earths")
  38457. },
  38458. {
  38459. name: "Star Swallower",
  38460. height: math.unit(42, "solarradii")
  38461. },
  38462. {
  38463. name: "System Swallower",
  38464. height: math.unit(84000, "AU")
  38465. },
  38466. {
  38467. name: "Galaxy Gobbler",
  38468. height: math.unit(42, "galaxies")
  38469. },
  38470. {
  38471. name: "Universe Devourer",
  38472. height: math.unit(42, "universes")
  38473. },
  38474. {
  38475. name: "Multiverse Muncher",
  38476. height: math.unit(42, "multiverses")
  38477. },
  38478. ]
  38479. ))
  38480. characterMakers.push(() => makeCharacter(
  38481. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  38482. {
  38483. front: {
  38484. height: math.unit(36, "feet"),
  38485. name: "Front",
  38486. image: {
  38487. source: "./media/characters/shadow-rat/front.svg",
  38488. extra: 1845/1758,
  38489. bottom: 83/1928
  38490. }
  38491. },
  38492. },
  38493. [
  38494. {
  38495. name: "Macro",
  38496. height: math.unit(36, "feet"),
  38497. default: true
  38498. },
  38499. ]
  38500. ))
  38501. characterMakers.push(() => makeCharacter(
  38502. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  38503. {
  38504. side: {
  38505. height: math.unit(8, "feet"),
  38506. weight: math.unit(2630, "lb"),
  38507. name: "Side",
  38508. image: {
  38509. source: "./media/characters/torallia/side.svg",
  38510. extra: 2164/2021,
  38511. bottom: 371/2535
  38512. }
  38513. },
  38514. },
  38515. [
  38516. {
  38517. name: "Mortal Interaction",
  38518. height: math.unit(8, "feet")
  38519. },
  38520. {
  38521. name: "Natural",
  38522. height: math.unit(24, "feet"),
  38523. default: true
  38524. },
  38525. {
  38526. name: "Giant",
  38527. height: math.unit(80, "feet")
  38528. },
  38529. {
  38530. name: "Kaiju",
  38531. height: math.unit(240, "feet")
  38532. },
  38533. {
  38534. name: "Macro",
  38535. height: math.unit(800, "feet")
  38536. },
  38537. {
  38538. name: "Macro+",
  38539. height: math.unit(2400, "feet")
  38540. },
  38541. {
  38542. name: "Macro++",
  38543. height: math.unit(8000, "feet")
  38544. },
  38545. {
  38546. name: "City-Crushing",
  38547. height: math.unit(24000, "feet")
  38548. },
  38549. {
  38550. name: "Mountain-Mashing",
  38551. height: math.unit(80000, "feet")
  38552. },
  38553. {
  38554. name: "District Demolisher",
  38555. height: math.unit(240000, "feet")
  38556. },
  38557. {
  38558. name: "Tri-County Terror",
  38559. height: math.unit(800000, "feet")
  38560. },
  38561. {
  38562. name: "State Smasher",
  38563. height: math.unit(2.4e6, "feet")
  38564. },
  38565. {
  38566. name: "Nation Nemesis",
  38567. height: math.unit(8e6, "feet")
  38568. },
  38569. {
  38570. name: "Continent Cracker",
  38571. height: math.unit(2.4e7, "feet")
  38572. },
  38573. {
  38574. name: "Planet-Pillaging",
  38575. height: math.unit(8e7, "feet")
  38576. },
  38577. {
  38578. name: "Earth-Eclipsing",
  38579. height: math.unit(2.4e8, "feet")
  38580. },
  38581. {
  38582. name: "Jovian-Jostling",
  38583. height: math.unit(8e8, "feet")
  38584. },
  38585. {
  38586. name: "Gas Giant Gulper",
  38587. height: math.unit(2.4e9, "feet")
  38588. },
  38589. {
  38590. name: "Astral Annihilator",
  38591. height: math.unit(8e9, "feet")
  38592. },
  38593. {
  38594. name: "Celestial Conqueror",
  38595. height: math.unit(2.4e10, "feet")
  38596. },
  38597. {
  38598. name: "Sol-Swallowing",
  38599. height: math.unit(8e10, "feet")
  38600. },
  38601. {
  38602. name: "Hunter of the Heavens",
  38603. height: math.unit(2.4e13, "feet")
  38604. },
  38605. ]
  38606. ))
  38607. characterMakers.push(() => makeCharacter(
  38608. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  38609. {
  38610. front: {
  38611. height: math.unit(6 + 8/12, "feet"),
  38612. name: "Front",
  38613. image: {
  38614. source: "./media/characters/rebecca-pawlson/front.svg",
  38615. extra: 1737/1596,
  38616. bottom: 107/1844
  38617. }
  38618. },
  38619. back: {
  38620. height: math.unit(6 + 8/12, "feet"),
  38621. name: "Back",
  38622. image: {
  38623. source: "./media/characters/rebecca-pawlson/back.svg",
  38624. extra: 1702/1523,
  38625. bottom: 86/1788
  38626. }
  38627. },
  38628. },
  38629. [
  38630. {
  38631. name: "Normal",
  38632. height: math.unit(6 + 8/12, "feet")
  38633. },
  38634. {
  38635. name: "Mini Macro",
  38636. height: math.unit(10, "feet"),
  38637. default: true
  38638. },
  38639. {
  38640. name: "Macro",
  38641. height: math.unit(100, "feet")
  38642. },
  38643. {
  38644. name: "Mega Macro",
  38645. height: math.unit(2500, "feet")
  38646. },
  38647. {
  38648. name: "Giga Macro",
  38649. height: math.unit(50, "miles")
  38650. },
  38651. ]
  38652. ))
  38653. characterMakers.push(() => makeCharacter(
  38654. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  38655. {
  38656. front: {
  38657. height: math.unit(7 + 6/12, "feet"),
  38658. weight: math.unit(600, "lb"),
  38659. name: "Front",
  38660. image: {
  38661. source: "./media/characters/moxie-nova/front.svg",
  38662. extra: 1734/1652,
  38663. bottom: 41/1775
  38664. }
  38665. },
  38666. },
  38667. [
  38668. {
  38669. name: "Normal",
  38670. height: math.unit(7 + 6/12, "feet"),
  38671. default: true
  38672. },
  38673. ]
  38674. ))
  38675. characterMakers.push(() => makeCharacter(
  38676. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  38677. {
  38678. goat: {
  38679. height: math.unit(4, "feet"),
  38680. weight: math.unit(180, "lb"),
  38681. name: "Goat",
  38682. image: {
  38683. source: "./media/characters/tiffany/goat.svg",
  38684. extra: 1845/1595,
  38685. bottom: 106/1951
  38686. }
  38687. },
  38688. front: {
  38689. height: math.unit(5, "feet"),
  38690. weight: math.unit(150, "lb"),
  38691. name: "Foxcoon",
  38692. image: {
  38693. source: "./media/characters/tiffany/foxcoon.svg",
  38694. extra: 1941/1845,
  38695. bottom: 58/1999
  38696. }
  38697. },
  38698. },
  38699. [
  38700. {
  38701. name: "Normal",
  38702. height: math.unit(5, "feet"),
  38703. default: true
  38704. },
  38705. ]
  38706. ))
  38707. characterMakers.push(() => makeCharacter(
  38708. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  38709. {
  38710. front: {
  38711. height: math.unit(8, "feet"),
  38712. weight: math.unit(300, "lb"),
  38713. name: "Front",
  38714. image: {
  38715. source: "./media/characters/raxinath/front.svg",
  38716. extra: 1407/1309,
  38717. bottom: 39/1446
  38718. }
  38719. },
  38720. back: {
  38721. height: math.unit(8, "feet"),
  38722. weight: math.unit(300, "lb"),
  38723. name: "Back",
  38724. image: {
  38725. source: "./media/characters/raxinath/back.svg",
  38726. extra: 1405/1315,
  38727. bottom: 9/1414
  38728. }
  38729. },
  38730. },
  38731. [
  38732. {
  38733. name: "Speck",
  38734. height: math.unit(0.5, "nm")
  38735. },
  38736. {
  38737. name: "Micro",
  38738. height: math.unit(3, "inches")
  38739. },
  38740. {
  38741. name: "Kobold",
  38742. height: math.unit(3, "feet")
  38743. },
  38744. {
  38745. name: "Normal",
  38746. height: math.unit(8, "feet"),
  38747. default: true
  38748. },
  38749. {
  38750. name: "Giant",
  38751. height: math.unit(50, "feet")
  38752. },
  38753. {
  38754. name: "Macro",
  38755. height: math.unit(1000, "feet")
  38756. },
  38757. {
  38758. name: "Megamacro",
  38759. height: math.unit(1, "mile")
  38760. },
  38761. ]
  38762. ))
  38763. characterMakers.push(() => makeCharacter(
  38764. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  38765. {
  38766. front: {
  38767. height: math.unit(10, "feet"),
  38768. weight: math.unit(1442, "lb"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/mal-dragon/front.svg",
  38772. extra: 1515/1444,
  38773. bottom: 113/1628
  38774. }
  38775. },
  38776. back: {
  38777. height: math.unit(10, "feet"),
  38778. weight: math.unit(1442, "lb"),
  38779. name: "Back",
  38780. image: {
  38781. source: "./media/characters/mal-dragon/back.svg",
  38782. extra: 1527/1434,
  38783. bottom: 25/1552
  38784. }
  38785. },
  38786. },
  38787. [
  38788. {
  38789. name: "Mortal Interaction",
  38790. height: math.unit(10, "feet"),
  38791. default: true
  38792. },
  38793. {
  38794. name: "Large",
  38795. height: math.unit(30, "feet")
  38796. },
  38797. {
  38798. name: "Kaiju",
  38799. height: math.unit(300, "feet")
  38800. },
  38801. {
  38802. name: "Megamacro",
  38803. height: math.unit(10000, "feet")
  38804. },
  38805. {
  38806. name: "Continent Cracker",
  38807. height: math.unit(30000000, "feet")
  38808. },
  38809. {
  38810. name: "Sol-Swallowing",
  38811. height: math.unit(1e11, "feet")
  38812. },
  38813. {
  38814. name: "Light Universal",
  38815. height: math.unit(5, "universes")
  38816. },
  38817. {
  38818. name: "Universe Atoms",
  38819. height: math.unit(1.829e9, "universes")
  38820. },
  38821. {
  38822. name: "Light Multiversal",
  38823. height: math.unit(5, "multiverses")
  38824. },
  38825. {
  38826. name: "Multiverse Atoms",
  38827. height: math.unit(1.829e9, "multiverses")
  38828. },
  38829. {
  38830. name: "Fabric of Time",
  38831. height: math.unit(1e262, "multiverses")
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(9, "feet"),
  38840. weight: math.unit(1050, "lb"),
  38841. name: "Front",
  38842. image: {
  38843. source: "./media/characters/tabitha/front.svg",
  38844. extra: 2083/1994,
  38845. bottom: 68/2151
  38846. }
  38847. },
  38848. },
  38849. [
  38850. {
  38851. name: "Baseline",
  38852. height: math.unit(9, "feet"),
  38853. default: true
  38854. },
  38855. {
  38856. name: "Giant",
  38857. height: math.unit(90, "feet")
  38858. },
  38859. {
  38860. name: "Macro",
  38861. height: math.unit(900, "feet")
  38862. },
  38863. {
  38864. name: "Megamacro",
  38865. height: math.unit(9000, "feet")
  38866. },
  38867. {
  38868. name: "City-Crushing",
  38869. height: math.unit(27000, "feet")
  38870. },
  38871. {
  38872. name: "Mountain-Mashing",
  38873. height: math.unit(90000, "feet")
  38874. },
  38875. {
  38876. name: "Nation Nemesis",
  38877. height: math.unit(9e6, "feet")
  38878. },
  38879. {
  38880. name: "Continent Cracker",
  38881. height: math.unit(27e6, "feet")
  38882. },
  38883. {
  38884. name: "Earth-Eclipsing",
  38885. height: math.unit(2.7e8, "feet")
  38886. },
  38887. {
  38888. name: "Gas Giant Gulper",
  38889. height: math.unit(2.7e9, "feet")
  38890. },
  38891. {
  38892. name: "Sol-Swallowing",
  38893. height: math.unit(9e10, "feet")
  38894. },
  38895. {
  38896. name: "Galaxy Gulper",
  38897. height: math.unit(9, "galaxies")
  38898. },
  38899. {
  38900. name: "Cosmos Churner",
  38901. height: math.unit(9, "universes")
  38902. },
  38903. ]
  38904. ))
  38905. characterMakers.push(() => makeCharacter(
  38906. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  38907. {
  38908. front: {
  38909. height: math.unit(160, "cm"),
  38910. weight: math.unit(55, "kg"),
  38911. name: "Front",
  38912. image: {
  38913. source: "./media/characters/tow/front.svg",
  38914. extra: 1751/1722,
  38915. bottom: 74/1825
  38916. }
  38917. },
  38918. },
  38919. [
  38920. {
  38921. name: "Norm",
  38922. height: math.unit(160, "cm")
  38923. },
  38924. {
  38925. name: "Casual",
  38926. height: math.unit(3200, "m"),
  38927. default: true
  38928. },
  38929. {
  38930. name: "Show-Off",
  38931. height: math.unit(160, "km")
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  38937. {
  38938. front: {
  38939. height: math.unit(7 + 11/12, "feet"),
  38940. weight: math.unit(342.8, "lb"),
  38941. name: "Front",
  38942. image: {
  38943. source: "./media/characters/vivian-orca-dragon/front.svg",
  38944. extra: 1890/1865,
  38945. bottom: 28/1918
  38946. }
  38947. },
  38948. },
  38949. [
  38950. {
  38951. name: "Micro",
  38952. height: math.unit(5, "inches")
  38953. },
  38954. {
  38955. name: "Normal",
  38956. height: math.unit(7 + 11/12, "feet"),
  38957. default: true
  38958. },
  38959. {
  38960. name: "Macro",
  38961. height: math.unit(395 + 7/12, "feet")
  38962. },
  38963. ]
  38964. ))
  38965. characterMakers.push(() => makeCharacter(
  38966. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  38967. {
  38968. side: {
  38969. height: math.unit(10, "feet"),
  38970. weight: math.unit(1442, "lb"),
  38971. name: "Side",
  38972. image: {
  38973. source: "./media/characters/lotherakon/side.svg",
  38974. extra: 1604/1497,
  38975. bottom: 89/1693
  38976. }
  38977. },
  38978. },
  38979. [
  38980. {
  38981. name: "Mortal Interaction",
  38982. height: math.unit(10, "feet")
  38983. },
  38984. {
  38985. name: "Large",
  38986. height: math.unit(30, "feet"),
  38987. default: true
  38988. },
  38989. {
  38990. name: "Giant",
  38991. height: math.unit(100, "feet")
  38992. },
  38993. {
  38994. name: "Kaiju",
  38995. height: math.unit(300, "feet")
  38996. },
  38997. {
  38998. name: "Macro",
  38999. height: math.unit(1000, "feet")
  39000. },
  39001. {
  39002. name: "Macro+",
  39003. height: math.unit(3000, "feet")
  39004. },
  39005. {
  39006. name: "Megamacro",
  39007. height: math.unit(10000, "feet")
  39008. },
  39009. {
  39010. name: "City-Crushing",
  39011. height: math.unit(30000, "feet")
  39012. },
  39013. {
  39014. name: "Continent Cracker",
  39015. height: math.unit(30e6, "feet")
  39016. },
  39017. {
  39018. name: "Earth Eclipsing",
  39019. height: math.unit(3e8, "feet")
  39020. },
  39021. {
  39022. name: "Gas Giant Gulper",
  39023. height: math.unit(3e9, "feet")
  39024. },
  39025. {
  39026. name: "Sol-Swallowing",
  39027. height: math.unit(1e11, "feet")
  39028. },
  39029. {
  39030. name: "System Swallower",
  39031. height: math.unit(3e14, "feet")
  39032. },
  39033. {
  39034. name: "Galaxy Gulper",
  39035. height: math.unit(10, "galaxies")
  39036. },
  39037. {
  39038. name: "Light Universal",
  39039. height: math.unit(5, "universes")
  39040. },
  39041. {
  39042. name: "Universe Palm",
  39043. height: math.unit(20, "universes")
  39044. },
  39045. {
  39046. name: "Light Multiversal",
  39047. height: math.unit(5, "multiverses")
  39048. },
  39049. {
  39050. name: "Multiverse Palm",
  39051. height: math.unit(20, "multiverses")
  39052. },
  39053. {
  39054. name: "Inferno Incarnate",
  39055. height: math.unit(1e7, "multiverses")
  39056. },
  39057. ]
  39058. ))
  39059. characterMakers.push(() => makeCharacter(
  39060. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  39061. {
  39062. front: {
  39063. height: math.unit(8, "feet"),
  39064. weight: math.unit(1200, "lb"),
  39065. name: "Front",
  39066. image: {
  39067. source: "./media/characters/malithee/front.svg",
  39068. extra: 1675/1640,
  39069. bottom: 162/1837
  39070. }
  39071. },
  39072. },
  39073. [
  39074. {
  39075. name: "Mortal Interaction",
  39076. height: math.unit(8, "feet"),
  39077. default: true
  39078. },
  39079. {
  39080. name: "Large",
  39081. height: math.unit(24, "feet")
  39082. },
  39083. {
  39084. name: "Kaiju",
  39085. height: math.unit(240, "feet")
  39086. },
  39087. {
  39088. name: "Megamacro",
  39089. height: math.unit(8000, "feet")
  39090. },
  39091. {
  39092. name: "Continent Cracker",
  39093. height: math.unit(24e6, "feet")
  39094. },
  39095. {
  39096. name: "Earth-Eclipsing",
  39097. height: math.unit(2.4e8, "feet")
  39098. },
  39099. {
  39100. name: "Sol-Swallowing",
  39101. height: math.unit(8e10, "feet")
  39102. },
  39103. {
  39104. name: "Galaxy Gulper",
  39105. height: math.unit(8, "galaxies")
  39106. },
  39107. {
  39108. name: "Light Universal",
  39109. height: math.unit(4, "universes")
  39110. },
  39111. {
  39112. name: "Universe Atoms",
  39113. height: math.unit(1.829e9, "universes")
  39114. },
  39115. {
  39116. name: "Light Multiversal",
  39117. height: math.unit(4, "multiverses")
  39118. },
  39119. {
  39120. name: "Multiverse Atoms",
  39121. height: math.unit(1.829e9, "multiverses")
  39122. },
  39123. {
  39124. name: "Nigh-Omnipresence",
  39125. height: math.unit(8e261, "multiverses")
  39126. },
  39127. ]
  39128. ))
  39129. characterMakers.push(() => makeCharacter(
  39130. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  39131. {
  39132. front: {
  39133. height: math.unit(10, "feet"),
  39134. weight: math.unit(1500, "lb"),
  39135. name: "Front",
  39136. image: {
  39137. source: "./media/characters/miles-thestia/front.svg",
  39138. extra: 1812/1727,
  39139. bottom: 86/1898
  39140. }
  39141. },
  39142. back: {
  39143. height: math.unit(10, "feet"),
  39144. weight: math.unit(1500, "lb"),
  39145. name: "Back",
  39146. image: {
  39147. source: "./media/characters/miles-thestia/back.svg",
  39148. extra: 1799/1690,
  39149. bottom: 47/1846
  39150. }
  39151. },
  39152. frontNsfw: {
  39153. height: math.unit(10, "feet"),
  39154. weight: math.unit(1500, "lb"),
  39155. name: "Front (NSFW)",
  39156. image: {
  39157. source: "./media/characters/miles-thestia/front-nsfw.svg",
  39158. extra: 1812/1727,
  39159. bottom: 86/1898
  39160. }
  39161. },
  39162. },
  39163. [
  39164. {
  39165. name: "Mini-Macro",
  39166. height: math.unit(10, "feet"),
  39167. default: true
  39168. },
  39169. ]
  39170. ))
  39171. characterMakers.push(() => makeCharacter(
  39172. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  39173. {
  39174. front: {
  39175. height: math.unit(25, "feet"),
  39176. name: "Front",
  39177. image: {
  39178. source: "./media/characters/titan-s-wulf/front.svg",
  39179. extra: 1560/1484,
  39180. bottom: 76/1636
  39181. }
  39182. },
  39183. },
  39184. [
  39185. {
  39186. name: "Smallest",
  39187. height: math.unit(25, "feet"),
  39188. default: true
  39189. },
  39190. {
  39191. name: "Normal",
  39192. height: math.unit(200, "feet")
  39193. },
  39194. {
  39195. name: "Macro",
  39196. height: math.unit(200000, "feet")
  39197. },
  39198. {
  39199. name: "Multiversal Original",
  39200. height: math.unit(10000, "multiverses")
  39201. },
  39202. ]
  39203. ))
  39204. characterMakers.push(() => makeCharacter(
  39205. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  39206. {
  39207. front: {
  39208. height: math.unit(8, "feet"),
  39209. weight: math.unit(553, "lb"),
  39210. name: "Front",
  39211. image: {
  39212. source: "./media/characters/tawendeh/front.svg",
  39213. extra: 2365/2268,
  39214. bottom: 83/2448
  39215. }
  39216. },
  39217. frontClothed: {
  39218. height: math.unit(8, "feet"),
  39219. weight: math.unit(553, "lb"),
  39220. name: "Front (Clothed)",
  39221. image: {
  39222. source: "./media/characters/tawendeh/front-clothed.svg",
  39223. extra: 2365/2268,
  39224. bottom: 83/2448
  39225. }
  39226. },
  39227. back: {
  39228. height: math.unit(8, "feet"),
  39229. weight: math.unit(553, "lb"),
  39230. name: "Back",
  39231. image: {
  39232. source: "./media/characters/tawendeh/back.svg",
  39233. extra: 2397/2294,
  39234. bottom: 42/2439
  39235. }
  39236. },
  39237. },
  39238. [
  39239. {
  39240. name: "Mortal Interaction",
  39241. height: math.unit(8, "feet"),
  39242. default: true
  39243. },
  39244. {
  39245. name: "Giant",
  39246. height: math.unit(80, "feet")
  39247. },
  39248. {
  39249. name: "Macro",
  39250. height: math.unit(800, "feet")
  39251. },
  39252. {
  39253. name: "Megamacro",
  39254. height: math.unit(8000, "feet")
  39255. },
  39256. {
  39257. name: "City-Crushing",
  39258. height: math.unit(24000, "feet")
  39259. },
  39260. {
  39261. name: "Mountain-Mashing",
  39262. height: math.unit(80000, "feet")
  39263. },
  39264. {
  39265. name: "Nation Nemesis",
  39266. height: math.unit(8e6, "feet")
  39267. },
  39268. {
  39269. name: "Continent Cracker",
  39270. height: math.unit(24e6, "feet")
  39271. },
  39272. {
  39273. name: "Earth-Eclipsing",
  39274. height: math.unit(2.4e8, "feet")
  39275. },
  39276. {
  39277. name: "Gas Giant Gulper",
  39278. height: math.unit(2.4e9, "feet")
  39279. },
  39280. {
  39281. name: "Sol-Swallowing",
  39282. height: math.unit(8e10, "feet")
  39283. },
  39284. {
  39285. name: "Galaxy Gulper",
  39286. height: math.unit(8, "galaxies")
  39287. },
  39288. {
  39289. name: "Cosmos Churner",
  39290. height: math.unit(8, "universes")
  39291. },
  39292. {
  39293. name: "Omnipotent Otter",
  39294. height: math.unit(80, "universes")
  39295. },
  39296. ]
  39297. ))
  39298. characterMakers.push(() => makeCharacter(
  39299. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  39300. {
  39301. front: {
  39302. height: math.unit(2.6, "meters"),
  39303. weight: math.unit(900, "kg"),
  39304. name: "Front",
  39305. image: {
  39306. source: "./media/characters/neesha/front.svg",
  39307. extra: 1803/1653,
  39308. bottom: 128/1931
  39309. }
  39310. },
  39311. },
  39312. [
  39313. {
  39314. name: "Normal",
  39315. height: math.unit(2.6, "meters"),
  39316. default: true
  39317. },
  39318. {
  39319. name: "Macro",
  39320. height: math.unit(50, "meters")
  39321. },
  39322. ]
  39323. ))
  39324. characterMakers.push(() => makeCharacter(
  39325. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  39326. {
  39327. front: {
  39328. height: math.unit(5, "feet"),
  39329. weight: math.unit(185, "lb"),
  39330. name: "Front",
  39331. image: {
  39332. source: "./media/characters/kyera/front.svg",
  39333. extra: 1875/1790,
  39334. bottom: 96/1971
  39335. }
  39336. },
  39337. },
  39338. [
  39339. {
  39340. name: "Normal",
  39341. height: math.unit(5, "feet"),
  39342. default: true
  39343. },
  39344. ]
  39345. ))
  39346. characterMakers.push(() => makeCharacter(
  39347. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  39348. {
  39349. front: {
  39350. height: math.unit(7 + 6/12, "feet"),
  39351. weight: math.unit(540, "lb"),
  39352. name: "Front",
  39353. image: {
  39354. source: "./media/characters/yuko/front.svg",
  39355. extra: 1282/1222,
  39356. bottom: 101/1383
  39357. }
  39358. },
  39359. frontClothed: {
  39360. height: math.unit(7 + 6/12, "feet"),
  39361. weight: math.unit(540, "lb"),
  39362. name: "Front (Clothed)",
  39363. image: {
  39364. source: "./media/characters/yuko/front-clothed.svg",
  39365. extra: 1282/1222,
  39366. bottom: 101/1383
  39367. }
  39368. },
  39369. },
  39370. [
  39371. {
  39372. name: "Normal",
  39373. height: math.unit(7 + 6/12, "feet"),
  39374. default: true
  39375. },
  39376. {
  39377. name: "Macro",
  39378. height: math.unit(26 + 9/12, "feet")
  39379. },
  39380. {
  39381. name: "Megamacro",
  39382. height: math.unit(300, "feet")
  39383. },
  39384. {
  39385. name: "Gigamacro",
  39386. height: math.unit(5000, "feet")
  39387. },
  39388. {
  39389. name: "Planetary",
  39390. height: math.unit(10000, "miles")
  39391. },
  39392. ]
  39393. ))
  39394. characterMakers.push(() => makeCharacter(
  39395. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  39396. {
  39397. front: {
  39398. height: math.unit(8 + 2/12, "feet"),
  39399. weight: math.unit(600, "lb"),
  39400. name: "Front",
  39401. image: {
  39402. source: "./media/characters/deam-nitrel/front.svg",
  39403. extra: 1308/1234,
  39404. bottom: 125/1433
  39405. }
  39406. },
  39407. },
  39408. [
  39409. {
  39410. name: "Normal",
  39411. height: math.unit(8 + 2/12, "feet"),
  39412. default: true
  39413. },
  39414. ]
  39415. ))
  39416. characterMakers.push(() => makeCharacter(
  39417. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  39418. {
  39419. front: {
  39420. height: math.unit(6.1, "feet"),
  39421. weight: math.unit(180, "lb"),
  39422. name: "Front",
  39423. image: {
  39424. source: "./media/characters/skyress/front.svg",
  39425. extra: 1045/915,
  39426. bottom: 28/1073
  39427. }
  39428. },
  39429. maw: {
  39430. height: math.unit(1, "feet"),
  39431. name: "Maw",
  39432. image: {
  39433. source: "./media/characters/skyress/maw.svg"
  39434. }
  39435. },
  39436. },
  39437. [
  39438. {
  39439. name: "Normal",
  39440. height: math.unit(6.1, "feet"),
  39441. default: true
  39442. },
  39443. {
  39444. name: "Macro",
  39445. height: math.unit(200, "feet")
  39446. },
  39447. ]
  39448. ))
  39449. characterMakers.push(() => makeCharacter(
  39450. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  39451. {
  39452. front: {
  39453. height: math.unit(4 + 2/12, "feet"),
  39454. weight: math.unit(40, "kg"),
  39455. name: "Front",
  39456. image: {
  39457. source: "./media/characters/amethyst-jones/front.svg",
  39458. extra: 1220/1150,
  39459. bottom: 101/1321
  39460. }
  39461. },
  39462. },
  39463. [
  39464. {
  39465. name: "Normal",
  39466. height: math.unit(4 + 2/12, "feet"),
  39467. default: true
  39468. },
  39469. ]
  39470. ))
  39471. characterMakers.push(() => makeCharacter(
  39472. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  39473. {
  39474. front: {
  39475. height: math.unit(1.7, "m"),
  39476. weight: math.unit(135, "lb"),
  39477. name: "Front",
  39478. image: {
  39479. source: "./media/characters/jade/front.svg",
  39480. extra: 1818/1767,
  39481. bottom: 32/1850
  39482. }
  39483. },
  39484. back: {
  39485. height: math.unit(1.7, "m"),
  39486. weight: math.unit(135, "lb"),
  39487. name: "Back",
  39488. image: {
  39489. source: "./media/characters/jade/back.svg",
  39490. extra: 1869/1809,
  39491. bottom: 35/1904
  39492. }
  39493. },
  39494. hand: {
  39495. height: math.unit(0.24, "m"),
  39496. name: "Hand",
  39497. image: {
  39498. source: "./media/characters/jade/hand.svg"
  39499. }
  39500. },
  39501. foot: {
  39502. height: math.unit(0.263, "m"),
  39503. name: "Foot",
  39504. image: {
  39505. source: "./media/characters/jade/foot.svg"
  39506. }
  39507. },
  39508. dick: {
  39509. height: math.unit(0.47, "m"),
  39510. name: "Dick",
  39511. image: {
  39512. source: "./media/characters/jade/dick.svg"
  39513. }
  39514. },
  39515. },
  39516. [
  39517. {
  39518. name: "Micro",
  39519. height: math.unit(22, "cm")
  39520. },
  39521. {
  39522. name: "Normal",
  39523. height: math.unit(1.7, "m"),
  39524. default: true
  39525. },
  39526. {
  39527. name: "Macro",
  39528. height: math.unit(152, "m")
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(100, "miles"),
  39537. weight: math.unit(20000, "tons"),
  39538. name: "Front",
  39539. image: {
  39540. source: "./media/characters/cookie/front.svg",
  39541. extra: 1125/1070,
  39542. bottom: 30/1155
  39543. }
  39544. },
  39545. },
  39546. [
  39547. {
  39548. name: "Big",
  39549. height: math.unit(50, "feet")
  39550. },
  39551. {
  39552. name: "Macro",
  39553. height: math.unit(100, "miles"),
  39554. default: true
  39555. },
  39556. {
  39557. name: "Megamacro",
  39558. height: math.unit(90000, "miles")
  39559. },
  39560. ]
  39561. ))
  39562. characterMakers.push(() => makeCharacter(
  39563. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  39564. {
  39565. front: {
  39566. height: math.unit(6, "feet"),
  39567. weight: math.unit(145, "lb"),
  39568. name: "Front",
  39569. image: {
  39570. source: "./media/characters/farzian/front.svg",
  39571. extra: 1902/1693,
  39572. bottom: 108/2010
  39573. }
  39574. },
  39575. },
  39576. [
  39577. {
  39578. name: "Macro",
  39579. height: math.unit(500, "feet"),
  39580. default: true
  39581. },
  39582. ]
  39583. ))
  39584. characterMakers.push(() => makeCharacter(
  39585. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  39586. {
  39587. front: {
  39588. height: math.unit(3 + 6/12, "feet"),
  39589. weight: math.unit(50, "lb"),
  39590. name: "Front",
  39591. image: {
  39592. source: "./media/characters/kimberly-tilson/front.svg",
  39593. extra: 1400/1322,
  39594. bottom: 36/1436
  39595. }
  39596. },
  39597. back: {
  39598. height: math.unit(3 + 6/12, "feet"),
  39599. weight: math.unit(50, "lb"),
  39600. name: "Back",
  39601. image: {
  39602. source: "./media/characters/kimberly-tilson/back.svg",
  39603. extra: 1370/1307,
  39604. bottom: 20/1390
  39605. }
  39606. },
  39607. },
  39608. [
  39609. {
  39610. name: "Normal",
  39611. height: math.unit(3 + 6/12, "feet"),
  39612. default: true
  39613. },
  39614. ]
  39615. ))
  39616. characterMakers.push(() => makeCharacter(
  39617. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  39618. {
  39619. front: {
  39620. height: math.unit(1148, "feet"),
  39621. weight: math.unit(34057, "lb"),
  39622. name: "Front",
  39623. image: {
  39624. source: "./media/characters/harthos/front.svg",
  39625. extra: 1391/1339,
  39626. bottom: 13/1404
  39627. }
  39628. },
  39629. },
  39630. [
  39631. {
  39632. name: "Macro",
  39633. height: math.unit(1148, "feet"),
  39634. default: true
  39635. },
  39636. ]
  39637. ))
  39638. characterMakers.push(() => makeCharacter(
  39639. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  39640. {
  39641. front: {
  39642. height: math.unit(15, "feet"),
  39643. name: "Front",
  39644. image: {
  39645. source: "./media/characters/hypatia/front.svg",
  39646. extra: 1653/1591,
  39647. bottom: 79/1732
  39648. }
  39649. },
  39650. },
  39651. [
  39652. {
  39653. name: "Normal",
  39654. height: math.unit(15, "feet")
  39655. },
  39656. {
  39657. name: "Small",
  39658. height: math.unit(300, "feet")
  39659. },
  39660. {
  39661. name: "Macro",
  39662. height: math.unit(2500, "feet"),
  39663. default: true
  39664. },
  39665. {
  39666. name: "Mega Macro",
  39667. height: math.unit(1500, "miles")
  39668. },
  39669. {
  39670. name: "Giga Macro",
  39671. height: math.unit(1.5e6, "miles")
  39672. },
  39673. ]
  39674. ))
  39675. characterMakers.push(() => makeCharacter(
  39676. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  39677. {
  39678. front: {
  39679. height: math.unit(6, "feet"),
  39680. weight: math.unit(200, "lb"),
  39681. name: "Front",
  39682. image: {
  39683. source: "./media/characters/wulver/front.svg",
  39684. extra: 1724/1632,
  39685. bottom: 130/1854
  39686. }
  39687. },
  39688. frontNsfw: {
  39689. height: math.unit(6, "feet"),
  39690. weight: math.unit(200, "lb"),
  39691. name: "Front (NSFW)",
  39692. image: {
  39693. source: "./media/characters/wulver/front-nsfw.svg",
  39694. extra: 1724/1632,
  39695. bottom: 130/1854
  39696. }
  39697. },
  39698. },
  39699. [
  39700. {
  39701. name: "Human-Sized",
  39702. height: math.unit(6, "feet")
  39703. },
  39704. {
  39705. name: "Normal",
  39706. height: math.unit(4, "meters"),
  39707. default: true
  39708. },
  39709. {
  39710. name: "Large",
  39711. height: math.unit(6, "m")
  39712. },
  39713. ]
  39714. ))
  39715. characterMakers.push(() => makeCharacter(
  39716. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  39717. {
  39718. front: {
  39719. height: math.unit(7, "feet"),
  39720. name: "Front",
  39721. image: {
  39722. source: "./media/characters/maru/front.svg",
  39723. extra: 1595/1570,
  39724. bottom: 0/1595
  39725. }
  39726. },
  39727. },
  39728. [
  39729. {
  39730. name: "Normal",
  39731. height: math.unit(7, "feet"),
  39732. default: true
  39733. },
  39734. {
  39735. name: "Macro",
  39736. height: math.unit(700, "feet")
  39737. },
  39738. {
  39739. name: "Mega Macro",
  39740. height: math.unit(25, "miles")
  39741. },
  39742. ]
  39743. ))
  39744. characterMakers.push(() => makeCharacter(
  39745. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  39746. {
  39747. front: {
  39748. height: math.unit(6, "feet"),
  39749. weight: math.unit(170, "lb"),
  39750. name: "Front",
  39751. image: {
  39752. source: "./media/characters/xenon/front.svg",
  39753. extra: 1376/1305,
  39754. bottom: 56/1432
  39755. }
  39756. },
  39757. back: {
  39758. height: math.unit(6, "feet"),
  39759. weight: math.unit(170, "lb"),
  39760. name: "Back",
  39761. image: {
  39762. source: "./media/characters/xenon/back.svg",
  39763. extra: 1328/1259,
  39764. bottom: 95/1423
  39765. }
  39766. },
  39767. maw: {
  39768. height: math.unit(0.52, "feet"),
  39769. name: "Maw",
  39770. image: {
  39771. source: "./media/characters/xenon/maw.svg"
  39772. }
  39773. },
  39774. hand: {
  39775. height: math.unit(0.82, "feet"),
  39776. name: "Hand",
  39777. image: {
  39778. source: "./media/characters/xenon/hand.svg"
  39779. }
  39780. },
  39781. foot: {
  39782. height: math.unit(1.13, "feet"),
  39783. name: "Foot",
  39784. image: {
  39785. source: "./media/characters/xenon/foot.svg"
  39786. }
  39787. },
  39788. },
  39789. [
  39790. {
  39791. name: "Micro",
  39792. height: math.unit(0.8, "inches")
  39793. },
  39794. {
  39795. name: "Normal",
  39796. height: math.unit(6, "feet")
  39797. },
  39798. {
  39799. name: "Macro",
  39800. height: math.unit(50, "feet"),
  39801. default: true
  39802. },
  39803. {
  39804. name: "Macro+",
  39805. height: math.unit(250, "feet")
  39806. },
  39807. {
  39808. name: "Megamacro",
  39809. height: math.unit(1500, "feet")
  39810. },
  39811. ]
  39812. ))
  39813. characterMakers.push(() => makeCharacter(
  39814. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  39815. {
  39816. front: {
  39817. height: math.unit(7 + 5/12, "feet"),
  39818. name: "Front",
  39819. image: {
  39820. source: "./media/characters/zane/front.svg",
  39821. extra: 1260/1203,
  39822. bottom: 94/1354
  39823. }
  39824. },
  39825. back: {
  39826. height: math.unit(5.05, "feet"),
  39827. name: "Back",
  39828. image: {
  39829. source: "./media/characters/zane/back.svg",
  39830. extra: 893/829,
  39831. bottom: 30/923
  39832. }
  39833. },
  39834. werewolf: {
  39835. height: math.unit(11, "feet"),
  39836. name: "Werewolf",
  39837. image: {
  39838. source: "./media/characters/zane/werewolf.svg",
  39839. extra: 1383/1323,
  39840. bottom: 89/1472
  39841. }
  39842. },
  39843. foot: {
  39844. height: math.unit(1.46, "feet"),
  39845. name: "Foot",
  39846. image: {
  39847. source: "./media/characters/zane/foot.svg"
  39848. }
  39849. },
  39850. footFront: {
  39851. height: math.unit(0.784, "feet"),
  39852. name: "Foot (Front)",
  39853. image: {
  39854. source: "./media/characters/zane/foot-front.svg"
  39855. }
  39856. },
  39857. dick: {
  39858. height: math.unit(1.95, "feet"),
  39859. name: "Dick",
  39860. image: {
  39861. source: "./media/characters/zane/dick.svg"
  39862. }
  39863. },
  39864. dickWerewolf: {
  39865. height: math.unit(3.77, "feet"),
  39866. name: "Dick (Werewolf)",
  39867. image: {
  39868. source: "./media/characters/zane/dick.svg"
  39869. }
  39870. },
  39871. },
  39872. [
  39873. {
  39874. name: "Normal",
  39875. height: math.unit(7 + 5/12, "feet"),
  39876. default: true
  39877. },
  39878. ]
  39879. ))
  39880. characterMakers.push(() => makeCharacter(
  39881. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  39882. {
  39883. front: {
  39884. height: math.unit(6 + 2/12, "feet"),
  39885. weight: math.unit(284, "lb"),
  39886. name: "Front",
  39887. image: {
  39888. source: "./media/characters/benni-desparque/front.svg",
  39889. extra: 1353/1126,
  39890. bottom: 69/1422
  39891. }
  39892. },
  39893. },
  39894. [
  39895. {
  39896. name: "Civilian",
  39897. height: math.unit(6 + 2/12, "feet")
  39898. },
  39899. {
  39900. name: "Normal",
  39901. height: math.unit(98, "feet"),
  39902. default: true
  39903. },
  39904. {
  39905. name: "Kaiju Fighter",
  39906. height: math.unit(268, "feet")
  39907. },
  39908. ]
  39909. ))
  39910. characterMakers.push(() => makeCharacter(
  39911. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  39912. {
  39913. front: {
  39914. height: math.unit(5, "feet"),
  39915. weight: math.unit(105, "lb"),
  39916. name: "Front",
  39917. image: {
  39918. source: "./media/characters/maxine/front.svg",
  39919. extra: 1386/1250,
  39920. bottom: 71/1457
  39921. }
  39922. },
  39923. },
  39924. [
  39925. {
  39926. name: "Normal",
  39927. height: math.unit(5, "feet"),
  39928. default: true
  39929. },
  39930. ]
  39931. ))
  39932. characterMakers.push(() => makeCharacter(
  39933. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  39934. {
  39935. front: {
  39936. height: math.unit(11 + 7/12, "feet"),
  39937. weight: math.unit(9576, "lb"),
  39938. name: "Front",
  39939. image: {
  39940. source: "./media/characters/scaly/front.svg",
  39941. extra: 888/867,
  39942. bottom: 36/924
  39943. }
  39944. },
  39945. },
  39946. [
  39947. {
  39948. name: "Normal",
  39949. height: math.unit(11 + 7/12, "feet"),
  39950. default: true
  39951. },
  39952. ]
  39953. ))
  39954. characterMakers.push(() => makeCharacter(
  39955. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  39956. {
  39957. front: {
  39958. height: math.unit(6 + 3/12, "feet"),
  39959. name: "Front",
  39960. image: {
  39961. source: "./media/characters/saelria/front.svg",
  39962. extra: 1243/1138,
  39963. bottom: 46/1289
  39964. }
  39965. },
  39966. },
  39967. [
  39968. {
  39969. name: "Micro",
  39970. height: math.unit(6, "inches"),
  39971. },
  39972. {
  39973. name: "Normal",
  39974. height: math.unit(6 + 3/12, "feet"),
  39975. default: true
  39976. },
  39977. {
  39978. name: "Macro",
  39979. height: math.unit(25, "feet")
  39980. },
  39981. ]
  39982. ))
  39983. characterMakers.push(() => makeCharacter(
  39984. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  39985. {
  39986. front: {
  39987. height: math.unit(80, "meters"),
  39988. weight: math.unit(7000, "tonnes"),
  39989. name: "Front",
  39990. image: {
  39991. source: "./media/characters/tef/front.svg",
  39992. extra: 2036/1991,
  39993. bottom: 54/2090
  39994. }
  39995. },
  39996. back: {
  39997. height: math.unit(80, "meters"),
  39998. weight: math.unit(7000, "tonnes"),
  39999. name: "Back",
  40000. image: {
  40001. source: "./media/characters/tef/back.svg",
  40002. extra: 2036/1991,
  40003. bottom: 54/2090
  40004. }
  40005. },
  40006. },
  40007. [
  40008. {
  40009. name: "Macro",
  40010. height: math.unit(80, "meters"),
  40011. default: true
  40012. },
  40013. ]
  40014. ))
  40015. characterMakers.push(() => makeCharacter(
  40016. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40017. {
  40018. front: {
  40019. height: math.unit(13, "feet"),
  40020. weight: math.unit(6, "tons"),
  40021. name: "Front",
  40022. image: {
  40023. source: "./media/characters/rover/front.svg",
  40024. extra: 1233/1156,
  40025. bottom: 50/1283
  40026. }
  40027. },
  40028. back: {
  40029. height: math.unit(13, "feet"),
  40030. weight: math.unit(6, "tons"),
  40031. name: "Back",
  40032. image: {
  40033. source: "./media/characters/rover/back.svg",
  40034. extra: 1327/1258,
  40035. bottom: 39/1366
  40036. }
  40037. },
  40038. },
  40039. [
  40040. {
  40041. name: "Normal",
  40042. height: math.unit(13, "feet"),
  40043. default: true
  40044. },
  40045. {
  40046. name: "Macro",
  40047. height: math.unit(1300, "feet")
  40048. },
  40049. {
  40050. name: "Megamacro",
  40051. height: math.unit(1300, "miles")
  40052. },
  40053. {
  40054. name: "Gigamacro",
  40055. height: math.unit(1300000, "miles")
  40056. },
  40057. ]
  40058. ))
  40059. characterMakers.push(() => makeCharacter(
  40060. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  40061. {
  40062. front: {
  40063. height: math.unit(6, "feet"),
  40064. weight: math.unit(150, "lb"),
  40065. name: "Front",
  40066. image: {
  40067. source: "./media/characters/ariz/front.svg",
  40068. extra: 1401/1346,
  40069. bottom: 5/1406
  40070. }
  40071. },
  40072. },
  40073. [
  40074. {
  40075. name: "Normal",
  40076. height: math.unit(10, "feet"),
  40077. default: true
  40078. },
  40079. ]
  40080. ))
  40081. characterMakers.push(() => makeCharacter(
  40082. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  40083. {
  40084. front: {
  40085. height: math.unit(6, "feet"),
  40086. weight: math.unit(140, "lb"),
  40087. name: "Front",
  40088. image: {
  40089. source: "./media/characters/sigrun/front.svg",
  40090. extra: 1418/1359,
  40091. bottom: 27/1445
  40092. }
  40093. },
  40094. },
  40095. [
  40096. {
  40097. name: "Macro",
  40098. height: math.unit(35, "feet"),
  40099. default: true
  40100. },
  40101. ]
  40102. ))
  40103. characterMakers.push(() => makeCharacter(
  40104. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  40105. {
  40106. front: {
  40107. height: math.unit(6, "feet"),
  40108. weight: math.unit(150, "lb"),
  40109. name: "Front",
  40110. image: {
  40111. source: "./media/characters/numin/front.svg",
  40112. extra: 1433/1388,
  40113. bottom: 12/1445
  40114. }
  40115. },
  40116. },
  40117. [
  40118. {
  40119. name: "Macro",
  40120. height: math.unit(21.5, "km"),
  40121. default: true
  40122. },
  40123. ]
  40124. ))
  40125. characterMakers.push(() => makeCharacter(
  40126. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  40127. {
  40128. front: {
  40129. height: math.unit(6, "feet"),
  40130. weight: math.unit(463, "lb"),
  40131. name: "Front",
  40132. image: {
  40133. source: "./media/characters/melwa/front.svg",
  40134. extra: 1307/1248,
  40135. bottom: 93/1400
  40136. }
  40137. },
  40138. },
  40139. [
  40140. {
  40141. name: "Macro",
  40142. height: math.unit(50, "meters"),
  40143. default: true
  40144. },
  40145. ]
  40146. ))
  40147. characterMakers.push(() => makeCharacter(
  40148. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  40149. {
  40150. front: {
  40151. height: math.unit(325, "feet"),
  40152. name: "Front",
  40153. image: {
  40154. source: "./media/characters/zorkaiju/front.svg",
  40155. extra: 1955/1814,
  40156. bottom: 40/1995
  40157. }
  40158. },
  40159. frontExtended: {
  40160. height: math.unit(325, "feet"),
  40161. name: "Front (Extended)",
  40162. image: {
  40163. source: "./media/characters/zorkaiju/front-extended.svg",
  40164. extra: 1955/1814,
  40165. bottom: 40/1995
  40166. }
  40167. },
  40168. side: {
  40169. height: math.unit(325, "feet"),
  40170. name: "Side",
  40171. image: {
  40172. source: "./media/characters/zorkaiju/side.svg",
  40173. extra: 1495/1396,
  40174. bottom: 17/1512
  40175. }
  40176. },
  40177. sideExtended: {
  40178. height: math.unit(325, "feet"),
  40179. name: "Side (Extended)",
  40180. image: {
  40181. source: "./media/characters/zorkaiju/side-extended.svg",
  40182. extra: 1495/1396,
  40183. bottom: 17/1512
  40184. }
  40185. },
  40186. back: {
  40187. height: math.unit(325, "feet"),
  40188. name: "Back",
  40189. image: {
  40190. source: "./media/characters/zorkaiju/back.svg",
  40191. extra: 1959/1821,
  40192. bottom: 31/1990
  40193. }
  40194. },
  40195. backExtended: {
  40196. height: math.unit(325, "feet"),
  40197. name: "Back (Extended)",
  40198. image: {
  40199. source: "./media/characters/zorkaiju/back-extended.svg",
  40200. extra: 1959/1821,
  40201. bottom: 31/1990
  40202. }
  40203. },
  40204. hand: {
  40205. height: math.unit(58.4, "feet"),
  40206. name: "Hand",
  40207. image: {
  40208. source: "./media/characters/zorkaiju/hand.svg"
  40209. }
  40210. },
  40211. handExtended: {
  40212. height: math.unit(61.4, "feet"),
  40213. name: "Hand (Extended)",
  40214. image: {
  40215. source: "./media/characters/zorkaiju/hand-extended.svg"
  40216. }
  40217. },
  40218. foot: {
  40219. height: math.unit(95, "feet"),
  40220. name: "Foot",
  40221. image: {
  40222. source: "./media/characters/zorkaiju/foot.svg"
  40223. }
  40224. },
  40225. leftArm: {
  40226. height: math.unit(59, "feet"),
  40227. name: "Left Arm",
  40228. image: {
  40229. source: "./media/characters/zorkaiju/left-arm.svg"
  40230. }
  40231. },
  40232. rightArm: {
  40233. height: math.unit(59, "feet"),
  40234. name: "Right Arm",
  40235. image: {
  40236. source: "./media/characters/zorkaiju/right-arm.svg"
  40237. }
  40238. },
  40239. tail: {
  40240. height: math.unit(104, "feet"),
  40241. name: "Tail",
  40242. image: {
  40243. source: "./media/characters/zorkaiju/tail.svg"
  40244. }
  40245. },
  40246. tailExtended: {
  40247. height: math.unit(104, "feet"),
  40248. name: "Tail (Extended)",
  40249. image: {
  40250. source: "./media/characters/zorkaiju/tail-extended.svg"
  40251. }
  40252. },
  40253. tailBottom: {
  40254. height: math.unit(104, "feet"),
  40255. name: "Tail Bottom",
  40256. image: {
  40257. source: "./media/characters/zorkaiju/tail-bottom.svg"
  40258. }
  40259. },
  40260. crystal: {
  40261. height: math.unit(27.54, "feet"),
  40262. name: "Crystal",
  40263. image: {
  40264. source: "./media/characters/zorkaiju/crystal.svg"
  40265. }
  40266. },
  40267. },
  40268. [
  40269. {
  40270. name: "Kaiju",
  40271. height: math.unit(325, "feet"),
  40272. default: true
  40273. },
  40274. ]
  40275. ))
  40276. characterMakers.push(() => makeCharacter(
  40277. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  40278. {
  40279. front: {
  40280. height: math.unit(6 + 1/12, "feet"),
  40281. weight: math.unit(115, "lb"),
  40282. name: "Front",
  40283. image: {
  40284. source: "./media/characters/bailey-belfry/front.svg",
  40285. extra: 1240/1121,
  40286. bottom: 101/1341
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Normal",
  40293. height: math.unit(6 + 1/12, "feet"),
  40294. default: true
  40295. },
  40296. ]
  40297. ))
  40298. characterMakers.push(() => makeCharacter(
  40299. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  40300. {
  40301. side: {
  40302. height: math.unit(4, "meters"),
  40303. weight: math.unit(250, "kg"),
  40304. name: "Side",
  40305. image: {
  40306. source: "./media/characters/blacky/side.svg",
  40307. extra: 1027/919,
  40308. bottom: 43/1070
  40309. }
  40310. },
  40311. maw: {
  40312. height: math.unit(1, "meters"),
  40313. name: "Maw",
  40314. image: {
  40315. source: "./media/characters/blacky/maw.svg"
  40316. }
  40317. },
  40318. paw: {
  40319. height: math.unit(1, "meters"),
  40320. name: "Paw",
  40321. image: {
  40322. source: "./media/characters/blacky/paw.svg"
  40323. }
  40324. },
  40325. },
  40326. [
  40327. {
  40328. name: "Normal",
  40329. height: math.unit(4, "meters"),
  40330. default: true
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(170, "cm"),
  40339. weight: math.unit(66, "kg"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/thux-ei/front.svg",
  40343. extra: 1109/1011,
  40344. bottom: 8/1117
  40345. }
  40346. },
  40347. },
  40348. [
  40349. {
  40350. name: "Normal",
  40351. height: math.unit(170, "cm"),
  40352. default: true
  40353. },
  40354. ]
  40355. ))
  40356. characterMakers.push(() => makeCharacter(
  40357. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  40358. {
  40359. front: {
  40360. height: math.unit(5, "feet"),
  40361. weight: math.unit(120, "lb"),
  40362. name: "Front",
  40363. image: {
  40364. source: "./media/characters/roxanne-voltaire/front.svg",
  40365. extra: 1901/1779,
  40366. bottom: 53/1954
  40367. }
  40368. },
  40369. },
  40370. [
  40371. {
  40372. name: "Normal",
  40373. height: math.unit(5, "feet"),
  40374. default: true
  40375. },
  40376. {
  40377. name: "Giant",
  40378. height: math.unit(50, "feet")
  40379. },
  40380. {
  40381. name: "Titan",
  40382. height: math.unit(500, "feet")
  40383. },
  40384. {
  40385. name: "Macro",
  40386. height: math.unit(5000, "feet")
  40387. },
  40388. {
  40389. name: "Megamacro",
  40390. height: math.unit(50000, "feet")
  40391. },
  40392. {
  40393. name: "Gigamacro",
  40394. height: math.unit(500000, "feet")
  40395. },
  40396. {
  40397. name: "Teramacro",
  40398. height: math.unit(5e6, "feet")
  40399. },
  40400. ]
  40401. ))
  40402. characterMakers.push(() => makeCharacter(
  40403. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  40404. {
  40405. front: {
  40406. height: math.unit(6 + 2/12, "feet"),
  40407. name: "Front",
  40408. image: {
  40409. source: "./media/characters/squeaks/front.svg",
  40410. extra: 1823/1768,
  40411. bottom: 138/1961
  40412. }
  40413. },
  40414. },
  40415. [
  40416. {
  40417. name: "Micro",
  40418. height: math.unit(0.5, "inches")
  40419. },
  40420. {
  40421. name: "Normal",
  40422. height: math.unit(6 + 2/12, "feet"),
  40423. default: true
  40424. },
  40425. {
  40426. name: "Macro",
  40427. height: math.unit(600, "feet")
  40428. },
  40429. ]
  40430. ))
  40431. characterMakers.push(() => makeCharacter(
  40432. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  40433. {
  40434. front: {
  40435. height: math.unit(1.72, "meters"),
  40436. name: "Front",
  40437. image: {
  40438. source: "./media/characters/archinger/front.svg",
  40439. extra: 1861/1675,
  40440. bottom: 125/1986
  40441. }
  40442. },
  40443. back: {
  40444. height: math.unit(1.72, "meters"),
  40445. name: "Back",
  40446. image: {
  40447. source: "./media/characters/archinger/back.svg",
  40448. extra: 1844/1701,
  40449. bottom: 104/1948
  40450. }
  40451. },
  40452. cock: {
  40453. height: math.unit(0.59, "feet"),
  40454. name: "Cock",
  40455. image: {
  40456. source: "./media/characters/archinger/cock.svg"
  40457. }
  40458. },
  40459. },
  40460. [
  40461. {
  40462. name: "Normal",
  40463. height: math.unit(1.72, "meters"),
  40464. default: true
  40465. },
  40466. {
  40467. name: "Macro",
  40468. height: math.unit(84, "meters")
  40469. },
  40470. {
  40471. name: "Macro+",
  40472. height: math.unit(112, "meters")
  40473. },
  40474. {
  40475. name: "Macro++",
  40476. height: math.unit(960, "meters")
  40477. },
  40478. {
  40479. name: "Macro+++",
  40480. height: math.unit(4, "km")
  40481. },
  40482. {
  40483. name: "Macro++++",
  40484. height: math.unit(48, "km")
  40485. },
  40486. {
  40487. name: "Macro+++++",
  40488. height: math.unit(4500, "km")
  40489. },
  40490. ]
  40491. ))
  40492. characterMakers.push(() => makeCharacter(
  40493. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  40494. {
  40495. front: {
  40496. height: math.unit(5 + 5/12, "feet"),
  40497. name: "Front",
  40498. image: {
  40499. source: "./media/characters/alsnapz/front.svg",
  40500. extra: 1157/1065,
  40501. bottom: 42/1199
  40502. }
  40503. },
  40504. },
  40505. [
  40506. {
  40507. name: "Normal",
  40508. height: math.unit(5 + 5/12, "feet"),
  40509. default: true
  40510. },
  40511. ]
  40512. ))
  40513. characterMakers.push(() => makeCharacter(
  40514. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  40515. {
  40516. side: {
  40517. height: math.unit(3.2, "earths"),
  40518. name: "Side",
  40519. image: {
  40520. source: "./media/characters/mag/side.svg",
  40521. extra: 1331/1008,
  40522. bottom: 52/1383
  40523. }
  40524. },
  40525. wing: {
  40526. height: math.unit(1.94, "earths"),
  40527. name: "Wing",
  40528. image: {
  40529. source: "./media/characters/mag/wing.svg"
  40530. }
  40531. },
  40532. dick: {
  40533. height: math.unit(1.8, "earths"),
  40534. name: "Dick",
  40535. image: {
  40536. source: "./media/characters/mag/dick.svg"
  40537. }
  40538. },
  40539. ass: {
  40540. height: math.unit(1.33, "earths"),
  40541. name: "Ass",
  40542. image: {
  40543. source: "./media/characters/mag/ass.svg"
  40544. }
  40545. },
  40546. head: {
  40547. height: math.unit(1.1, "earths"),
  40548. name: "Head",
  40549. image: {
  40550. source: "./media/characters/mag/head.svg"
  40551. }
  40552. },
  40553. maw: {
  40554. height: math.unit(1.62, "earths"),
  40555. name: "Maw",
  40556. image: {
  40557. source: "./media/characters/mag/maw.svg"
  40558. }
  40559. },
  40560. },
  40561. [
  40562. {
  40563. name: "Small",
  40564. height: math.unit(162, "feet")
  40565. },
  40566. {
  40567. name: "Normal",
  40568. height: math.unit(3.2, "earths"),
  40569. default: true
  40570. },
  40571. ]
  40572. ))
  40573. characterMakers.push(() => makeCharacter(
  40574. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  40575. {
  40576. front: {
  40577. height: math.unit(512, "feet"),
  40578. weight: math.unit(63509, "tonnes"),
  40579. name: "Front",
  40580. image: {
  40581. source: "./media/characters/vorrel-harroc/front.svg",
  40582. extra: 1075/1063,
  40583. bottom: 62/1137
  40584. }
  40585. },
  40586. },
  40587. [
  40588. {
  40589. name: "Normal",
  40590. height: math.unit(10, "feet")
  40591. },
  40592. {
  40593. name: "Macro",
  40594. height: math.unit(512, "feet"),
  40595. default: true
  40596. },
  40597. {
  40598. name: "Megamacro",
  40599. height: math.unit(256, "miles")
  40600. },
  40601. {
  40602. name: "Gigamacro",
  40603. height: math.unit(4096, "miles")
  40604. },
  40605. ]
  40606. ))
  40607. characterMakers.push(() => makeCharacter(
  40608. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  40609. {
  40610. side: {
  40611. height: math.unit(50, "feet"),
  40612. name: "Side",
  40613. image: {
  40614. source: "./media/characters/froimar/side.svg",
  40615. extra: 855/638,
  40616. bottom: 99/954
  40617. }
  40618. },
  40619. },
  40620. [
  40621. {
  40622. name: "Macro",
  40623. height: math.unit(50, "feet"),
  40624. default: true
  40625. },
  40626. ]
  40627. ))
  40628. characterMakers.push(() => makeCharacter(
  40629. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  40630. {
  40631. front: {
  40632. height: math.unit(210, "miles"),
  40633. name: "Front",
  40634. image: {
  40635. source: "./media/characters/timothy/front.svg",
  40636. extra: 1007/943,
  40637. bottom: 62/1069
  40638. }
  40639. },
  40640. frontSkirt: {
  40641. height: math.unit(210, "miles"),
  40642. name: "Front (Skirt)",
  40643. image: {
  40644. source: "./media/characters/timothy/front-skirt.svg",
  40645. extra: 1007/943,
  40646. bottom: 62/1069
  40647. }
  40648. },
  40649. frontCoat: {
  40650. height: math.unit(210, "miles"),
  40651. name: "Front (Coat)",
  40652. image: {
  40653. source: "./media/characters/timothy/front-coat.svg",
  40654. extra: 1007/943,
  40655. bottom: 62/1069
  40656. }
  40657. },
  40658. },
  40659. [
  40660. {
  40661. name: "Macro",
  40662. height: math.unit(210, "miles"),
  40663. default: true
  40664. },
  40665. {
  40666. name: "Megamacro",
  40667. height: math.unit(210000, "miles")
  40668. },
  40669. ]
  40670. ))
  40671. characterMakers.push(() => makeCharacter(
  40672. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  40673. {
  40674. front: {
  40675. height: math.unit(188, "feet"),
  40676. name: "Front",
  40677. image: {
  40678. source: "./media/characters/pyotr/front.svg",
  40679. extra: 1912/1826,
  40680. bottom: 18/1930
  40681. }
  40682. },
  40683. },
  40684. [
  40685. {
  40686. name: "Macro",
  40687. height: math.unit(188, "feet"),
  40688. default: true
  40689. },
  40690. {
  40691. name: "Megamacro",
  40692. height: math.unit(8, "miles")
  40693. },
  40694. ]
  40695. ))
  40696. characterMakers.push(() => makeCharacter(
  40697. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  40698. {
  40699. side: {
  40700. height: math.unit(10, "feet"),
  40701. weight: math.unit(4500, "lb"),
  40702. name: "Side",
  40703. image: {
  40704. source: "./media/characters/ackart/side.svg",
  40705. extra: 1776/1668,
  40706. bottom: 116/1892
  40707. }
  40708. },
  40709. },
  40710. [
  40711. {
  40712. name: "Normal",
  40713. height: math.unit(10, "feet"),
  40714. default: true
  40715. },
  40716. ]
  40717. ))
  40718. characterMakers.push(() => makeCharacter(
  40719. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  40720. {
  40721. side: {
  40722. height: math.unit(21, "feet"),
  40723. name: "Side",
  40724. image: {
  40725. source: "./media/characters/nolow/side.svg",
  40726. extra: 1484/1434,
  40727. bottom: 85/1569
  40728. }
  40729. },
  40730. sideErect: {
  40731. height: math.unit(21, "feet"),
  40732. name: "Side-erect",
  40733. image: {
  40734. source: "./media/characters/nolow/side-erect.svg",
  40735. extra: 1484/1434,
  40736. bottom: 85/1569
  40737. }
  40738. },
  40739. },
  40740. [
  40741. {
  40742. name: "Regular",
  40743. height: math.unit(12, "feet")
  40744. },
  40745. {
  40746. name: "Big Chee",
  40747. height: math.unit(21, "feet"),
  40748. default: true
  40749. },
  40750. ]
  40751. ))
  40752. characterMakers.push(() => makeCharacter(
  40753. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  40754. {
  40755. front: {
  40756. height: math.unit(7, "feet"),
  40757. weight: math.unit(250, "lb"),
  40758. name: "Front",
  40759. image: {
  40760. source: "./media/characters/nines/front.svg",
  40761. extra: 1741/1607,
  40762. bottom: 41/1782
  40763. }
  40764. },
  40765. side: {
  40766. height: math.unit(7, "feet"),
  40767. weight: math.unit(250, "lb"),
  40768. name: "Side",
  40769. image: {
  40770. source: "./media/characters/nines/side.svg",
  40771. extra: 1854/1735,
  40772. bottom: 93/1947
  40773. }
  40774. },
  40775. back: {
  40776. height: math.unit(7, "feet"),
  40777. weight: math.unit(250, "lb"),
  40778. name: "Back",
  40779. image: {
  40780. source: "./media/characters/nines/back.svg",
  40781. extra: 1748/1615,
  40782. bottom: 20/1768
  40783. }
  40784. },
  40785. },
  40786. [
  40787. {
  40788. name: "Megamacro",
  40789. height: math.unit(99, "km"),
  40790. default: true
  40791. },
  40792. ]
  40793. ))
  40794. characterMakers.push(() => makeCharacter(
  40795. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  40796. {
  40797. front: {
  40798. height: math.unit(5 + 10/12, "feet"),
  40799. weight: math.unit(210, "lb"),
  40800. name: "Front",
  40801. image: {
  40802. source: "./media/characters/zenith/front.svg",
  40803. extra: 1531/1452,
  40804. bottom: 198/1729
  40805. }
  40806. },
  40807. back: {
  40808. height: math.unit(5 + 10/12, "feet"),
  40809. weight: math.unit(210, "lb"),
  40810. name: "Back",
  40811. image: {
  40812. source: "./media/characters/zenith/back.svg",
  40813. extra: 1571/1487,
  40814. bottom: 75/1646
  40815. }
  40816. },
  40817. },
  40818. [
  40819. {
  40820. name: "Normal",
  40821. height: math.unit(5 + 10/12, "feet"),
  40822. default: true
  40823. }
  40824. ]
  40825. ))
  40826. characterMakers.push(() => makeCharacter(
  40827. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  40828. {
  40829. front: {
  40830. height: math.unit(4, "feet"),
  40831. weight: math.unit(60, "lb"),
  40832. name: "Front",
  40833. image: {
  40834. source: "./media/characters/jasper/front.svg",
  40835. extra: 1450/1379,
  40836. bottom: 19/1469
  40837. }
  40838. },
  40839. },
  40840. [
  40841. {
  40842. name: "Normal",
  40843. height: math.unit(4, "feet"),
  40844. default: true
  40845. },
  40846. ]
  40847. ))
  40848. characterMakers.push(() => makeCharacter(
  40849. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  40850. {
  40851. front: {
  40852. height: math.unit(6 + 5/12, "feet"),
  40853. weight: math.unit(290, "lb"),
  40854. name: "Front",
  40855. image: {
  40856. source: "./media/characters/tiberius-thyben/front.svg",
  40857. extra: 757/739,
  40858. bottom: 39/796
  40859. }
  40860. },
  40861. },
  40862. [
  40863. {
  40864. name: "Micro",
  40865. height: math.unit(1.5, "inches")
  40866. },
  40867. {
  40868. name: "Normal",
  40869. height: math.unit(6 + 5/12, "feet"),
  40870. default: true
  40871. },
  40872. {
  40873. name: "Macro",
  40874. height: math.unit(300, "feet")
  40875. },
  40876. ]
  40877. ))
  40878. characterMakers.push(() => makeCharacter(
  40879. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  40880. {
  40881. front: {
  40882. height: math.unit(5 + 6/12, "feet"),
  40883. weight: math.unit(60, "kg"),
  40884. name: "Front",
  40885. image: {
  40886. source: "./media/characters/sabre/front.svg",
  40887. extra: 738/671,
  40888. bottom: 27/765
  40889. }
  40890. },
  40891. },
  40892. [
  40893. {
  40894. name: "Teeny",
  40895. height: math.unit(2, "inches")
  40896. },
  40897. {
  40898. name: "Smol",
  40899. height: math.unit(8, "inches")
  40900. },
  40901. {
  40902. name: "Normal",
  40903. height: math.unit(5 + 6/12, "feet"),
  40904. default: true
  40905. },
  40906. {
  40907. name: "Mini-Macro",
  40908. height: math.unit(15, "feet")
  40909. },
  40910. {
  40911. name: "Macro",
  40912. height: math.unit(50, "feet")
  40913. },
  40914. ]
  40915. ))
  40916. characterMakers.push(() => makeCharacter(
  40917. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  40918. {
  40919. front: {
  40920. height: math.unit(6 + 4/12, "feet"),
  40921. weight: math.unit(170, "lb"),
  40922. name: "Front",
  40923. image: {
  40924. source: "./media/characters/charlie/front.svg",
  40925. extra: 1348/1228,
  40926. bottom: 15/1363
  40927. }
  40928. },
  40929. },
  40930. [
  40931. {
  40932. name: "Macro",
  40933. height: math.unit(1700, "meters"),
  40934. default: true
  40935. },
  40936. {
  40937. name: "MegaMacro",
  40938. height: math.unit(20400, "meters")
  40939. },
  40940. ]
  40941. ))
  40942. characterMakers.push(() => makeCharacter(
  40943. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  40944. {
  40945. front: {
  40946. height: math.unit(6 + 3/12, "feet"),
  40947. weight: math.unit(185, "lb"),
  40948. name: "Front",
  40949. image: {
  40950. source: "./media/characters/susan-grant/front.svg",
  40951. extra: 1351/1327,
  40952. bottom: 26/1377
  40953. }
  40954. },
  40955. },
  40956. [
  40957. {
  40958. name: "Normal",
  40959. height: math.unit(6 + 3/12, "feet"),
  40960. default: true
  40961. },
  40962. {
  40963. name: "Macro",
  40964. height: math.unit(225, "feet")
  40965. },
  40966. {
  40967. name: "Macro+",
  40968. height: math.unit(900, "feet")
  40969. },
  40970. {
  40971. name: "MegaMacro",
  40972. height: math.unit(14400, "feet")
  40973. },
  40974. ]
  40975. ))
  40976. characterMakers.push(() => makeCharacter(
  40977. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  40978. {
  40979. front: {
  40980. height: math.unit(5 + 4/12, "feet"),
  40981. weight: math.unit(110, "lb"),
  40982. name: "Front",
  40983. image: {
  40984. source: "./media/characters/axel-isanov/front.svg",
  40985. extra: 1096/1065,
  40986. bottom: 13/1109
  40987. }
  40988. },
  40989. },
  40990. [
  40991. {
  40992. name: "Normal",
  40993. height: math.unit(5 + 4/12, "feet"),
  40994. default: true
  40995. },
  40996. ]
  40997. ))
  40998. characterMakers.push(() => makeCharacter(
  40999. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41000. {
  41001. front: {
  41002. height: math.unit(9, "feet"),
  41003. weight: math.unit(467, "lb"),
  41004. name: "Front",
  41005. image: {
  41006. source: "./media/characters/necahual/front.svg",
  41007. extra: 920/873,
  41008. bottom: 26/946
  41009. }
  41010. },
  41011. back: {
  41012. height: math.unit(9, "feet"),
  41013. weight: math.unit(467, "lb"),
  41014. name: "Back",
  41015. image: {
  41016. source: "./media/characters/necahual/back.svg",
  41017. extra: 930/884,
  41018. bottom: 16/946
  41019. }
  41020. },
  41021. frontUnderwear: {
  41022. height: math.unit(9, "feet"),
  41023. weight: math.unit(467, "lb"),
  41024. name: "Front (Underwear)",
  41025. image: {
  41026. source: "./media/characters/necahual/front-underwear.svg",
  41027. extra: 920/873,
  41028. bottom: 26/946
  41029. }
  41030. },
  41031. frontDressed: {
  41032. height: math.unit(9, "feet"),
  41033. weight: math.unit(467, "lb"),
  41034. name: "Front (Dressed)",
  41035. image: {
  41036. source: "./media/characters/necahual/front-dressed.svg",
  41037. extra: 920/873,
  41038. bottom: 26/946
  41039. }
  41040. },
  41041. },
  41042. [
  41043. {
  41044. name: "Comprsesed",
  41045. height: math.unit(9, "feet")
  41046. },
  41047. {
  41048. name: "Natural",
  41049. height: math.unit(15, "feet"),
  41050. default: true
  41051. },
  41052. {
  41053. name: "Boosted",
  41054. height: math.unit(50, "feet")
  41055. },
  41056. {
  41057. name: "Boosted+",
  41058. height: math.unit(150, "feet")
  41059. },
  41060. {
  41061. name: "Max",
  41062. height: math.unit(500, "feet")
  41063. },
  41064. ]
  41065. ))
  41066. characterMakers.push(() => makeCharacter(
  41067. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  41068. {
  41069. front: {
  41070. height: math.unit(22 + 1/12, "feet"),
  41071. weight: math.unit(3200, "lb"),
  41072. name: "Front",
  41073. image: {
  41074. source: "./media/characters/theo-acacia/front.svg",
  41075. extra: 1796/1741,
  41076. bottom: 83/1879
  41077. }
  41078. },
  41079. frontUnderwear: {
  41080. height: math.unit(22 + 1/12, "feet"),
  41081. weight: math.unit(3200, "lb"),
  41082. name: "Front (Underwear)",
  41083. image: {
  41084. source: "./media/characters/theo-acacia/front-underwear.svg",
  41085. extra: 1796/1741,
  41086. bottom: 83/1879
  41087. }
  41088. },
  41089. frontNude: {
  41090. height: math.unit(22 + 1/12, "feet"),
  41091. weight: math.unit(3200, "lb"),
  41092. name: "Front (Nude)",
  41093. image: {
  41094. source: "./media/characters/theo-acacia/front-nude.svg",
  41095. extra: 1796/1741,
  41096. bottom: 83/1879
  41097. }
  41098. },
  41099. },
  41100. [
  41101. {
  41102. name: "Normal",
  41103. height: math.unit(22 + 1/12, "feet"),
  41104. default: true
  41105. },
  41106. ]
  41107. ))
  41108. characterMakers.push(() => makeCharacter(
  41109. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41110. {
  41111. front: {
  41112. height: math.unit(20, "feet"),
  41113. name: "Front",
  41114. image: {
  41115. source: "./media/characters/astra/front.svg",
  41116. extra: 1850/1714,
  41117. bottom: 106/1956
  41118. }
  41119. },
  41120. frontUndressed: {
  41121. height: math.unit(20, "feet"),
  41122. name: "Front (Undressed)",
  41123. image: {
  41124. source: "./media/characters/astra/front-undressed.svg",
  41125. extra: 1926/1749,
  41126. bottom: 0/1926
  41127. }
  41128. },
  41129. hand: {
  41130. height: math.unit(1.53, "feet"),
  41131. name: "Hand",
  41132. image: {
  41133. source: "./media/characters/astra/hand.svg"
  41134. }
  41135. },
  41136. paw: {
  41137. height: math.unit(1.53, "feet"),
  41138. name: "Paw",
  41139. image: {
  41140. source: "./media/characters/astra/paw.svg"
  41141. }
  41142. },
  41143. },
  41144. [
  41145. {
  41146. name: "Smallest",
  41147. height: math.unit(20, "feet")
  41148. },
  41149. {
  41150. name: "Normal",
  41151. height: math.unit(1e9, "miles"),
  41152. default: true
  41153. },
  41154. {
  41155. name: "Larger",
  41156. height: math.unit(5, "multiverses")
  41157. },
  41158. {
  41159. name: "Largest",
  41160. height: math.unit(1e9, "multiverses")
  41161. },
  41162. ]
  41163. ))
  41164. characterMakers.push(() => makeCharacter(
  41165. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  41166. {
  41167. front: {
  41168. height: math.unit(8, "feet"),
  41169. name: "Front",
  41170. image: {
  41171. source: "./media/characters/breanna/front.svg",
  41172. extra: 1912/1632,
  41173. bottom: 33/1945
  41174. }
  41175. },
  41176. },
  41177. [
  41178. {
  41179. name: "Smallest",
  41180. height: math.unit(8, "feet")
  41181. },
  41182. {
  41183. name: "Normal",
  41184. height: math.unit(1, "mile"),
  41185. default: true
  41186. },
  41187. {
  41188. name: "Maximum",
  41189. height: math.unit(1500000000000, "lightyears")
  41190. },
  41191. ]
  41192. ))
  41193. characterMakers.push(() => makeCharacter(
  41194. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  41195. {
  41196. front: {
  41197. height: math.unit(5 + 11/12, "feet"),
  41198. weight: math.unit(155, "lb"),
  41199. name: "Front",
  41200. image: {
  41201. source: "./media/characters/cai/front.svg",
  41202. extra: 1823/1702,
  41203. bottom: 32/1855
  41204. }
  41205. },
  41206. back: {
  41207. height: math.unit(5 + 11/12, "feet"),
  41208. weight: math.unit(155, "lb"),
  41209. name: "Back",
  41210. image: {
  41211. source: "./media/characters/cai/back.svg",
  41212. extra: 1809/1708,
  41213. bottom: 31/1840
  41214. }
  41215. },
  41216. },
  41217. [
  41218. {
  41219. name: "Normal",
  41220. height: math.unit(5 + 11/12, "feet"),
  41221. default: true
  41222. },
  41223. {
  41224. name: "Big",
  41225. height: math.unit(15, "feet")
  41226. },
  41227. {
  41228. name: "Macro",
  41229. height: math.unit(200, "feet")
  41230. },
  41231. ]
  41232. ))
  41233. characterMakers.push(() => makeCharacter(
  41234. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  41235. {
  41236. front: {
  41237. height: math.unit(5 + 6/12, "feet"),
  41238. weight: math.unit(160, "lb"),
  41239. name: "Front",
  41240. image: {
  41241. source: "./media/characters/zanna-virtuedòttir/front.svg",
  41242. extra: 1227/1174,
  41243. bottom: 37/1264
  41244. }
  41245. },
  41246. },
  41247. [
  41248. {
  41249. name: "Macro",
  41250. height: math.unit(444, "meters"),
  41251. default: true
  41252. },
  41253. ]
  41254. ))
  41255. characterMakers.push(() => makeCharacter(
  41256. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  41257. {
  41258. front: {
  41259. height: math.unit(18 + 7/12, "feet"),
  41260. name: "Front",
  41261. image: {
  41262. source: "./media/characters/rex/front.svg",
  41263. extra: 1941/1807,
  41264. bottom: 66/2007
  41265. }
  41266. },
  41267. back: {
  41268. height: math.unit(18 + 7/12, "feet"),
  41269. name: "Back",
  41270. image: {
  41271. source: "./media/characters/rex/back.svg",
  41272. extra: 1937/1822,
  41273. bottom: 42/1979
  41274. }
  41275. },
  41276. boot: {
  41277. height: math.unit(3.45, "feet"),
  41278. name: "Boot",
  41279. image: {
  41280. source: "./media/characters/rex/boot.svg"
  41281. }
  41282. },
  41283. paw: {
  41284. height: math.unit(4.17, "feet"),
  41285. name: "Paw",
  41286. image: {
  41287. source: "./media/characters/rex/paw.svg"
  41288. }
  41289. },
  41290. head: {
  41291. height: math.unit(6.728, "feet"),
  41292. name: "Head",
  41293. image: {
  41294. source: "./media/characters/rex/head.svg"
  41295. }
  41296. },
  41297. },
  41298. [
  41299. {
  41300. name: "Nano",
  41301. height: math.unit(18 + 7/12, "feet")
  41302. },
  41303. {
  41304. name: "Micro",
  41305. height: math.unit(1.5, "megameters")
  41306. },
  41307. {
  41308. name: "Normal",
  41309. height: math.unit(440, "megameters"),
  41310. default: true
  41311. },
  41312. {
  41313. name: "Macro",
  41314. height: math.unit(2.5, "gigameters")
  41315. },
  41316. {
  41317. name: "Gigamacro",
  41318. height: math.unit(2, "galaxies")
  41319. },
  41320. ]
  41321. ))
  41322. characterMakers.push(() => makeCharacter(
  41323. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  41324. {
  41325. side: {
  41326. height: math.unit(32, "feet"),
  41327. weight: math.unit(250000, "lb"),
  41328. name: "Side",
  41329. image: {
  41330. source: "./media/characters/silverwing/side.svg",
  41331. extra: 1100/1019,
  41332. bottom: 204/1304
  41333. }
  41334. },
  41335. },
  41336. [
  41337. {
  41338. name: "Normal",
  41339. height: math.unit(32, "feet"),
  41340. default: true
  41341. },
  41342. ]
  41343. ))
  41344. characterMakers.push(() => makeCharacter(
  41345. { name: "Tristan Hawthorne", species: ["labrador"], tags: ["anthro"] },
  41346. {
  41347. front: {
  41348. height: math.unit(6 + 6/12, "feet"),
  41349. weight: math.unit(350, "lb"),
  41350. name: "Front",
  41351. image: {
  41352. source: "./media/characters/tristan-hawthorne/front.svg",
  41353. extra: 1159/1124,
  41354. bottom: 37/1196
  41355. }
  41356. },
  41357. },
  41358. [
  41359. {
  41360. name: "Normal",
  41361. height: math.unit(6 + 6/12, "feet"),
  41362. default: true
  41363. },
  41364. ]
  41365. ))
  41366. characterMakers.push(() => makeCharacter(
  41367. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  41368. {
  41369. front: {
  41370. height: math.unit(5 + 11/12, "feet"),
  41371. weight: math.unit(190, "lb"),
  41372. name: "Front",
  41373. image: {
  41374. source: "./media/characters/mizu/front.svg",
  41375. extra: 1988/1788,
  41376. bottom: 14/2002
  41377. }
  41378. },
  41379. },
  41380. [
  41381. {
  41382. name: "Normal",
  41383. height: math.unit(5 + 11/12, "feet"),
  41384. default: true
  41385. },
  41386. ]
  41387. ))
  41388. characterMakers.push(() => makeCharacter(
  41389. { name: "Moonlight Rose (Terra)", species: ["leafeon"], tags: ["anthro"] },
  41390. {
  41391. front: {
  41392. height: math.unit(6, "feet"),
  41393. name: "Front",
  41394. image: {
  41395. source: "./media/characters/moonlight-rose-terra/front.svg",
  41396. extra: 1434/1252,
  41397. bottom: 48/1482
  41398. }
  41399. },
  41400. },
  41401. [
  41402. {
  41403. name: "TRAPPIST-1D",
  41404. height: math.unit(4992*2, "km")
  41405. },
  41406. {
  41407. name: "Earth",
  41408. height: math.unit(6367*2, "km"),
  41409. default: true
  41410. },
  41411. {
  41412. name: "Kepler-22b",
  41413. height: math.unit(15282*2, "km")
  41414. },
  41415. ]
  41416. ))
  41417. characterMakers.push(() => makeCharacter(
  41418. { name: "Moonlight Rose (Neptune)", species: ["vaporeon"], tags: ["anthro"] },
  41419. {
  41420. front: {
  41421. height: math.unit(6, "feet"),
  41422. name: "Front",
  41423. image: {
  41424. source: "./media/characters/moonlight-rose-neptune/front.svg",
  41425. extra: 1851/1712,
  41426. bottom: 0/1851
  41427. }
  41428. },
  41429. },
  41430. [
  41431. {
  41432. name: "Enceladus",
  41433. height: math.unit(513*2, "km")
  41434. },
  41435. {
  41436. name: "Europe",
  41437. height: math.unit(1560*2, "km")
  41438. },
  41439. {
  41440. name: "Neptune",
  41441. height: math.unit(24622*2, "km"),
  41442. default: true
  41443. },
  41444. {
  41445. name: "CoRoT-9b",
  41446. height: math.unit(75067*2, "km")
  41447. },
  41448. ]
  41449. ))
  41450. characterMakers.push(() => makeCharacter(
  41451. { name: "Moonlight Rose (Jupiter)", species: ["jolteon"], tags: ["anthro"] },
  41452. {
  41453. front: {
  41454. height: math.unit(6, "feet"),
  41455. name: "Front",
  41456. image: {
  41457. source: "./media/characters/moonlight-rose-jupiter/front.svg",
  41458. extra: 1367/1286,
  41459. bottom: 55/1422
  41460. }
  41461. },
  41462. },
  41463. [
  41464. {
  41465. name: "Saturn",
  41466. height: math.unit(58232*2, "km")
  41467. },
  41468. {
  41469. name: "Jupiter",
  41470. height: math.unit(69911*2, "km"),
  41471. default: true
  41472. },
  41473. {
  41474. name: "HD 100546 b",
  41475. height: math.unit(482938, "km")
  41476. },
  41477. ]
  41478. ))
  41479. characterMakers.push(() => makeCharacter(
  41480. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  41481. {
  41482. front: {
  41483. height: math.unit(1.7, "feet"),
  41484. weight: math.unit(50, "lb"),
  41485. name: "Front",
  41486. image: {
  41487. source: "./media/characters/dechroma/front.svg",
  41488. extra: 1095/859,
  41489. bottom: 64/1159
  41490. }
  41491. },
  41492. },
  41493. [
  41494. {
  41495. name: "Normal",
  41496. height: math.unit(1.7, "feet"),
  41497. default: true
  41498. },
  41499. ]
  41500. ))
  41501. characterMakers.push(() => makeCharacter(
  41502. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  41503. {
  41504. side: {
  41505. height: math.unit(30, "feet"),
  41506. name: "Side",
  41507. image: {
  41508. source: "./media/characters/veluren-thanazel/side.svg",
  41509. extra: 1611/633,
  41510. bottom: 118/1729
  41511. }
  41512. },
  41513. front: {
  41514. height: math.unit(30, "feet"),
  41515. name: "Front",
  41516. image: {
  41517. source: "./media/characters/veluren-thanazel/front.svg",
  41518. extra: 1486/636,
  41519. bottom: 238/1724
  41520. }
  41521. },
  41522. head: {
  41523. height: math.unit(21.4, "feet"),
  41524. name: "Head",
  41525. image: {
  41526. source: "./media/characters/veluren-thanazel/head.svg"
  41527. }
  41528. },
  41529. genitals: {
  41530. height: math.unit(19.4, "feet"),
  41531. name: "Genitals",
  41532. image: {
  41533. source: "./media/characters/veluren-thanazel/genitals.svg"
  41534. }
  41535. },
  41536. },
  41537. [
  41538. {
  41539. name: "Social",
  41540. height: math.unit(6, "feet")
  41541. },
  41542. {
  41543. name: "Play",
  41544. height: math.unit(12, "feet")
  41545. },
  41546. {
  41547. name: "True",
  41548. height: math.unit(30, "feet"),
  41549. default: true
  41550. },
  41551. ]
  41552. ))
  41553. characterMakers.push(() => makeCharacter(
  41554. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  41555. {
  41556. front: {
  41557. height: math.unit(7 + 6/12, "feet"),
  41558. weight: math.unit(500, "kg"),
  41559. name: "Front",
  41560. image: {
  41561. source: "./media/characters/arcturas/front.svg",
  41562. extra: 1700/1500,
  41563. bottom: 145/1845
  41564. }
  41565. },
  41566. },
  41567. [
  41568. {
  41569. name: "Normal",
  41570. height: math.unit(7 + 6/12, "feet"),
  41571. default: true
  41572. },
  41573. ]
  41574. ))
  41575. characterMakers.push(() => makeCharacter(
  41576. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  41577. {
  41578. side: {
  41579. height: math.unit(6, "feet"),
  41580. weight: math.unit(2, "tons"),
  41581. name: "Side",
  41582. image: {
  41583. source: "./media/characters/vitaen/side.svg",
  41584. extra: 1157/617,
  41585. bottom: 122/1279
  41586. }
  41587. },
  41588. },
  41589. [
  41590. {
  41591. name: "Normal",
  41592. height: math.unit(6, "feet"),
  41593. default: true
  41594. },
  41595. ]
  41596. ))
  41597. characterMakers.push(() => makeCharacter(
  41598. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  41599. {
  41600. front: {
  41601. height: math.unit(19, "feet"),
  41602. name: "Front",
  41603. image: {
  41604. source: "./media/characters/fia-dreamweaver/front.svg",
  41605. extra: 1630/1504,
  41606. bottom: 25/1655
  41607. }
  41608. },
  41609. },
  41610. [
  41611. {
  41612. name: "Normal",
  41613. height: math.unit(19, "feet"),
  41614. default: true
  41615. },
  41616. ]
  41617. ))
  41618. characterMakers.push(() => makeCharacter(
  41619. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  41620. {
  41621. front: {
  41622. height: math.unit(5 + 4/12, "feet"),
  41623. name: "Front",
  41624. image: {
  41625. source: "./media/characters/artan/front.svg",
  41626. extra: 1618/1535,
  41627. bottom: 46/1664
  41628. }
  41629. },
  41630. back: {
  41631. height: math.unit(5 + 4/12, "feet"),
  41632. name: "Back",
  41633. image: {
  41634. source: "./media/characters/artan/back.svg",
  41635. extra: 1618/1543,
  41636. bottom: 31/1649
  41637. }
  41638. },
  41639. },
  41640. [
  41641. {
  41642. name: "Normal",
  41643. height: math.unit(5 + 4/12, "feet"),
  41644. default: true
  41645. },
  41646. ]
  41647. ))
  41648. characterMakers.push(() => makeCharacter(
  41649. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  41650. {
  41651. side: {
  41652. height: math.unit(182, "cm"),
  41653. weight: math.unit(1000, "lb"),
  41654. name: "Side",
  41655. image: {
  41656. source: "./media/characters/silver-dragon/side.svg",
  41657. extra: 710/287,
  41658. bottom: 88/798
  41659. }
  41660. },
  41661. },
  41662. [
  41663. {
  41664. name: "Normal",
  41665. height: math.unit(182, "cm"),
  41666. default: true
  41667. },
  41668. ]
  41669. ))
  41670. characterMakers.push(() => makeCharacter(
  41671. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  41672. {
  41673. side: {
  41674. height: math.unit(6 + 6/12, "feet"),
  41675. weight: math.unit(1.5, "tons"),
  41676. name: "Side",
  41677. image: {
  41678. source: "./media/characters/zephyr/side.svg",
  41679. extra: 1433/586,
  41680. bottom: 109/1542
  41681. }
  41682. },
  41683. },
  41684. [
  41685. {
  41686. name: "Normal",
  41687. height: math.unit(6 + 6/12, "feet"),
  41688. default: true
  41689. },
  41690. ]
  41691. ))
  41692. characterMakers.push(() => makeCharacter(
  41693. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  41694. {
  41695. side: {
  41696. height: math.unit(1, "feet"),
  41697. name: "Side",
  41698. image: {
  41699. source: "./media/characters/vixye/side.svg",
  41700. extra: 632/541,
  41701. bottom: 0/632
  41702. }
  41703. },
  41704. },
  41705. [
  41706. {
  41707. name: "Normal",
  41708. height: math.unit(1, "feet"),
  41709. default: true
  41710. },
  41711. {
  41712. name: "True",
  41713. height: math.unit(1e15, "multiverses")
  41714. },
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  41719. {
  41720. front: {
  41721. height: math.unit(8 + 2/12, "feet"),
  41722. weight: math.unit(650, "lb"),
  41723. name: "Front",
  41724. image: {
  41725. source: "./media/characters/darla-mac-lochlainn/front.svg",
  41726. extra: 1174/1137,
  41727. bottom: 82/1256
  41728. }
  41729. },
  41730. back: {
  41731. height: math.unit(8 + 2/12, "feet"),
  41732. weight: math.unit(650, "lb"),
  41733. name: "Back",
  41734. image: {
  41735. source: "./media/characters/darla-mac-lochlainn/back.svg",
  41736. extra: 1204/1157,
  41737. bottom: 46/1250
  41738. }
  41739. },
  41740. },
  41741. [
  41742. {
  41743. name: "Wildform",
  41744. height: math.unit(8 + 2/12, "feet"),
  41745. default: true
  41746. },
  41747. ]
  41748. ))
  41749. characterMakers.push(() => makeCharacter(
  41750. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  41751. {
  41752. front: {
  41753. height: math.unit(18, "feet"),
  41754. name: "Front",
  41755. image: {
  41756. source: "./media/characters/cyphin/front.svg",
  41757. extra: 970/886,
  41758. bottom: 42/1012
  41759. }
  41760. },
  41761. back: {
  41762. height: math.unit(18, "feet"),
  41763. name: "Back",
  41764. image: {
  41765. source: "./media/characters/cyphin/back.svg",
  41766. extra: 1009/894,
  41767. bottom: 24/1033
  41768. }
  41769. },
  41770. head: {
  41771. height: math.unit(5.05, "feet"),
  41772. name: "Head",
  41773. image: {
  41774. source: "./media/characters/cyphin/head.svg"
  41775. }
  41776. },
  41777. tailbud: {
  41778. height: math.unit(5, "feet"),
  41779. name: "Tailbud",
  41780. image: {
  41781. source: "./media/characters/cyphin/tailbud.svg"
  41782. }
  41783. },
  41784. },
  41785. [
  41786. ]
  41787. ))
  41788. characterMakers.push(() => makeCharacter(
  41789. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  41790. {
  41791. side: {
  41792. height: math.unit(10, "feet"),
  41793. weight: math.unit(6, "tons"),
  41794. name: "Side",
  41795. image: {
  41796. source: "./media/characters/raijin/side.svg",
  41797. extra: 1529/613,
  41798. bottom: 337/1866
  41799. }
  41800. },
  41801. },
  41802. [
  41803. {
  41804. name: "Normal",
  41805. height: math.unit(10, "feet"),
  41806. default: true
  41807. },
  41808. ]
  41809. ))
  41810. characterMakers.push(() => makeCharacter(
  41811. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  41812. {
  41813. side: {
  41814. height: math.unit(9, "feet"),
  41815. name: "Side",
  41816. image: {
  41817. source: "./media/characters/nilghais/side.svg",
  41818. extra: 1047/744,
  41819. bottom: 91/1138
  41820. }
  41821. },
  41822. head: {
  41823. height: math.unit(3.14, "feet"),
  41824. name: "Head",
  41825. image: {
  41826. source: "./media/characters/nilghais/head.svg"
  41827. }
  41828. },
  41829. mouth: {
  41830. height: math.unit(4.6, "feet"),
  41831. name: "Mouth",
  41832. image: {
  41833. source: "./media/characters/nilghais/mouth.svg"
  41834. }
  41835. },
  41836. wings: {
  41837. height: math.unit(24, "feet"),
  41838. name: "Wings",
  41839. image: {
  41840. source: "./media/characters/nilghais/wings.svg"
  41841. }
  41842. },
  41843. ass: {
  41844. height: math.unit(6.12, "feet"),
  41845. name: "Ass",
  41846. image: {
  41847. source: "./media/characters/nilghais/ass.svg"
  41848. }
  41849. },
  41850. },
  41851. [
  41852. {
  41853. name: "Normal",
  41854. height: math.unit(9, "feet"),
  41855. default: true
  41856. },
  41857. ]
  41858. ))
  41859. characterMakers.push(() => makeCharacter(
  41860. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  41861. {
  41862. regular: {
  41863. height: math.unit(16 + 2/12, "feet"),
  41864. weight: math.unit(2300, "lb"),
  41865. name: "Regular",
  41866. image: {
  41867. source: "./media/characters/zolgar/regular.svg",
  41868. extra: 1246/1004,
  41869. bottom: 124/1370
  41870. }
  41871. },
  41872. boxers: {
  41873. height: math.unit(16 + 2/12, "feet"),
  41874. weight: math.unit(2300, "lb"),
  41875. name: "Boxers",
  41876. image: {
  41877. source: "./media/characters/zolgar/boxers.svg",
  41878. extra: 1246/1004,
  41879. bottom: 124/1370
  41880. }
  41881. },
  41882. armored: {
  41883. height: math.unit(16 + 2/12, "feet"),
  41884. weight: math.unit(2300, "lb"),
  41885. name: "Armored",
  41886. image: {
  41887. source: "./media/characters/zolgar/armored.svg",
  41888. extra: 1246/1004,
  41889. bottom: 124/1370
  41890. }
  41891. },
  41892. goth: {
  41893. height: math.unit(16 + 2/12, "feet"),
  41894. weight: math.unit(2300, "lb"),
  41895. name: "Goth",
  41896. image: {
  41897. source: "./media/characters/zolgar/goth.svg",
  41898. extra: 1246/1004,
  41899. bottom: 124/1370
  41900. }
  41901. },
  41902. },
  41903. [
  41904. {
  41905. name: "Shrunken Down",
  41906. height: math.unit(9 + 2/12, "feet")
  41907. },
  41908. {
  41909. name: "Normal",
  41910. height: math.unit(16 + 2/12, "feet"),
  41911. default: true
  41912. },
  41913. ]
  41914. ))
  41915. characterMakers.push(() => makeCharacter(
  41916. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  41917. {
  41918. front: {
  41919. height: math.unit(6, "feet"),
  41920. weight: math.unit(168, "lb"),
  41921. name: "Front",
  41922. image: {
  41923. source: "./media/characters/luca/front.svg",
  41924. extra: 841/667,
  41925. bottom: 102/943
  41926. }
  41927. },
  41928. },
  41929. [
  41930. {
  41931. name: "Normal",
  41932. height: math.unit(6, "feet"),
  41933. default: true
  41934. },
  41935. ]
  41936. ))
  41937. characterMakers.push(() => makeCharacter(
  41938. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  41939. {
  41940. side: {
  41941. height: math.unit(7 + 3/12, "feet"),
  41942. weight: math.unit(312, "lb"),
  41943. name: "Side",
  41944. image: {
  41945. source: "./media/characters/zezo/side.svg",
  41946. extra: 1192/1067,
  41947. bottom: 63/1255
  41948. }
  41949. },
  41950. },
  41951. [
  41952. {
  41953. name: "Normal",
  41954. height: math.unit(7 + 3/12, "feet"),
  41955. default: true
  41956. },
  41957. ]
  41958. ))
  41959. characterMakers.push(() => makeCharacter(
  41960. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  41961. {
  41962. front: {
  41963. height: math.unit(5 + 5/12, "feet"),
  41964. weight: math.unit(170, "lb"),
  41965. name: "Front",
  41966. image: {
  41967. source: "./media/characters/mayso/front.svg",
  41968. extra: 1215/1108,
  41969. bottom: 16/1231
  41970. }
  41971. },
  41972. },
  41973. [
  41974. {
  41975. name: "Normal",
  41976. height: math.unit(5 + 5/12, "feet"),
  41977. default: true
  41978. },
  41979. ]
  41980. ))
  41981. characterMakers.push(() => makeCharacter(
  41982. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  41983. {
  41984. front: {
  41985. height: math.unit(4 + 3/12, "feet"),
  41986. weight: math.unit(80, "lb"),
  41987. name: "Front",
  41988. image: {
  41989. source: "./media/characters/hess/front.svg",
  41990. extra: 1200/1123,
  41991. bottom: 16/1216
  41992. }
  41993. },
  41994. },
  41995. [
  41996. {
  41997. name: "Normal",
  41998. height: math.unit(4 + 3/12, "feet"),
  41999. default: true
  42000. },
  42001. ]
  42002. ))
  42003. characterMakers.push(() => makeCharacter(
  42004. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42005. {
  42006. front: {
  42007. height: math.unit(1.9, "meters"),
  42008. name: "Front",
  42009. image: {
  42010. source: "./media/characters/ashgar/front.svg",
  42011. extra: 1177/1146,
  42012. bottom: 99/1276
  42013. }
  42014. },
  42015. back: {
  42016. height: math.unit(1.9, "meters"),
  42017. name: "Back",
  42018. image: {
  42019. source: "./media/characters/ashgar/back.svg",
  42020. extra: 1201/1183,
  42021. bottom: 53/1254
  42022. }
  42023. },
  42024. feral: {
  42025. height: math.unit(1.4, "meters"),
  42026. name: "Feral",
  42027. image: {
  42028. source: "./media/characters/ashgar/feral.svg",
  42029. extra: 370/345,
  42030. bottom: 45/415
  42031. }
  42032. },
  42033. },
  42034. [
  42035. {
  42036. name: "Normal",
  42037. height: math.unit(1.9, "meters"),
  42038. default: true
  42039. },
  42040. ]
  42041. ))
  42042. characterMakers.push(() => makeCharacter(
  42043. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42044. {
  42045. regular: {
  42046. height: math.unit(6, "feet"),
  42047. weight: math.unit(220, "lb"),
  42048. name: "Regular",
  42049. image: {
  42050. source: "./media/characters/phillip/regular.svg",
  42051. extra: 1373/1277,
  42052. bottom: 75/1448
  42053. }
  42054. },
  42055. dressed: {
  42056. height: math.unit(6, "feet"),
  42057. weight: math.unit(220, "lb"),
  42058. name: "Dressed",
  42059. image: {
  42060. source: "./media/characters/phillip/dressed.svg",
  42061. extra: 1373/1277,
  42062. bottom: 75/1448
  42063. }
  42064. },
  42065. paw: {
  42066. height: math.unit(1.44, "feet"),
  42067. name: "Paw",
  42068. image: {
  42069. source: "./media/characters/phillip/paw.svg"
  42070. }
  42071. },
  42072. },
  42073. [
  42074. {
  42075. name: "Normal",
  42076. height: math.unit(6, "feet"),
  42077. default: true
  42078. },
  42079. ]
  42080. ))
  42081. characterMakers.push(() => makeCharacter(
  42082. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42083. {
  42084. side: {
  42085. height: math.unit(42, "feet"),
  42086. name: "Side",
  42087. image: {
  42088. source: "./media/characters/uvula/side.svg",
  42089. extra: 683/586,
  42090. bottom: 60/743
  42091. }
  42092. },
  42093. front: {
  42094. height: math.unit(42, "feet"),
  42095. name: "Front",
  42096. image: {
  42097. source: "./media/characters/uvula/front.svg",
  42098. extra: 705/613,
  42099. bottom: 54/759
  42100. }
  42101. },
  42102. maw: {
  42103. height: math.unit(23.5, "feet"),
  42104. name: "Maw",
  42105. image: {
  42106. source: "./media/characters/uvula/maw.svg"
  42107. }
  42108. },
  42109. },
  42110. [
  42111. {
  42112. name: "Original Size",
  42113. height: math.unit(14, "inches")
  42114. },
  42115. {
  42116. name: "Human Size",
  42117. height: math.unit(6, "feet")
  42118. },
  42119. {
  42120. name: "Big",
  42121. height: math.unit(42, "feet"),
  42122. default: true
  42123. },
  42124. {
  42125. name: "Bigger",
  42126. height: math.unit(100, "feet")
  42127. },
  42128. ]
  42129. ))
  42130. characterMakers.push(() => makeCharacter(
  42131. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  42132. {
  42133. front: {
  42134. height: math.unit(5 + 11/12, "feet"),
  42135. name: "Front",
  42136. image: {
  42137. source: "./media/characters/lannah/front.svg",
  42138. extra: 1208/1113,
  42139. bottom: 97/1305
  42140. }
  42141. },
  42142. },
  42143. [
  42144. {
  42145. name: "Normal",
  42146. height: math.unit(5 + 11/12, "feet"),
  42147. default: true
  42148. },
  42149. ]
  42150. ))
  42151. characterMakers.push(() => makeCharacter(
  42152. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  42153. {
  42154. front: {
  42155. height: math.unit(6 + 3/12, "feet"),
  42156. weight: math.unit(3.5, "tons"),
  42157. name: "Front",
  42158. image: {
  42159. source: "./media/characters/emberflame/front.svg",
  42160. extra: 1198/672,
  42161. bottom: 82/1280
  42162. }
  42163. },
  42164. side: {
  42165. height: math.unit(6 + 3/12, "feet"),
  42166. weight: math.unit(3.5, "tons"),
  42167. name: "Side",
  42168. image: {
  42169. source: "./media/characters/emberflame/side.svg",
  42170. extra: 938/527,
  42171. bottom: 56/994
  42172. }
  42173. },
  42174. },
  42175. [
  42176. {
  42177. name: "Normal",
  42178. height: math.unit(6 + 3/12, "feet"),
  42179. default: true
  42180. },
  42181. ]
  42182. ))
  42183. characterMakers.push(() => makeCharacter(
  42184. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  42185. {
  42186. side: {
  42187. height: math.unit(17.5, "feet"),
  42188. weight: math.unit(35, "tons"),
  42189. name: "Side",
  42190. image: {
  42191. source: "./media/characters/sophie-ambrose/side.svg",
  42192. extra: 1573/1242,
  42193. bottom: 71/1644
  42194. }
  42195. },
  42196. maw: {
  42197. height: math.unit(7.4, "feet"),
  42198. name: "Maw",
  42199. image: {
  42200. source: "./media/characters/sophie-ambrose/maw.svg"
  42201. }
  42202. },
  42203. },
  42204. [
  42205. {
  42206. name: "Normal",
  42207. height: math.unit(17.5, "feet"),
  42208. default: true
  42209. },
  42210. ]
  42211. ))
  42212. characterMakers.push(() => makeCharacter(
  42213. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  42214. {
  42215. front: {
  42216. height: math.unit(280, "feet"),
  42217. weight: math.unit(550, "tons"),
  42218. name: "Front",
  42219. image: {
  42220. source: "./media/characters/king-mugi/front.svg",
  42221. extra: 1102/947,
  42222. bottom: 104/1206
  42223. }
  42224. },
  42225. },
  42226. [
  42227. {
  42228. name: "King Mugi",
  42229. height: math.unit(280, "feet"),
  42230. default: true
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  42236. {
  42237. front: {
  42238. height: math.unit(64, "meters"),
  42239. name: "Front",
  42240. image: {
  42241. source: "./media/characters/nova-fox/front.svg",
  42242. extra: 1310/1246,
  42243. bottom: 65/1375
  42244. }
  42245. },
  42246. },
  42247. [
  42248. {
  42249. name: "Macro",
  42250. height: math.unit(64, "meters"),
  42251. default: true
  42252. },
  42253. ]
  42254. ))
  42255. characterMakers.push(() => makeCharacter(
  42256. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  42257. {
  42258. front: {
  42259. height: math.unit(6 + 3/12, "feet"),
  42260. weight: math.unit(170, "lb"),
  42261. name: "Front",
  42262. image: {
  42263. source: "./media/characters/sam-bat/front.svg",
  42264. extra: 1601/1411,
  42265. bottom: 125/1726
  42266. }
  42267. },
  42268. back: {
  42269. height: math.unit(6 + 3/12, "feet"),
  42270. weight: math.unit(170, "lb"),
  42271. name: "Back",
  42272. image: {
  42273. source: "./media/characters/sam-bat/back.svg",
  42274. extra: 1577/1405,
  42275. bottom: 58/1635
  42276. }
  42277. },
  42278. },
  42279. [
  42280. {
  42281. name: "Normal",
  42282. height: math.unit(6 + 3/12, "feet"),
  42283. default: true
  42284. },
  42285. ]
  42286. ))
  42287. characterMakers.push(() => makeCharacter(
  42288. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  42289. {
  42290. front: {
  42291. height: math.unit(59, "feet"),
  42292. weight: math.unit(40000, "lb"),
  42293. name: "Front",
  42294. image: {
  42295. source: "./media/characters/inari/front.svg",
  42296. extra: 1884/1350,
  42297. bottom: 95/1979
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Gigantamax",
  42304. height: math.unit(59, "feet"),
  42305. default: true
  42306. },
  42307. ]
  42308. ))
  42309. characterMakers.push(() => makeCharacter(
  42310. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  42311. {
  42312. front: {
  42313. height: math.unit(5 + 8/12, "feet"),
  42314. name: "Front",
  42315. image: {
  42316. source: "./media/characters/elizabeth/front.svg",
  42317. extra: 1395/1298,
  42318. bottom: 54/1449
  42319. }
  42320. },
  42321. mouth: {
  42322. height: math.unit(1.97, "feet"),
  42323. name: "Mouth",
  42324. image: {
  42325. source: "./media/characters/elizabeth/mouth.svg"
  42326. }
  42327. },
  42328. foot: {
  42329. height: math.unit(1.17, "feet"),
  42330. name: "Foot",
  42331. image: {
  42332. source: "./media/characters/elizabeth/foot.svg"
  42333. }
  42334. },
  42335. },
  42336. [
  42337. {
  42338. name: "Normal",
  42339. height: math.unit(5 + 8/12, "feet"),
  42340. default: true
  42341. },
  42342. {
  42343. name: "Minimacro",
  42344. height: math.unit(18, "feet")
  42345. },
  42346. {
  42347. name: "Macro",
  42348. height: math.unit(180, "feet")
  42349. },
  42350. ]
  42351. ))
  42352. characterMakers.push(() => makeCharacter(
  42353. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  42354. {
  42355. front: {
  42356. height: math.unit(5 + 2/12, "feet"),
  42357. name: "Front",
  42358. image: {
  42359. source: "./media/characters/october-gossamer/front.svg",
  42360. extra: 505/454,
  42361. bottom: 7/512
  42362. }
  42363. },
  42364. back: {
  42365. height: math.unit(5 + 2/12, "feet"),
  42366. name: "Back",
  42367. image: {
  42368. source: "./media/characters/october-gossamer/back.svg",
  42369. extra: 501/454,
  42370. bottom: 11/512
  42371. }
  42372. },
  42373. },
  42374. [
  42375. {
  42376. name: "Normal",
  42377. height: math.unit(5 + 2/12, "feet"),
  42378. default: true
  42379. },
  42380. ]
  42381. ))
  42382. characterMakers.push(() => makeCharacter(
  42383. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  42384. {
  42385. front: {
  42386. height: math.unit(5, "feet"),
  42387. name: "Front",
  42388. image: {
  42389. source: "./media/characters/epiglottis/front.svg",
  42390. extra: 923/849,
  42391. bottom: 17/940
  42392. }
  42393. },
  42394. },
  42395. [
  42396. {
  42397. name: "Original Size",
  42398. height: math.unit(10, "inches")
  42399. },
  42400. {
  42401. name: "Human Size",
  42402. height: math.unit(5, "feet"),
  42403. default: true
  42404. },
  42405. {
  42406. name: "Big",
  42407. height: math.unit(25, "feet")
  42408. },
  42409. {
  42410. name: "Bigger",
  42411. height: math.unit(50, "feet")
  42412. },
  42413. {
  42414. name: "oh lawd",
  42415. height: math.unit(75, "feet")
  42416. },
  42417. ]
  42418. ))
  42419. characterMakers.push(() => makeCharacter(
  42420. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  42421. {
  42422. front: {
  42423. height: math.unit(2 + 4/12, "feet"),
  42424. weight: math.unit(60, "lb"),
  42425. name: "Front",
  42426. image: {
  42427. source: "./media/characters/lerm/front.svg",
  42428. extra: 796/790,
  42429. bottom: 79/875
  42430. }
  42431. },
  42432. },
  42433. [
  42434. {
  42435. name: "Normal",
  42436. height: math.unit(2 + 4/12, "feet"),
  42437. default: true
  42438. },
  42439. ]
  42440. ))
  42441. characterMakers.push(() => makeCharacter(
  42442. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  42443. {
  42444. front: {
  42445. height: math.unit(5.5, "feet"),
  42446. weight: math.unit(130, "lb"),
  42447. name: "Front",
  42448. image: {
  42449. source: "./media/characters/xena-nebadon/front.svg",
  42450. extra: 1828/1730,
  42451. bottom: 79/1907
  42452. }
  42453. },
  42454. },
  42455. [
  42456. {
  42457. name: "Tiny Puppy",
  42458. height: math.unit(3, "inches")
  42459. },
  42460. {
  42461. name: "Normal",
  42462. height: math.unit(5.5, "feet"),
  42463. default: true
  42464. },
  42465. {
  42466. name: "Lotta Lady",
  42467. height: math.unit(12, "feet")
  42468. },
  42469. {
  42470. name: "Pretty Big",
  42471. height: math.unit(100, "feet")
  42472. },
  42473. {
  42474. name: "Big",
  42475. height: math.unit(500, "feet")
  42476. },
  42477. {
  42478. name: "Skyscraper Toys",
  42479. height: math.unit(2500, "feet")
  42480. },
  42481. {
  42482. name: "Plane Catcher",
  42483. height: math.unit(8, "miles")
  42484. },
  42485. {
  42486. name: "Planet Toys",
  42487. height: math.unit(15, "earths")
  42488. },
  42489. {
  42490. name: "Stardust",
  42491. height: math.unit(0.25, "galaxies")
  42492. },
  42493. {
  42494. name: "Snacks",
  42495. height: math.unit(70, "universes")
  42496. },
  42497. ]
  42498. ))
  42499. characterMakers.push(() => makeCharacter(
  42500. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  42501. {
  42502. front: {
  42503. height: math.unit(1.6, "meters"),
  42504. weight: math.unit(60, "kg"),
  42505. name: "Front",
  42506. image: {
  42507. source: "./media/characters/bounty/front.svg",
  42508. extra: 1426/1308,
  42509. bottom: 15/1441
  42510. }
  42511. },
  42512. back: {
  42513. height: math.unit(1.6, "meters"),
  42514. weight: math.unit(60, "kg"),
  42515. name: "Back",
  42516. image: {
  42517. source: "./media/characters/bounty/back.svg",
  42518. extra: 1417/1307,
  42519. bottom: 8/1425
  42520. }
  42521. },
  42522. },
  42523. [
  42524. {
  42525. name: "Normal",
  42526. height: math.unit(1.6, "meters"),
  42527. default: true
  42528. },
  42529. {
  42530. name: "Macro",
  42531. height: math.unit(300, "meters")
  42532. },
  42533. ]
  42534. ))
  42535. characterMakers.push(() => makeCharacter(
  42536. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  42537. {
  42538. front: {
  42539. height: math.unit(2 + 8/12, "feet"),
  42540. weight: math.unit(15, "lb"),
  42541. name: "Front",
  42542. image: {
  42543. source: "./media/characters/mochi/front.svg",
  42544. extra: 1022/852,
  42545. bottom: 435/1457
  42546. }
  42547. },
  42548. back: {
  42549. height: math.unit(2 + 8/12, "feet"),
  42550. weight: math.unit(15, "lb"),
  42551. name: "Back",
  42552. image: {
  42553. source: "./media/characters/mochi/back.svg",
  42554. extra: 1335/1119,
  42555. bottom: 39/1374
  42556. }
  42557. },
  42558. bird: {
  42559. height: math.unit(2 + 8/12, "feet"),
  42560. weight: math.unit(15, "lb"),
  42561. name: "Bird",
  42562. image: {
  42563. source: "./media/characters/mochi/bird.svg",
  42564. extra: 1251/1113,
  42565. bottom: 178/1429
  42566. }
  42567. },
  42568. kaiju: {
  42569. height: math.unit(154, "feet"),
  42570. weight: math.unit(1e7, "lb"),
  42571. name: "Kaiju",
  42572. image: {
  42573. source: "./media/characters/mochi/kaiju.svg",
  42574. extra: 460/324,
  42575. bottom: 40/500
  42576. }
  42577. },
  42578. head: {
  42579. height: math.unit(1.21, "feet"),
  42580. name: "Head",
  42581. image: {
  42582. source: "./media/characters/mochi/head.svg"
  42583. }
  42584. },
  42585. alternateTail: {
  42586. height: math.unit(2 + 8/12, "feet"),
  42587. weight: math.unit(45, "lb"),
  42588. name: "Alternate Tail",
  42589. image: {
  42590. source: "./media/characters/mochi/alternate-tail.svg",
  42591. extra: 139/76,
  42592. bottom: 45/184
  42593. }
  42594. },
  42595. },
  42596. [
  42597. {
  42598. name: "Micro",
  42599. height: math.unit(2, "inches")
  42600. },
  42601. {
  42602. name: "Normal",
  42603. height: math.unit(2 + 8/12, "feet"),
  42604. default: true
  42605. },
  42606. {
  42607. name: "Macro",
  42608. height: math.unit(106, "feet")
  42609. },
  42610. ]
  42611. ))
  42612. characterMakers.push(() => makeCharacter(
  42613. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  42614. {
  42615. front: {
  42616. height: math.unit(5.67, "feet"),
  42617. weight: math.unit(135, "lb"),
  42618. name: "Front",
  42619. image: {
  42620. source: "./media/characters/sarel/front.svg",
  42621. extra: 865/788,
  42622. bottom: 97/962
  42623. }
  42624. },
  42625. back: {
  42626. height: math.unit(5.67, "feet"),
  42627. weight: math.unit(135, "lb"),
  42628. name: "Back",
  42629. image: {
  42630. source: "./media/characters/sarel/back.svg",
  42631. extra: 857/777,
  42632. bottom: 32/889
  42633. }
  42634. },
  42635. chozoan: {
  42636. height: math.unit(5.67, "feet"),
  42637. weight: math.unit(135, "lb"),
  42638. name: "Chozoan",
  42639. image: {
  42640. source: "./media/characters/sarel/chozoan.svg",
  42641. extra: 865/788,
  42642. bottom: 97/962
  42643. }
  42644. },
  42645. current: {
  42646. height: math.unit(5.67, "feet"),
  42647. weight: math.unit(135, "lb"),
  42648. name: "Current",
  42649. image: {
  42650. source: "./media/characters/sarel/current.svg",
  42651. extra: 865/788,
  42652. bottom: 97/962
  42653. }
  42654. },
  42655. head: {
  42656. height: math.unit(1.77, "feet"),
  42657. name: "Head",
  42658. image: {
  42659. source: "./media/characters/sarel/head.svg"
  42660. }
  42661. },
  42662. claws: {
  42663. height: math.unit(1.8, "feet"),
  42664. name: "Claws",
  42665. image: {
  42666. source: "./media/characters/sarel/claws.svg"
  42667. }
  42668. },
  42669. clawsAlt: {
  42670. height: math.unit(1.8, "feet"),
  42671. name: "Claws-alt",
  42672. image: {
  42673. source: "./media/characters/sarel/claws-alt.svg"
  42674. }
  42675. },
  42676. },
  42677. [
  42678. {
  42679. name: "Normal",
  42680. height: math.unit(5.67, "feet"),
  42681. default: true
  42682. },
  42683. ]
  42684. ))
  42685. characterMakers.push(() => makeCharacter(
  42686. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  42687. {
  42688. front: {
  42689. height: math.unit(5500, "feet"),
  42690. name: "Front",
  42691. image: {
  42692. source: "./media/characters/alyonia/front.svg",
  42693. extra: 1200/1135,
  42694. bottom: 29/1229
  42695. }
  42696. },
  42697. back: {
  42698. height: math.unit(5500, "feet"),
  42699. name: "Back",
  42700. image: {
  42701. source: "./media/characters/alyonia/back.svg",
  42702. extra: 1205/1138,
  42703. bottom: 10/1215
  42704. }
  42705. },
  42706. },
  42707. [
  42708. {
  42709. name: "Small",
  42710. height: math.unit(10, "feet")
  42711. },
  42712. {
  42713. name: "Macro",
  42714. height: math.unit(500, "feet")
  42715. },
  42716. {
  42717. name: "Mega Macro",
  42718. height: math.unit(5500, "feet"),
  42719. default: true
  42720. },
  42721. {
  42722. name: "Mega Macro+",
  42723. height: math.unit(500000, "feet")
  42724. },
  42725. {
  42726. name: "Giga Macro",
  42727. height: math.unit(3000, "miles")
  42728. },
  42729. {
  42730. name: "Tera Macro",
  42731. height: math.unit(2.8e6, "miles")
  42732. },
  42733. {
  42734. name: "Galactic",
  42735. height: math.unit(120000, "lightyears")
  42736. },
  42737. ]
  42738. ))
  42739. characterMakers.push(() => makeCharacter(
  42740. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  42741. {
  42742. werewolf: {
  42743. height: math.unit(8, "feet"),
  42744. weight: math.unit(425, "lb"),
  42745. name: "Werewolf",
  42746. image: {
  42747. source: "./media/characters/autumn/werewolf.svg",
  42748. extra: 2154/2031,
  42749. bottom: 160/2314
  42750. }
  42751. },
  42752. human: {
  42753. height: math.unit(5 + 8/12, "feet"),
  42754. weight: math.unit(150, "lb"),
  42755. name: "Human",
  42756. image: {
  42757. source: "./media/characters/autumn/human.svg",
  42758. extra: 1200/1149,
  42759. bottom: 30/1230
  42760. }
  42761. },
  42762. },
  42763. [
  42764. {
  42765. name: "Normal",
  42766. height: math.unit(8, "feet"),
  42767. default: true
  42768. },
  42769. ]
  42770. ))
  42771. characterMakers.push(() => makeCharacter(
  42772. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  42773. {
  42774. front: {
  42775. height: math.unit(8 + 5/12, "feet"),
  42776. weight: math.unit(825, "lb"),
  42777. name: "Front",
  42778. image: {
  42779. source: "./media/characters/cobalt-charizard/front.svg",
  42780. extra: 1268/1155,
  42781. bottom: 122/1390
  42782. }
  42783. },
  42784. side: {
  42785. height: math.unit(8 + 5/12, "feet"),
  42786. weight: math.unit(825, "lb"),
  42787. name: "Side",
  42788. image: {
  42789. source: "./media/characters/cobalt-charizard/side.svg",
  42790. extra: 1348/1257,
  42791. bottom: 58/1406
  42792. }
  42793. },
  42794. gMax: {
  42795. height: math.unit(134 + 11/12, "feet"),
  42796. name: "G-Max",
  42797. image: {
  42798. source: "./media/characters/cobalt-charizard/g-max.svg",
  42799. extra: 1835/1541,
  42800. bottom: 151/1986
  42801. }
  42802. },
  42803. },
  42804. [
  42805. {
  42806. name: "Normal",
  42807. height: math.unit(8 + 5/12, "feet"),
  42808. default: true
  42809. },
  42810. ]
  42811. ))
  42812. characterMakers.push(() => makeCharacter(
  42813. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  42814. {
  42815. front: {
  42816. height: math.unit(6 + 3/12, "feet"),
  42817. weight: math.unit(210, "lb"),
  42818. name: "Front",
  42819. image: {
  42820. source: "./media/characters/stella/front.svg",
  42821. extra: 3549/3335,
  42822. bottom: 51/3600
  42823. }
  42824. },
  42825. },
  42826. [
  42827. {
  42828. name: "Normal",
  42829. height: math.unit(6 + 3/12, "feet"),
  42830. default: true
  42831. },
  42832. ]
  42833. ))
  42834. characterMakers.push(() => makeCharacter(
  42835. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  42836. {
  42837. front: {
  42838. height: math.unit(5, "feet"),
  42839. weight: math.unit(90, "lb"),
  42840. name: "Front",
  42841. image: {
  42842. source: "./media/characters/riley-bishop/front.svg",
  42843. extra: 1450/1428,
  42844. bottom: 152/1602
  42845. }
  42846. },
  42847. },
  42848. [
  42849. {
  42850. name: "Normal",
  42851. height: math.unit(5, "feet"),
  42852. default: true
  42853. },
  42854. ]
  42855. ))
  42856. characterMakers.push(() => makeCharacter(
  42857. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  42858. {
  42859. side: {
  42860. height: math.unit(8 + 2/12, "feet"),
  42861. weight: math.unit(500, "kg"),
  42862. name: "Side",
  42863. image: {
  42864. source: "./media/characters/theo-arcanine/side.svg",
  42865. extra: 1342/1074,
  42866. bottom: 111/1453
  42867. }
  42868. },
  42869. },
  42870. [
  42871. {
  42872. name: "Normal",
  42873. height: math.unit(8 + 2/12, "feet"),
  42874. default: true
  42875. },
  42876. ]
  42877. ))
  42878. characterMakers.push(() => makeCharacter(
  42879. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  42880. {
  42881. front: {
  42882. height: math.unit(4, "feet"),
  42883. name: "Front",
  42884. image: {
  42885. source: "./media/characters/kali/front.svg",
  42886. extra: 1921/1357,
  42887. bottom: 70/1991
  42888. }
  42889. },
  42890. },
  42891. [
  42892. {
  42893. name: "Normal",
  42894. height: math.unit(4, "feet"),
  42895. default: true
  42896. },
  42897. {
  42898. name: "Macro",
  42899. height: math.unit(32, "meters")
  42900. },
  42901. {
  42902. name: "Macro+",
  42903. height: math.unit(150, "meters")
  42904. },
  42905. {
  42906. name: "Megamacro",
  42907. height: math.unit(7500, "meters")
  42908. },
  42909. {
  42910. name: "Megamacro+",
  42911. height: math.unit(80, "kilometers")
  42912. },
  42913. ]
  42914. ))
  42915. characterMakers.push(() => makeCharacter(
  42916. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  42917. {
  42918. side: {
  42919. height: math.unit(5 + 11/12, "feet"),
  42920. weight: math.unit(236, "lb"),
  42921. name: "Side",
  42922. image: {
  42923. source: "./media/characters/gapp/side.svg",
  42924. extra: 775/340,
  42925. bottom: 58/833
  42926. }
  42927. },
  42928. mouth: {
  42929. height: math.unit(2.98, "feet"),
  42930. name: "Mouth",
  42931. image: {
  42932. source: "./media/characters/gapp/mouth.svg"
  42933. }
  42934. },
  42935. },
  42936. [
  42937. {
  42938. name: "Normal",
  42939. height: math.unit(5 + 1/12, "feet"),
  42940. default: true
  42941. },
  42942. ]
  42943. ))
  42944. characterMakers.push(() => makeCharacter(
  42945. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  42946. {
  42947. front: {
  42948. height: math.unit(6, "feet"),
  42949. name: "Front",
  42950. image: {
  42951. source: "./media/characters/persephone/front.svg",
  42952. extra: 1895/1717,
  42953. bottom: 96/1991
  42954. }
  42955. },
  42956. back: {
  42957. height: math.unit(6, "feet"),
  42958. name: "Back",
  42959. image: {
  42960. source: "./media/characters/persephone/back.svg",
  42961. extra: 1868/1679,
  42962. bottom: 26/1894
  42963. }
  42964. },
  42965. casual: {
  42966. height: math.unit(6, "feet"),
  42967. name: "Casual",
  42968. image: {
  42969. source: "./media/characters/persephone/casual.svg",
  42970. extra: 1713/1541,
  42971. bottom: 76/1789
  42972. }
  42973. },
  42974. },
  42975. [
  42976. {
  42977. name: "Human Size",
  42978. height: math.unit(6, "feet")
  42979. },
  42980. {
  42981. name: "Big Steppy",
  42982. height: math.unit(600, "meters"),
  42983. default: true
  42984. },
  42985. {
  42986. name: "Galaxy Brain",
  42987. height: math.unit(1, "zettameter")
  42988. },
  42989. ]
  42990. ))
  42991. characterMakers.push(() => makeCharacter(
  42992. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  42993. {
  42994. front: {
  42995. height: math.unit(1.85, "meters"),
  42996. name: "Front",
  42997. image: {
  42998. source: "./media/characters/riley-foxthing/front.svg",
  42999. extra: 1495/1354,
  43000. bottom: 122/1617
  43001. }
  43002. },
  43003. frontAlt: {
  43004. height: math.unit(1.85, "meters"),
  43005. name: "Front (Alt)",
  43006. image: {
  43007. source: "./media/characters/riley-foxthing/front-alt.svg",
  43008. extra: 1572/1389,
  43009. bottom: 116/1688
  43010. }
  43011. },
  43012. },
  43013. [
  43014. {
  43015. name: "Normal Sized",
  43016. height: math.unit(1.85, "meters"),
  43017. default: true
  43018. },
  43019. {
  43020. name: "Quite Sizable",
  43021. height: math.unit(5, "meters")
  43022. },
  43023. {
  43024. name: "Rather Large",
  43025. height: math.unit(20, "meters")
  43026. },
  43027. {
  43028. name: "Macro",
  43029. height: math.unit(450, "meters")
  43030. },
  43031. {
  43032. name: "Giga",
  43033. height: math.unit(5, "km")
  43034. },
  43035. ]
  43036. ))
  43037. characterMakers.push(() => makeCharacter(
  43038. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43039. {
  43040. front: {
  43041. height: math.unit(6, "feet"),
  43042. weight: math.unit(200, "lb"),
  43043. name: "Front",
  43044. image: {
  43045. source: "./media/characters/blizzard/front.svg",
  43046. extra: 1136/990,
  43047. bottom: 136/1272
  43048. }
  43049. },
  43050. back: {
  43051. height: math.unit(6, "feet"),
  43052. weight: math.unit(200, "lb"),
  43053. name: "Back",
  43054. image: {
  43055. source: "./media/characters/blizzard/back.svg",
  43056. extra: 1175/1034,
  43057. bottom: 97/1272
  43058. }
  43059. },
  43060. sitting: {
  43061. height: math.unit(3.725, "feet"),
  43062. weight: math.unit(200, "lb"),
  43063. name: "Sitting",
  43064. image: {
  43065. source: "./media/characters/blizzard/sitting.svg",
  43066. extra: 581/485,
  43067. bottom: 90/671
  43068. }
  43069. },
  43070. frontWizard: {
  43071. height: math.unit(7.9, "feet"),
  43072. weight: math.unit(200, "lb"),
  43073. name: "Front (Wizard)",
  43074. image: {
  43075. source: "./media/characters/blizzard/front-wizard.svg"
  43076. }
  43077. },
  43078. backWizard: {
  43079. height: math.unit(7.9, "feet"),
  43080. weight: math.unit(200, "lb"),
  43081. name: "Back (Wizard)",
  43082. image: {
  43083. source: "./media/characters/blizzard/back-wizard.svg"
  43084. }
  43085. },
  43086. frontNsfw: {
  43087. height: math.unit(6, "feet"),
  43088. weight: math.unit(200, "lb"),
  43089. name: "Front (NSFW)",
  43090. image: {
  43091. source: "./media/characters/blizzard/front-nsfw.svg",
  43092. extra: 1136/990,
  43093. bottom: 136/1272
  43094. }
  43095. },
  43096. backNsfw: {
  43097. height: math.unit(6, "feet"),
  43098. weight: math.unit(200, "lb"),
  43099. name: "Back (NSFW)",
  43100. image: {
  43101. source: "./media/characters/blizzard/back-nsfw.svg",
  43102. extra: 1175/1034,
  43103. bottom: 97/1272
  43104. }
  43105. },
  43106. sittingNsfw: {
  43107. height: math.unit(3.725, "feet"),
  43108. weight: math.unit(200, "lb"),
  43109. name: "Sitting (NSFW)",
  43110. image: {
  43111. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43112. extra: 581/485,
  43113. bottom: 90/671
  43114. }
  43115. },
  43116. wizardFrontNsfw: {
  43117. height: math.unit(7.9, "feet"),
  43118. weight: math.unit(200, "lb"),
  43119. name: "Wizard (Front, NSFW)",
  43120. image: {
  43121. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  43122. }
  43123. },
  43124. },
  43125. [
  43126. {
  43127. name: "Normal",
  43128. height: math.unit(6, "feet"),
  43129. default: true
  43130. },
  43131. ]
  43132. ))
  43133. characterMakers.push(() => makeCharacter(
  43134. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  43135. {
  43136. front: {
  43137. height: math.unit(5 + 2/12, "feet"),
  43138. name: "Front",
  43139. image: {
  43140. source: "./media/characters/lumi/front.svg",
  43141. extra: 1328/1268,
  43142. bottom: 103/1431
  43143. }
  43144. },
  43145. back: {
  43146. height: math.unit(5 + 2/12, "feet"),
  43147. name: "Back",
  43148. image: {
  43149. source: "./media/characters/lumi/back.svg",
  43150. extra: 1381/1327,
  43151. bottom: 43/1424
  43152. }
  43153. },
  43154. },
  43155. [
  43156. {
  43157. name: "Normal",
  43158. height: math.unit(5 + 2/12, "feet"),
  43159. default: true
  43160. },
  43161. ]
  43162. ))
  43163. characterMakers.push(() => makeCharacter(
  43164. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  43165. {
  43166. front: {
  43167. height: math.unit(5 + 9/12, "feet"),
  43168. name: "Front",
  43169. image: {
  43170. source: "./media/characters/aliya-cotton/front.svg",
  43171. extra: 577/564,
  43172. bottom: 29/606
  43173. }
  43174. },
  43175. },
  43176. [
  43177. {
  43178. name: "Normal",
  43179. height: math.unit(5 + 9/12, "feet"),
  43180. default: true
  43181. },
  43182. ]
  43183. ))
  43184. characterMakers.push(() => makeCharacter(
  43185. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  43186. {
  43187. front: {
  43188. height: math.unit(2.7, "meters"),
  43189. weight: math.unit(25000, "lb"),
  43190. name: "Front",
  43191. image: {
  43192. source: "./media/characters/noah-luxray/front.svg",
  43193. extra: 1644/825,
  43194. bottom: 339/1983
  43195. }
  43196. },
  43197. side: {
  43198. height: math.unit(2.97, "meters"),
  43199. weight: math.unit(25000, "lb"),
  43200. name: "Side",
  43201. image: {
  43202. source: "./media/characters/noah-luxray/side.svg",
  43203. extra: 1319/650,
  43204. bottom: 163/1482
  43205. }
  43206. },
  43207. dick: {
  43208. height: math.unit(7.4, "feet"),
  43209. weight: math.unit(2500, "lb"),
  43210. name: "Dick",
  43211. image: {
  43212. source: "./media/characters/noah-luxray/dick.svg"
  43213. }
  43214. },
  43215. dickAlt: {
  43216. height: math.unit(10.83, "feet"),
  43217. weight: math.unit(2500, "lb"),
  43218. name: "Dick-alt",
  43219. image: {
  43220. source: "./media/characters/noah-luxray/dick-alt.svg"
  43221. }
  43222. },
  43223. },
  43224. [
  43225. {
  43226. name: "BIG",
  43227. height: math.unit(2.7, "meters"),
  43228. default: true
  43229. },
  43230. ]
  43231. ))
  43232. characterMakers.push(() => makeCharacter(
  43233. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  43234. {
  43235. standing: {
  43236. height: math.unit(183, "cm"),
  43237. weight: math.unit(68, "kg"),
  43238. name: "Standing",
  43239. image: {
  43240. source: "./media/characters/arion/standing.svg",
  43241. extra: 1869/1807,
  43242. bottom: 93/1962
  43243. }
  43244. },
  43245. reclining: {
  43246. height: math.unit(70.5, "cm"),
  43247. weight: math.unit(68, "lb"),
  43248. name: "Reclining",
  43249. image: {
  43250. source: "./media/characters/arion/reclining.svg",
  43251. extra: 937/870,
  43252. bottom: 63/1000
  43253. }
  43254. },
  43255. },
  43256. [
  43257. {
  43258. name: "Colossus Size, Low",
  43259. height: math.unit(33, "meters"),
  43260. default: true
  43261. },
  43262. {
  43263. name: "Colossus Size, Mid",
  43264. height: math.unit(52, "meters")
  43265. },
  43266. {
  43267. name: "Colossus Size, High",
  43268. height: math.unit(60, "meters")
  43269. },
  43270. {
  43271. name: "Titan Size, Low",
  43272. height: math.unit(91, "meters"),
  43273. },
  43274. {
  43275. name: "Titan Size, Mid",
  43276. height: math.unit(122, "meters")
  43277. },
  43278. {
  43279. name: "Titan Size, High",
  43280. height: math.unit(162, "meters")
  43281. },
  43282. ]
  43283. ))
  43284. characterMakers.push(() => makeCharacter(
  43285. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  43286. {
  43287. front: {
  43288. height: math.unit(53, "meters"),
  43289. name: "Front",
  43290. image: {
  43291. source: "./media/characters/stellar-marbey/front.svg",
  43292. extra: 1913/1805,
  43293. bottom: 92/2005
  43294. }
  43295. },
  43296. back: {
  43297. height: math.unit(53, "meters"),
  43298. name: "Back",
  43299. image: {
  43300. source: "./media/characters/stellar-marbey/back.svg",
  43301. extra: 1960/1851,
  43302. bottom: 28/1988
  43303. }
  43304. },
  43305. mouth: {
  43306. height: math.unit(3.5, "meters"),
  43307. name: "Mouth",
  43308. image: {
  43309. source: "./media/characters/stellar-marbey/mouth.svg"
  43310. }
  43311. },
  43312. },
  43313. [
  43314. {
  43315. name: "Macro",
  43316. height: math.unit(53, "meters"),
  43317. default: true
  43318. },
  43319. ]
  43320. ))
  43321. characterMakers.push(() => makeCharacter(
  43322. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  43323. {
  43324. front: {
  43325. height: math.unit(8 + 1/12, "feet"),
  43326. weight: math.unit(233, "lb"),
  43327. name: "Front",
  43328. image: {
  43329. source: "./media/characters/matsu/front.svg",
  43330. extra: 832/772,
  43331. bottom: 40/872
  43332. }
  43333. },
  43334. back: {
  43335. height: math.unit(8 + 1/12, "feet"),
  43336. weight: math.unit(233, "lb"),
  43337. name: "Back",
  43338. image: {
  43339. source: "./media/characters/matsu/back.svg",
  43340. extra: 839/780,
  43341. bottom: 47/886
  43342. }
  43343. },
  43344. },
  43345. [
  43346. {
  43347. name: "Normal",
  43348. height: math.unit(8 + 1/12, "feet"),
  43349. default: true
  43350. },
  43351. ]
  43352. ))
  43353. characterMakers.push(() => makeCharacter(
  43354. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  43355. {
  43356. front: {
  43357. height: math.unit(4, "feet"),
  43358. weight: math.unit(148, "lb"),
  43359. name: "Front",
  43360. image: {
  43361. source: "./media/characters/thiz/front.svg",
  43362. extra: 1913/1748,
  43363. bottom: 62/1975
  43364. }
  43365. },
  43366. },
  43367. [
  43368. {
  43369. name: "Normal",
  43370. height: math.unit(4, "feet"),
  43371. default: true
  43372. },
  43373. ]
  43374. ))
  43375. characterMakers.push(() => makeCharacter(
  43376. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  43377. {
  43378. front: {
  43379. height: math.unit(7 + 6/12, "feet"),
  43380. weight: math.unit(267, "lb"),
  43381. name: "Front",
  43382. image: {
  43383. source: "./media/characters/marcel/front.svg",
  43384. extra: 1221/1096,
  43385. bottom: 76/1297
  43386. }
  43387. },
  43388. },
  43389. [
  43390. {
  43391. name: "Normal",
  43392. height: math.unit(7 + 6/12, "feet"),
  43393. default: true
  43394. },
  43395. ]
  43396. ))
  43397. characterMakers.push(() => makeCharacter(
  43398. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  43399. {
  43400. side: {
  43401. height: math.unit(42, "meters"),
  43402. name: "Side",
  43403. image: {
  43404. source: "./media/characters/flake/side.svg",
  43405. extra: 1525/1306,
  43406. bottom: 209/1734
  43407. }
  43408. },
  43409. },
  43410. [
  43411. {
  43412. name: "Normal",
  43413. height: math.unit(42, "meters"),
  43414. default: true
  43415. },
  43416. ]
  43417. ))
  43418. characterMakers.push(() => makeCharacter(
  43419. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  43420. {
  43421. dressed: {
  43422. height: math.unit(6 + 4/12, "feet"),
  43423. weight: math.unit(520, "lb"),
  43424. name: "Dressed",
  43425. image: {
  43426. source: "./media/characters/someonne/dressed.svg",
  43427. extra: 1020/1010,
  43428. bottom: 178/1198
  43429. }
  43430. },
  43431. undressed: {
  43432. height: math.unit(6 + 4/12, "feet"),
  43433. weight: math.unit(520, "lb"),
  43434. name: "Undressed",
  43435. image: {
  43436. source: "./media/characters/someonne/undressed.svg",
  43437. extra: 1019/1014,
  43438. bottom: 169/1188
  43439. }
  43440. },
  43441. },
  43442. [
  43443. {
  43444. name: "Normal",
  43445. height: math.unit(6 + 4/12, "feet"),
  43446. default: true
  43447. },
  43448. ]
  43449. ))
  43450. characterMakers.push(() => makeCharacter(
  43451. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  43452. {
  43453. front: {
  43454. height: math.unit(3, "feet"),
  43455. weight: math.unit(30, "lb"),
  43456. name: "Front",
  43457. image: {
  43458. source: "./media/characters/till/front.svg",
  43459. extra: 892/823,
  43460. bottom: 55/947
  43461. }
  43462. },
  43463. },
  43464. [
  43465. {
  43466. name: "Normal",
  43467. height: math.unit(3, "feet"),
  43468. default: true
  43469. },
  43470. ]
  43471. ))
  43472. characterMakers.push(() => makeCharacter(
  43473. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  43474. {
  43475. front: {
  43476. height: math.unit(9 + 8/12, "feet"),
  43477. weight: math.unit(800, "lb"),
  43478. name: "Front",
  43479. image: {
  43480. source: "./media/characters/sydney-heki/front.svg",
  43481. extra: 1360/1300,
  43482. bottom: 22/1382
  43483. }
  43484. },
  43485. back: {
  43486. height: math.unit(9 + 8/12, "feet"),
  43487. weight: math.unit(800, "lb"),
  43488. name: "Back",
  43489. image: {
  43490. source: "./media/characters/sydney-heki/back.svg",
  43491. extra: 1356/1293,
  43492. bottom: 12/1368
  43493. }
  43494. },
  43495. frontDressed: {
  43496. height: math.unit(9 + 8/12, "feet"),
  43497. weight: math.unit(800, "lb"),
  43498. name: "Front-dressed",
  43499. image: {
  43500. source: "./media/characters/sydney-heki/front-dressed.svg",
  43501. extra: 1360/1300,
  43502. bottom: 22/1382
  43503. }
  43504. },
  43505. },
  43506. [
  43507. {
  43508. name: "Normal",
  43509. height: math.unit(9 + 8/12, "feet"),
  43510. default: true
  43511. },
  43512. {
  43513. name: "Macro",
  43514. height: math.unit(500, "feet")
  43515. },
  43516. {
  43517. name: "Megamacro",
  43518. height: math.unit(3.6, "miles")
  43519. },
  43520. ]
  43521. ))
  43522. characterMakers.push(() => makeCharacter(
  43523. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  43524. {
  43525. front: {
  43526. height: math.unit(200, "cm"),
  43527. weight: math.unit(250, "lb"),
  43528. name: "Front",
  43529. image: {
  43530. source: "./media/characters/fowler-karlsson/front.svg",
  43531. extra: 897/845,
  43532. bottom: 123/1020
  43533. }
  43534. },
  43535. back: {
  43536. height: math.unit(200, "cm"),
  43537. weight: math.unit(250, "lb"),
  43538. name: "Back",
  43539. image: {
  43540. source: "./media/characters/fowler-karlsson/back.svg",
  43541. extra: 999/944,
  43542. bottom: 26/1025
  43543. }
  43544. },
  43545. dick: {
  43546. height: math.unit(1.92, "feet"),
  43547. weight: math.unit(150, "lb"),
  43548. name: "Dick",
  43549. image: {
  43550. source: "./media/characters/fowler-karlsson/dick.svg"
  43551. }
  43552. },
  43553. },
  43554. [
  43555. {
  43556. name: "Normal",
  43557. height: math.unit(200, "cm"),
  43558. default: true
  43559. },
  43560. {
  43561. name: "Smaller Macro",
  43562. height: math.unit(90, "m")
  43563. },
  43564. {
  43565. name: "Macro",
  43566. height: math.unit(150, "m")
  43567. },
  43568. {
  43569. name: "Bigger Macro",
  43570. height: math.unit(300, "m")
  43571. },
  43572. ]
  43573. ))
  43574. characterMakers.push(() => makeCharacter(
  43575. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  43576. {
  43577. side: {
  43578. height: math.unit(8 + 2/12, "feet"),
  43579. weight: math.unit(1, "tonne"),
  43580. name: "Side",
  43581. image: {
  43582. source: "./media/characters/rylide/side.svg",
  43583. extra: 1318/1034,
  43584. bottom: 106/1424
  43585. }
  43586. },
  43587. sitting: {
  43588. height: math.unit(303, "cm"),
  43589. weight: math.unit(1, "tonne"),
  43590. name: "Sitting",
  43591. image: {
  43592. source: "./media/characters/rylide/sitting.svg",
  43593. extra: 1303/1103,
  43594. bottom: 36/1339
  43595. }
  43596. },
  43597. },
  43598. [
  43599. {
  43600. name: "Normal",
  43601. height: math.unit(8 + 2/12, "feet"),
  43602. default: true
  43603. },
  43604. ]
  43605. ))
  43606. characterMakers.push(() => makeCharacter(
  43607. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  43608. {
  43609. front: {
  43610. height: math.unit(5 + 10/12, "feet"),
  43611. weight: math.unit(160, "lb"),
  43612. name: "Front",
  43613. image: {
  43614. source: "./media/characters/pudask/front.svg",
  43615. extra: 1616/1590,
  43616. bottom: 161/1777
  43617. }
  43618. },
  43619. },
  43620. [
  43621. {
  43622. name: "Ferret Height",
  43623. height: math.unit(2 + 5/12, "feet")
  43624. },
  43625. {
  43626. name: "Canon Height",
  43627. height: math.unit(5 + 10/12, "feet"),
  43628. default: true
  43629. },
  43630. ]
  43631. ))
  43632. characterMakers.push(() => makeCharacter(
  43633. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  43634. {
  43635. front: {
  43636. height: math.unit(3 + 6/12, "feet"),
  43637. weight: math.unit(60, "lb"),
  43638. name: "Front",
  43639. image: {
  43640. source: "./media/characters/ramita/front.svg",
  43641. extra: 1402/1232,
  43642. bottom: 62/1464
  43643. }
  43644. },
  43645. dressed: {
  43646. height: math.unit(3 + 6/12, "feet"),
  43647. weight: math.unit(60, "lb"),
  43648. name: "Dressed",
  43649. image: {
  43650. source: "./media/characters/ramita/dressed.svg",
  43651. extra: 1534/1249,
  43652. bottom: 50/1584
  43653. }
  43654. },
  43655. },
  43656. [
  43657. {
  43658. name: "Normal",
  43659. height: math.unit(3 + 6/12, "feet"),
  43660. default: true
  43661. },
  43662. ]
  43663. ))
  43664. characterMakers.push(() => makeCharacter(
  43665. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  43666. {
  43667. front: {
  43668. height: math.unit(8, "feet"),
  43669. name: "Front",
  43670. image: {
  43671. source: "./media/characters/ark/front.svg",
  43672. extra: 772/693,
  43673. bottom: 45/817
  43674. }
  43675. },
  43676. },
  43677. [
  43678. {
  43679. name: "Normal",
  43680. height: math.unit(8, "feet"),
  43681. default: true
  43682. },
  43683. ]
  43684. ))
  43685. characterMakers.push(() => makeCharacter(
  43686. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  43687. {
  43688. front: {
  43689. height: math.unit(6, "feet"),
  43690. weight: math.unit(250, "lb"),
  43691. volume: math.unit(5/8, "gallons"),
  43692. name: "Front",
  43693. image: {
  43694. source: "./media/characters/ludwig-horn/front.svg",
  43695. extra: 1782/1635,
  43696. bottom: 96/1878
  43697. }
  43698. },
  43699. back: {
  43700. height: math.unit(6, "feet"),
  43701. weight: math.unit(250, "lb"),
  43702. volume: math.unit(5/8, "gallons"),
  43703. name: "Back",
  43704. image: {
  43705. source: "./media/characters/ludwig-horn/back.svg",
  43706. extra: 1874/1729,
  43707. bottom: 27/1901
  43708. }
  43709. },
  43710. dick: {
  43711. height: math.unit(1.05, "feet"),
  43712. weight: math.unit(15, "lb"),
  43713. volume: math.unit(5/8, "gallons"),
  43714. name: "Dick",
  43715. image: {
  43716. source: "./media/characters/ludwig-horn/dick.svg"
  43717. }
  43718. },
  43719. },
  43720. [
  43721. {
  43722. name: "Small",
  43723. height: math.unit(6, "feet")
  43724. },
  43725. {
  43726. name: "Typical",
  43727. height: math.unit(12, "feet"),
  43728. default: true
  43729. },
  43730. {
  43731. name: "Building",
  43732. height: math.unit(80, "feet")
  43733. },
  43734. {
  43735. name: "Town",
  43736. height: math.unit(800, "feet")
  43737. },
  43738. {
  43739. name: "Kingdom",
  43740. height: math.unit(80000, "feet")
  43741. },
  43742. {
  43743. name: "Planet",
  43744. height: math.unit(8000000, "feet")
  43745. },
  43746. {
  43747. name: "Universe",
  43748. height: math.unit(8000000000, "feet")
  43749. },
  43750. {
  43751. name: "Transcended",
  43752. height: math.unit(8e27, "feet")
  43753. },
  43754. ]
  43755. ))
  43756. characterMakers.push(() => makeCharacter(
  43757. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  43758. {
  43759. front: {
  43760. height: math.unit(5, "feet"),
  43761. weight: math.unit(50, "kg"),
  43762. name: "Front",
  43763. image: {
  43764. source: "./media/characters/biot-avery/front.svg",
  43765. extra: 1295/1232,
  43766. bottom: 86/1381
  43767. }
  43768. },
  43769. },
  43770. [
  43771. {
  43772. name: "Normal",
  43773. height: math.unit(5, "feet"),
  43774. default: true
  43775. },
  43776. ]
  43777. ))
  43778. characterMakers.push(() => makeCharacter(
  43779. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  43780. {
  43781. front: {
  43782. height: math.unit(6, "feet"),
  43783. name: "Front",
  43784. image: {
  43785. source: "./media/characters/kitsune-kiro/front.svg",
  43786. extra: 1270/1158,
  43787. bottom: 42/1312
  43788. }
  43789. },
  43790. frontAlt: {
  43791. height: math.unit(6, "feet"),
  43792. name: "Front-alt",
  43793. image: {
  43794. source: "./media/characters/kitsune-kiro/front-alt.svg",
  43795. extra: 1130/1081,
  43796. bottom: 36/1166
  43797. }
  43798. },
  43799. },
  43800. [
  43801. {
  43802. name: "Smol",
  43803. height: math.unit(3, "feet")
  43804. },
  43805. {
  43806. name: "Normal",
  43807. height: math.unit(6, "feet"),
  43808. default: true
  43809. },
  43810. ]
  43811. ))
  43812. characterMakers.push(() => makeCharacter(
  43813. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  43814. {
  43815. front: {
  43816. height: math.unit(6, "feet"),
  43817. weight: math.unit(125, "lb"),
  43818. name: "Front",
  43819. image: {
  43820. source: "./media/characters/jack-thatcher/front.svg",
  43821. extra: 1474/1370,
  43822. bottom: 26/1500
  43823. }
  43824. },
  43825. back: {
  43826. height: math.unit(6, "feet"),
  43827. weight: math.unit(125, "lb"),
  43828. name: "Back",
  43829. image: {
  43830. source: "./media/characters/jack-thatcher/back.svg",
  43831. extra: 1489/1384,
  43832. bottom: 18/1507
  43833. }
  43834. },
  43835. },
  43836. [
  43837. {
  43838. name: "Normal",
  43839. height: math.unit(6, "feet"),
  43840. default: true
  43841. },
  43842. {
  43843. name: "Macro",
  43844. height: math.unit(75, "feet")
  43845. },
  43846. {
  43847. name: "Macro-er",
  43848. height: math.unit(250, "feet")
  43849. },
  43850. ]
  43851. ))
  43852. characterMakers.push(() => makeCharacter(
  43853. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  43854. {
  43855. front: {
  43856. height: math.unit(7, "feet"),
  43857. weight: math.unit(110, "kg"),
  43858. name: "Front",
  43859. image: {
  43860. source: "./media/characters/max-hyper/front.svg",
  43861. extra: 1969/1881,
  43862. bottom: 49/2018
  43863. }
  43864. },
  43865. },
  43866. [
  43867. {
  43868. name: "Normal",
  43869. height: math.unit(7, "feet"),
  43870. default: true
  43871. },
  43872. ]
  43873. ))
  43874. characterMakers.push(() => makeCharacter(
  43875. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  43876. {
  43877. front: {
  43878. height: math.unit(5 + 5/12, "feet"),
  43879. weight: math.unit(160, "lb"),
  43880. name: "Front",
  43881. image: {
  43882. source: "./media/characters/spook/front.svg",
  43883. extra: 794/791,
  43884. bottom: 54/848
  43885. }
  43886. },
  43887. back: {
  43888. height: math.unit(5 + 5/12, "feet"),
  43889. weight: math.unit(160, "lb"),
  43890. name: "Back",
  43891. image: {
  43892. source: "./media/characters/spook/back.svg",
  43893. extra: 812/798,
  43894. bottom: 32/844
  43895. }
  43896. },
  43897. },
  43898. [
  43899. {
  43900. name: "Normal",
  43901. height: math.unit(5 + 5/12, "feet"),
  43902. default: true
  43903. },
  43904. ]
  43905. ))
  43906. characterMakers.push(() => makeCharacter(
  43907. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  43908. {
  43909. front: {
  43910. height: math.unit(18, "feet"),
  43911. name: "Front",
  43912. image: {
  43913. source: "./media/characters/xeaduulix/front.svg",
  43914. extra: 1380/1166,
  43915. bottom: 110/1490
  43916. }
  43917. },
  43918. back: {
  43919. height: math.unit(18, "feet"),
  43920. name: "Back",
  43921. image: {
  43922. source: "./media/characters/xeaduulix/back.svg",
  43923. extra: 1592/1170,
  43924. bottom: 128/1720
  43925. }
  43926. },
  43927. frontNsfw: {
  43928. height: math.unit(18, "feet"),
  43929. name: "Front (NSFW)",
  43930. image: {
  43931. source: "./media/characters/xeaduulix/front-nsfw.svg",
  43932. extra: 1380/1166,
  43933. bottom: 110/1490
  43934. }
  43935. },
  43936. backNsfw: {
  43937. height: math.unit(18, "feet"),
  43938. name: "Back (NSFW)",
  43939. image: {
  43940. source: "./media/characters/xeaduulix/back-nsfw.svg",
  43941. extra: 1592/1170,
  43942. bottom: 128/1720
  43943. }
  43944. },
  43945. },
  43946. [
  43947. {
  43948. name: "Normal",
  43949. height: math.unit(18, "feet"),
  43950. default: true
  43951. },
  43952. ]
  43953. ))
  43954. characterMakers.push(() => makeCharacter(
  43955. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  43956. {
  43957. spreadWings: {
  43958. height: math.unit(20, "feet"),
  43959. name: "Spread Wings",
  43960. image: {
  43961. source: "./media/characters/fledge/spread-wings.svg",
  43962. extra: 693/635,
  43963. bottom: 26/719
  43964. }
  43965. },
  43966. front: {
  43967. height: math.unit(20, "feet"),
  43968. name: "Front",
  43969. image: {
  43970. source: "./media/characters/fledge/front.svg",
  43971. extra: 684/637,
  43972. bottom: 18/702
  43973. }
  43974. },
  43975. frontAlt: {
  43976. height: math.unit(20, "feet"),
  43977. name: "Front (Alt)",
  43978. image: {
  43979. source: "./media/characters/fledge/front-alt.svg",
  43980. extra: 708/664,
  43981. bottom: 13/721
  43982. }
  43983. },
  43984. back: {
  43985. height: math.unit(20, "feet"),
  43986. name: "Back",
  43987. image: {
  43988. source: "./media/characters/fledge/back.svg",
  43989. extra: 718/634,
  43990. bottom: 22/740
  43991. }
  43992. },
  43993. head: {
  43994. height: math.unit(5.55, "feet"),
  43995. name: "Head",
  43996. image: {
  43997. source: "./media/characters/fledge/head.svg"
  43998. }
  43999. },
  44000. headAlt: {
  44001. height: math.unit(5.1, "feet"),
  44002. name: "Head (Alt)",
  44003. image: {
  44004. source: "./media/characters/fledge/head-alt.svg"
  44005. }
  44006. },
  44007. },
  44008. [
  44009. {
  44010. name: "Small",
  44011. height: math.unit(6 + 2/12, "feet")
  44012. },
  44013. {
  44014. name: "Big",
  44015. height: math.unit(20, "feet"),
  44016. default: true
  44017. },
  44018. {
  44019. name: "Giant",
  44020. height: math.unit(100, "feet")
  44021. },
  44022. {
  44023. name: "Macro",
  44024. height: math.unit(200, "feet")
  44025. },
  44026. ]
  44027. ))
  44028. characterMakers.push(() => makeCharacter(
  44029. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44030. {
  44031. front: {
  44032. height: math.unit(1, "meter"),
  44033. name: "Front",
  44034. image: {
  44035. source: "./media/characters/atlas-morenai/front.svg",
  44036. extra: 1275/1043,
  44037. bottom: 19/1294
  44038. }
  44039. },
  44040. back: {
  44041. height: math.unit(1, "meter"),
  44042. name: "Back",
  44043. image: {
  44044. source: "./media/characters/atlas-morenai/back.svg",
  44045. extra: 1141/1001,
  44046. bottom: 25/1166
  44047. }
  44048. },
  44049. },
  44050. [
  44051. {
  44052. name: "Normal",
  44053. height: math.unit(1, "meter"),
  44054. default: true
  44055. },
  44056. {
  44057. name: "Magic-Infused",
  44058. height: math.unit(5, "meters")
  44059. },
  44060. ]
  44061. ))
  44062. characterMakers.push(() => makeCharacter(
  44063. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44064. {
  44065. front: {
  44066. height: math.unit(5, "meters"),
  44067. name: "Front",
  44068. image: {
  44069. source: "./media/characters/cintia/front.svg",
  44070. extra: 1312/1228,
  44071. bottom: 38/1350
  44072. }
  44073. },
  44074. back: {
  44075. height: math.unit(5, "meters"),
  44076. name: "Back",
  44077. image: {
  44078. source: "./media/characters/cintia/back.svg",
  44079. extra: 1260/1166,
  44080. bottom: 98/1358
  44081. }
  44082. },
  44083. frontDick: {
  44084. height: math.unit(5, "meters"),
  44085. name: "Front (Dick)",
  44086. image: {
  44087. source: "./media/characters/cintia/front-dick.svg",
  44088. extra: 1312/1228,
  44089. bottom: 38/1350
  44090. }
  44091. },
  44092. backDick: {
  44093. height: math.unit(5, "meters"),
  44094. name: "Back (Dick)",
  44095. image: {
  44096. source: "./media/characters/cintia/back-dick.svg",
  44097. extra: 1260/1166,
  44098. bottom: 98/1358
  44099. }
  44100. },
  44101. bust: {
  44102. height: math.unit(1.97, "meters"),
  44103. name: "Bust",
  44104. image: {
  44105. source: "./media/characters/cintia/bust.svg",
  44106. extra: 617/565,
  44107. bottom: 0/617
  44108. }
  44109. },
  44110. },
  44111. [
  44112. {
  44113. name: "Normal",
  44114. height: math.unit(5, "meters"),
  44115. default: true
  44116. },
  44117. ]
  44118. ))
  44119. characterMakers.push(() => makeCharacter(
  44120. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  44121. {
  44122. side: {
  44123. height: math.unit(100, "feet"),
  44124. name: "Side",
  44125. image: {
  44126. source: "./media/characters/denora/side.svg",
  44127. extra: 875/803,
  44128. bottom: 9/884
  44129. }
  44130. },
  44131. },
  44132. [
  44133. {
  44134. name: "Standard",
  44135. height: math.unit(100, "feet"),
  44136. default: true
  44137. },
  44138. {
  44139. name: "Grand",
  44140. height: math.unit(1000, "feet")
  44141. },
  44142. {
  44143. name: "Conquering",
  44144. height: math.unit(10000, "feet")
  44145. },
  44146. ]
  44147. ))
  44148. characterMakers.push(() => makeCharacter(
  44149. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  44150. {
  44151. dressed: {
  44152. height: math.unit(8 + 5/12, "feet"),
  44153. weight: math.unit(700, "lb"),
  44154. name: "Dressed",
  44155. image: {
  44156. source: "./media/characters/kiva/dressed.svg",
  44157. extra: 1102/1055,
  44158. bottom: 60/1162
  44159. }
  44160. },
  44161. nude: {
  44162. height: math.unit(8 + 5/12, "feet"),
  44163. weight: math.unit(700, "lb"),
  44164. name: "Nude",
  44165. image: {
  44166. source: "./media/characters/kiva/nude.svg",
  44167. extra: 1102/1055,
  44168. bottom: 60/1162
  44169. }
  44170. },
  44171. },
  44172. [
  44173. {
  44174. name: "Base Height",
  44175. height: math.unit(8 + 5/12, "feet"),
  44176. default: true
  44177. },
  44178. {
  44179. name: "Macro",
  44180. height: math.unit(100, "feet")
  44181. },
  44182. {
  44183. name: "Max",
  44184. height: math.unit(3280, "feet")
  44185. },
  44186. ]
  44187. ))
  44188. characterMakers.push(() => makeCharacter(
  44189. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  44190. {
  44191. front: {
  44192. height: math.unit(6 + 8/12, "feet"),
  44193. weight: math.unit(250, "lb"),
  44194. name: "Front",
  44195. image: {
  44196. source: "./media/characters/ztragon/front.svg",
  44197. extra: 1825/1684,
  44198. bottom: 98/1923
  44199. }
  44200. },
  44201. },
  44202. [
  44203. {
  44204. name: "Normal",
  44205. height: math.unit(6 + 8/12, "feet"),
  44206. default: true
  44207. },
  44208. {
  44209. name: "Macro",
  44210. height: math.unit(80, "feet")
  44211. },
  44212. ]
  44213. ))
  44214. characterMakers.push(() => makeCharacter(
  44215. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  44216. {
  44217. front: {
  44218. height: math.unit(10.4, "feet"),
  44219. weight: math.unit(2, "tons"),
  44220. name: "Front",
  44221. image: {
  44222. source: "./media/characters/yesenia/front.svg",
  44223. extra: 1479/1474,
  44224. bottom: 233/1712
  44225. }
  44226. },
  44227. },
  44228. [
  44229. {
  44230. name: "Normal",
  44231. height: math.unit(10.4, "feet"),
  44232. default: true
  44233. },
  44234. ]
  44235. ))
  44236. characterMakers.push(() => makeCharacter(
  44237. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  44238. {
  44239. normal: {
  44240. height: math.unit(6 + 1/12, "feet"),
  44241. weight: math.unit(180, "lb"),
  44242. name: "Normal",
  44243. image: {
  44244. source: "./media/characters/leanne-lycheborne/normal.svg",
  44245. extra: 1748/1660,
  44246. bottom: 98/1846
  44247. }
  44248. },
  44249. were: {
  44250. height: math.unit(12, "feet"),
  44251. weight: math.unit(1600, "lb"),
  44252. name: "Were",
  44253. image: {
  44254. source: "./media/characters/leanne-lycheborne/were.svg",
  44255. extra: 1485/1432,
  44256. bottom: 66/1551
  44257. }
  44258. },
  44259. },
  44260. [
  44261. {
  44262. name: "Normal",
  44263. height: math.unit(6 + 1/12, "feet"),
  44264. default: true
  44265. },
  44266. ]
  44267. ))
  44268. characterMakers.push(() => makeCharacter(
  44269. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  44270. {
  44271. side: {
  44272. height: math.unit(13, "feet"),
  44273. name: "Side",
  44274. image: {
  44275. source: "./media/characters/kira-tyler/side.svg",
  44276. extra: 693/393,
  44277. bottom: 58/751
  44278. }
  44279. },
  44280. },
  44281. [
  44282. {
  44283. name: "Normal",
  44284. height: math.unit(13, "feet"),
  44285. default: true
  44286. },
  44287. ]
  44288. ))
  44289. characterMakers.push(() => makeCharacter(
  44290. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  44291. {
  44292. front: {
  44293. height: math.unit(10.3, "feet"),
  44294. weight: math.unit(150, "lb"),
  44295. name: "Front",
  44296. image: {
  44297. source: "./media/characters/blaze/front.svg",
  44298. extra: 1378/1286,
  44299. bottom: 172/1550
  44300. }
  44301. },
  44302. },
  44303. [
  44304. {
  44305. name: "Normal",
  44306. height: math.unit(10.3, "feet"),
  44307. default: true
  44308. },
  44309. ]
  44310. ))
  44311. characterMakers.push(() => makeCharacter(
  44312. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  44313. {
  44314. side: {
  44315. height: math.unit(2, "meters"),
  44316. weight: math.unit(400, "kg"),
  44317. name: "Side",
  44318. image: {
  44319. source: "./media/characters/anu/side.svg",
  44320. extra: 506/394,
  44321. bottom: 18/524
  44322. }
  44323. },
  44324. },
  44325. [
  44326. {
  44327. name: "Humanoid",
  44328. height: math.unit(2, "meters")
  44329. },
  44330. {
  44331. name: "Normal",
  44332. height: math.unit(5, "meters"),
  44333. default: true
  44334. },
  44335. ]
  44336. ))
  44337. characterMakers.push(() => makeCharacter(
  44338. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  44339. {
  44340. front: {
  44341. height: math.unit(5 + 5/12, "feet"),
  44342. weight: math.unit(170, "lb"),
  44343. name: "Front",
  44344. image: {
  44345. source: "./media/characters/synx-the-lynx/front.svg",
  44346. extra: 1893/1745,
  44347. bottom: 17/1910
  44348. }
  44349. },
  44350. side: {
  44351. height: math.unit(5 + 5/12, "feet"),
  44352. weight: math.unit(170, "lb"),
  44353. name: "Side",
  44354. image: {
  44355. source: "./media/characters/synx-the-lynx/side.svg",
  44356. extra: 1884/1740,
  44357. bottom: 39/1923
  44358. }
  44359. },
  44360. back: {
  44361. height: math.unit(5 + 5/12, "feet"),
  44362. weight: math.unit(170, "lb"),
  44363. name: "Back",
  44364. image: {
  44365. source: "./media/characters/synx-the-lynx/back.svg",
  44366. extra: 1903/1755,
  44367. bottom: 14/1917
  44368. }
  44369. },
  44370. },
  44371. [
  44372. {
  44373. name: "Normal",
  44374. height: math.unit(5 + 5/12, "feet"),
  44375. default: true
  44376. },
  44377. ]
  44378. ))
  44379. characterMakers.push(() => makeCharacter(
  44380. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  44381. {
  44382. back: {
  44383. height: math.unit(15, "feet"),
  44384. name: "Back",
  44385. image: {
  44386. source: "./media/characters/nadezda-fex/back.svg",
  44387. extra: 1695/1481,
  44388. bottom: 25/1720
  44389. }
  44390. },
  44391. },
  44392. [
  44393. {
  44394. name: "Normal",
  44395. height: math.unit(15, "feet"),
  44396. default: true
  44397. },
  44398. {
  44399. name: "Macro",
  44400. height: math.unit(2.5, "miles")
  44401. },
  44402. {
  44403. name: "Goddess",
  44404. height: math.unit(2, "multiverses")
  44405. },
  44406. ]
  44407. ))
  44408. characterMakers.push(() => makeCharacter(
  44409. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  44410. {
  44411. front: {
  44412. height: math.unit(216, "cm"),
  44413. name: "Front",
  44414. image: {
  44415. source: "./media/characters/lev/front.svg",
  44416. extra: 1728/1670,
  44417. bottom: 82/1810
  44418. }
  44419. },
  44420. back: {
  44421. height: math.unit(216, "cm"),
  44422. name: "Back",
  44423. image: {
  44424. source: "./media/characters/lev/back.svg",
  44425. extra: 1738/1675,
  44426. bottom: 24/1762
  44427. }
  44428. },
  44429. dressed: {
  44430. height: math.unit(216, "cm"),
  44431. name: "Dressed",
  44432. image: {
  44433. source: "./media/characters/lev/dressed.svg",
  44434. extra: 1397/1351,
  44435. bottom: 73/1470
  44436. }
  44437. },
  44438. head: {
  44439. height: math.unit(0.51, "meter"),
  44440. name: "Head",
  44441. image: {
  44442. source: "./media/characters/lev/head.svg"
  44443. }
  44444. },
  44445. },
  44446. [
  44447. {
  44448. name: "Normal",
  44449. height: math.unit(216, "cm"),
  44450. default: true
  44451. },
  44452. {
  44453. name: "Relatively Macro",
  44454. height: math.unit(80, "meters")
  44455. },
  44456. {
  44457. name: "Megamacro",
  44458. height: math.unit(21600, "meters")
  44459. },
  44460. {
  44461. name: "Megamacro+",
  44462. height: math.unit(64800, "meters")
  44463. },
  44464. ]
  44465. ))
  44466. characterMakers.push(() => makeCharacter(
  44467. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  44468. {
  44469. front: {
  44470. height: math.unit(2, "meters"),
  44471. weight: math.unit(80, "kg"),
  44472. name: "Front",
  44473. image: {
  44474. source: "./media/characters/moka/front.svg",
  44475. extra: 1337/1255,
  44476. bottom: 58/1395
  44477. }
  44478. },
  44479. },
  44480. [
  44481. {
  44482. name: "Micro",
  44483. height: math.unit(15, "cm")
  44484. },
  44485. {
  44486. name: "Normal",
  44487. height: math.unit(2, "meters"),
  44488. default: true
  44489. },
  44490. {
  44491. name: "Macro",
  44492. height: math.unit(20, "meters"),
  44493. },
  44494. ]
  44495. ))
  44496. characterMakers.push(() => makeCharacter(
  44497. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  44498. {
  44499. front: {
  44500. height: math.unit(9, "feet"),
  44501. weight: math.unit(240, "lb"),
  44502. name: "Front",
  44503. image: {
  44504. source: "./media/characters/kuzco/front.svg",
  44505. extra: 1593/1487,
  44506. bottom: 32/1625
  44507. }
  44508. },
  44509. side: {
  44510. height: math.unit(9, "feet"),
  44511. weight: math.unit(240, "lb"),
  44512. name: "Side",
  44513. image: {
  44514. source: "./media/characters/kuzco/side.svg",
  44515. extra: 1575/1485,
  44516. bottom: 30/1605
  44517. }
  44518. },
  44519. back: {
  44520. height: math.unit(9, "feet"),
  44521. weight: math.unit(240, "lb"),
  44522. name: "Back",
  44523. image: {
  44524. source: "./media/characters/kuzco/back.svg",
  44525. extra: 1603/1514,
  44526. bottom: 14/1617
  44527. }
  44528. },
  44529. },
  44530. [
  44531. {
  44532. name: "Normal",
  44533. height: math.unit(9, "feet"),
  44534. default: true
  44535. },
  44536. ]
  44537. ))
  44538. characterMakers.push(() => makeCharacter(
  44539. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  44540. {
  44541. side: {
  44542. height: math.unit(2, "meters"),
  44543. weight: math.unit(300, "kg"),
  44544. name: "Side",
  44545. image: {
  44546. source: "./media/characters/ceruleus/side.svg",
  44547. extra: 1068/974,
  44548. bottom: 126/1194
  44549. }
  44550. },
  44551. },
  44552. [
  44553. {
  44554. name: "Normal",
  44555. height: math.unit(16, "meters"),
  44556. default: true
  44557. },
  44558. ]
  44559. ))
  44560. characterMakers.push(() => makeCharacter(
  44561. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  44562. {
  44563. front: {
  44564. height: math.unit(9, "feet"),
  44565. weight: math.unit(500, "kg"),
  44566. name: "Front",
  44567. image: {
  44568. source: "./media/characters/acouya/front.svg",
  44569. extra: 1660/1473,
  44570. bottom: 28/1688
  44571. }
  44572. },
  44573. },
  44574. [
  44575. {
  44576. name: "Normal",
  44577. height: math.unit(9, "feet"),
  44578. default: true
  44579. },
  44580. ]
  44581. ))
  44582. characterMakers.push(() => makeCharacter(
  44583. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  44584. {
  44585. front: {
  44586. height: math.unit(5 + 6/12, "feet"),
  44587. weight: math.unit(195, "lb"),
  44588. name: "Front",
  44589. image: {
  44590. source: "./media/characters/vant/front.svg",
  44591. extra: 1396/1320,
  44592. bottom: 20/1416
  44593. }
  44594. },
  44595. back: {
  44596. height: math.unit(5 + 6/12, "feet"),
  44597. weight: math.unit(195, "lb"),
  44598. name: "Back",
  44599. image: {
  44600. source: "./media/characters/vant/back.svg",
  44601. extra: 1396/1320,
  44602. bottom: 20/1416
  44603. }
  44604. },
  44605. maw: {
  44606. height: math.unit(0.75, "feet"),
  44607. name: "Maw",
  44608. image: {
  44609. source: "./media/characters/vant/maw.svg"
  44610. }
  44611. },
  44612. paw: {
  44613. height: math.unit(1.07, "feet"),
  44614. name: "Paw",
  44615. image: {
  44616. source: "./media/characters/vant/paw.svg"
  44617. }
  44618. },
  44619. },
  44620. [
  44621. {
  44622. name: "Micro",
  44623. height: math.unit(0.25, "inches")
  44624. },
  44625. {
  44626. name: "Normal",
  44627. height: math.unit(5 + 6/12, "feet"),
  44628. default: true
  44629. },
  44630. {
  44631. name: "Macro",
  44632. height: math.unit(75, "feet")
  44633. },
  44634. ]
  44635. ))
  44636. characterMakers.push(() => makeCharacter(
  44637. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  44638. {
  44639. front: {
  44640. height: math.unit(30, "meters"),
  44641. weight: math.unit(363, "tons"),
  44642. name: "Front",
  44643. image: {
  44644. source: "./media/characters/ahra/front.svg",
  44645. extra: 1914/1814,
  44646. bottom: 46/1960
  44647. }
  44648. },
  44649. },
  44650. [
  44651. {
  44652. name: "Macro",
  44653. height: math.unit(30, "meters"),
  44654. default: true
  44655. },
  44656. ]
  44657. ))
  44658. characterMakers.push(() => makeCharacter(
  44659. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  44660. {
  44661. undressed: {
  44662. height: math.unit(2, "m"),
  44663. weight: math.unit(250, "kg"),
  44664. name: "Undressed",
  44665. image: {
  44666. source: "./media/characters/coriander/undressed.svg",
  44667. extra: 1757/1606,
  44668. bottom: 107/1864
  44669. }
  44670. },
  44671. dressed: {
  44672. height: math.unit(2, "m"),
  44673. weight: math.unit(250, "kg"),
  44674. name: "Dressed",
  44675. image: {
  44676. source: "./media/characters/coriander/dressed.svg",
  44677. extra: 1757/1606,
  44678. bottom: 107/1864
  44679. }
  44680. },
  44681. },
  44682. [
  44683. {
  44684. name: "Normal",
  44685. height: math.unit(4, "meters"),
  44686. default: true
  44687. },
  44688. {
  44689. name: "XL",
  44690. height: math.unit(6, "meters")
  44691. },
  44692. {
  44693. name: "XXL",
  44694. height: math.unit(8, "meters")
  44695. },
  44696. ]
  44697. ))
  44698. characterMakers.push(() => makeCharacter(
  44699. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  44700. {
  44701. front: {
  44702. height: math.unit(6, "feet"),
  44703. name: "Front",
  44704. image: {
  44705. source: "./media/characters/syrinx/front.svg",
  44706. extra: 1557/1259,
  44707. bottom: 171/1728
  44708. }
  44709. },
  44710. },
  44711. [
  44712. {
  44713. name: "Normal",
  44714. height: math.unit(6 + 3/12, "feet"),
  44715. default: true
  44716. },
  44717. ]
  44718. ))
  44719. characterMakers.push(() => makeCharacter(
  44720. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  44721. {
  44722. front: {
  44723. height: math.unit(11 + 6/12, "feet"),
  44724. weight: math.unit(1.5, "tons"),
  44725. name: "Front",
  44726. image: {
  44727. source: "./media/characters/bor/front.svg",
  44728. extra: 1189/1109,
  44729. bottom: 170/1359
  44730. }
  44731. },
  44732. },
  44733. [
  44734. {
  44735. name: "Normal",
  44736. height: math.unit(11 + 6/12, "feet"),
  44737. default: true
  44738. },
  44739. {
  44740. name: "Macro",
  44741. height: math.unit(32 + 9/12, "feet")
  44742. },
  44743. ]
  44744. ))
  44745. characterMakers.push(() => makeCharacter(
  44746. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  44747. {
  44748. anthro: {
  44749. height: math.unit(9, "feet"),
  44750. weight: math.unit(2076, "lb"),
  44751. name: "Anthro",
  44752. image: {
  44753. source: "./media/characters/abacus/anthro.svg",
  44754. extra: 1540/1494,
  44755. bottom: 233/1773
  44756. }
  44757. },
  44758. pigeon: {
  44759. height: math.unit(1, "feet"),
  44760. name: "Pigeon",
  44761. image: {
  44762. source: "./media/characters/abacus/pigeon.svg",
  44763. extra: 528/525,
  44764. bottom: 46/574
  44765. }
  44766. },
  44767. },
  44768. [
  44769. {
  44770. name: "Normal",
  44771. height: math.unit(9, "feet"),
  44772. default: true
  44773. },
  44774. ]
  44775. ))
  44776. characterMakers.push(() => makeCharacter(
  44777. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  44778. {
  44779. side: {
  44780. height: math.unit(6, "feet"),
  44781. name: "Side",
  44782. image: {
  44783. source: "./media/characters/delkhan/side.svg",
  44784. extra: 1884/1786,
  44785. bottom: 308/2192
  44786. }
  44787. },
  44788. head: {
  44789. height: math.unit(3.38, "feet"),
  44790. name: "Head",
  44791. image: {
  44792. source: "./media/characters/delkhan/head.svg"
  44793. }
  44794. },
  44795. },
  44796. [
  44797. {
  44798. name: "Normal",
  44799. height: math.unit(72, "feet"),
  44800. default: true
  44801. },
  44802. {
  44803. name: "Giant",
  44804. height: math.unit(172, "feet")
  44805. },
  44806. ]
  44807. ))
  44808. characterMakers.push(() => makeCharacter(
  44809. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  44810. {
  44811. standing: {
  44812. height: math.unit(6, "feet"),
  44813. name: "Standing",
  44814. image: {
  44815. source: "./media/characters/euchidat/standing.svg",
  44816. extra: 1612/1553,
  44817. bottom: 116/1728
  44818. }
  44819. },
  44820. leaning: {
  44821. height: math.unit(6, "feet"),
  44822. name: "Leaning",
  44823. image: {
  44824. source: "./media/characters/euchidat/leaning.svg",
  44825. extra: 1719/1674,
  44826. bottom: 27/1746
  44827. }
  44828. },
  44829. },
  44830. [
  44831. {
  44832. name: "Normal",
  44833. height: math.unit(175, "feet"),
  44834. default: true
  44835. },
  44836. {
  44837. name: "Megamacro",
  44838. height: math.unit(190, "miles")
  44839. },
  44840. {
  44841. name: "Gigamacro",
  44842. height: math.unit(190000, "miles")
  44843. },
  44844. ]
  44845. ))
  44846. characterMakers.push(() => makeCharacter(
  44847. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  44848. {
  44849. front: {
  44850. height: math.unit(6, "feet"),
  44851. weight: math.unit(150, "lb"),
  44852. name: "Front",
  44853. image: {
  44854. source: "./media/characters/rebecca-stack/front.svg",
  44855. extra: 1256/1201,
  44856. bottom: 18/1274
  44857. }
  44858. },
  44859. },
  44860. [
  44861. {
  44862. name: "Normal",
  44863. height: math.unit(5 + 8/12, "feet"),
  44864. default: true
  44865. },
  44866. {
  44867. name: "Demolitionist",
  44868. height: math.unit(200, "feet")
  44869. },
  44870. {
  44871. name: "Out of Control",
  44872. height: math.unit(2, "miles")
  44873. },
  44874. {
  44875. name: "Giga",
  44876. height: math.unit(7200, "miles")
  44877. },
  44878. ]
  44879. ))
  44880. characterMakers.push(() => makeCharacter(
  44881. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  44882. {
  44883. front: {
  44884. height: math.unit(6, "feet"),
  44885. weight: math.unit(150, "lb"),
  44886. name: "Front",
  44887. image: {
  44888. source: "./media/characters/jenny-cartwright/front.svg",
  44889. extra: 1384/1376,
  44890. bottom: 58/1442
  44891. }
  44892. },
  44893. },
  44894. [
  44895. {
  44896. name: "Normal",
  44897. height: math.unit(6 + 7/12, "feet"),
  44898. default: true
  44899. },
  44900. {
  44901. name: "Librarian",
  44902. height: math.unit(55, "feet")
  44903. },
  44904. {
  44905. name: "Sightseer",
  44906. height: math.unit(50, "miles")
  44907. },
  44908. {
  44909. name: "Giga",
  44910. height: math.unit(30000, "miles")
  44911. },
  44912. ]
  44913. ))
  44914. characterMakers.push(() => makeCharacter(
  44915. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  44916. {
  44917. nude: {
  44918. height: math.unit(8, "feet"),
  44919. weight: math.unit(225, "lb"),
  44920. name: "Nude",
  44921. image: {
  44922. source: "./media/characters/marvy/nude.svg",
  44923. extra: 1900/1683,
  44924. bottom: 89/1989
  44925. }
  44926. },
  44927. dressed: {
  44928. height: math.unit(8, "feet"),
  44929. weight: math.unit(225, "lb"),
  44930. name: "Dressed",
  44931. image: {
  44932. source: "./media/characters/marvy/dressed.svg",
  44933. extra: 1900/1683,
  44934. bottom: 89/1989
  44935. }
  44936. },
  44937. head: {
  44938. height: math.unit(2.85, "feet"),
  44939. name: "Head",
  44940. image: {
  44941. source: "./media/characters/marvy/head.svg"
  44942. }
  44943. },
  44944. },
  44945. [
  44946. {
  44947. name: "Normal",
  44948. height: math.unit(8, "feet"),
  44949. default: true
  44950. },
  44951. ]
  44952. ))
  44953. characterMakers.push(() => makeCharacter(
  44954. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  44955. {
  44956. front: {
  44957. height: math.unit(8, "feet"),
  44958. weight: math.unit(250, "lb"),
  44959. name: "Front",
  44960. image: {
  44961. source: "./media/characters/leah/front.svg",
  44962. extra: 1257/1149,
  44963. bottom: 109/1366
  44964. }
  44965. },
  44966. },
  44967. [
  44968. {
  44969. name: "Normal",
  44970. height: math.unit(8, "feet"),
  44971. default: true
  44972. },
  44973. {
  44974. name: "Minimacro",
  44975. height: math.unit(40, "feet")
  44976. },
  44977. {
  44978. name: "Macro",
  44979. height: math.unit(124, "feet")
  44980. },
  44981. {
  44982. name: "Megamacro",
  44983. height: math.unit(850, "feet")
  44984. },
  44985. ]
  44986. ))
  44987. characterMakers.push(() => makeCharacter(
  44988. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  44989. {
  44990. side: {
  44991. height: math.unit(13 + 6/12, "feet"),
  44992. weight: math.unit(3200, "lb"),
  44993. name: "Side",
  44994. image: {
  44995. source: "./media/characters/alvir/side.svg",
  44996. extra: 896/589,
  44997. bottom: 26/922
  44998. }
  44999. },
  45000. },
  45001. [
  45002. {
  45003. name: "Normal",
  45004. height: math.unit(13 + 6/12, "feet"),
  45005. default: true
  45006. },
  45007. ]
  45008. ))
  45009. characterMakers.push(() => makeCharacter(
  45010. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45011. {
  45012. front: {
  45013. height: math.unit(5 + 4/12, "feet"),
  45014. weight: math.unit(236, "lb"),
  45015. name: "Front",
  45016. image: {
  45017. source: "./media/characters/zaina-khalil/front.svg",
  45018. extra: 1533/1485,
  45019. bottom: 94/1627
  45020. }
  45021. },
  45022. side: {
  45023. height: math.unit(5 + 4/12, "feet"),
  45024. weight: math.unit(236, "lb"),
  45025. name: "Side",
  45026. image: {
  45027. source: "./media/characters/zaina-khalil/side.svg",
  45028. extra: 1537/1498,
  45029. bottom: 66/1603
  45030. }
  45031. },
  45032. back: {
  45033. height: math.unit(5 + 4/12, "feet"),
  45034. weight: math.unit(236, "lb"),
  45035. name: "Back",
  45036. image: {
  45037. source: "./media/characters/zaina-khalil/back.svg",
  45038. extra: 1546/1494,
  45039. bottom: 89/1635
  45040. }
  45041. },
  45042. },
  45043. [
  45044. {
  45045. name: "Normal",
  45046. height: math.unit(5 + 4/12, "feet"),
  45047. default: true
  45048. },
  45049. ]
  45050. ))
  45051. characterMakers.push(() => makeCharacter(
  45052. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45053. {
  45054. side: {
  45055. height: math.unit(12, "feet"),
  45056. weight: math.unit(4000, "lb"),
  45057. name: "Side",
  45058. image: {
  45059. source: "./media/characters/terry/side.svg",
  45060. extra: 1518/1439,
  45061. bottom: 149/1667
  45062. }
  45063. },
  45064. },
  45065. [
  45066. {
  45067. name: "Normal",
  45068. height: math.unit(12, "feet"),
  45069. default: true
  45070. },
  45071. ]
  45072. ))
  45073. characterMakers.push(() => makeCharacter(
  45074. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45075. {
  45076. front: {
  45077. height: math.unit(12, "feet"),
  45078. weight: math.unit(1500, "lb"),
  45079. name: "Front",
  45080. image: {
  45081. source: "./media/characters/kahea/front.svg",
  45082. extra: 1722/1617,
  45083. bottom: 179/1901
  45084. }
  45085. },
  45086. },
  45087. [
  45088. {
  45089. name: "Normal",
  45090. height: math.unit(12, "feet"),
  45091. default: true
  45092. },
  45093. ]
  45094. ))
  45095. characterMakers.push(() => makeCharacter(
  45096. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45097. {
  45098. demonFront: {
  45099. height: math.unit(36, "feet"),
  45100. name: "Front",
  45101. image: {
  45102. source: "./media/characters/alex-xuria/demon-front.svg",
  45103. extra: 1705/1673,
  45104. bottom: 198/1903
  45105. },
  45106. form: "demon",
  45107. default: true
  45108. },
  45109. demonBack: {
  45110. height: math.unit(36, "feet"),
  45111. name: "Back",
  45112. image: {
  45113. source: "./media/characters/alex-xuria/demon-back.svg",
  45114. extra: 1725/1693,
  45115. bottom: 70/1795
  45116. },
  45117. form: "demon"
  45118. },
  45119. demonHead: {
  45120. height: math.unit(2.14, "meters"),
  45121. name: "Head",
  45122. image: {
  45123. source: "./media/characters/alex-xuria/demon-head.svg"
  45124. },
  45125. form: "demon"
  45126. },
  45127. demonHand: {
  45128. height: math.unit(1.61, "meters"),
  45129. name: "Hand",
  45130. image: {
  45131. source: "./media/characters/alex-xuria/demon-hand.svg"
  45132. },
  45133. form: "demon"
  45134. },
  45135. demonPaw: {
  45136. height: math.unit(1.35, "meters"),
  45137. name: "Paw",
  45138. image: {
  45139. source: "./media/characters/alex-xuria/demon-paw.svg"
  45140. },
  45141. form: "demon"
  45142. },
  45143. demonFoot: {
  45144. height: math.unit(2.2, "meters"),
  45145. name: "Foot",
  45146. image: {
  45147. source: "./media/characters/alex-xuria/demon-foot.svg"
  45148. },
  45149. form: "demon"
  45150. },
  45151. demonCock: {
  45152. height: math.unit(1.74, "meters"),
  45153. name: "Cock",
  45154. image: {
  45155. source: "./media/characters/alex-xuria/demon-cock.svg"
  45156. },
  45157. form: "demon"
  45158. },
  45159. demonTailClosed: {
  45160. height: math.unit(1.47, "meters"),
  45161. name: "Tail (Closed)",
  45162. image: {
  45163. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  45164. },
  45165. form: "demon"
  45166. },
  45167. demonTailOpen: {
  45168. height: math.unit(2.85, "meters"),
  45169. name: "Tail (Open)",
  45170. image: {
  45171. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  45172. },
  45173. form: "demon"
  45174. },
  45175. incubusFront: {
  45176. height: math.unit(12, "feet"),
  45177. name: "Front",
  45178. image: {
  45179. source: "./media/characters/alex-xuria/incubus-front.svg",
  45180. extra: 1754/1677,
  45181. bottom: 125/1879
  45182. },
  45183. form: "incubus",
  45184. default: true
  45185. },
  45186. incubusBack: {
  45187. height: math.unit(12, "feet"),
  45188. name: "Back",
  45189. image: {
  45190. source: "./media/characters/alex-xuria/incubus-back.svg",
  45191. extra: 1702/1647,
  45192. bottom: 30/1732
  45193. },
  45194. form: "incubus"
  45195. },
  45196. incubusHead: {
  45197. height: math.unit(3.45, "feet"),
  45198. name: "Head",
  45199. image: {
  45200. source: "./media/characters/alex-xuria/incubus-head.svg"
  45201. },
  45202. form: "incubus"
  45203. },
  45204. rabbitFront: {
  45205. height: math.unit(6, "feet"),
  45206. name: "Front",
  45207. image: {
  45208. source: "./media/characters/alex-xuria/rabbit-front.svg",
  45209. extra: 1369/1349,
  45210. bottom: 45/1414
  45211. },
  45212. form: "rabbit",
  45213. default: true
  45214. },
  45215. rabbitSide: {
  45216. height: math.unit(6, "feet"),
  45217. name: "Side",
  45218. image: {
  45219. source: "./media/characters/alex-xuria/rabbit-side.svg",
  45220. extra: 1370/1356,
  45221. bottom: 37/1407
  45222. },
  45223. form: "rabbit"
  45224. },
  45225. rabbitBack: {
  45226. height: math.unit(6, "feet"),
  45227. name: "Back",
  45228. image: {
  45229. source: "./media/characters/alex-xuria/rabbit-back.svg",
  45230. extra: 1375/1358,
  45231. bottom: 43/1418
  45232. },
  45233. form: "rabbit"
  45234. },
  45235. },
  45236. [
  45237. {
  45238. name: "Normal",
  45239. height: math.unit(6, "feet"),
  45240. default: true,
  45241. form: "rabbit"
  45242. },
  45243. {
  45244. name: "Incubus",
  45245. height: math.unit(12, "feet"),
  45246. default: true,
  45247. form: "incubus"
  45248. },
  45249. {
  45250. name: "Demon",
  45251. height: math.unit(36, "feet"),
  45252. default: true,
  45253. form: "demon"
  45254. }
  45255. ],
  45256. {
  45257. "demon": {
  45258. name: "Demon",
  45259. default: true
  45260. },
  45261. "incubus": {
  45262. name: "Incubus",
  45263. },
  45264. "rabbit": {
  45265. name: "Rabbit"
  45266. }
  45267. }
  45268. ))
  45269. characterMakers.push(() => makeCharacter(
  45270. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  45271. {
  45272. front: {
  45273. height: math.unit(7 + 5/12, "feet"),
  45274. weight: math.unit(510, "lb"),
  45275. name: "Front",
  45276. image: {
  45277. source: "./media/characters/syrup/front.svg",
  45278. extra: 932/916,
  45279. bottom: 26/958
  45280. }
  45281. },
  45282. },
  45283. [
  45284. {
  45285. name: "Normal",
  45286. height: math.unit(7 + 5/12, "feet"),
  45287. default: true
  45288. },
  45289. {
  45290. name: "Big",
  45291. height: math.unit(50, "feet")
  45292. },
  45293. {
  45294. name: "Macro",
  45295. height: math.unit(300, "feet")
  45296. },
  45297. {
  45298. name: "Megamacro",
  45299. height: math.unit(1, "mile")
  45300. },
  45301. ]
  45302. ))
  45303. characterMakers.push(() => makeCharacter(
  45304. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  45305. {
  45306. front: {
  45307. height: math.unit(6 + 9/12, "feet"),
  45308. name: "Front",
  45309. image: {
  45310. source: "./media/characters/zeimne/front.svg",
  45311. extra: 1969/1806,
  45312. bottom: 53/2022
  45313. }
  45314. },
  45315. },
  45316. [
  45317. {
  45318. name: "Normal",
  45319. height: math.unit(6 + 9/12, "feet"),
  45320. default: true
  45321. },
  45322. {
  45323. name: "Giant",
  45324. height: math.unit(550, "feet")
  45325. },
  45326. {
  45327. name: "Mega",
  45328. height: math.unit(3, "miles")
  45329. },
  45330. {
  45331. name: "Giga",
  45332. height: math.unit(250, "miles")
  45333. },
  45334. {
  45335. name: "Tera",
  45336. height: math.unit(1, "AU")
  45337. },
  45338. ]
  45339. ))
  45340. characterMakers.push(() => makeCharacter(
  45341. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  45342. {
  45343. front: {
  45344. height: math.unit(5 + 2/12, "feet"),
  45345. name: "Front",
  45346. image: {
  45347. source: "./media/characters/grar/front.svg",
  45348. extra: 1331/1119,
  45349. bottom: 60/1391
  45350. }
  45351. },
  45352. back: {
  45353. height: math.unit(5 + 2/12, "feet"),
  45354. name: "Back",
  45355. image: {
  45356. source: "./media/characters/grar/back.svg",
  45357. extra: 1385/1169,
  45358. bottom: 23/1408
  45359. }
  45360. },
  45361. },
  45362. [
  45363. {
  45364. name: "Normal",
  45365. height: math.unit(5 + 2/12, "feet"),
  45366. default: true
  45367. },
  45368. ]
  45369. ))
  45370. characterMakers.push(() => makeCharacter(
  45371. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  45372. {
  45373. front: {
  45374. height: math.unit(13 + 7/12, "feet"),
  45375. weight: math.unit(2200, "lb"),
  45376. name: "Front",
  45377. image: {
  45378. source: "./media/characters/endraya/front.svg",
  45379. extra: 1289/1215,
  45380. bottom: 50/1339
  45381. }
  45382. },
  45383. nude: {
  45384. height: math.unit(13 + 7/12, "feet"),
  45385. weight: math.unit(2200, "lb"),
  45386. name: "Nude",
  45387. image: {
  45388. source: "./media/characters/endraya/nude.svg",
  45389. extra: 1247/1171,
  45390. bottom: 40/1287
  45391. }
  45392. },
  45393. head: {
  45394. height: math.unit(2.6, "feet"),
  45395. name: "Head",
  45396. image: {
  45397. source: "./media/characters/endraya/head.svg"
  45398. }
  45399. },
  45400. slit: {
  45401. height: math.unit(3.4, "feet"),
  45402. name: "Slit",
  45403. image: {
  45404. source: "./media/characters/endraya/slit.svg"
  45405. }
  45406. },
  45407. },
  45408. [
  45409. {
  45410. name: "Normal",
  45411. height: math.unit(13 + 7/12, "feet"),
  45412. default: true
  45413. },
  45414. {
  45415. name: "Macro",
  45416. height: math.unit(200, "feet")
  45417. },
  45418. ]
  45419. ))
  45420. characterMakers.push(() => makeCharacter(
  45421. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  45422. {
  45423. front: {
  45424. height: math.unit(412, "meters"),
  45425. name: "Front",
  45426. image: {
  45427. source: "./media/characters/rodryana/front.svg",
  45428. extra: 2002/1921,
  45429. bottom: 53/2055
  45430. }
  45431. },
  45432. back: {
  45433. height: math.unit(412, "meters"),
  45434. name: "Back",
  45435. image: {
  45436. source: "./media/characters/rodryana/back.svg",
  45437. extra: 1993/1926,
  45438. bottom: 48/2041
  45439. }
  45440. },
  45441. maw: {
  45442. height: math.unit(45, "meters"),
  45443. name: "Maw",
  45444. image: {
  45445. source: "./media/characters/rodryana/maw.svg"
  45446. }
  45447. },
  45448. slit: {
  45449. height: math.unit(72, "meters"),
  45450. name: "Slit",
  45451. image: {
  45452. source: "./media/characters/rodryana/slit.svg"
  45453. }
  45454. },
  45455. },
  45456. [
  45457. {
  45458. name: "Macro",
  45459. height: math.unit(412, "meters"),
  45460. default: true
  45461. },
  45462. ]
  45463. ))
  45464. characterMakers.push(() => makeCharacter(
  45465. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  45466. {
  45467. front: {
  45468. height: math.unit(6, "feet"),
  45469. weight: math.unit(1000, "lb"),
  45470. name: "Front",
  45471. image: {
  45472. source: "./media/characters/asaya/front.svg",
  45473. extra: 1460/1200,
  45474. bottom: 71/1531
  45475. }
  45476. },
  45477. },
  45478. [
  45479. {
  45480. name: "Normal",
  45481. height: math.unit(8, "km"),
  45482. default: true
  45483. },
  45484. ]
  45485. ))
  45486. characterMakers.push(() => makeCharacter(
  45487. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  45488. {
  45489. front: {
  45490. height: math.unit(3.5, "meters"),
  45491. name: "Front",
  45492. image: {
  45493. source: "./media/characters/sarzu-and-israz/front.svg",
  45494. extra: 1570/1558,
  45495. bottom: 150/1720
  45496. },
  45497. },
  45498. back: {
  45499. height: math.unit(3.5, "meters"),
  45500. name: "Back",
  45501. image: {
  45502. source: "./media/characters/sarzu-and-israz/back.svg",
  45503. extra: 1523/1509,
  45504. bottom: 132/1655
  45505. },
  45506. },
  45507. frontFemale: {
  45508. height: math.unit(3.5, "meters"),
  45509. name: "Front (Female)",
  45510. image: {
  45511. source: "./media/characters/sarzu-and-israz/front-female.svg",
  45512. extra: 1570/1558,
  45513. bottom: 150/1720
  45514. },
  45515. },
  45516. frontHerm: {
  45517. height: math.unit(3.5, "meters"),
  45518. name: "Front (Herm)",
  45519. image: {
  45520. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  45521. extra: 1570/1558,
  45522. bottom: 150/1720
  45523. },
  45524. },
  45525. },
  45526. [
  45527. {
  45528. name: "Normal",
  45529. height: math.unit(3.5, "meters"),
  45530. default: true,
  45531. },
  45532. {
  45533. name: "Macro",
  45534. height: math.unit(65.5, "meters"),
  45535. },
  45536. ],
  45537. ))
  45538. characterMakers.push(() => makeCharacter(
  45539. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  45540. {
  45541. front: {
  45542. height: math.unit(6, "feet"),
  45543. weight: math.unit(250, "lb"),
  45544. name: "Front",
  45545. image: {
  45546. source: "./media/characters/zenimma/front.svg",
  45547. extra: 1346/1320,
  45548. bottom: 58/1404
  45549. }
  45550. },
  45551. back: {
  45552. height: math.unit(6, "feet"),
  45553. weight: math.unit(250, "lb"),
  45554. name: "Back",
  45555. image: {
  45556. source: "./media/characters/zenimma/back.svg",
  45557. extra: 1324/1308,
  45558. bottom: 44/1368
  45559. }
  45560. },
  45561. dick: {
  45562. height: math.unit(1.44, "feet"),
  45563. name: "Dick",
  45564. image: {
  45565. source: "./media/characters/zenimma/dick.svg"
  45566. }
  45567. },
  45568. },
  45569. [
  45570. {
  45571. name: "Canon Height",
  45572. height: math.unit(66, "miles"),
  45573. default: true
  45574. },
  45575. ]
  45576. ))
  45577. characterMakers.push(() => makeCharacter(
  45578. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  45579. {
  45580. nude: {
  45581. height: math.unit(6, "feet"),
  45582. weight: math.unit(150, "lb"),
  45583. name: "Nude",
  45584. image: {
  45585. source: "./media/characters/shavon/nude.svg",
  45586. extra: 1242/1096,
  45587. bottom: 98/1340
  45588. }
  45589. },
  45590. dressed: {
  45591. height: math.unit(6, "feet"),
  45592. weight: math.unit(150, "lb"),
  45593. name: "Dressed",
  45594. image: {
  45595. source: "./media/characters/shavon/dressed.svg",
  45596. extra: 1242/1096,
  45597. bottom: 98/1340
  45598. }
  45599. },
  45600. },
  45601. [
  45602. {
  45603. name: "Macro",
  45604. height: math.unit(255, "feet"),
  45605. default: true
  45606. },
  45607. ]
  45608. ))
  45609. characterMakers.push(() => makeCharacter(
  45610. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  45611. {
  45612. front: {
  45613. height: math.unit(6, "feet"),
  45614. name: "Front",
  45615. image: {
  45616. source: "./media/characters/steph/front.svg",
  45617. extra: 1430/1330,
  45618. bottom: 54/1484
  45619. }
  45620. },
  45621. },
  45622. [
  45623. {
  45624. name: "Normal",
  45625. height: math.unit(6, "feet"),
  45626. default: true
  45627. },
  45628. ]
  45629. ))
  45630. characterMakers.push(() => makeCharacter(
  45631. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  45632. {
  45633. front: {
  45634. height: math.unit(9, "feet"),
  45635. weight: math.unit(400, "lb"),
  45636. name: "Front",
  45637. image: {
  45638. source: "./media/characters/kil'aman/front.svg",
  45639. extra: 1210/1159,
  45640. bottom: 109/1319
  45641. }
  45642. },
  45643. head: {
  45644. height: math.unit(2.14, "feet"),
  45645. name: "Head",
  45646. image: {
  45647. source: "./media/characters/kil'aman/head.svg"
  45648. }
  45649. },
  45650. maw: {
  45651. height: math.unit(1.21, "feet"),
  45652. name: "Maw",
  45653. image: {
  45654. source: "./media/characters/kil'aman/maw.svg"
  45655. }
  45656. },
  45657. foot: {
  45658. height: math.unit(1.7, "feet"),
  45659. name: "Foot",
  45660. image: {
  45661. source: "./media/characters/kil'aman/foot.svg"
  45662. }
  45663. },
  45664. dick: {
  45665. height: math.unit(2.1, "feet"),
  45666. name: "Dick",
  45667. image: {
  45668. source: "./media/characters/kil'aman/dick.svg"
  45669. }
  45670. },
  45671. },
  45672. [
  45673. {
  45674. name: "Normal",
  45675. height: math.unit(9, "feet")
  45676. },
  45677. {
  45678. name: "Canon Height",
  45679. height: math.unit(10, "miles"),
  45680. default: true
  45681. },
  45682. {
  45683. name: "Maximum",
  45684. height: math.unit(6e9, "miles")
  45685. },
  45686. ]
  45687. ))
  45688. characterMakers.push(() => makeCharacter(
  45689. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  45690. {
  45691. front: {
  45692. height: math.unit(90, "feet"),
  45693. weight: math.unit(675000, "lb"),
  45694. name: "Front",
  45695. image: {
  45696. source: "./media/characters/qadan/front.svg",
  45697. extra: 1012/1004,
  45698. bottom: 78/1090
  45699. }
  45700. },
  45701. back: {
  45702. height: math.unit(90, "feet"),
  45703. weight: math.unit(675000, "lb"),
  45704. name: "Back",
  45705. image: {
  45706. source: "./media/characters/qadan/back.svg",
  45707. extra: 1042/1031,
  45708. bottom: 55/1097
  45709. }
  45710. },
  45711. armored: {
  45712. height: math.unit(90, "feet"),
  45713. weight: math.unit(675000, "lb"),
  45714. name: "Armored",
  45715. image: {
  45716. source: "./media/characters/qadan/armored.svg",
  45717. extra: 1047/1037,
  45718. bottom: 48/1095
  45719. }
  45720. },
  45721. },
  45722. [
  45723. {
  45724. name: "Normal",
  45725. height: math.unit(90, "feet"),
  45726. default: true
  45727. },
  45728. ]
  45729. ))
  45730. characterMakers.push(() => makeCharacter(
  45731. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  45732. {
  45733. front: {
  45734. height: math.unit(6, "feet"),
  45735. weight: math.unit(225, "lb"),
  45736. name: "Front",
  45737. image: {
  45738. source: "./media/characters/brooke/front.svg",
  45739. extra: 1050/1010,
  45740. bottom: 66/1116
  45741. }
  45742. },
  45743. back: {
  45744. height: math.unit(6, "feet"),
  45745. weight: math.unit(225, "lb"),
  45746. name: "Back",
  45747. image: {
  45748. source: "./media/characters/brooke/back.svg",
  45749. extra: 1053/1013,
  45750. bottom: 41/1094
  45751. }
  45752. },
  45753. dressed: {
  45754. height: math.unit(6, "feet"),
  45755. weight: math.unit(225, "lb"),
  45756. name: "Dressed",
  45757. image: {
  45758. source: "./media/characters/brooke/dressed.svg",
  45759. extra: 1050/1010,
  45760. bottom: 66/1116
  45761. }
  45762. },
  45763. },
  45764. [
  45765. {
  45766. name: "Canon Height",
  45767. height: math.unit(500, "miles"),
  45768. default: true
  45769. },
  45770. ]
  45771. ))
  45772. //characters
  45773. function makeCharacters() {
  45774. const results = [];
  45775. characterMakers.forEach(character => {
  45776. results.push(character());
  45777. });
  45778. return results;
  45779. }