less copy protection, more size visualization
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

49721 lignes
1.2 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.energyNeed) {
  46. views[key].attributes.capacity = {
  47. name: "Food Intake",
  48. power: 3,
  49. type: "energy",
  50. base: value.energyNeed
  51. }
  52. }
  53. });
  54. return createEntityMaker(info, views, defaultSizes, forms);
  55. }
  56. const speciesData = {
  57. animal: {
  58. name: "Animal"
  59. },
  60. dog: {
  61. name: "Dog",
  62. parents: [
  63. "canine"
  64. ]
  65. },
  66. canine: {
  67. name: "Canine",
  68. parents: [
  69. "mammal"
  70. ]
  71. },
  72. crux: {
  73. name: "Crux",
  74. parents: [
  75. "mammal"
  76. ]
  77. },
  78. mammal: {
  79. name: "Mammal",
  80. parents: [
  81. "animal"
  82. ]
  83. },
  84. "rough-collie": {
  85. name: "Rough Collie",
  86. parents: [
  87. "dog"
  88. ]
  89. },
  90. dragon: {
  91. name: "Dragon",
  92. parents: [
  93. "reptile"
  94. ]
  95. },
  96. reptile: {
  97. name: "Reptile",
  98. parents: [
  99. "animal"
  100. ]
  101. },
  102. woodpecker: {
  103. name: "Woodpecker",
  104. parents: [
  105. "avian"
  106. ]
  107. },
  108. avian: {
  109. name: "Avian",
  110. parents: [
  111. "animal"
  112. ]
  113. },
  114. kitsune: {
  115. name: "Kitsune",
  116. parents: [
  117. "fox"
  118. ]
  119. },
  120. fox: {
  121. name: "Fox",
  122. parents: [
  123. "mammal"
  124. ]
  125. },
  126. pokemon: {
  127. name: "Pokemon"
  128. },
  129. tiger: {
  130. name: "Tiger",
  131. parents: [
  132. "cat"
  133. ]
  134. },
  135. cat: {
  136. name: "Cat",
  137. parents: [
  138. "feliform"
  139. ]
  140. },
  141. "blue-jay": {
  142. name: "Blue Jay",
  143. parents: [
  144. "avian"
  145. ]
  146. },
  147. wolf: {
  148. name: "Wolf",
  149. parents: [
  150. "mammal"
  151. ]
  152. },
  153. coyote: {
  154. name: "Coyote",
  155. parents: [
  156. "mammal"
  157. ]
  158. },
  159. raccoon: {
  160. name: "Raccoon",
  161. parents: [
  162. "mammal"
  163. ]
  164. },
  165. weasel: {
  166. name: "Weasel",
  167. parents: [
  168. "mustelid"
  169. ]
  170. },
  171. "red-panda": {
  172. name: "Red Panda",
  173. parents: [
  174. "mammal"
  175. ]
  176. },
  177. dolphin: {
  178. name: "Dolphin",
  179. parents: [
  180. "mammal"
  181. ]
  182. },
  183. "african-wild-dog": {
  184. name: "African Wild Dog",
  185. parents: [
  186. "canine"
  187. ]
  188. },
  189. "hyena": {
  190. name: "Hyena",
  191. parents: [
  192. "feliform"
  193. ]
  194. },
  195. "carbuncle": {
  196. name: "Carbuncle",
  197. parents: [
  198. "animal"
  199. ]
  200. },
  201. bat: {
  202. name: "Bat",
  203. parents: [
  204. "mammal"
  205. ]
  206. },
  207. "leaf-nosed-bat": {
  208. name: "Leaf-Nosed Bat",
  209. parents: [
  210. "bat"
  211. ]
  212. },
  213. "fish": {
  214. name: "Fish",
  215. parents: [
  216. "animal"
  217. ]
  218. },
  219. "ram": {
  220. name: "Ram",
  221. parents: [
  222. "mammal"
  223. ]
  224. },
  225. "demon": {
  226. name: "Demon",
  227. parents: [
  228. "supernatural"
  229. ]
  230. },
  231. "cougar": {
  232. name: "Cougar",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "goat": {
  238. name: "Goat",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "lion": {
  244. name: "Lion",
  245. parents: [
  246. "cat"
  247. ]
  248. },
  249. "harpy-eager": {
  250. name: "Harpy Eagle",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "deer": {
  256. name: "Deer",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "phoenix": {
  262. name: "Phoenix",
  263. parents: [
  264. "avian"
  265. ]
  266. },
  267. "aeromorph": {
  268. name: "Aeromorph",
  269. parents: [
  270. "machine"
  271. ]
  272. },
  273. "machine": {
  274. name: "Machine",
  275. },
  276. "android": {
  277. name: "Android",
  278. parents: [
  279. "machine"
  280. ]
  281. },
  282. "jackal": {
  283. name: "Jackal",
  284. parents: [
  285. "canine"
  286. ]
  287. },
  288. "corvid": {
  289. name: "Corvid",
  290. parents: [
  291. "avian"
  292. ]
  293. },
  294. "pharaoh-hound": {
  295. name: "Pharaoh Hound",
  296. parents: [
  297. "dog"
  298. ]
  299. },
  300. "skunk": {
  301. name: "Skunk",
  302. parents: [
  303. "mammal"
  304. ]
  305. },
  306. "shark": {
  307. name: "Shark",
  308. parents: [
  309. "fish"
  310. ]
  311. },
  312. "black-panther": {
  313. name: "Black Panther",
  314. parents: [
  315. "cat"
  316. ]
  317. },
  318. "umbra": {
  319. name: "Umbra",
  320. parents: [
  321. "animal"
  322. ]
  323. },
  324. "raven": {
  325. name: "Raven",
  326. parents: [
  327. "corvid"
  328. ]
  329. },
  330. "snow-leopard": {
  331. name: "Snow Leopard",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "barbary-lion": {
  337. name: "Barbary Lion",
  338. parents: [
  339. "lion"
  340. ]
  341. },
  342. "dra'gal": {
  343. name: "Dra'Gal",
  344. parents: [
  345. "mammal"
  346. ]
  347. },
  348. "german-shepherd": {
  349. name: "German Shepherd",
  350. parents: [
  351. "dog"
  352. ]
  353. },
  354. "bayleef": {
  355. name: "Bayleef",
  356. parents: [
  357. "pokemon"
  358. ]
  359. },
  360. "mouse": {
  361. name: "Mouse",
  362. parents: [
  363. "rodent"
  364. ]
  365. },
  366. "rat": {
  367. name: "Rat",
  368. parents: [
  369. "mammal"
  370. ]
  371. },
  372. "hoshiko-beast": {
  373. name: "Hoshiko Beast",
  374. parents: ["animal"]
  375. },
  376. "snow-jugani": {
  377. name: "Snow Jugani",
  378. parents: ["cat"]
  379. },
  380. "patamon": {
  381. name: "Patamon",
  382. parents: ["digimon"]
  383. },
  384. "digimon": {
  385. name: "Digimon",
  386. },
  387. "jugani": {
  388. name: "Jugani",
  389. parents: ["cat"]
  390. },
  391. "luxray": {
  392. name: "Luxray",
  393. parents: ["pokemon"]
  394. },
  395. "mech": {
  396. name: "Mech",
  397. parents: ["machine"]
  398. },
  399. "zoid": {
  400. name: "Zoid",
  401. parents: ["mech"]
  402. },
  403. "monster": {
  404. name: "Monster",
  405. parents: ["animal"]
  406. },
  407. "foo-dog": {
  408. name: "Foo Dog",
  409. parents: ["mammal"]
  410. },
  411. "elephant": {
  412. name: "Elephant",
  413. parents: ["mammal"]
  414. },
  415. "eagle": {
  416. name: "Eagle",
  417. parents: ["avian"]
  418. },
  419. "cow": {
  420. name: "Cow",
  421. parents: ["mammal"]
  422. },
  423. "crocodile": {
  424. name: "Crocodile",
  425. parents: ["reptile"]
  426. },
  427. "borzoi": {
  428. name: "Borzoi",
  429. parents: ["dog"]
  430. },
  431. "snake": {
  432. name: "Snake",
  433. parents: ["reptile"]
  434. },
  435. "horned-bush-viper": {
  436. name: "Horned Bush Viper",
  437. parents: ["snake"]
  438. },
  439. "cobra": {
  440. name: "Cobra",
  441. parents: ["snake"]
  442. },
  443. "harpy-eagle": {
  444. name: "Harpy Eagle",
  445. parents: ["eagle"]
  446. },
  447. "raptor": {
  448. name: "Raptor",
  449. parents: ["dinosaur"]
  450. },
  451. "dinosaur": {
  452. name: "Dinosaur",
  453. parents: ["reptile"]
  454. },
  455. "veilhound": {
  456. name: "Veilhound",
  457. parents: ["hellhound"]
  458. },
  459. "hellhound": {
  460. name: "Hellhound",
  461. parents: ["canine", "demon"]
  462. },
  463. "insect": {
  464. name: "Insect",
  465. parents: ["animal"]
  466. },
  467. "beetle": {
  468. name: "Beetle",
  469. parents: ["insect"]
  470. },
  471. "moth": {
  472. name: "Moth",
  473. parents: ["insect"]
  474. },
  475. "eastern-dragon": {
  476. name: "Eastern Dragon",
  477. parents: ["dragon"]
  478. },
  479. "jaguar": {
  480. name: "Jaguar",
  481. parents: ["cat"]
  482. },
  483. "horse": {
  484. name: "Horse",
  485. parents: ["mammal"]
  486. },
  487. "sergal": {
  488. name: "Sergal",
  489. parents: ["mammal"]
  490. },
  491. "gryphon": {
  492. name: "Gryphon",
  493. parents: ["lion", "eagle"]
  494. },
  495. "robot": {
  496. name: "Robot",
  497. parents: ["machine"]
  498. },
  499. "medihound": {
  500. name: "Medihound",
  501. parents: ["robot", "dog"]
  502. },
  503. "sylveon": {
  504. name: "Sylveon",
  505. parents: ["pokemon"]
  506. },
  507. "catgirl": {
  508. name: "Catgirl",
  509. parents: ["mammal"]
  510. },
  511. "cowgirl": {
  512. name: "Cowgirl",
  513. parents: ["mammal"]
  514. },
  515. "pony": {
  516. name: "Pony",
  517. parents: ["horse"]
  518. },
  519. "rabbit": {
  520. name: "Rabbit",
  521. parents: ["leporidae"]
  522. },
  523. "fennec-fox": {
  524. name: "Fennec Fox",
  525. parents: ["fox"]
  526. },
  527. "azodian": {
  528. name: "Azodian",
  529. parents: ["mouse"]
  530. },
  531. "shiba-inu": {
  532. name: "Shiba Inu",
  533. parents: ["dog"]
  534. },
  535. "changeling": {
  536. name: "Changeling",
  537. parents: ["insect"]
  538. },
  539. "cheetah": {
  540. name: "Cheetah",
  541. parents: ["cat"]
  542. },
  543. "golden-jackal": {
  544. name: "Golden Jackal",
  545. parents: ["jackal"]
  546. },
  547. "manectric": {
  548. name: "Manectric",
  549. parents: ["pokemon"]
  550. },
  551. "rat": {
  552. name: "Rat",
  553. parents: ["rodent"]
  554. },
  555. "rodent": {
  556. name: "Rodent",
  557. parents: ["mammal"]
  558. },
  559. "octocoon": {
  560. name: "Octocoon",
  561. parents: ["raccoon", "octopus"]
  562. },
  563. "octopus": {
  564. name: "Octopus",
  565. parents: ["fish"]
  566. },
  567. "werewolf": {
  568. name: "Werewolf",
  569. parents: ["wolf", "werebeast"]
  570. },
  571. "werebeast": {
  572. name: "Werebeast",
  573. parents: ["monster"]
  574. },
  575. "meerkat": {
  576. name: "Meerkat",
  577. parents: ["mammal"]
  578. },
  579. "human": {
  580. name: "Human",
  581. parents: ["mammal"]
  582. },
  583. "geth": {
  584. name: "Geth",
  585. parents: ["android"]
  586. },
  587. "husky": {
  588. name: "Husky",
  589. parents: ["dog"]
  590. },
  591. "long-eared-bat": {
  592. name: "Long Eared Bat",
  593. parents: ["bat"]
  594. },
  595. "lizard": {
  596. name: "Lizard",
  597. parents: ["reptile"]
  598. },
  599. "salamander": {
  600. name: "Salamander",
  601. parents: ["lizard"]
  602. },
  603. "chameleon": {
  604. name: "Chameleon",
  605. parents: ["lizard"]
  606. },
  607. "gecko": {
  608. name: "Gecko",
  609. parents: ["lizard"]
  610. },
  611. "kobold": {
  612. name: "Kobold",
  613. parents: ["reptile"]
  614. },
  615. "charizard": {
  616. name: "Charizard",
  617. parents: ["pokemon"]
  618. },
  619. "lugia": {
  620. name: "Lugia",
  621. parents: ["pokemon"]
  622. },
  623. "cerberus": {
  624. name: "Cerberus",
  625. parents: ["dog"]
  626. },
  627. "tyrantrum": {
  628. name: "Tyrantrum",
  629. parents: ["pokemon"]
  630. },
  631. "lemur": {
  632. name: "Lemur",
  633. parents: ["mammal"]
  634. },
  635. "kelpie": {
  636. name: "Kelpie",
  637. parents: ["horse", "monster"]
  638. },
  639. "labrador": {
  640. name: "Labrador",
  641. parents: ["dog"]
  642. },
  643. "sylveon": {
  644. name: "Sylveon",
  645. parents: ["eeveelution"]
  646. },
  647. "eeveelution": {
  648. name: "Eeveelution",
  649. parents: ["pokemon"]
  650. },
  651. "polar-bear": {
  652. name: "Polar Bear",
  653. parents: ["bear"]
  654. },
  655. "bear": {
  656. name: "Bear",
  657. parents: ["mammal"]
  658. },
  659. "absol": {
  660. name: "Absol",
  661. parents: ["pokemon"]
  662. },
  663. "wolver": {
  664. name: "Wolver",
  665. parents: ["mammal"]
  666. },
  667. "rottweiler": {
  668. name: "Rottweiler",
  669. parents: ["dog"]
  670. },
  671. "zebra": {
  672. name: "Zebra",
  673. parents: ["horse"]
  674. },
  675. "yoshi": {
  676. name: "Yoshi",
  677. parents: ["lizard"]
  678. },
  679. "lynx": {
  680. name: "Lynx",
  681. parents: ["cat"]
  682. },
  683. "unknown": {
  684. name: "Unknown",
  685. parents: []
  686. },
  687. "thylacine": {
  688. name: "Thylacine",
  689. parents: ["mammal"]
  690. },
  691. "gabumon": {
  692. name: "Gabumon",
  693. parents: ["digimon"]
  694. },
  695. "border-collie": {
  696. name: "Border Collie",
  697. parents: ["dog"]
  698. },
  699. "imp": {
  700. name: "Imp",
  701. parents: ["demon"]
  702. },
  703. "kangaroo": {
  704. name: "Kangaroo",
  705. parents: ["marsupial"]
  706. },
  707. "renamon": {
  708. name: "Renamon",
  709. parents: ["digimon"]
  710. },
  711. "candy-orca-dragon": {
  712. name: "Candy Orca Dragon",
  713. parents: ["fish", "dragon", "candy"]
  714. },
  715. "sabertooth-tiger": {
  716. name: "Sabertooth Tiger",
  717. parents: ["cat"]
  718. },
  719. "espurr": {
  720. name: "Espurr",
  721. parents: ["pokemon"]
  722. },
  723. "otter": {
  724. name: "Otter",
  725. parents: ["mustelid"]
  726. },
  727. "elemental": {
  728. name: "Elemental",
  729. parents: ["mammal"]
  730. },
  731. "mew": {
  732. name: "Mew",
  733. parents: ["pokemon"]
  734. },
  735. "goodra": {
  736. name: "Goodra",
  737. parents: ["pokemon"]
  738. },
  739. "fairy": {
  740. name: "Fairy",
  741. parents: ["magical"]
  742. },
  743. "typhlosion": {
  744. name: "Typhlosion",
  745. parents: ["pokemon"]
  746. },
  747. "magical": {
  748. name: "Magical",
  749. parents: []
  750. },
  751. "xenomorph": {
  752. name: "Xenomorph",
  753. parents: ["monster", "alien"]
  754. },
  755. "charr": {
  756. name: "Charr",
  757. parents: ["cat"]
  758. },
  759. "siberian-husky": {
  760. name: "Siberian Husky",
  761. parents: ["husky"]
  762. },
  763. "alligator": {
  764. name: "Alligator",
  765. parents: ["reptile"]
  766. },
  767. "bernese-mountain-dog": {
  768. name: "Bernese Mountain Dog",
  769. parents: ["dog"]
  770. },
  771. "reshiram": {
  772. name: "Reshiram",
  773. parents: ["pokemon"]
  774. },
  775. "grizzly-bear": {
  776. name: "Grizzly Bear",
  777. parents: ["bear"]
  778. },
  779. "water-monitor": {
  780. name: "Water Monitor",
  781. parents: ["lizard"]
  782. },
  783. "banchofossa": {
  784. name: "Banchofossa",
  785. parents: ["mammal"]
  786. },
  787. "kirin": {
  788. name: "Kirin",
  789. parents: ["monster"]
  790. },
  791. "quilava": {
  792. name: "Quilava",
  793. parents: ["pokemon"]
  794. },
  795. "seviper": {
  796. name: "Seviper",
  797. parents: ["pokemon"]
  798. },
  799. "flying-fox": {
  800. name: "Flying Fox",
  801. parents: ["bat"]
  802. },
  803. "keynain": {
  804. name: "Keynain",
  805. parents: ["avian"]
  806. },
  807. "lucario": {
  808. name: "Lucario",
  809. parents: ["pokemon"]
  810. },
  811. "siamese-cat": {
  812. name: "Siamese Cat",
  813. parents: ["cat"]
  814. },
  815. "spider": {
  816. name: "Spider",
  817. parents: ["insect"]
  818. },
  819. "samurott": {
  820. name: "Samurott",
  821. parents: ["pokemon"]
  822. },
  823. "megalodon": {
  824. name: "Megalodon",
  825. parents: ["shark"]
  826. },
  827. "unicorn": {
  828. name: "Unicorn",
  829. parents: ["horse"]
  830. },
  831. "greninja": {
  832. name: "Greninja",
  833. parents: ["pokemon"]
  834. },
  835. "water-dragon": {
  836. name: "Water Dragon",
  837. parents: ["dragon"]
  838. },
  839. "cross-fox": {
  840. name: "Cross Fox",
  841. parents: ["fox"]
  842. },
  843. "synth": {
  844. name: "Synth",
  845. parents: ["machine"]
  846. },
  847. "construct": {
  848. name: "Construct",
  849. parents: []
  850. },
  851. "mexican-wolf": {
  852. name: "Mexican Wolf",
  853. parents: ["wolf"]
  854. },
  855. "leopard": {
  856. name: "Leopard",
  857. parents: ["cat"]
  858. },
  859. "pig": {
  860. name: "Pig",
  861. parents: ["mammal"]
  862. },
  863. "ampharos": {
  864. name: "Ampharos",
  865. parents: ["pokemon"]
  866. },
  867. "orca": {
  868. name: "Orca",
  869. parents: ["fish"]
  870. },
  871. "lycanroc": {
  872. name: "Lycanroc",
  873. parents: ["pokemon"]
  874. },
  875. "surkanu": {
  876. name: "Surkanu",
  877. parents: ["monster"]
  878. },
  879. "seal": {
  880. name: "Seal",
  881. parents: ["mammal"]
  882. },
  883. "keldeo": {
  884. name: "Keldeo",
  885. parents: ["pokemon"]
  886. },
  887. "great-dane": {
  888. name: "Great Dane",
  889. parents: ["dog"]
  890. },
  891. "black-backed-jackal": {
  892. name: "Black Backed Jackal",
  893. parents: ["jackal"]
  894. },
  895. "sheep": {
  896. name: "Sheep",
  897. parents: ["mammal"]
  898. },
  899. "leopard-seal": {
  900. name: "Leopard Seal",
  901. parents: ["seal"]
  902. },
  903. "zoroark": {
  904. name: "Zoroark",
  905. parents: ["pokemon"]
  906. },
  907. "maned-wolf": {
  908. name: "Maned Wolf",
  909. parents: ["canine"]
  910. },
  911. "dracha": {
  912. name: "Dracha",
  913. parents: ["dragon"]
  914. },
  915. "wolxi": {
  916. name: "Wolxi",
  917. parents: ["mammal", "alien"]
  918. },
  919. "dratini": {
  920. name: "Dratini",
  921. parents: ["pokemon", "dragon"]
  922. },
  923. "skaven": {
  924. name: "Skaven",
  925. parents: ["rat"]
  926. },
  927. "mongoose": {
  928. name: "Mongoose",
  929. parents: ["mammal"]
  930. },
  931. "lopunny": {
  932. name: "Lopunny",
  933. parents: ["pokemon", "rabbit"]
  934. },
  935. "feraligatr": {
  936. name: "Feraligatr",
  937. parents: ["pokemon", "alligator"]
  938. },
  939. "houndoom": {
  940. name: "Houndoom",
  941. parents: ["pokemon", "dog"]
  942. },
  943. "protogen": {
  944. name: "Protogen",
  945. parents: ["machine"]
  946. },
  947. "saint-bernard": {
  948. name: "Saint Bernard",
  949. parents: ["dog"]
  950. },
  951. "crow": {
  952. name: "Crow",
  953. parents: ["corvid"]
  954. },
  955. "delphox": {
  956. name: "Delphox",
  957. parents: ["pokemon", "fox"]
  958. },
  959. "moose": {
  960. name: "Moose",
  961. parents: ["mammal"]
  962. },
  963. "joraxian": {
  964. name: "Joraxian",
  965. parents: ["monster", "canine", "demon"]
  966. },
  967. "nimbat": {
  968. name: "Nimbat",
  969. parents: ["mammal"]
  970. },
  971. "aardwolf": {
  972. name: "Aardwolf",
  973. parents: ["canine"]
  974. },
  975. "fluudrani": {
  976. name: "Fluudrani",
  977. parents: ["animal"]
  978. },
  979. "arcanine": {
  980. name: "Arcanine",
  981. parents: ["pokemon", "dog"]
  982. },
  983. "inteleon": {
  984. name: "Inteleon",
  985. parents: ["pokemon", "fish"]
  986. },
  987. "ninetales": {
  988. name: "Ninetales",
  989. parents: ["pokemon", "kitsune"]
  990. },
  991. "tigrex": {
  992. name: "Tigrex",
  993. parents: ["tiger"]
  994. },
  995. "zorua": {
  996. name: "Zorua",
  997. parents: ["pokemon", "fox"]
  998. },
  999. "vulpix": {
  1000. name: "Vulpix",
  1001. parents: ["pokemon", "fox"]
  1002. },
  1003. "barghest": {
  1004. name: "Barghest",
  1005. parents: ["monster"]
  1006. },
  1007. "gray-wolf": {
  1008. name: "Gray Wolf",
  1009. parents: ["wolf"]
  1010. },
  1011. "ruppells-fox": {
  1012. name: "Rüppell's Fox",
  1013. parents: ["fox"]
  1014. },
  1015. "bull-terrier": {
  1016. name: "Bull Terrier",
  1017. parents: ["dog"]
  1018. },
  1019. "european-honey-buzzard": {
  1020. name: "European Honey Buzzard",
  1021. parents: ["avian"]
  1022. },
  1023. "t-rex": {
  1024. name: "Tyrannosaurus Rex",
  1025. parents: ["dinosaur"]
  1026. },
  1027. "mactarian": {
  1028. name: "Mactarian",
  1029. parents: ["shark", "monster"]
  1030. },
  1031. "mewtwo-y": {
  1032. name: "Mewtwo Y",
  1033. parents: ["mewtwo"]
  1034. },
  1035. "mewtwo": {
  1036. name: "Mewtwo",
  1037. parents: ["pokemon"]
  1038. },
  1039. "eevee": {
  1040. name: "Eevee",
  1041. parents: ["eeveelution"]
  1042. },
  1043. "mienshao": {
  1044. name: "Mienshao",
  1045. parents: ["pokemon"]
  1046. },
  1047. "sugar-glider": {
  1048. name: "Sugar Glider",
  1049. parents: ["opossum"]
  1050. },
  1051. "spectral-bat": {
  1052. name: "Spectral Bat",
  1053. parents: ["bat"]
  1054. },
  1055. "scolipede": {
  1056. name: "Scolipede",
  1057. parents: ["pokemon", "insect"]
  1058. },
  1059. "jackalope": {
  1060. name: "Jackalope",
  1061. parents: ["rabbit", "antelope"]
  1062. },
  1063. "caracal": {
  1064. name: "Caracal",
  1065. parents: ["cat"]
  1066. },
  1067. "stoat": {
  1068. name: "Stoat",
  1069. parents: ["mammal"]
  1070. },
  1071. "african-golden-cat": {
  1072. name: "African Golden Cat",
  1073. parents: ["cat"]
  1074. },
  1075. "gigantosaurus": {
  1076. name: "Gigantosaurus",
  1077. parents: ["dinosaur"]
  1078. },
  1079. "zorgoia": {
  1080. name: "Zorgoia",
  1081. parents: ["mammal"]
  1082. },
  1083. "monitor-lizard": {
  1084. name: "Monitor Lizard",
  1085. parents: ["lizard"]
  1086. },
  1087. "ziralkia": {
  1088. name: "Ziralkia",
  1089. parents: ["mammal"]
  1090. },
  1091. "kiiasi": {
  1092. name: "Kiiasi",
  1093. parents: ["animal"]
  1094. },
  1095. "synx": {
  1096. name: "Synx",
  1097. parents: ["monster"]
  1098. },
  1099. "panther": {
  1100. name: "Panther",
  1101. parents: ["cat"]
  1102. },
  1103. "azumarill": {
  1104. name: "Azumarill",
  1105. parents: ["pokemon"]
  1106. },
  1107. "river-snaptail": {
  1108. name: "River Snaptail",
  1109. parents: ["otter", "crocodile"]
  1110. },
  1111. "great-blue-heron": {
  1112. name: "Great Blue Heron",
  1113. parents: ["avian"]
  1114. },
  1115. "smeargle": {
  1116. name: "Smeargle",
  1117. parents: ["pokemon"]
  1118. },
  1119. "vendeilen": {
  1120. name: "Vendeilen",
  1121. parents: ["monster"]
  1122. },
  1123. "ventura": {
  1124. name: "Ventura",
  1125. parents: ["canine"]
  1126. },
  1127. "clouded-leopard": {
  1128. name: "Clouded Leopard",
  1129. parents: ["leopard"]
  1130. },
  1131. "argonian": {
  1132. name: "Argonian",
  1133. parents: ["lizard"]
  1134. },
  1135. "salazzle": {
  1136. name: "Salazzle",
  1137. parents: ["pokemon", "lizard"]
  1138. },
  1139. "je-stoff-drachen": {
  1140. name: "Je-Stoff Drachen",
  1141. parents: ["dragon"]
  1142. },
  1143. "finnish-spitz-dog": {
  1144. name: "Finnish Spitz Dog",
  1145. parents: ["dog"]
  1146. },
  1147. "gray-fox": {
  1148. name: "Gray Fox",
  1149. parents: ["fox"]
  1150. },
  1151. "opossum": {
  1152. name: "Opossum",
  1153. parents: ["mammal"]
  1154. },
  1155. "antelope": {
  1156. name: "Antelope",
  1157. parents: ["mammal"]
  1158. },
  1159. "weavile": {
  1160. name: "Weavile",
  1161. parents: ["pokemon"]
  1162. },
  1163. "pikachu": {
  1164. name: "Pikachu",
  1165. parents: ["pokemon", "mouse"]
  1166. },
  1167. "grovyle": {
  1168. name: "Grovyle",
  1169. parents: ["pokemon", "plant"]
  1170. },
  1171. "sthara": {
  1172. name: "Sthara",
  1173. parents: ["snow-leopard", "reptile"]
  1174. },
  1175. "star-warrior": {
  1176. name: "Star Warrior",
  1177. parents: ["magical"]
  1178. },
  1179. "dragonoid": {
  1180. name: "Dragonoid",
  1181. parents: ["dragon"]
  1182. },
  1183. "suicune": {
  1184. name: "Suicune",
  1185. parents: ["pokemon"]
  1186. },
  1187. "vole": {
  1188. name: "Vole",
  1189. parents: ["mammal"]
  1190. },
  1191. "blaziken": {
  1192. name: "Blaziken",
  1193. parents: ["pokemon", "avian"]
  1194. },
  1195. "buizel": {
  1196. name: "Buizel",
  1197. parents: ["pokemon", "fish"]
  1198. },
  1199. "floatzel": {
  1200. name: "Floatzel",
  1201. parents: ["pokemon", "fish"]
  1202. },
  1203. "umok": {
  1204. name: "Umok",
  1205. parents: ["avian"]
  1206. },
  1207. "sea-monster": {
  1208. name: "Sea Monster",
  1209. parents: ["monster", "fish"]
  1210. },
  1211. "egyptian-vulture": {
  1212. name: "Egyptian Vulture",
  1213. parents: ["avian"]
  1214. },
  1215. "doberman": {
  1216. name: "Doberman",
  1217. parents: ["dog"]
  1218. },
  1219. "zangoose": {
  1220. name: "Zangoose",
  1221. parents: ["pokemon", "mongoose"]
  1222. },
  1223. "mongoose": {
  1224. name: "Mongoose",
  1225. parents: ["mammal"]
  1226. },
  1227. "wickerbeast": {
  1228. name: "Wickerbeast",
  1229. parents: ["monster"]
  1230. },
  1231. "zenari": {
  1232. name: "Zenari",
  1233. parents: ["lizard"]
  1234. },
  1235. "plant": {
  1236. name: "Plant",
  1237. parents: []
  1238. },
  1239. "raskatox": {
  1240. name: "Raskatox",
  1241. parents: ["raccoon", "skunk", "cat", "fox"]
  1242. },
  1243. "mikromare": {
  1244. name: "mikromare",
  1245. parents: ["alien"]
  1246. },
  1247. "alien": {
  1248. name: "Alien",
  1249. parents: ["animal"]
  1250. },
  1251. "deity": {
  1252. name: "Deity",
  1253. parents: []
  1254. },
  1255. "skarlan": {
  1256. name: "Skarlan",
  1257. parents: ["slug", "dragon"]
  1258. },
  1259. "slug": {
  1260. name: "Slug",
  1261. parents: ["mollusk"]
  1262. },
  1263. "mollusk": {
  1264. name: "Mollusk",
  1265. parents: ["animal"]
  1266. },
  1267. "chimera": {
  1268. name: "Chimera",
  1269. parents: ["monster"]
  1270. },
  1271. "gestalt": {
  1272. name: "Gestalt",
  1273. parents: ["construct"]
  1274. },
  1275. "mimic": {
  1276. name: "Mimic",
  1277. parents: ["monster"]
  1278. },
  1279. "calico-rat": {
  1280. name: "Calico Rat",
  1281. parents: ["rat"]
  1282. },
  1283. "panda": {
  1284. name: "Panda",
  1285. parents: ["mammal"]
  1286. },
  1287. "oni": {
  1288. name: "Oni",
  1289. parents: ["monster"]
  1290. },
  1291. "pegasus": {
  1292. name: "Pegasus",
  1293. parents: ["horse"]
  1294. },
  1295. "vulpera": {
  1296. name: "Vulpera",
  1297. parents: ["fennec-fox"]
  1298. },
  1299. "ceratosaurus": {
  1300. name: "Ceratosaurus",
  1301. parents: ["dinosaur"]
  1302. },
  1303. "nykur": {
  1304. name: "Nykur",
  1305. parents: ["horse", "monster"]
  1306. },
  1307. "giraffe": {
  1308. name: "Giraffe",
  1309. parents: ["mammal"]
  1310. },
  1311. "tauren": {
  1312. name: "Tauren",
  1313. parents: ["cow"]
  1314. },
  1315. "draconi": {
  1316. name: "Draconi",
  1317. parents: ["alien", "cat", "cyborg"]
  1318. },
  1319. "dire-wolf": {
  1320. name: "Dire Wolf",
  1321. parents: ["wolf"]
  1322. },
  1323. "ferromorph": {
  1324. name: "Ferromorph",
  1325. parents: ["construct"]
  1326. },
  1327. "meowth": {
  1328. name: "Meowth",
  1329. parents: ["cat", "pokemon"]
  1330. },
  1331. "pavodragon": {
  1332. name: "Pavodragon",
  1333. parents: ["dragon"]
  1334. },
  1335. "aaltranae": {
  1336. name: "Aaltranae",
  1337. parents: ["dragon"]
  1338. },
  1339. "cyborg": {
  1340. name: "Cyborg",
  1341. parents: ["machine"]
  1342. },
  1343. "draptor": {
  1344. name: "Draptor",
  1345. parents: ["dragon"]
  1346. },
  1347. "candy": {
  1348. name: "Candy",
  1349. parents: []
  1350. },
  1351. "drenath": {
  1352. name: "Drenath",
  1353. parents: ["dragon", "snake", "rabbit"]
  1354. },
  1355. "coyju": {
  1356. name: "Coyju",
  1357. parents: ["coyote", "kaiju"]
  1358. },
  1359. "kaiju": {
  1360. name: "Kaiju",
  1361. parents: ["monster"]
  1362. },
  1363. "nickit": {
  1364. name: "Nickit",
  1365. parents: ["pokemon", "cat"]
  1366. },
  1367. "lopunny": {
  1368. name: "Lopunny",
  1369. parents: ["pokemon", "rabbit"]
  1370. },
  1371. "korean-jindo-dog": {
  1372. name: "Korean Jindo Dog",
  1373. parents: ["dog"]
  1374. },
  1375. "naga": {
  1376. name: "Naga",
  1377. parents: ["snake", "monster"]
  1378. },
  1379. "undead": {
  1380. name: "Undead",
  1381. parents: ["monster"]
  1382. },
  1383. "whale": {
  1384. name: "Whale",
  1385. parents: ["fish"]
  1386. },
  1387. "gelato-bee": {
  1388. name: "Gelato Bee",
  1389. parents: ["bee"]
  1390. },
  1391. "bee": {
  1392. name: "Bee",
  1393. parents: ["insect"]
  1394. },
  1395. "gardevoir": {
  1396. name: "Gardevoir",
  1397. parents: ["pokemon"]
  1398. },
  1399. "ant": {
  1400. name: "Ant",
  1401. parents: ["insect"]
  1402. },
  1403. "frog": {
  1404. name: "Frog",
  1405. parents: ["amphibian"]
  1406. },
  1407. "amphibian": {
  1408. name: "Amphibian",
  1409. parents: ["animal"]
  1410. },
  1411. "pangolin": {
  1412. name: "Pangolin",
  1413. parents: ["mammal"]
  1414. },
  1415. "uragi'viidorn": {
  1416. name: "Uragi'viidorn",
  1417. parents: ["avian", "bear"]
  1418. },
  1419. "gryphdelphais": {
  1420. name: "Gryphdelphais",
  1421. parents: ["dolphin", "gryphon"]
  1422. },
  1423. "plush": {
  1424. name: "Plush",
  1425. parents: ["construct"]
  1426. },
  1427. "draiger": {
  1428. name: "Draiger",
  1429. parents: ["dragon","tiger"]
  1430. },
  1431. "foxsky": {
  1432. name: "Foxsky",
  1433. parents: ["fox", "husky"]
  1434. },
  1435. "umbreon": {
  1436. name: "Umbreon",
  1437. parents: ["eeveelution"]
  1438. },
  1439. "slime-dragon": {
  1440. name: "Slime Dragon",
  1441. parents: ["dragon", "goo"]
  1442. },
  1443. "enderman": {
  1444. name: "Enderman",
  1445. parents: ["monster"]
  1446. },
  1447. "gremlin": {
  1448. name: "Gremlin",
  1449. parents: ["monster"]
  1450. },
  1451. "dragonsune": {
  1452. name: "Dragonsune",
  1453. parents: ["dragon", "kitsune"]
  1454. },
  1455. "ghost": {
  1456. name: "Ghost",
  1457. parents: ["supernatural"]
  1458. },
  1459. "false-vampire-bat": {
  1460. name: "False Vampire Bat",
  1461. parents: ["bat"]
  1462. },
  1463. "succubus": {
  1464. name: "Succubus",
  1465. parents: ["demon"]
  1466. },
  1467. "mia": {
  1468. name: "Mia",
  1469. parents: ["canine"]
  1470. },
  1471. "rainbow": {
  1472. name: "Rainbow",
  1473. parents: ["monster"]
  1474. },
  1475. "solgaleo": {
  1476. name: "Solgaleo",
  1477. parents: ["pokemon"]
  1478. },
  1479. "lucent-nargacuga": {
  1480. name: "Lucent Nargacuga",
  1481. parents: ["monster-hunter"]
  1482. },
  1483. "monster-hunter": {
  1484. name: "Monster Hunter",
  1485. parents: ["monster"]
  1486. },
  1487. "leviathan": {
  1488. "name": "Leviathan",
  1489. "url": "sea-monster"
  1490. },
  1491. "bull": {
  1492. name: "Bull",
  1493. parents: ["mammal"]
  1494. },
  1495. "tanuki": {
  1496. name: "Tanuki",
  1497. parents: ["monster"]
  1498. },
  1499. "chakat": {
  1500. name: "Chakat",
  1501. parents: ["cat"]
  1502. },
  1503. "hydra": {
  1504. name: "Hydra",
  1505. parents: ["monster"]
  1506. },
  1507. "zigzagoon": {
  1508. name: "Zigzagoon",
  1509. parents: ["raccoon", "pokemon"]
  1510. },
  1511. "vulture": {
  1512. name: "Vulture",
  1513. parents: ["avian"]
  1514. },
  1515. "eastern-dragon": {
  1516. name: "Eastern Dragon",
  1517. parents: ["dragon"]
  1518. },
  1519. "gryffon": {
  1520. name: "Gryffon",
  1521. parents: ["phoenix", "red-panda"]
  1522. },
  1523. "amtsvane": {
  1524. name: "Amtsvane",
  1525. parents: ["reptile"]
  1526. },
  1527. "kigavi": {
  1528. name: "Kigavi",
  1529. parents: ["avian"]
  1530. },
  1531. "turian": {
  1532. name: "Turian",
  1533. parents: ["avian"]
  1534. },
  1535. "zeraora": {
  1536. name: "Zeraora",
  1537. parents: ["pokemon"]
  1538. },
  1539. "sandshrew": {
  1540. name: "Sandshrew",
  1541. parents: ["pokemon", "pangolin"]
  1542. },
  1543. "valais-blacknose-sheep": {
  1544. name: "Valais Blacknose Sheep",
  1545. parents: ["sheep"]
  1546. },
  1547. "novaleit": {
  1548. name: "Novaleit",
  1549. parents: ["mammal"]
  1550. },
  1551. "dunnoh": {
  1552. name: "Dunnoh",
  1553. parents: ["mammal"]
  1554. },
  1555. "lunaral-dragon": {
  1556. name: "Lunaral Dragon",
  1557. parents: ["dragon"]
  1558. },
  1559. "arctic-wolf": {
  1560. name: "Arctic Wolf",
  1561. parents: ["wolf"]
  1562. },
  1563. "donkey": {
  1564. name: "Donkey",
  1565. parents: ["horse"]
  1566. },
  1567. "chinchilla": {
  1568. name: "Chinchilla",
  1569. parents: ["rodent"]
  1570. },
  1571. "felkin": {
  1572. name: "Felkin",
  1573. parents: ["dragon"]
  1574. },
  1575. "tykeriel": {
  1576. name: "Tykeriel",
  1577. parents: ["avian"]
  1578. },
  1579. "folf": {
  1580. name: "Folf",
  1581. parents: ["fox", "wolf"]
  1582. },
  1583. "pooltoy": {
  1584. name: "Pooltoy",
  1585. parents: ["construct"]
  1586. },
  1587. "demi": {
  1588. name: "Demi",
  1589. parents: ["human"]
  1590. },
  1591. "stegosaurus": {
  1592. name: "Stegosaurus",
  1593. parents: ["dinosaur"]
  1594. },
  1595. "computer-virus": {
  1596. name: "Computer Virus",
  1597. parents: ["program"]
  1598. },
  1599. "program": {
  1600. name: "Program",
  1601. parents: ["construct"]
  1602. },
  1603. "space-springhare": {
  1604. name: "Space Springhare",
  1605. parents: ["hare"]
  1606. },
  1607. "river-drake": {
  1608. name: "River Drake",
  1609. parents: ["dragon"]
  1610. },
  1611. "djinn": {
  1612. "name": "Djinn",
  1613. "url": "supernatural"
  1614. },
  1615. "supernatural": {
  1616. name: "Supernatural",
  1617. parents: ["monster"]
  1618. },
  1619. "grasshopper-mouse": {
  1620. name: "Grasshopper Mouse",
  1621. parents: ["mouse"]
  1622. },
  1623. "somali-cat": {
  1624. name: "Somali Cat",
  1625. parents: ["cat"]
  1626. },
  1627. "minccino": {
  1628. name: "Minccino",
  1629. parents: ["pokemon", "chinchilla"]
  1630. },
  1631. "pine-marten": {
  1632. name: "Pine Marten",
  1633. parents: ["marten"]
  1634. },
  1635. "marten": {
  1636. name: "Marten",
  1637. parents: ["mustelid"]
  1638. },
  1639. "mustelid": {
  1640. name: "Mustelid",
  1641. parents: ["mammal"]
  1642. },
  1643. "caribou": {
  1644. name: "Caribou",
  1645. parents: ["deer"]
  1646. },
  1647. "gnoll": {
  1648. name: "Gnoll",
  1649. parents: ["hyena", "monster"]
  1650. },
  1651. "peacekeeper": {
  1652. name: "Peacekeeper",
  1653. parents: ["human"]
  1654. },
  1655. "river-otter": {
  1656. name: "River Otter",
  1657. parents: ["otter"]
  1658. },
  1659. "dhole": {
  1660. name: "Dhole",
  1661. parents: ["canine"]
  1662. },
  1663. "springbok": {
  1664. name: "Springbok",
  1665. parents: ["antelope"]
  1666. },
  1667. "marsupial": {
  1668. name: "Marsupial",
  1669. parents: ["mammal"]
  1670. },
  1671. "townsend-big-eared-bat": {
  1672. name: "Townsend Big-eared Bat",
  1673. parents: ["bat"]
  1674. },
  1675. "squirrel": {
  1676. name: "Squirrel",
  1677. parents: ["rodent"]
  1678. },
  1679. "magpie": {
  1680. name: "Magpie",
  1681. parents: ["corvid"]
  1682. },
  1683. "civet": {
  1684. name: "Civet",
  1685. parents: ["feliform"]
  1686. },
  1687. "feliform": {
  1688. name: "Feliform",
  1689. parents: ["mammal"]
  1690. },
  1691. "tiefling": {
  1692. name: "Tiefling",
  1693. parents: ["devil"]
  1694. },
  1695. "devil": {
  1696. name: "Devil",
  1697. parents: ["supernatural"]
  1698. },
  1699. "sika-deer": {
  1700. name: "Sika Deer",
  1701. parents: ["deer"]
  1702. },
  1703. "vaporeon": {
  1704. name: "Vaporeon",
  1705. parents: ["eeveelution"]
  1706. },
  1707. "leafeon": {
  1708. name: "Leafeon",
  1709. parents: ["eeveelution"]
  1710. },
  1711. "jolteon": {
  1712. name: "Jolteon",
  1713. parents: ["eeveelution"]
  1714. },
  1715. "spireborn": {
  1716. name: "Spireborn",
  1717. parents: ["zorgoia"]
  1718. },
  1719. "vampire": {
  1720. name: "Vampire",
  1721. parents: ["monster"]
  1722. },
  1723. "extraplanar": {
  1724. name: "Extraplanar",
  1725. parents: []
  1726. },
  1727. "goo": {
  1728. name: "Goo",
  1729. parents: []
  1730. },
  1731. "skink": {
  1732. name: "Skink",
  1733. parents: ["lizard"]
  1734. },
  1735. "bat-eared-fox": {
  1736. name: "Bat-eared Fox",
  1737. parents: ["fox"]
  1738. },
  1739. "belted-kingfisher": {
  1740. name: "Belted Kingfisher",
  1741. parents: ["avian"]
  1742. },
  1743. "omnifalcon": {
  1744. name: "Omnifalcon",
  1745. parents: ["gryphon", "falcon", "harpy-eagle"]
  1746. },
  1747. "falcon": {
  1748. name: "Falcon",
  1749. parents: ["avian"]
  1750. },
  1751. "avali": {
  1752. name: "Avali",
  1753. parents: ["avian", "alien"]
  1754. },
  1755. "arctic-fox": {
  1756. name: "Arctic Fox",
  1757. parents: ["fox"]
  1758. },
  1759. "snow-tiger": {
  1760. name: "Snow Tiger",
  1761. parents: ["tiger"]
  1762. },
  1763. "marble-fox": {
  1764. name: "Marble Fox",
  1765. parents: ["fox"]
  1766. },
  1767. "king-wickerbeast": {
  1768. name: "King Wickerbeast",
  1769. parents: ["wickerbeast"]
  1770. },
  1771. "wickerbeast": {
  1772. name: "Wickerbeast",
  1773. parents: ["mammal"]
  1774. },
  1775. "european-polecat": {
  1776. name: "European Polecat",
  1777. parents: ["mustelid"]
  1778. },
  1779. "teshari": {
  1780. name: "Teshari",
  1781. parents: ["avian", "raptor"]
  1782. },
  1783. "alicorn": {
  1784. name: "Alicorn",
  1785. parents: ["horse"]
  1786. },
  1787. "atlas-moth": {
  1788. name: "Atlas Moth",
  1789. parents: ["moth"]
  1790. },
  1791. "owlbear": {
  1792. name: "Owlbear",
  1793. parents: ["owl", "bear", "monster"]
  1794. },
  1795. "owl": {
  1796. name: "Owl",
  1797. parents: ["avian"]
  1798. },
  1799. "silvertongue": {
  1800. name: "Silvertongue",
  1801. parents: ["reptile"]
  1802. },
  1803. "ahuizotl": {
  1804. name: "Ahuizotl",
  1805. parents: ["monster"]
  1806. },
  1807. "ender-dragon": {
  1808. name: "Ender Dragon",
  1809. parents: ["dragon"]
  1810. },
  1811. "bruhathkayosaurus": {
  1812. name: "Bruhathkayosaurus",
  1813. parents: ["sauropod"]
  1814. },
  1815. "sauropod": {
  1816. name: "Sauropod",
  1817. parents: ["dinosaur"]
  1818. },
  1819. "black-sable-antelope": {
  1820. name: "Black Sable Antelope",
  1821. parents: ["antelope"]
  1822. },
  1823. "slime": {
  1824. name: "Slime",
  1825. parents: ["goo"]
  1826. },
  1827. "utahraptor": {
  1828. name: "Utahraptor",
  1829. parents: ["raptor"]
  1830. },
  1831. "indian-giant-squirrel": {
  1832. name: "Indian Giant Squirrel",
  1833. parents: ["squirrel"]
  1834. },
  1835. "golden-retriever": {
  1836. name: "Golden Retriever",
  1837. parents: ["dog"]
  1838. },
  1839. "triceratops": {
  1840. name: "Triceratops",
  1841. parents: ["dinosaur"]
  1842. },
  1843. "drake": {
  1844. name: "Drake",
  1845. parents: ["dragon"]
  1846. },
  1847. "okapi": {
  1848. name: "Okapi",
  1849. parents: ["giraffe"]
  1850. },
  1851. "arctic-hare": {
  1852. name: "Arctic Hare",
  1853. parents: ["hare"]
  1854. },
  1855. "hare": {
  1856. name: "Hare",
  1857. parents: ["leporidae"]
  1858. },
  1859. "leporidae": {
  1860. name: "Leporidae",
  1861. parents: ["mammal"]
  1862. },
  1863. "leopard-gecko": {
  1864. name: "Leopard Gecko",
  1865. parents: ["gecko"]
  1866. },
  1867. "dreamspawn": {
  1868. name: "Dreamspawn",
  1869. parents: ["illusion"]
  1870. },
  1871. "illusion": {
  1872. name: "Illusion",
  1873. parents: []
  1874. },
  1875. "purrloin": {
  1876. name: "Purrloin",
  1877. parents: ["cat", "pokemon"]
  1878. },
  1879. "noivern": {
  1880. name: "Noivern",
  1881. parents: ["bat", "dragon", "pokemon"]
  1882. },
  1883. "hedgehog": {
  1884. name: "Hedgehog",
  1885. parents: ["mammal"]
  1886. },
  1887. "liger": {
  1888. name: "Liger",
  1889. parents: ["lion", "tiger", "hybrid"]
  1890. },
  1891. "hybrid": {
  1892. name: "Hybrid",
  1893. parents: []
  1894. },
  1895. "drider": {
  1896. name: "Drider",
  1897. parents: ["spider"]
  1898. },
  1899. "sabresune": {
  1900. name: "Sabresune",
  1901. parents: ["kitsune", "sabertooth-tiger"]
  1902. },
  1903. "ditto": {
  1904. name: "Ditto",
  1905. parents: ["pokemon", "goo"]
  1906. },
  1907. }
  1908. //species
  1909. function getSpeciesInfo(speciesList) {
  1910. let result = new Set();
  1911. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1912. result.add(entry)
  1913. });
  1914. return Array.from(result);
  1915. };
  1916. function getSpeciesInfoHelper(species) {
  1917. if (!speciesData[species]) {
  1918. console.warn(species + " doesn't exist");
  1919. return [];
  1920. }
  1921. if (speciesData[species].parents) {
  1922. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1923. } else {
  1924. return [species];
  1925. }
  1926. }
  1927. characterMakers.push(() => makeCharacter(
  1928. {
  1929. name: "Fen",
  1930. species: ["crux"],
  1931. description: {
  1932. title: "Bio",
  1933. text: "Very furry. Sheds on everything."
  1934. },
  1935. tags: [
  1936. "anthro",
  1937. "goo"
  1938. ]
  1939. },
  1940. {
  1941. front: {
  1942. height: math.unit(12, "feet"),
  1943. weight: math.unit(2400, "lb"),
  1944. name: "Front",
  1945. image: {
  1946. source: "./media/characters/fen/front.svg",
  1947. extra: 1804/1562,
  1948. bottom: 205/2009
  1949. }
  1950. },
  1951. diving: {
  1952. height: math.unit(4.9, "meters"),
  1953. weight: math.unit(2400, "lb"),
  1954. name: "Diving",
  1955. image: {
  1956. source: "./media/characters/fen/diving.svg"
  1957. }
  1958. },
  1959. goo: {
  1960. height: math.unit(12, "feet"),
  1961. weight: math.unit(3600, "lb"),
  1962. volume: math.unit(1000, "liters"),
  1963. capacity: math.unit(6, "people"),
  1964. name: "Goo",
  1965. image: {
  1966. source: "./media/characters/fen/goo.svg",
  1967. extra: 1307/1071,
  1968. bottom: 134/1441
  1969. }
  1970. },
  1971. maw: {
  1972. height: math.unit(5.03, "feet"),
  1973. name: "Maw",
  1974. image: {
  1975. source: "./media/characters/fen/maw.svg"
  1976. }
  1977. },
  1978. gooCeiling: {
  1979. height: math.unit(6.6, "feet"),
  1980. weight: math.unit(3000, "lb"),
  1981. volume: math.unit(1000, "liters"),
  1982. capacity: math.unit(6, "people"),
  1983. name: "Goo (Ceiling)",
  1984. image: {
  1985. source: "./media/characters/fen/goo-ceiling.svg"
  1986. }
  1987. },
  1988. back: {
  1989. height: math.unit(12, "feet"),
  1990. weight: math.unit(2400, "lb"),
  1991. name: "Back",
  1992. image: {
  1993. source: "./media/characters/fen/back.svg",
  1994. },
  1995. info: {
  1996. description: {
  1997. mode: "append",
  1998. text: "\n\nHe is not currently looking at you."
  1999. }
  2000. }
  2001. },
  2002. full: {
  2003. height: math.unit(1.6, "meter"),
  2004. weight: math.unit(3200, "lb"),
  2005. name: "Full",
  2006. image: {
  2007. source: "./media/characters/fen/full.svg",
  2008. extra: 1133/859,
  2009. bottom: 145/1278
  2010. },
  2011. info: {
  2012. description: {
  2013. mode: "append",
  2014. text: "\n\nMunch."
  2015. }
  2016. }
  2017. },
  2018. gooLounging: {
  2019. height: math.unit(4.53, "feet"),
  2020. weight: math.unit(3000, "lb"),
  2021. capacity: math.unit(6, "people"),
  2022. name: "Goo (Lounging)",
  2023. image: {
  2024. source: "./media/characters/fen/goo-lounging.svg",
  2025. bottom: 116 / 613
  2026. }
  2027. },
  2028. lounging: {
  2029. height: math.unit(10.52, "feet"),
  2030. weight: math.unit(2400, "lb"),
  2031. name: "Lounging",
  2032. image: {
  2033. source: "./media/characters/fen/lounging.svg"
  2034. }
  2035. },
  2036. },
  2037. [
  2038. {
  2039. name: "Small",
  2040. height: math.unit(2.2428, "meter")
  2041. },
  2042. {
  2043. name: "Normal",
  2044. height: math.unit(12, "feet"),
  2045. default: true,
  2046. },
  2047. {
  2048. name: "Big",
  2049. height: math.unit(20, "feet")
  2050. },
  2051. {
  2052. name: "Minimacro",
  2053. height: math.unit(40, "feet"),
  2054. info: {
  2055. description: {
  2056. mode: "append",
  2057. text: "\n\nTOO DAMN BIG"
  2058. }
  2059. }
  2060. },
  2061. {
  2062. name: "Macro",
  2063. height: math.unit(100, "feet"),
  2064. info: {
  2065. description: {
  2066. mode: "append",
  2067. text: "\n\nTOO DAMN BIG"
  2068. }
  2069. }
  2070. },
  2071. {
  2072. name: "Megamacro",
  2073. height: math.unit(2, "miles")
  2074. },
  2075. {
  2076. name: "Gigamacro",
  2077. height: math.unit(10, "earths")
  2078. },
  2079. ]
  2080. ))
  2081. characterMakers.push(() => makeCharacter(
  2082. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2083. {
  2084. front: {
  2085. height: math.unit(183, "cm"),
  2086. weight: math.unit(80, "kg"),
  2087. name: "Front",
  2088. image: {
  2089. source: "./media/characters/sofia-fluttertail/front.svg",
  2090. bottom: 0.01,
  2091. extra: 2154 / 2081
  2092. }
  2093. },
  2094. frontAlt: {
  2095. height: math.unit(183, "cm"),
  2096. weight: math.unit(80, "kg"),
  2097. name: "Front (alt)",
  2098. image: {
  2099. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2100. }
  2101. },
  2102. back: {
  2103. height: math.unit(183, "cm"),
  2104. weight: math.unit(80, "kg"),
  2105. name: "Back",
  2106. image: {
  2107. source: "./media/characters/sofia-fluttertail/back.svg"
  2108. }
  2109. },
  2110. kneeling: {
  2111. height: math.unit(125, "cm"),
  2112. weight: math.unit(80, "kg"),
  2113. name: "Kneeling",
  2114. image: {
  2115. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2116. extra: 1033 / 977,
  2117. bottom: 23.7 / 1057
  2118. }
  2119. },
  2120. maw: {
  2121. height: math.unit(183 / 5, "cm"),
  2122. name: "Maw",
  2123. image: {
  2124. source: "./media/characters/sofia-fluttertail/maw.svg"
  2125. }
  2126. },
  2127. mawcloseup: {
  2128. height: math.unit(183 / 5 * 0.41, "cm"),
  2129. name: "Maw (Closeup)",
  2130. image: {
  2131. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2132. }
  2133. },
  2134. paws: {
  2135. height: math.unit(1.17, "feet"),
  2136. name: "Paws",
  2137. image: {
  2138. source: "./media/characters/sofia-fluttertail/paws.svg",
  2139. extra: 851 / 851,
  2140. bottom: 17 / 868
  2141. }
  2142. },
  2143. },
  2144. [
  2145. {
  2146. name: "Normal",
  2147. height: math.unit(1.83, "meter")
  2148. },
  2149. {
  2150. name: "Size Thief",
  2151. height: math.unit(18, "feet")
  2152. },
  2153. {
  2154. name: "50 Foot Collie",
  2155. height: math.unit(50, "feet")
  2156. },
  2157. {
  2158. name: "Macro",
  2159. height: math.unit(96, "feet"),
  2160. default: true
  2161. },
  2162. {
  2163. name: "Megamerger",
  2164. height: math.unit(650, "feet")
  2165. },
  2166. ]
  2167. ))
  2168. characterMakers.push(() => makeCharacter(
  2169. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2170. {
  2171. front: {
  2172. height: math.unit(7, "feet"),
  2173. weight: math.unit(100, "kg"),
  2174. name: "Front",
  2175. image: {
  2176. source: "./media/characters/march/front.svg",
  2177. extra: 1992/1851,
  2178. bottom: 39/2031
  2179. }
  2180. },
  2181. foot: {
  2182. height: math.unit(0.9, "feet"),
  2183. name: "Foot",
  2184. image: {
  2185. source: "./media/characters/march/foot.svg"
  2186. }
  2187. },
  2188. },
  2189. [
  2190. {
  2191. name: "Normal",
  2192. height: math.unit(7.9, "feet")
  2193. },
  2194. {
  2195. name: "Macro",
  2196. height: math.unit(220, "meters")
  2197. },
  2198. {
  2199. name: "Megamacro",
  2200. height: math.unit(2.98, "km"),
  2201. default: true
  2202. },
  2203. {
  2204. name: "Gigamacro",
  2205. height: math.unit(15963, "km")
  2206. },
  2207. {
  2208. name: "Teramacro",
  2209. height: math.unit(2980000000, "km")
  2210. },
  2211. {
  2212. name: "Examacro",
  2213. height: math.unit(250, "parsecs")
  2214. },
  2215. ]
  2216. ))
  2217. characterMakers.push(() => makeCharacter(
  2218. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2219. {
  2220. front: {
  2221. height: math.unit(6, "feet"),
  2222. weight: math.unit(60, "kg"),
  2223. name: "Front",
  2224. image: {
  2225. source: "./media/characters/noir/front.svg",
  2226. extra: 1,
  2227. bottom: 0.032
  2228. }
  2229. },
  2230. },
  2231. [
  2232. {
  2233. name: "Normal",
  2234. height: math.unit(6.6, "feet")
  2235. },
  2236. {
  2237. name: "Macro",
  2238. height: math.unit(500, "feet")
  2239. },
  2240. {
  2241. name: "Megamacro",
  2242. height: math.unit(2.5, "km"),
  2243. default: true
  2244. },
  2245. {
  2246. name: "Gigamacro",
  2247. height: math.unit(22500, "km")
  2248. },
  2249. {
  2250. name: "Teramacro",
  2251. height: math.unit(2500000000, "km")
  2252. },
  2253. {
  2254. name: "Examacro",
  2255. height: math.unit(200, "parsecs")
  2256. },
  2257. ]
  2258. ))
  2259. characterMakers.push(() => makeCharacter(
  2260. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2261. {
  2262. front: {
  2263. height: math.unit(7, "feet"),
  2264. weight: math.unit(100, "kg"),
  2265. name: "Front",
  2266. image: {
  2267. source: "./media/characters/okuri/front.svg",
  2268. extra: 739/665,
  2269. bottom: 39/778
  2270. }
  2271. },
  2272. back: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(100, "kg"),
  2275. name: "Back",
  2276. image: {
  2277. source: "./media/characters/okuri/back.svg",
  2278. extra: 734/653,
  2279. bottom: 13/747
  2280. }
  2281. },
  2282. sitting: {
  2283. height: math.unit(2.95, "feet"),
  2284. weight: math.unit(100, "kg"),
  2285. name: "Sitting",
  2286. image: {
  2287. source: "./media/characters/okuri/sitting.svg",
  2288. extra: 370/318,
  2289. bottom: 99/469
  2290. }
  2291. },
  2292. },
  2293. [
  2294. {
  2295. name: "Smallest",
  2296. height: math.unit(5 + 2/12, "feet")
  2297. },
  2298. {
  2299. name: "Smaller",
  2300. height: math.unit(300, "feet")
  2301. },
  2302. {
  2303. name: "Small",
  2304. height: math.unit(1000, "feet")
  2305. },
  2306. {
  2307. name: "Macro",
  2308. height: math.unit(1, "mile")
  2309. },
  2310. {
  2311. name: "Mega Macro (Small)",
  2312. height: math.unit(20, "km")
  2313. },
  2314. {
  2315. name: "Mega Macro (Large)",
  2316. height: math.unit(600, "km")
  2317. },
  2318. {
  2319. name: "Giga Macro",
  2320. height: math.unit(10000, "km")
  2321. },
  2322. {
  2323. name: "Normal",
  2324. height: math.unit(577560, "km"),
  2325. default: true
  2326. },
  2327. {
  2328. name: "Large",
  2329. height: math.unit(4, "galaxies")
  2330. },
  2331. {
  2332. name: "Largest",
  2333. height: math.unit(15, "multiverses")
  2334. },
  2335. ]
  2336. ))
  2337. characterMakers.push(() => makeCharacter(
  2338. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2339. {
  2340. front: {
  2341. height: math.unit(7, "feet"),
  2342. weight: math.unit(100, "kg"),
  2343. name: "Front",
  2344. image: {
  2345. source: "./media/characters/manny/front.svg",
  2346. extra: 1,
  2347. bottom: 0.06
  2348. }
  2349. },
  2350. back: {
  2351. height: math.unit(7, "feet"),
  2352. weight: math.unit(100, "kg"),
  2353. name: "Back",
  2354. image: {
  2355. source: "./media/characters/manny/back.svg",
  2356. extra: 1,
  2357. bottom: 0.014
  2358. }
  2359. },
  2360. },
  2361. [
  2362. {
  2363. name: "Normal",
  2364. height: math.unit(7, "feet"),
  2365. },
  2366. {
  2367. name: "Macro",
  2368. height: math.unit(78, "feet"),
  2369. default: true
  2370. },
  2371. {
  2372. name: "Macro+",
  2373. height: math.unit(300, "meters")
  2374. },
  2375. {
  2376. name: "Macro++",
  2377. height: math.unit(2400, "meters")
  2378. },
  2379. {
  2380. name: "Megamacro",
  2381. height: math.unit(5167, "meters")
  2382. },
  2383. {
  2384. name: "Gigamacro",
  2385. height: math.unit(41769, "miles")
  2386. },
  2387. ]
  2388. ))
  2389. characterMakers.push(() => makeCharacter(
  2390. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2391. {
  2392. front: {
  2393. height: math.unit(7, "feet"),
  2394. weight: math.unit(100, "kg"),
  2395. name: "Front",
  2396. image: {
  2397. source: "./media/characters/adake/front-1.svg"
  2398. }
  2399. },
  2400. frontAlt: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(100, "kg"),
  2403. name: "Front (Alt)",
  2404. image: {
  2405. source: "./media/characters/adake/front-2.svg",
  2406. extra: 1,
  2407. bottom: 0.01
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(100, "kg"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/adake/back.svg",
  2416. }
  2417. },
  2418. kneel: {
  2419. height: math.unit(5.385, "feet"),
  2420. weight: math.unit(100, "kg"),
  2421. name: "Kneeling",
  2422. image: {
  2423. source: "./media/characters/adake/kneel.svg",
  2424. bottom: 0.052
  2425. }
  2426. },
  2427. },
  2428. [
  2429. {
  2430. name: "Normal",
  2431. height: math.unit(7, "feet"),
  2432. },
  2433. {
  2434. name: "Macro",
  2435. height: math.unit(78, "feet"),
  2436. default: true
  2437. },
  2438. {
  2439. name: "Macro+",
  2440. height: math.unit(300, "meters")
  2441. },
  2442. {
  2443. name: "Macro++",
  2444. height: math.unit(2400, "meters")
  2445. },
  2446. {
  2447. name: "Megamacro",
  2448. height: math.unit(5167, "meters")
  2449. },
  2450. {
  2451. name: "Gigamacro",
  2452. height: math.unit(41769, "miles")
  2453. },
  2454. ]
  2455. ))
  2456. characterMakers.push(() => makeCharacter(
  2457. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2458. {
  2459. front: {
  2460. height: math.unit(1.65, "meters"),
  2461. weight: math.unit(50, "kg"),
  2462. name: "Front",
  2463. image: {
  2464. source: "./media/characters/elijah/front.svg",
  2465. extra: 858 / 830,
  2466. bottom: 95.5 / 953.8559
  2467. }
  2468. },
  2469. back: {
  2470. height: math.unit(1.65, "meters"),
  2471. weight: math.unit(50, "kg"),
  2472. name: "Back",
  2473. image: {
  2474. source: "./media/characters/elijah/back.svg",
  2475. extra: 895 / 850,
  2476. bottom: 5.3 / 897.956
  2477. }
  2478. },
  2479. frontNsfw: {
  2480. height: math.unit(1.65, "meters"),
  2481. weight: math.unit(50, "kg"),
  2482. name: "Front (NSFW)",
  2483. image: {
  2484. source: "./media/characters/elijah/front-nsfw.svg",
  2485. extra: 858 / 830,
  2486. bottom: 95.5 / 953.8559
  2487. }
  2488. },
  2489. backNsfw: {
  2490. height: math.unit(1.65, "meters"),
  2491. weight: math.unit(50, "kg"),
  2492. name: "Back (NSFW)",
  2493. image: {
  2494. source: "./media/characters/elijah/back-nsfw.svg",
  2495. extra: 895 / 850,
  2496. bottom: 5.3 / 897.956
  2497. }
  2498. },
  2499. dick: {
  2500. height: math.unit(1, "feet"),
  2501. name: "Dick",
  2502. image: {
  2503. source: "./media/characters/elijah/dick.svg"
  2504. }
  2505. },
  2506. beakOpen: {
  2507. height: math.unit(1.25, "feet"),
  2508. name: "Beak (Open)",
  2509. image: {
  2510. source: "./media/characters/elijah/beak-open.svg"
  2511. }
  2512. },
  2513. beakShut: {
  2514. height: math.unit(1.25, "feet"),
  2515. name: "Beak (Shut)",
  2516. image: {
  2517. source: "./media/characters/elijah/beak-shut.svg"
  2518. }
  2519. },
  2520. footFlexing: {
  2521. height: math.unit(1.61, "feet"),
  2522. name: "Foot (Flexing)",
  2523. image: {
  2524. source: "./media/characters/elijah/foot-flexing.svg"
  2525. }
  2526. },
  2527. footStepping: {
  2528. height: math.unit(1.44, "feet"),
  2529. name: "Foot (Stepping)",
  2530. image: {
  2531. source: "./media/characters/elijah/foot-stepping.svg"
  2532. }
  2533. },
  2534. plantigradeLeg: {
  2535. height: math.unit(2.34, "feet"),
  2536. name: "Plantigrade Leg",
  2537. image: {
  2538. source: "./media/characters/elijah/plantigrade-leg.svg"
  2539. }
  2540. },
  2541. plantigradeFootLeft: {
  2542. height: math.unit(0.9, "feet"),
  2543. name: "Plantigrade Foot (Left)",
  2544. image: {
  2545. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2546. }
  2547. },
  2548. plantigradeFootRight: {
  2549. height: math.unit(0.9, "feet"),
  2550. name: "Plantigrade Foot (Right)",
  2551. image: {
  2552. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Normal",
  2559. height: math.unit(1.65, "meters")
  2560. },
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(55, "meters"),
  2564. default: true
  2565. },
  2566. {
  2567. name: "Macro+",
  2568. height: math.unit(105, "meters")
  2569. },
  2570. ]
  2571. ))
  2572. characterMakers.push(() => makeCharacter(
  2573. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2574. {
  2575. front: {
  2576. height: math.unit(7 + 2/12, "feet"),
  2577. weight: math.unit(320, "kg"),
  2578. name: "Front",
  2579. image: {
  2580. source: "./media/characters/rai/front.svg",
  2581. extra: 1802/1696,
  2582. bottom: 68/1870
  2583. }
  2584. },
  2585. frontDressed: {
  2586. height: math.unit(7 + 2/12, "feet"),
  2587. weight: math.unit(320, "kg"),
  2588. name: "Front (Dressed)",
  2589. image: {
  2590. source: "./media/characters/rai/front-dressed.svg",
  2591. extra: 1802/1696,
  2592. bottom: 68/1870
  2593. }
  2594. },
  2595. side: {
  2596. height: math.unit(7 + 2/12, "feet"),
  2597. weight: math.unit(320, "kg"),
  2598. name: "Side",
  2599. image: {
  2600. source: "./media/characters/rai/side.svg",
  2601. extra: 1789/1710,
  2602. bottom: 115/1904
  2603. }
  2604. },
  2605. back: {
  2606. height: math.unit(7 + 2/12, "feet"),
  2607. weight: math.unit(320, "kg"),
  2608. name: "Back",
  2609. image: {
  2610. source: "./media/characters/rai/back.svg",
  2611. extra: 1770/1707,
  2612. bottom: 28/1798
  2613. }
  2614. },
  2615. feral: {
  2616. height: math.unit(9.5, "feet"),
  2617. weight: math.unit(640, "kg"),
  2618. name: "Feral",
  2619. image: {
  2620. source: "./media/characters/rai/feral.svg",
  2621. extra: 945/553,
  2622. bottom: 176/1121
  2623. }
  2624. },
  2625. dragon: {
  2626. height: math.unit(23, "feet"),
  2627. weight: math.unit(50000, "lb"),
  2628. name: "Dragon",
  2629. image: {
  2630. source: "./media/characters/rai/dragon.svg",
  2631. extra: 2498 / 2030,
  2632. bottom: 85.2 / 2584
  2633. }
  2634. },
  2635. maw: {
  2636. height: math.unit(1.69, "feet"),
  2637. name: "Maw",
  2638. image: {
  2639. source: "./media/characters/rai/maw.svg"
  2640. }
  2641. },
  2642. },
  2643. [
  2644. {
  2645. name: "Normal",
  2646. height: math.unit(7 + 2/12, "feet")
  2647. },
  2648. {
  2649. name: "Big",
  2650. height: math.unit(11, "feet")
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(302, "feet"),
  2655. default: true
  2656. },
  2657. ]
  2658. ))
  2659. characterMakers.push(() => makeCharacter(
  2660. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2661. {
  2662. frontDressed: {
  2663. height: math.unit(216, "feet"),
  2664. weight: math.unit(7000000, "lb"),
  2665. name: "Front (Dressed)",
  2666. image: {
  2667. source: "./media/characters/jazzy/front-dressed.svg",
  2668. extra: 2738 / 2651,
  2669. bottom: 41.8 / 2786
  2670. }
  2671. },
  2672. backDressed: {
  2673. height: math.unit(216, "feet"),
  2674. weight: math.unit(7000000, "lb"),
  2675. name: "Back (Dressed)",
  2676. image: {
  2677. source: "./media/characters/jazzy/back-dressed.svg",
  2678. extra: 2775 / 2673,
  2679. bottom: 36.8 / 2817
  2680. }
  2681. },
  2682. front: {
  2683. height: math.unit(216, "feet"),
  2684. weight: math.unit(7000000, "lb"),
  2685. name: "Front",
  2686. image: {
  2687. source: "./media/characters/jazzy/front.svg",
  2688. extra: 2738 / 2651,
  2689. bottom: 41.8 / 2786
  2690. }
  2691. },
  2692. back: {
  2693. height: math.unit(216, "feet"),
  2694. weight: math.unit(7000000, "lb"),
  2695. name: "Back",
  2696. image: {
  2697. source: "./media/characters/jazzy/back.svg",
  2698. extra: 2775 / 2673,
  2699. bottom: 36.8 / 2817
  2700. }
  2701. },
  2702. maw: {
  2703. height: math.unit(20, "feet"),
  2704. name: "Maw",
  2705. image: {
  2706. source: "./media/characters/jazzy/maw.svg"
  2707. }
  2708. },
  2709. paws: {
  2710. height: math.unit(27.5, "feet"),
  2711. name: "Paws",
  2712. image: {
  2713. source: "./media/characters/jazzy/paws.svg"
  2714. }
  2715. },
  2716. eye: {
  2717. height: math.unit(4.4, "feet"),
  2718. name: "Eye",
  2719. image: {
  2720. source: "./media/characters/jazzy/eye.svg"
  2721. }
  2722. },
  2723. droneOffense: {
  2724. height: math.unit(9.5, "inches"),
  2725. name: "Drone (Offense)",
  2726. image: {
  2727. source: "./media/characters/jazzy/drone-offense.svg"
  2728. }
  2729. },
  2730. droneRecon: {
  2731. height: math.unit(9.5, "inches"),
  2732. name: "Drone (Recon)",
  2733. image: {
  2734. source: "./media/characters/jazzy/drone-recon.svg"
  2735. }
  2736. },
  2737. droneDefense: {
  2738. height: math.unit(9.5, "inches"),
  2739. name: "Drone (Defense)",
  2740. image: {
  2741. source: "./media/characters/jazzy/drone-defense.svg"
  2742. }
  2743. },
  2744. },
  2745. [
  2746. {
  2747. name: "Macro",
  2748. height: math.unit(216, "feet"),
  2749. default: true
  2750. },
  2751. ]
  2752. ))
  2753. characterMakers.push(() => makeCharacter(
  2754. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2755. {
  2756. front: {
  2757. height: math.unit(9 + 6/12, "feet"),
  2758. weight: math.unit(700, "lb"),
  2759. name: "Front",
  2760. image: {
  2761. source: "./media/characters/flamm/front.svg",
  2762. extra: 1751/1632,
  2763. bottom: 46/1797
  2764. }
  2765. },
  2766. buff: {
  2767. height: math.unit(9 + 6/12, "feet"),
  2768. weight: math.unit(950, "lb"),
  2769. name: "Buff",
  2770. image: {
  2771. source: "./media/characters/flamm/buff.svg",
  2772. extra: 3018/2874,
  2773. bottom: 221/3239
  2774. }
  2775. },
  2776. },
  2777. [
  2778. {
  2779. name: "Normal",
  2780. height: math.unit(9.5, "feet")
  2781. },
  2782. {
  2783. name: "Macro",
  2784. height: math.unit(200, "feet"),
  2785. default: true
  2786. },
  2787. ]
  2788. ))
  2789. characterMakers.push(() => makeCharacter(
  2790. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2791. {
  2792. front: {
  2793. height: math.unit(5 + 3/12, "feet"),
  2794. weight: math.unit(60, "kg"),
  2795. name: "Front",
  2796. image: {
  2797. source: "./media/characters/zephiro/front.svg",
  2798. extra: 2309 / 2162,
  2799. bottom: 0.069
  2800. }
  2801. },
  2802. side: {
  2803. height: math.unit(5 + 3/12, "feet"),
  2804. weight: math.unit(60, "kg"),
  2805. name: "Side",
  2806. image: {
  2807. source: "./media/characters/zephiro/side.svg",
  2808. extra: 2403 / 2279,
  2809. bottom: 0.015
  2810. }
  2811. },
  2812. back: {
  2813. height: math.unit(5 + 3/12, "feet"),
  2814. weight: math.unit(60, "kg"),
  2815. name: "Back",
  2816. image: {
  2817. source: "./media/characters/zephiro/back.svg",
  2818. extra: 2373 / 2244,
  2819. bottom: 0.013
  2820. }
  2821. },
  2822. hand: {
  2823. height: math.unit(0.68, "feet"),
  2824. name: "Hand",
  2825. image: {
  2826. source: "./media/characters/zephiro/hand.svg"
  2827. }
  2828. },
  2829. paw: {
  2830. height: math.unit(1, "feet"),
  2831. name: "Paw",
  2832. image: {
  2833. source: "./media/characters/zephiro/paw.svg"
  2834. }
  2835. },
  2836. beans: {
  2837. height: math.unit(0.93, "feet"),
  2838. name: "Beans",
  2839. image: {
  2840. source: "./media/characters/zephiro/beans.svg"
  2841. }
  2842. },
  2843. },
  2844. [
  2845. {
  2846. name: "Micro",
  2847. height: math.unit(3, "inches")
  2848. },
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(5 + 3 / 12, "feet"),
  2852. default: true
  2853. },
  2854. {
  2855. name: "Macro",
  2856. height: math.unit(118, "feet")
  2857. },
  2858. ]
  2859. ))
  2860. characterMakers.push(() => makeCharacter(
  2861. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2862. {
  2863. front: {
  2864. height: math.unit(5, "feet"),
  2865. weight: math.unit(90, "kg"),
  2866. name: "Front",
  2867. image: {
  2868. source: "./media/characters/fory/front.svg",
  2869. extra: 2862 / 2674,
  2870. bottom: 180 / 3043.8
  2871. }
  2872. },
  2873. back: {
  2874. height: math.unit(5, "feet"),
  2875. weight: math.unit(90, "kg"),
  2876. name: "Back",
  2877. image: {
  2878. source: "./media/characters/fory/back.svg",
  2879. extra: 2962 / 2791,
  2880. bottom: 106 / 3071.8
  2881. }
  2882. },
  2883. foot: {
  2884. height: math.unit(2.14, "feet"),
  2885. name: "Foot",
  2886. image: {
  2887. source: "./media/characters/fory/foot.svg"
  2888. }
  2889. },
  2890. },
  2891. [
  2892. {
  2893. name: "Normal",
  2894. height: math.unit(5, "feet")
  2895. },
  2896. {
  2897. name: "Macro",
  2898. height: math.unit(50, "feet"),
  2899. default: true
  2900. },
  2901. {
  2902. name: "Megamacro",
  2903. height: math.unit(10, "miles")
  2904. },
  2905. {
  2906. name: "Gigamacro",
  2907. height: math.unit(5, "earths")
  2908. },
  2909. ]
  2910. ))
  2911. characterMakers.push(() => makeCharacter(
  2912. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2913. {
  2914. front: {
  2915. height: math.unit(7, "feet"),
  2916. weight: math.unit(90, "kg"),
  2917. name: "Front",
  2918. image: {
  2919. source: "./media/characters/kurrikage/front.svg",
  2920. extra: 1845/1733,
  2921. bottom: 119/1964
  2922. }
  2923. },
  2924. back: {
  2925. height: math.unit(7, "feet"),
  2926. weight: math.unit(90, "kg"),
  2927. name: "Back",
  2928. image: {
  2929. source: "./media/characters/kurrikage/back.svg",
  2930. extra: 1790/1677,
  2931. bottom: 61/1851
  2932. }
  2933. },
  2934. dressed: {
  2935. height: math.unit(7, "feet"),
  2936. weight: math.unit(90, "kg"),
  2937. name: "Dressed",
  2938. image: {
  2939. source: "./media/characters/kurrikage/dressed.svg",
  2940. extra: 1845/1733,
  2941. bottom: 119/1964
  2942. }
  2943. },
  2944. foot: {
  2945. height: math.unit(1.5, "feet"),
  2946. name: "Foot",
  2947. image: {
  2948. source: "./media/characters/kurrikage/foot.svg"
  2949. }
  2950. },
  2951. staff: {
  2952. height: math.unit(6.7, "feet"),
  2953. name: "Staff",
  2954. image: {
  2955. source: "./media/characters/kurrikage/staff.svg"
  2956. }
  2957. },
  2958. peek: {
  2959. height: math.unit(1.05, "feet"),
  2960. name: "Peeking",
  2961. image: {
  2962. source: "./media/characters/kurrikage/peek.svg",
  2963. bottom: 0.08
  2964. }
  2965. },
  2966. },
  2967. [
  2968. {
  2969. name: "Normal",
  2970. height: math.unit(12, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Big",
  2975. height: math.unit(20, "feet")
  2976. },
  2977. {
  2978. name: "Macro",
  2979. height: math.unit(500, "feet")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(20, "miles")
  2984. },
  2985. ]
  2986. ))
  2987. characterMakers.push(() => makeCharacter(
  2988. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2989. {
  2990. front: {
  2991. height: math.unit(6, "feet"),
  2992. weight: math.unit(75, "kg"),
  2993. name: "Front",
  2994. image: {
  2995. source: "./media/characters/shingo/front.svg",
  2996. extra: 1900/1825,
  2997. bottom: 82/1982
  2998. }
  2999. },
  3000. side: {
  3001. height: math.unit(6, "feet"),
  3002. weight: math.unit(75, "kg"),
  3003. name: "Side",
  3004. image: {
  3005. source: "./media/characters/shingo/side.svg",
  3006. extra: 1930/1865,
  3007. bottom: 16/1946
  3008. }
  3009. },
  3010. back: {
  3011. height: math.unit(6, "feet"),
  3012. weight: math.unit(75, "kg"),
  3013. name: "Back",
  3014. image: {
  3015. source: "./media/characters/shingo/back.svg",
  3016. extra: 1922/1852,
  3017. bottom: 16/1938
  3018. }
  3019. },
  3020. frontDressed: {
  3021. height: math.unit(6, "feet"),
  3022. weight: math.unit(150, "lb"),
  3023. name: "Front-dressed",
  3024. image: {
  3025. source: "./media/characters/shingo/front-dressed.svg",
  3026. extra: 1900/1825,
  3027. bottom: 82/1982
  3028. }
  3029. },
  3030. paw: {
  3031. height: math.unit(1.29, "feet"),
  3032. name: "Paw",
  3033. image: {
  3034. source: "./media/characters/shingo/paw.svg"
  3035. }
  3036. },
  3037. hand: {
  3038. height: math.unit(1.07, "feet"),
  3039. name: "Hand",
  3040. image: {
  3041. source: "./media/characters/shingo/hand.svg"
  3042. }
  3043. },
  3044. frontAlt: {
  3045. height: math.unit(6, "feet"),
  3046. weight: math.unit(75, "kg"),
  3047. name: "Front (Alt)",
  3048. image: {
  3049. source: "./media/characters/shingo/front-alt.svg",
  3050. extra: 3511 / 3338,
  3051. bottom: 0.005
  3052. }
  3053. },
  3054. frontAlt2: {
  3055. height: math.unit(6, "feet"),
  3056. weight: math.unit(75, "kg"),
  3057. name: "Front (Alt 2)",
  3058. image: {
  3059. source: "./media/characters/shingo/front-alt-2.svg",
  3060. extra: 706/681,
  3061. bottom: 11/717
  3062. }
  3063. },
  3064. pawAlt: {
  3065. height: math.unit(1, "feet"),
  3066. name: "Paw (Alt)",
  3067. image: {
  3068. source: "./media/characters/shingo/paw-alt.svg"
  3069. }
  3070. },
  3071. },
  3072. [
  3073. {
  3074. name: "Micro",
  3075. height: math.unit(4, "inches")
  3076. },
  3077. {
  3078. name: "Normal",
  3079. height: math.unit(6, "feet"),
  3080. default: true
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(108, "feet")
  3085. },
  3086. {
  3087. name: "Macro+",
  3088. height: math.unit(1500, "feet")
  3089. },
  3090. ]
  3091. ))
  3092. characterMakers.push(() => makeCharacter(
  3093. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3094. {
  3095. side: {
  3096. height: math.unit(6, "feet"),
  3097. weight: math.unit(75, "kg"),
  3098. name: "Side",
  3099. image: {
  3100. source: "./media/characters/aigey/side.svg"
  3101. }
  3102. },
  3103. },
  3104. [
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(200, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(100, "miles")
  3113. },
  3114. ]
  3115. )
  3116. )
  3117. characterMakers.push(() => makeCharacter(
  3118. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3119. {
  3120. front: {
  3121. height: math.unit(5 + 5 / 12, "feet"),
  3122. weight: math.unit(75, "kg"),
  3123. name: "Front",
  3124. image: {
  3125. source: "./media/characters/natasha/front.svg",
  3126. extra: 859 / 824,
  3127. bottom: 23 / 879.6
  3128. }
  3129. },
  3130. frontNsfw: {
  3131. height: math.unit(5 + 5 / 12, "feet"),
  3132. weight: math.unit(75, "kg"),
  3133. name: "Front (NSFW)",
  3134. image: {
  3135. source: "./media/characters/natasha/front-nsfw.svg",
  3136. extra: 859 / 824,
  3137. bottom: 23 / 879.6
  3138. }
  3139. },
  3140. frontErect: {
  3141. height: math.unit(5 + 5 / 12, "feet"),
  3142. weight: math.unit(75, "kg"),
  3143. name: "Front (Erect)",
  3144. image: {
  3145. source: "./media/characters/natasha/front-erect.svg",
  3146. extra: 859 / 824,
  3147. bottom: 23 / 879.6
  3148. }
  3149. },
  3150. back: {
  3151. height: math.unit(5 + 5 / 12, "feet"),
  3152. weight: math.unit(75, "kg"),
  3153. name: "Back",
  3154. image: {
  3155. source: "./media/characters/natasha/back.svg",
  3156. extra: 887.9 / 852.6,
  3157. bottom: 9.7 / 896.4
  3158. }
  3159. },
  3160. backAlt: {
  3161. height: math.unit(5 + 5 / 12, "feet"),
  3162. weight: math.unit(75, "kg"),
  3163. name: "Back (Alt)",
  3164. image: {
  3165. source: "./media/characters/natasha/back-alt.svg",
  3166. extra: 1236.7 / 1192,
  3167. bottom: 22.3 / 1258.2
  3168. }
  3169. },
  3170. dick: {
  3171. height: math.unit(1.772, "feet"),
  3172. name: "Dick",
  3173. image: {
  3174. source: "./media/characters/natasha/dick.svg"
  3175. }
  3176. },
  3177. paw: {
  3178. height: math.unit(0.250, "meters"),
  3179. name: "Paw",
  3180. image: {
  3181. source: "./media/characters/natasha/paw.svg"
  3182. }
  3183. },
  3184. },
  3185. [
  3186. {
  3187. name: "Normal",
  3188. height: math.unit(5 + 5 / 12, "feet")
  3189. },
  3190. {
  3191. name: "Large",
  3192. height: math.unit(12, "feet")
  3193. },
  3194. {
  3195. name: "Macro",
  3196. height: math.unit(100, "feet"),
  3197. default: true
  3198. },
  3199. {
  3200. name: "Macro+",
  3201. height: math.unit(260, "feet")
  3202. },
  3203. {
  3204. name: "Macro++",
  3205. height: math.unit(1, "mile")
  3206. },
  3207. ]
  3208. ))
  3209. characterMakers.push(() => makeCharacter(
  3210. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3211. {
  3212. front: {
  3213. height: math.unit(6, "feet"),
  3214. weight: math.unit(75, "kg"),
  3215. name: "Front",
  3216. image: {
  3217. source: "./media/characters/malik/front.svg"
  3218. }
  3219. },
  3220. side: {
  3221. height: math.unit(6, "feet"),
  3222. weight: math.unit(75, "kg"),
  3223. name: "Side",
  3224. image: {
  3225. source: "./media/characters/malik/side.svg",
  3226. extra: 1.1539
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(6, "feet"),
  3231. weight: math.unit(75, "kg"),
  3232. name: "Back",
  3233. image: {
  3234. source: "./media/characters/malik/back.svg"
  3235. }
  3236. },
  3237. },
  3238. [
  3239. {
  3240. name: "Macro",
  3241. height: math.unit(156, "feet"),
  3242. default: true
  3243. },
  3244. {
  3245. name: "Macro+",
  3246. height: math.unit(1188, "feet")
  3247. },
  3248. ]
  3249. ))
  3250. characterMakers.push(() => makeCharacter(
  3251. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3252. {
  3253. front: {
  3254. height: math.unit(6, "feet"),
  3255. weight: math.unit(75, "kg"),
  3256. name: "Front",
  3257. image: {
  3258. source: "./media/characters/sefer/front.svg",
  3259. extra: 848 / 659,
  3260. bottom: 28.3 / 876.442
  3261. }
  3262. },
  3263. back: {
  3264. height: math.unit(6, "feet"),
  3265. weight: math.unit(75, "kg"),
  3266. name: "Back",
  3267. image: {
  3268. source: "./media/characters/sefer/back.svg",
  3269. extra: 864 / 695,
  3270. bottom: 10 / 871
  3271. }
  3272. },
  3273. frontDressed: {
  3274. height: math.unit(6, "feet"),
  3275. weight: math.unit(75, "kg"),
  3276. name: "Front (Dressed)",
  3277. image: {
  3278. source: "./media/characters/sefer/front-dressed.svg",
  3279. extra: 839 / 653,
  3280. bottom: 37.6 / 878
  3281. }
  3282. },
  3283. },
  3284. [
  3285. {
  3286. name: "Normal",
  3287. height: math.unit(6, "feet"),
  3288. default: true
  3289. },
  3290. ]
  3291. ))
  3292. characterMakers.push(() => makeCharacter(
  3293. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  3294. {
  3295. body: {
  3296. height: math.unit(2.2428, "meter"),
  3297. weight: math.unit(124.738, "kg"),
  3298. name: "Body",
  3299. image: {
  3300. extra: 1225 / 1050,
  3301. source: "./media/characters/north/front.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Micro",
  3308. height: math.unit(4, "inches")
  3309. },
  3310. {
  3311. name: "Macro",
  3312. height: math.unit(63, "meters")
  3313. },
  3314. {
  3315. name: "Megamacro",
  3316. height: math.unit(101, "miles"),
  3317. default: true
  3318. }
  3319. ]
  3320. ))
  3321. characterMakers.push(() => makeCharacter(
  3322. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  3323. {
  3324. angled: {
  3325. height: math.unit(4, "meter"),
  3326. weight: math.unit(150, "kg"),
  3327. name: "Angled",
  3328. image: {
  3329. source: "./media/characters/talan/angled-sfw.svg",
  3330. bottom: 29 / 3734
  3331. }
  3332. },
  3333. angledNsfw: {
  3334. height: math.unit(4, "meter"),
  3335. weight: math.unit(150, "kg"),
  3336. name: "Angled (NSFW)",
  3337. image: {
  3338. source: "./media/characters/talan/angled-nsfw.svg",
  3339. bottom: 29 / 3734
  3340. }
  3341. },
  3342. frontNsfw: {
  3343. height: math.unit(4, "meter"),
  3344. weight: math.unit(150, "kg"),
  3345. name: "Front (NSFW)",
  3346. image: {
  3347. source: "./media/characters/talan/front-nsfw.svg",
  3348. bottom: 29 / 3734
  3349. }
  3350. },
  3351. sideNsfw: {
  3352. height: math.unit(4, "meter"),
  3353. weight: math.unit(150, "kg"),
  3354. name: "Side (NSFW)",
  3355. image: {
  3356. source: "./media/characters/talan/side-nsfw.svg",
  3357. bottom: 29 / 3734
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(4, "meter"),
  3362. weight: math.unit(150, "kg"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/talan/back.svg"
  3366. }
  3367. },
  3368. dickBottom: {
  3369. height: math.unit(0.621, "meter"),
  3370. name: "Dick (Bottom)",
  3371. image: {
  3372. source: "./media/characters/talan/dick-bottom.svg"
  3373. }
  3374. },
  3375. dickTop: {
  3376. height: math.unit(0.621, "meter"),
  3377. name: "Dick (Top)",
  3378. image: {
  3379. source: "./media/characters/talan/dick-top.svg"
  3380. }
  3381. },
  3382. dickSide: {
  3383. height: math.unit(0.305, "meter"),
  3384. name: "Dick (Side)",
  3385. image: {
  3386. source: "./media/characters/talan/dick-side.svg"
  3387. }
  3388. },
  3389. dickFront: {
  3390. height: math.unit(0.305, "meter"),
  3391. name: "Dick (Front)",
  3392. image: {
  3393. source: "./media/characters/talan/dick-front.svg"
  3394. }
  3395. },
  3396. },
  3397. [
  3398. {
  3399. name: "Normal",
  3400. height: math.unit(4, "meters")
  3401. },
  3402. {
  3403. name: "Macro",
  3404. height: math.unit(100, "meters")
  3405. },
  3406. {
  3407. name: "Megamacro",
  3408. height: math.unit(2, "miles"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Gigamacro",
  3413. height: math.unit(5000, "miles")
  3414. },
  3415. {
  3416. name: "Teramacro",
  3417. height: math.unit(100, "parsecs")
  3418. }
  3419. ]
  3420. ))
  3421. characterMakers.push(() => makeCharacter(
  3422. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  3423. {
  3424. front: {
  3425. height: math.unit(2, "meter"),
  3426. weight: math.unit(90, "kg"),
  3427. name: "Front",
  3428. image: {
  3429. source: "./media/characters/gael'rathus/front.svg"
  3430. }
  3431. },
  3432. frontAlt: {
  3433. height: math.unit(2, "meter"),
  3434. weight: math.unit(90, "kg"),
  3435. name: "Front (alt)",
  3436. image: {
  3437. source: "./media/characters/gael'rathus/front-alt.svg"
  3438. }
  3439. },
  3440. frontAlt2: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(90, "kg"),
  3443. name: "Front (alt 2)",
  3444. image: {
  3445. source: "./media/characters/gael'rathus/front-alt-2.svg"
  3446. }
  3447. }
  3448. },
  3449. [
  3450. {
  3451. name: "Normal",
  3452. height: math.unit(9, "feet"),
  3453. default: true
  3454. },
  3455. {
  3456. name: "Large",
  3457. height: math.unit(25, "feet")
  3458. },
  3459. {
  3460. name: "Macro",
  3461. height: math.unit(0.25, "miles")
  3462. },
  3463. {
  3464. name: "Megamacro",
  3465. height: math.unit(10, "miles")
  3466. }
  3467. ]
  3468. ))
  3469. characterMakers.push(() => makeCharacter(
  3470. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  3471. {
  3472. side: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(140, "kg"),
  3475. name: "Side",
  3476. image: {
  3477. source: "./media/characters/sosha/side.svg",
  3478. bottom: 0.042
  3479. }
  3480. },
  3481. },
  3482. [
  3483. {
  3484. name: "Normal",
  3485. height: math.unit(12, "feet"),
  3486. default: true
  3487. }
  3488. ]
  3489. ))
  3490. characterMakers.push(() => makeCharacter(
  3491. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  3492. {
  3493. side: {
  3494. height: math.unit(5 + 5 / 12, "feet"),
  3495. weight: math.unit(170, "kg"),
  3496. name: "Side",
  3497. image: {
  3498. source: "./media/characters/runnola/side.svg",
  3499. extra: 741 / 448,
  3500. bottom: 0.05
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Small",
  3507. height: math.unit(3, "feet")
  3508. },
  3509. {
  3510. name: "Normal",
  3511. height: math.unit(5 + 5 / 12, "feet"),
  3512. default: true
  3513. },
  3514. {
  3515. name: "Big",
  3516. height: math.unit(10, "feet")
  3517. },
  3518. ]
  3519. ))
  3520. characterMakers.push(() => makeCharacter(
  3521. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  3522. {
  3523. front: {
  3524. height: math.unit(2, "meter"),
  3525. weight: math.unit(50, "kg"),
  3526. name: "Front",
  3527. image: {
  3528. source: "./media/characters/kurribird/front.svg",
  3529. bottom: 0.015
  3530. }
  3531. },
  3532. frontAlt: {
  3533. height: math.unit(1.5, "meter"),
  3534. weight: math.unit(50, "kg"),
  3535. name: "Front (Alt)",
  3536. image: {
  3537. source: "./media/characters/kurribird/front-alt.svg",
  3538. extra: 1.45
  3539. }
  3540. },
  3541. },
  3542. [
  3543. {
  3544. name: "Normal",
  3545. height: math.unit(7, "feet")
  3546. },
  3547. {
  3548. name: "Big",
  3549. height: math.unit(12, "feet"),
  3550. default: true
  3551. },
  3552. {
  3553. name: "Macro",
  3554. height: math.unit(1500, "feet")
  3555. },
  3556. {
  3557. name: "Megamacro",
  3558. height: math.unit(2, "miles")
  3559. }
  3560. ]
  3561. ))
  3562. characterMakers.push(() => makeCharacter(
  3563. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3564. {
  3565. front: {
  3566. height: math.unit(2, "meter"),
  3567. weight: math.unit(80, "kg"),
  3568. name: "Front",
  3569. image: {
  3570. source: "./media/characters/elbial/front.svg",
  3571. extra: 1643 / 1556,
  3572. bottom: 60.2 / 1696
  3573. }
  3574. },
  3575. side: {
  3576. height: math.unit(2, "meter"),
  3577. weight: math.unit(80, "kg"),
  3578. name: "Side",
  3579. image: {
  3580. source: "./media/characters/elbial/side.svg",
  3581. extra: 1601/1528,
  3582. bottom: 97/1698
  3583. }
  3584. },
  3585. back: {
  3586. height: math.unit(2, "meter"),
  3587. weight: math.unit(80, "kg"),
  3588. name: "Back",
  3589. image: {
  3590. source: "./media/characters/elbial/back.svg",
  3591. extra: 1653/1569,
  3592. bottom: 20/1673
  3593. }
  3594. },
  3595. frontDressed: {
  3596. height: math.unit(2, "meter"),
  3597. weight: math.unit(80, "kg"),
  3598. name: "Front (Dressed)",
  3599. image: {
  3600. source: "./media/characters/elbial/front-dressed.svg",
  3601. extra: 1638/1569,
  3602. bottom: 70/1708
  3603. }
  3604. },
  3605. genitals: {
  3606. height: math.unit(2 / 3.367, "meter"),
  3607. name: "Genitals",
  3608. image: {
  3609. source: "./media/characters/elbial/genitals.svg"
  3610. }
  3611. },
  3612. },
  3613. [
  3614. {
  3615. name: "Large",
  3616. height: math.unit(100, "feet")
  3617. },
  3618. {
  3619. name: "Macro",
  3620. height: math.unit(500, "feet"),
  3621. default: true
  3622. },
  3623. {
  3624. name: "Megamacro",
  3625. height: math.unit(10, "miles")
  3626. },
  3627. {
  3628. name: "Gigamacro",
  3629. height: math.unit(25000, "miles")
  3630. },
  3631. {
  3632. name: "Full-Size",
  3633. height: math.unit(8000000, "gigaparsecs")
  3634. }
  3635. ]
  3636. ))
  3637. characterMakers.push(() => makeCharacter(
  3638. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3639. {
  3640. front: {
  3641. height: math.unit(2, "meter"),
  3642. weight: math.unit(60, "kg"),
  3643. name: "Front",
  3644. image: {
  3645. source: "./media/characters/noah/front.svg"
  3646. }
  3647. },
  3648. talons: {
  3649. height: math.unit(0.315, "meter"),
  3650. name: "Talons",
  3651. image: {
  3652. source: "./media/characters/noah/talons.svg"
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Large",
  3659. height: math.unit(50, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(750, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Megamacro",
  3668. height: math.unit(50, "miles")
  3669. },
  3670. {
  3671. name: "Gigamacro",
  3672. height: math.unit(100000, "miles")
  3673. },
  3674. {
  3675. name: "Full-Size",
  3676. height: math.unit(3000000000, "miles")
  3677. }
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(2, "meter"),
  3685. weight: math.unit(80, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/natalya/front.svg"
  3689. }
  3690. },
  3691. back: {
  3692. height: math.unit(2, "meter"),
  3693. weight: math.unit(80, "kg"),
  3694. name: "Back",
  3695. image: {
  3696. source: "./media/characters/natalya/back.svg"
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(150, "feet"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Megamacro",
  3708. height: math.unit(5, "miles")
  3709. },
  3710. {
  3711. name: "Full-Size",
  3712. height: math.unit(600, "kiloparsecs")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(2, "meter"),
  3721. weight: math.unit(50, "kg"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/erestrebah/front.svg",
  3725. extra: 1262/1162,
  3726. bottom: 96/1358
  3727. }
  3728. },
  3729. back: {
  3730. height: math.unit(2, "meter"),
  3731. weight: math.unit(50, "kg"),
  3732. name: "Back",
  3733. image: {
  3734. source: "./media/characters/erestrebah/back.svg",
  3735. extra: 1257/1139,
  3736. bottom: 13/1270
  3737. }
  3738. },
  3739. wing: {
  3740. height: math.unit(2, "meter"),
  3741. weight: math.unit(50, "kg"),
  3742. name: "Wing",
  3743. image: {
  3744. source: "./media/characters/erestrebah/wing.svg",
  3745. extra: 1262/1162,
  3746. bottom: 96/1358
  3747. }
  3748. },
  3749. mouth: {
  3750. height: math.unit(0.39, "feet"),
  3751. name: "Mouth",
  3752. image: {
  3753. source: "./media/characters/erestrebah/mouth.svg"
  3754. }
  3755. }
  3756. },
  3757. [
  3758. {
  3759. name: "Normal",
  3760. height: math.unit(10, "feet")
  3761. },
  3762. {
  3763. name: "Large",
  3764. height: math.unit(50, "feet"),
  3765. default: true
  3766. },
  3767. {
  3768. name: "Macro",
  3769. height: math.unit(300, "feet")
  3770. },
  3771. {
  3772. name: "Macro+",
  3773. height: math.unit(750, "feet")
  3774. },
  3775. {
  3776. name: "Megamacro",
  3777. height: math.unit(3, "miles")
  3778. }
  3779. ]
  3780. ))
  3781. characterMakers.push(() => makeCharacter(
  3782. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3783. {
  3784. front: {
  3785. height: math.unit(2, "meter"),
  3786. weight: math.unit(80, "kg"),
  3787. name: "Front",
  3788. image: {
  3789. source: "./media/characters/jennifer/front.svg",
  3790. bottom: 0.11,
  3791. extra: 1.16
  3792. }
  3793. },
  3794. frontAlt: {
  3795. height: math.unit(2, "meter"),
  3796. weight: math.unit(80, "kg"),
  3797. name: "Front (Alt)",
  3798. image: {
  3799. source: "./media/characters/jennifer/front-alt.svg"
  3800. }
  3801. }
  3802. },
  3803. [
  3804. {
  3805. name: "Canon Height",
  3806. height: math.unit(120, "feet"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(300, "feet")
  3812. },
  3813. {
  3814. name: "Megamacro",
  3815. height: math.unit(20000, "feet")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(2, "meter"),
  3824. weight: math.unit(50, "kg"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/kalista/front.svg",
  3828. extra: 1314/1145,
  3829. bottom: 101/1415
  3830. }
  3831. },
  3832. back: {
  3833. height: math.unit(2, "meter"),
  3834. weight: math.unit(50, "kg"),
  3835. name: "Back",
  3836. image: {
  3837. source: "./media/characters/kalista/back.svg",
  3838. extra: 1366 / 1156,
  3839. bottom: 33.9 / 1362.78
  3840. }
  3841. }
  3842. },
  3843. [
  3844. {
  3845. name: "Uncomfortably Small",
  3846. height: math.unit(10, "feet")
  3847. },
  3848. {
  3849. name: "Small",
  3850. height: math.unit(30, "feet")
  3851. },
  3852. {
  3853. name: "Macro",
  3854. height: math.unit(100, "feet"),
  3855. default: true
  3856. },
  3857. {
  3858. name: "Macro+",
  3859. height: math.unit(2000, "feet")
  3860. },
  3861. {
  3862. name: "True Form",
  3863. height: math.unit(8924, "miles")
  3864. }
  3865. ]
  3866. ))
  3867. characterMakers.push(() => makeCharacter(
  3868. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3869. {
  3870. front: {
  3871. height: math.unit(2, "meter"),
  3872. weight: math.unit(120, "kg"),
  3873. name: "Front",
  3874. image: {
  3875. source: "./media/characters/ggv/front.svg"
  3876. }
  3877. },
  3878. side: {
  3879. height: math.unit(2, "meter"),
  3880. weight: math.unit(120, "kg"),
  3881. name: "Side",
  3882. image: {
  3883. source: "./media/characters/ggv/side.svg"
  3884. }
  3885. }
  3886. },
  3887. [
  3888. {
  3889. name: "Extremely Puny",
  3890. height: math.unit(9 + 5 / 12, "feet")
  3891. },
  3892. {
  3893. name: "Horribly Small",
  3894. height: math.unit(47.7, "miles"),
  3895. default: true
  3896. },
  3897. {
  3898. name: "Reasonably Sized",
  3899. height: math.unit(25000, "parsecs")
  3900. },
  3901. {
  3902. name: "Slightly Uncompressed",
  3903. height: math.unit(7.77e31, "parsecs")
  3904. },
  3905. {
  3906. name: "Omniversal",
  3907. height: math.unit(1e300, "meters")
  3908. },
  3909. ]
  3910. ))
  3911. characterMakers.push(() => makeCharacter(
  3912. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3913. {
  3914. front: {
  3915. height: math.unit(2, "meter"),
  3916. weight: math.unit(75, "lb"),
  3917. name: "Front",
  3918. image: {
  3919. source: "./media/characters/napalm/front.svg"
  3920. }
  3921. },
  3922. back: {
  3923. height: math.unit(2, "meter"),
  3924. weight: math.unit(75, "lb"),
  3925. name: "Back",
  3926. image: {
  3927. source: "./media/characters/napalm/back.svg"
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Standard",
  3934. height: math.unit(55, "feet"),
  3935. default: true
  3936. }
  3937. ]
  3938. ))
  3939. characterMakers.push(() => makeCharacter(
  3940. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3941. {
  3942. front: {
  3943. height: math.unit(7 + 5 / 6, "feet"),
  3944. weight: math.unit(325, "lb"),
  3945. name: "Front",
  3946. image: {
  3947. source: "./media/characters/asana/front.svg",
  3948. extra: 1133 / 1060,
  3949. bottom: 15.2 / 1148.6
  3950. }
  3951. },
  3952. back: {
  3953. height: math.unit(7 + 5 / 6, "feet"),
  3954. weight: math.unit(325, "lb"),
  3955. name: "Back",
  3956. image: {
  3957. source: "./media/characters/asana/back.svg",
  3958. extra: 1114 / 1043,
  3959. bottom: 5 / 1120
  3960. }
  3961. },
  3962. dressedDark: {
  3963. height: math.unit(7 + 5 / 6, "feet"),
  3964. weight: math.unit(325, "lb"),
  3965. name: "Dressed (Dark)",
  3966. image: {
  3967. source: "./media/characters/asana/dressed-dark.svg",
  3968. extra: 1133 / 1060,
  3969. bottom: 15.2 / 1148.6
  3970. }
  3971. },
  3972. dressedLight: {
  3973. height: math.unit(7 + 5 / 6, "feet"),
  3974. weight: math.unit(325, "lb"),
  3975. name: "Dressed (Light)",
  3976. image: {
  3977. source: "./media/characters/asana/dressed-light.svg",
  3978. extra: 1133 / 1060,
  3979. bottom: 15.2 / 1148.6
  3980. }
  3981. },
  3982. },
  3983. [
  3984. {
  3985. name: "Standard",
  3986. height: math.unit(7 + 5 / 6, "feet"),
  3987. default: true
  3988. },
  3989. {
  3990. name: "Large",
  3991. height: math.unit(10, "meters")
  3992. },
  3993. {
  3994. name: "Macro",
  3995. height: math.unit(2500, "meters")
  3996. },
  3997. {
  3998. name: "Megamacro",
  3999. height: math.unit(5e6, "meters")
  4000. },
  4001. {
  4002. name: "Examacro",
  4003. height: math.unit(5e12, "lightyears")
  4004. },
  4005. {
  4006. name: "Max Size",
  4007. height: math.unit(1e31, "lightyears")
  4008. }
  4009. ]
  4010. ))
  4011. characterMakers.push(() => makeCharacter(
  4012. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4013. {
  4014. front: {
  4015. height: math.unit(2, "meter"),
  4016. weight: math.unit(60, "kg"),
  4017. name: "Front",
  4018. image: {
  4019. source: "./media/characters/ebony/front.svg",
  4020. bottom: 0.03,
  4021. extra: 1045 / 810 + 0.03
  4022. }
  4023. },
  4024. side: {
  4025. height: math.unit(2, "meter"),
  4026. weight: math.unit(60, "kg"),
  4027. name: "Side",
  4028. image: {
  4029. source: "./media/characters/ebony/side.svg",
  4030. bottom: 0.03,
  4031. extra: 1045 / 810 + 0.03
  4032. }
  4033. },
  4034. back: {
  4035. height: math.unit(2, "meter"),
  4036. weight: math.unit(60, "kg"),
  4037. name: "Back",
  4038. image: {
  4039. source: "./media/characters/ebony/back.svg",
  4040. bottom: 0.01,
  4041. extra: 1045 / 810 + 0.01
  4042. }
  4043. },
  4044. },
  4045. [
  4046. // TODO check why I did this lol
  4047. {
  4048. name: "Standard",
  4049. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4050. default: true
  4051. },
  4052. {
  4053. name: "Macro",
  4054. height: math.unit(200, "feet")
  4055. },
  4056. {
  4057. name: "Gigamacro",
  4058. height: math.unit(13000, "km")
  4059. }
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4064. {
  4065. front: {
  4066. height: math.unit(6, "feet"),
  4067. weight: math.unit(175, "lb"),
  4068. name: "Front",
  4069. image: {
  4070. source: "./media/characters/mountain/front.svg",
  4071. extra: 972 / 955,
  4072. bottom: 64 / 1036.6
  4073. }
  4074. },
  4075. back: {
  4076. height: math.unit(6, "feet"),
  4077. weight: math.unit(175, "lb"),
  4078. name: "Back",
  4079. image: {
  4080. source: "./media/characters/mountain/back.svg",
  4081. extra: 970 / 950,
  4082. bottom: 28.25 / 999
  4083. }
  4084. },
  4085. },
  4086. [
  4087. {
  4088. name: "Large",
  4089. height: math.unit(20, "meters")
  4090. },
  4091. {
  4092. name: "Macro",
  4093. height: math.unit(300, "meters")
  4094. },
  4095. {
  4096. name: "Gigamacro",
  4097. height: math.unit(10000, "km"),
  4098. default: true
  4099. },
  4100. {
  4101. name: "Examacro",
  4102. height: math.unit(10e9, "lightyears")
  4103. }
  4104. ]
  4105. ))
  4106. characterMakers.push(() => makeCharacter(
  4107. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4108. {
  4109. front: {
  4110. height: math.unit(8, "feet"),
  4111. weight: math.unit(500, "lb"),
  4112. name: "Front",
  4113. image: {
  4114. source: "./media/characters/rick/front.svg"
  4115. }
  4116. }
  4117. },
  4118. [
  4119. {
  4120. name: "Normal",
  4121. height: math.unit(8, "feet"),
  4122. default: true
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(5, "km")
  4127. }
  4128. ]
  4129. ))
  4130. characterMakers.push(() => makeCharacter(
  4131. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4132. {
  4133. front: {
  4134. height: math.unit(8, "feet"),
  4135. weight: math.unit(120, "lb"),
  4136. name: "Front",
  4137. image: {
  4138. source: "./media/characters/ona/front.svg"
  4139. }
  4140. },
  4141. frontAlt: {
  4142. height: math.unit(8, "feet"),
  4143. weight: math.unit(120, "lb"),
  4144. name: "Front (Alt)",
  4145. image: {
  4146. source: "./media/characters/ona/front-alt.svg"
  4147. }
  4148. },
  4149. back: {
  4150. height: math.unit(8, "feet"),
  4151. weight: math.unit(120, "lb"),
  4152. name: "Back",
  4153. image: {
  4154. source: "./media/characters/ona/back.svg"
  4155. }
  4156. },
  4157. foot: {
  4158. height: math.unit(1.1, "feet"),
  4159. name: "Foot",
  4160. image: {
  4161. source: "./media/characters/ona/foot.svg"
  4162. }
  4163. }
  4164. },
  4165. [
  4166. {
  4167. name: "Megamacro",
  4168. height: math.unit(70, "km"),
  4169. default: true
  4170. },
  4171. {
  4172. name: "Gigamacro",
  4173. height: math.unit(681818, "miles")
  4174. },
  4175. {
  4176. name: "Examacro",
  4177. height: math.unit(3800000, "lightyears")
  4178. },
  4179. ]
  4180. ))
  4181. characterMakers.push(() => makeCharacter(
  4182. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4183. {
  4184. front: {
  4185. height: math.unit(12, "feet"),
  4186. weight: math.unit(3000, "lb"),
  4187. name: "Front",
  4188. image: {
  4189. source: "./media/characters/mech/front.svg",
  4190. extra: 2900 / 2770,
  4191. bottom: 110 / 3010
  4192. }
  4193. },
  4194. back: {
  4195. height: math.unit(12, "feet"),
  4196. weight: math.unit(3000, "lb"),
  4197. name: "Back",
  4198. image: {
  4199. source: "./media/characters/mech/back.svg",
  4200. extra: 3011 / 2890,
  4201. bottom: 94 / 3105
  4202. }
  4203. },
  4204. maw: {
  4205. height: math.unit(3.07, "feet"),
  4206. name: "Maw",
  4207. image: {
  4208. source: "./media/characters/mech/maw.svg"
  4209. }
  4210. },
  4211. head: {
  4212. height: math.unit(2.82, "feet"),
  4213. name: "Head",
  4214. image: {
  4215. source: "./media/characters/mech/head.svg"
  4216. }
  4217. },
  4218. dick: {
  4219. height: math.unit(1.43, "feet"),
  4220. name: "Dick",
  4221. image: {
  4222. source: "./media/characters/mech/dick.svg"
  4223. }
  4224. },
  4225. },
  4226. [
  4227. {
  4228. name: "Normal",
  4229. height: math.unit(12, "feet")
  4230. },
  4231. {
  4232. name: "Macro",
  4233. height: math.unit(300, "feet"),
  4234. default: true
  4235. },
  4236. {
  4237. name: "Macro+",
  4238. height: math.unit(1500, "feet")
  4239. },
  4240. ]
  4241. ))
  4242. characterMakers.push(() => makeCharacter(
  4243. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  4244. {
  4245. front: {
  4246. height: math.unit(1.3, "meter"),
  4247. weight: math.unit(30, "kg"),
  4248. name: "Front",
  4249. image: {
  4250. source: "./media/characters/gregory/front.svg",
  4251. }
  4252. }
  4253. },
  4254. [
  4255. {
  4256. name: "Normal",
  4257. height: math.unit(1.3, "meter"),
  4258. default: true
  4259. },
  4260. {
  4261. name: "Macro",
  4262. height: math.unit(20, "meter")
  4263. }
  4264. ]
  4265. ))
  4266. characterMakers.push(() => makeCharacter(
  4267. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  4268. {
  4269. front: {
  4270. height: math.unit(2.8, "meter"),
  4271. weight: math.unit(200, "kg"),
  4272. name: "Front",
  4273. image: {
  4274. source: "./media/characters/elory/front.svg",
  4275. }
  4276. }
  4277. },
  4278. [
  4279. {
  4280. name: "Normal",
  4281. height: math.unit(2.8, "meter"),
  4282. default: true
  4283. },
  4284. {
  4285. name: "Macro",
  4286. height: math.unit(38, "meter")
  4287. }
  4288. ]
  4289. ))
  4290. characterMakers.push(() => makeCharacter(
  4291. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  4292. {
  4293. front: {
  4294. height: math.unit(470, "feet"),
  4295. weight: math.unit(924, "tons"),
  4296. name: "Front",
  4297. image: {
  4298. source: "./media/characters/angelpatamon/front.svg",
  4299. }
  4300. }
  4301. },
  4302. [
  4303. {
  4304. name: "Normal",
  4305. height: math.unit(470, "feet"),
  4306. default: true
  4307. },
  4308. {
  4309. name: "Deity Size I",
  4310. height: math.unit(28651.2, "km")
  4311. },
  4312. {
  4313. name: "Deity Size II",
  4314. height: math.unit(171907.2, "km")
  4315. }
  4316. ]
  4317. ))
  4318. characterMakers.push(() => makeCharacter(
  4319. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  4320. {
  4321. side: {
  4322. height: math.unit(7.2, "meter"),
  4323. weight: math.unit(8.2, "tons"),
  4324. name: "Side",
  4325. image: {
  4326. source: "./media/characters/cryae/side.svg",
  4327. extra: 3500 / 1500
  4328. }
  4329. }
  4330. },
  4331. [
  4332. {
  4333. name: "Normal",
  4334. height: math.unit(7.2, "meter"),
  4335. default: true
  4336. }
  4337. ]
  4338. ))
  4339. characterMakers.push(() => makeCharacter(
  4340. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  4341. {
  4342. front: {
  4343. height: math.unit(6, "feet"),
  4344. weight: math.unit(175, "lb"),
  4345. name: "Front",
  4346. image: {
  4347. source: "./media/characters/xera/front.svg",
  4348. extra: 2377 / 1972,
  4349. bottom: 75.5 / 2452
  4350. }
  4351. },
  4352. side: {
  4353. height: math.unit(6, "feet"),
  4354. weight: math.unit(175, "lb"),
  4355. name: "Side",
  4356. image: {
  4357. source: "./media/characters/xera/side.svg",
  4358. extra: 2345 / 2019,
  4359. bottom: 39.7 / 2384
  4360. }
  4361. },
  4362. back: {
  4363. height: math.unit(6, "feet"),
  4364. weight: math.unit(175, "lb"),
  4365. name: "Back",
  4366. image: {
  4367. source: "./media/characters/xera/back.svg",
  4368. extra: 2095 / 1984,
  4369. bottom: 67 / 2166
  4370. }
  4371. },
  4372. },
  4373. [
  4374. {
  4375. name: "Small",
  4376. height: math.unit(10, "feet")
  4377. },
  4378. {
  4379. name: "Macro",
  4380. height: math.unit(500, "meters"),
  4381. default: true
  4382. },
  4383. {
  4384. name: "Macro+",
  4385. height: math.unit(10, "km")
  4386. },
  4387. {
  4388. name: "Gigamacro",
  4389. height: math.unit(25000, "km")
  4390. },
  4391. {
  4392. name: "Teramacro",
  4393. height: math.unit(3e6, "km")
  4394. }
  4395. ]
  4396. ))
  4397. characterMakers.push(() => makeCharacter(
  4398. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  4399. {
  4400. front: {
  4401. height: math.unit(6, "feet"),
  4402. weight: math.unit(175, "lb"),
  4403. name: "Front",
  4404. image: {
  4405. source: "./media/characters/nebula/front.svg",
  4406. extra: 2566 / 2362,
  4407. bottom: 81 / 2644
  4408. }
  4409. }
  4410. },
  4411. [
  4412. {
  4413. name: "Small",
  4414. height: math.unit(4.5, "meters")
  4415. },
  4416. {
  4417. name: "Macro",
  4418. height: math.unit(1500, "meters"),
  4419. default: true
  4420. },
  4421. {
  4422. name: "Megamacro",
  4423. height: math.unit(150, "km")
  4424. },
  4425. {
  4426. name: "Gigamacro",
  4427. height: math.unit(27000, "km")
  4428. }
  4429. ]
  4430. ))
  4431. characterMakers.push(() => makeCharacter(
  4432. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  4433. {
  4434. front: {
  4435. height: math.unit(6, "feet"),
  4436. weight: math.unit(225, "lb"),
  4437. name: "Front",
  4438. image: {
  4439. source: "./media/characters/abysgar/front.svg"
  4440. }
  4441. }
  4442. },
  4443. [
  4444. {
  4445. name: "Small",
  4446. height: math.unit(4.5, "meters")
  4447. },
  4448. {
  4449. name: "Macro",
  4450. height: math.unit(1250, "meters"),
  4451. default: true
  4452. },
  4453. {
  4454. name: "Megamacro",
  4455. height: math.unit(125, "km")
  4456. },
  4457. {
  4458. name: "Gigamacro",
  4459. height: math.unit(26000, "km")
  4460. }
  4461. ]
  4462. ))
  4463. characterMakers.push(() => makeCharacter(
  4464. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  4465. {
  4466. front: {
  4467. height: math.unit(6, "feet"),
  4468. weight: math.unit(180, "lb"),
  4469. name: "Front",
  4470. image: {
  4471. source: "./media/characters/yakuz/front.svg"
  4472. }
  4473. }
  4474. },
  4475. [
  4476. {
  4477. name: "Small",
  4478. height: math.unit(5, "meters")
  4479. },
  4480. {
  4481. name: "Macro",
  4482. height: math.unit(1500, "meters"),
  4483. default: true
  4484. },
  4485. {
  4486. name: "Megamacro",
  4487. height: math.unit(200, "km")
  4488. },
  4489. {
  4490. name: "Gigamacro",
  4491. height: math.unit(100000, "km")
  4492. }
  4493. ]
  4494. ))
  4495. characterMakers.push(() => makeCharacter(
  4496. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  4497. {
  4498. front: {
  4499. height: math.unit(6, "feet"),
  4500. weight: math.unit(175, "lb"),
  4501. name: "Front",
  4502. image: {
  4503. source: "./media/characters/mirova/front.svg",
  4504. extra: 3334 / 3071,
  4505. bottom: 42 / 3375.6
  4506. }
  4507. }
  4508. },
  4509. [
  4510. {
  4511. name: "Small",
  4512. height: math.unit(5, "meters")
  4513. },
  4514. {
  4515. name: "Macro",
  4516. height: math.unit(900, "meters"),
  4517. default: true
  4518. },
  4519. {
  4520. name: "Megamacro",
  4521. height: math.unit(135, "km")
  4522. },
  4523. {
  4524. name: "Gigamacro",
  4525. height: math.unit(20000, "km")
  4526. }
  4527. ]
  4528. ))
  4529. characterMakers.push(() => makeCharacter(
  4530. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  4531. {
  4532. side: {
  4533. height: math.unit(28.35, "feet"),
  4534. weight: math.unit(99.75, "tons"),
  4535. name: "Side",
  4536. image: {
  4537. source: "./media/characters/asana-mech/side.svg",
  4538. extra: 923 / 699,
  4539. bottom: 50 / 975
  4540. }
  4541. },
  4542. chaingun: {
  4543. height: math.unit(7, "feet"),
  4544. weight: math.unit(2400, "lb"),
  4545. name: "Chaingun",
  4546. image: {
  4547. source: "./media/characters/asana-mech/chaingun.svg"
  4548. }
  4549. },
  4550. laser: {
  4551. height: math.unit(7.12, "feet"),
  4552. weight: math.unit(2000, "lb"),
  4553. name: "Laser",
  4554. image: {
  4555. source: "./media/characters/asana-mech/laser.svg"
  4556. }
  4557. },
  4558. },
  4559. [
  4560. {
  4561. name: "Normal",
  4562. height: math.unit(28.35, "feet"),
  4563. default: true
  4564. },
  4565. {
  4566. name: "Macro",
  4567. height: math.unit(2500, "feet")
  4568. },
  4569. {
  4570. name: "Megamacro",
  4571. height: math.unit(25, "miles")
  4572. },
  4573. {
  4574. name: "Examacro",
  4575. height: math.unit(6e8, "lightyears")
  4576. },
  4577. ]
  4578. ))
  4579. characterMakers.push(() => makeCharacter(
  4580. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4581. {
  4582. front: {
  4583. height: math.unit(5, "meters"),
  4584. weight: math.unit(1000, "kg"),
  4585. name: "Front",
  4586. image: {
  4587. source: "./media/characters/asche/front.svg",
  4588. extra: 1258 / 1190,
  4589. bottom: 47 / 1305
  4590. }
  4591. },
  4592. frontUnderwear: {
  4593. height: math.unit(5, "meters"),
  4594. weight: math.unit(1000, "kg"),
  4595. name: "Front (Underwear)",
  4596. image: {
  4597. source: "./media/characters/asche/front-underwear.svg",
  4598. extra: 1258 / 1190,
  4599. bottom: 47 / 1305
  4600. }
  4601. },
  4602. frontDressed: {
  4603. height: math.unit(5, "meters"),
  4604. weight: math.unit(1000, "kg"),
  4605. name: "Front (Dressed)",
  4606. image: {
  4607. source: "./media/characters/asche/front-dressed.svg",
  4608. extra: 1258 / 1190,
  4609. bottom: 47 / 1305
  4610. }
  4611. },
  4612. frontArmor: {
  4613. height: math.unit(5, "meters"),
  4614. weight: math.unit(1000, "kg"),
  4615. name: "Front (Armored)",
  4616. image: {
  4617. source: "./media/characters/asche/front-armored.svg",
  4618. extra: 1374 / 1308,
  4619. bottom: 23 / 1397
  4620. }
  4621. },
  4622. mp724: {
  4623. height: math.unit(0.96, "meters"),
  4624. weight: math.unit(38, "kg"),
  4625. name: "H&K MP724",
  4626. image: {
  4627. source: "./media/characters/asche/h&k-mp724.svg"
  4628. }
  4629. },
  4630. side: {
  4631. height: math.unit(5, "meters"),
  4632. weight: math.unit(1000, "kg"),
  4633. name: "Side",
  4634. image: {
  4635. source: "./media/characters/asche/side.svg",
  4636. extra: 1717 / 1609,
  4637. bottom: 0.005
  4638. }
  4639. },
  4640. back: {
  4641. height: math.unit(5, "meters"),
  4642. weight: math.unit(1000, "kg"),
  4643. name: "Back",
  4644. image: {
  4645. source: "./media/characters/asche/back.svg",
  4646. extra: 1570 / 1501
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "DEFCON 5",
  4653. height: math.unit(5, "meters")
  4654. },
  4655. {
  4656. name: "DEFCON 4",
  4657. height: math.unit(500, "meters"),
  4658. default: true
  4659. },
  4660. {
  4661. name: "DEFCON 3",
  4662. height: math.unit(5, "km")
  4663. },
  4664. {
  4665. name: "DEFCON 2",
  4666. height: math.unit(500, "km")
  4667. },
  4668. {
  4669. name: "DEFCON 1",
  4670. height: math.unit(500000, "km")
  4671. },
  4672. {
  4673. name: "DEFCON 0",
  4674. height: math.unit(3, "gigaparsecs")
  4675. },
  4676. ]
  4677. ))
  4678. characterMakers.push(() => makeCharacter(
  4679. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4680. {
  4681. front: {
  4682. height: math.unit(2, "meters"),
  4683. weight: math.unit(76, "kg"),
  4684. name: "Front",
  4685. image: {
  4686. source: "./media/characters/gale/front.svg"
  4687. }
  4688. },
  4689. frontAlt1: {
  4690. height: math.unit(2, "meters"),
  4691. weight: math.unit(76, "kg"),
  4692. name: "Front (Alt 1)",
  4693. image: {
  4694. source: "./media/characters/gale/front-alt-1.svg"
  4695. }
  4696. },
  4697. frontAlt2: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(76, "kg"),
  4700. name: "Front (Alt 2)",
  4701. image: {
  4702. source: "./media/characters/gale/front-alt-2.svg"
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(7, "feet")
  4710. },
  4711. {
  4712. name: "Macro",
  4713. height: math.unit(150, "feet"),
  4714. default: true
  4715. },
  4716. {
  4717. name: "Macro+",
  4718. height: math.unit(300, "feet")
  4719. },
  4720. ]
  4721. ))
  4722. characterMakers.push(() => makeCharacter(
  4723. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4724. {
  4725. front: {
  4726. height: math.unit(5 + 10/12, "feet"),
  4727. weight: math.unit(67, "kg"),
  4728. name: "Front",
  4729. image: {
  4730. source: "./media/characters/draylen/front.svg",
  4731. extra: 832/777,
  4732. bottom: 85/917
  4733. }
  4734. }
  4735. },
  4736. [
  4737. {
  4738. name: "Normal",
  4739. height: math.unit(5 + 10/12, "feet")
  4740. },
  4741. {
  4742. name: "Macro",
  4743. height: math.unit(150, "feet"),
  4744. default: true
  4745. }
  4746. ]
  4747. ))
  4748. characterMakers.push(() => makeCharacter(
  4749. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4750. {
  4751. front: {
  4752. height: math.unit(7 + 9 / 12, "feet"),
  4753. weight: math.unit(379, "lbs"),
  4754. name: "Front",
  4755. image: {
  4756. source: "./media/characters/chez/front.svg"
  4757. }
  4758. },
  4759. side: {
  4760. height: math.unit(7 + 9 / 12, "feet"),
  4761. weight: math.unit(379, "lbs"),
  4762. name: "Side",
  4763. image: {
  4764. source: "./media/characters/chez/side.svg"
  4765. }
  4766. }
  4767. },
  4768. [
  4769. {
  4770. name: "Normal",
  4771. height: math.unit(7 + 9 / 12, "feet"),
  4772. default: true
  4773. },
  4774. {
  4775. name: "God King",
  4776. height: math.unit(9750000, "meters")
  4777. }
  4778. ]
  4779. ))
  4780. characterMakers.push(() => makeCharacter(
  4781. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4782. {
  4783. front: {
  4784. height: math.unit(6, "feet"),
  4785. weight: math.unit(275, "lbs"),
  4786. name: "Front",
  4787. image: {
  4788. source: "./media/characters/kaylum/front.svg",
  4789. bottom: 0.01,
  4790. extra: 1166 / 1031
  4791. }
  4792. },
  4793. frontWingless: {
  4794. height: math.unit(6, "feet"),
  4795. weight: math.unit(275, "lbs"),
  4796. name: "Front (Wingless)",
  4797. image: {
  4798. source: "./media/characters/kaylum/front-wingless.svg",
  4799. bottom: 0.01,
  4800. extra: 1117 / 1031
  4801. }
  4802. }
  4803. },
  4804. [
  4805. {
  4806. name: "Normal",
  4807. height: math.unit(3.05, "meters")
  4808. },
  4809. {
  4810. name: "Master",
  4811. height: math.unit(5.5, "meters")
  4812. },
  4813. {
  4814. name: "Rampage",
  4815. height: math.unit(19, "meters")
  4816. },
  4817. {
  4818. name: "Macro Lite",
  4819. height: math.unit(37, "meters")
  4820. },
  4821. {
  4822. name: "Hyper Predator",
  4823. height: math.unit(61, "meters")
  4824. },
  4825. {
  4826. name: "Macro",
  4827. height: math.unit(138, "meters"),
  4828. default: true
  4829. }
  4830. ]
  4831. ))
  4832. characterMakers.push(() => makeCharacter(
  4833. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4834. {
  4835. front: {
  4836. height: math.unit(5 + 5 / 12, "feet"),
  4837. weight: math.unit(120, "lbs"),
  4838. name: "Front",
  4839. image: {
  4840. source: "./media/characters/geta/front.svg",
  4841. extra: 1003/933,
  4842. bottom: 21/1024
  4843. }
  4844. },
  4845. paw: {
  4846. height: math.unit(0.35, "feet"),
  4847. name: "Paw",
  4848. image: {
  4849. source: "./media/characters/geta/paw.svg"
  4850. }
  4851. },
  4852. },
  4853. [
  4854. {
  4855. name: "Micro",
  4856. height: math.unit(3, "inches"),
  4857. default: true
  4858. },
  4859. {
  4860. name: "Normal",
  4861. height: math.unit(5 + 5 / 12, "feet")
  4862. }
  4863. ]
  4864. ))
  4865. characterMakers.push(() => makeCharacter(
  4866. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4867. {
  4868. front: {
  4869. height: math.unit(6, "feet"),
  4870. weight: math.unit(300, "lbs"),
  4871. name: "Front",
  4872. image: {
  4873. source: "./media/characters/tyrnn/front.svg"
  4874. }
  4875. }
  4876. },
  4877. [
  4878. {
  4879. name: "Main Height",
  4880. height: math.unit(355, "feet"),
  4881. default: true
  4882. },
  4883. {
  4884. name: "Fave. Height",
  4885. height: math.unit(2400, "feet")
  4886. }
  4887. ]
  4888. ))
  4889. characterMakers.push(() => makeCharacter(
  4890. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4891. {
  4892. front: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(300, "lbs"),
  4895. name: "Front",
  4896. image: {
  4897. source: "./media/characters/appledectomy/front.svg"
  4898. }
  4899. }
  4900. },
  4901. [
  4902. {
  4903. name: "Macro",
  4904. height: math.unit(2500, "feet")
  4905. },
  4906. {
  4907. name: "Megamacro",
  4908. height: math.unit(50, "miles"),
  4909. default: true
  4910. },
  4911. {
  4912. name: "Gigamacro",
  4913. height: math.unit(5000, "miles")
  4914. },
  4915. {
  4916. name: "Teramacro",
  4917. height: math.unit(250000, "miles")
  4918. },
  4919. ]
  4920. ))
  4921. characterMakers.push(() => makeCharacter(
  4922. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4923. {
  4924. front: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(200, "lbs"),
  4927. name: "Front",
  4928. image: {
  4929. source: "./media/characters/vulpes/front.svg",
  4930. extra: 573 / 543,
  4931. bottom: 0.033
  4932. }
  4933. },
  4934. side: {
  4935. height: math.unit(6, "feet"),
  4936. weight: math.unit(200, "lbs"),
  4937. name: "Side",
  4938. image: {
  4939. source: "./media/characters/vulpes/side.svg",
  4940. extra: 577 / 549,
  4941. bottom: 11 / 588
  4942. }
  4943. },
  4944. back: {
  4945. height: math.unit(6, "feet"),
  4946. weight: math.unit(200, "lbs"),
  4947. name: "Back",
  4948. image: {
  4949. source: "./media/characters/vulpes/back.svg",
  4950. extra: 573 / 549,
  4951. bottom: 20 / 593
  4952. }
  4953. },
  4954. feet: {
  4955. height: math.unit(1.276, "feet"),
  4956. name: "Feet",
  4957. image: {
  4958. source: "./media/characters/vulpes/feet.svg"
  4959. }
  4960. },
  4961. maw: {
  4962. height: math.unit(1.18, "feet"),
  4963. name: "Maw",
  4964. image: {
  4965. source: "./media/characters/vulpes/maw.svg"
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Micro",
  4972. height: math.unit(2, "inches")
  4973. },
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(6.3, "feet")
  4977. },
  4978. {
  4979. name: "Macro",
  4980. height: math.unit(850, "feet")
  4981. },
  4982. {
  4983. name: "Megamacro",
  4984. height: math.unit(7500, "feet"),
  4985. default: true
  4986. },
  4987. {
  4988. name: "Gigamacro",
  4989. height: math.unit(570000, "miles")
  4990. }
  4991. ]
  4992. ))
  4993. characterMakers.push(() => makeCharacter(
  4994. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4995. {
  4996. front: {
  4997. height: math.unit(6, "feet"),
  4998. weight: math.unit(210, "lbs"),
  4999. name: "Front",
  5000. image: {
  5001. source: "./media/characters/rain-fallen/front.svg"
  5002. }
  5003. },
  5004. side: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(210, "lbs"),
  5007. name: "Side",
  5008. image: {
  5009. source: "./media/characters/rain-fallen/side.svg"
  5010. }
  5011. },
  5012. back: {
  5013. height: math.unit(6, "feet"),
  5014. weight: math.unit(210, "lbs"),
  5015. name: "Back",
  5016. image: {
  5017. source: "./media/characters/rain-fallen/back.svg"
  5018. }
  5019. },
  5020. feral: {
  5021. height: math.unit(9, "feet"),
  5022. weight: math.unit(700, "lbs"),
  5023. name: "Feral",
  5024. image: {
  5025. source: "./media/characters/rain-fallen/feral.svg"
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Meddling with Mortals",
  5032. height: math.unit(8 + 8/12, "feet")
  5033. },
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(5, "meter")
  5037. },
  5038. {
  5039. name: "Macro",
  5040. height: math.unit(150, "meter"),
  5041. default: true
  5042. },
  5043. {
  5044. name: "Megamacro",
  5045. height: math.unit(278e6, "meter")
  5046. },
  5047. {
  5048. name: "Gigamacro",
  5049. height: math.unit(2e9, "meter")
  5050. },
  5051. {
  5052. name: "Teramacro",
  5053. height: math.unit(8e12, "meter")
  5054. },
  5055. {
  5056. name: "Devourer",
  5057. height: math.unit(14, "zettameters")
  5058. },
  5059. {
  5060. name: "Scarlet King",
  5061. height: math.unit(18, "yottameters")
  5062. },
  5063. {
  5064. name: "Void",
  5065. height: math.unit(1e88, "yottameters")
  5066. }
  5067. ]
  5068. ))
  5069. characterMakers.push(() => makeCharacter(
  5070. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5071. {
  5072. standing: {
  5073. height: math.unit(6, "feet"),
  5074. weight: math.unit(180, "lbs"),
  5075. name: "Standing",
  5076. image: {
  5077. source: "./media/characters/zaakira/standing.svg",
  5078. extra: 1599/1504,
  5079. bottom: 39/1638
  5080. }
  5081. },
  5082. laying: {
  5083. height: math.unit(3, "feet"),
  5084. weight: math.unit(180, "lbs"),
  5085. name: "Laying",
  5086. image: {
  5087. source: "./media/characters/zaakira/laying.svg"
  5088. }
  5089. },
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(12, "feet")
  5095. },
  5096. {
  5097. name: "Macro",
  5098. height: math.unit(279, "feet"),
  5099. default: true
  5100. }
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5105. {
  5106. femSfw: {
  5107. height: math.unit(8, "feet"),
  5108. weight: math.unit(350, "lb"),
  5109. name: "Fem",
  5110. image: {
  5111. source: "./media/characters/sigvald/fem-sfw.svg",
  5112. extra: 182 / 164,
  5113. bottom: 8.7 / 190.5
  5114. }
  5115. },
  5116. femNsfw: {
  5117. height: math.unit(8, "feet"),
  5118. weight: math.unit(350, "lb"),
  5119. name: "Fem (NSFW)",
  5120. image: {
  5121. source: "./media/characters/sigvald/fem-nsfw.svg",
  5122. extra: 182 / 164,
  5123. bottom: 8.7 / 190.5
  5124. }
  5125. },
  5126. maleNsfw: {
  5127. height: math.unit(8, "feet"),
  5128. weight: math.unit(350, "lb"),
  5129. name: "Male (NSFW)",
  5130. image: {
  5131. source: "./media/characters/sigvald/male-nsfw.svg",
  5132. extra: 182 / 164,
  5133. bottom: 8.7 / 190.5
  5134. }
  5135. },
  5136. hermNsfw: {
  5137. height: math.unit(8, "feet"),
  5138. weight: math.unit(350, "lb"),
  5139. name: "Herm (NSFW)",
  5140. image: {
  5141. source: "./media/characters/sigvald/herm-nsfw.svg",
  5142. extra: 182 / 164,
  5143. bottom: 8.7 / 190.5
  5144. }
  5145. },
  5146. dick: {
  5147. height: math.unit(2.36, "feet"),
  5148. name: "Dick",
  5149. image: {
  5150. source: "./media/characters/sigvald/dick.svg"
  5151. }
  5152. },
  5153. eye: {
  5154. height: math.unit(0.31, "feet"),
  5155. name: "Eye",
  5156. image: {
  5157. source: "./media/characters/sigvald/eye.svg"
  5158. }
  5159. },
  5160. mouth: {
  5161. height: math.unit(0.92, "feet"),
  5162. name: "Mouth",
  5163. image: {
  5164. source: "./media/characters/sigvald/mouth.svg"
  5165. }
  5166. },
  5167. paws: {
  5168. height: math.unit(2.2, "feet"),
  5169. name: "Paws",
  5170. image: {
  5171. source: "./media/characters/sigvald/paws.svg"
  5172. }
  5173. }
  5174. },
  5175. [
  5176. {
  5177. name: "Normal",
  5178. height: math.unit(8, "feet")
  5179. },
  5180. {
  5181. name: "Large",
  5182. height: math.unit(12, "feet")
  5183. },
  5184. {
  5185. name: "Larger",
  5186. height: math.unit(20, "feet")
  5187. },
  5188. {
  5189. name: "Macro",
  5190. height: math.unit(150, "feet")
  5191. },
  5192. {
  5193. name: "Macro+",
  5194. height: math.unit(200, "feet"),
  5195. default: true
  5196. },
  5197. ]
  5198. ))
  5199. characterMakers.push(() => makeCharacter(
  5200. { name: "Scott", species: ["fox"], tags: ["taur"] },
  5201. {
  5202. side: {
  5203. height: math.unit(12, "feet"),
  5204. weight: math.unit(2000, "kg"),
  5205. name: "Side",
  5206. image: {
  5207. source: "./media/characters/scott/side.svg",
  5208. extra: 754 / 724,
  5209. bottom: 0.069
  5210. }
  5211. },
  5212. upright: {
  5213. height: math.unit(12, "feet"),
  5214. weight: math.unit(2000, "kg"),
  5215. name: "Upright",
  5216. image: {
  5217. source: "./media/characters/scott/upright.svg",
  5218. extra: 3881 / 3722,
  5219. bottom: 0.05
  5220. }
  5221. },
  5222. },
  5223. [
  5224. {
  5225. name: "Normal",
  5226. height: math.unit(12, "feet"),
  5227. default: true
  5228. },
  5229. ]
  5230. ))
  5231. characterMakers.push(() => makeCharacter(
  5232. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  5233. {
  5234. side: {
  5235. height: math.unit(8, "meters"),
  5236. weight: math.unit(84755, "lbs"),
  5237. name: "Side",
  5238. image: {
  5239. source: "./media/characters/tobias/side.svg",
  5240. extra: 1474 / 1096,
  5241. bottom: 38.9 / 1513.1235
  5242. }
  5243. },
  5244. },
  5245. [
  5246. {
  5247. name: "Normal",
  5248. height: math.unit(8, "meters"),
  5249. default: true
  5250. },
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  5255. {
  5256. front: {
  5257. height: math.unit(5.5, "feet"),
  5258. weight: math.unit(400, "lbs"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/kieran/front.svg",
  5262. extra: 2694 / 2364,
  5263. bottom: 217 / 2908
  5264. }
  5265. },
  5266. side: {
  5267. height: math.unit(5.5, "feet"),
  5268. weight: math.unit(400, "lbs"),
  5269. name: "Side",
  5270. image: {
  5271. source: "./media/characters/kieran/side.svg",
  5272. extra: 875 / 777,
  5273. bottom: 84.6 / 959
  5274. }
  5275. },
  5276. },
  5277. [
  5278. {
  5279. name: "Normal",
  5280. height: math.unit(5.5, "feet"),
  5281. default: true
  5282. },
  5283. ]
  5284. ))
  5285. characterMakers.push(() => makeCharacter(
  5286. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  5287. {
  5288. side: {
  5289. height: math.unit(2, "meters"),
  5290. weight: math.unit(70, "kg"),
  5291. name: "Side",
  5292. image: {
  5293. source: "./media/characters/sanya/side.svg",
  5294. bottom: 0.02,
  5295. extra: 1.02
  5296. }
  5297. },
  5298. },
  5299. [
  5300. {
  5301. name: "Small",
  5302. height: math.unit(2, "meters")
  5303. },
  5304. {
  5305. name: "Normal",
  5306. height: math.unit(3, "meters")
  5307. },
  5308. {
  5309. name: "Macro",
  5310. height: math.unit(16, "meters"),
  5311. default: true
  5312. },
  5313. ]
  5314. ))
  5315. characterMakers.push(() => makeCharacter(
  5316. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  5317. {
  5318. front: {
  5319. height: math.unit(2, "meters"),
  5320. weight: math.unit(120, "kg"),
  5321. name: "Front",
  5322. image: {
  5323. source: "./media/characters/miranda/front.svg",
  5324. extra: 195 / 185,
  5325. bottom: 10.9 / 206.5
  5326. }
  5327. },
  5328. back: {
  5329. height: math.unit(2, "meters"),
  5330. weight: math.unit(120, "kg"),
  5331. name: "Back",
  5332. image: {
  5333. source: "./media/characters/miranda/back.svg",
  5334. extra: 201 / 193,
  5335. bottom: 2.3 / 203.7
  5336. }
  5337. },
  5338. },
  5339. [
  5340. {
  5341. name: "Normal",
  5342. height: math.unit(10, "feet"),
  5343. default: true
  5344. }
  5345. ]
  5346. ))
  5347. characterMakers.push(() => makeCharacter(
  5348. { name: "James", species: ["deer"], tags: ["anthro"] },
  5349. {
  5350. side: {
  5351. height: math.unit(2, "meters"),
  5352. weight: math.unit(100, "kg"),
  5353. name: "Front",
  5354. image: {
  5355. source: "./media/characters/james/front.svg",
  5356. extra: 10 / 8.5
  5357. }
  5358. },
  5359. },
  5360. [
  5361. {
  5362. name: "Normal",
  5363. height: math.unit(8.5, "feet"),
  5364. default: true
  5365. }
  5366. ]
  5367. ))
  5368. characterMakers.push(() => makeCharacter(
  5369. { name: "Heather", species: ["cow"], tags: ["taur"] },
  5370. {
  5371. side: {
  5372. height: math.unit(9.5, "feet"),
  5373. weight: math.unit(2500, "lbs"),
  5374. name: "Side",
  5375. image: {
  5376. source: "./media/characters/heather/side.svg"
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Normal",
  5383. height: math.unit(9.5, "feet"),
  5384. default: true
  5385. }
  5386. ]
  5387. ))
  5388. characterMakers.push(() => makeCharacter(
  5389. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  5390. {
  5391. side: {
  5392. height: math.unit(6.5, "feet"),
  5393. weight: math.unit(400, "lbs"),
  5394. name: "Side",
  5395. image: {
  5396. source: "./media/characters/lukas/side.svg",
  5397. extra: 7.25 / 6.5
  5398. }
  5399. },
  5400. },
  5401. [
  5402. {
  5403. name: "Normal",
  5404. height: math.unit(6.5, "feet"),
  5405. default: true
  5406. }
  5407. ]
  5408. ))
  5409. characterMakers.push(() => makeCharacter(
  5410. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  5411. {
  5412. side: {
  5413. height: math.unit(5, "feet"),
  5414. weight: math.unit(3000, "lbs"),
  5415. name: "Side",
  5416. image: {
  5417. source: "./media/characters/louise/side.svg"
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(5, "feet"),
  5425. default: true
  5426. }
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  5431. {
  5432. side: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(150, "lbs"),
  5435. name: "Side",
  5436. image: {
  5437. source: "./media/characters/ramona/side.svg",
  5438. extra: 871/854,
  5439. bottom: 41/912
  5440. }
  5441. },
  5442. },
  5443. [
  5444. {
  5445. name: "Normal",
  5446. height: math.unit(5.3, "meters"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Macro",
  5451. height: math.unit(20, "stories")
  5452. },
  5453. {
  5454. name: "Macro+",
  5455. height: math.unit(50, "stories")
  5456. },
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  5461. {
  5462. standing: {
  5463. height: math.unit(5.75, "feet"),
  5464. weight: math.unit(160, "lbs"),
  5465. name: "Standing",
  5466. image: {
  5467. source: "./media/characters/deerpuff/standing.svg",
  5468. extra: 682 / 624
  5469. }
  5470. },
  5471. sitting: {
  5472. height: math.unit(5.75 / 1.79, "feet"),
  5473. weight: math.unit(160, "lbs"),
  5474. name: "Sitting",
  5475. image: {
  5476. source: "./media/characters/deerpuff/sitting.svg",
  5477. bottom: 44 / 400,
  5478. extra: 1
  5479. }
  5480. },
  5481. taurLaying: {
  5482. height: math.unit(6, "feet"),
  5483. weight: math.unit(400, "lbs"),
  5484. name: "Taur (Laying)",
  5485. image: {
  5486. source: "./media/characters/deerpuff/taur-laying.svg"
  5487. }
  5488. },
  5489. },
  5490. [
  5491. {
  5492. name: "Puffball",
  5493. height: math.unit(6, "inches")
  5494. },
  5495. {
  5496. name: "Normalpuff",
  5497. height: math.unit(5.75, "feet")
  5498. },
  5499. {
  5500. name: "Macropuff",
  5501. height: math.unit(1500, "feet"),
  5502. default: true
  5503. },
  5504. {
  5505. name: "Megapuff",
  5506. height: math.unit(500, "miles")
  5507. },
  5508. {
  5509. name: "Gigapuff",
  5510. height: math.unit(250000, "miles")
  5511. },
  5512. {
  5513. name: "Omegapuff",
  5514. height: math.unit(1000, "lightyears")
  5515. },
  5516. ]
  5517. ))
  5518. characterMakers.push(() => makeCharacter(
  5519. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  5520. {
  5521. stomping: {
  5522. height: math.unit(6, "feet"),
  5523. weight: math.unit(170, "lbs"),
  5524. name: "Stomping",
  5525. image: {
  5526. source: "./media/characters/vivian/stomping.svg"
  5527. }
  5528. },
  5529. sitting: {
  5530. height: math.unit(6 / 1.75, "feet"),
  5531. weight: math.unit(170, "lbs"),
  5532. name: "Sitting",
  5533. image: {
  5534. source: "./media/characters/vivian/sitting.svg",
  5535. bottom: 1 / 6.4,
  5536. extra: 1,
  5537. }
  5538. },
  5539. },
  5540. [
  5541. {
  5542. name: "Normal",
  5543. height: math.unit(7, "feet"),
  5544. default: true
  5545. },
  5546. {
  5547. name: "Macro",
  5548. height: math.unit(10, "stories")
  5549. },
  5550. {
  5551. name: "Macro+",
  5552. height: math.unit(30, "stories")
  5553. },
  5554. {
  5555. name: "Megamacro",
  5556. height: math.unit(10, "miles")
  5557. },
  5558. {
  5559. name: "Megamacro+",
  5560. height: math.unit(2750000, "meters")
  5561. },
  5562. ]
  5563. ))
  5564. characterMakers.push(() => makeCharacter(
  5565. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  5566. {
  5567. front: {
  5568. height: math.unit(6, "feet"),
  5569. weight: math.unit(160, "lbs"),
  5570. name: "Front",
  5571. image: {
  5572. source: "./media/characters/prince/front.svg",
  5573. extra: 3400 / 3000
  5574. }
  5575. },
  5576. jumping: {
  5577. height: math.unit(6, "feet"),
  5578. weight: math.unit(160, "lbs"),
  5579. name: "Jumping",
  5580. image: {
  5581. source: "./media/characters/prince/jump.svg",
  5582. extra: 2555 / 2134
  5583. }
  5584. },
  5585. },
  5586. [
  5587. {
  5588. name: "Normal",
  5589. height: math.unit(7.75, "feet"),
  5590. default: true
  5591. },
  5592. {
  5593. name: "Not cute",
  5594. height: math.unit(17, "feet")
  5595. },
  5596. {
  5597. name: "I said NOT",
  5598. height: math.unit(91, "feet")
  5599. },
  5600. {
  5601. name: "Please stop",
  5602. height: math.unit(560, "feet")
  5603. },
  5604. {
  5605. name: "What have you done",
  5606. height: math.unit(2200, "feet")
  5607. },
  5608. {
  5609. name: "Deer God",
  5610. height: math.unit(3.6, "miles")
  5611. },
  5612. ]
  5613. ))
  5614. characterMakers.push(() => makeCharacter(
  5615. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5616. {
  5617. standing: {
  5618. height: math.unit(6, "feet"),
  5619. weight: math.unit(300, "lbs"),
  5620. name: "Standing",
  5621. image: {
  5622. source: "./media/characters/psymon/standing.svg",
  5623. extra: 1888 / 1810,
  5624. bottom: 0.05
  5625. }
  5626. },
  5627. slithering: {
  5628. height: math.unit(6, "feet"),
  5629. weight: math.unit(300, "lbs"),
  5630. name: "Slithering",
  5631. image: {
  5632. source: "./media/characters/psymon/slithering.svg",
  5633. extra: 1330 / 1224
  5634. }
  5635. },
  5636. slitheringAlt: {
  5637. height: math.unit(6, "feet"),
  5638. weight: math.unit(300, "lbs"),
  5639. name: "Slithering (Alt)",
  5640. image: {
  5641. source: "./media/characters/psymon/slithering-alt.svg",
  5642. extra: 1330 / 1224
  5643. }
  5644. },
  5645. },
  5646. [
  5647. {
  5648. name: "Normal",
  5649. height: math.unit(11.25, "feet"),
  5650. default: true
  5651. },
  5652. {
  5653. name: "Large",
  5654. height: math.unit(27, "feet")
  5655. },
  5656. {
  5657. name: "Giant",
  5658. height: math.unit(87, "feet")
  5659. },
  5660. {
  5661. name: "Macro",
  5662. height: math.unit(365, "feet")
  5663. },
  5664. {
  5665. name: "Megamacro",
  5666. height: math.unit(3, "miles")
  5667. },
  5668. {
  5669. name: "World Serpent",
  5670. height: math.unit(8000, "miles")
  5671. },
  5672. ]
  5673. ))
  5674. characterMakers.push(() => makeCharacter(
  5675. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5676. {
  5677. front: {
  5678. height: math.unit(6, "feet"),
  5679. weight: math.unit(180, "lbs"),
  5680. name: "Front",
  5681. image: {
  5682. source: "./media/characters/daimos/front.svg",
  5683. extra: 4160 / 3897,
  5684. bottom: 0.021
  5685. }
  5686. }
  5687. },
  5688. [
  5689. {
  5690. name: "Normal",
  5691. height: math.unit(8, "feet"),
  5692. default: true
  5693. },
  5694. {
  5695. name: "Big Dog",
  5696. height: math.unit(22, "feet")
  5697. },
  5698. {
  5699. name: "Macro",
  5700. height: math.unit(127, "feet")
  5701. },
  5702. {
  5703. name: "Megamacro",
  5704. height: math.unit(3600, "feet")
  5705. },
  5706. ]
  5707. ))
  5708. characterMakers.push(() => makeCharacter(
  5709. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5710. {
  5711. side: {
  5712. height: math.unit(6, "feet"),
  5713. weight: math.unit(180, "lbs"),
  5714. name: "Side",
  5715. image: {
  5716. source: "./media/characters/blake/side.svg",
  5717. extra: 1212 / 1120,
  5718. bottom: 0.05
  5719. }
  5720. },
  5721. crouched: {
  5722. height: math.unit(6 * 0.57, "feet"),
  5723. weight: math.unit(180, "lbs"),
  5724. name: "Crouched",
  5725. image: {
  5726. source: "./media/characters/blake/crouched.svg",
  5727. extra: 840 / 587,
  5728. bottom: 0.04
  5729. }
  5730. },
  5731. bent: {
  5732. height: math.unit(6 * 0.75, "feet"),
  5733. weight: math.unit(180, "lbs"),
  5734. name: "Bent",
  5735. image: {
  5736. source: "./media/characters/blake/bent.svg",
  5737. extra: 592 / 544,
  5738. bottom: 0.035
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(8 + 1 / 6, "feet"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Big Backside",
  5750. height: math.unit(37, "feet")
  5751. },
  5752. {
  5753. name: "Subway Shredder",
  5754. height: math.unit(72, "feet")
  5755. },
  5756. {
  5757. name: "City Carver",
  5758. height: math.unit(1675, "feet")
  5759. },
  5760. {
  5761. name: "Tectonic Tweaker",
  5762. height: math.unit(2300, "miles")
  5763. },
  5764. ]
  5765. ))
  5766. characterMakers.push(() => makeCharacter(
  5767. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5768. {
  5769. front: {
  5770. height: math.unit(6, "feet"),
  5771. weight: math.unit(180, "lbs"),
  5772. name: "Front",
  5773. image: {
  5774. source: "./media/characters/guisetto/front.svg",
  5775. extra: 856 / 817,
  5776. bottom: 0.06
  5777. }
  5778. },
  5779. airborne: {
  5780. height: math.unit(6, "feet"),
  5781. weight: math.unit(180, "lbs"),
  5782. name: "Airborne",
  5783. image: {
  5784. source: "./media/characters/guisetto/airborne.svg",
  5785. extra: 584 / 525
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Normal",
  5792. height: math.unit(10 + 11 / 12, "feet"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Large",
  5797. height: math.unit(35, "feet")
  5798. },
  5799. {
  5800. name: "Macro",
  5801. height: math.unit(475, "feet")
  5802. },
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(180, "lbs"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/luxor/front.svg",
  5814. extra: 2940 / 2152
  5815. }
  5816. },
  5817. back: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(180, "lbs"),
  5820. name: "Back",
  5821. image: {
  5822. source: "./media/characters/luxor/back.svg",
  5823. extra: 1083 / 960
  5824. }
  5825. },
  5826. },
  5827. [
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(5 + 5 / 6, "feet"),
  5831. default: true
  5832. },
  5833. {
  5834. name: "Lamp",
  5835. height: math.unit(50, "feet")
  5836. },
  5837. {
  5838. name: "Lämp",
  5839. height: math.unit(300, "feet")
  5840. },
  5841. {
  5842. name: "The sun is a lamp",
  5843. height: math.unit(250000, "miles")
  5844. },
  5845. ]
  5846. ))
  5847. characterMakers.push(() => makeCharacter(
  5848. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5849. {
  5850. front: {
  5851. height: math.unit(6, "feet"),
  5852. weight: math.unit(50, "lbs"),
  5853. name: "Front",
  5854. image: {
  5855. source: "./media/characters/huoyan/front.svg"
  5856. }
  5857. },
  5858. side: {
  5859. height: math.unit(6, "feet"),
  5860. weight: math.unit(180, "lbs"),
  5861. name: "Side",
  5862. image: {
  5863. source: "./media/characters/huoyan/side.svg"
  5864. }
  5865. },
  5866. },
  5867. [
  5868. {
  5869. name: "Chef",
  5870. height: math.unit(9, "feet")
  5871. },
  5872. {
  5873. name: "Normal",
  5874. height: math.unit(65, "feet"),
  5875. default: true
  5876. },
  5877. {
  5878. name: "Macro",
  5879. height: math.unit(780, "feet")
  5880. },
  5881. {
  5882. name: "Flaming Mountain",
  5883. height: math.unit(4.8, "miles")
  5884. },
  5885. {
  5886. name: "Celestial",
  5887. height: math.unit(765000, "miles")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(5 + 3 / 4, "feet"),
  5896. weight: math.unit(120, "lbs"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/tails/front.svg"
  5900. }
  5901. }
  5902. },
  5903. [
  5904. {
  5905. name: "Normal",
  5906. height: math.unit(5 + 3 / 4, "feet"),
  5907. default: true
  5908. }
  5909. ]
  5910. ))
  5911. characterMakers.push(() => makeCharacter(
  5912. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5913. {
  5914. front: {
  5915. height: math.unit(4, "feet"),
  5916. weight: math.unit(50, "lbs"),
  5917. name: "Front",
  5918. image: {
  5919. source: "./media/characters/rainy/front.svg"
  5920. }
  5921. }
  5922. },
  5923. [
  5924. {
  5925. name: "Macro",
  5926. height: math.unit(800, "feet"),
  5927. default: true
  5928. }
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(6, "feet"),
  5936. weight: math.unit(150, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/rainier/front.svg"
  5940. }
  5941. }
  5942. },
  5943. [
  5944. {
  5945. name: "Micro",
  5946. height: math.unit(2, "mm"),
  5947. default: true
  5948. }
  5949. ]
  5950. ))
  5951. characterMakers.push(() => makeCharacter(
  5952. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  5953. {
  5954. front: {
  5955. height: math.unit(8 + 4/12, "feet"),
  5956. name: "Front",
  5957. image: {
  5958. source: "./media/characters/andy-renard/front.svg",
  5959. extra: 1839/1726,
  5960. bottom: 134/1973
  5961. }
  5962. },
  5963. back: {
  5964. height: math.unit(8 + 4/12, "feet"),
  5965. name: "Back",
  5966. image: {
  5967. source: "./media/characters/andy-renard/back.svg",
  5968. extra: 1838/1710,
  5969. bottom: 105/1943
  5970. }
  5971. },
  5972. },
  5973. [
  5974. {
  5975. name: "Tall",
  5976. height: math.unit(8 + 4/12, "feet")
  5977. },
  5978. {
  5979. name: "Mini Macro",
  5980. height: math.unit(15, "feet"),
  5981. default: true
  5982. },
  5983. {
  5984. name: "Macro",
  5985. height: math.unit(100, "feet")
  5986. },
  5987. {
  5988. name: "Mega Macro",
  5989. height: math.unit(1000, "feet")
  5990. },
  5991. {
  5992. name: "Giga Macro",
  5993. height: math.unit(10, "miles")
  5994. },
  5995. {
  5996. name: "God Macro",
  5997. height: math.unit(1, "multiverse")
  5998. },
  5999. ]
  6000. ))
  6001. characterMakers.push(() => makeCharacter(
  6002. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6003. {
  6004. front: {
  6005. height: math.unit(6, "feet"),
  6006. weight: math.unit(210, "lbs"),
  6007. name: "Front",
  6008. image: {
  6009. source: "./media/characters/cimmaron/front-sfw.svg",
  6010. extra: 701 / 676,
  6011. bottom: 0.046
  6012. }
  6013. },
  6014. back: {
  6015. height: math.unit(6, "feet"),
  6016. weight: math.unit(210, "lbs"),
  6017. name: "Back",
  6018. image: {
  6019. source: "./media/characters/cimmaron/back-sfw.svg",
  6020. extra: 701 / 676,
  6021. bottom: 0.046
  6022. }
  6023. },
  6024. frontNsfw: {
  6025. height: math.unit(6, "feet"),
  6026. weight: math.unit(210, "lbs"),
  6027. name: "Front (NSFW)",
  6028. image: {
  6029. source: "./media/characters/cimmaron/front-nsfw.svg",
  6030. extra: 701 / 676,
  6031. bottom: 0.046
  6032. }
  6033. },
  6034. backNsfw: {
  6035. height: math.unit(6, "feet"),
  6036. weight: math.unit(210, "lbs"),
  6037. name: "Back (NSFW)",
  6038. image: {
  6039. source: "./media/characters/cimmaron/back-nsfw.svg",
  6040. extra: 701 / 676,
  6041. bottom: 0.046
  6042. }
  6043. },
  6044. dick: {
  6045. height: math.unit(1.714, "feet"),
  6046. name: "Dick",
  6047. image: {
  6048. source: "./media/characters/cimmaron/dick.svg"
  6049. }
  6050. },
  6051. },
  6052. [
  6053. {
  6054. name: "Normal",
  6055. height: math.unit(6, "feet"),
  6056. default: true
  6057. },
  6058. {
  6059. name: "Macro Mayor",
  6060. height: math.unit(350, "meters")
  6061. },
  6062. ]
  6063. ))
  6064. characterMakers.push(() => makeCharacter(
  6065. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6066. {
  6067. front: {
  6068. height: math.unit(6, "feet"),
  6069. weight: math.unit(200, "lbs"),
  6070. name: "Front",
  6071. image: {
  6072. source: "./media/characters/akari/front.svg",
  6073. extra: 962 / 901,
  6074. bottom: 0.04
  6075. }
  6076. }
  6077. },
  6078. [
  6079. {
  6080. name: "Micro",
  6081. height: math.unit(5, "inches"),
  6082. default: true
  6083. },
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(7, "feet")
  6087. },
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6092. {
  6093. front: {
  6094. height: math.unit(6, "feet"),
  6095. weight: math.unit(140, "lbs"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/cynosura/front.svg",
  6099. extra: 896 / 847
  6100. }
  6101. },
  6102. back: {
  6103. height: math.unit(6, "feet"),
  6104. weight: math.unit(140, "lbs"),
  6105. name: "Back",
  6106. image: {
  6107. source: "./media/characters/cynosura/back.svg",
  6108. extra: 1365 / 1250
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Micro",
  6115. height: math.unit(4, "inches")
  6116. },
  6117. {
  6118. name: "Normal",
  6119. height: math.unit(5.75, "feet"),
  6120. default: true
  6121. },
  6122. {
  6123. name: "Tall",
  6124. height: math.unit(10, "feet")
  6125. },
  6126. {
  6127. name: "Big",
  6128. height: math.unit(20, "feet")
  6129. },
  6130. {
  6131. name: "Macro",
  6132. height: math.unit(50, "feet")
  6133. },
  6134. ]
  6135. ))
  6136. characterMakers.push(() => makeCharacter(
  6137. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6138. {
  6139. front: {
  6140. height: math.unit(13 + 2/12, "feet"),
  6141. weight: math.unit(800, "kg"),
  6142. name: "Front",
  6143. image: {
  6144. source: "./media/characters/gin/front.svg",
  6145. extra: 1312/1191,
  6146. bottom: 45/1357
  6147. }
  6148. },
  6149. mouth: {
  6150. height: math.unit(2.39 * 1.8, "feet"),
  6151. name: "Mouth",
  6152. image: {
  6153. source: "./media/characters/gin/mouth.svg"
  6154. }
  6155. },
  6156. hand: {
  6157. height: math.unit(1.57 * 2.19, "feet"),
  6158. name: "Hand",
  6159. image: {
  6160. source: "./media/characters/gin/hand.svg"
  6161. }
  6162. },
  6163. foot: {
  6164. height: math.unit(6 / 4.25 * 2.19, "feet"),
  6165. name: "Foot",
  6166. image: {
  6167. source: "./media/characters/gin/foot.svg"
  6168. }
  6169. },
  6170. sole: {
  6171. height: math.unit(6 / 4.40 * 2.19, "feet"),
  6172. name: "Sole",
  6173. image: {
  6174. source: "./media/characters/gin/sole.svg"
  6175. }
  6176. },
  6177. },
  6178. [
  6179. {
  6180. name: "Very Small",
  6181. height: math.unit(13 + 2 / 12, "feet")
  6182. },
  6183. {
  6184. name: "Micro",
  6185. height: math.unit(600, "miles")
  6186. },
  6187. {
  6188. name: "Regular",
  6189. height: math.unit(20, "earths"),
  6190. default: true
  6191. },
  6192. {
  6193. name: "Macro",
  6194. height: math.unit(2.2, "solarradii")
  6195. },
  6196. {
  6197. name: "Teramacro",
  6198. height: math.unit(1.2, "galaxies")
  6199. },
  6200. {
  6201. name: "Omegamacro",
  6202. height: math.unit(200, "universes")
  6203. },
  6204. ]
  6205. ))
  6206. characterMakers.push(() => makeCharacter(
  6207. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  6208. {
  6209. front: {
  6210. height: math.unit(6 + 1 / 6, "feet"),
  6211. weight: math.unit(178, "lbs"),
  6212. name: "Front",
  6213. image: {
  6214. source: "./media/characters/guy/front.svg"
  6215. }
  6216. }
  6217. },
  6218. [
  6219. {
  6220. name: "Normal",
  6221. height: math.unit(6 + 1 / 6, "feet"),
  6222. default: true
  6223. },
  6224. {
  6225. name: "Large",
  6226. height: math.unit(25 + 7 / 12, "feet")
  6227. },
  6228. {
  6229. name: "Macro",
  6230. height: math.unit(60 + 9 / 12, "feet")
  6231. },
  6232. {
  6233. name: "Macro+",
  6234. height: math.unit(246, "feet")
  6235. },
  6236. {
  6237. name: "Macro++",
  6238. height: math.unit(878, "feet")
  6239. }
  6240. ]
  6241. ))
  6242. characterMakers.push(() => makeCharacter(
  6243. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  6244. {
  6245. front: {
  6246. height: math.unit(9, "feet"),
  6247. weight: math.unit(800, "lbs"),
  6248. name: "Front",
  6249. image: {
  6250. source: "./media/characters/tiberius/front.svg",
  6251. extra: 2295 / 2071
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(9, "feet"),
  6256. weight: math.unit(800, "lbs"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/tiberius/back.svg",
  6260. extra: 2373 / 2160
  6261. }
  6262. },
  6263. },
  6264. [
  6265. {
  6266. name: "Normal",
  6267. height: math.unit(9, "feet"),
  6268. default: true
  6269. }
  6270. ]
  6271. ))
  6272. characterMakers.push(() => makeCharacter(
  6273. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  6274. {
  6275. front: {
  6276. height: math.unit(6, "feet"),
  6277. weight: math.unit(600, "lbs"),
  6278. name: "Front",
  6279. image: {
  6280. source: "./media/characters/surgo/front.svg",
  6281. extra: 3591 / 2227
  6282. }
  6283. },
  6284. back: {
  6285. height: math.unit(6, "feet"),
  6286. weight: math.unit(600, "lbs"),
  6287. name: "Back",
  6288. image: {
  6289. source: "./media/characters/surgo/back.svg",
  6290. extra: 3557 / 2228
  6291. }
  6292. },
  6293. laying: {
  6294. height: math.unit(6 * 0.85, "feet"),
  6295. weight: math.unit(600, "lbs"),
  6296. name: "Laying",
  6297. image: {
  6298. source: "./media/characters/surgo/laying.svg"
  6299. }
  6300. },
  6301. },
  6302. [
  6303. {
  6304. name: "Normal",
  6305. height: math.unit(6, "feet"),
  6306. default: true
  6307. }
  6308. ]
  6309. ))
  6310. characterMakers.push(() => makeCharacter(
  6311. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  6312. {
  6313. side: {
  6314. height: math.unit(6, "feet"),
  6315. weight: math.unit(150, "lbs"),
  6316. name: "Side",
  6317. image: {
  6318. source: "./media/characters/cibus/side.svg",
  6319. extra: 800 / 400
  6320. }
  6321. },
  6322. },
  6323. [
  6324. {
  6325. name: "Normal",
  6326. height: math.unit(6, "feet"),
  6327. default: true
  6328. }
  6329. ]
  6330. ))
  6331. characterMakers.push(() => makeCharacter(
  6332. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  6333. {
  6334. front: {
  6335. height: math.unit(6, "feet"),
  6336. weight: math.unit(240, "lbs"),
  6337. name: "Front",
  6338. image: {
  6339. source: "./media/characters/nibbles/front.svg"
  6340. }
  6341. },
  6342. side: {
  6343. height: math.unit(6, "feet"),
  6344. weight: math.unit(240, "lbs"),
  6345. name: "Side",
  6346. image: {
  6347. source: "./media/characters/nibbles/side.svg"
  6348. }
  6349. },
  6350. },
  6351. [
  6352. {
  6353. name: "Normal",
  6354. height: math.unit(9, "feet"),
  6355. default: true
  6356. }
  6357. ]
  6358. ))
  6359. characterMakers.push(() => makeCharacter(
  6360. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  6361. {
  6362. side: {
  6363. height: math.unit(5 + 1 / 6, "feet"),
  6364. weight: math.unit(130, "lbs"),
  6365. name: "Side",
  6366. image: {
  6367. source: "./media/characters/rikky/side.svg",
  6368. extra: 851 / 801
  6369. }
  6370. },
  6371. },
  6372. [
  6373. {
  6374. name: "Normal",
  6375. height: math.unit(5 + 1 / 6, "feet")
  6376. },
  6377. {
  6378. name: "Macro",
  6379. height: math.unit(152, "feet"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Megamacro",
  6384. height: math.unit(7, "miles")
  6385. }
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  6390. {
  6391. side: {
  6392. height: math.unit(370, "cm"),
  6393. weight: math.unit(350, "lbs"),
  6394. name: "Side",
  6395. image: {
  6396. source: "./media/characters/malfressa/side.svg"
  6397. }
  6398. },
  6399. walking: {
  6400. height: math.unit(370, "cm"),
  6401. weight: math.unit(350, "lbs"),
  6402. name: "Walking",
  6403. image: {
  6404. source: "./media/characters/malfressa/walking.svg"
  6405. }
  6406. },
  6407. feral: {
  6408. height: math.unit(2500, "cm"),
  6409. weight: math.unit(100000, "lbs"),
  6410. name: "Feral",
  6411. image: {
  6412. source: "./media/characters/malfressa/feral.svg",
  6413. extra: 2108 / 837,
  6414. bottom: 0.02
  6415. }
  6416. },
  6417. },
  6418. [
  6419. {
  6420. name: "Normal",
  6421. height: math.unit(370, "cm")
  6422. },
  6423. {
  6424. name: "Macro",
  6425. height: math.unit(300, "meters"),
  6426. default: true
  6427. }
  6428. ]
  6429. ))
  6430. characterMakers.push(() => makeCharacter(
  6431. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  6432. {
  6433. front: {
  6434. height: math.unit(6, "feet"),
  6435. weight: math.unit(60, "kg"),
  6436. name: "Front",
  6437. image: {
  6438. source: "./media/characters/jaro/front.svg",
  6439. extra: 845/817,
  6440. bottom: 45/890
  6441. }
  6442. },
  6443. back: {
  6444. height: math.unit(6, "feet"),
  6445. weight: math.unit(60, "kg"),
  6446. name: "Back",
  6447. image: {
  6448. source: "./media/characters/jaro/back.svg",
  6449. extra: 847/817,
  6450. bottom: 34/881
  6451. }
  6452. },
  6453. },
  6454. [
  6455. {
  6456. name: "Micro",
  6457. height: math.unit(7, "inches")
  6458. },
  6459. {
  6460. name: "Normal",
  6461. height: math.unit(5.5, "feet"),
  6462. default: true
  6463. },
  6464. {
  6465. name: "Minimacro",
  6466. height: math.unit(20, "feet")
  6467. },
  6468. {
  6469. name: "Macro",
  6470. height: math.unit(200, "meters")
  6471. }
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(6, "feet"),
  6479. weight: math.unit(195, "lb"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/rogue/front.svg"
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Macro",
  6489. height: math.unit(90, "feet"),
  6490. default: true
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(5 + 8 / 12, "feet"),
  6499. weight: math.unit(140, "lb"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/piper/front.svg",
  6503. extra: 3948/3655,
  6504. bottom: 0/3948
  6505. }
  6506. },
  6507. },
  6508. [
  6509. {
  6510. name: "Micro",
  6511. height: math.unit(2, "inches")
  6512. },
  6513. {
  6514. name: "Normal",
  6515. height: math.unit(5 + 8 / 12, "feet")
  6516. },
  6517. {
  6518. name: "Macro",
  6519. height: math.unit(250, "feet"),
  6520. default: true
  6521. },
  6522. {
  6523. name: "Megamacro",
  6524. height: math.unit(7, "miles")
  6525. },
  6526. ]
  6527. ))
  6528. characterMakers.push(() => makeCharacter(
  6529. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  6530. {
  6531. front: {
  6532. height: math.unit(6, "feet"),
  6533. weight: math.unit(220, "lb"),
  6534. name: "Front",
  6535. image: {
  6536. source: "./media/characters/gemini/front.svg"
  6537. }
  6538. },
  6539. back: {
  6540. height: math.unit(6, "feet"),
  6541. weight: math.unit(220, "lb"),
  6542. name: "Back",
  6543. image: {
  6544. source: "./media/characters/gemini/back.svg"
  6545. }
  6546. },
  6547. kneeling: {
  6548. height: math.unit(6 / 1.5, "feet"),
  6549. weight: math.unit(220, "lb"),
  6550. name: "Kneeling",
  6551. image: {
  6552. source: "./media/characters/gemini/kneeling.svg",
  6553. bottom: 0.02
  6554. }
  6555. },
  6556. },
  6557. [
  6558. {
  6559. name: "Macro",
  6560. height: math.unit(300, "meters"),
  6561. default: true
  6562. },
  6563. {
  6564. name: "Megamacro",
  6565. height: math.unit(6900, "meters")
  6566. },
  6567. ]
  6568. ))
  6569. characterMakers.push(() => makeCharacter(
  6570. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  6571. {
  6572. anthro: {
  6573. height: math.unit(2.35, "meters"),
  6574. weight: math.unit(73, "kg"),
  6575. name: "Anthro",
  6576. image: {
  6577. source: "./media/characters/alicia/anthro.svg",
  6578. extra: 2571 / 2385,
  6579. bottom: 75 / 2648
  6580. }
  6581. },
  6582. paw: {
  6583. height: math.unit(1.32, "feet"),
  6584. name: "Paw",
  6585. image: {
  6586. source: "./media/characters/alicia/paw.svg"
  6587. }
  6588. },
  6589. feral: {
  6590. height: math.unit(1.69, "meters"),
  6591. weight: math.unit(73, "kg"),
  6592. name: "Feral",
  6593. image: {
  6594. source: "./media/characters/alicia/feral.svg",
  6595. extra: 2123 / 1715,
  6596. bottom: 222 / 2349
  6597. }
  6598. },
  6599. },
  6600. [
  6601. {
  6602. name: "Normal",
  6603. height: math.unit(2.35, "meters")
  6604. },
  6605. {
  6606. name: "Macro",
  6607. height: math.unit(60, "meters"),
  6608. default: true
  6609. },
  6610. {
  6611. name: "Megamacro",
  6612. height: math.unit(10000, "kilometers")
  6613. },
  6614. ]
  6615. ))
  6616. characterMakers.push(() => makeCharacter(
  6617. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6618. {
  6619. front: {
  6620. height: math.unit(7, "feet"),
  6621. weight: math.unit(250, "lbs"),
  6622. name: "Front",
  6623. image: {
  6624. source: "./media/characters/archy/front.svg"
  6625. }
  6626. }
  6627. },
  6628. [
  6629. {
  6630. name: "Micro",
  6631. height: math.unit(1, "inch")
  6632. },
  6633. {
  6634. name: "Shorty",
  6635. height: math.unit(5, "feet")
  6636. },
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(7, "feet")
  6640. },
  6641. {
  6642. name: "Macro",
  6643. height: math.unit(600, "meters"),
  6644. default: true
  6645. },
  6646. {
  6647. name: "Megamacro",
  6648. height: math.unit(1, "mile")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(1.65, "meters"),
  6657. weight: math.unit(74, "kg"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/berri/front.svg",
  6661. extra: 857 / 837,
  6662. bottom: 18 / 877
  6663. }
  6664. },
  6665. bum: {
  6666. height: math.unit(1.46, "feet"),
  6667. name: "Bum",
  6668. image: {
  6669. source: "./media/characters/berri/bum.svg"
  6670. }
  6671. },
  6672. mouth: {
  6673. height: math.unit(0.44, "feet"),
  6674. name: "Mouth",
  6675. image: {
  6676. source: "./media/characters/berri/mouth.svg"
  6677. }
  6678. },
  6679. paw: {
  6680. height: math.unit(0.826, "feet"),
  6681. name: "Paw",
  6682. image: {
  6683. source: "./media/characters/berri/paw.svg"
  6684. }
  6685. },
  6686. },
  6687. [
  6688. {
  6689. name: "Normal",
  6690. height: math.unit(1.65, "meters")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(60, "m"),
  6695. default: true
  6696. },
  6697. {
  6698. name: "Megamacro",
  6699. height: math.unit(9.213, "km")
  6700. },
  6701. {
  6702. name: "Planet Eater",
  6703. height: math.unit(489, "megameters")
  6704. },
  6705. {
  6706. name: "Teramacro",
  6707. height: math.unit(2471635000000, "meters")
  6708. },
  6709. {
  6710. name: "Examacro",
  6711. height: math.unit(8.0624e+26, "meters")
  6712. }
  6713. ]
  6714. ))
  6715. characterMakers.push(() => makeCharacter(
  6716. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6717. {
  6718. front: {
  6719. height: math.unit(1.72, "meters"),
  6720. weight: math.unit(68, "kg"),
  6721. name: "Front",
  6722. image: {
  6723. source: "./media/characters/lexi/front.svg"
  6724. }
  6725. }
  6726. },
  6727. [
  6728. {
  6729. name: "Very Smol",
  6730. height: math.unit(10, "mm")
  6731. },
  6732. {
  6733. name: "Micro",
  6734. height: math.unit(6.8, "cm"),
  6735. default: true
  6736. },
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(1.72, "m")
  6740. }
  6741. ]
  6742. ))
  6743. characterMakers.push(() => makeCharacter(
  6744. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6745. {
  6746. front: {
  6747. height: math.unit(1.69, "meters"),
  6748. weight: math.unit(68, "kg"),
  6749. name: "Front",
  6750. image: {
  6751. source: "./media/characters/martin/front.svg",
  6752. extra: 596 / 581
  6753. }
  6754. }
  6755. },
  6756. [
  6757. {
  6758. name: "Micro",
  6759. height: math.unit(6.85, "cm"),
  6760. default: true
  6761. },
  6762. {
  6763. name: "Normal",
  6764. height: math.unit(1.69, "m")
  6765. }
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6770. {
  6771. front: {
  6772. height: math.unit(1.69, "meters"),
  6773. weight: math.unit(68, "kg"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/juno/front.svg"
  6777. }
  6778. }
  6779. },
  6780. [
  6781. {
  6782. name: "Micro",
  6783. height: math.unit(7, "cm")
  6784. },
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(1.89, "m")
  6788. },
  6789. {
  6790. name: "Macro",
  6791. height: math.unit(353, "meters"),
  6792. default: true
  6793. }
  6794. ]
  6795. ))
  6796. characterMakers.push(() => makeCharacter(
  6797. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6798. {
  6799. front: {
  6800. height: math.unit(1.93, "meters"),
  6801. weight: math.unit(83, "kg"),
  6802. name: "Front",
  6803. image: {
  6804. source: "./media/characters/samantha/front.svg"
  6805. }
  6806. },
  6807. frontClothed: {
  6808. height: math.unit(1.93, "meters"),
  6809. weight: math.unit(83, "kg"),
  6810. name: "Front (Clothed)",
  6811. image: {
  6812. source: "./media/characters/samantha/front-clothed.svg"
  6813. }
  6814. },
  6815. back: {
  6816. height: math.unit(1.93, "meters"),
  6817. weight: math.unit(83, "kg"),
  6818. name: "Back",
  6819. image: {
  6820. source: "./media/characters/samantha/back.svg"
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(1.93, "m")
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(74, "meters"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Macro+",
  6836. height: math.unit(223, "meters"),
  6837. },
  6838. {
  6839. name: "Megamacro",
  6840. height: math.unit(8381, "meters"),
  6841. },
  6842. {
  6843. name: "Megamacro+",
  6844. height: math.unit(12000, "kilometers")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(1.92, "meters"),
  6853. weight: math.unit(80, "kg"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/dr-clay/front.svg"
  6857. }
  6858. },
  6859. frontClothed: {
  6860. height: math.unit(1.92, "meters"),
  6861. weight: math.unit(80, "kg"),
  6862. name: "Front (Clothed)",
  6863. image: {
  6864. source: "./media/characters/dr-clay/front-clothed.svg"
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(1.92, "m")
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(214, "meters"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Macro+",
  6880. height: math.unit(12.237, "meters"),
  6881. },
  6882. {
  6883. name: "Megamacro",
  6884. height: math.unit(557, "megameters"),
  6885. },
  6886. {
  6887. name: "Unimaginable",
  6888. height: math.unit(120e9, "lightyears")
  6889. },
  6890. ]
  6891. ))
  6892. characterMakers.push(() => makeCharacter(
  6893. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6894. {
  6895. front: {
  6896. height: math.unit(2, "meters"),
  6897. weight: math.unit(80, "kg"),
  6898. name: "Front",
  6899. image: {
  6900. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6901. }
  6902. }
  6903. },
  6904. [
  6905. {
  6906. name: "Teramacro",
  6907. height: math.unit(500000, "lightyears"),
  6908. default: true
  6909. },
  6910. ]
  6911. ))
  6912. characterMakers.push(() => makeCharacter(
  6913. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  6914. {
  6915. crux: {
  6916. height: math.unit(2, "meters"),
  6917. weight: math.unit(150, "kg"),
  6918. name: "Crux",
  6919. image: {
  6920. source: "./media/characters/vemus/crux.svg",
  6921. extra: 1074/936,
  6922. bottom: 23/1097
  6923. }
  6924. },
  6925. skunkTanuki: {
  6926. height: math.unit(2, "meters"),
  6927. weight: math.unit(150, "kg"),
  6928. name: "Skunk-Tanuki",
  6929. image: {
  6930. source: "./media/characters/vemus/skunk-tanuki.svg",
  6931. extra: 926/893,
  6932. bottom: 20/946
  6933. }
  6934. },
  6935. },
  6936. [
  6937. {
  6938. name: "Normal",
  6939. height: math.unit(3.75, "meters"),
  6940. default: true
  6941. },
  6942. {
  6943. name: "Big",
  6944. height: math.unit(8, "meters")
  6945. },
  6946. {
  6947. name: "Macro",
  6948. height: math.unit(100, "meters")
  6949. },
  6950. {
  6951. name: "Macro+",
  6952. height: math.unit(1500, "meters")
  6953. },
  6954. {
  6955. name: "Stellar",
  6956. height: math.unit(14e8, "meters")
  6957. },
  6958. ]
  6959. ))
  6960. characterMakers.push(() => makeCharacter(
  6961. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6962. {
  6963. front: {
  6964. height: math.unit(2, "meters"),
  6965. weight: math.unit(70, "kg"),
  6966. name: "Front",
  6967. image: {
  6968. source: "./media/characters/beherit/front.svg",
  6969. extra: 1234/1109,
  6970. bottom: 55/1289
  6971. }
  6972. }
  6973. },
  6974. [
  6975. {
  6976. name: "Normal",
  6977. height: math.unit(6, "feet")
  6978. },
  6979. {
  6980. name: "Lorg",
  6981. height: math.unit(25, "feet"),
  6982. default: true
  6983. },
  6984. {
  6985. name: "Lorger",
  6986. height: math.unit(75, "feet")
  6987. },
  6988. {
  6989. name: "Macro",
  6990. height: math.unit(200, "meters")
  6991. },
  6992. ]
  6993. ))
  6994. characterMakers.push(() => makeCharacter(
  6995. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6996. {
  6997. front: {
  6998. height: math.unit(2, "meters"),
  6999. weight: math.unit(150, "kg"),
  7000. name: "Front",
  7001. image: {
  7002. source: "./media/characters/everett/front.svg",
  7003. extra: 1017/866,
  7004. bottom: 86/1103
  7005. }
  7006. },
  7007. paw: {
  7008. height: math.unit(2 / 3.6, "meters"),
  7009. name: "Paw",
  7010. image: {
  7011. source: "./media/characters/everett/paw.svg"
  7012. }
  7013. },
  7014. },
  7015. [
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(15, "feet"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Lorg",
  7023. height: math.unit(70, "feet"),
  7024. default: true
  7025. },
  7026. {
  7027. name: "Lorger",
  7028. height: math.unit(250, "feet")
  7029. },
  7030. {
  7031. name: "Macro",
  7032. height: math.unit(500, "meters")
  7033. },
  7034. ]
  7035. ))
  7036. characterMakers.push(() => makeCharacter(
  7037. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7038. {
  7039. front: {
  7040. height: math.unit(2, "meters"),
  7041. weight: math.unit(86, "kg"),
  7042. name: "Front",
  7043. image: {
  7044. source: "./media/characters/rose/front.svg",
  7045. extra: 1785/1636,
  7046. bottom: 30/1815
  7047. },
  7048. form: "liom",
  7049. default: true
  7050. },
  7051. frontSporty: {
  7052. height: math.unit(2, "meters"),
  7053. weight: math.unit(86, "kg"),
  7054. name: "Front (Sporty)",
  7055. image: {
  7056. source: "./media/characters/rose/front-sporty.svg",
  7057. extra: 350/335,
  7058. bottom: 10/360
  7059. },
  7060. form: "liom"
  7061. },
  7062. frontAlt: {
  7063. height: math.unit(1.6, "meters"),
  7064. weight: math.unit(86, "kg"),
  7065. name: "Front (Alt)",
  7066. image: {
  7067. source: "./media/characters/rose/front-alt.svg",
  7068. extra: 299/283,
  7069. bottom: 3/302
  7070. },
  7071. form: "liom"
  7072. },
  7073. plush: {
  7074. height: math.unit(2, "meters"),
  7075. weight: math.unit(86/3, "kg"),
  7076. name: "Plush",
  7077. image: {
  7078. source: "./media/characters/rose/plush.svg",
  7079. extra: 361/337,
  7080. bottom: 11/372
  7081. },
  7082. form: "plush",
  7083. default: true
  7084. },
  7085. fae: {
  7086. height: math.unit(4, "cm"),
  7087. name: "Fae",
  7088. image: {
  7089. source: "./media/characters/rose/fae.svg",
  7090. extra: 737/577,
  7091. bottom: 356/1093
  7092. },
  7093. form: "fae",
  7094. default: true
  7095. },
  7096. },
  7097. [
  7098. {
  7099. name: "True Micro",
  7100. height: math.unit(9, "cm"),
  7101. form: "liom"
  7102. },
  7103. {
  7104. name: "Micro",
  7105. height: math.unit(16, "cm"),
  7106. form: "liom"
  7107. },
  7108. {
  7109. name: "Normal",
  7110. height: math.unit(1.85, "meters"),
  7111. default: true,
  7112. form: "liom"
  7113. },
  7114. {
  7115. name: "Mini-Macro",
  7116. height: math.unit(5, "meters"),
  7117. form: "liom"
  7118. },
  7119. {
  7120. name: "Macro",
  7121. height: math.unit(15, "meters"),
  7122. form: "liom"
  7123. },
  7124. {
  7125. name: "True Macro",
  7126. height: math.unit(40, "meters"),
  7127. form: "liom"
  7128. },
  7129. {
  7130. name: "City Scale",
  7131. height: math.unit(1, "km"),
  7132. form: "liom"
  7133. },
  7134. {
  7135. name: "Plushie",
  7136. height: math.unit(9, "cm"),
  7137. form: "plush",
  7138. default: true
  7139. },
  7140. {
  7141. name: "Fae",
  7142. height: math.unit(4, "cm"),
  7143. form: "fae",
  7144. default: true
  7145. },
  7146. ],
  7147. {
  7148. "liom": {
  7149. name: "Liom",
  7150. default: true
  7151. },
  7152. "plush": {
  7153. name: "Plush"
  7154. },
  7155. "fae": {
  7156. name: "Fae Fox"
  7157. }
  7158. }
  7159. ))
  7160. characterMakers.push(() => makeCharacter(
  7161. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  7162. {
  7163. front: {
  7164. height: math.unit(2, "meters"),
  7165. weight: math.unit(350, "lbs"),
  7166. name: "Front",
  7167. image: {
  7168. source: "./media/characters/regal/front.svg"
  7169. }
  7170. },
  7171. back: {
  7172. height: math.unit(2, "meters"),
  7173. weight: math.unit(350, "lbs"),
  7174. name: "Back",
  7175. image: {
  7176. source: "./media/characters/regal/back.svg"
  7177. }
  7178. },
  7179. },
  7180. [
  7181. {
  7182. name: "Macro",
  7183. height: math.unit(350, "feet"),
  7184. default: true
  7185. }
  7186. ]
  7187. ))
  7188. characterMakers.push(() => makeCharacter(
  7189. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  7190. {
  7191. front: {
  7192. height: math.unit(4 + 11 / 12, "feet"),
  7193. weight: math.unit(100, "lbs"),
  7194. name: "Front",
  7195. image: {
  7196. source: "./media/characters/opal/front.svg"
  7197. }
  7198. },
  7199. frontAlt: {
  7200. height: math.unit(4 + 11 / 12, "feet"),
  7201. weight: math.unit(100, "lbs"),
  7202. name: "Front (Alt)",
  7203. image: {
  7204. source: "./media/characters/opal/front-alt.svg"
  7205. }
  7206. },
  7207. },
  7208. [
  7209. {
  7210. name: "Small",
  7211. height: math.unit(4 + 11 / 12, "feet")
  7212. },
  7213. {
  7214. name: "Normal",
  7215. height: math.unit(20, "feet"),
  7216. default: true
  7217. },
  7218. {
  7219. name: "Macro",
  7220. height: math.unit(120, "feet")
  7221. },
  7222. {
  7223. name: "Megamacro",
  7224. height: math.unit(80, "miles")
  7225. },
  7226. {
  7227. name: "True Size",
  7228. height: math.unit(100000, "lightyears")
  7229. },
  7230. ]
  7231. ))
  7232. characterMakers.push(() => makeCharacter(
  7233. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  7234. {
  7235. front: {
  7236. height: math.unit(6, "feet"),
  7237. weight: math.unit(200, "lbs"),
  7238. name: "Front",
  7239. image: {
  7240. source: "./media/characters/vector-wuff/front.svg"
  7241. }
  7242. }
  7243. },
  7244. [
  7245. {
  7246. name: "Normal",
  7247. height: math.unit(2.8, "meters")
  7248. },
  7249. {
  7250. name: "Macro",
  7251. height: math.unit(450, "meters"),
  7252. default: true
  7253. },
  7254. {
  7255. name: "Megamacro",
  7256. height: math.unit(15, "kilometers")
  7257. }
  7258. ]
  7259. ))
  7260. characterMakers.push(() => makeCharacter(
  7261. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  7262. {
  7263. front: {
  7264. height: math.unit(6, "feet"),
  7265. weight: math.unit(256, "lbs"),
  7266. name: "Front",
  7267. image: {
  7268. source: "./media/characters/dannik/front.svg"
  7269. }
  7270. }
  7271. },
  7272. [
  7273. {
  7274. name: "Macro",
  7275. height: math.unit(69.57, "meters"),
  7276. default: true
  7277. },
  7278. ]
  7279. ))
  7280. characterMakers.push(() => makeCharacter(
  7281. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  7282. {
  7283. front: {
  7284. height: math.unit(6, "feet"),
  7285. weight: math.unit(120, "lbs"),
  7286. name: "Front",
  7287. image: {
  7288. source: "./media/characters/azura-saharah/front.svg"
  7289. }
  7290. },
  7291. back: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(120, "lbs"),
  7294. name: "Back",
  7295. image: {
  7296. source: "./media/characters/azura-saharah/back.svg"
  7297. }
  7298. },
  7299. },
  7300. [
  7301. {
  7302. name: "Macro",
  7303. height: math.unit(100, "feet"),
  7304. default: true
  7305. },
  7306. ]
  7307. ))
  7308. characterMakers.push(() => makeCharacter(
  7309. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  7310. {
  7311. side: {
  7312. height: math.unit(5 + 4 / 12, "feet"),
  7313. weight: math.unit(163, "lbs"),
  7314. name: "Side",
  7315. image: {
  7316. source: "./media/characters/kennedy/side.svg"
  7317. }
  7318. }
  7319. },
  7320. [
  7321. {
  7322. name: "Standard Doggo",
  7323. height: math.unit(5 + 4 / 12, "feet")
  7324. },
  7325. {
  7326. name: "Big Doggo",
  7327. height: math.unit(25 + 3 / 12, "feet"),
  7328. default: true
  7329. },
  7330. ]
  7331. ))
  7332. characterMakers.push(() => makeCharacter(
  7333. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  7334. {
  7335. front: {
  7336. height: math.unit(5 + 5/12, "feet"),
  7337. weight: math.unit(100, "lbs"),
  7338. name: "Front",
  7339. image: {
  7340. source: "./media/characters/odios-de-lunar/front.svg",
  7341. extra: 1468/1323,
  7342. bottom: 22/1490
  7343. }
  7344. }
  7345. },
  7346. [
  7347. {
  7348. name: "Micro",
  7349. height: math.unit(3, "inches")
  7350. },
  7351. {
  7352. name: "Normal",
  7353. height: math.unit(5.5, "feet"),
  7354. default: true
  7355. },
  7356. {
  7357. name: "Macro",
  7358. height: math.unit(100, "feet")
  7359. },
  7360. ]
  7361. ))
  7362. characterMakers.push(() => makeCharacter(
  7363. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  7364. {
  7365. back: {
  7366. height: math.unit(6, "feet"),
  7367. weight: math.unit(220, "lbs"),
  7368. name: "Back",
  7369. image: {
  7370. source: "./media/characters/mandake/back.svg"
  7371. }
  7372. }
  7373. },
  7374. [
  7375. {
  7376. name: "Normal",
  7377. height: math.unit(7, "feet"),
  7378. default: true
  7379. },
  7380. {
  7381. name: "Macro",
  7382. height: math.unit(78, "feet")
  7383. },
  7384. {
  7385. name: "Macro+",
  7386. height: math.unit(300, "meters")
  7387. },
  7388. {
  7389. name: "Macro++",
  7390. height: math.unit(2400, "feet")
  7391. },
  7392. {
  7393. name: "Megamacro",
  7394. height: math.unit(5167, "meters")
  7395. },
  7396. {
  7397. name: "Gigamacro",
  7398. height: math.unit(41769, "miles")
  7399. },
  7400. ]
  7401. ))
  7402. characterMakers.push(() => makeCharacter(
  7403. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  7404. {
  7405. front: {
  7406. height: math.unit(6, "feet"),
  7407. weight: math.unit(120, "lbs"),
  7408. name: "Front",
  7409. image: {
  7410. source: "./media/characters/yozey/front.svg"
  7411. }
  7412. },
  7413. frontAlt: {
  7414. height: math.unit(6, "feet"),
  7415. weight: math.unit(120, "lbs"),
  7416. name: "Front (Alt)",
  7417. image: {
  7418. source: "./media/characters/yozey/front-alt.svg"
  7419. }
  7420. },
  7421. side: {
  7422. height: math.unit(6, "feet"),
  7423. weight: math.unit(120, "lbs"),
  7424. name: "Side",
  7425. image: {
  7426. source: "./media/characters/yozey/side.svg"
  7427. }
  7428. },
  7429. },
  7430. [
  7431. {
  7432. name: "Micro",
  7433. height: math.unit(3, "inches"),
  7434. default: true
  7435. },
  7436. {
  7437. name: "Normal",
  7438. height: math.unit(6, "feet")
  7439. }
  7440. ]
  7441. ))
  7442. characterMakers.push(() => makeCharacter(
  7443. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  7444. {
  7445. front: {
  7446. height: math.unit(6, "feet"),
  7447. weight: math.unit(103, "lbs"),
  7448. name: "Front",
  7449. image: {
  7450. source: "./media/characters/valeska-voss/front.svg"
  7451. }
  7452. }
  7453. },
  7454. [
  7455. {
  7456. name: "Mini-Sized Sub",
  7457. height: math.unit(3.1, "inches")
  7458. },
  7459. {
  7460. name: "Mid-Sized Sub",
  7461. height: math.unit(6.2, "inches")
  7462. },
  7463. {
  7464. name: "Full-Sized Sub",
  7465. height: math.unit(9.3, "inches")
  7466. },
  7467. {
  7468. name: "Normal",
  7469. height: math.unit(5 + 2 / 12, "foot"),
  7470. default: true
  7471. },
  7472. ]
  7473. ))
  7474. characterMakers.push(() => makeCharacter(
  7475. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  7476. {
  7477. front: {
  7478. height: math.unit(6, "feet"),
  7479. weight: math.unit(160, "lbs"),
  7480. name: "Front",
  7481. image: {
  7482. source: "./media/characters/gene-zeta/front.svg",
  7483. extra: 3006 / 2826,
  7484. bottom: 182 / 3188
  7485. }
  7486. }
  7487. },
  7488. [
  7489. {
  7490. name: "Micro",
  7491. height: math.unit(6, "inches")
  7492. },
  7493. {
  7494. name: "Normal",
  7495. height: math.unit(5 + 11 / 12, "foot"),
  7496. default: true
  7497. },
  7498. {
  7499. name: "Macro",
  7500. height: math.unit(140, "feet")
  7501. },
  7502. {
  7503. name: "Supercharged",
  7504. height: math.unit(2500, "feet")
  7505. },
  7506. ]
  7507. ))
  7508. characterMakers.push(() => makeCharacter(
  7509. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  7510. {
  7511. front: {
  7512. height: math.unit(6, "feet"),
  7513. weight: math.unit(350, "lbs"),
  7514. name: "Front",
  7515. image: {
  7516. source: "./media/characters/razinox/front.svg",
  7517. extra: 1686 / 1548,
  7518. bottom: 28.2 / 1868
  7519. }
  7520. },
  7521. back: {
  7522. height: math.unit(6, "feet"),
  7523. weight: math.unit(350, "lbs"),
  7524. name: "Back",
  7525. image: {
  7526. source: "./media/characters/razinox/back.svg",
  7527. extra: 1660 / 1590,
  7528. bottom: 15 / 1665
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(10 + 8 / 12, "foot")
  7536. },
  7537. {
  7538. name: "Minimacro",
  7539. height: math.unit(15, "foot")
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(60, "foot"),
  7544. default: true
  7545. },
  7546. {
  7547. name: "Megamacro",
  7548. height: math.unit(5, "miles")
  7549. },
  7550. {
  7551. name: "Gigamacro",
  7552. height: math.unit(6000, "miles")
  7553. },
  7554. ]
  7555. ))
  7556. characterMakers.push(() => makeCharacter(
  7557. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  7558. {
  7559. front: {
  7560. height: math.unit(6, "feet"),
  7561. weight: math.unit(150, "lbs"),
  7562. name: "Front",
  7563. image: {
  7564. source: "./media/characters/cobalt/front.svg"
  7565. }
  7566. }
  7567. },
  7568. [
  7569. {
  7570. name: "Normal",
  7571. height: math.unit(8 + 1 / 12, "foot")
  7572. },
  7573. {
  7574. name: "Macro",
  7575. height: math.unit(111, "foot"),
  7576. default: true
  7577. },
  7578. {
  7579. name: "Supracosmic",
  7580. height: math.unit(1e42, "feet")
  7581. },
  7582. ]
  7583. ))
  7584. characterMakers.push(() => makeCharacter(
  7585. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  7586. {
  7587. front: {
  7588. height: math.unit(5, "inches"),
  7589. name: "Front",
  7590. image: {
  7591. source: "./media/characters/amanda/front.svg",
  7592. extra: 926/791,
  7593. bottom: 38/964
  7594. }
  7595. },
  7596. back: {
  7597. height: math.unit(5, "inches"),
  7598. name: "Back",
  7599. image: {
  7600. source: "./media/characters/amanda/back.svg",
  7601. extra: 909/805,
  7602. bottom: 43/952
  7603. }
  7604. },
  7605. },
  7606. [
  7607. {
  7608. name: "Micro",
  7609. height: math.unit(5, "inches"),
  7610. default: true
  7611. },
  7612. ]
  7613. ))
  7614. characterMakers.push(() => makeCharacter(
  7615. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  7616. {
  7617. front: {
  7618. height: math.unit(2.75, "meters"),
  7619. weight: math.unit(1200, "lb"),
  7620. name: "Front",
  7621. image: {
  7622. source: "./media/characters/teal/front.svg",
  7623. extra: 2463 / 2320,
  7624. bottom: 166 / 2629
  7625. }
  7626. },
  7627. back: {
  7628. height: math.unit(2.75, "meters"),
  7629. weight: math.unit(1200, "lb"),
  7630. name: "Back",
  7631. image: {
  7632. source: "./media/characters/teal/back.svg",
  7633. extra: 2580 / 2489,
  7634. bottom: 151 / 2731
  7635. }
  7636. },
  7637. sitting: {
  7638. height: math.unit(1.9, "meters"),
  7639. weight: math.unit(1200, "lb"),
  7640. name: "Sitting",
  7641. image: {
  7642. source: "./media/characters/teal/sitting.svg",
  7643. extra: 623 / 590,
  7644. bottom: 121 / 744
  7645. }
  7646. },
  7647. standing: {
  7648. height: math.unit(2.75, "meters"),
  7649. weight: math.unit(1200, "lb"),
  7650. name: "Standing",
  7651. image: {
  7652. source: "./media/characters/teal/standing.svg",
  7653. extra: 923 / 893,
  7654. bottom: 60 / 983
  7655. }
  7656. },
  7657. stretching: {
  7658. height: math.unit(3.65, "meters"),
  7659. weight: math.unit(1200, "lb"),
  7660. name: "Stretching",
  7661. image: {
  7662. source: "./media/characters/teal/stretching.svg",
  7663. extra: 1276 / 1244,
  7664. bottom: 0 / 1276
  7665. }
  7666. },
  7667. legged: {
  7668. height: math.unit(1.3, "meters"),
  7669. weight: math.unit(100, "lb"),
  7670. name: "Legged",
  7671. image: {
  7672. source: "./media/characters/teal/legged.svg",
  7673. extra: 462 / 437,
  7674. bottom: 24 / 486
  7675. }
  7676. },
  7677. naga: {
  7678. height: math.unit(5.4, "meters"),
  7679. weight: math.unit(4000, "lb"),
  7680. name: "Naga",
  7681. image: {
  7682. source: "./media/characters/teal/naga.svg",
  7683. extra: 1902 / 1858,
  7684. bottom: 0 / 1902
  7685. }
  7686. },
  7687. hand: {
  7688. height: math.unit(0.52, "meters"),
  7689. name: "Hand",
  7690. image: {
  7691. source: "./media/characters/teal/hand.svg"
  7692. }
  7693. },
  7694. maw: {
  7695. height: math.unit(0.43, "meters"),
  7696. name: "Maw",
  7697. image: {
  7698. source: "./media/characters/teal/maw.svg"
  7699. }
  7700. },
  7701. slit: {
  7702. height: math.unit(0.25, "meters"),
  7703. name: "Slit",
  7704. image: {
  7705. source: "./media/characters/teal/slit.svg"
  7706. }
  7707. },
  7708. },
  7709. [
  7710. {
  7711. name: "Normal",
  7712. height: math.unit(2.75, "meters"),
  7713. default: true
  7714. },
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(300, "feet")
  7718. },
  7719. {
  7720. name: "Macro+",
  7721. height: math.unit(2000, "feet")
  7722. },
  7723. ]
  7724. ))
  7725. characterMakers.push(() => makeCharacter(
  7726. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7727. {
  7728. frontCat: {
  7729. height: math.unit(6, "feet"),
  7730. weight: math.unit(180, "lbs"),
  7731. name: "Front (Cat)",
  7732. image: {
  7733. source: "./media/characters/ravin-amulet/front-cat.svg"
  7734. }
  7735. },
  7736. frontCatAlt: {
  7737. height: math.unit(6, "feet"),
  7738. weight: math.unit(180, "lbs"),
  7739. name: "Front (Alt, Cat)",
  7740. image: {
  7741. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7742. }
  7743. },
  7744. frontWerewolf: {
  7745. height: math.unit(6 * 1.2, "feet"),
  7746. weight: math.unit(225, "lbs"),
  7747. name: "Front (Werewolf)",
  7748. image: {
  7749. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7750. }
  7751. },
  7752. backWerewolf: {
  7753. height: math.unit(6 * 1.2, "feet"),
  7754. weight: math.unit(225, "lbs"),
  7755. name: "Back (Werewolf)",
  7756. image: {
  7757. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Nano",
  7764. height: math.unit(1, "micrometer")
  7765. },
  7766. {
  7767. name: "Micro",
  7768. height: math.unit(1, "inch")
  7769. },
  7770. {
  7771. name: "Normal",
  7772. height: math.unit(6, "feet"),
  7773. default: true
  7774. },
  7775. {
  7776. name: "Macro",
  7777. height: math.unit(60, "feet")
  7778. }
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7783. {
  7784. front: {
  7785. height: math.unit(6, "feet"),
  7786. weight: math.unit(165, "lbs"),
  7787. name: "Front",
  7788. image: {
  7789. source: "./media/characters/fluoresce/front.svg"
  7790. }
  7791. }
  7792. },
  7793. [
  7794. {
  7795. name: "Micro",
  7796. height: math.unit(6, "cm")
  7797. },
  7798. {
  7799. name: "Normal",
  7800. height: math.unit(5 + 7 / 12, "feet"),
  7801. default: true
  7802. },
  7803. {
  7804. name: "Macro",
  7805. height: math.unit(56, "feet")
  7806. },
  7807. {
  7808. name: "Megamacro",
  7809. height: math.unit(1.9, "miles")
  7810. },
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7815. {
  7816. front: {
  7817. height: math.unit(9 + 6 / 12, "feet"),
  7818. weight: math.unit(523, "lbs"),
  7819. name: "Side",
  7820. image: {
  7821. source: "./media/characters/aurora/side.svg"
  7822. }
  7823. }
  7824. },
  7825. [
  7826. {
  7827. name: "Normal",
  7828. height: math.unit(9 + 6 / 12, "feet")
  7829. },
  7830. {
  7831. name: "Macro",
  7832. height: math.unit(96, "feet"),
  7833. default: true
  7834. },
  7835. {
  7836. name: "Macro+",
  7837. height: math.unit(243, "feet")
  7838. },
  7839. ]
  7840. ))
  7841. characterMakers.push(() => makeCharacter(
  7842. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7843. {
  7844. front: {
  7845. height: math.unit(194, "cm"),
  7846. weight: math.unit(90, "kg"),
  7847. name: "Front",
  7848. image: {
  7849. source: "./media/characters/ranek/front.svg",
  7850. extra: 1862/1791,
  7851. bottom: 80/1942
  7852. }
  7853. },
  7854. back: {
  7855. height: math.unit(194, "cm"),
  7856. weight: math.unit(90, "kg"),
  7857. name: "Back",
  7858. image: {
  7859. source: "./media/characters/ranek/back.svg",
  7860. extra: 1853/1787,
  7861. bottom: 74/1927
  7862. }
  7863. },
  7864. feral: {
  7865. height: math.unit(30, "cm"),
  7866. weight: math.unit(1.6, "lbs"),
  7867. name: "Feral",
  7868. image: {
  7869. source: "./media/characters/ranek/feral.svg",
  7870. extra: 990/631,
  7871. bottom: 29/1019
  7872. }
  7873. },
  7874. },
  7875. [
  7876. {
  7877. name: "Normal",
  7878. height: math.unit(194, "cm"),
  7879. default: true
  7880. },
  7881. {
  7882. name: "Macro",
  7883. height: math.unit(100, "meters")
  7884. },
  7885. ]
  7886. ))
  7887. characterMakers.push(() => makeCharacter(
  7888. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7889. {
  7890. front: {
  7891. height: math.unit(5 + 6 / 12, "feet"),
  7892. weight: math.unit(153, "lbs"),
  7893. name: "Front",
  7894. image: {
  7895. source: "./media/characters/andrew-cooper/front.svg"
  7896. }
  7897. },
  7898. },
  7899. [
  7900. {
  7901. name: "Nano",
  7902. height: math.unit(1, "mm")
  7903. },
  7904. {
  7905. name: "Micro",
  7906. height: math.unit(2, "inches")
  7907. },
  7908. {
  7909. name: "Normal",
  7910. height: math.unit(5 + 6 / 12, "feet"),
  7911. default: true
  7912. }
  7913. ]
  7914. ))
  7915. characterMakers.push(() => makeCharacter(
  7916. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7917. {
  7918. front: {
  7919. height: math.unit(6, "feet"),
  7920. weight: math.unit(180, "lbs"),
  7921. name: "Front",
  7922. image: {
  7923. source: "./media/characters/akane-sato/front.svg",
  7924. extra: 1219 / 1140
  7925. }
  7926. },
  7927. back: {
  7928. height: math.unit(6, "feet"),
  7929. weight: math.unit(180, "lbs"),
  7930. name: "Back",
  7931. image: {
  7932. source: "./media/characters/akane-sato/back.svg",
  7933. extra: 1219 / 1170
  7934. }
  7935. },
  7936. },
  7937. [
  7938. {
  7939. name: "Normal",
  7940. height: math.unit(2.5, "meters")
  7941. },
  7942. {
  7943. name: "Macro",
  7944. height: math.unit(250, "meters"),
  7945. default: true
  7946. },
  7947. {
  7948. name: "Megamacro",
  7949. height: math.unit(25, "km")
  7950. },
  7951. ]
  7952. ))
  7953. characterMakers.push(() => makeCharacter(
  7954. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7955. {
  7956. front: {
  7957. height: math.unit(6, "feet"),
  7958. weight: math.unit(65, "kg"),
  7959. name: "Front",
  7960. image: {
  7961. source: "./media/characters/rook/front.svg",
  7962. extra: 960 / 950
  7963. }
  7964. }
  7965. },
  7966. [
  7967. {
  7968. name: "Normal",
  7969. height: math.unit(8.8, "feet")
  7970. },
  7971. {
  7972. name: "Macro",
  7973. height: math.unit(88, "feet"),
  7974. default: true
  7975. },
  7976. {
  7977. name: "Megamacro",
  7978. height: math.unit(8, "miles")
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7984. {
  7985. front: {
  7986. height: math.unit(12 + 2 / 12, "feet"),
  7987. weight: math.unit(808, "lbs"),
  7988. name: "Front",
  7989. image: {
  7990. source: "./media/characters/prodigy/front.svg"
  7991. }
  7992. }
  7993. },
  7994. [
  7995. {
  7996. name: "Normal",
  7997. height: math.unit(12 + 2 / 12, "feet"),
  7998. default: true
  7999. },
  8000. {
  8001. name: "Macro",
  8002. height: math.unit(143, "feet")
  8003. },
  8004. {
  8005. name: "Macro+",
  8006. height: math.unit(400, "feet")
  8007. },
  8008. ]
  8009. ))
  8010. characterMakers.push(() => makeCharacter(
  8011. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8012. {
  8013. front: {
  8014. height: math.unit(6, "feet"),
  8015. weight: math.unit(225, "lbs"),
  8016. name: "Front",
  8017. image: {
  8018. source: "./media/characters/daniel/front.svg"
  8019. }
  8020. },
  8021. leaning: {
  8022. height: math.unit(6, "feet"),
  8023. weight: math.unit(225, "lbs"),
  8024. name: "Leaning",
  8025. image: {
  8026. source: "./media/characters/daniel/leaning.svg"
  8027. }
  8028. },
  8029. },
  8030. [
  8031. {
  8032. name: "Macro",
  8033. height: math.unit(1000, "feet"),
  8034. default: true
  8035. },
  8036. ]
  8037. ))
  8038. characterMakers.push(() => makeCharacter(
  8039. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8040. {
  8041. front: {
  8042. height: math.unit(6, "feet"),
  8043. weight: math.unit(88, "lbs"),
  8044. name: "Front",
  8045. image: {
  8046. source: "./media/characters/chiros/front.svg",
  8047. extra: 306 / 226
  8048. }
  8049. },
  8050. side: {
  8051. height: math.unit(6, "feet"),
  8052. weight: math.unit(88, "lbs"),
  8053. name: "Side",
  8054. image: {
  8055. source: "./media/characters/chiros/side.svg",
  8056. extra: 306 / 226
  8057. }
  8058. },
  8059. },
  8060. [
  8061. {
  8062. name: "Normal",
  8063. height: math.unit(6, "cm"),
  8064. default: true
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8070. {
  8071. front: {
  8072. height: math.unit(6, "feet"),
  8073. weight: math.unit(100, "lbs"),
  8074. name: "Front",
  8075. image: {
  8076. source: "./media/characters/selka/front.svg",
  8077. extra: 947 / 887
  8078. }
  8079. }
  8080. },
  8081. [
  8082. {
  8083. name: "Normal",
  8084. height: math.unit(5, "cm"),
  8085. default: true
  8086. },
  8087. ]
  8088. ))
  8089. characterMakers.push(() => makeCharacter(
  8090. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8091. {
  8092. front: {
  8093. height: math.unit(8 + 3 / 12, "feet"),
  8094. weight: math.unit(424, "lbs"),
  8095. name: "Front",
  8096. image: {
  8097. source: "./media/characters/verin/front.svg",
  8098. extra: 1845 / 1550
  8099. }
  8100. },
  8101. frontArmored: {
  8102. height: math.unit(8 + 3 / 12, "feet"),
  8103. weight: math.unit(424, "lbs"),
  8104. name: "Front (Armored)",
  8105. image: {
  8106. source: "./media/characters/verin/front-armor.svg",
  8107. extra: 1845 / 1550,
  8108. bottom: 0.01
  8109. }
  8110. },
  8111. back: {
  8112. height: math.unit(8 + 3 / 12, "feet"),
  8113. weight: math.unit(424, "lbs"),
  8114. name: "Back",
  8115. image: {
  8116. source: "./media/characters/verin/back.svg",
  8117. bottom: 0.1,
  8118. extra: 1
  8119. }
  8120. },
  8121. foot: {
  8122. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  8123. name: "Foot",
  8124. image: {
  8125. source: "./media/characters/verin/foot.svg"
  8126. }
  8127. },
  8128. },
  8129. [
  8130. {
  8131. name: "Normal",
  8132. height: math.unit(8 + 3 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Minimacro",
  8136. height: math.unit(21, "feet"),
  8137. default: true
  8138. },
  8139. {
  8140. name: "Macro",
  8141. height: math.unit(626, "feet")
  8142. },
  8143. ]
  8144. ))
  8145. characterMakers.push(() => makeCharacter(
  8146. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  8147. {
  8148. front: {
  8149. height: math.unit(2.718, "meters"),
  8150. weight: math.unit(150, "lbs"),
  8151. name: "Front",
  8152. image: {
  8153. source: "./media/characters/sovrim-terraquian/front.svg",
  8154. extra: 1752/1689,
  8155. bottom: 36/1788
  8156. }
  8157. },
  8158. back: {
  8159. height: math.unit(2.718, "meters"),
  8160. weight: math.unit(150, "lbs"),
  8161. name: "Back",
  8162. image: {
  8163. source: "./media/characters/sovrim-terraquian/back.svg",
  8164. extra: 1698/1657,
  8165. bottom: 58/1756
  8166. }
  8167. },
  8168. tongue: {
  8169. height: math.unit(2.865, "feet"),
  8170. name: "Tongue",
  8171. image: {
  8172. source: "./media/characters/sovrim-terraquian/tongue.svg"
  8173. }
  8174. },
  8175. hand: {
  8176. height: math.unit(1.61, "feet"),
  8177. name: "Hand",
  8178. image: {
  8179. source: "./media/characters/sovrim-terraquian/hand.svg"
  8180. }
  8181. },
  8182. foot: {
  8183. height: math.unit(1.05, "feet"),
  8184. name: "Foot",
  8185. image: {
  8186. source: "./media/characters/sovrim-terraquian/foot.svg"
  8187. }
  8188. },
  8189. footAlt: {
  8190. height: math.unit(0.88, "feet"),
  8191. name: "Foot (Alt)",
  8192. image: {
  8193. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  8194. }
  8195. },
  8196. },
  8197. [
  8198. {
  8199. name: "Micro",
  8200. height: math.unit(2, "inches")
  8201. },
  8202. {
  8203. name: "Small",
  8204. height: math.unit(1, "meter")
  8205. },
  8206. {
  8207. name: "Normal",
  8208. height: math.unit(Math.E, "meters"),
  8209. default: true
  8210. },
  8211. {
  8212. name: "Macro",
  8213. height: math.unit(20, "meters")
  8214. },
  8215. {
  8216. name: "Macro+",
  8217. height: math.unit(400, "meters")
  8218. },
  8219. ]
  8220. ))
  8221. characterMakers.push(() => makeCharacter(
  8222. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  8223. {
  8224. front: {
  8225. height: math.unit(7, "feet"),
  8226. weight: math.unit(489, "lbs"),
  8227. name: "Front",
  8228. image: {
  8229. source: "./media/characters/reece-silvermane/front.svg",
  8230. bottom: 0.02,
  8231. extra: 1
  8232. }
  8233. },
  8234. },
  8235. [
  8236. {
  8237. name: "Macro",
  8238. height: math.unit(1.5, "miles"),
  8239. default: true
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(6, "feet"),
  8248. weight: math.unit(78, "kg"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/kane/front.svg",
  8252. extra: 978 / 899
  8253. }
  8254. },
  8255. },
  8256. [
  8257. {
  8258. name: "Normal",
  8259. height: math.unit(2.1, "m"),
  8260. },
  8261. {
  8262. name: "Macro",
  8263. height: math.unit(1, "km"),
  8264. default: true
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  8270. {
  8271. front: {
  8272. height: math.unit(6, "feet"),
  8273. weight: math.unit(200, "kg"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/tegon/front.svg",
  8277. bottom: 0.01,
  8278. extra: 1
  8279. }
  8280. },
  8281. },
  8282. [
  8283. {
  8284. name: "Micro",
  8285. height: math.unit(1, "inch")
  8286. },
  8287. {
  8288. name: "Normal",
  8289. height: math.unit(6 + 3 / 12, "feet"),
  8290. default: true
  8291. },
  8292. {
  8293. name: "Macro",
  8294. height: math.unit(300, "feet")
  8295. },
  8296. {
  8297. name: "Megamacro",
  8298. height: math.unit(69, "miles")
  8299. },
  8300. ]
  8301. ))
  8302. characterMakers.push(() => makeCharacter(
  8303. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  8304. {
  8305. side: {
  8306. height: math.unit(6, "feet"),
  8307. weight: math.unit(2304, "lbs"),
  8308. name: "Side",
  8309. image: {
  8310. source: "./media/characters/arcturax/side.svg",
  8311. extra: 790 / 376,
  8312. bottom: 0.01
  8313. }
  8314. },
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(2, "inch")
  8320. },
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(6, "feet")
  8324. },
  8325. {
  8326. name: "Macro",
  8327. height: math.unit(39, "feet"),
  8328. default: true
  8329. },
  8330. {
  8331. name: "Megamacro",
  8332. height: math.unit(7, "miles")
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(6, "feet"),
  8341. weight: math.unit(50, "lbs"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/sentri/front.svg",
  8345. extra: 1750 / 1570,
  8346. bottom: 0.025
  8347. }
  8348. },
  8349. frontAlt: {
  8350. height: math.unit(6, "feet"),
  8351. weight: math.unit(50, "lbs"),
  8352. name: "Front (Alt)",
  8353. image: {
  8354. source: "./media/characters/sentri/front-alt.svg",
  8355. extra: 1750 / 1570,
  8356. bottom: 0.025
  8357. }
  8358. },
  8359. },
  8360. [
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(15, "feet"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(2500, "feet")
  8369. }
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(5 + 8 / 12, "feet"),
  8377. weight: math.unit(130, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/corvin/front.svg",
  8381. extra: 1803 / 1629
  8382. }
  8383. },
  8384. frontShirt: {
  8385. height: math.unit(5 + 8 / 12, "feet"),
  8386. weight: math.unit(130, "lbs"),
  8387. name: "Front (Shirt)",
  8388. image: {
  8389. source: "./media/characters/corvin/front-shirt.svg",
  8390. extra: 1803 / 1629
  8391. }
  8392. },
  8393. frontPoncho: {
  8394. height: math.unit(5 + 8 / 12, "feet"),
  8395. weight: math.unit(130, "lbs"),
  8396. name: "Front (Poncho)",
  8397. image: {
  8398. source: "./media/characters/corvin/front-poncho.svg",
  8399. extra: 1803 / 1629
  8400. }
  8401. },
  8402. side: {
  8403. height: math.unit(5 + 8 / 12, "feet"),
  8404. weight: math.unit(130, "lbs"),
  8405. name: "Side",
  8406. image: {
  8407. source: "./media/characters/corvin/side.svg",
  8408. extra: 1012 / 945
  8409. }
  8410. },
  8411. back: {
  8412. height: math.unit(5 + 8 / 12, "feet"),
  8413. weight: math.unit(130, "lbs"),
  8414. name: "Back",
  8415. image: {
  8416. source: "./media/characters/corvin/back.svg",
  8417. extra: 1803 / 1629
  8418. }
  8419. },
  8420. },
  8421. [
  8422. {
  8423. name: "Micro",
  8424. height: math.unit(3, "inches")
  8425. },
  8426. {
  8427. name: "Normal",
  8428. height: math.unit(5 + 8 / 12, "feet")
  8429. },
  8430. {
  8431. name: "Macro",
  8432. height: math.unit(300, "feet"),
  8433. default: true
  8434. },
  8435. {
  8436. name: "Megamacro",
  8437. height: math.unit(500, "miles")
  8438. }
  8439. ]
  8440. ))
  8441. characterMakers.push(() => makeCharacter(
  8442. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  8443. {
  8444. front: {
  8445. height: math.unit(6, "feet"),
  8446. weight: math.unit(135, "lbs"),
  8447. name: "Front",
  8448. image: {
  8449. source: "./media/characters/q/front.svg",
  8450. extra: 854 / 752,
  8451. bottom: 0.005
  8452. }
  8453. },
  8454. back: {
  8455. height: math.unit(6, "feet"),
  8456. weight: math.unit(130, "lbs"),
  8457. name: "Back",
  8458. image: {
  8459. source: "./media/characters/q/back.svg",
  8460. extra: 854 / 752
  8461. }
  8462. },
  8463. },
  8464. [
  8465. {
  8466. name: "Macro",
  8467. height: math.unit(90, "feet"),
  8468. default: true
  8469. },
  8470. {
  8471. name: "Extra Macro",
  8472. height: math.unit(300, "feet"),
  8473. },
  8474. {
  8475. name: "BIG WALF",
  8476. height: math.unit(750, "feet"),
  8477. },
  8478. ]
  8479. ))
  8480. characterMakers.push(() => makeCharacter(
  8481. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  8482. {
  8483. front: {
  8484. height: math.unit(6, "feet"),
  8485. weight: math.unit(150, "lbs"),
  8486. name: "Front",
  8487. image: {
  8488. source: "./media/characters/carley/front.svg",
  8489. extra: 3927 / 3540,
  8490. bottom: 29.2 / 735
  8491. }
  8492. }
  8493. },
  8494. [
  8495. {
  8496. name: "Normal",
  8497. height: math.unit(6 + 3 / 12, "feet")
  8498. },
  8499. {
  8500. name: "Macro",
  8501. height: math.unit(185, "feet"),
  8502. default: true
  8503. },
  8504. {
  8505. name: "Megamacro",
  8506. height: math.unit(8, "miles"),
  8507. },
  8508. ]
  8509. ))
  8510. characterMakers.push(() => makeCharacter(
  8511. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  8512. {
  8513. front: {
  8514. height: math.unit(3, "feet"),
  8515. weight: math.unit(28, "lbs"),
  8516. name: "Front",
  8517. image: {
  8518. source: "./media/characters/citrine/front.svg"
  8519. }
  8520. }
  8521. },
  8522. [
  8523. {
  8524. name: "Normal",
  8525. height: math.unit(3, "feet"),
  8526. default: true
  8527. }
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  8532. {
  8533. front: {
  8534. height: math.unit(14, "feet"),
  8535. weight: math.unit(1450, "kg"),
  8536. capacity: math.unit(15, "people"),
  8537. name: "Front",
  8538. image: {
  8539. source: "./media/characters/aura-starwind/front.svg",
  8540. extra: 1440/1327,
  8541. bottom: 11/1451
  8542. }
  8543. },
  8544. side: {
  8545. height: math.unit(14, "feet"),
  8546. weight: math.unit(1450, "kg"),
  8547. capacity: math.unit(15, "people"),
  8548. name: "Side",
  8549. image: {
  8550. source: "./media/characters/aura-starwind/side.svg",
  8551. extra: 1654 / 1497
  8552. }
  8553. },
  8554. taur: {
  8555. height: math.unit(18, "feet"),
  8556. weight: math.unit(5500, "kg"),
  8557. capacity: math.unit(50, "people"),
  8558. name: "Taur",
  8559. image: {
  8560. source: "./media/characters/aura-starwind/taur.svg",
  8561. extra: 1760 / 1650
  8562. }
  8563. },
  8564. feral: {
  8565. height: math.unit(46, "feet"),
  8566. weight: math.unit(25000, "kg"),
  8567. capacity: math.unit(120, "people"),
  8568. name: "Feral",
  8569. image: {
  8570. source: "./media/characters/aura-starwind/feral.svg"
  8571. }
  8572. },
  8573. },
  8574. [
  8575. {
  8576. name: "Normal",
  8577. height: math.unit(14, "feet"),
  8578. default: true
  8579. },
  8580. {
  8581. name: "Macro",
  8582. height: math.unit(50, "meters")
  8583. },
  8584. {
  8585. name: "Megamacro",
  8586. height: math.unit(5000, "meters")
  8587. },
  8588. {
  8589. name: "Gigamacro",
  8590. height: math.unit(100000, "kilometers")
  8591. },
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(2 + 7 / 12, "feet"),
  8599. weight: math.unit(32, "lbs"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/rivet/front.svg",
  8603. extra: 1716 / 1658,
  8604. bottom: 0.03
  8605. }
  8606. },
  8607. foot: {
  8608. height: math.unit(0.551, "feet"),
  8609. name: "Rivet's Foot",
  8610. image: {
  8611. source: "./media/characters/rivet/foot.svg"
  8612. },
  8613. rename: true
  8614. }
  8615. },
  8616. [
  8617. {
  8618. name: "Micro",
  8619. height: math.unit(1.5, "inches"),
  8620. },
  8621. {
  8622. name: "Normal",
  8623. height: math.unit(2 + 7 / 12, "feet"),
  8624. default: true
  8625. },
  8626. {
  8627. name: "Macro",
  8628. height: math.unit(85, "feet")
  8629. },
  8630. {
  8631. name: "Megamacro",
  8632. height: math.unit(2.2, "km")
  8633. }
  8634. ]
  8635. ))
  8636. characterMakers.push(() => makeCharacter(
  8637. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  8638. {
  8639. front: {
  8640. height: math.unit(5 + 9 / 12, "feet"),
  8641. weight: math.unit(150, "lbs"),
  8642. name: "Front",
  8643. image: {
  8644. source: "./media/characters/coffee/front.svg",
  8645. extra: 3666 / 3032,
  8646. bottom: 0.04
  8647. }
  8648. },
  8649. foot: {
  8650. height: math.unit(1.29, "feet"),
  8651. name: "Foot",
  8652. image: {
  8653. source: "./media/characters/coffee/foot.svg"
  8654. }
  8655. },
  8656. },
  8657. [
  8658. {
  8659. name: "Micro",
  8660. height: math.unit(2, "inches"),
  8661. },
  8662. {
  8663. name: "Normal",
  8664. height: math.unit(5 + 9 / 12, "feet"),
  8665. default: true
  8666. },
  8667. {
  8668. name: "Macro",
  8669. height: math.unit(800, "feet")
  8670. },
  8671. {
  8672. name: "Megamacro",
  8673. height: math.unit(25, "miles")
  8674. }
  8675. ]
  8676. ))
  8677. characterMakers.push(() => makeCharacter(
  8678. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  8679. {
  8680. front: {
  8681. height: math.unit(6, "feet"),
  8682. weight: math.unit(200, "lbs"),
  8683. name: "Front",
  8684. image: {
  8685. source: "./media/characters/chari-gal/front.svg",
  8686. extra: 1568 / 1385,
  8687. bottom: 0.047
  8688. }
  8689. },
  8690. gigantamax: {
  8691. height: math.unit(6 * 16, "feet"),
  8692. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  8693. name: "Gigantamax",
  8694. image: {
  8695. source: "./media/characters/chari-gal/gigantamax.svg",
  8696. extra: 1124 / 888,
  8697. bottom: 0.03
  8698. }
  8699. },
  8700. },
  8701. [
  8702. {
  8703. name: "Normal",
  8704. height: math.unit(5 + 7 / 12, "feet")
  8705. },
  8706. {
  8707. name: "Macro",
  8708. height: math.unit(200, "feet"),
  8709. default: true
  8710. }
  8711. ]
  8712. ))
  8713. characterMakers.push(() => makeCharacter(
  8714. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  8715. {
  8716. front: {
  8717. height: math.unit(6, "feet"),
  8718. weight: math.unit(150, "lbs"),
  8719. name: "Front",
  8720. image: {
  8721. source: "./media/characters/nova/front.svg",
  8722. extra: 5000 / 4722,
  8723. bottom: 0.02
  8724. }
  8725. }
  8726. },
  8727. [
  8728. {
  8729. name: "Micro-",
  8730. height: math.unit(0.8, "inches")
  8731. },
  8732. {
  8733. name: "Micro",
  8734. height: math.unit(2, "inches"),
  8735. default: true
  8736. },
  8737. ]
  8738. ))
  8739. characterMakers.push(() => makeCharacter(
  8740. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8741. {
  8742. front: {
  8743. height: math.unit(3 + 1 / 12, "feet"),
  8744. weight: math.unit(21.7, "lbs"),
  8745. name: "Front",
  8746. image: {
  8747. source: "./media/characters/argent/front.svg",
  8748. extra: 1471 / 1331,
  8749. bottom: 100.8 / 1575.5
  8750. }
  8751. }
  8752. },
  8753. [
  8754. {
  8755. name: "Micro",
  8756. height: math.unit(2, "inches")
  8757. },
  8758. {
  8759. name: "Normal",
  8760. height: math.unit(3 + 1 / 12, "feet"),
  8761. default: true
  8762. },
  8763. {
  8764. name: "Macro",
  8765. height: math.unit(120, "feet")
  8766. },
  8767. ]
  8768. ))
  8769. characterMakers.push(() => makeCharacter(
  8770. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8771. {
  8772. lamp: {
  8773. height: math.unit(7 * 1559 / 989, "feet"),
  8774. name: "Magic Lamp",
  8775. image: {
  8776. source: "./media/characters/mira-al-cul/lamp.svg",
  8777. extra: 1617 / 1559
  8778. }
  8779. },
  8780. front: {
  8781. height: math.unit(7, "feet"),
  8782. name: "Front",
  8783. image: {
  8784. source: "./media/characters/mira-al-cul/front.svg",
  8785. extra: 1044 / 990
  8786. }
  8787. },
  8788. },
  8789. [
  8790. {
  8791. name: "Heavily Restricted",
  8792. height: math.unit(7 * 1559 / 989, "feet")
  8793. },
  8794. {
  8795. name: "Freshly Freed",
  8796. height: math.unit(50 * 1559 / 989, "feet")
  8797. },
  8798. {
  8799. name: "World Encompassing",
  8800. height: math.unit(10000 * 1559 / 989, "miles")
  8801. },
  8802. {
  8803. name: "Galactic",
  8804. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8805. },
  8806. {
  8807. name: "Palmed Universe",
  8808. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8809. default: true
  8810. },
  8811. {
  8812. name: "Multiversal Matriarch",
  8813. height: math.unit(8.87e10, "yottameters")
  8814. },
  8815. {
  8816. name: "Void Mother",
  8817. height: math.unit(3.14e110, "yottaparsecs")
  8818. },
  8819. {
  8820. name: "Toying with Transcendence",
  8821. height: math.unit(1e307, "meters")
  8822. },
  8823. ]
  8824. ))
  8825. characterMakers.push(() => makeCharacter(
  8826. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8827. {
  8828. front: {
  8829. height: math.unit(17 + 1 / 12, "feet"),
  8830. weight: math.unit(476.2 * 5, "lbs"),
  8831. name: "Front",
  8832. image: {
  8833. source: "./media/characters/kuro-shi-uchū/front.svg",
  8834. extra: 2329 / 1835,
  8835. bottom: 0.02
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Micro",
  8842. height: math.unit(2, "inches")
  8843. },
  8844. {
  8845. name: "Normal",
  8846. height: math.unit(12, "meters")
  8847. },
  8848. {
  8849. name: "Planetary",
  8850. height: math.unit(0.00929, "AU"),
  8851. default: true
  8852. },
  8853. {
  8854. name: "Universal",
  8855. height: math.unit(20, "gigaparsecs")
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8861. {
  8862. front: {
  8863. height: math.unit(5 + 2 / 12, "feet"),
  8864. weight: math.unit(120, "lbs"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/katherine/front.svg",
  8868. extra: 2075 / 1969
  8869. }
  8870. },
  8871. dress: {
  8872. height: math.unit(5 + 2 / 12, "feet"),
  8873. weight: math.unit(120, "lbs"),
  8874. name: "Dress",
  8875. image: {
  8876. source: "./media/characters/katherine/dress.svg",
  8877. extra: 2258 / 2064
  8878. }
  8879. },
  8880. },
  8881. [
  8882. {
  8883. name: "Micro",
  8884. height: math.unit(1, "inches"),
  8885. default: true
  8886. },
  8887. {
  8888. name: "Normal",
  8889. height: math.unit(5 + 2 / 12, "feet")
  8890. },
  8891. {
  8892. name: "Macro",
  8893. height: math.unit(100, "meters")
  8894. },
  8895. {
  8896. name: "Megamacro",
  8897. height: math.unit(80, "miles")
  8898. },
  8899. ]
  8900. ))
  8901. characterMakers.push(() => makeCharacter(
  8902. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8903. {
  8904. front: {
  8905. height: math.unit(7 + 8 / 12, "feet"),
  8906. weight: math.unit(250, "lbs"),
  8907. name: "Front",
  8908. image: {
  8909. source: "./media/characters/yevis/front.svg",
  8910. extra: 1938 / 1755
  8911. }
  8912. }
  8913. },
  8914. [
  8915. {
  8916. name: "Mortal",
  8917. height: math.unit(7 + 8 / 12, "feet")
  8918. },
  8919. {
  8920. name: "Battle",
  8921. height: math.unit(25 + 11 / 12, "feet")
  8922. },
  8923. {
  8924. name: "Wrath",
  8925. height: math.unit(1654 + 11 / 12, "feet")
  8926. },
  8927. {
  8928. name: "Planet Destroyer",
  8929. height: math.unit(12000, "miles")
  8930. },
  8931. {
  8932. name: "Galaxy Conqueror",
  8933. height: math.unit(1.45, "zettameters"),
  8934. default: true
  8935. },
  8936. {
  8937. name: "Universal War",
  8938. height: math.unit(184, "gigaparsecs")
  8939. },
  8940. {
  8941. name: "Eternity War",
  8942. height: math.unit(1.98e55, "yottaparsecs")
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(5 + 8 / 12, "feet"),
  8951. weight: math.unit(63, "kg"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/xavier/front.svg",
  8955. extra: 944 / 883
  8956. }
  8957. },
  8958. frontStretch: {
  8959. height: math.unit(5 + 8 / 12, "feet"),
  8960. weight: math.unit(63, "kg"),
  8961. name: "Stretching",
  8962. image: {
  8963. source: "./media/characters/xavier/front-stretch.svg",
  8964. extra: 962 / 820
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(5 + 8 / 12, "feet")
  8972. },
  8973. {
  8974. name: "Macro",
  8975. height: math.unit(100, "meters"),
  8976. default: true
  8977. },
  8978. {
  8979. name: "McLargeHuge",
  8980. height: math.unit(10, "miles")
  8981. },
  8982. ]
  8983. ))
  8984. characterMakers.push(() => makeCharacter(
  8985. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8986. {
  8987. front: {
  8988. height: math.unit(5 + 5 / 12, "feet"),
  8989. weight: math.unit(150, "lb"),
  8990. name: "Front",
  8991. image: {
  8992. source: "./media/characters/joshii/front.svg",
  8993. extra: 765 / 653,
  8994. bottom: 51 / 816
  8995. }
  8996. },
  8997. foot: {
  8998. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8999. name: "Foot",
  9000. image: {
  9001. source: "./media/characters/joshii/foot.svg"
  9002. }
  9003. },
  9004. },
  9005. [
  9006. {
  9007. name: "Micro",
  9008. height: math.unit(2, "inches"),
  9009. default: true
  9010. },
  9011. {
  9012. name: "Normal",
  9013. height: math.unit(5 + 5 / 12, "feet")
  9014. },
  9015. {
  9016. name: "Macro",
  9017. height: math.unit(785, "feet")
  9018. },
  9019. {
  9020. name: "Megamacro",
  9021. height: math.unit(24.5, "miles")
  9022. },
  9023. ]
  9024. ))
  9025. characterMakers.push(() => makeCharacter(
  9026. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  9027. {
  9028. front: {
  9029. height: math.unit(6, "feet"),
  9030. weight: math.unit(150, "lb"),
  9031. name: "Front",
  9032. image: {
  9033. source: "./media/characters/goddess-elizabeth/front.svg",
  9034. extra: 1800 / 1525,
  9035. bottom: 0.005
  9036. }
  9037. },
  9038. foot: {
  9039. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  9040. name: "Foot",
  9041. image: {
  9042. source: "./media/characters/goddess-elizabeth/foot.svg"
  9043. }
  9044. },
  9045. mouth: {
  9046. height: math.unit(6, "feet"),
  9047. name: "Mouth",
  9048. image: {
  9049. source: "./media/characters/goddess-elizabeth/mouth.svg"
  9050. }
  9051. },
  9052. },
  9053. [
  9054. {
  9055. name: "Micro",
  9056. height: math.unit(12, "feet")
  9057. },
  9058. {
  9059. name: "Normal",
  9060. height: math.unit(80, "miles"),
  9061. default: true
  9062. },
  9063. {
  9064. name: "Macro",
  9065. height: math.unit(15000, "parsecs")
  9066. },
  9067. ]
  9068. ))
  9069. characterMakers.push(() => makeCharacter(
  9070. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  9071. {
  9072. front: {
  9073. height: math.unit(5 + 9 / 12, "feet"),
  9074. weight: math.unit(144, "lb"),
  9075. name: "Front",
  9076. image: {
  9077. source: "./media/characters/kara/front.svg"
  9078. }
  9079. },
  9080. feet: {
  9081. height: math.unit(6 / 6.765, "feet"),
  9082. name: "Kara's Feet",
  9083. rename: true,
  9084. image: {
  9085. source: "./media/characters/kara/feet.svg"
  9086. }
  9087. },
  9088. },
  9089. [
  9090. {
  9091. name: "Normal",
  9092. height: math.unit(5 + 9 / 12, "feet")
  9093. },
  9094. {
  9095. name: "Macro",
  9096. height: math.unit(174, "feet"),
  9097. default: true
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(18, "feet"),
  9106. weight: math.unit(4050, "lb"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/tyrone/front.svg",
  9110. extra: 2405 / 2270,
  9111. bottom: 182 / 2587
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(18, "feet"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(300, "feet")
  9124. },
  9125. {
  9126. name: "Megamacro",
  9127. height: math.unit(15, "km")
  9128. },
  9129. {
  9130. name: "Gigamacro",
  9131. height: math.unit(500, "km")
  9132. },
  9133. {
  9134. name: "Teramacro",
  9135. height: math.unit(0.5, "gigameters")
  9136. },
  9137. {
  9138. name: "Omnimacro",
  9139. height: math.unit(1e252, "yottauniverse")
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(7 + 8 / 12, "feet"),
  9148. weight: math.unit(120, "lb"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/danny/front.svg",
  9152. extra: 1490 / 1350
  9153. }
  9154. },
  9155. back: {
  9156. height: math.unit(7 + 8 / 12, "feet"),
  9157. weight: math.unit(120, "lb"),
  9158. name: "Back",
  9159. image: {
  9160. source: "./media/characters/danny/back.svg",
  9161. extra: 1490 / 1350
  9162. }
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(7 + 8 / 12, "feet"),
  9169. default: true
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  9175. {
  9176. front: {
  9177. height: math.unit(3.5, "inches"),
  9178. weight: math.unit(19, "grams"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/mallow/front.svg",
  9182. extra: 471 / 431
  9183. }
  9184. },
  9185. back: {
  9186. height: math.unit(3.5, "inches"),
  9187. weight: math.unit(19, "grams"),
  9188. name: "Back",
  9189. image: {
  9190. source: "./media/characters/mallow/back.svg",
  9191. extra: 471 / 431
  9192. }
  9193. },
  9194. },
  9195. [
  9196. {
  9197. name: "Normal",
  9198. height: math.unit(3.5, "inches"),
  9199. default: true
  9200. },
  9201. ]
  9202. ))
  9203. characterMakers.push(() => makeCharacter(
  9204. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  9205. {
  9206. front: {
  9207. height: math.unit(9, "feet"),
  9208. weight: math.unit(230, "kg"),
  9209. name: "Front",
  9210. image: {
  9211. source: "./media/characters/starry-aqua/front.svg"
  9212. }
  9213. },
  9214. back: {
  9215. height: math.unit(9, "feet"),
  9216. weight: math.unit(230, "kg"),
  9217. name: "Back",
  9218. image: {
  9219. source: "./media/characters/starry-aqua/back.svg"
  9220. }
  9221. },
  9222. hand: {
  9223. height: math.unit(9 * 0.1168, "feet"),
  9224. name: "Hand",
  9225. image: {
  9226. source: "./media/characters/starry-aqua/hand.svg"
  9227. }
  9228. },
  9229. foot: {
  9230. height: math.unit(9 * 0.18, "feet"),
  9231. name: "Foot",
  9232. image: {
  9233. source: "./media/characters/starry-aqua/foot.svg"
  9234. }
  9235. }
  9236. },
  9237. [
  9238. {
  9239. name: "Micro",
  9240. height: math.unit(3, "inches")
  9241. },
  9242. {
  9243. name: "Normal",
  9244. height: math.unit(9, "feet")
  9245. },
  9246. {
  9247. name: "Macro",
  9248. height: math.unit(300, "feet"),
  9249. default: true
  9250. },
  9251. {
  9252. name: "Megamacro",
  9253. height: math.unit(3200, "feet")
  9254. }
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(15, "feet"),
  9262. weight: math.unit(5026, "lb"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/luka-towers/front.svg",
  9266. extra: 1269/1133,
  9267. bottom: 51/1320
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Normal",
  9274. height: math.unit(15, "feet"),
  9275. default: true
  9276. },
  9277. {
  9278. name: "Minimacro",
  9279. height: math.unit(25, "feet")
  9280. },
  9281. {
  9282. name: "Macro",
  9283. height: math.unit(320, "feet")
  9284. },
  9285. {
  9286. name: "Megamacro",
  9287. height: math.unit(35000, "feet")
  9288. },
  9289. {
  9290. name: "Gigamacro",
  9291. height: math.unit(4000, "miles")
  9292. },
  9293. {
  9294. name: "Teramacro",
  9295. height: math.unit(15000, "miles")
  9296. },
  9297. ]
  9298. ))
  9299. characterMakers.push(() => makeCharacter(
  9300. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  9301. {
  9302. front: {
  9303. height: math.unit(6, "feet"),
  9304. weight: math.unit(150, "lb"),
  9305. name: "Front",
  9306. image: {
  9307. source: "./media/characters/natalie-nightring/front.svg",
  9308. extra: 1,
  9309. bottom: 0.06
  9310. }
  9311. },
  9312. },
  9313. [
  9314. {
  9315. name: "Uh Oh",
  9316. height: math.unit(0.1, "mm")
  9317. },
  9318. {
  9319. name: "Small",
  9320. height: math.unit(3, "inches")
  9321. },
  9322. {
  9323. name: "Human Scale",
  9324. height: math.unit(6, "feet")
  9325. },
  9326. {
  9327. name: "Librarian",
  9328. height: math.unit(50, "feet"),
  9329. default: true
  9330. },
  9331. {
  9332. name: "Immense",
  9333. height: math.unit(200, "miles")
  9334. },
  9335. ]
  9336. ))
  9337. characterMakers.push(() => makeCharacter(
  9338. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  9339. {
  9340. front: {
  9341. height: math.unit(6, "feet"),
  9342. weight: math.unit(180, "lbs"),
  9343. name: "Front",
  9344. image: {
  9345. source: "./media/characters/danni-rosie/front.svg",
  9346. extra: 1260 / 1128,
  9347. bottom: 0.022
  9348. }
  9349. },
  9350. },
  9351. [
  9352. {
  9353. name: "Micro",
  9354. height: math.unit(2, "inches"),
  9355. default: true
  9356. },
  9357. ]
  9358. ))
  9359. characterMakers.push(() => makeCharacter(
  9360. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  9361. {
  9362. front: {
  9363. height: math.unit(5 + 9 / 12, "feet"),
  9364. weight: math.unit(220, "lb"),
  9365. name: "Front",
  9366. image: {
  9367. source: "./media/characters/samantha-kruse/front.svg",
  9368. extra: (985 / 935),
  9369. bottom: 0.03
  9370. }
  9371. },
  9372. frontUndressed: {
  9373. height: math.unit(5 + 9 / 12, "feet"),
  9374. weight: math.unit(220, "lb"),
  9375. name: "Front (Undressed)",
  9376. image: {
  9377. source: "./media/characters/samantha-kruse/front-undressed.svg",
  9378. extra: (973 / 923),
  9379. bottom: 0.025
  9380. }
  9381. },
  9382. fat: {
  9383. height: math.unit(5 + 9 / 12, "feet"),
  9384. weight: math.unit(900, "lb"),
  9385. name: "Front (Fat)",
  9386. image: {
  9387. source: "./media/characters/samantha-kruse/fat.svg",
  9388. extra: 2688 / 2561
  9389. }
  9390. },
  9391. },
  9392. [
  9393. {
  9394. name: "Normal",
  9395. height: math.unit(5 + 9 / 12, "feet"),
  9396. default: true
  9397. }
  9398. ]
  9399. ))
  9400. characterMakers.push(() => makeCharacter(
  9401. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  9402. {
  9403. back: {
  9404. height: math.unit(5 + 4 / 12, "feet"),
  9405. weight: math.unit(4963, "lb"),
  9406. name: "Back",
  9407. image: {
  9408. source: "./media/characters/amelia-rosie/back.svg",
  9409. extra: 1113 / 963,
  9410. bottom: 0.01
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Level 0",
  9417. height: math.unit(5 + 4 / 12, "feet")
  9418. },
  9419. {
  9420. name: "Level 1",
  9421. height: math.unit(164597, "feet"),
  9422. default: true
  9423. },
  9424. {
  9425. name: "Level 2",
  9426. height: math.unit(956243, "miles")
  9427. },
  9428. {
  9429. name: "Level 3",
  9430. height: math.unit(29421709423, "miles")
  9431. },
  9432. {
  9433. name: "Level 4",
  9434. height: math.unit(154, "lightyears")
  9435. },
  9436. {
  9437. name: "Level 5",
  9438. height: math.unit(4738272, "lightyears")
  9439. },
  9440. {
  9441. name: "Level 6",
  9442. height: math.unit(145787152896, "lightyears")
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(5 + 11 / 12, "feet"),
  9451. weight: math.unit(65, "kg"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/rook-kitara/front.svg",
  9455. extra: 1347 / 1274,
  9456. bottom: 0.005
  9457. }
  9458. },
  9459. },
  9460. [
  9461. {
  9462. name: "Totally Unfair",
  9463. height: math.unit(1.8, "mm")
  9464. },
  9465. {
  9466. name: "Lap Rookie",
  9467. height: math.unit(1.4, "feet")
  9468. },
  9469. {
  9470. name: "Normal",
  9471. height: math.unit(5 + 11 / 12, "feet"),
  9472. default: true
  9473. },
  9474. {
  9475. name: "How Did This Happen",
  9476. height: math.unit(80, "miles")
  9477. }
  9478. ]
  9479. ))
  9480. characterMakers.push(() => makeCharacter(
  9481. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  9482. {
  9483. front: {
  9484. height: math.unit(7, "feet"),
  9485. weight: math.unit(300, "lb"),
  9486. name: "Front",
  9487. image: {
  9488. source: "./media/characters/pisces/front.svg",
  9489. extra: 2255 / 2115,
  9490. bottom: 0.03
  9491. }
  9492. },
  9493. back: {
  9494. height: math.unit(7, "feet"),
  9495. weight: math.unit(300, "lb"),
  9496. name: "Back",
  9497. image: {
  9498. source: "./media/characters/pisces/back.svg",
  9499. extra: 2146 / 2055,
  9500. bottom: 0.04
  9501. }
  9502. },
  9503. },
  9504. [
  9505. {
  9506. name: "Normal",
  9507. height: math.unit(7, "feet"),
  9508. default: true
  9509. },
  9510. {
  9511. name: "Swimming Pool",
  9512. height: math.unit(12.2, "meters")
  9513. },
  9514. {
  9515. name: "Olympic Swimming Pool",
  9516. height: math.unit(56.3, "meters")
  9517. },
  9518. {
  9519. name: "Lake Superior",
  9520. height: math.unit(93900, "meters")
  9521. },
  9522. {
  9523. name: "Mediterranean Sea",
  9524. height: math.unit(644457, "meters")
  9525. },
  9526. {
  9527. name: "World's Oceans",
  9528. height: math.unit(4567491, "meters")
  9529. },
  9530. ]
  9531. ))
  9532. characterMakers.push(() => makeCharacter(
  9533. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  9534. {
  9535. front: {
  9536. height: math.unit(2.3, "meters"),
  9537. weight: math.unit(120, "kg"),
  9538. name: "Front",
  9539. image: {
  9540. source: "./media/characters/zelas/front.svg"
  9541. }
  9542. },
  9543. side: {
  9544. height: math.unit(2.3, "meters"),
  9545. weight: math.unit(120, "kg"),
  9546. name: "Side",
  9547. image: {
  9548. source: "./media/characters/zelas/side.svg"
  9549. }
  9550. },
  9551. back: {
  9552. height: math.unit(2.3, "meters"),
  9553. weight: math.unit(120, "kg"),
  9554. name: "Back",
  9555. image: {
  9556. source: "./media/characters/zelas/back.svg"
  9557. }
  9558. },
  9559. foot: {
  9560. height: math.unit(1.116, "feet"),
  9561. name: "Foot",
  9562. image: {
  9563. source: "./media/characters/zelas/foot.svg"
  9564. }
  9565. },
  9566. },
  9567. [
  9568. {
  9569. name: "Normal",
  9570. height: math.unit(2.3, "meters")
  9571. },
  9572. {
  9573. name: "Macro",
  9574. height: math.unit(30, "meters"),
  9575. default: true
  9576. },
  9577. ]
  9578. ))
  9579. characterMakers.push(() => makeCharacter(
  9580. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  9581. {
  9582. front: {
  9583. height: math.unit(1, "inch"),
  9584. weight: math.unit(0.21, "grams"),
  9585. name: "Front",
  9586. image: {
  9587. source: "./media/characters/talbot/front.svg",
  9588. extra: 594 / 544
  9589. }
  9590. },
  9591. },
  9592. [
  9593. {
  9594. name: "Micro",
  9595. height: math.unit(1, "inch"),
  9596. default: true
  9597. },
  9598. ]
  9599. ))
  9600. characterMakers.push(() => makeCharacter(
  9601. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  9602. {
  9603. front: {
  9604. height: math.unit(3 + 3 / 12, "feet"),
  9605. weight: math.unit(51.8, "lb"),
  9606. name: "Front",
  9607. image: {
  9608. source: "./media/characters/fliss/front.svg",
  9609. extra: 840 / 640
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Teeny Tiny",
  9616. height: math.unit(1, "mm")
  9617. },
  9618. {
  9619. name: "Small",
  9620. height: math.unit(1, "inch"),
  9621. default: true
  9622. },
  9623. {
  9624. name: "Standard Sylveon",
  9625. height: math.unit(3 + 3 / 12, "feet")
  9626. },
  9627. {
  9628. name: "Large Nuisance",
  9629. height: math.unit(33, "feet")
  9630. },
  9631. {
  9632. name: "City Filler",
  9633. height: math.unit(3000, "feet")
  9634. },
  9635. {
  9636. name: "New Horizon",
  9637. height: math.unit(6000, "miles")
  9638. },
  9639. ]
  9640. ))
  9641. characterMakers.push(() => makeCharacter(
  9642. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  9643. {
  9644. front: {
  9645. height: math.unit(5, "cm"),
  9646. weight: math.unit(1.94, "g"),
  9647. name: "Front",
  9648. image: {
  9649. source: "./media/characters/fleta/front.svg",
  9650. extra: 835 / 803
  9651. }
  9652. },
  9653. back: {
  9654. height: math.unit(5, "cm"),
  9655. weight: math.unit(1.94, "g"),
  9656. name: "Back",
  9657. image: {
  9658. source: "./media/characters/fleta/back.svg",
  9659. extra: 835 / 803
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Micro",
  9666. height: math.unit(5, "cm"),
  9667. default: true
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(6, "feet"),
  9676. weight: math.unit(225, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/dominic/front.svg",
  9680. extra: 1770 / 1620,
  9681. bottom: 0.025
  9682. }
  9683. },
  9684. back: {
  9685. height: math.unit(6, "feet"),
  9686. weight: math.unit(225, "lb"),
  9687. name: "Back",
  9688. image: {
  9689. source: "./media/characters/dominic/back.svg",
  9690. extra: 1745 / 1620,
  9691. bottom: 0.065
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Nano",
  9698. height: math.unit(0.1, "mm")
  9699. },
  9700. {
  9701. name: "Micro-",
  9702. height: math.unit(1, "mm")
  9703. },
  9704. {
  9705. name: "Micro",
  9706. height: math.unit(4, "inches")
  9707. },
  9708. {
  9709. name: "Normal",
  9710. height: math.unit(6 + 4 / 12, "feet"),
  9711. default: true
  9712. },
  9713. {
  9714. name: "Macro",
  9715. height: math.unit(115, "feet")
  9716. },
  9717. {
  9718. name: "Macro+",
  9719. height: math.unit(955, "feet")
  9720. },
  9721. {
  9722. name: "Megamacro",
  9723. height: math.unit(8990, "feet")
  9724. },
  9725. {
  9726. name: "Gigmacro",
  9727. height: math.unit(9310, "miles")
  9728. },
  9729. {
  9730. name: "Teramacro",
  9731. height: math.unit(1567005010, "miles")
  9732. },
  9733. {
  9734. name: "Examacro",
  9735. height: math.unit(1425, "parsecs")
  9736. },
  9737. ]
  9738. ))
  9739. characterMakers.push(() => makeCharacter(
  9740. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  9741. {
  9742. front: {
  9743. height: math.unit(400, "feet"),
  9744. weight: math.unit(44444444, "lb"),
  9745. name: "Front",
  9746. image: {
  9747. source: "./media/characters/major-colonel/front.svg"
  9748. }
  9749. },
  9750. back: {
  9751. height: math.unit(400, "feet"),
  9752. weight: math.unit(44444444, "lb"),
  9753. name: "Back",
  9754. image: {
  9755. source: "./media/characters/major-colonel/back.svg"
  9756. }
  9757. },
  9758. },
  9759. [
  9760. {
  9761. name: "Macro",
  9762. height: math.unit(400, "feet"),
  9763. default: true
  9764. },
  9765. ]
  9766. ))
  9767. characterMakers.push(() => makeCharacter(
  9768. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9769. {
  9770. catFront: {
  9771. height: math.unit(6, "feet"),
  9772. weight: math.unit(120, "lb"),
  9773. name: "Front (Cat Side)",
  9774. image: {
  9775. source: "./media/characters/axel-lycan/cat-front.svg",
  9776. extra: 430 / 402,
  9777. bottom: 43 / 472.35
  9778. }
  9779. },
  9780. catBack: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(120, "lb"),
  9783. name: "Back (Cat Side)",
  9784. image: {
  9785. source: "./media/characters/axel-lycan/cat-back.svg",
  9786. extra: 447 / 419,
  9787. bottom: 23.3 / 469
  9788. }
  9789. },
  9790. wolfFront: {
  9791. height: math.unit(6, "feet"),
  9792. weight: math.unit(120, "lb"),
  9793. name: "Front (Wolf Side)",
  9794. image: {
  9795. source: "./media/characters/axel-lycan/wolf-front.svg",
  9796. extra: 485 / 456,
  9797. bottom: 19 / 504
  9798. }
  9799. },
  9800. wolfBack: {
  9801. height: math.unit(6, "feet"),
  9802. weight: math.unit(120, "lb"),
  9803. name: "Back (Wolf Side)",
  9804. image: {
  9805. source: "./media/characters/axel-lycan/wolf-back.svg",
  9806. extra: 475 / 438,
  9807. bottom: 39.2 / 514
  9808. }
  9809. },
  9810. },
  9811. [
  9812. {
  9813. name: "Macro",
  9814. height: math.unit(1, "km"),
  9815. default: true
  9816. },
  9817. ]
  9818. ))
  9819. characterMakers.push(() => makeCharacter(
  9820. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9821. {
  9822. front: {
  9823. height: math.unit(5 + 9 / 12, "feet"),
  9824. weight: math.unit(175, "lb"),
  9825. name: "Front",
  9826. image: {
  9827. source: "./media/characters/vanrel-hyena/front.svg",
  9828. extra: 1086 / 1010,
  9829. bottom: 0.04
  9830. }
  9831. },
  9832. },
  9833. [
  9834. {
  9835. name: "Normal",
  9836. height: math.unit(5 + 9 / 12, "feet"),
  9837. default: true
  9838. },
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9843. {
  9844. front: {
  9845. height: math.unit(6, "feet"),
  9846. weight: math.unit(103, "lb"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/abbott-absol/front.svg",
  9850. extra: 2010 / 1842
  9851. }
  9852. },
  9853. },
  9854. [
  9855. {
  9856. name: "Megamicro",
  9857. height: math.unit(0.1, "mm")
  9858. },
  9859. {
  9860. name: "Micro",
  9861. height: math.unit(1, "inch")
  9862. },
  9863. {
  9864. name: "Normal",
  9865. height: math.unit(6, "feet"),
  9866. default: true
  9867. },
  9868. ]
  9869. ))
  9870. characterMakers.push(() => makeCharacter(
  9871. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9872. {
  9873. front: {
  9874. height: math.unit(6, "feet"),
  9875. weight: math.unit(264, "lb"),
  9876. name: "Front",
  9877. image: {
  9878. source: "./media/characters/hector/front.svg",
  9879. extra: 2280 / 2130,
  9880. bottom: 0.07
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(12.25, "foot"),
  9888. default: true
  9889. },
  9890. {
  9891. name: "Macro",
  9892. height: math.unit(160, "feet")
  9893. },
  9894. ]
  9895. ))
  9896. characterMakers.push(() => makeCharacter(
  9897. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9898. {
  9899. front: {
  9900. height: math.unit(6, "feet"),
  9901. weight: math.unit(150, "lb"),
  9902. name: "Front",
  9903. image: {
  9904. source: "./media/characters/sal/front.svg",
  9905. extra: 1846 / 1699,
  9906. bottom: 0.04
  9907. }
  9908. },
  9909. },
  9910. [
  9911. {
  9912. name: "Megamacro",
  9913. height: math.unit(10, "miles"),
  9914. default: true
  9915. },
  9916. ]
  9917. ))
  9918. characterMakers.push(() => makeCharacter(
  9919. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9920. {
  9921. front: {
  9922. height: math.unit(3, "meters"),
  9923. weight: math.unit(450, "kg"),
  9924. name: "front",
  9925. image: {
  9926. source: "./media/characters/ranger/front.svg",
  9927. extra: 2401 / 2243,
  9928. bottom: 0.05
  9929. }
  9930. },
  9931. },
  9932. [
  9933. {
  9934. name: "Normal",
  9935. height: math.unit(3, "meters"),
  9936. default: true
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9942. {
  9943. front: {
  9944. height: math.unit(14, "feet"),
  9945. weight: math.unit(800, "kg"),
  9946. name: "Front",
  9947. image: {
  9948. source: "./media/characters/theresa/front.svg",
  9949. extra: 3575 / 3346,
  9950. bottom: 0.03
  9951. }
  9952. },
  9953. },
  9954. [
  9955. {
  9956. name: "Normal",
  9957. height: math.unit(14, "feet"),
  9958. default: true
  9959. },
  9960. ]
  9961. ))
  9962. characterMakers.push(() => makeCharacter(
  9963. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9964. {
  9965. front: {
  9966. height: math.unit(6, "feet"),
  9967. weight: math.unit(3, "kg"),
  9968. name: "Front",
  9969. image: {
  9970. source: "./media/characters/ine/front.svg",
  9971. extra: 678 / 539,
  9972. bottom: 0.023
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(2.265, "feet"),
  9980. default: true
  9981. },
  9982. ]
  9983. ))
  9984. characterMakers.push(() => makeCharacter(
  9985. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9986. {
  9987. front: {
  9988. height: math.unit(5, "feet"),
  9989. weight: math.unit(30, "kg"),
  9990. name: "Front",
  9991. image: {
  9992. source: "./media/characters/vial/front.svg",
  9993. extra: 1365 / 1277,
  9994. bottom: 0.04
  9995. }
  9996. },
  9997. },
  9998. [
  9999. {
  10000. name: "Normal",
  10001. height: math.unit(5, "feet"),
  10002. default: true
  10003. },
  10004. ]
  10005. ))
  10006. characterMakers.push(() => makeCharacter(
  10007. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  10008. {
  10009. side: {
  10010. height: math.unit(3.4, "meters"),
  10011. weight: math.unit(1000, "lb"),
  10012. name: "Side",
  10013. image: {
  10014. source: "./media/characters/rovoska/side.svg",
  10015. extra: 4403 / 1515
  10016. }
  10017. },
  10018. },
  10019. [
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(3.4, "meters"),
  10023. default: true
  10024. },
  10025. ]
  10026. ))
  10027. characterMakers.push(() => makeCharacter(
  10028. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  10029. {
  10030. front: {
  10031. height: math.unit(8, "feet"),
  10032. weight: math.unit(315, "lb"),
  10033. name: "Front",
  10034. image: {
  10035. source: "./media/characters/gunner-rotthbauer/front.svg"
  10036. }
  10037. },
  10038. back: {
  10039. height: math.unit(8, "feet"),
  10040. weight: math.unit(315, "lb"),
  10041. name: "Back",
  10042. image: {
  10043. source: "./media/characters/gunner-rotthbauer/back.svg"
  10044. }
  10045. },
  10046. },
  10047. [
  10048. {
  10049. name: "Micro",
  10050. height: math.unit(3.5, "inches")
  10051. },
  10052. {
  10053. name: "Normal",
  10054. height: math.unit(8, "feet"),
  10055. default: true
  10056. },
  10057. {
  10058. name: "Macro",
  10059. height: math.unit(250, "feet")
  10060. },
  10061. {
  10062. name: "Megamacro",
  10063. height: math.unit(1, "AU")
  10064. },
  10065. ]
  10066. ))
  10067. characterMakers.push(() => makeCharacter(
  10068. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  10069. {
  10070. front: {
  10071. height: math.unit(5 + 5 / 12, "feet"),
  10072. weight: math.unit(140, "lb"),
  10073. name: "Front",
  10074. image: {
  10075. source: "./media/characters/allatia/front.svg",
  10076. extra: 1227 / 1180,
  10077. bottom: 0.027
  10078. }
  10079. },
  10080. },
  10081. [
  10082. {
  10083. name: "Normal",
  10084. height: math.unit(5 + 5 / 12, "feet")
  10085. },
  10086. {
  10087. name: "Macro",
  10088. height: math.unit(250, "feet"),
  10089. default: true
  10090. },
  10091. {
  10092. name: "Megamacro",
  10093. height: math.unit(8, "miles")
  10094. }
  10095. ]
  10096. ))
  10097. characterMakers.push(() => makeCharacter(
  10098. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  10099. {
  10100. front: {
  10101. height: math.unit(6, "feet"),
  10102. weight: math.unit(120, "lb"),
  10103. name: "Front",
  10104. image: {
  10105. source: "./media/characters/tene/front.svg",
  10106. extra: 814/750,
  10107. bottom: 36/850
  10108. }
  10109. },
  10110. stomping: {
  10111. height: math.unit(2.025, "meters"),
  10112. weight: math.unit(120, "lb"),
  10113. name: "Stomping",
  10114. image: {
  10115. source: "./media/characters/tene/stomping.svg",
  10116. extra: 885/821,
  10117. bottom: 15/900
  10118. }
  10119. },
  10120. sitting: {
  10121. height: math.unit(1, "meter"),
  10122. weight: math.unit(120, "lb"),
  10123. name: "Sitting",
  10124. image: {
  10125. source: "./media/characters/tene/sitting.svg",
  10126. extra: 396/366,
  10127. bottom: 79/475
  10128. }
  10129. },
  10130. smiling: {
  10131. height: math.unit(1.2, "feet"),
  10132. name: "Smiling",
  10133. image: {
  10134. source: "./media/characters/tene/smiling.svg",
  10135. extra: 1364/1071,
  10136. bottom: 0/1364
  10137. }
  10138. },
  10139. smug: {
  10140. height: math.unit(1.3, "feet"),
  10141. name: "Smug",
  10142. image: {
  10143. source: "./media/characters/tene/smug.svg",
  10144. extra: 1323/1082,
  10145. bottom: 0/1323
  10146. }
  10147. },
  10148. feral: {
  10149. height: math.unit(3.9, "feet"),
  10150. weight: math.unit(250, "lb"),
  10151. name: "Feral",
  10152. image: {
  10153. source: "./media/characters/tene/feral.svg",
  10154. extra: 717 / 458,
  10155. bottom: 0.179
  10156. }
  10157. },
  10158. },
  10159. [
  10160. {
  10161. name: "Normal",
  10162. height: math.unit(6, "feet")
  10163. },
  10164. {
  10165. name: "Macro",
  10166. height: math.unit(300, "feet"),
  10167. default: true
  10168. },
  10169. {
  10170. name: "Megamacro",
  10171. height: math.unit(5, "miles")
  10172. },
  10173. ]
  10174. ))
  10175. characterMakers.push(() => makeCharacter(
  10176. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  10177. {
  10178. side: {
  10179. height: math.unit(6, "feet"),
  10180. name: "Side",
  10181. image: {
  10182. source: "./media/characters/evander/side.svg",
  10183. extra: 877 / 477
  10184. }
  10185. },
  10186. },
  10187. [
  10188. {
  10189. name: "Normal",
  10190. height: math.unit(0.83, "meters"),
  10191. default: true
  10192. },
  10193. ]
  10194. ))
  10195. characterMakers.push(() => makeCharacter(
  10196. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  10197. {
  10198. front: {
  10199. height: math.unit(12, "feet"),
  10200. weight: math.unit(1000, "lb"),
  10201. name: "Front",
  10202. image: {
  10203. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  10204. extra: 1762 / 1611
  10205. }
  10206. },
  10207. back: {
  10208. height: math.unit(12, "feet"),
  10209. weight: math.unit(1000, "lb"),
  10210. name: "Back",
  10211. image: {
  10212. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  10213. extra: 1762 / 1611
  10214. }
  10215. },
  10216. },
  10217. [
  10218. {
  10219. name: "Normal",
  10220. height: math.unit(12, "feet"),
  10221. default: true
  10222. },
  10223. {
  10224. name: "Kaiju",
  10225. height: math.unit(150, "feet")
  10226. },
  10227. ]
  10228. ))
  10229. characterMakers.push(() => makeCharacter(
  10230. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  10231. {
  10232. front: {
  10233. height: math.unit(6, "feet"),
  10234. weight: math.unit(150, "lb"),
  10235. name: "Front",
  10236. image: {
  10237. source: "./media/characters/zero-alurus/front.svg"
  10238. }
  10239. },
  10240. back: {
  10241. height: math.unit(6, "feet"),
  10242. weight: math.unit(150, "lb"),
  10243. name: "Back",
  10244. image: {
  10245. source: "./media/characters/zero-alurus/back.svg"
  10246. }
  10247. },
  10248. },
  10249. [
  10250. {
  10251. name: "Normal",
  10252. height: math.unit(5 + 10 / 12, "feet")
  10253. },
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(60, "feet"),
  10257. default: true
  10258. },
  10259. {
  10260. name: "Macro+",
  10261. height: math.unit(450, "feet")
  10262. },
  10263. ]
  10264. ))
  10265. characterMakers.push(() => makeCharacter(
  10266. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  10267. {
  10268. front: {
  10269. height: math.unit(6, "feet"),
  10270. weight: math.unit(200, "lb"),
  10271. name: "Front",
  10272. image: {
  10273. source: "./media/characters/mega-shi/front.svg",
  10274. extra: 1279 / 1250,
  10275. bottom: 0.02
  10276. }
  10277. },
  10278. back: {
  10279. height: math.unit(6, "feet"),
  10280. weight: math.unit(200, "lb"),
  10281. name: "Back",
  10282. image: {
  10283. source: "./media/characters/mega-shi/back.svg",
  10284. extra: 1279 / 1250,
  10285. bottom: 0.02
  10286. }
  10287. },
  10288. },
  10289. [
  10290. {
  10291. name: "Micro",
  10292. height: math.unit(16 + 6 / 12, "feet")
  10293. },
  10294. {
  10295. name: "Third Dimension",
  10296. height: math.unit(40, "meters")
  10297. },
  10298. {
  10299. name: "Normal",
  10300. height: math.unit(660, "feet"),
  10301. default: true
  10302. },
  10303. {
  10304. name: "Megamacro",
  10305. height: math.unit(10, "miles")
  10306. },
  10307. {
  10308. name: "Planetary Launch",
  10309. height: math.unit(500, "miles")
  10310. },
  10311. {
  10312. name: "Interstellar",
  10313. height: math.unit(1e9, "miles")
  10314. },
  10315. {
  10316. name: "Leaving the Universe",
  10317. height: math.unit(1, "gigaparsec")
  10318. },
  10319. {
  10320. name: "Travelling Universes",
  10321. height: math.unit(30e15, "parsecs")
  10322. },
  10323. ]
  10324. ))
  10325. characterMakers.push(() => makeCharacter(
  10326. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  10327. {
  10328. front: {
  10329. height: math.unit(5 + 4/12, "feet"),
  10330. weight: math.unit(120, "lb"),
  10331. name: "Front",
  10332. image: {
  10333. source: "./media/characters/odyssey/front.svg",
  10334. extra: 1747/1571,
  10335. bottom: 47/1794
  10336. }
  10337. },
  10338. side: {
  10339. height: math.unit(5.1, "feet"),
  10340. weight: math.unit(120, "lb"),
  10341. name: "Side",
  10342. image: {
  10343. source: "./media/characters/odyssey/side.svg",
  10344. extra: 1847/1619,
  10345. bottom: 47/1894
  10346. }
  10347. },
  10348. lounging: {
  10349. height: math.unit(1.464, "feet"),
  10350. weight: math.unit(120, "lb"),
  10351. name: "Lounging",
  10352. image: {
  10353. source: "./media/characters/odyssey/lounging.svg",
  10354. extra: 1235/837,
  10355. bottom: 551/1786
  10356. }
  10357. },
  10358. },
  10359. [
  10360. {
  10361. name: "Normal",
  10362. height: math.unit(5 + 4 / 12, "feet")
  10363. },
  10364. {
  10365. name: "Macro",
  10366. height: math.unit(1, "km")
  10367. },
  10368. {
  10369. name: "Megamacro",
  10370. height: math.unit(3000, "km")
  10371. },
  10372. {
  10373. name: "Gigamacro",
  10374. height: math.unit(1, "AU"),
  10375. default: true
  10376. },
  10377. {
  10378. name: "Omniversal",
  10379. height: math.unit(100e14, "lightyears")
  10380. },
  10381. ]
  10382. ))
  10383. characterMakers.push(() => makeCharacter(
  10384. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  10385. {
  10386. front: {
  10387. height: math.unit(6, "feet"),
  10388. weight: math.unit(300, "lb"),
  10389. name: "Front",
  10390. image: {
  10391. source: "./media/characters/mekuto/front.svg",
  10392. extra: 921 / 832,
  10393. bottom: 0.03
  10394. }
  10395. },
  10396. hand: {
  10397. height: math.unit(6 / 10.24, "feet"),
  10398. name: "Hand",
  10399. image: {
  10400. source: "./media/characters/mekuto/hand.svg"
  10401. }
  10402. },
  10403. foot: {
  10404. height: math.unit(6 / 5.05, "feet"),
  10405. name: "Foot",
  10406. image: {
  10407. source: "./media/characters/mekuto/foot.svg"
  10408. }
  10409. },
  10410. },
  10411. [
  10412. {
  10413. name: "Minimicro",
  10414. height: math.unit(0.2, "inches")
  10415. },
  10416. {
  10417. name: "Micro",
  10418. height: math.unit(1.5, "inches")
  10419. },
  10420. {
  10421. name: "Normal",
  10422. height: math.unit(5 + 11 / 12, "feet"),
  10423. default: true
  10424. },
  10425. {
  10426. name: "Minimacro",
  10427. height: math.unit(17 + 9 / 12, "feet")
  10428. },
  10429. {
  10430. name: "Macro",
  10431. height: math.unit(177.5, "feet")
  10432. },
  10433. {
  10434. name: "Megamacro",
  10435. height: math.unit(152, "miles")
  10436. },
  10437. ]
  10438. ))
  10439. characterMakers.push(() => makeCharacter(
  10440. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  10441. {
  10442. front: {
  10443. height: math.unit(6.5, "inches"),
  10444. weight: math.unit(13, "oz"),
  10445. name: "Front",
  10446. image: {
  10447. source: "./media/characters/dafydd-tomos/front.svg",
  10448. extra: 2990 / 2603,
  10449. bottom: 0.03
  10450. }
  10451. },
  10452. },
  10453. [
  10454. {
  10455. name: "Micro",
  10456. height: math.unit(6.5, "inches"),
  10457. default: true
  10458. },
  10459. ]
  10460. ))
  10461. characterMakers.push(() => makeCharacter(
  10462. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  10463. {
  10464. front: {
  10465. height: math.unit(6, "feet"),
  10466. weight: math.unit(150, "lb"),
  10467. name: "Front",
  10468. image: {
  10469. source: "./media/characters/splinter/front.svg",
  10470. extra: 2990 / 2882,
  10471. bottom: 0.04
  10472. }
  10473. },
  10474. back: {
  10475. height: math.unit(6, "feet"),
  10476. weight: math.unit(150, "lb"),
  10477. name: "Back",
  10478. image: {
  10479. source: "./media/characters/splinter/back.svg",
  10480. extra: 2990 / 2882,
  10481. bottom: 0.04
  10482. }
  10483. },
  10484. },
  10485. [
  10486. {
  10487. name: "Normal",
  10488. height: math.unit(6, "feet")
  10489. },
  10490. {
  10491. name: "Macro",
  10492. height: math.unit(230, "meters"),
  10493. default: true
  10494. },
  10495. ]
  10496. ))
  10497. characterMakers.push(() => makeCharacter(
  10498. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  10499. {
  10500. front: {
  10501. height: math.unit(4 + 10 / 12, "feet"),
  10502. weight: math.unit(480, "lb"),
  10503. name: "Front",
  10504. image: {
  10505. source: "./media/characters/snow-gabumon/front.svg",
  10506. extra: 1140 / 963,
  10507. bottom: 0.058
  10508. }
  10509. },
  10510. back: {
  10511. height: math.unit(4 + 10 / 12, "feet"),
  10512. weight: math.unit(480, "lb"),
  10513. name: "Back",
  10514. image: {
  10515. source: "./media/characters/snow-gabumon/back.svg",
  10516. extra: 1115 / 962,
  10517. bottom: 0.041
  10518. }
  10519. },
  10520. frontUndresed: {
  10521. height: math.unit(4 + 10 / 12, "feet"),
  10522. weight: math.unit(480, "lb"),
  10523. name: "Front (Undressed)",
  10524. image: {
  10525. source: "./media/characters/snow-gabumon/front-undressed.svg",
  10526. extra: 1061 / 960,
  10527. bottom: 0.045
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Micro",
  10534. height: math.unit(1, "inch")
  10535. },
  10536. {
  10537. name: "Normal",
  10538. height: math.unit(4 + 10 / 12, "feet"),
  10539. default: true
  10540. },
  10541. {
  10542. name: "Macro",
  10543. height: math.unit(200, "feet")
  10544. },
  10545. {
  10546. name: "Megamacro",
  10547. height: math.unit(120, "miles")
  10548. },
  10549. {
  10550. name: "Gigamacro",
  10551. height: math.unit(9800, "miles")
  10552. },
  10553. ]
  10554. ))
  10555. characterMakers.push(() => makeCharacter(
  10556. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  10557. {
  10558. front: {
  10559. height: math.unit(1.7, "meters"),
  10560. weight: math.unit(140, "lb"),
  10561. name: "Front",
  10562. image: {
  10563. source: "./media/characters/moody/front.svg",
  10564. extra: 3226 / 3007,
  10565. bottom: 0.087
  10566. }
  10567. },
  10568. },
  10569. [
  10570. {
  10571. name: "Micro",
  10572. height: math.unit(1, "mm")
  10573. },
  10574. {
  10575. name: "Normal",
  10576. height: math.unit(1.7, "meters"),
  10577. default: true
  10578. },
  10579. {
  10580. name: "Macro",
  10581. height: math.unit(80, "meters")
  10582. },
  10583. {
  10584. name: "Macro+",
  10585. height: math.unit(500, "meters")
  10586. },
  10587. ]
  10588. ))
  10589. characterMakers.push(() => makeCharacter(
  10590. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  10591. {
  10592. front: {
  10593. height: math.unit(6, "feet"),
  10594. weight: math.unit(150, "lb"),
  10595. name: "Front",
  10596. image: {
  10597. source: "./media/characters/zyas/front.svg",
  10598. extra: 1180 / 1120,
  10599. bottom: 0.045
  10600. }
  10601. },
  10602. },
  10603. [
  10604. {
  10605. name: "Normal",
  10606. height: math.unit(10, "feet"),
  10607. default: true
  10608. },
  10609. {
  10610. name: "Macro",
  10611. height: math.unit(500, "feet")
  10612. },
  10613. {
  10614. name: "Megamacro",
  10615. height: math.unit(5, "miles")
  10616. },
  10617. {
  10618. name: "Teramacro",
  10619. height: math.unit(150000, "miles")
  10620. },
  10621. ]
  10622. ))
  10623. characterMakers.push(() => makeCharacter(
  10624. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  10625. {
  10626. front: {
  10627. height: math.unit(6, "feet"),
  10628. weight: math.unit(150, "lb"),
  10629. name: "Front",
  10630. image: {
  10631. source: "./media/characters/cuon/front.svg",
  10632. extra: 1390 / 1320,
  10633. bottom: 0.008
  10634. }
  10635. },
  10636. },
  10637. [
  10638. {
  10639. name: "Micro",
  10640. height: math.unit(3, "inches")
  10641. },
  10642. {
  10643. name: "Normal",
  10644. height: math.unit(18 + 9 / 12, "feet"),
  10645. default: true
  10646. },
  10647. {
  10648. name: "Macro",
  10649. height: math.unit(360, "feet")
  10650. },
  10651. {
  10652. name: "Megamacro",
  10653. height: math.unit(360, "miles")
  10654. },
  10655. ]
  10656. ))
  10657. characterMakers.push(() => makeCharacter(
  10658. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  10659. {
  10660. front: {
  10661. height: math.unit(2.4, "meters"),
  10662. weight: math.unit(70, "kg"),
  10663. name: "Front",
  10664. image: {
  10665. source: "./media/characters/nyanuxk/front.svg",
  10666. extra: 1172 / 1084,
  10667. bottom: 0.065
  10668. }
  10669. },
  10670. side: {
  10671. height: math.unit(2.4, "meters"),
  10672. weight: math.unit(70, "kg"),
  10673. name: "Side",
  10674. image: {
  10675. source: "./media/characters/nyanuxk/side.svg",
  10676. extra: 1190 / 1132,
  10677. bottom: 0.007
  10678. }
  10679. },
  10680. back: {
  10681. height: math.unit(2.4, "meters"),
  10682. weight: math.unit(70, "kg"),
  10683. name: "Back",
  10684. image: {
  10685. source: "./media/characters/nyanuxk/back.svg",
  10686. extra: 1200 / 1141,
  10687. bottom: 0.015
  10688. }
  10689. },
  10690. foot: {
  10691. height: math.unit(0.52, "meters"),
  10692. name: "Foot",
  10693. image: {
  10694. source: "./media/characters/nyanuxk/foot.svg"
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Micro",
  10701. height: math.unit(2, "cm")
  10702. },
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(2.4, "meters"),
  10706. default: true
  10707. },
  10708. {
  10709. name: "Smaller Macro",
  10710. height: math.unit(120, "meters")
  10711. },
  10712. {
  10713. name: "Bigger Macro",
  10714. height: math.unit(1.2, "km")
  10715. },
  10716. {
  10717. name: "Megamacro",
  10718. height: math.unit(15, "kilometers")
  10719. },
  10720. {
  10721. name: "Gigamacro",
  10722. height: math.unit(2000, "km")
  10723. },
  10724. {
  10725. name: "Teramacro",
  10726. height: math.unit(500000, "km")
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  10732. {
  10733. side: {
  10734. height: math.unit(6, "feet"),
  10735. name: "Side",
  10736. image: {
  10737. source: "./media/characters/ailbhe/side.svg",
  10738. extra: 757 / 464,
  10739. bottom: 0.041
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Normal",
  10746. height: math.unit(1.07, "meters"),
  10747. default: true
  10748. },
  10749. ]
  10750. ))
  10751. characterMakers.push(() => makeCharacter(
  10752. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  10753. {
  10754. front: {
  10755. height: math.unit(6, "feet"),
  10756. weight: math.unit(120, "kg"),
  10757. name: "Front",
  10758. image: {
  10759. source: "./media/characters/zevulfius/front.svg",
  10760. extra: 965 / 903
  10761. }
  10762. },
  10763. side: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(120, "kg"),
  10766. name: "Side",
  10767. image: {
  10768. source: "./media/characters/zevulfius/side.svg",
  10769. extra: 939 / 900
  10770. }
  10771. },
  10772. back: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(120, "kg"),
  10775. name: "Back",
  10776. image: {
  10777. source: "./media/characters/zevulfius/back.svg",
  10778. extra: 918 / 854,
  10779. bottom: 0.005
  10780. }
  10781. },
  10782. foot: {
  10783. height: math.unit(6 / 3.72, "feet"),
  10784. name: "Foot",
  10785. image: {
  10786. source: "./media/characters/zevulfius/foot.svg"
  10787. }
  10788. },
  10789. },
  10790. [
  10791. {
  10792. name: "Macro",
  10793. height: math.unit(750, "meters")
  10794. },
  10795. {
  10796. name: "Megamacro",
  10797. height: math.unit(20, "km"),
  10798. default: true
  10799. },
  10800. {
  10801. name: "Gigamacro",
  10802. height: math.unit(2000, "km")
  10803. },
  10804. {
  10805. name: "Teramacro",
  10806. height: math.unit(250000, "km")
  10807. },
  10808. ]
  10809. ))
  10810. characterMakers.push(() => makeCharacter(
  10811. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10812. {
  10813. front: {
  10814. height: math.unit(100, "feet"),
  10815. weight: math.unit(350, "kg"),
  10816. name: "Front",
  10817. image: {
  10818. source: "./media/characters/rikes/front.svg",
  10819. extra: 1565 / 1483,
  10820. bottom: 0.017
  10821. }
  10822. },
  10823. },
  10824. [
  10825. {
  10826. name: "Macro",
  10827. height: math.unit(100, "feet"),
  10828. default: true
  10829. },
  10830. ]
  10831. ))
  10832. characterMakers.push(() => makeCharacter(
  10833. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10834. {
  10835. front: {
  10836. height: math.unit(8, "feet"),
  10837. weight: math.unit(356, "lb"),
  10838. name: "Front",
  10839. image: {
  10840. source: "./media/characters/adam-silver-mane/front.svg",
  10841. extra: 1036/937,
  10842. bottom: 63/1099
  10843. }
  10844. },
  10845. side: {
  10846. height: math.unit(8, "feet"),
  10847. weight: math.unit(356, "lb"),
  10848. name: "Side",
  10849. image: {
  10850. source: "./media/characters/adam-silver-mane/side.svg",
  10851. extra: 997/901,
  10852. bottom: 59/1056
  10853. }
  10854. },
  10855. frontNsfw: {
  10856. height: math.unit(8, "feet"),
  10857. weight: math.unit(356, "lb"),
  10858. name: "Front (NSFW)",
  10859. image: {
  10860. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  10861. extra: 1036/937,
  10862. bottom: 63/1099
  10863. }
  10864. },
  10865. sideNsfw: {
  10866. height: math.unit(8, "feet"),
  10867. weight: math.unit(356, "lb"),
  10868. name: "Side (NSFW)",
  10869. image: {
  10870. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  10871. extra: 997/901,
  10872. bottom: 59/1056
  10873. }
  10874. },
  10875. dick: {
  10876. height: math.unit(2.1, "feet"),
  10877. name: "Dick",
  10878. image: {
  10879. source: "./media/characters/adam-silver-mane/dick.svg"
  10880. }
  10881. },
  10882. taur: {
  10883. height: math.unit(16, "feet"),
  10884. weight: math.unit(1500, "kg"),
  10885. name: "Taur",
  10886. image: {
  10887. source: "./media/characters/adam-silver-mane/taur.svg",
  10888. extra: 1713 / 1571,
  10889. bottom: 0.01
  10890. }
  10891. },
  10892. },
  10893. [
  10894. {
  10895. name: "Normal",
  10896. height: math.unit(8, "feet")
  10897. },
  10898. {
  10899. name: "Minimacro",
  10900. height: math.unit(80, "feet")
  10901. },
  10902. {
  10903. name: "MDA",
  10904. height: math.unit(80, "meters")
  10905. },
  10906. {
  10907. name: "Macro",
  10908. height: math.unit(800, "feet"),
  10909. default: true
  10910. },
  10911. {
  10912. name: "Megamacro",
  10913. height: math.unit(8000, "feet")
  10914. },
  10915. {
  10916. name: "Gigamacro",
  10917. height: math.unit(800, "miles")
  10918. },
  10919. {
  10920. name: "Teramacro",
  10921. height: math.unit(80000, "miles")
  10922. },
  10923. {
  10924. name: "Celestial",
  10925. height: math.unit(8e6, "miles")
  10926. },
  10927. {
  10928. name: "Star Dragon",
  10929. height: math.unit(800000, "parsecs")
  10930. },
  10931. {
  10932. name: "Godly",
  10933. height: math.unit(800, "teraparsecs")
  10934. },
  10935. ]
  10936. ))
  10937. characterMakers.push(() => makeCharacter(
  10938. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10939. {
  10940. front: {
  10941. height: math.unit(6, "feet"),
  10942. weight: math.unit(150, "lb"),
  10943. name: "Front",
  10944. image: {
  10945. source: "./media/characters/ky'owin/front.svg",
  10946. extra: 3888 / 3068,
  10947. bottom: 0.015
  10948. }
  10949. },
  10950. },
  10951. [
  10952. {
  10953. name: "Normal",
  10954. height: math.unit(6 + 8 / 12, "feet")
  10955. },
  10956. {
  10957. name: "Large",
  10958. height: math.unit(68, "feet")
  10959. },
  10960. {
  10961. name: "Macro",
  10962. height: math.unit(132, "feet")
  10963. },
  10964. {
  10965. name: "Macro+",
  10966. height: math.unit(340, "feet")
  10967. },
  10968. {
  10969. name: "Macro++",
  10970. height: math.unit(680, "feet"),
  10971. default: true
  10972. },
  10973. {
  10974. name: "Megamacro",
  10975. height: math.unit(1, "mile")
  10976. },
  10977. {
  10978. name: "Megamacro+",
  10979. height: math.unit(10, "miles")
  10980. },
  10981. ]
  10982. ))
  10983. characterMakers.push(() => makeCharacter(
  10984. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10985. {
  10986. front: {
  10987. height: math.unit(4, "feet"),
  10988. weight: math.unit(50, "lb"),
  10989. name: "Front",
  10990. image: {
  10991. source: "./media/characters/mal/front.svg",
  10992. extra: 785 / 724,
  10993. bottom: 0.07
  10994. }
  10995. },
  10996. },
  10997. [
  10998. {
  10999. name: "Micro",
  11000. height: math.unit(4, "inches")
  11001. },
  11002. {
  11003. name: "Normal",
  11004. height: math.unit(4, "feet"),
  11005. default: true
  11006. },
  11007. {
  11008. name: "Macro",
  11009. height: math.unit(200, "feet")
  11010. },
  11011. ]
  11012. ))
  11013. characterMakers.push(() => makeCharacter(
  11014. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  11015. {
  11016. front: {
  11017. height: math.unit(6, "feet"),
  11018. weight: math.unit(150, "lb"),
  11019. name: "Front",
  11020. image: {
  11021. source: "./media/characters/jordan-deware/front.svg",
  11022. extra: 1191 / 1012
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Nano",
  11029. height: math.unit(0.01, "mm")
  11030. },
  11031. {
  11032. name: "Minimicro",
  11033. height: math.unit(1, "mm")
  11034. },
  11035. {
  11036. name: "Micro",
  11037. height: math.unit(0.5, "inches")
  11038. },
  11039. {
  11040. name: "Normal",
  11041. height: math.unit(4, "feet"),
  11042. default: true
  11043. },
  11044. {
  11045. name: "Minimacro",
  11046. height: math.unit(40, "meters")
  11047. },
  11048. {
  11049. name: "Small Macro",
  11050. height: math.unit(400, "meters")
  11051. },
  11052. {
  11053. name: "Macro",
  11054. height: math.unit(4, "miles")
  11055. },
  11056. {
  11057. name: "Megamacro",
  11058. height: math.unit(40, "miles")
  11059. },
  11060. {
  11061. name: "Megamacro+",
  11062. height: math.unit(400, "miles")
  11063. },
  11064. {
  11065. name: "Gigamacro",
  11066. height: math.unit(400000, "miles")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  11072. {
  11073. side: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(150, "lb"),
  11076. name: "Side",
  11077. image: {
  11078. source: "./media/characters/kimiko/side.svg",
  11079. extra: 600 / 358
  11080. }
  11081. },
  11082. },
  11083. [
  11084. {
  11085. name: "Normal",
  11086. height: math.unit(15, "feet"),
  11087. default: true
  11088. },
  11089. {
  11090. name: "Macro",
  11091. height: math.unit(220, "feet")
  11092. },
  11093. {
  11094. name: "Macro+",
  11095. height: math.unit(1450, "feet")
  11096. },
  11097. {
  11098. name: "Megamacro",
  11099. height: math.unit(11500, "feet")
  11100. },
  11101. {
  11102. name: "Gigamacro",
  11103. height: math.unit(9500, "miles")
  11104. },
  11105. {
  11106. name: "Teramacro",
  11107. height: math.unit(2208005005, "miles")
  11108. },
  11109. {
  11110. name: "Examacro",
  11111. height: math.unit(2750, "parsecs")
  11112. },
  11113. {
  11114. name: "Zettamacro",
  11115. height: math.unit(101500, "parsecs")
  11116. },
  11117. ]
  11118. ))
  11119. characterMakers.push(() => makeCharacter(
  11120. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  11121. {
  11122. front: {
  11123. height: math.unit(6, "feet"),
  11124. weight: math.unit(70, "kg"),
  11125. name: "Front",
  11126. image: {
  11127. source: "./media/characters/andrew-sleepy/front.svg"
  11128. }
  11129. },
  11130. side: {
  11131. height: math.unit(6, "feet"),
  11132. weight: math.unit(70, "kg"),
  11133. name: "Side",
  11134. image: {
  11135. source: "./media/characters/andrew-sleepy/side.svg"
  11136. }
  11137. },
  11138. },
  11139. [
  11140. {
  11141. name: "Micro",
  11142. height: math.unit(1, "mm"),
  11143. default: true
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  11149. {
  11150. front: {
  11151. height: math.unit(6, "feet"),
  11152. weight: math.unit(150, "lb"),
  11153. name: "Front",
  11154. image: {
  11155. source: "./media/characters/judio/front.svg",
  11156. extra: 1258 / 1110
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Normal",
  11163. height: math.unit(5 + 6 / 12, "feet")
  11164. },
  11165. {
  11166. name: "Macro",
  11167. height: math.unit(1000, "feet"),
  11168. default: true
  11169. },
  11170. {
  11171. name: "Megamacro",
  11172. height: math.unit(10, "miles")
  11173. },
  11174. ]
  11175. ))
  11176. characterMakers.push(() => makeCharacter(
  11177. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  11178. {
  11179. frontDressed: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(68, "kg"),
  11182. name: "Front (Dressed)",
  11183. image: {
  11184. source: "./media/characters/nomaxice/front-dressed.svg",
  11185. extra: 1137/824,
  11186. bottom: 74/1211
  11187. }
  11188. },
  11189. frontShorts: {
  11190. height: math.unit(6, "feet"),
  11191. weight: math.unit(68, "kg"),
  11192. name: "Front (Shorts)",
  11193. image: {
  11194. source: "./media/characters/nomaxice/front-shorts.svg",
  11195. extra: 1137/824,
  11196. bottom: 74/1211
  11197. }
  11198. },
  11199. back: {
  11200. height: math.unit(6, "feet"),
  11201. weight: math.unit(68, "kg"),
  11202. name: "Back",
  11203. image: {
  11204. source: "./media/characters/nomaxice/back.svg",
  11205. extra: 822/786,
  11206. bottom: 39/861
  11207. }
  11208. },
  11209. hand: {
  11210. height: math.unit(0.565, "feet"),
  11211. name: "Hand",
  11212. image: {
  11213. source: "./media/characters/nomaxice/hand.svg"
  11214. }
  11215. },
  11216. foot: {
  11217. height: math.unit(1, "feet"),
  11218. name: "Foot",
  11219. image: {
  11220. source: "./media/characters/nomaxice/foot.svg"
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Micro",
  11227. height: math.unit(8, "cm")
  11228. },
  11229. {
  11230. name: "Norm",
  11231. height: math.unit(1.82, "m")
  11232. },
  11233. {
  11234. name: "Norm+",
  11235. height: math.unit(8.8, "feet"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Big",
  11240. height: math.unit(8, "meters")
  11241. },
  11242. {
  11243. name: "Macro",
  11244. height: math.unit(18, "meters")
  11245. },
  11246. {
  11247. name: "Macro+",
  11248. height: math.unit(88, "meters")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(12, "feet"),
  11257. weight: math.unit(1.5, "tons"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/dydros/front.svg",
  11261. extra: 863 / 800,
  11262. bottom: 0.015
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(12, "feet"),
  11267. weight: math.unit(1.5, "tons"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/dydros/back.svg",
  11271. extra: 900 / 843,
  11272. bottom: 0.005
  11273. }
  11274. },
  11275. },
  11276. [
  11277. {
  11278. name: "Normal",
  11279. height: math.unit(12, "feet"),
  11280. default: true
  11281. },
  11282. ]
  11283. ))
  11284. characterMakers.push(() => makeCharacter(
  11285. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  11286. {
  11287. front: {
  11288. height: math.unit(6, "feet"),
  11289. weight: math.unit(100, "kg"),
  11290. name: "Front",
  11291. image: {
  11292. source: "./media/characters/riggi/front.svg",
  11293. extra: 5787 / 5303
  11294. }
  11295. },
  11296. hyper: {
  11297. height: math.unit(6 * 5 / 3, "feet"),
  11298. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  11299. name: "Hyper",
  11300. image: {
  11301. source: "./media/characters/riggi/hyper.svg",
  11302. extra: 3595 / 3485
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Small Macro",
  11309. height: math.unit(50, "feet")
  11310. },
  11311. {
  11312. name: "Default",
  11313. height: math.unit(200, "feet"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Loom",
  11318. height: math.unit(10000, "feet")
  11319. },
  11320. {
  11321. name: "Cruising Altitude",
  11322. height: math.unit(30000, "feet")
  11323. },
  11324. {
  11325. name: "Megamacro",
  11326. height: math.unit(100, "miles")
  11327. },
  11328. {
  11329. name: "Continent Sized",
  11330. height: math.unit(2800, "miles")
  11331. },
  11332. {
  11333. name: "Earth Sized",
  11334. height: math.unit(8000, "miles")
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  11340. {
  11341. front: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(250, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/alexi/front.svg",
  11347. extra: 3483 / 3291,
  11348. bottom: 0.04
  11349. }
  11350. },
  11351. back: {
  11352. height: math.unit(6, "feet"),
  11353. weight: math.unit(250, "lb"),
  11354. name: "Back",
  11355. image: {
  11356. source: "./media/characters/alexi/back.svg",
  11357. extra: 3533 / 3356,
  11358. bottom: 0.021
  11359. }
  11360. },
  11361. frontTransforming: {
  11362. height: math.unit(8.58, "feet"),
  11363. weight: math.unit(1300, "lb"),
  11364. name: "Transforming",
  11365. image: {
  11366. source: "./media/characters/alexi/front-transforming.svg",
  11367. extra: 437 / 409,
  11368. bottom: 19 / 458.66
  11369. }
  11370. },
  11371. frontTransformed: {
  11372. height: math.unit(12.5, "feet"),
  11373. weight: math.unit(4000, "lb"),
  11374. name: "Transformed",
  11375. image: {
  11376. source: "./media/characters/alexi/front-transformed.svg",
  11377. extra: 639 / 614,
  11378. bottom: 30.55 / 671
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Normal",
  11385. height: math.unit(14, "feet"),
  11386. default: true
  11387. },
  11388. {
  11389. name: "Minimacro",
  11390. height: math.unit(30, "meters")
  11391. },
  11392. {
  11393. name: "Macro",
  11394. height: math.unit(500, "meters")
  11395. },
  11396. {
  11397. name: "Megamacro",
  11398. height: math.unit(9000, "km")
  11399. },
  11400. {
  11401. name: "Teramacro",
  11402. height: math.unit(384000, "km")
  11403. },
  11404. ]
  11405. ))
  11406. characterMakers.push(() => makeCharacter(
  11407. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  11408. {
  11409. front: {
  11410. height: math.unit(6, "feet"),
  11411. weight: math.unit(150, "lb"),
  11412. name: "Front",
  11413. image: {
  11414. source: "./media/characters/kayroo/front.svg",
  11415. extra: 1153 / 1038,
  11416. bottom: 0.06
  11417. }
  11418. },
  11419. foot: {
  11420. height: math.unit(6, "feet"),
  11421. weight: math.unit(150, "lb"),
  11422. name: "Foot",
  11423. image: {
  11424. source: "./media/characters/kayroo/foot.svg"
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Normal",
  11431. height: math.unit(8, "feet"),
  11432. default: true
  11433. },
  11434. {
  11435. name: "Minimacro",
  11436. height: math.unit(250, "feet")
  11437. },
  11438. {
  11439. name: "Macro",
  11440. height: math.unit(2800, "feet")
  11441. },
  11442. {
  11443. name: "Megamacro",
  11444. height: math.unit(5200, "feet")
  11445. },
  11446. {
  11447. name: "Gigamacro",
  11448. height: math.unit(27000, "feet")
  11449. },
  11450. {
  11451. name: "Omega",
  11452. height: math.unit(45000, "feet")
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  11458. {
  11459. front: {
  11460. height: math.unit(18, "feet"),
  11461. weight: math.unit(5800, "lb"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/rhys/front.svg",
  11465. extra: 3386 / 3090,
  11466. bottom: 0.07
  11467. }
  11468. },
  11469. },
  11470. [
  11471. {
  11472. name: "Normal",
  11473. height: math.unit(18, "feet"),
  11474. default: true
  11475. },
  11476. {
  11477. name: "Working Size",
  11478. height: math.unit(200, "feet")
  11479. },
  11480. {
  11481. name: "Demolition Size",
  11482. height: math.unit(2000, "feet")
  11483. },
  11484. {
  11485. name: "Maximum Licensed Size",
  11486. height: math.unit(5, "miles")
  11487. },
  11488. {
  11489. name: "Maximum Observed Size",
  11490. height: math.unit(10, "yottameters")
  11491. },
  11492. ]
  11493. ))
  11494. characterMakers.push(() => makeCharacter(
  11495. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  11496. {
  11497. front: {
  11498. height: math.unit(6, "feet"),
  11499. weight: math.unit(250, "lb"),
  11500. name: "Front",
  11501. image: {
  11502. source: "./media/characters/toto/front.svg",
  11503. extra: 527 / 479,
  11504. bottom: 0.05
  11505. }
  11506. },
  11507. },
  11508. [
  11509. {
  11510. name: "Micro",
  11511. height: math.unit(3, "feet")
  11512. },
  11513. {
  11514. name: "Normal",
  11515. height: math.unit(10, "feet")
  11516. },
  11517. {
  11518. name: "Macro",
  11519. height: math.unit(150, "feet"),
  11520. default: true
  11521. },
  11522. {
  11523. name: "Megamacro",
  11524. height: math.unit(1200, "feet")
  11525. },
  11526. ]
  11527. ))
  11528. characterMakers.push(() => makeCharacter(
  11529. { name: "King", species: ["lion"], tags: ["anthro"] },
  11530. {
  11531. back: {
  11532. height: math.unit(6, "feet"),
  11533. weight: math.unit(150, "lb"),
  11534. name: "Back",
  11535. image: {
  11536. source: "./media/characters/king/back.svg"
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Micro",
  11543. height: math.unit(2, "inches")
  11544. },
  11545. {
  11546. name: "Normal",
  11547. height: math.unit(8, "feet")
  11548. },
  11549. {
  11550. name: "Macro",
  11551. height: math.unit(200, "feet"),
  11552. default: true
  11553. },
  11554. {
  11555. name: "Megamacro",
  11556. height: math.unit(50, "miles")
  11557. },
  11558. ]
  11559. ))
  11560. characterMakers.push(() => makeCharacter(
  11561. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  11562. {
  11563. front: {
  11564. height: math.unit(11, "feet"),
  11565. weight: math.unit(1400, "lb"),
  11566. name: "Front",
  11567. image: {
  11568. source: "./media/characters/cordite/front.svg",
  11569. extra: 1919/1827,
  11570. bottom: 40/1959
  11571. }
  11572. },
  11573. side: {
  11574. height: math.unit(11, "feet"),
  11575. weight: math.unit(1400, "lb"),
  11576. name: "Side",
  11577. image: {
  11578. source: "./media/characters/cordite/side.svg",
  11579. extra: 1908/1793,
  11580. bottom: 38/1946
  11581. }
  11582. },
  11583. back: {
  11584. height: math.unit(11, "feet"),
  11585. weight: math.unit(1400, "lb"),
  11586. name: "Back",
  11587. image: {
  11588. source: "./media/characters/cordite/back.svg",
  11589. extra: 1938/1837,
  11590. bottom: 10/1948
  11591. }
  11592. },
  11593. feral: {
  11594. height: math.unit(2, "feet"),
  11595. weight: math.unit(90, "lb"),
  11596. name: "Feral",
  11597. image: {
  11598. source: "./media/characters/cordite/feral.svg",
  11599. extra: 1260 / 755,
  11600. bottom: 0.05
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Normal",
  11607. height: math.unit(11, "feet"),
  11608. default: true
  11609. },
  11610. ]
  11611. ))
  11612. characterMakers.push(() => makeCharacter(
  11613. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  11614. {
  11615. front: {
  11616. height: math.unit(6, "feet"),
  11617. weight: math.unit(150, "lb"),
  11618. name: "Front",
  11619. image: {
  11620. source: "./media/characters/pianostrong/front.svg",
  11621. extra: 6577 / 6254,
  11622. bottom: 0.02
  11623. }
  11624. },
  11625. side: {
  11626. height: math.unit(6, "feet"),
  11627. weight: math.unit(150, "lb"),
  11628. name: "Side",
  11629. image: {
  11630. source: "./media/characters/pianostrong/side.svg",
  11631. extra: 6106 / 5730
  11632. }
  11633. },
  11634. back: {
  11635. height: math.unit(6, "feet"),
  11636. weight: math.unit(150, "lb"),
  11637. name: "Back",
  11638. image: {
  11639. source: "./media/characters/pianostrong/back.svg",
  11640. extra: 6085 / 5733,
  11641. bottom: 0.01
  11642. }
  11643. },
  11644. },
  11645. [
  11646. {
  11647. name: "Macro",
  11648. height: math.unit(100, "feet")
  11649. },
  11650. {
  11651. name: "Macro+",
  11652. height: math.unit(300, "feet"),
  11653. default: true
  11654. },
  11655. {
  11656. name: "Macro++",
  11657. height: math.unit(1000, "feet")
  11658. },
  11659. ]
  11660. ))
  11661. characterMakers.push(() => makeCharacter(
  11662. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  11663. {
  11664. front: {
  11665. height: math.unit(6, "feet"),
  11666. weight: math.unit(150, "lb"),
  11667. name: "Front",
  11668. image: {
  11669. source: "./media/characters/kona/front.svg",
  11670. extra: 2960 / 2629,
  11671. bottom: 0.005
  11672. }
  11673. },
  11674. },
  11675. [
  11676. {
  11677. name: "Normal",
  11678. height: math.unit(11 + 8 / 12, "feet")
  11679. },
  11680. {
  11681. name: "Macro",
  11682. height: math.unit(850, "feet"),
  11683. default: true
  11684. },
  11685. {
  11686. name: "Macro+",
  11687. height: math.unit(1.5, "km"),
  11688. default: true
  11689. },
  11690. {
  11691. name: "Megamacro",
  11692. height: math.unit(80, "miles")
  11693. },
  11694. {
  11695. name: "Gigamacro",
  11696. height: math.unit(3500, "miles")
  11697. },
  11698. ]
  11699. ))
  11700. characterMakers.push(() => makeCharacter(
  11701. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  11702. {
  11703. side: {
  11704. height: math.unit(1.9, "meters"),
  11705. weight: math.unit(326, "kg"),
  11706. name: "Side",
  11707. image: {
  11708. source: "./media/characters/levi/side.svg",
  11709. extra: 1704 / 1334,
  11710. bottom: 0.02
  11711. }
  11712. },
  11713. },
  11714. [
  11715. {
  11716. name: "Normal",
  11717. height: math.unit(1.9, "meters"),
  11718. default: true
  11719. },
  11720. {
  11721. name: "Macro",
  11722. height: math.unit(20, "meters")
  11723. },
  11724. {
  11725. name: "Macro+",
  11726. height: math.unit(200, "meters")
  11727. },
  11728. {
  11729. name: "Megamacro",
  11730. height: math.unit(2, "km")
  11731. },
  11732. {
  11733. name: "Megamacro+",
  11734. height: math.unit(20, "km")
  11735. },
  11736. {
  11737. name: "Gigamacro",
  11738. height: math.unit(2500, "km")
  11739. },
  11740. {
  11741. name: "Gigamacro+",
  11742. height: math.unit(120000, "km")
  11743. },
  11744. {
  11745. name: "Teramacro",
  11746. height: math.unit(7.77e6, "km")
  11747. },
  11748. ]
  11749. ))
  11750. characterMakers.push(() => makeCharacter(
  11751. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  11752. {
  11753. front: {
  11754. height: math.unit(6 + 4/12, "feet"),
  11755. weight: math.unit(190, "lb"),
  11756. name: "Front",
  11757. image: {
  11758. source: "./media/characters/bmc/front.svg",
  11759. extra: 1626/1472,
  11760. bottom: 79/1705
  11761. }
  11762. },
  11763. back: {
  11764. height: math.unit(6 + 4/12, "feet"),
  11765. weight: math.unit(190, "lb"),
  11766. name: "Back",
  11767. image: {
  11768. source: "./media/characters/bmc/back.svg",
  11769. extra: 1640/1479,
  11770. bottom: 45/1685
  11771. }
  11772. },
  11773. frontArmor: {
  11774. height: math.unit(6 + 4/12, "feet"),
  11775. weight: math.unit(190, "lb"),
  11776. name: "Front-armor",
  11777. image: {
  11778. source: "./media/characters/bmc/front-armor.svg",
  11779. extra: 1538/1468,
  11780. bottom: 79/1617
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Human-sized",
  11787. height: math.unit(6 + 4 / 12, "feet")
  11788. },
  11789. {
  11790. name: "Interactive Size",
  11791. height: math.unit(25, "feet")
  11792. },
  11793. {
  11794. name: "Small",
  11795. height: math.unit(250, "feet")
  11796. },
  11797. {
  11798. name: "Normal",
  11799. height: math.unit(1250, "feet"),
  11800. default: true
  11801. },
  11802. {
  11803. name: "Good Day",
  11804. height: math.unit(88, "miles")
  11805. },
  11806. {
  11807. name: "Largest Measured Size",
  11808. height: math.unit(105.960, "galaxies")
  11809. },
  11810. ]
  11811. ))
  11812. characterMakers.push(() => makeCharacter(
  11813. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  11814. {
  11815. front: {
  11816. height: math.unit(20, "feet"),
  11817. weight: math.unit(2016, "kg"),
  11818. name: "Front",
  11819. image: {
  11820. source: "./media/characters/sven-the-kaiju/front.svg",
  11821. extra: 1277/1250,
  11822. bottom: 35/1312
  11823. }
  11824. },
  11825. mouth: {
  11826. height: math.unit(1.85, "feet"),
  11827. name: "Mouth",
  11828. image: {
  11829. source: "./media/characters/sven-the-kaiju/mouth.svg"
  11830. }
  11831. },
  11832. },
  11833. [
  11834. {
  11835. name: "Fairy",
  11836. height: math.unit(6, "inches")
  11837. },
  11838. {
  11839. name: "Normal",
  11840. height: math.unit(20, "feet"),
  11841. default: true
  11842. },
  11843. {
  11844. name: "Rampage",
  11845. height: math.unit(200, "feet")
  11846. },
  11847. {
  11848. name: "Archfey Forest Guardian",
  11849. height: math.unit(1, "mile")
  11850. },
  11851. ]
  11852. ))
  11853. characterMakers.push(() => makeCharacter(
  11854. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  11855. {
  11856. front: {
  11857. height: math.unit(4, "meters"),
  11858. weight: math.unit(2, "tons"),
  11859. name: "Front",
  11860. image: {
  11861. source: "./media/characters/marik/front.svg",
  11862. extra: 1057 / 1003,
  11863. bottom: 0.08
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Normal",
  11870. height: math.unit(4, "meters"),
  11871. default: true
  11872. },
  11873. {
  11874. name: "Macro",
  11875. height: math.unit(20, "meters")
  11876. },
  11877. {
  11878. name: "Megamacro",
  11879. height: math.unit(50, "km")
  11880. },
  11881. {
  11882. name: "Gigamacro",
  11883. height: math.unit(100, "km")
  11884. },
  11885. {
  11886. name: "Alpha Macro",
  11887. height: math.unit(7.88e7, "yottameters")
  11888. },
  11889. ]
  11890. ))
  11891. characterMakers.push(() => makeCharacter(
  11892. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11893. {
  11894. front: {
  11895. height: math.unit(6, "feet"),
  11896. weight: math.unit(110, "lb"),
  11897. name: "Front",
  11898. image: {
  11899. source: "./media/characters/mel/front.svg",
  11900. extra: 736 / 617,
  11901. bottom: 0.017
  11902. }
  11903. },
  11904. },
  11905. [
  11906. {
  11907. name: "Pico",
  11908. height: math.unit(3, "pm")
  11909. },
  11910. {
  11911. name: "Nano",
  11912. height: math.unit(3, "nm")
  11913. },
  11914. {
  11915. name: "Micro",
  11916. height: math.unit(0.3, "mm"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Micro+",
  11921. height: math.unit(3, "mm")
  11922. },
  11923. {
  11924. name: "Normal",
  11925. height: math.unit(5 + 10.5 / 12, "feet")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11931. {
  11932. kaiju: {
  11933. height: math.unit(1.75, "meters"),
  11934. weight: math.unit(55, "kg"),
  11935. name: "Kaiju",
  11936. image: {
  11937. source: "./media/characters/lykonous/kaiju.svg",
  11938. extra: 1055 / 946,
  11939. bottom: 0.135
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Normal",
  11946. height: math.unit(2.5, "meters"),
  11947. default: true
  11948. },
  11949. {
  11950. name: "Kaiju Dragon",
  11951. height: math.unit(60, "meters")
  11952. },
  11953. {
  11954. name: "Mega Kaiju",
  11955. height: math.unit(120, "km")
  11956. },
  11957. {
  11958. name: "Giga Kaiju",
  11959. height: math.unit(200, "megameters")
  11960. },
  11961. {
  11962. name: "Terra Kaiju",
  11963. height: math.unit(400, "gigameters")
  11964. },
  11965. {
  11966. name: "Kaiju Dragon God",
  11967. height: math.unit(13000, "exaparsecs")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11973. {
  11974. front: {
  11975. height: math.unit(6, "feet"),
  11976. weight: math.unit(150, "lb"),
  11977. name: "Front",
  11978. image: {
  11979. source: "./media/characters/blü/front.svg",
  11980. extra: 1883 / 1564,
  11981. bottom: 0.031
  11982. }
  11983. },
  11984. },
  11985. [
  11986. {
  11987. name: "Normal",
  11988. height: math.unit(13, "feet"),
  11989. default: true
  11990. },
  11991. {
  11992. name: "Big Boi",
  11993. height: math.unit(150, "meters")
  11994. },
  11995. {
  11996. name: "Mini Stomper",
  11997. height: math.unit(300, "meters")
  11998. },
  11999. {
  12000. name: "Macro",
  12001. height: math.unit(1000, "meters")
  12002. },
  12003. {
  12004. name: "Megamacro",
  12005. height: math.unit(11000, "meters")
  12006. },
  12007. {
  12008. name: "Gigamacro",
  12009. height: math.unit(11000, "km")
  12010. },
  12011. {
  12012. name: "Teramacro",
  12013. height: math.unit(420000, "km")
  12014. },
  12015. {
  12016. name: "Examacro",
  12017. height: math.unit(120, "parsecs")
  12018. },
  12019. {
  12020. name: "God Tho",
  12021. height: math.unit(98000000000, "parsecs")
  12022. },
  12023. ]
  12024. ))
  12025. characterMakers.push(() => makeCharacter(
  12026. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  12027. {
  12028. taurFront: {
  12029. height: math.unit(6, "feet"),
  12030. weight: math.unit(200, "lb"),
  12031. name: "Taur (Front)",
  12032. image: {
  12033. source: "./media/characters/scales/taur-front.svg",
  12034. extra: 1,
  12035. bottom: 0.05
  12036. }
  12037. },
  12038. taurBack: {
  12039. height: math.unit(6, "feet"),
  12040. weight: math.unit(200, "lb"),
  12041. name: "Taur (Back)",
  12042. image: {
  12043. source: "./media/characters/scales/taur-back.svg",
  12044. extra: 1,
  12045. bottom: 0.08
  12046. }
  12047. },
  12048. anthro: {
  12049. height: math.unit(6 * 7 / 12, "feet"),
  12050. weight: math.unit(100, "lb"),
  12051. name: "Anthro",
  12052. image: {
  12053. source: "./media/characters/scales/anthro.svg",
  12054. extra: 1,
  12055. bottom: 0.06
  12056. }
  12057. },
  12058. },
  12059. [
  12060. {
  12061. name: "Normal",
  12062. height: math.unit(12, "feet"),
  12063. default: true
  12064. },
  12065. ]
  12066. ))
  12067. characterMakers.push(() => makeCharacter(
  12068. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  12069. {
  12070. front: {
  12071. height: math.unit(6, "feet"),
  12072. weight: math.unit(150, "lb"),
  12073. name: "Front",
  12074. image: {
  12075. source: "./media/characters/koragos/front.svg",
  12076. extra: 841 / 794,
  12077. bottom: 0.035
  12078. }
  12079. },
  12080. back: {
  12081. height: math.unit(6, "feet"),
  12082. weight: math.unit(150, "lb"),
  12083. name: "Back",
  12084. image: {
  12085. source: "./media/characters/koragos/back.svg",
  12086. extra: 841 / 810,
  12087. bottom: 0.022
  12088. }
  12089. },
  12090. },
  12091. [
  12092. {
  12093. name: "Normal",
  12094. height: math.unit(6 + 11 / 12, "feet"),
  12095. default: true
  12096. },
  12097. {
  12098. name: "Macro",
  12099. height: math.unit(490, "feet")
  12100. },
  12101. {
  12102. name: "Megamacro",
  12103. height: math.unit(10, "miles")
  12104. },
  12105. {
  12106. name: "Gigamacro",
  12107. height: math.unit(50, "miles")
  12108. },
  12109. ]
  12110. ))
  12111. characterMakers.push(() => makeCharacter(
  12112. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  12113. {
  12114. front: {
  12115. height: math.unit(6, "feet"),
  12116. weight: math.unit(250, "lb"),
  12117. name: "Front",
  12118. image: {
  12119. source: "./media/characters/xylrem/front.svg",
  12120. extra: 3323 / 3050,
  12121. bottom: 0.065
  12122. }
  12123. },
  12124. },
  12125. [
  12126. {
  12127. name: "Micro",
  12128. height: math.unit(4, "feet")
  12129. },
  12130. {
  12131. name: "Normal",
  12132. height: math.unit(16, "feet"),
  12133. default: true
  12134. },
  12135. {
  12136. name: "Macro",
  12137. height: math.unit(2720, "feet")
  12138. },
  12139. {
  12140. name: "Megamacro",
  12141. height: math.unit(25000, "miles")
  12142. },
  12143. ]
  12144. ))
  12145. characterMakers.push(() => makeCharacter(
  12146. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  12147. {
  12148. front: {
  12149. height: math.unit(8, "feet"),
  12150. weight: math.unit(250, "kg"),
  12151. name: "Front",
  12152. image: {
  12153. source: "./media/characters/ikideru/front.svg",
  12154. extra: 930 / 870,
  12155. bottom: 0.087
  12156. }
  12157. },
  12158. back: {
  12159. height: math.unit(8, "feet"),
  12160. weight: math.unit(250, "kg"),
  12161. name: "Back",
  12162. image: {
  12163. source: "./media/characters/ikideru/back.svg",
  12164. extra: 919 / 852,
  12165. bottom: 0.055
  12166. }
  12167. },
  12168. },
  12169. [
  12170. {
  12171. name: "Rare",
  12172. height: math.unit(8, "feet"),
  12173. default: true
  12174. },
  12175. {
  12176. name: "Playful Loom",
  12177. height: math.unit(80, "feet")
  12178. },
  12179. {
  12180. name: "City Leaner",
  12181. height: math.unit(230, "feet")
  12182. },
  12183. {
  12184. name: "Megamacro",
  12185. height: math.unit(2500, "feet")
  12186. },
  12187. {
  12188. name: "Gigamacro",
  12189. height: math.unit(26400, "feet")
  12190. },
  12191. {
  12192. name: "Tectonic Shifter",
  12193. height: math.unit(1.7, "megameters")
  12194. },
  12195. {
  12196. name: "Planet Carer",
  12197. height: math.unit(21, "megameters")
  12198. },
  12199. {
  12200. name: "God",
  12201. height: math.unit(11157.22, "parsecs")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  12207. {
  12208. front: {
  12209. height: math.unit(6, "feet"),
  12210. weight: math.unit(120, "lb"),
  12211. name: "Front",
  12212. image: {
  12213. source: "./media/characters/neo/front.svg"
  12214. }
  12215. },
  12216. },
  12217. [
  12218. {
  12219. name: "Micro",
  12220. height: math.unit(2, "inches"),
  12221. default: true
  12222. },
  12223. {
  12224. name: "Human Size",
  12225. height: math.unit(5 + 8 / 12, "feet")
  12226. },
  12227. ]
  12228. ))
  12229. characterMakers.push(() => makeCharacter(
  12230. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  12231. {
  12232. front: {
  12233. height: math.unit(13 + 10 / 12, "feet"),
  12234. weight: math.unit(5320, "lb"),
  12235. name: "Front",
  12236. image: {
  12237. source: "./media/characters/chauncey-chantz/front.svg",
  12238. extra: 1587 / 1435,
  12239. bottom: 0.02
  12240. }
  12241. },
  12242. },
  12243. [
  12244. {
  12245. name: "Normal",
  12246. height: math.unit(13 + 10 / 12, "feet"),
  12247. default: true
  12248. },
  12249. {
  12250. name: "Macro",
  12251. height: math.unit(45, "feet")
  12252. },
  12253. {
  12254. name: "Megamacro",
  12255. height: math.unit(250, "miles")
  12256. },
  12257. {
  12258. name: "Planetary",
  12259. height: math.unit(10000, "miles")
  12260. },
  12261. {
  12262. name: "Galactic",
  12263. height: math.unit(40000, "parsecs")
  12264. },
  12265. {
  12266. name: "Universal",
  12267. height: math.unit(1, "yottameter")
  12268. },
  12269. ]
  12270. ))
  12271. characterMakers.push(() => makeCharacter(
  12272. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  12273. {
  12274. front: {
  12275. height: math.unit(6, "feet"),
  12276. weight: math.unit(150, "lb"),
  12277. name: "Front",
  12278. image: {
  12279. source: "./media/characters/epifox/front.svg",
  12280. extra: 1,
  12281. bottom: 0.075
  12282. }
  12283. },
  12284. },
  12285. [
  12286. {
  12287. name: "Micro",
  12288. height: math.unit(6, "inches")
  12289. },
  12290. {
  12291. name: "Normal",
  12292. height: math.unit(12, "feet"),
  12293. default: true
  12294. },
  12295. {
  12296. name: "Macro",
  12297. height: math.unit(3810, "feet")
  12298. },
  12299. {
  12300. name: "Megamacro",
  12301. height: math.unit(500, "miles")
  12302. },
  12303. ]
  12304. ))
  12305. characterMakers.push(() => makeCharacter(
  12306. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  12307. {
  12308. front: {
  12309. height: math.unit(1.8796, "m"),
  12310. weight: math.unit(230, "lb"),
  12311. name: "Front",
  12312. image: {
  12313. source: "./media/characters/colin-t/front.svg",
  12314. extra: 1272 / 1193,
  12315. bottom: 0.07
  12316. }
  12317. },
  12318. },
  12319. [
  12320. {
  12321. name: "Micro",
  12322. height: math.unit(0.571, "meters")
  12323. },
  12324. {
  12325. name: "Normal",
  12326. height: math.unit(1.8796, "meters"),
  12327. default: true
  12328. },
  12329. {
  12330. name: "Tall",
  12331. height: math.unit(4, "meters")
  12332. },
  12333. {
  12334. name: "Macro",
  12335. height: math.unit(67.241, "meters")
  12336. },
  12337. {
  12338. name: "Megamacro",
  12339. height: math.unit(371.856, "meters")
  12340. },
  12341. {
  12342. name: "Planetary",
  12343. height: math.unit(12631.5689, "km")
  12344. },
  12345. ]
  12346. ))
  12347. characterMakers.push(() => makeCharacter(
  12348. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  12349. {
  12350. front: {
  12351. height: math.unit(1.85, "meters"),
  12352. weight: math.unit(80, "kg"),
  12353. name: "Front",
  12354. image: {
  12355. source: "./media/characters/matvei/front.svg",
  12356. extra: 614 / 594,
  12357. bottom: 0.01
  12358. }
  12359. },
  12360. },
  12361. [
  12362. {
  12363. name: "Normal",
  12364. height: math.unit(1.85, "meters"),
  12365. default: true
  12366. },
  12367. ]
  12368. ))
  12369. characterMakers.push(() => makeCharacter(
  12370. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  12371. {
  12372. front: {
  12373. height: math.unit(5 + 9 / 12, "feet"),
  12374. weight: math.unit(70, "lb"),
  12375. name: "Front",
  12376. image: {
  12377. source: "./media/characters/quincy/front.svg",
  12378. extra: 3041 / 2751
  12379. }
  12380. },
  12381. back: {
  12382. height: math.unit(5 + 9 / 12, "feet"),
  12383. weight: math.unit(70, "lb"),
  12384. name: "Back",
  12385. image: {
  12386. source: "./media/characters/quincy/back.svg",
  12387. extra: 3041 / 2751
  12388. }
  12389. },
  12390. flying: {
  12391. height: math.unit(5 + 4 / 12, "feet"),
  12392. weight: math.unit(70, "lb"),
  12393. name: "Flying",
  12394. image: {
  12395. source: "./media/characters/quincy/flying.svg",
  12396. extra: 1044 / 930
  12397. }
  12398. },
  12399. },
  12400. [
  12401. {
  12402. name: "Micro",
  12403. height: math.unit(3, "cm")
  12404. },
  12405. {
  12406. name: "Normal",
  12407. height: math.unit(5 + 9 / 12, "feet")
  12408. },
  12409. {
  12410. name: "Macro",
  12411. height: math.unit(200, "meters"),
  12412. default: true
  12413. },
  12414. {
  12415. name: "Megamacro",
  12416. height: math.unit(1000, "meters")
  12417. },
  12418. ]
  12419. ))
  12420. characterMakers.push(() => makeCharacter(
  12421. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  12422. {
  12423. front: {
  12424. height: math.unit(3 + 11/12, "feet"),
  12425. weight: math.unit(50, "lb"),
  12426. name: "Front",
  12427. image: {
  12428. source: "./media/characters/vanrel/front.svg",
  12429. extra: 1104/949,
  12430. bottom: 52/1156
  12431. }
  12432. },
  12433. back: {
  12434. height: math.unit(3 + 11/12, "feet"),
  12435. weight: math.unit(50, "lb"),
  12436. name: "Back",
  12437. image: {
  12438. source: "./media/characters/vanrel/back.svg",
  12439. extra: 1119/976,
  12440. bottom: 37/1156
  12441. }
  12442. },
  12443. tome: {
  12444. height: math.unit(1.35, "feet"),
  12445. weight: math.unit(10, "lb"),
  12446. name: "Vanrel's Tome",
  12447. rename: true,
  12448. image: {
  12449. source: "./media/characters/vanrel/tome.svg"
  12450. }
  12451. },
  12452. beans: {
  12453. height: math.unit(0.89, "feet"),
  12454. name: "Beans",
  12455. image: {
  12456. source: "./media/characters/vanrel/beans.svg"
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Normal",
  12463. height: math.unit(3 + 11/12, "feet"),
  12464. default: true
  12465. },
  12466. ]
  12467. ))
  12468. characterMakers.push(() => makeCharacter(
  12469. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  12470. {
  12471. front: {
  12472. height: math.unit(7 + 5 / 12, "feet"),
  12473. name: "Front",
  12474. image: {
  12475. source: "./media/characters/kuiper-vanrel/front.svg",
  12476. extra: 1219/1169,
  12477. bottom: 69/1288
  12478. }
  12479. },
  12480. back: {
  12481. height: math.unit(7 + 5 / 12, "feet"),
  12482. name: "Back",
  12483. image: {
  12484. source: "./media/characters/kuiper-vanrel/back.svg",
  12485. extra: 1236/1193,
  12486. bottom: 27/1263
  12487. }
  12488. },
  12489. foot: {
  12490. height: math.unit(0.55, "meters"),
  12491. name: "Foot",
  12492. image: {
  12493. source: "./media/characters/kuiper-vanrel/foot.svg",
  12494. }
  12495. },
  12496. battle: {
  12497. height: math.unit(6.824, "feet"),
  12498. name: "Battle",
  12499. image: {
  12500. source: "./media/characters/kuiper-vanrel/battle.svg",
  12501. extra: 1466 / 1327,
  12502. bottom: 29 / 1492.5
  12503. }
  12504. },
  12505. meerkui: {
  12506. height: math.unit(18, "inches"),
  12507. name: "Meerkui",
  12508. image: {
  12509. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  12510. extra: 1354/1289,
  12511. bottom: 69/1423
  12512. }
  12513. },
  12514. },
  12515. [
  12516. {
  12517. name: "Normal",
  12518. height: math.unit(7 + 5 / 12, "feet"),
  12519. default: true
  12520. },
  12521. ]
  12522. ))
  12523. characterMakers.push(() => makeCharacter(
  12524. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  12525. {
  12526. front: {
  12527. height: math.unit(8 + 5 / 12, "feet"),
  12528. name: "Front",
  12529. image: {
  12530. source: "./media/characters/keset-vanrel/front.svg",
  12531. extra: 1231/1148,
  12532. bottom: 82/1313
  12533. }
  12534. },
  12535. back: {
  12536. height: math.unit(8 + 5 / 12, "feet"),
  12537. name: "Back",
  12538. image: {
  12539. source: "./media/characters/keset-vanrel/back.svg",
  12540. extra: 1240/1174,
  12541. bottom: 33/1273
  12542. }
  12543. },
  12544. hand: {
  12545. height: math.unit(0.6, "meters"),
  12546. name: "Hand",
  12547. image: {
  12548. source: "./media/characters/keset-vanrel/hand.svg"
  12549. }
  12550. },
  12551. foot: {
  12552. height: math.unit(0.94978, "meters"),
  12553. name: "Foot",
  12554. image: {
  12555. source: "./media/characters/keset-vanrel/foot.svg"
  12556. }
  12557. },
  12558. battle: {
  12559. height: math.unit(7.408, "feet"),
  12560. name: "Battle",
  12561. image: {
  12562. source: "./media/characters/keset-vanrel/battle.svg",
  12563. extra: 1890 / 1386,
  12564. bottom: 73.28 / 1970
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Normal",
  12571. height: math.unit(8 + 5 / 12, "feet"),
  12572. default: true
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  12578. {
  12579. front: {
  12580. height: math.unit(6, "feet"),
  12581. weight: math.unit(150, "lb"),
  12582. name: "Front",
  12583. image: {
  12584. source: "./media/characters/neos/front.svg",
  12585. extra: 1696 / 992,
  12586. bottom: 0.14
  12587. }
  12588. },
  12589. },
  12590. [
  12591. {
  12592. name: "Normal",
  12593. height: math.unit(54, "cm"),
  12594. default: true
  12595. },
  12596. {
  12597. name: "Macro",
  12598. height: math.unit(100, "m")
  12599. },
  12600. {
  12601. name: "Megamacro",
  12602. height: math.unit(10, "km")
  12603. },
  12604. {
  12605. name: "Megamacro+",
  12606. height: math.unit(100, "km")
  12607. },
  12608. {
  12609. name: "Gigamacro",
  12610. height: math.unit(100, "Mm")
  12611. },
  12612. {
  12613. name: "Teramacro",
  12614. height: math.unit(100, "Gm")
  12615. },
  12616. {
  12617. name: "Examacro",
  12618. height: math.unit(100, "Em")
  12619. },
  12620. {
  12621. name: "Godly",
  12622. height: math.unit(10000, "Ym")
  12623. },
  12624. {
  12625. name: "Beyond Godly",
  12626. height: math.unit(25, "multiverses")
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  12632. {
  12633. feminine: {
  12634. height: math.unit(5, "feet"),
  12635. weight: math.unit(100, "lb"),
  12636. name: "Feminine",
  12637. image: {
  12638. source: "./media/characters/sammy-mouse/feminine.svg",
  12639. extra: 2526 / 2425,
  12640. bottom: 0.123
  12641. }
  12642. },
  12643. masculine: {
  12644. height: math.unit(5, "feet"),
  12645. weight: math.unit(100, "lb"),
  12646. name: "Masculine",
  12647. image: {
  12648. source: "./media/characters/sammy-mouse/masculine.svg",
  12649. extra: 2526 / 2425,
  12650. bottom: 0.123
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Micro",
  12657. height: math.unit(5, "inches")
  12658. },
  12659. {
  12660. name: "Normal",
  12661. height: math.unit(5, "feet"),
  12662. default: true
  12663. },
  12664. {
  12665. name: "Macro",
  12666. height: math.unit(60, "feet")
  12667. },
  12668. ]
  12669. ))
  12670. characterMakers.push(() => makeCharacter(
  12671. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  12672. {
  12673. front: {
  12674. height: math.unit(4, "feet"),
  12675. weight: math.unit(50, "lb"),
  12676. name: "Front",
  12677. image: {
  12678. source: "./media/characters/kole/front.svg",
  12679. extra: 1423 / 1303,
  12680. bottom: 0.025
  12681. }
  12682. },
  12683. back: {
  12684. height: math.unit(4, "feet"),
  12685. weight: math.unit(50, "lb"),
  12686. name: "Back",
  12687. image: {
  12688. source: "./media/characters/kole/back.svg",
  12689. extra: 1426 / 1280,
  12690. bottom: 0.02
  12691. }
  12692. },
  12693. },
  12694. [
  12695. {
  12696. name: "Normal",
  12697. height: math.unit(4, "feet"),
  12698. default: true
  12699. },
  12700. ]
  12701. ))
  12702. characterMakers.push(() => makeCharacter(
  12703. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  12704. {
  12705. front: {
  12706. height: math.unit(2.5, "feet"),
  12707. weight: math.unit(32, "lb"),
  12708. name: "Front",
  12709. image: {
  12710. source: "./media/characters/rufran/front.svg",
  12711. extra: 1313/885,
  12712. bottom: 94/1407
  12713. }
  12714. },
  12715. side: {
  12716. height: math.unit(2.5, "feet"),
  12717. weight: math.unit(32, "lb"),
  12718. name: "Side",
  12719. image: {
  12720. source: "./media/characters/rufran/side.svg",
  12721. extra: 1109/852,
  12722. bottom: 118/1227
  12723. }
  12724. },
  12725. back: {
  12726. height: math.unit(2.5, "feet"),
  12727. weight: math.unit(32, "lb"),
  12728. name: "Back",
  12729. image: {
  12730. source: "./media/characters/rufran/back.svg",
  12731. extra: 1280/878,
  12732. bottom: 131/1411
  12733. }
  12734. },
  12735. mouth: {
  12736. height: math.unit(1.13, "feet"),
  12737. name: "Mouth",
  12738. image: {
  12739. source: "./media/characters/rufran/mouth.svg"
  12740. }
  12741. },
  12742. foot: {
  12743. height: math.unit(1.33, "feet"),
  12744. name: "Foot",
  12745. image: {
  12746. source: "./media/characters/rufran/foot.svg"
  12747. }
  12748. },
  12749. koboldFront: {
  12750. height: math.unit(2 + 6 / 12, "feet"),
  12751. weight: math.unit(20, "lb"),
  12752. name: "Front (Kobold)",
  12753. image: {
  12754. source: "./media/characters/rufran/kobold-front.svg",
  12755. extra: 2041 / 1839,
  12756. bottom: 0.055
  12757. }
  12758. },
  12759. koboldBack: {
  12760. height: math.unit(2 + 6 / 12, "feet"),
  12761. weight: math.unit(20, "lb"),
  12762. name: "Back (Kobold)",
  12763. image: {
  12764. source: "./media/characters/rufran/kobold-back.svg",
  12765. extra: 2054 / 1839,
  12766. bottom: 0.01
  12767. }
  12768. },
  12769. koboldHand: {
  12770. height: math.unit(0.2166, "meters"),
  12771. name: "Hand (Kobold)",
  12772. image: {
  12773. source: "./media/characters/rufran/kobold-hand.svg"
  12774. }
  12775. },
  12776. koboldFoot: {
  12777. height: math.unit(0.185, "meters"),
  12778. name: "Foot (Kobold)",
  12779. image: {
  12780. source: "./media/characters/rufran/kobold-foot.svg"
  12781. }
  12782. },
  12783. },
  12784. [
  12785. {
  12786. name: "Micro",
  12787. height: math.unit(1, "inch")
  12788. },
  12789. {
  12790. name: "Normal",
  12791. height: math.unit(2 + 6 / 12, "feet"),
  12792. default: true
  12793. },
  12794. {
  12795. name: "Big",
  12796. height: math.unit(60, "feet")
  12797. },
  12798. {
  12799. name: "Macro",
  12800. height: math.unit(325, "feet")
  12801. },
  12802. ]
  12803. ))
  12804. characterMakers.push(() => makeCharacter(
  12805. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  12806. {
  12807. front: {
  12808. height: math.unit(0.3, "meters"),
  12809. weight: math.unit(3.5, "kg"),
  12810. name: "Front",
  12811. image: {
  12812. source: "./media/characters/chip/front.svg",
  12813. extra: 748 / 674
  12814. }
  12815. },
  12816. },
  12817. [
  12818. {
  12819. name: "Micro",
  12820. height: math.unit(1, "inch"),
  12821. default: true
  12822. },
  12823. ]
  12824. ))
  12825. characterMakers.push(() => makeCharacter(
  12826. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  12827. {
  12828. side: {
  12829. height: math.unit(2.3, "meters"),
  12830. weight: math.unit(3500, "lb"),
  12831. name: "Side",
  12832. image: {
  12833. source: "./media/characters/torvid/side.svg",
  12834. extra: 1972 / 722,
  12835. bottom: 0.035
  12836. }
  12837. },
  12838. },
  12839. [
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(2.3, "meters"),
  12843. default: true
  12844. },
  12845. ]
  12846. ))
  12847. characterMakers.push(() => makeCharacter(
  12848. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  12849. {
  12850. front: {
  12851. height: math.unit(2, "meters"),
  12852. weight: math.unit(150.5, "kg"),
  12853. name: "Front",
  12854. image: {
  12855. source: "./media/characters/susan/front.svg",
  12856. extra: 693 / 635,
  12857. bottom: 0.05
  12858. }
  12859. },
  12860. },
  12861. [
  12862. {
  12863. name: "Megamacro",
  12864. height: math.unit(505, "miles"),
  12865. default: true
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6, "feet"),
  12874. weight: math.unit(150, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/raindrops/front.svg",
  12878. extra: 2655 / 2461,
  12879. bottom: 49 / 2705
  12880. }
  12881. },
  12882. back: {
  12883. height: math.unit(6, "feet"),
  12884. weight: math.unit(150, "lb"),
  12885. name: "Back",
  12886. image: {
  12887. source: "./media/characters/raindrops/back.svg",
  12888. extra: 2574 / 2400,
  12889. bottom: 65 / 2634
  12890. }
  12891. },
  12892. },
  12893. [
  12894. {
  12895. name: "Micro",
  12896. height: math.unit(6, "inches")
  12897. },
  12898. {
  12899. name: "Normal",
  12900. height: math.unit(6 + 2 / 12, "feet")
  12901. },
  12902. {
  12903. name: "Macro",
  12904. height: math.unit(131, "feet"),
  12905. default: true
  12906. },
  12907. {
  12908. name: "Megamacro",
  12909. height: math.unit(15, "miles")
  12910. },
  12911. {
  12912. name: "Gigamacro",
  12913. height: math.unit(4000, "miles")
  12914. },
  12915. {
  12916. name: "Teramacro",
  12917. height: math.unit(315000, "miles")
  12918. },
  12919. ]
  12920. ))
  12921. characterMakers.push(() => makeCharacter(
  12922. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  12923. {
  12924. front: {
  12925. height: math.unit(2.794, "meters"),
  12926. weight: math.unit(325, "kg"),
  12927. name: "Front",
  12928. image: {
  12929. source: "./media/characters/tezwa/front.svg",
  12930. extra: 2083 / 1906,
  12931. bottom: 0.031
  12932. }
  12933. },
  12934. foot: {
  12935. height: math.unit(0.687, "meters"),
  12936. name: "Foot",
  12937. image: {
  12938. source: "./media/characters/tezwa/foot.svg"
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Normal",
  12945. height: math.unit(9 + 2 / 12, "feet"),
  12946. default: true
  12947. },
  12948. ]
  12949. ))
  12950. characterMakers.push(() => makeCharacter(
  12951. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12952. {
  12953. front: {
  12954. height: math.unit(58, "feet"),
  12955. weight: math.unit(89000, "lb"),
  12956. name: "Front",
  12957. image: {
  12958. source: "./media/characters/typhus/front.svg",
  12959. extra: 816 / 800,
  12960. bottom: 0.065
  12961. }
  12962. },
  12963. },
  12964. [
  12965. {
  12966. name: "Macro",
  12967. height: math.unit(58, "feet"),
  12968. default: true
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(12, "feet"),
  12977. weight: math.unit(6, "tonnes"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/lyra-von-wulf/front.svg",
  12981. extra: 1,
  12982. bottom: 0.10
  12983. }
  12984. },
  12985. frontMecha: {
  12986. height: math.unit(12, "feet"),
  12987. weight: math.unit(12, "tonnes"),
  12988. name: "Front (Mecha)",
  12989. image: {
  12990. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12991. extra: 1,
  12992. bottom: 0.042
  12993. }
  12994. },
  12995. maw: {
  12996. height: math.unit(2.2, "feet"),
  12997. name: "Maw",
  12998. image: {
  12999. source: "./media/characters/lyra-von-wulf/maw.svg"
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Normal",
  13006. height: math.unit(12, "feet"),
  13007. default: true
  13008. },
  13009. {
  13010. name: "Classic",
  13011. height: math.unit(50, "feet")
  13012. },
  13013. {
  13014. name: "Macro",
  13015. height: math.unit(500, "feet")
  13016. },
  13017. {
  13018. name: "Megamacro",
  13019. height: math.unit(1, "mile")
  13020. },
  13021. {
  13022. name: "Gigamacro",
  13023. height: math.unit(400, "miles")
  13024. },
  13025. {
  13026. name: "Teramacro",
  13027. height: math.unit(22000, "miles")
  13028. },
  13029. {
  13030. name: "Solarmacro",
  13031. height: math.unit(8600000, "miles")
  13032. },
  13033. {
  13034. name: "Galactic",
  13035. height: math.unit(1057000, "lightyears")
  13036. },
  13037. ]
  13038. ))
  13039. characterMakers.push(() => makeCharacter(
  13040. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  13041. {
  13042. front: {
  13043. height: math.unit(6 + 10 / 12, "feet"),
  13044. weight: math.unit(150, "lb"),
  13045. name: "Front",
  13046. image: {
  13047. source: "./media/characters/dixon/front.svg",
  13048. extra: 3361 / 3209,
  13049. bottom: 0.01
  13050. }
  13051. },
  13052. },
  13053. [
  13054. {
  13055. name: "Normal",
  13056. height: math.unit(6 + 10 / 12, "feet"),
  13057. default: true
  13058. },
  13059. {
  13060. name: "Big",
  13061. height: math.unit(12, "meters")
  13062. },
  13063. {
  13064. name: "Macro",
  13065. height: math.unit(500, "meters")
  13066. },
  13067. {
  13068. name: "Megamacro",
  13069. height: math.unit(2, "km")
  13070. },
  13071. ]
  13072. ))
  13073. characterMakers.push(() => makeCharacter(
  13074. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  13075. {
  13076. front: {
  13077. height: math.unit(185, "cm"),
  13078. weight: math.unit(68, "kg"),
  13079. name: "Front",
  13080. image: {
  13081. source: "./media/characters/kauko/front.svg",
  13082. extra: 1455 / 1421,
  13083. bottom: 0.03
  13084. }
  13085. },
  13086. back: {
  13087. height: math.unit(185, "cm"),
  13088. weight: math.unit(68, "kg"),
  13089. name: "Back",
  13090. image: {
  13091. source: "./media/characters/kauko/back.svg",
  13092. extra: 1455 / 1421,
  13093. bottom: 0.004
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(185, "cm"),
  13101. default: true
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(6, "feet"),
  13110. weight: math.unit(150, "kg"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/varg/front.svg",
  13114. extra: 1108 / 1018,
  13115. bottom: 0.0375
  13116. }
  13117. },
  13118. },
  13119. [
  13120. {
  13121. name: "Normal",
  13122. height: math.unit(5, "meters")
  13123. },
  13124. {
  13125. name: "Macro",
  13126. height: math.unit(200, "meters")
  13127. },
  13128. {
  13129. name: "Megamacro",
  13130. height: math.unit(20, "kilometers")
  13131. },
  13132. {
  13133. name: "True Size",
  13134. height: math.unit(211, "km"),
  13135. default: true
  13136. },
  13137. {
  13138. name: "Gigamacro",
  13139. height: math.unit(1000, "km")
  13140. },
  13141. {
  13142. name: "Gigamacro+",
  13143. height: math.unit(8000, "km")
  13144. },
  13145. {
  13146. name: "Teramacro",
  13147. height: math.unit(1000000, "km")
  13148. },
  13149. ]
  13150. ))
  13151. characterMakers.push(() => makeCharacter(
  13152. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  13153. {
  13154. front: {
  13155. height: math.unit(7 + 7 / 12, "feet"),
  13156. weight: math.unit(267, "lb"),
  13157. name: "Front",
  13158. image: {
  13159. source: "./media/characters/dayza/front.svg",
  13160. extra: 1262 / 1200,
  13161. bottom: 0.035
  13162. }
  13163. },
  13164. side: {
  13165. height: math.unit(7 + 7 / 12, "feet"),
  13166. weight: math.unit(267, "lb"),
  13167. name: "Side",
  13168. image: {
  13169. source: "./media/characters/dayza/side.svg",
  13170. extra: 1295 / 1245,
  13171. bottom: 0.05
  13172. }
  13173. },
  13174. back: {
  13175. height: math.unit(7 + 7 / 12, "feet"),
  13176. weight: math.unit(267, "lb"),
  13177. name: "Back",
  13178. image: {
  13179. source: "./media/characters/dayza/back.svg",
  13180. extra: 1241 / 1170
  13181. }
  13182. },
  13183. },
  13184. [
  13185. {
  13186. name: "Normal",
  13187. height: math.unit(7 + 7 / 12, "feet"),
  13188. default: true
  13189. },
  13190. {
  13191. name: "Macro",
  13192. height: math.unit(155, "feet")
  13193. },
  13194. ]
  13195. ))
  13196. characterMakers.push(() => makeCharacter(
  13197. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  13198. {
  13199. front: {
  13200. height: math.unit(6 + 5 / 12, "feet"),
  13201. weight: math.unit(160, "lb"),
  13202. name: "Front",
  13203. image: {
  13204. source: "./media/characters/xanthos/front.svg",
  13205. extra: 1,
  13206. bottom: 0.04
  13207. }
  13208. },
  13209. back: {
  13210. height: math.unit(6 + 5 / 12, "feet"),
  13211. weight: math.unit(160, "lb"),
  13212. name: "Back",
  13213. image: {
  13214. source: "./media/characters/xanthos/back.svg",
  13215. extra: 1,
  13216. bottom: 0.03
  13217. }
  13218. },
  13219. hand: {
  13220. height: math.unit(0.928, "feet"),
  13221. name: "Hand",
  13222. image: {
  13223. source: "./media/characters/xanthos/hand.svg"
  13224. }
  13225. },
  13226. foot: {
  13227. height: math.unit(1.286, "feet"),
  13228. name: "Foot",
  13229. image: {
  13230. source: "./media/characters/xanthos/foot.svg"
  13231. }
  13232. },
  13233. },
  13234. [
  13235. {
  13236. name: "Normal",
  13237. height: math.unit(6 + 5 / 12, "feet"),
  13238. default: true
  13239. },
  13240. {
  13241. name: "Normal+",
  13242. height: math.unit(6, "meters")
  13243. },
  13244. {
  13245. name: "Macro",
  13246. height: math.unit(40, "feet")
  13247. },
  13248. {
  13249. name: "Macro+",
  13250. height: math.unit(200, "meters")
  13251. },
  13252. {
  13253. name: "Megamacro",
  13254. height: math.unit(20, "km")
  13255. },
  13256. {
  13257. name: "Megamacro+",
  13258. height: math.unit(100, "km")
  13259. },
  13260. {
  13261. name: "Gigamacro",
  13262. height: math.unit(200, "megameters")
  13263. },
  13264. {
  13265. name: "Gigamacro+",
  13266. height: math.unit(1.5, "gigameters")
  13267. },
  13268. ]
  13269. ))
  13270. characterMakers.push(() => makeCharacter(
  13271. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  13272. {
  13273. front: {
  13274. height: math.unit(6 + 3 / 12, "feet"),
  13275. weight: math.unit(215, "lb"),
  13276. name: "Front",
  13277. image: {
  13278. source: "./media/characters/grynn/front.svg",
  13279. extra: 4627 / 4209,
  13280. bottom: 0.047
  13281. }
  13282. },
  13283. },
  13284. [
  13285. {
  13286. name: "Micro",
  13287. height: math.unit(6, "inches")
  13288. },
  13289. {
  13290. name: "Normal",
  13291. height: math.unit(6 + 3 / 12, "feet"),
  13292. default: true
  13293. },
  13294. {
  13295. name: "Big",
  13296. height: math.unit(104, "feet")
  13297. },
  13298. {
  13299. name: "Macro",
  13300. height: math.unit(944, "feet")
  13301. },
  13302. {
  13303. name: "Macro+",
  13304. height: math.unit(9480, "feet")
  13305. },
  13306. {
  13307. name: "Megamacro",
  13308. height: math.unit(78752, "feet")
  13309. },
  13310. {
  13311. name: "Megamacro+",
  13312. height: math.unit(630128, "feet")
  13313. },
  13314. {
  13315. name: "Megamacro++",
  13316. height: math.unit(3150695, "feet")
  13317. },
  13318. ]
  13319. ))
  13320. characterMakers.push(() => makeCharacter(
  13321. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  13322. {
  13323. front: {
  13324. height: math.unit(7 + 5 / 12, "feet"),
  13325. weight: math.unit(450, "lb"),
  13326. name: "Front",
  13327. image: {
  13328. source: "./media/characters/mocha-aura/front.svg",
  13329. extra: 1907 / 1817,
  13330. bottom: 0.04
  13331. }
  13332. },
  13333. back: {
  13334. height: math.unit(7 + 5 / 12, "feet"),
  13335. weight: math.unit(450, "lb"),
  13336. name: "Back",
  13337. image: {
  13338. source: "./media/characters/mocha-aura/back.svg",
  13339. extra: 1900 / 1825,
  13340. bottom: 0.045
  13341. }
  13342. },
  13343. },
  13344. [
  13345. {
  13346. name: "Nano",
  13347. height: math.unit(1, "nm")
  13348. },
  13349. {
  13350. name: "Megamicro",
  13351. height: math.unit(1, "mm")
  13352. },
  13353. {
  13354. name: "Micro",
  13355. height: math.unit(3, "inches")
  13356. },
  13357. {
  13358. name: "Normal",
  13359. height: math.unit(7 + 5 / 12, "feet"),
  13360. default: true
  13361. },
  13362. {
  13363. name: "Macro",
  13364. height: math.unit(30, "feet")
  13365. },
  13366. {
  13367. name: "Megamacro",
  13368. height: math.unit(3500, "feet")
  13369. },
  13370. {
  13371. name: "Teramacro",
  13372. height: math.unit(500000, "miles")
  13373. },
  13374. {
  13375. name: "Petamacro",
  13376. height: math.unit(50000000000000000, "parsecs")
  13377. },
  13378. ]
  13379. ))
  13380. characterMakers.push(() => makeCharacter(
  13381. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  13382. {
  13383. front: {
  13384. height: math.unit(6, "feet"),
  13385. weight: math.unit(150, "lb"),
  13386. name: "Front",
  13387. image: {
  13388. source: "./media/characters/ilisha-devya/front.svg",
  13389. extra: 1053/1049,
  13390. bottom: 270/1323
  13391. }
  13392. },
  13393. back: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Back",
  13397. image: {
  13398. source: "./media/characters/ilisha-devya/back.svg",
  13399. extra: 1131/1128,
  13400. bottom: 39/1170
  13401. }
  13402. },
  13403. },
  13404. [
  13405. {
  13406. name: "Macro",
  13407. height: math.unit(500, "feet"),
  13408. default: true
  13409. },
  13410. {
  13411. name: "Megamacro",
  13412. height: math.unit(10, "miles")
  13413. },
  13414. {
  13415. name: "Gigamacro",
  13416. height: math.unit(100000, "miles")
  13417. },
  13418. {
  13419. name: "Examacro",
  13420. height: math.unit(1e9, "lightyears")
  13421. },
  13422. {
  13423. name: "Omniversal",
  13424. height: math.unit(1e33, "lightyears")
  13425. },
  13426. {
  13427. name: "Beyond Infinite",
  13428. height: math.unit(1e100, "lightyears")
  13429. },
  13430. ]
  13431. ))
  13432. characterMakers.push(() => makeCharacter(
  13433. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  13434. {
  13435. Side: {
  13436. height: math.unit(6, "feet"),
  13437. weight: math.unit(150, "lb"),
  13438. name: "Side",
  13439. image: {
  13440. source: "./media/characters/mira/side.svg",
  13441. extra: 900 / 799,
  13442. bottom: 0.02
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Human Size",
  13449. height: math.unit(6, "feet")
  13450. },
  13451. {
  13452. name: "Macro",
  13453. height: math.unit(100, "feet"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Megamacro",
  13458. height: math.unit(10, "miles")
  13459. },
  13460. {
  13461. name: "Gigamacro",
  13462. height: math.unit(25000, "miles")
  13463. },
  13464. {
  13465. name: "Teramacro",
  13466. height: math.unit(300, "AU")
  13467. },
  13468. {
  13469. name: "Full Size",
  13470. height: math.unit(4.5e10, "lightyears")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(150, "lb"),
  13480. name: "Front",
  13481. image: {
  13482. source: "./media/characters/holly/front.svg",
  13483. extra: 639 / 606
  13484. }
  13485. },
  13486. back: {
  13487. height: math.unit(6, "feet"),
  13488. weight: math.unit(150, "lb"),
  13489. name: "Back",
  13490. image: {
  13491. source: "./media/characters/holly/back.svg",
  13492. extra: 623 / 598
  13493. }
  13494. },
  13495. frontWorking: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(150, "lb"),
  13498. name: "Front (Working)",
  13499. image: {
  13500. source: "./media/characters/holly/front-working.svg",
  13501. extra: 607 / 577,
  13502. bottom: 0.048
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Normal",
  13509. height: math.unit(12 + 3 / 12, "feet"),
  13510. default: true
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(6, "feet"),
  13519. weight: math.unit(150, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/porter/front.svg",
  13523. extra: 1,
  13524. bottom: 0.01
  13525. }
  13526. },
  13527. frontRobes: {
  13528. height: math.unit(6, "feet"),
  13529. weight: math.unit(150, "lb"),
  13530. name: "Front (Robes)",
  13531. image: {
  13532. source: "./media/characters/porter/front-robes.svg",
  13533. extra: 1.01,
  13534. bottom: 0.01
  13535. }
  13536. },
  13537. },
  13538. [
  13539. {
  13540. name: "Normal",
  13541. height: math.unit(11 + 9 / 12, "feet"),
  13542. default: true
  13543. },
  13544. ]
  13545. ))
  13546. characterMakers.push(() => makeCharacter(
  13547. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  13548. {
  13549. legendary: {
  13550. height: math.unit(6, "feet"),
  13551. weight: math.unit(150, "lb"),
  13552. name: "Legendary",
  13553. image: {
  13554. source: "./media/characters/lucy/legendary.svg",
  13555. extra: 1355 / 1100,
  13556. bottom: 0.045
  13557. }
  13558. },
  13559. },
  13560. [
  13561. {
  13562. name: "Legendary",
  13563. height: math.unit(86882 * 2, "miles"),
  13564. default: true
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  13570. {
  13571. front: {
  13572. height: math.unit(6, "feet"),
  13573. weight: math.unit(150, "lb"),
  13574. name: "Front",
  13575. image: {
  13576. source: "./media/characters/drusilla/front.svg",
  13577. extra: 678 / 635,
  13578. bottom: 0.03
  13579. }
  13580. },
  13581. back: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(150, "lb"),
  13584. name: "Back",
  13585. image: {
  13586. source: "./media/characters/drusilla/back.svg",
  13587. extra: 678 / 635,
  13588. bottom: 0.005
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Macro",
  13595. height: math.unit(100, "feet")
  13596. },
  13597. {
  13598. name: "Canon Height",
  13599. height: math.unit(2000, "feet"),
  13600. default: true
  13601. },
  13602. ]
  13603. ))
  13604. characterMakers.push(() => makeCharacter(
  13605. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  13606. {
  13607. front: {
  13608. height: math.unit(6, "feet"),
  13609. weight: math.unit(180, "lb"),
  13610. name: "Front",
  13611. image: {
  13612. source: "./media/characters/renard-thatch/front.svg",
  13613. extra: 2411 / 2275,
  13614. bottom: 0.01
  13615. }
  13616. },
  13617. frontPosing: {
  13618. height: math.unit(6, "feet"),
  13619. weight: math.unit(180, "lb"),
  13620. name: "Front (Posing)",
  13621. image: {
  13622. source: "./media/characters/renard-thatch/front-posing.svg",
  13623. extra: 2381 / 2261,
  13624. bottom: 0.01
  13625. }
  13626. },
  13627. back: {
  13628. height: math.unit(6, "feet"),
  13629. weight: math.unit(180, "lb"),
  13630. name: "Back",
  13631. image: {
  13632. source: "./media/characters/renard-thatch/back.svg",
  13633. extra: 2428 / 2288
  13634. }
  13635. },
  13636. },
  13637. [
  13638. {
  13639. name: "Micro",
  13640. height: math.unit(3, "inches")
  13641. },
  13642. {
  13643. name: "Default",
  13644. height: math.unit(6, "feet"),
  13645. default: true
  13646. },
  13647. {
  13648. name: "Macro",
  13649. height: math.unit(75, "feet")
  13650. },
  13651. ]
  13652. ))
  13653. characterMakers.push(() => makeCharacter(
  13654. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  13655. {
  13656. front: {
  13657. height: math.unit(1450, "feet"),
  13658. weight: math.unit(1.21e6, "tons"),
  13659. name: "Front",
  13660. image: {
  13661. source: "./media/characters/sekvra/front.svg",
  13662. extra: 1193/1190,
  13663. bottom: 78/1271
  13664. }
  13665. },
  13666. side: {
  13667. height: math.unit(1450, "feet"),
  13668. weight: math.unit(1.21e6, "tons"),
  13669. name: "Side",
  13670. image: {
  13671. source: "./media/characters/sekvra/side.svg",
  13672. extra: 1193/1190,
  13673. bottom: 52/1245
  13674. }
  13675. },
  13676. back: {
  13677. height: math.unit(1450, "feet"),
  13678. weight: math.unit(1.21e6, "tons"),
  13679. name: "Back",
  13680. image: {
  13681. source: "./media/characters/sekvra/back.svg",
  13682. extra: 1219/1216,
  13683. bottom: 21/1240
  13684. }
  13685. },
  13686. frontClothed: {
  13687. height: math.unit(1450, "feet"),
  13688. weight: math.unit(1.21e6, "tons"),
  13689. name: "Front (Clothed)",
  13690. image: {
  13691. source: "./media/characters/sekvra/front-clothed.svg",
  13692. extra: 1192/1189,
  13693. bottom: 79/1271
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Macro",
  13700. height: math.unit(1450, "feet"),
  13701. default: true
  13702. },
  13703. {
  13704. name: "Megamacro",
  13705. height: math.unit(15000, "feet")
  13706. },
  13707. ]
  13708. ))
  13709. characterMakers.push(() => makeCharacter(
  13710. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  13711. {
  13712. front: {
  13713. height: math.unit(6, "feet"),
  13714. weight: math.unit(150, "lb"),
  13715. name: "Front",
  13716. image: {
  13717. source: "./media/characters/carmine/front.svg",
  13718. extra: 1,
  13719. bottom: 0.035
  13720. }
  13721. },
  13722. frontArmor: {
  13723. height: math.unit(6, "feet"),
  13724. weight: math.unit(150, "lb"),
  13725. name: "Front (Armor)",
  13726. image: {
  13727. source: "./media/characters/carmine/front-armor.svg",
  13728. extra: 1,
  13729. bottom: 0.035
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Large",
  13736. height: math.unit(1, "mile")
  13737. },
  13738. {
  13739. name: "Huge",
  13740. height: math.unit(40, "miles"),
  13741. default: true
  13742. },
  13743. {
  13744. name: "Colossal",
  13745. height: math.unit(2500, "miles")
  13746. },
  13747. ]
  13748. ))
  13749. characterMakers.push(() => makeCharacter(
  13750. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  13751. {
  13752. front: {
  13753. height: math.unit(6, "feet"),
  13754. weight: math.unit(150, "lb"),
  13755. name: "Front",
  13756. image: {
  13757. source: "./media/characters/elyssia/front.svg",
  13758. extra: 2201 / 2035,
  13759. bottom: 0.05
  13760. }
  13761. },
  13762. frontClothed: {
  13763. height: math.unit(6, "feet"),
  13764. weight: math.unit(150, "lb"),
  13765. name: "Front (Clothed)",
  13766. image: {
  13767. source: "./media/characters/elyssia/front-clothed.svg",
  13768. extra: 2201 / 2035,
  13769. bottom: 0.05
  13770. }
  13771. },
  13772. back: {
  13773. height: math.unit(6, "feet"),
  13774. weight: math.unit(150, "lb"),
  13775. name: "Back",
  13776. image: {
  13777. source: "./media/characters/elyssia/back.svg",
  13778. extra: 2201 / 2035,
  13779. bottom: 0.013
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Smaller",
  13786. height: math.unit(150, "feet")
  13787. },
  13788. {
  13789. name: "Standard",
  13790. height: math.unit(1400, "feet"),
  13791. default: true
  13792. },
  13793. {
  13794. name: "Distracted",
  13795. height: math.unit(15000, "feet")
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(7 + 4/12, "feet"),
  13804. weight: math.unit(690, "lb"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/geno-maxwell/front.svg",
  13808. extra: 984/856,
  13809. bottom: 87/1071
  13810. }
  13811. },
  13812. back: {
  13813. height: math.unit(7 + 4/12, "feet"),
  13814. weight: math.unit(690, "lb"),
  13815. name: "Back",
  13816. image: {
  13817. source: "./media/characters/geno-maxwell/back.svg",
  13818. extra: 981/854,
  13819. bottom: 57/1038
  13820. }
  13821. },
  13822. frontCostume: {
  13823. height: math.unit(7 + 4/12, "feet"),
  13824. weight: math.unit(690, "lb"),
  13825. name: "Front (Costume)",
  13826. image: {
  13827. source: "./media/characters/geno-maxwell/front-costume.svg",
  13828. extra: 984/856,
  13829. bottom: 87/1071
  13830. }
  13831. },
  13832. backcostume: {
  13833. height: math.unit(7 + 4/12, "feet"),
  13834. weight: math.unit(690, "lb"),
  13835. name: "Back (Costume)",
  13836. image: {
  13837. source: "./media/characters/geno-maxwell/back-costume.svg",
  13838. extra: 981/854,
  13839. bottom: 57/1038
  13840. }
  13841. },
  13842. },
  13843. [
  13844. {
  13845. name: "Micro",
  13846. height: math.unit(3, "inches")
  13847. },
  13848. {
  13849. name: "Normal",
  13850. height: math.unit(7 + 4 / 12, "feet"),
  13851. default: true
  13852. },
  13853. {
  13854. name: "Macro",
  13855. height: math.unit(220, "feet")
  13856. },
  13857. {
  13858. name: "Megamacro",
  13859. height: math.unit(11, "miles")
  13860. },
  13861. ]
  13862. ))
  13863. characterMakers.push(() => makeCharacter(
  13864. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  13865. {
  13866. front: {
  13867. height: math.unit(7 + 4/12, "feet"),
  13868. weight: math.unit(750, "lb"),
  13869. name: "Front",
  13870. image: {
  13871. source: "./media/characters/regena-maxwell/front.svg",
  13872. extra: 984/856,
  13873. bottom: 87/1071
  13874. }
  13875. },
  13876. back: {
  13877. height: math.unit(7 + 4/12, "feet"),
  13878. weight: math.unit(750, "lb"),
  13879. name: "Back",
  13880. image: {
  13881. source: "./media/characters/regena-maxwell/back.svg",
  13882. extra: 981/854,
  13883. bottom: 57/1038
  13884. }
  13885. },
  13886. frontCostume: {
  13887. height: math.unit(7 + 4/12, "feet"),
  13888. weight: math.unit(750, "lb"),
  13889. name: "Front (Costume)",
  13890. image: {
  13891. source: "./media/characters/regena-maxwell/front-costume.svg",
  13892. extra: 984/856,
  13893. bottom: 87/1071
  13894. }
  13895. },
  13896. backcostume: {
  13897. height: math.unit(7 + 4/12, "feet"),
  13898. weight: math.unit(750, "lb"),
  13899. name: "Back (Costume)",
  13900. image: {
  13901. source: "./media/characters/regena-maxwell/back-costume.svg",
  13902. extra: 981/854,
  13903. bottom: 57/1038
  13904. }
  13905. },
  13906. },
  13907. [
  13908. {
  13909. name: "Normal",
  13910. height: math.unit(7 + 4 / 12, "feet"),
  13911. default: true
  13912. },
  13913. {
  13914. name: "Macro",
  13915. height: math.unit(220, "feet")
  13916. },
  13917. {
  13918. name: "Megamacro",
  13919. height: math.unit(11, "miles")
  13920. },
  13921. ]
  13922. ))
  13923. characterMakers.push(() => makeCharacter(
  13924. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  13925. {
  13926. front: {
  13927. height: math.unit(6, "feet"),
  13928. weight: math.unit(150, "lb"),
  13929. name: "Front",
  13930. image: {
  13931. source: "./media/characters/x-gliding-dragon-x/front.svg",
  13932. extra: 860 / 690,
  13933. bottom: 0.03
  13934. }
  13935. },
  13936. },
  13937. [
  13938. {
  13939. name: "Normal",
  13940. height: math.unit(1.7, "meters"),
  13941. default: true
  13942. },
  13943. ]
  13944. ))
  13945. characterMakers.push(() => makeCharacter(
  13946. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  13947. {
  13948. front: {
  13949. height: math.unit(6, "feet"),
  13950. weight: math.unit(150, "lb"),
  13951. name: "Front",
  13952. image: {
  13953. source: "./media/characters/quilly/front.svg",
  13954. extra: 890 / 776
  13955. }
  13956. },
  13957. },
  13958. [
  13959. {
  13960. name: "Gigamacro",
  13961. height: math.unit(404090, "miles"),
  13962. default: true
  13963. },
  13964. ]
  13965. ))
  13966. characterMakers.push(() => makeCharacter(
  13967. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  13968. {
  13969. front: {
  13970. height: math.unit(7 + 8 / 12, "feet"),
  13971. weight: math.unit(350, "lb"),
  13972. name: "Front",
  13973. image: {
  13974. source: "./media/characters/tempest/front.svg",
  13975. extra: 1175 / 1086,
  13976. bottom: 0.02
  13977. }
  13978. },
  13979. },
  13980. [
  13981. {
  13982. name: "Normal",
  13983. height: math.unit(7 + 8 / 12, "feet"),
  13984. default: true
  13985. },
  13986. ]
  13987. ))
  13988. characterMakers.push(() => makeCharacter(
  13989. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  13990. {
  13991. side: {
  13992. height: math.unit(4 + 5 / 12, "feet"),
  13993. weight: math.unit(80, "lb"),
  13994. name: "Side",
  13995. image: {
  13996. source: "./media/characters/rodger/side.svg",
  13997. extra: 1235 / 1118
  13998. }
  13999. },
  14000. },
  14001. [
  14002. {
  14003. name: "Micro",
  14004. height: math.unit(1, "inch")
  14005. },
  14006. {
  14007. name: "Normal",
  14008. height: math.unit(4 + 5 / 12, "feet"),
  14009. default: true
  14010. },
  14011. {
  14012. name: "Macro",
  14013. height: math.unit(120, "feet")
  14014. },
  14015. ]
  14016. ))
  14017. characterMakers.push(() => makeCharacter(
  14018. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  14019. {
  14020. front: {
  14021. height: math.unit(6, "feet"),
  14022. weight: math.unit(150, "lb"),
  14023. name: "Front",
  14024. image: {
  14025. source: "./media/characters/danyel/front.svg",
  14026. extra: 1185 / 1123,
  14027. bottom: 0.05
  14028. }
  14029. },
  14030. },
  14031. [
  14032. {
  14033. name: "Shrunken",
  14034. height: math.unit(0.5, "mm")
  14035. },
  14036. {
  14037. name: "Micro",
  14038. height: math.unit(1, "mm"),
  14039. default: true
  14040. },
  14041. {
  14042. name: "Upsized",
  14043. height: math.unit(5 + 5 / 12, "feet")
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(5 + 6 / 12, "feet"),
  14052. weight: math.unit(200, "lb"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/vivian-bijoux/front.svg",
  14056. extra: 1217/1209,
  14057. bottom: 76/1293
  14058. }
  14059. },
  14060. back: {
  14061. height: math.unit(5 + 6 / 12, "feet"),
  14062. weight: math.unit(200, "lb"),
  14063. name: "Back",
  14064. image: {
  14065. source: "./media/characters/vivian-bijoux/back.svg",
  14066. extra: 1214/1208,
  14067. bottom: 51/1265
  14068. }
  14069. },
  14070. dressed: {
  14071. height: math.unit(5 + 6 / 12, "feet"),
  14072. weight: math.unit(200, "lb"),
  14073. name: "Dressed",
  14074. image: {
  14075. source: "./media/characters/vivian-bijoux/dressed.svg",
  14076. extra: 1217/1209,
  14077. bottom: 76/1293
  14078. }
  14079. },
  14080. },
  14081. [
  14082. {
  14083. name: "Normal",
  14084. height: math.unit(5 + 6 / 12, "feet"),
  14085. default: true
  14086. },
  14087. {
  14088. name: "Bad Dream",
  14089. height: math.unit(500, "feet")
  14090. },
  14091. {
  14092. name: "Nightmare",
  14093. height: math.unit(500, "miles")
  14094. },
  14095. ]
  14096. ))
  14097. characterMakers.push(() => makeCharacter(
  14098. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  14099. {
  14100. front: {
  14101. height: math.unit(6 + 1 / 12, "feet"),
  14102. weight: math.unit(260, "lb"),
  14103. name: "Front",
  14104. image: {
  14105. source: "./media/characters/zeta/front.svg",
  14106. extra: 1968 / 1889,
  14107. bottom: 0.06
  14108. }
  14109. },
  14110. back: {
  14111. height: math.unit(6 + 1 / 12, "feet"),
  14112. weight: math.unit(260, "lb"),
  14113. name: "Back",
  14114. image: {
  14115. source: "./media/characters/zeta/back.svg",
  14116. extra: 1944 / 1858,
  14117. bottom: 0.03
  14118. }
  14119. },
  14120. hand: {
  14121. height: math.unit(1.112, "feet"),
  14122. name: "Hand",
  14123. image: {
  14124. source: "./media/characters/zeta/hand.svg"
  14125. }
  14126. },
  14127. foot: {
  14128. height: math.unit(1.48, "feet"),
  14129. name: "Foot",
  14130. image: {
  14131. source: "./media/characters/zeta/foot.svg"
  14132. }
  14133. },
  14134. },
  14135. [
  14136. {
  14137. name: "Micro",
  14138. height: math.unit(6, "inches")
  14139. },
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(6 + 1 / 12, "feet"),
  14143. default: true
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(20, "feet")
  14148. },
  14149. ]
  14150. ))
  14151. characterMakers.push(() => makeCharacter(
  14152. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  14153. {
  14154. front: {
  14155. height: math.unit(6, "feet"),
  14156. weight: math.unit(150, "lb"),
  14157. name: "Front",
  14158. image: {
  14159. source: "./media/characters/jamie-larsen/front.svg",
  14160. extra: 962 / 933,
  14161. bottom: 0.02
  14162. }
  14163. },
  14164. back: {
  14165. height: math.unit(6, "feet"),
  14166. weight: math.unit(150, "lb"),
  14167. name: "Back",
  14168. image: {
  14169. source: "./media/characters/jamie-larsen/back.svg",
  14170. extra: 997 / 946
  14171. }
  14172. },
  14173. },
  14174. [
  14175. {
  14176. name: "Macro",
  14177. height: math.unit(28 + 7 / 12, "feet"),
  14178. default: true
  14179. },
  14180. {
  14181. name: "Macro+",
  14182. height: math.unit(180, "feet")
  14183. },
  14184. {
  14185. name: "Megamacro",
  14186. height: math.unit(10, "miles")
  14187. },
  14188. {
  14189. name: "Gigamacro",
  14190. height: math.unit(200000, "miles")
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  14196. {
  14197. front: {
  14198. height: math.unit(6, "feet"),
  14199. weight: math.unit(120, "lb"),
  14200. name: "Front",
  14201. image: {
  14202. source: "./media/characters/vance/front.svg",
  14203. extra: 1980 / 1890,
  14204. bottom: 0.09
  14205. }
  14206. },
  14207. back: {
  14208. height: math.unit(6, "feet"),
  14209. weight: math.unit(120, "lb"),
  14210. name: "Back",
  14211. image: {
  14212. source: "./media/characters/vance/back.svg",
  14213. extra: 2081 / 1994,
  14214. bottom: 0.014
  14215. }
  14216. },
  14217. hand: {
  14218. height: math.unit(0.88, "feet"),
  14219. name: "Hand",
  14220. image: {
  14221. source: "./media/characters/vance/hand.svg"
  14222. }
  14223. },
  14224. foot: {
  14225. height: math.unit(0.64, "feet"),
  14226. name: "Foot",
  14227. image: {
  14228. source: "./media/characters/vance/foot.svg"
  14229. }
  14230. },
  14231. },
  14232. [
  14233. {
  14234. name: "Small",
  14235. height: math.unit(90, "feet"),
  14236. default: true
  14237. },
  14238. {
  14239. name: "Macro",
  14240. height: math.unit(100, "meters")
  14241. },
  14242. {
  14243. name: "Megamacro",
  14244. height: math.unit(15, "miles")
  14245. },
  14246. ]
  14247. ))
  14248. characterMakers.push(() => makeCharacter(
  14249. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  14250. {
  14251. front: {
  14252. height: math.unit(6, "feet"),
  14253. weight: math.unit(180, "lb"),
  14254. name: "Front",
  14255. image: {
  14256. source: "./media/characters/xochitl/front.svg",
  14257. extra: 2297 / 2261,
  14258. bottom: 0.065
  14259. }
  14260. },
  14261. back: {
  14262. height: math.unit(6, "feet"),
  14263. weight: math.unit(180, "lb"),
  14264. name: "Back",
  14265. image: {
  14266. source: "./media/characters/xochitl/back.svg",
  14267. extra: 2386 / 2354,
  14268. bottom: 0.01
  14269. }
  14270. },
  14271. foot: {
  14272. height: math.unit(6 / 5 * 1.15, "feet"),
  14273. weight: math.unit(150, "lb"),
  14274. name: "Foot",
  14275. image: {
  14276. source: "./media/characters/xochitl/foot.svg"
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Macro",
  14283. height: math.unit(80, "feet")
  14284. },
  14285. {
  14286. name: "Macro+",
  14287. height: math.unit(400, "feet"),
  14288. default: true
  14289. },
  14290. {
  14291. name: "Gigamacro",
  14292. height: math.unit(80000, "miles")
  14293. },
  14294. {
  14295. name: "Gigamacro+",
  14296. height: math.unit(400000, "miles")
  14297. },
  14298. {
  14299. name: "Teramacro",
  14300. height: math.unit(300, "AU")
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(6, "feet"),
  14309. weight: math.unit(150, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/vincent/front.svg",
  14313. extra: 1130 / 1080,
  14314. bottom: 0.055
  14315. }
  14316. },
  14317. beak: {
  14318. height: math.unit(6 * 0.1, "feet"),
  14319. name: "Beak",
  14320. image: {
  14321. source: "./media/characters/vincent/beak.svg"
  14322. }
  14323. },
  14324. hand: {
  14325. height: math.unit(6 * 0.85, "feet"),
  14326. weight: math.unit(150, "lb"),
  14327. name: "Hand",
  14328. image: {
  14329. source: "./media/characters/vincent/hand.svg"
  14330. }
  14331. },
  14332. foot: {
  14333. height: math.unit(6 * 0.19, "feet"),
  14334. weight: math.unit(150, "lb"),
  14335. name: "Foot",
  14336. image: {
  14337. source: "./media/characters/vincent/foot.svg"
  14338. }
  14339. },
  14340. },
  14341. [
  14342. {
  14343. name: "Base",
  14344. height: math.unit(6 + 5 / 12, "feet"),
  14345. default: true
  14346. },
  14347. {
  14348. name: "Macro",
  14349. height: math.unit(300, "feet")
  14350. },
  14351. {
  14352. name: "Megamacro",
  14353. height: math.unit(2, "miles")
  14354. },
  14355. {
  14356. name: "Gigamacro",
  14357. height: math.unit(1000, "miles")
  14358. },
  14359. ]
  14360. ))
  14361. characterMakers.push(() => makeCharacter(
  14362. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  14363. {
  14364. front: {
  14365. height: math.unit(2, "meters"),
  14366. weight: math.unit(500, "kg"),
  14367. name: "Front",
  14368. image: {
  14369. source: "./media/characters/coatl/front.svg",
  14370. extra: 3948 / 3500,
  14371. bottom: 0.082
  14372. }
  14373. },
  14374. },
  14375. [
  14376. {
  14377. name: "Normal",
  14378. height: math.unit(4, "meters")
  14379. },
  14380. {
  14381. name: "Macro",
  14382. height: math.unit(100, "meters"),
  14383. default: true
  14384. },
  14385. {
  14386. name: "Macro+",
  14387. height: math.unit(300, "meters")
  14388. },
  14389. {
  14390. name: "Megamacro",
  14391. height: math.unit(3, "gigameters")
  14392. },
  14393. {
  14394. name: "Megamacro+",
  14395. height: math.unit(300, "terameters")
  14396. },
  14397. {
  14398. name: "Megamacro++",
  14399. height: math.unit(3, "lightyears")
  14400. },
  14401. ]
  14402. ))
  14403. characterMakers.push(() => makeCharacter(
  14404. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  14405. {
  14406. front: {
  14407. height: math.unit(6, "feet"),
  14408. weight: math.unit(50, "kg"),
  14409. name: "front",
  14410. image: {
  14411. source: "./media/characters/shiroryu/front.svg",
  14412. extra: 1990 / 1935
  14413. }
  14414. },
  14415. },
  14416. [
  14417. {
  14418. name: "Mortal Mingling",
  14419. height: math.unit(3, "meters")
  14420. },
  14421. {
  14422. name: "Kaiju-ish",
  14423. height: math.unit(250, "meters")
  14424. },
  14425. {
  14426. name: "Somewhat Godly",
  14427. height: math.unit(400, "km"),
  14428. default: true
  14429. },
  14430. {
  14431. name: "Planetary",
  14432. height: math.unit(300, "megameters")
  14433. },
  14434. {
  14435. name: "Galaxy-dwarfing",
  14436. height: math.unit(450, "kiloparsecs")
  14437. },
  14438. {
  14439. name: "Universe Eater",
  14440. height: math.unit(150, "gigaparsecs")
  14441. },
  14442. {
  14443. name: "Almost Immeasurable",
  14444. height: math.unit(1.3e266, "yottaparsecs")
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  14450. {
  14451. front: {
  14452. height: math.unit(6, "feet"),
  14453. weight: math.unit(150, "lb"),
  14454. name: "Front",
  14455. image: {
  14456. source: "./media/characters/umeko/front.svg",
  14457. extra: 1,
  14458. bottom: 0.019
  14459. }
  14460. },
  14461. frontArmored: {
  14462. height: math.unit(6, "feet"),
  14463. weight: math.unit(150, "lb"),
  14464. name: "Front (Armored)",
  14465. image: {
  14466. source: "./media/characters/umeko/front-armored.svg",
  14467. extra: 1,
  14468. bottom: 0.021
  14469. }
  14470. },
  14471. },
  14472. [
  14473. {
  14474. name: "Macro",
  14475. height: math.unit(220, "feet"),
  14476. default: true
  14477. },
  14478. {
  14479. name: "Guardian Dragon",
  14480. height: math.unit(50, "miles")
  14481. },
  14482. {
  14483. name: "Cosmic",
  14484. height: math.unit(800000, "miles")
  14485. },
  14486. ]
  14487. ))
  14488. characterMakers.push(() => makeCharacter(
  14489. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  14490. {
  14491. front: {
  14492. height: math.unit(6, "feet"),
  14493. weight: math.unit(150, "lb"),
  14494. name: "Front",
  14495. image: {
  14496. source: "./media/characters/cassidy/front.svg",
  14497. extra: 810/808,
  14498. bottom: 41/851
  14499. }
  14500. },
  14501. },
  14502. [
  14503. {
  14504. name: "Canon Height",
  14505. height: math.unit(120, "feet"),
  14506. default: true
  14507. },
  14508. {
  14509. name: "Macro+",
  14510. height: math.unit(400, "feet")
  14511. },
  14512. {
  14513. name: "Macro++",
  14514. height: math.unit(4000, "feet")
  14515. },
  14516. {
  14517. name: "Megamacro",
  14518. height: math.unit(3, "miles")
  14519. },
  14520. ]
  14521. ))
  14522. characterMakers.push(() => makeCharacter(
  14523. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  14524. {
  14525. front: {
  14526. height: math.unit(6, "feet"),
  14527. weight: math.unit(150, "lb"),
  14528. name: "Front",
  14529. image: {
  14530. source: "./media/characters/isaac/front.svg",
  14531. extra: 896 / 815,
  14532. bottom: 0.11
  14533. }
  14534. },
  14535. },
  14536. [
  14537. {
  14538. name: "Human Size",
  14539. height: math.unit(8, "feet"),
  14540. default: true
  14541. },
  14542. {
  14543. name: "Macro",
  14544. height: math.unit(400, "feet")
  14545. },
  14546. {
  14547. name: "Megamacro",
  14548. height: math.unit(50, "miles")
  14549. },
  14550. {
  14551. name: "Canon Height",
  14552. height: math.unit(200, "AU")
  14553. },
  14554. ]
  14555. ))
  14556. characterMakers.push(() => makeCharacter(
  14557. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  14558. {
  14559. front: {
  14560. height: math.unit(6, "feet"),
  14561. weight: math.unit(72, "kg"),
  14562. name: "Front",
  14563. image: {
  14564. source: "./media/characters/sleekit/front.svg",
  14565. extra: 4693 / 4487,
  14566. bottom: 0.012
  14567. }
  14568. },
  14569. },
  14570. [
  14571. {
  14572. name: "Minimum Height",
  14573. height: math.unit(10, "meters")
  14574. },
  14575. {
  14576. name: "Smaller",
  14577. height: math.unit(25, "meters")
  14578. },
  14579. {
  14580. name: "Larger",
  14581. height: math.unit(38, "meters"),
  14582. default: true
  14583. },
  14584. {
  14585. name: "Maximum height",
  14586. height: math.unit(100, "meters")
  14587. },
  14588. ]
  14589. ))
  14590. characterMakers.push(() => makeCharacter(
  14591. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  14592. {
  14593. front: {
  14594. height: math.unit(6, "feet"),
  14595. weight: math.unit(150, "lb"),
  14596. name: "Front",
  14597. image: {
  14598. source: "./media/characters/nillia/front.svg",
  14599. extra: 2195 / 2037,
  14600. bottom: 0.005
  14601. }
  14602. },
  14603. back: {
  14604. height: math.unit(6, "feet"),
  14605. weight: math.unit(150, "lb"),
  14606. name: "Back",
  14607. image: {
  14608. source: "./media/characters/nillia/back.svg",
  14609. extra: 2195 / 2037,
  14610. bottom: 0.005
  14611. }
  14612. },
  14613. },
  14614. [
  14615. {
  14616. name: "Canon Height",
  14617. height: math.unit(489, "feet"),
  14618. default: true
  14619. }
  14620. ]
  14621. ))
  14622. characterMakers.push(() => makeCharacter(
  14623. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  14624. {
  14625. front: {
  14626. height: math.unit(6, "feet"),
  14627. weight: math.unit(150, "lb"),
  14628. name: "Front",
  14629. image: {
  14630. source: "./media/characters/mesmyriza/front.svg",
  14631. extra: 2067 / 1784,
  14632. bottom: 0.035
  14633. }
  14634. },
  14635. foot: {
  14636. height: math.unit(6 / (250 / 35), "feet"),
  14637. name: "Foot",
  14638. image: {
  14639. source: "./media/characters/mesmyriza/foot.svg"
  14640. }
  14641. },
  14642. },
  14643. [
  14644. {
  14645. name: "Macro",
  14646. height: math.unit(457, "meters"),
  14647. default: true
  14648. },
  14649. {
  14650. name: "Megamacro",
  14651. height: math.unit(8, "megameters")
  14652. },
  14653. ]
  14654. ))
  14655. characterMakers.push(() => makeCharacter(
  14656. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  14657. {
  14658. front: {
  14659. height: math.unit(6, "feet"),
  14660. weight: math.unit(250, "lb"),
  14661. name: "Front",
  14662. image: {
  14663. source: "./media/characters/saudade/front.svg",
  14664. extra: 1172 / 1139,
  14665. bottom: 0.035
  14666. }
  14667. },
  14668. },
  14669. [
  14670. {
  14671. name: "Micro",
  14672. height: math.unit(3, "inches")
  14673. },
  14674. {
  14675. name: "Normal",
  14676. height: math.unit(6, "feet"),
  14677. default: true
  14678. },
  14679. {
  14680. name: "Macro",
  14681. height: math.unit(50, "feet")
  14682. },
  14683. {
  14684. name: "Megamacro",
  14685. height: math.unit(2800, "feet")
  14686. },
  14687. ]
  14688. ))
  14689. characterMakers.push(() => makeCharacter(
  14690. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  14691. {
  14692. front: {
  14693. height: math.unit(5 + 4 / 12, "feet"),
  14694. weight: math.unit(100, "lb"),
  14695. name: "Front",
  14696. image: {
  14697. source: "./media/characters/keireer/front.svg",
  14698. extra: 716 / 666,
  14699. bottom: 0.05
  14700. }
  14701. },
  14702. },
  14703. [
  14704. {
  14705. name: "Normal",
  14706. height: math.unit(5 + 4 / 12, "feet"),
  14707. default: true
  14708. },
  14709. ]
  14710. ))
  14711. characterMakers.push(() => makeCharacter(
  14712. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  14713. {
  14714. front: {
  14715. height: math.unit(6, "feet"),
  14716. weight: math.unit(90, "kg"),
  14717. name: "Front",
  14718. image: {
  14719. source: "./media/characters/mirja/front.svg",
  14720. extra: 1789 / 1683,
  14721. bottom: 0.05
  14722. }
  14723. },
  14724. frontDressed: {
  14725. height: math.unit(6, "feet"),
  14726. weight: math.unit(90, "lb"),
  14727. name: "Front (Dressed)",
  14728. image: {
  14729. source: "./media/characters/mirja/front-dressed.svg",
  14730. extra: 1789 / 1683,
  14731. bottom: 0.05
  14732. }
  14733. },
  14734. back: {
  14735. height: math.unit(6, "feet"),
  14736. weight: math.unit(90, "lb"),
  14737. name: "Back",
  14738. image: {
  14739. source: "./media/characters/mirja/back.svg",
  14740. extra: 953 / 917,
  14741. bottom: 0.017
  14742. }
  14743. },
  14744. },
  14745. [
  14746. {
  14747. name: "\"Incognito\"",
  14748. height: math.unit(3, "meters")
  14749. },
  14750. {
  14751. name: "Strolling Size",
  14752. height: math.unit(15, "km")
  14753. },
  14754. {
  14755. name: "Larger Strolling Size",
  14756. height: math.unit(400, "km")
  14757. },
  14758. {
  14759. name: "Preferred Size",
  14760. height: math.unit(5000, "km")
  14761. },
  14762. {
  14763. name: "True Size",
  14764. height: math.unit(30657809462086840000000000000000, "parsecs"),
  14765. default: true
  14766. },
  14767. ]
  14768. ))
  14769. characterMakers.push(() => makeCharacter(
  14770. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  14771. {
  14772. front: {
  14773. height: math.unit(15, "feet"),
  14774. weight: math.unit(880, "kg"),
  14775. name: "Front",
  14776. image: {
  14777. source: "./media/characters/nightraver/front.svg",
  14778. extra: 2444 / 2160,
  14779. bottom: 0.027
  14780. }
  14781. },
  14782. back: {
  14783. height: math.unit(15, "feet"),
  14784. weight: math.unit(880, "kg"),
  14785. name: "Back",
  14786. image: {
  14787. source: "./media/characters/nightraver/back.svg",
  14788. extra: 2309 / 2180,
  14789. bottom: 0.005
  14790. }
  14791. },
  14792. sole: {
  14793. height: math.unit(2.878, "feet"),
  14794. name: "Sole",
  14795. image: {
  14796. source: "./media/characters/nightraver/sole.svg"
  14797. }
  14798. },
  14799. foot: {
  14800. height: math.unit(2.285, "feet"),
  14801. name: "Foot",
  14802. image: {
  14803. source: "./media/characters/nightraver/foot.svg"
  14804. }
  14805. },
  14806. maw: {
  14807. height: math.unit(2.67, "feet"),
  14808. name: "Maw",
  14809. image: {
  14810. source: "./media/characters/nightraver/maw.svg"
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Micro",
  14817. height: math.unit(1, "cm")
  14818. },
  14819. {
  14820. name: "Normal",
  14821. height: math.unit(15, "feet"),
  14822. default: true
  14823. },
  14824. {
  14825. name: "Macro",
  14826. height: math.unit(300, "feet")
  14827. },
  14828. {
  14829. name: "Megamacro",
  14830. height: math.unit(300, "miles")
  14831. },
  14832. {
  14833. name: "Gigamacro",
  14834. height: math.unit(10000, "miles")
  14835. },
  14836. ]
  14837. ))
  14838. characterMakers.push(() => makeCharacter(
  14839. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  14840. {
  14841. side: {
  14842. height: math.unit(2, "inches"),
  14843. weight: math.unit(5, "grams"),
  14844. name: "Side",
  14845. image: {
  14846. source: "./media/characters/arc/side.svg"
  14847. }
  14848. },
  14849. },
  14850. [
  14851. {
  14852. name: "Micro",
  14853. height: math.unit(2, "inches"),
  14854. default: true
  14855. },
  14856. ]
  14857. ))
  14858. characterMakers.push(() => makeCharacter(
  14859. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  14860. {
  14861. front: {
  14862. height: math.unit(1.1938, "meters"),
  14863. weight: math.unit(54, "kg"),
  14864. name: "Front",
  14865. image: {
  14866. source: "./media/characters/nebula-shahar/front.svg",
  14867. extra: 1642 / 1436,
  14868. bottom: 0.06
  14869. }
  14870. },
  14871. },
  14872. [
  14873. {
  14874. name: "Megamicro",
  14875. height: math.unit(0.3, "mm")
  14876. },
  14877. {
  14878. name: "Micro",
  14879. height: math.unit(3, "cm")
  14880. },
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(138, "cm"),
  14884. default: true
  14885. },
  14886. {
  14887. name: "Macro",
  14888. height: math.unit(30, "m")
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  14894. {
  14895. front: {
  14896. height: math.unit(5.24, "feet"),
  14897. weight: math.unit(150, "lb"),
  14898. name: "Front",
  14899. image: {
  14900. source: "./media/characters/shayla/front.svg",
  14901. extra: 1512 / 1414,
  14902. bottom: 0.01
  14903. }
  14904. },
  14905. back: {
  14906. height: math.unit(5.24, "feet"),
  14907. weight: math.unit(150, "lb"),
  14908. name: "Back",
  14909. image: {
  14910. source: "./media/characters/shayla/back.svg",
  14911. extra: 1512 / 1414
  14912. }
  14913. },
  14914. hand: {
  14915. height: math.unit(0.7781496062992126, "feet"),
  14916. name: "Hand",
  14917. image: {
  14918. source: "./media/characters/shayla/hand.svg"
  14919. }
  14920. },
  14921. foot: {
  14922. height: math.unit(1.4206036745406823, "feet"),
  14923. name: "Foot",
  14924. image: {
  14925. source: "./media/characters/shayla/foot.svg"
  14926. }
  14927. },
  14928. },
  14929. [
  14930. {
  14931. name: "Micro",
  14932. height: math.unit(0.32, "feet")
  14933. },
  14934. {
  14935. name: "Normal",
  14936. height: math.unit(5.24, "feet"),
  14937. default: true
  14938. },
  14939. {
  14940. name: "Macro",
  14941. height: math.unit(492.12, "feet")
  14942. },
  14943. {
  14944. name: "Megamacro",
  14945. height: math.unit(186.41, "miles")
  14946. },
  14947. ]
  14948. ))
  14949. characterMakers.push(() => makeCharacter(
  14950. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14951. {
  14952. front: {
  14953. height: math.unit(2.2, "m"),
  14954. weight: math.unit(120, "kg"),
  14955. name: "Front",
  14956. image: {
  14957. source: "./media/characters/pia-jr/front.svg",
  14958. extra: 1000 / 970,
  14959. bottom: 0.035
  14960. }
  14961. },
  14962. hand: {
  14963. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14964. name: "Hand",
  14965. image: {
  14966. source: "./media/characters/pia-jr/hand.svg"
  14967. }
  14968. },
  14969. paw: {
  14970. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14971. name: "Paw",
  14972. image: {
  14973. source: "./media/characters/pia-jr/paw.svg"
  14974. }
  14975. },
  14976. },
  14977. [
  14978. {
  14979. name: "Micro",
  14980. height: math.unit(1.2, "cm")
  14981. },
  14982. {
  14983. name: "Normal",
  14984. height: math.unit(2.2, "m"),
  14985. default: true
  14986. },
  14987. {
  14988. name: "Macro",
  14989. height: math.unit(180, "m")
  14990. },
  14991. {
  14992. name: "Megamacro",
  14993. height: math.unit(420, "km")
  14994. },
  14995. ]
  14996. ))
  14997. characterMakers.push(() => makeCharacter(
  14998. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14999. {
  15000. front: {
  15001. height: math.unit(2, "m"),
  15002. weight: math.unit(115, "kg"),
  15003. name: "Front",
  15004. image: {
  15005. source: "./media/characters/pia-sr/front.svg",
  15006. extra: 760 / 730,
  15007. bottom: 0.015
  15008. }
  15009. },
  15010. back: {
  15011. height: math.unit(2, "m"),
  15012. weight: math.unit(115, "kg"),
  15013. name: "Back",
  15014. image: {
  15015. source: "./media/characters/pia-sr/back.svg",
  15016. extra: 760 / 730,
  15017. bottom: 0.01
  15018. }
  15019. },
  15020. hand: {
  15021. height: math.unit(0.89 * 6.56 / 6, "feet"),
  15022. name: "Hand",
  15023. image: {
  15024. source: "./media/characters/pia-sr/hand.svg"
  15025. }
  15026. },
  15027. foot: {
  15028. height: math.unit(1.83, "feet"),
  15029. name: "Foot",
  15030. image: {
  15031. source: "./media/characters/pia-sr/foot.svg"
  15032. }
  15033. },
  15034. },
  15035. [
  15036. {
  15037. name: "Micro",
  15038. height: math.unit(88, "mm")
  15039. },
  15040. {
  15041. name: "Normal",
  15042. height: math.unit(2, "m"),
  15043. default: true
  15044. },
  15045. {
  15046. name: "Macro",
  15047. height: math.unit(200, "m")
  15048. },
  15049. {
  15050. name: "Megamacro",
  15051. height: math.unit(420, "km")
  15052. },
  15053. ]
  15054. ))
  15055. characterMakers.push(() => makeCharacter(
  15056. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  15057. {
  15058. front: {
  15059. height: math.unit(8 + 2 / 12, "feet"),
  15060. weight: math.unit(300, "lb"),
  15061. name: "Front",
  15062. image: {
  15063. source: "./media/characters/kibibyte/front.svg",
  15064. extra: 2221 / 2098,
  15065. bottom: 0.04
  15066. }
  15067. },
  15068. },
  15069. [
  15070. {
  15071. name: "Normal",
  15072. height: math.unit(8 + 2 / 12, "feet"),
  15073. default: true
  15074. },
  15075. {
  15076. name: "Socialable Macro",
  15077. height: math.unit(50, "feet")
  15078. },
  15079. {
  15080. name: "Macro",
  15081. height: math.unit(300, "feet")
  15082. },
  15083. {
  15084. name: "Megamacro",
  15085. height: math.unit(500, "miles")
  15086. },
  15087. ]
  15088. ))
  15089. characterMakers.push(() => makeCharacter(
  15090. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  15091. {
  15092. front: {
  15093. height: math.unit(6, "feet"),
  15094. weight: math.unit(150, "lb"),
  15095. name: "Front",
  15096. image: {
  15097. source: "./media/characters/felix/front.svg",
  15098. extra: 762 / 722,
  15099. bottom: 0.02
  15100. }
  15101. },
  15102. frontClothed: {
  15103. height: math.unit(6, "feet"),
  15104. weight: math.unit(150, "lb"),
  15105. name: "Front (Clothed)",
  15106. image: {
  15107. source: "./media/characters/felix/front-clothed.svg",
  15108. extra: 762 / 722,
  15109. bottom: 0.02
  15110. }
  15111. },
  15112. },
  15113. [
  15114. {
  15115. name: "Normal",
  15116. height: math.unit(6 + 8 / 12, "feet"),
  15117. default: true
  15118. },
  15119. {
  15120. name: "Macro",
  15121. height: math.unit(2600, "feet")
  15122. },
  15123. {
  15124. name: "Megamacro",
  15125. height: math.unit(450, "miles")
  15126. },
  15127. ]
  15128. ))
  15129. characterMakers.push(() => makeCharacter(
  15130. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  15131. {
  15132. front: {
  15133. height: math.unit(6 + 1 / 12, "feet"),
  15134. weight: math.unit(250, "lb"),
  15135. name: "Front",
  15136. image: {
  15137. source: "./media/characters/tobo/front.svg",
  15138. extra: 608 / 586,
  15139. bottom: 0.023
  15140. }
  15141. },
  15142. back: {
  15143. height: math.unit(6 + 1 / 12, "feet"),
  15144. weight: math.unit(250, "lb"),
  15145. name: "Back",
  15146. image: {
  15147. source: "./media/characters/tobo/back.svg",
  15148. extra: 608 / 586
  15149. }
  15150. },
  15151. },
  15152. [
  15153. {
  15154. name: "Nano",
  15155. height: math.unit(2, "nm")
  15156. },
  15157. {
  15158. name: "Megamicro",
  15159. height: math.unit(0.1, "mm")
  15160. },
  15161. {
  15162. name: "Micro",
  15163. height: math.unit(1, "inch"),
  15164. default: true
  15165. },
  15166. {
  15167. name: "Human-sized",
  15168. height: math.unit(6 + 1 / 12, "feet")
  15169. },
  15170. {
  15171. name: "Macro",
  15172. height: math.unit(250, "feet")
  15173. },
  15174. {
  15175. name: "Megamacro",
  15176. height: math.unit(75, "miles")
  15177. },
  15178. {
  15179. name: "Texas-sized",
  15180. height: math.unit(750, "miles")
  15181. },
  15182. {
  15183. name: "Teramacro",
  15184. height: math.unit(50000, "miles")
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(6, "feet"),
  15193. weight: math.unit(269, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/danny-kapowsky/front.svg",
  15197. extra: 766 / 736,
  15198. bottom: 0.044
  15199. }
  15200. },
  15201. back: {
  15202. height: math.unit(6, "feet"),
  15203. weight: math.unit(269, "lb"),
  15204. name: "Back",
  15205. image: {
  15206. source: "./media/characters/danny-kapowsky/back.svg",
  15207. extra: 797 / 760,
  15208. bottom: 0.025
  15209. }
  15210. },
  15211. },
  15212. [
  15213. {
  15214. name: "Macro",
  15215. height: math.unit(150, "feet"),
  15216. default: true
  15217. },
  15218. {
  15219. name: "Macro+",
  15220. height: math.unit(200, "feet")
  15221. },
  15222. {
  15223. name: "Macro++",
  15224. height: math.unit(300, "feet")
  15225. },
  15226. {
  15227. name: "Macro+++",
  15228. height: math.unit(400, "feet")
  15229. },
  15230. ]
  15231. ))
  15232. characterMakers.push(() => makeCharacter(
  15233. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  15234. {
  15235. side: {
  15236. height: math.unit(6, "feet"),
  15237. weight: math.unit(170, "lb"),
  15238. name: "Side",
  15239. image: {
  15240. source: "./media/characters/finn/side.svg",
  15241. extra: 1953 / 1807,
  15242. bottom: 0.057
  15243. }
  15244. },
  15245. },
  15246. [
  15247. {
  15248. name: "Megamacro",
  15249. height: math.unit(14445, "feet"),
  15250. default: true
  15251. },
  15252. ]
  15253. ))
  15254. characterMakers.push(() => makeCharacter(
  15255. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  15256. {
  15257. front: {
  15258. height: math.unit(5 + 6 / 12, "feet"),
  15259. weight: math.unit(125, "lb"),
  15260. name: "Front",
  15261. image: {
  15262. source: "./media/characters/roy/front.svg",
  15263. extra: 1,
  15264. bottom: 0.11
  15265. }
  15266. },
  15267. },
  15268. [
  15269. {
  15270. name: "Micro",
  15271. height: math.unit(3, "inches"),
  15272. default: true
  15273. },
  15274. {
  15275. name: "Normal",
  15276. height: math.unit(5 + 6 / 12, "feet")
  15277. },
  15278. {
  15279. name: "Lesser Macro",
  15280. height: math.unit(60, "feet")
  15281. },
  15282. {
  15283. name: "Greater Macro",
  15284. height: math.unit(120, "feet")
  15285. },
  15286. ]
  15287. ))
  15288. characterMakers.push(() => makeCharacter(
  15289. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  15290. {
  15291. front: {
  15292. height: math.unit(6, "feet"),
  15293. weight: math.unit(100, "lb"),
  15294. name: "Front",
  15295. image: {
  15296. source: "./media/characters/aevsivs/front.svg",
  15297. extra: 1,
  15298. bottom: 0.03
  15299. }
  15300. },
  15301. back: {
  15302. height: math.unit(6, "feet"),
  15303. weight: math.unit(100, "lb"),
  15304. name: "Back",
  15305. image: {
  15306. source: "./media/characters/aevsivs/back.svg"
  15307. }
  15308. },
  15309. },
  15310. [
  15311. {
  15312. name: "Micro",
  15313. height: math.unit(2, "inches"),
  15314. default: true
  15315. },
  15316. {
  15317. name: "Normal",
  15318. height: math.unit(5, "feet")
  15319. },
  15320. ]
  15321. ))
  15322. characterMakers.push(() => makeCharacter(
  15323. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  15324. {
  15325. front: {
  15326. height: math.unit(5 + 7 / 12, "feet"),
  15327. weight: math.unit(159, "lb"),
  15328. name: "Front",
  15329. image: {
  15330. source: "./media/characters/hildegard/front.svg",
  15331. extra: 289 / 269,
  15332. bottom: 7.63 / 297.8
  15333. }
  15334. },
  15335. back: {
  15336. height: math.unit(5 + 7 / 12, "feet"),
  15337. weight: math.unit(159, "lb"),
  15338. name: "Back",
  15339. image: {
  15340. source: "./media/characters/hildegard/back.svg",
  15341. extra: 280 / 260,
  15342. bottom: 2.3 / 282
  15343. }
  15344. },
  15345. },
  15346. [
  15347. {
  15348. name: "Normal",
  15349. height: math.unit(5 + 7 / 12, "feet"),
  15350. default: true
  15351. },
  15352. ]
  15353. ))
  15354. characterMakers.push(() => makeCharacter(
  15355. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  15356. {
  15357. bernard: {
  15358. height: math.unit(2 + 7 / 12, "feet"),
  15359. weight: math.unit(66, "lb"),
  15360. name: "Bernard",
  15361. rename: true,
  15362. image: {
  15363. source: "./media/characters/bernard-wilder/bernard.svg",
  15364. extra: 192 / 128,
  15365. bottom: 0.05
  15366. }
  15367. },
  15368. wilder: {
  15369. height: math.unit(5 + 8 / 12, "feet"),
  15370. weight: math.unit(143, "lb"),
  15371. name: "Wilder",
  15372. rename: true,
  15373. image: {
  15374. source: "./media/characters/bernard-wilder/wilder.svg",
  15375. extra: 361 / 312,
  15376. bottom: 0.02
  15377. }
  15378. },
  15379. },
  15380. [
  15381. {
  15382. name: "Normal",
  15383. height: math.unit(2 + 7 / 12, "feet"),
  15384. default: true
  15385. },
  15386. ]
  15387. ))
  15388. characterMakers.push(() => makeCharacter(
  15389. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  15390. {
  15391. anthro: {
  15392. height: math.unit(6 + 1 / 12, "feet"),
  15393. weight: math.unit(155, "lb"),
  15394. name: "Anthro",
  15395. image: {
  15396. source: "./media/characters/hearth/anthro.svg",
  15397. extra: 1178/1136,
  15398. bottom: 28/1206
  15399. }
  15400. },
  15401. feral: {
  15402. height: math.unit(3.78, "feet"),
  15403. weight: math.unit(35, "kg"),
  15404. name: "Feral",
  15405. image: {
  15406. source: "./media/characters/hearth/feral.svg",
  15407. extra: 153 / 135,
  15408. bottom: 0.03
  15409. }
  15410. },
  15411. },
  15412. [
  15413. {
  15414. name: "Normal",
  15415. height: math.unit(6 + 1 / 12, "feet"),
  15416. default: true
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(182, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/ingrid/front.svg",
  15429. extra: 294 / 268,
  15430. bottom: 0.027
  15431. }
  15432. },
  15433. },
  15434. [
  15435. {
  15436. name: "Normal",
  15437. height: math.unit(6, "feet"),
  15438. default: true
  15439. },
  15440. ]
  15441. ))
  15442. characterMakers.push(() => makeCharacter(
  15443. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  15444. {
  15445. eevee: {
  15446. height: math.unit(2 + 10 / 12, "feet"),
  15447. weight: math.unit(86, "lb"),
  15448. name: "Malgam",
  15449. image: {
  15450. source: "./media/characters/malgam/eevee.svg",
  15451. extra: 952/784,
  15452. bottom: 38/990
  15453. }
  15454. },
  15455. sylveon: {
  15456. height: math.unit(4, "feet"),
  15457. weight: math.unit(101, "lb"),
  15458. name: "Future Malgam",
  15459. rename: true,
  15460. image: {
  15461. source: "./media/characters/malgam/sylveon.svg",
  15462. extra: 371 / 325,
  15463. bottom: 0.015
  15464. }
  15465. },
  15466. gigantamax: {
  15467. height: math.unit(50, "feet"),
  15468. name: "Gigantamax Malgam",
  15469. rename: true,
  15470. image: {
  15471. source: "./media/characters/malgam/gigantamax.svg"
  15472. }
  15473. },
  15474. },
  15475. [
  15476. {
  15477. name: "Normal",
  15478. height: math.unit(2 + 10 / 12, "feet"),
  15479. default: true
  15480. },
  15481. ]
  15482. ))
  15483. characterMakers.push(() => makeCharacter(
  15484. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  15485. {
  15486. front: {
  15487. height: math.unit(5 + 11 / 12, "feet"),
  15488. weight: math.unit(188, "lb"),
  15489. name: "Front",
  15490. image: {
  15491. source: "./media/characters/fleur/front.svg",
  15492. extra: 309 / 283,
  15493. bottom: 0.007
  15494. }
  15495. },
  15496. },
  15497. [
  15498. {
  15499. name: "Normal",
  15500. height: math.unit(5 + 11 / 12, "feet"),
  15501. default: true
  15502. },
  15503. ]
  15504. ))
  15505. characterMakers.push(() => makeCharacter(
  15506. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  15507. {
  15508. front: {
  15509. height: math.unit(5 + 4 / 12, "feet"),
  15510. weight: math.unit(122, "lb"),
  15511. name: "Front",
  15512. image: {
  15513. source: "./media/characters/jude/front.svg",
  15514. extra: 288 / 273,
  15515. bottom: 0.03
  15516. }
  15517. },
  15518. },
  15519. [
  15520. {
  15521. name: "Normal",
  15522. height: math.unit(5 + 4 / 12, "feet"),
  15523. default: true
  15524. },
  15525. ]
  15526. ))
  15527. characterMakers.push(() => makeCharacter(
  15528. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  15529. {
  15530. front: {
  15531. height: math.unit(5 + 11 / 12, "feet"),
  15532. weight: math.unit(190, "lb"),
  15533. name: "Front",
  15534. image: {
  15535. source: "./media/characters/seara/front.svg",
  15536. extra: 1,
  15537. bottom: 0.05
  15538. }
  15539. },
  15540. },
  15541. [
  15542. {
  15543. name: "Normal",
  15544. height: math.unit(5 + 11 / 12, "feet"),
  15545. default: true
  15546. },
  15547. ]
  15548. ))
  15549. characterMakers.push(() => makeCharacter(
  15550. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  15551. {
  15552. front: {
  15553. height: math.unit(16 + 5 / 12, "feet"),
  15554. weight: math.unit(524, "lb"),
  15555. name: "Front",
  15556. image: {
  15557. source: "./media/characters/caspian/front.svg",
  15558. extra: 1,
  15559. bottom: 0.04
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Normal",
  15566. height: math.unit(16 + 5 / 12, "feet"),
  15567. default: true
  15568. },
  15569. ]
  15570. ))
  15571. characterMakers.push(() => makeCharacter(
  15572. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  15573. {
  15574. front: {
  15575. height: math.unit(5 + 7 / 12, "feet"),
  15576. weight: math.unit(170, "lb"),
  15577. name: "Front",
  15578. image: {
  15579. source: "./media/characters/mika/front.svg",
  15580. extra: 1,
  15581. bottom: 0.016
  15582. }
  15583. },
  15584. },
  15585. [
  15586. {
  15587. name: "Normal",
  15588. height: math.unit(5 + 7 / 12, "feet"),
  15589. default: true
  15590. },
  15591. ]
  15592. ))
  15593. characterMakers.push(() => makeCharacter(
  15594. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  15595. {
  15596. front: {
  15597. height: math.unit(6 + 2 / 12, "feet"),
  15598. weight: math.unit(268, "lb"),
  15599. name: "Front",
  15600. image: {
  15601. source: "./media/characters/sol/front.svg",
  15602. extra: 247 / 231,
  15603. bottom: 0.05
  15604. }
  15605. },
  15606. },
  15607. [
  15608. {
  15609. name: "Normal",
  15610. height: math.unit(6 + 2 / 12, "feet"),
  15611. default: true
  15612. },
  15613. ]
  15614. ))
  15615. characterMakers.push(() => makeCharacter(
  15616. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  15617. {
  15618. buizel: {
  15619. height: math.unit(2 + 5 / 12, "feet"),
  15620. weight: math.unit(87, "lb"),
  15621. name: "Front",
  15622. image: {
  15623. source: "./media/characters/umiko/buizel.svg",
  15624. extra: 172 / 157,
  15625. bottom: 0.01
  15626. },
  15627. form: "buizel",
  15628. default: true
  15629. },
  15630. floatzel: {
  15631. height: math.unit(5 + 9 / 12, "feet"),
  15632. weight: math.unit(250, "lb"),
  15633. name: "Front",
  15634. image: {
  15635. source: "./media/characters/umiko/floatzel.svg",
  15636. extra: 1076/1006,
  15637. bottom: 15/1091
  15638. },
  15639. form: "floatzel",
  15640. default: true
  15641. },
  15642. },
  15643. [
  15644. {
  15645. name: "Normal",
  15646. height: math.unit(2 + 5 / 12, "feet"),
  15647. form: "buizel",
  15648. default: true
  15649. },
  15650. {
  15651. name: "Normal",
  15652. height: math.unit(5 + 9 / 12, "feet"),
  15653. form: "floatzel",
  15654. default: true
  15655. },
  15656. ],
  15657. {
  15658. "buizel": {
  15659. name: "Buizel"
  15660. },
  15661. "floatzel": {
  15662. name: "Floatzel",
  15663. default: true
  15664. }
  15665. }
  15666. ))
  15667. characterMakers.push(() => makeCharacter(
  15668. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  15669. {
  15670. front: {
  15671. height: math.unit(6 + 2 / 12, "feet"),
  15672. weight: math.unit(146, "lb"),
  15673. name: "Front",
  15674. image: {
  15675. source: "./media/characters/iliac/front.svg",
  15676. extra: 389 / 365,
  15677. bottom: 0.035
  15678. }
  15679. },
  15680. },
  15681. [
  15682. {
  15683. name: "Normal",
  15684. height: math.unit(6 + 2 / 12, "feet"),
  15685. default: true
  15686. },
  15687. ]
  15688. ))
  15689. characterMakers.push(() => makeCharacter(
  15690. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  15691. {
  15692. front: {
  15693. height: math.unit(6, "feet"),
  15694. weight: math.unit(170, "lb"),
  15695. name: "Front",
  15696. image: {
  15697. source: "./media/characters/topaz/front.svg",
  15698. extra: 317 / 303,
  15699. bottom: 0.055
  15700. }
  15701. },
  15702. },
  15703. [
  15704. {
  15705. name: "Normal",
  15706. height: math.unit(6, "feet"),
  15707. default: true
  15708. },
  15709. ]
  15710. ))
  15711. characterMakers.push(() => makeCharacter(
  15712. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  15713. {
  15714. front: {
  15715. height: math.unit(5 + 11 / 12, "feet"),
  15716. weight: math.unit(144, "lb"),
  15717. name: "Front",
  15718. image: {
  15719. source: "./media/characters/gabriel/front.svg",
  15720. extra: 285 / 262,
  15721. bottom: 0.004
  15722. }
  15723. },
  15724. },
  15725. [
  15726. {
  15727. name: "Normal",
  15728. height: math.unit(5 + 11 / 12, "feet"),
  15729. default: true
  15730. },
  15731. ]
  15732. ))
  15733. characterMakers.push(() => makeCharacter(
  15734. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  15735. {
  15736. side: {
  15737. height: math.unit(6 + 5 / 12, "feet"),
  15738. weight: math.unit(300, "lb"),
  15739. name: "Side",
  15740. image: {
  15741. source: "./media/characters/tempest-suicune/side.svg",
  15742. extra: 195 / 154,
  15743. bottom: 0.04
  15744. }
  15745. },
  15746. },
  15747. [
  15748. {
  15749. name: "Normal",
  15750. height: math.unit(6 + 5 / 12, "feet"),
  15751. default: true
  15752. },
  15753. ]
  15754. ))
  15755. characterMakers.push(() => makeCharacter(
  15756. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  15757. {
  15758. front: {
  15759. height: math.unit(7 + 2 / 12, "feet"),
  15760. weight: math.unit(322, "lb"),
  15761. name: "Front",
  15762. image: {
  15763. source: "./media/characters/vulcan/front.svg",
  15764. extra: 154 / 147,
  15765. bottom: 0.04
  15766. }
  15767. },
  15768. },
  15769. [
  15770. {
  15771. name: "Normal",
  15772. height: math.unit(7 + 2 / 12, "feet"),
  15773. default: true
  15774. },
  15775. ]
  15776. ))
  15777. characterMakers.push(() => makeCharacter(
  15778. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  15779. {
  15780. front: {
  15781. height: math.unit(5 + 10 / 12, "feet"),
  15782. weight: math.unit(264, "lb"),
  15783. name: "Front",
  15784. image: {
  15785. source: "./media/characters/gault/front.svg",
  15786. extra: 161 / 140,
  15787. bottom: 0.028
  15788. }
  15789. },
  15790. },
  15791. [
  15792. {
  15793. name: "Normal",
  15794. height: math.unit(5 + 10 / 12, "feet"),
  15795. default: true
  15796. },
  15797. ]
  15798. ))
  15799. characterMakers.push(() => makeCharacter(
  15800. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  15801. {
  15802. front: {
  15803. height: math.unit(6, "feet"),
  15804. weight: math.unit(150, "lb"),
  15805. name: "Front",
  15806. image: {
  15807. source: "./media/characters/shard/front.svg",
  15808. extra: 273 / 238,
  15809. bottom: 0.02
  15810. }
  15811. },
  15812. },
  15813. [
  15814. {
  15815. name: "Normal",
  15816. height: math.unit(3 + 6 / 12, "feet"),
  15817. default: true
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  15823. {
  15824. front: {
  15825. height: math.unit(5 + 11 / 12, "feet"),
  15826. weight: math.unit(146, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/ashe/front.svg",
  15830. extra: 400 / 373,
  15831. bottom: 0.01
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(5 + 11 / 12, "feet"),
  15839. default: true
  15840. },
  15841. ]
  15842. ))
  15843. characterMakers.push(() => makeCharacter(
  15844. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  15845. {
  15846. front: {
  15847. height: math.unit(5 + 5 / 12, "feet"),
  15848. weight: math.unit(135, "lb"),
  15849. name: "Front",
  15850. image: {
  15851. source: "./media/characters/beatrix/front.svg",
  15852. extra: 392 / 379,
  15853. bottom: 0.01
  15854. }
  15855. },
  15856. },
  15857. [
  15858. {
  15859. name: "Normal",
  15860. height: math.unit(6, "feet"),
  15861. default: true
  15862. },
  15863. ]
  15864. ))
  15865. characterMakers.push(() => makeCharacter(
  15866. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  15867. {
  15868. front: {
  15869. height: math.unit(6 + 2/12, "feet"),
  15870. weight: math.unit(135, "lb"),
  15871. name: "Front",
  15872. image: {
  15873. source: "./media/characters/ignatius/front.svg",
  15874. extra: 1380/1259,
  15875. bottom: 27/1407
  15876. }
  15877. },
  15878. },
  15879. [
  15880. {
  15881. name: "Normal",
  15882. height: math.unit(6 + 2/12, "feet"),
  15883. default: true
  15884. },
  15885. ]
  15886. ))
  15887. characterMakers.push(() => makeCharacter(
  15888. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  15889. {
  15890. front: {
  15891. height: math.unit(6 + 2 / 12, "feet"),
  15892. weight: math.unit(138, "lb"),
  15893. name: "Front",
  15894. image: {
  15895. source: "./media/characters/mei-li/front.svg",
  15896. extra: 237 / 229,
  15897. bottom: 0.03
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Normal",
  15904. height: math.unit(6 + 2 / 12, "feet"),
  15905. default: true
  15906. },
  15907. ]
  15908. ))
  15909. characterMakers.push(() => makeCharacter(
  15910. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  15911. {
  15912. front: {
  15913. height: math.unit(2 + 4 / 12, "feet"),
  15914. weight: math.unit(62, "lb"),
  15915. name: "Front",
  15916. image: {
  15917. source: "./media/characters/puru/front.svg",
  15918. extra: 206 / 149,
  15919. bottom: 0.06
  15920. }
  15921. },
  15922. },
  15923. [
  15924. {
  15925. name: "Normal",
  15926. height: math.unit(2 + 4 / 12, "feet"),
  15927. default: true
  15928. },
  15929. ]
  15930. ))
  15931. characterMakers.push(() => makeCharacter(
  15932. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  15933. {
  15934. anthro: {
  15935. height: math.unit(5 + 8/12, "feet"),
  15936. weight: math.unit(200, "lb"),
  15937. energyNeed: math.unit(2000, "kcal"),
  15938. name: "Anthro",
  15939. image: {
  15940. source: "./media/characters/kee/anthro.svg",
  15941. extra: 3251/3184,
  15942. bottom: 250/3501
  15943. }
  15944. },
  15945. taur: {
  15946. height: math.unit(11, "feet"),
  15947. weight: math.unit(500, "lb"),
  15948. energyNeed: math.unit(5000, "kcal"),
  15949. name: "Taur",
  15950. image: {
  15951. source: "./media/characters/kee/taur.svg",
  15952. extra: 1362/1320,
  15953. bottom: 83/1445
  15954. }
  15955. },
  15956. },
  15957. [
  15958. {
  15959. name: "Normal",
  15960. height: math.unit(5 + 8/12, "feet"),
  15961. default: true
  15962. },
  15963. {
  15964. name: "Macro",
  15965. height: math.unit(35, "feet")
  15966. },
  15967. ]
  15968. ))
  15969. characterMakers.push(() => makeCharacter(
  15970. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  15971. {
  15972. anthro: {
  15973. height: math.unit(7, "feet"),
  15974. weight: math.unit(190, "lb"),
  15975. name: "Anthro",
  15976. image: {
  15977. source: "./media/characters/cobalt-dracha/anthro.svg",
  15978. extra: 231 / 225,
  15979. bottom: 0.04
  15980. }
  15981. },
  15982. feral: {
  15983. height: math.unit(9 + 7 / 12, "feet"),
  15984. weight: math.unit(294, "lb"),
  15985. name: "Feral",
  15986. image: {
  15987. source: "./media/characters/cobalt-dracha/feral.svg",
  15988. extra: 692 / 633,
  15989. bottom: 0.05
  15990. }
  15991. },
  15992. },
  15993. [
  15994. {
  15995. name: "Normal",
  15996. height: math.unit(7, "feet"),
  15997. default: true
  15998. },
  15999. ]
  16000. ))
  16001. characterMakers.push(() => makeCharacter(
  16002. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  16003. {
  16004. fallen: {
  16005. height: math.unit(11 + 8 / 12, "feet"),
  16006. weight: math.unit(485, "lb"),
  16007. name: "Java (Fallen)",
  16008. rename: true,
  16009. image: {
  16010. source: "./media/characters/java/fallen.svg",
  16011. extra: 226 / 208,
  16012. bottom: 0.005
  16013. }
  16014. },
  16015. godkin: {
  16016. height: math.unit(10 + 6 / 12, "feet"),
  16017. weight: math.unit(328, "lb"),
  16018. name: "Java (Godkin)",
  16019. rename: true,
  16020. image: {
  16021. source: "./media/characters/java/godkin.svg",
  16022. extra: 1104/1068,
  16023. bottom: 36/1140
  16024. }
  16025. },
  16026. },
  16027. [
  16028. {
  16029. name: "Normal",
  16030. height: math.unit(11 + 8 / 12, "feet"),
  16031. default: true
  16032. },
  16033. ]
  16034. ))
  16035. characterMakers.push(() => makeCharacter(
  16036. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  16037. {
  16038. front: {
  16039. height: math.unit(5 + 9 / 12, "feet"),
  16040. weight: math.unit(170, "lb"),
  16041. name: "Front",
  16042. image: {
  16043. source: "./media/characters/purna/front.svg",
  16044. extra: 239 / 229,
  16045. bottom: 0.01
  16046. }
  16047. },
  16048. },
  16049. [
  16050. {
  16051. name: "Normal",
  16052. height: math.unit(5 + 9 / 12, "feet"),
  16053. default: true
  16054. },
  16055. ]
  16056. ))
  16057. characterMakers.push(() => makeCharacter(
  16058. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  16059. {
  16060. front: {
  16061. height: math.unit(5 + 9 / 12, "feet"),
  16062. weight: math.unit(142, "lb"),
  16063. name: "Front",
  16064. image: {
  16065. source: "./media/characters/kuva/front.svg",
  16066. extra: 281 / 271,
  16067. bottom: 0.006
  16068. }
  16069. },
  16070. },
  16071. [
  16072. {
  16073. name: "Normal",
  16074. height: math.unit(5 + 9 / 12, "feet"),
  16075. default: true
  16076. },
  16077. ]
  16078. ))
  16079. characterMakers.push(() => makeCharacter(
  16080. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  16081. {
  16082. anthro: {
  16083. height: math.unit(9 + 2 / 12, "feet"),
  16084. weight: math.unit(270, "lb"),
  16085. name: "Anthro",
  16086. image: {
  16087. source: "./media/characters/embra/anthro.svg",
  16088. extra: 200 / 187,
  16089. bottom: 0.02
  16090. }
  16091. },
  16092. feral: {
  16093. height: math.unit(18 + 8 / 12, "feet"),
  16094. weight: math.unit(576, "lb"),
  16095. name: "Feral",
  16096. image: {
  16097. source: "./media/characters/embra/feral.svg",
  16098. extra: 152 / 137,
  16099. bottom: 0.037
  16100. }
  16101. },
  16102. },
  16103. [
  16104. {
  16105. name: "Normal",
  16106. height: math.unit(9 + 2 / 12, "feet"),
  16107. default: true
  16108. },
  16109. ]
  16110. ))
  16111. characterMakers.push(() => makeCharacter(
  16112. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  16113. {
  16114. anthro: {
  16115. height: math.unit(10 + 9 / 12, "feet"),
  16116. weight: math.unit(224, "lb"),
  16117. name: "Anthro",
  16118. image: {
  16119. source: "./media/characters/grottos/anthro.svg",
  16120. extra: 350 / 332,
  16121. bottom: 0.045
  16122. }
  16123. },
  16124. feral: {
  16125. height: math.unit(20 + 7 / 12, "feet"),
  16126. weight: math.unit(629, "lb"),
  16127. name: "Feral",
  16128. image: {
  16129. source: "./media/characters/grottos/feral.svg",
  16130. extra: 207 / 190,
  16131. bottom: 0.05
  16132. }
  16133. },
  16134. },
  16135. [
  16136. {
  16137. name: "Normal",
  16138. height: math.unit(10 + 9 / 12, "feet"),
  16139. default: true
  16140. },
  16141. ]
  16142. ))
  16143. characterMakers.push(() => makeCharacter(
  16144. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  16145. {
  16146. anthro: {
  16147. height: math.unit(9 + 6 / 12, "feet"),
  16148. weight: math.unit(298, "lb"),
  16149. name: "Anthro",
  16150. image: {
  16151. source: "./media/characters/frifna/anthro.svg",
  16152. extra: 282 / 269,
  16153. bottom: 0.015
  16154. }
  16155. },
  16156. feral: {
  16157. height: math.unit(16 + 2 / 12, "feet"),
  16158. weight: math.unit(624, "lb"),
  16159. name: "Feral",
  16160. image: {
  16161. source: "./media/characters/frifna/feral.svg"
  16162. }
  16163. },
  16164. },
  16165. [
  16166. {
  16167. name: "Normal",
  16168. height: math.unit(9 + 6 / 12, "feet"),
  16169. default: true
  16170. },
  16171. ]
  16172. ))
  16173. characterMakers.push(() => makeCharacter(
  16174. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  16175. {
  16176. front: {
  16177. height: math.unit(6 + 2 / 12, "feet"),
  16178. weight: math.unit(168, "lb"),
  16179. name: "Front",
  16180. image: {
  16181. source: "./media/characters/elise/front.svg",
  16182. extra: 276 / 271
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(6 + 2 / 12, "feet"),
  16190. default: true
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(5 + 10 / 12, "feet"),
  16199. weight: math.unit(210, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/glade/front.svg",
  16203. extra: 258 / 247,
  16204. bottom: 0.008
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(5 + 10 / 12, "feet"),
  16212. default: true
  16213. },
  16214. ]
  16215. ))
  16216. characterMakers.push(() => makeCharacter(
  16217. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  16218. {
  16219. front: {
  16220. height: math.unit(5 + 10 / 12, "feet"),
  16221. weight: math.unit(129, "lb"),
  16222. name: "Front",
  16223. image: {
  16224. source: "./media/characters/rina/front.svg",
  16225. extra: 266 / 255,
  16226. bottom: 0.005
  16227. }
  16228. },
  16229. },
  16230. [
  16231. {
  16232. name: "Normal",
  16233. height: math.unit(5 + 10 / 12, "feet"),
  16234. default: true
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  16240. {
  16241. front: {
  16242. height: math.unit(6 + 1 / 12, "feet"),
  16243. weight: math.unit(192, "lb"),
  16244. name: "Front",
  16245. image: {
  16246. source: "./media/characters/veronica/front.svg",
  16247. extra: 319 / 309,
  16248. bottom: 0.005
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Normal",
  16255. height: math.unit(6 + 1 / 12, "feet"),
  16256. default: true
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(9 + 3 / 12, "feet"),
  16265. weight: math.unit(1100, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/braxton/front.svg",
  16269. extra: 1057 / 984,
  16270. bottom: 0.05
  16271. }
  16272. },
  16273. },
  16274. [
  16275. {
  16276. name: "Normal",
  16277. height: math.unit(9 + 3 / 12, "feet")
  16278. },
  16279. {
  16280. name: "Giant",
  16281. height: math.unit(300, "feet"),
  16282. default: true
  16283. },
  16284. {
  16285. name: "Macro",
  16286. height: math.unit(700, "feet")
  16287. },
  16288. {
  16289. name: "Megamacro",
  16290. height: math.unit(6000, "feet")
  16291. },
  16292. ]
  16293. ))
  16294. characterMakers.push(() => makeCharacter(
  16295. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  16296. {
  16297. front: {
  16298. height: math.unit(6 + 7 / 12, "feet"),
  16299. weight: math.unit(150, "lb"),
  16300. name: "Front",
  16301. image: {
  16302. source: "./media/characters/blue-feyonics/front.svg",
  16303. extra: 1403 / 1306,
  16304. bottom: 0.047
  16305. }
  16306. },
  16307. },
  16308. [
  16309. {
  16310. name: "Normal",
  16311. height: math.unit(6 + 7 / 12, "feet"),
  16312. default: true
  16313. },
  16314. ]
  16315. ))
  16316. characterMakers.push(() => makeCharacter(
  16317. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  16318. {
  16319. front: {
  16320. height: math.unit(1.8, "meters"),
  16321. weight: math.unit(60, "kg"),
  16322. name: "Front",
  16323. image: {
  16324. source: "./media/characters/maxwell/front.svg",
  16325. extra: 2060 / 1873
  16326. }
  16327. },
  16328. },
  16329. [
  16330. {
  16331. name: "Micro",
  16332. height: math.unit(1, "mm")
  16333. },
  16334. {
  16335. name: "Normal",
  16336. height: math.unit(1.8, "meter"),
  16337. default: true
  16338. },
  16339. {
  16340. name: "Macro",
  16341. height: math.unit(30, "meters")
  16342. },
  16343. {
  16344. name: "Megamacro",
  16345. height: math.unit(10, "km")
  16346. },
  16347. ]
  16348. ))
  16349. characterMakers.push(() => makeCharacter(
  16350. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  16351. {
  16352. front: {
  16353. height: math.unit(6, "feet"),
  16354. weight: math.unit(150, "lb"),
  16355. name: "Front",
  16356. image: {
  16357. source: "./media/characters/jack/front.svg",
  16358. extra: 1754 / 1640,
  16359. bottom: 0.01
  16360. }
  16361. },
  16362. },
  16363. [
  16364. {
  16365. name: "Normal",
  16366. height: math.unit(80000, "feet"),
  16367. default: true
  16368. },
  16369. {
  16370. name: "Max size",
  16371. height: math.unit(10, "lightyears")
  16372. },
  16373. ]
  16374. ))
  16375. characterMakers.push(() => makeCharacter(
  16376. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  16377. {
  16378. urban: {
  16379. height: math.unit(5, "feet"),
  16380. weight: math.unit(240, "lb"),
  16381. name: "Urban",
  16382. image: {
  16383. source: "./media/characters/cafat/urban.svg",
  16384. extra: 1223/1126,
  16385. bottom: 205/1428
  16386. }
  16387. },
  16388. summer: {
  16389. height: math.unit(5, "feet"),
  16390. weight: math.unit(240, "lb"),
  16391. name: "Summer",
  16392. image: {
  16393. source: "./media/characters/cafat/summer.svg",
  16394. extra: 1223/1126,
  16395. bottom: 205/1428
  16396. }
  16397. },
  16398. winter: {
  16399. height: math.unit(5, "feet"),
  16400. weight: math.unit(240, "lb"),
  16401. name: "Winter",
  16402. image: {
  16403. source: "./media/characters/cafat/winter.svg",
  16404. extra: 1223/1126,
  16405. bottom: 205/1428
  16406. }
  16407. },
  16408. lingerie: {
  16409. height: math.unit(5, "feet"),
  16410. weight: math.unit(240, "lb"),
  16411. name: "Lingerie",
  16412. image: {
  16413. source: "./media/characters/cafat/lingerie.svg",
  16414. extra: 1223/1126,
  16415. bottom: 205/1428
  16416. }
  16417. },
  16418. upright: {
  16419. height: math.unit(6.3, "feet"),
  16420. weight: math.unit(240, "lb"),
  16421. name: "Upright",
  16422. image: {
  16423. source: "./media/characters/cafat/upright.svg",
  16424. bottom: 0.01
  16425. }
  16426. },
  16427. uprightFull: {
  16428. height: math.unit(6.3, "feet"),
  16429. weight: math.unit(240, "lb"),
  16430. name: "Upright (Full)",
  16431. image: {
  16432. source: "./media/characters/cafat/upright-full.svg",
  16433. bottom: 0.01
  16434. }
  16435. },
  16436. },
  16437. [
  16438. {
  16439. name: "Small",
  16440. height: math.unit(5, "feet"),
  16441. default: true
  16442. },
  16443. {
  16444. name: "Large",
  16445. height: math.unit(13, "feet")
  16446. },
  16447. ]
  16448. ))
  16449. characterMakers.push(() => makeCharacter(
  16450. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  16451. {
  16452. front: {
  16453. height: math.unit(6, "feet"),
  16454. weight: math.unit(150, "lb"),
  16455. name: "Front",
  16456. image: {
  16457. source: "./media/characters/verin-raharra/front.svg",
  16458. extra: 5019 / 4835,
  16459. bottom: 0.023
  16460. }
  16461. },
  16462. },
  16463. [
  16464. {
  16465. name: "Normal",
  16466. height: math.unit(7 + 5 / 12, "feet"),
  16467. default: true
  16468. },
  16469. {
  16470. name: "Upsized",
  16471. height: math.unit(20, "feet")
  16472. },
  16473. ]
  16474. ))
  16475. characterMakers.push(() => makeCharacter(
  16476. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  16477. {
  16478. front: {
  16479. height: math.unit(7, "feet"),
  16480. weight: math.unit(230, "lb"),
  16481. name: "Front",
  16482. image: {
  16483. source: "./media/characters/nakata/front.svg",
  16484. extra: 1.005,
  16485. bottom: 0.01
  16486. }
  16487. },
  16488. },
  16489. [
  16490. {
  16491. name: "Normal",
  16492. height: math.unit(7, "feet"),
  16493. default: true
  16494. },
  16495. {
  16496. name: "Big",
  16497. height: math.unit(14, "feet")
  16498. },
  16499. {
  16500. name: "Macro",
  16501. height: math.unit(400, "feet")
  16502. },
  16503. ]
  16504. ))
  16505. characterMakers.push(() => makeCharacter(
  16506. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  16507. {
  16508. front: {
  16509. height: math.unit(4.91, "feet"),
  16510. weight: math.unit(100, "lb"),
  16511. name: "Front",
  16512. image: {
  16513. source: "./media/characters/lily/front.svg",
  16514. extra: 1585 / 1415,
  16515. bottom: 0.02
  16516. }
  16517. },
  16518. },
  16519. [
  16520. {
  16521. name: "Normal",
  16522. height: math.unit(4.91, "feet"),
  16523. default: true
  16524. },
  16525. ]
  16526. ))
  16527. characterMakers.push(() => makeCharacter(
  16528. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  16529. {
  16530. laying: {
  16531. height: math.unit(4 + 4 / 12, "feet"),
  16532. weight: math.unit(600, "lb"),
  16533. name: "Laying",
  16534. image: {
  16535. source: "./media/characters/sheila/laying.svg",
  16536. extra: 1333 / 1265,
  16537. bottom: 0.16
  16538. }
  16539. },
  16540. },
  16541. [
  16542. {
  16543. name: "Normal",
  16544. height: math.unit(4 + 4 / 12, "feet"),
  16545. default: true
  16546. },
  16547. ]
  16548. ))
  16549. characterMakers.push(() => makeCharacter(
  16550. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  16551. {
  16552. front: {
  16553. height: math.unit(6, "feet"),
  16554. weight: math.unit(190, "lb"),
  16555. name: "Front",
  16556. image: {
  16557. source: "./media/characters/sax/front.svg",
  16558. extra: 1187 / 973,
  16559. bottom: 0.042
  16560. }
  16561. },
  16562. },
  16563. [
  16564. {
  16565. name: "Micro",
  16566. height: math.unit(4, "inches"),
  16567. default: true
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  16573. {
  16574. front: {
  16575. height: math.unit(6, "feet"),
  16576. weight: math.unit(150, "lb"),
  16577. name: "Front",
  16578. image: {
  16579. source: "./media/characters/pandora/front.svg",
  16580. extra: 2720 / 2556,
  16581. bottom: 0.015
  16582. }
  16583. },
  16584. back: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(150, "lb"),
  16587. name: "Back",
  16588. image: {
  16589. source: "./media/characters/pandora/back.svg",
  16590. extra: 2720 / 2556,
  16591. bottom: 0.01
  16592. }
  16593. },
  16594. beans: {
  16595. height: math.unit(6 / 8, "feet"),
  16596. name: "Beans",
  16597. image: {
  16598. source: "./media/characters/pandora/beans.svg"
  16599. }
  16600. },
  16601. collar: {
  16602. height: math.unit(0.31, "feet"),
  16603. name: "Collar",
  16604. image: {
  16605. source: "./media/characters/pandora/collar.svg"
  16606. }
  16607. },
  16608. skirt: {
  16609. height: math.unit(6, "feet"),
  16610. weight: math.unit(150, "lb"),
  16611. name: "Skirt",
  16612. image: {
  16613. source: "./media/characters/pandora/skirt.svg",
  16614. extra: 1622 / 1525,
  16615. bottom: 0.015
  16616. }
  16617. },
  16618. hoodie: {
  16619. height: math.unit(6, "feet"),
  16620. weight: math.unit(150, "lb"),
  16621. name: "Hoodie",
  16622. image: {
  16623. source: "./media/characters/pandora/hoodie.svg",
  16624. extra: 1622 / 1525,
  16625. bottom: 0.015
  16626. }
  16627. },
  16628. casual: {
  16629. height: math.unit(6, "feet"),
  16630. weight: math.unit(150, "lb"),
  16631. name: "Casual",
  16632. image: {
  16633. source: "./media/characters/pandora/casual.svg",
  16634. extra: 1622 / 1525,
  16635. bottom: 0.015
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(6, "feet")
  16643. },
  16644. {
  16645. name: "Big Steppy",
  16646. height: math.unit(1, "km"),
  16647. default: true
  16648. },
  16649. {
  16650. name: "Galactic Steppy",
  16651. height: math.unit(2, "gigameters")
  16652. },
  16653. ]
  16654. ))
  16655. characterMakers.push(() => makeCharacter(
  16656. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  16657. {
  16658. side: {
  16659. height: math.unit(10, "feet"),
  16660. weight: math.unit(800, "kg"),
  16661. name: "Side",
  16662. image: {
  16663. source: "./media/characters/venio-darcony/side.svg",
  16664. extra: 1373 / 1003,
  16665. bottom: 0.037
  16666. }
  16667. },
  16668. front: {
  16669. height: math.unit(19, "feet"),
  16670. weight: math.unit(800, "kg"),
  16671. name: "Front",
  16672. image: {
  16673. source: "./media/characters/venio-darcony/front.svg"
  16674. }
  16675. },
  16676. back: {
  16677. height: math.unit(19, "feet"),
  16678. weight: math.unit(800, "kg"),
  16679. name: "Back",
  16680. image: {
  16681. source: "./media/characters/venio-darcony/back.svg"
  16682. }
  16683. },
  16684. sideNsfw: {
  16685. height: math.unit(10, "feet"),
  16686. weight: math.unit(800, "kg"),
  16687. name: "Side (NSFW)",
  16688. image: {
  16689. source: "./media/characters/venio-darcony/side-nsfw.svg",
  16690. extra: 1373 / 1003,
  16691. bottom: 0.037
  16692. }
  16693. },
  16694. frontNsfw: {
  16695. height: math.unit(19, "feet"),
  16696. weight: math.unit(800, "kg"),
  16697. name: "Front (NSFW)",
  16698. image: {
  16699. source: "./media/characters/venio-darcony/front-nsfw.svg"
  16700. }
  16701. },
  16702. backNsfw: {
  16703. height: math.unit(19, "feet"),
  16704. weight: math.unit(800, "kg"),
  16705. name: "Back (NSFW)",
  16706. image: {
  16707. source: "./media/characters/venio-darcony/back-nsfw.svg"
  16708. }
  16709. },
  16710. sideArmored: {
  16711. height: math.unit(10, "feet"),
  16712. weight: math.unit(800, "kg"),
  16713. name: "Side (Armored)",
  16714. image: {
  16715. source: "./media/characters/venio-darcony/side-armored.svg",
  16716. extra: 1373 / 1003,
  16717. bottom: 0.037
  16718. }
  16719. },
  16720. frontArmored: {
  16721. height: math.unit(19, "feet"),
  16722. weight: math.unit(900, "kg"),
  16723. name: "Front (Armored)",
  16724. image: {
  16725. source: "./media/characters/venio-darcony/front-armored.svg"
  16726. }
  16727. },
  16728. backArmored: {
  16729. height: math.unit(19, "feet"),
  16730. weight: math.unit(900, "kg"),
  16731. name: "Back (Armored)",
  16732. image: {
  16733. source: "./media/characters/venio-darcony/back-armored.svg"
  16734. }
  16735. },
  16736. sword: {
  16737. height: math.unit(10, "feet"),
  16738. weight: math.unit(50, "lb"),
  16739. name: "Sword",
  16740. image: {
  16741. source: "./media/characters/venio-darcony/sword.svg"
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(10, "feet")
  16749. },
  16750. {
  16751. name: "Macro",
  16752. height: math.unit(130, "feet"),
  16753. default: true
  16754. },
  16755. {
  16756. name: "Macro+",
  16757. height: math.unit(240, "feet")
  16758. },
  16759. ]
  16760. ))
  16761. characterMakers.push(() => makeCharacter(
  16762. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  16763. {
  16764. front: {
  16765. height: math.unit(6, "feet"),
  16766. weight: math.unit(150, "lb"),
  16767. name: "Front",
  16768. image: {
  16769. source: "./media/characters/veski/front.svg",
  16770. extra: 1299 / 1225,
  16771. bottom: 0.04
  16772. }
  16773. },
  16774. back: {
  16775. height: math.unit(6, "feet"),
  16776. weight: math.unit(150, "lb"),
  16777. name: "Back",
  16778. image: {
  16779. source: "./media/characters/veski/back.svg",
  16780. extra: 1299 / 1225,
  16781. bottom: 0.008
  16782. }
  16783. },
  16784. maw: {
  16785. height: math.unit(1.5 * 1.21, "feet"),
  16786. name: "Maw",
  16787. image: {
  16788. source: "./media/characters/veski/maw.svg"
  16789. }
  16790. },
  16791. },
  16792. [
  16793. {
  16794. name: "Macro",
  16795. height: math.unit(2, "km"),
  16796. default: true
  16797. },
  16798. ]
  16799. ))
  16800. characterMakers.push(() => makeCharacter(
  16801. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  16802. {
  16803. front: {
  16804. height: math.unit(5 + 7 / 12, "feet"),
  16805. name: "Front",
  16806. image: {
  16807. source: "./media/characters/isabelle/front.svg",
  16808. extra: 2130 / 1976,
  16809. bottom: 0.05
  16810. }
  16811. },
  16812. },
  16813. [
  16814. {
  16815. name: "Supermicro",
  16816. height: math.unit(10, "micrometers")
  16817. },
  16818. {
  16819. name: "Micro",
  16820. height: math.unit(1, "inch")
  16821. },
  16822. {
  16823. name: "Tiny",
  16824. height: math.unit(5, "inches")
  16825. },
  16826. {
  16827. name: "Standard",
  16828. height: math.unit(5 + 7 / 12, "inches")
  16829. },
  16830. {
  16831. name: "Macro",
  16832. height: math.unit(80, "meters"),
  16833. default: true
  16834. },
  16835. {
  16836. name: "Megamacro",
  16837. height: math.unit(250, "meters")
  16838. },
  16839. {
  16840. name: "Gigamacro",
  16841. height: math.unit(5, "km")
  16842. },
  16843. {
  16844. name: "Cosmic",
  16845. height: math.unit(2.5e6, "miles")
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(6, "feet"),
  16854. weight: math.unit(150, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/hanzo/front.svg",
  16858. extra: 374 / 344,
  16859. bottom: 0.02
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(8, "feet"),
  16867. default: true
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(7, "feet"),
  16876. weight: math.unit(130, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/anna/front.svg",
  16880. extra: 169 / 145,
  16881. bottom: 0.06
  16882. }
  16883. },
  16884. full: {
  16885. height: math.unit(4.96, "feet"),
  16886. weight: math.unit(220, "lb"),
  16887. name: "Full",
  16888. image: {
  16889. source: "./media/characters/anna/full.svg",
  16890. extra: 138 / 114,
  16891. bottom: 0.15
  16892. }
  16893. },
  16894. tongue: {
  16895. height: math.unit(2.53, "feet"),
  16896. name: "Tongue",
  16897. image: {
  16898. source: "./media/characters/anna/tongue.svg"
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(7, "feet"),
  16906. default: true
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  16912. {
  16913. front: {
  16914. height: math.unit(7, "feet"),
  16915. weight: math.unit(150, "lb"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/ian-corvid/front.svg",
  16919. extra: 150 / 142,
  16920. bottom: 0.02
  16921. }
  16922. },
  16923. back: {
  16924. height: math.unit(7, "feet"),
  16925. weight: math.unit(150, "lb"),
  16926. name: "Back",
  16927. image: {
  16928. source: "./media/characters/ian-corvid/back.svg",
  16929. extra: 150 / 143,
  16930. bottom: 0.01
  16931. }
  16932. },
  16933. stomping: {
  16934. height: math.unit(7, "feet"),
  16935. weight: math.unit(150, "lb"),
  16936. name: "Stomping",
  16937. image: {
  16938. source: "./media/characters/ian-corvid/stomping.svg",
  16939. extra: 76 / 72
  16940. }
  16941. },
  16942. sitting: {
  16943. height: math.unit(7 / 1.8, "feet"),
  16944. weight: math.unit(150, "lb"),
  16945. name: "Sitting",
  16946. image: {
  16947. source: "./media/characters/ian-corvid/sitting.svg",
  16948. extra: 1400 / 1269,
  16949. bottom: 0.15
  16950. }
  16951. },
  16952. },
  16953. [
  16954. {
  16955. name: "Tiny Microw",
  16956. height: math.unit(1, "inch")
  16957. },
  16958. {
  16959. name: "Microw",
  16960. height: math.unit(6, "inches")
  16961. },
  16962. {
  16963. name: "Crow",
  16964. height: math.unit(7 + 1 / 12, "feet"),
  16965. default: true
  16966. },
  16967. {
  16968. name: "Macrow",
  16969. height: math.unit(176, "feet")
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  16975. {
  16976. front: {
  16977. height: math.unit(5 + 7 / 12, "feet"),
  16978. weight: math.unit(147, "lb"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/natalie-kellon/front.svg",
  16982. extra: 1214 / 1141,
  16983. bottom: 0.02
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Micro",
  16990. height: math.unit(1 / 16, "inch")
  16991. },
  16992. {
  16993. name: "Tiny",
  16994. height: math.unit(4, "inches")
  16995. },
  16996. {
  16997. name: "Normal",
  16998. height: math.unit(5 + 7 / 12, "feet"),
  16999. default: true
  17000. },
  17001. {
  17002. name: "Amazon",
  17003. height: math.unit(12, "feet")
  17004. },
  17005. {
  17006. name: "Giantess",
  17007. height: math.unit(160, "meters")
  17008. },
  17009. {
  17010. name: "Titaness",
  17011. height: math.unit(800, "meters")
  17012. },
  17013. ]
  17014. ))
  17015. characterMakers.push(() => makeCharacter(
  17016. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  17017. {
  17018. front: {
  17019. height: math.unit(6, "feet"),
  17020. weight: math.unit(150, "lb"),
  17021. name: "Front",
  17022. image: {
  17023. source: "./media/characters/alluria/front.svg",
  17024. extra: 806 / 738,
  17025. bottom: 0.01
  17026. }
  17027. },
  17028. side: {
  17029. height: math.unit(6, "feet"),
  17030. weight: math.unit(150, "lb"),
  17031. name: "Side",
  17032. image: {
  17033. source: "./media/characters/alluria/side.svg",
  17034. extra: 800 / 750,
  17035. }
  17036. },
  17037. back: {
  17038. height: math.unit(6, "feet"),
  17039. weight: math.unit(150, "lb"),
  17040. name: "Back",
  17041. image: {
  17042. source: "./media/characters/alluria/back.svg",
  17043. extra: 806 / 738,
  17044. }
  17045. },
  17046. frontMaid: {
  17047. height: math.unit(6, "feet"),
  17048. weight: math.unit(150, "lb"),
  17049. name: "Front (Maid)",
  17050. image: {
  17051. source: "./media/characters/alluria/front-maid.svg",
  17052. extra: 806 / 738,
  17053. bottom: 0.01
  17054. }
  17055. },
  17056. sideMaid: {
  17057. height: math.unit(6, "feet"),
  17058. weight: math.unit(150, "lb"),
  17059. name: "Side (Maid)",
  17060. image: {
  17061. source: "./media/characters/alluria/side-maid.svg",
  17062. extra: 800 / 750,
  17063. bottom: 0.005
  17064. }
  17065. },
  17066. backMaid: {
  17067. height: math.unit(6, "feet"),
  17068. weight: math.unit(150, "lb"),
  17069. name: "Back (Maid)",
  17070. image: {
  17071. source: "./media/characters/alluria/back-maid.svg",
  17072. extra: 806 / 738,
  17073. }
  17074. },
  17075. },
  17076. [
  17077. {
  17078. name: "Micro",
  17079. height: math.unit(6, "inches"),
  17080. default: true
  17081. },
  17082. ]
  17083. ))
  17084. characterMakers.push(() => makeCharacter(
  17085. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  17086. {
  17087. front: {
  17088. height: math.unit(6, "feet"),
  17089. weight: math.unit(150, "lb"),
  17090. name: "Front",
  17091. image: {
  17092. source: "./media/characters/kyle/front.svg",
  17093. extra: 1069 / 962,
  17094. bottom: 77.228 / 1727.45
  17095. }
  17096. },
  17097. },
  17098. [
  17099. {
  17100. name: "Macro",
  17101. height: math.unit(150, "feet"),
  17102. default: true
  17103. },
  17104. ]
  17105. ))
  17106. characterMakers.push(() => makeCharacter(
  17107. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  17108. {
  17109. front: {
  17110. height: math.unit(6, "feet"),
  17111. weight: math.unit(300, "lb"),
  17112. name: "Front",
  17113. image: {
  17114. source: "./media/characters/duncan/front.svg",
  17115. extra: 1650 / 1482,
  17116. bottom: 0.05
  17117. }
  17118. },
  17119. },
  17120. [
  17121. {
  17122. name: "Macro",
  17123. height: math.unit(100, "feet"),
  17124. default: true
  17125. },
  17126. ]
  17127. ))
  17128. characterMakers.push(() => makeCharacter(
  17129. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  17130. {
  17131. front: {
  17132. height: math.unit(5 + 4 / 12, "feet"),
  17133. weight: math.unit(220, "lb"),
  17134. name: "Front",
  17135. image: {
  17136. source: "./media/characters/memory/front.svg",
  17137. extra: 3641 / 3545,
  17138. bottom: 0.03
  17139. }
  17140. },
  17141. back: {
  17142. height: math.unit(5 + 4 / 12, "feet"),
  17143. weight: math.unit(220, "lb"),
  17144. name: "Back",
  17145. image: {
  17146. source: "./media/characters/memory/back.svg",
  17147. extra: 3641 / 3545,
  17148. bottom: 0.025
  17149. }
  17150. },
  17151. frontSkirt: {
  17152. height: math.unit(5 + 4 / 12, "feet"),
  17153. weight: math.unit(220, "lb"),
  17154. name: "Front (Skirt)",
  17155. image: {
  17156. source: "./media/characters/memory/front-skirt.svg",
  17157. extra: 3641 / 3545,
  17158. bottom: 0.03
  17159. }
  17160. },
  17161. frontDress: {
  17162. height: math.unit(5 + 4 / 12, "feet"),
  17163. weight: math.unit(220, "lb"),
  17164. name: "Front (Dress)",
  17165. image: {
  17166. source: "./media/characters/memory/front-dress.svg",
  17167. extra: 3641 / 3545,
  17168. bottom: 0.03
  17169. }
  17170. },
  17171. },
  17172. [
  17173. {
  17174. name: "Micro",
  17175. height: math.unit(6, "inches"),
  17176. default: true
  17177. },
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(5 + 4 / 12, "feet")
  17181. },
  17182. ]
  17183. ))
  17184. characterMakers.push(() => makeCharacter(
  17185. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  17186. {
  17187. front: {
  17188. height: math.unit(4 + 11 / 12, "feet"),
  17189. weight: math.unit(100, "lb"),
  17190. name: "Front",
  17191. image: {
  17192. source: "./media/characters/luno/front.svg",
  17193. extra: 1535 / 1487,
  17194. bottom: 0.03
  17195. }
  17196. },
  17197. },
  17198. [
  17199. {
  17200. name: "Micro",
  17201. height: math.unit(3, "inches")
  17202. },
  17203. {
  17204. name: "Normal",
  17205. height: math.unit(4 + 11 / 12, "feet"),
  17206. default: true
  17207. },
  17208. {
  17209. name: "Macro",
  17210. height: math.unit(300, "feet")
  17211. },
  17212. {
  17213. name: "Megamacro",
  17214. height: math.unit(700, "miles")
  17215. },
  17216. ]
  17217. ))
  17218. characterMakers.push(() => makeCharacter(
  17219. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  17220. {
  17221. front: {
  17222. height: math.unit(6 + 2 / 12, "feet"),
  17223. weight: math.unit(170, "lb"),
  17224. name: "Front",
  17225. image: {
  17226. source: "./media/characters/jamesy/front.svg",
  17227. extra: 440 / 382,
  17228. bottom: 0.005
  17229. }
  17230. },
  17231. },
  17232. [
  17233. {
  17234. name: "Micro",
  17235. height: math.unit(3, "inches")
  17236. },
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(6 + 2 / 12, "feet"),
  17240. default: true
  17241. },
  17242. {
  17243. name: "Macro",
  17244. height: math.unit(300, "feet")
  17245. },
  17246. {
  17247. name: "Megamacro",
  17248. height: math.unit(700, "miles")
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  17254. {
  17255. front: {
  17256. height: math.unit(6, "feet"),
  17257. weight: math.unit(160, "lb"),
  17258. name: "Front",
  17259. image: {
  17260. source: "./media/characters/mark/front.svg",
  17261. extra: 3300 / 3100,
  17262. bottom: 136.42 / 3440.47
  17263. }
  17264. },
  17265. },
  17266. [
  17267. {
  17268. name: "Macro",
  17269. height: math.unit(120, "meters")
  17270. },
  17271. {
  17272. name: "Bigger Macro",
  17273. height: math.unit(350, "meters")
  17274. },
  17275. {
  17276. name: "Megamacro",
  17277. height: math.unit(8, "km"),
  17278. default: true
  17279. },
  17280. {
  17281. name: "Continental",
  17282. height: math.unit(4550, "km")
  17283. },
  17284. {
  17285. name: "Planetary",
  17286. height: math.unit(65000, "km")
  17287. },
  17288. ]
  17289. ))
  17290. characterMakers.push(() => makeCharacter(
  17291. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  17292. {
  17293. front: {
  17294. height: math.unit(6, "feet"),
  17295. weight: math.unit(400, "lb"),
  17296. name: "Front",
  17297. image: {
  17298. source: "./media/characters/mac/front.svg",
  17299. extra: 1048 / 987.7,
  17300. bottom: 60 / 1107.6,
  17301. }
  17302. },
  17303. },
  17304. [
  17305. {
  17306. name: "Macro",
  17307. height: math.unit(500, "feet"),
  17308. default: true
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  17314. {
  17315. front: {
  17316. height: math.unit(5 + 2 / 12, "feet"),
  17317. weight: math.unit(190, "lb"),
  17318. name: "Front",
  17319. image: {
  17320. source: "./media/characters/bari/front.svg",
  17321. extra: 3156 / 2880,
  17322. bottom: 0.03
  17323. }
  17324. },
  17325. back: {
  17326. height: math.unit(5 + 2 / 12, "feet"),
  17327. weight: math.unit(190, "lb"),
  17328. name: "Back",
  17329. image: {
  17330. source: "./media/characters/bari/back.svg",
  17331. extra: 3260 / 2834,
  17332. bottom: 0.025
  17333. }
  17334. },
  17335. frontPlush: {
  17336. height: math.unit(5 + 2 / 12, "feet"),
  17337. weight: math.unit(190, "lb"),
  17338. name: "Front (Plush)",
  17339. image: {
  17340. source: "./media/characters/bari/front-plush.svg",
  17341. extra: 1112 / 1061,
  17342. bottom: 0.002
  17343. }
  17344. },
  17345. },
  17346. [
  17347. {
  17348. name: "Micro",
  17349. height: math.unit(3, "inches")
  17350. },
  17351. {
  17352. name: "Normal",
  17353. height: math.unit(5 + 2 / 12, "feet"),
  17354. default: true
  17355. },
  17356. {
  17357. name: "Macro",
  17358. height: math.unit(20, "feet")
  17359. },
  17360. ]
  17361. ))
  17362. characterMakers.push(() => makeCharacter(
  17363. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  17364. {
  17365. front: {
  17366. height: math.unit(6 + 1 / 12, "feet"),
  17367. weight: math.unit(275, "lb"),
  17368. name: "Front",
  17369. image: {
  17370. source: "./media/characters/hunter-misha-raven/front.svg"
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Mortal",
  17377. height: math.unit(6 + 1 / 12, "feet")
  17378. },
  17379. {
  17380. name: "Divine",
  17381. height: math.unit(1.12134e34, "parsecs"),
  17382. default: true
  17383. },
  17384. ]
  17385. ))
  17386. characterMakers.push(() => makeCharacter(
  17387. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  17388. {
  17389. front: {
  17390. height: math.unit(6 + 3 / 12, "feet"),
  17391. weight: math.unit(220, "lb"),
  17392. name: "Front",
  17393. image: {
  17394. source: "./media/characters/max-calore/front.svg",
  17395. extra: 1700 / 1648,
  17396. bottom: 0.01
  17397. }
  17398. },
  17399. back: {
  17400. height: math.unit(6 + 3 / 12, "feet"),
  17401. weight: math.unit(220, "lb"),
  17402. name: "Back",
  17403. image: {
  17404. source: "./media/characters/max-calore/back.svg",
  17405. extra: 1700 / 1648,
  17406. bottom: 0.01
  17407. }
  17408. },
  17409. },
  17410. [
  17411. {
  17412. name: "Normal",
  17413. height: math.unit(6 + 3 / 12, "feet"),
  17414. default: true
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  17420. {
  17421. side: {
  17422. height: math.unit(2 + 8 / 12, "feet"),
  17423. weight: math.unit(99, "lb"),
  17424. name: "Side",
  17425. image: {
  17426. source: "./media/characters/aspen/side.svg",
  17427. extra: 152 / 138,
  17428. bottom: 0.032
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(2 + 8 / 12, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  17442. {
  17443. side: {
  17444. height: math.unit(3 + 2 / 12, "feet"),
  17445. weight: math.unit(224, "lb"),
  17446. name: "Side",
  17447. image: {
  17448. source: "./media/characters/sheila-feral-wolf/side.svg",
  17449. extra: 179 / 166,
  17450. bottom: 0.03
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(3 + 2 / 12, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  17464. {
  17465. side: {
  17466. height: math.unit(1 + 9 / 12, "feet"),
  17467. weight: math.unit(38, "lb"),
  17468. name: "Side",
  17469. image: {
  17470. source: "./media/characters/michelle/side.svg",
  17471. extra: 147 / 136.7,
  17472. bottom: 0.03
  17473. }
  17474. },
  17475. },
  17476. [
  17477. {
  17478. name: "Normal",
  17479. height: math.unit(1 + 9 / 12, "feet"),
  17480. default: true
  17481. },
  17482. ]
  17483. ))
  17484. characterMakers.push(() => makeCharacter(
  17485. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  17486. {
  17487. front: {
  17488. height: math.unit(1.54, "feet"),
  17489. weight: math.unit(50, "lb"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/nino/front.svg"
  17493. }
  17494. },
  17495. },
  17496. [
  17497. {
  17498. name: "Normal",
  17499. height: math.unit(1.54, "feet"),
  17500. default: true
  17501. },
  17502. ]
  17503. ))
  17504. characterMakers.push(() => makeCharacter(
  17505. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  17506. {
  17507. front: {
  17508. height: math.unit(1.49, "feet"),
  17509. weight: math.unit(45, "lb"),
  17510. name: "Front",
  17511. image: {
  17512. source: "./media/characters/viola/front.svg"
  17513. }
  17514. },
  17515. },
  17516. [
  17517. {
  17518. name: "Normal",
  17519. height: math.unit(1.49, "feet"),
  17520. default: true
  17521. },
  17522. ]
  17523. ))
  17524. characterMakers.push(() => makeCharacter(
  17525. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  17526. {
  17527. front: {
  17528. height: math.unit(6 + 5 / 12, "feet"),
  17529. weight: math.unit(580, "lb"),
  17530. name: "Front",
  17531. image: {
  17532. source: "./media/characters/atlas/front.svg",
  17533. extra: 298.5 / 290,
  17534. bottom: 0.015
  17535. }
  17536. },
  17537. },
  17538. [
  17539. {
  17540. name: "Normal",
  17541. height: math.unit(6 + 5 / 12, "feet"),
  17542. default: true
  17543. },
  17544. ]
  17545. ))
  17546. characterMakers.push(() => makeCharacter(
  17547. { name: "Davy", species: ["cat"], tags: ["feral"] },
  17548. {
  17549. side: {
  17550. height: math.unit(15.6, "inches"),
  17551. weight: math.unit(10, "lb"),
  17552. name: "Side",
  17553. image: {
  17554. source: "./media/characters/davy/side.svg",
  17555. extra: 200 / 170,
  17556. bottom: 0.01
  17557. }
  17558. },
  17559. },
  17560. [
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(15.6, "inches"),
  17564. default: true
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  17570. {
  17571. side: {
  17572. height: math.unit(4 + 8 / 12, "feet"),
  17573. weight: math.unit(166, "lb"),
  17574. name: "Side",
  17575. image: {
  17576. source: "./media/characters/fiona/side.svg",
  17577. extra: 232 / 220,
  17578. bottom: 0.03
  17579. }
  17580. },
  17581. },
  17582. [
  17583. {
  17584. name: "Normal",
  17585. height: math.unit(4 + 8 / 12, "feet"),
  17586. default: true
  17587. },
  17588. ]
  17589. ))
  17590. characterMakers.push(() => makeCharacter(
  17591. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  17592. {
  17593. front: {
  17594. height: math.unit(26, "inches"),
  17595. weight: math.unit(35, "lb"),
  17596. name: "Front",
  17597. image: {
  17598. source: "./media/characters/lyla/front.svg",
  17599. bottom: 0.1
  17600. }
  17601. },
  17602. },
  17603. [
  17604. {
  17605. name: "Normal",
  17606. height: math.unit(3, "feet"),
  17607. default: true
  17608. },
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  17613. {
  17614. side: {
  17615. height: math.unit(1.8, "feet"),
  17616. weight: math.unit(44, "lb"),
  17617. name: "Side",
  17618. image: {
  17619. source: "./media/characters/perseus/side.svg",
  17620. bottom: 0.21
  17621. }
  17622. },
  17623. },
  17624. [
  17625. {
  17626. name: "Normal",
  17627. height: math.unit(1.8, "feet"),
  17628. default: true
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  17634. {
  17635. side: {
  17636. height: math.unit(4 + 2 / 12, "feet"),
  17637. weight: math.unit(20, "lb"),
  17638. name: "Side",
  17639. image: {
  17640. source: "./media/characters/remus/side.svg"
  17641. }
  17642. },
  17643. },
  17644. [
  17645. {
  17646. name: "Normal",
  17647. height: math.unit(4 + 2 / 12, "feet"),
  17648. default: true
  17649. },
  17650. ]
  17651. ))
  17652. characterMakers.push(() => makeCharacter(
  17653. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  17654. {
  17655. front: {
  17656. height: math.unit(4 + 11 / 12, "feet"),
  17657. weight: math.unit(114, "lb"),
  17658. name: "Front",
  17659. image: {
  17660. source: "./media/characters/raf/front.svg",
  17661. extra: 1504/1339,
  17662. bottom: 26/1530
  17663. }
  17664. },
  17665. side: {
  17666. height: math.unit(4 + 11 / 12, "feet"),
  17667. weight: math.unit(114, "lb"),
  17668. name: "Side",
  17669. image: {
  17670. source: "./media/characters/raf/side.svg",
  17671. extra: 1466/1316,
  17672. bottom: 29/1495
  17673. }
  17674. },
  17675. },
  17676. [
  17677. {
  17678. name: "Micro",
  17679. height: math.unit(2, "inches")
  17680. },
  17681. {
  17682. name: "Normal",
  17683. height: math.unit(4 + 11 / 12, "feet"),
  17684. default: true
  17685. },
  17686. {
  17687. name: "Macro",
  17688. height: math.unit(70, "feet")
  17689. },
  17690. ]
  17691. ))
  17692. characterMakers.push(() => makeCharacter(
  17693. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  17694. {
  17695. front: {
  17696. height: math.unit(1.5, "meters"),
  17697. weight: math.unit(68, "kg"),
  17698. name: "Front",
  17699. image: {
  17700. source: "./media/characters/liam-einarr/front.svg",
  17701. extra: 2822 / 2666
  17702. }
  17703. },
  17704. back: {
  17705. height: math.unit(1.5, "meters"),
  17706. weight: math.unit(68, "kg"),
  17707. name: "Back",
  17708. image: {
  17709. source: "./media/characters/liam-einarr/back.svg",
  17710. extra: 2822 / 2666,
  17711. bottom: 0.015
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Normal",
  17718. height: math.unit(1.5, "meters"),
  17719. default: true
  17720. },
  17721. {
  17722. name: "Macro",
  17723. height: math.unit(150, "meters")
  17724. },
  17725. {
  17726. name: "Megamacro",
  17727. height: math.unit(35, "km")
  17728. },
  17729. ]
  17730. ))
  17731. characterMakers.push(() => makeCharacter(
  17732. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  17733. {
  17734. front: {
  17735. height: math.unit(6, "feet"),
  17736. weight: math.unit(75, "kg"),
  17737. name: "Front",
  17738. image: {
  17739. source: "./media/characters/linda/front.svg",
  17740. extra: 930 / 874,
  17741. bottom: 0.004
  17742. }
  17743. },
  17744. },
  17745. [
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(6, "feet"),
  17749. default: true
  17750. },
  17751. ]
  17752. ))
  17753. characterMakers.push(() => makeCharacter(
  17754. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  17755. {
  17756. front: {
  17757. height: math.unit(6 + 8 / 12, "feet"),
  17758. weight: math.unit(220, "lb"),
  17759. name: "Front",
  17760. image: {
  17761. source: "./media/characters/caylex/front.svg",
  17762. extra: 821 / 772,
  17763. bottom: 0.07
  17764. }
  17765. },
  17766. back: {
  17767. height: math.unit(6 + 8 / 12, "feet"),
  17768. weight: math.unit(220, "lb"),
  17769. name: "Back",
  17770. image: {
  17771. source: "./media/characters/caylex/back.svg",
  17772. extra: 821 / 772,
  17773. bottom: 0.022
  17774. }
  17775. },
  17776. hand: {
  17777. height: math.unit(1.25, "feet"),
  17778. name: "Hand",
  17779. image: {
  17780. source: "./media/characters/caylex/hand.svg"
  17781. }
  17782. },
  17783. foot: {
  17784. height: math.unit(1.6, "feet"),
  17785. name: "Foot",
  17786. image: {
  17787. source: "./media/characters/caylex/foot.svg"
  17788. }
  17789. },
  17790. armored: {
  17791. height: math.unit(6 + 8 / 12, "feet"),
  17792. weight: math.unit(250, "lb"),
  17793. name: "Armored",
  17794. image: {
  17795. source: "./media/characters/caylex/armored.svg",
  17796. extra: 1420 / 1310,
  17797. bottom: 0.045
  17798. }
  17799. },
  17800. },
  17801. [
  17802. {
  17803. name: "Normal",
  17804. height: math.unit(6 + 8 / 12, "feet"),
  17805. default: true
  17806. },
  17807. {
  17808. name: "Normal+",
  17809. height: math.unit(12, "feet")
  17810. },
  17811. ]
  17812. ))
  17813. characterMakers.push(() => makeCharacter(
  17814. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  17815. {
  17816. front: {
  17817. height: math.unit(7 + 6 / 12, "feet"),
  17818. weight: math.unit(288, "lb"),
  17819. name: "Front",
  17820. image: {
  17821. source: "./media/characters/alana/front.svg",
  17822. extra: 679 / 653,
  17823. bottom: 22.5 / 701
  17824. }
  17825. },
  17826. },
  17827. [
  17828. {
  17829. name: "Normal",
  17830. height: math.unit(7 + 6 / 12, "feet")
  17831. },
  17832. {
  17833. name: "Large",
  17834. height: math.unit(50, "feet")
  17835. },
  17836. {
  17837. name: "Macro",
  17838. height: math.unit(100, "feet"),
  17839. default: true
  17840. },
  17841. {
  17842. name: "Macro+",
  17843. height: math.unit(200, "feet")
  17844. },
  17845. ]
  17846. ))
  17847. characterMakers.push(() => makeCharacter(
  17848. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  17849. {
  17850. front: {
  17851. height: math.unit(6 + 1 / 12, "feet"),
  17852. weight: math.unit(210, "lb"),
  17853. name: "Front",
  17854. image: {
  17855. source: "./media/characters/hasani/front.svg",
  17856. extra: 244 / 232,
  17857. bottom: 0.01
  17858. }
  17859. },
  17860. back: {
  17861. height: math.unit(6 + 1 / 12, "feet"),
  17862. weight: math.unit(210, "lb"),
  17863. name: "Back",
  17864. image: {
  17865. source: "./media/characters/hasani/back.svg",
  17866. extra: 244 / 232,
  17867. bottom: 0.01
  17868. }
  17869. },
  17870. },
  17871. [
  17872. {
  17873. name: "Normal",
  17874. height: math.unit(6 + 1 / 12, "feet")
  17875. },
  17876. {
  17877. name: "Macro",
  17878. height: math.unit(175, "feet"),
  17879. default: true
  17880. },
  17881. ]
  17882. ))
  17883. characterMakers.push(() => makeCharacter(
  17884. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  17885. {
  17886. front: {
  17887. height: math.unit(1.82, "meters"),
  17888. weight: math.unit(140, "lb"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/nita/front.svg",
  17892. extra: 2473 / 2363,
  17893. bottom: 0.01
  17894. }
  17895. },
  17896. },
  17897. [
  17898. {
  17899. name: "Normal",
  17900. height: math.unit(1.82, "m")
  17901. },
  17902. {
  17903. name: "Macro",
  17904. height: math.unit(300, "m")
  17905. },
  17906. {
  17907. name: "Mistake Canon",
  17908. height: math.unit(0.5, "miles"),
  17909. default: true
  17910. },
  17911. {
  17912. name: "Big Mistake",
  17913. height: math.unit(13, "miles")
  17914. },
  17915. {
  17916. name: "Playing God",
  17917. height: math.unit(2450, "miles")
  17918. },
  17919. ]
  17920. ))
  17921. characterMakers.push(() => makeCharacter(
  17922. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  17923. {
  17924. front: {
  17925. height: math.unit(4, "feet"),
  17926. weight: math.unit(120, "lb"),
  17927. name: "Front",
  17928. image: {
  17929. source: "./media/characters/shiriko/front.svg",
  17930. extra: 970/934,
  17931. bottom: 5/975
  17932. }
  17933. },
  17934. },
  17935. [
  17936. {
  17937. name: "Normal",
  17938. height: math.unit(4, "feet"),
  17939. default: true
  17940. },
  17941. ]
  17942. ))
  17943. characterMakers.push(() => makeCharacter(
  17944. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  17945. {
  17946. front: {
  17947. height: math.unit(6, "feet"),
  17948. name: "front",
  17949. image: {
  17950. source: "./media/characters/deja/front.svg",
  17951. extra: 926 / 840,
  17952. bottom: 0.07
  17953. }
  17954. },
  17955. },
  17956. [
  17957. {
  17958. name: "Planck Length",
  17959. height: math.unit(1.6e-35, "meters")
  17960. },
  17961. {
  17962. name: "Normal",
  17963. height: math.unit(30.48, "meters"),
  17964. default: true
  17965. },
  17966. {
  17967. name: "Universal",
  17968. height: math.unit(8.8e26, "meters")
  17969. },
  17970. ]
  17971. ))
  17972. characterMakers.push(() => makeCharacter(
  17973. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  17974. {
  17975. side: {
  17976. height: math.unit(8, "feet"),
  17977. weight: math.unit(6300, "lb"),
  17978. name: "Side",
  17979. image: {
  17980. source: "./media/characters/anima/side.svg",
  17981. bottom: 0.035
  17982. }
  17983. },
  17984. },
  17985. [
  17986. {
  17987. name: "Normal",
  17988. height: math.unit(8, "feet"),
  17989. default: true
  17990. },
  17991. ]
  17992. ))
  17993. characterMakers.push(() => makeCharacter(
  17994. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  17995. {
  17996. front: {
  17997. height: math.unit(8, "feet"),
  17998. weight: math.unit(350, "lb"),
  17999. name: "Front",
  18000. image: {
  18001. source: "./media/characters/bianca/front.svg",
  18002. extra: 234 / 225,
  18003. bottom: 0.03
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Normal",
  18010. height: math.unit(8, "feet"),
  18011. default: true
  18012. },
  18013. ]
  18014. ))
  18015. characterMakers.push(() => makeCharacter(
  18016. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  18017. {
  18018. front: {
  18019. height: math.unit(6, "feet"),
  18020. weight: math.unit(150, "lb"),
  18021. name: "Front",
  18022. image: {
  18023. source: "./media/characters/adinia/front.svg",
  18024. extra: 1845 / 1672,
  18025. bottom: 0.02
  18026. }
  18027. },
  18028. back: {
  18029. height: math.unit(6, "feet"),
  18030. weight: math.unit(150, "lb"),
  18031. name: "Back",
  18032. image: {
  18033. source: "./media/characters/adinia/back.svg",
  18034. extra: 1845 / 1672,
  18035. bottom: 0.002
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(11 + 5 / 12, "feet"),
  18043. default: true
  18044. },
  18045. ]
  18046. ))
  18047. characterMakers.push(() => makeCharacter(
  18048. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  18049. {
  18050. front: {
  18051. height: math.unit(3, "meters"),
  18052. weight: math.unit(200, "kg"),
  18053. name: "Front",
  18054. image: {
  18055. source: "./media/characters/lykasa/front.svg",
  18056. extra: 1076 / 976,
  18057. bottom: 0.06
  18058. }
  18059. },
  18060. },
  18061. [
  18062. {
  18063. name: "Normal",
  18064. height: math.unit(3, "meters")
  18065. },
  18066. {
  18067. name: "Kaiju",
  18068. height: math.unit(120, "meters"),
  18069. default: true
  18070. },
  18071. {
  18072. name: "Mega Kaiju",
  18073. height: math.unit(240, "km")
  18074. },
  18075. {
  18076. name: "Giga Kaiju",
  18077. height: math.unit(400, "megameters")
  18078. },
  18079. {
  18080. name: "Tera Kaiju",
  18081. height: math.unit(800, "gigameters")
  18082. },
  18083. {
  18084. name: "Kaiju Dragon Goddess",
  18085. height: math.unit(26, "zettaparsecs")
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  18091. {
  18092. side: {
  18093. height: math.unit(283 / 124 * 6, "feet"),
  18094. weight: math.unit(35000, "lb"),
  18095. name: "Side",
  18096. image: {
  18097. source: "./media/characters/malfaren/side.svg",
  18098. extra: 1310/529,
  18099. bottom: 24/1334
  18100. }
  18101. },
  18102. front: {
  18103. height: math.unit(22.36, "feet"),
  18104. weight: math.unit(35000, "lb"),
  18105. name: "Front",
  18106. image: {
  18107. source: "./media/characters/malfaren/front.svg",
  18108. extra: 1237/1115,
  18109. bottom: 32/1269
  18110. }
  18111. },
  18112. maw: {
  18113. height: math.unit(6.9, "feet"),
  18114. name: "Maw",
  18115. image: {
  18116. source: "./media/characters/malfaren/maw.svg"
  18117. }
  18118. },
  18119. dick: {
  18120. height: math.unit(6.19, "feet"),
  18121. name: "Dick",
  18122. image: {
  18123. source: "./media/characters/malfaren/dick.svg"
  18124. }
  18125. },
  18126. eye: {
  18127. height: math.unit(0.69, "feet"),
  18128. name: "Eye",
  18129. image: {
  18130. source: "./media/characters/malfaren/eye.svg"
  18131. }
  18132. },
  18133. },
  18134. [
  18135. {
  18136. name: "Big",
  18137. height: math.unit(283 / 162 * 6, "feet"),
  18138. },
  18139. {
  18140. name: "Bigger",
  18141. height: math.unit(283 / 124 * 6, "feet")
  18142. },
  18143. {
  18144. name: "Massive",
  18145. height: math.unit(283 / 92 * 6, "feet"),
  18146. default: true
  18147. },
  18148. {
  18149. name: "👀💦",
  18150. height: math.unit(283 / 73 * 6, "feet"),
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(1.7, "m"),
  18159. weight: math.unit(70, "kg"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/kernel/front.svg",
  18163. extra: 222 / 210,
  18164. bottom: 0.007
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "Nano",
  18171. height: math.unit(17, "micrometers")
  18172. },
  18173. {
  18174. name: "Micro",
  18175. height: math.unit(1.7, "mm")
  18176. },
  18177. {
  18178. name: "Small",
  18179. height: math.unit(1.7, "cm")
  18180. },
  18181. {
  18182. name: "Normal",
  18183. height: math.unit(1.7, "m"),
  18184. default: true
  18185. },
  18186. ]
  18187. ))
  18188. characterMakers.push(() => makeCharacter(
  18189. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  18190. {
  18191. front: {
  18192. height: math.unit(1.75, "meters"),
  18193. weight: math.unit(65, "kg"),
  18194. name: "Front",
  18195. image: {
  18196. source: "./media/characters/jayne-folest/front.svg",
  18197. extra: 2115 / 2007,
  18198. bottom: 0.02
  18199. }
  18200. },
  18201. back: {
  18202. height: math.unit(1.75, "meters"),
  18203. weight: math.unit(65, "kg"),
  18204. name: "Back",
  18205. image: {
  18206. source: "./media/characters/jayne-folest/back.svg",
  18207. extra: 2115 / 2007,
  18208. bottom: 0.005
  18209. }
  18210. },
  18211. frontClothed: {
  18212. height: math.unit(1.75, "meters"),
  18213. weight: math.unit(65, "kg"),
  18214. name: "Front (Clothed)",
  18215. image: {
  18216. source: "./media/characters/jayne-folest/front-clothed.svg",
  18217. extra: 2115 / 2007,
  18218. bottom: 0.035
  18219. }
  18220. },
  18221. hand: {
  18222. height: math.unit(1 / 1.260, "feet"),
  18223. name: "Hand",
  18224. image: {
  18225. source: "./media/characters/jayne-folest/hand.svg"
  18226. }
  18227. },
  18228. foot: {
  18229. height: math.unit(1 / 0.918, "feet"),
  18230. name: "Foot",
  18231. image: {
  18232. source: "./media/characters/jayne-folest/foot.svg"
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Micro",
  18239. height: math.unit(4, "cm")
  18240. },
  18241. {
  18242. name: "Normal",
  18243. height: math.unit(1.75, "meters")
  18244. },
  18245. {
  18246. name: "Macro",
  18247. height: math.unit(47.5, "meters"),
  18248. default: true
  18249. },
  18250. ]
  18251. ))
  18252. characterMakers.push(() => makeCharacter(
  18253. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  18254. {
  18255. front: {
  18256. height: math.unit(180, "cm"),
  18257. weight: math.unit(70, "kg"),
  18258. name: "Front",
  18259. image: {
  18260. source: "./media/characters/algier/front.svg",
  18261. extra: 596 / 572,
  18262. bottom: 0.04
  18263. }
  18264. },
  18265. back: {
  18266. height: math.unit(180, "cm"),
  18267. weight: math.unit(70, "kg"),
  18268. name: "Back",
  18269. image: {
  18270. source: "./media/characters/algier/back.svg",
  18271. extra: 596 / 572,
  18272. bottom: 0.025
  18273. }
  18274. },
  18275. frontdressed: {
  18276. height: math.unit(180, "cm"),
  18277. weight: math.unit(150, "kg"),
  18278. name: "Front-dressed",
  18279. image: {
  18280. source: "./media/characters/algier/front-dressed.svg",
  18281. extra: 596 / 572,
  18282. bottom: 0.038
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Micro",
  18289. height: math.unit(5, "cm")
  18290. },
  18291. {
  18292. name: "Normal",
  18293. height: math.unit(180, "cm"),
  18294. default: true
  18295. },
  18296. {
  18297. name: "Macro",
  18298. height: math.unit(64, "m")
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  18304. {
  18305. upright: {
  18306. height: math.unit(7, "feet"),
  18307. weight: math.unit(300, "lb"),
  18308. name: "Upright",
  18309. image: {
  18310. source: "./media/characters/pretzel/upright.svg",
  18311. extra: 534 / 522,
  18312. bottom: 0.065
  18313. }
  18314. },
  18315. sprawling: {
  18316. height: math.unit(3.75, "feet"),
  18317. weight: math.unit(300, "lb"),
  18318. name: "Sprawling",
  18319. image: {
  18320. source: "./media/characters/pretzel/sprawling.svg",
  18321. extra: 314 / 281,
  18322. bottom: 0.1
  18323. }
  18324. },
  18325. tongue: {
  18326. height: math.unit(2, "feet"),
  18327. name: "Tongue",
  18328. image: {
  18329. source: "./media/characters/pretzel/tongue.svg"
  18330. }
  18331. },
  18332. },
  18333. [
  18334. {
  18335. name: "Normal",
  18336. height: math.unit(7, "feet"),
  18337. default: true
  18338. },
  18339. {
  18340. name: "Oversized",
  18341. height: math.unit(15, "feet")
  18342. },
  18343. {
  18344. name: "Huge",
  18345. height: math.unit(30, "feet")
  18346. },
  18347. {
  18348. name: "Macro",
  18349. height: math.unit(250, "feet")
  18350. },
  18351. ]
  18352. ))
  18353. characterMakers.push(() => makeCharacter(
  18354. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  18355. {
  18356. sideFront: {
  18357. height: math.unit(5 + 2 / 12, "feet"),
  18358. weight: math.unit(120, "lb"),
  18359. name: "Front Side",
  18360. image: {
  18361. source: "./media/characters/roxi/side-front.svg",
  18362. extra: 2924 / 2717,
  18363. bottom: 0.08
  18364. }
  18365. },
  18366. sideBack: {
  18367. height: math.unit(5 + 2 / 12, "feet"),
  18368. weight: math.unit(120, "lb"),
  18369. name: "Back Side",
  18370. image: {
  18371. source: "./media/characters/roxi/side-back.svg",
  18372. extra: 2904 / 2693,
  18373. bottom: 0.06
  18374. }
  18375. },
  18376. front: {
  18377. height: math.unit(5 + 2 / 12, "feet"),
  18378. weight: math.unit(120, "lb"),
  18379. name: "Front",
  18380. image: {
  18381. source: "./media/characters/roxi/front.svg",
  18382. extra: 2028 / 1907,
  18383. bottom: 0.01
  18384. }
  18385. },
  18386. frontAlt: {
  18387. height: math.unit(5 + 2 / 12, "feet"),
  18388. weight: math.unit(120, "lb"),
  18389. name: "Front (Alt)",
  18390. image: {
  18391. source: "./media/characters/roxi/front-alt.svg",
  18392. extra: 1828 / 1798,
  18393. bottom: 0.01
  18394. }
  18395. },
  18396. sitting: {
  18397. height: math.unit(2.8, "feet"),
  18398. weight: math.unit(120, "lb"),
  18399. name: "Sitting",
  18400. image: {
  18401. source: "./media/characters/roxi/sitting.svg",
  18402. extra: 2660 / 2462,
  18403. bottom: 0.1
  18404. }
  18405. },
  18406. },
  18407. [
  18408. {
  18409. name: "Normal",
  18410. height: math.unit(5 + 2 / 12, "feet"),
  18411. default: true
  18412. },
  18413. ]
  18414. ))
  18415. characterMakers.push(() => makeCharacter(
  18416. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  18417. {
  18418. side: {
  18419. height: math.unit(55, "feet"),
  18420. weight: math.unit(153, "tons"),
  18421. name: "Side",
  18422. image: {
  18423. source: "./media/characters/shadow/side.svg",
  18424. extra: 701 / 628,
  18425. bottom: 0.02
  18426. }
  18427. },
  18428. flying: {
  18429. height: math.unit(145, "feet"),
  18430. weight: math.unit(153, "tons"),
  18431. name: "Flying",
  18432. image: {
  18433. source: "./media/characters/shadow/flying.svg"
  18434. }
  18435. },
  18436. },
  18437. [
  18438. {
  18439. name: "Normal",
  18440. height: math.unit(55, "feet"),
  18441. default: true
  18442. },
  18443. ]
  18444. ))
  18445. characterMakers.push(() => makeCharacter(
  18446. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  18447. {
  18448. front: {
  18449. height: math.unit(6, "feet"),
  18450. weight: math.unit(200, "lb"),
  18451. name: "Front",
  18452. image: {
  18453. source: "./media/characters/marcie/front.svg",
  18454. extra: 960 / 876,
  18455. bottom: 58 / 1017.87
  18456. }
  18457. },
  18458. },
  18459. [
  18460. {
  18461. name: "Macro",
  18462. height: math.unit(1, "mile"),
  18463. default: true
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(7, "feet"),
  18472. weight: math.unit(200, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/kachina/front.svg",
  18476. extra: 1290.68 / 1119,
  18477. bottom: 36.5 / 1327.18
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Normal",
  18484. height: math.unit(7, "feet"),
  18485. default: true
  18486. },
  18487. ]
  18488. ))
  18489. characterMakers.push(() => makeCharacter(
  18490. { name: "Kash", species: ["canine"], tags: ["feral"] },
  18491. {
  18492. looking: {
  18493. height: math.unit(2, "meters"),
  18494. weight: math.unit(300, "kg"),
  18495. name: "Looking",
  18496. image: {
  18497. source: "./media/characters/kash/looking.svg",
  18498. extra: 474 / 344,
  18499. bottom: 0.03
  18500. }
  18501. },
  18502. side: {
  18503. height: math.unit(2, "meters"),
  18504. weight: math.unit(300, "kg"),
  18505. name: "Side",
  18506. image: {
  18507. source: "./media/characters/kash/side.svg",
  18508. extra: 302 / 251,
  18509. bottom: 0.03
  18510. }
  18511. },
  18512. front: {
  18513. height: math.unit(2, "meters"),
  18514. weight: math.unit(300, "kg"),
  18515. name: "Front",
  18516. image: {
  18517. source: "./media/characters/kash/front.svg",
  18518. extra: 495 / 360,
  18519. bottom: 0.015
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Normal",
  18526. height: math.unit(2, "meters"),
  18527. default: true
  18528. },
  18529. {
  18530. name: "Big",
  18531. height: math.unit(3, "meters")
  18532. },
  18533. {
  18534. name: "Large",
  18535. height: math.unit(5, "meters")
  18536. },
  18537. ]
  18538. ))
  18539. characterMakers.push(() => makeCharacter(
  18540. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  18541. {
  18542. feeding: {
  18543. height: math.unit(6.7, "feet"),
  18544. weight: math.unit(350, "lb"),
  18545. name: "Feeding",
  18546. image: {
  18547. source: "./media/characters/lalim/feeding.svg",
  18548. }
  18549. },
  18550. },
  18551. [
  18552. {
  18553. name: "Normal",
  18554. height: math.unit(6.7, "feet"),
  18555. default: true
  18556. },
  18557. ]
  18558. ))
  18559. characterMakers.push(() => makeCharacter(
  18560. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  18561. {
  18562. front: {
  18563. height: math.unit(9.5, "feet"),
  18564. weight: math.unit(600, "lb"),
  18565. name: "Front",
  18566. image: {
  18567. source: "./media/characters/de'vout/front.svg",
  18568. extra: 1443 / 1328,
  18569. bottom: 0.025
  18570. }
  18571. },
  18572. back: {
  18573. height: math.unit(9.5, "feet"),
  18574. weight: math.unit(600, "lb"),
  18575. name: "Back",
  18576. image: {
  18577. source: "./media/characters/de'vout/back.svg",
  18578. extra: 1443 / 1328
  18579. }
  18580. },
  18581. frontDressed: {
  18582. height: math.unit(9.5, "feet"),
  18583. weight: math.unit(600, "lb"),
  18584. name: "Front (Dressed",
  18585. image: {
  18586. source: "./media/characters/de'vout/front-dressed.svg",
  18587. extra: 1443 / 1328,
  18588. bottom: 0.025
  18589. }
  18590. },
  18591. backDressed: {
  18592. height: math.unit(9.5, "feet"),
  18593. weight: math.unit(600, "lb"),
  18594. name: "Back (Dressed",
  18595. image: {
  18596. source: "./media/characters/de'vout/back-dressed.svg",
  18597. extra: 1443 / 1328
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(9.5, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  18611. {
  18612. front: {
  18613. height: math.unit(8, "feet"),
  18614. weight: math.unit(225, "lb"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/talana/front.svg",
  18618. extra: 1410 / 1300,
  18619. bottom: 0.015
  18620. }
  18621. },
  18622. frontDressed: {
  18623. height: math.unit(8, "feet"),
  18624. weight: math.unit(225, "lb"),
  18625. name: "Front (Dressed",
  18626. image: {
  18627. source: "./media/characters/talana/front-dressed.svg",
  18628. extra: 1410 / 1300,
  18629. bottom: 0.015
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(8, "feet"),
  18637. default: true
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  18643. {
  18644. side: {
  18645. height: math.unit(7.2, "feet"),
  18646. weight: math.unit(150, "lb"),
  18647. name: "Side",
  18648. image: {
  18649. source: "./media/characters/xeauvok/side.svg",
  18650. extra: 1975 / 1523,
  18651. bottom: 0.07
  18652. }
  18653. },
  18654. },
  18655. [
  18656. {
  18657. name: "Normal",
  18658. height: math.unit(7.2, "feet"),
  18659. default: true
  18660. },
  18661. ]
  18662. ))
  18663. characterMakers.push(() => makeCharacter(
  18664. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  18665. {
  18666. side: {
  18667. height: math.unit(10, "feet"),
  18668. weight: math.unit(900, "kg"),
  18669. name: "Side",
  18670. image: {
  18671. source: "./media/characters/zara/side.svg",
  18672. extra: 504 / 498
  18673. }
  18674. },
  18675. },
  18676. [
  18677. {
  18678. name: "Normal",
  18679. height: math.unit(10, "feet"),
  18680. default: true
  18681. },
  18682. ]
  18683. ))
  18684. characterMakers.push(() => makeCharacter(
  18685. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  18686. {
  18687. side: {
  18688. height: math.unit(6, "feet"),
  18689. weight: math.unit(150, "lb"),
  18690. name: "Side",
  18691. image: {
  18692. source: "./media/characters/richard-dragon/side.svg",
  18693. extra: 845 / 340,
  18694. bottom: 0.017
  18695. }
  18696. },
  18697. maw: {
  18698. height: math.unit(2.97, "feet"),
  18699. name: "Maw",
  18700. image: {
  18701. source: "./media/characters/richard-dragon/maw.svg"
  18702. }
  18703. },
  18704. },
  18705. [
  18706. ]
  18707. ))
  18708. characterMakers.push(() => makeCharacter(
  18709. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  18710. {
  18711. front: {
  18712. height: math.unit(4, "feet"),
  18713. weight: math.unit(100, "lb"),
  18714. name: "Front",
  18715. image: {
  18716. source: "./media/characters/richard-smeargle/front.svg",
  18717. extra: 2952 / 2820,
  18718. bottom: 0.028
  18719. }
  18720. },
  18721. },
  18722. [
  18723. {
  18724. name: "Normal",
  18725. height: math.unit(4, "feet"),
  18726. default: true
  18727. },
  18728. {
  18729. name: "Dynamax",
  18730. height: math.unit(20, "meters")
  18731. },
  18732. ]
  18733. ))
  18734. characterMakers.push(() => makeCharacter(
  18735. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  18736. {
  18737. front: {
  18738. height: math.unit(6, "feet"),
  18739. weight: math.unit(110, "lb"),
  18740. name: "Front",
  18741. image: {
  18742. source: "./media/characters/klay/front.svg",
  18743. extra: 962 / 883,
  18744. bottom: 0.04
  18745. }
  18746. },
  18747. back: {
  18748. height: math.unit(6, "feet"),
  18749. weight: math.unit(110, "lb"),
  18750. name: "Back",
  18751. image: {
  18752. source: "./media/characters/klay/back.svg",
  18753. extra: 962 / 883
  18754. }
  18755. },
  18756. beans: {
  18757. height: math.unit(1.15, "feet"),
  18758. name: "Beans",
  18759. image: {
  18760. source: "./media/characters/klay/beans.svg"
  18761. }
  18762. },
  18763. },
  18764. [
  18765. {
  18766. name: "Micro",
  18767. height: math.unit(6, "inches")
  18768. },
  18769. {
  18770. name: "Mini",
  18771. height: math.unit(3, "feet")
  18772. },
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(6, "feet"),
  18776. default: true
  18777. },
  18778. {
  18779. name: "Big",
  18780. height: math.unit(25, "feet")
  18781. },
  18782. {
  18783. name: "Macro",
  18784. height: math.unit(100, "feet")
  18785. },
  18786. {
  18787. name: "Megamacro",
  18788. height: math.unit(400, "feet")
  18789. },
  18790. ]
  18791. ))
  18792. characterMakers.push(() => makeCharacter(
  18793. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  18794. {
  18795. front: {
  18796. height: math.unit(6, "feet"),
  18797. weight: math.unit(160, "lb"),
  18798. name: "Front",
  18799. image: {
  18800. source: "./media/characters/marcus/front.svg",
  18801. extra: 734 / 676,
  18802. bottom: 0.03
  18803. }
  18804. },
  18805. },
  18806. [
  18807. {
  18808. name: "Little",
  18809. height: math.unit(6, "feet")
  18810. },
  18811. {
  18812. name: "Normal",
  18813. height: math.unit(110, "feet"),
  18814. default: true
  18815. },
  18816. {
  18817. name: "Macro",
  18818. height: math.unit(250, "feet")
  18819. },
  18820. {
  18821. name: "Megamacro",
  18822. height: math.unit(1000, "feet")
  18823. },
  18824. ]
  18825. ))
  18826. characterMakers.push(() => makeCharacter(
  18827. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  18828. {
  18829. front: {
  18830. height: math.unit(7, "feet"),
  18831. weight: math.unit(275, "lb"),
  18832. name: "Front",
  18833. image: {
  18834. source: "./media/characters/claude-delroute/front.svg",
  18835. extra: 902/827,
  18836. bottom: 26/928
  18837. }
  18838. },
  18839. side: {
  18840. height: math.unit(7, "feet"),
  18841. weight: math.unit(275, "lb"),
  18842. name: "Side",
  18843. image: {
  18844. source: "./media/characters/claude-delroute/side.svg",
  18845. extra: 908/853,
  18846. bottom: 16/924
  18847. }
  18848. },
  18849. back: {
  18850. height: math.unit(7, "feet"),
  18851. weight: math.unit(275, "lb"),
  18852. name: "Back",
  18853. image: {
  18854. source: "./media/characters/claude-delroute/back.svg",
  18855. extra: 911/829,
  18856. bottom: 18/929
  18857. }
  18858. },
  18859. maw: {
  18860. height: math.unit(0.6407, "meters"),
  18861. name: "Maw",
  18862. image: {
  18863. source: "./media/characters/claude-delroute/maw.svg"
  18864. }
  18865. },
  18866. },
  18867. [
  18868. {
  18869. name: "Normal",
  18870. height: math.unit(7, "feet"),
  18871. default: true
  18872. },
  18873. {
  18874. name: "Lorge",
  18875. height: math.unit(20, "feet")
  18876. },
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  18881. {
  18882. front: {
  18883. height: math.unit(8 + 4 / 12, "feet"),
  18884. weight: math.unit(600, "lb"),
  18885. name: "Front",
  18886. image: {
  18887. source: "./media/characters/dragonien/front.svg",
  18888. extra: 100 / 94,
  18889. bottom: 3.3 / 103.3445
  18890. }
  18891. },
  18892. back: {
  18893. height: math.unit(8 + 4 / 12, "feet"),
  18894. weight: math.unit(600, "lb"),
  18895. name: "Back",
  18896. image: {
  18897. source: "./media/characters/dragonien/back.svg",
  18898. extra: 776 / 746,
  18899. bottom: 6.4 / 782.0616
  18900. }
  18901. },
  18902. foot: {
  18903. height: math.unit(1.54, "feet"),
  18904. name: "Foot",
  18905. image: {
  18906. source: "./media/characters/dragonien/foot.svg",
  18907. }
  18908. },
  18909. },
  18910. [
  18911. {
  18912. name: "Normal",
  18913. height: math.unit(8 + 4 / 12, "feet"),
  18914. default: true
  18915. },
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(200, "feet")
  18919. },
  18920. {
  18921. name: "Megamacro",
  18922. height: math.unit(1, "mile")
  18923. },
  18924. {
  18925. name: "Gigamacro",
  18926. height: math.unit(1000, "miles")
  18927. },
  18928. ]
  18929. ))
  18930. characterMakers.push(() => makeCharacter(
  18931. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  18932. {
  18933. front: {
  18934. height: math.unit(5 + 2 / 12, "feet"),
  18935. weight: math.unit(110, "lb"),
  18936. name: "Front",
  18937. image: {
  18938. source: "./media/characters/desta/front.svg",
  18939. extra: 767 / 726,
  18940. bottom: 11.7 / 779
  18941. }
  18942. },
  18943. back: {
  18944. height: math.unit(5 + 2 / 12, "feet"),
  18945. weight: math.unit(110, "lb"),
  18946. name: "Back",
  18947. image: {
  18948. source: "./media/characters/desta/back.svg",
  18949. extra: 777 / 728,
  18950. bottom: 6 / 784
  18951. }
  18952. },
  18953. frontAlt: {
  18954. height: math.unit(5 + 2 / 12, "feet"),
  18955. weight: math.unit(110, "lb"),
  18956. name: "Front",
  18957. image: {
  18958. source: "./media/characters/desta/front-alt.svg",
  18959. extra: 1482 / 1417
  18960. }
  18961. },
  18962. side: {
  18963. height: math.unit(5 + 2 / 12, "feet"),
  18964. weight: math.unit(110, "lb"),
  18965. name: "Side",
  18966. image: {
  18967. source: "./media/characters/desta/side.svg",
  18968. extra: 2579 / 2491,
  18969. bottom: 0.053
  18970. }
  18971. },
  18972. },
  18973. [
  18974. {
  18975. name: "Micro",
  18976. height: math.unit(6, "inches")
  18977. },
  18978. {
  18979. name: "Normal",
  18980. height: math.unit(5 + 2 / 12, "feet"),
  18981. default: true
  18982. },
  18983. {
  18984. name: "Macro",
  18985. height: math.unit(62, "feet")
  18986. },
  18987. {
  18988. name: "Megamacro",
  18989. height: math.unit(1800, "feet")
  18990. },
  18991. ]
  18992. ))
  18993. characterMakers.push(() => makeCharacter(
  18994. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  18995. {
  18996. front: {
  18997. height: math.unit(10, "feet"),
  18998. weight: math.unit(700, "lb"),
  18999. name: "Front",
  19000. image: {
  19001. source: "./media/characters/storm-alystar/front.svg",
  19002. extra: 2112 / 1898,
  19003. bottom: 0.034
  19004. }
  19005. },
  19006. },
  19007. [
  19008. {
  19009. name: "Micro",
  19010. height: math.unit(3.5, "inches")
  19011. },
  19012. {
  19013. name: "Normal",
  19014. height: math.unit(10, "feet"),
  19015. default: true
  19016. },
  19017. {
  19018. name: "Macro",
  19019. height: math.unit(400, "feet")
  19020. },
  19021. {
  19022. name: "Deific",
  19023. height: math.unit(60, "miles")
  19024. },
  19025. ]
  19026. ))
  19027. characterMakers.push(() => makeCharacter(
  19028. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  19029. {
  19030. front: {
  19031. height: math.unit(2.35, "meters"),
  19032. weight: math.unit(119, "kg"),
  19033. name: "Front",
  19034. image: {
  19035. source: "./media/characters/ilia/front.svg",
  19036. extra: 1285 / 1255,
  19037. bottom: 0.06
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(2.35, "meters")
  19045. },
  19046. {
  19047. name: "Macro",
  19048. height: math.unit(140, "meters"),
  19049. default: true
  19050. },
  19051. {
  19052. name: "Megamacro",
  19053. height: math.unit(100, "miles")
  19054. },
  19055. ]
  19056. ))
  19057. characterMakers.push(() => makeCharacter(
  19058. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  19059. {
  19060. front: {
  19061. height: math.unit(6 + 5 / 12, "feet"),
  19062. weight: math.unit(190, "lb"),
  19063. name: "Front",
  19064. image: {
  19065. source: "./media/characters/kingdead/front.svg",
  19066. extra: 1228 / 1177
  19067. }
  19068. },
  19069. },
  19070. [
  19071. {
  19072. name: "Micro",
  19073. height: math.unit(7, "inches")
  19074. },
  19075. {
  19076. name: "Normal",
  19077. height: math.unit(6 + 5 / 12, "feet")
  19078. },
  19079. {
  19080. name: "Macro",
  19081. height: math.unit(150, "feet"),
  19082. default: true
  19083. },
  19084. {
  19085. name: "Megamacro",
  19086. height: math.unit(200, "miles")
  19087. },
  19088. ]
  19089. ))
  19090. characterMakers.push(() => makeCharacter(
  19091. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  19092. {
  19093. front: {
  19094. height: math.unit(8, "feet"),
  19095. weight: math.unit(600, "lb"),
  19096. name: "Front",
  19097. image: {
  19098. source: "./media/characters/kyrehx/front.svg",
  19099. extra: 1195 / 1095,
  19100. bottom: 0.034
  19101. }
  19102. },
  19103. },
  19104. [
  19105. {
  19106. name: "Micro",
  19107. height: math.unit(2, "inches")
  19108. },
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(8, "feet"),
  19112. default: true
  19113. },
  19114. {
  19115. name: "Macro",
  19116. height: math.unit(255, "feet")
  19117. },
  19118. ]
  19119. ))
  19120. characterMakers.push(() => makeCharacter(
  19121. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  19122. {
  19123. front: {
  19124. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19125. weight: math.unit(184, "lb"),
  19126. name: "Front",
  19127. image: {
  19128. source: "./media/characters/xang/front.svg",
  19129. extra: 845 / 755
  19130. }
  19131. },
  19132. },
  19133. [
  19134. {
  19135. name: "Normal",
  19136. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  19137. default: true
  19138. },
  19139. {
  19140. name: "Macro",
  19141. height: math.unit(0.935 * 146, "feet")
  19142. },
  19143. {
  19144. name: "Megamacro",
  19145. height: math.unit(0.935 * 3, "miles")
  19146. },
  19147. ]
  19148. ))
  19149. characterMakers.push(() => makeCharacter(
  19150. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  19151. {
  19152. frontDressed: {
  19153. height: math.unit(5 + 7 / 12, "feet"),
  19154. weight: math.unit(140, "lb"),
  19155. name: "Front (Dressed)",
  19156. image: {
  19157. source: "./media/characters/doc-weardno/front-dressed.svg",
  19158. extra: 263 / 234
  19159. }
  19160. },
  19161. backDressed: {
  19162. height: math.unit(5 + 7 / 12, "feet"),
  19163. weight: math.unit(140, "lb"),
  19164. name: "Back (Dressed)",
  19165. image: {
  19166. source: "./media/characters/doc-weardno/back-dressed.svg",
  19167. extra: 266 / 238
  19168. }
  19169. },
  19170. front: {
  19171. height: math.unit(5 + 7 / 12, "feet"),
  19172. weight: math.unit(140, "lb"),
  19173. name: "Front",
  19174. image: {
  19175. source: "./media/characters/doc-weardno/front.svg",
  19176. extra: 254 / 233
  19177. }
  19178. },
  19179. },
  19180. [
  19181. {
  19182. name: "Micro",
  19183. height: math.unit(3, "inches")
  19184. },
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(5 + 7 / 12, "feet"),
  19188. default: true
  19189. },
  19190. {
  19191. name: "Macro",
  19192. height: math.unit(25, "feet")
  19193. },
  19194. {
  19195. name: "Megamacro",
  19196. height: math.unit(2, "miles")
  19197. },
  19198. ]
  19199. ))
  19200. characterMakers.push(() => makeCharacter(
  19201. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  19202. {
  19203. front: {
  19204. height: math.unit(6 + 2 / 12, "feet"),
  19205. weight: math.unit(153, "lb"),
  19206. name: "Front",
  19207. image: {
  19208. source: "./media/characters/seth-whilst/front.svg",
  19209. bottom: 0.07
  19210. }
  19211. },
  19212. },
  19213. [
  19214. {
  19215. name: "Micro",
  19216. height: math.unit(5, "inches")
  19217. },
  19218. {
  19219. name: "Normal",
  19220. height: math.unit(6 + 2 / 12, "feet"),
  19221. default: true
  19222. },
  19223. ]
  19224. ))
  19225. characterMakers.push(() => makeCharacter(
  19226. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  19227. {
  19228. front: {
  19229. height: math.unit(3, "inches"),
  19230. weight: math.unit(8, "grams"),
  19231. name: "Front",
  19232. image: {
  19233. source: "./media/characters/pocket-jabari/front.svg",
  19234. extra: 1024 / 974,
  19235. bottom: 0.039
  19236. }
  19237. },
  19238. },
  19239. [
  19240. {
  19241. name: "Minimicro",
  19242. height: math.unit(8, "mm")
  19243. },
  19244. {
  19245. name: "Micro",
  19246. height: math.unit(3, "inches"),
  19247. default: true
  19248. },
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(3, "feet")
  19252. },
  19253. ]
  19254. ))
  19255. characterMakers.push(() => makeCharacter(
  19256. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  19257. {
  19258. frontDressed: {
  19259. height: math.unit(15, "feet"),
  19260. weight: math.unit(3280, "lb"),
  19261. name: "Front (Dressed)",
  19262. image: {
  19263. source: "./media/characters/sapphy/front-dressed.svg",
  19264. extra: 1951/1654,
  19265. bottom: 194/2145
  19266. },
  19267. form: "anthro",
  19268. default: true
  19269. },
  19270. backDressed: {
  19271. height: math.unit(15, "feet"),
  19272. weight: math.unit(3280, "lb"),
  19273. name: "Back (Dressed)",
  19274. image: {
  19275. source: "./media/characters/sapphy/back-dressed.svg",
  19276. extra: 2058/1918,
  19277. bottom: 125/2183
  19278. },
  19279. form: "anthro"
  19280. },
  19281. frontNude: {
  19282. height: math.unit(15, "feet"),
  19283. weight: math.unit(3280, "lb"),
  19284. name: "Front (Nude)",
  19285. image: {
  19286. source: "./media/characters/sapphy/front-nude.svg",
  19287. extra: 1951/1654,
  19288. bottom: 194/2145
  19289. },
  19290. form: "anthro"
  19291. },
  19292. backNude: {
  19293. height: math.unit(15, "feet"),
  19294. weight: math.unit(3280, "lb"),
  19295. name: "Back (Nude)",
  19296. image: {
  19297. source: "./media/characters/sapphy/back-nude.svg",
  19298. extra: 2058/1918,
  19299. bottom: 125/2183
  19300. },
  19301. form: "anthro"
  19302. },
  19303. full: {
  19304. height: math.unit(15, "feet"),
  19305. weight: math.unit(3280, "lb"),
  19306. name: "Full",
  19307. image: {
  19308. source: "./media/characters/sapphy/full.svg",
  19309. extra: 1396/1317,
  19310. bottom: 44/1440
  19311. },
  19312. form: "anthro"
  19313. },
  19314. dick: {
  19315. height: math.unit(3.8, "feet"),
  19316. name: "Dick",
  19317. image: {
  19318. source: "./media/characters/sapphy/dick.svg"
  19319. },
  19320. form: "anthro"
  19321. },
  19322. feral: {
  19323. height: math.unit(35, "feet"),
  19324. weight: math.unit(160, "tons"),
  19325. name: "Feral",
  19326. image: {
  19327. source: "./media/characters/sapphy/feral.svg",
  19328. extra: 1050/573,
  19329. bottom: 60/1110
  19330. },
  19331. form: "feral",
  19332. default: true
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(15, "feet"),
  19339. form: "anthro"
  19340. },
  19341. {
  19342. name: "Casual Macro",
  19343. height: math.unit(120, "feet"),
  19344. form: "anthro"
  19345. },
  19346. {
  19347. name: "Macro",
  19348. height: math.unit(2150, "feet"),
  19349. default: true,
  19350. form: "anthro"
  19351. },
  19352. {
  19353. name: "Megamacro",
  19354. height: math.unit(8, "miles"),
  19355. form: "anthro"
  19356. },
  19357. {
  19358. name: "Galaxy Mom",
  19359. height: math.unit(6, "megalightyears"),
  19360. form: "anthro"
  19361. },
  19362. {
  19363. name: "Normal",
  19364. height: math.unit(35, "feet"),
  19365. form: "feral",
  19366. default: true
  19367. },
  19368. {
  19369. name: "Macro",
  19370. height: math.unit(300, "feet"),
  19371. form: "feral"
  19372. },
  19373. {
  19374. name: "Galaxy Mom",
  19375. height: math.unit(10, "megalightyears"),
  19376. form: "feral"
  19377. },
  19378. ],
  19379. {
  19380. "anthro": {
  19381. name: "Anthro",
  19382. default: true
  19383. },
  19384. "feral": {
  19385. name: "Feral"
  19386. }
  19387. }
  19388. ))
  19389. characterMakers.push(() => makeCharacter(
  19390. { name: "Kiro", species: ["folf"], tags: ["anthro"] },
  19391. {
  19392. front: {
  19393. height: math.unit(6, "feet"),
  19394. weight: math.unit(170, "lb"),
  19395. name: "Front",
  19396. image: {
  19397. source: "./media/characters/kiro/front.svg",
  19398. extra: 1064 / 1012,
  19399. bottom: 0.052
  19400. }
  19401. },
  19402. },
  19403. [
  19404. {
  19405. name: "Micro",
  19406. height: math.unit(6, "inches")
  19407. },
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(6, "feet"),
  19411. default: true
  19412. },
  19413. {
  19414. name: "Macro",
  19415. height: math.unit(72, "feet")
  19416. },
  19417. ]
  19418. ))
  19419. characterMakers.push(() => makeCharacter(
  19420. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  19421. {
  19422. front: {
  19423. height: math.unit(5 + 9 / 12, "feet"),
  19424. weight: math.unit(175, "lb"),
  19425. name: "Front",
  19426. image: {
  19427. source: "./media/characters/irishfox/front.svg",
  19428. extra: 1912 / 1680,
  19429. bottom: 0.02
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Nano",
  19436. height: math.unit(1, "mm")
  19437. },
  19438. {
  19439. name: "Micro",
  19440. height: math.unit(2, "inches")
  19441. },
  19442. {
  19443. name: "Normal",
  19444. height: math.unit(5 + 9 / 12, "feet"),
  19445. default: true
  19446. },
  19447. {
  19448. name: "Macro",
  19449. height: math.unit(45, "feet")
  19450. },
  19451. ]
  19452. ))
  19453. characterMakers.push(() => makeCharacter(
  19454. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  19455. {
  19456. front: {
  19457. height: math.unit(6 + 1 / 12, "feet"),
  19458. weight: math.unit(75, "lb"),
  19459. name: "Front",
  19460. image: {
  19461. source: "./media/characters/aronai-sieyes/front.svg",
  19462. extra: 1532/1450,
  19463. bottom: 42/1574
  19464. }
  19465. },
  19466. side: {
  19467. height: math.unit(6 + 1 / 12, "feet"),
  19468. weight: math.unit(75, "lb"),
  19469. name: "Side",
  19470. image: {
  19471. source: "./media/characters/aronai-sieyes/side.svg",
  19472. extra: 1422/1365,
  19473. bottom: 148/1570
  19474. }
  19475. },
  19476. back: {
  19477. height: math.unit(6 + 1 / 12, "feet"),
  19478. weight: math.unit(75, "lb"),
  19479. name: "Back",
  19480. image: {
  19481. source: "./media/characters/aronai-sieyes/back.svg",
  19482. extra: 1526/1464,
  19483. bottom: 51/1577
  19484. }
  19485. },
  19486. dressed: {
  19487. height: math.unit(6 + 1 / 12, "feet"),
  19488. weight: math.unit(75, "lb"),
  19489. name: "Dressed",
  19490. image: {
  19491. source: "./media/characters/aronai-sieyes/dressed.svg",
  19492. extra: 1559/1483,
  19493. bottom: 39/1598
  19494. }
  19495. },
  19496. slit: {
  19497. height: math.unit(1.3, "feet"),
  19498. name: "Slit",
  19499. image: {
  19500. source: "./media/characters/aronai-sieyes/slit.svg"
  19501. }
  19502. },
  19503. slitSpread: {
  19504. height: math.unit(0.9, "feet"),
  19505. name: "Slit (Spread)",
  19506. image: {
  19507. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  19508. }
  19509. },
  19510. rump: {
  19511. height: math.unit(1.3, "feet"),
  19512. name: "Rump",
  19513. image: {
  19514. source: "./media/characters/aronai-sieyes/rump.svg"
  19515. }
  19516. },
  19517. maw: {
  19518. height: math.unit(1.25, "feet"),
  19519. name: "Maw",
  19520. image: {
  19521. source: "./media/characters/aronai-sieyes/maw.svg"
  19522. }
  19523. },
  19524. feral: {
  19525. height: math.unit(18, "feet"),
  19526. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  19527. name: "Feral",
  19528. image: {
  19529. source: "./media/characters/aronai-sieyes/feral.svg",
  19530. extra: 1530 / 1240,
  19531. bottom: 0.035
  19532. }
  19533. },
  19534. },
  19535. [
  19536. {
  19537. name: "Micro",
  19538. height: math.unit(2, "inches")
  19539. },
  19540. {
  19541. name: "Normal",
  19542. height: math.unit(6 + 1 / 12, "feet"),
  19543. default: true
  19544. }
  19545. ]
  19546. ))
  19547. characterMakers.push(() => makeCharacter(
  19548. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  19549. {
  19550. front: {
  19551. height: math.unit(12, "feet"),
  19552. weight: math.unit(410, "kg"),
  19553. name: "Front",
  19554. image: {
  19555. source: "./media/characters/xuna/front.svg",
  19556. extra: 2184 / 1980
  19557. }
  19558. },
  19559. side: {
  19560. height: math.unit(12, "feet"),
  19561. weight: math.unit(410, "kg"),
  19562. name: "Side",
  19563. image: {
  19564. source: "./media/characters/xuna/side.svg",
  19565. extra: 2184 / 1980
  19566. }
  19567. },
  19568. back: {
  19569. height: math.unit(12, "feet"),
  19570. weight: math.unit(410, "kg"),
  19571. name: "Back",
  19572. image: {
  19573. source: "./media/characters/xuna/back.svg",
  19574. extra: 2184 / 1980
  19575. }
  19576. },
  19577. },
  19578. [
  19579. {
  19580. name: "Nano glow",
  19581. height: math.unit(10, "nm")
  19582. },
  19583. {
  19584. name: "Micro floof",
  19585. height: math.unit(0.3, "m")
  19586. },
  19587. {
  19588. name: "Huggable softy boi",
  19589. height: math.unit(3.6576, "m"),
  19590. default: true
  19591. },
  19592. {
  19593. name: "Admirable floof",
  19594. height: math.unit(80, "meters")
  19595. },
  19596. {
  19597. name: "Gentle macro",
  19598. height: math.unit(300, "meters")
  19599. },
  19600. {
  19601. name: "Very careful floof",
  19602. height: math.unit(3200, "meters")
  19603. },
  19604. {
  19605. name: "The mega floof",
  19606. height: math.unit(36000, "meters")
  19607. },
  19608. {
  19609. name: "Giga-fur-Wicker",
  19610. height: math.unit(4800000, "meters")
  19611. },
  19612. {
  19613. name: "Licky world",
  19614. height: math.unit(20000000, "meters")
  19615. },
  19616. {
  19617. name: "Floofy cyan sun",
  19618. height: math.unit(1500000000, "meters")
  19619. },
  19620. {
  19621. name: "Milky Wicker",
  19622. height: math.unit(1000000000000000000000, "meters")
  19623. },
  19624. {
  19625. name: "The observing Wicker",
  19626. height: math.unit(999999999999999999999999999, "meters")
  19627. },
  19628. ]
  19629. ))
  19630. characterMakers.push(() => makeCharacter(
  19631. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19632. {
  19633. front: {
  19634. height: math.unit(5 + 9 / 12, "feet"),
  19635. weight: math.unit(150, "lb"),
  19636. name: "Front",
  19637. image: {
  19638. source: "./media/characters/arokha-sieyes/front.svg",
  19639. extra: 1425 / 1284,
  19640. bottom: 0.05
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(5 + 9 / 12, "feet")
  19648. },
  19649. {
  19650. name: "Macro",
  19651. height: math.unit(30, "meters"),
  19652. default: true
  19653. },
  19654. ]
  19655. ))
  19656. characterMakers.push(() => makeCharacter(
  19657. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  19658. {
  19659. front: {
  19660. height: math.unit(6, "feet"),
  19661. weight: math.unit(180, "lb"),
  19662. name: "Front",
  19663. image: {
  19664. source: "./media/characters/arokh-sieyes/front.svg",
  19665. extra: 1830 / 1769,
  19666. bottom: 0.01
  19667. }
  19668. },
  19669. },
  19670. [
  19671. {
  19672. name: "Normal",
  19673. height: math.unit(6, "feet")
  19674. },
  19675. {
  19676. name: "Macro",
  19677. height: math.unit(30, "meters"),
  19678. default: true
  19679. },
  19680. ]
  19681. ))
  19682. characterMakers.push(() => makeCharacter(
  19683. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  19684. {
  19685. side: {
  19686. height: math.unit(13 + 1 / 12, "feet"),
  19687. weight: math.unit(8.5, "tonnes"),
  19688. name: "Side",
  19689. image: {
  19690. source: "./media/characters/goldeneye/side.svg",
  19691. extra: 1182 / 778,
  19692. bottom: 0.067
  19693. }
  19694. },
  19695. paw: {
  19696. height: math.unit(3.4, "feet"),
  19697. name: "Paw",
  19698. image: {
  19699. source: "./media/characters/goldeneye/paw.svg"
  19700. }
  19701. },
  19702. },
  19703. [
  19704. {
  19705. name: "Normal",
  19706. height: math.unit(13 + 1 / 12, "feet"),
  19707. default: true
  19708. },
  19709. ]
  19710. ))
  19711. characterMakers.push(() => makeCharacter(
  19712. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  19713. {
  19714. front: {
  19715. height: math.unit(6 + 1 / 12, "feet"),
  19716. weight: math.unit(210, "lb"),
  19717. name: "Front",
  19718. image: {
  19719. source: "./media/characters/leonardo-lycheborne/front.svg",
  19720. extra: 776/723,
  19721. bottom: 34/810
  19722. }
  19723. },
  19724. side: {
  19725. height: math.unit(6 + 1 / 12, "feet"),
  19726. weight: math.unit(210, "lb"),
  19727. name: "Side",
  19728. image: {
  19729. source: "./media/characters/leonardo-lycheborne/side.svg",
  19730. extra: 780/728,
  19731. bottom: 12/792
  19732. }
  19733. },
  19734. back: {
  19735. height: math.unit(6 + 1 / 12, "feet"),
  19736. weight: math.unit(210, "lb"),
  19737. name: "Back",
  19738. image: {
  19739. source: "./media/characters/leonardo-lycheborne/back.svg",
  19740. extra: 775/721,
  19741. bottom: 17/792
  19742. }
  19743. },
  19744. hand: {
  19745. height: math.unit(1.08, "feet"),
  19746. name: "Hand",
  19747. image: {
  19748. source: "./media/characters/leonardo-lycheborne/hand.svg"
  19749. }
  19750. },
  19751. foot: {
  19752. height: math.unit(1.32, "feet"),
  19753. name: "Foot",
  19754. image: {
  19755. source: "./media/characters/leonardo-lycheborne/foot.svg"
  19756. }
  19757. },
  19758. maw: {
  19759. height: math.unit(1, "feet"),
  19760. name: "Maw",
  19761. image: {
  19762. source: "./media/characters/leonardo-lycheborne/maw.svg"
  19763. }
  19764. },
  19765. were: {
  19766. height: math.unit(20, "feet"),
  19767. weight: math.unit(7800, "lb"),
  19768. name: "Were",
  19769. image: {
  19770. source: "./media/characters/leonardo-lycheborne/were.svg",
  19771. extra: 1224/1165,
  19772. bottom: 72/1296
  19773. }
  19774. },
  19775. feral: {
  19776. height: math.unit(7.5, "feet"),
  19777. weight: math.unit(600, "lb"),
  19778. name: "Feral",
  19779. image: {
  19780. source: "./media/characters/leonardo-lycheborne/feral.svg",
  19781. extra: 797/702,
  19782. bottom: 139/936
  19783. }
  19784. },
  19785. taur: {
  19786. height: math.unit(11, "feet"),
  19787. weight: math.unit(3300, "lb"),
  19788. name: "Taur",
  19789. image: {
  19790. source: "./media/characters/leonardo-lycheborne/taur.svg",
  19791. extra: 1271/1197,
  19792. bottom: 47/1318
  19793. }
  19794. },
  19795. barghest: {
  19796. height: math.unit(11, "feet"),
  19797. weight: math.unit(1300, "lb"),
  19798. name: "Barghest",
  19799. image: {
  19800. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  19801. extra: 1291/1204,
  19802. bottom: 37/1328
  19803. }
  19804. },
  19805. dick: {
  19806. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  19807. name: "Dick",
  19808. image: {
  19809. source: "./media/characters/leonardo-lycheborne/dick.svg"
  19810. }
  19811. },
  19812. dickWere: {
  19813. height: math.unit((20) / 3.8, "feet"),
  19814. name: "Dick (Were)",
  19815. image: {
  19816. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  19817. }
  19818. },
  19819. },
  19820. [
  19821. {
  19822. name: "Normal",
  19823. height: math.unit(6 + 1 / 12, "feet"),
  19824. default: true
  19825. },
  19826. ]
  19827. ))
  19828. characterMakers.push(() => makeCharacter(
  19829. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  19830. {
  19831. front: {
  19832. height: math.unit(10, "feet"),
  19833. weight: math.unit(350, "lb"),
  19834. name: "Front",
  19835. image: {
  19836. source: "./media/characters/jet/front.svg",
  19837. extra: 2050 / 1980,
  19838. bottom: 0.013
  19839. }
  19840. },
  19841. back: {
  19842. height: math.unit(10, "feet"),
  19843. weight: math.unit(350, "lb"),
  19844. name: "Back",
  19845. image: {
  19846. source: "./media/characters/jet/back.svg",
  19847. extra: 2050 / 1980,
  19848. bottom: 0.013
  19849. }
  19850. },
  19851. },
  19852. [
  19853. {
  19854. name: "Micro",
  19855. height: math.unit(6, "inches")
  19856. },
  19857. {
  19858. name: "Normal",
  19859. height: math.unit(10, "feet"),
  19860. default: true
  19861. },
  19862. {
  19863. name: "Macro",
  19864. height: math.unit(100, "feet")
  19865. },
  19866. ]
  19867. ))
  19868. characterMakers.push(() => makeCharacter(
  19869. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  19870. {
  19871. front: {
  19872. height: math.unit(15, "feet"),
  19873. weight: math.unit(2800, "lb"),
  19874. name: "Front",
  19875. image: {
  19876. source: "./media/characters/tanarath/front.svg",
  19877. extra: 2392 / 2220,
  19878. bottom: 0.03
  19879. }
  19880. },
  19881. back: {
  19882. height: math.unit(15, "feet"),
  19883. weight: math.unit(2800, "lb"),
  19884. name: "Back",
  19885. image: {
  19886. source: "./media/characters/tanarath/back.svg",
  19887. extra: 2392 / 2220,
  19888. bottom: 0.03
  19889. }
  19890. },
  19891. },
  19892. [
  19893. {
  19894. name: "Normal",
  19895. height: math.unit(15, "feet"),
  19896. default: true
  19897. },
  19898. ]
  19899. ))
  19900. characterMakers.push(() => makeCharacter(
  19901. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  19902. {
  19903. front: {
  19904. height: math.unit(7 + 1 / 12, "feet"),
  19905. weight: math.unit(175, "lb"),
  19906. name: "Front",
  19907. image: {
  19908. source: "./media/characters/patty-cattybatty/front.svg",
  19909. extra: 908 / 874,
  19910. bottom: 0.025
  19911. }
  19912. },
  19913. },
  19914. [
  19915. {
  19916. name: "Micro",
  19917. height: math.unit(1, "inch")
  19918. },
  19919. {
  19920. name: "Normal",
  19921. height: math.unit(7 + 1 / 12, "feet")
  19922. },
  19923. {
  19924. name: "Mini Macro",
  19925. height: math.unit(155, "feet")
  19926. },
  19927. {
  19928. name: "Macro",
  19929. height: math.unit(1077, "feet")
  19930. },
  19931. {
  19932. name: "Mega Macro",
  19933. height: math.unit(47650, "feet"),
  19934. default: true
  19935. },
  19936. {
  19937. name: "Giga Macro",
  19938. height: math.unit(440, "miles")
  19939. },
  19940. {
  19941. name: "Tera Macro",
  19942. height: math.unit(8700, "miles")
  19943. },
  19944. {
  19945. name: "Planetary Macro",
  19946. height: math.unit(32700, "miles")
  19947. },
  19948. {
  19949. name: "Solar Macro",
  19950. height: math.unit(550000, "miles")
  19951. },
  19952. {
  19953. name: "Celestial Macro",
  19954. height: math.unit(2.5, "AU")
  19955. },
  19956. ]
  19957. ))
  19958. characterMakers.push(() => makeCharacter(
  19959. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  19960. {
  19961. front: {
  19962. height: math.unit(4 + 5 / 12, "feet"),
  19963. weight: math.unit(90, "lb"),
  19964. name: "Front",
  19965. image: {
  19966. source: "./media/characters/cappu/front.svg",
  19967. extra: 1247 / 1152,
  19968. bottom: 0.012
  19969. }
  19970. },
  19971. },
  19972. [
  19973. {
  19974. name: "Normal",
  19975. height: math.unit(4 + 5 / 12, "feet"),
  19976. default: true
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  19982. {
  19983. frontDressed: {
  19984. height: math.unit(70, "cm"),
  19985. weight: math.unit(6, "kg"),
  19986. name: "Front (Dressed)",
  19987. image: {
  19988. source: "./media/characters/sebi/front-dressed.svg",
  19989. extra: 713.5 / 686.5,
  19990. bottom: 0.003
  19991. }
  19992. },
  19993. front: {
  19994. height: math.unit(70, "cm"),
  19995. weight: math.unit(5, "kg"),
  19996. name: "Front",
  19997. image: {
  19998. source: "./media/characters/sebi/front.svg",
  19999. extra: 713.5 / 686.5,
  20000. bottom: 0.003
  20001. }
  20002. }
  20003. },
  20004. [
  20005. {
  20006. name: "Normal",
  20007. height: math.unit(70, "cm"),
  20008. default: true
  20009. },
  20010. {
  20011. name: "Macro",
  20012. height: math.unit(8, "meters")
  20013. },
  20014. ]
  20015. ))
  20016. characterMakers.push(() => makeCharacter(
  20017. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  20018. {
  20019. front: {
  20020. height: math.unit(6, "feet"),
  20021. weight: math.unit(150, "lb"),
  20022. name: "Front",
  20023. image: {
  20024. source: "./media/characters/typhek/front.svg",
  20025. extra: 1948 / 1929,
  20026. bottom: 0.025
  20027. }
  20028. },
  20029. side: {
  20030. height: math.unit(6, "feet"),
  20031. weight: math.unit(150, "lb"),
  20032. name: "Side",
  20033. image: {
  20034. source: "./media/characters/typhek/side.svg",
  20035. extra: 2034 / 2010,
  20036. bottom: 0.003
  20037. }
  20038. },
  20039. back: {
  20040. height: math.unit(6, "feet"),
  20041. weight: math.unit(150, "lb"),
  20042. name: "Back",
  20043. image: {
  20044. source: "./media/characters/typhek/back.svg",
  20045. extra: 2005 / 1978,
  20046. bottom: 0.004
  20047. }
  20048. },
  20049. palm: {
  20050. height: math.unit(1.2, "feet"),
  20051. name: "Palm",
  20052. image: {
  20053. source: "./media/characters/typhek/palm.svg"
  20054. }
  20055. },
  20056. fist: {
  20057. height: math.unit(1.1, "feet"),
  20058. name: "Fist",
  20059. image: {
  20060. source: "./media/characters/typhek/fist.svg"
  20061. }
  20062. },
  20063. foot: {
  20064. height: math.unit(1.57, "feet"),
  20065. name: "Foot",
  20066. image: {
  20067. source: "./media/characters/typhek/foot.svg"
  20068. }
  20069. },
  20070. sole: {
  20071. height: math.unit(2.05, "feet"),
  20072. name: "Sole",
  20073. image: {
  20074. source: "./media/characters/typhek/sole.svg"
  20075. }
  20076. },
  20077. },
  20078. [
  20079. {
  20080. name: "Macro",
  20081. height: math.unit(40, "stories"),
  20082. default: true
  20083. },
  20084. {
  20085. name: "Megamacro",
  20086. height: math.unit(1, "mile")
  20087. },
  20088. {
  20089. name: "Gigamacro",
  20090. height: math.unit(4000, "solarradii")
  20091. },
  20092. {
  20093. name: "Universal",
  20094. height: math.unit(1.1, "universes")
  20095. }
  20096. ]
  20097. ))
  20098. characterMakers.push(() => makeCharacter(
  20099. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  20100. {
  20101. side: {
  20102. height: math.unit(5 + 7 / 12, "feet"),
  20103. weight: math.unit(150, "lb"),
  20104. name: "Side",
  20105. image: {
  20106. source: "./media/characters/kassy/side.svg",
  20107. extra: 1280 / 1225,
  20108. bottom: 0.002
  20109. }
  20110. },
  20111. front: {
  20112. height: math.unit(5 + 7 / 12, "feet"),
  20113. weight: math.unit(150, "lb"),
  20114. name: "Front",
  20115. image: {
  20116. source: "./media/characters/kassy/front.svg",
  20117. extra: 1280 / 1225,
  20118. bottom: 0.025
  20119. }
  20120. },
  20121. back: {
  20122. height: math.unit(5 + 7 / 12, "feet"),
  20123. weight: math.unit(150, "lb"),
  20124. name: "Back",
  20125. image: {
  20126. source: "./media/characters/kassy/back.svg",
  20127. extra: 1280 / 1225,
  20128. bottom: 0.002
  20129. }
  20130. },
  20131. foot: {
  20132. height: math.unit(1.266, "feet"),
  20133. name: "Foot",
  20134. image: {
  20135. source: "./media/characters/kassy/foot.svg"
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Normal",
  20142. height: math.unit(5 + 7 / 12, "feet")
  20143. },
  20144. {
  20145. name: "Macro",
  20146. height: math.unit(137, "feet"),
  20147. default: true
  20148. },
  20149. {
  20150. name: "Megamacro",
  20151. height: math.unit(1, "mile")
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(6 + 1 / 12, "feet"),
  20160. weight: math.unit(200, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/neil/front.svg",
  20164. extra: 1326 / 1250,
  20165. bottom: 0.023
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(6 + 1 / 12, "feet"),
  20173. default: true
  20174. },
  20175. {
  20176. name: "Macro",
  20177. height: math.unit(200, "feet")
  20178. },
  20179. ]
  20180. ))
  20181. characterMakers.push(() => makeCharacter(
  20182. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  20183. {
  20184. front: {
  20185. height: math.unit(5 + 9 / 12, "feet"),
  20186. weight: math.unit(190, "lb"),
  20187. name: "Front",
  20188. image: {
  20189. source: "./media/characters/atticus/front.svg",
  20190. extra: 2934 / 2785,
  20191. bottom: 0.025
  20192. }
  20193. },
  20194. },
  20195. [
  20196. {
  20197. name: "Normal",
  20198. height: math.unit(5 + 9 / 12, "feet"),
  20199. default: true
  20200. },
  20201. {
  20202. name: "Macro",
  20203. height: math.unit(180, "feet")
  20204. },
  20205. ]
  20206. ))
  20207. characterMakers.push(() => makeCharacter(
  20208. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  20209. {
  20210. side: {
  20211. height: math.unit(9, "feet"),
  20212. weight: math.unit(650, "lb"),
  20213. name: "Side",
  20214. image: {
  20215. source: "./media/characters/milo/side.svg",
  20216. extra: 2644 / 2310,
  20217. bottom: 0.032
  20218. }
  20219. },
  20220. },
  20221. [
  20222. {
  20223. name: "Normal",
  20224. height: math.unit(9, "feet"),
  20225. default: true
  20226. },
  20227. {
  20228. name: "Macro",
  20229. height: math.unit(300, "feet")
  20230. },
  20231. ]
  20232. ))
  20233. characterMakers.push(() => makeCharacter(
  20234. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  20235. {
  20236. side: {
  20237. height: math.unit(8, "meters"),
  20238. weight: math.unit(90000, "kg"),
  20239. name: "Side",
  20240. image: {
  20241. source: "./media/characters/ijzer/side.svg",
  20242. extra: 2756 / 1600,
  20243. bottom: 0.01
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Small",
  20250. height: math.unit(3, "meters")
  20251. },
  20252. {
  20253. name: "Normal",
  20254. height: math.unit(8, "meters"),
  20255. default: true
  20256. },
  20257. {
  20258. name: "Normal+",
  20259. height: math.unit(10, "meters")
  20260. },
  20261. {
  20262. name: "Bigger",
  20263. height: math.unit(24, "meters")
  20264. },
  20265. {
  20266. name: "Huge",
  20267. height: math.unit(80, "meters")
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  20273. {
  20274. front: {
  20275. height: math.unit(6 + 2 / 12, "feet"),
  20276. weight: math.unit(153, "lb"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/luca-cervicum/front.svg",
  20280. extra: 370 / 327,
  20281. bottom: 0.015
  20282. }
  20283. },
  20284. back: {
  20285. height: math.unit(6 + 2 / 12, "feet"),
  20286. weight: math.unit(153, "lb"),
  20287. name: "Back",
  20288. image: {
  20289. source: "./media/characters/luca-cervicum/back.svg",
  20290. extra: 367 / 333,
  20291. bottom: 0.005
  20292. }
  20293. },
  20294. frontGear: {
  20295. height: math.unit(6 + 2 / 12, "feet"),
  20296. weight: math.unit(173, "lb"),
  20297. name: "Front (Gear)",
  20298. image: {
  20299. source: "./media/characters/luca-cervicum/front-gear.svg",
  20300. extra: 377 / 333,
  20301. bottom: 0.006
  20302. }
  20303. },
  20304. },
  20305. [
  20306. {
  20307. name: "Normal",
  20308. height: math.unit(6 + 2 / 12, "feet"),
  20309. default: true
  20310. },
  20311. ]
  20312. ))
  20313. characterMakers.push(() => makeCharacter(
  20314. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  20315. {
  20316. front: {
  20317. height: math.unit(6 + 1 / 12, "feet"),
  20318. weight: math.unit(304, "lb"),
  20319. name: "Front",
  20320. image: {
  20321. source: "./media/characters/oliver/front.svg",
  20322. extra: 157 / 143,
  20323. bottom: 0.08
  20324. }
  20325. },
  20326. },
  20327. [
  20328. {
  20329. name: "Normal",
  20330. height: math.unit(6 + 1 / 12, "feet"),
  20331. default: true
  20332. },
  20333. ]
  20334. ))
  20335. characterMakers.push(() => makeCharacter(
  20336. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  20337. {
  20338. front: {
  20339. height: math.unit(5 + 7 / 12, "feet"),
  20340. weight: math.unit(140, "lb"),
  20341. name: "Front",
  20342. image: {
  20343. source: "./media/characters/shane/front.svg",
  20344. extra: 304 / 289,
  20345. bottom: 0.005
  20346. }
  20347. },
  20348. },
  20349. [
  20350. {
  20351. name: "Normal",
  20352. height: math.unit(5 + 7 / 12, "feet"),
  20353. default: true
  20354. },
  20355. ]
  20356. ))
  20357. characterMakers.push(() => makeCharacter(
  20358. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  20359. {
  20360. front: {
  20361. height: math.unit(5 + 9 / 12, "feet"),
  20362. weight: math.unit(178, "lb"),
  20363. name: "Front",
  20364. image: {
  20365. source: "./media/characters/shin/front.svg",
  20366. extra: 159 / 151,
  20367. bottom: 0.015
  20368. }
  20369. },
  20370. },
  20371. [
  20372. {
  20373. name: "Normal",
  20374. height: math.unit(5 + 9 / 12, "feet"),
  20375. default: true
  20376. },
  20377. ]
  20378. ))
  20379. characterMakers.push(() => makeCharacter(
  20380. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  20381. {
  20382. front: {
  20383. height: math.unit(5 + 10 / 12, "feet"),
  20384. weight: math.unit(168, "lb"),
  20385. name: "Front",
  20386. image: {
  20387. source: "./media/characters/xerxes/front.svg",
  20388. extra: 282 / 260,
  20389. bottom: 0.045
  20390. }
  20391. },
  20392. },
  20393. [
  20394. {
  20395. name: "Normal",
  20396. height: math.unit(5 + 10 / 12, "feet"),
  20397. default: true
  20398. },
  20399. ]
  20400. ))
  20401. characterMakers.push(() => makeCharacter(
  20402. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  20403. {
  20404. front: {
  20405. height: math.unit(6 + 7 / 12, "feet"),
  20406. weight: math.unit(208, "lb"),
  20407. name: "Front",
  20408. image: {
  20409. source: "./media/characters/chaska/front.svg",
  20410. extra: 332 / 319,
  20411. bottom: 0.015
  20412. }
  20413. },
  20414. },
  20415. [
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(6 + 7 / 12, "feet"),
  20419. default: true
  20420. },
  20421. ]
  20422. ))
  20423. characterMakers.push(() => makeCharacter(
  20424. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  20425. {
  20426. front: {
  20427. height: math.unit(5 + 8 / 12, "feet"),
  20428. weight: math.unit(208, "lb"),
  20429. name: "Front",
  20430. image: {
  20431. source: "./media/characters/enuk/front.svg",
  20432. extra: 437 / 406,
  20433. bottom: 0.02
  20434. }
  20435. },
  20436. },
  20437. [
  20438. {
  20439. name: "Normal",
  20440. height: math.unit(5 + 8 / 12, "feet"),
  20441. default: true
  20442. },
  20443. ]
  20444. ))
  20445. characterMakers.push(() => makeCharacter(
  20446. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  20447. {
  20448. front: {
  20449. height: math.unit(5 + 10 / 12, "feet"),
  20450. weight: math.unit(252, "lb"),
  20451. name: "Front",
  20452. image: {
  20453. source: "./media/characters/bruun/front.svg",
  20454. extra: 197 / 187,
  20455. bottom: 0.012
  20456. }
  20457. },
  20458. },
  20459. [
  20460. {
  20461. name: "Normal",
  20462. height: math.unit(5 + 10 / 12, "feet"),
  20463. default: true
  20464. },
  20465. ]
  20466. ))
  20467. characterMakers.push(() => makeCharacter(
  20468. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  20469. {
  20470. front: {
  20471. height: math.unit(6 + 10 / 12, "feet"),
  20472. weight: math.unit(255, "lb"),
  20473. name: "Front",
  20474. image: {
  20475. source: "./media/characters/alexeev/front.svg",
  20476. extra: 213 / 200,
  20477. bottom: 0.05
  20478. }
  20479. },
  20480. },
  20481. [
  20482. {
  20483. name: "Normal",
  20484. height: math.unit(6 + 10 / 12, "feet"),
  20485. default: true
  20486. },
  20487. ]
  20488. ))
  20489. characterMakers.push(() => makeCharacter(
  20490. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  20491. {
  20492. front: {
  20493. height: math.unit(2 + 8 / 12, "feet"),
  20494. weight: math.unit(22, "lb"),
  20495. name: "Front",
  20496. image: {
  20497. source: "./media/characters/evelyn/front.svg",
  20498. extra: 208 / 180
  20499. }
  20500. },
  20501. },
  20502. [
  20503. {
  20504. name: "Normal",
  20505. height: math.unit(2 + 8 / 12, "feet"),
  20506. default: true
  20507. },
  20508. ]
  20509. ))
  20510. characterMakers.push(() => makeCharacter(
  20511. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  20512. {
  20513. front: {
  20514. height: math.unit(5 + 9 / 12, "feet"),
  20515. weight: math.unit(139, "lb"),
  20516. name: "Front",
  20517. image: {
  20518. source: "./media/characters/inca/front.svg",
  20519. extra: 294 / 291,
  20520. bottom: 0.03
  20521. }
  20522. },
  20523. },
  20524. [
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(5 + 9 / 12, "feet"),
  20528. default: true
  20529. },
  20530. ]
  20531. ))
  20532. characterMakers.push(() => makeCharacter(
  20533. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  20534. {
  20535. front: {
  20536. height: math.unit(6 + 3 / 12, "feet"),
  20537. weight: math.unit(185, "lb"),
  20538. name: "Front",
  20539. image: {
  20540. source: "./media/characters/mera/front.svg",
  20541. extra: 291 / 277,
  20542. bottom: 0.03
  20543. }
  20544. },
  20545. },
  20546. [
  20547. {
  20548. name: "Normal",
  20549. height: math.unit(6 + 3 / 12, "feet"),
  20550. default: true
  20551. },
  20552. ]
  20553. ))
  20554. characterMakers.push(() => makeCharacter(
  20555. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  20556. {
  20557. front: {
  20558. height: math.unit(6 + 7 / 12, "feet"),
  20559. weight: math.unit(160, "lb"),
  20560. name: "Front",
  20561. image: {
  20562. source: "./media/characters/ceres/front.svg",
  20563. extra: 1023 / 950,
  20564. bottom: 0.027
  20565. }
  20566. },
  20567. back: {
  20568. height: math.unit(6 + 7 / 12, "feet"),
  20569. weight: math.unit(160, "lb"),
  20570. name: "Back",
  20571. image: {
  20572. source: "./media/characters/ceres/back.svg",
  20573. extra: 1023 / 950
  20574. }
  20575. },
  20576. },
  20577. [
  20578. {
  20579. name: "Normal",
  20580. height: math.unit(6 + 7 / 12, "feet"),
  20581. default: true
  20582. },
  20583. ]
  20584. ))
  20585. characterMakers.push(() => makeCharacter(
  20586. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  20587. {
  20588. front: {
  20589. height: math.unit(5 + 10 / 12, "feet"),
  20590. weight: math.unit(150, "lb"),
  20591. name: "Front",
  20592. image: {
  20593. source: "./media/characters/kris/front.svg",
  20594. extra: 885 / 803,
  20595. bottom: 0.03
  20596. }
  20597. },
  20598. },
  20599. [
  20600. {
  20601. name: "Normal",
  20602. height: math.unit(5 + 10 / 12, "feet"),
  20603. default: true
  20604. },
  20605. ]
  20606. ))
  20607. characterMakers.push(() => makeCharacter(
  20608. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  20609. {
  20610. front: {
  20611. height: math.unit(7, "feet"),
  20612. weight: math.unit(120, "kg"),
  20613. name: "Front",
  20614. image: {
  20615. source: "./media/characters/taluthus/front.svg",
  20616. extra: 903 / 833,
  20617. bottom: 0.015
  20618. }
  20619. },
  20620. },
  20621. [
  20622. {
  20623. name: "Normal",
  20624. height: math.unit(7, "feet"),
  20625. default: true
  20626. },
  20627. {
  20628. name: "Macro",
  20629. height: math.unit(300, "feet")
  20630. },
  20631. ]
  20632. ))
  20633. characterMakers.push(() => makeCharacter(
  20634. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  20635. {
  20636. front: {
  20637. height: math.unit(5 + 9 / 12, "feet"),
  20638. weight: math.unit(145, "lb"),
  20639. name: "Front",
  20640. image: {
  20641. source: "./media/characters/dawn/front.svg",
  20642. extra: 2094 / 2016,
  20643. bottom: 0.025
  20644. }
  20645. },
  20646. back: {
  20647. height: math.unit(5 + 9 / 12, "feet"),
  20648. weight: math.unit(160, "lb"),
  20649. name: "Back",
  20650. image: {
  20651. source: "./media/characters/dawn/back.svg",
  20652. extra: 2112 / 2080,
  20653. bottom: 0.005
  20654. }
  20655. },
  20656. },
  20657. [
  20658. {
  20659. name: "Normal",
  20660. height: math.unit(6 + 7 / 12, "feet"),
  20661. default: true
  20662. },
  20663. ]
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  20667. {
  20668. anthro: {
  20669. height: math.unit(8 + 3 / 12, "feet"),
  20670. weight: math.unit(450, "lb"),
  20671. name: "Anthro",
  20672. image: {
  20673. source: "./media/characters/arador/anthro.svg",
  20674. extra: 1835 / 1718,
  20675. bottom: 0.025
  20676. }
  20677. },
  20678. feral: {
  20679. height: math.unit(4, "feet"),
  20680. weight: math.unit(200, "lb"),
  20681. name: "Feral",
  20682. image: {
  20683. source: "./media/characters/arador/feral.svg",
  20684. extra: 1683 / 1514,
  20685. bottom: 0.07
  20686. }
  20687. },
  20688. },
  20689. [
  20690. {
  20691. name: "Normal",
  20692. height: math.unit(8 + 3 / 12, "feet")
  20693. },
  20694. {
  20695. name: "Macro",
  20696. height: math.unit(82.5, "feet"),
  20697. default: true
  20698. },
  20699. ]
  20700. ))
  20701. characterMakers.push(() => makeCharacter(
  20702. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  20703. {
  20704. front: {
  20705. height: math.unit(5 + 10 / 12, "feet"),
  20706. weight: math.unit(125, "lb"),
  20707. name: "Front",
  20708. image: {
  20709. source: "./media/characters/dharsi/front.svg",
  20710. extra: 716 / 630,
  20711. bottom: 0.035
  20712. }
  20713. },
  20714. },
  20715. [
  20716. {
  20717. name: "Nano",
  20718. height: math.unit(100, "nm")
  20719. },
  20720. {
  20721. name: "Micro",
  20722. height: math.unit(2, "inches")
  20723. },
  20724. {
  20725. name: "Normal",
  20726. height: math.unit(5 + 10 / 12, "feet"),
  20727. default: true
  20728. },
  20729. {
  20730. name: "Macro",
  20731. height: math.unit(1000, "feet")
  20732. },
  20733. {
  20734. name: "Megamacro",
  20735. height: math.unit(10, "miles")
  20736. },
  20737. {
  20738. name: "Gigamacro",
  20739. height: math.unit(3000, "miles")
  20740. },
  20741. {
  20742. name: "Teramacro",
  20743. height: math.unit(500000, "miles")
  20744. },
  20745. {
  20746. name: "Teramacro+",
  20747. height: math.unit(30, "galaxies")
  20748. },
  20749. ]
  20750. ))
  20751. characterMakers.push(() => makeCharacter(
  20752. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  20753. {
  20754. front: {
  20755. height: math.unit(6, "feet"),
  20756. weight: math.unit(150, "lb"),
  20757. name: "Front",
  20758. image: {
  20759. source: "./media/characters/deathy/front.svg",
  20760. extra: 1552 / 1463,
  20761. bottom: 0.025
  20762. }
  20763. },
  20764. side: {
  20765. height: math.unit(6, "feet"),
  20766. weight: math.unit(150, "lb"),
  20767. name: "Side",
  20768. image: {
  20769. source: "./media/characters/deathy/side.svg",
  20770. extra: 1604 / 1455,
  20771. bottom: 0.025
  20772. }
  20773. },
  20774. back: {
  20775. height: math.unit(6, "feet"),
  20776. weight: math.unit(150, "lb"),
  20777. name: "Back",
  20778. image: {
  20779. source: "./media/characters/deathy/back.svg",
  20780. extra: 1580 / 1463,
  20781. bottom: 0.005
  20782. }
  20783. },
  20784. },
  20785. [
  20786. {
  20787. name: "Micro",
  20788. height: math.unit(5, "millimeters")
  20789. },
  20790. {
  20791. name: "Normal",
  20792. height: math.unit(6 + 5 / 12, "feet"),
  20793. default: true
  20794. },
  20795. ]
  20796. ))
  20797. characterMakers.push(() => makeCharacter(
  20798. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  20799. {
  20800. front: {
  20801. height: math.unit(16, "feet"),
  20802. weight: math.unit(4000, "lb"),
  20803. name: "Front",
  20804. image: {
  20805. source: "./media/characters/juniper/front.svg",
  20806. bottom: 0.04
  20807. }
  20808. },
  20809. },
  20810. [
  20811. {
  20812. name: "Normal",
  20813. height: math.unit(16, "feet"),
  20814. default: true
  20815. },
  20816. ]
  20817. ))
  20818. characterMakers.push(() => makeCharacter(
  20819. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  20820. {
  20821. front: {
  20822. height: math.unit(6, "feet"),
  20823. weight: math.unit(150, "lb"),
  20824. name: "Front",
  20825. image: {
  20826. source: "./media/characters/hipster/front.svg",
  20827. extra: 1312 / 1209,
  20828. bottom: 0.025
  20829. }
  20830. },
  20831. back: {
  20832. height: math.unit(6, "feet"),
  20833. weight: math.unit(150, "lb"),
  20834. name: "Back",
  20835. image: {
  20836. source: "./media/characters/hipster/back.svg",
  20837. extra: 1281 / 1196,
  20838. bottom: 0.01
  20839. }
  20840. },
  20841. },
  20842. [
  20843. {
  20844. name: "Micro",
  20845. height: math.unit(1, "mm")
  20846. },
  20847. {
  20848. name: "Normal",
  20849. height: math.unit(4, "inches"),
  20850. default: true
  20851. },
  20852. {
  20853. name: "Macro",
  20854. height: math.unit(500, "feet")
  20855. },
  20856. {
  20857. name: "Megamacro",
  20858. height: math.unit(1000, "miles")
  20859. },
  20860. ]
  20861. ))
  20862. characterMakers.push(() => makeCharacter(
  20863. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  20864. {
  20865. front: {
  20866. height: math.unit(6, "feet"),
  20867. weight: math.unit(150, "lb"),
  20868. name: "Front",
  20869. image: {
  20870. source: "./media/characters/tendirmuldr/front.svg",
  20871. extra: 1878 / 1772,
  20872. bottom: 0.015
  20873. }
  20874. },
  20875. },
  20876. [
  20877. {
  20878. name: "Megamacro",
  20879. height: math.unit(1500, "miles"),
  20880. default: true
  20881. },
  20882. ]
  20883. ))
  20884. characterMakers.push(() => makeCharacter(
  20885. { name: "Mort", species: ["demon"], tags: ["feral"] },
  20886. {
  20887. front: {
  20888. height: math.unit(14, "feet"),
  20889. weight: math.unit(12000, "lb"),
  20890. name: "Front",
  20891. image: {
  20892. source: "./media/characters/mort/front.svg",
  20893. extra: 365 / 318,
  20894. bottom: 0.01
  20895. }
  20896. },
  20897. side: {
  20898. height: math.unit(14, "feet"),
  20899. weight: math.unit(12000, "lb"),
  20900. name: "Side",
  20901. image: {
  20902. source: "./media/characters/mort/side.svg",
  20903. extra: 365 / 318,
  20904. bottom: 0.052
  20905. },
  20906. default: true
  20907. },
  20908. back: {
  20909. height: math.unit(14, "feet"),
  20910. weight: math.unit(12000, "lb"),
  20911. name: "Back",
  20912. image: {
  20913. source: "./media/characters/mort/back.svg",
  20914. extra: 371 / 332,
  20915. bottom: 0.18
  20916. }
  20917. },
  20918. },
  20919. [
  20920. {
  20921. name: "Normal",
  20922. height: math.unit(14, "feet"),
  20923. default: true
  20924. },
  20925. ]
  20926. ))
  20927. characterMakers.push(() => makeCharacter(
  20928. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  20929. {
  20930. front: {
  20931. height: math.unit(8, "feet"),
  20932. weight: math.unit(1, "ton"),
  20933. name: "Front",
  20934. image: {
  20935. source: "./media/characters/lycoa/front.svg",
  20936. extra: 1836/1728,
  20937. bottom: 81/1917
  20938. }
  20939. },
  20940. back: {
  20941. height: math.unit(8, "feet"),
  20942. weight: math.unit(1, "ton"),
  20943. name: "Back",
  20944. image: {
  20945. source: "./media/characters/lycoa/back.svg",
  20946. extra: 1785/1720,
  20947. bottom: 91/1876
  20948. }
  20949. },
  20950. head: {
  20951. height: math.unit(1.6243, "feet"),
  20952. name: "Head",
  20953. image: {
  20954. source: "./media/characters/lycoa/head.svg",
  20955. extra: 1011/782,
  20956. bottom: 0/1011
  20957. }
  20958. },
  20959. tailmaw: {
  20960. height: math.unit(1.9, "feet"),
  20961. name: "Tailmaw",
  20962. image: {
  20963. source: "./media/characters/lycoa/tailmaw.svg"
  20964. }
  20965. },
  20966. tentacles: {
  20967. height: math.unit(2.1, "feet"),
  20968. name: "Tentacles",
  20969. image: {
  20970. source: "./media/characters/lycoa/tentacles.svg"
  20971. }
  20972. },
  20973. dick: {
  20974. height: math.unit(1.73, "feet"),
  20975. name: "Dick",
  20976. image: {
  20977. source: "./media/characters/lycoa/dick.svg"
  20978. }
  20979. },
  20980. },
  20981. [
  20982. {
  20983. name: "Normal",
  20984. height: math.unit(8, "feet"),
  20985. default: true
  20986. },
  20987. {
  20988. name: "Macro",
  20989. height: math.unit(30, "feet")
  20990. },
  20991. ]
  20992. ))
  20993. characterMakers.push(() => makeCharacter(
  20994. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  20995. {
  20996. front: {
  20997. height: math.unit(4 + 2 / 12, "feet"),
  20998. weight: math.unit(70, "lb"),
  20999. name: "Front",
  21000. image: {
  21001. source: "./media/characters/naldara/front.svg",
  21002. extra: 1664/1387,
  21003. bottom: 81/1745
  21004. },
  21005. form: "anthro",
  21006. default: true
  21007. },
  21008. naga: {
  21009. height: math.unit(20, "feet"),
  21010. weight: math.unit(15000, "kg"),
  21011. name: "Front",
  21012. image: {
  21013. source: "./media/characters/naldara/naga.svg",
  21014. extra: 1590/1396,
  21015. bottom: 285/1875
  21016. },
  21017. form: "naga",
  21018. default: true
  21019. },
  21020. },
  21021. [
  21022. {
  21023. name: "Normal",
  21024. height: math.unit(4 + 2 / 12, "feet"),
  21025. form: "anthro",
  21026. default: true
  21027. },
  21028. {
  21029. name: "Normal",
  21030. height: math.unit(20, "feet"),
  21031. form: "naga",
  21032. default: true
  21033. },
  21034. ],
  21035. {
  21036. "anthro": {
  21037. name: "Anthro",
  21038. default: true
  21039. },
  21040. "naga": {
  21041. name: "Naga"
  21042. }
  21043. }
  21044. ))
  21045. characterMakers.push(() => makeCharacter(
  21046. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  21047. {
  21048. front: {
  21049. height: math.unit(13 + 7 / 12, "feet"),
  21050. weight: math.unit(1500, "lb"),
  21051. name: "Front",
  21052. image: {
  21053. source: "./media/characters/briar/front.svg",
  21054. extra: 1223/1157,
  21055. bottom: 123/1346
  21056. }
  21057. },
  21058. },
  21059. [
  21060. {
  21061. name: "Normal",
  21062. height: math.unit(13 + 7 / 12, "feet"),
  21063. default: true
  21064. },
  21065. ]
  21066. ))
  21067. characterMakers.push(() => makeCharacter(
  21068. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  21069. {
  21070. side: {
  21071. height: math.unit(16, "feet"),
  21072. weight: math.unit(500, "lb"),
  21073. name: "Side",
  21074. image: {
  21075. source: "./media/characters/vanguard/side.svg",
  21076. extra: 1022/914,
  21077. bottom: 30/1052
  21078. }
  21079. },
  21080. sideAlt: {
  21081. height: math.unit(10, "feet"),
  21082. weight: math.unit(500, "lb"),
  21083. name: "Side (Alt)",
  21084. image: {
  21085. source: "./media/characters/vanguard/side-alt.svg",
  21086. extra: 502 / 425,
  21087. bottom: 0.087
  21088. }
  21089. },
  21090. },
  21091. [
  21092. {
  21093. name: "Normal",
  21094. height: math.unit(17.71, "feet"),
  21095. default: true
  21096. },
  21097. ]
  21098. ))
  21099. characterMakers.push(() => makeCharacter(
  21100. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  21101. {
  21102. front: {
  21103. height: math.unit(7.5, "feet"),
  21104. weight: math.unit(2, "lb"),
  21105. name: "Front",
  21106. image: {
  21107. source: "./media/characters/artemis/work-safe-front.svg",
  21108. extra: 1192 / 1075,
  21109. bottom: 0.07
  21110. },
  21111. form: "work-safe",
  21112. default: true
  21113. },
  21114. frontNsfw: {
  21115. height: math.unit(7.5, "feet"),
  21116. weight: math.unit(2, "lb"),
  21117. name: "Front",
  21118. image: {
  21119. source: "./media/characters/artemis/calibrating-front.svg",
  21120. extra: 1192 / 1075,
  21121. bottom: 0.07
  21122. },
  21123. form: "calibrating",
  21124. default: true
  21125. },
  21126. frontNsfwer: {
  21127. height: math.unit(7.5, "feet"),
  21128. weight: math.unit(2, "lb"),
  21129. name: "Front",
  21130. image: {
  21131. source: "./media/characters/artemis/oversize-load-front.svg",
  21132. extra: 1192 / 1075,
  21133. bottom: 0.07
  21134. },
  21135. form: "oversize-load",
  21136. default: true
  21137. },
  21138. side: {
  21139. height: math.unit(7.5, "feet"),
  21140. weight: math.unit(2, "lb"),
  21141. name: "Side",
  21142. image: {
  21143. source: "./media/characters/artemis/work-safe-side.svg",
  21144. extra: 1192 / 1075,
  21145. bottom: 0.07
  21146. },
  21147. form: "work-safe"
  21148. },
  21149. sideNsfw: {
  21150. height: math.unit(7.5, "feet"),
  21151. weight: math.unit(2, "lb"),
  21152. name: "Side",
  21153. image: {
  21154. source: "./media/characters/artemis/calibrating-side.svg",
  21155. extra: 1192 / 1075,
  21156. bottom: 0.07
  21157. },
  21158. form: "calibrating"
  21159. },
  21160. sideNsfwer: {
  21161. height: math.unit(7.5, "feet"),
  21162. weight: math.unit(2, "lb"),
  21163. name: "Side",
  21164. image: {
  21165. source: "./media/characters/artemis/oversize-load-side.svg",
  21166. extra: 1192 / 1075,
  21167. bottom: 0.07
  21168. },
  21169. form: "oversize-load"
  21170. },
  21171. maw: {
  21172. height: math.unit(1.1, "feet"),
  21173. name: "Maw",
  21174. image: {
  21175. source: "./media/characters/artemis/maw.svg"
  21176. },
  21177. form: "work-safe"
  21178. },
  21179. stomach: {
  21180. height: math.unit(0.95, "feet"),
  21181. name: "Stomach",
  21182. image: {
  21183. source: "./media/characters/artemis/stomach.svg"
  21184. },
  21185. form: "work-safe"
  21186. },
  21187. dickCanine: {
  21188. height: math.unit(1, "feet"),
  21189. name: "Dick (Canine)",
  21190. image: {
  21191. source: "./media/characters/artemis/dick-canine.svg"
  21192. },
  21193. form: "calibrating"
  21194. },
  21195. dickEquine: {
  21196. height: math.unit(0.85, "feet"),
  21197. name: "Dick (Equine)",
  21198. image: {
  21199. source: "./media/characters/artemis/dick-equine.svg"
  21200. },
  21201. form: "calibrating"
  21202. },
  21203. dickExotic: {
  21204. height: math.unit(0.85, "feet"),
  21205. name: "Dick (Exotic)",
  21206. image: {
  21207. source: "./media/characters/artemis/dick-exotic.svg"
  21208. },
  21209. form: "calibrating"
  21210. },
  21211. dickCanineBigger: {
  21212. height: math.unit(1 * 1.33, "feet"),
  21213. name: "Dick (Canine)",
  21214. image: {
  21215. source: "./media/characters/artemis/dick-canine.svg"
  21216. },
  21217. form: "oversize-load"
  21218. },
  21219. dickEquineBigger: {
  21220. height: math.unit(0.85 * 1.33, "feet"),
  21221. name: "Dick (Equine)",
  21222. image: {
  21223. source: "./media/characters/artemis/dick-equine.svg"
  21224. },
  21225. form: "oversize-load"
  21226. },
  21227. dickExoticBigger: {
  21228. height: math.unit(0.85 * 1.33, "feet"),
  21229. name: "Dick (Exotic)",
  21230. image: {
  21231. source: "./media/characters/artemis/dick-exotic.svg"
  21232. },
  21233. form: "oversize-load"
  21234. },
  21235. },
  21236. [
  21237. {
  21238. name: "Normal",
  21239. height: math.unit(7.5, "feet"),
  21240. form: "work-safe",
  21241. default: true
  21242. },
  21243. {
  21244. name: "Normal",
  21245. height: math.unit(7.5, "feet"),
  21246. form: "calibrating",
  21247. default: true
  21248. },
  21249. {
  21250. name: "Normal",
  21251. height: math.unit(7.5, "feet"),
  21252. form: "oversize-load",
  21253. default: true
  21254. },
  21255. {
  21256. name: "Enlarged",
  21257. height: math.unit(12, "feet"),
  21258. form: "work-safe",
  21259. },
  21260. {
  21261. name: "Enlarged",
  21262. height: math.unit(12, "feet"),
  21263. form: "calibrating",
  21264. },
  21265. {
  21266. name: "Enlarged",
  21267. height: math.unit(12, "feet"),
  21268. form: "oversize-load",
  21269. },
  21270. ],
  21271. {
  21272. "work-safe": {
  21273. name: "Work-Safe",
  21274. default: true
  21275. },
  21276. "calibrating": {
  21277. name: "Calibrating"
  21278. },
  21279. "oversize-load": {
  21280. name: "Oversize Load"
  21281. }
  21282. }
  21283. ))
  21284. characterMakers.push(() => makeCharacter(
  21285. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  21286. {
  21287. front: {
  21288. height: math.unit(5 + 3 / 12, "feet"),
  21289. weight: math.unit(160, "lb"),
  21290. name: "Front",
  21291. image: {
  21292. source: "./media/characters/kira/front.svg",
  21293. extra: 906 / 786,
  21294. bottom: 0.01
  21295. }
  21296. },
  21297. back: {
  21298. height: math.unit(5 + 3 / 12, "feet"),
  21299. weight: math.unit(160, "lb"),
  21300. name: "Back",
  21301. image: {
  21302. source: "./media/characters/kira/back.svg",
  21303. extra: 882 / 757,
  21304. bottom: 0.005
  21305. }
  21306. },
  21307. frontDressed: {
  21308. height: math.unit(5 + 3 / 12, "feet"),
  21309. weight: math.unit(160, "lb"),
  21310. name: "Front (Dressed)",
  21311. image: {
  21312. source: "./media/characters/kira/front-dressed.svg",
  21313. extra: 906 / 786,
  21314. bottom: 0.01
  21315. }
  21316. },
  21317. beans: {
  21318. height: math.unit(0.92, "feet"),
  21319. name: "Beans",
  21320. image: {
  21321. source: "./media/characters/kira/beans.svg"
  21322. }
  21323. },
  21324. },
  21325. [
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(5 + 3 / 12, "feet"),
  21329. default: true
  21330. },
  21331. ]
  21332. ))
  21333. characterMakers.push(() => makeCharacter(
  21334. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  21335. {
  21336. front: {
  21337. height: math.unit(5 + 4 / 12, "feet"),
  21338. weight: math.unit(145, "lb"),
  21339. name: "Front",
  21340. image: {
  21341. source: "./media/characters/scramble/front.svg",
  21342. extra: 763 / 727,
  21343. bottom: 0.05
  21344. }
  21345. },
  21346. back: {
  21347. height: math.unit(5 + 4 / 12, "feet"),
  21348. weight: math.unit(145, "lb"),
  21349. name: "Back",
  21350. image: {
  21351. source: "./media/characters/scramble/back.svg",
  21352. extra: 826 / 737,
  21353. bottom: 0.002
  21354. }
  21355. },
  21356. },
  21357. [
  21358. {
  21359. name: "Normal",
  21360. height: math.unit(5 + 4 / 12, "feet"),
  21361. default: true
  21362. },
  21363. ]
  21364. ))
  21365. characterMakers.push(() => makeCharacter(
  21366. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  21367. {
  21368. side: {
  21369. height: math.unit(6 + 2 / 12, "feet"),
  21370. weight: math.unit(190, "lb"),
  21371. name: "Side",
  21372. image: {
  21373. source: "./media/characters/biscuit/side.svg",
  21374. extra: 858 / 791,
  21375. bottom: 0.044
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(6 + 2 / 12, "feet"),
  21383. default: true
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  21389. {
  21390. front: {
  21391. height: math.unit(5 + 2 / 12, "feet"),
  21392. weight: math.unit(120, "lb"),
  21393. name: "Front",
  21394. image: {
  21395. source: "./media/characters/poffin/front.svg",
  21396. extra: 786 / 680,
  21397. bottom: 0.005
  21398. }
  21399. },
  21400. },
  21401. [
  21402. {
  21403. name: "Normal",
  21404. height: math.unit(5 + 2 / 12, "feet"),
  21405. default: true
  21406. },
  21407. ]
  21408. ))
  21409. characterMakers.push(() => makeCharacter(
  21410. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  21411. {
  21412. front: {
  21413. height: math.unit(6 + 3 / 12, "feet"),
  21414. weight: math.unit(519, "lb"),
  21415. name: "Front",
  21416. image: {
  21417. source: "./media/characters/dhari/front.svg",
  21418. extra: 1048 / 946,
  21419. bottom: 0.015
  21420. }
  21421. },
  21422. back: {
  21423. height: math.unit(6 + 3 / 12, "feet"),
  21424. weight: math.unit(519, "lb"),
  21425. name: "Back",
  21426. image: {
  21427. source: "./media/characters/dhari/back.svg",
  21428. extra: 1048 / 931,
  21429. bottom: 0.005
  21430. }
  21431. },
  21432. frontDressed: {
  21433. height: math.unit(6 + 3 / 12, "feet"),
  21434. weight: math.unit(519, "lb"),
  21435. name: "Front (Dressed)",
  21436. image: {
  21437. source: "./media/characters/dhari/front-dressed.svg",
  21438. extra: 1713 / 1546,
  21439. bottom: 0.02
  21440. }
  21441. },
  21442. backDressed: {
  21443. height: math.unit(6 + 3 / 12, "feet"),
  21444. weight: math.unit(519, "lb"),
  21445. name: "Back (Dressed)",
  21446. image: {
  21447. source: "./media/characters/dhari/back-dressed.svg",
  21448. extra: 1699 / 1537,
  21449. bottom: 0.01
  21450. }
  21451. },
  21452. maw: {
  21453. height: math.unit(0.95, "feet"),
  21454. name: "Maw",
  21455. image: {
  21456. source: "./media/characters/dhari/maw.svg"
  21457. }
  21458. },
  21459. wereFront: {
  21460. height: math.unit(12 + 8 / 12, "feet"),
  21461. weight: math.unit(4000, "lb"),
  21462. name: "Front (Were)",
  21463. image: {
  21464. source: "./media/characters/dhari/were-front.svg",
  21465. extra: 1065 / 969,
  21466. bottom: 0.015
  21467. }
  21468. },
  21469. wereBack: {
  21470. height: math.unit(12 + 8 / 12, "feet"),
  21471. weight: math.unit(4000, "lb"),
  21472. name: "Back (Were)",
  21473. image: {
  21474. source: "./media/characters/dhari/were-back.svg",
  21475. extra: 1065 / 969,
  21476. bottom: 0.012
  21477. }
  21478. },
  21479. wereMaw: {
  21480. height: math.unit(0.625, "meters"),
  21481. name: "Maw (Were)",
  21482. image: {
  21483. source: "./media/characters/dhari/were-maw.svg"
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(6 + 3 / 12, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  21497. {
  21498. anthro: {
  21499. height: math.unit(5 + 7 / 12, "feet"),
  21500. weight: math.unit(175, "lb"),
  21501. name: "Anthro",
  21502. image: {
  21503. source: "./media/characters/rena-dyne/anthro.svg",
  21504. extra: 1849 / 1785,
  21505. bottom: 0.005
  21506. }
  21507. },
  21508. taur: {
  21509. height: math.unit(15 + 6 / 12, "feet"),
  21510. weight: math.unit(8000, "lb"),
  21511. name: "Taur",
  21512. image: {
  21513. source: "./media/characters/rena-dyne/taur.svg",
  21514. extra: 2315 / 2234,
  21515. bottom: 0.033
  21516. }
  21517. },
  21518. },
  21519. [
  21520. {
  21521. name: "Normal",
  21522. height: math.unit(5 + 7 / 12, "feet"),
  21523. default: true
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  21529. {
  21530. front: {
  21531. height: math.unit(8, "feet"),
  21532. weight: math.unit(600, "lb"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/weremeep/front.svg",
  21536. extra: 967 / 862,
  21537. bottom: 0.01
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(8, "feet"),
  21545. default: true
  21546. },
  21547. {
  21548. name: "Lorg",
  21549. height: math.unit(12, "feet")
  21550. },
  21551. {
  21552. name: "Oh Lawd She Comin'",
  21553. height: math.unit(20, "feet")
  21554. },
  21555. ]
  21556. ))
  21557. characterMakers.push(() => makeCharacter(
  21558. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  21559. {
  21560. front: {
  21561. height: math.unit(4, "feet"),
  21562. weight: math.unit(90, "lb"),
  21563. name: "Front",
  21564. image: {
  21565. source: "./media/characters/reza/front.svg",
  21566. extra: 1183 / 1111,
  21567. bottom: 0.017
  21568. }
  21569. },
  21570. back: {
  21571. height: math.unit(4, "feet"),
  21572. weight: math.unit(90, "lb"),
  21573. name: "Back",
  21574. image: {
  21575. source: "./media/characters/reza/back.svg",
  21576. extra: 1183 / 1111,
  21577. bottom: 0.01
  21578. }
  21579. },
  21580. drake: {
  21581. height: math.unit(30, "feet"),
  21582. weight: math.unit(246960, "lb"),
  21583. name: "Drake",
  21584. image: {
  21585. source: "./media/characters/reza/drake.svg",
  21586. extra: 2350 / 2024,
  21587. bottom: 60.7 / 2403
  21588. }
  21589. },
  21590. },
  21591. [
  21592. {
  21593. name: "Normal",
  21594. height: math.unit(4, "feet"),
  21595. default: true
  21596. },
  21597. ]
  21598. ))
  21599. characterMakers.push(() => makeCharacter(
  21600. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  21601. {
  21602. side: {
  21603. height: math.unit(15, "feet"),
  21604. weight: math.unit(14, "tons"),
  21605. name: "Side",
  21606. image: {
  21607. source: "./media/characters/athea/side.svg",
  21608. extra: 960 / 540,
  21609. bottom: 0.003
  21610. }
  21611. },
  21612. sitting: {
  21613. height: math.unit(6 * 2.85, "feet"),
  21614. weight: math.unit(14, "tons"),
  21615. name: "Sitting",
  21616. image: {
  21617. source: "./media/characters/athea/sitting.svg",
  21618. extra: 621 / 581,
  21619. bottom: 0.075
  21620. }
  21621. },
  21622. maw: {
  21623. height: math.unit(7.59498031496063, "feet"),
  21624. name: "Maw",
  21625. image: {
  21626. source: "./media/characters/athea/maw.svg"
  21627. }
  21628. },
  21629. },
  21630. [
  21631. {
  21632. name: "Lap Cat",
  21633. height: math.unit(2.5, "feet")
  21634. },
  21635. {
  21636. name: "Minimacro",
  21637. height: math.unit(15, "feet"),
  21638. default: true
  21639. },
  21640. {
  21641. name: "Macro",
  21642. height: math.unit(120, "feet")
  21643. },
  21644. {
  21645. name: "Macro+",
  21646. height: math.unit(640, "feet")
  21647. },
  21648. {
  21649. name: "Colossus",
  21650. height: math.unit(2.2, "miles")
  21651. },
  21652. ]
  21653. ))
  21654. characterMakers.push(() => makeCharacter(
  21655. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  21656. {
  21657. front: {
  21658. height: math.unit(8 + 8 / 12, "feet"),
  21659. weight: math.unit(130, "kg"),
  21660. name: "Front",
  21661. image: {
  21662. source: "./media/characters/seroko/front.svg",
  21663. extra: 1385 / 1280,
  21664. bottom: 0.025
  21665. }
  21666. },
  21667. back: {
  21668. height: math.unit(8 + 8 / 12, "feet"),
  21669. weight: math.unit(130, "kg"),
  21670. name: "Back",
  21671. image: {
  21672. source: "./media/characters/seroko/back.svg",
  21673. extra: 1369 / 1238,
  21674. bottom: 0.018
  21675. }
  21676. },
  21677. frontDressed: {
  21678. height: math.unit(8 + 8 / 12, "feet"),
  21679. weight: math.unit(130, "kg"),
  21680. name: "Front (Dressed)",
  21681. image: {
  21682. source: "./media/characters/seroko/front-dressed.svg",
  21683. extra: 1366 / 1275,
  21684. bottom: 0.03
  21685. }
  21686. },
  21687. },
  21688. [
  21689. {
  21690. name: "Normal",
  21691. height: math.unit(8 + 8 / 12, "feet"),
  21692. default: true
  21693. },
  21694. ]
  21695. ))
  21696. characterMakers.push(() => makeCharacter(
  21697. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  21698. {
  21699. front: {
  21700. height: math.unit(5.5, "feet"),
  21701. weight: math.unit(160, "lb"),
  21702. name: "Front",
  21703. image: {
  21704. source: "./media/characters/quatzi/front.svg",
  21705. extra: 2346 / 2242,
  21706. bottom: 0.015
  21707. }
  21708. },
  21709. },
  21710. [
  21711. {
  21712. name: "Normal",
  21713. height: math.unit(5.5, "feet"),
  21714. default: true
  21715. },
  21716. {
  21717. name: "Big",
  21718. height: math.unit(7.7, "feet")
  21719. },
  21720. ]
  21721. ))
  21722. characterMakers.push(() => makeCharacter(
  21723. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  21724. {
  21725. front: {
  21726. height: math.unit(5 + 11 / 12, "feet"),
  21727. weight: math.unit(180, "lb"),
  21728. name: "Front",
  21729. image: {
  21730. source: "./media/characters/sen/front.svg",
  21731. extra: 1321 / 1254,
  21732. bottom: 0.015
  21733. }
  21734. },
  21735. side: {
  21736. height: math.unit(5 + 11 / 12, "feet"),
  21737. weight: math.unit(180, "lb"),
  21738. name: "Side",
  21739. image: {
  21740. source: "./media/characters/sen/side.svg",
  21741. extra: 1321 / 1254,
  21742. bottom: 0.007
  21743. }
  21744. },
  21745. back: {
  21746. height: math.unit(5 + 11 / 12, "feet"),
  21747. weight: math.unit(180, "lb"),
  21748. name: "Back",
  21749. image: {
  21750. source: "./media/characters/sen/back.svg",
  21751. extra: 1321 / 1254
  21752. }
  21753. },
  21754. },
  21755. [
  21756. {
  21757. name: "Normal",
  21758. height: math.unit(5 + 11 / 12, "feet"),
  21759. default: true
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(166.6, "cm"),
  21768. weight: math.unit(66.6, "kg"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/fruity/front.svg",
  21772. extra: 1510 / 1386,
  21773. bottom: 0.04
  21774. }
  21775. },
  21776. back: {
  21777. height: math.unit(166.6, "cm"),
  21778. weight: math.unit(66.6, "lb"),
  21779. name: "Back",
  21780. image: {
  21781. source: "./media/characters/fruity/back.svg",
  21782. extra: 1563 / 1435,
  21783. bottom: 0.005
  21784. }
  21785. },
  21786. },
  21787. [
  21788. {
  21789. name: "Normal",
  21790. height: math.unit(166.6, "cm"),
  21791. default: true
  21792. },
  21793. {
  21794. name: "Demonic",
  21795. height: math.unit(166.6, "feet")
  21796. },
  21797. ]
  21798. ))
  21799. characterMakers.push(() => makeCharacter(
  21800. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  21801. {
  21802. side: {
  21803. height: math.unit(10, "feet"),
  21804. weight: math.unit(500, "lb"),
  21805. name: "Side",
  21806. image: {
  21807. source: "./media/characters/zost/side.svg",
  21808. extra: 2870/2533,
  21809. bottom: 252/3122
  21810. }
  21811. },
  21812. mawFront: {
  21813. height: math.unit(1.08, "meters"),
  21814. name: "Maw (Front)",
  21815. image: {
  21816. source: "./media/characters/zost/maw-front.svg"
  21817. }
  21818. },
  21819. mawSide: {
  21820. height: math.unit(2.66, "feet"),
  21821. name: "Maw (Side)",
  21822. image: {
  21823. source: "./media/characters/zost/maw-side.svg"
  21824. }
  21825. },
  21826. wingspan: {
  21827. height: math.unit(7.4, "feet"),
  21828. name: "Wingspan",
  21829. image: {
  21830. source: "./media/characters/zost/wingspan.svg"
  21831. }
  21832. },
  21833. },
  21834. [
  21835. {
  21836. name: "Normal",
  21837. height: math.unit(10, "feet"),
  21838. default: true
  21839. },
  21840. ]
  21841. ))
  21842. characterMakers.push(() => makeCharacter(
  21843. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  21844. {
  21845. front: {
  21846. height: math.unit(5 + 4 / 12, "feet"),
  21847. weight: math.unit(120, "lb"),
  21848. name: "Front",
  21849. image: {
  21850. source: "./media/characters/luci/front.svg",
  21851. extra: 1985 / 1884,
  21852. bottom: 0.04
  21853. }
  21854. },
  21855. back: {
  21856. height: math.unit(5 + 4 / 12, "feet"),
  21857. weight: math.unit(120, "lb"),
  21858. name: "Back",
  21859. image: {
  21860. source: "./media/characters/luci/back.svg",
  21861. extra: 1892 / 1791,
  21862. bottom: 0.002
  21863. }
  21864. },
  21865. },
  21866. [
  21867. {
  21868. name: "Normal",
  21869. height: math.unit(5 + 4 / 12, "feet"),
  21870. default: true
  21871. },
  21872. ]
  21873. ))
  21874. characterMakers.push(() => makeCharacter(
  21875. { name: "2th", species: ["monster"], tags: ["anthro"] },
  21876. {
  21877. front: {
  21878. height: math.unit(1500, "feet"),
  21879. weight: math.unit(3.8e6, "tons"),
  21880. name: "Front",
  21881. image: {
  21882. source: "./media/characters/2th/front.svg",
  21883. extra: 3489 / 3350,
  21884. bottom: 0.1
  21885. }
  21886. },
  21887. foot: {
  21888. height: math.unit(461, "feet"),
  21889. name: "Foot",
  21890. image: {
  21891. source: "./media/characters/2th/foot.svg"
  21892. }
  21893. },
  21894. },
  21895. [
  21896. {
  21897. name: "\"Micro\"",
  21898. height: math.unit(15 + 7 / 12, "feet")
  21899. },
  21900. {
  21901. name: "Normal",
  21902. height: math.unit(1500, "feet"),
  21903. default: true
  21904. },
  21905. {
  21906. name: "Macro",
  21907. height: math.unit(5000, "feet")
  21908. },
  21909. {
  21910. name: "Megamacro",
  21911. height: math.unit(15, "miles")
  21912. },
  21913. {
  21914. name: "Gigamacro",
  21915. height: math.unit(4000, "miles")
  21916. },
  21917. {
  21918. name: "Galactic",
  21919. height: math.unit(50, "AU")
  21920. },
  21921. ]
  21922. ))
  21923. characterMakers.push(() => makeCharacter(
  21924. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  21925. {
  21926. front: {
  21927. height: math.unit(5 + 6 / 12, "feet"),
  21928. weight: math.unit(220, "lb"),
  21929. name: "Front",
  21930. image: {
  21931. source: "./media/characters/amethyst/front.svg",
  21932. extra: 2078 / 2040,
  21933. bottom: 0.045
  21934. }
  21935. },
  21936. back: {
  21937. height: math.unit(5 + 6 / 12, "feet"),
  21938. weight: math.unit(220, "lb"),
  21939. name: "Back",
  21940. image: {
  21941. source: "./media/characters/amethyst/back.svg",
  21942. extra: 2021 / 1989,
  21943. bottom: 0.02
  21944. }
  21945. },
  21946. },
  21947. [
  21948. {
  21949. name: "Normal",
  21950. height: math.unit(5 + 6 / 12, "feet"),
  21951. default: true
  21952. },
  21953. ]
  21954. ))
  21955. characterMakers.push(() => makeCharacter(
  21956. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  21957. {
  21958. front: {
  21959. height: math.unit(4 + 11 / 12, "feet"),
  21960. weight: math.unit(120, "lb"),
  21961. name: "Front",
  21962. image: {
  21963. source: "./media/characters/yumi-akiyama/front.svg",
  21964. extra: 1327 / 1235,
  21965. bottom: 0.02
  21966. }
  21967. },
  21968. back: {
  21969. height: math.unit(4 + 11 / 12, "feet"),
  21970. weight: math.unit(120, "lb"),
  21971. name: "Back",
  21972. image: {
  21973. source: "./media/characters/yumi-akiyama/back.svg",
  21974. extra: 1287 / 1245,
  21975. bottom: 0.002
  21976. }
  21977. },
  21978. },
  21979. [
  21980. {
  21981. name: "Galactic",
  21982. height: math.unit(50, "galaxies"),
  21983. default: true
  21984. },
  21985. {
  21986. name: "Universal",
  21987. height: math.unit(100, "universes")
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  21993. {
  21994. front: {
  21995. height: math.unit(8, "feet"),
  21996. weight: math.unit(500, "lb"),
  21997. name: "Front",
  21998. image: {
  21999. source: "./media/characters/rifter-yrmori/front.svg",
  22000. extra: 1180 / 1125,
  22001. bottom: 0.02
  22002. }
  22003. },
  22004. back: {
  22005. height: math.unit(8, "feet"),
  22006. weight: math.unit(500, "lb"),
  22007. name: "Back",
  22008. image: {
  22009. source: "./media/characters/rifter-yrmori/back.svg",
  22010. extra: 1190 / 1145,
  22011. bottom: 0.001
  22012. }
  22013. },
  22014. wings: {
  22015. height: math.unit(7.75, "feet"),
  22016. weight: math.unit(500, "lb"),
  22017. name: "Wings",
  22018. image: {
  22019. source: "./media/characters/rifter-yrmori/wings.svg",
  22020. extra: 1357 / 1285
  22021. }
  22022. },
  22023. maw: {
  22024. height: math.unit(0.8, "feet"),
  22025. name: "Maw",
  22026. image: {
  22027. source: "./media/characters/rifter-yrmori/maw.svg"
  22028. }
  22029. },
  22030. mawfront: {
  22031. height: math.unit(1.45, "feet"),
  22032. name: "Maw (Front)",
  22033. image: {
  22034. source: "./media/characters/rifter-yrmori/maw-front.svg"
  22035. }
  22036. },
  22037. },
  22038. [
  22039. {
  22040. name: "Normal",
  22041. height: math.unit(8, "feet"),
  22042. default: true
  22043. },
  22044. {
  22045. name: "Macro",
  22046. height: math.unit(42, "meters")
  22047. },
  22048. ]
  22049. ))
  22050. characterMakers.push(() => makeCharacter(
  22051. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  22052. {
  22053. were: {
  22054. height: math.unit(25 + 6 / 12, "feet"),
  22055. weight: math.unit(10000, "lb"),
  22056. name: "Were",
  22057. image: {
  22058. source: "./media/characters/tahajin/were.svg",
  22059. extra: 801 / 770,
  22060. bottom: 0.042
  22061. }
  22062. },
  22063. aquatic: {
  22064. height: math.unit(6 + 4 / 12, "feet"),
  22065. weight: math.unit(160, "lb"),
  22066. name: "Aquatic",
  22067. image: {
  22068. source: "./media/characters/tahajin/aquatic.svg",
  22069. extra: 572 / 542,
  22070. bottom: 0.04
  22071. }
  22072. },
  22073. chow: {
  22074. height: math.unit(8 + 11 / 12, "feet"),
  22075. weight: math.unit(450, "lb"),
  22076. name: "Chow",
  22077. image: {
  22078. source: "./media/characters/tahajin/chow.svg",
  22079. extra: 660 / 640,
  22080. bottom: 0.015
  22081. }
  22082. },
  22083. demiNaga: {
  22084. height: math.unit(6 + 8 / 12, "feet"),
  22085. weight: math.unit(300, "lb"),
  22086. name: "Demi Naga",
  22087. image: {
  22088. source: "./media/characters/tahajin/demi-naga.svg",
  22089. extra: 643 / 615,
  22090. bottom: 0.1
  22091. }
  22092. },
  22093. data: {
  22094. height: math.unit(5, "inches"),
  22095. weight: math.unit(0.1, "lb"),
  22096. name: "Data",
  22097. image: {
  22098. source: "./media/characters/tahajin/data.svg"
  22099. }
  22100. },
  22101. fluu: {
  22102. height: math.unit(5 + 7 / 12, "feet"),
  22103. weight: math.unit(140, "lb"),
  22104. name: "Fluu",
  22105. image: {
  22106. source: "./media/characters/tahajin/fluu.svg",
  22107. extra: 628 / 592,
  22108. bottom: 0.02
  22109. }
  22110. },
  22111. starWarrior: {
  22112. height: math.unit(4 + 5 / 12, "feet"),
  22113. weight: math.unit(50, "lb"),
  22114. name: "Star Warrior",
  22115. image: {
  22116. source: "./media/characters/tahajin/star-warrior.svg"
  22117. }
  22118. },
  22119. },
  22120. [
  22121. {
  22122. name: "Normal",
  22123. height: math.unit(25 + 6 / 12, "feet"),
  22124. default: true
  22125. },
  22126. ]
  22127. ))
  22128. characterMakers.push(() => makeCharacter(
  22129. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  22130. {
  22131. front: {
  22132. height: math.unit(8, "feet"),
  22133. weight: math.unit(350, "lb"),
  22134. name: "Front",
  22135. image: {
  22136. source: "./media/characters/gabira/front.svg",
  22137. extra: 608 / 580,
  22138. bottom: 0.03
  22139. }
  22140. },
  22141. back: {
  22142. height: math.unit(8, "feet"),
  22143. weight: math.unit(350, "lb"),
  22144. name: "Back",
  22145. image: {
  22146. source: "./media/characters/gabira/back.svg",
  22147. extra: 608 / 580,
  22148. bottom: 0.03
  22149. }
  22150. },
  22151. },
  22152. [
  22153. {
  22154. name: "Normal",
  22155. height: math.unit(8, "feet"),
  22156. default: true
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  22162. {
  22163. front: {
  22164. height: math.unit(5 + 3 / 12, "feet"),
  22165. weight: math.unit(137, "lb"),
  22166. name: "Front",
  22167. image: {
  22168. source: "./media/characters/sasha-katraine/front.svg",
  22169. extra: 1745/1694,
  22170. bottom: 37/1782
  22171. }
  22172. },
  22173. back: {
  22174. height: math.unit(5 + 3 / 12, "feet"),
  22175. weight: math.unit(137, "lb"),
  22176. name: "Back",
  22177. image: {
  22178. source: "./media/characters/sasha-katraine/back.svg",
  22179. extra: 1776/1699,
  22180. bottom: 26/1802
  22181. }
  22182. },
  22183. },
  22184. [
  22185. {
  22186. name: "Micro",
  22187. height: math.unit(5, "inches")
  22188. },
  22189. {
  22190. name: "Normal",
  22191. height: math.unit(5 + 3 / 12, "feet"),
  22192. default: true
  22193. },
  22194. ]
  22195. ))
  22196. characterMakers.push(() => makeCharacter(
  22197. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  22198. {
  22199. side: {
  22200. height: math.unit(4, "inches"),
  22201. weight: math.unit(200, "grams"),
  22202. name: "Side",
  22203. image: {
  22204. source: "./media/characters/der/side.svg",
  22205. extra: 719 / 400,
  22206. bottom: 30.6 / 749.9187
  22207. }
  22208. },
  22209. },
  22210. [
  22211. {
  22212. name: "Micro",
  22213. height: math.unit(4, "inches"),
  22214. default: true
  22215. },
  22216. ]
  22217. ))
  22218. characterMakers.push(() => makeCharacter(
  22219. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  22220. {
  22221. side: {
  22222. height: math.unit(30, "meters"),
  22223. weight: math.unit(700, "tonnes"),
  22224. name: "Side",
  22225. image: {
  22226. source: "./media/characters/fixerdragon/side.svg",
  22227. extra: (1293.0514 - 116.03) / 1106.86,
  22228. bottom: 116.03 / 1293.0514
  22229. }
  22230. },
  22231. },
  22232. [
  22233. {
  22234. name: "Planck",
  22235. height: math.unit(1.6e-35, "meters")
  22236. },
  22237. {
  22238. name: "Micro",
  22239. height: math.unit(0.4, "meters")
  22240. },
  22241. {
  22242. name: "Normal",
  22243. height: math.unit(30, "meters"),
  22244. default: true
  22245. },
  22246. {
  22247. name: "Megamacro",
  22248. height: math.unit(1.2, "megameters")
  22249. },
  22250. {
  22251. name: "Teramacro",
  22252. height: math.unit(130, "terameters")
  22253. },
  22254. {
  22255. name: "Yottamacro",
  22256. height: math.unit(6200, "yottameters")
  22257. },
  22258. ]
  22259. ));
  22260. characterMakers.push(() => makeCharacter(
  22261. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  22262. {
  22263. front: {
  22264. height: math.unit(8, "feet"),
  22265. weight: math.unit(250, "lb"),
  22266. name: "Front",
  22267. image: {
  22268. source: "./media/characters/kite/front.svg",
  22269. extra: 2796 / 2659,
  22270. bottom: 0.002
  22271. }
  22272. },
  22273. },
  22274. [
  22275. {
  22276. name: "Normal",
  22277. height: math.unit(8, "feet"),
  22278. default: true
  22279. },
  22280. {
  22281. name: "Macro",
  22282. height: math.unit(360, "feet")
  22283. },
  22284. {
  22285. name: "Megamacro",
  22286. height: math.unit(1500, "feet")
  22287. },
  22288. ]
  22289. ))
  22290. characterMakers.push(() => makeCharacter(
  22291. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  22292. {
  22293. front: {
  22294. height: math.unit(5 + 11/12, "feet"),
  22295. weight: math.unit(170, "lb"),
  22296. name: "Front",
  22297. image: {
  22298. source: "./media/characters/poojawa-vynar/front.svg",
  22299. extra: 1735/1585,
  22300. bottom: 96/1831
  22301. }
  22302. },
  22303. back: {
  22304. height: math.unit(5 + 11/12, "feet"),
  22305. weight: math.unit(170, "lb"),
  22306. name: "Back",
  22307. image: {
  22308. source: "./media/characters/poojawa-vynar/back.svg",
  22309. extra: 1749/1607,
  22310. bottom: 28/1777
  22311. }
  22312. },
  22313. male: {
  22314. height: math.unit(5 + 11/12, "feet"),
  22315. weight: math.unit(170, "lb"),
  22316. name: "Male",
  22317. image: {
  22318. source: "./media/characters/poojawa-vynar/male.svg",
  22319. extra: 1855/1713,
  22320. bottom: 63/1918
  22321. }
  22322. },
  22323. taur: {
  22324. height: math.unit(5 + 11/12, "feet"),
  22325. weight: math.unit(170, "lb"),
  22326. name: "Taur",
  22327. image: {
  22328. source: "./media/characters/poojawa-vynar/taur.svg",
  22329. extra: 1151/1059,
  22330. bottom: 356/1507
  22331. }
  22332. },
  22333. frontDressed: {
  22334. height: math.unit(5 + 11/12, "feet"),
  22335. weight: math.unit(170, "lb"),
  22336. name: "Front (Dressed)",
  22337. image: {
  22338. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  22339. extra: 1735/1585,
  22340. bottom: 96/1831
  22341. }
  22342. },
  22343. backDressed: {
  22344. height: math.unit(5 + 11/12, "feet"),
  22345. weight: math.unit(170, "lb"),
  22346. name: "Back (Dressed)",
  22347. image: {
  22348. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  22349. extra: 1749/1607,
  22350. bottom: 28/1777
  22351. }
  22352. },
  22353. maleDressed: {
  22354. height: math.unit(5 + 11/12, "feet"),
  22355. weight: math.unit(170, "lb"),
  22356. name: "Male (Dressed)",
  22357. image: {
  22358. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  22359. extra: 1855/1713,
  22360. bottom: 63/1918
  22361. }
  22362. },
  22363. taurDressed: {
  22364. height: math.unit(5 + 11/12, "feet"),
  22365. weight: math.unit(170, "lb"),
  22366. name: "Taur (Dressed)",
  22367. image: {
  22368. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  22369. extra: 1151/1059,
  22370. bottom: 356/1507
  22371. }
  22372. },
  22373. maw: {
  22374. height: math.unit(1.46, "feet"),
  22375. name: "Maw",
  22376. image: {
  22377. source: "./media/characters/poojawa-vynar/maw.svg"
  22378. }
  22379. },
  22380. head: {
  22381. height: math.unit(2.34, "feet"),
  22382. name: "Head",
  22383. image: {
  22384. source: "./media/characters/poojawa-vynar/head.svg"
  22385. }
  22386. },
  22387. paw: {
  22388. height: math.unit(1.61, "feet"),
  22389. name: "Paw",
  22390. image: {
  22391. source: "./media/characters/poojawa-vynar/paw.svg"
  22392. }
  22393. },
  22394. pawToering: {
  22395. height: math.unit(1.72, "feet"),
  22396. name: "Paw (Toering)",
  22397. image: {
  22398. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  22399. }
  22400. },
  22401. toering: {
  22402. height: math.unit(2.9, "inches"),
  22403. name: "Toering",
  22404. image: {
  22405. source: "./media/characters/poojawa-vynar/toering.svg"
  22406. }
  22407. },
  22408. shaft: {
  22409. height: math.unit(0.625, "feet"),
  22410. name: "Shaft",
  22411. image: {
  22412. source: "./media/characters/poojawa-vynar/shaft.svg"
  22413. }
  22414. },
  22415. spade: {
  22416. height: math.unit(0.42, "feet"),
  22417. name: "Spade",
  22418. image: {
  22419. source: "./media/characters/poojawa-vynar/spade.svg"
  22420. }
  22421. },
  22422. },
  22423. [
  22424. {
  22425. name: "Shortstack",
  22426. height: math.unit(4, "feet")
  22427. },
  22428. {
  22429. name: "Normal",
  22430. height: math.unit(5 + 11 / 12, "feet"),
  22431. default: true
  22432. },
  22433. {
  22434. name: "Tauric",
  22435. height: math.unit(4, "meters")
  22436. },
  22437. ]
  22438. ))
  22439. characterMakers.push(() => makeCharacter(
  22440. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  22441. {
  22442. front: {
  22443. height: math.unit(293, "meters"),
  22444. weight: math.unit(70400, "tons"),
  22445. name: "Front",
  22446. image: {
  22447. source: "./media/characters/violette/front.svg",
  22448. extra: 1227 / 1180,
  22449. bottom: 0.005
  22450. }
  22451. },
  22452. back: {
  22453. height: math.unit(293, "meters"),
  22454. weight: math.unit(70400, "tons"),
  22455. name: "Back",
  22456. image: {
  22457. source: "./media/characters/violette/back.svg",
  22458. extra: 1227 / 1180,
  22459. bottom: 0.005
  22460. }
  22461. },
  22462. },
  22463. [
  22464. {
  22465. name: "Macro",
  22466. height: math.unit(293, "meters"),
  22467. default: true
  22468. },
  22469. ]
  22470. ))
  22471. characterMakers.push(() => makeCharacter(
  22472. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  22473. {
  22474. front: {
  22475. height: math.unit(1050, "feet"),
  22476. weight: math.unit(200000, "tons"),
  22477. name: "Front",
  22478. image: {
  22479. source: "./media/characters/alessandra/front.svg",
  22480. extra: 960 / 912,
  22481. bottom: 0.06
  22482. }
  22483. },
  22484. },
  22485. [
  22486. {
  22487. name: "Macro",
  22488. height: math.unit(1050, "feet")
  22489. },
  22490. {
  22491. name: "Macro+",
  22492. height: math.unit(900, "meters"),
  22493. default: true
  22494. },
  22495. ]
  22496. ))
  22497. characterMakers.push(() => makeCharacter(
  22498. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  22499. {
  22500. front: {
  22501. height: math.unit(5, "feet"),
  22502. weight: math.unit(187, "lb"),
  22503. name: "Front",
  22504. image: {
  22505. source: "./media/characters/person/front.svg",
  22506. extra: 3087 / 2945,
  22507. bottom: 91 / 3181
  22508. }
  22509. },
  22510. },
  22511. [
  22512. {
  22513. name: "Micro",
  22514. height: math.unit(3, "inches")
  22515. },
  22516. {
  22517. name: "Normal",
  22518. height: math.unit(5, "feet"),
  22519. default: true
  22520. },
  22521. {
  22522. name: "Macro",
  22523. height: math.unit(90, "feet")
  22524. },
  22525. {
  22526. name: "Max Size",
  22527. height: math.unit(280, "feet")
  22528. },
  22529. ]
  22530. ))
  22531. characterMakers.push(() => makeCharacter(
  22532. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  22533. {
  22534. front: {
  22535. height: math.unit(4.5, "meters"),
  22536. weight: math.unit(3200, "lb"),
  22537. name: "Front",
  22538. image: {
  22539. source: "./media/characters/ty/front.svg",
  22540. extra: 1038 / 960,
  22541. bottom: 31.156 / 1068
  22542. }
  22543. },
  22544. back: {
  22545. height: math.unit(4.5, "meters"),
  22546. weight: math.unit(3200, "lb"),
  22547. name: "Back",
  22548. image: {
  22549. source: "./media/characters/ty/back.svg",
  22550. extra: 1044 / 966,
  22551. bottom: 7.48 / 1049
  22552. }
  22553. },
  22554. },
  22555. [
  22556. {
  22557. name: "Normal",
  22558. height: math.unit(4.5, "meters"),
  22559. default: true
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  22565. {
  22566. front: {
  22567. height: math.unit(5 + 4 / 12, "feet"),
  22568. weight: math.unit(115, "lb"),
  22569. name: "Front",
  22570. image: {
  22571. source: "./media/characters/rocky/front.svg",
  22572. extra: 1012 / 975,
  22573. bottom: 54 / 1066
  22574. }
  22575. },
  22576. },
  22577. [
  22578. {
  22579. name: "Normal",
  22580. height: math.unit(5 + 4 / 12, "feet"),
  22581. default: true
  22582. },
  22583. ]
  22584. ))
  22585. characterMakers.push(() => makeCharacter(
  22586. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  22587. {
  22588. upright: {
  22589. height: math.unit(6, "meters"),
  22590. weight: math.unit(4000, "kg"),
  22591. name: "Upright",
  22592. image: {
  22593. source: "./media/characters/ruin/upright.svg",
  22594. extra: 668 / 661,
  22595. bottom: 42 / 799.8396
  22596. }
  22597. },
  22598. },
  22599. [
  22600. {
  22601. name: "Normal",
  22602. height: math.unit(6, "meters"),
  22603. default: true
  22604. },
  22605. ]
  22606. ))
  22607. characterMakers.push(() => makeCharacter(
  22608. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  22609. {
  22610. front: {
  22611. height: math.unit(5, "feet"),
  22612. weight: math.unit(106, "lb"),
  22613. name: "Front",
  22614. image: {
  22615. source: "./media/characters/robin/front.svg",
  22616. extra: 862 / 799,
  22617. bottom: 42.4 / 914.8856
  22618. }
  22619. },
  22620. },
  22621. [
  22622. {
  22623. name: "Normal",
  22624. height: math.unit(5, "feet"),
  22625. default: true
  22626. },
  22627. ]
  22628. ))
  22629. characterMakers.push(() => makeCharacter(
  22630. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  22631. {
  22632. side: {
  22633. height: math.unit(3, "feet"),
  22634. weight: math.unit(225, "lb"),
  22635. name: "Side",
  22636. image: {
  22637. source: "./media/characters/saian/side.svg",
  22638. extra: 566 / 356,
  22639. bottom: 79.7 / 643
  22640. }
  22641. },
  22642. maw: {
  22643. height: math.unit(2.85, "feet"),
  22644. name: "Maw",
  22645. image: {
  22646. source: "./media/characters/saian/maw.svg"
  22647. }
  22648. },
  22649. },
  22650. [
  22651. {
  22652. name: "Normal",
  22653. height: math.unit(3, "feet"),
  22654. default: true
  22655. },
  22656. ]
  22657. ))
  22658. characterMakers.push(() => makeCharacter(
  22659. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  22660. {
  22661. side: {
  22662. height: math.unit(8, "feet"),
  22663. weight: math.unit(300, "lb"),
  22664. name: "Side",
  22665. image: {
  22666. source: "./media/characters/equus-silvermane/side.svg",
  22667. extra: 2176 / 2050,
  22668. bottom: 65.7 / 2245
  22669. }
  22670. },
  22671. front: {
  22672. height: math.unit(8, "feet"),
  22673. weight: math.unit(300, "lb"),
  22674. name: "Front",
  22675. image: {
  22676. source: "./media/characters/equus-silvermane/front.svg",
  22677. extra: 4633 / 4400,
  22678. bottom: 71.3 / 4706.915
  22679. }
  22680. },
  22681. sideStepping: {
  22682. height: math.unit(8, "feet"),
  22683. weight: math.unit(300, "lb"),
  22684. name: "Side (Stepping)",
  22685. image: {
  22686. source: "./media/characters/equus-silvermane/side-stepping.svg",
  22687. extra: 1968 / 1860,
  22688. bottom: 16.4 / 1989
  22689. }
  22690. },
  22691. },
  22692. [
  22693. {
  22694. name: "Normal",
  22695. height: math.unit(8, "feet")
  22696. },
  22697. {
  22698. name: "Minimacro",
  22699. height: math.unit(75, "feet"),
  22700. default: true
  22701. },
  22702. {
  22703. name: "Macro",
  22704. height: math.unit(150, "feet")
  22705. },
  22706. {
  22707. name: "Macro+",
  22708. height: math.unit(1000, "feet")
  22709. },
  22710. {
  22711. name: "Megamacro",
  22712. height: math.unit(1, "mile")
  22713. },
  22714. ]
  22715. ))
  22716. characterMakers.push(() => makeCharacter(
  22717. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  22718. {
  22719. side: {
  22720. height: math.unit(20, "feet"),
  22721. weight: math.unit(30000, "kg"),
  22722. name: "Side",
  22723. image: {
  22724. source: "./media/characters/windar/side.svg",
  22725. extra: 1491 / 1248,
  22726. bottom: 82.56 / 1568
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Normal",
  22733. height: math.unit(20, "feet"),
  22734. default: true
  22735. },
  22736. ]
  22737. ))
  22738. characterMakers.push(() => makeCharacter(
  22739. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  22740. {
  22741. side: {
  22742. height: math.unit(15.66, "feet"),
  22743. weight: math.unit(150, "lb"),
  22744. name: "Side",
  22745. image: {
  22746. source: "./media/characters/melody/side.svg",
  22747. extra: 1097 / 944,
  22748. bottom: 11.8 / 1109
  22749. }
  22750. },
  22751. sideOutfit: {
  22752. height: math.unit(15.66, "feet"),
  22753. weight: math.unit(150, "lb"),
  22754. name: "Side (Outfit)",
  22755. image: {
  22756. source: "./media/characters/melody/side-outfit.svg",
  22757. extra: 1097 / 944,
  22758. bottom: 11.8 / 1109
  22759. }
  22760. },
  22761. },
  22762. [
  22763. {
  22764. name: "Normal",
  22765. height: math.unit(15.66, "feet"),
  22766. default: true
  22767. },
  22768. ]
  22769. ))
  22770. characterMakers.push(() => makeCharacter(
  22771. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  22772. {
  22773. front: {
  22774. height: math.unit(8, "feet"),
  22775. weight: math.unit(325, "lb"),
  22776. name: "Front",
  22777. image: {
  22778. source: "./media/characters/windera/front.svg",
  22779. extra: 3180 / 2845,
  22780. bottom: 178 / 3365
  22781. }
  22782. },
  22783. },
  22784. [
  22785. {
  22786. name: "Normal",
  22787. height: math.unit(8, "feet"),
  22788. default: true
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  22794. {
  22795. front: {
  22796. height: math.unit(28.75, "feet"),
  22797. weight: math.unit(2000, "kg"),
  22798. name: "Front",
  22799. image: {
  22800. source: "./media/characters/sonear/front.svg",
  22801. extra: 1041.1 / 964.9,
  22802. bottom: 53.7 / 1096.6
  22803. }
  22804. },
  22805. },
  22806. [
  22807. {
  22808. name: "Normal",
  22809. height: math.unit(28.75, "feet"),
  22810. default: true
  22811. },
  22812. ]
  22813. ))
  22814. characterMakers.push(() => makeCharacter(
  22815. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  22816. {
  22817. side: {
  22818. height: math.unit(25.5, "feet"),
  22819. weight: math.unit(23000, "kg"),
  22820. name: "Side",
  22821. image: {
  22822. source: "./media/characters/kanara/side.svg"
  22823. }
  22824. },
  22825. },
  22826. [
  22827. {
  22828. name: "Normal",
  22829. height: math.unit(25.5, "feet"),
  22830. default: true
  22831. },
  22832. ]
  22833. ))
  22834. characterMakers.push(() => makeCharacter(
  22835. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  22836. {
  22837. side: {
  22838. height: math.unit(10, "feet"),
  22839. weight: math.unit(1000, "kg"),
  22840. name: "Side",
  22841. image: {
  22842. source: "./media/characters/ereus/side.svg",
  22843. extra: 1157 / 959,
  22844. bottom: 153 / 1312.5
  22845. }
  22846. },
  22847. },
  22848. [
  22849. {
  22850. name: "Normal",
  22851. height: math.unit(10, "feet"),
  22852. default: true
  22853. },
  22854. ]
  22855. ))
  22856. characterMakers.push(() => makeCharacter(
  22857. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  22858. {
  22859. side: {
  22860. height: math.unit(4.5, "feet"),
  22861. weight: math.unit(500, "lb"),
  22862. name: "Side",
  22863. image: {
  22864. source: "./media/characters/e-ter/side.svg",
  22865. extra: 1550 / 1248,
  22866. bottom: 146 / 1694
  22867. }
  22868. },
  22869. },
  22870. [
  22871. {
  22872. name: "Normal",
  22873. height: math.unit(4.5, "feet"),
  22874. default: true
  22875. },
  22876. ]
  22877. ))
  22878. characterMakers.push(() => makeCharacter(
  22879. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  22880. {
  22881. side: {
  22882. height: math.unit(9.7, "feet"),
  22883. weight: math.unit(4000, "kg"),
  22884. name: "Side",
  22885. image: {
  22886. source: "./media/characters/yamie/side.svg"
  22887. }
  22888. },
  22889. },
  22890. [
  22891. {
  22892. name: "Normal",
  22893. height: math.unit(9.7, "feet"),
  22894. default: true
  22895. },
  22896. ]
  22897. ))
  22898. characterMakers.push(() => makeCharacter(
  22899. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  22900. {
  22901. front: {
  22902. height: math.unit(50, "feet"),
  22903. weight: math.unit(50000, "kg"),
  22904. name: "Front",
  22905. image: {
  22906. source: "./media/characters/anders/front.svg",
  22907. extra: 570 / 539,
  22908. bottom: 14.7 / 586.7
  22909. }
  22910. },
  22911. },
  22912. [
  22913. {
  22914. name: "Large",
  22915. height: math.unit(50, "feet")
  22916. },
  22917. {
  22918. name: "Macro",
  22919. height: math.unit(2000, "feet"),
  22920. default: true
  22921. },
  22922. {
  22923. name: "Megamacro",
  22924. height: math.unit(12, "miles")
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  22930. {
  22931. front: {
  22932. height: math.unit(7 + 2 / 12, "feet"),
  22933. weight: math.unit(300, "lb"),
  22934. name: "Front",
  22935. image: {
  22936. source: "./media/characters/reban/front.svg",
  22937. extra: 1287/1212,
  22938. bottom: 148/1435
  22939. }
  22940. },
  22941. head: {
  22942. height: math.unit(1.95, "feet"),
  22943. name: "Head",
  22944. image: {
  22945. source: "./media/characters/reban/head.svg"
  22946. }
  22947. },
  22948. maw: {
  22949. height: math.unit(0.95, "feet"),
  22950. name: "Maw",
  22951. image: {
  22952. source: "./media/characters/reban/maw.svg"
  22953. }
  22954. },
  22955. foot: {
  22956. height: math.unit(1.65, "feet"),
  22957. name: "Foot",
  22958. image: {
  22959. source: "./media/characters/reban/foot.svg"
  22960. }
  22961. },
  22962. dick: {
  22963. height: math.unit(7 / 5, "feet"),
  22964. name: "Dick",
  22965. image: {
  22966. source: "./media/characters/reban/dick.svg"
  22967. }
  22968. },
  22969. },
  22970. [
  22971. {
  22972. name: "Natural Height",
  22973. height: math.unit(7 + 2 / 12, "feet")
  22974. },
  22975. {
  22976. name: "Macro",
  22977. height: math.unit(500, "feet"),
  22978. default: true
  22979. },
  22980. {
  22981. name: "Canon Height",
  22982. height: math.unit(50, "AU")
  22983. },
  22984. ]
  22985. ))
  22986. characterMakers.push(() => makeCharacter(
  22987. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  22988. {
  22989. front: {
  22990. height: math.unit(6, "feet"),
  22991. weight: math.unit(150, "lb"),
  22992. name: "Front",
  22993. image: {
  22994. source: "./media/characters/terrance-keayes/front.svg",
  22995. extra: 1.005,
  22996. bottom: 151 / 1615
  22997. }
  22998. },
  22999. side: {
  23000. height: math.unit(6, "feet"),
  23001. weight: math.unit(150, "lb"),
  23002. name: "Side",
  23003. image: {
  23004. source: "./media/characters/terrance-keayes/side.svg",
  23005. extra: 1.005,
  23006. bottom: 129.4 / 1544
  23007. }
  23008. },
  23009. back: {
  23010. height: math.unit(6, "feet"),
  23011. weight: math.unit(150, "lb"),
  23012. name: "Back",
  23013. image: {
  23014. source: "./media/characters/terrance-keayes/back.svg",
  23015. extra: 1.005,
  23016. bottom: 58.4 / 1557.3
  23017. }
  23018. },
  23019. dick: {
  23020. height: math.unit(6 * 0.208, "feet"),
  23021. name: "Dick",
  23022. image: {
  23023. source: "./media/characters/terrance-keayes/dick.svg"
  23024. }
  23025. },
  23026. },
  23027. [
  23028. {
  23029. name: "Canon Height",
  23030. height: math.unit(35, "miles"),
  23031. default: true
  23032. },
  23033. ]
  23034. ))
  23035. characterMakers.push(() => makeCharacter(
  23036. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  23037. {
  23038. front: {
  23039. height: math.unit(6, "feet"),
  23040. weight: math.unit(150, "lb"),
  23041. name: "Front",
  23042. image: {
  23043. source: "./media/characters/ofelia/front.svg",
  23044. extra: 1130/1117,
  23045. bottom: 91/1221
  23046. }
  23047. },
  23048. back: {
  23049. height: math.unit(6, "feet"),
  23050. weight: math.unit(150, "lb"),
  23051. name: "Back",
  23052. image: {
  23053. source: "./media/characters/ofelia/back.svg",
  23054. extra: 1172/1159,
  23055. bottom: 28/1200
  23056. }
  23057. },
  23058. maw: {
  23059. height: math.unit(1, "feet"),
  23060. name: "Maw",
  23061. image: {
  23062. source: "./media/characters/ofelia/maw.svg"
  23063. }
  23064. },
  23065. foot: {
  23066. height: math.unit(1.949, "feet"),
  23067. name: "Foot",
  23068. image: {
  23069. source: "./media/characters/ofelia/foot.svg"
  23070. }
  23071. },
  23072. },
  23073. [
  23074. {
  23075. name: "Canon Height",
  23076. height: math.unit(2000, "miles"),
  23077. default: true
  23078. },
  23079. ]
  23080. ))
  23081. characterMakers.push(() => makeCharacter(
  23082. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  23083. {
  23084. front: {
  23085. height: math.unit(6, "feet"),
  23086. weight: math.unit(150, "lb"),
  23087. name: "Front",
  23088. image: {
  23089. source: "./media/characters/samuel/front.svg",
  23090. extra: 265 / 258,
  23091. bottom: 2 / 266.1566
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Macro",
  23098. height: math.unit(100, "feet"),
  23099. default: true
  23100. },
  23101. {
  23102. name: "Full Size",
  23103. height: math.unit(1000, "miles")
  23104. },
  23105. ]
  23106. ))
  23107. characterMakers.push(() => makeCharacter(
  23108. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  23109. {
  23110. front: {
  23111. height: math.unit(6, "feet"),
  23112. weight: math.unit(300, "lb"),
  23113. name: "Front",
  23114. image: {
  23115. source: "./media/characters/beishir-kiel/front.svg",
  23116. extra: 569 / 547,
  23117. bottom: 41.9 / 609
  23118. }
  23119. },
  23120. maw: {
  23121. height: math.unit(6 * 0.202, "feet"),
  23122. name: "Maw",
  23123. image: {
  23124. source: "./media/characters/beishir-kiel/maw.svg"
  23125. }
  23126. },
  23127. },
  23128. [
  23129. {
  23130. name: "Macro",
  23131. height: math.unit(300, "feet"),
  23132. default: true
  23133. },
  23134. ]
  23135. ))
  23136. characterMakers.push(() => makeCharacter(
  23137. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  23138. {
  23139. front: {
  23140. height: math.unit(5 + 7/12, "feet"),
  23141. weight: math.unit(120, "lb"),
  23142. name: "Front",
  23143. image: {
  23144. source: "./media/characters/logan-grey/front.svg",
  23145. extra: 1836/1738,
  23146. bottom: 108/1944
  23147. }
  23148. },
  23149. back: {
  23150. height: math.unit(5 + 7/12, "feet"),
  23151. weight: math.unit(120, "lb"),
  23152. name: "Back",
  23153. image: {
  23154. source: "./media/characters/logan-grey/back.svg",
  23155. extra: 1880/1794,
  23156. bottom: 24/1904
  23157. }
  23158. },
  23159. frontSfw: {
  23160. height: math.unit(5 + 7/12, "feet"),
  23161. weight: math.unit(120, "lb"),
  23162. name: "Front (SFW)",
  23163. image: {
  23164. source: "./media/characters/logan-grey/front-sfw.svg",
  23165. extra: 1836/1738,
  23166. bottom: 108/1944
  23167. }
  23168. },
  23169. backSfw: {
  23170. height: math.unit(5 + 7/12, "feet"),
  23171. weight: math.unit(120, "lb"),
  23172. name: "Back (SFW)",
  23173. image: {
  23174. source: "./media/characters/logan-grey/back-sfw.svg",
  23175. extra: 1880/1794,
  23176. bottom: 24/1904
  23177. }
  23178. },
  23179. hands: {
  23180. height: math.unit(0.84, "feet"),
  23181. name: "Hands",
  23182. image: {
  23183. source: "./media/characters/logan-grey/hands.svg"
  23184. }
  23185. },
  23186. paws: {
  23187. height: math.unit(0.72, "feet"),
  23188. name: "Paws",
  23189. image: {
  23190. source: "./media/characters/logan-grey/paws.svg"
  23191. }
  23192. },
  23193. cock: {
  23194. height: math.unit(1.45, "feet"),
  23195. name: "Cock",
  23196. image: {
  23197. source: "./media/characters/logan-grey/cock.svg"
  23198. }
  23199. },
  23200. cockAlt: {
  23201. height: math.unit(1.437, "feet"),
  23202. name: "Cock (alt)",
  23203. image: {
  23204. source: "./media/characters/logan-grey/cock-alt.svg"
  23205. }
  23206. },
  23207. },
  23208. [
  23209. {
  23210. name: "Normal",
  23211. height: math.unit(5 + 8 / 12, "feet")
  23212. },
  23213. {
  23214. name: "The 500 Foot Femboy",
  23215. height: math.unit(500, "feet"),
  23216. default: true
  23217. },
  23218. {
  23219. name: "Megmacro",
  23220. height: math.unit(20, "miles")
  23221. },
  23222. ]
  23223. ))
  23224. characterMakers.push(() => makeCharacter(
  23225. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  23226. {
  23227. front: {
  23228. height: math.unit(8 + 2 / 12, "feet"),
  23229. weight: math.unit(275, "lb"),
  23230. name: "Front",
  23231. image: {
  23232. source: "./media/characters/draganta/front.svg",
  23233. extra: 1177 / 1135,
  23234. bottom: 33.46 / 1212.1
  23235. }
  23236. },
  23237. },
  23238. [
  23239. {
  23240. name: "Normal",
  23241. height: math.unit(8 + 6 / 12, "feet"),
  23242. default: true
  23243. },
  23244. {
  23245. name: "Macro",
  23246. height: math.unit(150, "feet")
  23247. },
  23248. {
  23249. name: "Megamacro",
  23250. height: math.unit(1000, "miles")
  23251. },
  23252. ]
  23253. ))
  23254. characterMakers.push(() => makeCharacter(
  23255. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  23256. {
  23257. front: {
  23258. height: math.unit(1.72, "m"),
  23259. weight: math.unit(80, "lb"),
  23260. name: "Front",
  23261. image: {
  23262. source: "./media/characters/voski/front.svg",
  23263. extra: 2076.22 / 2022.4,
  23264. bottom: 102.7 / 2177.3866
  23265. }
  23266. },
  23267. frontFlaccid: {
  23268. height: math.unit(1.72, "m"),
  23269. weight: math.unit(80, "lb"),
  23270. name: "Front (Flaccid)",
  23271. image: {
  23272. source: "./media/characters/voski/front-flaccid.svg",
  23273. extra: 2076.22 / 2022.4,
  23274. bottom: 102.7 / 2177.3866
  23275. }
  23276. },
  23277. frontErect: {
  23278. height: math.unit(1.72, "m"),
  23279. weight: math.unit(80, "lb"),
  23280. name: "Front (Erect)",
  23281. image: {
  23282. source: "./media/characters/voski/front-erect.svg",
  23283. extra: 2076.22 / 2022.4,
  23284. bottom: 102.7 / 2177.3866
  23285. }
  23286. },
  23287. back: {
  23288. height: math.unit(1.72, "m"),
  23289. weight: math.unit(80, "lb"),
  23290. name: "Back",
  23291. image: {
  23292. source: "./media/characters/voski/back.svg",
  23293. extra: 2104 / 2051,
  23294. bottom: 10.45 / 2113.63
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(1.72, "m")
  23302. },
  23303. {
  23304. name: "Macro",
  23305. height: math.unit(55, "m"),
  23306. default: true
  23307. },
  23308. {
  23309. name: "Macro+",
  23310. height: math.unit(300, "m")
  23311. },
  23312. {
  23313. name: "Macro++",
  23314. height: math.unit(700, "m")
  23315. },
  23316. {
  23317. name: "Macro+++",
  23318. height: math.unit(4500, "m")
  23319. },
  23320. {
  23321. name: "Macro++++",
  23322. height: math.unit(45, "km")
  23323. },
  23324. {
  23325. name: "Macro+++++",
  23326. height: math.unit(1220, "km")
  23327. },
  23328. ]
  23329. ))
  23330. characterMakers.push(() => makeCharacter(
  23331. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  23332. {
  23333. front: {
  23334. height: math.unit(2.3, "m"),
  23335. weight: math.unit(304, "kg"),
  23336. name: "Front",
  23337. image: {
  23338. source: "./media/characters/icowom-lee/front.svg",
  23339. extra: 985 / 955,
  23340. bottom: 25.4 / 1012
  23341. }
  23342. },
  23343. fronttentacles: {
  23344. height: math.unit(2.3, "m"),
  23345. weight: math.unit(304, "kg"),
  23346. name: "Front-tentacles",
  23347. image: {
  23348. source: "./media/characters/icowom-lee/front-tentacles.svg",
  23349. extra: 985 / 955,
  23350. bottom: 25.4 / 1012
  23351. }
  23352. },
  23353. back: {
  23354. height: math.unit(2.3, "m"),
  23355. weight: math.unit(304, "kg"),
  23356. name: "Back",
  23357. image: {
  23358. source: "./media/characters/icowom-lee/back.svg",
  23359. extra: 975 / 954,
  23360. bottom: 9.5 / 985
  23361. }
  23362. },
  23363. backtentacles: {
  23364. height: math.unit(2.3, "m"),
  23365. weight: math.unit(304, "kg"),
  23366. name: "Back-tentacles",
  23367. image: {
  23368. source: "./media/characters/icowom-lee/back-tentacles.svg",
  23369. extra: 975 / 954,
  23370. bottom: 9.5 / 985
  23371. }
  23372. },
  23373. frontDressed: {
  23374. height: math.unit(2.3, "m"),
  23375. weight: math.unit(304, "kg"),
  23376. name: "Front (Dressed)",
  23377. image: {
  23378. source: "./media/characters/icowom-lee/front-dressed.svg",
  23379. extra: 3076 / 2933,
  23380. bottom: 51.4 / 3125.1889
  23381. }
  23382. },
  23383. rump: {
  23384. height: math.unit(0.776, "meters"),
  23385. name: "Rump",
  23386. image: {
  23387. source: "./media/characters/icowom-lee/rump.svg"
  23388. }
  23389. },
  23390. genitals: {
  23391. height: math.unit(0.78, "meters"),
  23392. name: "Genitals",
  23393. image: {
  23394. source: "./media/characters/icowom-lee/genitals.svg"
  23395. }
  23396. },
  23397. },
  23398. [
  23399. {
  23400. name: "Normal",
  23401. height: math.unit(2.3, "meters"),
  23402. default: true
  23403. },
  23404. {
  23405. name: "Macro",
  23406. height: math.unit(94, "meters"),
  23407. default: true
  23408. },
  23409. ]
  23410. ))
  23411. characterMakers.push(() => makeCharacter(
  23412. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  23413. {
  23414. front: {
  23415. height: math.unit(22, "meters"),
  23416. weight: math.unit(21000, "kg"),
  23417. name: "Front",
  23418. image: {
  23419. source: "./media/characters/shock-diamond/front.svg",
  23420. extra: 2204 / 2053,
  23421. bottom: 65 / 2239.47
  23422. }
  23423. },
  23424. frontNude: {
  23425. height: math.unit(22, "meters"),
  23426. weight: math.unit(21000, "kg"),
  23427. name: "Front (Nude)",
  23428. image: {
  23429. source: "./media/characters/shock-diamond/front-nude.svg",
  23430. extra: 2514 / 2285,
  23431. bottom: 13 / 2527.56
  23432. }
  23433. },
  23434. },
  23435. [
  23436. {
  23437. name: "Normal",
  23438. height: math.unit(3, "meters")
  23439. },
  23440. {
  23441. name: "Macro",
  23442. height: math.unit(22, "meters"),
  23443. default: true
  23444. },
  23445. ]
  23446. ))
  23447. characterMakers.push(() => makeCharacter(
  23448. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  23449. {
  23450. front: {
  23451. height: math.unit(5 + 4 / 12, "feet"),
  23452. weight: math.unit(120, "lb"),
  23453. name: "Front",
  23454. image: {
  23455. source: "./media/characters/rory/front.svg",
  23456. extra: 1318/1241,
  23457. bottom: 42/1360
  23458. }
  23459. },
  23460. back: {
  23461. height: math.unit(5 + 4 / 12, "feet"),
  23462. weight: math.unit(120, "lb"),
  23463. name: "Back",
  23464. image: {
  23465. source: "./media/characters/rory/back.svg",
  23466. extra: 1318/1241,
  23467. bottom: 42/1360
  23468. }
  23469. },
  23470. butt: {
  23471. height: math.unit(1.74, "feet"),
  23472. name: "Butt",
  23473. image: {
  23474. source: "./media/characters/rory/butt.svg"
  23475. }
  23476. },
  23477. dick: {
  23478. height: math.unit(1.02, "feet"),
  23479. name: "Dick",
  23480. image: {
  23481. source: "./media/characters/rory/dick.svg"
  23482. }
  23483. },
  23484. paws: {
  23485. height: math.unit(1, "feet"),
  23486. name: "Paws",
  23487. image: {
  23488. source: "./media/characters/rory/paws.svg"
  23489. }
  23490. },
  23491. frontAlt: {
  23492. height: math.unit(5 + 4 / 12, "feet"),
  23493. weight: math.unit(120, "lb"),
  23494. name: "Front (Alt)",
  23495. image: {
  23496. source: "./media/characters/rory/front-alt.svg",
  23497. extra: 589 / 556,
  23498. bottom: 45.7 / 635.76
  23499. }
  23500. },
  23501. frontAltNude: {
  23502. height: math.unit(5 + 4 / 12, "feet"),
  23503. weight: math.unit(120, "lb"),
  23504. name: "Front (Alt, Nude)",
  23505. image: {
  23506. source: "./media/characters/rory/front-alt-nude.svg",
  23507. extra: 589 / 556,
  23508. bottom: 45.7 / 635.76
  23509. }
  23510. },
  23511. side: {
  23512. height: math.unit(5 + 4 / 12, "feet"),
  23513. weight: math.unit(120, "lb"),
  23514. name: "Side",
  23515. image: {
  23516. source: "./media/characters/rory/side.svg",
  23517. extra: 597 / 564,
  23518. bottom: 55 / 653
  23519. }
  23520. },
  23521. backAlt: {
  23522. height: math.unit(5 + 4 / 12, "feet"),
  23523. weight: math.unit(120, "lb"),
  23524. name: "Back (Alt)",
  23525. image: {
  23526. source: "./media/characters/rory/back-alt.svg",
  23527. extra: 620 / 585,
  23528. bottom: 8.86 / 630.43
  23529. }
  23530. },
  23531. dickAlt: {
  23532. height: math.unit(0.86, "feet"),
  23533. name: "Dick (Alt)",
  23534. image: {
  23535. source: "./media/characters/rory/dick-alt.svg"
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Normal",
  23542. height: math.unit(5 + 4 / 12, "feet"),
  23543. default: true
  23544. },
  23545. {
  23546. name: "Macro",
  23547. height: math.unit(100, "feet")
  23548. },
  23549. {
  23550. name: "Macro+",
  23551. height: math.unit(140, "feet")
  23552. },
  23553. {
  23554. name: "Macro++",
  23555. height: math.unit(300, "feet")
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  23561. {
  23562. front: {
  23563. height: math.unit(5 + 9 / 12, "feet"),
  23564. weight: math.unit(190, "lb"),
  23565. name: "Front",
  23566. image: {
  23567. source: "./media/characters/sprisk/front.svg",
  23568. extra: 1225 / 1180,
  23569. bottom: 42.7 / 1266.4
  23570. }
  23571. },
  23572. frontNsfw: {
  23573. height: math.unit(5 + 9 / 12, "feet"),
  23574. weight: math.unit(190, "lb"),
  23575. name: "Front (NSFW)",
  23576. image: {
  23577. source: "./media/characters/sprisk/front-nsfw.svg",
  23578. extra: 1225 / 1180,
  23579. bottom: 42.7 / 1266.4
  23580. }
  23581. },
  23582. back: {
  23583. height: math.unit(5 + 9 / 12, "feet"),
  23584. weight: math.unit(190, "lb"),
  23585. name: "Back",
  23586. image: {
  23587. source: "./media/characters/sprisk/back.svg",
  23588. extra: 1247 / 1200,
  23589. bottom: 5.6 / 1253.04
  23590. }
  23591. },
  23592. },
  23593. [
  23594. {
  23595. name: "Tiny",
  23596. height: math.unit(2, "inches")
  23597. },
  23598. {
  23599. name: "Normal",
  23600. height: math.unit(5 + 9 / 12, "feet"),
  23601. default: true
  23602. },
  23603. {
  23604. name: "Mini Macro",
  23605. height: math.unit(18, "feet")
  23606. },
  23607. {
  23608. name: "Macro",
  23609. height: math.unit(100, "feet")
  23610. },
  23611. {
  23612. name: "MACRO",
  23613. height: math.unit(50, "miles")
  23614. },
  23615. {
  23616. name: "M A C R O",
  23617. height: math.unit(300, "miles")
  23618. },
  23619. ]
  23620. ))
  23621. characterMakers.push(() => makeCharacter(
  23622. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  23623. {
  23624. side: {
  23625. height: math.unit(15.6, "meters"),
  23626. weight: math.unit(700000, "kg"),
  23627. name: "Side",
  23628. image: {
  23629. source: "./media/characters/bunsen/side.svg",
  23630. extra: 1644 / 358
  23631. }
  23632. },
  23633. foot: {
  23634. height: math.unit(1.611 * 1644 / 358, "meter"),
  23635. name: "Foot",
  23636. image: {
  23637. source: "./media/characters/bunsen/foot.svg"
  23638. }
  23639. },
  23640. },
  23641. [
  23642. {
  23643. name: "Small",
  23644. height: math.unit(10, "feet")
  23645. },
  23646. {
  23647. name: "Normal",
  23648. height: math.unit(15.6, "meters"),
  23649. default: true
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  23655. {
  23656. front: {
  23657. height: math.unit(4 + 11 / 12, "feet"),
  23658. weight: math.unit(140, "lb"),
  23659. name: "Front",
  23660. image: {
  23661. source: "./media/characters/sesh/front.svg",
  23662. extra: 3420 / 3231,
  23663. bottom: 72 / 3949.5
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Normal",
  23670. height: math.unit(4 + 11 / 12, "feet")
  23671. },
  23672. {
  23673. name: "Grown",
  23674. height: math.unit(15, "feet"),
  23675. default: true
  23676. },
  23677. {
  23678. name: "Macro",
  23679. height: math.unit(1500, "feet")
  23680. },
  23681. {
  23682. name: "Megamacro",
  23683. height: math.unit(30, "miles")
  23684. },
  23685. {
  23686. name: "Continental",
  23687. height: math.unit(3000, "miles")
  23688. },
  23689. {
  23690. name: "Gravity Mass",
  23691. height: math.unit(300000, "miles")
  23692. },
  23693. {
  23694. name: "Planet Buster",
  23695. height: math.unit(30000000, "miles")
  23696. },
  23697. {
  23698. name: "Big",
  23699. height: math.unit(3000000000, "miles")
  23700. },
  23701. ]
  23702. ))
  23703. characterMakers.push(() => makeCharacter(
  23704. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  23705. {
  23706. front: {
  23707. height: math.unit(9, "feet"),
  23708. weight: math.unit(350, "lb"),
  23709. name: "Front",
  23710. image: {
  23711. source: "./media/characters/pepper/front.svg",
  23712. extra: 1448 / 1312,
  23713. bottom: 9.4 / 1457.88
  23714. }
  23715. },
  23716. back: {
  23717. height: math.unit(9, "feet"),
  23718. weight: math.unit(350, "lb"),
  23719. name: "Back",
  23720. image: {
  23721. source: "./media/characters/pepper/back.svg",
  23722. extra: 1423 / 1300,
  23723. bottom: 4.6 / 1429
  23724. }
  23725. },
  23726. maw: {
  23727. height: math.unit(0.932, "feet"),
  23728. name: "Maw",
  23729. image: {
  23730. source: "./media/characters/pepper/maw.svg"
  23731. }
  23732. },
  23733. },
  23734. [
  23735. {
  23736. name: "Normal",
  23737. height: math.unit(9, "feet"),
  23738. default: true
  23739. },
  23740. ]
  23741. ))
  23742. characterMakers.push(() => makeCharacter(
  23743. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  23744. {
  23745. front: {
  23746. height: math.unit(6, "feet"),
  23747. weight: math.unit(150, "lb"),
  23748. name: "Front",
  23749. image: {
  23750. source: "./media/characters/maelstrom/front.svg",
  23751. extra: 2100 / 1883,
  23752. bottom: 94 / 2196.7
  23753. }
  23754. },
  23755. },
  23756. [
  23757. {
  23758. name: "Less Kaiju",
  23759. height: math.unit(200, "feet")
  23760. },
  23761. {
  23762. name: "Kaiju",
  23763. height: math.unit(400, "feet"),
  23764. default: true
  23765. },
  23766. {
  23767. name: "Kaiju-er",
  23768. height: math.unit(600, "feet")
  23769. },
  23770. ]
  23771. ))
  23772. characterMakers.push(() => makeCharacter(
  23773. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  23774. {
  23775. front: {
  23776. height: math.unit(6 + 5 / 12, "feet"),
  23777. weight: math.unit(180, "lb"),
  23778. name: "Front",
  23779. image: {
  23780. source: "./media/characters/lexir/front.svg",
  23781. extra: 180 / 172,
  23782. bottom: 12 / 192
  23783. }
  23784. },
  23785. back: {
  23786. height: math.unit(6 + 5 / 12, "feet"),
  23787. weight: math.unit(180, "lb"),
  23788. name: "Back",
  23789. image: {
  23790. source: "./media/characters/lexir/back.svg",
  23791. extra: 1273/1201,
  23792. bottom: 39/1312
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Very Smal",
  23799. height: math.unit(1, "nm")
  23800. },
  23801. {
  23802. name: "Normal",
  23803. height: math.unit(6 + 5 / 12, "feet"),
  23804. default: true
  23805. },
  23806. {
  23807. name: "Macro",
  23808. height: math.unit(1, "mile")
  23809. },
  23810. {
  23811. name: "Megamacro",
  23812. height: math.unit(50, "miles")
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  23818. {
  23819. front: {
  23820. height: math.unit(1.5, "meters"),
  23821. weight: math.unit(100, "lb"),
  23822. name: "Front",
  23823. image: {
  23824. source: "./media/characters/maksio/front.svg",
  23825. extra: 1549 / 1531,
  23826. bottom: 123.7 / 1674.5429
  23827. }
  23828. },
  23829. back: {
  23830. height: math.unit(1.5, "meters"),
  23831. weight: math.unit(100, "lb"),
  23832. name: "Back",
  23833. image: {
  23834. source: "./media/characters/maksio/back.svg",
  23835. extra: 1541 / 1509,
  23836. bottom: 97 / 1639
  23837. }
  23838. },
  23839. hand: {
  23840. height: math.unit(0.621, "feet"),
  23841. name: "Hand",
  23842. image: {
  23843. source: "./media/characters/maksio/hand.svg"
  23844. }
  23845. },
  23846. foot: {
  23847. height: math.unit(1.611, "feet"),
  23848. name: "Foot",
  23849. image: {
  23850. source: "./media/characters/maksio/foot.svg"
  23851. }
  23852. },
  23853. },
  23854. [
  23855. {
  23856. name: "Shrunken",
  23857. height: math.unit(10, "cm")
  23858. },
  23859. {
  23860. name: "Normal",
  23861. height: math.unit(150, "cm"),
  23862. default: true
  23863. },
  23864. ]
  23865. ))
  23866. characterMakers.push(() => makeCharacter(
  23867. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  23868. {
  23869. front: {
  23870. height: math.unit(100, "feet"),
  23871. name: "Front",
  23872. image: {
  23873. source: "./media/characters/erza-bear/front.svg",
  23874. extra: 2449 / 2390,
  23875. bottom: 46 / 2494
  23876. }
  23877. },
  23878. back: {
  23879. height: math.unit(100, "feet"),
  23880. name: "Back",
  23881. image: {
  23882. source: "./media/characters/erza-bear/back.svg",
  23883. extra: 2489 / 2430,
  23884. bottom: 85.4 / 2480
  23885. }
  23886. },
  23887. tail: {
  23888. height: math.unit(42, "feet"),
  23889. name: "Tail",
  23890. image: {
  23891. source: "./media/characters/erza-bear/tail.svg"
  23892. }
  23893. },
  23894. tongue: {
  23895. height: math.unit(8, "feet"),
  23896. name: "Tongue",
  23897. image: {
  23898. source: "./media/characters/erza-bear/tongue.svg"
  23899. }
  23900. },
  23901. dick: {
  23902. height: math.unit(10.5, "feet"),
  23903. name: "Dick",
  23904. image: {
  23905. source: "./media/characters/erza-bear/dick.svg"
  23906. }
  23907. },
  23908. dickVertical: {
  23909. height: math.unit(16.9, "feet"),
  23910. name: "Dick (Vertical)",
  23911. image: {
  23912. source: "./media/characters/erza-bear/dick-vertical.svg"
  23913. }
  23914. },
  23915. },
  23916. [
  23917. {
  23918. name: "Macro",
  23919. height: math.unit(100, "feet"),
  23920. default: true
  23921. },
  23922. ]
  23923. ))
  23924. characterMakers.push(() => makeCharacter(
  23925. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  23926. {
  23927. front: {
  23928. height: math.unit(172, "cm"),
  23929. weight: math.unit(73, "kg"),
  23930. name: "Front",
  23931. image: {
  23932. source: "./media/characters/violet-flor/front.svg",
  23933. extra: 1530 / 1442,
  23934. bottom: 61.9 / 1588.8
  23935. }
  23936. },
  23937. back: {
  23938. height: math.unit(180, "cm"),
  23939. weight: math.unit(73, "kg"),
  23940. name: "Back",
  23941. image: {
  23942. source: "./media/characters/violet-flor/back.svg",
  23943. extra: 1692 / 1630,
  23944. bottom: 20 / 1712
  23945. }
  23946. },
  23947. },
  23948. [
  23949. {
  23950. name: "Normal",
  23951. height: math.unit(172, "cm"),
  23952. default: true
  23953. },
  23954. ]
  23955. ))
  23956. characterMakers.push(() => makeCharacter(
  23957. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  23958. {
  23959. front: {
  23960. height: math.unit(6, "feet"),
  23961. weight: math.unit(220, "lb"),
  23962. name: "Front",
  23963. image: {
  23964. source: "./media/characters/lynn-rhea/front.svg",
  23965. extra: 310 / 273
  23966. }
  23967. },
  23968. back: {
  23969. height: math.unit(6, "feet"),
  23970. weight: math.unit(220, "lb"),
  23971. name: "Back",
  23972. image: {
  23973. source: "./media/characters/lynn-rhea/back.svg",
  23974. extra: 310 / 273
  23975. }
  23976. },
  23977. dicks: {
  23978. height: math.unit(0.9, "feet"),
  23979. name: "Dicks",
  23980. image: {
  23981. source: "./media/characters/lynn-rhea/dicks.svg"
  23982. }
  23983. },
  23984. slit: {
  23985. height: math.unit(0.4, "feet"),
  23986. name: "Slit",
  23987. image: {
  23988. source: "./media/characters/lynn-rhea/slit.svg"
  23989. }
  23990. },
  23991. },
  23992. [
  23993. {
  23994. name: "Micro",
  23995. height: math.unit(1, "inch")
  23996. },
  23997. {
  23998. name: "Macro",
  23999. height: math.unit(60, "feet"),
  24000. default: true
  24001. },
  24002. {
  24003. name: "Megamacro",
  24004. height: math.unit(2, "miles")
  24005. },
  24006. {
  24007. name: "Gigamacro",
  24008. height: math.unit(3, "earths")
  24009. },
  24010. {
  24011. name: "Galactic",
  24012. height: math.unit(0.8, "galaxies")
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  24018. {
  24019. front: {
  24020. height: math.unit(1600, "feet"),
  24021. weight: math.unit(85758785169, "kg"),
  24022. name: "Front",
  24023. image: {
  24024. source: "./media/characters/valathos/front.svg",
  24025. extra: 1451 / 1339
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Macro",
  24032. height: math.unit(1600, "feet"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  24039. {
  24040. front: {
  24041. height: math.unit(7 + 5 / 12, "feet"),
  24042. weight: math.unit(300, "lb"),
  24043. name: "Front",
  24044. image: {
  24045. source: "./media/characters/azula/front.svg",
  24046. extra: 3208 / 2880,
  24047. bottom: 80.2 / 3277
  24048. }
  24049. },
  24050. back: {
  24051. height: math.unit(7 + 5 / 12, "feet"),
  24052. weight: math.unit(300, "lb"),
  24053. name: "Back",
  24054. image: {
  24055. source: "./media/characters/azula/back.svg",
  24056. extra: 3169 / 2822,
  24057. bottom: 150.6 / 3321
  24058. }
  24059. },
  24060. },
  24061. [
  24062. {
  24063. name: "Normal",
  24064. height: math.unit(7 + 5 / 12, "feet"),
  24065. default: true
  24066. },
  24067. {
  24068. name: "Big",
  24069. height: math.unit(20, "feet")
  24070. },
  24071. ]
  24072. ))
  24073. characterMakers.push(() => makeCharacter(
  24074. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  24075. {
  24076. front: {
  24077. height: math.unit(5 + 1 / 12, "feet"),
  24078. weight: math.unit(110, "lb"),
  24079. name: "Front",
  24080. image: {
  24081. source: "./media/characters/rupert/front.svg",
  24082. extra: 1549 / 1495,
  24083. bottom: 54.2 / 1604.4
  24084. }
  24085. },
  24086. },
  24087. [
  24088. {
  24089. name: "Normal",
  24090. height: math.unit(5 + 1 / 12, "feet"),
  24091. default: true
  24092. },
  24093. ]
  24094. ))
  24095. characterMakers.push(() => makeCharacter(
  24096. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  24097. {
  24098. front: {
  24099. height: math.unit(8 + 4 / 12, "feet"),
  24100. weight: math.unit(350, "lb"),
  24101. name: "Front",
  24102. image: {
  24103. source: "./media/characters/sheera-castellar/front.svg",
  24104. extra: 1957 / 1894,
  24105. bottom: 26.97 / 1975.017
  24106. }
  24107. },
  24108. side: {
  24109. height: math.unit(8 + 4 / 12, "feet"),
  24110. weight: math.unit(350, "lb"),
  24111. name: "Side",
  24112. image: {
  24113. source: "./media/characters/sheera-castellar/side.svg",
  24114. extra: 1957 / 1894
  24115. }
  24116. },
  24117. back: {
  24118. height: math.unit(8 + 4 / 12, "feet"),
  24119. weight: math.unit(350, "lb"),
  24120. name: "Back",
  24121. image: {
  24122. source: "./media/characters/sheera-castellar/back.svg",
  24123. extra: 1957 / 1894
  24124. }
  24125. },
  24126. angled: {
  24127. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  24128. weight: math.unit(350, "lb"),
  24129. name: "Angled",
  24130. image: {
  24131. source: "./media/characters/sheera-castellar/angled.svg",
  24132. extra: 1807 / 1707,
  24133. bottom: 68 / 1875
  24134. }
  24135. },
  24136. genitals: {
  24137. height: math.unit(2.2, "feet"),
  24138. name: "Genitals",
  24139. image: {
  24140. source: "./media/characters/sheera-castellar/genitals.svg"
  24141. }
  24142. },
  24143. taur: {
  24144. height: math.unit(10 + 6/12, "feet"),
  24145. name: "Taur",
  24146. image: {
  24147. source: "./media/characters/sheera-castellar/taur.svg",
  24148. extra: 2017/1909,
  24149. bottom: 185/2202
  24150. }
  24151. },
  24152. },
  24153. [
  24154. {
  24155. name: "Normal",
  24156. height: math.unit(8 + 4 / 12, "feet")
  24157. },
  24158. {
  24159. name: "Macro",
  24160. height: math.unit(150, "feet"),
  24161. default: true
  24162. },
  24163. {
  24164. name: "Macro+",
  24165. height: math.unit(800, "feet")
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  24171. {
  24172. front: {
  24173. height: math.unit(6, "feet"),
  24174. weight: math.unit(150, "lb"),
  24175. name: "Front",
  24176. image: {
  24177. source: "./media/characters/jaipur/front.svg",
  24178. extra: 3860 / 3731,
  24179. bottom: 287 / 4140
  24180. }
  24181. },
  24182. back: {
  24183. height: math.unit(6, "feet"),
  24184. weight: math.unit(150, "lb"),
  24185. name: "Back",
  24186. image: {
  24187. source: "./media/characters/jaipur/back.svg",
  24188. extra: 1637/1561,
  24189. bottom: 154/1791
  24190. }
  24191. },
  24192. },
  24193. [
  24194. {
  24195. name: "Normal",
  24196. height: math.unit(1.85, "meters"),
  24197. default: true
  24198. },
  24199. {
  24200. name: "Macro",
  24201. height: math.unit(150, "meters")
  24202. },
  24203. {
  24204. name: "Macro+",
  24205. height: math.unit(0.5, "miles")
  24206. },
  24207. {
  24208. name: "Macro++",
  24209. height: math.unit(2.5, "miles")
  24210. },
  24211. {
  24212. name: "Macro+++",
  24213. height: math.unit(12, "miles")
  24214. },
  24215. {
  24216. name: "Macro++++",
  24217. height: math.unit(120, "miles")
  24218. },
  24219. {
  24220. name: "Macro+++++",
  24221. height: math.unit(1200, "miles")
  24222. },
  24223. ]
  24224. ))
  24225. characterMakers.push(() => makeCharacter(
  24226. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  24227. {
  24228. front: {
  24229. height: math.unit(6, "feet"),
  24230. weight: math.unit(150, "lb"),
  24231. name: "Front",
  24232. image: {
  24233. source: "./media/characters/sheila-wolf/front.svg",
  24234. extra: 1931 / 1808,
  24235. bottom: 29.5 / 1960
  24236. }
  24237. },
  24238. dick: {
  24239. height: math.unit(1.464, "feet"),
  24240. name: "Dick",
  24241. image: {
  24242. source: "./media/characters/sheila-wolf/dick.svg"
  24243. }
  24244. },
  24245. muzzle: {
  24246. height: math.unit(0.513, "feet"),
  24247. name: "Muzzle",
  24248. image: {
  24249. source: "./media/characters/sheila-wolf/muzzle.svg"
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Macro",
  24256. height: math.unit(70, "feet"),
  24257. default: true
  24258. },
  24259. ]
  24260. ))
  24261. characterMakers.push(() => makeCharacter(
  24262. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  24263. {
  24264. front: {
  24265. height: math.unit(32, "meters"),
  24266. weight: math.unit(300000, "kg"),
  24267. name: "Front",
  24268. image: {
  24269. source: "./media/characters/almor/front.svg",
  24270. extra: 1408 / 1322,
  24271. bottom: 94.6 / 1506.5
  24272. }
  24273. },
  24274. },
  24275. [
  24276. {
  24277. name: "Macro",
  24278. height: math.unit(32, "meters"),
  24279. default: true
  24280. },
  24281. ]
  24282. ))
  24283. characterMakers.push(() => makeCharacter(
  24284. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  24285. {
  24286. front: {
  24287. height: math.unit(7, "feet"),
  24288. weight: math.unit(200, "lb"),
  24289. name: "Front",
  24290. image: {
  24291. source: "./media/characters/silver/front.svg",
  24292. extra: 472.1 / 450.5,
  24293. bottom: 26.5 / 499.424
  24294. }
  24295. },
  24296. },
  24297. [
  24298. {
  24299. name: "Normal",
  24300. height: math.unit(7, "feet"),
  24301. default: true
  24302. },
  24303. {
  24304. name: "Macro",
  24305. height: math.unit(800, "feet")
  24306. },
  24307. {
  24308. name: "Megamacro",
  24309. height: math.unit(250, "miles")
  24310. },
  24311. ]
  24312. ))
  24313. characterMakers.push(() => makeCharacter(
  24314. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  24315. {
  24316. front: {
  24317. height: math.unit(6, "feet"),
  24318. weight: math.unit(150, "lb"),
  24319. name: "Front",
  24320. image: {
  24321. source: "./media/characters/pliskin/front.svg",
  24322. extra: 1469 / 1359,
  24323. bottom: 70 / 1540
  24324. }
  24325. },
  24326. },
  24327. [
  24328. {
  24329. name: "Micro",
  24330. height: math.unit(3, "inches")
  24331. },
  24332. {
  24333. name: "Normal",
  24334. height: math.unit(5 + 11 / 12, "feet"),
  24335. default: true
  24336. },
  24337. {
  24338. name: "Macro",
  24339. height: math.unit(120, "feet")
  24340. },
  24341. ]
  24342. ))
  24343. characterMakers.push(() => makeCharacter(
  24344. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  24345. {
  24346. front: {
  24347. height: math.unit(6, "feet"),
  24348. weight: math.unit(150, "lb"),
  24349. name: "Front",
  24350. image: {
  24351. source: "./media/characters/sammy/front.svg",
  24352. extra: 1193 / 1089,
  24353. bottom: 30.5 / 1226
  24354. }
  24355. },
  24356. },
  24357. [
  24358. {
  24359. name: "Macro",
  24360. height: math.unit(1700, "feet"),
  24361. default: true
  24362. },
  24363. {
  24364. name: "Examacro",
  24365. height: math.unit(2.5e9, "lightyears")
  24366. },
  24367. ]
  24368. ))
  24369. characterMakers.push(() => makeCharacter(
  24370. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  24371. {
  24372. front: {
  24373. height: math.unit(21, "meters"),
  24374. weight: math.unit(12, "tonnes"),
  24375. name: "Front",
  24376. image: {
  24377. source: "./media/characters/kuru/front.svg",
  24378. extra: 4301 / 3785,
  24379. bottom: 371.3 / 4691
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Macro",
  24386. height: math.unit(21, "meters"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(23, "meters"),
  24396. weight: math.unit(12.2, "tonnes"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/rakka/front.svg",
  24400. extra: 4670 / 4169,
  24401. bottom: 301 / 4968.7
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Macro",
  24408. height: math.unit(23, "meters"),
  24409. default: true
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  24415. {
  24416. front: {
  24417. height: math.unit(6, "feet"),
  24418. weight: math.unit(150, "lb"),
  24419. name: "Front",
  24420. image: {
  24421. source: "./media/characters/rhys-feline/front.svg",
  24422. extra: 2488 / 2308,
  24423. bottom: 35.67 / 2519.19
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Really Small",
  24430. height: math.unit(1, "nm")
  24431. },
  24432. {
  24433. name: "Micro",
  24434. height: math.unit(4, "inches")
  24435. },
  24436. {
  24437. name: "Normal",
  24438. height: math.unit(4 + 10 / 12, "feet"),
  24439. default: true
  24440. },
  24441. {
  24442. name: "Macro",
  24443. height: math.unit(100, "feet")
  24444. },
  24445. {
  24446. name: "Megamacto",
  24447. height: math.unit(50, "miles")
  24448. },
  24449. ]
  24450. ))
  24451. characterMakers.push(() => makeCharacter(
  24452. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  24453. {
  24454. side: {
  24455. height: math.unit(30, "feet"),
  24456. weight: math.unit(35000, "kg"),
  24457. name: "Side",
  24458. image: {
  24459. source: "./media/characters/alydar/side.svg",
  24460. extra: 234 / 222,
  24461. bottom: 6.5 / 241
  24462. }
  24463. },
  24464. front: {
  24465. height: math.unit(30, "feet"),
  24466. weight: math.unit(35000, "kg"),
  24467. name: "Front",
  24468. image: {
  24469. source: "./media/characters/alydar/front.svg",
  24470. extra: 223.37 / 210.2,
  24471. bottom: 22.3 / 246.76
  24472. }
  24473. },
  24474. top: {
  24475. height: math.unit(64.54, "feet"),
  24476. weight: math.unit(35000, "kg"),
  24477. name: "Top",
  24478. image: {
  24479. source: "./media/characters/alydar/top.svg"
  24480. }
  24481. },
  24482. anthro: {
  24483. height: math.unit(30, "feet"),
  24484. weight: math.unit(9000, "kg"),
  24485. name: "Anthro",
  24486. image: {
  24487. source: "./media/characters/alydar/anthro.svg",
  24488. extra: 432 / 421,
  24489. bottom: 7.18 / 440
  24490. }
  24491. },
  24492. maw: {
  24493. height: math.unit(11.693, "feet"),
  24494. name: "Maw",
  24495. image: {
  24496. source: "./media/characters/alydar/maw.svg"
  24497. }
  24498. },
  24499. head: {
  24500. height: math.unit(11.693, "feet"),
  24501. name: "Head",
  24502. image: {
  24503. source: "./media/characters/alydar/head.svg"
  24504. }
  24505. },
  24506. headAlt: {
  24507. height: math.unit(12.861, "feet"),
  24508. name: "Head (Alt)",
  24509. image: {
  24510. source: "./media/characters/alydar/head-alt.svg"
  24511. }
  24512. },
  24513. wing: {
  24514. height: math.unit(20.712, "feet"),
  24515. name: "Wing",
  24516. image: {
  24517. source: "./media/characters/alydar/wing.svg"
  24518. }
  24519. },
  24520. wingFeather: {
  24521. height: math.unit(9.662, "feet"),
  24522. name: "Wing Feather",
  24523. image: {
  24524. source: "./media/characters/alydar/wing-feather.svg"
  24525. }
  24526. },
  24527. countourFeather: {
  24528. height: math.unit(4.154, "feet"),
  24529. name: "Contour Feather",
  24530. image: {
  24531. source: "./media/characters/alydar/contour-feather.svg"
  24532. }
  24533. },
  24534. },
  24535. [
  24536. {
  24537. name: "Diplomatic",
  24538. height: math.unit(13, "feet"),
  24539. default: true
  24540. },
  24541. {
  24542. name: "Small",
  24543. height: math.unit(30, "feet")
  24544. },
  24545. {
  24546. name: "Normal",
  24547. height: math.unit(95, "feet"),
  24548. default: true
  24549. },
  24550. {
  24551. name: "Large",
  24552. height: math.unit(285, "feet")
  24553. },
  24554. {
  24555. name: "Incomprehensible",
  24556. height: math.unit(450, "megameters")
  24557. },
  24558. ]
  24559. ))
  24560. characterMakers.push(() => makeCharacter(
  24561. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  24562. {
  24563. side: {
  24564. height: math.unit(11, "feet"),
  24565. weight: math.unit(1750, "kg"),
  24566. name: "Side",
  24567. image: {
  24568. source: "./media/characters/selicia/side.svg",
  24569. extra: 440 / 396,
  24570. bottom: 24.8 / 465.979
  24571. }
  24572. },
  24573. maw: {
  24574. height: math.unit(4.665, "feet"),
  24575. name: "Maw",
  24576. image: {
  24577. source: "./media/characters/selicia/maw.svg"
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Normal",
  24584. height: math.unit(11, "feet"),
  24585. default: true
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  24591. {
  24592. side: {
  24593. height: math.unit(2 + 6 / 12, "feet"),
  24594. weight: math.unit(30, "lb"),
  24595. name: "Side",
  24596. image: {
  24597. source: "./media/characters/layla/side.svg",
  24598. extra: 244 / 188,
  24599. bottom: 18.2 / 262.1
  24600. }
  24601. },
  24602. back: {
  24603. height: math.unit(2 + 6 / 12, "feet"),
  24604. weight: math.unit(30, "lb"),
  24605. name: "Back",
  24606. image: {
  24607. source: "./media/characters/layla/back.svg",
  24608. extra: 308 / 241.5,
  24609. bottom: 8.9 / 316.8
  24610. }
  24611. },
  24612. cumming: {
  24613. height: math.unit(2 + 6 / 12, "feet"),
  24614. weight: math.unit(30, "lb"),
  24615. name: "Cumming",
  24616. image: {
  24617. source: "./media/characters/layla/cumming.svg",
  24618. extra: 342 / 279,
  24619. bottom: 595 / 938
  24620. }
  24621. },
  24622. dickFlaccid: {
  24623. height: math.unit(2.595, "feet"),
  24624. name: "Flaccid Genitals",
  24625. image: {
  24626. source: "./media/characters/layla/dick-flaccid.svg"
  24627. }
  24628. },
  24629. dickErect: {
  24630. height: math.unit(2.359, "feet"),
  24631. name: "Erect Genitals",
  24632. image: {
  24633. source: "./media/characters/layla/dick-erect.svg"
  24634. }
  24635. },
  24636. dragon: {
  24637. height: math.unit(40, "feet"),
  24638. name: "Dragon",
  24639. image: {
  24640. source: "./media/characters/layla/dragon.svg",
  24641. extra: 610/535,
  24642. bottom: 367/977
  24643. }
  24644. },
  24645. taur: {
  24646. height: math.unit(30, "feet"),
  24647. name: "Taur",
  24648. image: {
  24649. source: "./media/characters/layla/taur.svg",
  24650. extra: 1268/1199,
  24651. bottom: 112/1380
  24652. }
  24653. },
  24654. },
  24655. [
  24656. {
  24657. name: "Micro",
  24658. height: math.unit(1, "inch")
  24659. },
  24660. {
  24661. name: "Small",
  24662. height: math.unit(1, "foot")
  24663. },
  24664. {
  24665. name: "Normal",
  24666. height: math.unit(2 + 6 / 12, "feet"),
  24667. default: true
  24668. },
  24669. {
  24670. name: "Macro",
  24671. height: math.unit(200, "feet")
  24672. },
  24673. {
  24674. name: "Megamacro",
  24675. height: math.unit(1000, "miles")
  24676. },
  24677. {
  24678. name: "Planetary",
  24679. height: math.unit(8000, "miles")
  24680. },
  24681. {
  24682. name: "True Layla",
  24683. height: math.unit(200000 * 7, "multiverses")
  24684. },
  24685. ]
  24686. ))
  24687. characterMakers.push(() => makeCharacter(
  24688. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  24689. {
  24690. back: {
  24691. height: math.unit(10.5, "feet"),
  24692. weight: math.unit(800, "lb"),
  24693. name: "Back",
  24694. image: {
  24695. source: "./media/characters/knox/back.svg",
  24696. extra: 1486 / 1089,
  24697. bottom: 107 / 1601.4
  24698. }
  24699. },
  24700. side: {
  24701. height: math.unit(10.5, "feet"),
  24702. weight: math.unit(800, "lb"),
  24703. name: "Side",
  24704. image: {
  24705. source: "./media/characters/knox/side.svg",
  24706. extra: 244 / 218,
  24707. bottom: 14 / 260
  24708. }
  24709. },
  24710. },
  24711. [
  24712. {
  24713. name: "Compact",
  24714. height: math.unit(10.5, "feet"),
  24715. default: true
  24716. },
  24717. {
  24718. name: "Dynamax",
  24719. height: math.unit(210, "feet")
  24720. },
  24721. {
  24722. name: "Full Macro",
  24723. height: math.unit(850, "feet")
  24724. },
  24725. ]
  24726. ))
  24727. characterMakers.push(() => makeCharacter(
  24728. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  24729. {
  24730. front: {
  24731. height: math.unit(28, "feet"),
  24732. weight: math.unit(10500, "lb"),
  24733. name: "Front",
  24734. image: {
  24735. source: "./media/characters/kayda/front.svg",
  24736. extra: 1536 / 1428,
  24737. bottom: 68.7 / 1603
  24738. }
  24739. },
  24740. back: {
  24741. height: math.unit(28, "feet"),
  24742. weight: math.unit(10500, "lb"),
  24743. name: "Back",
  24744. image: {
  24745. source: "./media/characters/kayda/back.svg",
  24746. extra: 1557 / 1464,
  24747. bottom: 39.5 / 1597.49
  24748. }
  24749. },
  24750. dick: {
  24751. height: math.unit(3.858, "feet"),
  24752. name: "Dick",
  24753. image: {
  24754. source: "./media/characters/kayda/dick.svg"
  24755. }
  24756. },
  24757. },
  24758. [
  24759. {
  24760. name: "Macro",
  24761. height: math.unit(28, "feet"),
  24762. default: true
  24763. },
  24764. ]
  24765. ))
  24766. characterMakers.push(() => makeCharacter(
  24767. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  24768. {
  24769. front: {
  24770. height: math.unit(10 + 11 / 12, "feet"),
  24771. weight: math.unit(1400, "lb"),
  24772. name: "Front",
  24773. image: {
  24774. source: "./media/characters/brian/front.svg",
  24775. extra: 737 / 692,
  24776. bottom: 55.4 / 785
  24777. }
  24778. },
  24779. },
  24780. [
  24781. {
  24782. name: "Normal",
  24783. height: math.unit(10 + 11 / 12, "feet"),
  24784. default: true
  24785. },
  24786. ]
  24787. ))
  24788. characterMakers.push(() => makeCharacter(
  24789. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  24790. {
  24791. front: {
  24792. height: math.unit(5 + 8 / 12, "feet"),
  24793. weight: math.unit(140, "lb"),
  24794. name: "Front",
  24795. image: {
  24796. source: "./media/characters/khemri/front.svg",
  24797. extra: 4780 / 4059,
  24798. bottom: 80.1 / 4859.25
  24799. }
  24800. },
  24801. },
  24802. [
  24803. {
  24804. name: "Micro",
  24805. height: math.unit(6, "inches")
  24806. },
  24807. {
  24808. name: "Normal",
  24809. height: math.unit(5 + 8 / 12, "feet"),
  24810. default: true
  24811. },
  24812. ]
  24813. ))
  24814. characterMakers.push(() => makeCharacter(
  24815. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  24816. {
  24817. front: {
  24818. height: math.unit(13, "feet"),
  24819. weight: math.unit(1700, "lb"),
  24820. name: "Front",
  24821. image: {
  24822. source: "./media/characters/felix-braveheart/front.svg",
  24823. extra: 1222 / 1157,
  24824. bottom: 53.2 / 1280
  24825. }
  24826. },
  24827. back: {
  24828. height: math.unit(13, "feet"),
  24829. weight: math.unit(1700, "lb"),
  24830. name: "Back",
  24831. image: {
  24832. source: "./media/characters/felix-braveheart/back.svg",
  24833. extra: 1277 / 1203,
  24834. bottom: 50.2 / 1327
  24835. }
  24836. },
  24837. feral: {
  24838. height: math.unit(6, "feet"),
  24839. weight: math.unit(400, "lb"),
  24840. name: "Feral",
  24841. image: {
  24842. source: "./media/characters/felix-braveheart/feral.svg",
  24843. extra: 682 / 625,
  24844. bottom: 6.9 / 688
  24845. }
  24846. },
  24847. },
  24848. [
  24849. {
  24850. name: "Normal",
  24851. height: math.unit(13, "feet"),
  24852. default: true
  24853. },
  24854. ]
  24855. ))
  24856. characterMakers.push(() => makeCharacter(
  24857. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  24858. {
  24859. side: {
  24860. height: math.unit(5 + 11 / 12, "feet"),
  24861. weight: math.unit(1400, "lb"),
  24862. name: "Side",
  24863. image: {
  24864. source: "./media/characters/shadow-blade/side.svg",
  24865. extra: 1726 / 1267,
  24866. bottom: 58.4 / 1785
  24867. }
  24868. },
  24869. },
  24870. [
  24871. {
  24872. name: "Normal",
  24873. height: math.unit(5 + 11 / 12, "feet"),
  24874. default: true
  24875. },
  24876. ]
  24877. ))
  24878. characterMakers.push(() => makeCharacter(
  24879. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  24880. {
  24881. front: {
  24882. height: math.unit(1 + 6 / 12, "feet"),
  24883. weight: math.unit(25, "lb"),
  24884. name: "Front",
  24885. image: {
  24886. source: "./media/characters/karla-halldor/front.svg",
  24887. extra: 1459 / 1383,
  24888. bottom: 12 / 1472
  24889. }
  24890. },
  24891. },
  24892. [
  24893. {
  24894. name: "Normal",
  24895. height: math.unit(1 + 6 / 12, "feet"),
  24896. default: true
  24897. },
  24898. ]
  24899. ))
  24900. characterMakers.push(() => makeCharacter(
  24901. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  24902. {
  24903. front: {
  24904. height: math.unit(6 + 2 / 12, "feet"),
  24905. weight: math.unit(160, "lb"),
  24906. name: "Front",
  24907. image: {
  24908. source: "./media/characters/ariam/front.svg",
  24909. extra: 1073/976,
  24910. bottom: 52/1125
  24911. }
  24912. },
  24913. back: {
  24914. height: math.unit(6 + 2/12, "feet"),
  24915. weight: math.unit(160, "lb"),
  24916. name: "Back",
  24917. image: {
  24918. source: "./media/characters/ariam/back.svg",
  24919. extra: 1103/1023,
  24920. bottom: 9/1112
  24921. }
  24922. },
  24923. dressed: {
  24924. height: math.unit(6 + 2/12, "feet"),
  24925. weight: math.unit(160, "lb"),
  24926. name: "Dressed",
  24927. image: {
  24928. source: "./media/characters/ariam/dressed.svg",
  24929. extra: 1099/1009,
  24930. bottom: 25/1124
  24931. }
  24932. },
  24933. squatting: {
  24934. height: math.unit(4.1, "feet"),
  24935. weight: math.unit(160, "lb"),
  24936. name: "Squatting",
  24937. image: {
  24938. source: "./media/characters/ariam/squatting.svg",
  24939. extra: 2617 / 2112,
  24940. bottom: 61.2 / 2681,
  24941. }
  24942. },
  24943. },
  24944. [
  24945. {
  24946. name: "Normal",
  24947. height: math.unit(6 + 2 / 12, "feet"),
  24948. default: true
  24949. },
  24950. {
  24951. name: "Normal+",
  24952. height: math.unit(4, "meters")
  24953. },
  24954. {
  24955. name: "Macro",
  24956. height: math.unit(50, "meters")
  24957. },
  24958. {
  24959. name: "Macro+",
  24960. height: math.unit(100, "meters")
  24961. },
  24962. {
  24963. name: "Megamacro",
  24964. height: math.unit(20, "km")
  24965. },
  24966. {
  24967. name: "Caretaker",
  24968. height: math.unit(444, "megameters")
  24969. },
  24970. ]
  24971. ))
  24972. characterMakers.push(() => makeCharacter(
  24973. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  24974. {
  24975. front: {
  24976. height: math.unit(1.67, "meters"),
  24977. weight: math.unit(140, "lb"),
  24978. name: "Front",
  24979. image: {
  24980. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  24981. extra: 438 / 410,
  24982. bottom: 0.75 / 439
  24983. }
  24984. },
  24985. },
  24986. [
  24987. {
  24988. name: "Shrunken",
  24989. height: math.unit(7.6, "cm")
  24990. },
  24991. {
  24992. name: "Human Scale",
  24993. height: math.unit(1.67, "meters")
  24994. },
  24995. {
  24996. name: "Wolxi Scale",
  24997. height: math.unit(36.7, "meters"),
  24998. default: true
  24999. },
  25000. ]
  25001. ))
  25002. characterMakers.push(() => makeCharacter(
  25003. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  25004. {
  25005. front: {
  25006. height: math.unit(1.73, "meters"),
  25007. weight: math.unit(240, "lb"),
  25008. name: "Front",
  25009. image: {
  25010. source: "./media/characters/izue-two-mothers/front.svg",
  25011. extra: 469 / 437,
  25012. bottom: 1.24 / 470.6
  25013. }
  25014. },
  25015. },
  25016. [
  25017. {
  25018. name: "Shrunken",
  25019. height: math.unit(7.86, "cm")
  25020. },
  25021. {
  25022. name: "Human Scale",
  25023. height: math.unit(1.73, "meters")
  25024. },
  25025. {
  25026. name: "Wolxi Scale",
  25027. height: math.unit(38, "meters"),
  25028. default: true
  25029. },
  25030. ]
  25031. ))
  25032. characterMakers.push(() => makeCharacter(
  25033. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  25034. {
  25035. front: {
  25036. height: math.unit(1.55, "meters"),
  25037. weight: math.unit(120, "lb"),
  25038. name: "Front",
  25039. image: {
  25040. source: "./media/characters/teeku-love-shack/front.svg",
  25041. extra: 387 / 362,
  25042. bottom: 1.51 / 388
  25043. }
  25044. },
  25045. },
  25046. [
  25047. {
  25048. name: "Shrunken",
  25049. height: math.unit(7, "cm")
  25050. },
  25051. {
  25052. name: "Human Scale",
  25053. height: math.unit(1.55, "meters")
  25054. },
  25055. {
  25056. name: "Wolxi Scale",
  25057. height: math.unit(34.1, "meters"),
  25058. default: true
  25059. },
  25060. ]
  25061. ))
  25062. characterMakers.push(() => makeCharacter(
  25063. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  25064. {
  25065. front: {
  25066. height: math.unit(1.83, "meters"),
  25067. weight: math.unit(135, "lb"),
  25068. name: "Front",
  25069. image: {
  25070. source: "./media/characters/dejma-the-red/front.svg",
  25071. extra: 480 / 458,
  25072. bottom: 1.8 / 482
  25073. }
  25074. },
  25075. },
  25076. [
  25077. {
  25078. name: "Shrunken",
  25079. height: math.unit(8.3, "cm")
  25080. },
  25081. {
  25082. name: "Human Scale",
  25083. height: math.unit(1.83, "meters")
  25084. },
  25085. {
  25086. name: "Wolxi Scale",
  25087. height: math.unit(40, "meters"),
  25088. default: true
  25089. },
  25090. ]
  25091. ))
  25092. characterMakers.push(() => makeCharacter(
  25093. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  25094. {
  25095. front: {
  25096. height: math.unit(1.78, "meters"),
  25097. weight: math.unit(65, "kg"),
  25098. name: "Front",
  25099. image: {
  25100. source: "./media/characters/aki/front.svg",
  25101. extra: 452 / 415
  25102. }
  25103. },
  25104. frontNsfw: {
  25105. height: math.unit(1.78, "meters"),
  25106. weight: math.unit(65, "kg"),
  25107. name: "Front (NSFW)",
  25108. image: {
  25109. source: "./media/characters/aki/front-nsfw.svg",
  25110. extra: 452 / 415
  25111. }
  25112. },
  25113. back: {
  25114. height: math.unit(1.78, "meters"),
  25115. weight: math.unit(65, "kg"),
  25116. name: "Back",
  25117. image: {
  25118. source: "./media/characters/aki/back.svg",
  25119. extra: 452 / 415
  25120. }
  25121. },
  25122. rump: {
  25123. height: math.unit(2.05, "feet"),
  25124. name: "Rump",
  25125. image: {
  25126. source: "./media/characters/aki/rump.svg"
  25127. }
  25128. },
  25129. dick: {
  25130. height: math.unit(0.95, "feet"),
  25131. name: "Dick",
  25132. image: {
  25133. source: "./media/characters/aki/dick.svg"
  25134. }
  25135. },
  25136. },
  25137. [
  25138. {
  25139. name: "Micro",
  25140. height: math.unit(15, "cm")
  25141. },
  25142. {
  25143. name: "Normal",
  25144. height: math.unit(178, "cm"),
  25145. default: true
  25146. },
  25147. {
  25148. name: "Macro",
  25149. height: math.unit(214, "m")
  25150. },
  25151. {
  25152. name: "Macro+",
  25153. height: math.unit(534, "m")
  25154. },
  25155. ]
  25156. ))
  25157. characterMakers.push(() => makeCharacter(
  25158. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  25159. {
  25160. front: {
  25161. height: math.unit(5 + 5 / 12, "feet"),
  25162. weight: math.unit(120, "lb"),
  25163. name: "Front",
  25164. image: {
  25165. source: "./media/characters/ari/front.svg",
  25166. extra: 1550/1471,
  25167. bottom: 39/1589
  25168. }
  25169. },
  25170. },
  25171. [
  25172. {
  25173. name: "Normal",
  25174. height: math.unit(5 + 5 / 12, "feet")
  25175. },
  25176. {
  25177. name: "Macro",
  25178. height: math.unit(100, "feet"),
  25179. default: true
  25180. },
  25181. {
  25182. name: "Megamacro",
  25183. height: math.unit(100, "miles")
  25184. },
  25185. {
  25186. name: "Gigamacro",
  25187. height: math.unit(80000, "miles")
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  25193. {
  25194. side: {
  25195. height: math.unit(9, "feet"),
  25196. weight: math.unit(400, "kg"),
  25197. name: "Side",
  25198. image: {
  25199. source: "./media/characters/bolt/side.svg",
  25200. extra: 1126 / 896,
  25201. bottom: 60 / 1187.3,
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Micro",
  25208. height: math.unit(5, "inches")
  25209. },
  25210. {
  25211. name: "Normal",
  25212. height: math.unit(9, "feet"),
  25213. default: true
  25214. },
  25215. {
  25216. name: "Macro",
  25217. height: math.unit(700, "feet")
  25218. },
  25219. {
  25220. name: "Max Size",
  25221. height: math.unit(1.52e22, "yottameters")
  25222. },
  25223. ]
  25224. ))
  25225. characterMakers.push(() => makeCharacter(
  25226. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  25227. {
  25228. front: {
  25229. height: math.unit(4.3, "meters"),
  25230. weight: math.unit(3, "tons"),
  25231. name: "Front",
  25232. image: {
  25233. source: "./media/characters/draekon-sylviar/front.svg",
  25234. extra: 2072/1512,
  25235. bottom: 74/2146
  25236. }
  25237. },
  25238. back: {
  25239. height: math.unit(4.3, "meters"),
  25240. weight: math.unit(3, "tons"),
  25241. name: "Back",
  25242. image: {
  25243. source: "./media/characters/draekon-sylviar/back.svg",
  25244. extra: 1639/1483,
  25245. bottom: 41/1680
  25246. }
  25247. },
  25248. feral: {
  25249. height: math.unit(1.15, "meters"),
  25250. weight: math.unit(3, "tons"),
  25251. name: "Feral",
  25252. image: {
  25253. source: "./media/characters/draekon-sylviar/feral.svg",
  25254. extra: 1033/395,
  25255. bottom: 130/1163
  25256. }
  25257. },
  25258. maw: {
  25259. height: math.unit(1.3, "meters"),
  25260. name: "Maw",
  25261. image: {
  25262. source: "./media/characters/draekon-sylviar/maw.svg"
  25263. }
  25264. },
  25265. mawSeparated: {
  25266. height: math.unit(1.53, "meters"),
  25267. name: "Separated Maw",
  25268. image: {
  25269. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  25270. }
  25271. },
  25272. tail: {
  25273. height: math.unit(1.15, "meters"),
  25274. name: "Tail",
  25275. image: {
  25276. source: "./media/characters/draekon-sylviar/tail.svg"
  25277. }
  25278. },
  25279. tailDick: {
  25280. height: math.unit(1.15, "meters"),
  25281. name: "Tail (Dick)",
  25282. image: {
  25283. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  25284. }
  25285. },
  25286. tailDickSeparated: {
  25287. height: math.unit(1.19, "meters"),
  25288. name: "Tail (Separated Dick)",
  25289. image: {
  25290. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  25291. }
  25292. },
  25293. slit: {
  25294. height: math.unit(1, "meters"),
  25295. name: "Slit",
  25296. image: {
  25297. source: "./media/characters/draekon-sylviar/slit.svg"
  25298. }
  25299. },
  25300. dick: {
  25301. height: math.unit(1.15, "meters"),
  25302. name: "Dick",
  25303. image: {
  25304. source: "./media/characters/draekon-sylviar/dick.svg"
  25305. }
  25306. },
  25307. dickSeparated: {
  25308. height: math.unit(1.1, "meters"),
  25309. name: "Separated Dick",
  25310. image: {
  25311. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  25312. }
  25313. },
  25314. sheath: {
  25315. height: math.unit(1.15, "meters"),
  25316. name: "Sheath",
  25317. image: {
  25318. source: "./media/characters/draekon-sylviar/sheath.svg"
  25319. }
  25320. },
  25321. },
  25322. [
  25323. {
  25324. name: "Small",
  25325. height: math.unit(4.53 / 2, "meters"),
  25326. default: true
  25327. },
  25328. {
  25329. name: "Normal",
  25330. height: math.unit(4.53, "meters"),
  25331. default: true
  25332. },
  25333. {
  25334. name: "Large",
  25335. height: math.unit(4.53 * 2, "meters"),
  25336. },
  25337. ]
  25338. ))
  25339. characterMakers.push(() => makeCharacter(
  25340. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  25341. {
  25342. front: {
  25343. height: math.unit(6 + 2 / 12, "feet"),
  25344. weight: math.unit(180, "lb"),
  25345. name: "Front",
  25346. image: {
  25347. source: "./media/characters/brawler/front.svg",
  25348. extra: 3301 / 3027,
  25349. bottom: 138 / 3439
  25350. }
  25351. },
  25352. },
  25353. [
  25354. {
  25355. name: "Normal",
  25356. height: math.unit(6 + 2 / 12, "feet"),
  25357. default: true
  25358. },
  25359. ]
  25360. ))
  25361. characterMakers.push(() => makeCharacter(
  25362. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  25363. {
  25364. front: {
  25365. height: math.unit(11, "feet"),
  25366. weight: math.unit(1000, "lb"),
  25367. name: "Front",
  25368. image: {
  25369. source: "./media/characters/alex/front.svg",
  25370. bottom: 44.5 / 620
  25371. }
  25372. },
  25373. },
  25374. [
  25375. {
  25376. name: "Micro",
  25377. height: math.unit(5, "inches")
  25378. },
  25379. {
  25380. name: "Normal",
  25381. height: math.unit(11, "feet"),
  25382. default: true
  25383. },
  25384. {
  25385. name: "Macro",
  25386. height: math.unit(9.5e9, "feet")
  25387. },
  25388. {
  25389. name: "Max Size",
  25390. height: math.unit(1.4e283, "yottameters")
  25391. },
  25392. ]
  25393. ))
  25394. characterMakers.push(() => makeCharacter(
  25395. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  25396. {
  25397. female: {
  25398. height: math.unit(29.9, "m"),
  25399. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  25400. name: "Female",
  25401. image: {
  25402. source: "./media/characters/zenari/female.svg",
  25403. extra: 3281.6 / 3217,
  25404. bottom: 72.2 / 3353
  25405. }
  25406. },
  25407. male: {
  25408. height: math.unit(27.7, "m"),
  25409. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  25410. name: "Male",
  25411. image: {
  25412. source: "./media/characters/zenari/male.svg",
  25413. extra: 3008 / 2991,
  25414. bottom: 54.6 / 3069
  25415. }
  25416. },
  25417. },
  25418. [
  25419. {
  25420. name: "Macro",
  25421. height: math.unit(29.7, "meters"),
  25422. default: true
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  25428. {
  25429. female: {
  25430. height: math.unit(23.8, "m"),
  25431. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25432. name: "Female",
  25433. image: {
  25434. source: "./media/characters/mactarian/female.svg",
  25435. extra: 2662 / 2569,
  25436. bottom: 73 / 2736
  25437. }
  25438. },
  25439. male: {
  25440. height: math.unit(23.8, "m"),
  25441. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  25442. name: "Male",
  25443. image: {
  25444. source: "./media/characters/mactarian/male.svg",
  25445. extra: 2673 / 2600,
  25446. bottom: 76 / 2750
  25447. }
  25448. },
  25449. },
  25450. [
  25451. {
  25452. name: "Macro",
  25453. height: math.unit(23.8, "meters"),
  25454. default: true
  25455. },
  25456. ]
  25457. ))
  25458. characterMakers.push(() => makeCharacter(
  25459. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  25460. {
  25461. female: {
  25462. height: math.unit(19.3, "m"),
  25463. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  25464. name: "Female",
  25465. image: {
  25466. source: "./media/characters/umok/female.svg",
  25467. extra: 2186 / 2078,
  25468. bottom: 87 / 2277
  25469. }
  25470. },
  25471. male: {
  25472. height: math.unit(19.5, "m"),
  25473. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  25474. name: "Male",
  25475. image: {
  25476. source: "./media/characters/umok/male.svg",
  25477. extra: 2233 / 2140,
  25478. bottom: 24.4 / 2258
  25479. }
  25480. },
  25481. },
  25482. [
  25483. {
  25484. name: "Macro",
  25485. height: math.unit(19.3, "meters"),
  25486. default: true
  25487. },
  25488. ]
  25489. ))
  25490. characterMakers.push(() => makeCharacter(
  25491. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  25492. {
  25493. female: {
  25494. height: math.unit(26.15, "m"),
  25495. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  25496. name: "Female",
  25497. image: {
  25498. source: "./media/characters/joraxian/female.svg",
  25499. extra: 2912 / 2824,
  25500. bottom: 36 / 2956
  25501. }
  25502. },
  25503. male: {
  25504. height: math.unit(25.4, "m"),
  25505. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  25506. name: "Male",
  25507. image: {
  25508. source: "./media/characters/joraxian/male.svg",
  25509. extra: 2877 / 2721,
  25510. bottom: 82 / 2967
  25511. }
  25512. },
  25513. },
  25514. [
  25515. {
  25516. name: "Macro",
  25517. height: math.unit(26.15, "meters"),
  25518. default: true
  25519. },
  25520. ]
  25521. ))
  25522. characterMakers.push(() => makeCharacter(
  25523. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  25524. {
  25525. female: {
  25526. height: math.unit(21.6, "m"),
  25527. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  25528. name: "Female",
  25529. image: {
  25530. source: "./media/characters/sthara/female.svg",
  25531. extra: 2516 / 2347,
  25532. bottom: 21.5 / 2537
  25533. }
  25534. },
  25535. male: {
  25536. height: math.unit(24, "m"),
  25537. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  25538. name: "Male",
  25539. image: {
  25540. source: "./media/characters/sthara/male.svg",
  25541. extra: 2732 / 2607,
  25542. bottom: 23 / 2732
  25543. }
  25544. },
  25545. },
  25546. [
  25547. {
  25548. name: "Macro",
  25549. height: math.unit(21.6, "meters"),
  25550. default: true
  25551. },
  25552. ]
  25553. ))
  25554. characterMakers.push(() => makeCharacter(
  25555. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  25556. {
  25557. front: {
  25558. height: math.unit(6 + 4 / 12, "feet"),
  25559. weight: math.unit(175, "lb"),
  25560. name: "Front",
  25561. image: {
  25562. source: "./media/characters/luka-bryzant/front.svg",
  25563. extra: 311 / 289,
  25564. bottom: 4 / 315
  25565. }
  25566. },
  25567. back: {
  25568. height: math.unit(6 + 4 / 12, "feet"),
  25569. weight: math.unit(175, "lb"),
  25570. name: "Back",
  25571. image: {
  25572. source: "./media/characters/luka-bryzant/back.svg",
  25573. extra: 311 / 289,
  25574. bottom: 3.8 / 313.7
  25575. }
  25576. },
  25577. },
  25578. [
  25579. {
  25580. name: "Micro",
  25581. height: math.unit(10, "inches")
  25582. },
  25583. {
  25584. name: "Normal",
  25585. height: math.unit(6 + 4 / 12, "feet"),
  25586. default: true
  25587. },
  25588. {
  25589. name: "Large",
  25590. height: math.unit(12, "feet")
  25591. },
  25592. ]
  25593. ))
  25594. characterMakers.push(() => makeCharacter(
  25595. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  25596. {
  25597. front: {
  25598. height: math.unit(5 + 7 / 12, "feet"),
  25599. weight: math.unit(185, "lb"),
  25600. name: "Front",
  25601. image: {
  25602. source: "./media/characters/aman-aquila/front.svg",
  25603. extra: 1013 / 976,
  25604. bottom: 45.6 / 1057
  25605. }
  25606. },
  25607. side: {
  25608. height: math.unit(5 + 7 / 12, "feet"),
  25609. weight: math.unit(185, "lb"),
  25610. name: "Side",
  25611. image: {
  25612. source: "./media/characters/aman-aquila/side.svg",
  25613. extra: 1054 / 1011,
  25614. bottom: 15 / 1070
  25615. }
  25616. },
  25617. back: {
  25618. height: math.unit(5 + 7 / 12, "feet"),
  25619. weight: math.unit(185, "lb"),
  25620. name: "Back",
  25621. image: {
  25622. source: "./media/characters/aman-aquila/back.svg",
  25623. extra: 1026 / 970,
  25624. bottom: 12 / 1039
  25625. }
  25626. },
  25627. head: {
  25628. height: math.unit(1.211, "feet"),
  25629. name: "Head",
  25630. image: {
  25631. source: "./media/characters/aman-aquila/head.svg",
  25632. }
  25633. },
  25634. },
  25635. [
  25636. {
  25637. name: "Minimicro",
  25638. height: math.unit(0.057, "inches")
  25639. },
  25640. {
  25641. name: "Micro",
  25642. height: math.unit(7, "inches")
  25643. },
  25644. {
  25645. name: "Mini",
  25646. height: math.unit(3 + 7 / 12, "feet")
  25647. },
  25648. {
  25649. name: "Normal",
  25650. height: math.unit(5 + 7 / 12, "feet"),
  25651. default: true
  25652. },
  25653. {
  25654. name: "Macro",
  25655. height: math.unit(157 + 7 / 12, "feet")
  25656. },
  25657. {
  25658. name: "Megamacro",
  25659. height: math.unit(1557 + 7 / 12, "feet")
  25660. },
  25661. {
  25662. name: "Gigamacro",
  25663. height: math.unit(15557 + 7 / 12, "feet")
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  25669. {
  25670. front: {
  25671. height: math.unit(3 + 2 / 12, "inches"),
  25672. weight: math.unit(0.3, "ounces"),
  25673. name: "Front",
  25674. image: {
  25675. source: "./media/characters/hiphae/front.svg",
  25676. extra: 1931 / 1683,
  25677. bottom: 24 / 1955
  25678. }
  25679. },
  25680. },
  25681. [
  25682. {
  25683. name: "Normal",
  25684. height: math.unit(3 + 1 / 2, "inches"),
  25685. default: true
  25686. },
  25687. ]
  25688. ))
  25689. characterMakers.push(() => makeCharacter(
  25690. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  25691. {
  25692. front: {
  25693. height: math.unit(5 + 10 / 12, "feet"),
  25694. weight: math.unit(165, "lb"),
  25695. name: "Front",
  25696. image: {
  25697. source: "./media/characters/nicky/front.svg",
  25698. extra: 3144 / 2886,
  25699. bottom: 45.6 / 3192
  25700. }
  25701. },
  25702. back: {
  25703. height: math.unit(5 + 10 / 12, "feet"),
  25704. weight: math.unit(165, "lb"),
  25705. name: "Back",
  25706. image: {
  25707. source: "./media/characters/nicky/back.svg",
  25708. extra: 3055 / 2804,
  25709. bottom: 28.4 / 3087
  25710. }
  25711. },
  25712. frontclothed: {
  25713. height: math.unit(5 + 10 / 12, "feet"),
  25714. weight: math.unit(165, "lb"),
  25715. name: "Front-clothed",
  25716. image: {
  25717. source: "./media/characters/nicky/front-clothed.svg",
  25718. extra: 3184.9 / 2926.9,
  25719. bottom: 86.5 / 3239.9
  25720. }
  25721. },
  25722. foot: {
  25723. height: math.unit(1.16, "feet"),
  25724. name: "Foot",
  25725. image: {
  25726. source: "./media/characters/nicky/foot.svg"
  25727. }
  25728. },
  25729. feet: {
  25730. height: math.unit(1.34, "feet"),
  25731. name: "Feet",
  25732. image: {
  25733. source: "./media/characters/nicky/feet.svg"
  25734. }
  25735. },
  25736. maw: {
  25737. height: math.unit(0.9, "feet"),
  25738. name: "Maw",
  25739. image: {
  25740. source: "./media/characters/nicky/maw.svg"
  25741. }
  25742. },
  25743. },
  25744. [
  25745. {
  25746. name: "Normal",
  25747. height: math.unit(5 + 10 / 12, "feet"),
  25748. default: true
  25749. },
  25750. {
  25751. name: "Macro",
  25752. height: math.unit(60, "feet")
  25753. },
  25754. {
  25755. name: "Megamacro",
  25756. height: math.unit(1, "mile")
  25757. },
  25758. ]
  25759. ))
  25760. characterMakers.push(() => makeCharacter(
  25761. { name: "Blair", species: ["seal"], tags: ["taur"] },
  25762. {
  25763. side: {
  25764. height: math.unit(10, "feet"),
  25765. weight: math.unit(600, "lb"),
  25766. name: "Side",
  25767. image: {
  25768. source: "./media/characters/blair/side.svg",
  25769. bottom: 16.6 / 475,
  25770. extra: 458 / 431
  25771. }
  25772. },
  25773. },
  25774. [
  25775. {
  25776. name: "Micro",
  25777. height: math.unit(8, "inches")
  25778. },
  25779. {
  25780. name: "Normal",
  25781. height: math.unit(10, "feet"),
  25782. default: true
  25783. },
  25784. {
  25785. name: "Macro",
  25786. height: math.unit(180, "feet")
  25787. },
  25788. ]
  25789. ))
  25790. characterMakers.push(() => makeCharacter(
  25791. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  25792. {
  25793. front: {
  25794. height: math.unit(5 + 4 / 12, "feet"),
  25795. weight: math.unit(125, "lb"),
  25796. name: "Front",
  25797. image: {
  25798. source: "./media/characters/fisher/front.svg",
  25799. extra: 444 / 390,
  25800. bottom: 2 / 444.8
  25801. }
  25802. },
  25803. },
  25804. [
  25805. {
  25806. name: "Micro",
  25807. height: math.unit(4, "inches")
  25808. },
  25809. {
  25810. name: "Normal",
  25811. height: math.unit(5 + 4 / 12, "feet"),
  25812. default: true
  25813. },
  25814. {
  25815. name: "Macro",
  25816. height: math.unit(100, "feet")
  25817. },
  25818. ]
  25819. ))
  25820. characterMakers.push(() => makeCharacter(
  25821. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  25822. {
  25823. front: {
  25824. height: math.unit(6.71, "feet"),
  25825. weight: math.unit(200, "lb"),
  25826. capacity: math.unit(1000000, "people"),
  25827. name: "Front",
  25828. image: {
  25829. source: "./media/characters/gliss/front.svg",
  25830. extra: 2347 / 2231,
  25831. bottom: 113 / 2462
  25832. }
  25833. },
  25834. hammerspaceSize: {
  25835. height: math.unit(6.71 * 717, "feet"),
  25836. weight: math.unit(200, "lb"),
  25837. capacity: math.unit(1000000, "people"),
  25838. name: "Hammerspace Size",
  25839. image: {
  25840. source: "./media/characters/gliss/front.svg",
  25841. extra: 2347 / 2231,
  25842. bottom: 113 / 2462
  25843. }
  25844. },
  25845. },
  25846. [
  25847. {
  25848. name: "Normal",
  25849. height: math.unit(6.71, "feet"),
  25850. default: true
  25851. },
  25852. ]
  25853. ))
  25854. characterMakers.push(() => makeCharacter(
  25855. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  25856. {
  25857. side: {
  25858. height: math.unit(1.44, "m"),
  25859. weight: math.unit(80, "kg"),
  25860. name: "Side",
  25861. image: {
  25862. source: "./media/characters/dune-anderson/side.svg",
  25863. bottom: 49 / 1426
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Wolf-sized",
  25870. height: math.unit(1.44, "meters")
  25871. },
  25872. {
  25873. name: "Normal",
  25874. height: math.unit(5.05, "meters"),
  25875. default: true
  25876. },
  25877. {
  25878. name: "Big",
  25879. height: math.unit(14.4, "meters")
  25880. },
  25881. {
  25882. name: "Huge",
  25883. height: math.unit(144, "meters")
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  25889. {
  25890. front: {
  25891. height: math.unit(7, "feet"),
  25892. weight: math.unit(425, "lb"),
  25893. name: "Front",
  25894. image: {
  25895. source: "./media/characters/hind/front.svg",
  25896. extra: 2091 / 1860,
  25897. bottom: 129 / 2220
  25898. }
  25899. },
  25900. back: {
  25901. height: math.unit(7, "feet"),
  25902. weight: math.unit(425, "lb"),
  25903. name: "Back",
  25904. image: {
  25905. source: "./media/characters/hind/back.svg",
  25906. extra: 2091 / 1860,
  25907. bottom: 24.6 / 2309
  25908. }
  25909. },
  25910. tail: {
  25911. height: math.unit(2.8, "feet"),
  25912. name: "Tail",
  25913. image: {
  25914. source: "./media/characters/hind/tail.svg"
  25915. }
  25916. },
  25917. head: {
  25918. height: math.unit(2.55, "feet"),
  25919. name: "Head",
  25920. image: {
  25921. source: "./media/characters/hind/head.svg"
  25922. }
  25923. },
  25924. },
  25925. [
  25926. {
  25927. name: "XS",
  25928. height: math.unit(0.7, "feet")
  25929. },
  25930. {
  25931. name: "Normal",
  25932. height: math.unit(7, "feet"),
  25933. default: true
  25934. },
  25935. {
  25936. name: "XL",
  25937. height: math.unit(70, "feet")
  25938. },
  25939. ]
  25940. ))
  25941. characterMakers.push(() => makeCharacter(
  25942. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  25943. {
  25944. front: {
  25945. height: math.unit(2.1, "meters"),
  25946. weight: math.unit(150, "lb"),
  25947. name: "Front",
  25948. image: {
  25949. source: "./media/characters/tharquench-sizestealer/front.svg",
  25950. extra: 1605/1470,
  25951. bottom: 36/1641
  25952. }
  25953. },
  25954. frontAlt: {
  25955. height: math.unit(2.1, "meters"),
  25956. weight: math.unit(150, "lb"),
  25957. name: "Front (Alt)",
  25958. image: {
  25959. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  25960. extra: 2318 / 2063,
  25961. bottom: 93.4 / 2410
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Nano",
  25968. height: math.unit(1, "mm")
  25969. },
  25970. {
  25971. name: "Micro",
  25972. height: math.unit(1, "cm")
  25973. },
  25974. {
  25975. name: "Normal",
  25976. height: math.unit(2.1, "meters"),
  25977. default: true
  25978. },
  25979. ]
  25980. ))
  25981. characterMakers.push(() => makeCharacter(
  25982. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  25983. {
  25984. front: {
  25985. height: math.unit(7 + 5 / 12, "feet"),
  25986. weight: math.unit(357, "lb"),
  25987. name: "Front",
  25988. image: {
  25989. source: "./media/characters/solex-draconov/front.svg",
  25990. extra: 1993 / 1865,
  25991. bottom: 117 / 2111
  25992. }
  25993. },
  25994. },
  25995. [
  25996. {
  25997. name: "Natural Height",
  25998. height: math.unit(7 + 5 / 12, "feet"),
  25999. default: true
  26000. },
  26001. {
  26002. name: "Macro",
  26003. height: math.unit(350, "feet")
  26004. },
  26005. {
  26006. name: "Macro+",
  26007. height: math.unit(1000, "feet")
  26008. },
  26009. {
  26010. name: "Megamacro",
  26011. height: math.unit(20, "km")
  26012. },
  26013. {
  26014. name: "Megamacro+",
  26015. height: math.unit(1000, "km")
  26016. },
  26017. {
  26018. name: "Gigamacro",
  26019. height: math.unit(2.5, "Gm")
  26020. },
  26021. {
  26022. name: "Teramacro",
  26023. height: math.unit(15, "Tm")
  26024. },
  26025. {
  26026. name: "Galactic",
  26027. height: math.unit(30, "Zm")
  26028. },
  26029. {
  26030. name: "Universal",
  26031. height: math.unit(21000, "Ym")
  26032. },
  26033. {
  26034. name: "Omniversal",
  26035. height: math.unit(9.861e50, "Ym")
  26036. },
  26037. {
  26038. name: "Existential",
  26039. height: math.unit(1e300, "meters")
  26040. },
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  26045. {
  26046. side: {
  26047. height: math.unit(25, "feet"),
  26048. weight: math.unit(90000, "lb"),
  26049. name: "Side",
  26050. image: {
  26051. source: "./media/characters/mandarax/side.svg",
  26052. extra: 614 / 332,
  26053. bottom: 55 / 630
  26054. }
  26055. },
  26056. lounging: {
  26057. height: math.unit(15.4, "feet"),
  26058. weight: math.unit(90000, "lb"),
  26059. name: "Lounging",
  26060. image: {
  26061. source: "./media/characters/mandarax/lounging.svg",
  26062. extra: 817/609,
  26063. bottom: 685/1502
  26064. }
  26065. },
  26066. head: {
  26067. height: math.unit(11.4, "feet"),
  26068. name: "Head",
  26069. image: {
  26070. source: "./media/characters/mandarax/head.svg"
  26071. }
  26072. },
  26073. belly: {
  26074. height: math.unit(33, "feet"),
  26075. name: "Belly",
  26076. capacity: math.unit(500, "people"),
  26077. image: {
  26078. source: "./media/characters/mandarax/belly.svg"
  26079. }
  26080. },
  26081. dick: {
  26082. height: math.unit(8.46, "feet"),
  26083. name: "Dick",
  26084. image: {
  26085. source: "./media/characters/mandarax/dick.svg"
  26086. }
  26087. },
  26088. top: {
  26089. height: math.unit(28, "meters"),
  26090. name: "Top",
  26091. image: {
  26092. source: "./media/characters/mandarax/top.svg"
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(25, "feet"),
  26100. default: true
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(5, "feet"),
  26109. weight: math.unit(90, "lb"),
  26110. name: "Front",
  26111. image: {
  26112. source: "./media/characters/pixil/front.svg",
  26113. extra: 2000 / 1618,
  26114. bottom: 12.3 / 2011
  26115. }
  26116. },
  26117. },
  26118. [
  26119. {
  26120. name: "Normal",
  26121. height: math.unit(5, "feet"),
  26122. default: true
  26123. },
  26124. {
  26125. name: "Megamacro",
  26126. height: math.unit(10, "miles"),
  26127. },
  26128. ]
  26129. ))
  26130. characterMakers.push(() => makeCharacter(
  26131. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  26132. {
  26133. front: {
  26134. height: math.unit(7 + 2 / 12, "feet"),
  26135. weight: math.unit(200, "lb"),
  26136. name: "Front",
  26137. image: {
  26138. source: "./media/characters/angel/front.svg",
  26139. extra: 1830 / 1737,
  26140. bottom: 22.6 / 1854,
  26141. }
  26142. },
  26143. },
  26144. [
  26145. {
  26146. name: "Normal",
  26147. height: math.unit(7 + 2 / 12, "feet"),
  26148. default: true
  26149. },
  26150. {
  26151. name: "Macro",
  26152. height: math.unit(1000, "feet")
  26153. },
  26154. {
  26155. name: "Megamacro",
  26156. height: math.unit(2, "miles")
  26157. },
  26158. {
  26159. name: "Gigamacro",
  26160. height: math.unit(20, "earths")
  26161. },
  26162. ]
  26163. ))
  26164. characterMakers.push(() => makeCharacter(
  26165. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  26166. {
  26167. front: {
  26168. height: math.unit(5, "feet"),
  26169. weight: math.unit(180, "lb"),
  26170. name: "Front",
  26171. image: {
  26172. source: "./media/characters/mekana/front.svg",
  26173. extra: 1671 / 1605,
  26174. bottom: 3.5 / 1691
  26175. }
  26176. },
  26177. side: {
  26178. height: math.unit(5, "feet"),
  26179. weight: math.unit(180, "lb"),
  26180. name: "Side",
  26181. image: {
  26182. source: "./media/characters/mekana/side.svg",
  26183. extra: 1671 / 1605,
  26184. bottom: 3.5 / 1691
  26185. }
  26186. },
  26187. back: {
  26188. height: math.unit(5, "feet"),
  26189. weight: math.unit(180, "lb"),
  26190. name: "Back",
  26191. image: {
  26192. source: "./media/characters/mekana/back.svg",
  26193. extra: 1671 / 1605,
  26194. bottom: 3.5 / 1691
  26195. }
  26196. },
  26197. },
  26198. [
  26199. {
  26200. name: "Normal",
  26201. height: math.unit(5, "feet"),
  26202. default: true
  26203. },
  26204. ]
  26205. ))
  26206. characterMakers.push(() => makeCharacter(
  26207. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  26208. {
  26209. front: {
  26210. height: math.unit(4 + 6 / 12, "feet"),
  26211. weight: math.unit(80, "lb"),
  26212. name: "Front",
  26213. image: {
  26214. source: "./media/characters/pixie/front.svg",
  26215. extra: 1924 / 1825,
  26216. bottom: 22.4 / 1946
  26217. }
  26218. },
  26219. },
  26220. [
  26221. {
  26222. name: "Normal",
  26223. height: math.unit(4 + 6 / 12, "feet"),
  26224. default: true
  26225. },
  26226. {
  26227. name: "Macro",
  26228. height: math.unit(40, "feet")
  26229. },
  26230. ]
  26231. ))
  26232. characterMakers.push(() => makeCharacter(
  26233. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  26234. {
  26235. front: {
  26236. height: math.unit(2.1, "meters"),
  26237. weight: math.unit(200, "lb"),
  26238. name: "Front",
  26239. image: {
  26240. source: "./media/characters/the-lascivious/front.svg",
  26241. extra: 1 / 0.893,
  26242. bottom: 3.5 / 573.7
  26243. }
  26244. },
  26245. },
  26246. [
  26247. {
  26248. name: "Human Scale",
  26249. height: math.unit(2.1, "meters")
  26250. },
  26251. {
  26252. name: "Wolxi Scale",
  26253. height: math.unit(46.2, "m"),
  26254. default: true
  26255. },
  26256. {
  26257. name: "Boinker of Buildings",
  26258. height: math.unit(10, "km")
  26259. },
  26260. {
  26261. name: "Shagger of Skyscrapers",
  26262. height: math.unit(40, "km")
  26263. },
  26264. {
  26265. name: "Banger of Boroughs",
  26266. height: math.unit(4000, "km")
  26267. },
  26268. {
  26269. name: "Screwer of States",
  26270. height: math.unit(100000, "km")
  26271. },
  26272. {
  26273. name: "Pounder of Planets",
  26274. height: math.unit(2000000, "km")
  26275. },
  26276. ]
  26277. ))
  26278. characterMakers.push(() => makeCharacter(
  26279. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  26280. {
  26281. front: {
  26282. height: math.unit(6, "feet"),
  26283. weight: math.unit(150, "lb"),
  26284. name: "Front",
  26285. image: {
  26286. source: "./media/characters/aj/front.svg",
  26287. extra: 2039 / 1562,
  26288. bottom: 40 / 2079
  26289. }
  26290. },
  26291. },
  26292. [
  26293. {
  26294. name: "Normal",
  26295. height: math.unit(11 + 6 / 12, "feet"),
  26296. default: true
  26297. },
  26298. {
  26299. name: "Megamacro",
  26300. height: math.unit(60, "megameters")
  26301. },
  26302. ]
  26303. ))
  26304. characterMakers.push(() => makeCharacter(
  26305. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  26306. {
  26307. side: {
  26308. height: math.unit(31 + 8 / 12, "feet"),
  26309. weight: math.unit(75000, "kg"),
  26310. name: "Side",
  26311. image: {
  26312. source: "./media/characters/koros/side.svg",
  26313. extra: 1442 / 1297,
  26314. bottom: 122.7 / 1562
  26315. }
  26316. },
  26317. dicksKingsCrown: {
  26318. height: math.unit(6, "feet"),
  26319. name: "Dicks (King's Crown)",
  26320. image: {
  26321. source: "./media/characters/koros/dicks-kings-crown.svg"
  26322. }
  26323. },
  26324. dicksTailSet: {
  26325. height: math.unit(3, "feet"),
  26326. name: "Dicks (Tail Set)",
  26327. image: {
  26328. source: "./media/characters/koros/dicks-tail-set.svg"
  26329. }
  26330. },
  26331. dickCumming: {
  26332. height: math.unit(7.98, "feet"),
  26333. name: "Dick (Cumming)",
  26334. image: {
  26335. source: "./media/characters/koros/dick-cumming.svg"
  26336. }
  26337. },
  26338. dicksBack: {
  26339. height: math.unit(5.9, "feet"),
  26340. name: "Dicks (Back)",
  26341. image: {
  26342. source: "./media/characters/koros/dicks-back.svg"
  26343. }
  26344. },
  26345. dicksFront: {
  26346. height: math.unit(3.72, "feet"),
  26347. name: "Dicks (Front)",
  26348. image: {
  26349. source: "./media/characters/koros/dicks-front.svg"
  26350. }
  26351. },
  26352. dicksPeeking: {
  26353. height: math.unit(3.0, "feet"),
  26354. name: "Dicks (Peeking)",
  26355. image: {
  26356. source: "./media/characters/koros/dicks-peeking.svg"
  26357. }
  26358. },
  26359. eye: {
  26360. height: math.unit(1.7, "feet"),
  26361. name: "Eye",
  26362. image: {
  26363. source: "./media/characters/koros/eye.svg"
  26364. }
  26365. },
  26366. headFront: {
  26367. height: math.unit(11.69, "feet"),
  26368. name: "Head (Front)",
  26369. image: {
  26370. source: "./media/characters/koros/head-front.svg"
  26371. }
  26372. },
  26373. headSide: {
  26374. height: math.unit(14, "feet"),
  26375. name: "Head (Side)",
  26376. image: {
  26377. source: "./media/characters/koros/head-side.svg"
  26378. }
  26379. },
  26380. leg: {
  26381. height: math.unit(17, "feet"),
  26382. name: "Leg",
  26383. image: {
  26384. source: "./media/characters/koros/leg.svg"
  26385. }
  26386. },
  26387. mawSide: {
  26388. height: math.unit(12.8, "feet"),
  26389. name: "Maw (Side)",
  26390. image: {
  26391. source: "./media/characters/koros/maw-side.svg"
  26392. }
  26393. },
  26394. mawSpitting: {
  26395. height: math.unit(17, "feet"),
  26396. name: "Maw (Spitting)",
  26397. image: {
  26398. source: "./media/characters/koros/maw-spitting.svg"
  26399. }
  26400. },
  26401. slit: {
  26402. height: math.unit(2.8, "feet"),
  26403. name: "Slit",
  26404. image: {
  26405. source: "./media/characters/koros/slit.svg"
  26406. }
  26407. },
  26408. stomach: {
  26409. height: math.unit(6.8, "feet"),
  26410. capacity: math.unit(20, "people"),
  26411. name: "Stomach",
  26412. image: {
  26413. source: "./media/characters/koros/stomach.svg"
  26414. }
  26415. },
  26416. wingspanBottom: {
  26417. height: math.unit(114, "feet"),
  26418. name: "Wingspan (Bottom)",
  26419. image: {
  26420. source: "./media/characters/koros/wingspan-bottom.svg"
  26421. }
  26422. },
  26423. wingspanTop: {
  26424. height: math.unit(104, "feet"),
  26425. name: "Wingspan (Top)",
  26426. image: {
  26427. source: "./media/characters/koros/wingspan-top.svg"
  26428. }
  26429. },
  26430. },
  26431. [
  26432. {
  26433. name: "Normal",
  26434. height: math.unit(31 + 8 / 12, "feet"),
  26435. default: true
  26436. },
  26437. ]
  26438. ))
  26439. characterMakers.push(() => makeCharacter(
  26440. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  26441. {
  26442. front: {
  26443. height: math.unit(18 + 5 / 12, "feet"),
  26444. weight: math.unit(3750, "kg"),
  26445. name: "Front",
  26446. image: {
  26447. source: "./media/characters/vexx/front.svg",
  26448. extra: 426 / 396,
  26449. bottom: 31.5 / 458
  26450. }
  26451. },
  26452. maw: {
  26453. height: math.unit(6, "feet"),
  26454. name: "Maw",
  26455. image: {
  26456. source: "./media/characters/vexx/maw.svg"
  26457. }
  26458. },
  26459. },
  26460. [
  26461. {
  26462. name: "Normal",
  26463. height: math.unit(18 + 5 / 12, "feet"),
  26464. default: true
  26465. },
  26466. ]
  26467. ))
  26468. characterMakers.push(() => makeCharacter(
  26469. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  26470. {
  26471. front: {
  26472. height: math.unit(17 + 6 / 12, "feet"),
  26473. weight: math.unit(150, "lb"),
  26474. name: "Front",
  26475. image: {
  26476. source: "./media/characters/baadra/front.svg",
  26477. extra: 1694/1553,
  26478. bottom: 179/1873
  26479. }
  26480. },
  26481. frontAlt: {
  26482. height: math.unit(17 + 6 / 12, "feet"),
  26483. weight: math.unit(150, "lb"),
  26484. name: "Front (Alt)",
  26485. image: {
  26486. source: "./media/characters/baadra/front-alt.svg",
  26487. extra: 3137 / 2890,
  26488. bottom: 168.4 / 3305
  26489. }
  26490. },
  26491. back: {
  26492. height: math.unit(17 + 6 / 12, "feet"),
  26493. weight: math.unit(150, "lb"),
  26494. name: "Back",
  26495. image: {
  26496. source: "./media/characters/baadra/back.svg",
  26497. extra: 3142 / 2890,
  26498. bottom: 220 / 3371
  26499. }
  26500. },
  26501. head: {
  26502. height: math.unit(5.45, "feet"),
  26503. name: "Head",
  26504. image: {
  26505. source: "./media/characters/baadra/head.svg"
  26506. }
  26507. },
  26508. headAngry: {
  26509. height: math.unit(4.95, "feet"),
  26510. name: "Head (Angry)",
  26511. image: {
  26512. source: "./media/characters/baadra/head-angry.svg"
  26513. }
  26514. },
  26515. headOpen: {
  26516. height: math.unit(6, "feet"),
  26517. name: "Head (Open)",
  26518. image: {
  26519. source: "./media/characters/baadra/head-open.svg"
  26520. }
  26521. },
  26522. },
  26523. [
  26524. {
  26525. name: "Normal",
  26526. height: math.unit(17 + 6 / 12, "feet"),
  26527. default: true
  26528. },
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  26533. {
  26534. front: {
  26535. height: math.unit(7 + 3 / 12, "feet"),
  26536. weight: math.unit(180, "lb"),
  26537. name: "Front",
  26538. image: {
  26539. source: "./media/characters/juri/front.svg",
  26540. extra: 1401 / 1237,
  26541. bottom: 18.5 / 1418
  26542. }
  26543. },
  26544. side: {
  26545. height: math.unit(7 + 3 / 12, "feet"),
  26546. weight: math.unit(180, "lb"),
  26547. name: "Side",
  26548. image: {
  26549. source: "./media/characters/juri/side.svg",
  26550. extra: 1424 / 1242,
  26551. bottom: 18.5 / 1447
  26552. }
  26553. },
  26554. sitting: {
  26555. height: math.unit(6, "feet"),
  26556. weight: math.unit(180, "lb"),
  26557. name: "Sitting",
  26558. image: {
  26559. source: "./media/characters/juri/sitting.svg",
  26560. extra: 1270 / 1143,
  26561. bottom: 100 / 1343
  26562. }
  26563. },
  26564. back: {
  26565. height: math.unit(7 + 3 / 12, "feet"),
  26566. weight: math.unit(180, "lb"),
  26567. name: "Back",
  26568. image: {
  26569. source: "./media/characters/juri/back.svg",
  26570. extra: 1377 / 1240,
  26571. bottom: 23.7 / 1405
  26572. }
  26573. },
  26574. maw: {
  26575. height: math.unit(2.8, "feet"),
  26576. name: "Maw",
  26577. image: {
  26578. source: "./media/characters/juri/maw.svg"
  26579. }
  26580. },
  26581. stomach: {
  26582. height: math.unit(0.89, "feet"),
  26583. capacity: math.unit(4, "liters"),
  26584. name: "Stomach",
  26585. image: {
  26586. source: "./media/characters/juri/stomach.svg"
  26587. }
  26588. },
  26589. },
  26590. [
  26591. {
  26592. name: "Normal",
  26593. height: math.unit(7 + 3 / 12, "feet"),
  26594. default: true
  26595. },
  26596. ]
  26597. ))
  26598. characterMakers.push(() => makeCharacter(
  26599. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  26600. {
  26601. fox: {
  26602. height: math.unit(5 + 6 / 12, "feet"),
  26603. weight: math.unit(140, "lb"),
  26604. name: "Fox",
  26605. image: {
  26606. source: "./media/characters/maxene-sita/fox.svg",
  26607. extra: 146 / 138,
  26608. bottom: 2.1 / 148.19
  26609. }
  26610. },
  26611. foxLaying: {
  26612. height: math.unit(1.70, "feet"),
  26613. weight: math.unit(140, "lb"),
  26614. name: "Fox (Laying)",
  26615. image: {
  26616. source: "./media/characters/maxene-sita/fox-laying.svg",
  26617. extra: 910 / 572,
  26618. bottom: 71 / 981
  26619. }
  26620. },
  26621. kitsune: {
  26622. height: math.unit(10, "feet"),
  26623. weight: math.unit(800, "lb"),
  26624. name: "Kitsune",
  26625. image: {
  26626. source: "./media/characters/maxene-sita/kitsune.svg",
  26627. extra: 185 / 176,
  26628. bottom: 4.7 / 189.9
  26629. }
  26630. },
  26631. hellhound: {
  26632. height: math.unit(10, "feet"),
  26633. weight: math.unit(700, "lb"),
  26634. name: "Hellhound",
  26635. image: {
  26636. source: "./media/characters/maxene-sita/hellhound.svg",
  26637. extra: 1600 / 1545,
  26638. bottom: 81 / 1681
  26639. }
  26640. },
  26641. },
  26642. [
  26643. {
  26644. name: "Normal",
  26645. height: math.unit(5 + 6 / 12, "feet"),
  26646. default: true
  26647. },
  26648. ]
  26649. ))
  26650. characterMakers.push(() => makeCharacter(
  26651. { name: "Maia", species: ["mew"], tags: ["feral"] },
  26652. {
  26653. front: {
  26654. height: math.unit(3 + 4 / 12, "feet"),
  26655. weight: math.unit(70, "lb"),
  26656. name: "Front",
  26657. image: {
  26658. source: "./media/characters/maia/front.svg",
  26659. extra: 227 / 219.5,
  26660. bottom: 40 / 267
  26661. }
  26662. },
  26663. back: {
  26664. height: math.unit(3 + 4 / 12, "feet"),
  26665. weight: math.unit(70, "lb"),
  26666. name: "Back",
  26667. image: {
  26668. source: "./media/characters/maia/back.svg",
  26669. extra: 237 / 225
  26670. }
  26671. },
  26672. },
  26673. [
  26674. {
  26675. name: "Normal",
  26676. height: math.unit(3 + 4 / 12, "feet"),
  26677. default: true
  26678. },
  26679. ]
  26680. ))
  26681. characterMakers.push(() => makeCharacter(
  26682. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  26683. {
  26684. front: {
  26685. height: math.unit(5 + 10 / 12, "feet"),
  26686. weight: math.unit(197, "lb"),
  26687. name: "Front",
  26688. image: {
  26689. source: "./media/characters/jabaro/front.svg",
  26690. extra: 225 / 216,
  26691. bottom: 5.06 / 230
  26692. }
  26693. },
  26694. back: {
  26695. height: math.unit(5 + 10 / 12, "feet"),
  26696. weight: math.unit(197, "lb"),
  26697. name: "Back",
  26698. image: {
  26699. source: "./media/characters/jabaro/back.svg",
  26700. extra: 225 / 219,
  26701. bottom: 1.9 / 227
  26702. }
  26703. },
  26704. },
  26705. [
  26706. {
  26707. name: "Normal",
  26708. height: math.unit(5 + 10 / 12, "feet"),
  26709. default: true
  26710. },
  26711. ]
  26712. ))
  26713. characterMakers.push(() => makeCharacter(
  26714. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  26715. {
  26716. front: {
  26717. height: math.unit(5 + 8 / 12, "feet"),
  26718. weight: math.unit(139, "lb"),
  26719. name: "Front",
  26720. image: {
  26721. source: "./media/characters/risa/front.svg",
  26722. extra: 270 / 260,
  26723. bottom: 11.2 / 282
  26724. }
  26725. },
  26726. back: {
  26727. height: math.unit(5 + 8 / 12, "feet"),
  26728. weight: math.unit(139, "lb"),
  26729. name: "Back",
  26730. image: {
  26731. source: "./media/characters/risa/back.svg",
  26732. extra: 264 / 255,
  26733. bottom: 4 / 268
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Normal",
  26740. height: math.unit(5 + 8 / 12, "feet"),
  26741. default: true
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  26747. {
  26748. front: {
  26749. height: math.unit(2 + 11 / 12, "feet"),
  26750. weight: math.unit(30, "lb"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/weatley/front.svg",
  26754. bottom: 10.7 / 414,
  26755. extra: 403.5 / 362
  26756. }
  26757. },
  26758. back: {
  26759. height: math.unit(2 + 11 / 12, "feet"),
  26760. weight: math.unit(30, "lb"),
  26761. name: "Back",
  26762. image: {
  26763. source: "./media/characters/weatley/back.svg",
  26764. bottom: 10.7 / 414,
  26765. extra: 403.5 / 362
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Normal",
  26772. height: math.unit(2 + 11 / 12, "feet"),
  26773. default: true
  26774. },
  26775. ]
  26776. ))
  26777. characterMakers.push(() => makeCharacter(
  26778. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  26779. {
  26780. front: {
  26781. height: math.unit(5 + 2 / 12, "feet"),
  26782. weight: math.unit(50, "kg"),
  26783. name: "Front",
  26784. image: {
  26785. source: "./media/characters/mercury-crescent/front.svg",
  26786. extra: 1088 / 1033,
  26787. bottom: 18.9 / 1109
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Normal",
  26794. height: math.unit(5 + 2 / 12, "feet"),
  26795. default: true
  26796. },
  26797. ]
  26798. ))
  26799. characterMakers.push(() => makeCharacter(
  26800. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  26801. {
  26802. front: {
  26803. height: math.unit(2, "feet"),
  26804. weight: math.unit(15, "kg"),
  26805. name: "Front",
  26806. image: {
  26807. source: "./media/characters/diamond-jones/front.svg",
  26808. extra: 727/723,
  26809. bottom: 46/773
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(2, "feet"),
  26817. default: true
  26818. },
  26819. ]
  26820. ))
  26821. characterMakers.push(() => makeCharacter(
  26822. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  26823. {
  26824. front: {
  26825. height: math.unit(3, "feet"),
  26826. weight: math.unit(30, "kg"),
  26827. name: "Front",
  26828. image: {
  26829. source: "./media/characters/sweet-bit/front.svg",
  26830. extra: 675 / 567,
  26831. bottom: 27.7 / 703
  26832. }
  26833. },
  26834. },
  26835. [
  26836. {
  26837. name: "Normal",
  26838. height: math.unit(3, "feet"),
  26839. default: true
  26840. },
  26841. ]
  26842. ))
  26843. characterMakers.push(() => makeCharacter(
  26844. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  26845. {
  26846. side: {
  26847. height: math.unit(9.178, "feet"),
  26848. weight: math.unit(500, "lb"),
  26849. name: "Side",
  26850. image: {
  26851. source: "./media/characters/umbrazen/side.svg",
  26852. extra: 1730 / 1473,
  26853. bottom: 34.6 / 1765
  26854. }
  26855. },
  26856. },
  26857. [
  26858. {
  26859. name: "Normal",
  26860. height: math.unit(9.178, "feet"),
  26861. default: true
  26862. },
  26863. ]
  26864. ))
  26865. characterMakers.push(() => makeCharacter(
  26866. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  26867. {
  26868. front: {
  26869. height: math.unit(10, "feet"),
  26870. weight: math.unit(750, "lb"),
  26871. name: "Front",
  26872. image: {
  26873. source: "./media/characters/arlist/front.svg",
  26874. extra: 961 / 778,
  26875. bottom: 6.2 / 986
  26876. }
  26877. },
  26878. },
  26879. [
  26880. {
  26881. name: "Normal",
  26882. height: math.unit(10, "feet"),
  26883. default: true
  26884. },
  26885. ]
  26886. ))
  26887. characterMakers.push(() => makeCharacter(
  26888. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  26889. {
  26890. front: {
  26891. height: math.unit(5 + 1 / 12, "feet"),
  26892. weight: math.unit(110, "lb"),
  26893. name: "Front",
  26894. image: {
  26895. source: "./media/characters/aradel/front.svg",
  26896. extra: 324 / 303,
  26897. bottom: 3.6 / 329.4
  26898. }
  26899. },
  26900. },
  26901. [
  26902. {
  26903. name: "Normal",
  26904. height: math.unit(5 + 1 / 12, "feet"),
  26905. default: true
  26906. },
  26907. ]
  26908. ))
  26909. characterMakers.push(() => makeCharacter(
  26910. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  26911. {
  26912. dressed: {
  26913. height: math.unit(3 + 8 / 12, "feet"),
  26914. weight: math.unit(50, "lb"),
  26915. name: "Dressed",
  26916. image: {
  26917. source: "./media/characters/serryn/dressed.svg",
  26918. extra: 1792 / 1656,
  26919. bottom: 43.5 / 1840
  26920. }
  26921. },
  26922. nude: {
  26923. height: math.unit(3 + 8 / 12, "feet"),
  26924. weight: math.unit(50, "lb"),
  26925. name: "Nude",
  26926. image: {
  26927. source: "./media/characters/serryn/nude.svg",
  26928. extra: 1792 / 1656,
  26929. bottom: 43.5 / 1840
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(3 + 8 / 12, "feet"),
  26937. default: true
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(7 + 10 / 12, "feet"),
  26946. weight: math.unit(255, "lb"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/xavier-thyme/front.svg",
  26950. extra: 3733 / 3642,
  26951. bottom: 131 / 3869
  26952. }
  26953. },
  26954. frontRaven: {
  26955. height: math.unit(7 + 10 / 12, "feet"),
  26956. weight: math.unit(255, "lb"),
  26957. name: "Front (Raven)",
  26958. image: {
  26959. source: "./media/characters/xavier-thyme/front-raven.svg",
  26960. extra: 4385 / 3642,
  26961. bottom: 131 / 4517
  26962. }
  26963. },
  26964. },
  26965. [
  26966. {
  26967. name: "Normal",
  26968. height: math.unit(7 + 10 / 12, "feet"),
  26969. default: true
  26970. },
  26971. ]
  26972. ))
  26973. characterMakers.push(() => makeCharacter(
  26974. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  26975. {
  26976. front: {
  26977. height: math.unit(1.6, "m"),
  26978. weight: math.unit(50, "kg"),
  26979. name: "Front",
  26980. image: {
  26981. source: "./media/characters/kiki/front.svg",
  26982. extra: 4682 / 3610,
  26983. bottom: 115 / 4777
  26984. }
  26985. },
  26986. },
  26987. [
  26988. {
  26989. name: "Normal",
  26990. height: math.unit(1.6, "meters"),
  26991. default: true
  26992. },
  26993. ]
  26994. ))
  26995. characterMakers.push(() => makeCharacter(
  26996. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  26997. {
  26998. front: {
  26999. height: math.unit(50, "m"),
  27000. weight: math.unit(500, "tonnes"),
  27001. name: "Front",
  27002. image: {
  27003. source: "./media/characters/ryoko/front.svg",
  27004. extra: 4632 / 3926,
  27005. bottom: 193 / 4823
  27006. }
  27007. },
  27008. },
  27009. [
  27010. {
  27011. name: "Normal",
  27012. height: math.unit(50, "meters"),
  27013. default: true
  27014. },
  27015. ]
  27016. ))
  27017. characterMakers.push(() => makeCharacter(
  27018. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  27019. {
  27020. front: {
  27021. height: math.unit(30, "m"),
  27022. weight: math.unit(22, "tonnes"),
  27023. name: "Front",
  27024. image: {
  27025. source: "./media/characters/elio/front.svg",
  27026. extra: 4582 / 3720,
  27027. bottom: 236 / 4828
  27028. }
  27029. },
  27030. },
  27031. [
  27032. {
  27033. name: "Normal",
  27034. height: math.unit(30, "meters"),
  27035. default: true
  27036. },
  27037. ]
  27038. ))
  27039. characterMakers.push(() => makeCharacter(
  27040. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  27041. {
  27042. front: {
  27043. height: math.unit(6 + 3 / 12, "feet"),
  27044. weight: math.unit(120, "lb"),
  27045. name: "Front",
  27046. image: {
  27047. source: "./media/characters/azura/front.svg",
  27048. extra: 1149 / 1135,
  27049. bottom: 45 / 1194
  27050. }
  27051. },
  27052. frontClothed: {
  27053. height: math.unit(6 + 3 / 12, "feet"),
  27054. weight: math.unit(120, "lb"),
  27055. name: "Front (Clothed)",
  27056. image: {
  27057. source: "./media/characters/azura/front-clothed.svg",
  27058. extra: 1149 / 1135,
  27059. bottom: 45 / 1194
  27060. }
  27061. },
  27062. },
  27063. [
  27064. {
  27065. name: "Normal",
  27066. height: math.unit(6 + 3 / 12, "feet"),
  27067. default: true
  27068. },
  27069. {
  27070. name: "Macro",
  27071. height: math.unit(20 + 6 / 12, "feet")
  27072. },
  27073. {
  27074. name: "Megamacro",
  27075. height: math.unit(12, "miles")
  27076. },
  27077. {
  27078. name: "Gigamacro",
  27079. height: math.unit(10000, "miles")
  27080. },
  27081. {
  27082. name: "Teramacro",
  27083. height: math.unit(900000, "miles")
  27084. },
  27085. ]
  27086. ))
  27087. characterMakers.push(() => makeCharacter(
  27088. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  27089. {
  27090. front: {
  27091. height: math.unit(12, "feet"),
  27092. weight: math.unit(1, "ton"),
  27093. capacity: math.unit(660000, "gallons"),
  27094. name: "Front",
  27095. image: {
  27096. source: "./media/characters/zeus/front.svg",
  27097. extra: 5005 / 4717,
  27098. bottom: 363 / 5388
  27099. }
  27100. },
  27101. },
  27102. [
  27103. {
  27104. name: "Normal",
  27105. height: math.unit(12, "feet")
  27106. },
  27107. {
  27108. name: "Preferred Size",
  27109. height: math.unit(0.5, "miles"),
  27110. default: true
  27111. },
  27112. {
  27113. name: "Giga Horse",
  27114. height: math.unit(300, "miles")
  27115. },
  27116. {
  27117. name: "Riding Planets",
  27118. height: math.unit(30, "megameters")
  27119. },
  27120. {
  27121. name: "Cosmic Giant",
  27122. height: math.unit(3, "zettameters")
  27123. },
  27124. {
  27125. name: "Breeding God",
  27126. height: math.unit(9.92e22, "yottameters")
  27127. },
  27128. ]
  27129. ))
  27130. characterMakers.push(() => makeCharacter(
  27131. { name: "Fang", species: ["monster"], tags: ["feral"] },
  27132. {
  27133. side: {
  27134. height: math.unit(9, "feet"),
  27135. weight: math.unit(1500, "kg"),
  27136. name: "Side",
  27137. image: {
  27138. source: "./media/characters/fang/side.svg",
  27139. extra: 924 / 866,
  27140. bottom: 47.5 / 972.3
  27141. }
  27142. },
  27143. },
  27144. [
  27145. {
  27146. name: "Normal",
  27147. height: math.unit(9, "feet"),
  27148. default: true
  27149. },
  27150. {
  27151. name: "Macro",
  27152. height: math.unit(75 + 6 / 12, "feet")
  27153. },
  27154. {
  27155. name: "Teramacro",
  27156. height: math.unit(50000, "miles")
  27157. },
  27158. ]
  27159. ))
  27160. characterMakers.push(() => makeCharacter(
  27161. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  27162. {
  27163. front: {
  27164. height: math.unit(10, "feet"),
  27165. weight: math.unit(2, "tons"),
  27166. name: "Front",
  27167. image: {
  27168. source: "./media/characters/rekhit/front.svg",
  27169. extra: 2796 / 2590,
  27170. bottom: 225 / 3022
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Normal",
  27177. height: math.unit(10, "feet"),
  27178. default: true
  27179. },
  27180. {
  27181. name: "Macro",
  27182. height: math.unit(500, "feet")
  27183. },
  27184. ]
  27185. ))
  27186. characterMakers.push(() => makeCharacter(
  27187. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  27188. {
  27189. front: {
  27190. height: math.unit(7 + 6.451 / 12, "feet"),
  27191. weight: math.unit(310, "lb"),
  27192. name: "Front",
  27193. image: {
  27194. source: "./media/characters/dahlia-verrick/front.svg",
  27195. extra: 1488 / 1365,
  27196. bottom: 6.2 / 1495
  27197. }
  27198. },
  27199. back: {
  27200. height: math.unit(7 + 6.451 / 12, "feet"),
  27201. weight: math.unit(310, "lb"),
  27202. name: "Back",
  27203. image: {
  27204. source: "./media/characters/dahlia-verrick/back.svg",
  27205. extra: 1472 / 1351,
  27206. bottom: 5.28 / 1477
  27207. }
  27208. },
  27209. frontBusiness: {
  27210. height: math.unit(7 + 6.451 / 12, "feet"),
  27211. weight: math.unit(200, "lb"),
  27212. name: "Front (Business)",
  27213. image: {
  27214. source: "./media/characters/dahlia-verrick/front-business.svg",
  27215. extra: 1478 / 1381,
  27216. bottom: 5.5 / 1484
  27217. }
  27218. },
  27219. frontCasual: {
  27220. height: math.unit(7 + 6.451 / 12, "feet"),
  27221. weight: math.unit(200, "lb"),
  27222. name: "Front (Casual)",
  27223. image: {
  27224. source: "./media/characters/dahlia-verrick/front-casual.svg",
  27225. extra: 1478 / 1381,
  27226. bottom: 5.5 / 1484
  27227. }
  27228. },
  27229. },
  27230. [
  27231. {
  27232. name: "Travel-Sized",
  27233. height: math.unit(7.45, "inches")
  27234. },
  27235. {
  27236. name: "Normal",
  27237. height: math.unit(7 + 6.451 / 12, "feet"),
  27238. default: true
  27239. },
  27240. {
  27241. name: "Hitting the Town",
  27242. height: math.unit(37 + 8 / 12, "feet")
  27243. },
  27244. {
  27245. name: "Stomp in the Suburbs",
  27246. height: math.unit(964 + 9.728 / 12, "feet")
  27247. },
  27248. {
  27249. name: "Sit on the City",
  27250. height: math.unit(61747 + 10.592 / 12, "feet")
  27251. },
  27252. {
  27253. name: "Glomp the Globe",
  27254. height: math.unit(252919327 + 4.832 / 12, "feet")
  27255. },
  27256. ]
  27257. ))
  27258. characterMakers.push(() => makeCharacter(
  27259. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  27260. {
  27261. front: {
  27262. height: math.unit(6 + 4 / 12, "feet"),
  27263. weight: math.unit(320, "lb"),
  27264. name: "Front",
  27265. image: {
  27266. source: "./media/characters/balina-mahigan/front.svg",
  27267. extra: 447 / 428,
  27268. bottom: 18 / 466
  27269. }
  27270. },
  27271. back: {
  27272. height: math.unit(6 + 4 / 12, "feet"),
  27273. weight: math.unit(320, "lb"),
  27274. name: "Back",
  27275. image: {
  27276. source: "./media/characters/balina-mahigan/back.svg",
  27277. extra: 445 / 428,
  27278. bottom: 4.07 / 448
  27279. }
  27280. },
  27281. arm: {
  27282. height: math.unit(1.88, "feet"),
  27283. name: "Arm",
  27284. image: {
  27285. source: "./media/characters/balina-mahigan/arm.svg"
  27286. }
  27287. },
  27288. backPort: {
  27289. height: math.unit(0.685, "feet"),
  27290. name: "Back Port",
  27291. image: {
  27292. source: "./media/characters/balina-mahigan/back-port.svg"
  27293. }
  27294. },
  27295. hoofpaw: {
  27296. height: math.unit(1.41, "feet"),
  27297. name: "Hoofpaw",
  27298. image: {
  27299. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  27300. }
  27301. },
  27302. leftHandBack: {
  27303. height: math.unit(0.938, "feet"),
  27304. name: "Left Hand (Back)",
  27305. image: {
  27306. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  27307. }
  27308. },
  27309. leftHandFront: {
  27310. height: math.unit(0.938, "feet"),
  27311. name: "Left Hand (Front)",
  27312. image: {
  27313. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  27314. }
  27315. },
  27316. rightHandBack: {
  27317. height: math.unit(0.95, "feet"),
  27318. name: "Right Hand (Back)",
  27319. image: {
  27320. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  27321. }
  27322. },
  27323. rightHandFront: {
  27324. height: math.unit(0.95, "feet"),
  27325. name: "Right Hand (Front)",
  27326. image: {
  27327. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  27328. }
  27329. },
  27330. },
  27331. [
  27332. {
  27333. name: "Normal",
  27334. height: math.unit(6 + 4 / 12, "feet"),
  27335. default: true
  27336. },
  27337. ]
  27338. ))
  27339. characterMakers.push(() => makeCharacter(
  27340. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  27341. {
  27342. front: {
  27343. height: math.unit(6, "feet"),
  27344. weight: math.unit(320, "lb"),
  27345. name: "Front",
  27346. image: {
  27347. source: "./media/characters/balina-mejeri/front.svg",
  27348. extra: 517 / 488,
  27349. bottom: 44.2 / 561
  27350. }
  27351. },
  27352. },
  27353. [
  27354. {
  27355. name: "Normal",
  27356. height: math.unit(6 + 4 / 12, "feet")
  27357. },
  27358. {
  27359. name: "Business",
  27360. height: math.unit(155, "feet"),
  27361. default: true
  27362. },
  27363. ]
  27364. ))
  27365. characterMakers.push(() => makeCharacter(
  27366. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  27367. {
  27368. kneeling: {
  27369. height: math.unit(6 + 4 / 12, "feet"),
  27370. weight: math.unit(300 * 20, "lb"),
  27371. name: "Kneeling",
  27372. image: {
  27373. source: "./media/characters/balbarian/kneeling.svg",
  27374. extra: 922 / 862,
  27375. bottom: 42.4 / 965
  27376. }
  27377. },
  27378. },
  27379. [
  27380. {
  27381. name: "Normal",
  27382. height: math.unit(6 + 4 / 12, "feet")
  27383. },
  27384. {
  27385. name: "Treasured",
  27386. height: math.unit(18 + 9 / 12, "feet"),
  27387. default: true
  27388. },
  27389. {
  27390. name: "Macro",
  27391. height: math.unit(900, "feet")
  27392. },
  27393. ]
  27394. ))
  27395. characterMakers.push(() => makeCharacter(
  27396. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  27397. {
  27398. front: {
  27399. height: math.unit(6 + 4 / 12, "feet"),
  27400. weight: math.unit(325, "lb"),
  27401. name: "Front",
  27402. image: {
  27403. source: "./media/characters/balina-amarini/front.svg",
  27404. extra: 415 / 403,
  27405. bottom: 19 / 433.4
  27406. }
  27407. },
  27408. back: {
  27409. height: math.unit(6 + 4 / 12, "feet"),
  27410. weight: math.unit(325, "lb"),
  27411. name: "Back",
  27412. image: {
  27413. source: "./media/characters/balina-amarini/back.svg",
  27414. extra: 415 / 403,
  27415. bottom: 13.5 / 432
  27416. }
  27417. },
  27418. overdrive: {
  27419. height: math.unit(6 + 4 / 12, "feet"),
  27420. weight: math.unit(400, "lb"),
  27421. name: "Overdrive",
  27422. image: {
  27423. source: "./media/characters/balina-amarini/overdrive.svg",
  27424. extra: 269 / 259,
  27425. bottom: 12 / 282
  27426. }
  27427. },
  27428. },
  27429. [
  27430. {
  27431. name: "Boom",
  27432. height: math.unit(9 + 10 / 12, "feet"),
  27433. default: true
  27434. },
  27435. {
  27436. name: "Macro",
  27437. height: math.unit(280, "feet")
  27438. },
  27439. ]
  27440. ))
  27441. characterMakers.push(() => makeCharacter(
  27442. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  27443. {
  27444. goddess: {
  27445. height: math.unit(600, "feet"),
  27446. weight: math.unit(2000000, "tons"),
  27447. name: "Goddess",
  27448. image: {
  27449. source: "./media/characters/lady-kubwa/goddess.svg",
  27450. extra: 1240.5 / 1223,
  27451. bottom: 22 / 1263
  27452. }
  27453. },
  27454. goddesser: {
  27455. height: math.unit(900, "feet"),
  27456. weight: math.unit(20000000, "lb"),
  27457. name: "Goddess-er",
  27458. image: {
  27459. source: "./media/characters/lady-kubwa/goddess-er.svg",
  27460. extra: 899 / 888,
  27461. bottom: 12.6 / 912
  27462. }
  27463. },
  27464. },
  27465. [
  27466. {
  27467. name: "Macro",
  27468. height: math.unit(600, "feet"),
  27469. default: true
  27470. },
  27471. {
  27472. name: "Megamacro",
  27473. height: math.unit(250, "miles")
  27474. },
  27475. ]
  27476. ))
  27477. characterMakers.push(() => makeCharacter(
  27478. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  27479. {
  27480. front: {
  27481. height: math.unit(7 + 7 / 12, "feet"),
  27482. weight: math.unit(250, "lb"),
  27483. name: "Front",
  27484. image: {
  27485. source: "./media/characters/tala-grovehorn/front.svg",
  27486. extra: 2636 / 2525,
  27487. bottom: 147 / 2781
  27488. }
  27489. },
  27490. back: {
  27491. height: math.unit(7 + 7 / 12, "feet"),
  27492. weight: math.unit(250, "lb"),
  27493. name: "Back",
  27494. image: {
  27495. source: "./media/characters/tala-grovehorn/back.svg",
  27496. extra: 2635 / 2539,
  27497. bottom: 100 / 2732.8
  27498. }
  27499. },
  27500. mouth: {
  27501. height: math.unit(1.15, "feet"),
  27502. name: "Mouth",
  27503. image: {
  27504. source: "./media/characters/tala-grovehorn/mouth.svg"
  27505. }
  27506. },
  27507. dick: {
  27508. height: math.unit(2.36, "feet"),
  27509. name: "Dick",
  27510. image: {
  27511. source: "./media/characters/tala-grovehorn/dick.svg"
  27512. }
  27513. },
  27514. slit: {
  27515. height: math.unit(0.61, "feet"),
  27516. name: "Slit",
  27517. image: {
  27518. source: "./media/characters/tala-grovehorn/slit.svg"
  27519. }
  27520. },
  27521. },
  27522. [
  27523. ]
  27524. ))
  27525. characterMakers.push(() => makeCharacter(
  27526. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  27527. {
  27528. front: {
  27529. height: math.unit(7 + 7 / 12, "feet"),
  27530. weight: math.unit(225, "lb"),
  27531. name: "Front",
  27532. image: {
  27533. source: "./media/characters/epona/front.svg",
  27534. extra: 2445 / 2290,
  27535. bottom: 251 / 2696
  27536. }
  27537. },
  27538. back: {
  27539. height: math.unit(7 + 7 / 12, "feet"),
  27540. weight: math.unit(225, "lb"),
  27541. name: "Back",
  27542. image: {
  27543. source: "./media/characters/epona/back.svg",
  27544. extra: 2546 / 2408,
  27545. bottom: 44 / 2589
  27546. }
  27547. },
  27548. genitals: {
  27549. height: math.unit(1.5, "feet"),
  27550. name: "Genitals",
  27551. image: {
  27552. source: "./media/characters/epona/genitals.svg"
  27553. }
  27554. },
  27555. },
  27556. [
  27557. {
  27558. name: "Normal",
  27559. height: math.unit(7 + 7 / 12, "feet"),
  27560. default: true
  27561. },
  27562. ]
  27563. ))
  27564. characterMakers.push(() => makeCharacter(
  27565. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  27566. {
  27567. front: {
  27568. height: math.unit(7, "feet"),
  27569. weight: math.unit(518, "lb"),
  27570. name: "Front",
  27571. image: {
  27572. source: "./media/characters/avia-bloodbourn/front.svg",
  27573. extra: 1466 / 1350,
  27574. bottom: 65 / 1527
  27575. }
  27576. },
  27577. },
  27578. [
  27579. ]
  27580. ))
  27581. characterMakers.push(() => makeCharacter(
  27582. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  27583. {
  27584. front: {
  27585. height: math.unit(9.35, "feet"),
  27586. weight: math.unit(600, "lb"),
  27587. name: "Front",
  27588. image: {
  27589. source: "./media/characters/amera/front.svg",
  27590. extra: 891 / 818,
  27591. bottom: 30 / 922.7
  27592. }
  27593. },
  27594. back: {
  27595. height: math.unit(9.35, "feet"),
  27596. weight: math.unit(600, "lb"),
  27597. name: "Back",
  27598. image: {
  27599. source: "./media/characters/amera/back.svg",
  27600. extra: 876 / 824,
  27601. bottom: 6.8 / 884
  27602. }
  27603. },
  27604. dick: {
  27605. height: math.unit(2.14, "feet"),
  27606. name: "Dick",
  27607. image: {
  27608. source: "./media/characters/amera/dick.svg"
  27609. }
  27610. },
  27611. },
  27612. [
  27613. {
  27614. name: "Normal",
  27615. height: math.unit(9.35, "feet"),
  27616. default: true
  27617. },
  27618. ]
  27619. ))
  27620. characterMakers.push(() => makeCharacter(
  27621. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  27622. {
  27623. kneeling: {
  27624. height: math.unit(3 + 4 / 12, "feet"),
  27625. weight: math.unit(90, "lb"),
  27626. name: "Kneeling",
  27627. image: {
  27628. source: "./media/characters/rosewen/kneeling.svg",
  27629. extra: 1835 / 1571,
  27630. bottom: 27.7 / 1862
  27631. }
  27632. },
  27633. },
  27634. [
  27635. {
  27636. name: "Normal",
  27637. height: math.unit(3 + 4 / 12, "feet"),
  27638. default: true
  27639. },
  27640. ]
  27641. ))
  27642. characterMakers.push(() => makeCharacter(
  27643. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  27644. {
  27645. front: {
  27646. height: math.unit(5 + 10 / 12, "feet"),
  27647. weight: math.unit(200, "lb"),
  27648. name: "Front",
  27649. image: {
  27650. source: "./media/characters/sabah/front.svg",
  27651. extra: 849 / 763,
  27652. bottom: 33.9 / 881
  27653. }
  27654. },
  27655. },
  27656. [
  27657. {
  27658. name: "Normal",
  27659. height: math.unit(5 + 10 / 12, "feet"),
  27660. default: true
  27661. },
  27662. ]
  27663. ))
  27664. characterMakers.push(() => makeCharacter(
  27665. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  27666. {
  27667. front: {
  27668. height: math.unit(3 + 5 / 12, "feet"),
  27669. weight: math.unit(40, "kg"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/purple-flame/front.svg",
  27673. extra: 1577 / 1412,
  27674. bottom: 97 / 1694
  27675. }
  27676. },
  27677. frontDressed: {
  27678. height: math.unit(3 + 5 / 12, "feet"),
  27679. weight: math.unit(40, "kg"),
  27680. name: "Front (Dressed)",
  27681. image: {
  27682. source: "./media/characters/purple-flame/front-dressed.svg",
  27683. extra: 1577 / 1412,
  27684. bottom: 97 / 1694
  27685. }
  27686. },
  27687. headphones: {
  27688. height: math.unit(0.85, "feet"),
  27689. name: "Headphones",
  27690. image: {
  27691. source: "./media/characters/purple-flame/headphones.svg"
  27692. }
  27693. },
  27694. },
  27695. [
  27696. {
  27697. name: "Really Small",
  27698. height: math.unit(5, "cm")
  27699. },
  27700. {
  27701. name: "Micro",
  27702. height: math.unit(1 + 5 / 12, "feet")
  27703. },
  27704. {
  27705. name: "Normal",
  27706. height: math.unit(3 + 5 / 12, "feet"),
  27707. default: true
  27708. },
  27709. {
  27710. name: "Minimacro",
  27711. height: math.unit(125, "feet")
  27712. },
  27713. {
  27714. name: "Macro",
  27715. height: math.unit(0.5, "miles")
  27716. },
  27717. {
  27718. name: "Megamacro",
  27719. height: math.unit(50, "miles")
  27720. },
  27721. {
  27722. name: "Gigantic",
  27723. height: math.unit(750, "miles")
  27724. },
  27725. {
  27726. name: "Planetary",
  27727. height: math.unit(15000, "miles")
  27728. },
  27729. ]
  27730. ))
  27731. characterMakers.push(() => makeCharacter(
  27732. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  27733. {
  27734. front: {
  27735. height: math.unit(14, "feet"),
  27736. weight: math.unit(959, "lb"),
  27737. name: "Front",
  27738. image: {
  27739. source: "./media/characters/arsenal/front.svg",
  27740. extra: 2357 / 2157,
  27741. bottom: 93 / 2458
  27742. }
  27743. },
  27744. },
  27745. [
  27746. {
  27747. name: "Normal",
  27748. height: math.unit(14, "feet"),
  27749. default: true
  27750. },
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  27755. {
  27756. front: {
  27757. height: math.unit(6, "feet"),
  27758. weight: math.unit(150, "lb"),
  27759. name: "Front",
  27760. image: {
  27761. source: "./media/characters/adira/front.svg",
  27762. extra: 1078 / 1029,
  27763. bottom: 87 / 1166
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Micro",
  27770. height: math.unit(4, "inches"),
  27771. default: true
  27772. },
  27773. {
  27774. name: "Macro",
  27775. height: math.unit(50, "feet")
  27776. },
  27777. ]
  27778. ))
  27779. characterMakers.push(() => makeCharacter(
  27780. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  27781. {
  27782. front: {
  27783. height: math.unit(16, "feet"),
  27784. weight: math.unit(1000, "lb"),
  27785. name: "Front",
  27786. image: {
  27787. source: "./media/characters/grim/front.svg",
  27788. extra: 622 / 614,
  27789. bottom: 18.1 / 642
  27790. }
  27791. },
  27792. back: {
  27793. height: math.unit(16, "feet"),
  27794. weight: math.unit(1000, "lb"),
  27795. name: "Back",
  27796. image: {
  27797. source: "./media/characters/grim/back.svg",
  27798. extra: 610.6 / 602,
  27799. bottom: 40.8 / 652
  27800. }
  27801. },
  27802. hunched: {
  27803. height: math.unit(9.75, "feet"),
  27804. weight: math.unit(1000, "lb"),
  27805. name: "Hunched",
  27806. image: {
  27807. source: "./media/characters/grim/hunched.svg",
  27808. extra: 304 / 297,
  27809. bottom: 35.4 / 394
  27810. }
  27811. },
  27812. },
  27813. [
  27814. {
  27815. name: "Normal",
  27816. height: math.unit(16, "feet"),
  27817. default: true
  27818. },
  27819. ]
  27820. ))
  27821. characterMakers.push(() => makeCharacter(
  27822. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  27823. {
  27824. front: {
  27825. height: math.unit(2.3, "meters"),
  27826. weight: math.unit(300, "lb"),
  27827. name: "Front",
  27828. image: {
  27829. source: "./media/characters/sinja/front-sfw.svg",
  27830. extra: 1393 / 1294,
  27831. bottom: 70 / 1463
  27832. }
  27833. },
  27834. frontNsfw: {
  27835. height: math.unit(2.3, "meters"),
  27836. weight: math.unit(300, "lb"),
  27837. name: "Front (NSFW)",
  27838. image: {
  27839. source: "./media/characters/sinja/front-nsfw.svg",
  27840. extra: 1393 / 1294,
  27841. bottom: 70 / 1463
  27842. }
  27843. },
  27844. back: {
  27845. height: math.unit(2.3, "meters"),
  27846. weight: math.unit(300, "lb"),
  27847. name: "Back",
  27848. image: {
  27849. source: "./media/characters/sinja/back.svg",
  27850. extra: 1393 / 1294,
  27851. bottom: 70 / 1463
  27852. }
  27853. },
  27854. head: {
  27855. height: math.unit(1.771, "feet"),
  27856. name: "Head",
  27857. image: {
  27858. source: "./media/characters/sinja/head.svg"
  27859. }
  27860. },
  27861. slit: {
  27862. height: math.unit(0.8, "feet"),
  27863. name: "Slit",
  27864. image: {
  27865. source: "./media/characters/sinja/slit.svg"
  27866. }
  27867. },
  27868. },
  27869. [
  27870. {
  27871. name: "Normal",
  27872. height: math.unit(2.3, "meters")
  27873. },
  27874. {
  27875. name: "Macro",
  27876. height: math.unit(91, "meters"),
  27877. default: true
  27878. },
  27879. {
  27880. name: "Megamacro",
  27881. height: math.unit(91440, "meters")
  27882. },
  27883. {
  27884. name: "Gigamacro",
  27885. height: math.unit(60960000, "meters")
  27886. },
  27887. {
  27888. name: "Teramacro",
  27889. height: math.unit(9144000000, "meters")
  27890. },
  27891. ]
  27892. ))
  27893. characterMakers.push(() => makeCharacter(
  27894. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  27895. {
  27896. front: {
  27897. height: math.unit(1.7, "meters"),
  27898. weight: math.unit(130, "lb"),
  27899. name: "Front",
  27900. image: {
  27901. source: "./media/characters/kyu/front.svg",
  27902. extra: 415 / 395,
  27903. bottom: 5 / 420
  27904. }
  27905. },
  27906. head: {
  27907. height: math.unit(1.75, "feet"),
  27908. name: "Head",
  27909. image: {
  27910. source: "./media/characters/kyu/head.svg"
  27911. }
  27912. },
  27913. foot: {
  27914. height: math.unit(0.81, "feet"),
  27915. name: "Foot",
  27916. image: {
  27917. source: "./media/characters/kyu/foot.svg"
  27918. }
  27919. },
  27920. },
  27921. [
  27922. {
  27923. name: "Normal",
  27924. height: math.unit(1.7, "meters")
  27925. },
  27926. {
  27927. name: "Macro",
  27928. height: math.unit(131, "feet"),
  27929. default: true
  27930. },
  27931. {
  27932. name: "Megamacro",
  27933. height: math.unit(91440, "meters")
  27934. },
  27935. {
  27936. name: "Gigamacro",
  27937. height: math.unit(60960000, "meters")
  27938. },
  27939. {
  27940. name: "Teramacro",
  27941. height: math.unit(9144000000, "meters")
  27942. },
  27943. ]
  27944. ))
  27945. characterMakers.push(() => makeCharacter(
  27946. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  27947. {
  27948. front: {
  27949. height: math.unit(7 + 1 / 12, "feet"),
  27950. weight: math.unit(250, "lb"),
  27951. name: "Front",
  27952. image: {
  27953. source: "./media/characters/joey/front.svg",
  27954. extra: 1791 / 1537,
  27955. bottom: 28 / 1816
  27956. }
  27957. },
  27958. },
  27959. [
  27960. {
  27961. name: "Micro",
  27962. height: math.unit(3, "inches")
  27963. },
  27964. {
  27965. name: "Normal",
  27966. height: math.unit(7 + 1 / 12, "feet"),
  27967. default: true
  27968. },
  27969. ]
  27970. ))
  27971. characterMakers.push(() => makeCharacter(
  27972. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  27973. {
  27974. front: {
  27975. height: math.unit(165, "cm"),
  27976. weight: math.unit(140, "lb"),
  27977. name: "Front",
  27978. image: {
  27979. source: "./media/characters/sam-evans/front.svg",
  27980. extra: 3417 / 3230,
  27981. bottom: 41.3 / 3417
  27982. }
  27983. },
  27984. frontSixTails: {
  27985. height: math.unit(165, "cm"),
  27986. weight: math.unit(140, "lb"),
  27987. name: "Front-six-tails",
  27988. image: {
  27989. source: "./media/characters/sam-evans/front-six-tails.svg",
  27990. extra: 3417 / 3230,
  27991. bottom: 41.3 / 3417
  27992. }
  27993. },
  27994. back: {
  27995. height: math.unit(165, "cm"),
  27996. weight: math.unit(140, "lb"),
  27997. name: "Back",
  27998. image: {
  27999. source: "./media/characters/sam-evans/back.svg",
  28000. extra: 3227 / 3032,
  28001. bottom: 6.8 / 3234
  28002. }
  28003. },
  28004. face: {
  28005. height: math.unit(0.68, "feet"),
  28006. name: "Face",
  28007. image: {
  28008. source: "./media/characters/sam-evans/face.svg"
  28009. }
  28010. },
  28011. },
  28012. [
  28013. {
  28014. name: "Normal",
  28015. height: math.unit(165, "cm"),
  28016. default: true
  28017. },
  28018. {
  28019. name: "Macro",
  28020. height: math.unit(100, "meters")
  28021. },
  28022. {
  28023. name: "Macro+",
  28024. height: math.unit(800, "meters")
  28025. },
  28026. {
  28027. name: "Macro++",
  28028. height: math.unit(3, "km")
  28029. },
  28030. {
  28031. name: "Macro+++",
  28032. height: math.unit(30, "km")
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  28038. {
  28039. front: {
  28040. height: math.unit(10, "feet"),
  28041. weight: math.unit(750, "lb"),
  28042. name: "Front",
  28043. image: {
  28044. source: "./media/characters/juliet-a/front.svg",
  28045. extra: 1766 / 1720,
  28046. bottom: 43 / 1809
  28047. }
  28048. },
  28049. back: {
  28050. height: math.unit(10, "feet"),
  28051. weight: math.unit(750, "lb"),
  28052. name: "Back",
  28053. image: {
  28054. source: "./media/characters/juliet-a/back.svg",
  28055. extra: 1781 / 1734,
  28056. bottom: 35 / 1810,
  28057. }
  28058. },
  28059. },
  28060. [
  28061. {
  28062. name: "Normal",
  28063. height: math.unit(10, "feet"),
  28064. default: true
  28065. },
  28066. {
  28067. name: "Dragon Form",
  28068. height: math.unit(250, "feet")
  28069. },
  28070. {
  28071. name: "Macro",
  28072. height: math.unit(1000, "feet")
  28073. },
  28074. {
  28075. name: "Megamacro",
  28076. height: math.unit(10000, "feet")
  28077. }
  28078. ]
  28079. ))
  28080. characterMakers.push(() => makeCharacter(
  28081. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  28082. {
  28083. regular: {
  28084. height: math.unit(7 + 3 / 12, "feet"),
  28085. weight: math.unit(260, "lb"),
  28086. name: "Regular",
  28087. image: {
  28088. source: "./media/characters/wild/regular.svg",
  28089. extra: 97.45 / 92,
  28090. bottom: 6.8 / 104.3
  28091. }
  28092. },
  28093. biggums: {
  28094. height: math.unit(8 + 6 / 12, "feet"),
  28095. weight: math.unit(425, "lb"),
  28096. name: "Biggums",
  28097. image: {
  28098. source: "./media/characters/wild/biggums.svg",
  28099. extra: 97.45 / 92,
  28100. bottom: 7.5 / 132.34
  28101. }
  28102. },
  28103. mawRegular: {
  28104. height: math.unit(1.24, "feet"),
  28105. name: "Maw (Regular)",
  28106. image: {
  28107. source: "./media/characters/wild/maw.svg"
  28108. }
  28109. },
  28110. mawBiggums: {
  28111. height: math.unit(1.47, "feet"),
  28112. name: "Maw (Biggums)",
  28113. image: {
  28114. source: "./media/characters/wild/maw.svg"
  28115. }
  28116. },
  28117. },
  28118. [
  28119. {
  28120. name: "Normal",
  28121. height: math.unit(7 + 3 / 12, "feet"),
  28122. default: true
  28123. },
  28124. ]
  28125. ))
  28126. characterMakers.push(() => makeCharacter(
  28127. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  28128. {
  28129. front: {
  28130. height: math.unit(2.5, "meters"),
  28131. weight: math.unit(200, "kg"),
  28132. name: "Front",
  28133. image: {
  28134. source: "./media/characters/vidar/front.svg",
  28135. extra: 2994 / 2795,
  28136. bottom: 56 / 3061
  28137. }
  28138. },
  28139. back: {
  28140. height: math.unit(2.5, "meters"),
  28141. weight: math.unit(200, "kg"),
  28142. name: "Back",
  28143. image: {
  28144. source: "./media/characters/vidar/back.svg",
  28145. extra: 3131 / 2928,
  28146. bottom: 13.5 / 3141.5
  28147. }
  28148. },
  28149. feral: {
  28150. height: math.unit(2.5, "meters"),
  28151. weight: math.unit(2000, "kg"),
  28152. name: "Feral",
  28153. image: {
  28154. source: "./media/characters/vidar/feral.svg",
  28155. extra: 2790 / 1765,
  28156. bottom: 6 / 2796
  28157. }
  28158. },
  28159. },
  28160. [
  28161. {
  28162. name: "Normal",
  28163. height: math.unit(2.5, "meters"),
  28164. default: true
  28165. },
  28166. {
  28167. name: "Macro",
  28168. height: math.unit(100, "meters")
  28169. },
  28170. ]
  28171. ))
  28172. characterMakers.push(() => makeCharacter(
  28173. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  28174. {
  28175. front: {
  28176. height: math.unit(5 + 9 / 12, "feet"),
  28177. weight: math.unit(120, "lb"),
  28178. name: "Front",
  28179. image: {
  28180. source: "./media/characters/ash/front.svg",
  28181. extra: 2189 / 1961,
  28182. bottom: 5.2 / 2194
  28183. }
  28184. },
  28185. },
  28186. [
  28187. {
  28188. name: "Normal",
  28189. height: math.unit(5 + 9 / 12, "feet"),
  28190. default: true
  28191. },
  28192. ]
  28193. ))
  28194. characterMakers.push(() => makeCharacter(
  28195. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  28196. {
  28197. front: {
  28198. height: math.unit(9, "feet"),
  28199. weight: math.unit(10000, "lb"),
  28200. name: "Front",
  28201. image: {
  28202. source: "./media/characters/gygabite/front.svg",
  28203. bottom: 31.7 / 537.8,
  28204. extra: 505 / 370
  28205. }
  28206. },
  28207. },
  28208. [
  28209. {
  28210. name: "Normal",
  28211. height: math.unit(9, "feet"),
  28212. default: true
  28213. },
  28214. ]
  28215. ))
  28216. characterMakers.push(() => makeCharacter(
  28217. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  28218. {
  28219. front: {
  28220. height: math.unit(12, "feet"),
  28221. weight: math.unit(35000, "lb"),
  28222. name: "Front",
  28223. image: {
  28224. source: "./media/characters/p0tat0/front.svg",
  28225. extra: 1065 / 921,
  28226. bottom: 55.7 / 1121.25
  28227. }
  28228. },
  28229. },
  28230. [
  28231. {
  28232. name: "Normal",
  28233. height: math.unit(12, "feet"),
  28234. default: true
  28235. },
  28236. ]
  28237. ))
  28238. characterMakers.push(() => makeCharacter(
  28239. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  28240. {
  28241. side: {
  28242. height: math.unit(6.5, "feet"),
  28243. weight: math.unit(800, "lb"),
  28244. name: "Side",
  28245. image: {
  28246. source: "./media/characters/dusk/side.svg",
  28247. extra: 615 / 373,
  28248. bottom: 53 / 664
  28249. }
  28250. },
  28251. sitting: {
  28252. height: math.unit(7, "feet"),
  28253. weight: math.unit(800, "lb"),
  28254. name: "Sitting",
  28255. image: {
  28256. source: "./media/characters/dusk/sitting.svg",
  28257. extra: 753 / 425,
  28258. bottom: 33 / 774
  28259. }
  28260. },
  28261. head: {
  28262. height: math.unit(6.1, "feet"),
  28263. name: "Head",
  28264. image: {
  28265. source: "./media/characters/dusk/head.svg"
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(7, "feet"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(15, "feet"),
  28282. weight: math.unit(7000, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/jay-direwolf/front.svg",
  28286. extra: 1810 / 1732,
  28287. bottom: 66 / 1892
  28288. }
  28289. },
  28290. },
  28291. [
  28292. {
  28293. name: "Normal",
  28294. height: math.unit(15, "feet"),
  28295. default: true
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(4 + 9 / 12, "feet"),
  28304. weight: math.unit(130, "lb"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/anchovie/front.svg",
  28308. extra: 382 / 350,
  28309. bottom: 25 / 409
  28310. }
  28311. },
  28312. back: {
  28313. height: math.unit(4 + 9 / 12, "feet"),
  28314. weight: math.unit(130, "lb"),
  28315. name: "Back",
  28316. image: {
  28317. source: "./media/characters/anchovie/back.svg",
  28318. extra: 385 / 352,
  28319. bottom: 16.6 / 402
  28320. }
  28321. },
  28322. frontDressed: {
  28323. height: math.unit(4 + 9 / 12, "feet"),
  28324. weight: math.unit(130, "lb"),
  28325. name: "Front (Dressed)",
  28326. image: {
  28327. source: "./media/characters/anchovie/front-dressed.svg",
  28328. extra: 382 / 350,
  28329. bottom: 25 / 409
  28330. }
  28331. },
  28332. backDressed: {
  28333. height: math.unit(4 + 9 / 12, "feet"),
  28334. weight: math.unit(130, "lb"),
  28335. name: "Back (Dressed)",
  28336. image: {
  28337. source: "./media/characters/anchovie/back-dressed.svg",
  28338. extra: 385 / 352,
  28339. bottom: 16.6 / 402
  28340. }
  28341. },
  28342. },
  28343. [
  28344. {
  28345. name: "Micro",
  28346. height: math.unit(6.4, "inches")
  28347. },
  28348. {
  28349. name: "Normal",
  28350. height: math.unit(4 + 9 / 12, "feet"),
  28351. default: true
  28352. },
  28353. ]
  28354. ))
  28355. characterMakers.push(() => makeCharacter(
  28356. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  28357. {
  28358. front: {
  28359. height: math.unit(2, "meters"),
  28360. weight: math.unit(180, "lb"),
  28361. name: "Front",
  28362. image: {
  28363. source: "./media/characters/acidrenamon/front.svg",
  28364. extra: 987 / 890,
  28365. bottom: 22.8 / 1009
  28366. }
  28367. },
  28368. back: {
  28369. height: math.unit(2, "meters"),
  28370. weight: math.unit(180, "lb"),
  28371. name: "Back",
  28372. image: {
  28373. source: "./media/characters/acidrenamon/back.svg",
  28374. extra: 983 / 891,
  28375. bottom: 8.4 / 992
  28376. }
  28377. },
  28378. head: {
  28379. height: math.unit(1.92, "feet"),
  28380. name: "Head",
  28381. image: {
  28382. source: "./media/characters/acidrenamon/head.svg"
  28383. }
  28384. },
  28385. rump: {
  28386. height: math.unit(1.72, "feet"),
  28387. name: "Rump",
  28388. image: {
  28389. source: "./media/characters/acidrenamon/rump.svg"
  28390. }
  28391. },
  28392. tail: {
  28393. height: math.unit(4.2, "feet"),
  28394. name: "Tail",
  28395. image: {
  28396. source: "./media/characters/acidrenamon/tail.svg"
  28397. }
  28398. },
  28399. },
  28400. [
  28401. {
  28402. name: "Normal",
  28403. height: math.unit(2, "meters"),
  28404. default: true
  28405. },
  28406. {
  28407. name: "Minimacro",
  28408. height: math.unit(7, "meters")
  28409. },
  28410. {
  28411. name: "Macro",
  28412. height: math.unit(200, "meters")
  28413. },
  28414. {
  28415. name: "Gigamacro",
  28416. height: math.unit(0.2, "earths")
  28417. },
  28418. ]
  28419. ))
  28420. characterMakers.push(() => makeCharacter(
  28421. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  28422. {
  28423. front: {
  28424. height: math.unit(152, "feet"),
  28425. name: "Front",
  28426. image: {
  28427. source: "./media/characters/kenzie-lee/front.svg",
  28428. extra: 1869/1774,
  28429. bottom: 128/1997
  28430. }
  28431. },
  28432. side: {
  28433. height: math.unit(86, "feet"),
  28434. name: "Side",
  28435. image: {
  28436. source: "./media/characters/kenzie-lee/side.svg",
  28437. extra: 930/815,
  28438. bottom: 177/1107
  28439. }
  28440. },
  28441. paw: {
  28442. height: math.unit(15, "feet"),
  28443. name: "Paw",
  28444. image: {
  28445. source: "./media/characters/kenzie-lee/paw.svg"
  28446. }
  28447. },
  28448. },
  28449. [
  28450. {
  28451. name: "Micro",
  28452. height: math.unit(1.5, "inches")
  28453. },
  28454. {
  28455. name: "Normal",
  28456. height: math.unit(152, "feet"),
  28457. default: true
  28458. },
  28459. {
  28460. name: "Megamacro",
  28461. height: math.unit(7, "miles")
  28462. },
  28463. {
  28464. name: "Gigamacro",
  28465. height: math.unit(8000, "miles")
  28466. },
  28467. ]
  28468. ))
  28469. characterMakers.push(() => makeCharacter(
  28470. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  28471. {
  28472. side: {
  28473. height: math.unit(6, "feet"),
  28474. weight: math.unit(150, "lb"),
  28475. name: "Side",
  28476. image: {
  28477. source: "./media/characters/withers/side.svg",
  28478. extra: 1830 / 1728,
  28479. bottom: 96 / 1927
  28480. }
  28481. },
  28482. front: {
  28483. height: math.unit(6, "feet"),
  28484. weight: math.unit(150, "lb"),
  28485. name: "Front",
  28486. image: {
  28487. source: "./media/characters/withers/front.svg",
  28488. extra: 1514 / 1438,
  28489. bottom: 118 / 1632
  28490. }
  28491. },
  28492. },
  28493. [
  28494. {
  28495. name: "Macro",
  28496. height: math.unit(168, "feet"),
  28497. default: true
  28498. },
  28499. {
  28500. name: "Megamacro",
  28501. height: math.unit(15, "miles")
  28502. }
  28503. ]
  28504. ))
  28505. characterMakers.push(() => makeCharacter(
  28506. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  28507. {
  28508. front: {
  28509. height: math.unit(6 + 7 / 12, "feet"),
  28510. weight: math.unit(250, "lb"),
  28511. name: "Front",
  28512. image: {
  28513. source: "./media/characters/nemoskii/front.svg",
  28514. extra: 2270 / 1734,
  28515. bottom: 86 / 2354
  28516. }
  28517. },
  28518. back: {
  28519. height: math.unit(6 + 7 / 12, "feet"),
  28520. weight: math.unit(250, "lb"),
  28521. name: "Back",
  28522. image: {
  28523. source: "./media/characters/nemoskii/back.svg",
  28524. extra: 1845 / 1788,
  28525. bottom: 10.5 / 1852
  28526. }
  28527. },
  28528. head: {
  28529. height: math.unit(1.31, "feet"),
  28530. name: "Head",
  28531. image: {
  28532. source: "./media/characters/nemoskii/head.svg"
  28533. }
  28534. },
  28535. },
  28536. [
  28537. {
  28538. name: "Micro",
  28539. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  28540. },
  28541. {
  28542. name: "Normal",
  28543. height: math.unit(6 + 7 / 12, "feet"),
  28544. default: true
  28545. },
  28546. {
  28547. name: "Macro",
  28548. height: math.unit((6 + 7 / 12) * 150, "feet")
  28549. },
  28550. {
  28551. name: "Macro+",
  28552. height: math.unit((6 + 7 / 12) * 500, "feet")
  28553. },
  28554. {
  28555. name: "Megamacro",
  28556. height: math.unit((6 + 7 / 12) * 100000, "feet")
  28557. },
  28558. ]
  28559. ))
  28560. characterMakers.push(() => makeCharacter(
  28561. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  28562. {
  28563. front: {
  28564. height: math.unit(1, "mile"),
  28565. weight: math.unit(265261.9, "lb"),
  28566. name: "Front",
  28567. image: {
  28568. source: "./media/characters/shui/front.svg",
  28569. extra: 1633 / 1564,
  28570. bottom: 91.5 / 1726
  28571. }
  28572. },
  28573. },
  28574. [
  28575. {
  28576. name: "Macro",
  28577. height: math.unit(1, "mile"),
  28578. default: true
  28579. },
  28580. ]
  28581. ))
  28582. characterMakers.push(() => makeCharacter(
  28583. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  28584. {
  28585. front: {
  28586. height: math.unit(12 + 6 / 12, "feet"),
  28587. weight: math.unit(1342, "lb"),
  28588. name: "Front",
  28589. image: {
  28590. source: "./media/characters/arokh-takakura/front.svg",
  28591. extra: 1089 / 1043,
  28592. bottom: 77.4 / 1176.7
  28593. }
  28594. },
  28595. back: {
  28596. height: math.unit(12 + 6 / 12, "feet"),
  28597. weight: math.unit(1342, "lb"),
  28598. name: "Back",
  28599. image: {
  28600. source: "./media/characters/arokh-takakura/back.svg",
  28601. extra: 1046 / 1019,
  28602. bottom: 102 / 1150
  28603. }
  28604. },
  28605. },
  28606. [
  28607. {
  28608. name: "Big",
  28609. height: math.unit(12 + 6 / 12, "feet"),
  28610. default: true
  28611. },
  28612. ]
  28613. ))
  28614. characterMakers.push(() => makeCharacter(
  28615. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  28616. {
  28617. front: {
  28618. height: math.unit(5 + 6 / 12, "feet"),
  28619. weight: math.unit(150, "lb"),
  28620. name: "Front",
  28621. image: {
  28622. source: "./media/characters/theo/front.svg",
  28623. extra: 1184 / 1131,
  28624. bottom: 7.4 / 1191
  28625. }
  28626. },
  28627. },
  28628. [
  28629. {
  28630. name: "Micro",
  28631. height: math.unit(5, "inches")
  28632. },
  28633. {
  28634. name: "Normal",
  28635. height: math.unit(5 + 6 / 12, "feet"),
  28636. default: true
  28637. },
  28638. ]
  28639. ))
  28640. characterMakers.push(() => makeCharacter(
  28641. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  28642. {
  28643. front: {
  28644. height: math.unit(5 + 9 / 12, "feet"),
  28645. weight: math.unit(130, "lb"),
  28646. name: "Front",
  28647. image: {
  28648. source: "./media/characters/cecelia-swift/front.svg",
  28649. extra: 502 / 484,
  28650. bottom: 23 / 523
  28651. }
  28652. },
  28653. back: {
  28654. height: math.unit(5 + 9 / 12, "feet"),
  28655. weight: math.unit(130, "lb"),
  28656. name: "Back",
  28657. image: {
  28658. source: "./media/characters/cecelia-swift/back.svg",
  28659. extra: 499 / 485,
  28660. bottom: 12 / 511
  28661. }
  28662. },
  28663. head: {
  28664. height: math.unit(0.90, "feet"),
  28665. name: "Head",
  28666. image: {
  28667. source: "./media/characters/cecelia-swift/head.svg"
  28668. }
  28669. },
  28670. rump: {
  28671. height: math.unit(1.75, "feet"),
  28672. name: "Rump",
  28673. image: {
  28674. source: "./media/characters/cecelia-swift/rump.svg"
  28675. }
  28676. },
  28677. },
  28678. [
  28679. {
  28680. name: "Normal",
  28681. height: math.unit(5 + 9 / 12, "feet"),
  28682. default: true
  28683. },
  28684. {
  28685. name: "Big",
  28686. height: math.unit(50, "feet")
  28687. },
  28688. {
  28689. name: "Macro",
  28690. height: math.unit(100, "feet")
  28691. },
  28692. {
  28693. name: "Macro+",
  28694. height: math.unit(500, "feet")
  28695. },
  28696. {
  28697. name: "Macro++",
  28698. height: math.unit(1000, "feet")
  28699. },
  28700. ]
  28701. ))
  28702. characterMakers.push(() => makeCharacter(
  28703. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  28704. {
  28705. front: {
  28706. height: math.unit(6, "feet"),
  28707. weight: math.unit(150, "lb"),
  28708. name: "Front",
  28709. image: {
  28710. source: "./media/characters/kaunan/front.svg",
  28711. extra: 2890 / 2523,
  28712. bottom: 49 / 2939
  28713. }
  28714. },
  28715. },
  28716. [
  28717. {
  28718. name: "Macro",
  28719. height: math.unit(150, "feet"),
  28720. default: true
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(175, "cm"),
  28729. weight: math.unit(60, "kg"),
  28730. name: "Front",
  28731. image: {
  28732. source: "./media/characters/fei/front.svg",
  28733. extra: 1873/1723,
  28734. bottom: 53/1926
  28735. }
  28736. },
  28737. },
  28738. [
  28739. {
  28740. name: "Mortal",
  28741. height: math.unit(175, "cm")
  28742. },
  28743. {
  28744. name: "Normal",
  28745. height: math.unit(3500, "m"),
  28746. default: true
  28747. },
  28748. {
  28749. name: "Stroll",
  28750. height: math.unit(17.5, "km")
  28751. },
  28752. {
  28753. name: "Showoff",
  28754. height: math.unit(175, "km")
  28755. },
  28756. ]
  28757. ))
  28758. characterMakers.push(() => makeCharacter(
  28759. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  28760. {
  28761. front: {
  28762. height: math.unit(7, "feet"),
  28763. weight: math.unit(1000, "kg"),
  28764. name: "Front",
  28765. image: {
  28766. source: "./media/characters/edrax/front.svg",
  28767. extra: 2838 / 2550,
  28768. bottom: 130 / 2968
  28769. }
  28770. },
  28771. },
  28772. [
  28773. {
  28774. name: "Small",
  28775. height: math.unit(7, "feet")
  28776. },
  28777. {
  28778. name: "Normal",
  28779. height: math.unit(1500, "meters")
  28780. },
  28781. {
  28782. name: "Mega",
  28783. height: math.unit(12000000, "km"),
  28784. default: true
  28785. },
  28786. {
  28787. name: "Megamacro",
  28788. height: math.unit(10600000, "lightyears")
  28789. },
  28790. {
  28791. name: "Hypermacro",
  28792. height: math.unit(256, "yottameters")
  28793. },
  28794. ]
  28795. ))
  28796. characterMakers.push(() => makeCharacter(
  28797. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  28798. {
  28799. front: {
  28800. height: math.unit(10, "feet"),
  28801. weight: math.unit(750, "lb"),
  28802. name: "Front",
  28803. image: {
  28804. source: "./media/characters/clove/front.svg",
  28805. extra: 1918/1751,
  28806. bottom: 52/1970
  28807. }
  28808. },
  28809. back: {
  28810. height: math.unit(10, "feet"),
  28811. weight: math.unit(750, "lb"),
  28812. name: "Back",
  28813. image: {
  28814. source: "./media/characters/clove/back.svg",
  28815. extra: 1912/1747,
  28816. bottom: 50/1962
  28817. }
  28818. },
  28819. },
  28820. [
  28821. {
  28822. name: "Normal",
  28823. height: math.unit(10, "feet"),
  28824. default: true
  28825. },
  28826. ]
  28827. ))
  28828. characterMakers.push(() => makeCharacter(
  28829. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  28830. {
  28831. front: {
  28832. height: math.unit(4, "feet"),
  28833. weight: math.unit(50, "lb"),
  28834. name: "Front",
  28835. image: {
  28836. source: "./media/characters/alex-rabbit/front.svg",
  28837. extra: 507 / 458,
  28838. bottom: 18.5 / 527
  28839. }
  28840. },
  28841. back: {
  28842. height: math.unit(4, "feet"),
  28843. weight: math.unit(50, "lb"),
  28844. name: "Back",
  28845. image: {
  28846. source: "./media/characters/alex-rabbit/back.svg",
  28847. extra: 502 / 460,
  28848. bottom: 18.9 / 521
  28849. }
  28850. },
  28851. },
  28852. [
  28853. {
  28854. name: "Normal",
  28855. height: math.unit(4, "feet"),
  28856. default: true
  28857. },
  28858. ]
  28859. ))
  28860. characterMakers.push(() => makeCharacter(
  28861. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  28862. {
  28863. front: {
  28864. height: math.unit(1 + 3 / 12, "feet"),
  28865. weight: math.unit(80, "lb"),
  28866. name: "Front",
  28867. image: {
  28868. source: "./media/characters/zander-rose/front.svg",
  28869. extra: 916 / 797,
  28870. bottom: 17 / 933
  28871. }
  28872. },
  28873. back: {
  28874. height: math.unit(1 + 3 / 12, "feet"),
  28875. weight: math.unit(80, "lb"),
  28876. name: "Back",
  28877. image: {
  28878. source: "./media/characters/zander-rose/back.svg",
  28879. extra: 903 / 779,
  28880. bottom: 31 / 934
  28881. }
  28882. },
  28883. },
  28884. [
  28885. {
  28886. name: "Normal",
  28887. height: math.unit(1 + 3 / 12, "feet"),
  28888. default: true
  28889. },
  28890. ]
  28891. ))
  28892. characterMakers.push(() => makeCharacter(
  28893. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  28894. {
  28895. anthro: {
  28896. height: math.unit(6, "feet"),
  28897. weight: math.unit(150, "lb"),
  28898. name: "Anthro",
  28899. image: {
  28900. source: "./media/characters/razz/anthro.svg",
  28901. extra: 1437 / 1343,
  28902. bottom: 48 / 1485
  28903. }
  28904. },
  28905. feral: {
  28906. height: math.unit(6, "feet"),
  28907. weight: math.unit(150, "lb"),
  28908. name: "Feral",
  28909. image: {
  28910. source: "./media/characters/razz/feral.svg",
  28911. extra: 2569 / 1385,
  28912. bottom: 95 / 2664
  28913. }
  28914. },
  28915. },
  28916. [
  28917. {
  28918. name: "Normal",
  28919. height: math.unit(6, "feet"),
  28920. default: true
  28921. },
  28922. ]
  28923. ))
  28924. characterMakers.push(() => makeCharacter(
  28925. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  28926. {
  28927. front: {
  28928. height: math.unit(9 + 4 / 12, "feet"),
  28929. weight: math.unit(500, "lb"),
  28930. name: "Front",
  28931. image: {
  28932. source: "./media/characters/morrigan/front.svg",
  28933. extra: 2707 / 2579,
  28934. bottom: 156 / 2863
  28935. }
  28936. },
  28937. },
  28938. [
  28939. {
  28940. name: "Normal",
  28941. height: math.unit(9 + 4 / 12, "feet"),
  28942. default: true
  28943. },
  28944. ]
  28945. ))
  28946. characterMakers.push(() => makeCharacter(
  28947. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  28948. {
  28949. front: {
  28950. height: math.unit(5, "stories"),
  28951. weight: math.unit(4000, "lb"),
  28952. name: "Front",
  28953. image: {
  28954. source: "./media/characters/jenene/front.svg",
  28955. extra: 1780 / 1710,
  28956. bottom: 57 / 1837
  28957. }
  28958. },
  28959. },
  28960. [
  28961. {
  28962. name: "Normal",
  28963. height: math.unit(5, "stories"),
  28964. default: true
  28965. },
  28966. ]
  28967. ))
  28968. characterMakers.push(() => makeCharacter(
  28969. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  28970. {
  28971. taurSfw: {
  28972. height: math.unit(10, "meters"),
  28973. weight: math.unit(17500, "kg"),
  28974. name: "Taur",
  28975. image: {
  28976. source: "./media/characters/faey/taur-sfw.svg",
  28977. extra: 1200 / 968,
  28978. bottom: 41 / 1241
  28979. }
  28980. },
  28981. chestmaw: {
  28982. height: math.unit(2.01, "meters"),
  28983. name: "Chestmaw",
  28984. image: {
  28985. source: "./media/characters/faey/chestmaw.svg"
  28986. }
  28987. },
  28988. foot: {
  28989. height: math.unit(2.43, "meters"),
  28990. name: "Foot",
  28991. image: {
  28992. source: "./media/characters/faey/foot.svg"
  28993. }
  28994. },
  28995. jaws: {
  28996. height: math.unit(1.66, "meters"),
  28997. name: "Jaws",
  28998. image: {
  28999. source: "./media/characters/faey/jaws.svg"
  29000. }
  29001. },
  29002. tongues: {
  29003. height: math.unit(2.01, "meters"),
  29004. name: "Tongues",
  29005. image: {
  29006. source: "./media/characters/faey/tongues.svg"
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Small",
  29013. height: math.unit(10, "meters"),
  29014. default: true
  29015. },
  29016. {
  29017. name: "Big",
  29018. height: math.unit(500000, "km")
  29019. },
  29020. ]
  29021. ))
  29022. characterMakers.push(() => makeCharacter(
  29023. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  29024. {
  29025. front: {
  29026. height: math.unit(7, "feet"),
  29027. weight: math.unit(275, "lb"),
  29028. name: "Front",
  29029. image: {
  29030. source: "./media/characters/roku/front.svg",
  29031. extra: 903 / 878,
  29032. bottom: 37 / 940
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Normal",
  29039. height: math.unit(7, "feet"),
  29040. default: true
  29041. },
  29042. {
  29043. name: "Macro",
  29044. height: math.unit(500, "feet")
  29045. },
  29046. {
  29047. name: "Megamacro",
  29048. height: math.unit(200, "miles")
  29049. },
  29050. ]
  29051. ))
  29052. characterMakers.push(() => makeCharacter(
  29053. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  29054. {
  29055. front: {
  29056. height: math.unit(6 + 2 / 12, "feet"),
  29057. weight: math.unit(150, "lb"),
  29058. name: "Front",
  29059. image: {
  29060. source: "./media/characters/lira/front.svg",
  29061. extra: 1727 / 1605,
  29062. bottom: 26 / 1753
  29063. }
  29064. },
  29065. back: {
  29066. height: math.unit(6 + 2 / 12, "feet"),
  29067. weight: math.unit(150, "lb"),
  29068. name: "Back",
  29069. image: {
  29070. source: "./media/characters/lira/back.svg",
  29071. extra: 1713/1621,
  29072. bottom: 20/1733
  29073. }
  29074. },
  29075. hand: {
  29076. height: math.unit(0.75, "feet"),
  29077. name: "Hand",
  29078. image: {
  29079. source: "./media/characters/lira/hand.svg"
  29080. }
  29081. },
  29082. maw: {
  29083. height: math.unit(0.65, "feet"),
  29084. name: "Maw",
  29085. image: {
  29086. source: "./media/characters/lira/maw.svg"
  29087. }
  29088. },
  29089. pawDigi: {
  29090. height: math.unit(1.6, "feet"),
  29091. name: "Paw Digi",
  29092. image: {
  29093. source: "./media/characters/lira/paw-digi.svg"
  29094. }
  29095. },
  29096. pawPlanti: {
  29097. height: math.unit(1.4, "feet"),
  29098. name: "Paw Planti",
  29099. image: {
  29100. source: "./media/characters/lira/paw-planti.svg"
  29101. }
  29102. },
  29103. },
  29104. [
  29105. {
  29106. name: "Normal",
  29107. height: math.unit(6 + 2 / 12, "feet"),
  29108. default: true
  29109. },
  29110. {
  29111. name: "Macro",
  29112. height: math.unit(100, "feet")
  29113. },
  29114. {
  29115. name: "Macro²",
  29116. height: math.unit(1600, "feet")
  29117. },
  29118. {
  29119. name: "Planetary",
  29120. height: math.unit(20, "earths")
  29121. },
  29122. ]
  29123. ))
  29124. characterMakers.push(() => makeCharacter(
  29125. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  29126. {
  29127. front: {
  29128. height: math.unit(6, "feet"),
  29129. weight: math.unit(150, "lb"),
  29130. name: "Front",
  29131. image: {
  29132. source: "./media/characters/hadjet/front.svg",
  29133. extra: 1480 / 1346,
  29134. bottom: 26 / 1506
  29135. }
  29136. },
  29137. frontNsfw: {
  29138. height: math.unit(6, "feet"),
  29139. weight: math.unit(150, "lb"),
  29140. name: "Front (NSFW)",
  29141. image: {
  29142. source: "./media/characters/hadjet/front-nsfw.svg",
  29143. extra: 1440 / 1358,
  29144. bottom: 52 / 1492
  29145. }
  29146. },
  29147. },
  29148. [
  29149. {
  29150. name: "Macro",
  29151. height: math.unit(10, "stories"),
  29152. default: true
  29153. },
  29154. {
  29155. name: "Megamacro",
  29156. height: math.unit(1.5, "miles")
  29157. },
  29158. {
  29159. name: "Megamacro+",
  29160. height: math.unit(5, "miles")
  29161. },
  29162. ]
  29163. ))
  29164. characterMakers.push(() => makeCharacter(
  29165. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  29166. {
  29167. side: {
  29168. height: math.unit(106, "feet"),
  29169. weight: math.unit(500, "tonnes"),
  29170. name: "Side",
  29171. image: {
  29172. source: "./media/characters/kodran/side.svg",
  29173. extra: 553 / 480,
  29174. bottom: 33 / 586
  29175. }
  29176. },
  29177. front: {
  29178. height: math.unit(132, "feet"),
  29179. weight: math.unit(500, "tonnes"),
  29180. name: "Front",
  29181. image: {
  29182. source: "./media/characters/kodran/front.svg",
  29183. extra: 667 / 643,
  29184. bottom: 42 / 709
  29185. }
  29186. },
  29187. flying: {
  29188. height: math.unit(350, "feet"),
  29189. weight: math.unit(500, "tonnes"),
  29190. name: "Flying",
  29191. image: {
  29192. source: "./media/characters/kodran/flying.svg"
  29193. }
  29194. },
  29195. foot: {
  29196. height: math.unit(33, "feet"),
  29197. name: "Foot",
  29198. image: {
  29199. source: "./media/characters/kodran/foot.svg"
  29200. }
  29201. },
  29202. footFront: {
  29203. height: math.unit(19, "feet"),
  29204. name: "Foot (Front)",
  29205. image: {
  29206. source: "./media/characters/kodran/foot-front.svg",
  29207. extra: 261 / 261,
  29208. bottom: 91 / 352
  29209. }
  29210. },
  29211. headFront: {
  29212. height: math.unit(53, "feet"),
  29213. name: "Head (Front)",
  29214. image: {
  29215. source: "./media/characters/kodran/head-front.svg"
  29216. }
  29217. },
  29218. headSide: {
  29219. height: math.unit(65, "feet"),
  29220. name: "Head (Side)",
  29221. image: {
  29222. source: "./media/characters/kodran/head-side.svg"
  29223. }
  29224. },
  29225. throat: {
  29226. height: math.unit(79, "feet"),
  29227. name: "Throat",
  29228. image: {
  29229. source: "./media/characters/kodran/throat.svg"
  29230. }
  29231. },
  29232. },
  29233. [
  29234. {
  29235. name: "Large",
  29236. height: math.unit(106, "feet"),
  29237. default: true
  29238. },
  29239. ]
  29240. ))
  29241. characterMakers.push(() => makeCharacter(
  29242. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  29243. {
  29244. side: {
  29245. height: math.unit(11, "feet"),
  29246. weight: math.unit(150, "lb"),
  29247. name: "Side",
  29248. image: {
  29249. source: "./media/characters/pyxaron/side.svg",
  29250. extra: 305 / 195,
  29251. bottom: 17 / 322
  29252. }
  29253. },
  29254. },
  29255. [
  29256. {
  29257. name: "Normal",
  29258. height: math.unit(11, "feet"),
  29259. default: true
  29260. },
  29261. ]
  29262. ))
  29263. characterMakers.push(() => makeCharacter(
  29264. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  29265. {
  29266. front: {
  29267. height: math.unit(6, "feet"),
  29268. weight: math.unit(150, "lb"),
  29269. name: "Front",
  29270. image: {
  29271. source: "./media/characters/meep/front.svg",
  29272. extra: 88 / 80,
  29273. bottom: 6 / 94
  29274. }
  29275. },
  29276. },
  29277. [
  29278. {
  29279. name: "Fun Sized",
  29280. height: math.unit(2, "inches"),
  29281. default: true
  29282. },
  29283. {
  29284. name: "Friend Sized",
  29285. height: math.unit(8, "inches")
  29286. },
  29287. ]
  29288. ))
  29289. characterMakers.push(() => makeCharacter(
  29290. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  29291. {
  29292. front: {
  29293. height: math.unit(15, "feet"),
  29294. weight: math.unit(2500, "lb"),
  29295. name: "Front",
  29296. image: {
  29297. source: "./media/characters/holly-rabbit/front.svg",
  29298. extra: 1433 / 1233,
  29299. bottom: 125 / 1558
  29300. }
  29301. },
  29302. dick: {
  29303. height: math.unit(4.6, "feet"),
  29304. name: "Dick",
  29305. image: {
  29306. source: "./media/characters/holly-rabbit/dick.svg"
  29307. }
  29308. },
  29309. },
  29310. [
  29311. {
  29312. name: "Normal",
  29313. height: math.unit(15, "feet"),
  29314. default: true
  29315. },
  29316. {
  29317. name: "Macro",
  29318. height: math.unit(250, "feet")
  29319. },
  29320. {
  29321. name: "Macro+",
  29322. height: math.unit(2500, "feet")
  29323. },
  29324. ]
  29325. ))
  29326. characterMakers.push(() => makeCharacter(
  29327. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  29328. {
  29329. front: {
  29330. height: math.unit(3.02, "meters"),
  29331. weight: math.unit(500, "kg"),
  29332. name: "Front",
  29333. image: {
  29334. source: "./media/characters/drena/front.svg",
  29335. extra: 282 / 243,
  29336. bottom: 8 / 290
  29337. }
  29338. },
  29339. side: {
  29340. height: math.unit(3.02, "meters"),
  29341. weight: math.unit(500, "kg"),
  29342. name: "Side",
  29343. image: {
  29344. source: "./media/characters/drena/side.svg",
  29345. extra: 280 / 245,
  29346. bottom: 10 / 290
  29347. }
  29348. },
  29349. back: {
  29350. height: math.unit(3.02, "meters"),
  29351. weight: math.unit(500, "kg"),
  29352. name: "Back",
  29353. image: {
  29354. source: "./media/characters/drena/back.svg",
  29355. extra: 278 / 243,
  29356. bottom: 2 / 280
  29357. }
  29358. },
  29359. foot: {
  29360. height: math.unit(0.75, "meters"),
  29361. name: "Foot",
  29362. image: {
  29363. source: "./media/characters/drena/foot.svg"
  29364. }
  29365. },
  29366. maw: {
  29367. height: math.unit(0.82, "meters"),
  29368. name: "Maw",
  29369. image: {
  29370. source: "./media/characters/drena/maw.svg"
  29371. }
  29372. },
  29373. eating: {
  29374. height: math.unit(0.75, "meters"),
  29375. name: "Eating",
  29376. image: {
  29377. source: "./media/characters/drena/eating.svg"
  29378. }
  29379. },
  29380. rump: {
  29381. height: math.unit(0.93, "meters"),
  29382. name: "Rump",
  29383. image: {
  29384. source: "./media/characters/drena/rump.svg"
  29385. }
  29386. },
  29387. },
  29388. [
  29389. {
  29390. name: "Normal",
  29391. height: math.unit(3.02, "meters"),
  29392. default: true
  29393. },
  29394. ]
  29395. ))
  29396. characterMakers.push(() => makeCharacter(
  29397. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  29398. {
  29399. front: {
  29400. height: math.unit(6 + 4 / 12, "feet"),
  29401. weight: math.unit(250, "lb"),
  29402. name: "Front",
  29403. image: {
  29404. source: "./media/characters/remmyzilla/front.svg",
  29405. extra: 4033 / 3588,
  29406. bottom: 123 / 4156
  29407. }
  29408. },
  29409. back: {
  29410. height: math.unit(6 + 4 / 12, "feet"),
  29411. weight: math.unit(250, "lb"),
  29412. name: "Back",
  29413. image: {
  29414. source: "./media/characters/remmyzilla/back.svg",
  29415. extra: 2687 / 2555,
  29416. bottom: 48 / 2735
  29417. }
  29418. },
  29419. paw: {
  29420. height: math.unit(1.73, "feet"),
  29421. name: "Paw",
  29422. image: {
  29423. source: "./media/characters/remmyzilla/paw.svg"
  29424. }
  29425. },
  29426. maw: {
  29427. height: math.unit(1.73, "feet"),
  29428. name: "Maw",
  29429. image: {
  29430. source: "./media/characters/remmyzilla/maw.svg"
  29431. }
  29432. },
  29433. },
  29434. [
  29435. {
  29436. name: "Normal",
  29437. height: math.unit(6 + 4 / 12, "feet")
  29438. },
  29439. {
  29440. name: "Minimacro",
  29441. height: math.unit(12 + 8 / 12, "feet")
  29442. },
  29443. {
  29444. name: "Normal",
  29445. height: math.unit(640, "feet"),
  29446. default: true
  29447. },
  29448. {
  29449. name: "Megamacro",
  29450. height: math.unit(6400, "feet")
  29451. },
  29452. {
  29453. name: "Gigamacro",
  29454. height: math.unit(64000, "miles")
  29455. },
  29456. ]
  29457. ))
  29458. characterMakers.push(() => makeCharacter(
  29459. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  29460. {
  29461. front: {
  29462. height: math.unit(2.5, "meters"),
  29463. weight: math.unit(300, "lb"),
  29464. name: "Front",
  29465. image: {
  29466. source: "./media/characters/lawrence/front.svg",
  29467. extra: 357 / 335,
  29468. bottom: 30 / 387
  29469. }
  29470. },
  29471. back: {
  29472. height: math.unit(2.5, "meters"),
  29473. weight: math.unit(300, "lb"),
  29474. name: "Back",
  29475. image: {
  29476. source: "./media/characters/lawrence/back.svg",
  29477. extra: 357 / 338,
  29478. bottom: 16 / 373
  29479. }
  29480. },
  29481. head: {
  29482. height: math.unit(0.9, "meter"),
  29483. name: "Head",
  29484. image: {
  29485. source: "./media/characters/lawrence/head.svg"
  29486. }
  29487. },
  29488. maw: {
  29489. height: math.unit(0.7, "meter"),
  29490. name: "Maw",
  29491. image: {
  29492. source: "./media/characters/lawrence/maw.svg"
  29493. }
  29494. },
  29495. footBottom: {
  29496. height: math.unit(0.5, "meter"),
  29497. name: "Foot (Bottom)",
  29498. image: {
  29499. source: "./media/characters/lawrence/foot-bottom.svg"
  29500. }
  29501. },
  29502. footTop: {
  29503. height: math.unit(0.5, "meter"),
  29504. name: "Foot (Top)",
  29505. image: {
  29506. source: "./media/characters/lawrence/foot-top.svg"
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Normal",
  29513. height: math.unit(2.5, "meters"),
  29514. default: true
  29515. },
  29516. {
  29517. name: "Macro",
  29518. height: math.unit(95, "meters")
  29519. },
  29520. {
  29521. name: "Megamacro",
  29522. height: math.unit(150, "km")
  29523. },
  29524. ]
  29525. ))
  29526. characterMakers.push(() => makeCharacter(
  29527. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  29528. {
  29529. front: {
  29530. height: math.unit(4.2, "meters"),
  29531. name: "Front",
  29532. image: {
  29533. source: "./media/characters/sydney/front.svg",
  29534. extra: 1323 / 1277,
  29535. bottom: 111 / 1434
  29536. }
  29537. },
  29538. },
  29539. [
  29540. {
  29541. name: "Normal",
  29542. height: math.unit(4.2, "meters"),
  29543. default: true
  29544. },
  29545. ]
  29546. ))
  29547. characterMakers.push(() => makeCharacter(
  29548. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  29549. {
  29550. back: {
  29551. height: math.unit(201, "feet"),
  29552. name: "Back",
  29553. image: {
  29554. source: "./media/characters/jessica/back.svg",
  29555. extra: 273 / 259,
  29556. bottom: 7 / 280
  29557. }
  29558. },
  29559. },
  29560. [
  29561. {
  29562. name: "Normal",
  29563. height: math.unit(201, "feet"),
  29564. default: true
  29565. },
  29566. {
  29567. name: "Megamacro",
  29568. height: math.unit(8, "miles")
  29569. },
  29570. ]
  29571. ))
  29572. characterMakers.push(() => makeCharacter(
  29573. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  29574. {
  29575. side: {
  29576. height: math.unit(5.6, "m"),
  29577. weight: math.unit(8000, "kg"),
  29578. name: "Side",
  29579. image: {
  29580. source: "./media/characters/victoria/side.svg",
  29581. extra: 1542/1229,
  29582. bottom: 124/1666
  29583. }
  29584. },
  29585. maw: {
  29586. height: math.unit(7.14, "feet"),
  29587. name: "Maw",
  29588. image: {
  29589. source: "./media/characters/victoria/maw.svg"
  29590. }
  29591. },
  29592. },
  29593. [
  29594. {
  29595. name: "Normal",
  29596. height: math.unit(5.6, "m"),
  29597. default: true
  29598. },
  29599. ]
  29600. ))
  29601. characterMakers.push(() => makeCharacter(
  29602. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  29603. {
  29604. front: {
  29605. height: math.unit(5 + 6 / 12, "feet"),
  29606. name: "Front",
  29607. image: {
  29608. source: "./media/characters/cat/front.svg",
  29609. extra: 1449/1295,
  29610. bottom: 34/1483
  29611. },
  29612. form: "cat",
  29613. default: true
  29614. },
  29615. back: {
  29616. height: math.unit(5 + 6 / 12, "feet"),
  29617. name: "Back",
  29618. image: {
  29619. source: "./media/characters/cat/back.svg",
  29620. extra: 1466/1301,
  29621. bottom: 19/1485
  29622. },
  29623. form: "cat"
  29624. },
  29625. taur: {
  29626. height: math.unit(7, "feet"),
  29627. name: "Taur",
  29628. image: {
  29629. source: "./media/characters/cat/taur.svg",
  29630. extra: 1389/1233,
  29631. bottom: 83/1472
  29632. },
  29633. form: "taur",
  29634. default: true
  29635. },
  29636. lucarioFront: {
  29637. height: math.unit(4, "feet"),
  29638. name: "Lucario (Front)",
  29639. image: {
  29640. source: "./media/characters/cat/lucario-front.svg",
  29641. extra: 1149/1019,
  29642. bottom: 84/1233
  29643. },
  29644. form: "lucario",
  29645. default: true
  29646. },
  29647. lucarioBack: {
  29648. height: math.unit(4, "feet"),
  29649. name: "Lucario (Back)",
  29650. image: {
  29651. source: "./media/characters/cat/lucario-back.svg",
  29652. extra: 1190/1059,
  29653. bottom: 33/1223
  29654. },
  29655. form: "lucario"
  29656. },
  29657. megaLucario: {
  29658. height: math.unit(4, "feet"),
  29659. name: "Mega Lucario",
  29660. image: {
  29661. source: "./media/characters/cat/mega-lucario.svg",
  29662. extra: 1515 / 1319,
  29663. bottom: 63 / 1578
  29664. },
  29665. form: "lucario"
  29666. },
  29667. nickit: {
  29668. height: math.unit(2, "feet"),
  29669. name: "Nickit",
  29670. image: {
  29671. source: "./media/characters/cat/nickit.svg",
  29672. extra: 1980 / 1585,
  29673. bottom: 102 / 2082
  29674. },
  29675. form: "nickit",
  29676. default: true
  29677. },
  29678. lopunnyFront: {
  29679. height: math.unit(5, "feet"),
  29680. name: "Lopunny (Front)",
  29681. image: {
  29682. source: "./media/characters/cat/lopunny-front.svg",
  29683. extra: 1782 / 1469,
  29684. bottom: 38 / 1820
  29685. },
  29686. form: "lopunny",
  29687. default: true
  29688. },
  29689. lopunnyBack: {
  29690. height: math.unit(5, "feet"),
  29691. name: "Lopunny (Back)",
  29692. image: {
  29693. source: "./media/characters/cat/lopunny-back.svg",
  29694. extra: 1660 / 1490,
  29695. bottom: 25 / 1685
  29696. },
  29697. form: "lopunny"
  29698. },
  29699. },
  29700. [
  29701. {
  29702. name: "Really small",
  29703. height: math.unit(1, "nm")
  29704. },
  29705. {
  29706. name: "Micro",
  29707. height: math.unit(5, "inches")
  29708. },
  29709. {
  29710. name: "Normal",
  29711. height: math.unit(5 + 6 / 12, "feet"),
  29712. default: true
  29713. },
  29714. {
  29715. name: "Macro",
  29716. height: math.unit(50, "feet")
  29717. },
  29718. {
  29719. name: "Macro+",
  29720. height: math.unit(150, "feet")
  29721. },
  29722. {
  29723. name: "Megamacro",
  29724. height: math.unit(100, "miles")
  29725. },
  29726. ]
  29727. ))
  29728. characterMakers.push(() => makeCharacter(
  29729. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  29730. {
  29731. front: {
  29732. height: math.unit(63.4, "meters"),
  29733. weight: math.unit(3.28349e+6, "kilograms"),
  29734. name: "Front",
  29735. image: {
  29736. source: "./media/characters/kirina-violet/front.svg",
  29737. extra: 2812 / 2725,
  29738. bottom: 0 / 2812
  29739. }
  29740. },
  29741. back: {
  29742. height: math.unit(63.4, "meters"),
  29743. weight: math.unit(3.28349e+6, "kilograms"),
  29744. name: "Back",
  29745. image: {
  29746. source: "./media/characters/kirina-violet/back.svg",
  29747. extra: 2812 / 2725,
  29748. bottom: 0 / 2812
  29749. }
  29750. },
  29751. mouth: {
  29752. height: math.unit(4.35, "meters"),
  29753. name: "Mouth",
  29754. image: {
  29755. source: "./media/characters/kirina-violet/mouth.svg"
  29756. }
  29757. },
  29758. paw: {
  29759. height: math.unit(5.6, "meters"),
  29760. name: "Paw",
  29761. image: {
  29762. source: "./media/characters/kirina-violet/paw.svg"
  29763. }
  29764. },
  29765. tail: {
  29766. height: math.unit(18, "meters"),
  29767. name: "Tail",
  29768. image: {
  29769. source: "./media/characters/kirina-violet/tail.svg"
  29770. }
  29771. },
  29772. },
  29773. [
  29774. {
  29775. name: "Macro",
  29776. height: math.unit(63.4, "meters"),
  29777. default: true
  29778. },
  29779. ]
  29780. ))
  29781. characterMakers.push(() => makeCharacter(
  29782. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  29783. {
  29784. front: {
  29785. height: math.unit(75, "feet"),
  29786. name: "Front",
  29787. image: {
  29788. source: "./media/characters/cat-gigachu/front.svg",
  29789. extra: 1239/1027,
  29790. bottom: 32/1271
  29791. }
  29792. },
  29793. back: {
  29794. height: math.unit(75, "feet"),
  29795. name: "Back",
  29796. image: {
  29797. source: "./media/characters/cat-gigachu/back.svg",
  29798. extra: 1229/1030,
  29799. bottom: 9/1238
  29800. }
  29801. },
  29802. },
  29803. [
  29804. {
  29805. name: "Dynamax",
  29806. height: math.unit(75, "feet"),
  29807. default: true
  29808. },
  29809. ]
  29810. ))
  29811. characterMakers.push(() => makeCharacter(
  29812. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  29813. {
  29814. front: {
  29815. height: math.unit(6, "feet"),
  29816. weight: math.unit(150, "lb"),
  29817. name: "Front",
  29818. image: {
  29819. source: "./media/characters/sfaiyan/front.svg",
  29820. extra: 999 / 978,
  29821. bottom: 5 / 1004
  29822. }
  29823. },
  29824. },
  29825. [
  29826. {
  29827. name: "Normal",
  29828. height: math.unit(1.82, "meters")
  29829. },
  29830. {
  29831. name: "Giant",
  29832. height: math.unit(2.27, "km"),
  29833. default: true
  29834. },
  29835. ]
  29836. ))
  29837. characterMakers.push(() => makeCharacter(
  29838. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  29839. {
  29840. front: {
  29841. height: math.unit(179, "cm"),
  29842. weight: math.unit(100, "kg"),
  29843. name: "Front",
  29844. image: {
  29845. source: "./media/characters/raunehkeli/front.svg",
  29846. extra: 1934 / 1926,
  29847. bottom: 0 / 1934
  29848. }
  29849. },
  29850. },
  29851. [
  29852. {
  29853. name: "Normal",
  29854. height: math.unit(179, "cm")
  29855. },
  29856. {
  29857. name: "Maximum",
  29858. height: math.unit(575, "meters"),
  29859. default: true
  29860. },
  29861. ]
  29862. ))
  29863. characterMakers.push(() => makeCharacter(
  29864. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  29865. {
  29866. front: {
  29867. height: math.unit(6, "feet"),
  29868. weight: math.unit(150, "lb"),
  29869. name: "Front",
  29870. image: {
  29871. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  29872. extra: 2625 / 2518,
  29873. bottom: 60 / 2685
  29874. }
  29875. },
  29876. },
  29877. [
  29878. {
  29879. name: "Normal",
  29880. height: math.unit(6 + 2 / 12, "feet")
  29881. },
  29882. {
  29883. name: "Macro",
  29884. height: math.unit(1180, "feet"),
  29885. default: true
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  29891. {
  29892. front: {
  29893. height: math.unit(5 + 6 / 12, "feet"),
  29894. weight: math.unit(108, "lb"),
  29895. name: "Front",
  29896. image: {
  29897. source: "./media/characters/lilith-zott/front.svg",
  29898. extra: 2510 / 2238,
  29899. bottom: 100 / 2610
  29900. }
  29901. },
  29902. frontDressed: {
  29903. height: math.unit(5 + 6 / 12, "feet"),
  29904. weight: math.unit(108, "lb"),
  29905. name: "Front (Dressed)",
  29906. image: {
  29907. source: "./media/characters/lilith-zott/front-dressed.svg",
  29908. extra: 2510 / 2238,
  29909. bottom: 100 / 2610
  29910. }
  29911. },
  29912. },
  29913. [
  29914. {
  29915. name: "Normal",
  29916. height: math.unit(5 + 6 / 12, "feet")
  29917. },
  29918. {
  29919. name: "Macro",
  29920. height: math.unit(1030, "feet"),
  29921. default: true
  29922. },
  29923. ]
  29924. ))
  29925. characterMakers.push(() => makeCharacter(
  29926. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  29927. {
  29928. front: {
  29929. height: math.unit(6, "feet"),
  29930. weight: math.unit(150, "lb"),
  29931. name: "Front",
  29932. image: {
  29933. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  29934. extra: 2567 / 2435,
  29935. bottom: 39 / 2606
  29936. }
  29937. },
  29938. frontSuper: {
  29939. height: math.unit(6, "feet"),
  29940. name: "Front (Super)",
  29941. image: {
  29942. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  29943. extra: 2567 / 2435,
  29944. bottom: 39 / 2606
  29945. }
  29946. },
  29947. },
  29948. [
  29949. {
  29950. name: "Normal",
  29951. height: math.unit(5 + 10 / 12, "feet")
  29952. },
  29953. {
  29954. name: "Macro",
  29955. height: math.unit(1100, "feet"),
  29956. default: true
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  29962. {
  29963. front: {
  29964. height: math.unit(100, "miles"),
  29965. name: "Front",
  29966. image: {
  29967. source: "./media/characters/sona/front.svg",
  29968. extra: 2433 / 2201,
  29969. bottom: 53 / 2486
  29970. }
  29971. },
  29972. foot: {
  29973. height: math.unit(16.1, "miles"),
  29974. name: "Foot",
  29975. image: {
  29976. source: "./media/characters/sona/foot.svg"
  29977. }
  29978. },
  29979. },
  29980. [
  29981. {
  29982. name: "Macro",
  29983. height: math.unit(100, "miles"),
  29984. default: true
  29985. },
  29986. ]
  29987. ))
  29988. characterMakers.push(() => makeCharacter(
  29989. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  29990. {
  29991. front: {
  29992. height: math.unit(6, "feet"),
  29993. weight: math.unit(150, "lb"),
  29994. name: "Front",
  29995. image: {
  29996. source: "./media/characters/bailey/front.svg",
  29997. extra: 1778 / 1724,
  29998. bottom: 30 / 1808
  29999. }
  30000. },
  30001. },
  30002. [
  30003. {
  30004. name: "Micro",
  30005. height: math.unit(4, "inches")
  30006. },
  30007. {
  30008. name: "Normal",
  30009. height: math.unit(5 + 5 / 12, "feet"),
  30010. default: true
  30011. },
  30012. {
  30013. name: "Macro",
  30014. height: math.unit(250, "feet")
  30015. },
  30016. {
  30017. name: "Megamacro",
  30018. height: math.unit(100, "miles")
  30019. },
  30020. ]
  30021. ))
  30022. characterMakers.push(() => makeCharacter(
  30023. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  30024. {
  30025. front: {
  30026. height: math.unit(5 + 2 / 12, "feet"),
  30027. weight: math.unit(120, "lb"),
  30028. name: "Front",
  30029. image: {
  30030. source: "./media/characters/snaps/front.svg",
  30031. extra: 2370 / 2177,
  30032. bottom: 48 / 2418
  30033. }
  30034. },
  30035. back: {
  30036. height: math.unit(5 + 2 / 12, "feet"),
  30037. weight: math.unit(120, "lb"),
  30038. name: "Back",
  30039. image: {
  30040. source: "./media/characters/snaps/back.svg",
  30041. extra: 2408 / 2258,
  30042. bottom: 15 / 2423
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Micro",
  30049. height: math.unit(9, "inches")
  30050. },
  30051. {
  30052. name: "Normal",
  30053. height: math.unit(5 + 2 / 12, "feet"),
  30054. default: true
  30055. },
  30056. {
  30057. name: "Mini Macro",
  30058. height: math.unit(10, "feet")
  30059. },
  30060. ]
  30061. ))
  30062. characterMakers.push(() => makeCharacter(
  30063. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  30064. {
  30065. front: {
  30066. height: math.unit(1.8, "meters"),
  30067. weight: math.unit(85, "kg"),
  30068. name: "Front",
  30069. image: {
  30070. source: "./media/characters/azteck/front.svg",
  30071. extra: 2815 / 2625,
  30072. bottom: 89 / 2904
  30073. }
  30074. },
  30075. back: {
  30076. height: math.unit(1.8, "meters"),
  30077. weight: math.unit(85, "kg"),
  30078. name: "Back",
  30079. image: {
  30080. source: "./media/characters/azteck/back.svg",
  30081. extra: 2856 / 2648,
  30082. bottom: 85 / 2941
  30083. }
  30084. },
  30085. frontDressed: {
  30086. height: math.unit(1.8, "meters"),
  30087. weight: math.unit(85, "kg"),
  30088. name: "Front (Dressed)",
  30089. image: {
  30090. source: "./media/characters/azteck/front-dressed.svg",
  30091. extra: 2147 / 2003,
  30092. bottom: 68 / 2215
  30093. }
  30094. },
  30095. head: {
  30096. height: math.unit(0.47, "meters"),
  30097. weight: math.unit(85, "kg"),
  30098. name: "Head",
  30099. image: {
  30100. source: "./media/characters/azteck/head.svg"
  30101. }
  30102. },
  30103. },
  30104. [
  30105. {
  30106. name: "Bite sized",
  30107. height: math.unit(16, "cm")
  30108. },
  30109. {
  30110. name: "Normal",
  30111. height: math.unit(1.8, "meters"),
  30112. default: true
  30113. },
  30114. ]
  30115. ))
  30116. characterMakers.push(() => makeCharacter(
  30117. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  30118. {
  30119. front: {
  30120. height: math.unit(6, "feet"),
  30121. weight: math.unit(150, "lb"),
  30122. name: "Front",
  30123. image: {
  30124. source: "./media/characters/pidge/front.svg",
  30125. extra: 620 / 588,
  30126. bottom: 9 / 629
  30127. }
  30128. },
  30129. back: {
  30130. height: math.unit(6, "feet"),
  30131. weight: math.unit(150, "lb"),
  30132. name: "Back",
  30133. image: {
  30134. source: "./media/characters/pidge/back.svg",
  30135. extra: 620 / 588,
  30136. bottom: 9 / 629
  30137. }
  30138. },
  30139. },
  30140. [
  30141. {
  30142. name: "Macro",
  30143. height: math.unit(1, "mile"),
  30144. default: true
  30145. },
  30146. ]
  30147. ))
  30148. characterMakers.push(() => makeCharacter(
  30149. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  30150. {
  30151. front: {
  30152. height: math.unit(6, "feet"),
  30153. weight: math.unit(150, "lb"),
  30154. name: "Front",
  30155. image: {
  30156. source: "./media/characters/en/front.svg",
  30157. extra: 1697 / 1563,
  30158. bottom: 103 / 1800
  30159. }
  30160. },
  30161. back: {
  30162. height: math.unit(6, "feet"),
  30163. weight: math.unit(150, "lb"),
  30164. name: "Back",
  30165. image: {
  30166. source: "./media/characters/en/back.svg",
  30167. extra: 1700 / 1570,
  30168. bottom: 51 / 1751
  30169. }
  30170. },
  30171. frontDressed: {
  30172. height: math.unit(6, "feet"),
  30173. weight: math.unit(150, "lb"),
  30174. name: "Front (Dressed)",
  30175. image: {
  30176. source: "./media/characters/en/front-dressed.svg",
  30177. extra: 1697 / 1563,
  30178. bottom: 103 / 1800
  30179. }
  30180. },
  30181. backDressed: {
  30182. height: math.unit(6, "feet"),
  30183. weight: math.unit(150, "lb"),
  30184. name: "Back (Dressed)",
  30185. image: {
  30186. source: "./media/characters/en/back-dressed.svg",
  30187. extra: 1700 / 1570,
  30188. bottom: 51 / 1751
  30189. }
  30190. },
  30191. },
  30192. [
  30193. {
  30194. name: "Macro",
  30195. height: math.unit(210, "feet"),
  30196. default: true
  30197. },
  30198. ]
  30199. ))
  30200. characterMakers.push(() => makeCharacter(
  30201. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  30202. {
  30203. front: {
  30204. height: math.unit(6, "feet"),
  30205. weight: math.unit(150, "lb"),
  30206. name: "Front",
  30207. image: {
  30208. source: "./media/characters/haze-orris/front.svg",
  30209. extra: 3975 / 3525,
  30210. bottom: 137 / 4112
  30211. }
  30212. },
  30213. },
  30214. [
  30215. {
  30216. name: "Micro",
  30217. height: math.unit(150, "mm"),
  30218. default: true
  30219. },
  30220. ]
  30221. ))
  30222. characterMakers.push(() => makeCharacter(
  30223. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  30224. {
  30225. front: {
  30226. height: math.unit(6, "feet"),
  30227. weight: math.unit(150, "lb"),
  30228. name: "Front",
  30229. image: {
  30230. source: "./media/characters/casselene-yaro/front.svg",
  30231. extra: 4721 / 4541,
  30232. bottom: 82 / 4803
  30233. }
  30234. },
  30235. back: {
  30236. height: math.unit(6, "feet"),
  30237. weight: math.unit(150, "lb"),
  30238. name: "Back",
  30239. image: {
  30240. source: "./media/characters/casselene-yaro/back.svg",
  30241. extra: 4569 / 4377,
  30242. bottom: 69 / 4638
  30243. }
  30244. },
  30245. frontDressed: {
  30246. height: math.unit(6, "feet"),
  30247. weight: math.unit(150, "lb"),
  30248. name: "Front-dressed",
  30249. image: {
  30250. source: "./media/characters/casselene-yaro/front-dressed.svg",
  30251. extra: 4721 / 4541,
  30252. bottom: 82 / 4803
  30253. }
  30254. },
  30255. },
  30256. [
  30257. {
  30258. name: "Macro",
  30259. height: math.unit(190, "feet"),
  30260. default: true
  30261. },
  30262. ]
  30263. ))
  30264. characterMakers.push(() => makeCharacter(
  30265. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  30266. {
  30267. front: {
  30268. height: math.unit(6, "feet"),
  30269. weight: math.unit(150, "lb"),
  30270. name: "Front",
  30271. image: {
  30272. source: "./media/characters/myra-rue-delore/front.svg",
  30273. extra: 1340 / 1308,
  30274. bottom: 67 / 1407
  30275. }
  30276. },
  30277. back: {
  30278. height: math.unit(6, "feet"),
  30279. weight: math.unit(150, "lb"),
  30280. name: "Back",
  30281. image: {
  30282. source: "./media/characters/myra-rue-delore/back.svg",
  30283. extra: 1341 / 1310,
  30284. bottom: 40 / 1381
  30285. }
  30286. },
  30287. frontDressed: {
  30288. height: math.unit(6, "feet"),
  30289. weight: math.unit(150, "lb"),
  30290. name: "Front (Dressed)",
  30291. image: {
  30292. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  30293. extra: 1340 / 1308,
  30294. bottom: 67 / 1407
  30295. }
  30296. },
  30297. },
  30298. [
  30299. {
  30300. name: "Macro",
  30301. height: math.unit(150, "feet"),
  30302. default: true
  30303. },
  30304. ]
  30305. ))
  30306. characterMakers.push(() => makeCharacter(
  30307. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  30308. {
  30309. front: {
  30310. height: math.unit(10, "feet"),
  30311. weight: math.unit(15015, "lb"),
  30312. name: "Front",
  30313. image: {
  30314. source: "./media/characters/fem!plat/front.svg",
  30315. extra: 2799 / 2604,
  30316. bottom: 149 / 2948
  30317. }
  30318. },
  30319. },
  30320. [
  30321. {
  30322. name: "Normal",
  30323. height: math.unit(10, "feet"),
  30324. default: true
  30325. },
  30326. {
  30327. name: "Macro",
  30328. height: math.unit(100, "feet")
  30329. },
  30330. {
  30331. name: "Megamacro",
  30332. height: math.unit(1000, "feet")
  30333. },
  30334. ]
  30335. ))
  30336. characterMakers.push(() => makeCharacter(
  30337. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  30338. {
  30339. front: {
  30340. height: math.unit(15 + 5 / 12, "feet"),
  30341. weight: math.unit(4600, "lb"),
  30342. name: "Front",
  30343. image: {
  30344. source: "./media/characters/neapolitan-ananassa/front.svg",
  30345. extra: 2903 / 2736,
  30346. bottom: 0 / 2903
  30347. }
  30348. },
  30349. side: {
  30350. height: math.unit(15 + 5 / 12, "feet"),
  30351. weight: math.unit(4600, "lb"),
  30352. name: "Side",
  30353. image: {
  30354. source: "./media/characters/neapolitan-ananassa/side.svg",
  30355. extra: 2925 / 2719,
  30356. bottom: 0 / 2925
  30357. }
  30358. },
  30359. back: {
  30360. height: math.unit(15 + 5 / 12, "feet"),
  30361. weight: math.unit(4600, "lb"),
  30362. name: "Back",
  30363. image: {
  30364. source: "./media/characters/neapolitan-ananassa/back.svg",
  30365. extra: 2903 / 2736,
  30366. bottom: 0 / 2903
  30367. }
  30368. },
  30369. },
  30370. [
  30371. {
  30372. name: "Normal",
  30373. height: math.unit(15 + 5 / 12, "feet"),
  30374. default: true
  30375. },
  30376. {
  30377. name: "Post-Millenium",
  30378. height: math.unit(35 + 5 / 12, "feet")
  30379. },
  30380. {
  30381. name: "Post-Era",
  30382. height: math.unit(450 + 5 / 12, "feet")
  30383. },
  30384. ]
  30385. ))
  30386. characterMakers.push(() => makeCharacter(
  30387. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  30388. {
  30389. front: {
  30390. height: math.unit(300, "meters"),
  30391. weight: math.unit(125000, "tonnes"),
  30392. name: "Front",
  30393. image: {
  30394. source: "./media/characters/pazuzu/front.svg",
  30395. extra: 877 / 794,
  30396. bottom: 47 / 924
  30397. }
  30398. },
  30399. },
  30400. [
  30401. {
  30402. name: "Macro",
  30403. height: math.unit(300, "meters"),
  30404. default: true
  30405. },
  30406. ]
  30407. ))
  30408. characterMakers.push(() => makeCharacter(
  30409. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  30410. {
  30411. side: {
  30412. height: math.unit(10 + 7 / 12, "feet"),
  30413. weight: math.unit(2.5, "tons"),
  30414. name: "Side",
  30415. image: {
  30416. source: "./media/characters/aasha/side.svg",
  30417. extra: 1345 / 1245,
  30418. bottom: 111 / 1456
  30419. }
  30420. },
  30421. back: {
  30422. height: math.unit(10 + 7 / 12, "feet"),
  30423. weight: math.unit(2.5, "tons"),
  30424. name: "Back",
  30425. image: {
  30426. source: "./media/characters/aasha/back.svg",
  30427. extra: 1133 / 1057,
  30428. bottom: 257 / 1390
  30429. }
  30430. },
  30431. },
  30432. [
  30433. {
  30434. name: "Normal",
  30435. height: math.unit(10 + 7 / 12, "feet"),
  30436. default: true
  30437. },
  30438. ]
  30439. ))
  30440. characterMakers.push(() => makeCharacter(
  30441. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  30442. {
  30443. front: {
  30444. height: math.unit(6 + 3 / 12, "feet"),
  30445. name: "Front",
  30446. image: {
  30447. source: "./media/characters/nevan/front.svg",
  30448. extra: 704 / 704,
  30449. bottom: 28 / 732
  30450. }
  30451. },
  30452. back: {
  30453. height: math.unit(6 + 3 / 12, "feet"),
  30454. name: "Back",
  30455. image: {
  30456. source: "./media/characters/nevan/back.svg",
  30457. extra: 714 / 714,
  30458. bottom: 21 / 735
  30459. }
  30460. },
  30461. frontFlaccid: {
  30462. height: math.unit(6 + 3 / 12, "feet"),
  30463. name: "Front (Flaccid)",
  30464. image: {
  30465. source: "./media/characters/nevan/front-flaccid.svg",
  30466. extra: 704 / 704,
  30467. bottom: 28 / 732
  30468. }
  30469. },
  30470. frontErect: {
  30471. height: math.unit(6 + 3 / 12, "feet"),
  30472. name: "Front (Erect)",
  30473. image: {
  30474. source: "./media/characters/nevan/front-erect.svg",
  30475. extra: 704 / 704,
  30476. bottom: 28 / 732
  30477. }
  30478. },
  30479. backFlaccid: {
  30480. height: math.unit(6 + 3 / 12, "feet"),
  30481. name: "Back (Flaccid)",
  30482. image: {
  30483. source: "./media/characters/nevan/back-flaccid.svg",
  30484. extra: 714 / 714,
  30485. bottom: 21 / 735
  30486. }
  30487. },
  30488. },
  30489. [
  30490. {
  30491. name: "Normal",
  30492. height: math.unit(6 + 3 / 12, "feet"),
  30493. default: true
  30494. },
  30495. ]
  30496. ))
  30497. characterMakers.push(() => makeCharacter(
  30498. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  30499. {
  30500. front: {
  30501. height: math.unit(4, "feet"),
  30502. name: "Front",
  30503. image: {
  30504. source: "./media/characters/arhan/front.svg",
  30505. extra: 3368 / 3133,
  30506. bottom: 0 / 3368
  30507. }
  30508. },
  30509. side: {
  30510. height: math.unit(4, "feet"),
  30511. name: "Side",
  30512. image: {
  30513. source: "./media/characters/arhan/side.svg",
  30514. extra: 3347 / 3105,
  30515. bottom: 0 / 3347
  30516. }
  30517. },
  30518. tongue: {
  30519. height: math.unit(1.42, "feet"),
  30520. name: "Tongue",
  30521. image: {
  30522. source: "./media/characters/arhan/tongue.svg"
  30523. }
  30524. },
  30525. head: {
  30526. height: math.unit(0.85, "feet"),
  30527. name: "Head",
  30528. image: {
  30529. source: "./media/characters/arhan/head.svg"
  30530. }
  30531. },
  30532. },
  30533. [
  30534. {
  30535. name: "Normal",
  30536. height: math.unit(4, "feet"),
  30537. default: true
  30538. },
  30539. ]
  30540. ))
  30541. characterMakers.push(() => makeCharacter(
  30542. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  30543. {
  30544. front: {
  30545. height: math.unit(5 + 7.5 / 12, "feet"),
  30546. weight: math.unit(120, "lb"),
  30547. name: "Front",
  30548. image: {
  30549. source: "./media/characters/digi-duncan/front.svg",
  30550. extra: 330 / 326,
  30551. bottom: 16 / 346
  30552. }
  30553. },
  30554. side: {
  30555. height: math.unit(5 + 7.5 / 12, "feet"),
  30556. weight: math.unit(120, "lb"),
  30557. name: "Side",
  30558. image: {
  30559. source: "./media/characters/digi-duncan/side.svg",
  30560. extra: 341 / 337,
  30561. bottom: 1 / 342
  30562. }
  30563. },
  30564. back: {
  30565. height: math.unit(5 + 7.5 / 12, "feet"),
  30566. weight: math.unit(120, "lb"),
  30567. name: "Back",
  30568. image: {
  30569. source: "./media/characters/digi-duncan/back.svg",
  30570. extra: 330 / 326,
  30571. bottom: 12 / 342
  30572. }
  30573. },
  30574. },
  30575. [
  30576. {
  30577. name: "Speck",
  30578. height: math.unit(0.25, "mm")
  30579. },
  30580. {
  30581. name: "Micro",
  30582. height: math.unit(5, "mm")
  30583. },
  30584. {
  30585. name: "Tiny",
  30586. height: math.unit(0.5, "inches"),
  30587. default: true
  30588. },
  30589. {
  30590. name: "Human",
  30591. height: math.unit(5 + 7.5 / 12, "feet")
  30592. },
  30593. {
  30594. name: "Minigiant",
  30595. height: math.unit(8 + 5.25, "feet")
  30596. },
  30597. {
  30598. name: "Giant",
  30599. height: math.unit(2000, "feet")
  30600. },
  30601. {
  30602. name: "Mega",
  30603. height: math.unit(371.1, "miles")
  30604. },
  30605. ]
  30606. ))
  30607. characterMakers.push(() => makeCharacter(
  30608. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  30609. {
  30610. front: {
  30611. height: math.unit(2, "meters"),
  30612. weight: math.unit(350, "kg"),
  30613. name: "Front",
  30614. image: {
  30615. source: "./media/characters/jagaz-soulbreaker/front.svg",
  30616. extra: 898 / 838,
  30617. bottom: 9 / 907
  30618. }
  30619. },
  30620. },
  30621. [
  30622. {
  30623. name: "Micro",
  30624. height: math.unit(8, "meters")
  30625. },
  30626. {
  30627. name: "Normal",
  30628. height: math.unit(50, "meters"),
  30629. default: true
  30630. },
  30631. {
  30632. name: "Macro",
  30633. height: math.unit(500, "meters")
  30634. },
  30635. ]
  30636. ))
  30637. characterMakers.push(() => makeCharacter(
  30638. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  30639. {
  30640. front: {
  30641. height: math.unit(6 + 6 / 12, "feet"),
  30642. name: "Front",
  30643. image: {
  30644. source: "./media/characters/khardesh/front.svg",
  30645. extra: 1788/1596,
  30646. bottom: 66/1854
  30647. }
  30648. },
  30649. back: {
  30650. height: math.unit(6 + 6 / 12, "feet"),
  30651. name: "Back",
  30652. image: {
  30653. source: "./media/characters/khardesh/back.svg",
  30654. extra: 1781/1584,
  30655. bottom: 68/1849
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Normal",
  30662. height: math.unit(6 + 6 / 12, "feet"),
  30663. default: true
  30664. },
  30665. {
  30666. name: "Normal+",
  30667. height: math.unit(4, "meters")
  30668. },
  30669. {
  30670. name: "Macro",
  30671. height: math.unit(50, "meters")
  30672. },
  30673. {
  30674. name: "Macro+",
  30675. height: math.unit(100, "meters")
  30676. },
  30677. {
  30678. name: "Megamacro",
  30679. height: math.unit(20, "km")
  30680. },
  30681. ]
  30682. ))
  30683. characterMakers.push(() => makeCharacter(
  30684. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  30685. {
  30686. front: {
  30687. height: math.unit(6, "feet"),
  30688. weight: math.unit(150, "lb"),
  30689. name: "Front",
  30690. image: {
  30691. source: "./media/characters/kosho/front.svg",
  30692. extra: 1847 / 1847,
  30693. bottom: 86 / 1933
  30694. }
  30695. },
  30696. },
  30697. [
  30698. {
  30699. name: "Second-stage micro",
  30700. height: math.unit(0.5, "inches")
  30701. },
  30702. {
  30703. name: "First-stage micro",
  30704. height: math.unit(6, "inches")
  30705. },
  30706. {
  30707. name: "Normal",
  30708. height: math.unit(6, "feet"),
  30709. default: true
  30710. },
  30711. {
  30712. name: "First-stage macro",
  30713. height: math.unit(72, "feet")
  30714. },
  30715. {
  30716. name: "Second-stage macro",
  30717. height: math.unit(864, "feet")
  30718. },
  30719. ]
  30720. ))
  30721. characterMakers.push(() => makeCharacter(
  30722. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  30723. {
  30724. normal: {
  30725. height: math.unit(4 + 6 / 12, "feet"),
  30726. name: "Normal",
  30727. image: {
  30728. source: "./media/characters/hydra/normal.svg",
  30729. extra: 2833 / 2634,
  30730. bottom: 68 / 2901
  30731. }
  30732. },
  30733. smol: {
  30734. height: math.unit(0.705, "inches"),
  30735. name: "Smol",
  30736. image: {
  30737. source: "./media/characters/hydra/smol.svg",
  30738. extra: 2715 / 2540,
  30739. bottom: 0 / 2715
  30740. }
  30741. },
  30742. },
  30743. [
  30744. {
  30745. name: "Normal",
  30746. height: math.unit(4 + 6 / 12, "feet"),
  30747. default: true
  30748. }
  30749. ]
  30750. ))
  30751. characterMakers.push(() => makeCharacter(
  30752. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  30753. {
  30754. front: {
  30755. height: math.unit(0.6, "cm"),
  30756. name: "Front",
  30757. image: {
  30758. source: "./media/characters/daz/front.svg",
  30759. extra: 1682 / 1164,
  30760. bottom: 42 / 1724
  30761. }
  30762. },
  30763. },
  30764. [
  30765. {
  30766. name: "Normal",
  30767. height: math.unit(0.6, "cm"),
  30768. default: true
  30769. },
  30770. ]
  30771. ))
  30772. characterMakers.push(() => makeCharacter(
  30773. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  30774. {
  30775. front: {
  30776. height: math.unit(6, "feet"),
  30777. weight: math.unit(235, "lb"),
  30778. name: "Front",
  30779. image: {
  30780. source: "./media/characters/theo-pangolin/front.svg",
  30781. extra: 1996 / 1969,
  30782. bottom: 115 / 2111
  30783. }
  30784. },
  30785. back: {
  30786. height: math.unit(6, "feet"),
  30787. weight: math.unit(235, "lb"),
  30788. name: "Back",
  30789. image: {
  30790. source: "./media/characters/theo-pangolin/back.svg",
  30791. extra: 1979 / 1979,
  30792. bottom: 40 / 2019
  30793. }
  30794. },
  30795. feral: {
  30796. height: math.unit(2, "feet"),
  30797. weight: math.unit(30, "lb"),
  30798. name: "Feral",
  30799. image: {
  30800. source: "./media/characters/theo-pangolin/feral.svg",
  30801. extra: 803 / 791,
  30802. bottom: 181 / 984
  30803. }
  30804. },
  30805. footFive: {
  30806. height: math.unit(1.43, "feet"),
  30807. name: "Foot (Five Toes)",
  30808. image: {
  30809. source: "./media/characters/theo-pangolin/foot-five.svg"
  30810. }
  30811. },
  30812. footFour: {
  30813. height: math.unit(1.43, "feet"),
  30814. name: "Foot (Four Toes)",
  30815. image: {
  30816. source: "./media/characters/theo-pangolin/foot-four.svg"
  30817. }
  30818. },
  30819. handFour: {
  30820. height: math.unit(0.81, "feet"),
  30821. name: "Hand (Four Fingers)",
  30822. image: {
  30823. source: "./media/characters/theo-pangolin/hand-four.svg"
  30824. }
  30825. },
  30826. handThree: {
  30827. height: math.unit(0.81, "feet"),
  30828. name: "Hand (Three Fingers)",
  30829. image: {
  30830. source: "./media/characters/theo-pangolin/hand-three.svg"
  30831. }
  30832. },
  30833. headFront: {
  30834. height: math.unit(1.37, "feet"),
  30835. name: "Head (Front)",
  30836. image: {
  30837. source: "./media/characters/theo-pangolin/head-front.svg"
  30838. }
  30839. },
  30840. headSide: {
  30841. height: math.unit(1.43, "feet"),
  30842. name: "Head (Side)",
  30843. image: {
  30844. source: "./media/characters/theo-pangolin/head-side.svg"
  30845. }
  30846. },
  30847. tongue: {
  30848. height: math.unit(2.29, "feet"),
  30849. name: "Tongue",
  30850. image: {
  30851. source: "./media/characters/theo-pangolin/tongue.svg"
  30852. }
  30853. },
  30854. },
  30855. [
  30856. {
  30857. name: "Normal",
  30858. height: math.unit(6, "feet")
  30859. },
  30860. {
  30861. name: "Macro",
  30862. height: math.unit(400, "feet"),
  30863. default: true
  30864. },
  30865. ]
  30866. ))
  30867. characterMakers.push(() => makeCharacter(
  30868. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  30869. {
  30870. front: {
  30871. height: math.unit(6, "inches"),
  30872. weight: math.unit(0.036, "kg"),
  30873. name: "Front",
  30874. image: {
  30875. source: "./media/characters/renée/front.svg",
  30876. extra: 900 / 886,
  30877. bottom: 8 / 908
  30878. }
  30879. },
  30880. },
  30881. [
  30882. {
  30883. name: "Nano",
  30884. height: math.unit(1, "nm")
  30885. },
  30886. {
  30887. name: "Micro",
  30888. height: math.unit(1, "mm")
  30889. },
  30890. {
  30891. name: "Normal",
  30892. height: math.unit(6, "inches")
  30893. },
  30894. {
  30895. name: "Macro",
  30896. height: math.unit(2000, "feet"),
  30897. default: true
  30898. },
  30899. {
  30900. name: "Megamacro",
  30901. height: math.unit(2, "km")
  30902. },
  30903. {
  30904. name: "Gigamacro",
  30905. height: math.unit(2000, "km")
  30906. },
  30907. {
  30908. name: "Teramacro",
  30909. height: math.unit(250000, "km")
  30910. },
  30911. ]
  30912. ))
  30913. characterMakers.push(() => makeCharacter(
  30914. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  30915. {
  30916. front: {
  30917. height: math.unit(4, "meters"),
  30918. weight: math.unit(150, "kg"),
  30919. name: "Front",
  30920. image: {
  30921. source: "./media/characters/caledvwlch/front.svg",
  30922. extra: 1760 / 1551,
  30923. bottom: 28 / 1788
  30924. }
  30925. },
  30926. side: {
  30927. height: math.unit(4, "meters"),
  30928. weight: math.unit(150, "kg"),
  30929. name: "Side",
  30930. image: {
  30931. source: "./media/characters/caledvwlch/side.svg",
  30932. extra: 1605 / 1536,
  30933. bottom: 31 / 1636
  30934. }
  30935. },
  30936. back: {
  30937. height: math.unit(4, "meters"),
  30938. weight: math.unit(150, "kg"),
  30939. name: "Back",
  30940. image: {
  30941. source: "./media/characters/caledvwlch/back.svg",
  30942. extra: 1635 / 1565,
  30943. bottom: 27 / 1662
  30944. }
  30945. },
  30946. },
  30947. [
  30948. {
  30949. name: "\"Incognito\"",
  30950. height: math.unit(4, "meters")
  30951. },
  30952. {
  30953. name: "Small rampage",
  30954. height: math.unit(600, "meters")
  30955. },
  30956. {
  30957. name: "Mega",
  30958. height: math.unit(30, "km")
  30959. },
  30960. {
  30961. name: "Home-size",
  30962. height: math.unit(50, "km"),
  30963. default: true
  30964. },
  30965. {
  30966. name: "Giga",
  30967. height: math.unit(300, "km")
  30968. },
  30969. {
  30970. name: "Lounging",
  30971. height: math.unit(11000, "km")
  30972. },
  30973. {
  30974. name: "Planet snacking",
  30975. height: math.unit(2000000, "km")
  30976. },
  30977. ]
  30978. ))
  30979. characterMakers.push(() => makeCharacter(
  30980. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  30981. {
  30982. front: {
  30983. height: math.unit(6, "feet"),
  30984. weight: math.unit(215, "lb"),
  30985. name: "Front",
  30986. image: {
  30987. source: "./media/characters/sapphire-svell/front.svg",
  30988. extra: 495 / 455,
  30989. bottom: 20 / 515
  30990. }
  30991. },
  30992. back: {
  30993. height: math.unit(6, "feet"),
  30994. weight: math.unit(216, "lb"),
  30995. name: "Back",
  30996. image: {
  30997. source: "./media/characters/sapphire-svell/back.svg",
  30998. extra: 497 / 477,
  30999. bottom: 7 / 504
  31000. }
  31001. },
  31002. maw: {
  31003. height: math.unit(1.57, "feet"),
  31004. name: "Maw",
  31005. image: {
  31006. source: "./media/characters/sapphire-svell/maw.svg"
  31007. }
  31008. },
  31009. foot: {
  31010. height: math.unit(1.07, "feet"),
  31011. name: "Foot",
  31012. image: {
  31013. source: "./media/characters/sapphire-svell/foot.svg"
  31014. }
  31015. },
  31016. toering: {
  31017. height: math.unit(1.7, "inch"),
  31018. name: "Toering",
  31019. image: {
  31020. source: "./media/characters/sapphire-svell/toering.svg"
  31021. }
  31022. },
  31023. },
  31024. [
  31025. {
  31026. name: "Normal",
  31027. height: math.unit(300, "feet"),
  31028. default: true
  31029. },
  31030. {
  31031. name: "Augmented",
  31032. height: math.unit(1250, "feet")
  31033. },
  31034. {
  31035. name: "Unleashed",
  31036. height: math.unit(3000, "feet")
  31037. },
  31038. ]
  31039. ))
  31040. characterMakers.push(() => makeCharacter(
  31041. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  31042. {
  31043. side: {
  31044. height: math.unit(2 + 3 / 12, "feet"),
  31045. weight: math.unit(110, "lb"),
  31046. name: "Side",
  31047. image: {
  31048. source: "./media/characters/glitch-flux/side.svg",
  31049. extra: 997 / 805,
  31050. bottom: 20 / 1017
  31051. }
  31052. },
  31053. },
  31054. [
  31055. {
  31056. name: "Normal",
  31057. height: math.unit(2 + 3 / 12, "feet"),
  31058. default: true
  31059. },
  31060. ]
  31061. ))
  31062. characterMakers.push(() => makeCharacter(
  31063. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  31064. {
  31065. front: {
  31066. height: math.unit(4, "meters"),
  31067. name: "Front",
  31068. image: {
  31069. source: "./media/characters/mid/front.svg",
  31070. extra: 507 / 476,
  31071. bottom: 17 / 524
  31072. }
  31073. },
  31074. back: {
  31075. height: math.unit(4, "meters"),
  31076. name: "Back",
  31077. image: {
  31078. source: "./media/characters/mid/back.svg",
  31079. extra: 519 / 487,
  31080. bottom: 7 / 526
  31081. }
  31082. },
  31083. stuck: {
  31084. height: math.unit(2.2, "meters"),
  31085. name: "Stuck",
  31086. image: {
  31087. source: "./media/characters/mid/stuck.svg",
  31088. extra: 1951 / 1869,
  31089. bottom: 88 / 2039
  31090. }
  31091. }
  31092. },
  31093. [
  31094. {
  31095. name: "Normal",
  31096. height: math.unit(4, "meters"),
  31097. default: true
  31098. },
  31099. {
  31100. name: "Big",
  31101. height: math.unit(10, "meters")
  31102. },
  31103. {
  31104. name: "Macro",
  31105. height: math.unit(800, "meters")
  31106. },
  31107. {
  31108. name: "Megamacro",
  31109. height: math.unit(100, "km")
  31110. },
  31111. {
  31112. name: "Overgrown",
  31113. height: math.unit(1, "parsec")
  31114. },
  31115. ]
  31116. ))
  31117. characterMakers.push(() => makeCharacter(
  31118. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  31119. {
  31120. front: {
  31121. height: math.unit(2.5, "meters"),
  31122. weight: math.unit(225, "kg"),
  31123. name: "Front",
  31124. image: {
  31125. source: "./media/characters/iris/front.svg",
  31126. extra: 3348 / 3251,
  31127. bottom: 205 / 3553
  31128. }
  31129. },
  31130. maw: {
  31131. height: math.unit(0.56, "meter"),
  31132. name: "Maw",
  31133. image: {
  31134. source: "./media/characters/iris/maw.svg"
  31135. }
  31136. },
  31137. },
  31138. [
  31139. {
  31140. name: "Mewter cat",
  31141. height: math.unit(1.2, "meters")
  31142. },
  31143. {
  31144. name: "Minimacro",
  31145. height: math.unit(2.5, "meters"),
  31146. default: true
  31147. },
  31148. {
  31149. name: "Macro",
  31150. height: math.unit(180, "meters")
  31151. },
  31152. {
  31153. name: "Megamacro",
  31154. height: math.unit(2746, "meters")
  31155. },
  31156. ]
  31157. ))
  31158. characterMakers.push(() => makeCharacter(
  31159. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  31160. {
  31161. front: {
  31162. height: math.unit(6, "feet"),
  31163. weight: math.unit(135, "lb"),
  31164. name: "Front",
  31165. image: {
  31166. source: "./media/characters/axel/front.svg",
  31167. extra: 908 / 908,
  31168. bottom: 58 / 966
  31169. }
  31170. },
  31171. side: {
  31172. height: math.unit(6, "feet"),
  31173. weight: math.unit(135, "lb"),
  31174. name: "Side",
  31175. image: {
  31176. source: "./media/characters/axel/side.svg",
  31177. extra: 958 / 958,
  31178. bottom: 11 / 969
  31179. }
  31180. },
  31181. back: {
  31182. height: math.unit(6, "feet"),
  31183. weight: math.unit(135, "lb"),
  31184. name: "Back",
  31185. image: {
  31186. source: "./media/characters/axel/back.svg",
  31187. extra: 887 / 887,
  31188. bottom: 34 / 921
  31189. }
  31190. },
  31191. head: {
  31192. height: math.unit(1.07, "feet"),
  31193. name: "Head",
  31194. image: {
  31195. source: "./media/characters/axel/head.svg"
  31196. }
  31197. },
  31198. beak: {
  31199. height: math.unit(1.4, "feet"),
  31200. name: "Beak",
  31201. image: {
  31202. source: "./media/characters/axel/beak.svg"
  31203. }
  31204. },
  31205. beakSide: {
  31206. height: math.unit(1.4, "feet"),
  31207. name: "Beak Side",
  31208. image: {
  31209. source: "./media/characters/axel/beak-side.svg"
  31210. }
  31211. },
  31212. sheath: {
  31213. height: math.unit(0.5, "feet"),
  31214. name: "Sheath",
  31215. image: {
  31216. source: "./media/characters/axel/sheath.svg"
  31217. }
  31218. },
  31219. dick: {
  31220. height: math.unit(0.98, "feet"),
  31221. name: "Dick",
  31222. image: {
  31223. source: "./media/characters/axel/dick.svg"
  31224. }
  31225. },
  31226. },
  31227. [
  31228. {
  31229. name: "Macro",
  31230. height: math.unit(68, "meters"),
  31231. default: true
  31232. },
  31233. ]
  31234. ))
  31235. characterMakers.push(() => makeCharacter(
  31236. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  31237. {
  31238. front: {
  31239. height: math.unit(3.5, "meters"),
  31240. weight: math.unit(1200, "kg"),
  31241. name: "Front",
  31242. image: {
  31243. source: "./media/characters/joanna/front.svg",
  31244. extra: 1596 / 1488,
  31245. bottom: 29 / 1625
  31246. }
  31247. },
  31248. back: {
  31249. height: math.unit(3.5, "meters"),
  31250. weight: math.unit(1200, "kg"),
  31251. name: "Back",
  31252. image: {
  31253. source: "./media/characters/joanna/back.svg",
  31254. extra: 1594 / 1495,
  31255. bottom: 26 / 1620
  31256. }
  31257. },
  31258. frontShorts: {
  31259. height: math.unit(3.5, "meters"),
  31260. weight: math.unit(1200, "kg"),
  31261. name: "Front (Shorts)",
  31262. image: {
  31263. source: "./media/characters/joanna/front-shorts.svg",
  31264. extra: 1596 / 1488,
  31265. bottom: 29 / 1625
  31266. }
  31267. },
  31268. frontBiker: {
  31269. height: math.unit(3.5, "meters"),
  31270. weight: math.unit(1200, "kg"),
  31271. name: "Front (Biker)",
  31272. image: {
  31273. source: "./media/characters/joanna/front-biker.svg",
  31274. extra: 1596 / 1488,
  31275. bottom: 29 / 1625
  31276. }
  31277. },
  31278. backBiker: {
  31279. height: math.unit(3.5, "meters"),
  31280. weight: math.unit(1200, "kg"),
  31281. name: "Back (Biker)",
  31282. image: {
  31283. source: "./media/characters/joanna/back-biker.svg",
  31284. extra: 1594 / 1495,
  31285. bottom: 88 / 1682
  31286. }
  31287. },
  31288. bikeLeft: {
  31289. height: math.unit(2.4, "meters"),
  31290. weight: math.unit(1600, "kg"),
  31291. name: "Bike (Left)",
  31292. image: {
  31293. source: "./media/characters/joanna/bike-left.svg",
  31294. extra: 720 / 720,
  31295. bottom: 8 / 728
  31296. }
  31297. },
  31298. bikeRight: {
  31299. height: math.unit(2.4, "meters"),
  31300. weight: math.unit(1600, "kg"),
  31301. name: "Bike (Right)",
  31302. image: {
  31303. source: "./media/characters/joanna/bike-right.svg",
  31304. extra: 720 / 720,
  31305. bottom: 8 / 728
  31306. }
  31307. },
  31308. },
  31309. [
  31310. {
  31311. name: "Incognito",
  31312. height: math.unit(3.5, "meters")
  31313. },
  31314. {
  31315. name: "Casual Big",
  31316. height: math.unit(200, "meters")
  31317. },
  31318. {
  31319. name: "Macro",
  31320. height: math.unit(600, "meters")
  31321. },
  31322. {
  31323. name: "Original",
  31324. height: math.unit(20, "km"),
  31325. default: true
  31326. },
  31327. {
  31328. name: "Giga",
  31329. height: math.unit(400, "km")
  31330. },
  31331. {
  31332. name: "Lounging",
  31333. height: math.unit(1500, "km")
  31334. },
  31335. {
  31336. name: "Planetary",
  31337. height: math.unit(200000, "km")
  31338. },
  31339. ]
  31340. ))
  31341. characterMakers.push(() => makeCharacter(
  31342. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  31343. {
  31344. front: {
  31345. height: math.unit(6, "feet"),
  31346. weight: math.unit(150, "lb"),
  31347. name: "Front",
  31348. image: {
  31349. source: "./media/characters/hugo-sigil/front.svg",
  31350. extra: 522 / 500,
  31351. bottom: 2 / 524
  31352. }
  31353. },
  31354. back: {
  31355. height: math.unit(6, "feet"),
  31356. weight: math.unit(150, "lb"),
  31357. name: "Back",
  31358. image: {
  31359. source: "./media/characters/hugo-sigil/back.svg",
  31360. extra: 519 / 495,
  31361. bottom: 5 / 524
  31362. }
  31363. },
  31364. maw: {
  31365. height: math.unit(1.4, "feet"),
  31366. weight: math.unit(150, "lb"),
  31367. name: "Maw",
  31368. image: {
  31369. source: "./media/characters/hugo-sigil/maw.svg"
  31370. }
  31371. },
  31372. feet: {
  31373. height: math.unit(1.56, "feet"),
  31374. weight: math.unit(150, "lb"),
  31375. name: "Feet",
  31376. image: {
  31377. source: "./media/characters/hugo-sigil/feet.svg",
  31378. extra: 177 / 177,
  31379. bottom: 12 / 189
  31380. }
  31381. },
  31382. },
  31383. [
  31384. {
  31385. name: "Normal",
  31386. height: math.unit(6, "feet")
  31387. },
  31388. {
  31389. name: "Macro",
  31390. height: math.unit(200, "feet"),
  31391. default: true
  31392. },
  31393. ]
  31394. ))
  31395. characterMakers.push(() => makeCharacter(
  31396. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  31397. {
  31398. front: {
  31399. height: math.unit(6, "feet"),
  31400. weight: math.unit(150, "lb"),
  31401. name: "Front",
  31402. image: {
  31403. source: "./media/characters/peri/front.svg",
  31404. extra: 2354 / 2233,
  31405. bottom: 49 / 2403
  31406. }
  31407. },
  31408. },
  31409. [
  31410. {
  31411. name: "Really Small",
  31412. height: math.unit(1, "nm")
  31413. },
  31414. {
  31415. name: "Micro",
  31416. height: math.unit(4, "inches")
  31417. },
  31418. {
  31419. name: "Normal",
  31420. height: math.unit(7, "inches"),
  31421. default: true
  31422. },
  31423. {
  31424. name: "Macro",
  31425. height: math.unit(400, "feet")
  31426. },
  31427. {
  31428. name: "Megamacro",
  31429. height: math.unit(100, "miles")
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  31435. {
  31436. frontSlim: {
  31437. height: math.unit(7, "feet"),
  31438. name: "Front (Slim)",
  31439. image: {
  31440. source: "./media/characters/issilora/front-slim.svg",
  31441. extra: 529 / 449,
  31442. bottom: 53 / 582
  31443. }
  31444. },
  31445. sideSlim: {
  31446. height: math.unit(7, "feet"),
  31447. name: "Side (Slim)",
  31448. image: {
  31449. source: "./media/characters/issilora/side-slim.svg",
  31450. extra: 570 / 480,
  31451. bottom: 30 / 600
  31452. }
  31453. },
  31454. backSlim: {
  31455. height: math.unit(7, "feet"),
  31456. name: "Back (Slim)",
  31457. image: {
  31458. source: "./media/characters/issilora/back-slim.svg",
  31459. extra: 537 / 455,
  31460. bottom: 46 / 583
  31461. }
  31462. },
  31463. frontBuff: {
  31464. height: math.unit(7, "feet"),
  31465. name: "Front (Buff)",
  31466. image: {
  31467. source: "./media/characters/issilora/front-buff.svg",
  31468. extra: 2310 / 2035,
  31469. bottom: 335 / 2645
  31470. }
  31471. },
  31472. head: {
  31473. height: math.unit(1.94, "feet"),
  31474. name: "Head",
  31475. image: {
  31476. source: "./media/characters/issilora/head.svg"
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Minimum",
  31483. height: math.unit(7, "feet")
  31484. },
  31485. {
  31486. name: "Comfortable",
  31487. height: math.unit(17, "feet")
  31488. },
  31489. {
  31490. name: "Fun Size",
  31491. height: math.unit(47, "feet")
  31492. },
  31493. {
  31494. name: "Natural Macro",
  31495. height: math.unit(137, "feet"),
  31496. default: true
  31497. },
  31498. {
  31499. name: "Maximum Kaiju",
  31500. height: math.unit(397, "feet")
  31501. },
  31502. ]
  31503. ))
  31504. characterMakers.push(() => makeCharacter(
  31505. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  31506. {
  31507. front: {
  31508. height: math.unit(50 + 9/12, "feet"),
  31509. weight: math.unit(32.8, "tons"),
  31510. name: "Front",
  31511. image: {
  31512. source: "./media/characters/irb'iiritaahn/front.svg",
  31513. extra: 1878/1826,
  31514. bottom: 326/2204
  31515. }
  31516. },
  31517. back: {
  31518. height: math.unit(50 + 9/12, "feet"),
  31519. weight: math.unit(32.8, "tons"),
  31520. name: "Back",
  31521. image: {
  31522. source: "./media/characters/irb'iiritaahn/back.svg",
  31523. extra: 2052/2018,
  31524. bottom: 152/2204
  31525. }
  31526. },
  31527. head: {
  31528. height: math.unit(12.86, "feet"),
  31529. name: "Head",
  31530. image: {
  31531. source: "./media/characters/irb'iiritaahn/head.svg"
  31532. }
  31533. },
  31534. maw: {
  31535. height: math.unit(9.66, "feet"),
  31536. name: "Maw",
  31537. image: {
  31538. source: "./media/characters/irb'iiritaahn/maw.svg"
  31539. }
  31540. },
  31541. frontDick: {
  31542. height: math.unit(8.78461, "feet"),
  31543. name: "Front Dick",
  31544. image: {
  31545. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  31546. }
  31547. },
  31548. rearDick: {
  31549. height: math.unit(8.78461, "feet"),
  31550. name: "Rear Dick",
  31551. image: {
  31552. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  31553. }
  31554. },
  31555. rearDickUnfolded: {
  31556. height: math.unit(8.78, "feet"),
  31557. name: "Rear Dick (Unfolded)",
  31558. image: {
  31559. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  31560. }
  31561. },
  31562. wings: {
  31563. height: math.unit(43, "feet"),
  31564. name: "Wings",
  31565. image: {
  31566. source: "./media/characters/irb'iiritaahn/wings.svg"
  31567. }
  31568. },
  31569. },
  31570. [
  31571. {
  31572. name: "Macro",
  31573. height: math.unit(50 + 9/12, "feet"),
  31574. default: true
  31575. },
  31576. ]
  31577. ))
  31578. characterMakers.push(() => makeCharacter(
  31579. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  31580. {
  31581. front: {
  31582. height: math.unit(205, "cm"),
  31583. weight: math.unit(102, "kg"),
  31584. name: "Front",
  31585. image: {
  31586. source: "./media/characters/irbisgreif/front.svg",
  31587. extra: 785/706,
  31588. bottom: 13/798
  31589. }
  31590. },
  31591. back: {
  31592. height: math.unit(205, "cm"),
  31593. weight: math.unit(102, "kg"),
  31594. name: "Back",
  31595. image: {
  31596. source: "./media/characters/irbisgreif/back.svg",
  31597. extra: 713/701,
  31598. bottom: 26/739
  31599. }
  31600. },
  31601. frontDressed: {
  31602. height: math.unit(216, "cm"),
  31603. weight: math.unit(102, "kg"),
  31604. name: "Front-dressed",
  31605. image: {
  31606. source: "./media/characters/irbisgreif/front-dressed.svg",
  31607. extra: 902/776,
  31608. bottom: 14/916
  31609. }
  31610. },
  31611. sideDressed: {
  31612. height: math.unit(195, "cm"),
  31613. weight: math.unit(102, "kg"),
  31614. name: "Side-dressed",
  31615. image: {
  31616. source: "./media/characters/irbisgreif/side-dressed.svg",
  31617. extra: 788/688,
  31618. bottom: 21/809
  31619. }
  31620. },
  31621. backDressed: {
  31622. height: math.unit(216, "cm"),
  31623. weight: math.unit(102, "kg"),
  31624. name: "Back-dressed",
  31625. image: {
  31626. source: "./media/characters/irbisgreif/back-dressed.svg",
  31627. extra: 901/783,
  31628. bottom: 10/911
  31629. }
  31630. },
  31631. dick: {
  31632. height: math.unit(0.49, "feet"),
  31633. name: "Dick",
  31634. image: {
  31635. source: "./media/characters/irbisgreif/dick.svg"
  31636. }
  31637. },
  31638. wingTop: {
  31639. height: math.unit(1.93 , "feet"),
  31640. name: "Wing-top",
  31641. image: {
  31642. source: "./media/characters/irbisgreif/wing-top.svg"
  31643. }
  31644. },
  31645. wingBottom: {
  31646. height: math.unit(1.93 , "feet"),
  31647. name: "Wing-bottom",
  31648. image: {
  31649. source: "./media/characters/irbisgreif/wing-bottom.svg"
  31650. }
  31651. },
  31652. },
  31653. [
  31654. {
  31655. name: "Normal",
  31656. height: math.unit(216, "cm"),
  31657. default: true
  31658. },
  31659. ]
  31660. ))
  31661. characterMakers.push(() => makeCharacter(
  31662. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  31663. {
  31664. front: {
  31665. height: math.unit(6, "feet"),
  31666. weight: math.unit(150, "lb"),
  31667. name: "Front",
  31668. image: {
  31669. source: "./media/characters/pride/front.svg",
  31670. extra: 1299/1230,
  31671. bottom: 18/1317
  31672. }
  31673. },
  31674. },
  31675. [
  31676. {
  31677. name: "Normal",
  31678. height: math.unit(7, "feet")
  31679. },
  31680. {
  31681. name: "Mini-macro",
  31682. height: math.unit(11, "feet")
  31683. },
  31684. {
  31685. name: "Macro",
  31686. height: math.unit(15, "meters"),
  31687. default: true
  31688. },
  31689. {
  31690. name: "Macro+",
  31691. height: math.unit(40, "meters")
  31692. },
  31693. ]
  31694. ))
  31695. characterMakers.push(() => makeCharacter(
  31696. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  31697. {
  31698. front: {
  31699. height: math.unit(4 + 2 / 12, "feet"),
  31700. weight: math.unit(95, "lb"),
  31701. name: "Front",
  31702. image: {
  31703. source: "./media/characters/vaelophis-nyx/front.svg",
  31704. extra: 2532/2330,
  31705. bottom: 0/2532
  31706. }
  31707. },
  31708. back: {
  31709. height: math.unit(4 + 2 / 12, "feet"),
  31710. weight: math.unit(95, "lb"),
  31711. name: "Back",
  31712. image: {
  31713. source: "./media/characters/vaelophis-nyx/back.svg",
  31714. extra: 2484/2361,
  31715. bottom: 0/2484
  31716. }
  31717. },
  31718. feralSide: {
  31719. height: math.unit(2 + 1/12, "feet"),
  31720. weight: math.unit(20, "lb"),
  31721. name: "Feral (Side)",
  31722. image: {
  31723. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  31724. extra: 1721/1581,
  31725. bottom: 70/1791
  31726. }
  31727. },
  31728. feralLazing: {
  31729. height: math.unit(1.08, "feet"),
  31730. weight: math.unit(20, "lb"),
  31731. name: "Feral (Lazing)",
  31732. image: {
  31733. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  31734. extra: 822/822,
  31735. bottom: 248/1070
  31736. }
  31737. },
  31738. ear: {
  31739. height: math.unit(0.416, "feet"),
  31740. name: "Ear",
  31741. image: {
  31742. source: "./media/characters/vaelophis-nyx/ear.svg"
  31743. }
  31744. },
  31745. eye: {
  31746. height: math.unit(0.0748, "feet"),
  31747. name: "Eye",
  31748. image: {
  31749. source: "./media/characters/vaelophis-nyx/eye.svg"
  31750. }
  31751. },
  31752. mouth: {
  31753. height: math.unit(0.378, "feet"),
  31754. name: "Mouth",
  31755. image: {
  31756. source: "./media/characters/vaelophis-nyx/mouth.svg"
  31757. }
  31758. },
  31759. spade: {
  31760. height: math.unit(0.55, "feet"),
  31761. name: "Spade",
  31762. image: {
  31763. source: "./media/characters/vaelophis-nyx/spade.svg"
  31764. }
  31765. },
  31766. },
  31767. [
  31768. {
  31769. name: "Normal",
  31770. height: math.unit(4 + 2/12, "feet"),
  31771. default: true
  31772. },
  31773. ]
  31774. ))
  31775. characterMakers.push(() => makeCharacter(
  31776. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  31777. {
  31778. front: {
  31779. height: math.unit(7, "feet"),
  31780. weight: math.unit(231, "lb"),
  31781. name: "Front",
  31782. image: {
  31783. source: "./media/characters/flux/front.svg",
  31784. extra: 919/871,
  31785. bottom: 0/919
  31786. }
  31787. },
  31788. back: {
  31789. height: math.unit(7, "feet"),
  31790. weight: math.unit(231, "lb"),
  31791. name: "Back",
  31792. image: {
  31793. source: "./media/characters/flux/back.svg",
  31794. extra: 1040/992,
  31795. bottom: 0/1040
  31796. }
  31797. },
  31798. frontDressed: {
  31799. height: math.unit(7, "feet"),
  31800. weight: math.unit(231, "lb"),
  31801. name: "Front (Dressed)",
  31802. image: {
  31803. source: "./media/characters/flux/front-dressed.svg",
  31804. extra: 919/871,
  31805. bottom: 0/919
  31806. }
  31807. },
  31808. feralSide: {
  31809. height: math.unit(5, "feet"),
  31810. weight: math.unit(150, "lb"),
  31811. name: "Feral (Side)",
  31812. image: {
  31813. source: "./media/characters/flux/feral-side.svg",
  31814. extra: 598/528,
  31815. bottom: 28/626
  31816. }
  31817. },
  31818. head: {
  31819. height: math.unit(1.585, "feet"),
  31820. name: "Head",
  31821. image: {
  31822. source: "./media/characters/flux/head.svg"
  31823. }
  31824. },
  31825. headSide: {
  31826. height: math.unit(1.74, "feet"),
  31827. name: "Head (Side)",
  31828. image: {
  31829. source: "./media/characters/flux/head-side.svg"
  31830. }
  31831. },
  31832. headSideFire: {
  31833. height: math.unit(1.76, "feet"),
  31834. name: "Head (Side, Fire)",
  31835. image: {
  31836. source: "./media/characters/flux/head-side-fire.svg"
  31837. }
  31838. },
  31839. },
  31840. [
  31841. {
  31842. name: "Normal",
  31843. height: math.unit(7, "feet"),
  31844. default: true
  31845. },
  31846. ]
  31847. ))
  31848. characterMakers.push(() => makeCharacter(
  31849. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  31850. {
  31851. front: {
  31852. height: math.unit(9, "feet"),
  31853. weight: math.unit(1012, "lb"),
  31854. name: "Front",
  31855. image: {
  31856. source: "./media/characters/ulfra-lupae/front.svg",
  31857. extra: 1083/1011,
  31858. bottom: 67/1150
  31859. }
  31860. },
  31861. },
  31862. [
  31863. {
  31864. name: "Micro",
  31865. height: math.unit(6, "inches")
  31866. },
  31867. {
  31868. name: "Socializing",
  31869. height: math.unit(6 + 5/12, "feet")
  31870. },
  31871. {
  31872. name: "Normal",
  31873. height: math.unit(9, "feet"),
  31874. default: true
  31875. },
  31876. {
  31877. name: "Macro",
  31878. height: math.unit(150, "feet")
  31879. },
  31880. ]
  31881. ))
  31882. characterMakers.push(() => makeCharacter(
  31883. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  31884. {
  31885. front: {
  31886. height: math.unit(5 + 2/12, "feet"),
  31887. weight: math.unit(120, "lb"),
  31888. name: "Front",
  31889. image: {
  31890. source: "./media/characters/timber/front.svg",
  31891. extra: 2814/2705,
  31892. bottom: 181/2995
  31893. }
  31894. },
  31895. },
  31896. [
  31897. {
  31898. name: "Normal",
  31899. height: math.unit(5 + 2/12, "feet"),
  31900. default: true
  31901. },
  31902. ]
  31903. ))
  31904. characterMakers.push(() => makeCharacter(
  31905. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  31906. {
  31907. front: {
  31908. height: math.unit(9, "feet"),
  31909. name: "Front",
  31910. image: {
  31911. source: "./media/characters/nicki/front.svg",
  31912. extra: 1240/990,
  31913. bottom: 45/1285
  31914. },
  31915. form: "anthro",
  31916. default: true
  31917. },
  31918. side: {
  31919. height: math.unit(9, "feet"),
  31920. name: "Side",
  31921. image: {
  31922. source: "./media/characters/nicki/side.svg",
  31923. extra: 1047/973,
  31924. bottom: 61/1108
  31925. },
  31926. form: "anthro"
  31927. },
  31928. back: {
  31929. height: math.unit(9, "feet"),
  31930. name: "Back",
  31931. image: {
  31932. source: "./media/characters/nicki/back.svg",
  31933. extra: 1006/965,
  31934. bottom: 39/1045
  31935. },
  31936. form: "anthro"
  31937. },
  31938. taur: {
  31939. height: math.unit(15, "feet"),
  31940. name: "Taur",
  31941. image: {
  31942. source: "./media/characters/nicki/taur.svg",
  31943. extra: 1592/1347,
  31944. bottom: 0/1592
  31945. },
  31946. form: "taur",
  31947. default: true
  31948. },
  31949. },
  31950. [
  31951. {
  31952. name: "Normal",
  31953. height: math.unit(9, "feet"),
  31954. form: "anthro",
  31955. default: true
  31956. },
  31957. {
  31958. name: "Normal",
  31959. height: math.unit(15, "feet"),
  31960. form: "taur",
  31961. default: true
  31962. }
  31963. ],
  31964. {
  31965. "anthro": {
  31966. name: "Anthro",
  31967. default: true
  31968. },
  31969. "taur": {
  31970. name: "Taur"
  31971. }
  31972. }
  31973. ))
  31974. characterMakers.push(() => makeCharacter(
  31975. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  31976. {
  31977. front: {
  31978. height: math.unit(7 + 10/12, "feet"),
  31979. weight: math.unit(3.5, "tons"),
  31980. name: "Front",
  31981. image: {
  31982. source: "./media/characters/lee/front.svg",
  31983. extra: 1773/1615,
  31984. bottom: 86/1859
  31985. }
  31986. },
  31987. hand: {
  31988. height: math.unit(1.78, "feet"),
  31989. name: "Hand",
  31990. image: {
  31991. source: "./media/characters/lee/hand.svg"
  31992. }
  31993. },
  31994. maw: {
  31995. height: math.unit(1.18, "feet"),
  31996. name: "Maw",
  31997. image: {
  31998. source: "./media/characters/lee/maw.svg"
  31999. }
  32000. },
  32001. },
  32002. [
  32003. {
  32004. name: "Normal",
  32005. height: math.unit(7 + 10/12, "feet"),
  32006. default: true
  32007. },
  32008. ]
  32009. ))
  32010. characterMakers.push(() => makeCharacter(
  32011. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  32012. {
  32013. front: {
  32014. height: math.unit(9, "feet"),
  32015. name: "Front",
  32016. image: {
  32017. source: "./media/characters/guti/front.svg",
  32018. extra: 4551/4355,
  32019. bottom: 123/4674
  32020. }
  32021. },
  32022. tongue: {
  32023. height: math.unit(1, "feet"),
  32024. name: "Tongue",
  32025. image: {
  32026. source: "./media/characters/guti/tongue.svg"
  32027. }
  32028. },
  32029. paw: {
  32030. height: math.unit(1.18, "feet"),
  32031. name: "Paw",
  32032. image: {
  32033. source: "./media/characters/guti/paw.svg"
  32034. }
  32035. },
  32036. },
  32037. [
  32038. {
  32039. name: "Normal",
  32040. height: math.unit(9, "feet"),
  32041. default: true
  32042. },
  32043. ]
  32044. ))
  32045. characterMakers.push(() => makeCharacter(
  32046. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  32047. {
  32048. side: {
  32049. height: math.unit(5, "meters"),
  32050. name: "Side",
  32051. image: {
  32052. source: "./media/characters/vesper/side.svg",
  32053. extra: 1605/1518,
  32054. bottom: 0/1605
  32055. }
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Small",
  32061. height: math.unit(5, "meters")
  32062. },
  32063. {
  32064. name: "Sage",
  32065. height: math.unit(100, "meters"),
  32066. default: true
  32067. },
  32068. {
  32069. name: "Fun Size",
  32070. height: math.unit(600, "meters")
  32071. },
  32072. {
  32073. name: "Goddess",
  32074. height: math.unit(20000, "km")
  32075. },
  32076. {
  32077. name: "Maximum",
  32078. height: math.unit(5, "galaxies")
  32079. },
  32080. ]
  32081. ))
  32082. characterMakers.push(() => makeCharacter(
  32083. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  32084. {
  32085. front: {
  32086. height: math.unit(6 + 3/12, "feet"),
  32087. weight: math.unit(190, "lb"),
  32088. name: "Front",
  32089. image: {
  32090. source: "./media/characters/gawain/front.svg",
  32091. extra: 2222/2139,
  32092. bottom: 90/2312
  32093. }
  32094. },
  32095. back: {
  32096. height: math.unit(6 + 3/12, "feet"),
  32097. weight: math.unit(190, "lb"),
  32098. name: "Back",
  32099. image: {
  32100. source: "./media/characters/gawain/back.svg",
  32101. extra: 2199/2111,
  32102. bottom: 73/2272
  32103. }
  32104. },
  32105. },
  32106. [
  32107. {
  32108. name: "Normal",
  32109. height: math.unit(6 + 3/12, "feet"),
  32110. default: true
  32111. },
  32112. ]
  32113. ))
  32114. characterMakers.push(() => makeCharacter(
  32115. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  32116. {
  32117. side: {
  32118. height: math.unit(3.5, "meters"),
  32119. weight: math.unit(16000, "lb"),
  32120. name: "Side",
  32121. image: {
  32122. source: "./media/characters/dascalti/side.svg",
  32123. extra: 392/273,
  32124. bottom: 47/439
  32125. }
  32126. },
  32127. breath: {
  32128. height: math.unit(7.4, "feet"),
  32129. name: "Breath",
  32130. image: {
  32131. source: "./media/characters/dascalti/breath.svg"
  32132. }
  32133. },
  32134. fed: {
  32135. height: math.unit(3.6, "meters"),
  32136. weight: math.unit(16000, "lb"),
  32137. name: "Fed",
  32138. image: {
  32139. source: "./media/characters/dascalti/fed.svg",
  32140. extra: 1419/820,
  32141. bottom: 95/1514
  32142. }
  32143. },
  32144. },
  32145. [
  32146. {
  32147. name: "Normal",
  32148. height: math.unit(3.5, "meters"),
  32149. default: true
  32150. },
  32151. ]
  32152. ))
  32153. characterMakers.push(() => makeCharacter(
  32154. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  32155. {
  32156. front: {
  32157. height: math.unit(3 + 5/12, "feet"),
  32158. name: "Front",
  32159. image: {
  32160. source: "./media/characters/mauve/front.svg",
  32161. extra: 1126/1033,
  32162. bottom: 65/1191
  32163. }
  32164. },
  32165. side: {
  32166. height: math.unit(3 + 5/12, "feet"),
  32167. name: "Side",
  32168. image: {
  32169. source: "./media/characters/mauve/side.svg",
  32170. extra: 1089/1001,
  32171. bottom: 29/1118
  32172. }
  32173. },
  32174. back: {
  32175. height: math.unit(3 + 5/12, "feet"),
  32176. name: "Back",
  32177. image: {
  32178. source: "./media/characters/mauve/back.svg",
  32179. extra: 1173/1053,
  32180. bottom: 109/1282
  32181. }
  32182. },
  32183. },
  32184. [
  32185. {
  32186. name: "Normal",
  32187. height: math.unit(3 + 5/12, "feet"),
  32188. default: true
  32189. },
  32190. ]
  32191. ))
  32192. characterMakers.push(() => makeCharacter(
  32193. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  32194. {
  32195. front: {
  32196. height: math.unit(6 + 3/12, "feet"),
  32197. weight: math.unit(430, "lb"),
  32198. name: "Front",
  32199. image: {
  32200. source: "./media/characters/carlos/front.svg",
  32201. extra: 1964/1913,
  32202. bottom: 70/2034
  32203. }
  32204. },
  32205. },
  32206. [
  32207. {
  32208. name: "Normal",
  32209. height: math.unit(6 + 3/12, "feet"),
  32210. default: true
  32211. },
  32212. ]
  32213. ))
  32214. characterMakers.push(() => makeCharacter(
  32215. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  32216. {
  32217. back: {
  32218. height: math.unit(5 + 10/12, "feet"),
  32219. weight: math.unit(200, "lb"),
  32220. name: "Back",
  32221. image: {
  32222. source: "./media/characters/jax/back.svg",
  32223. extra: 764/739,
  32224. bottom: 25/789
  32225. }
  32226. },
  32227. },
  32228. [
  32229. {
  32230. name: "Normal",
  32231. height: math.unit(5 + 10/12, "feet"),
  32232. default: true
  32233. },
  32234. ]
  32235. ))
  32236. characterMakers.push(() => makeCharacter(
  32237. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  32238. {
  32239. front: {
  32240. height: math.unit(8, "feet"),
  32241. weight: math.unit(250, "lb"),
  32242. name: "Front",
  32243. image: {
  32244. source: "./media/characters/eikthynir/front.svg",
  32245. extra: 1332/1166,
  32246. bottom: 82/1414
  32247. }
  32248. },
  32249. back: {
  32250. height: math.unit(8, "feet"),
  32251. weight: math.unit(250, "lb"),
  32252. name: "Back",
  32253. image: {
  32254. source: "./media/characters/eikthynir/back.svg",
  32255. extra: 1342/1190,
  32256. bottom: 19/1361
  32257. }
  32258. },
  32259. dick: {
  32260. height: math.unit(2.35, "feet"),
  32261. name: "Dick",
  32262. image: {
  32263. source: "./media/characters/eikthynir/dick.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: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  32277. {
  32278. front: {
  32279. height: math.unit(99, "meters"),
  32280. weight: math.unit(13000, "tons"),
  32281. name: "Front",
  32282. image: {
  32283. source: "./media/characters/zlmos/front.svg",
  32284. extra: 2202/1992,
  32285. bottom: 315/2517
  32286. }
  32287. },
  32288. },
  32289. [
  32290. {
  32291. name: "Macro",
  32292. height: math.unit(99, "meters"),
  32293. default: true
  32294. },
  32295. ]
  32296. ))
  32297. characterMakers.push(() => makeCharacter(
  32298. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  32299. {
  32300. front: {
  32301. height: math.unit(6 + 5/12, "feet"),
  32302. name: "Front",
  32303. image: {
  32304. source: "./media/characters/purri/front.svg",
  32305. extra: 1698/1610,
  32306. bottom: 32/1730
  32307. }
  32308. },
  32309. frontAlt: {
  32310. height: math.unit(6 + 5/12, "feet"),
  32311. name: "Front (Alt)",
  32312. image: {
  32313. source: "./media/characters/purri/front-alt.svg",
  32314. extra: 450/420,
  32315. bottom: 26/476
  32316. }
  32317. },
  32318. boots: {
  32319. height: math.unit(5.5, "feet"),
  32320. name: "Boots",
  32321. image: {
  32322. source: "./media/characters/purri/boots.svg",
  32323. extra: 905/853,
  32324. bottom: 18/923
  32325. }
  32326. },
  32327. lying: {
  32328. height: math.unit(2, "feet"),
  32329. name: "Lying",
  32330. image: {
  32331. source: "./media/characters/purri/lying.svg",
  32332. extra: 940/843,
  32333. bottom: 146/1086
  32334. }
  32335. },
  32336. devious: {
  32337. height: math.unit(1.77, "feet"),
  32338. name: "Devious",
  32339. image: {
  32340. source: "./media/characters/purri/devious.svg",
  32341. extra: 1440/1155,
  32342. bottom: 147/1587
  32343. }
  32344. },
  32345. bean: {
  32346. height: math.unit(1.94, "feet"),
  32347. name: "Bean",
  32348. image: {
  32349. source: "./media/characters/purri/bean.svg"
  32350. }
  32351. },
  32352. },
  32353. [
  32354. {
  32355. name: "Micro",
  32356. height: math.unit(1, "mm")
  32357. },
  32358. {
  32359. name: "Normal",
  32360. height: math.unit(6 + 5/12, "feet"),
  32361. default: true
  32362. },
  32363. {
  32364. name: "Macro :3c",
  32365. height: math.unit(2, "miles")
  32366. },
  32367. ]
  32368. ))
  32369. characterMakers.push(() => makeCharacter(
  32370. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  32371. {
  32372. front: {
  32373. height: math.unit(6 + 2/12, "feet"),
  32374. weight: math.unit(250, "lb"),
  32375. name: "Front",
  32376. image: {
  32377. source: "./media/characters/moonlight/front.svg",
  32378. extra: 1044/908,
  32379. bottom: 56/1100
  32380. }
  32381. },
  32382. feral: {
  32383. height: math.unit(3 + 1/12, "feet"),
  32384. weight: math.unit(50, "kg"),
  32385. name: "Feral",
  32386. image: {
  32387. source: "./media/characters/moonlight/feral.svg",
  32388. extra: 3705/2791,
  32389. bottom: 145/3850
  32390. }
  32391. },
  32392. paw: {
  32393. height: math.unit(1, "feet"),
  32394. name: "Paw",
  32395. image: {
  32396. source: "./media/characters/moonlight/paw.svg"
  32397. }
  32398. },
  32399. paws: {
  32400. height: math.unit(0.98, "feet"),
  32401. name: "Paws",
  32402. image: {
  32403. source: "./media/characters/moonlight/paws.svg",
  32404. extra: 939/939,
  32405. bottom: 50/989
  32406. }
  32407. },
  32408. mouth: {
  32409. height: math.unit(0.48, "feet"),
  32410. name: "Mouth",
  32411. image: {
  32412. source: "./media/characters/moonlight/mouth.svg"
  32413. }
  32414. },
  32415. dick: {
  32416. height: math.unit(1.46, "feet"),
  32417. name: "Dick",
  32418. image: {
  32419. source: "./media/characters/moonlight/dick.svg"
  32420. }
  32421. },
  32422. },
  32423. [
  32424. {
  32425. name: "Normal",
  32426. height: math.unit(6 + 2/12, "feet"),
  32427. default: true
  32428. },
  32429. {
  32430. name: "Macro",
  32431. height: math.unit(300, "feet")
  32432. },
  32433. {
  32434. name: "Macro+",
  32435. height: math.unit(1, "mile")
  32436. },
  32437. {
  32438. name: "Mt. Moon",
  32439. height: math.unit(5, "miles")
  32440. },
  32441. {
  32442. name: "Megamacro",
  32443. height: math.unit(15, "miles")
  32444. },
  32445. ]
  32446. ))
  32447. characterMakers.push(() => makeCharacter(
  32448. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  32449. {
  32450. back: {
  32451. height: math.unit(6, "feet"),
  32452. weight: math.unit(150, "lb"),
  32453. name: "Back",
  32454. image: {
  32455. source: "./media/characters/sylen/back.svg",
  32456. extra: 1335/1273,
  32457. bottom: 107/1442
  32458. }
  32459. },
  32460. },
  32461. [
  32462. {
  32463. name: "Normal",
  32464. height: math.unit(5 + 5/12, "feet")
  32465. },
  32466. {
  32467. name: "Megamacro",
  32468. height: math.unit(3, "miles"),
  32469. default: true
  32470. },
  32471. ]
  32472. ))
  32473. characterMakers.push(() => makeCharacter(
  32474. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  32475. {
  32476. front: {
  32477. height: math.unit(6, "feet"),
  32478. weight: math.unit(190, "lb"),
  32479. name: "Front",
  32480. image: {
  32481. source: "./media/characters/huttser/front.svg",
  32482. extra: 1152/1058,
  32483. bottom: 23/1175
  32484. }
  32485. },
  32486. side: {
  32487. height: math.unit(6, "feet"),
  32488. weight: math.unit(190, "lb"),
  32489. name: "Side",
  32490. image: {
  32491. source: "./media/characters/huttser/side.svg",
  32492. extra: 1174/1065,
  32493. bottom: 18/1192
  32494. }
  32495. },
  32496. back: {
  32497. height: math.unit(6, "feet"),
  32498. weight: math.unit(190, "lb"),
  32499. name: "Back",
  32500. image: {
  32501. source: "./media/characters/huttser/back.svg",
  32502. extra: 1158/1056,
  32503. bottom: 12/1170
  32504. }
  32505. },
  32506. },
  32507. [
  32508. ]
  32509. ))
  32510. characterMakers.push(() => makeCharacter(
  32511. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  32512. {
  32513. side: {
  32514. height: math.unit(12 + 9/12, "feet"),
  32515. weight: math.unit(15000, "lb"),
  32516. name: "Side",
  32517. image: {
  32518. source: "./media/characters/faan/side.svg",
  32519. extra: 2747/2697,
  32520. bottom: 0/2747
  32521. }
  32522. },
  32523. front: {
  32524. height: math.unit(12 + 9/12, "feet"),
  32525. weight: math.unit(15000, "lb"),
  32526. name: "Front",
  32527. image: {
  32528. source: "./media/characters/faan/front.svg",
  32529. extra: 607/571,
  32530. bottom: 24/631
  32531. }
  32532. },
  32533. head: {
  32534. height: math.unit(2.85, "feet"),
  32535. name: "Head",
  32536. image: {
  32537. source: "./media/characters/faan/head.svg"
  32538. }
  32539. },
  32540. headAlt: {
  32541. height: math.unit(3.13, "feet"),
  32542. name: "Head-alt",
  32543. image: {
  32544. source: "./media/characters/faan/head-alt.svg"
  32545. }
  32546. },
  32547. },
  32548. [
  32549. {
  32550. name: "Normal",
  32551. height: math.unit(12 + 9/12, "feet"),
  32552. default: true
  32553. },
  32554. ]
  32555. ))
  32556. characterMakers.push(() => makeCharacter(
  32557. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  32558. {
  32559. front: {
  32560. height: math.unit(6, "feet"),
  32561. weight: math.unit(300, "lb"),
  32562. name: "Front",
  32563. image: {
  32564. source: "./media/characters/tanio/front.svg",
  32565. extra: 711/673,
  32566. bottom: 25/736
  32567. }
  32568. },
  32569. },
  32570. [
  32571. {
  32572. name: "Normal",
  32573. height: math.unit(6, "feet"),
  32574. default: true
  32575. },
  32576. ]
  32577. ))
  32578. characterMakers.push(() => makeCharacter(
  32579. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  32580. {
  32581. front: {
  32582. height: math.unit(3, "inches"),
  32583. name: "Front",
  32584. image: {
  32585. source: "./media/characters/noboru/front.svg",
  32586. extra: 1039/932,
  32587. bottom: 18/1057
  32588. }
  32589. },
  32590. },
  32591. [
  32592. {
  32593. name: "Micro",
  32594. height: math.unit(3, "inches"),
  32595. default: true
  32596. },
  32597. ]
  32598. ))
  32599. characterMakers.push(() => makeCharacter(
  32600. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  32601. {
  32602. front: {
  32603. height: math.unit(1.85, "meters"),
  32604. weight: math.unit(80, "kg"),
  32605. name: "Front",
  32606. image: {
  32607. source: "./media/characters/daniel-barrett/front.svg",
  32608. extra: 355/337,
  32609. bottom: 9/364
  32610. }
  32611. },
  32612. },
  32613. [
  32614. {
  32615. name: "Pico",
  32616. height: math.unit(0.0433, "mm")
  32617. },
  32618. {
  32619. name: "Nano",
  32620. height: math.unit(1.5, "mm")
  32621. },
  32622. {
  32623. name: "Micro",
  32624. height: math.unit(5.3, "cm"),
  32625. default: true
  32626. },
  32627. {
  32628. name: "Normal",
  32629. height: math.unit(1.85, "meters")
  32630. },
  32631. {
  32632. name: "Macro",
  32633. height: math.unit(64.7, "meters")
  32634. },
  32635. {
  32636. name: "Megamacro",
  32637. height: math.unit(2.26, "km")
  32638. },
  32639. {
  32640. name: "Gigamacro",
  32641. height: math.unit(79, "km")
  32642. },
  32643. {
  32644. name: "Teramacro",
  32645. height: math.unit(2765, "km")
  32646. },
  32647. {
  32648. name: "Petamacro",
  32649. height: math.unit(96678, "km")
  32650. },
  32651. ]
  32652. ))
  32653. characterMakers.push(() => makeCharacter(
  32654. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  32655. {
  32656. front: {
  32657. height: math.unit(30, "meters"),
  32658. weight: math.unit(400, "tons"),
  32659. name: "Front",
  32660. image: {
  32661. source: "./media/characters/zeel/front.svg",
  32662. extra: 2599/2599,
  32663. bottom: 226/2825
  32664. }
  32665. },
  32666. },
  32667. [
  32668. {
  32669. name: "Macro",
  32670. height: math.unit(30, "meters"),
  32671. default: true
  32672. },
  32673. ]
  32674. ))
  32675. characterMakers.push(() => makeCharacter(
  32676. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  32677. {
  32678. front: {
  32679. height: math.unit(6 + 7/12, "feet"),
  32680. weight: math.unit(210, "lb"),
  32681. name: "Front",
  32682. image: {
  32683. source: "./media/characters/tarn/front.svg",
  32684. extra: 3517/3220,
  32685. bottom: 91/3608
  32686. }
  32687. },
  32688. back: {
  32689. height: math.unit(6 + 7/12, "feet"),
  32690. weight: math.unit(210, "lb"),
  32691. name: "Back",
  32692. image: {
  32693. source: "./media/characters/tarn/back.svg",
  32694. extra: 3566/3241,
  32695. bottom: 34/3600
  32696. }
  32697. },
  32698. dick: {
  32699. height: math.unit(1.65, "feet"),
  32700. name: "Dick",
  32701. image: {
  32702. source: "./media/characters/tarn/dick.svg"
  32703. }
  32704. },
  32705. paw: {
  32706. height: math.unit(1.80, "feet"),
  32707. name: "Paw",
  32708. image: {
  32709. source: "./media/characters/tarn/paw.svg"
  32710. }
  32711. },
  32712. tongue: {
  32713. height: math.unit(0.97, "feet"),
  32714. name: "Tongue",
  32715. image: {
  32716. source: "./media/characters/tarn/tongue.svg"
  32717. }
  32718. },
  32719. },
  32720. [
  32721. {
  32722. name: "Micro",
  32723. height: math.unit(4, "inches")
  32724. },
  32725. {
  32726. name: "Normal",
  32727. height: math.unit(6 + 7/12, "feet"),
  32728. default: true
  32729. },
  32730. {
  32731. name: "Macro",
  32732. height: math.unit(300, "feet")
  32733. },
  32734. ]
  32735. ))
  32736. characterMakers.push(() => makeCharacter(
  32737. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  32738. {
  32739. front: {
  32740. height: math.unit(5 + 7/12, "feet"),
  32741. weight: math.unit(80, "kg"),
  32742. name: "Front",
  32743. image: {
  32744. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  32745. extra: 3023/2865,
  32746. bottom: 33/3056
  32747. }
  32748. },
  32749. back: {
  32750. height: math.unit(5 + 7/12, "feet"),
  32751. weight: math.unit(80, "kg"),
  32752. name: "Back",
  32753. image: {
  32754. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  32755. extra: 3020/2886,
  32756. bottom: 30/3050
  32757. }
  32758. },
  32759. dick: {
  32760. height: math.unit(0.98, "feet"),
  32761. name: "Dick",
  32762. image: {
  32763. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  32764. }
  32765. },
  32766. anatomy: {
  32767. height: math.unit(2.86, "feet"),
  32768. name: "Anatomy",
  32769. image: {
  32770. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  32771. }
  32772. },
  32773. },
  32774. [
  32775. {
  32776. name: "Really Small",
  32777. height: math.unit(2, "inches")
  32778. },
  32779. {
  32780. name: "Micro",
  32781. height: math.unit(5.583, "inches")
  32782. },
  32783. {
  32784. name: "Normal",
  32785. height: math.unit(5 + 7/12, "feet"),
  32786. default: true
  32787. },
  32788. {
  32789. name: "Macro",
  32790. height: math.unit(67, "feet")
  32791. },
  32792. {
  32793. name: "Megamacro",
  32794. height: math.unit(134, "feet")
  32795. },
  32796. ]
  32797. ))
  32798. characterMakers.push(() => makeCharacter(
  32799. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  32800. {
  32801. front: {
  32802. height: math.unit(9, "feet"),
  32803. weight: math.unit(120, "lb"),
  32804. name: "Front",
  32805. image: {
  32806. source: "./media/characters/sally/front.svg",
  32807. extra: 1506/1349,
  32808. bottom: 66/1572
  32809. }
  32810. },
  32811. },
  32812. [
  32813. {
  32814. name: "Normal",
  32815. height: math.unit(9, "feet"),
  32816. default: true
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  32822. {
  32823. front: {
  32824. height: math.unit(8, "feet"),
  32825. weight: math.unit(900, "lb"),
  32826. name: "Front",
  32827. image: {
  32828. source: "./media/characters/owen/front.svg",
  32829. extra: 1761/1657,
  32830. bottom: 74/1835
  32831. }
  32832. },
  32833. side: {
  32834. height: math.unit(8, "feet"),
  32835. weight: math.unit(900, "lb"),
  32836. name: "Side",
  32837. image: {
  32838. source: "./media/characters/owen/side.svg",
  32839. extra: 1797/1734,
  32840. bottom: 30/1827
  32841. }
  32842. },
  32843. back: {
  32844. height: math.unit(8, "feet"),
  32845. weight: math.unit(900, "lb"),
  32846. name: "Back",
  32847. image: {
  32848. source: "./media/characters/owen/back.svg",
  32849. extra: 1796/1706,
  32850. bottom: 59/1855
  32851. }
  32852. },
  32853. maw: {
  32854. height: math.unit(1.76, "feet"),
  32855. name: "Maw",
  32856. image: {
  32857. source: "./media/characters/owen/maw.svg"
  32858. }
  32859. },
  32860. },
  32861. [
  32862. {
  32863. name: "Normal",
  32864. height: math.unit(8, "feet"),
  32865. default: true
  32866. },
  32867. ]
  32868. ))
  32869. characterMakers.push(() => makeCharacter(
  32870. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  32871. {
  32872. front: {
  32873. height: math.unit(4, "feet"),
  32874. weight: math.unit(400, "lb"),
  32875. name: "Front",
  32876. image: {
  32877. source: "./media/characters/ryth/front.svg",
  32878. extra: 1920/1748,
  32879. bottom: 42/1962
  32880. }
  32881. },
  32882. back: {
  32883. height: math.unit(4, "feet"),
  32884. weight: math.unit(400, "lb"),
  32885. name: "Back",
  32886. image: {
  32887. source: "./media/characters/ryth/back.svg",
  32888. extra: 1897/1690,
  32889. bottom: 89/1986
  32890. }
  32891. },
  32892. mouth: {
  32893. height: math.unit(1.39, "feet"),
  32894. name: "Mouth",
  32895. image: {
  32896. source: "./media/characters/ryth/mouth.svg"
  32897. }
  32898. },
  32899. tailmaw: {
  32900. height: math.unit(1.23, "feet"),
  32901. name: "Tailmaw",
  32902. image: {
  32903. source: "./media/characters/ryth/tailmaw.svg"
  32904. }
  32905. },
  32906. goia: {
  32907. height: math.unit(4, "meters"),
  32908. weight: math.unit(10800, "lb"),
  32909. name: "Goia",
  32910. image: {
  32911. source: "./media/characters/ryth/goia.svg",
  32912. extra: 745/640,
  32913. bottom: 107/852
  32914. }
  32915. },
  32916. goiaFront: {
  32917. height: math.unit(4, "meters"),
  32918. weight: math.unit(10800, "lb"),
  32919. name: "Goia (Front)",
  32920. image: {
  32921. source: "./media/characters/ryth/goia-front.svg",
  32922. extra: 750/586,
  32923. bottom: 114/864
  32924. }
  32925. },
  32926. goiaMaw: {
  32927. height: math.unit(5.55, "feet"),
  32928. name: "Goia Maw",
  32929. image: {
  32930. source: "./media/characters/ryth/goia-maw.svg"
  32931. }
  32932. },
  32933. goiaForepaw: {
  32934. height: math.unit(3.5, "feet"),
  32935. name: "Goia Forepaw",
  32936. image: {
  32937. source: "./media/characters/ryth/goia-forepaw.svg"
  32938. }
  32939. },
  32940. goiaHindpaw: {
  32941. height: math.unit(5.55, "feet"),
  32942. name: "Goia Hindpaw",
  32943. image: {
  32944. source: "./media/characters/ryth/goia-hindpaw.svg"
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Normal",
  32951. height: math.unit(4, "feet"),
  32952. default: true
  32953. },
  32954. ]
  32955. ))
  32956. characterMakers.push(() => makeCharacter(
  32957. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  32958. {
  32959. front: {
  32960. height: math.unit(7, "feet"),
  32961. weight: math.unit(180, "lb"),
  32962. name: "Front",
  32963. image: {
  32964. source: "./media/characters/necrolance/front.svg",
  32965. extra: 1062/947,
  32966. bottom: 41/1103
  32967. }
  32968. },
  32969. back: {
  32970. height: math.unit(7, "feet"),
  32971. weight: math.unit(180, "lb"),
  32972. name: "Back",
  32973. image: {
  32974. source: "./media/characters/necrolance/back.svg",
  32975. extra: 1045/984,
  32976. bottom: 14/1059
  32977. }
  32978. },
  32979. wing: {
  32980. height: math.unit(2.67, "feet"),
  32981. name: "Wing",
  32982. image: {
  32983. source: "./media/characters/necrolance/wing.svg"
  32984. }
  32985. },
  32986. },
  32987. [
  32988. {
  32989. name: "Normal",
  32990. height: math.unit(7, "feet"),
  32991. default: true
  32992. },
  32993. ]
  32994. ))
  32995. characterMakers.push(() => makeCharacter(
  32996. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  32997. {
  32998. front: {
  32999. height: math.unit(76, "meters"),
  33000. weight: math.unit(30000, "tons"),
  33001. name: "Front",
  33002. image: {
  33003. source: "./media/characters/tyler/front.svg",
  33004. extra: 1640/1640,
  33005. bottom: 114/1754
  33006. }
  33007. },
  33008. },
  33009. [
  33010. {
  33011. name: "Macro",
  33012. height: math.unit(76, "meters"),
  33013. default: true
  33014. },
  33015. ]
  33016. ))
  33017. characterMakers.push(() => makeCharacter(
  33018. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  33019. {
  33020. front: {
  33021. height: math.unit(4 + 11/12, "feet"),
  33022. weight: math.unit(132, "lb"),
  33023. name: "Front",
  33024. image: {
  33025. source: "./media/characters/icey/front.svg",
  33026. extra: 2750/2550,
  33027. bottom: 33/2783
  33028. }
  33029. },
  33030. back: {
  33031. height: math.unit(4 + 11/12, "feet"),
  33032. weight: math.unit(132, "lb"),
  33033. name: "Back",
  33034. image: {
  33035. source: "./media/characters/icey/back.svg",
  33036. extra: 2624/2481,
  33037. bottom: 35/2659
  33038. }
  33039. },
  33040. },
  33041. [
  33042. {
  33043. name: "Normal",
  33044. height: math.unit(4 + 11/12, "feet"),
  33045. default: true
  33046. },
  33047. ]
  33048. ))
  33049. characterMakers.push(() => makeCharacter(
  33050. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  33051. {
  33052. front: {
  33053. height: math.unit(100, "feet"),
  33054. weight: math.unit(0, "lb"),
  33055. name: "Front",
  33056. image: {
  33057. source: "./media/characters/smile/front.svg",
  33058. extra: 2983/2912,
  33059. bottom: 162/3145
  33060. }
  33061. },
  33062. back: {
  33063. height: math.unit(100, "feet"),
  33064. weight: math.unit(0, "lb"),
  33065. name: "Back",
  33066. image: {
  33067. source: "./media/characters/smile/back.svg",
  33068. extra: 3143/3031,
  33069. bottom: 91/3234
  33070. }
  33071. },
  33072. head: {
  33073. height: math.unit(26.3, "feet"),
  33074. weight: math.unit(0, "lb"),
  33075. name: "Head",
  33076. image: {
  33077. source: "./media/characters/smile/head.svg"
  33078. }
  33079. },
  33080. collar: {
  33081. height: math.unit(5.3, "feet"),
  33082. weight: math.unit(0, "lb"),
  33083. name: "Collar",
  33084. image: {
  33085. source: "./media/characters/smile/collar.svg"
  33086. }
  33087. },
  33088. },
  33089. [
  33090. {
  33091. name: "Macro",
  33092. height: math.unit(100, "feet"),
  33093. default: true
  33094. },
  33095. ]
  33096. ))
  33097. characterMakers.push(() => makeCharacter(
  33098. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  33099. {
  33100. dragon: {
  33101. height: math.unit(26, "feet"),
  33102. weight: math.unit(36, "tons"),
  33103. name: "Dragon",
  33104. image: {
  33105. source: "./media/characters/arimphae/dragon.svg",
  33106. extra: 1574/983,
  33107. bottom: 357/1931
  33108. }
  33109. },
  33110. drake: {
  33111. height: math.unit(9, "feet"),
  33112. weight: math.unit(1.5, "tons"),
  33113. name: "Drake",
  33114. image: {
  33115. source: "./media/characters/arimphae/drake.svg",
  33116. extra: 1120/925,
  33117. bottom: 435/1555
  33118. }
  33119. },
  33120. },
  33121. [
  33122. {
  33123. name: "Small",
  33124. height: math.unit(26*5/9, "feet")
  33125. },
  33126. {
  33127. name: "Normal",
  33128. height: math.unit(26, "feet"),
  33129. default: true
  33130. },
  33131. ]
  33132. ))
  33133. characterMakers.push(() => makeCharacter(
  33134. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  33135. {
  33136. front: {
  33137. height: math.unit(8 + 9/12, "feet"),
  33138. name: "Front",
  33139. image: {
  33140. source: "./media/characters/xander/front.svg",
  33141. extra: 1237/974,
  33142. bottom: 94/1331
  33143. }
  33144. },
  33145. },
  33146. [
  33147. {
  33148. name: "Normal",
  33149. height: math.unit(8 + 9/12, "feet"),
  33150. default: true
  33151. },
  33152. {
  33153. name: "Gaze Grabber",
  33154. height: math.unit(13 + 8/12, "feet")
  33155. },
  33156. {
  33157. name: "Jaw Dropper",
  33158. height: math.unit(27, "feet")
  33159. },
  33160. {
  33161. name: "Show Stopper",
  33162. height: math.unit(136, "feet")
  33163. },
  33164. {
  33165. name: "Superstar",
  33166. height: math.unit(1.9e6, "miles")
  33167. },
  33168. ]
  33169. ))
  33170. characterMakers.push(() => makeCharacter(
  33171. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  33172. {
  33173. side: {
  33174. height: math.unit(2100, "feet"),
  33175. name: "Side",
  33176. image: {
  33177. source: "./media/characters/osiris/side.svg",
  33178. extra: 1105/939,
  33179. bottom: 167/1272
  33180. }
  33181. },
  33182. },
  33183. [
  33184. {
  33185. name: "Macro",
  33186. height: math.unit(2100, "feet"),
  33187. default: true
  33188. },
  33189. ]
  33190. ))
  33191. characterMakers.push(() => makeCharacter(
  33192. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  33193. {
  33194. front: {
  33195. height: math.unit(6 + 8/12, "feet"),
  33196. weight: math.unit(225, "lb"),
  33197. name: "Front",
  33198. image: {
  33199. source: "./media/characters/rhys-londe/front.svg",
  33200. extra: 2258/2141,
  33201. bottom: 188/2446
  33202. }
  33203. },
  33204. back: {
  33205. height: math.unit(6 + 8/12, "feet"),
  33206. weight: math.unit(225, "lb"),
  33207. name: "Back",
  33208. image: {
  33209. source: "./media/characters/rhys-londe/back.svg",
  33210. extra: 2237/2137,
  33211. bottom: 63/2300
  33212. }
  33213. },
  33214. frontNsfw: {
  33215. height: math.unit(6 + 8/12, "feet"),
  33216. weight: math.unit(225, "lb"),
  33217. name: "Front (NSFW)",
  33218. image: {
  33219. source: "./media/characters/rhys-londe/front-nsfw.svg",
  33220. extra: 2258/2141,
  33221. bottom: 188/2446
  33222. }
  33223. },
  33224. backNsfw: {
  33225. height: math.unit(6 + 8/12, "feet"),
  33226. weight: math.unit(225, "lb"),
  33227. name: "Back (NSFW)",
  33228. image: {
  33229. source: "./media/characters/rhys-londe/back-nsfw.svg",
  33230. extra: 2237/2137,
  33231. bottom: 63/2300
  33232. }
  33233. },
  33234. dick: {
  33235. height: math.unit(30, "inches"),
  33236. name: "Dick",
  33237. image: {
  33238. source: "./media/characters/rhys-londe/dick.svg"
  33239. }
  33240. },
  33241. maw: {
  33242. height: math.unit(1.6, "feet"),
  33243. name: "Maw",
  33244. image: {
  33245. source: "./media/characters/rhys-londe/maw.svg"
  33246. }
  33247. },
  33248. },
  33249. [
  33250. {
  33251. name: "Normal",
  33252. height: math.unit(6 + 8/12, "feet"),
  33253. default: true
  33254. },
  33255. ]
  33256. ))
  33257. characterMakers.push(() => makeCharacter(
  33258. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  33259. {
  33260. front: {
  33261. height: math.unit(3 + 10/12, "feet"),
  33262. weight: math.unit(90, "lb"),
  33263. name: "Front",
  33264. image: {
  33265. source: "./media/characters/taivas-ensim/front.svg",
  33266. extra: 1327/1216,
  33267. bottom: 96/1423
  33268. }
  33269. },
  33270. back: {
  33271. height: math.unit(3 + 10/12, "feet"),
  33272. weight: math.unit(90, "lb"),
  33273. name: "Back",
  33274. image: {
  33275. source: "./media/characters/taivas-ensim/back.svg",
  33276. extra: 1355/1247,
  33277. bottom: 11/1366
  33278. }
  33279. },
  33280. frontNsfw: {
  33281. height: math.unit(3 + 10/12, "feet"),
  33282. weight: math.unit(90, "lb"),
  33283. name: "Front (NSFW)",
  33284. image: {
  33285. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  33286. extra: 1327/1216,
  33287. bottom: 96/1423
  33288. }
  33289. },
  33290. backNsfw: {
  33291. height: math.unit(3 + 10/12, "feet"),
  33292. weight: math.unit(90, "lb"),
  33293. name: "Back (NSFW)",
  33294. image: {
  33295. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  33296. extra: 1355/1247,
  33297. bottom: 11/1366
  33298. }
  33299. },
  33300. },
  33301. [
  33302. {
  33303. name: "Normal",
  33304. height: math.unit(3 + 10/12, "feet"),
  33305. default: true
  33306. },
  33307. ]
  33308. ))
  33309. characterMakers.push(() => makeCharacter(
  33310. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  33311. {
  33312. front: {
  33313. height: math.unit(9 + 6/12, "feet"),
  33314. weight: math.unit(940, "lb"),
  33315. name: "Front",
  33316. image: {
  33317. source: "./media/characters/byliss/front.svg",
  33318. extra: 1327/1290,
  33319. bottom: 82/1409
  33320. }
  33321. },
  33322. back: {
  33323. height: math.unit(9 + 6/12, "feet"),
  33324. weight: math.unit(940, "lb"),
  33325. name: "Back",
  33326. image: {
  33327. source: "./media/characters/byliss/back.svg",
  33328. extra: 1376/1349,
  33329. bottom: 9/1385
  33330. }
  33331. },
  33332. frontNsfw: {
  33333. height: math.unit(9 + 6/12, "feet"),
  33334. weight: math.unit(940, "lb"),
  33335. name: "Front (NSFW)",
  33336. image: {
  33337. source: "./media/characters/byliss/front-nsfw.svg",
  33338. extra: 1327/1290,
  33339. bottom: 82/1409
  33340. }
  33341. },
  33342. backNsfw: {
  33343. height: math.unit(9 + 6/12, "feet"),
  33344. weight: math.unit(940, "lb"),
  33345. name: "Back (NSFW)",
  33346. image: {
  33347. source: "./media/characters/byliss/back-nsfw.svg",
  33348. extra: 1376/1349,
  33349. bottom: 9/1385
  33350. }
  33351. },
  33352. },
  33353. [
  33354. {
  33355. name: "Normal",
  33356. height: math.unit(9 + 6/12, "feet"),
  33357. default: true
  33358. },
  33359. ]
  33360. ))
  33361. characterMakers.push(() => makeCharacter(
  33362. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  33363. {
  33364. front: {
  33365. height: math.unit(5 + 2/12, "feet"),
  33366. weight: math.unit(200, "lb"),
  33367. name: "Front",
  33368. image: {
  33369. source: "./media/characters/noraly/front.svg",
  33370. extra: 4985/4773,
  33371. bottom: 150/5135
  33372. }
  33373. },
  33374. full: {
  33375. height: math.unit(5 + 2/12, "feet"),
  33376. weight: math.unit(164, "lb"),
  33377. name: "Full",
  33378. image: {
  33379. source: "./media/characters/noraly/full.svg",
  33380. extra: 1114/1059,
  33381. bottom: 35/1149
  33382. }
  33383. },
  33384. fuller: {
  33385. height: math.unit(5 + 2/12, "feet"),
  33386. weight: math.unit(230, "lb"),
  33387. name: "Fuller",
  33388. image: {
  33389. source: "./media/characters/noraly/fuller.svg",
  33390. extra: 1114/1059,
  33391. bottom: 35/1149
  33392. }
  33393. },
  33394. fullest: {
  33395. height: math.unit(5 + 2/12, "feet"),
  33396. weight: math.unit(300, "lb"),
  33397. name: "Fullest",
  33398. image: {
  33399. source: "./media/characters/noraly/fullest.svg",
  33400. extra: 1114/1059,
  33401. bottom: 35/1149
  33402. }
  33403. },
  33404. },
  33405. [
  33406. {
  33407. name: "Normal",
  33408. height: math.unit(5 + 2/12, "feet"),
  33409. default: true
  33410. },
  33411. ]
  33412. ))
  33413. characterMakers.push(() => makeCharacter(
  33414. { name: "Pera", species: ["snake"], tags: ["naga"] },
  33415. {
  33416. front: {
  33417. height: math.unit(5 + 2/12, "feet"),
  33418. weight: math.unit(210, "lb"),
  33419. name: "Front",
  33420. image: {
  33421. source: "./media/characters/pera/front.svg",
  33422. extra: 1560/1531,
  33423. bottom: 165/1725
  33424. }
  33425. },
  33426. back: {
  33427. height: math.unit(5 + 2/12, "feet"),
  33428. weight: math.unit(210, "lb"),
  33429. name: "Back",
  33430. image: {
  33431. source: "./media/characters/pera/back.svg",
  33432. extra: 1523/1493,
  33433. bottom: 152/1675
  33434. }
  33435. },
  33436. dick: {
  33437. height: math.unit(2.4, "feet"),
  33438. name: "Dick",
  33439. image: {
  33440. source: "./media/characters/pera/dick.svg"
  33441. }
  33442. },
  33443. },
  33444. [
  33445. {
  33446. name: "Normal",
  33447. height: math.unit(5 + 2/12, "feet"),
  33448. default: true
  33449. },
  33450. ]
  33451. ))
  33452. characterMakers.push(() => makeCharacter(
  33453. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  33454. {
  33455. front: {
  33456. height: math.unit(12, "feet"),
  33457. weight: math.unit(3200, "lb"),
  33458. name: "Front",
  33459. image: {
  33460. source: "./media/characters/julian/front.svg",
  33461. extra: 2962/2701,
  33462. bottom: 184/3146
  33463. }
  33464. },
  33465. maw: {
  33466. height: math.unit(5.35, "feet"),
  33467. name: "Maw",
  33468. image: {
  33469. source: "./media/characters/julian/maw.svg"
  33470. }
  33471. },
  33472. paw: {
  33473. height: math.unit(3.07, "feet"),
  33474. name: "Paw",
  33475. image: {
  33476. source: "./media/characters/julian/paw.svg"
  33477. }
  33478. },
  33479. },
  33480. [
  33481. {
  33482. name: "Default",
  33483. height: math.unit(12, "feet"),
  33484. default: true
  33485. },
  33486. {
  33487. name: "Big",
  33488. height: math.unit(50, "feet")
  33489. },
  33490. {
  33491. name: "Really Big",
  33492. height: math.unit(1, "mile")
  33493. },
  33494. {
  33495. name: "Extremely Big",
  33496. height: math.unit(100, "miles")
  33497. },
  33498. {
  33499. name: "Planet Hugger",
  33500. height: math.unit(200, "megameters")
  33501. },
  33502. {
  33503. name: "Unreasonably Big",
  33504. height: math.unit(1e300, "meters")
  33505. },
  33506. ]
  33507. ))
  33508. characterMakers.push(() => makeCharacter(
  33509. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  33510. {
  33511. solgooleo: {
  33512. height: math.unit(4, "meters"),
  33513. weight: math.unit(6000*1.5, "kg"),
  33514. volume: math.unit(6000, "liters"),
  33515. name: "Solgooleo",
  33516. image: {
  33517. source: "./media/characters/pi/solgooleo.svg",
  33518. extra: 388/331,
  33519. bottom: 29/417
  33520. }
  33521. },
  33522. },
  33523. [
  33524. {
  33525. name: "Normal",
  33526. height: math.unit(4, "meters"),
  33527. default: true
  33528. },
  33529. ]
  33530. ))
  33531. characterMakers.push(() => makeCharacter(
  33532. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  33533. {
  33534. front: {
  33535. height: math.unit(8, "feet"),
  33536. weight: math.unit(4, "tons"),
  33537. name: "Front",
  33538. image: {
  33539. source: "./media/characters/shaun/front.svg",
  33540. extra: 503/495,
  33541. bottom: 20/523
  33542. }
  33543. },
  33544. back: {
  33545. height: math.unit(8, "feet"),
  33546. weight: math.unit(4, "tons"),
  33547. name: "Back",
  33548. image: {
  33549. source: "./media/characters/shaun/back.svg",
  33550. extra: 487/480,
  33551. bottom: 20/507
  33552. }
  33553. },
  33554. },
  33555. [
  33556. {
  33557. name: "Lorg",
  33558. height: math.unit(8, "feet"),
  33559. default: true
  33560. },
  33561. ]
  33562. ))
  33563. characterMakers.push(() => makeCharacter(
  33564. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  33565. {
  33566. frontAnthro: {
  33567. height: math.unit(7, "feet"),
  33568. name: "Front",
  33569. image: {
  33570. source: "./media/characters/sini/front-anthro.svg",
  33571. extra: 726/678,
  33572. bottom: 35/761
  33573. },
  33574. form: "anthro",
  33575. default: true
  33576. },
  33577. backAnthro: {
  33578. height: math.unit(7, "feet"),
  33579. name: "Back",
  33580. image: {
  33581. source: "./media/characters/sini/back-anthro.svg",
  33582. extra: 743/701,
  33583. bottom: 12/755
  33584. },
  33585. form: "anthro",
  33586. },
  33587. frontAnthroNsfw: {
  33588. height: math.unit(7, "feet"),
  33589. name: "Front (NSFW)",
  33590. image: {
  33591. source: "./media/characters/sini/front-anthro-nsfw.svg",
  33592. extra: 726/678,
  33593. bottom: 35/761
  33594. },
  33595. form: "anthro"
  33596. },
  33597. backAnthroNsfw: {
  33598. height: math.unit(7, "feet"),
  33599. name: "Back (NSFW)",
  33600. image: {
  33601. source: "./media/characters/sini/back-anthro-nsfw.svg",
  33602. extra: 743/701,
  33603. bottom: 12/755
  33604. },
  33605. form: "anthro",
  33606. },
  33607. mawAnthro: {
  33608. height: math.unit(2.14, "feet"),
  33609. name: "Maw",
  33610. image: {
  33611. source: "./media/characters/sini/maw-anthro.svg"
  33612. },
  33613. form: "anthro"
  33614. },
  33615. dick: {
  33616. height: math.unit(1.45, "feet"),
  33617. name: "Dick",
  33618. image: {
  33619. source: "./media/characters/sini/dick-anthro.svg"
  33620. },
  33621. form: "anthro"
  33622. },
  33623. feral: {
  33624. height: math.unit(16, "feet"),
  33625. name: "Feral",
  33626. image: {
  33627. source: "./media/characters/sini/feral.svg",
  33628. extra: 814/605,
  33629. bottom: 11/825
  33630. },
  33631. form: "feral",
  33632. default: true
  33633. },
  33634. feralNsfw: {
  33635. height: math.unit(16, "feet"),
  33636. name: "Feral (NSFW)",
  33637. image: {
  33638. source: "./media/characters/sini/feral-nsfw.svg",
  33639. extra: 814/605,
  33640. bottom: 11/825
  33641. },
  33642. form: "feral"
  33643. },
  33644. mawFeral: {
  33645. height: math.unit(5.66, "feet"),
  33646. name: "Maw",
  33647. image: {
  33648. source: "./media/characters/sini/maw-feral.svg"
  33649. },
  33650. form: "feral",
  33651. },
  33652. pawFeral: {
  33653. height: math.unit(5.17, "feet"),
  33654. name: "Paw",
  33655. image: {
  33656. source: "./media/characters/sini/paw-feral.svg"
  33657. },
  33658. form: "feral",
  33659. },
  33660. rumpFeral: {
  33661. height: math.unit(13.11, "feet"),
  33662. name: "Rump",
  33663. image: {
  33664. source: "./media/characters/sini/rump-feral.svg"
  33665. },
  33666. form: "feral",
  33667. },
  33668. dickFeral: {
  33669. height: math.unit(1, "feet"),
  33670. name: "Dick",
  33671. image: {
  33672. source: "./media/characters/sini/dick-feral.svg"
  33673. },
  33674. form: "feral",
  33675. },
  33676. eyeFeral: {
  33677. height: math.unit(1.23, "feet"),
  33678. name: "Eye",
  33679. image: {
  33680. source: "./media/characters/sini/eye-feral.svg"
  33681. },
  33682. form: "feral",
  33683. },
  33684. },
  33685. [
  33686. {
  33687. name: "Normal",
  33688. height: math.unit(7, "feet"),
  33689. default: true,
  33690. form: "anthro"
  33691. },
  33692. {
  33693. name: "Normal",
  33694. height: math.unit(16, "feet"),
  33695. default: true,
  33696. form: "feral"
  33697. },
  33698. ],
  33699. {
  33700. "anthro": {
  33701. name: "Anthro",
  33702. default: true
  33703. },
  33704. "feral": {
  33705. name: "Feral",
  33706. }
  33707. }
  33708. ))
  33709. characterMakers.push(() => makeCharacter(
  33710. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  33711. {
  33712. side: {
  33713. height: math.unit(13, "meters"),
  33714. weight: math.unit(9072, "kg"),
  33715. name: "Side",
  33716. image: {
  33717. source: "./media/characters/raylldo/side.svg",
  33718. extra: 403/344,
  33719. bottom: 42/445
  33720. }
  33721. },
  33722. leaping: {
  33723. height: math.unit(12.3, "meters"),
  33724. weight: math.unit(9072, "kg"),
  33725. name: "Leaping",
  33726. image: {
  33727. source: "./media/characters/raylldo/leaping.svg",
  33728. extra: 470/249,
  33729. bottom: 13/483
  33730. }
  33731. },
  33732. flying: {
  33733. height: math.unit(18, "meters"),
  33734. weight: math.unit(9072, "kg"),
  33735. name: "Flying",
  33736. image: {
  33737. source: "./media/characters/raylldo/flying.svg"
  33738. }
  33739. },
  33740. head: {
  33741. height: math.unit(5.85, "meters"),
  33742. name: "Head",
  33743. image: {
  33744. source: "./media/characters/raylldo/head.svg"
  33745. }
  33746. },
  33747. maw: {
  33748. height: math.unit(5.32, "meters"),
  33749. name: "Maw",
  33750. image: {
  33751. source: "./media/characters/raylldo/maw.svg"
  33752. }
  33753. },
  33754. eye: {
  33755. height: math.unit(0.54, "meters"),
  33756. name: "Eye",
  33757. image: {
  33758. source: "./media/characters/raylldo/eye.svg"
  33759. }
  33760. },
  33761. },
  33762. [
  33763. {
  33764. name: "Normal",
  33765. height: math.unit(13, "meters"),
  33766. default: true
  33767. },
  33768. ]
  33769. ))
  33770. characterMakers.push(() => makeCharacter(
  33771. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  33772. {
  33773. anthroFront: {
  33774. height: math.unit(9, "feet"),
  33775. weight: math.unit(600, "lb"),
  33776. name: "Anthro (Front)",
  33777. image: {
  33778. source: "./media/characters/glint/anthro-front.svg",
  33779. extra: 1097/1018,
  33780. bottom: 28/1125
  33781. }
  33782. },
  33783. anthroBack: {
  33784. height: math.unit(9, "feet"),
  33785. weight: math.unit(600, "lb"),
  33786. name: "Anthro (Back)",
  33787. image: {
  33788. source: "./media/characters/glint/anthro-back.svg",
  33789. extra: 1154/997,
  33790. bottom: 36/1190
  33791. }
  33792. },
  33793. feral: {
  33794. height: math.unit(11, "feet"),
  33795. weight: math.unit(50000, "lb"),
  33796. name: "Feral",
  33797. image: {
  33798. source: "./media/characters/glint/feral.svg",
  33799. extra: 3035/1585,
  33800. bottom: 1169/4204
  33801. }
  33802. },
  33803. dickAnthro: {
  33804. height: math.unit(0.7, "meters"),
  33805. name: "Dick (Anthro)",
  33806. image: {
  33807. source: "./media/characters/glint/dick-anthro.svg"
  33808. }
  33809. },
  33810. dickFeral: {
  33811. height: math.unit(2.65, "meters"),
  33812. name: "Dick (Feral)",
  33813. image: {
  33814. source: "./media/characters/glint/dick-feral.svg"
  33815. }
  33816. },
  33817. slitHidden: {
  33818. height: math.unit(5.85, "meters"),
  33819. name: "Slit (Hidden)",
  33820. image: {
  33821. source: "./media/characters/glint/slit-hidden.svg"
  33822. }
  33823. },
  33824. slitErect: {
  33825. height: math.unit(5.85, "meters"),
  33826. name: "Slit (Erect)",
  33827. image: {
  33828. source: "./media/characters/glint/slit-erect.svg"
  33829. }
  33830. },
  33831. mawAnthro: {
  33832. height: math.unit(0.63, "meters"),
  33833. name: "Maw (Anthro)",
  33834. image: {
  33835. source: "./media/characters/glint/maw.svg"
  33836. }
  33837. },
  33838. mawFeral: {
  33839. height: math.unit(2.89, "meters"),
  33840. name: "Maw (Feral)",
  33841. image: {
  33842. source: "./media/characters/glint/maw.svg"
  33843. }
  33844. },
  33845. },
  33846. [
  33847. {
  33848. name: "Normal",
  33849. height: math.unit(9, "feet"),
  33850. default: true
  33851. },
  33852. ]
  33853. ))
  33854. characterMakers.push(() => makeCharacter(
  33855. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  33856. {
  33857. side: {
  33858. height: math.unit(15, "feet"),
  33859. weight: math.unit(5000, "kg"),
  33860. name: "Side",
  33861. image: {
  33862. source: "./media/characters/kairne/side.svg",
  33863. extra: 979/811,
  33864. bottom: 13/992
  33865. }
  33866. },
  33867. front: {
  33868. height: math.unit(15, "feet"),
  33869. weight: math.unit(5000, "kg"),
  33870. name: "Front",
  33871. image: {
  33872. source: "./media/characters/kairne/front.svg",
  33873. extra: 908/814,
  33874. bottom: 26/934
  33875. }
  33876. },
  33877. sideNsfw: {
  33878. height: math.unit(15, "feet"),
  33879. weight: math.unit(5000, "kg"),
  33880. name: "Side (NSFW)",
  33881. image: {
  33882. source: "./media/characters/kairne/side-nsfw.svg",
  33883. extra: 979/811,
  33884. bottom: 13/992
  33885. }
  33886. },
  33887. frontNsfw: {
  33888. height: math.unit(15, "feet"),
  33889. weight: math.unit(5000, "kg"),
  33890. name: "Front (NSFW)",
  33891. image: {
  33892. source: "./media/characters/kairne/front-nsfw.svg",
  33893. extra: 908/814,
  33894. bottom: 26/934
  33895. }
  33896. },
  33897. dickCaged: {
  33898. height: math.unit(0.65, "meters"),
  33899. name: "Dick-caged",
  33900. image: {
  33901. source: "./media/characters/kairne/dick-caged.svg"
  33902. }
  33903. },
  33904. dick: {
  33905. height: math.unit(0.79, "meters"),
  33906. name: "Dick",
  33907. image: {
  33908. source: "./media/characters/kairne/dick.svg"
  33909. }
  33910. },
  33911. genitals: {
  33912. height: math.unit(1.29, "meters"),
  33913. name: "Genitals",
  33914. image: {
  33915. source: "./media/characters/kairne/genitals.svg"
  33916. }
  33917. },
  33918. maw: {
  33919. height: math.unit(1.73, "meters"),
  33920. name: "Maw",
  33921. image: {
  33922. source: "./media/characters/kairne/maw.svg"
  33923. }
  33924. },
  33925. },
  33926. [
  33927. {
  33928. name: "Normal",
  33929. height: math.unit(15, "feet"),
  33930. default: true
  33931. },
  33932. ]
  33933. ))
  33934. characterMakers.push(() => makeCharacter(
  33935. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  33936. {
  33937. front: {
  33938. height: math.unit(5 + 8/12, "feet"),
  33939. weight: math.unit(139, "lb"),
  33940. name: "Front",
  33941. image: {
  33942. source: "./media/characters/biscuit-jackal/front.svg",
  33943. extra: 2106/1961,
  33944. bottom: 58/2164
  33945. }
  33946. },
  33947. back: {
  33948. height: math.unit(5 + 8/12, "feet"),
  33949. weight: math.unit(139, "lb"),
  33950. name: "Back",
  33951. image: {
  33952. source: "./media/characters/biscuit-jackal/back.svg",
  33953. extra: 2132/1976,
  33954. bottom: 57/2189
  33955. }
  33956. },
  33957. werejackal: {
  33958. height: math.unit(6 + 3/12, "feet"),
  33959. weight: math.unit(188, "lb"),
  33960. name: "Werejackal",
  33961. image: {
  33962. source: "./media/characters/biscuit-jackal/werejackal.svg",
  33963. extra: 2373/2178,
  33964. bottom: 53/2426
  33965. }
  33966. },
  33967. },
  33968. [
  33969. {
  33970. name: "Normal",
  33971. height: math.unit(5 + 8/12, "feet"),
  33972. default: true
  33973. },
  33974. ]
  33975. ))
  33976. characterMakers.push(() => makeCharacter(
  33977. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  33978. {
  33979. front: {
  33980. height: math.unit(140, "cm"),
  33981. weight: math.unit(45, "kg"),
  33982. name: "Front",
  33983. image: {
  33984. source: "./media/characters/tayra-white/front.svg",
  33985. extra: 2229/2192,
  33986. bottom: 75/2304
  33987. }
  33988. },
  33989. },
  33990. [
  33991. {
  33992. name: "Normal",
  33993. height: math.unit(140, "cm"),
  33994. default: true
  33995. },
  33996. ]
  33997. ))
  33998. characterMakers.push(() => makeCharacter(
  33999. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  34000. {
  34001. front: {
  34002. height: math.unit(4 + 5/12, "feet"),
  34003. name: "Front",
  34004. image: {
  34005. source: "./media/characters/scoop/front.svg",
  34006. extra: 1257/1136,
  34007. bottom: 69/1326
  34008. }
  34009. },
  34010. back: {
  34011. height: math.unit(4 + 5/12, "feet"),
  34012. name: "Back",
  34013. image: {
  34014. source: "./media/characters/scoop/back.svg",
  34015. extra: 1321/1152,
  34016. bottom: 32/1353
  34017. }
  34018. },
  34019. maw: {
  34020. height: math.unit(0.68, "feet"),
  34021. name: "Maw",
  34022. image: {
  34023. source: "./media/characters/scoop/maw.svg"
  34024. }
  34025. },
  34026. },
  34027. [
  34028. {
  34029. name: "Really Small",
  34030. height: math.unit(1, "mm")
  34031. },
  34032. {
  34033. name: "Micro",
  34034. height: math.unit(1, "inch")
  34035. },
  34036. {
  34037. name: "Normal",
  34038. height: math.unit(4 + 5/12, "feet"),
  34039. default: true
  34040. },
  34041. {
  34042. name: "Macro",
  34043. height: math.unit(200, "feet")
  34044. },
  34045. {
  34046. name: "Megamacro",
  34047. height: math.unit(3240, "feet")
  34048. },
  34049. {
  34050. name: "Teramacro",
  34051. height: math.unit(2500, "miles")
  34052. },
  34053. ]
  34054. ))
  34055. characterMakers.push(() => makeCharacter(
  34056. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  34057. {
  34058. front: {
  34059. height: math.unit(15 + 7/12, "feet"),
  34060. weight: math.unit(1150, "tons"),
  34061. name: "Front",
  34062. image: {
  34063. source: "./media/characters/saphinara/front.svg",
  34064. extra: 1837/1643,
  34065. bottom: 84/1921
  34066. },
  34067. form: "normal",
  34068. default: true
  34069. },
  34070. side: {
  34071. height: math.unit(15 + 7/12, "feet"),
  34072. weight: math.unit(1150, "tons"),
  34073. name: "Side",
  34074. image: {
  34075. source: "./media/characters/saphinara/side.svg",
  34076. extra: 605/547,
  34077. bottom: 6/611
  34078. },
  34079. form: "normal"
  34080. },
  34081. back: {
  34082. height: math.unit(15 + 7/12, "feet"),
  34083. weight: math.unit(1150, "tons"),
  34084. name: "Back",
  34085. image: {
  34086. source: "./media/characters/saphinara/back.svg",
  34087. extra: 591/531,
  34088. bottom: 13/604
  34089. },
  34090. form: "normal"
  34091. },
  34092. frontTail: {
  34093. height: math.unit(15 + 7/12, "feet"),
  34094. weight: math.unit(1150, "tons"),
  34095. name: "Front (Full Tail)",
  34096. image: {
  34097. source: "./media/characters/saphinara/front-tail.svg",
  34098. extra: 2256/1630,
  34099. bottom: 261/2517
  34100. },
  34101. form: "normal"
  34102. },
  34103. insides: {
  34104. height: math.unit(11.92, "feet"),
  34105. name: "Insides",
  34106. image: {
  34107. source: "./media/characters/saphinara/insides.svg"
  34108. },
  34109. form: "normal"
  34110. },
  34111. head: {
  34112. height: math.unit(4.17, "feet"),
  34113. name: "Head",
  34114. image: {
  34115. source: "./media/characters/saphinara/head.svg"
  34116. },
  34117. form: "normal"
  34118. },
  34119. tongue: {
  34120. height: math.unit(4.60, "feet"),
  34121. name: "Tongue",
  34122. image: {
  34123. source: "./media/characters/saphinara/tongue.svg"
  34124. },
  34125. form: "normal"
  34126. },
  34127. headEnraged: {
  34128. height: math.unit(5.55, "feet"),
  34129. name: "Head (Enraged)",
  34130. image: {
  34131. source: "./media/characters/saphinara/head-enraged.svg"
  34132. },
  34133. form: "normal"
  34134. },
  34135. wings: {
  34136. height: math.unit(11.95, "feet"),
  34137. name: "Wings",
  34138. image: {
  34139. source: "./media/characters/saphinara/wings.svg"
  34140. },
  34141. form: "normal"
  34142. },
  34143. feathers: {
  34144. height: math.unit(8.92, "feet"),
  34145. name: "Feathers",
  34146. image: {
  34147. source: "./media/characters/saphinara/feathers.svg"
  34148. },
  34149. form: "normal"
  34150. },
  34151. shackles: {
  34152. height: math.unit(2, "feet"),
  34153. name: "Shackles",
  34154. image: {
  34155. source: "./media/characters/saphinara/shackles.svg"
  34156. },
  34157. form: "normal"
  34158. },
  34159. eyes: {
  34160. height: math.unit(1.331, "feet"),
  34161. name: "Eyes",
  34162. image: {
  34163. source: "./media/characters/saphinara/eyes.svg"
  34164. },
  34165. form: "normal"
  34166. },
  34167. eyesEnraged: {
  34168. height: math.unit(1.331, "feet"),
  34169. name: "Eyes (Enraged)",
  34170. image: {
  34171. source: "./media/characters/saphinara/eyes-enraged.svg"
  34172. },
  34173. form: "normal"
  34174. },
  34175. trueFormSide: {
  34176. height: math.unit(200, "feet"),
  34177. weight: math.unit(1e7, "tons"),
  34178. name: "Side",
  34179. image: {
  34180. source: "./media/characters/saphinara/true-form-side.svg",
  34181. extra: 1399/770,
  34182. bottom: 97/1496
  34183. },
  34184. form: "true-form",
  34185. default: true
  34186. },
  34187. trueFormMaw: {
  34188. height: math.unit(71.5, "feet"),
  34189. name: "Maw",
  34190. image: {
  34191. source: "./media/characters/saphinara/true-form-maw.svg",
  34192. extra: 2302/1453,
  34193. bottom: 0/2302
  34194. },
  34195. form: "true-form"
  34196. },
  34197. },
  34198. [
  34199. {
  34200. name: "Normal",
  34201. height: math.unit(15 + 7/12, "feet"),
  34202. default: true,
  34203. form: "normal"
  34204. },
  34205. {
  34206. name: "Angry",
  34207. height: math.unit(30 + 6/12, "feet"),
  34208. form: "normal"
  34209. },
  34210. {
  34211. name: "Enraged",
  34212. height: math.unit(102 + 1/12, "feet"),
  34213. form: "normal"
  34214. },
  34215. {
  34216. name: "True",
  34217. height: math.unit(200, "feet"),
  34218. default: true,
  34219. form: "true-form"
  34220. }
  34221. ],
  34222. {
  34223. "normal": {
  34224. name: "Normal",
  34225. default: true
  34226. },
  34227. "true-form": {
  34228. name: "True Form"
  34229. }
  34230. }
  34231. ))
  34232. characterMakers.push(() => makeCharacter(
  34233. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  34234. {
  34235. front: {
  34236. height: math.unit(6 + 8/12, "feet"),
  34237. weight: math.unit(300, "lb"),
  34238. name: "Front",
  34239. image: {
  34240. source: "./media/characters/jrain/front.svg",
  34241. extra: 3039/2865,
  34242. bottom: 399/3438
  34243. }
  34244. },
  34245. back: {
  34246. height: math.unit(6 + 8/12, "feet"),
  34247. weight: math.unit(300, "lb"),
  34248. name: "Back",
  34249. image: {
  34250. source: "./media/characters/jrain/back.svg",
  34251. extra: 3089/2938,
  34252. bottom: 172/3261
  34253. }
  34254. },
  34255. head: {
  34256. height: math.unit(2.14, "feet"),
  34257. name: "Head",
  34258. image: {
  34259. source: "./media/characters/jrain/head.svg"
  34260. }
  34261. },
  34262. maw: {
  34263. height: math.unit(1.77, "feet"),
  34264. name: "Maw",
  34265. image: {
  34266. source: "./media/characters/jrain/maw.svg"
  34267. }
  34268. },
  34269. leftHand: {
  34270. height: math.unit(1.1, "feet"),
  34271. name: "Left Hand",
  34272. image: {
  34273. source: "./media/characters/jrain/left-hand.svg"
  34274. }
  34275. },
  34276. rightHand: {
  34277. height: math.unit(1.1, "feet"),
  34278. name: "Right Hand",
  34279. image: {
  34280. source: "./media/characters/jrain/right-hand.svg"
  34281. }
  34282. },
  34283. eye: {
  34284. height: math.unit(0.35, "feet"),
  34285. name: "Eye",
  34286. image: {
  34287. source: "./media/characters/jrain/eye.svg"
  34288. }
  34289. },
  34290. },
  34291. [
  34292. {
  34293. name: "Normal",
  34294. height: math.unit(6 + 8/12, "feet"),
  34295. default: true
  34296. },
  34297. {
  34298. name: "Casually Large",
  34299. height: math.unit(25, "feet")
  34300. },
  34301. {
  34302. name: "Giant",
  34303. height: math.unit(100, "feet")
  34304. },
  34305. {
  34306. name: "Kaiju",
  34307. height: math.unit(300, "feet")
  34308. },
  34309. ]
  34310. ))
  34311. characterMakers.push(() => makeCharacter(
  34312. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  34313. {
  34314. dragon: {
  34315. height: math.unit(5, "meters"),
  34316. name: "Dragon",
  34317. image: {
  34318. source: "./media/characters/sabrina/dragon.svg",
  34319. extra: 3670 / 2365,
  34320. bottom: 333 / 4003
  34321. }
  34322. },
  34323. gryphon: {
  34324. height: math.unit(3, "meters"),
  34325. name: "Gryphon",
  34326. image: {
  34327. source: "./media/characters/sabrina/gryphon.svg",
  34328. extra: 1576 / 945,
  34329. bottom: 71 / 1647
  34330. }
  34331. },
  34332. snake: {
  34333. height: math.unit(12, "meters"),
  34334. name: "Snake",
  34335. image: {
  34336. source: "./media/characters/sabrina/snake.svg",
  34337. extra: 1758 / 1320,
  34338. bottom: 186 / 1944
  34339. }
  34340. },
  34341. collar: {
  34342. height: math.unit(1.86, "meters"),
  34343. name: "Collar",
  34344. image: {
  34345. source: "./media/characters/sabrina/collar.svg"
  34346. }
  34347. },
  34348. eye: {
  34349. height: math.unit(0.53, "meters"),
  34350. name: "Eye",
  34351. image: {
  34352. source: "./media/characters/sabrina/eye.svg"
  34353. }
  34354. },
  34355. foot: {
  34356. height: math.unit(1.86, "meters"),
  34357. name: "Foot",
  34358. image: {
  34359. source: "./media/characters/sabrina/foot.svg"
  34360. }
  34361. },
  34362. hand: {
  34363. height: math.unit(1.32, "meters"),
  34364. name: "Hand",
  34365. image: {
  34366. source: "./media/characters/sabrina/hand.svg"
  34367. }
  34368. },
  34369. head: {
  34370. height: math.unit(2.44, "meters"),
  34371. name: "Head",
  34372. image: {
  34373. source: "./media/characters/sabrina/head.svg"
  34374. }
  34375. },
  34376. headAngry: {
  34377. height: math.unit(2.44, "meters"),
  34378. name: "Head (Angry))",
  34379. image: {
  34380. source: "./media/characters/sabrina/head-angry.svg"
  34381. }
  34382. },
  34383. maw: {
  34384. height: math.unit(1.65, "meters"),
  34385. name: "Maw",
  34386. image: {
  34387. source: "./media/characters/sabrina/maw.svg"
  34388. }
  34389. },
  34390. spikes: {
  34391. height: math.unit(1.69, "meters"),
  34392. name: "Spikes",
  34393. image: {
  34394. source: "./media/characters/sabrina/spikes.svg"
  34395. }
  34396. },
  34397. stomach: {
  34398. height: math.unit(1.15, "meters"),
  34399. name: "Stomach",
  34400. image: {
  34401. source: "./media/characters/sabrina/stomach.svg"
  34402. }
  34403. },
  34404. tongue: {
  34405. height: math.unit(1.27, "meters"),
  34406. name: "Tongue",
  34407. image: {
  34408. source: "./media/characters/sabrina/tongue.svg"
  34409. }
  34410. },
  34411. wingDorsal: {
  34412. height: math.unit(4.85, "meters"),
  34413. name: "Wing (Dorsal)",
  34414. image: {
  34415. source: "./media/characters/sabrina/wing-dorsal.svg"
  34416. }
  34417. },
  34418. wingVentral: {
  34419. height: math.unit(4.85, "meters"),
  34420. name: "Wing (Ventral)",
  34421. image: {
  34422. source: "./media/characters/sabrina/wing-ventral.svg"
  34423. }
  34424. },
  34425. },
  34426. [
  34427. {
  34428. name: "Normal",
  34429. height: math.unit(5, "meters"),
  34430. default: true
  34431. },
  34432. ]
  34433. ))
  34434. characterMakers.push(() => makeCharacter(
  34435. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  34436. {
  34437. frontMaid: {
  34438. height: math.unit(5 + 5/12, "feet"),
  34439. weight: math.unit(130, "lb"),
  34440. name: "Front (Maid)",
  34441. image: {
  34442. source: "./media/characters/midnight-tales/front-maid.svg",
  34443. extra: 489/454,
  34444. bottom: 61/550
  34445. }
  34446. },
  34447. frontFormal: {
  34448. height: math.unit(5 + 5/12, "feet"),
  34449. weight: math.unit(130, "lb"),
  34450. name: "Front (Formal)",
  34451. image: {
  34452. source: "./media/characters/midnight-tales/front-formal.svg",
  34453. extra: 489/454,
  34454. bottom: 61/550
  34455. }
  34456. },
  34457. back: {
  34458. height: math.unit(5 + 5/12, "feet"),
  34459. weight: math.unit(130, "lb"),
  34460. name: "Back",
  34461. image: {
  34462. source: "./media/characters/midnight-tales/back.svg",
  34463. extra: 498/456,
  34464. bottom: 33/531
  34465. }
  34466. },
  34467. frontBeast: {
  34468. height: math.unit(40, "feet"),
  34469. weight: math.unit(64000, "lb"),
  34470. name: "Front (Beast)",
  34471. image: {
  34472. source: "./media/characters/midnight-tales/front-beast.svg",
  34473. extra: 927/860,
  34474. bottom: 53/980
  34475. }
  34476. },
  34477. backBeast: {
  34478. height: math.unit(40, "feet"),
  34479. weight: math.unit(64000, "lb"),
  34480. name: "Back (Beast)",
  34481. image: {
  34482. source: "./media/characters/midnight-tales/back-beast.svg",
  34483. extra: 929/855,
  34484. bottom: 16/945
  34485. }
  34486. },
  34487. footBeast: {
  34488. height: math.unit(6.7, "feet"),
  34489. name: "Foot (Beast)",
  34490. image: {
  34491. source: "./media/characters/midnight-tales/foot-beast.svg"
  34492. }
  34493. },
  34494. headBeast: {
  34495. height: math.unit(8, "feet"),
  34496. name: "Head (Beast)",
  34497. image: {
  34498. source: "./media/characters/midnight-tales/head-beast.svg"
  34499. }
  34500. },
  34501. },
  34502. [
  34503. {
  34504. name: "Normal",
  34505. height: math.unit(5 + 5 / 12, "feet"),
  34506. default: true
  34507. },
  34508. {
  34509. name: "Macro",
  34510. height: math.unit(25, "feet")
  34511. },
  34512. ]
  34513. ))
  34514. characterMakers.push(() => makeCharacter(
  34515. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  34516. {
  34517. front: {
  34518. height: math.unit(5 + 10/12, "feet"),
  34519. name: "Front",
  34520. image: {
  34521. source: "./media/characters/argon/front.svg",
  34522. extra: 2009/1935,
  34523. bottom: 118/2127
  34524. }
  34525. },
  34526. back: {
  34527. height: math.unit(5 + 10/12, "feet"),
  34528. name: "Back",
  34529. image: {
  34530. source: "./media/characters/argon/back.svg",
  34531. extra: 2047/1992,
  34532. bottom: 20/2067
  34533. }
  34534. },
  34535. frontDressed: {
  34536. height: math.unit(5 + 10/12, "feet"),
  34537. name: "Front (Dressed)",
  34538. image: {
  34539. source: "./media/characters/argon/front-dressed.svg",
  34540. extra: 2009/1935,
  34541. bottom: 118/2127
  34542. }
  34543. },
  34544. },
  34545. [
  34546. {
  34547. name: "Normal",
  34548. height: math.unit(5 + 10/12, "feet"),
  34549. default: true
  34550. },
  34551. ]
  34552. ))
  34553. characterMakers.push(() => makeCharacter(
  34554. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  34555. {
  34556. front: {
  34557. height: math.unit(8 + 6/12, "feet"),
  34558. weight: math.unit(1150, "lb"),
  34559. name: "Front",
  34560. image: {
  34561. source: "./media/characters/kichi/front.svg",
  34562. extra: 1267/1164,
  34563. bottom: 61/1328
  34564. }
  34565. },
  34566. back: {
  34567. height: math.unit(8 + 6/12, "feet"),
  34568. weight: math.unit(1150, "lb"),
  34569. name: "Back",
  34570. image: {
  34571. source: "./media/characters/kichi/back.svg",
  34572. extra: 1273/1166,
  34573. bottom: 33/1306
  34574. }
  34575. },
  34576. },
  34577. [
  34578. {
  34579. name: "Normal",
  34580. height: math.unit(8 + 6/12, "feet"),
  34581. default: true
  34582. },
  34583. ]
  34584. ))
  34585. characterMakers.push(() => makeCharacter(
  34586. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  34587. {
  34588. front: {
  34589. height: math.unit(6, "feet"),
  34590. weight: math.unit(210, "lb"),
  34591. name: "Front",
  34592. image: {
  34593. source: "./media/characters/manetel-greyscale/front.svg",
  34594. extra: 350/312,
  34595. bottom: 8/358
  34596. }
  34597. },
  34598. },
  34599. [
  34600. {
  34601. name: "Micro",
  34602. height: math.unit(2, "inches")
  34603. },
  34604. {
  34605. name: "Normal",
  34606. height: math.unit(6, "feet"),
  34607. default: true
  34608. },
  34609. {
  34610. name: "Minimacro",
  34611. height: math.unit(17, "feet")
  34612. },
  34613. {
  34614. name: "Macro",
  34615. height: math.unit(117, "feet")
  34616. },
  34617. ]
  34618. ))
  34619. characterMakers.push(() => makeCharacter(
  34620. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  34621. {
  34622. side: {
  34623. height: math.unit(5 + 1/12, "feet"),
  34624. weight: math.unit(418, "lb"),
  34625. name: "Side",
  34626. image: {
  34627. source: "./media/characters/softpurr/side.svg",
  34628. extra: 1993/1945,
  34629. bottom: 134/2127
  34630. }
  34631. },
  34632. front: {
  34633. height: math.unit(5 + 1/12, "feet"),
  34634. weight: math.unit(418, "lb"),
  34635. name: "Front",
  34636. image: {
  34637. source: "./media/characters/softpurr/front.svg",
  34638. extra: 1950/1856,
  34639. bottom: 174/2124
  34640. }
  34641. },
  34642. paw: {
  34643. height: math.unit(1, "feet"),
  34644. name: "Paw",
  34645. image: {
  34646. source: "./media/characters/softpurr/paw.svg"
  34647. }
  34648. },
  34649. },
  34650. [
  34651. {
  34652. name: "Normal",
  34653. height: math.unit(5 + 1/12, "feet"),
  34654. default: true
  34655. },
  34656. ]
  34657. ))
  34658. characterMakers.push(() => makeCharacter(
  34659. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  34660. {
  34661. front: {
  34662. height: math.unit(260, "meters"),
  34663. name: "Front",
  34664. image: {
  34665. source: "./media/characters/anahita/front.svg",
  34666. extra: 665/635,
  34667. bottom: 89/754
  34668. }
  34669. },
  34670. },
  34671. [
  34672. {
  34673. name: "Macro",
  34674. height: math.unit(260, "meters"),
  34675. default: true
  34676. },
  34677. ]
  34678. ))
  34679. characterMakers.push(() => makeCharacter(
  34680. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  34681. {
  34682. front: {
  34683. height: math.unit(4 + 10/12, "feet"),
  34684. weight: math.unit(160, "lb"),
  34685. name: "Front",
  34686. image: {
  34687. source: "./media/characters/chip-mouse/front.svg",
  34688. extra: 3528/3408,
  34689. bottom: 0/3528
  34690. }
  34691. },
  34692. frontNsfw: {
  34693. height: math.unit(4 + 10/12, "feet"),
  34694. weight: math.unit(160, "lb"),
  34695. name: "Front (NSFW)",
  34696. image: {
  34697. source: "./media/characters/chip-mouse/front-nsfw.svg",
  34698. extra: 3528/3408,
  34699. bottom: 0/3528
  34700. }
  34701. },
  34702. },
  34703. [
  34704. {
  34705. name: "Normal",
  34706. height: math.unit(4 + 10/12, "feet"),
  34707. default: true
  34708. },
  34709. ]
  34710. ))
  34711. characterMakers.push(() => makeCharacter(
  34712. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  34713. {
  34714. side: {
  34715. height: math.unit(10, "feet"),
  34716. weight: math.unit(14000, "lb"),
  34717. name: "Side",
  34718. image: {
  34719. source: "./media/characters/kremm/side.svg",
  34720. extra: 1390/1053,
  34721. bottom: 90/1480
  34722. }
  34723. },
  34724. gut: {
  34725. height: math.unit(5.8, "feet"),
  34726. name: "Gut",
  34727. image: {
  34728. source: "./media/characters/kremm/gut.svg"
  34729. }
  34730. },
  34731. ass: {
  34732. height: math.unit(6.1, "feet"),
  34733. name: "Ass",
  34734. image: {
  34735. source: "./media/characters/kremm/ass.svg"
  34736. }
  34737. },
  34738. jaws: {
  34739. height: math.unit(2.2, "feet"),
  34740. name: "Jaws",
  34741. image: {
  34742. source: "./media/characters/kremm/jaws.svg"
  34743. }
  34744. },
  34745. dick: {
  34746. height: math.unit(4.26, "feet"),
  34747. name: "Dick",
  34748. image: {
  34749. source: "./media/characters/kremm/dick.svg"
  34750. }
  34751. },
  34752. },
  34753. [
  34754. {
  34755. name: "Normal",
  34756. height: math.unit(10, "feet"),
  34757. default: true
  34758. },
  34759. ]
  34760. ))
  34761. characterMakers.push(() => makeCharacter(
  34762. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  34763. {
  34764. front: {
  34765. height: math.unit(30, "stories"),
  34766. name: "Front",
  34767. image: {
  34768. source: "./media/characters/kai/front.svg",
  34769. extra: 1892/1718,
  34770. bottom: 162/2054
  34771. }
  34772. },
  34773. },
  34774. [
  34775. {
  34776. name: "Macro",
  34777. height: math.unit(30, "stories"),
  34778. default: true
  34779. },
  34780. ]
  34781. ))
  34782. characterMakers.push(() => makeCharacter(
  34783. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  34784. {
  34785. front: {
  34786. height: math.unit(6 + 4/12, "feet"),
  34787. weight: math.unit(145, "lb"),
  34788. name: "Front",
  34789. image: {
  34790. source: "./media/characters/sykes/front.svg",
  34791. extra: 1321 / 1187,
  34792. bottom: 66 / 1387
  34793. }
  34794. },
  34795. back: {
  34796. height: math.unit(6 + 4/12, "feet"),
  34797. weight: math.unit(145, "lb"),
  34798. name: "Back",
  34799. image: {
  34800. source: "./media/characters/sykes/back.svg",
  34801. extra: 1326/1181,
  34802. bottom: 31/1357
  34803. }
  34804. },
  34805. traditionalOutfit: {
  34806. height: math.unit(6 + 4/12, "feet"),
  34807. weight: math.unit(145, "lb"),
  34808. name: "Traditional Outfit",
  34809. image: {
  34810. source: "./media/characters/sykes/traditional-outfit.svg",
  34811. extra: 1321 / 1187,
  34812. bottom: 66 / 1387
  34813. }
  34814. },
  34815. adventureOutfit: {
  34816. height: math.unit(6 + 4/12, "feet"),
  34817. weight: math.unit(145, "lb"),
  34818. name: "Adventure Outfit",
  34819. image: {
  34820. source: "./media/characters/sykes/adventure-outfit.svg",
  34821. extra: 1321 / 1187,
  34822. bottom: 66 / 1387
  34823. }
  34824. },
  34825. handLeft: {
  34826. height: math.unit(0.9, "feet"),
  34827. name: "Hand (Left)",
  34828. image: {
  34829. source: "./media/characters/sykes/hand-left.svg"
  34830. }
  34831. },
  34832. handRight: {
  34833. height: math.unit(0.839, "feet"),
  34834. name: "Hand (Right)",
  34835. image: {
  34836. source: "./media/characters/sykes/hand-right.svg"
  34837. }
  34838. },
  34839. leftFoot: {
  34840. height: math.unit(1.2, "feet"),
  34841. name: "Foot (Left)",
  34842. image: {
  34843. source: "./media/characters/sykes/foot-left.svg"
  34844. }
  34845. },
  34846. rightFoot: {
  34847. height: math.unit(1.2, "feet"),
  34848. name: "Foot (Right)",
  34849. image: {
  34850. source: "./media/characters/sykes/foot-right.svg"
  34851. }
  34852. },
  34853. maw: {
  34854. height: math.unit(1.93, "feet"),
  34855. name: "Maw",
  34856. image: {
  34857. source: "./media/characters/sykes/maw.svg"
  34858. }
  34859. },
  34860. teeth: {
  34861. height: math.unit(0.51, "feet"),
  34862. name: "Teeth",
  34863. image: {
  34864. source: "./media/characters/sykes/teeth.svg"
  34865. }
  34866. },
  34867. tongue: {
  34868. height: math.unit(2.13, "feet"),
  34869. name: "Tongue",
  34870. image: {
  34871. source: "./media/characters/sykes/tongue.svg"
  34872. }
  34873. },
  34874. uvula: {
  34875. height: math.unit(0.16, "feet"),
  34876. name: "Uvula",
  34877. image: {
  34878. source: "./media/characters/sykes/uvula.svg"
  34879. }
  34880. },
  34881. collar: {
  34882. height: math.unit(0.287, "feet"),
  34883. name: "Collar",
  34884. image: {
  34885. source: "./media/characters/sykes/collar.svg"
  34886. }
  34887. },
  34888. tail: {
  34889. height: math.unit(3.8, "feet"),
  34890. name: "Tail",
  34891. image: {
  34892. source: "./media/characters/sykes/tail.svg"
  34893. }
  34894. },
  34895. },
  34896. [
  34897. {
  34898. name: "Shrunken",
  34899. height: math.unit(5, "inches")
  34900. },
  34901. {
  34902. name: "Normal",
  34903. height: math.unit(6 + 4 / 12, "feet"),
  34904. default: true
  34905. },
  34906. {
  34907. name: "Big",
  34908. height: math.unit(15, "feet")
  34909. },
  34910. ]
  34911. ))
  34912. characterMakers.push(() => makeCharacter(
  34913. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  34914. {
  34915. front: {
  34916. height: math.unit(5 + 8/12, "feet"),
  34917. weight: math.unit(190, "lb"),
  34918. name: "Front",
  34919. image: {
  34920. source: "./media/characters/oven-otter/front.svg",
  34921. extra: 1809/1740,
  34922. bottom: 181/1990
  34923. }
  34924. },
  34925. back: {
  34926. height: math.unit(5 + 8/12, "feet"),
  34927. weight: math.unit(190, "lb"),
  34928. name: "Back",
  34929. image: {
  34930. source: "./media/characters/oven-otter/back.svg",
  34931. extra: 1709/1635,
  34932. bottom: 118/1827
  34933. }
  34934. },
  34935. hand: {
  34936. height: math.unit(1.07, "feet"),
  34937. name: "Hand",
  34938. image: {
  34939. source: "./media/characters/oven-otter/hand.svg"
  34940. }
  34941. },
  34942. beans: {
  34943. height: math.unit(1.74, "feet"),
  34944. name: "Beans",
  34945. image: {
  34946. source: "./media/characters/oven-otter/beans.svg"
  34947. }
  34948. },
  34949. },
  34950. [
  34951. {
  34952. name: "Micro",
  34953. height: math.unit(0.5, "inches")
  34954. },
  34955. {
  34956. name: "Normal",
  34957. height: math.unit(5 + 8/12, "feet"),
  34958. default: true
  34959. },
  34960. {
  34961. name: "Macro",
  34962. height: math.unit(250, "feet")
  34963. },
  34964. {
  34965. name: "Really High",
  34966. height: math.unit(420, "feet")
  34967. },
  34968. ]
  34969. ))
  34970. characterMakers.push(() => makeCharacter(
  34971. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  34972. {
  34973. front: {
  34974. height: math.unit(5, "meters"),
  34975. weight: math.unit(292000000000000, "kg"),
  34976. name: "Front",
  34977. image: {
  34978. source: "./media/characters/devourer/front.svg",
  34979. extra: 1800/1733,
  34980. bottom: 211/2011
  34981. }
  34982. },
  34983. maw: {
  34984. height: math.unit(1.1, "meter"),
  34985. name: "Maw",
  34986. image: {
  34987. source: "./media/characters/devourer/maw.svg"
  34988. }
  34989. },
  34990. },
  34991. [
  34992. {
  34993. name: "Small",
  34994. height: math.unit(3, "meters")
  34995. },
  34996. {
  34997. name: "Large",
  34998. height: math.unit(5, "meters"),
  34999. default: true
  35000. },
  35001. ]
  35002. ))
  35003. characterMakers.push(() => makeCharacter(
  35004. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  35005. {
  35006. front: {
  35007. height: math.unit(6, "feet"),
  35008. weight: math.unit(400, "lb"),
  35009. name: "Front",
  35010. image: {
  35011. source: "./media/characters/ellarby/front.svg",
  35012. extra: 1909/1763,
  35013. bottom: 80/1989
  35014. }
  35015. },
  35016. back: {
  35017. height: math.unit(6, "feet"),
  35018. weight: math.unit(400, "lb"),
  35019. name: "Back",
  35020. image: {
  35021. source: "./media/characters/ellarby/back.svg",
  35022. extra: 1914/1784,
  35023. bottom: 172/2086
  35024. }
  35025. },
  35026. },
  35027. [
  35028. {
  35029. name: "Mischief",
  35030. height: math.unit(18, "inches")
  35031. },
  35032. {
  35033. name: "Trouble",
  35034. height: math.unit(12, "feet")
  35035. },
  35036. {
  35037. name: "Havoc",
  35038. height: math.unit(200, "feet"),
  35039. default: true
  35040. },
  35041. {
  35042. name: "Pandemonium",
  35043. height: math.unit(1, "mile")
  35044. },
  35045. {
  35046. name: "Catastrophe",
  35047. height: math.unit(100, "miles")
  35048. },
  35049. ]
  35050. ))
  35051. characterMakers.push(() => makeCharacter(
  35052. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  35053. {
  35054. front: {
  35055. height: math.unit(4.7, "meters"),
  35056. weight: math.unit(6500, "kg"),
  35057. name: "Front",
  35058. image: {
  35059. source: "./media/characters/vex/front.svg",
  35060. extra: 1288/1140,
  35061. bottom: 100/1388
  35062. }
  35063. },
  35064. },
  35065. [
  35066. {
  35067. name: "Normal",
  35068. height: math.unit(4.7, "meters"),
  35069. default: true
  35070. },
  35071. ]
  35072. ))
  35073. characterMakers.push(() => makeCharacter(
  35074. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  35075. {
  35076. normal: {
  35077. height: math.unit(6, "feet"),
  35078. weight: math.unit(350, "lb"),
  35079. name: "Normal",
  35080. image: {
  35081. source: "./media/characters/teshy/normal.svg",
  35082. extra: 1795/1735,
  35083. bottom: 16/1811
  35084. }
  35085. },
  35086. monsterFront: {
  35087. height: math.unit(12, "feet"),
  35088. weight: math.unit(4700, "lb"),
  35089. name: "Monster (Front)",
  35090. image: {
  35091. source: "./media/characters/teshy/monster-front.svg",
  35092. extra: 2042/2034,
  35093. bottom: 128/2170
  35094. }
  35095. },
  35096. monsterSide: {
  35097. height: math.unit(12, "feet"),
  35098. weight: math.unit(4700, "lb"),
  35099. name: "Monster (Side)",
  35100. image: {
  35101. source: "./media/characters/teshy/monster-side.svg",
  35102. extra: 2067/2056,
  35103. bottom: 70/2137
  35104. }
  35105. },
  35106. monsterBack: {
  35107. height: math.unit(12, "feet"),
  35108. weight: math.unit(4700, "lb"),
  35109. name: "Monster (Back)",
  35110. image: {
  35111. source: "./media/characters/teshy/monster-back.svg",
  35112. extra: 1921/1914,
  35113. bottom: 171/2092
  35114. }
  35115. },
  35116. },
  35117. [
  35118. {
  35119. name: "Normal",
  35120. height: math.unit(6, "feet"),
  35121. default: true
  35122. },
  35123. ]
  35124. ))
  35125. characterMakers.push(() => makeCharacter(
  35126. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  35127. {
  35128. front: {
  35129. height: math.unit(6, "feet"),
  35130. name: "Front",
  35131. image: {
  35132. source: "./media/characters/ramey/front.svg",
  35133. extra: 790/787,
  35134. bottom: 27/817
  35135. }
  35136. },
  35137. },
  35138. [
  35139. {
  35140. name: "Normal",
  35141. height: math.unit(6, "feet"),
  35142. default: true
  35143. },
  35144. ]
  35145. ))
  35146. characterMakers.push(() => makeCharacter(
  35147. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  35148. {
  35149. front: {
  35150. height: math.unit(5 + 5/12, "feet"),
  35151. weight: math.unit(120, "lb"),
  35152. name: "Front",
  35153. image: {
  35154. source: "./media/characters/phirae/front.svg",
  35155. extra: 2491/2436,
  35156. bottom: 38/2529
  35157. }
  35158. },
  35159. },
  35160. [
  35161. {
  35162. name: "Normal",
  35163. height: math.unit(5 + 5/12, "feet"),
  35164. default: true
  35165. },
  35166. ]
  35167. ))
  35168. characterMakers.push(() => makeCharacter(
  35169. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  35170. {
  35171. front: {
  35172. height: math.unit(5 + 3/12, "feet"),
  35173. name: "Front",
  35174. image: {
  35175. source: "./media/characters/stagglas/front.svg",
  35176. extra: 962/882,
  35177. bottom: 53/1015
  35178. }
  35179. },
  35180. feral: {
  35181. height: math.unit(335, "cm"),
  35182. name: "Feral",
  35183. image: {
  35184. source: "./media/characters/stagglas/feral.svg",
  35185. extra: 1732/1090,
  35186. bottom: 48/1780
  35187. }
  35188. },
  35189. },
  35190. [
  35191. {
  35192. name: "Normal",
  35193. height: math.unit(5 + 3/12, "feet"),
  35194. default: true
  35195. },
  35196. ]
  35197. ))
  35198. characterMakers.push(() => makeCharacter(
  35199. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  35200. {
  35201. front: {
  35202. height: math.unit(5 + 4/12, "feet"),
  35203. weight: math.unit(145, "lb"),
  35204. name: "Front",
  35205. image: {
  35206. source: "./media/characters/starra/front.svg",
  35207. extra: 1790/1691,
  35208. bottom: 91/1881
  35209. }
  35210. },
  35211. },
  35212. [
  35213. {
  35214. name: "Normal",
  35215. height: math.unit(5 + 4/12, "feet"),
  35216. default: true
  35217. },
  35218. ]
  35219. ))
  35220. characterMakers.push(() => makeCharacter(
  35221. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  35222. {
  35223. front: {
  35224. height: math.unit(2.2, "meters"),
  35225. name: "Front",
  35226. image: {
  35227. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  35228. extra: 1194/1005,
  35229. bottom: 25/1219
  35230. }
  35231. },
  35232. },
  35233. [
  35234. {
  35235. name: "Normal",
  35236. height: math.unit(2.2, "meters"),
  35237. default: true
  35238. },
  35239. ]
  35240. ))
  35241. characterMakers.push(() => makeCharacter(
  35242. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  35243. {
  35244. side: {
  35245. height: math.unit(8 + 2/12, "feet"),
  35246. weight: math.unit(1240, "lb"),
  35247. name: "Side",
  35248. image: {
  35249. source: "./media/characters/mika-valentine/side.svg",
  35250. extra: 2670/2501,
  35251. bottom: 250/2920
  35252. }
  35253. },
  35254. },
  35255. [
  35256. {
  35257. name: "Normal",
  35258. height: math.unit(8 + 2/12, "feet"),
  35259. default: true
  35260. },
  35261. ]
  35262. ))
  35263. characterMakers.push(() => makeCharacter(
  35264. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  35265. {
  35266. front: {
  35267. height: math.unit(7 + 2/12, "feet"),
  35268. name: "Front",
  35269. image: {
  35270. source: "./media/characters/xoltol/front.svg",
  35271. extra: 2212/2124,
  35272. bottom: 84/2296
  35273. }
  35274. },
  35275. side: {
  35276. height: math.unit(7 + 2/12, "feet"),
  35277. name: "Side",
  35278. image: {
  35279. source: "./media/characters/xoltol/side.svg",
  35280. extra: 2273/2197,
  35281. bottom: 26/2299
  35282. }
  35283. },
  35284. hand: {
  35285. height: math.unit(2.5, "feet"),
  35286. name: "Hand",
  35287. image: {
  35288. source: "./media/characters/xoltol/hand.svg"
  35289. }
  35290. },
  35291. },
  35292. [
  35293. {
  35294. name: "Small-ish",
  35295. height: math.unit(5 + 11/12, "feet")
  35296. },
  35297. {
  35298. name: "Normal",
  35299. height: math.unit(7 + 2/12, "feet")
  35300. },
  35301. {
  35302. name: "\"Macro\"",
  35303. height: math.unit(14 + 9/12, "feet"),
  35304. default: true
  35305. },
  35306. {
  35307. name: "Alternate Height",
  35308. height: math.unit(20, "feet")
  35309. },
  35310. {
  35311. name: "Actually Macro",
  35312. height: math.unit(100, "feet")
  35313. },
  35314. ]
  35315. ))
  35316. characterMakers.push(() => makeCharacter(
  35317. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  35318. {
  35319. front: {
  35320. height: math.unit(5 + 2/12, "feet"),
  35321. name: "Front",
  35322. image: {
  35323. source: "./media/characters/kotetsu-redwood/front.svg",
  35324. extra: 1053/942,
  35325. bottom: 60/1113
  35326. }
  35327. },
  35328. },
  35329. [
  35330. {
  35331. name: "Normal",
  35332. height: math.unit(5 + 2/12, "feet"),
  35333. default: true
  35334. },
  35335. ]
  35336. ))
  35337. characterMakers.push(() => makeCharacter(
  35338. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  35339. {
  35340. front: {
  35341. height: math.unit(2.4, "meters"),
  35342. weight: math.unit(125, "kg"),
  35343. name: "Front",
  35344. image: {
  35345. source: "./media/characters/lilith/front.svg",
  35346. extra: 1590/1513,
  35347. bottom: 203/1793
  35348. }
  35349. },
  35350. },
  35351. [
  35352. {
  35353. name: "Humanoid",
  35354. height: math.unit(2.4, "meters")
  35355. },
  35356. {
  35357. name: "Normal",
  35358. height: math.unit(6, "meters"),
  35359. default: true
  35360. },
  35361. {
  35362. name: "Largest",
  35363. height: math.unit(55, "meters")
  35364. },
  35365. ]
  35366. ))
  35367. characterMakers.push(() => makeCharacter(
  35368. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  35369. {
  35370. front: {
  35371. height: math.unit(8 + 4/12, "feet"),
  35372. weight: math.unit(535, "lb"),
  35373. name: "Front",
  35374. image: {
  35375. source: "./media/characters/beh'kah-bolger/front.svg",
  35376. extra: 1660/1603,
  35377. bottom: 37/1697
  35378. }
  35379. },
  35380. },
  35381. [
  35382. {
  35383. name: "Normal",
  35384. height: math.unit(8 + 4/12, "feet"),
  35385. default: true
  35386. },
  35387. {
  35388. name: "Kaiju",
  35389. height: math.unit(250, "feet")
  35390. },
  35391. {
  35392. name: "Still Growing",
  35393. height: math.unit(10, "miles")
  35394. },
  35395. {
  35396. name: "Continental",
  35397. height: math.unit(5000, "miles")
  35398. },
  35399. {
  35400. name: "Final Form",
  35401. height: math.unit(2500000, "miles")
  35402. },
  35403. ]
  35404. ))
  35405. characterMakers.push(() => makeCharacter(
  35406. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  35407. {
  35408. front: {
  35409. height: math.unit(7 + 2/12, "feet"),
  35410. weight: math.unit(230, "kg"),
  35411. name: "Front",
  35412. image: {
  35413. source: "./media/characters/tatyana-milewska/front.svg",
  35414. extra: 1199/1150,
  35415. bottom: 86/1285
  35416. }
  35417. },
  35418. },
  35419. [
  35420. {
  35421. name: "Normal",
  35422. height: math.unit(7 + 2/12, "feet"),
  35423. default: true
  35424. },
  35425. {
  35426. name: "Big",
  35427. height: math.unit(12, "feet")
  35428. },
  35429. {
  35430. name: "Minimacro",
  35431. height: math.unit(20, "feet")
  35432. },
  35433. {
  35434. name: "Macro",
  35435. height: math.unit(120, "feet")
  35436. },
  35437. ]
  35438. ))
  35439. characterMakers.push(() => makeCharacter(
  35440. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  35441. {
  35442. front: {
  35443. height: math.unit(7 + 8/12, "feet"),
  35444. weight: math.unit(152, "kg"),
  35445. name: "Front",
  35446. image: {
  35447. source: "./media/characters/helen-arri/front.svg",
  35448. extra: 440/423,
  35449. bottom: 14/454
  35450. }
  35451. },
  35452. back: {
  35453. height: math.unit(7 + 8/12, "feet"),
  35454. weight: math.unit(152, "kg"),
  35455. name: "Back",
  35456. image: {
  35457. source: "./media/characters/helen-arri/back.svg",
  35458. extra: 443/426,
  35459. bottom: 8/451
  35460. }
  35461. },
  35462. },
  35463. [
  35464. {
  35465. name: "Normal",
  35466. height: math.unit(7 + 8/12, "feet"),
  35467. default: true
  35468. },
  35469. {
  35470. name: "Big",
  35471. height: math.unit(14, "feet")
  35472. },
  35473. {
  35474. name: "Minimacro",
  35475. height: math.unit(24, "feet")
  35476. },
  35477. {
  35478. name: "Macro",
  35479. height: math.unit(140, "feet")
  35480. },
  35481. ]
  35482. ))
  35483. characterMakers.push(() => makeCharacter(
  35484. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  35485. {
  35486. front: {
  35487. height: math.unit(6, "meters"),
  35488. name: "Front",
  35489. image: {
  35490. source: "./media/characters/ehanu-rehu/front.svg",
  35491. extra: 1800/1800,
  35492. bottom: 59/1859
  35493. }
  35494. },
  35495. },
  35496. [
  35497. {
  35498. name: "Normal",
  35499. height: math.unit(6, "meters"),
  35500. default: true
  35501. },
  35502. ]
  35503. ))
  35504. characterMakers.push(() => makeCharacter(
  35505. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  35506. {
  35507. front: {
  35508. height: math.unit(7 + 3/12, "feet"),
  35509. name: "Front",
  35510. image: {
  35511. source: "./media/characters/renholder/front.svg",
  35512. extra: 3096/2960,
  35513. bottom: 250/3346
  35514. }
  35515. },
  35516. },
  35517. [
  35518. {
  35519. name: "Normal Bat",
  35520. height: math.unit(7 + 3/12, "feet"),
  35521. default: true
  35522. },
  35523. {
  35524. name: "Slightly Tall Bat",
  35525. height: math.unit(100, "feet")
  35526. },
  35527. {
  35528. name: "Big Bat",
  35529. height: math.unit(1000, "feet")
  35530. },
  35531. {
  35532. name: "City-Sized Bat",
  35533. height: math.unit(200000, "feet")
  35534. },
  35535. {
  35536. name: "Bigger Bat",
  35537. height: math.unit(10000, "miles")
  35538. },
  35539. {
  35540. name: "Solar Sized Bat",
  35541. height: math.unit(100, "AU")
  35542. },
  35543. {
  35544. name: "Galactic Bat",
  35545. height: math.unit(200000, "lightyears")
  35546. },
  35547. {
  35548. name: "Universally Known Bat",
  35549. height: math.unit(1, "universe")
  35550. },
  35551. ]
  35552. ))
  35553. characterMakers.push(() => makeCharacter(
  35554. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  35555. {
  35556. front: {
  35557. height: math.unit(6 + 11/12, "feet"),
  35558. weight: math.unit(250, "lb"),
  35559. name: "Front",
  35560. image: {
  35561. source: "./media/characters/cookiecat/front.svg",
  35562. extra: 893/827,
  35563. bottom: 14/907
  35564. }
  35565. },
  35566. },
  35567. [
  35568. {
  35569. name: "Micro",
  35570. height: math.unit(3, "inches")
  35571. },
  35572. {
  35573. name: "Normal",
  35574. height: math.unit(6 + 11/12, "feet"),
  35575. default: true
  35576. },
  35577. {
  35578. name: "Macro",
  35579. height: math.unit(100, "feet")
  35580. },
  35581. {
  35582. name: "Macro+",
  35583. height: math.unit(404, "feet")
  35584. },
  35585. {
  35586. name: "Megamacro",
  35587. height: math.unit(165, "miles")
  35588. },
  35589. {
  35590. name: "Planetary",
  35591. height: math.unit(4600, "miles")
  35592. },
  35593. ]
  35594. ))
  35595. characterMakers.push(() => makeCharacter(
  35596. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  35597. {
  35598. front: {
  35599. height: math.unit(10 + 3/12, "feet"),
  35600. weight: math.unit(1500, "lb"),
  35601. name: "Front",
  35602. image: {
  35603. source: "./media/characters/tux-kusanagi/front.svg",
  35604. extra: 944/840,
  35605. bottom: 39/983
  35606. }
  35607. },
  35608. back: {
  35609. height: math.unit(10 + 3/12, "feet"),
  35610. weight: math.unit(1500, "lb"),
  35611. name: "Back",
  35612. image: {
  35613. source: "./media/characters/tux-kusanagi/back.svg",
  35614. extra: 941/842,
  35615. bottom: 28/969
  35616. }
  35617. },
  35618. rump: {
  35619. height: math.unit(5.25, "feet"),
  35620. name: "Rump",
  35621. image: {
  35622. source: "./media/characters/tux-kusanagi/rump.svg"
  35623. }
  35624. },
  35625. beak: {
  35626. height: math.unit(1.54, "feet"),
  35627. name: "Beak",
  35628. image: {
  35629. source: "./media/characters/tux-kusanagi/beak.svg"
  35630. }
  35631. },
  35632. },
  35633. [
  35634. {
  35635. name: "Normal",
  35636. height: math.unit(10 + 3/12, "feet"),
  35637. default: true
  35638. },
  35639. ]
  35640. ))
  35641. characterMakers.push(() => makeCharacter(
  35642. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  35643. {
  35644. front: {
  35645. height: math.unit(58, "feet"),
  35646. weight: math.unit(200, "tons"),
  35647. name: "Front",
  35648. image: {
  35649. source: "./media/characters/uzarmazari/front.svg",
  35650. extra: 1575/1455,
  35651. bottom: 152/1727
  35652. }
  35653. },
  35654. back: {
  35655. height: math.unit(58, "feet"),
  35656. weight: math.unit(200, "tons"),
  35657. name: "Back",
  35658. image: {
  35659. source: "./media/characters/uzarmazari/back.svg",
  35660. extra: 1585/1510,
  35661. bottom: 157/1742
  35662. }
  35663. },
  35664. head: {
  35665. height: math.unit(26, "feet"),
  35666. name: "Head",
  35667. image: {
  35668. source: "./media/characters/uzarmazari/head.svg"
  35669. }
  35670. },
  35671. },
  35672. [
  35673. {
  35674. name: "Normal",
  35675. height: math.unit(58, "feet"),
  35676. default: true
  35677. },
  35678. ]
  35679. ))
  35680. characterMakers.push(() => makeCharacter(
  35681. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  35682. {
  35683. side: {
  35684. height: math.unit(15, "feet"),
  35685. name: "Side",
  35686. image: {
  35687. source: "./media/characters/akitu/side.svg",
  35688. extra: 1421/1321,
  35689. bottom: 157/1578
  35690. }
  35691. },
  35692. front: {
  35693. height: math.unit(15, "feet"),
  35694. name: "Front",
  35695. image: {
  35696. source: "./media/characters/akitu/front.svg",
  35697. extra: 1435/1326,
  35698. bottom: 232/1667
  35699. }
  35700. },
  35701. },
  35702. [
  35703. {
  35704. name: "Normal",
  35705. height: math.unit(15, "feet"),
  35706. default: true
  35707. },
  35708. ]
  35709. ))
  35710. characterMakers.push(() => makeCharacter(
  35711. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  35712. {
  35713. front: {
  35714. height: math.unit(10 + 8/12, "feet"),
  35715. name: "Front",
  35716. image: {
  35717. source: "./media/characters/azalie-croixland/front.svg",
  35718. extra: 1972/1856,
  35719. bottom: 31/2003
  35720. }
  35721. },
  35722. },
  35723. [
  35724. {
  35725. name: "Original Height",
  35726. height: math.unit(5 + 4/12, "feet")
  35727. },
  35728. {
  35729. name: "Normal Height",
  35730. height: math.unit(10 + 8/12, "feet"),
  35731. default: true
  35732. },
  35733. ]
  35734. ))
  35735. characterMakers.push(() => makeCharacter(
  35736. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  35737. {
  35738. side: {
  35739. height: math.unit(7 + 1/12, "feet"),
  35740. weight: math.unit(245, "lb"),
  35741. name: "Side",
  35742. image: {
  35743. source: "./media/characters/kavus-kazian/side.svg",
  35744. extra: 349/342,
  35745. bottom: 15/364
  35746. }
  35747. },
  35748. },
  35749. [
  35750. {
  35751. name: "Normal",
  35752. height: math.unit(7 + 1/12, "feet"),
  35753. default: true
  35754. },
  35755. ]
  35756. ))
  35757. characterMakers.push(() => makeCharacter(
  35758. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  35759. {
  35760. normalFront: {
  35761. height: math.unit(5 + 11/12, "feet"),
  35762. name: "Front",
  35763. image: {
  35764. source: "./media/characters/moonlight-rose/normal-front.svg",
  35765. extra: 1980/1825,
  35766. bottom: 18/1998
  35767. },
  35768. form: "normal",
  35769. default: true
  35770. },
  35771. normalBack: {
  35772. height: math.unit(5 + 11/12, "feet"),
  35773. name: "Back",
  35774. image: {
  35775. source: "./media/characters/moonlight-rose/normal-back.svg",
  35776. extra: 2010/1839,
  35777. bottom: 10/2020
  35778. },
  35779. form: "normal"
  35780. },
  35781. demonFront: {
  35782. height: math.unit(1.5, "earths"),
  35783. name: "Front",
  35784. image: {
  35785. source: "./media/characters/moonlight-rose/demon.svg",
  35786. extra: 1400/1294,
  35787. bottom: 45/1445
  35788. },
  35789. form: "demon",
  35790. default: true
  35791. },
  35792. terraFront: {
  35793. height: math.unit(1.5, "earths"),
  35794. name: "Front",
  35795. image: {
  35796. source: "./media/characters/moonlight-rose/terra.svg"
  35797. },
  35798. form: "terra",
  35799. default: true
  35800. },
  35801. jupiterFront: {
  35802. height: math.unit(69911*2, "km"),
  35803. name: "Front",
  35804. image: {
  35805. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  35806. extra: 1367/1286,
  35807. bottom: 55/1422
  35808. },
  35809. form: "jupiter",
  35810. default: true
  35811. },
  35812. neptuneFront: {
  35813. height: math.unit(24622*2, "feet"),
  35814. name: "Front",
  35815. image: {
  35816. source: "./media/characters/moonlight-rose/neptune-front.svg",
  35817. extra: 1851/1712,
  35818. bottom: 0/1851
  35819. },
  35820. form: "neptune",
  35821. default: true
  35822. },
  35823. },
  35824. [
  35825. {
  35826. name: "\"Natural\" Height",
  35827. height: math.unit(5 + 11/12, "feet"),
  35828. form: "normal"
  35829. },
  35830. {
  35831. name: "Smallest comfortable size",
  35832. height: math.unit(40, "meters"),
  35833. form: "normal"
  35834. },
  35835. {
  35836. name: "Common size",
  35837. height: math.unit(50, "km"),
  35838. form: "normal",
  35839. default: true
  35840. },
  35841. {
  35842. name: "Normal",
  35843. height: math.unit(1.5, "earths"),
  35844. form: "demon",
  35845. default: true
  35846. },
  35847. {
  35848. name: "Universal",
  35849. height: math.unit(15, "universes"),
  35850. form: "demon"
  35851. },
  35852. {
  35853. name: "Earth",
  35854. height: math.unit(1.5, "earths"),
  35855. form: "terra",
  35856. default: true
  35857. },
  35858. {
  35859. name: "Super Earth",
  35860. height: math.unit(67.5, "earths"),
  35861. form: "terra"
  35862. },
  35863. {
  35864. name: "Doesn't fit in a solar system...",
  35865. height: math.unit(1, "galaxy"),
  35866. form: "terra"
  35867. },
  35868. {
  35869. name: "Saturn",
  35870. height: math.unit(58232*2, "km"),
  35871. form: "jupiter"
  35872. },
  35873. {
  35874. name: "Jupiter",
  35875. height: math.unit(69911*2, "km"),
  35876. form: "jupiter",
  35877. default: true
  35878. },
  35879. {
  35880. name: "HD 100546 b",
  35881. height: math.unit(482938, "km"),
  35882. form: "jupiter"
  35883. },
  35884. {
  35885. name: "Enceladus",
  35886. height: math.unit(513*2, "km"),
  35887. form: "neptune"
  35888. },
  35889. {
  35890. name: "Europe",
  35891. height: math.unit(1560*2, "km"),
  35892. form: "neptune"
  35893. },
  35894. {
  35895. name: "Neptune",
  35896. height: math.unit(24622*2, "km"),
  35897. form: "neptune",
  35898. default: true
  35899. },
  35900. {
  35901. name: "CoRoT-9b",
  35902. height: math.unit(75067*2, "km"),
  35903. form: "neptune"
  35904. },
  35905. ],
  35906. {
  35907. "normal": {
  35908. name: "Normal",
  35909. default: true
  35910. },
  35911. "demon": {
  35912. name: "Demon"
  35913. },
  35914. "terra": {
  35915. name: "Terra"
  35916. },
  35917. "jupiter": {
  35918. name: "Jupiter"
  35919. },
  35920. "neptune": {
  35921. name: "Neptune"
  35922. }
  35923. }
  35924. ))
  35925. characterMakers.push(() => makeCharacter(
  35926. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  35927. {
  35928. front: {
  35929. height: math.unit(16, "feet"),
  35930. weight: math.unit(610, "kg"),
  35931. name: "Front",
  35932. image: {
  35933. source: "./media/characters/huckle/front.svg",
  35934. extra: 1731/1625,
  35935. bottom: 33/1764
  35936. }
  35937. },
  35938. back: {
  35939. height: math.unit(16, "feet"),
  35940. weight: math.unit(610, "kg"),
  35941. name: "Back",
  35942. image: {
  35943. source: "./media/characters/huckle/back.svg",
  35944. extra: 1738/1651,
  35945. bottom: 37/1775
  35946. }
  35947. },
  35948. laughing: {
  35949. height: math.unit(3.75, "feet"),
  35950. name: "Laughing",
  35951. image: {
  35952. source: "./media/characters/huckle/laughing.svg"
  35953. }
  35954. },
  35955. angry: {
  35956. height: math.unit(4.15, "feet"),
  35957. name: "Angry",
  35958. image: {
  35959. source: "./media/characters/huckle/angry.svg"
  35960. }
  35961. },
  35962. },
  35963. [
  35964. {
  35965. name: "Normal",
  35966. height: math.unit(16, "feet"),
  35967. default: true
  35968. },
  35969. {
  35970. name: "Mini Macro",
  35971. height: math.unit(463, "feet")
  35972. },
  35973. {
  35974. name: "Macro",
  35975. height: math.unit(1680, "meters")
  35976. },
  35977. {
  35978. name: "Mega Macro",
  35979. height: math.unit(175, "km")
  35980. },
  35981. {
  35982. name: "Terra Macro",
  35983. height: math.unit(32, "gigameters")
  35984. },
  35985. {
  35986. name: "Multiverse+",
  35987. height: math.unit(2.56e23, "yottameters")
  35988. },
  35989. ]
  35990. ))
  35991. characterMakers.push(() => makeCharacter(
  35992. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  35993. {
  35994. front: {
  35995. height: math.unit(6 + 9/12, "feet"),
  35996. weight: math.unit(280, "lb"),
  35997. name: "Front",
  35998. image: {
  35999. source: "./media/characters/candy/front.svg",
  36000. extra: 234/217,
  36001. bottom: 11/245
  36002. }
  36003. },
  36004. },
  36005. [
  36006. {
  36007. name: "Really Small",
  36008. height: math.unit(0.1, "nm")
  36009. },
  36010. {
  36011. name: "Micro",
  36012. height: math.unit(2, "inches")
  36013. },
  36014. {
  36015. name: "Normal",
  36016. height: math.unit(6 + 9/12, "feet"),
  36017. default: true
  36018. },
  36019. {
  36020. name: "Small Macro",
  36021. height: math.unit(69, "feet")
  36022. },
  36023. {
  36024. name: "Macro",
  36025. height: math.unit(160, "feet")
  36026. },
  36027. {
  36028. name: "Megamacro",
  36029. height: math.unit(22000, "miles")
  36030. },
  36031. {
  36032. name: "Gigamacro",
  36033. height: math.unit(50000, "miles")
  36034. },
  36035. ]
  36036. ))
  36037. characterMakers.push(() => makeCharacter(
  36038. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  36039. {
  36040. front: {
  36041. height: math.unit(4, "feet"),
  36042. weight: math.unit(90, "lb"),
  36043. name: "Front",
  36044. image: {
  36045. source: "./media/characters/joey-mcdonald/front.svg",
  36046. extra: 1059/852,
  36047. bottom: 33/1092
  36048. }
  36049. },
  36050. back: {
  36051. height: math.unit(4, "feet"),
  36052. weight: math.unit(90, "lb"),
  36053. name: "Back",
  36054. image: {
  36055. source: "./media/characters/joey-mcdonald/back.svg",
  36056. extra: 1077/879,
  36057. bottom: 5/1082
  36058. }
  36059. },
  36060. frontKobold: {
  36061. height: math.unit(4, "feet"),
  36062. weight: math.unit(100, "lb"),
  36063. name: "Front-kobold",
  36064. image: {
  36065. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  36066. extra: 1480/1367,
  36067. bottom: 0/1480
  36068. }
  36069. },
  36070. backKobold: {
  36071. height: math.unit(4, "feet"),
  36072. weight: math.unit(100, "lb"),
  36073. name: "Back-kobold",
  36074. image: {
  36075. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  36076. extra: 1449/1361,
  36077. bottom: 0/1449
  36078. }
  36079. },
  36080. },
  36081. [
  36082. {
  36083. name: "Normal",
  36084. height: math.unit(4, "feet"),
  36085. default: true
  36086. },
  36087. ]
  36088. ))
  36089. characterMakers.push(() => makeCharacter(
  36090. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  36091. {
  36092. front: {
  36093. height: math.unit(12 + 6/12, "feet"),
  36094. name: "Front",
  36095. image: {
  36096. source: "./media/characters/kass-lockheed/front.svg",
  36097. extra: 354/343,
  36098. bottom: 9/363
  36099. }
  36100. },
  36101. back: {
  36102. height: math.unit(12 + 6/12, "feet"),
  36103. name: "Back",
  36104. image: {
  36105. source: "./media/characters/kass-lockheed/back.svg",
  36106. extra: 364/352,
  36107. bottom: 3/367
  36108. }
  36109. },
  36110. dick: {
  36111. height: math.unit(3.12, "feet"),
  36112. name: "Dick",
  36113. image: {
  36114. source: "./media/characters/kass-lockheed/dick.svg"
  36115. }
  36116. },
  36117. head: {
  36118. height: math.unit(2.6, "feet"),
  36119. name: "Head",
  36120. image: {
  36121. source: "./media/characters/kass-lockheed/head.svg"
  36122. }
  36123. },
  36124. bleh: {
  36125. height: math.unit(2.85, "feet"),
  36126. name: "Bleh",
  36127. image: {
  36128. source: "./media/characters/kass-lockheed/bleh.svg"
  36129. }
  36130. },
  36131. smug: {
  36132. height: math.unit(2.85, "feet"),
  36133. name: "Smug",
  36134. image: {
  36135. source: "./media/characters/kass-lockheed/smug.svg"
  36136. }
  36137. },
  36138. },
  36139. [
  36140. {
  36141. name: "Normal",
  36142. height: math.unit(12 + 6/12, "feet"),
  36143. default: true
  36144. },
  36145. ]
  36146. ))
  36147. characterMakers.push(() => makeCharacter(
  36148. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  36149. {
  36150. front: {
  36151. height: math.unit(6 + 2/12, "feet"),
  36152. name: "Front",
  36153. image: {
  36154. source: "./media/characters/taylor/front.svg",
  36155. extra: 639/495,
  36156. bottom: 12/651
  36157. }
  36158. },
  36159. },
  36160. [
  36161. {
  36162. name: "Normal",
  36163. height: math.unit(6 + 2/12, "feet"),
  36164. default: true
  36165. },
  36166. {
  36167. name: "Big",
  36168. height: math.unit(15, "feet")
  36169. },
  36170. {
  36171. name: "Lorg",
  36172. height: math.unit(80, "feet")
  36173. },
  36174. {
  36175. name: "Too Lorg",
  36176. height: math.unit(120, "feet")
  36177. },
  36178. ]
  36179. ))
  36180. characterMakers.push(() => makeCharacter(
  36181. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  36182. {
  36183. front: {
  36184. height: math.unit(15, "feet"),
  36185. name: "Front",
  36186. image: {
  36187. source: "./media/characters/kaizer/front.svg",
  36188. extra: 1612/1436,
  36189. bottom: 43/1655
  36190. }
  36191. },
  36192. },
  36193. [
  36194. {
  36195. name: "Normal",
  36196. height: math.unit(15, "feet"),
  36197. default: true
  36198. },
  36199. ]
  36200. ))
  36201. characterMakers.push(() => makeCharacter(
  36202. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  36203. {
  36204. front: {
  36205. height: math.unit(2, "feet"),
  36206. weight: math.unit(30, "lb"),
  36207. name: "Front",
  36208. image: {
  36209. source: "./media/characters/sandy/front.svg",
  36210. extra: 1439/1307,
  36211. bottom: 194/1633
  36212. }
  36213. },
  36214. },
  36215. [
  36216. {
  36217. name: "Normal",
  36218. height: math.unit(2, "feet"),
  36219. default: true
  36220. },
  36221. ]
  36222. ))
  36223. characterMakers.push(() => makeCharacter(
  36224. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  36225. {
  36226. front: {
  36227. height: math.unit(3, "feet"),
  36228. name: "Front",
  36229. image: {
  36230. source: "./media/characters/mellvi/front.svg",
  36231. extra: 1831/1630,
  36232. bottom: 58/1889
  36233. }
  36234. },
  36235. },
  36236. [
  36237. {
  36238. name: "Normal",
  36239. height: math.unit(3, "feet"),
  36240. default: true
  36241. },
  36242. ]
  36243. ))
  36244. characterMakers.push(() => makeCharacter(
  36245. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  36246. {
  36247. front: {
  36248. height: math.unit(5 + 11/12, "feet"),
  36249. weight: math.unit(200, "lb"),
  36250. name: "Front",
  36251. image: {
  36252. source: "./media/characters/shirou/front.svg",
  36253. extra: 2491/2383,
  36254. bottom: 189/2680
  36255. }
  36256. },
  36257. back: {
  36258. height: math.unit(5 + 11/12, "feet"),
  36259. weight: math.unit(200, "lb"),
  36260. name: "Back",
  36261. image: {
  36262. source: "./media/characters/shirou/back.svg",
  36263. extra: 2554/2450,
  36264. bottom: 76/2630
  36265. }
  36266. },
  36267. },
  36268. [
  36269. {
  36270. name: "Normal",
  36271. height: math.unit(5 + 11/12, "feet"),
  36272. default: true
  36273. },
  36274. ]
  36275. ))
  36276. characterMakers.push(() => makeCharacter(
  36277. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  36278. {
  36279. front: {
  36280. height: math.unit(6 + 3/12, "feet"),
  36281. weight: math.unit(177, "lb"),
  36282. name: "Front",
  36283. image: {
  36284. source: "./media/characters/noryu/front.svg",
  36285. extra: 973/885,
  36286. bottom: 10/983
  36287. }
  36288. },
  36289. },
  36290. [
  36291. {
  36292. name: "Normal",
  36293. height: math.unit(6 + 3/12, "feet"),
  36294. default: true
  36295. },
  36296. ]
  36297. ))
  36298. characterMakers.push(() => makeCharacter(
  36299. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  36300. {
  36301. front: {
  36302. height: math.unit(5 + 6/12, "feet"),
  36303. weight: math.unit(170, "lb"),
  36304. name: "Front",
  36305. image: {
  36306. source: "./media/characters/mevolas-rubenido/front.svg",
  36307. extra: 2109/1901,
  36308. bottom: 96/2205
  36309. }
  36310. },
  36311. },
  36312. [
  36313. {
  36314. name: "Normal",
  36315. height: math.unit(5 + 6/12, "feet"),
  36316. default: true
  36317. },
  36318. ]
  36319. ))
  36320. characterMakers.push(() => makeCharacter(
  36321. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  36322. {
  36323. front: {
  36324. height: math.unit(100, "feet"),
  36325. name: "Front",
  36326. image: {
  36327. source: "./media/characters/dee/front.svg",
  36328. extra: 2153/2036,
  36329. bottom: 59/2212
  36330. }
  36331. },
  36332. back: {
  36333. height: math.unit(100, "feet"),
  36334. name: "Back",
  36335. image: {
  36336. source: "./media/characters/dee/back.svg",
  36337. extra: 2183/2058,
  36338. bottom: 75/2258
  36339. }
  36340. },
  36341. foot: {
  36342. height: math.unit(19.43, "feet"),
  36343. name: "Foot",
  36344. image: {
  36345. source: "./media/characters/dee/foot.svg"
  36346. }
  36347. },
  36348. hoof: {
  36349. height: math.unit(20.6, "feet"),
  36350. name: "Hoof",
  36351. image: {
  36352. source: "./media/characters/dee/hoof.svg"
  36353. }
  36354. },
  36355. },
  36356. [
  36357. {
  36358. name: "Macro",
  36359. height: math.unit(100, "feet"),
  36360. default: true
  36361. },
  36362. ]
  36363. ))
  36364. characterMakers.push(() => makeCharacter(
  36365. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  36366. {
  36367. front: {
  36368. height: math.unit(5 + 6/12, "feet"),
  36369. name: "Front",
  36370. image: {
  36371. source: "./media/characters/teh/front.svg",
  36372. extra: 1002/847,
  36373. bottom: 62/1064
  36374. }
  36375. },
  36376. },
  36377. [
  36378. {
  36379. name: "Normal",
  36380. height: math.unit(5 + 6/12, "feet"),
  36381. default: true
  36382. },
  36383. ]
  36384. ))
  36385. characterMakers.push(() => makeCharacter(
  36386. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  36387. {
  36388. side: {
  36389. height: math.unit(6 + 1/12, "feet"),
  36390. weight: math.unit(204, "lb"),
  36391. name: "Side",
  36392. image: {
  36393. source: "./media/characters/quicksilver-ayukoti/side.svg",
  36394. extra: 974/775,
  36395. bottom: 169/1143
  36396. }
  36397. },
  36398. sitting: {
  36399. height: math.unit(6 + 2/12, "feet"),
  36400. weight: math.unit(204, "lb"),
  36401. name: "Sitting",
  36402. image: {
  36403. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  36404. extra: 1175/964,
  36405. bottom: 378/1553
  36406. }
  36407. },
  36408. },
  36409. [
  36410. {
  36411. name: "Normal",
  36412. height: math.unit(6 + 1/12, "feet"),
  36413. default: true
  36414. },
  36415. ]
  36416. ))
  36417. characterMakers.push(() => makeCharacter(
  36418. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  36419. {
  36420. front: {
  36421. height: math.unit(6, "inches"),
  36422. name: "Front",
  36423. image: {
  36424. source: "./media/characters/tululi/front.svg",
  36425. extra: 1997/1876,
  36426. bottom: 20/2017
  36427. }
  36428. },
  36429. },
  36430. [
  36431. {
  36432. name: "Normal",
  36433. height: math.unit(6, "inches"),
  36434. default: true
  36435. },
  36436. ]
  36437. ))
  36438. characterMakers.push(() => makeCharacter(
  36439. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  36440. {
  36441. front: {
  36442. height: math.unit(4 + 1/12, "feet"),
  36443. name: "Front",
  36444. image: {
  36445. source: "./media/characters/star/front.svg",
  36446. extra: 1493/1189,
  36447. bottom: 48/1541
  36448. }
  36449. },
  36450. },
  36451. [
  36452. {
  36453. name: "Normal",
  36454. height: math.unit(4 + 1/12, "feet"),
  36455. default: true
  36456. },
  36457. ]
  36458. ))
  36459. characterMakers.push(() => makeCharacter(
  36460. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  36461. {
  36462. front: {
  36463. height: math.unit(6 + 3/12, "feet"),
  36464. name: "Front",
  36465. image: {
  36466. source: "./media/characters/comet/front.svg",
  36467. extra: 1681/1462,
  36468. bottom: 26/1707
  36469. }
  36470. },
  36471. },
  36472. [
  36473. {
  36474. name: "Normal",
  36475. height: math.unit(6 + 3/12, "feet"),
  36476. default: true
  36477. },
  36478. ]
  36479. ))
  36480. characterMakers.push(() => makeCharacter(
  36481. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  36482. {
  36483. front: {
  36484. height: math.unit(950, "feet"),
  36485. name: "Front",
  36486. image: {
  36487. source: "./media/characters/vortex/front.svg",
  36488. extra: 1497/1434,
  36489. bottom: 56/1553
  36490. }
  36491. },
  36492. maw: {
  36493. height: math.unit(285, "feet"),
  36494. name: "Maw",
  36495. image: {
  36496. source: "./media/characters/vortex/maw.svg"
  36497. }
  36498. },
  36499. },
  36500. [
  36501. {
  36502. name: "Macro",
  36503. height: math.unit(950, "feet"),
  36504. default: true
  36505. },
  36506. ]
  36507. ))
  36508. characterMakers.push(() => makeCharacter(
  36509. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  36510. {
  36511. front: {
  36512. height: math.unit(600, "feet"),
  36513. weight: math.unit(0.02, "grams"),
  36514. name: "Front",
  36515. image: {
  36516. source: "./media/characters/doodle/front.svg",
  36517. extra: 1578/1413,
  36518. bottom: 37/1615
  36519. }
  36520. },
  36521. },
  36522. [
  36523. {
  36524. name: "Macro",
  36525. height: math.unit(600, "feet"),
  36526. default: true
  36527. },
  36528. ]
  36529. ))
  36530. characterMakers.push(() => makeCharacter(
  36531. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  36532. {
  36533. front: {
  36534. height: math.unit(6 + 6/12, "feet"),
  36535. name: "Front",
  36536. image: {
  36537. source: "./media/characters/jai/front.svg",
  36538. extra: 1645/1534,
  36539. bottom: 115/1760
  36540. }
  36541. },
  36542. },
  36543. [
  36544. {
  36545. name: "Normal",
  36546. height: math.unit(6 + 6/12, "feet"),
  36547. default: true
  36548. },
  36549. ]
  36550. ))
  36551. characterMakers.push(() => makeCharacter(
  36552. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  36553. {
  36554. front: {
  36555. height: math.unit(6 + 8/12, "feet"),
  36556. name: "Front",
  36557. image: {
  36558. source: "./media/characters/pixel/front.svg",
  36559. extra: 1900/1735,
  36560. bottom: 63/1963
  36561. }
  36562. },
  36563. },
  36564. [
  36565. {
  36566. name: "Normal",
  36567. height: math.unit(6 + 8/12, "feet"),
  36568. default: true
  36569. },
  36570. ]
  36571. ))
  36572. characterMakers.push(() => makeCharacter(
  36573. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  36574. {
  36575. back: {
  36576. height: math.unit(4 + 1/12, "feet"),
  36577. weight: math.unit(75, "lb"),
  36578. name: "Back",
  36579. image: {
  36580. source: "./media/characters/rhett/back.svg",
  36581. extra: 930/878,
  36582. bottom: 25/955
  36583. }
  36584. },
  36585. front: {
  36586. height: math.unit(4 + 1/12, "feet"),
  36587. weight: math.unit(75, "lb"),
  36588. name: "Front",
  36589. image: {
  36590. source: "./media/characters/rhett/front.svg",
  36591. extra: 1682/1586,
  36592. bottom: 92/1774
  36593. }
  36594. },
  36595. },
  36596. [
  36597. {
  36598. name: "Micro",
  36599. height: math.unit(8, "inches")
  36600. },
  36601. {
  36602. name: "Tiny",
  36603. height: math.unit(2, "feet")
  36604. },
  36605. {
  36606. name: "Normal",
  36607. height: math.unit(4 + 1/12, "feet"),
  36608. default: true
  36609. },
  36610. ]
  36611. ))
  36612. characterMakers.push(() => makeCharacter(
  36613. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  36614. {
  36615. front: {
  36616. height: math.unit(3 + 3/12, "feet"),
  36617. name: "Front",
  36618. image: {
  36619. source: "./media/characters/penny/front.svg",
  36620. extra: 1406/1311,
  36621. bottom: 26/1432
  36622. }
  36623. },
  36624. },
  36625. [
  36626. {
  36627. name: "Normal",
  36628. height: math.unit(3 + 3/12, "feet"),
  36629. default: true
  36630. },
  36631. ]
  36632. ))
  36633. characterMakers.push(() => makeCharacter(
  36634. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  36635. {
  36636. front: {
  36637. height: math.unit(4 + 11/12, "feet"),
  36638. name: "Front",
  36639. image: {
  36640. source: "./media/characters/monty/front.svg",
  36641. extra: 1479/1209,
  36642. bottom: 0/1479
  36643. }
  36644. },
  36645. },
  36646. [
  36647. {
  36648. name: "Normal",
  36649. height: math.unit(4 + 11/12, "feet"),
  36650. default: true
  36651. },
  36652. ]
  36653. ))
  36654. characterMakers.push(() => makeCharacter(
  36655. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  36656. {
  36657. front: {
  36658. height: math.unit(8 + 4/12, "feet"),
  36659. name: "Front",
  36660. image: {
  36661. source: "./media/characters/sterling/front.svg",
  36662. extra: 1420/1236,
  36663. bottom: 27/1447
  36664. }
  36665. },
  36666. },
  36667. [
  36668. {
  36669. name: "Normal",
  36670. height: math.unit(8 + 4/12, "feet"),
  36671. default: true
  36672. },
  36673. ]
  36674. ))
  36675. characterMakers.push(() => makeCharacter(
  36676. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  36677. {
  36678. front: {
  36679. height: math.unit(15, "feet"),
  36680. name: "Front",
  36681. image: {
  36682. source: "./media/characters/marble/front.svg",
  36683. extra: 973/937,
  36684. bottom: 32/1005
  36685. }
  36686. },
  36687. },
  36688. [
  36689. {
  36690. name: "Normal",
  36691. height: math.unit(15, "feet"),
  36692. default: true
  36693. },
  36694. ]
  36695. ))
  36696. characterMakers.push(() => makeCharacter(
  36697. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  36698. {
  36699. front: {
  36700. height: math.unit(3, "inches"),
  36701. name: "Front",
  36702. image: {
  36703. source: "./media/characters/powder/front.svg",
  36704. extra: 1504/1334,
  36705. bottom: 518/2022
  36706. }
  36707. },
  36708. },
  36709. [
  36710. {
  36711. name: "Normal",
  36712. height: math.unit(3, "inches"),
  36713. default: true
  36714. },
  36715. ]
  36716. ))
  36717. characterMakers.push(() => makeCharacter(
  36718. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  36719. {
  36720. front: {
  36721. height: math.unit(4 + 5/12, "feet"),
  36722. name: "Front",
  36723. image: {
  36724. source: "./media/characters/joey-raccoon/front.svg",
  36725. extra: 1273/1197,
  36726. bottom: 0/1273
  36727. }
  36728. },
  36729. },
  36730. [
  36731. {
  36732. name: "Normal",
  36733. height: math.unit(4 + 5/12, "feet"),
  36734. default: true
  36735. },
  36736. ]
  36737. ))
  36738. characterMakers.push(() => makeCharacter(
  36739. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  36740. {
  36741. front: {
  36742. height: math.unit(8 + 4/12, "feet"),
  36743. name: "Front",
  36744. image: {
  36745. source: "./media/characters/vick/front.svg",
  36746. extra: 2187/2118,
  36747. bottom: 47/2234
  36748. }
  36749. },
  36750. },
  36751. [
  36752. {
  36753. name: "Normal",
  36754. height: math.unit(8 + 4/12, "feet"),
  36755. default: true
  36756. },
  36757. ]
  36758. ))
  36759. characterMakers.push(() => makeCharacter(
  36760. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  36761. {
  36762. front: {
  36763. height: math.unit(5 + 5/12, "feet"),
  36764. name: "Front",
  36765. image: {
  36766. source: "./media/characters/mitsy/front.svg",
  36767. extra: 1842/1695,
  36768. bottom: 0/1842
  36769. }
  36770. },
  36771. },
  36772. [
  36773. {
  36774. name: "Normal",
  36775. height: math.unit(5 + 5/12, "feet"),
  36776. default: true
  36777. },
  36778. ]
  36779. ))
  36780. characterMakers.push(() => makeCharacter(
  36781. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  36782. {
  36783. front: {
  36784. height: math.unit(6 + 3/12, "feet"),
  36785. name: "Front",
  36786. image: {
  36787. source: "./media/characters/silvy/front.svg",
  36788. extra: 1995/1836,
  36789. bottom: 225/2220
  36790. }
  36791. },
  36792. },
  36793. [
  36794. {
  36795. name: "Normal",
  36796. height: math.unit(6 + 3/12, "feet"),
  36797. default: true
  36798. },
  36799. ]
  36800. ))
  36801. characterMakers.push(() => makeCharacter(
  36802. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  36803. {
  36804. front: {
  36805. height: math.unit(3 + 8/12, "feet"),
  36806. name: "Front",
  36807. image: {
  36808. source: "./media/characters/rodney/front.svg",
  36809. extra: 1956/1747,
  36810. bottom: 31/1987
  36811. }
  36812. },
  36813. frontDressed: {
  36814. height: math.unit(2.9, "feet"),
  36815. name: "Front (Dressed)",
  36816. image: {
  36817. source: "./media/characters/rodney/front-dressed.svg",
  36818. extra: 1382/1241,
  36819. bottom: 385/1767
  36820. }
  36821. },
  36822. },
  36823. [
  36824. {
  36825. name: "Normal",
  36826. height: math.unit(3 + 8/12, "feet"),
  36827. default: true
  36828. },
  36829. ]
  36830. ))
  36831. characterMakers.push(() => makeCharacter(
  36832. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  36833. {
  36834. front: {
  36835. height: math.unit(5 + 9/12, "feet"),
  36836. weight: math.unit(194, "lbs"),
  36837. name: "Front",
  36838. image: {
  36839. source: "./media/characters/zakail-sudekai/front.svg",
  36840. extra: 2696/2533,
  36841. bottom: 248/2944
  36842. }
  36843. },
  36844. maw: {
  36845. height: math.unit(1.35, "feet"),
  36846. name: "Maw",
  36847. image: {
  36848. source: "./media/characters/zakail-sudekai/maw.svg"
  36849. }
  36850. },
  36851. },
  36852. [
  36853. {
  36854. name: "Normal",
  36855. height: math.unit(5 + 9/12, "feet"),
  36856. default: true
  36857. },
  36858. ]
  36859. ))
  36860. characterMakers.push(() => makeCharacter(
  36861. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  36862. {
  36863. front: {
  36864. height: math.unit(8 + 4/12, "feet"),
  36865. weight: math.unit(1200, "lb"),
  36866. name: "Front",
  36867. image: {
  36868. source: "./media/characters/eleanor/front.svg",
  36869. extra: 1226/1192,
  36870. bottom: 52/1278
  36871. }
  36872. },
  36873. back: {
  36874. height: math.unit(8 + 4/12, "feet"),
  36875. weight: math.unit(1200, "lb"),
  36876. name: "Back",
  36877. image: {
  36878. source: "./media/characters/eleanor/back.svg",
  36879. extra: 1242/1184,
  36880. bottom: 60/1302
  36881. }
  36882. },
  36883. head: {
  36884. height: math.unit(2.62, "feet"),
  36885. name: "Head",
  36886. image: {
  36887. source: "./media/characters/eleanor/head.svg"
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Normal",
  36894. height: math.unit(8 + 4/12, "feet"),
  36895. default: true
  36896. },
  36897. ]
  36898. ))
  36899. characterMakers.push(() => makeCharacter(
  36900. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  36901. {
  36902. front: {
  36903. height: math.unit(8 + 4/12, "feet"),
  36904. weight: math.unit(750, "lb"),
  36905. name: "Front",
  36906. image: {
  36907. source: "./media/characters/tanya/front.svg",
  36908. extra: 1749/1615,
  36909. bottom: 33/1782
  36910. }
  36911. },
  36912. },
  36913. [
  36914. {
  36915. name: "Normal",
  36916. height: math.unit(8 + 4/12, "feet"),
  36917. default: true
  36918. },
  36919. ]
  36920. ))
  36921. characterMakers.push(() => makeCharacter(
  36922. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  36923. {
  36924. front: {
  36925. height: math.unit(5, "feet"),
  36926. weight: math.unit(225, "lb"),
  36927. name: "Front",
  36928. image: {
  36929. source: "./media/characters/cindy/front.svg",
  36930. extra: 1320/1250,
  36931. bottom: 42/1362
  36932. }
  36933. },
  36934. frontDressed: {
  36935. height: math.unit(5, "feet"),
  36936. weight: math.unit(225, "lb"),
  36937. name: "Front (Dressed)",
  36938. image: {
  36939. source: "./media/characters/cindy/front-dressed.svg",
  36940. extra: 1320/1250,
  36941. bottom: 42/1362
  36942. }
  36943. },
  36944. back: {
  36945. height: math.unit(5, "feet"),
  36946. weight: math.unit(225, "lb"),
  36947. name: "Back",
  36948. image: {
  36949. source: "./media/characters/cindy/back.svg",
  36950. extra: 1384/1346,
  36951. bottom: 14/1398
  36952. }
  36953. },
  36954. },
  36955. [
  36956. {
  36957. name: "Normal",
  36958. height: math.unit(5, "feet"),
  36959. default: true
  36960. },
  36961. ]
  36962. ))
  36963. characterMakers.push(() => makeCharacter(
  36964. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  36965. {
  36966. front: {
  36967. height: math.unit(6 + 9/12, "feet"),
  36968. weight: math.unit(440, "lb"),
  36969. name: "Front",
  36970. image: {
  36971. source: "./media/characters/wilbur-owen/front.svg",
  36972. extra: 1575/1448,
  36973. bottom: 72/1647
  36974. }
  36975. },
  36976. back: {
  36977. height: math.unit(6 + 9/12, "feet"),
  36978. weight: math.unit(440, "lb"),
  36979. name: "Back",
  36980. image: {
  36981. source: "./media/characters/wilbur-owen/back.svg",
  36982. extra: 1578/1445,
  36983. bottom: 36/1614
  36984. }
  36985. },
  36986. },
  36987. [
  36988. {
  36989. name: "Normal",
  36990. height: math.unit(6 + 9/12, "feet"),
  36991. default: true
  36992. },
  36993. ]
  36994. ))
  36995. characterMakers.push(() => makeCharacter(
  36996. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  36997. {
  36998. front: {
  36999. height: math.unit(6 + 5/12, "feet"),
  37000. weight: math.unit(650, "lb"),
  37001. name: "Front",
  37002. image: {
  37003. source: "./media/characters/keegan/front.svg",
  37004. extra: 2387/2198,
  37005. bottom: 33/2420
  37006. }
  37007. },
  37008. side: {
  37009. height: math.unit(6 + 5/12, "feet"),
  37010. weight: math.unit(650, "lb"),
  37011. name: "Side",
  37012. image: {
  37013. source: "./media/characters/keegan/side.svg",
  37014. extra: 2390/2202,
  37015. bottom: 47/2437
  37016. }
  37017. },
  37018. back: {
  37019. height: math.unit(6 + 5/12, "feet"),
  37020. weight: math.unit(650, "lb"),
  37021. name: "Back",
  37022. image: {
  37023. source: "./media/characters/keegan/back.svg",
  37024. extra: 2418/2268,
  37025. bottom: 15/2433
  37026. }
  37027. },
  37028. frontSfw: {
  37029. height: math.unit(6 + 5/12, "feet"),
  37030. weight: math.unit(650, "lb"),
  37031. name: "Front (SFW)",
  37032. image: {
  37033. source: "./media/characters/keegan/front-sfw.svg",
  37034. extra: 2387/2198,
  37035. bottom: 33/2420
  37036. }
  37037. },
  37038. beans: {
  37039. height: math.unit(1.85, "feet"),
  37040. name: "Beans",
  37041. image: {
  37042. source: "./media/characters/keegan/beans.svg"
  37043. }
  37044. },
  37045. },
  37046. [
  37047. {
  37048. name: "Normal",
  37049. height: math.unit(6 + 5/12, "feet"),
  37050. default: true
  37051. },
  37052. ]
  37053. ))
  37054. characterMakers.push(() => makeCharacter(
  37055. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  37056. {
  37057. front: {
  37058. height: math.unit(9, "feet"),
  37059. name: "Front",
  37060. image: {
  37061. source: "./media/characters/colton/front.svg",
  37062. extra: 1589/1326,
  37063. bottom: 139/1728
  37064. }
  37065. },
  37066. },
  37067. [
  37068. {
  37069. name: "Normal",
  37070. height: math.unit(9, "feet"),
  37071. default: true
  37072. },
  37073. ]
  37074. ))
  37075. characterMakers.push(() => makeCharacter(
  37076. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  37077. {
  37078. front: {
  37079. height: math.unit(2 + 9/12, "feet"),
  37080. name: "Front",
  37081. image: {
  37082. source: "./media/characters/bora/front.svg",
  37083. extra: 1265/1250,
  37084. bottom: 24/1289
  37085. }
  37086. },
  37087. },
  37088. [
  37089. {
  37090. name: "Normal",
  37091. height: math.unit(2 + 9/12, "feet"),
  37092. default: true
  37093. },
  37094. ]
  37095. ))
  37096. characterMakers.push(() => makeCharacter(
  37097. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  37098. {
  37099. front: {
  37100. height: math.unit(8, "feet"),
  37101. name: "Front",
  37102. image: {
  37103. source: "./media/characters/myu-myu/front.svg",
  37104. extra: 1949/1857,
  37105. bottom: 90/2039
  37106. }
  37107. },
  37108. },
  37109. [
  37110. {
  37111. name: "Normal",
  37112. height: math.unit(8, "feet"),
  37113. default: true
  37114. },
  37115. {
  37116. name: "Big",
  37117. height: math.unit(15, "feet")
  37118. },
  37119. {
  37120. name: "BIG",
  37121. height: math.unit(25, "feet")
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  37127. {
  37128. side: {
  37129. height: math.unit(7 + 5/12, "feet"),
  37130. weight: math.unit(2800, "lb"),
  37131. name: "Side",
  37132. image: {
  37133. source: "./media/characters/haloren/side.svg",
  37134. extra: 1793/409,
  37135. bottom: 59/1852
  37136. }
  37137. },
  37138. frontPaw: {
  37139. height: math.unit(2.36, "feet"),
  37140. name: "Front paw",
  37141. image: {
  37142. source: "./media/characters/haloren/front-paw.svg"
  37143. }
  37144. },
  37145. hindPaw: {
  37146. height: math.unit(3.18, "feet"),
  37147. name: "Hind paw",
  37148. image: {
  37149. source: "./media/characters/haloren/hind-paw.svg"
  37150. }
  37151. },
  37152. maw: {
  37153. height: math.unit(5.05, "feet"),
  37154. name: "Maw",
  37155. image: {
  37156. source: "./media/characters/haloren/maw.svg"
  37157. }
  37158. },
  37159. dick: {
  37160. height: math.unit(2.90, "feet"),
  37161. name: "Dick",
  37162. image: {
  37163. source: "./media/characters/haloren/dick.svg"
  37164. }
  37165. },
  37166. },
  37167. [
  37168. {
  37169. name: "Normal",
  37170. height: math.unit(7 + 5/12, "feet"),
  37171. default: true
  37172. },
  37173. {
  37174. name: "Enhanced",
  37175. height: math.unit(14 + 3/12, "feet")
  37176. },
  37177. ]
  37178. ))
  37179. characterMakers.push(() => makeCharacter(
  37180. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  37181. {
  37182. front: {
  37183. height: math.unit(171, "cm"),
  37184. name: "Front",
  37185. image: {
  37186. source: "./media/characters/kimmy/front.svg",
  37187. extra: 1491/1435,
  37188. bottom: 53/1544
  37189. }
  37190. },
  37191. },
  37192. [
  37193. {
  37194. name: "Small",
  37195. height: math.unit(9, "cm")
  37196. },
  37197. {
  37198. name: "Normal",
  37199. height: math.unit(171, "cm"),
  37200. default: true
  37201. },
  37202. ]
  37203. ))
  37204. characterMakers.push(() => makeCharacter(
  37205. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  37206. {
  37207. front: {
  37208. height: math.unit(8, "feet"),
  37209. weight: math.unit(300, "lb"),
  37210. name: "Front",
  37211. image: {
  37212. source: "./media/characters/galeboomer/front.svg",
  37213. extra: 4651/4415,
  37214. bottom: 162/4813
  37215. }
  37216. },
  37217. back: {
  37218. height: math.unit(8, "feet"),
  37219. weight: math.unit(300, "lb"),
  37220. name: "Back",
  37221. image: {
  37222. source: "./media/characters/galeboomer/back.svg",
  37223. extra: 4544/4314,
  37224. bottom: 16/4560
  37225. }
  37226. },
  37227. frontAlt: {
  37228. height: math.unit(8, "feet"),
  37229. weight: math.unit(300, "lb"),
  37230. name: "Front (Alt)",
  37231. image: {
  37232. source: "./media/characters/galeboomer/front-alt.svg",
  37233. extra: 4458/4228,
  37234. bottom: 68/4526
  37235. }
  37236. },
  37237. maw: {
  37238. height: math.unit(1.2, "feet"),
  37239. name: "Maw",
  37240. image: {
  37241. source: "./media/characters/galeboomer/maw.svg"
  37242. }
  37243. },
  37244. },
  37245. [
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(8, "feet"),
  37249. default: true
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  37255. {
  37256. front: {
  37257. height: math.unit(5 + 9/12, "feet"),
  37258. weight: math.unit(120, "lb"),
  37259. name: "Front",
  37260. image: {
  37261. source: "./media/characters/chyr/front.svg",
  37262. extra: 1323/1254,
  37263. bottom: 63/1386
  37264. }
  37265. },
  37266. back: {
  37267. height: math.unit(5 + 9/12, "feet"),
  37268. weight: math.unit(120, "lb"),
  37269. name: "Back",
  37270. image: {
  37271. source: "./media/characters/chyr/back.svg",
  37272. extra: 1323/1252,
  37273. bottom: 48/1371
  37274. }
  37275. },
  37276. },
  37277. [
  37278. {
  37279. name: "Normal",
  37280. height: math.unit(5 + 9/12, "feet"),
  37281. default: true
  37282. },
  37283. ]
  37284. ))
  37285. characterMakers.push(() => makeCharacter(
  37286. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  37287. {
  37288. front: {
  37289. height: math.unit(7, "feet"),
  37290. weight: math.unit(310, "lb"),
  37291. name: "Front",
  37292. image: {
  37293. source: "./media/characters/solarus/front.svg",
  37294. extra: 2415/2021,
  37295. bottom: 103/2518
  37296. }
  37297. },
  37298. back: {
  37299. height: math.unit(7, "feet"),
  37300. weight: math.unit(310, "lb"),
  37301. name: "Back",
  37302. image: {
  37303. source: "./media/characters/solarus/back.svg",
  37304. extra: 2463/2089,
  37305. bottom: 79/2542
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(7, "feet"),
  37313. default: true
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  37319. {
  37320. front: {
  37321. height: math.unit(16, "feet"),
  37322. name: "Front",
  37323. image: {
  37324. source: "./media/characters/mutsuju-koizaemon/front.svg",
  37325. extra: 1844/1780,
  37326. bottom: 58/1902
  37327. }
  37328. },
  37329. winterCoat: {
  37330. height: math.unit(16, "feet"),
  37331. name: "Winter Coat",
  37332. image: {
  37333. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  37334. extra: 1807/1775,
  37335. bottom: 69/1876
  37336. }
  37337. },
  37338. },
  37339. [
  37340. {
  37341. name: "Normal",
  37342. height: math.unit(16, "feet"),
  37343. default: true
  37344. },
  37345. {
  37346. name: "Chicago Size",
  37347. height: math.unit(560, "feet")
  37348. },
  37349. ]
  37350. ))
  37351. characterMakers.push(() => makeCharacter(
  37352. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  37353. {
  37354. front: {
  37355. height: math.unit(11 + 6/12, "feet"),
  37356. weight: math.unit(1366, "lb"),
  37357. name: "Front",
  37358. image: {
  37359. source: "./media/characters/lexor/front.svg",
  37360. extra: 1560/1481,
  37361. bottom: 211/1771
  37362. }
  37363. },
  37364. back: {
  37365. height: math.unit(11 + 6/12, "feet"),
  37366. weight: math.unit(1366, "lb"),
  37367. name: "Back",
  37368. image: {
  37369. source: "./media/characters/lexor/back.svg",
  37370. extra: 1614/1533,
  37371. bottom: 76/1690
  37372. }
  37373. },
  37374. maw: {
  37375. height: math.unit(3, "feet"),
  37376. name: "Maw",
  37377. image: {
  37378. source: "./media/characters/lexor/maw.svg"
  37379. }
  37380. },
  37381. dick: {
  37382. height: math.unit(2.59, "feet"),
  37383. name: "Dick",
  37384. image: {
  37385. source: "./media/characters/lexor/dick.svg"
  37386. }
  37387. },
  37388. },
  37389. [
  37390. {
  37391. name: "Normal",
  37392. height: math.unit(11 + 6/12, "feet"),
  37393. default: true
  37394. },
  37395. ]
  37396. ))
  37397. characterMakers.push(() => makeCharacter(
  37398. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  37399. {
  37400. front: {
  37401. height: math.unit(5 + 8/12, "feet"),
  37402. name: "Front",
  37403. image: {
  37404. source: "./media/characters/magnum/front.svg",
  37405. extra: 942/855,
  37406. bottom: 26/968
  37407. }
  37408. },
  37409. },
  37410. [
  37411. {
  37412. name: "Normal",
  37413. height: math.unit(5 + 8/12, "feet"),
  37414. default: true
  37415. },
  37416. ]
  37417. ))
  37418. characterMakers.push(() => makeCharacter(
  37419. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  37420. {
  37421. front: {
  37422. height: math.unit(18 + 4/12, "feet"),
  37423. weight: math.unit(1500, "kg"),
  37424. name: "Front",
  37425. image: {
  37426. source: "./media/characters/solas-sharpsman/front.svg",
  37427. extra: 1698/1589,
  37428. bottom: 0/1698
  37429. }
  37430. },
  37431. },
  37432. [
  37433. {
  37434. name: "Normal",
  37435. height: math.unit(18 + 4/12, "feet"),
  37436. default: true
  37437. },
  37438. ]
  37439. ))
  37440. characterMakers.push(() => makeCharacter(
  37441. { name: "October", species: ["tiger"], tags: ["anthro"] },
  37442. {
  37443. front: {
  37444. height: math.unit(5 + 5/12, "feet"),
  37445. weight: math.unit(180, "lb"),
  37446. name: "Front",
  37447. image: {
  37448. source: "./media/characters/october/front.svg",
  37449. extra: 1800/1650,
  37450. bottom: 0/1800
  37451. }
  37452. },
  37453. frontNsfw: {
  37454. height: math.unit(5 + 5/12, "feet"),
  37455. weight: math.unit(180, "lb"),
  37456. name: "Front (NSFW)",
  37457. image: {
  37458. source: "./media/characters/october/front-nsfw.svg",
  37459. extra: 1392/1307,
  37460. bottom: 42/1434
  37461. }
  37462. },
  37463. },
  37464. [
  37465. {
  37466. name: "Normal",
  37467. height: math.unit(5 + 5/12, "feet"),
  37468. default: true
  37469. },
  37470. ]
  37471. ))
  37472. characterMakers.push(() => makeCharacter(
  37473. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  37474. {
  37475. front: {
  37476. height: math.unit(8 + 6/12, "feet"),
  37477. name: "Front",
  37478. image: {
  37479. source: "./media/characters/essynkardi/front.svg",
  37480. extra: 1914/1846,
  37481. bottom: 22/1936
  37482. }
  37483. },
  37484. },
  37485. [
  37486. {
  37487. name: "Normal",
  37488. height: math.unit(8 + 6/12, "feet"),
  37489. default: true
  37490. },
  37491. ]
  37492. ))
  37493. characterMakers.push(() => makeCharacter(
  37494. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  37495. {
  37496. front: {
  37497. height: math.unit(6 + 6/12, "feet"),
  37498. weight: math.unit(7, "lb"),
  37499. name: "Front",
  37500. image: {
  37501. source: "./media/characters/icky/front.svg",
  37502. extra: 813/782,
  37503. bottom: 66/879
  37504. }
  37505. },
  37506. back: {
  37507. height: math.unit(6 + 6/12, "feet"),
  37508. weight: math.unit(7, "lb"),
  37509. name: "Back",
  37510. image: {
  37511. source: "./media/characters/icky/back.svg",
  37512. extra: 754/735,
  37513. bottom: 56/810
  37514. }
  37515. },
  37516. },
  37517. [
  37518. {
  37519. name: "Normal",
  37520. height: math.unit(6 + 6/12, "feet"),
  37521. default: true
  37522. },
  37523. ]
  37524. ))
  37525. characterMakers.push(() => makeCharacter(
  37526. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  37527. {
  37528. front: {
  37529. height: math.unit(15, "feet"),
  37530. name: "Front",
  37531. image: {
  37532. source: "./media/characters/rojas/front.svg",
  37533. extra: 1462/1408,
  37534. bottom: 95/1557
  37535. }
  37536. },
  37537. back: {
  37538. height: math.unit(15, "feet"),
  37539. name: "Back",
  37540. image: {
  37541. source: "./media/characters/rojas/back.svg",
  37542. extra: 1023/954,
  37543. bottom: 28/1051
  37544. }
  37545. },
  37546. },
  37547. [
  37548. {
  37549. name: "Normal",
  37550. height: math.unit(15, "feet"),
  37551. default: true
  37552. },
  37553. ]
  37554. ))
  37555. characterMakers.push(() => makeCharacter(
  37556. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  37557. {
  37558. frontHuman: {
  37559. height: math.unit(5 + 7/12, "feet"),
  37560. name: "Front (Human)",
  37561. image: {
  37562. source: "./media/characters/alek-dryagan/front-human.svg",
  37563. extra: 1687/1667,
  37564. bottom: 69/1756
  37565. }
  37566. },
  37567. backHuman: {
  37568. height: math.unit(5 + 7/12, "feet"),
  37569. name: "Back (Human)",
  37570. image: {
  37571. source: "./media/characters/alek-dryagan/back-human.svg",
  37572. extra: 1670/1649,
  37573. bottom: 65/1735
  37574. }
  37575. },
  37576. frontDemi: {
  37577. height: math.unit(65, "feet"),
  37578. name: "Front (Demi)",
  37579. image: {
  37580. source: "./media/characters/alek-dryagan/front-demi.svg",
  37581. extra: 1669/1642,
  37582. bottom: 49/1718
  37583. }
  37584. },
  37585. backDemi: {
  37586. height: math.unit(65, "feet"),
  37587. name: "Back (Demi)",
  37588. image: {
  37589. source: "./media/characters/alek-dryagan/back-demi.svg",
  37590. extra: 1658/1637,
  37591. bottom: 40/1698
  37592. }
  37593. },
  37594. mawHuman: {
  37595. height: math.unit(0.3, "feet"),
  37596. name: "Maw (Human)",
  37597. image: {
  37598. source: "./media/characters/alek-dryagan/maw-human.svg"
  37599. }
  37600. },
  37601. mawDemi: {
  37602. height: math.unit(3.8, "feet"),
  37603. name: "Maw (Demi)",
  37604. image: {
  37605. source: "./media/characters/alek-dryagan/maw-demi.svg"
  37606. }
  37607. },
  37608. },
  37609. [
  37610. {
  37611. name: "Normal",
  37612. height: math.unit(5 + 7/12, "feet"),
  37613. default: true
  37614. },
  37615. ]
  37616. ))
  37617. characterMakers.push(() => makeCharacter(
  37618. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  37619. {
  37620. frontHuman: {
  37621. height: math.unit(5 + 2/12, "feet"),
  37622. name: "Front (Human)",
  37623. image: {
  37624. source: "./media/characters/gen/front-human.svg",
  37625. extra: 1627/1538,
  37626. bottom: 71/1698
  37627. }
  37628. },
  37629. backHuman: {
  37630. height: math.unit(5 + 2/12, "feet"),
  37631. name: "Back (Human)",
  37632. image: {
  37633. source: "./media/characters/gen/back-human.svg",
  37634. extra: 1638/1548,
  37635. bottom: 69/1707
  37636. }
  37637. },
  37638. frontDemi: {
  37639. height: math.unit(5 + 2/12, "feet"),
  37640. name: "Front (Demi)",
  37641. image: {
  37642. source: "./media/characters/gen/front-demi.svg",
  37643. extra: 1627/1538,
  37644. bottom: 71/1698
  37645. }
  37646. },
  37647. backDemi: {
  37648. height: math.unit(5 + 2/12, "feet"),
  37649. name: "Back (Demi)",
  37650. image: {
  37651. source: "./media/characters/gen/back-demi.svg",
  37652. extra: 1638/1548,
  37653. bottom: 69/1707
  37654. }
  37655. },
  37656. },
  37657. [
  37658. {
  37659. name: "Normal",
  37660. height: math.unit(5 + 2/12, "feet"),
  37661. default: true
  37662. },
  37663. ]
  37664. ))
  37665. characterMakers.push(() => makeCharacter(
  37666. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  37667. {
  37668. frontImp: {
  37669. height: math.unit(1 + 11/12, "feet"),
  37670. name: "Front (Imp)",
  37671. image: {
  37672. source: "./media/characters/max-kobold/front-imp.svg",
  37673. extra: 1238/1134,
  37674. bottom: 81/1319
  37675. }
  37676. },
  37677. backImp: {
  37678. height: math.unit(1 + 11/12, "feet"),
  37679. name: "Back (Imp)",
  37680. image: {
  37681. source: "./media/characters/max-kobold/back-imp.svg",
  37682. extra: 1334/1175,
  37683. bottom: 34/1368
  37684. }
  37685. },
  37686. frontDemi: {
  37687. height: math.unit(5 + 9/12, "feet"),
  37688. name: "Front (Demi)",
  37689. image: {
  37690. source: "./media/characters/max-kobold/front-demi.svg",
  37691. extra: 1715/1685,
  37692. bottom: 54/1769
  37693. }
  37694. },
  37695. backDemi: {
  37696. height: math.unit(5 + 9/12, "feet"),
  37697. name: "Back (Demi)",
  37698. image: {
  37699. source: "./media/characters/max-kobold/back-demi.svg",
  37700. extra: 1752/1729,
  37701. bottom: 41/1793
  37702. }
  37703. },
  37704. handImp: {
  37705. height: math.unit(0.45, "feet"),
  37706. name: "Hand (Imp)",
  37707. image: {
  37708. source: "./media/characters/max-kobold/hand.svg"
  37709. }
  37710. },
  37711. pawImp: {
  37712. height: math.unit(0.46, "feet"),
  37713. name: "Paw (Imp)",
  37714. image: {
  37715. source: "./media/characters/max-kobold/paw.svg"
  37716. }
  37717. },
  37718. handDemi: {
  37719. height: math.unit(0.80, "feet"),
  37720. name: "Hand (Demi)",
  37721. image: {
  37722. source: "./media/characters/max-kobold/hand.svg"
  37723. }
  37724. },
  37725. pawDemi: {
  37726. height: math.unit(1.1, "feet"),
  37727. name: "Paw (Demi)",
  37728. image: {
  37729. source: "./media/characters/max-kobold/paw.svg"
  37730. }
  37731. },
  37732. headImp: {
  37733. height: math.unit(1.33, "feet"),
  37734. name: "Head (Imp)",
  37735. image: {
  37736. source: "./media/characters/max-kobold/head-imp.svg"
  37737. }
  37738. },
  37739. mawImp: {
  37740. height: math.unit(0.75, "feet"),
  37741. name: "Maw (Imp)",
  37742. image: {
  37743. source: "./media/characters/max-kobold/maw-imp.svg"
  37744. }
  37745. },
  37746. mawDemi: {
  37747. height: math.unit(0.42, "feet"),
  37748. name: "Maw (Demi)",
  37749. image: {
  37750. source: "./media/characters/max-kobold/maw-demi.svg"
  37751. }
  37752. },
  37753. },
  37754. [
  37755. {
  37756. name: "Normal",
  37757. height: math.unit(1 + 11/12, "feet"),
  37758. default: true
  37759. },
  37760. ]
  37761. ))
  37762. characterMakers.push(() => makeCharacter(
  37763. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  37764. {
  37765. front: {
  37766. height: math.unit(7 + 5/12, "feet"),
  37767. name: "Front",
  37768. image: {
  37769. source: "./media/characters/carbon/front.svg",
  37770. extra: 1754/1689,
  37771. bottom: 65/1819
  37772. }
  37773. },
  37774. back: {
  37775. height: math.unit(7 + 5/12, "feet"),
  37776. name: "Back",
  37777. image: {
  37778. source: "./media/characters/carbon/back.svg",
  37779. extra: 1762/1695,
  37780. bottom: 24/1786
  37781. }
  37782. },
  37783. frontGigantamax: {
  37784. height: math.unit(150, "feet"),
  37785. name: "Front (Gigantamax)",
  37786. image: {
  37787. source: "./media/characters/carbon/front-gigantamax.svg",
  37788. extra: 1826/1669,
  37789. bottom: 59/1885
  37790. }
  37791. },
  37792. backGigantamax: {
  37793. height: math.unit(150, "feet"),
  37794. name: "Back (Gigantamax)",
  37795. image: {
  37796. source: "./media/characters/carbon/back-gigantamax.svg",
  37797. extra: 1796/1653,
  37798. bottom: 53/1849
  37799. }
  37800. },
  37801. maw: {
  37802. height: math.unit(0.48, "feet"),
  37803. name: "Maw",
  37804. image: {
  37805. source: "./media/characters/carbon/maw.svg"
  37806. }
  37807. },
  37808. mawGigantamax: {
  37809. height: math.unit(7.5, "feet"),
  37810. name: "Maw (Gigantamax)",
  37811. image: {
  37812. source: "./media/characters/carbon/maw-gigantamax.svg"
  37813. }
  37814. },
  37815. },
  37816. [
  37817. {
  37818. name: "Normal",
  37819. height: math.unit(7 + 5/12, "feet"),
  37820. default: true
  37821. },
  37822. ]
  37823. ))
  37824. characterMakers.push(() => makeCharacter(
  37825. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  37826. {
  37827. front: {
  37828. height: math.unit(6, "feet"),
  37829. name: "Front",
  37830. image: {
  37831. source: "./media/characters/maverick/front.svg",
  37832. extra: 1672/1661,
  37833. bottom: 85/1757
  37834. }
  37835. },
  37836. back: {
  37837. height: math.unit(6, "feet"),
  37838. name: "Back",
  37839. image: {
  37840. source: "./media/characters/maverick/back.svg",
  37841. extra: 1642/1631,
  37842. bottom: 38/1680
  37843. }
  37844. },
  37845. },
  37846. [
  37847. {
  37848. name: "Normal",
  37849. height: math.unit(6, "feet"),
  37850. default: true
  37851. },
  37852. ]
  37853. ))
  37854. characterMakers.push(() => makeCharacter(
  37855. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  37856. {
  37857. front: {
  37858. height: math.unit(15, "feet"),
  37859. weight: math.unit(615, "lb"),
  37860. name: "Front",
  37861. image: {
  37862. source: "./media/characters/grockle/front.svg",
  37863. extra: 1535/1427,
  37864. bottom: 56/1591
  37865. }
  37866. },
  37867. },
  37868. [
  37869. {
  37870. name: "Normal",
  37871. height: math.unit(15, "feet"),
  37872. default: true
  37873. },
  37874. {
  37875. name: "Large",
  37876. height: math.unit(150, "feet")
  37877. },
  37878. {
  37879. name: "Macro",
  37880. height: math.unit(1876, "feet")
  37881. },
  37882. {
  37883. name: "Mega Macro",
  37884. height: math.unit(121940, "feet")
  37885. },
  37886. {
  37887. name: "Giga Macro",
  37888. height: math.unit(750, "km")
  37889. },
  37890. {
  37891. name: "Tera Macro",
  37892. height: math.unit(750000, "km")
  37893. },
  37894. {
  37895. name: "Galactic",
  37896. height: math.unit(1.4e5, "km")
  37897. },
  37898. {
  37899. name: "Godlike",
  37900. height: math.unit(9.8e280, "galaxies")
  37901. },
  37902. ]
  37903. ))
  37904. characterMakers.push(() => makeCharacter(
  37905. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  37906. {
  37907. front: {
  37908. height: math.unit(11, "meters"),
  37909. weight: math.unit(20, "tonnes"),
  37910. name: "Front",
  37911. image: {
  37912. source: "./media/characters/alistair/front.svg",
  37913. extra: 1265/1009,
  37914. bottom: 93/1358
  37915. }
  37916. },
  37917. },
  37918. [
  37919. {
  37920. name: "Normal",
  37921. height: math.unit(11, "meters"),
  37922. default: true
  37923. },
  37924. ]
  37925. ))
  37926. characterMakers.push(() => makeCharacter(
  37927. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  37928. {
  37929. front: {
  37930. height: math.unit(5 + 8/12, "feet"),
  37931. name: "Front",
  37932. image: {
  37933. source: "./media/characters/haruka/front.svg",
  37934. extra: 2012/1952,
  37935. bottom: 0/2012
  37936. }
  37937. },
  37938. },
  37939. [
  37940. {
  37941. name: "Normal",
  37942. height: math.unit(5 + 8/12, "feet"),
  37943. default: true
  37944. },
  37945. ]
  37946. ))
  37947. characterMakers.push(() => makeCharacter(
  37948. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  37949. {
  37950. back: {
  37951. height: math.unit(9, "feet"),
  37952. name: "Back",
  37953. image: {
  37954. source: "./media/characters/vivian-sylveon/back.svg",
  37955. extra: 1853/1714,
  37956. bottom: 0/1853
  37957. }
  37958. },
  37959. },
  37960. [
  37961. {
  37962. name: "Normal",
  37963. height: math.unit(9, "feet"),
  37964. default: true
  37965. },
  37966. {
  37967. name: "Macro",
  37968. height: math.unit(500, "feet")
  37969. },
  37970. {
  37971. name: "Megamacro",
  37972. height: math.unit(600, "miles")
  37973. },
  37974. {
  37975. name: "Gigamacro",
  37976. height: math.unit(30000, "miles")
  37977. },
  37978. ]
  37979. ))
  37980. characterMakers.push(() => makeCharacter(
  37981. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  37982. {
  37983. anthro: {
  37984. height: math.unit(5 + 10/12, "feet"),
  37985. weight: math.unit(100, "lb"),
  37986. name: "Anthro",
  37987. image: {
  37988. source: "./media/characters/daiki/anthro.svg",
  37989. extra: 1115/1027,
  37990. bottom: 69/1184
  37991. }
  37992. },
  37993. feral: {
  37994. height: math.unit(200, "feet"),
  37995. name: "Feral",
  37996. image: {
  37997. source: "./media/characters/daiki/feral.svg",
  37998. extra: 1256/313,
  37999. bottom: 39/1295
  38000. }
  38001. },
  38002. feralHead: {
  38003. height: math.unit(171, "feet"),
  38004. name: "Feral Head",
  38005. image: {
  38006. source: "./media/characters/daiki/feral-head.svg"
  38007. }
  38008. },
  38009. manaDragon: {
  38010. height: math.unit(170, "meters"),
  38011. name: "Mana-dragon",
  38012. image: {
  38013. source: "./media/characters/daiki/mana-dragon.svg",
  38014. extra: 763/420,
  38015. bottom: 97/860
  38016. }
  38017. },
  38018. },
  38019. [
  38020. {
  38021. name: "Normal",
  38022. height: math.unit(5 + 10/12, "feet"),
  38023. default: true
  38024. },
  38025. ]
  38026. ))
  38027. characterMakers.push(() => makeCharacter(
  38028. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  38029. {
  38030. fullyEquippedFront: {
  38031. height: math.unit(3 + 1/12, "feet"),
  38032. weight: math.unit(24, "lb"),
  38033. name: "Fully Equipped (Front)",
  38034. image: {
  38035. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  38036. extra: 687/605,
  38037. bottom: 18/705
  38038. }
  38039. },
  38040. fullyEquippedBack: {
  38041. height: math.unit(3 + 1/12, "feet"),
  38042. weight: math.unit(24, "lb"),
  38043. name: "Fully Equipped (Back)",
  38044. image: {
  38045. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  38046. extra: 689/590,
  38047. bottom: 18/707
  38048. }
  38049. },
  38050. dailyWear: {
  38051. height: math.unit(3 + 1/12, "feet"),
  38052. weight: math.unit(24, "lb"),
  38053. name: "Daily Wear",
  38054. image: {
  38055. source: "./media/characters/tea-spot/daily-wear.svg",
  38056. extra: 701/620,
  38057. bottom: 21/722
  38058. }
  38059. },
  38060. maidWork: {
  38061. height: math.unit(3 + 1/12, "feet"),
  38062. weight: math.unit(24, "lb"),
  38063. name: "Maid Work",
  38064. image: {
  38065. source: "./media/characters/tea-spot/maid-work.svg",
  38066. extra: 693/609,
  38067. bottom: 15/708
  38068. }
  38069. },
  38070. },
  38071. [
  38072. {
  38073. name: "Normal",
  38074. height: math.unit(3 + 1/12, "feet"),
  38075. default: true
  38076. },
  38077. ]
  38078. ))
  38079. characterMakers.push(() => makeCharacter(
  38080. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  38081. {
  38082. front: {
  38083. height: math.unit(175, "cm"),
  38084. weight: math.unit(75, "kg"),
  38085. name: "Front",
  38086. image: {
  38087. source: "./media/characters/chee/front.svg",
  38088. extra: 1796/1740,
  38089. bottom: 40/1836
  38090. }
  38091. },
  38092. },
  38093. [
  38094. {
  38095. name: "Micro-Micro",
  38096. height: math.unit(1, "nm")
  38097. },
  38098. {
  38099. name: "Micro-erst",
  38100. height: math.unit(1, "micrometer")
  38101. },
  38102. {
  38103. name: "Micro-er",
  38104. height: math.unit(1, "cm")
  38105. },
  38106. {
  38107. name: "Normal",
  38108. height: math.unit(175, "cm"),
  38109. default: true
  38110. },
  38111. {
  38112. name: "Macro",
  38113. height: math.unit(100, "m")
  38114. },
  38115. {
  38116. name: "Macro-er",
  38117. height: math.unit(1, "km")
  38118. },
  38119. {
  38120. name: "Macro-erst",
  38121. height: math.unit(10, "km")
  38122. },
  38123. {
  38124. name: "Macro-Macro",
  38125. height: math.unit(100, "km")
  38126. },
  38127. ]
  38128. ))
  38129. characterMakers.push(() => makeCharacter(
  38130. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  38131. {
  38132. front: {
  38133. height: math.unit(11 + 9/12, "feet"),
  38134. weight: math.unit(935, "lb"),
  38135. name: "Front",
  38136. image: {
  38137. source: "./media/characters/kingsley/front.svg",
  38138. extra: 1803/1674,
  38139. bottom: 127/1930
  38140. }
  38141. },
  38142. frontNude: {
  38143. height: math.unit(11 + 9/12, "feet"),
  38144. weight: math.unit(935, "lb"),
  38145. name: "Front (Nude)",
  38146. image: {
  38147. source: "./media/characters/kingsley/front-nude.svg",
  38148. extra: 1803/1674,
  38149. bottom: 127/1930
  38150. }
  38151. },
  38152. },
  38153. [
  38154. {
  38155. name: "Normal",
  38156. height: math.unit(11 + 9/12, "feet"),
  38157. default: true
  38158. },
  38159. ]
  38160. ))
  38161. characterMakers.push(() => makeCharacter(
  38162. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  38163. {
  38164. side: {
  38165. height: math.unit(9, "feet"),
  38166. name: "Side",
  38167. image: {
  38168. source: "./media/characters/rymel/side.svg",
  38169. extra: 792/469,
  38170. bottom: 121/913
  38171. }
  38172. },
  38173. maw: {
  38174. height: math.unit(2.4, "meters"),
  38175. name: "Maw",
  38176. image: {
  38177. source: "./media/characters/rymel/maw.svg"
  38178. }
  38179. },
  38180. },
  38181. [
  38182. {
  38183. name: "House Drake",
  38184. height: math.unit(2, "feet")
  38185. },
  38186. {
  38187. name: "Reduced",
  38188. height: math.unit(4.5, "feet")
  38189. },
  38190. {
  38191. name: "Normal",
  38192. height: math.unit(9, "feet"),
  38193. default: true
  38194. },
  38195. ]
  38196. ))
  38197. characterMakers.push(() => makeCharacter(
  38198. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  38199. {
  38200. front: {
  38201. height: math.unit(1.74, "meters"),
  38202. weight: math.unit(55, "kg"),
  38203. name: "Front",
  38204. image: {
  38205. source: "./media/characters/rubus/front.svg",
  38206. extra: 1894/1742,
  38207. bottom: 44/1938
  38208. }
  38209. },
  38210. },
  38211. [
  38212. {
  38213. name: "Normal",
  38214. height: math.unit(1.74, "meters"),
  38215. default: true
  38216. },
  38217. ]
  38218. ))
  38219. characterMakers.push(() => makeCharacter(
  38220. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  38221. {
  38222. front: {
  38223. height: math.unit(5 + 2/12, "feet"),
  38224. weight: math.unit(112, "lb"),
  38225. name: "Front",
  38226. image: {
  38227. source: "./media/characters/cassie-kingston/front.svg",
  38228. extra: 1438/1390,
  38229. bottom: 47/1485
  38230. }
  38231. },
  38232. },
  38233. [
  38234. {
  38235. name: "Normal",
  38236. height: math.unit(5 + 2/12, "feet"),
  38237. default: true
  38238. },
  38239. {
  38240. name: "Macro",
  38241. height: math.unit(128, "feet")
  38242. },
  38243. {
  38244. name: "Megamacro",
  38245. height: math.unit(2.56, "miles")
  38246. },
  38247. ]
  38248. ))
  38249. characterMakers.push(() => makeCharacter(
  38250. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  38251. {
  38252. front: {
  38253. height: math.unit(7, "feet"),
  38254. name: "Front",
  38255. image: {
  38256. source: "./media/characters/fox/front.svg",
  38257. extra: 1798/1703,
  38258. bottom: 55/1853
  38259. }
  38260. },
  38261. back: {
  38262. height: math.unit(7, "feet"),
  38263. name: "Back",
  38264. image: {
  38265. source: "./media/characters/fox/back.svg",
  38266. extra: 1748/1649,
  38267. bottom: 32/1780
  38268. }
  38269. },
  38270. head: {
  38271. height: math.unit(1.95, "feet"),
  38272. name: "Head",
  38273. image: {
  38274. source: "./media/characters/fox/head.svg"
  38275. }
  38276. },
  38277. dick: {
  38278. height: math.unit(1.33, "feet"),
  38279. name: "Dick",
  38280. image: {
  38281. source: "./media/characters/fox/dick.svg"
  38282. }
  38283. },
  38284. foot: {
  38285. height: math.unit(1, "feet"),
  38286. name: "Foot",
  38287. image: {
  38288. source: "./media/characters/fox/foot.svg"
  38289. }
  38290. },
  38291. paw: {
  38292. height: math.unit(0.92, "feet"),
  38293. name: "Paw",
  38294. image: {
  38295. source: "./media/characters/fox/paw.svg"
  38296. }
  38297. },
  38298. },
  38299. [
  38300. {
  38301. name: "Small",
  38302. height: math.unit(3, "inches")
  38303. },
  38304. {
  38305. name: "\"Realistic\"",
  38306. height: math.unit(7, "feet")
  38307. },
  38308. {
  38309. name: "Normal",
  38310. height: math.unit(150, "feet"),
  38311. default: true
  38312. },
  38313. {
  38314. name: "BIG",
  38315. height: math.unit(1200, "feet")
  38316. },
  38317. {
  38318. name: "👀",
  38319. height: math.unit(5, "miles")
  38320. },
  38321. {
  38322. name: "👀👀👀",
  38323. height: math.unit(64, "miles")
  38324. },
  38325. ]
  38326. ))
  38327. characterMakers.push(() => makeCharacter(
  38328. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  38329. {
  38330. front: {
  38331. height: math.unit(625, "feet"),
  38332. name: "Front",
  38333. image: {
  38334. source: "./media/characters/asonja-rossa/front.svg",
  38335. extra: 1833/1686,
  38336. bottom: 24/1857
  38337. }
  38338. },
  38339. back: {
  38340. height: math.unit(625, "feet"),
  38341. name: "Back",
  38342. image: {
  38343. source: "./media/characters/asonja-rossa/back.svg",
  38344. extra: 1852/1753,
  38345. bottom: 26/1878
  38346. }
  38347. },
  38348. },
  38349. [
  38350. {
  38351. name: "Macro",
  38352. height: math.unit(625, "feet"),
  38353. default: true
  38354. },
  38355. ]
  38356. ))
  38357. characterMakers.push(() => makeCharacter(
  38358. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  38359. {
  38360. side: {
  38361. height: math.unit(8, "feet"),
  38362. name: "Side",
  38363. image: {
  38364. source: "./media/characters/rezukii/side.svg",
  38365. extra: 979/542,
  38366. bottom: 87/1066
  38367. }
  38368. },
  38369. sitting: {
  38370. height: math.unit(14.6, "feet"),
  38371. name: "Sitting",
  38372. image: {
  38373. source: "./media/characters/rezukii/sitting.svg",
  38374. extra: 1023/813,
  38375. bottom: 45/1068
  38376. }
  38377. },
  38378. },
  38379. [
  38380. {
  38381. name: "Tiny",
  38382. height: math.unit(2, "feet")
  38383. },
  38384. {
  38385. name: "Smol",
  38386. height: math.unit(4, "feet")
  38387. },
  38388. {
  38389. name: "Normal",
  38390. height: math.unit(8, "feet"),
  38391. default: true
  38392. },
  38393. {
  38394. name: "Big",
  38395. height: math.unit(12, "feet")
  38396. },
  38397. {
  38398. name: "Macro",
  38399. height: math.unit(30, "feet")
  38400. },
  38401. ]
  38402. ))
  38403. characterMakers.push(() => makeCharacter(
  38404. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  38405. {
  38406. front: {
  38407. height: math.unit(14, "feet"),
  38408. weight: math.unit(9.5, "tonnes"),
  38409. name: "Front",
  38410. image: {
  38411. source: "./media/characters/dawnheart/front.svg",
  38412. extra: 2792/2675,
  38413. bottom: 64/2856
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(14, "feet"),
  38421. default: true
  38422. },
  38423. ]
  38424. ))
  38425. characterMakers.push(() => makeCharacter(
  38426. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  38427. {
  38428. front: {
  38429. height: math.unit(1.7, "m"),
  38430. name: "Front",
  38431. image: {
  38432. source: "./media/characters/gladi/front.svg",
  38433. extra: 1460/1362,
  38434. bottom: 19/1479
  38435. }
  38436. },
  38437. back: {
  38438. height: math.unit(1.7, "m"),
  38439. name: "Back",
  38440. image: {
  38441. source: "./media/characters/gladi/back.svg",
  38442. extra: 1459/1357,
  38443. bottom: 12/1471
  38444. }
  38445. },
  38446. feral: {
  38447. height: math.unit(2.05, "m"),
  38448. name: "Feral",
  38449. image: {
  38450. source: "./media/characters/gladi/feral.svg",
  38451. extra: 821/557,
  38452. bottom: 91/912
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Shortest",
  38459. height: math.unit(70, "cm")
  38460. },
  38461. {
  38462. name: "Normal",
  38463. height: math.unit(1.7, "m")
  38464. },
  38465. {
  38466. name: "Macro",
  38467. height: math.unit(10, "m"),
  38468. default: true
  38469. },
  38470. {
  38471. name: "Tallest",
  38472. height: math.unit(200, "m")
  38473. },
  38474. ]
  38475. ))
  38476. characterMakers.push(() => makeCharacter(
  38477. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  38478. {
  38479. front: {
  38480. height: math.unit(5 + 7/12, "feet"),
  38481. weight: math.unit(2, "tons"),
  38482. name: "Front",
  38483. image: {
  38484. source: "./media/characters/erdno/front.svg",
  38485. extra: 1234/1129,
  38486. bottom: 35/1269
  38487. }
  38488. },
  38489. angled: {
  38490. height: math.unit(5 + 7/12, "feet"),
  38491. weight: math.unit(2, "tons"),
  38492. name: "Angled",
  38493. image: {
  38494. source: "./media/characters/erdno/angled.svg",
  38495. extra: 1185/1139,
  38496. bottom: 36/1221
  38497. }
  38498. },
  38499. side: {
  38500. height: math.unit(5 + 7/12, "feet"),
  38501. weight: math.unit(2, "tons"),
  38502. name: "Side",
  38503. image: {
  38504. source: "./media/characters/erdno/side.svg",
  38505. extra: 1191/1144,
  38506. bottom: 40/1231
  38507. }
  38508. },
  38509. back: {
  38510. height: math.unit(5 + 7/12, "feet"),
  38511. weight: math.unit(2, "tons"),
  38512. name: "Back",
  38513. image: {
  38514. source: "./media/characters/erdno/back.svg",
  38515. extra: 1202/1146,
  38516. bottom: 17/1219
  38517. }
  38518. },
  38519. frontNsfw: {
  38520. height: math.unit(5 + 7/12, "feet"),
  38521. weight: math.unit(2, "tons"),
  38522. name: "Front (NSFW)",
  38523. image: {
  38524. source: "./media/characters/erdno/front-nsfw.svg",
  38525. extra: 1234/1129,
  38526. bottom: 35/1269
  38527. }
  38528. },
  38529. angledNsfw: {
  38530. height: math.unit(5 + 7/12, "feet"),
  38531. weight: math.unit(2, "tons"),
  38532. name: "Angled (NSFW)",
  38533. image: {
  38534. source: "./media/characters/erdno/angled-nsfw.svg",
  38535. extra: 1185/1139,
  38536. bottom: 36/1221
  38537. }
  38538. },
  38539. sideNsfw: {
  38540. height: math.unit(5 + 7/12, "feet"),
  38541. weight: math.unit(2, "tons"),
  38542. name: "Side (NSFW)",
  38543. image: {
  38544. source: "./media/characters/erdno/side-nsfw.svg",
  38545. extra: 1191/1144,
  38546. bottom: 40/1231
  38547. }
  38548. },
  38549. backNsfw: {
  38550. height: math.unit(5 + 7/12, "feet"),
  38551. weight: math.unit(2, "tons"),
  38552. name: "Back (NSFW)",
  38553. image: {
  38554. source: "./media/characters/erdno/back-nsfw.svg",
  38555. extra: 1202/1146,
  38556. bottom: 17/1219
  38557. }
  38558. },
  38559. frontHyper: {
  38560. height: math.unit(5 + 7/12, "feet"),
  38561. weight: math.unit(2, "tons"),
  38562. name: "Front (Hyper)",
  38563. image: {
  38564. source: "./media/characters/erdno/front-hyper.svg",
  38565. extra: 1298/1136,
  38566. bottom: 35/1333
  38567. }
  38568. },
  38569. },
  38570. [
  38571. {
  38572. name: "Normal",
  38573. height: math.unit(5 + 7/12, "feet"),
  38574. default: true
  38575. },
  38576. {
  38577. name: "Big",
  38578. height: math.unit(5.7, "meters")
  38579. },
  38580. {
  38581. name: "Macro",
  38582. height: math.unit(5.7, "kilometers")
  38583. },
  38584. {
  38585. name: "Megamacro",
  38586. height: math.unit(5.7, "earths")
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  38592. {
  38593. front: {
  38594. height: math.unit(5 + 10/12, "feet"),
  38595. weight: math.unit(150, "lb"),
  38596. name: "Front",
  38597. image: {
  38598. source: "./media/characters/jamie/front.svg",
  38599. extra: 1908/1768,
  38600. bottom: 19/1927
  38601. }
  38602. },
  38603. },
  38604. [
  38605. {
  38606. name: "Minimum",
  38607. height: math.unit(2, "cm")
  38608. },
  38609. {
  38610. name: "Micro",
  38611. height: math.unit(3, "inches")
  38612. },
  38613. {
  38614. name: "Normal",
  38615. height: math.unit(5 + 10/12, "feet"),
  38616. default: true
  38617. },
  38618. {
  38619. name: "Macro",
  38620. height: math.unit(150, "feet")
  38621. },
  38622. {
  38623. name: "Megamacro",
  38624. height: math.unit(10000, "m")
  38625. },
  38626. ]
  38627. ))
  38628. characterMakers.push(() => makeCharacter(
  38629. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  38630. {
  38631. front: {
  38632. height: math.unit(2, "meters"),
  38633. weight: math.unit(100, "kg"),
  38634. name: "Front",
  38635. image: {
  38636. source: "./media/characters/shiron/front.svg",
  38637. extra: 2103/1985,
  38638. bottom: 98/2201
  38639. }
  38640. },
  38641. back: {
  38642. height: math.unit(2, "meters"),
  38643. weight: math.unit(100, "kg"),
  38644. name: "Back",
  38645. image: {
  38646. source: "./media/characters/shiron/back.svg",
  38647. extra: 2110/2015,
  38648. bottom: 89/2199
  38649. }
  38650. },
  38651. hand: {
  38652. height: math.unit(0.96, "feet"),
  38653. name: "Hand",
  38654. image: {
  38655. source: "./media/characters/shiron/hand.svg"
  38656. }
  38657. },
  38658. foot: {
  38659. height: math.unit(1.464, "feet"),
  38660. name: "Foot",
  38661. image: {
  38662. source: "./media/characters/shiron/foot.svg"
  38663. }
  38664. },
  38665. },
  38666. [
  38667. {
  38668. name: "Normal",
  38669. height: math.unit(2, "meters")
  38670. },
  38671. {
  38672. name: "Macro",
  38673. height: math.unit(500, "meters"),
  38674. default: true
  38675. },
  38676. {
  38677. name: "Megamacro",
  38678. height: math.unit(20, "km")
  38679. },
  38680. ]
  38681. ))
  38682. characterMakers.push(() => makeCharacter(
  38683. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  38684. {
  38685. front: {
  38686. height: math.unit(6, "feet"),
  38687. name: "Front",
  38688. image: {
  38689. source: "./media/characters/sam/front.svg",
  38690. extra: 849/826,
  38691. bottom: 19/868
  38692. }
  38693. },
  38694. },
  38695. [
  38696. {
  38697. name: "Normal",
  38698. height: math.unit(6, "feet"),
  38699. default: true
  38700. },
  38701. ]
  38702. ))
  38703. characterMakers.push(() => makeCharacter(
  38704. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  38705. {
  38706. front: {
  38707. height: math.unit(8 + 4/12, "feet"),
  38708. weight: math.unit(122, "kg"),
  38709. name: "Front",
  38710. image: {
  38711. source: "./media/characters/namori-kurogawa/front.svg",
  38712. extra: 1894/1576,
  38713. bottom: 34/1928
  38714. }
  38715. },
  38716. },
  38717. [
  38718. {
  38719. name: "Normal",
  38720. height: math.unit(8 + 4/12, "feet"),
  38721. default: true
  38722. },
  38723. ]
  38724. ))
  38725. characterMakers.push(() => makeCharacter(
  38726. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  38727. {
  38728. front: {
  38729. height: math.unit(9, "feet"),
  38730. weight: math.unit(621, "lb"),
  38731. name: "Front",
  38732. image: {
  38733. source: "./media/characters/unmru/front.svg",
  38734. extra: 1853/1747,
  38735. bottom: 73/1926
  38736. }
  38737. },
  38738. side: {
  38739. height: math.unit(9, "feet"),
  38740. weight: math.unit(621, "lb"),
  38741. name: "Side",
  38742. image: {
  38743. source: "./media/characters/unmru/side.svg",
  38744. extra: 1781/1671,
  38745. bottom: 127/1908
  38746. }
  38747. },
  38748. back: {
  38749. height: math.unit(9, "feet"),
  38750. weight: math.unit(621, "lb"),
  38751. name: "Back",
  38752. image: {
  38753. source: "./media/characters/unmru/back.svg",
  38754. extra: 1894/1765,
  38755. bottom: 75/1969
  38756. }
  38757. },
  38758. dick: {
  38759. height: math.unit(3, "feet"),
  38760. weight: math.unit(35, "lb"),
  38761. name: "Dick",
  38762. image: {
  38763. source: "./media/characters/unmru/dick.svg"
  38764. }
  38765. },
  38766. },
  38767. [
  38768. {
  38769. name: "Normal",
  38770. height: math.unit(9, "feet")
  38771. },
  38772. {
  38773. name: "Natural",
  38774. height: math.unit(27, "feet"),
  38775. default: true
  38776. },
  38777. {
  38778. name: "Giant",
  38779. height: math.unit(90, "feet")
  38780. },
  38781. {
  38782. name: "Kaiju",
  38783. height: math.unit(270, "feet")
  38784. },
  38785. {
  38786. name: "Macro",
  38787. height: math.unit(900, "feet")
  38788. },
  38789. {
  38790. name: "Macro+",
  38791. height: math.unit(2700, "feet")
  38792. },
  38793. {
  38794. name: "Megamacro",
  38795. height: math.unit(9000, "feet")
  38796. },
  38797. {
  38798. name: "City-Crushing",
  38799. height: math.unit(27000, "feet")
  38800. },
  38801. {
  38802. name: "Mountain-Mashing",
  38803. height: math.unit(90000, "feet")
  38804. },
  38805. {
  38806. name: "Earth-Eclipsing",
  38807. height: math.unit(2.7e8, "feet")
  38808. },
  38809. {
  38810. name: "Sol-Swallowing",
  38811. height: math.unit(9e10, "feet")
  38812. },
  38813. {
  38814. name: "Majoris-Munching",
  38815. height: math.unit(2.7e13, "feet")
  38816. },
  38817. ]
  38818. ))
  38819. characterMakers.push(() => makeCharacter(
  38820. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  38821. {
  38822. front: {
  38823. height: math.unit(1, "inch"),
  38824. name: "Front",
  38825. image: {
  38826. source: "./media/characters/squeaks-mouse/front.svg",
  38827. extra: 352/308,
  38828. bottom: 25/377
  38829. }
  38830. },
  38831. },
  38832. [
  38833. {
  38834. name: "Micro",
  38835. height: math.unit(1, "inch"),
  38836. default: true
  38837. },
  38838. ]
  38839. ))
  38840. characterMakers.push(() => makeCharacter(
  38841. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  38842. {
  38843. side: {
  38844. height: math.unit(35, "feet"),
  38845. name: "Side",
  38846. image: {
  38847. source: "./media/characters/sayko/side.svg",
  38848. extra: 1697/1021,
  38849. bottom: 82/1779
  38850. }
  38851. },
  38852. head: {
  38853. height: math.unit(16, "feet"),
  38854. name: "Head",
  38855. image: {
  38856. source: "./media/characters/sayko/head.svg"
  38857. }
  38858. },
  38859. forepaw: {
  38860. height: math.unit(7.85, "feet"),
  38861. name: "Forepaw",
  38862. image: {
  38863. source: "./media/characters/sayko/forepaw.svg"
  38864. }
  38865. },
  38866. hindpaw: {
  38867. height: math.unit(8.8, "feet"),
  38868. name: "Hindpaw",
  38869. image: {
  38870. source: "./media/characters/sayko/hindpaw.svg"
  38871. }
  38872. },
  38873. },
  38874. [
  38875. {
  38876. name: "Normal",
  38877. height: math.unit(35, "feet"),
  38878. default: true
  38879. },
  38880. {
  38881. name: "Colossus",
  38882. height: math.unit(100, "meters")
  38883. },
  38884. {
  38885. name: "\"Small\" Deity",
  38886. height: math.unit(1, "km")
  38887. },
  38888. {
  38889. name: "\"Large\" Deity",
  38890. height: math.unit(15, "km")
  38891. },
  38892. ]
  38893. ))
  38894. characterMakers.push(() => makeCharacter(
  38895. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  38896. {
  38897. front: {
  38898. height: math.unit(6, "feet"),
  38899. weight: math.unit(250, "lb"),
  38900. name: "Front",
  38901. image: {
  38902. source: "./media/characters/mukiro/front.svg",
  38903. extra: 1368/1310,
  38904. bottom: 34/1402
  38905. }
  38906. },
  38907. },
  38908. [
  38909. {
  38910. name: "Normal",
  38911. height: math.unit(6, "feet"),
  38912. default: true
  38913. },
  38914. ]
  38915. ))
  38916. characterMakers.push(() => makeCharacter(
  38917. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  38918. {
  38919. front: {
  38920. height: math.unit(12 + 4/12, "feet"),
  38921. name: "Front",
  38922. image: {
  38923. source: "./media/characters/zeph-the-tiger-god/front.svg",
  38924. extra: 1346/1311,
  38925. bottom: 65/1411
  38926. }
  38927. },
  38928. },
  38929. [
  38930. {
  38931. name: "Base",
  38932. height: math.unit(12 + 4/12, "feet"),
  38933. default: true
  38934. },
  38935. {
  38936. name: "Macro",
  38937. height: math.unit(150, "feet")
  38938. },
  38939. {
  38940. name: "Mega",
  38941. height: math.unit(2, "miles")
  38942. },
  38943. {
  38944. name: "Demi God",
  38945. height: math.unit(4, "AU")
  38946. },
  38947. {
  38948. name: "God Size",
  38949. height: math.unit(1, "universe")
  38950. },
  38951. ]
  38952. ))
  38953. characterMakers.push(() => makeCharacter(
  38954. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  38955. {
  38956. front: {
  38957. height: math.unit(3 + 3/12, "feet"),
  38958. weight: math.unit(88, "lb"),
  38959. name: "Front",
  38960. image: {
  38961. source: "./media/characters/trey/front.svg",
  38962. extra: 1815/1509,
  38963. bottom: 60/1875
  38964. }
  38965. },
  38966. },
  38967. [
  38968. {
  38969. name: "Normal",
  38970. height: math.unit(3 + 3/12, "feet"),
  38971. default: true
  38972. },
  38973. ]
  38974. ))
  38975. characterMakers.push(() => makeCharacter(
  38976. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  38977. {
  38978. front: {
  38979. height: math.unit(4, "meters"),
  38980. name: "Front",
  38981. image: {
  38982. source: "./media/characters/adelonda/front.svg",
  38983. extra: 1077/982,
  38984. bottom: 39/1116
  38985. }
  38986. },
  38987. back: {
  38988. height: math.unit(4, "meters"),
  38989. name: "Back",
  38990. image: {
  38991. source: "./media/characters/adelonda/back.svg",
  38992. extra: 1105/1003,
  38993. bottom: 25/1130
  38994. }
  38995. },
  38996. feral: {
  38997. height: math.unit(40/1.5, "meters"),
  38998. name: "Feral",
  38999. image: {
  39000. source: "./media/characters/adelonda/feral.svg",
  39001. extra: 597/271,
  39002. bottom: 387/984
  39003. }
  39004. },
  39005. },
  39006. [
  39007. {
  39008. name: "Normal",
  39009. height: math.unit(4, "meters"),
  39010. default: true
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(8 + 4/12, "feet"),
  39019. weight: math.unit(670, "lb"),
  39020. name: "Front",
  39021. image: {
  39022. source: "./media/characters/acadiel/front.svg",
  39023. extra: 1901/1595,
  39024. bottom: 142/2043
  39025. }
  39026. },
  39027. },
  39028. [
  39029. {
  39030. name: "Normal",
  39031. height: math.unit(8 + 4/12, "feet"),
  39032. default: true
  39033. },
  39034. {
  39035. name: "Macro",
  39036. height: math.unit(200, "feet")
  39037. },
  39038. ]
  39039. ))
  39040. characterMakers.push(() => makeCharacter(
  39041. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  39042. {
  39043. front: {
  39044. height: math.unit(6 + 2/12, "feet"),
  39045. weight: math.unit(185, "lb"),
  39046. name: "Front",
  39047. image: {
  39048. source: "./media/characters/kayne-ein/front.svg",
  39049. extra: 1780/1560,
  39050. bottom: 81/1861
  39051. }
  39052. },
  39053. },
  39054. [
  39055. {
  39056. name: "Normal",
  39057. height: math.unit(6 + 2/12, "feet"),
  39058. default: true
  39059. },
  39060. {
  39061. name: "Transformation Stage",
  39062. height: math.unit(15, "feet")
  39063. },
  39064. {
  39065. name: "Macro",
  39066. height: math.unit(150, "feet")
  39067. },
  39068. {
  39069. name: "Earth's Shadow",
  39070. height: math.unit(6200, "miles")
  39071. },
  39072. {
  39073. name: "Universal Demon",
  39074. height: math.unit(28e9, "parsecs")
  39075. },
  39076. {
  39077. name: "Multiverse God",
  39078. height: math.unit(3, "multiverses")
  39079. },
  39080. ]
  39081. ))
  39082. characterMakers.push(() => makeCharacter(
  39083. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  39084. {
  39085. front: {
  39086. height: math.unit(5 + 5/12, "feet"),
  39087. name: "Front",
  39088. image: {
  39089. source: "./media/characters/fawn/front.svg",
  39090. extra: 1873/1731,
  39091. bottom: 95/1968
  39092. }
  39093. },
  39094. back: {
  39095. height: math.unit(5 + 5/12, "feet"),
  39096. name: "Back",
  39097. image: {
  39098. source: "./media/characters/fawn/back.svg",
  39099. extra: 1813/1700,
  39100. bottom: 14/1827
  39101. }
  39102. },
  39103. hoof: {
  39104. height: math.unit(1.45, "feet"),
  39105. name: "Hoof",
  39106. image: {
  39107. source: "./media/characters/fawn/hoof.svg"
  39108. }
  39109. },
  39110. },
  39111. [
  39112. {
  39113. name: "Normal",
  39114. height: math.unit(5 + 5/12, "feet"),
  39115. default: true
  39116. },
  39117. ]
  39118. ))
  39119. characterMakers.push(() => makeCharacter(
  39120. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  39121. {
  39122. front: {
  39123. height: math.unit(2 + 5/12, "feet"),
  39124. name: "Front",
  39125. image: {
  39126. source: "./media/characters/orion/front.svg",
  39127. extra: 1366/1304,
  39128. bottom: 43/1409
  39129. }
  39130. },
  39131. paw: {
  39132. height: math.unit(0.52, "feet"),
  39133. name: "Paw",
  39134. image: {
  39135. source: "./media/characters/orion/paw.svg"
  39136. }
  39137. },
  39138. },
  39139. [
  39140. {
  39141. name: "Normal",
  39142. height: math.unit(2 + 5/12, "feet"),
  39143. default: true
  39144. },
  39145. ]
  39146. ))
  39147. characterMakers.push(() => makeCharacter(
  39148. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  39149. {
  39150. front: {
  39151. height: math.unit(5 + 10/12, "feet"),
  39152. name: "Front",
  39153. image: {
  39154. source: "./media/characters/vera/front.svg",
  39155. extra: 1680/1575,
  39156. bottom: 49/1729
  39157. }
  39158. },
  39159. back: {
  39160. height: math.unit(5 + 10/12, "feet"),
  39161. name: "Back",
  39162. image: {
  39163. source: "./media/characters/vera/back.svg",
  39164. extra: 1700/1588,
  39165. bottom: 18/1718
  39166. }
  39167. },
  39168. arcanine: {
  39169. height: math.unit(6 + 8/12, "feet"),
  39170. name: "Arcanine",
  39171. image: {
  39172. source: "./media/characters/vera/arcanine.svg",
  39173. extra: 1590/1511,
  39174. bottom: 71/1661
  39175. }
  39176. },
  39177. maw: {
  39178. height: math.unit(0.82, "feet"),
  39179. name: "Maw",
  39180. image: {
  39181. source: "./media/characters/vera/maw.svg"
  39182. }
  39183. },
  39184. mawArcanine: {
  39185. height: math.unit(0.97, "feet"),
  39186. name: "Maw (Arcanine)",
  39187. image: {
  39188. source: "./media/characters/vera/maw-arcanine.svg"
  39189. }
  39190. },
  39191. paw: {
  39192. height: math.unit(0.75, "feet"),
  39193. name: "Paw",
  39194. image: {
  39195. source: "./media/characters/vera/paw.svg"
  39196. }
  39197. },
  39198. pawprint: {
  39199. height: math.unit(0.52, "feet"),
  39200. name: "Pawprint",
  39201. image: {
  39202. source: "./media/characters/vera/pawprint.svg"
  39203. }
  39204. },
  39205. },
  39206. [
  39207. {
  39208. name: "Normal",
  39209. height: math.unit(5 + 10/12, "feet"),
  39210. default: true
  39211. },
  39212. {
  39213. name: "Macro",
  39214. height: math.unit(75, "feet")
  39215. },
  39216. ]
  39217. ))
  39218. characterMakers.push(() => makeCharacter(
  39219. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  39220. {
  39221. front: {
  39222. height: math.unit(4, "feet"),
  39223. weight: math.unit(40, "lb"),
  39224. name: "Front",
  39225. image: {
  39226. source: "./media/characters/orvan-rabbit/front.svg",
  39227. extra: 1896/1642,
  39228. bottom: 29/1925
  39229. }
  39230. },
  39231. },
  39232. [
  39233. {
  39234. name: "Normal",
  39235. height: math.unit(4, "feet"),
  39236. default: true
  39237. },
  39238. ]
  39239. ))
  39240. characterMakers.push(() => makeCharacter(
  39241. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  39242. {
  39243. front: {
  39244. height: math.unit(6, "feet"),
  39245. weight: math.unit(168, "lb"),
  39246. name: "Front",
  39247. image: {
  39248. source: "./media/characters/lisa/front.svg",
  39249. extra: 2065/1867,
  39250. bottom: 46/2111
  39251. }
  39252. },
  39253. back: {
  39254. height: math.unit(6, "feet"),
  39255. weight: math.unit(168, "lb"),
  39256. name: "Back",
  39257. image: {
  39258. source: "./media/characters/lisa/back.svg",
  39259. extra: 1982/1838,
  39260. bottom: 29/2011
  39261. }
  39262. },
  39263. maw: {
  39264. height: math.unit(0.81, "feet"),
  39265. name: "Maw",
  39266. image: {
  39267. source: "./media/characters/lisa/maw.svg"
  39268. }
  39269. },
  39270. paw: {
  39271. height: math.unit(0.9, "feet"),
  39272. name: "Paw",
  39273. image: {
  39274. source: "./media/characters/lisa/paw.svg"
  39275. }
  39276. },
  39277. caribousune: {
  39278. height: math.unit(7 + 2/12, "feet"),
  39279. weight: math.unit(268, "lb"),
  39280. name: "Caribousune",
  39281. image: {
  39282. source: "./media/characters/lisa/caribousune.svg",
  39283. extra: 1843/1633,
  39284. bottom: 29/1872
  39285. }
  39286. },
  39287. frontCaribousune: {
  39288. height: math.unit(7 + 2/12, "feet"),
  39289. weight: math.unit(268, "lb"),
  39290. name: "Front (Caribousune)",
  39291. image: {
  39292. source: "./media/characters/lisa/front-caribousune.svg",
  39293. extra: 1818/1638,
  39294. bottom: 52/1870
  39295. }
  39296. },
  39297. sideCaribousune: {
  39298. height: math.unit(7 + 2/12, "feet"),
  39299. weight: math.unit(268, "lb"),
  39300. name: "Side (Caribousune)",
  39301. image: {
  39302. source: "./media/characters/lisa/side-caribousune.svg",
  39303. extra: 1851/1635,
  39304. bottom: 16/1867
  39305. }
  39306. },
  39307. backCaribousune: {
  39308. height: math.unit(7 + 2/12, "feet"),
  39309. weight: math.unit(268, "lb"),
  39310. name: "Back (Caribousune)",
  39311. image: {
  39312. source: "./media/characters/lisa/back-caribousune.svg",
  39313. extra: 1801/1604,
  39314. bottom: 44/1845
  39315. }
  39316. },
  39317. caribou: {
  39318. height: math.unit(7 + 2/12, "feet"),
  39319. weight: math.unit(268, "lb"),
  39320. name: "Caribou",
  39321. image: {
  39322. source: "./media/characters/lisa/caribou.svg",
  39323. extra: 1843/1633,
  39324. bottom: 29/1872
  39325. }
  39326. },
  39327. frontCaribou: {
  39328. height: math.unit(7 + 2/12, "feet"),
  39329. weight: math.unit(268, "lb"),
  39330. name: "Front (Caribou)",
  39331. image: {
  39332. source: "./media/characters/lisa/front-caribou.svg",
  39333. extra: 1818/1638,
  39334. bottom: 52/1870
  39335. }
  39336. },
  39337. sideCaribou: {
  39338. height: math.unit(7 + 2/12, "feet"),
  39339. weight: math.unit(268, "lb"),
  39340. name: "Side (Caribou)",
  39341. image: {
  39342. source: "./media/characters/lisa/side-caribou.svg",
  39343. extra: 1851/1635,
  39344. bottom: 16/1867
  39345. }
  39346. },
  39347. backCaribou: {
  39348. height: math.unit(7 + 2/12, "feet"),
  39349. weight: math.unit(268, "lb"),
  39350. name: "Back (Caribou)",
  39351. image: {
  39352. source: "./media/characters/lisa/back-caribou.svg",
  39353. extra: 1801/1604,
  39354. bottom: 44/1845
  39355. }
  39356. },
  39357. mawCaribou: {
  39358. height: math.unit(1.45, "feet"),
  39359. name: "Maw (Caribou)",
  39360. image: {
  39361. source: "./media/characters/lisa/maw-caribou.svg"
  39362. }
  39363. },
  39364. mawCaribousune: {
  39365. height: math.unit(1.45, "feet"),
  39366. name: "Maw (Caribousune)",
  39367. image: {
  39368. source: "./media/characters/lisa/maw-caribousune.svg"
  39369. }
  39370. },
  39371. pawCaribousune: {
  39372. height: math.unit(1.61, "feet"),
  39373. name: "Paw (Caribou)",
  39374. image: {
  39375. source: "./media/characters/lisa/paw-caribousune.svg"
  39376. }
  39377. },
  39378. },
  39379. [
  39380. {
  39381. name: "Normal",
  39382. height: math.unit(6, "feet")
  39383. },
  39384. {
  39385. name: "God Size",
  39386. height: math.unit(72, "feet"),
  39387. default: true
  39388. },
  39389. {
  39390. name: "Towering",
  39391. height: math.unit(288, "feet")
  39392. },
  39393. {
  39394. name: "City Size",
  39395. height: math.unit(48384, "feet")
  39396. },
  39397. {
  39398. name: "Continental",
  39399. height: math.unit(4200, "miles")
  39400. },
  39401. {
  39402. name: "Planet Eater",
  39403. height: math.unit(42, "earths")
  39404. },
  39405. {
  39406. name: "Star Swallower",
  39407. height: math.unit(42, "solarradii")
  39408. },
  39409. {
  39410. name: "System Swallower",
  39411. height: math.unit(84000, "AU")
  39412. },
  39413. {
  39414. name: "Galaxy Gobbler",
  39415. height: math.unit(42, "galaxies")
  39416. },
  39417. {
  39418. name: "Universe Devourer",
  39419. height: math.unit(42, "universes")
  39420. },
  39421. {
  39422. name: "Multiverse Muncher",
  39423. height: math.unit(42, "multiverses")
  39424. },
  39425. ]
  39426. ))
  39427. characterMakers.push(() => makeCharacter(
  39428. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  39429. {
  39430. front: {
  39431. height: math.unit(36, "feet"),
  39432. name: "Front",
  39433. image: {
  39434. source: "./media/characters/shadow-rat/front.svg",
  39435. extra: 1845/1758,
  39436. bottom: 83/1928
  39437. }
  39438. },
  39439. },
  39440. [
  39441. {
  39442. name: "Macro",
  39443. height: math.unit(36, "feet"),
  39444. default: true
  39445. },
  39446. ]
  39447. ))
  39448. characterMakers.push(() => makeCharacter(
  39449. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  39450. {
  39451. side: {
  39452. height: math.unit(8, "feet"),
  39453. weight: math.unit(2630, "lb"),
  39454. name: "Side",
  39455. image: {
  39456. source: "./media/characters/torallia/side.svg",
  39457. extra: 2164/2021,
  39458. bottom: 371/2535
  39459. }
  39460. },
  39461. },
  39462. [
  39463. {
  39464. name: "Mortal Interaction",
  39465. height: math.unit(8, "feet")
  39466. },
  39467. {
  39468. name: "Natural",
  39469. height: math.unit(24, "feet"),
  39470. default: true
  39471. },
  39472. {
  39473. name: "Giant",
  39474. height: math.unit(80, "feet")
  39475. },
  39476. {
  39477. name: "Kaiju",
  39478. height: math.unit(240, "feet")
  39479. },
  39480. {
  39481. name: "Macro",
  39482. height: math.unit(800, "feet")
  39483. },
  39484. {
  39485. name: "Macro+",
  39486. height: math.unit(2400, "feet")
  39487. },
  39488. {
  39489. name: "Macro++",
  39490. height: math.unit(8000, "feet")
  39491. },
  39492. {
  39493. name: "City-Crushing",
  39494. height: math.unit(24000, "feet")
  39495. },
  39496. {
  39497. name: "Mountain-Mashing",
  39498. height: math.unit(80000, "feet")
  39499. },
  39500. {
  39501. name: "District Demolisher",
  39502. height: math.unit(240000, "feet")
  39503. },
  39504. {
  39505. name: "Tri-County Terror",
  39506. height: math.unit(800000, "feet")
  39507. },
  39508. {
  39509. name: "State Smasher",
  39510. height: math.unit(2.4e6, "feet")
  39511. },
  39512. {
  39513. name: "Nation Nemesis",
  39514. height: math.unit(8e6, "feet")
  39515. },
  39516. {
  39517. name: "Continent Cracker",
  39518. height: math.unit(2.4e7, "feet")
  39519. },
  39520. {
  39521. name: "Planet-Pillaging",
  39522. height: math.unit(8e7, "feet")
  39523. },
  39524. {
  39525. name: "Earth-Eclipsing",
  39526. height: math.unit(2.4e8, "feet")
  39527. },
  39528. {
  39529. name: "Jovian-Jostling",
  39530. height: math.unit(8e8, "feet")
  39531. },
  39532. {
  39533. name: "Gas Giant Gulper",
  39534. height: math.unit(2.4e9, "feet")
  39535. },
  39536. {
  39537. name: "Astral Annihilator",
  39538. height: math.unit(8e9, "feet")
  39539. },
  39540. {
  39541. name: "Celestial Conqueror",
  39542. height: math.unit(2.4e10, "feet")
  39543. },
  39544. {
  39545. name: "Sol-Swallowing",
  39546. height: math.unit(8e10, "feet")
  39547. },
  39548. {
  39549. name: "Hunter of the Heavens",
  39550. height: math.unit(2.4e13, "feet")
  39551. },
  39552. ]
  39553. ))
  39554. characterMakers.push(() => makeCharacter(
  39555. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  39556. {
  39557. front: {
  39558. height: math.unit(6 + 8/12, "feet"),
  39559. name: "Front",
  39560. image: {
  39561. source: "./media/characters/rebecca-pawlson/front.svg",
  39562. extra: 1737/1596,
  39563. bottom: 107/1844
  39564. }
  39565. },
  39566. back: {
  39567. height: math.unit(6 + 8/12, "feet"),
  39568. name: "Back",
  39569. image: {
  39570. source: "./media/characters/rebecca-pawlson/back.svg",
  39571. extra: 1702/1523,
  39572. bottom: 86/1788
  39573. }
  39574. },
  39575. },
  39576. [
  39577. {
  39578. name: "Normal",
  39579. height: math.unit(6 + 8/12, "feet")
  39580. },
  39581. {
  39582. name: "Mini Macro",
  39583. height: math.unit(10, "feet"),
  39584. default: true
  39585. },
  39586. {
  39587. name: "Macro",
  39588. height: math.unit(100, "feet")
  39589. },
  39590. {
  39591. name: "Mega Macro",
  39592. height: math.unit(2500, "feet")
  39593. },
  39594. {
  39595. name: "Giga Macro",
  39596. height: math.unit(50, "miles")
  39597. },
  39598. ]
  39599. ))
  39600. characterMakers.push(() => makeCharacter(
  39601. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  39602. {
  39603. front: {
  39604. height: math.unit(7 + 6/12, "feet"),
  39605. weight: math.unit(600, "lb"),
  39606. name: "Front",
  39607. image: {
  39608. source: "./media/characters/moxie-nova/front.svg",
  39609. extra: 1734/1652,
  39610. bottom: 41/1775
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(7 + 6/12, "feet"),
  39618. default: true
  39619. },
  39620. ]
  39621. ))
  39622. characterMakers.push(() => makeCharacter(
  39623. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  39624. {
  39625. goat: {
  39626. height: math.unit(4, "feet"),
  39627. weight: math.unit(180, "lb"),
  39628. name: "Goat",
  39629. image: {
  39630. source: "./media/characters/tiffany/goat.svg",
  39631. extra: 1845/1595,
  39632. bottom: 106/1951
  39633. }
  39634. },
  39635. front: {
  39636. height: math.unit(5, "feet"),
  39637. weight: math.unit(150, "lb"),
  39638. name: "Foxcoon",
  39639. image: {
  39640. source: "./media/characters/tiffany/foxcoon.svg",
  39641. extra: 1941/1845,
  39642. bottom: 58/1999
  39643. }
  39644. },
  39645. },
  39646. [
  39647. {
  39648. name: "Normal",
  39649. height: math.unit(5, "feet"),
  39650. default: true
  39651. },
  39652. ]
  39653. ))
  39654. characterMakers.push(() => makeCharacter(
  39655. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  39656. {
  39657. front: {
  39658. height: math.unit(8, "feet"),
  39659. weight: math.unit(300, "lb"),
  39660. name: "Front",
  39661. image: {
  39662. source: "./media/characters/raxinath/front.svg",
  39663. extra: 1407/1309,
  39664. bottom: 39/1446
  39665. }
  39666. },
  39667. back: {
  39668. height: math.unit(8, "feet"),
  39669. weight: math.unit(300, "lb"),
  39670. name: "Back",
  39671. image: {
  39672. source: "./media/characters/raxinath/back.svg",
  39673. extra: 1405/1315,
  39674. bottom: 9/1414
  39675. }
  39676. },
  39677. },
  39678. [
  39679. {
  39680. name: "Speck",
  39681. height: math.unit(0.5, "nm")
  39682. },
  39683. {
  39684. name: "Micro",
  39685. height: math.unit(3, "inches")
  39686. },
  39687. {
  39688. name: "Kobold",
  39689. height: math.unit(3, "feet")
  39690. },
  39691. {
  39692. name: "Normal",
  39693. height: math.unit(8, "feet"),
  39694. default: true
  39695. },
  39696. {
  39697. name: "Giant",
  39698. height: math.unit(50, "feet")
  39699. },
  39700. {
  39701. name: "Macro",
  39702. height: math.unit(1000, "feet")
  39703. },
  39704. {
  39705. name: "Megamacro",
  39706. height: math.unit(1, "mile")
  39707. },
  39708. ]
  39709. ))
  39710. characterMakers.push(() => makeCharacter(
  39711. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  39712. {
  39713. front: {
  39714. height: math.unit(10, "feet"),
  39715. weight: math.unit(1442, "lb"),
  39716. name: "Front",
  39717. image: {
  39718. source: "./media/characters/mal-dragon/front.svg",
  39719. extra: 1515/1444,
  39720. bottom: 113/1628
  39721. }
  39722. },
  39723. back: {
  39724. height: math.unit(10, "feet"),
  39725. weight: math.unit(1442, "lb"),
  39726. name: "Back",
  39727. image: {
  39728. source: "./media/characters/mal-dragon/back.svg",
  39729. extra: 1527/1434,
  39730. bottom: 25/1552
  39731. }
  39732. },
  39733. },
  39734. [
  39735. {
  39736. name: "Mortal Interaction",
  39737. height: math.unit(10, "feet"),
  39738. default: true
  39739. },
  39740. {
  39741. name: "Large",
  39742. height: math.unit(30, "feet")
  39743. },
  39744. {
  39745. name: "Kaiju",
  39746. height: math.unit(300, "feet")
  39747. },
  39748. {
  39749. name: "Megamacro",
  39750. height: math.unit(10000, "feet")
  39751. },
  39752. {
  39753. name: "Continent Cracker",
  39754. height: math.unit(30000000, "feet")
  39755. },
  39756. {
  39757. name: "Sol-Swallowing",
  39758. height: math.unit(1e11, "feet")
  39759. },
  39760. {
  39761. name: "Light Universal",
  39762. height: math.unit(5, "universes")
  39763. },
  39764. {
  39765. name: "Universe Atoms",
  39766. height: math.unit(1.829e9, "universes")
  39767. },
  39768. {
  39769. name: "Light Multiversal",
  39770. height: math.unit(5, "multiverses")
  39771. },
  39772. {
  39773. name: "Multiverse Atoms",
  39774. height: math.unit(1.829e9, "multiverses")
  39775. },
  39776. {
  39777. name: "Fabric of Time",
  39778. height: math.unit(1e262, "multiverses")
  39779. },
  39780. ]
  39781. ))
  39782. characterMakers.push(() => makeCharacter(
  39783. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  39784. {
  39785. front: {
  39786. height: math.unit(9, "feet"),
  39787. weight: math.unit(1050, "lb"),
  39788. name: "Front",
  39789. image: {
  39790. source: "./media/characters/tabitha/front.svg",
  39791. extra: 2083/1994,
  39792. bottom: 68/2151
  39793. }
  39794. },
  39795. },
  39796. [
  39797. {
  39798. name: "Baseline",
  39799. height: math.unit(9, "feet"),
  39800. default: true
  39801. },
  39802. {
  39803. name: "Giant",
  39804. height: math.unit(90, "feet")
  39805. },
  39806. {
  39807. name: "Macro",
  39808. height: math.unit(900, "feet")
  39809. },
  39810. {
  39811. name: "Megamacro",
  39812. height: math.unit(9000, "feet")
  39813. },
  39814. {
  39815. name: "City-Crushing",
  39816. height: math.unit(27000, "feet")
  39817. },
  39818. {
  39819. name: "Mountain-Mashing",
  39820. height: math.unit(90000, "feet")
  39821. },
  39822. {
  39823. name: "Nation Nemesis",
  39824. height: math.unit(9e6, "feet")
  39825. },
  39826. {
  39827. name: "Continent Cracker",
  39828. height: math.unit(27e6, "feet")
  39829. },
  39830. {
  39831. name: "Earth-Eclipsing",
  39832. height: math.unit(2.7e8, "feet")
  39833. },
  39834. {
  39835. name: "Gas Giant Gulper",
  39836. height: math.unit(2.7e9, "feet")
  39837. },
  39838. {
  39839. name: "Sol-Swallowing",
  39840. height: math.unit(9e10, "feet")
  39841. },
  39842. {
  39843. name: "Galaxy Gulper",
  39844. height: math.unit(9, "galaxies")
  39845. },
  39846. {
  39847. name: "Cosmos Churner",
  39848. height: math.unit(9, "universes")
  39849. },
  39850. ]
  39851. ))
  39852. characterMakers.push(() => makeCharacter(
  39853. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  39854. {
  39855. front: {
  39856. height: math.unit(160, "cm"),
  39857. weight: math.unit(55, "kg"),
  39858. name: "Front",
  39859. image: {
  39860. source: "./media/characters/tow/front.svg",
  39861. extra: 1751/1722,
  39862. bottom: 74/1825
  39863. }
  39864. },
  39865. },
  39866. [
  39867. {
  39868. name: "Norm",
  39869. height: math.unit(160, "cm")
  39870. },
  39871. {
  39872. name: "Casual",
  39873. height: math.unit(3200, "m"),
  39874. default: true
  39875. },
  39876. {
  39877. name: "Show-Off",
  39878. height: math.unit(160, "km")
  39879. },
  39880. ]
  39881. ))
  39882. characterMakers.push(() => makeCharacter(
  39883. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  39884. {
  39885. front: {
  39886. height: math.unit(7 + 11/12, "feet"),
  39887. weight: math.unit(342.8, "lb"),
  39888. name: "Front",
  39889. image: {
  39890. source: "./media/characters/vivian-orca-dragon/front.svg",
  39891. extra: 1890/1865,
  39892. bottom: 28/1918
  39893. }
  39894. },
  39895. },
  39896. [
  39897. {
  39898. name: "Micro",
  39899. height: math.unit(5, "inches")
  39900. },
  39901. {
  39902. name: "Normal",
  39903. height: math.unit(7 + 11/12, "feet"),
  39904. default: true
  39905. },
  39906. {
  39907. name: "Macro",
  39908. height: math.unit(395 + 7/12, "feet")
  39909. },
  39910. ]
  39911. ))
  39912. characterMakers.push(() => makeCharacter(
  39913. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  39914. {
  39915. side: {
  39916. height: math.unit(10, "feet"),
  39917. weight: math.unit(1442, "lb"),
  39918. name: "Side",
  39919. image: {
  39920. source: "./media/characters/lotherakon/side.svg",
  39921. extra: 1604/1497,
  39922. bottom: 89/1693
  39923. }
  39924. },
  39925. },
  39926. [
  39927. {
  39928. name: "Mortal Interaction",
  39929. height: math.unit(10, "feet")
  39930. },
  39931. {
  39932. name: "Large",
  39933. height: math.unit(30, "feet"),
  39934. default: true
  39935. },
  39936. {
  39937. name: "Giant",
  39938. height: math.unit(100, "feet")
  39939. },
  39940. {
  39941. name: "Kaiju",
  39942. height: math.unit(300, "feet")
  39943. },
  39944. {
  39945. name: "Macro",
  39946. height: math.unit(1000, "feet")
  39947. },
  39948. {
  39949. name: "Macro+",
  39950. height: math.unit(3000, "feet")
  39951. },
  39952. {
  39953. name: "Megamacro",
  39954. height: math.unit(10000, "feet")
  39955. },
  39956. {
  39957. name: "City-Crushing",
  39958. height: math.unit(30000, "feet")
  39959. },
  39960. {
  39961. name: "Continent Cracker",
  39962. height: math.unit(30e6, "feet")
  39963. },
  39964. {
  39965. name: "Earth Eclipsing",
  39966. height: math.unit(3e8, "feet")
  39967. },
  39968. {
  39969. name: "Gas Giant Gulper",
  39970. height: math.unit(3e9, "feet")
  39971. },
  39972. {
  39973. name: "Sol-Swallowing",
  39974. height: math.unit(1e11, "feet")
  39975. },
  39976. {
  39977. name: "System Swallower",
  39978. height: math.unit(3e14, "feet")
  39979. },
  39980. {
  39981. name: "Galaxy Gulper",
  39982. height: math.unit(10, "galaxies")
  39983. },
  39984. {
  39985. name: "Light Universal",
  39986. height: math.unit(5, "universes")
  39987. },
  39988. {
  39989. name: "Universe Palm",
  39990. height: math.unit(20, "universes")
  39991. },
  39992. {
  39993. name: "Light Multiversal",
  39994. height: math.unit(5, "multiverses")
  39995. },
  39996. {
  39997. name: "Multiverse Palm",
  39998. height: math.unit(20, "multiverses")
  39999. },
  40000. {
  40001. name: "Inferno Incarnate",
  40002. height: math.unit(1e7, "multiverses")
  40003. },
  40004. ]
  40005. ))
  40006. characterMakers.push(() => makeCharacter(
  40007. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  40008. {
  40009. front: {
  40010. height: math.unit(8, "feet"),
  40011. weight: math.unit(1200, "lb"),
  40012. name: "Front",
  40013. image: {
  40014. source: "./media/characters/malithee/front.svg",
  40015. extra: 1675/1640,
  40016. bottom: 162/1837
  40017. }
  40018. },
  40019. },
  40020. [
  40021. {
  40022. name: "Mortal Interaction",
  40023. height: math.unit(8, "feet"),
  40024. default: true
  40025. },
  40026. {
  40027. name: "Large",
  40028. height: math.unit(24, "feet")
  40029. },
  40030. {
  40031. name: "Kaiju",
  40032. height: math.unit(240, "feet")
  40033. },
  40034. {
  40035. name: "Megamacro",
  40036. height: math.unit(8000, "feet")
  40037. },
  40038. {
  40039. name: "Continent Cracker",
  40040. height: math.unit(24e6, "feet")
  40041. },
  40042. {
  40043. name: "Earth-Eclipsing",
  40044. height: math.unit(2.4e8, "feet")
  40045. },
  40046. {
  40047. name: "Sol-Swallowing",
  40048. height: math.unit(8e10, "feet")
  40049. },
  40050. {
  40051. name: "Galaxy Gulper",
  40052. height: math.unit(8, "galaxies")
  40053. },
  40054. {
  40055. name: "Light Universal",
  40056. height: math.unit(4, "universes")
  40057. },
  40058. {
  40059. name: "Universe Atoms",
  40060. height: math.unit(1.829e9, "universes")
  40061. },
  40062. {
  40063. name: "Light Multiversal",
  40064. height: math.unit(4, "multiverses")
  40065. },
  40066. {
  40067. name: "Multiverse Atoms",
  40068. height: math.unit(1.829e9, "multiverses")
  40069. },
  40070. {
  40071. name: "Nigh-Omnipresence",
  40072. height: math.unit(8e261, "multiverses")
  40073. },
  40074. ]
  40075. ))
  40076. characterMakers.push(() => makeCharacter(
  40077. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  40078. {
  40079. front: {
  40080. height: math.unit(10, "feet"),
  40081. weight: math.unit(1500, "lb"),
  40082. name: "Front",
  40083. image: {
  40084. source: "./media/characters/miles-thestia/front.svg",
  40085. extra: 1812/1727,
  40086. bottom: 86/1898
  40087. }
  40088. },
  40089. back: {
  40090. height: math.unit(10, "feet"),
  40091. weight: math.unit(1500, "lb"),
  40092. name: "Back",
  40093. image: {
  40094. source: "./media/characters/miles-thestia/back.svg",
  40095. extra: 1799/1690,
  40096. bottom: 47/1846
  40097. }
  40098. },
  40099. frontNsfw: {
  40100. height: math.unit(10, "feet"),
  40101. weight: math.unit(1500, "lb"),
  40102. name: "Front (NSFW)",
  40103. image: {
  40104. source: "./media/characters/miles-thestia/front-nsfw.svg",
  40105. extra: 1812/1727,
  40106. bottom: 86/1898
  40107. }
  40108. },
  40109. },
  40110. [
  40111. {
  40112. name: "Mini-Macro",
  40113. height: math.unit(10, "feet"),
  40114. default: true
  40115. },
  40116. ]
  40117. ))
  40118. characterMakers.push(() => makeCharacter(
  40119. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  40120. {
  40121. front: {
  40122. height: math.unit(25, "feet"),
  40123. name: "Front",
  40124. image: {
  40125. source: "./media/characters/titan-s-wulf/front.svg",
  40126. extra: 1560/1484,
  40127. bottom: 76/1636
  40128. }
  40129. },
  40130. },
  40131. [
  40132. {
  40133. name: "Smallest",
  40134. height: math.unit(25, "feet"),
  40135. default: true
  40136. },
  40137. {
  40138. name: "Normal",
  40139. height: math.unit(200, "feet")
  40140. },
  40141. {
  40142. name: "Macro",
  40143. height: math.unit(200000, "feet")
  40144. },
  40145. {
  40146. name: "Multiversal Original",
  40147. height: math.unit(10000, "multiverses")
  40148. },
  40149. ]
  40150. ))
  40151. characterMakers.push(() => makeCharacter(
  40152. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  40153. {
  40154. front: {
  40155. height: math.unit(8, "feet"),
  40156. weight: math.unit(553, "lb"),
  40157. name: "Front",
  40158. image: {
  40159. source: "./media/characters/tawendeh/front.svg",
  40160. extra: 2365/2268,
  40161. bottom: 83/2448
  40162. }
  40163. },
  40164. frontClothed: {
  40165. height: math.unit(8, "feet"),
  40166. weight: math.unit(553, "lb"),
  40167. name: "Front (Clothed)",
  40168. image: {
  40169. source: "./media/characters/tawendeh/front-clothed.svg",
  40170. extra: 2365/2268,
  40171. bottom: 83/2448
  40172. }
  40173. },
  40174. back: {
  40175. height: math.unit(8, "feet"),
  40176. weight: math.unit(553, "lb"),
  40177. name: "Back",
  40178. image: {
  40179. source: "./media/characters/tawendeh/back.svg",
  40180. extra: 2397/2294,
  40181. bottom: 42/2439
  40182. }
  40183. },
  40184. },
  40185. [
  40186. {
  40187. name: "Mortal Interaction",
  40188. height: math.unit(8, "feet"),
  40189. default: true
  40190. },
  40191. {
  40192. name: "Giant",
  40193. height: math.unit(80, "feet")
  40194. },
  40195. {
  40196. name: "Macro",
  40197. height: math.unit(800, "feet")
  40198. },
  40199. {
  40200. name: "Megamacro",
  40201. height: math.unit(8000, "feet")
  40202. },
  40203. {
  40204. name: "City-Crushing",
  40205. height: math.unit(24000, "feet")
  40206. },
  40207. {
  40208. name: "Mountain-Mashing",
  40209. height: math.unit(80000, "feet")
  40210. },
  40211. {
  40212. name: "Nation Nemesis",
  40213. height: math.unit(8e6, "feet")
  40214. },
  40215. {
  40216. name: "Continent Cracker",
  40217. height: math.unit(24e6, "feet")
  40218. },
  40219. {
  40220. name: "Earth-Eclipsing",
  40221. height: math.unit(2.4e8, "feet")
  40222. },
  40223. {
  40224. name: "Gas Giant Gulper",
  40225. height: math.unit(2.4e9, "feet")
  40226. },
  40227. {
  40228. name: "Sol-Swallowing",
  40229. height: math.unit(8e10, "feet")
  40230. },
  40231. {
  40232. name: "Galaxy Gulper",
  40233. height: math.unit(8, "galaxies")
  40234. },
  40235. {
  40236. name: "Cosmos Churner",
  40237. height: math.unit(8, "universes")
  40238. },
  40239. {
  40240. name: "Omnipotent Otter",
  40241. height: math.unit(80, "universes")
  40242. },
  40243. ]
  40244. ))
  40245. characterMakers.push(() => makeCharacter(
  40246. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  40247. {
  40248. front: {
  40249. height: math.unit(2.6, "meters"),
  40250. weight: math.unit(900, "kg"),
  40251. name: "Front",
  40252. image: {
  40253. source: "./media/characters/neesha/front.svg",
  40254. extra: 1803/1653,
  40255. bottom: 128/1931
  40256. }
  40257. },
  40258. },
  40259. [
  40260. {
  40261. name: "Normal",
  40262. height: math.unit(2.6, "meters"),
  40263. default: true
  40264. },
  40265. {
  40266. name: "Macro",
  40267. height: math.unit(50, "meters")
  40268. },
  40269. ]
  40270. ))
  40271. characterMakers.push(() => makeCharacter(
  40272. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  40273. {
  40274. front: {
  40275. height: math.unit(5, "feet"),
  40276. weight: math.unit(185, "lb"),
  40277. name: "Front",
  40278. image: {
  40279. source: "./media/characters/kyera/front.svg",
  40280. extra: 1875/1790,
  40281. bottom: 96/1971
  40282. }
  40283. },
  40284. },
  40285. [
  40286. {
  40287. name: "Normal",
  40288. height: math.unit(5, "feet"),
  40289. default: true
  40290. },
  40291. ]
  40292. ))
  40293. characterMakers.push(() => makeCharacter(
  40294. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  40295. {
  40296. front: {
  40297. height: math.unit(7 + 6/12, "feet"),
  40298. weight: math.unit(540, "lb"),
  40299. name: "Front",
  40300. image: {
  40301. source: "./media/characters/yuko/front.svg",
  40302. extra: 1282/1222,
  40303. bottom: 101/1383
  40304. }
  40305. },
  40306. frontClothed: {
  40307. height: math.unit(7 + 6/12, "feet"),
  40308. weight: math.unit(540, "lb"),
  40309. name: "Front (Clothed)",
  40310. image: {
  40311. source: "./media/characters/yuko/front-clothed.svg",
  40312. extra: 1282/1222,
  40313. bottom: 101/1383
  40314. }
  40315. },
  40316. },
  40317. [
  40318. {
  40319. name: "Normal",
  40320. height: math.unit(7 + 6/12, "feet"),
  40321. default: true
  40322. },
  40323. {
  40324. name: "Macro",
  40325. height: math.unit(26 + 9/12, "feet")
  40326. },
  40327. {
  40328. name: "Megamacro",
  40329. height: math.unit(300, "feet")
  40330. },
  40331. {
  40332. name: "Gigamacro",
  40333. height: math.unit(5000, "feet")
  40334. },
  40335. {
  40336. name: "Planetary",
  40337. height: math.unit(10000, "miles")
  40338. },
  40339. ]
  40340. ))
  40341. characterMakers.push(() => makeCharacter(
  40342. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  40343. {
  40344. front: {
  40345. height: math.unit(8 + 2/12, "feet"),
  40346. weight: math.unit(600, "lb"),
  40347. name: "Front",
  40348. image: {
  40349. source: "./media/characters/deam-nitrel/front.svg",
  40350. extra: 1308/1234,
  40351. bottom: 125/1433
  40352. }
  40353. },
  40354. },
  40355. [
  40356. {
  40357. name: "Normal",
  40358. height: math.unit(8 + 2/12, "feet"),
  40359. default: true
  40360. },
  40361. ]
  40362. ))
  40363. characterMakers.push(() => makeCharacter(
  40364. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  40365. {
  40366. front: {
  40367. height: math.unit(6.1, "feet"),
  40368. weight: math.unit(180, "lb"),
  40369. name: "Front",
  40370. image: {
  40371. source: "./media/characters/skyress/front.svg",
  40372. extra: 1045/915,
  40373. bottom: 28/1073
  40374. }
  40375. },
  40376. maw: {
  40377. height: math.unit(1, "feet"),
  40378. name: "Maw",
  40379. image: {
  40380. source: "./media/characters/skyress/maw.svg"
  40381. }
  40382. },
  40383. },
  40384. [
  40385. {
  40386. name: "Normal",
  40387. height: math.unit(6.1, "feet"),
  40388. default: true
  40389. },
  40390. {
  40391. name: "Macro",
  40392. height: math.unit(200, "feet")
  40393. },
  40394. ]
  40395. ))
  40396. characterMakers.push(() => makeCharacter(
  40397. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  40398. {
  40399. front: {
  40400. height: math.unit(4 + 2/12, "feet"),
  40401. weight: math.unit(40, "kg"),
  40402. name: "Front",
  40403. image: {
  40404. source: "./media/characters/amethyst-jones/front.svg",
  40405. extra: 1220/1150,
  40406. bottom: 101/1321
  40407. }
  40408. },
  40409. },
  40410. [
  40411. {
  40412. name: "Normal",
  40413. height: math.unit(4 + 2/12, "feet"),
  40414. default: true
  40415. },
  40416. ]
  40417. ))
  40418. characterMakers.push(() => makeCharacter(
  40419. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  40420. {
  40421. front: {
  40422. height: math.unit(1.7, "m"),
  40423. weight: math.unit(135, "lb"),
  40424. name: "Front",
  40425. image: {
  40426. source: "./media/characters/jade/front.svg",
  40427. extra: 1818/1767,
  40428. bottom: 32/1850
  40429. }
  40430. },
  40431. back: {
  40432. height: math.unit(1.7, "m"),
  40433. weight: math.unit(135, "lb"),
  40434. name: "Back",
  40435. image: {
  40436. source: "./media/characters/jade/back.svg",
  40437. extra: 1869/1809,
  40438. bottom: 35/1904
  40439. }
  40440. },
  40441. hand: {
  40442. height: math.unit(0.24, "m"),
  40443. name: "Hand",
  40444. image: {
  40445. source: "./media/characters/jade/hand.svg"
  40446. }
  40447. },
  40448. foot: {
  40449. height: math.unit(0.263, "m"),
  40450. name: "Foot",
  40451. image: {
  40452. source: "./media/characters/jade/foot.svg"
  40453. }
  40454. },
  40455. dick: {
  40456. height: math.unit(0.47, "m"),
  40457. name: "Dick",
  40458. image: {
  40459. source: "./media/characters/jade/dick.svg"
  40460. }
  40461. },
  40462. },
  40463. [
  40464. {
  40465. name: "Micro",
  40466. height: math.unit(22, "cm")
  40467. },
  40468. {
  40469. name: "Normal",
  40470. height: math.unit(1.7, "m"),
  40471. default: true
  40472. },
  40473. {
  40474. name: "Macro",
  40475. height: math.unit(152, "m")
  40476. },
  40477. ]
  40478. ))
  40479. characterMakers.push(() => makeCharacter(
  40480. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  40481. {
  40482. front: {
  40483. height: math.unit(100, "miles"),
  40484. weight: math.unit(20000, "tons"),
  40485. name: "Front",
  40486. image: {
  40487. source: "./media/characters/cookie/front.svg",
  40488. extra: 1125/1070,
  40489. bottom: 30/1155
  40490. }
  40491. },
  40492. },
  40493. [
  40494. {
  40495. name: "Big",
  40496. height: math.unit(50, "feet")
  40497. },
  40498. {
  40499. name: "Macro",
  40500. height: math.unit(100, "miles"),
  40501. default: true
  40502. },
  40503. {
  40504. name: "Megamacro",
  40505. height: math.unit(90000, "miles")
  40506. },
  40507. ]
  40508. ))
  40509. characterMakers.push(() => makeCharacter(
  40510. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  40511. {
  40512. front: {
  40513. height: math.unit(6, "feet"),
  40514. weight: math.unit(145, "lb"),
  40515. name: "Front",
  40516. image: {
  40517. source: "./media/characters/farzian/front.svg",
  40518. extra: 1902/1693,
  40519. bottom: 108/2010
  40520. }
  40521. },
  40522. },
  40523. [
  40524. {
  40525. name: "Macro",
  40526. height: math.unit(500, "feet"),
  40527. default: true
  40528. },
  40529. ]
  40530. ))
  40531. characterMakers.push(() => makeCharacter(
  40532. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  40533. {
  40534. front: {
  40535. height: math.unit(3 + 6/12, "feet"),
  40536. weight: math.unit(50, "lb"),
  40537. name: "Front",
  40538. image: {
  40539. source: "./media/characters/kimberly-tilson/front.svg",
  40540. extra: 1400/1322,
  40541. bottom: 36/1436
  40542. }
  40543. },
  40544. back: {
  40545. height: math.unit(3 + 6/12, "feet"),
  40546. weight: math.unit(50, "lb"),
  40547. name: "Back",
  40548. image: {
  40549. source: "./media/characters/kimberly-tilson/back.svg",
  40550. extra: 1370/1307,
  40551. bottom: 20/1390
  40552. }
  40553. },
  40554. },
  40555. [
  40556. {
  40557. name: "Normal",
  40558. height: math.unit(3 + 6/12, "feet"),
  40559. default: true
  40560. },
  40561. ]
  40562. ))
  40563. characterMakers.push(() => makeCharacter(
  40564. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  40565. {
  40566. front: {
  40567. height: math.unit(1148, "feet"),
  40568. weight: math.unit(34057, "lb"),
  40569. name: "Front",
  40570. image: {
  40571. source: "./media/characters/harthos/front.svg",
  40572. extra: 1391/1339,
  40573. bottom: 13/1404
  40574. }
  40575. },
  40576. },
  40577. [
  40578. {
  40579. name: "Macro",
  40580. height: math.unit(1148, "feet"),
  40581. default: true
  40582. },
  40583. ]
  40584. ))
  40585. characterMakers.push(() => makeCharacter(
  40586. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  40587. {
  40588. front: {
  40589. height: math.unit(15, "feet"),
  40590. name: "Front",
  40591. image: {
  40592. source: "./media/characters/hypatia/front.svg",
  40593. extra: 1653/1591,
  40594. bottom: 79/1732
  40595. }
  40596. },
  40597. },
  40598. [
  40599. {
  40600. name: "Normal",
  40601. height: math.unit(15, "feet")
  40602. },
  40603. {
  40604. name: "Small",
  40605. height: math.unit(300, "feet")
  40606. },
  40607. {
  40608. name: "Macro",
  40609. height: math.unit(2500, "feet"),
  40610. default: true
  40611. },
  40612. {
  40613. name: "Mega Macro",
  40614. height: math.unit(1500, "miles")
  40615. },
  40616. {
  40617. name: "Giga Macro",
  40618. height: math.unit(1.5e6, "miles")
  40619. },
  40620. ]
  40621. ))
  40622. characterMakers.push(() => makeCharacter(
  40623. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  40624. {
  40625. front: {
  40626. height: math.unit(6, "feet"),
  40627. weight: math.unit(200, "lb"),
  40628. name: "Front",
  40629. image: {
  40630. source: "./media/characters/wulver/front.svg",
  40631. extra: 1724/1632,
  40632. bottom: 130/1854
  40633. }
  40634. },
  40635. frontNsfw: {
  40636. height: math.unit(6, "feet"),
  40637. weight: math.unit(200, "lb"),
  40638. name: "Front (NSFW)",
  40639. image: {
  40640. source: "./media/characters/wulver/front-nsfw.svg",
  40641. extra: 1724/1632,
  40642. bottom: 130/1854
  40643. }
  40644. },
  40645. },
  40646. [
  40647. {
  40648. name: "Human-Sized",
  40649. height: math.unit(6, "feet")
  40650. },
  40651. {
  40652. name: "Normal",
  40653. height: math.unit(4, "meters"),
  40654. default: true
  40655. },
  40656. {
  40657. name: "Large",
  40658. height: math.unit(6, "m")
  40659. },
  40660. ]
  40661. ))
  40662. characterMakers.push(() => makeCharacter(
  40663. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  40664. {
  40665. front: {
  40666. height: math.unit(7, "feet"),
  40667. name: "Front",
  40668. image: {
  40669. source: "./media/characters/maru/front.svg",
  40670. extra: 1595/1570,
  40671. bottom: 0/1595
  40672. }
  40673. },
  40674. },
  40675. [
  40676. {
  40677. name: "Normal",
  40678. height: math.unit(7, "feet"),
  40679. default: true
  40680. },
  40681. {
  40682. name: "Macro",
  40683. height: math.unit(700, "feet")
  40684. },
  40685. {
  40686. name: "Mega Macro",
  40687. height: math.unit(25, "miles")
  40688. },
  40689. ]
  40690. ))
  40691. characterMakers.push(() => makeCharacter(
  40692. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  40693. {
  40694. front: {
  40695. height: math.unit(6, "feet"),
  40696. weight: math.unit(170, "lb"),
  40697. name: "Front",
  40698. image: {
  40699. source: "./media/characters/xenon/front.svg",
  40700. extra: 1376/1305,
  40701. bottom: 56/1432
  40702. }
  40703. },
  40704. back: {
  40705. height: math.unit(6, "feet"),
  40706. weight: math.unit(170, "lb"),
  40707. name: "Back",
  40708. image: {
  40709. source: "./media/characters/xenon/back.svg",
  40710. extra: 1328/1259,
  40711. bottom: 95/1423
  40712. }
  40713. },
  40714. maw: {
  40715. height: math.unit(0.52, "feet"),
  40716. name: "Maw",
  40717. image: {
  40718. source: "./media/characters/xenon/maw.svg"
  40719. }
  40720. },
  40721. hand: {
  40722. height: math.unit(0.82, "feet"),
  40723. name: "Hand",
  40724. image: {
  40725. source: "./media/characters/xenon/hand.svg"
  40726. }
  40727. },
  40728. foot: {
  40729. height: math.unit(1.13, "feet"),
  40730. name: "Foot",
  40731. image: {
  40732. source: "./media/characters/xenon/foot.svg"
  40733. }
  40734. },
  40735. },
  40736. [
  40737. {
  40738. name: "Micro",
  40739. height: math.unit(0.8, "inches")
  40740. },
  40741. {
  40742. name: "Normal",
  40743. height: math.unit(6, "feet")
  40744. },
  40745. {
  40746. name: "Macro",
  40747. height: math.unit(50, "feet"),
  40748. default: true
  40749. },
  40750. {
  40751. name: "Macro+",
  40752. height: math.unit(250, "feet")
  40753. },
  40754. {
  40755. name: "Megamacro",
  40756. height: math.unit(1500, "feet")
  40757. },
  40758. ]
  40759. ))
  40760. characterMakers.push(() => makeCharacter(
  40761. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  40762. {
  40763. front: {
  40764. height: math.unit(7 + 5/12, "feet"),
  40765. name: "Front",
  40766. image: {
  40767. source: "./media/characters/zane/front.svg",
  40768. extra: 1260/1203,
  40769. bottom: 94/1354
  40770. }
  40771. },
  40772. back: {
  40773. height: math.unit(5.05, "feet"),
  40774. name: "Back",
  40775. image: {
  40776. source: "./media/characters/zane/back.svg",
  40777. extra: 893/829,
  40778. bottom: 30/923
  40779. }
  40780. },
  40781. werewolf: {
  40782. height: math.unit(11, "feet"),
  40783. name: "Werewolf",
  40784. image: {
  40785. source: "./media/characters/zane/werewolf.svg",
  40786. extra: 1383/1323,
  40787. bottom: 89/1472
  40788. }
  40789. },
  40790. foot: {
  40791. height: math.unit(1.46, "feet"),
  40792. name: "Foot",
  40793. image: {
  40794. source: "./media/characters/zane/foot.svg"
  40795. }
  40796. },
  40797. footFront: {
  40798. height: math.unit(0.784, "feet"),
  40799. name: "Foot (Front)",
  40800. image: {
  40801. source: "./media/characters/zane/foot-front.svg"
  40802. }
  40803. },
  40804. dick: {
  40805. height: math.unit(1.95, "feet"),
  40806. name: "Dick",
  40807. image: {
  40808. source: "./media/characters/zane/dick.svg"
  40809. }
  40810. },
  40811. dickWerewolf: {
  40812. height: math.unit(3.77, "feet"),
  40813. name: "Dick (Werewolf)",
  40814. image: {
  40815. source: "./media/characters/zane/dick.svg"
  40816. }
  40817. },
  40818. },
  40819. [
  40820. {
  40821. name: "Normal",
  40822. height: math.unit(7 + 5/12, "feet"),
  40823. default: true
  40824. },
  40825. ]
  40826. ))
  40827. characterMakers.push(() => makeCharacter(
  40828. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  40829. {
  40830. front: {
  40831. height: math.unit(6 + 2/12, "feet"),
  40832. weight: math.unit(284, "lb"),
  40833. name: "Front",
  40834. image: {
  40835. source: "./media/characters/benni-desparque/front.svg",
  40836. extra: 1353/1126,
  40837. bottom: 69/1422
  40838. }
  40839. },
  40840. },
  40841. [
  40842. {
  40843. name: "Civilian",
  40844. height: math.unit(6 + 2/12, "feet")
  40845. },
  40846. {
  40847. name: "Normal",
  40848. height: math.unit(98, "feet"),
  40849. default: true
  40850. },
  40851. {
  40852. name: "Kaiju Fighter",
  40853. height: math.unit(268, "feet")
  40854. },
  40855. ]
  40856. ))
  40857. characterMakers.push(() => makeCharacter(
  40858. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  40859. {
  40860. front: {
  40861. height: math.unit(5, "feet"),
  40862. weight: math.unit(105, "lb"),
  40863. name: "Front",
  40864. image: {
  40865. source: "./media/characters/maxine/front.svg",
  40866. extra: 1386/1250,
  40867. bottom: 71/1457
  40868. }
  40869. },
  40870. },
  40871. [
  40872. {
  40873. name: "Normal",
  40874. height: math.unit(5, "feet"),
  40875. default: true
  40876. },
  40877. ]
  40878. ))
  40879. characterMakers.push(() => makeCharacter(
  40880. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  40881. {
  40882. front: {
  40883. height: math.unit(11 + 7/12, "feet"),
  40884. weight: math.unit(9576, "lb"),
  40885. name: "Front",
  40886. image: {
  40887. source: "./media/characters/scaly/front.svg",
  40888. extra: 888/867,
  40889. bottom: 36/924
  40890. }
  40891. },
  40892. },
  40893. [
  40894. {
  40895. name: "Normal",
  40896. height: math.unit(11 + 7/12, "feet"),
  40897. default: true
  40898. },
  40899. ]
  40900. ))
  40901. characterMakers.push(() => makeCharacter(
  40902. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  40903. {
  40904. front: {
  40905. height: math.unit(6 + 3/12, "feet"),
  40906. name: "Front",
  40907. image: {
  40908. source: "./media/characters/saelria/front.svg",
  40909. extra: 1243/1138,
  40910. bottom: 46/1289
  40911. }
  40912. },
  40913. },
  40914. [
  40915. {
  40916. name: "Micro",
  40917. height: math.unit(6, "inches"),
  40918. },
  40919. {
  40920. name: "Normal",
  40921. height: math.unit(6 + 3/12, "feet"),
  40922. default: true
  40923. },
  40924. {
  40925. name: "Macro",
  40926. height: math.unit(25, "feet")
  40927. },
  40928. ]
  40929. ))
  40930. characterMakers.push(() => makeCharacter(
  40931. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  40932. {
  40933. front: {
  40934. height: math.unit(80, "meters"),
  40935. weight: math.unit(7000, "tonnes"),
  40936. name: "Front",
  40937. image: {
  40938. source: "./media/characters/tef/front.svg",
  40939. extra: 2036/1991,
  40940. bottom: 54/2090
  40941. }
  40942. },
  40943. back: {
  40944. height: math.unit(80, "meters"),
  40945. weight: math.unit(7000, "tonnes"),
  40946. name: "Back",
  40947. image: {
  40948. source: "./media/characters/tef/back.svg",
  40949. extra: 2036/1991,
  40950. bottom: 54/2090
  40951. }
  40952. },
  40953. },
  40954. [
  40955. {
  40956. name: "Macro",
  40957. height: math.unit(80, "meters"),
  40958. default: true
  40959. },
  40960. ]
  40961. ))
  40962. characterMakers.push(() => makeCharacter(
  40963. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  40964. {
  40965. front: {
  40966. height: math.unit(13, "feet"),
  40967. weight: math.unit(6, "tons"),
  40968. name: "Front",
  40969. image: {
  40970. source: "./media/characters/rover/front.svg",
  40971. extra: 1233/1156,
  40972. bottom: 50/1283
  40973. }
  40974. },
  40975. back: {
  40976. height: math.unit(13, "feet"),
  40977. weight: math.unit(6, "tons"),
  40978. name: "Back",
  40979. image: {
  40980. source: "./media/characters/rover/back.svg",
  40981. extra: 1327/1258,
  40982. bottom: 39/1366
  40983. }
  40984. },
  40985. },
  40986. [
  40987. {
  40988. name: "Normal",
  40989. height: math.unit(13, "feet"),
  40990. default: true
  40991. },
  40992. {
  40993. name: "Macro",
  40994. height: math.unit(1300, "feet")
  40995. },
  40996. {
  40997. name: "Megamacro",
  40998. height: math.unit(1300, "miles")
  40999. },
  41000. {
  41001. name: "Gigamacro",
  41002. height: math.unit(1300000, "miles")
  41003. },
  41004. ]
  41005. ))
  41006. characterMakers.push(() => makeCharacter(
  41007. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  41008. {
  41009. front: {
  41010. height: math.unit(6, "feet"),
  41011. weight: math.unit(150, "lb"),
  41012. name: "Front",
  41013. image: {
  41014. source: "./media/characters/ariz/front.svg",
  41015. extra: 1401/1346,
  41016. bottom: 5/1406
  41017. }
  41018. },
  41019. },
  41020. [
  41021. {
  41022. name: "Normal",
  41023. height: math.unit(10, "feet"),
  41024. default: true
  41025. },
  41026. ]
  41027. ))
  41028. characterMakers.push(() => makeCharacter(
  41029. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  41030. {
  41031. front: {
  41032. height: math.unit(6, "feet"),
  41033. weight: math.unit(140, "lb"),
  41034. name: "Front",
  41035. image: {
  41036. source: "./media/characters/sigrun/front.svg",
  41037. extra: 1418/1359,
  41038. bottom: 27/1445
  41039. }
  41040. },
  41041. },
  41042. [
  41043. {
  41044. name: "Macro",
  41045. height: math.unit(35, "feet"),
  41046. default: true
  41047. },
  41048. ]
  41049. ))
  41050. characterMakers.push(() => makeCharacter(
  41051. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  41052. {
  41053. front: {
  41054. height: math.unit(6, "feet"),
  41055. weight: math.unit(150, "lb"),
  41056. name: "Front",
  41057. image: {
  41058. source: "./media/characters/numin/front.svg",
  41059. extra: 1433/1388,
  41060. bottom: 12/1445
  41061. }
  41062. },
  41063. },
  41064. [
  41065. {
  41066. name: "Macro",
  41067. height: math.unit(21.5, "km"),
  41068. default: true
  41069. },
  41070. ]
  41071. ))
  41072. characterMakers.push(() => makeCharacter(
  41073. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  41074. {
  41075. front: {
  41076. height: math.unit(6, "feet"),
  41077. weight: math.unit(463, "lb"),
  41078. name: "Front",
  41079. image: {
  41080. source: "./media/characters/melwa/front.svg",
  41081. extra: 1307/1248,
  41082. bottom: 93/1400
  41083. }
  41084. },
  41085. },
  41086. [
  41087. {
  41088. name: "Macro",
  41089. height: math.unit(50, "meters"),
  41090. default: true
  41091. },
  41092. ]
  41093. ))
  41094. characterMakers.push(() => makeCharacter(
  41095. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  41096. {
  41097. front: {
  41098. height: math.unit(325, "feet"),
  41099. name: "Front",
  41100. image: {
  41101. source: "./media/characters/zorkaiju/front.svg",
  41102. extra: 1955/1814,
  41103. bottom: 40/1995
  41104. }
  41105. },
  41106. frontExtended: {
  41107. height: math.unit(325, "feet"),
  41108. name: "Front (Extended)",
  41109. image: {
  41110. source: "./media/characters/zorkaiju/front-extended.svg",
  41111. extra: 1955/1814,
  41112. bottom: 40/1995
  41113. }
  41114. },
  41115. side: {
  41116. height: math.unit(325, "feet"),
  41117. name: "Side",
  41118. image: {
  41119. source: "./media/characters/zorkaiju/side.svg",
  41120. extra: 1495/1396,
  41121. bottom: 17/1512
  41122. }
  41123. },
  41124. sideExtended: {
  41125. height: math.unit(325, "feet"),
  41126. name: "Side (Extended)",
  41127. image: {
  41128. source: "./media/characters/zorkaiju/side-extended.svg",
  41129. extra: 1495/1396,
  41130. bottom: 17/1512
  41131. }
  41132. },
  41133. back: {
  41134. height: math.unit(325, "feet"),
  41135. name: "Back",
  41136. image: {
  41137. source: "./media/characters/zorkaiju/back.svg",
  41138. extra: 1959/1821,
  41139. bottom: 31/1990
  41140. }
  41141. },
  41142. backExtended: {
  41143. height: math.unit(325, "feet"),
  41144. name: "Back (Extended)",
  41145. image: {
  41146. source: "./media/characters/zorkaiju/back-extended.svg",
  41147. extra: 1959/1821,
  41148. bottom: 31/1990
  41149. }
  41150. },
  41151. hand: {
  41152. height: math.unit(58.4, "feet"),
  41153. name: "Hand",
  41154. image: {
  41155. source: "./media/characters/zorkaiju/hand.svg"
  41156. }
  41157. },
  41158. handExtended: {
  41159. height: math.unit(61.4, "feet"),
  41160. name: "Hand (Extended)",
  41161. image: {
  41162. source: "./media/characters/zorkaiju/hand-extended.svg"
  41163. }
  41164. },
  41165. foot: {
  41166. height: math.unit(95, "feet"),
  41167. name: "Foot",
  41168. image: {
  41169. source: "./media/characters/zorkaiju/foot.svg"
  41170. }
  41171. },
  41172. leftArm: {
  41173. height: math.unit(59, "feet"),
  41174. name: "Left Arm",
  41175. image: {
  41176. source: "./media/characters/zorkaiju/left-arm.svg"
  41177. }
  41178. },
  41179. rightArm: {
  41180. height: math.unit(59, "feet"),
  41181. name: "Right Arm",
  41182. image: {
  41183. source: "./media/characters/zorkaiju/right-arm.svg"
  41184. }
  41185. },
  41186. tail: {
  41187. height: math.unit(104, "feet"),
  41188. name: "Tail",
  41189. image: {
  41190. source: "./media/characters/zorkaiju/tail.svg"
  41191. }
  41192. },
  41193. tailExtended: {
  41194. height: math.unit(104, "feet"),
  41195. name: "Tail (Extended)",
  41196. image: {
  41197. source: "./media/characters/zorkaiju/tail-extended.svg"
  41198. }
  41199. },
  41200. tailBottom: {
  41201. height: math.unit(104, "feet"),
  41202. name: "Tail Bottom",
  41203. image: {
  41204. source: "./media/characters/zorkaiju/tail-bottom.svg"
  41205. }
  41206. },
  41207. crystal: {
  41208. height: math.unit(27.54, "feet"),
  41209. name: "Crystal",
  41210. image: {
  41211. source: "./media/characters/zorkaiju/crystal.svg"
  41212. }
  41213. },
  41214. },
  41215. [
  41216. {
  41217. name: "Kaiju",
  41218. height: math.unit(325, "feet"),
  41219. default: true
  41220. },
  41221. ]
  41222. ))
  41223. characterMakers.push(() => makeCharacter(
  41224. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  41225. {
  41226. front: {
  41227. height: math.unit(6 + 1/12, "feet"),
  41228. weight: math.unit(115, "lb"),
  41229. name: "Front",
  41230. image: {
  41231. source: "./media/characters/bailey-belfry/front.svg",
  41232. extra: 1240/1121,
  41233. bottom: 101/1341
  41234. }
  41235. },
  41236. },
  41237. [
  41238. {
  41239. name: "Normal",
  41240. height: math.unit(6 + 1/12, "feet"),
  41241. default: true
  41242. },
  41243. ]
  41244. ))
  41245. characterMakers.push(() => makeCharacter(
  41246. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  41247. {
  41248. side: {
  41249. height: math.unit(4, "meters"),
  41250. weight: math.unit(250, "kg"),
  41251. name: "Side",
  41252. image: {
  41253. source: "./media/characters/blacky/side.svg",
  41254. extra: 1027/919,
  41255. bottom: 43/1070
  41256. }
  41257. },
  41258. maw: {
  41259. height: math.unit(1, "meters"),
  41260. name: "Maw",
  41261. image: {
  41262. source: "./media/characters/blacky/maw.svg"
  41263. }
  41264. },
  41265. paw: {
  41266. height: math.unit(1, "meters"),
  41267. name: "Paw",
  41268. image: {
  41269. source: "./media/characters/blacky/paw.svg"
  41270. }
  41271. },
  41272. },
  41273. [
  41274. {
  41275. name: "Normal",
  41276. height: math.unit(4, "meters"),
  41277. default: true
  41278. },
  41279. ]
  41280. ))
  41281. characterMakers.push(() => makeCharacter(
  41282. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  41283. {
  41284. front: {
  41285. height: math.unit(170, "cm"),
  41286. weight: math.unit(66, "kg"),
  41287. name: "Front",
  41288. image: {
  41289. source: "./media/characters/thux-ei/front.svg",
  41290. extra: 1109/1011,
  41291. bottom: 8/1117
  41292. }
  41293. },
  41294. },
  41295. [
  41296. {
  41297. name: "Normal",
  41298. height: math.unit(170, "cm"),
  41299. default: true
  41300. },
  41301. ]
  41302. ))
  41303. characterMakers.push(() => makeCharacter(
  41304. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  41305. {
  41306. front: {
  41307. height: math.unit(5, "feet"),
  41308. weight: math.unit(120, "lb"),
  41309. name: "Front",
  41310. image: {
  41311. source: "./media/characters/roxanne-voltaire/front.svg",
  41312. extra: 1901/1779,
  41313. bottom: 53/1954
  41314. }
  41315. },
  41316. },
  41317. [
  41318. {
  41319. name: "Normal",
  41320. height: math.unit(5, "feet"),
  41321. default: true
  41322. },
  41323. {
  41324. name: "Giant",
  41325. height: math.unit(50, "feet")
  41326. },
  41327. {
  41328. name: "Titan",
  41329. height: math.unit(500, "feet")
  41330. },
  41331. {
  41332. name: "Macro",
  41333. height: math.unit(5000, "feet")
  41334. },
  41335. {
  41336. name: "Megamacro",
  41337. height: math.unit(50000, "feet")
  41338. },
  41339. {
  41340. name: "Gigamacro",
  41341. height: math.unit(500000, "feet")
  41342. },
  41343. {
  41344. name: "Teramacro",
  41345. height: math.unit(5e6, "feet")
  41346. },
  41347. ]
  41348. ))
  41349. characterMakers.push(() => makeCharacter(
  41350. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  41351. {
  41352. front: {
  41353. height: math.unit(6 + 2/12, "feet"),
  41354. name: "Front",
  41355. image: {
  41356. source: "./media/characters/squeaks/front.svg",
  41357. extra: 1823/1768,
  41358. bottom: 138/1961
  41359. }
  41360. },
  41361. },
  41362. [
  41363. {
  41364. name: "Micro",
  41365. height: math.unit(0.5, "inches")
  41366. },
  41367. {
  41368. name: "Normal",
  41369. height: math.unit(6 + 2/12, "feet"),
  41370. default: true
  41371. },
  41372. {
  41373. name: "Macro",
  41374. height: math.unit(600, "feet")
  41375. },
  41376. ]
  41377. ))
  41378. characterMakers.push(() => makeCharacter(
  41379. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  41380. {
  41381. front: {
  41382. height: math.unit(1.72, "meters"),
  41383. name: "Front",
  41384. image: {
  41385. source: "./media/characters/archinger/front.svg",
  41386. extra: 1861/1675,
  41387. bottom: 125/1986
  41388. }
  41389. },
  41390. back: {
  41391. height: math.unit(1.72, "meters"),
  41392. name: "Back",
  41393. image: {
  41394. source: "./media/characters/archinger/back.svg",
  41395. extra: 1844/1701,
  41396. bottom: 104/1948
  41397. }
  41398. },
  41399. cock: {
  41400. height: math.unit(0.59, "feet"),
  41401. name: "Cock",
  41402. image: {
  41403. source: "./media/characters/archinger/cock.svg"
  41404. }
  41405. },
  41406. },
  41407. [
  41408. {
  41409. name: "Normal",
  41410. height: math.unit(1.72, "meters"),
  41411. default: true
  41412. },
  41413. {
  41414. name: "Macro",
  41415. height: math.unit(84, "meters")
  41416. },
  41417. {
  41418. name: "Macro+",
  41419. height: math.unit(112, "meters")
  41420. },
  41421. {
  41422. name: "Macro++",
  41423. height: math.unit(960, "meters")
  41424. },
  41425. {
  41426. name: "Macro+++",
  41427. height: math.unit(4, "km")
  41428. },
  41429. {
  41430. name: "Macro++++",
  41431. height: math.unit(48, "km")
  41432. },
  41433. {
  41434. name: "Macro+++++",
  41435. height: math.unit(4500, "km")
  41436. },
  41437. ]
  41438. ))
  41439. characterMakers.push(() => makeCharacter(
  41440. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  41441. {
  41442. front: {
  41443. height: math.unit(5 + 5/12, "feet"),
  41444. name: "Front",
  41445. image: {
  41446. source: "./media/characters/alsnapz/front.svg",
  41447. extra: 1157/1065,
  41448. bottom: 42/1199
  41449. }
  41450. },
  41451. },
  41452. [
  41453. {
  41454. name: "Normal",
  41455. height: math.unit(5 + 5/12, "feet"),
  41456. default: true
  41457. },
  41458. ]
  41459. ))
  41460. characterMakers.push(() => makeCharacter(
  41461. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  41462. {
  41463. side: {
  41464. height: math.unit(3.2, "earths"),
  41465. name: "Side",
  41466. image: {
  41467. source: "./media/characters/mag/side.svg",
  41468. extra: 1331/1008,
  41469. bottom: 52/1383
  41470. }
  41471. },
  41472. wing: {
  41473. height: math.unit(1.94, "earths"),
  41474. name: "Wing",
  41475. image: {
  41476. source: "./media/characters/mag/wing.svg"
  41477. }
  41478. },
  41479. dick: {
  41480. height: math.unit(1.8, "earths"),
  41481. name: "Dick",
  41482. image: {
  41483. source: "./media/characters/mag/dick.svg"
  41484. }
  41485. },
  41486. ass: {
  41487. height: math.unit(1.33, "earths"),
  41488. name: "Ass",
  41489. image: {
  41490. source: "./media/characters/mag/ass.svg"
  41491. }
  41492. },
  41493. head: {
  41494. height: math.unit(1.1, "earths"),
  41495. name: "Head",
  41496. image: {
  41497. source: "./media/characters/mag/head.svg"
  41498. }
  41499. },
  41500. maw: {
  41501. height: math.unit(1.62, "earths"),
  41502. name: "Maw",
  41503. image: {
  41504. source: "./media/characters/mag/maw.svg"
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Small",
  41511. height: math.unit(162, "feet")
  41512. },
  41513. {
  41514. name: "Normal",
  41515. height: math.unit(3.2, "earths"),
  41516. default: true
  41517. },
  41518. ]
  41519. ))
  41520. characterMakers.push(() => makeCharacter(
  41521. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  41522. {
  41523. front: {
  41524. height: math.unit(512, "feet"),
  41525. weight: math.unit(63509, "tonnes"),
  41526. name: "Front",
  41527. image: {
  41528. source: "./media/characters/vorrel-harroc/front.svg",
  41529. extra: 1075/1063,
  41530. bottom: 62/1137
  41531. }
  41532. },
  41533. },
  41534. [
  41535. {
  41536. name: "Normal",
  41537. height: math.unit(10, "feet")
  41538. },
  41539. {
  41540. name: "Macro",
  41541. height: math.unit(512, "feet"),
  41542. default: true
  41543. },
  41544. {
  41545. name: "Megamacro",
  41546. height: math.unit(256, "miles")
  41547. },
  41548. {
  41549. name: "Gigamacro",
  41550. height: math.unit(4096, "miles")
  41551. },
  41552. ]
  41553. ))
  41554. characterMakers.push(() => makeCharacter(
  41555. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  41556. {
  41557. side: {
  41558. height: math.unit(50, "feet"),
  41559. name: "Side",
  41560. image: {
  41561. source: "./media/characters/froimar/side.svg",
  41562. extra: 855/638,
  41563. bottom: 99/954
  41564. }
  41565. },
  41566. },
  41567. [
  41568. {
  41569. name: "Macro",
  41570. height: math.unit(50, "feet"),
  41571. default: true
  41572. },
  41573. ]
  41574. ))
  41575. characterMakers.push(() => makeCharacter(
  41576. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  41577. {
  41578. front: {
  41579. height: math.unit(210, "miles"),
  41580. name: "Front",
  41581. image: {
  41582. source: "./media/characters/timothy/front.svg",
  41583. extra: 1007/943,
  41584. bottom: 62/1069
  41585. }
  41586. },
  41587. frontSkirt: {
  41588. height: math.unit(210, "miles"),
  41589. name: "Front (Skirt)",
  41590. image: {
  41591. source: "./media/characters/timothy/front-skirt.svg",
  41592. extra: 1007/943,
  41593. bottom: 62/1069
  41594. }
  41595. },
  41596. frontCoat: {
  41597. height: math.unit(210, "miles"),
  41598. name: "Front (Coat)",
  41599. image: {
  41600. source: "./media/characters/timothy/front-coat.svg",
  41601. extra: 1007/943,
  41602. bottom: 62/1069
  41603. }
  41604. },
  41605. },
  41606. [
  41607. {
  41608. name: "Macro",
  41609. height: math.unit(210, "miles"),
  41610. default: true
  41611. },
  41612. {
  41613. name: "Megamacro",
  41614. height: math.unit(210000, "miles")
  41615. },
  41616. ]
  41617. ))
  41618. characterMakers.push(() => makeCharacter(
  41619. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  41620. {
  41621. front: {
  41622. height: math.unit(188, "feet"),
  41623. name: "Front",
  41624. image: {
  41625. source: "./media/characters/pyotr/front.svg",
  41626. extra: 1912/1826,
  41627. bottom: 18/1930
  41628. }
  41629. },
  41630. },
  41631. [
  41632. {
  41633. name: "Macro",
  41634. height: math.unit(188, "feet"),
  41635. default: true
  41636. },
  41637. {
  41638. name: "Megamacro",
  41639. height: math.unit(8, "miles")
  41640. },
  41641. ]
  41642. ))
  41643. characterMakers.push(() => makeCharacter(
  41644. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  41645. {
  41646. side: {
  41647. height: math.unit(10, "feet"),
  41648. weight: math.unit(4500, "lb"),
  41649. name: "Side",
  41650. image: {
  41651. source: "./media/characters/ackart/side.svg",
  41652. extra: 1776/1668,
  41653. bottom: 116/1892
  41654. }
  41655. },
  41656. },
  41657. [
  41658. {
  41659. name: "Normal",
  41660. height: math.unit(10, "feet"),
  41661. default: true
  41662. },
  41663. ]
  41664. ))
  41665. characterMakers.push(() => makeCharacter(
  41666. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  41667. {
  41668. side: {
  41669. height: math.unit(21, "feet"),
  41670. name: "Side",
  41671. image: {
  41672. source: "./media/characters/nolow/side.svg",
  41673. extra: 1484/1434,
  41674. bottom: 85/1569
  41675. }
  41676. },
  41677. sideErect: {
  41678. height: math.unit(21, "feet"),
  41679. name: "Side-erect",
  41680. image: {
  41681. source: "./media/characters/nolow/side-erect.svg",
  41682. extra: 1484/1434,
  41683. bottom: 85/1569
  41684. }
  41685. },
  41686. },
  41687. [
  41688. {
  41689. name: "Regular",
  41690. height: math.unit(12, "feet")
  41691. },
  41692. {
  41693. name: "Big Chee",
  41694. height: math.unit(21, "feet"),
  41695. default: true
  41696. },
  41697. ]
  41698. ))
  41699. characterMakers.push(() => makeCharacter(
  41700. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  41701. {
  41702. front: {
  41703. height: math.unit(7, "feet"),
  41704. weight: math.unit(250, "lb"),
  41705. name: "Front",
  41706. image: {
  41707. source: "./media/characters/nines/front.svg",
  41708. extra: 1741/1607,
  41709. bottom: 41/1782
  41710. }
  41711. },
  41712. side: {
  41713. height: math.unit(7, "feet"),
  41714. weight: math.unit(250, "lb"),
  41715. name: "Side",
  41716. image: {
  41717. source: "./media/characters/nines/side.svg",
  41718. extra: 1854/1735,
  41719. bottom: 93/1947
  41720. }
  41721. },
  41722. back: {
  41723. height: math.unit(7, "feet"),
  41724. weight: math.unit(250, "lb"),
  41725. name: "Back",
  41726. image: {
  41727. source: "./media/characters/nines/back.svg",
  41728. extra: 1748/1615,
  41729. bottom: 20/1768
  41730. }
  41731. },
  41732. },
  41733. [
  41734. {
  41735. name: "Megamacro",
  41736. height: math.unit(99, "km"),
  41737. default: true
  41738. },
  41739. ]
  41740. ))
  41741. characterMakers.push(() => makeCharacter(
  41742. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  41743. {
  41744. front: {
  41745. height: math.unit(5 + 10/12, "feet"),
  41746. weight: math.unit(210, "lb"),
  41747. name: "Front",
  41748. image: {
  41749. source: "./media/characters/zenith/front.svg",
  41750. extra: 1531/1452,
  41751. bottom: 198/1729
  41752. }
  41753. },
  41754. back: {
  41755. height: math.unit(5 + 10/12, "feet"),
  41756. weight: math.unit(210, "lb"),
  41757. name: "Back",
  41758. image: {
  41759. source: "./media/characters/zenith/back.svg",
  41760. extra: 1571/1487,
  41761. bottom: 75/1646
  41762. }
  41763. },
  41764. },
  41765. [
  41766. {
  41767. name: "Normal",
  41768. height: math.unit(5 + 10/12, "feet"),
  41769. default: true
  41770. }
  41771. ]
  41772. ))
  41773. characterMakers.push(() => makeCharacter(
  41774. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  41775. {
  41776. front: {
  41777. height: math.unit(4, "feet"),
  41778. weight: math.unit(60, "lb"),
  41779. name: "Front",
  41780. image: {
  41781. source: "./media/characters/jasper/front.svg",
  41782. extra: 1450/1379,
  41783. bottom: 19/1469
  41784. }
  41785. },
  41786. },
  41787. [
  41788. {
  41789. name: "Normal",
  41790. height: math.unit(4, "feet"),
  41791. default: true
  41792. },
  41793. ]
  41794. ))
  41795. characterMakers.push(() => makeCharacter(
  41796. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  41797. {
  41798. front: {
  41799. height: math.unit(6 + 5/12, "feet"),
  41800. weight: math.unit(290, "lb"),
  41801. name: "Front",
  41802. image: {
  41803. source: "./media/characters/tiberius-thyben/front.svg",
  41804. extra: 757/739,
  41805. bottom: 39/796
  41806. }
  41807. },
  41808. },
  41809. [
  41810. {
  41811. name: "Micro",
  41812. height: math.unit(1.5, "inches")
  41813. },
  41814. {
  41815. name: "Normal",
  41816. height: math.unit(6 + 5/12, "feet"),
  41817. default: true
  41818. },
  41819. {
  41820. name: "Macro",
  41821. height: math.unit(300, "feet")
  41822. },
  41823. ]
  41824. ))
  41825. characterMakers.push(() => makeCharacter(
  41826. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  41827. {
  41828. front: {
  41829. height: math.unit(5 + 6/12, "feet"),
  41830. weight: math.unit(60, "kg"),
  41831. name: "Front",
  41832. image: {
  41833. source: "./media/characters/sabre/front.svg",
  41834. extra: 738/671,
  41835. bottom: 27/765
  41836. }
  41837. },
  41838. },
  41839. [
  41840. {
  41841. name: "Teeny",
  41842. height: math.unit(2, "inches")
  41843. },
  41844. {
  41845. name: "Smol",
  41846. height: math.unit(8, "inches")
  41847. },
  41848. {
  41849. name: "Normal",
  41850. height: math.unit(5 + 6/12, "feet"),
  41851. default: true
  41852. },
  41853. {
  41854. name: "Mini-Macro",
  41855. height: math.unit(15, "feet")
  41856. },
  41857. {
  41858. name: "Macro",
  41859. height: math.unit(50, "feet")
  41860. },
  41861. ]
  41862. ))
  41863. characterMakers.push(() => makeCharacter(
  41864. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  41865. {
  41866. front: {
  41867. height: math.unit(6 + 4/12, "feet"),
  41868. weight: math.unit(170, "lb"),
  41869. name: "Front",
  41870. image: {
  41871. source: "./media/characters/charlie/front.svg",
  41872. extra: 1348/1228,
  41873. bottom: 15/1363
  41874. }
  41875. },
  41876. },
  41877. [
  41878. {
  41879. name: "Macro",
  41880. height: math.unit(1700, "meters"),
  41881. default: true
  41882. },
  41883. {
  41884. name: "MegaMacro",
  41885. height: math.unit(20400, "meters")
  41886. },
  41887. ]
  41888. ))
  41889. characterMakers.push(() => makeCharacter(
  41890. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  41891. {
  41892. front: {
  41893. height: math.unit(6 + 3/12, "feet"),
  41894. weight: math.unit(185, "lb"),
  41895. name: "Front",
  41896. image: {
  41897. source: "./media/characters/susan-grant/front.svg",
  41898. extra: 1351/1327,
  41899. bottom: 26/1377
  41900. }
  41901. },
  41902. },
  41903. [
  41904. {
  41905. name: "Normal",
  41906. height: math.unit(6 + 3/12, "feet"),
  41907. default: true
  41908. },
  41909. {
  41910. name: "Macro",
  41911. height: math.unit(225, "feet")
  41912. },
  41913. {
  41914. name: "Macro+",
  41915. height: math.unit(900, "feet")
  41916. },
  41917. {
  41918. name: "MegaMacro",
  41919. height: math.unit(14400, "feet")
  41920. },
  41921. ]
  41922. ))
  41923. characterMakers.push(() => makeCharacter(
  41924. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  41925. {
  41926. front: {
  41927. height: math.unit(5 + 4/12, "feet"),
  41928. weight: math.unit(110, "lb"),
  41929. name: "Front",
  41930. image: {
  41931. source: "./media/characters/axel-isanov/front.svg",
  41932. extra: 1096/1065,
  41933. bottom: 13/1109
  41934. }
  41935. },
  41936. },
  41937. [
  41938. {
  41939. name: "Normal",
  41940. height: math.unit(5 + 4/12, "feet"),
  41941. default: true
  41942. },
  41943. ]
  41944. ))
  41945. characterMakers.push(() => makeCharacter(
  41946. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  41947. {
  41948. front: {
  41949. height: math.unit(9, "feet"),
  41950. weight: math.unit(467, "lb"),
  41951. name: "Front",
  41952. image: {
  41953. source: "./media/characters/necahual/front.svg",
  41954. extra: 920/873,
  41955. bottom: 26/946
  41956. }
  41957. },
  41958. back: {
  41959. height: math.unit(9, "feet"),
  41960. weight: math.unit(467, "lb"),
  41961. name: "Back",
  41962. image: {
  41963. source: "./media/characters/necahual/back.svg",
  41964. extra: 930/884,
  41965. bottom: 16/946
  41966. }
  41967. },
  41968. frontUnderwear: {
  41969. height: math.unit(9, "feet"),
  41970. weight: math.unit(467, "lb"),
  41971. name: "Front (Underwear)",
  41972. image: {
  41973. source: "./media/characters/necahual/front-underwear.svg",
  41974. extra: 920/873,
  41975. bottom: 26/946
  41976. }
  41977. },
  41978. frontDressed: {
  41979. height: math.unit(9, "feet"),
  41980. weight: math.unit(467, "lb"),
  41981. name: "Front (Dressed)",
  41982. image: {
  41983. source: "./media/characters/necahual/front-dressed.svg",
  41984. extra: 920/873,
  41985. bottom: 26/946
  41986. }
  41987. },
  41988. },
  41989. [
  41990. {
  41991. name: "Comprsesed",
  41992. height: math.unit(9, "feet")
  41993. },
  41994. {
  41995. name: "Natural",
  41996. height: math.unit(15, "feet"),
  41997. default: true
  41998. },
  41999. {
  42000. name: "Boosted",
  42001. height: math.unit(50, "feet")
  42002. },
  42003. {
  42004. name: "Boosted+",
  42005. height: math.unit(150, "feet")
  42006. },
  42007. {
  42008. name: "Max",
  42009. height: math.unit(500, "feet")
  42010. },
  42011. ]
  42012. ))
  42013. characterMakers.push(() => makeCharacter(
  42014. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  42015. {
  42016. front: {
  42017. height: math.unit(22 + 1/12, "feet"),
  42018. weight: math.unit(3200, "lb"),
  42019. name: "Front",
  42020. image: {
  42021. source: "./media/characters/theo-acacia/front.svg",
  42022. extra: 1796/1741,
  42023. bottom: 83/1879
  42024. }
  42025. },
  42026. frontUnderwear: {
  42027. height: math.unit(22 + 1/12, "feet"),
  42028. weight: math.unit(3200, "lb"),
  42029. name: "Front (Underwear)",
  42030. image: {
  42031. source: "./media/characters/theo-acacia/front-underwear.svg",
  42032. extra: 1796/1741,
  42033. bottom: 83/1879
  42034. }
  42035. },
  42036. frontNude: {
  42037. height: math.unit(22 + 1/12, "feet"),
  42038. weight: math.unit(3200, "lb"),
  42039. name: "Front (Nude)",
  42040. image: {
  42041. source: "./media/characters/theo-acacia/front-nude.svg",
  42042. extra: 1796/1741,
  42043. bottom: 83/1879
  42044. }
  42045. },
  42046. },
  42047. [
  42048. {
  42049. name: "Normal",
  42050. height: math.unit(22 + 1/12, "feet"),
  42051. default: true
  42052. },
  42053. ]
  42054. ))
  42055. characterMakers.push(() => makeCharacter(
  42056. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42057. {
  42058. front: {
  42059. height: math.unit(20, "feet"),
  42060. name: "Front",
  42061. image: {
  42062. source: "./media/characters/astra/front.svg",
  42063. extra: 1850/1714,
  42064. bottom: 106/1956
  42065. }
  42066. },
  42067. frontUndressed: {
  42068. height: math.unit(20, "feet"),
  42069. name: "Front (Undressed)",
  42070. image: {
  42071. source: "./media/characters/astra/front-undressed.svg",
  42072. extra: 1926/1749,
  42073. bottom: 0/1926
  42074. }
  42075. },
  42076. hand: {
  42077. height: math.unit(1.53, "feet"),
  42078. name: "Hand",
  42079. image: {
  42080. source: "./media/characters/astra/hand.svg"
  42081. }
  42082. },
  42083. paw: {
  42084. height: math.unit(1.53, "feet"),
  42085. name: "Paw",
  42086. image: {
  42087. source: "./media/characters/astra/paw.svg"
  42088. }
  42089. },
  42090. },
  42091. [
  42092. {
  42093. name: "Smallest",
  42094. height: math.unit(20, "feet")
  42095. },
  42096. {
  42097. name: "Normal",
  42098. height: math.unit(1e9, "miles"),
  42099. default: true
  42100. },
  42101. {
  42102. name: "Larger",
  42103. height: math.unit(5, "multiverses")
  42104. },
  42105. {
  42106. name: "Largest",
  42107. height: math.unit(1e9, "multiverses")
  42108. },
  42109. ]
  42110. ))
  42111. characterMakers.push(() => makeCharacter(
  42112. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  42113. {
  42114. front: {
  42115. height: math.unit(8, "feet"),
  42116. name: "Front",
  42117. image: {
  42118. source: "./media/characters/breanna/front.svg",
  42119. extra: 1912/1632,
  42120. bottom: 33/1945
  42121. }
  42122. },
  42123. },
  42124. [
  42125. {
  42126. name: "Smallest",
  42127. height: math.unit(8, "feet")
  42128. },
  42129. {
  42130. name: "Normal",
  42131. height: math.unit(1, "mile"),
  42132. default: true
  42133. },
  42134. {
  42135. name: "Maximum",
  42136. height: math.unit(1500000000000, "lightyears")
  42137. },
  42138. ]
  42139. ))
  42140. characterMakers.push(() => makeCharacter(
  42141. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  42142. {
  42143. front: {
  42144. height: math.unit(5 + 11/12, "feet"),
  42145. weight: math.unit(155, "lb"),
  42146. name: "Front",
  42147. image: {
  42148. source: "./media/characters/cai/front.svg",
  42149. extra: 1823/1702,
  42150. bottom: 32/1855
  42151. }
  42152. },
  42153. back: {
  42154. height: math.unit(5 + 11/12, "feet"),
  42155. weight: math.unit(155, "lb"),
  42156. name: "Back",
  42157. image: {
  42158. source: "./media/characters/cai/back.svg",
  42159. extra: 1809/1708,
  42160. bottom: 31/1840
  42161. }
  42162. },
  42163. },
  42164. [
  42165. {
  42166. name: "Normal",
  42167. height: math.unit(5 + 11/12, "feet"),
  42168. default: true
  42169. },
  42170. {
  42171. name: "Big",
  42172. height: math.unit(15, "feet")
  42173. },
  42174. {
  42175. name: "Macro",
  42176. height: math.unit(200, "feet")
  42177. },
  42178. ]
  42179. ))
  42180. characterMakers.push(() => makeCharacter(
  42181. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  42182. {
  42183. front: {
  42184. height: math.unit(5 + 6/12, "feet"),
  42185. weight: math.unit(160, "lb"),
  42186. name: "Front",
  42187. image: {
  42188. source: "./media/characters/zanna-virtuedòttir/front.svg",
  42189. extra: 1227/1174,
  42190. bottom: 37/1264
  42191. }
  42192. },
  42193. },
  42194. [
  42195. {
  42196. name: "Macro",
  42197. height: math.unit(444, "meters"),
  42198. default: true
  42199. },
  42200. ]
  42201. ))
  42202. characterMakers.push(() => makeCharacter(
  42203. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  42204. {
  42205. front: {
  42206. height: math.unit(18 + 7/12, "feet"),
  42207. name: "Front",
  42208. image: {
  42209. source: "./media/characters/rex/front.svg",
  42210. extra: 1941/1807,
  42211. bottom: 66/2007
  42212. }
  42213. },
  42214. back: {
  42215. height: math.unit(18 + 7/12, "feet"),
  42216. name: "Back",
  42217. image: {
  42218. source: "./media/characters/rex/back.svg",
  42219. extra: 1937/1822,
  42220. bottom: 42/1979
  42221. }
  42222. },
  42223. boot: {
  42224. height: math.unit(3.45, "feet"),
  42225. name: "Boot",
  42226. image: {
  42227. source: "./media/characters/rex/boot.svg"
  42228. }
  42229. },
  42230. paw: {
  42231. height: math.unit(4.17, "feet"),
  42232. name: "Paw",
  42233. image: {
  42234. source: "./media/characters/rex/paw.svg"
  42235. }
  42236. },
  42237. head: {
  42238. height: math.unit(6.728, "feet"),
  42239. name: "Head",
  42240. image: {
  42241. source: "./media/characters/rex/head.svg"
  42242. }
  42243. },
  42244. },
  42245. [
  42246. {
  42247. name: "Nano",
  42248. height: math.unit(18 + 7/12, "feet")
  42249. },
  42250. {
  42251. name: "Micro",
  42252. height: math.unit(1.5, "megameters")
  42253. },
  42254. {
  42255. name: "Normal",
  42256. height: math.unit(440, "megameters"),
  42257. default: true
  42258. },
  42259. {
  42260. name: "Macro",
  42261. height: math.unit(2.5, "gigameters")
  42262. },
  42263. {
  42264. name: "Gigamacro",
  42265. height: math.unit(2, "galaxies")
  42266. },
  42267. ]
  42268. ))
  42269. characterMakers.push(() => makeCharacter(
  42270. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  42271. {
  42272. side: {
  42273. height: math.unit(32, "feet"),
  42274. weight: math.unit(250000, "lb"),
  42275. name: "Side",
  42276. image: {
  42277. source: "./media/characters/silverwing/side.svg",
  42278. extra: 1100/1019,
  42279. bottom: 204/1304
  42280. }
  42281. },
  42282. },
  42283. [
  42284. {
  42285. name: "Normal",
  42286. height: math.unit(32, "feet"),
  42287. default: true
  42288. },
  42289. ]
  42290. ))
  42291. characterMakers.push(() => makeCharacter(
  42292. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  42293. {
  42294. front: {
  42295. height: math.unit(6 + 6/12, "feet"),
  42296. weight: math.unit(350, "lb"),
  42297. name: "Front",
  42298. image: {
  42299. source: "./media/characters/tristan-hawthorne/front.svg",
  42300. extra: 1159/1124,
  42301. bottom: 37/1196
  42302. },
  42303. form: "labrador",
  42304. default: true
  42305. },
  42306. skunkFront: {
  42307. height: math.unit(4 + 6/12, "feet"),
  42308. weight: math.unit(120, "lb"),
  42309. name: "Front",
  42310. image: {
  42311. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  42312. extra: 1609/1551,
  42313. bottom: 169/1778
  42314. },
  42315. form: "skunk",
  42316. default: true
  42317. },
  42318. },
  42319. [
  42320. {
  42321. name: "Normal",
  42322. height: math.unit(6 + 6/12, "feet"),
  42323. form: "labrador",
  42324. default: true
  42325. },
  42326. {
  42327. name: "Normal",
  42328. height: math.unit(4 + 6/12, "feet"),
  42329. form: "skunk",
  42330. default: true
  42331. },
  42332. ],
  42333. {
  42334. "labrador": {
  42335. name: "Labrador",
  42336. default: true
  42337. },
  42338. "skunk": {
  42339. name: "Skunk"
  42340. }
  42341. }
  42342. ))
  42343. characterMakers.push(() => makeCharacter(
  42344. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  42345. {
  42346. front: {
  42347. height: math.unit(5 + 11/12, "feet"),
  42348. weight: math.unit(190, "lb"),
  42349. name: "Front",
  42350. image: {
  42351. source: "./media/characters/mizu/front.svg",
  42352. extra: 1988/1788,
  42353. bottom: 14/2002
  42354. }
  42355. },
  42356. },
  42357. [
  42358. {
  42359. name: "Normal",
  42360. height: math.unit(5 + 11/12, "feet"),
  42361. default: true
  42362. },
  42363. ]
  42364. ))
  42365. characterMakers.push(() => makeCharacter(
  42366. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  42367. {
  42368. front: {
  42369. height: math.unit(1.7, "feet"),
  42370. weight: math.unit(50, "lb"),
  42371. name: "Front",
  42372. image: {
  42373. source: "./media/characters/dechroma/front.svg",
  42374. extra: 1095/859,
  42375. bottom: 64/1159
  42376. }
  42377. },
  42378. },
  42379. [
  42380. {
  42381. name: "Normal",
  42382. height: math.unit(1.7, "feet"),
  42383. default: true
  42384. },
  42385. ]
  42386. ))
  42387. characterMakers.push(() => makeCharacter(
  42388. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  42389. {
  42390. side: {
  42391. height: math.unit(30, "feet"),
  42392. name: "Side",
  42393. image: {
  42394. source: "./media/characters/veluren-thanazel/side.svg",
  42395. extra: 1611/633,
  42396. bottom: 118/1729
  42397. }
  42398. },
  42399. front: {
  42400. height: math.unit(30, "feet"),
  42401. name: "Front",
  42402. image: {
  42403. source: "./media/characters/veluren-thanazel/front.svg",
  42404. extra: 1486/636,
  42405. bottom: 238/1724
  42406. }
  42407. },
  42408. head: {
  42409. height: math.unit(21.4, "feet"),
  42410. name: "Head",
  42411. image: {
  42412. source: "./media/characters/veluren-thanazel/head.svg"
  42413. }
  42414. },
  42415. genitals: {
  42416. height: math.unit(19.4, "feet"),
  42417. name: "Genitals",
  42418. image: {
  42419. source: "./media/characters/veluren-thanazel/genitals.svg"
  42420. }
  42421. },
  42422. },
  42423. [
  42424. {
  42425. name: "Social",
  42426. height: math.unit(6, "feet")
  42427. },
  42428. {
  42429. name: "Play",
  42430. height: math.unit(12, "feet")
  42431. },
  42432. {
  42433. name: "True",
  42434. height: math.unit(30, "feet"),
  42435. default: true
  42436. },
  42437. ]
  42438. ))
  42439. characterMakers.push(() => makeCharacter(
  42440. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  42441. {
  42442. front: {
  42443. height: math.unit(7 + 6/12, "feet"),
  42444. weight: math.unit(500, "kg"),
  42445. name: "Front",
  42446. image: {
  42447. source: "./media/characters/arcturas/front.svg",
  42448. extra: 1700/1500,
  42449. bottom: 145/1845
  42450. }
  42451. },
  42452. },
  42453. [
  42454. {
  42455. name: "Normal",
  42456. height: math.unit(7 + 6/12, "feet"),
  42457. default: true
  42458. },
  42459. ]
  42460. ))
  42461. characterMakers.push(() => makeCharacter(
  42462. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  42463. {
  42464. side: {
  42465. height: math.unit(6, "feet"),
  42466. weight: math.unit(2, "tons"),
  42467. name: "Side",
  42468. image: {
  42469. source: "./media/characters/vitaen/side.svg",
  42470. extra: 1157/617,
  42471. bottom: 122/1279
  42472. }
  42473. },
  42474. },
  42475. [
  42476. {
  42477. name: "Normal",
  42478. height: math.unit(6, "feet"),
  42479. default: true
  42480. },
  42481. ]
  42482. ))
  42483. characterMakers.push(() => makeCharacter(
  42484. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  42485. {
  42486. front: {
  42487. height: math.unit(19, "feet"),
  42488. name: "Front",
  42489. image: {
  42490. source: "./media/characters/fia-dreamweaver/front.svg",
  42491. extra: 1630/1504,
  42492. bottom: 25/1655
  42493. }
  42494. },
  42495. },
  42496. [
  42497. {
  42498. name: "Normal",
  42499. height: math.unit(19, "feet"),
  42500. default: true
  42501. },
  42502. ]
  42503. ))
  42504. characterMakers.push(() => makeCharacter(
  42505. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  42506. {
  42507. front: {
  42508. height: math.unit(5 + 4/12, "feet"),
  42509. name: "Front",
  42510. image: {
  42511. source: "./media/characters/artan/front.svg",
  42512. extra: 1618/1535,
  42513. bottom: 46/1664
  42514. }
  42515. },
  42516. back: {
  42517. height: math.unit(5 + 4/12, "feet"),
  42518. name: "Back",
  42519. image: {
  42520. source: "./media/characters/artan/back.svg",
  42521. extra: 1618/1543,
  42522. bottom: 31/1649
  42523. }
  42524. },
  42525. },
  42526. [
  42527. {
  42528. name: "Normal",
  42529. height: math.unit(5 + 4/12, "feet"),
  42530. default: true
  42531. },
  42532. ]
  42533. ))
  42534. characterMakers.push(() => makeCharacter(
  42535. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  42536. {
  42537. side: {
  42538. height: math.unit(182, "cm"),
  42539. weight: math.unit(1000, "lb"),
  42540. name: "Side",
  42541. image: {
  42542. source: "./media/characters/silver-dragon/side.svg",
  42543. extra: 710/287,
  42544. bottom: 88/798
  42545. }
  42546. },
  42547. },
  42548. [
  42549. {
  42550. name: "Normal",
  42551. height: math.unit(182, "cm"),
  42552. default: true
  42553. },
  42554. ]
  42555. ))
  42556. characterMakers.push(() => makeCharacter(
  42557. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  42558. {
  42559. side: {
  42560. height: math.unit(6 + 6/12, "feet"),
  42561. weight: math.unit(1.5, "tons"),
  42562. name: "Side",
  42563. image: {
  42564. source: "./media/characters/zephyr/side.svg",
  42565. extra: 1433/586,
  42566. bottom: 109/1542
  42567. }
  42568. },
  42569. },
  42570. [
  42571. {
  42572. name: "Normal",
  42573. height: math.unit(6 + 6/12, "feet"),
  42574. default: true
  42575. },
  42576. ]
  42577. ))
  42578. characterMakers.push(() => makeCharacter(
  42579. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  42580. {
  42581. side: {
  42582. height: math.unit(1, "feet"),
  42583. name: "Side",
  42584. image: {
  42585. source: "./media/characters/vixye/side.svg",
  42586. extra: 632/541,
  42587. bottom: 0/632
  42588. }
  42589. },
  42590. },
  42591. [
  42592. {
  42593. name: "Normal",
  42594. height: math.unit(1, "feet"),
  42595. default: true
  42596. },
  42597. {
  42598. name: "True",
  42599. height: math.unit(1e15, "multiverses")
  42600. },
  42601. ]
  42602. ))
  42603. characterMakers.push(() => makeCharacter(
  42604. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  42605. {
  42606. front: {
  42607. height: math.unit(8 + 2/12, "feet"),
  42608. weight: math.unit(650, "lb"),
  42609. name: "Front",
  42610. image: {
  42611. source: "./media/characters/darla-mac-lochlainn/front.svg",
  42612. extra: 1174/1137,
  42613. bottom: 82/1256
  42614. }
  42615. },
  42616. back: {
  42617. height: math.unit(8 + 2/12, "feet"),
  42618. weight: math.unit(650, "lb"),
  42619. name: "Back",
  42620. image: {
  42621. source: "./media/characters/darla-mac-lochlainn/back.svg",
  42622. extra: 1204/1157,
  42623. bottom: 46/1250
  42624. }
  42625. },
  42626. },
  42627. [
  42628. {
  42629. name: "Wildform",
  42630. height: math.unit(8 + 2/12, "feet"),
  42631. default: true
  42632. },
  42633. ]
  42634. ))
  42635. characterMakers.push(() => makeCharacter(
  42636. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  42637. {
  42638. front: {
  42639. height: math.unit(18, "feet"),
  42640. name: "Front",
  42641. image: {
  42642. source: "./media/characters/cyphin/front.svg",
  42643. extra: 970/886,
  42644. bottom: 42/1012
  42645. }
  42646. },
  42647. back: {
  42648. height: math.unit(18, "feet"),
  42649. name: "Back",
  42650. image: {
  42651. source: "./media/characters/cyphin/back.svg",
  42652. extra: 1009/894,
  42653. bottom: 24/1033
  42654. }
  42655. },
  42656. head: {
  42657. height: math.unit(5.05, "feet"),
  42658. name: "Head",
  42659. image: {
  42660. source: "./media/characters/cyphin/head.svg"
  42661. }
  42662. },
  42663. tailbud: {
  42664. height: math.unit(5, "feet"),
  42665. name: "Tailbud",
  42666. image: {
  42667. source: "./media/characters/cyphin/tailbud.svg"
  42668. }
  42669. },
  42670. },
  42671. [
  42672. ]
  42673. ))
  42674. characterMakers.push(() => makeCharacter(
  42675. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  42676. {
  42677. side: {
  42678. height: math.unit(10, "feet"),
  42679. weight: math.unit(6, "tons"),
  42680. name: "Side",
  42681. image: {
  42682. source: "./media/characters/raijin/side.svg",
  42683. extra: 1529/613,
  42684. bottom: 337/1866
  42685. }
  42686. },
  42687. },
  42688. [
  42689. {
  42690. name: "Normal",
  42691. height: math.unit(10, "feet"),
  42692. default: true
  42693. },
  42694. ]
  42695. ))
  42696. characterMakers.push(() => makeCharacter(
  42697. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  42698. {
  42699. side: {
  42700. height: math.unit(9, "feet"),
  42701. name: "Side",
  42702. image: {
  42703. source: "./media/characters/nilghais/side.svg",
  42704. extra: 1047/744,
  42705. bottom: 91/1138
  42706. }
  42707. },
  42708. head: {
  42709. height: math.unit(3.14, "feet"),
  42710. name: "Head",
  42711. image: {
  42712. source: "./media/characters/nilghais/head.svg"
  42713. }
  42714. },
  42715. mouth: {
  42716. height: math.unit(4.6, "feet"),
  42717. name: "Mouth",
  42718. image: {
  42719. source: "./media/characters/nilghais/mouth.svg"
  42720. }
  42721. },
  42722. wings: {
  42723. height: math.unit(24, "feet"),
  42724. name: "Wings",
  42725. image: {
  42726. source: "./media/characters/nilghais/wings.svg"
  42727. }
  42728. },
  42729. ass: {
  42730. height: math.unit(6.12, "feet"),
  42731. name: "Ass",
  42732. image: {
  42733. source: "./media/characters/nilghais/ass.svg"
  42734. }
  42735. },
  42736. },
  42737. [
  42738. {
  42739. name: "Normal",
  42740. height: math.unit(9, "feet"),
  42741. default: true
  42742. },
  42743. ]
  42744. ))
  42745. characterMakers.push(() => makeCharacter(
  42746. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  42747. {
  42748. regular: {
  42749. height: math.unit(16 + 2/12, "feet"),
  42750. weight: math.unit(2300, "lb"),
  42751. name: "Regular",
  42752. image: {
  42753. source: "./media/characters/zolgar/regular.svg",
  42754. extra: 1246/1004,
  42755. bottom: 124/1370
  42756. }
  42757. },
  42758. boxers: {
  42759. height: math.unit(16 + 2/12, "feet"),
  42760. weight: math.unit(2300, "lb"),
  42761. name: "Boxers",
  42762. image: {
  42763. source: "./media/characters/zolgar/boxers.svg",
  42764. extra: 1246/1004,
  42765. bottom: 124/1370
  42766. }
  42767. },
  42768. armored: {
  42769. height: math.unit(16 + 2/12, "feet"),
  42770. weight: math.unit(2300, "lb"),
  42771. name: "Armored",
  42772. image: {
  42773. source: "./media/characters/zolgar/armored.svg",
  42774. extra: 1246/1004,
  42775. bottom: 124/1370
  42776. }
  42777. },
  42778. goth: {
  42779. height: math.unit(16 + 2/12, "feet"),
  42780. weight: math.unit(2300, "lb"),
  42781. name: "Goth",
  42782. image: {
  42783. source: "./media/characters/zolgar/goth.svg",
  42784. extra: 1246/1004,
  42785. bottom: 124/1370
  42786. }
  42787. },
  42788. },
  42789. [
  42790. {
  42791. name: "Shrunken Down",
  42792. height: math.unit(9 + 2/12, "feet")
  42793. },
  42794. {
  42795. name: "Normal",
  42796. height: math.unit(16 + 2/12, "feet"),
  42797. default: true
  42798. },
  42799. ]
  42800. ))
  42801. characterMakers.push(() => makeCharacter(
  42802. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  42803. {
  42804. front: {
  42805. height: math.unit(6, "feet"),
  42806. weight: math.unit(168, "lb"),
  42807. name: "Front",
  42808. image: {
  42809. source: "./media/characters/luca/front.svg",
  42810. extra: 841/667,
  42811. bottom: 102/943
  42812. }
  42813. },
  42814. },
  42815. [
  42816. {
  42817. name: "Normal",
  42818. height: math.unit(6, "feet"),
  42819. default: true
  42820. },
  42821. ]
  42822. ))
  42823. characterMakers.push(() => makeCharacter(
  42824. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  42825. {
  42826. side: {
  42827. height: math.unit(7 + 3/12, "feet"),
  42828. weight: math.unit(312, "lb"),
  42829. name: "Side",
  42830. image: {
  42831. source: "./media/characters/zezo/side.svg",
  42832. extra: 1192/1067,
  42833. bottom: 63/1255
  42834. }
  42835. },
  42836. },
  42837. [
  42838. {
  42839. name: "Normal",
  42840. height: math.unit(7 + 3/12, "feet"),
  42841. default: true
  42842. },
  42843. ]
  42844. ))
  42845. characterMakers.push(() => makeCharacter(
  42846. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  42847. {
  42848. front: {
  42849. height: math.unit(5 + 5/12, "feet"),
  42850. weight: math.unit(170, "lb"),
  42851. name: "Front",
  42852. image: {
  42853. source: "./media/characters/mayso/front.svg",
  42854. extra: 1215/1108,
  42855. bottom: 16/1231
  42856. }
  42857. },
  42858. },
  42859. [
  42860. {
  42861. name: "Normal",
  42862. height: math.unit(5 + 5/12, "feet"),
  42863. default: true
  42864. },
  42865. ]
  42866. ))
  42867. characterMakers.push(() => makeCharacter(
  42868. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  42869. {
  42870. front: {
  42871. height: math.unit(4 + 3/12, "feet"),
  42872. weight: math.unit(80, "lb"),
  42873. name: "Front",
  42874. image: {
  42875. source: "./media/characters/hess/front.svg",
  42876. extra: 1200/1123,
  42877. bottom: 16/1216
  42878. }
  42879. },
  42880. },
  42881. [
  42882. {
  42883. name: "Normal",
  42884. height: math.unit(4 + 3/12, "feet"),
  42885. default: true
  42886. },
  42887. ]
  42888. ))
  42889. characterMakers.push(() => makeCharacter(
  42890. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  42891. {
  42892. front: {
  42893. height: math.unit(1.9, "meters"),
  42894. name: "Front",
  42895. image: {
  42896. source: "./media/characters/ashgar/front.svg",
  42897. extra: 1177/1146,
  42898. bottom: 99/1276
  42899. }
  42900. },
  42901. back: {
  42902. height: math.unit(1.9, "meters"),
  42903. name: "Back",
  42904. image: {
  42905. source: "./media/characters/ashgar/back.svg",
  42906. extra: 1201/1183,
  42907. bottom: 53/1254
  42908. }
  42909. },
  42910. feral: {
  42911. height: math.unit(1.4, "meters"),
  42912. name: "Feral",
  42913. image: {
  42914. source: "./media/characters/ashgar/feral.svg",
  42915. extra: 370/345,
  42916. bottom: 45/415
  42917. }
  42918. },
  42919. },
  42920. [
  42921. {
  42922. name: "Normal",
  42923. height: math.unit(1.9, "meters"),
  42924. default: true
  42925. },
  42926. ]
  42927. ))
  42928. characterMakers.push(() => makeCharacter(
  42929. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  42930. {
  42931. regular: {
  42932. height: math.unit(6, "feet"),
  42933. weight: math.unit(220, "lb"),
  42934. name: "Regular",
  42935. image: {
  42936. source: "./media/characters/phillip/regular.svg",
  42937. extra: 1373/1277,
  42938. bottom: 75/1448
  42939. }
  42940. },
  42941. dressed: {
  42942. height: math.unit(6, "feet"),
  42943. weight: math.unit(220, "lb"),
  42944. name: "Dressed",
  42945. image: {
  42946. source: "./media/characters/phillip/dressed.svg",
  42947. extra: 1373/1277,
  42948. bottom: 75/1448
  42949. }
  42950. },
  42951. paw: {
  42952. height: math.unit(1.44, "feet"),
  42953. name: "Paw",
  42954. image: {
  42955. source: "./media/characters/phillip/paw.svg"
  42956. }
  42957. },
  42958. },
  42959. [
  42960. {
  42961. name: "Normal",
  42962. height: math.unit(6, "feet"),
  42963. default: true
  42964. },
  42965. ]
  42966. ))
  42967. characterMakers.push(() => makeCharacter(
  42968. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  42969. {
  42970. side: {
  42971. height: math.unit(42, "feet"),
  42972. name: "Side",
  42973. image: {
  42974. source: "./media/characters/uvula/side.svg",
  42975. extra: 683/586,
  42976. bottom: 60/743
  42977. }
  42978. },
  42979. front: {
  42980. height: math.unit(42, "feet"),
  42981. name: "Front",
  42982. image: {
  42983. source: "./media/characters/uvula/front.svg",
  42984. extra: 705/613,
  42985. bottom: 54/759
  42986. }
  42987. },
  42988. maw: {
  42989. height: math.unit(23.5, "feet"),
  42990. name: "Maw",
  42991. image: {
  42992. source: "./media/characters/uvula/maw.svg"
  42993. }
  42994. },
  42995. },
  42996. [
  42997. {
  42998. name: "Original Size",
  42999. height: math.unit(14, "inches")
  43000. },
  43001. {
  43002. name: "Human Size",
  43003. height: math.unit(6, "feet")
  43004. },
  43005. {
  43006. name: "Big",
  43007. height: math.unit(42, "feet"),
  43008. default: true
  43009. },
  43010. {
  43011. name: "Bigger",
  43012. height: math.unit(100, "feet")
  43013. },
  43014. ]
  43015. ))
  43016. characterMakers.push(() => makeCharacter(
  43017. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  43018. {
  43019. front: {
  43020. height: math.unit(5 + 11/12, "feet"),
  43021. name: "Front",
  43022. image: {
  43023. source: "./media/characters/lannah/front.svg",
  43024. extra: 1208/1113,
  43025. bottom: 97/1305
  43026. }
  43027. },
  43028. },
  43029. [
  43030. {
  43031. name: "Normal",
  43032. height: math.unit(5 + 11/12, "feet"),
  43033. default: true
  43034. },
  43035. ]
  43036. ))
  43037. characterMakers.push(() => makeCharacter(
  43038. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  43039. {
  43040. front: {
  43041. height: math.unit(6 + 3/12, "feet"),
  43042. weight: math.unit(3.5, "tons"),
  43043. name: "Front",
  43044. image: {
  43045. source: "./media/characters/emberflame/front.svg",
  43046. extra: 1198/672,
  43047. bottom: 82/1280
  43048. }
  43049. },
  43050. side: {
  43051. height: math.unit(6 + 3/12, "feet"),
  43052. weight: math.unit(3.5, "tons"),
  43053. name: "Side",
  43054. image: {
  43055. source: "./media/characters/emberflame/side.svg",
  43056. extra: 938/527,
  43057. bottom: 56/994
  43058. }
  43059. },
  43060. },
  43061. [
  43062. {
  43063. name: "Normal",
  43064. height: math.unit(6 + 3/12, "feet"),
  43065. default: true
  43066. },
  43067. ]
  43068. ))
  43069. characterMakers.push(() => makeCharacter(
  43070. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  43071. {
  43072. side: {
  43073. height: math.unit(17.5, "feet"),
  43074. weight: math.unit(35, "tons"),
  43075. name: "Side",
  43076. image: {
  43077. source: "./media/characters/sophie-ambrose/side.svg",
  43078. extra: 1573/1242,
  43079. bottom: 71/1644
  43080. }
  43081. },
  43082. maw: {
  43083. height: math.unit(7.4, "feet"),
  43084. name: "Maw",
  43085. image: {
  43086. source: "./media/characters/sophie-ambrose/maw.svg"
  43087. }
  43088. },
  43089. },
  43090. [
  43091. {
  43092. name: "Normal",
  43093. height: math.unit(17.5, "feet"),
  43094. default: true
  43095. },
  43096. ]
  43097. ))
  43098. characterMakers.push(() => makeCharacter(
  43099. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  43100. {
  43101. front: {
  43102. height: math.unit(280, "feet"),
  43103. weight: math.unit(550, "tons"),
  43104. name: "Front",
  43105. image: {
  43106. source: "./media/characters/king-mugi/front.svg",
  43107. extra: 1102/947,
  43108. bottom: 104/1206
  43109. }
  43110. },
  43111. },
  43112. [
  43113. {
  43114. name: "King Mugi",
  43115. height: math.unit(280, "feet"),
  43116. default: true
  43117. },
  43118. ]
  43119. ))
  43120. characterMakers.push(() => makeCharacter(
  43121. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  43122. {
  43123. front: {
  43124. height: math.unit(64, "meters"),
  43125. name: "Front",
  43126. image: {
  43127. source: "./media/characters/nova-fox/front.svg",
  43128. extra: 1310/1246,
  43129. bottom: 65/1375
  43130. }
  43131. },
  43132. },
  43133. [
  43134. {
  43135. name: "Macro",
  43136. height: math.unit(64, "meters"),
  43137. default: true
  43138. },
  43139. ]
  43140. ))
  43141. characterMakers.push(() => makeCharacter(
  43142. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  43143. {
  43144. front: {
  43145. height: math.unit(6 + 3/12, "feet"),
  43146. weight: math.unit(170, "lb"),
  43147. name: "Front",
  43148. image: {
  43149. source: "./media/characters/sam-bat/front.svg",
  43150. extra: 1601/1411,
  43151. bottom: 125/1726
  43152. }
  43153. },
  43154. back: {
  43155. height: math.unit(6 + 3/12, "feet"),
  43156. weight: math.unit(170, "lb"),
  43157. name: "Back",
  43158. image: {
  43159. source: "./media/characters/sam-bat/back.svg",
  43160. extra: 1577/1405,
  43161. bottom: 58/1635
  43162. }
  43163. },
  43164. },
  43165. [
  43166. {
  43167. name: "Normal",
  43168. height: math.unit(6 + 3/12, "feet"),
  43169. default: true
  43170. },
  43171. ]
  43172. ))
  43173. characterMakers.push(() => makeCharacter(
  43174. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  43175. {
  43176. front: {
  43177. height: math.unit(59, "feet"),
  43178. weight: math.unit(40000, "lb"),
  43179. name: "Front",
  43180. image: {
  43181. source: "./media/characters/inari/front.svg",
  43182. extra: 1884/1350,
  43183. bottom: 95/1979
  43184. }
  43185. },
  43186. },
  43187. [
  43188. {
  43189. name: "Gigantamax",
  43190. height: math.unit(59, "feet"),
  43191. default: true
  43192. },
  43193. ]
  43194. ))
  43195. characterMakers.push(() => makeCharacter(
  43196. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  43197. {
  43198. front: {
  43199. height: math.unit(5 + 8/12, "feet"),
  43200. name: "Front",
  43201. image: {
  43202. source: "./media/characters/elizabeth/front.svg",
  43203. extra: 1395/1298,
  43204. bottom: 54/1449
  43205. }
  43206. },
  43207. mouth: {
  43208. height: math.unit(1.97, "feet"),
  43209. name: "Mouth",
  43210. image: {
  43211. source: "./media/characters/elizabeth/mouth.svg"
  43212. }
  43213. },
  43214. foot: {
  43215. height: math.unit(1.17, "feet"),
  43216. name: "Foot",
  43217. image: {
  43218. source: "./media/characters/elizabeth/foot.svg"
  43219. }
  43220. },
  43221. },
  43222. [
  43223. {
  43224. name: "Normal",
  43225. height: math.unit(5 + 8/12, "feet"),
  43226. default: true
  43227. },
  43228. {
  43229. name: "Minimacro",
  43230. height: math.unit(18, "feet")
  43231. },
  43232. {
  43233. name: "Macro",
  43234. height: math.unit(180, "feet")
  43235. },
  43236. ]
  43237. ))
  43238. characterMakers.push(() => makeCharacter(
  43239. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  43240. {
  43241. front: {
  43242. height: math.unit(5 + 2/12, "feet"),
  43243. name: "Front",
  43244. image: {
  43245. source: "./media/characters/october-gossamer/front.svg",
  43246. extra: 505/454,
  43247. bottom: 7/512
  43248. }
  43249. },
  43250. back: {
  43251. height: math.unit(5 + 2/12, "feet"),
  43252. name: "Back",
  43253. image: {
  43254. source: "./media/characters/october-gossamer/back.svg",
  43255. extra: 501/454,
  43256. bottom: 11/512
  43257. }
  43258. },
  43259. },
  43260. [
  43261. {
  43262. name: "Normal",
  43263. height: math.unit(5 + 2/12, "feet"),
  43264. default: true
  43265. },
  43266. ]
  43267. ))
  43268. characterMakers.push(() => makeCharacter(
  43269. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  43270. {
  43271. front: {
  43272. height: math.unit(5, "feet"),
  43273. name: "Front",
  43274. image: {
  43275. source: "./media/characters/epiglottis/front.svg",
  43276. extra: 923/849,
  43277. bottom: 17/940
  43278. }
  43279. },
  43280. },
  43281. [
  43282. {
  43283. name: "Original Size",
  43284. height: math.unit(10, "inches")
  43285. },
  43286. {
  43287. name: "Human Size",
  43288. height: math.unit(5, "feet"),
  43289. default: true
  43290. },
  43291. {
  43292. name: "Big",
  43293. height: math.unit(25, "feet")
  43294. },
  43295. {
  43296. name: "Bigger",
  43297. height: math.unit(50, "feet")
  43298. },
  43299. {
  43300. name: "oh lawd",
  43301. height: math.unit(75, "feet")
  43302. },
  43303. ]
  43304. ))
  43305. characterMakers.push(() => makeCharacter(
  43306. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  43307. {
  43308. front: {
  43309. height: math.unit(2 + 4/12, "feet"),
  43310. weight: math.unit(60, "lb"),
  43311. name: "Front",
  43312. image: {
  43313. source: "./media/characters/lerm/front.svg",
  43314. extra: 796/790,
  43315. bottom: 79/875
  43316. }
  43317. },
  43318. },
  43319. [
  43320. {
  43321. name: "Normal",
  43322. height: math.unit(2 + 4/12, "feet"),
  43323. default: true
  43324. },
  43325. ]
  43326. ))
  43327. characterMakers.push(() => makeCharacter(
  43328. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  43329. {
  43330. front: {
  43331. height: math.unit(5.5, "feet"),
  43332. weight: math.unit(130, "lb"),
  43333. name: "Front",
  43334. image: {
  43335. source: "./media/characters/xena-nebadon/front.svg",
  43336. extra: 1828/1730,
  43337. bottom: 79/1907
  43338. }
  43339. },
  43340. },
  43341. [
  43342. {
  43343. name: "Tiny Puppy",
  43344. height: math.unit(3, "inches")
  43345. },
  43346. {
  43347. name: "Normal",
  43348. height: math.unit(5.5, "feet"),
  43349. default: true
  43350. },
  43351. {
  43352. name: "Lotta Lady",
  43353. height: math.unit(12, "feet")
  43354. },
  43355. {
  43356. name: "Pretty Big",
  43357. height: math.unit(100, "feet")
  43358. },
  43359. {
  43360. name: "Big",
  43361. height: math.unit(500, "feet")
  43362. },
  43363. {
  43364. name: "Skyscraper Toys",
  43365. height: math.unit(2500, "feet")
  43366. },
  43367. {
  43368. name: "Plane Catcher",
  43369. height: math.unit(8, "miles")
  43370. },
  43371. {
  43372. name: "Planet Toys",
  43373. height: math.unit(15, "earths")
  43374. },
  43375. {
  43376. name: "Stardust",
  43377. height: math.unit(0.25, "galaxies")
  43378. },
  43379. {
  43380. name: "Snacks",
  43381. height: math.unit(70, "universes")
  43382. },
  43383. ]
  43384. ))
  43385. characterMakers.push(() => makeCharacter(
  43386. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  43387. {
  43388. front: {
  43389. height: math.unit(1.6, "meters"),
  43390. weight: math.unit(60, "kg"),
  43391. name: "Front",
  43392. image: {
  43393. source: "./media/characters/bounty/front.svg",
  43394. extra: 1426/1308,
  43395. bottom: 15/1441
  43396. }
  43397. },
  43398. back: {
  43399. height: math.unit(1.6, "meters"),
  43400. weight: math.unit(60, "kg"),
  43401. name: "Back",
  43402. image: {
  43403. source: "./media/characters/bounty/back.svg",
  43404. extra: 1417/1307,
  43405. bottom: 8/1425
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Normal",
  43412. height: math.unit(1.6, "meters"),
  43413. default: true
  43414. },
  43415. {
  43416. name: "Macro",
  43417. height: math.unit(300, "meters")
  43418. },
  43419. ]
  43420. ))
  43421. characterMakers.push(() => makeCharacter(
  43422. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  43423. {
  43424. front: {
  43425. height: math.unit(2 + 8/12, "feet"),
  43426. weight: math.unit(15, "lb"),
  43427. name: "Front",
  43428. image: {
  43429. source: "./media/characters/mochi/front.svg",
  43430. extra: 1022/852,
  43431. bottom: 435/1457
  43432. }
  43433. },
  43434. back: {
  43435. height: math.unit(2 + 8/12, "feet"),
  43436. weight: math.unit(15, "lb"),
  43437. name: "Back",
  43438. image: {
  43439. source: "./media/characters/mochi/back.svg",
  43440. extra: 1335/1119,
  43441. bottom: 39/1374
  43442. }
  43443. },
  43444. bird: {
  43445. height: math.unit(2 + 8/12, "feet"),
  43446. weight: math.unit(15, "lb"),
  43447. name: "Bird",
  43448. image: {
  43449. source: "./media/characters/mochi/bird.svg",
  43450. extra: 1251/1113,
  43451. bottom: 178/1429
  43452. }
  43453. },
  43454. kaiju: {
  43455. height: math.unit(154, "feet"),
  43456. weight: math.unit(1e7, "lb"),
  43457. name: "Kaiju",
  43458. image: {
  43459. source: "./media/characters/mochi/kaiju.svg",
  43460. extra: 460/324,
  43461. bottom: 40/500
  43462. }
  43463. },
  43464. head: {
  43465. height: math.unit(1.21, "feet"),
  43466. name: "Head",
  43467. image: {
  43468. source: "./media/characters/mochi/head.svg"
  43469. }
  43470. },
  43471. alternateTail: {
  43472. height: math.unit(2 + 8/12, "feet"),
  43473. weight: math.unit(45, "lb"),
  43474. name: "Alternate Tail",
  43475. image: {
  43476. source: "./media/characters/mochi/alternate-tail.svg",
  43477. extra: 139/76,
  43478. bottom: 45/184
  43479. }
  43480. },
  43481. },
  43482. [
  43483. {
  43484. name: "Micro",
  43485. height: math.unit(2, "inches")
  43486. },
  43487. {
  43488. name: "Normal",
  43489. height: math.unit(2 + 8/12, "feet"),
  43490. default: true
  43491. },
  43492. {
  43493. name: "Macro",
  43494. height: math.unit(106, "feet")
  43495. },
  43496. ]
  43497. ))
  43498. characterMakers.push(() => makeCharacter(
  43499. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  43500. {
  43501. front: {
  43502. height: math.unit(5.67, "feet"),
  43503. weight: math.unit(135, "lb"),
  43504. name: "Front",
  43505. image: {
  43506. source: "./media/characters/sarel/front.svg",
  43507. extra: 865/788,
  43508. bottom: 97/962
  43509. }
  43510. },
  43511. back: {
  43512. height: math.unit(5.67, "feet"),
  43513. weight: math.unit(135, "lb"),
  43514. name: "Back",
  43515. image: {
  43516. source: "./media/characters/sarel/back.svg",
  43517. extra: 857/777,
  43518. bottom: 32/889
  43519. }
  43520. },
  43521. chozoan: {
  43522. height: math.unit(5.67, "feet"),
  43523. weight: math.unit(135, "lb"),
  43524. name: "Chozoan",
  43525. image: {
  43526. source: "./media/characters/sarel/chozoan.svg",
  43527. extra: 865/788,
  43528. bottom: 97/962
  43529. }
  43530. },
  43531. current: {
  43532. height: math.unit(5.67, "feet"),
  43533. weight: math.unit(135, "lb"),
  43534. name: "Current",
  43535. image: {
  43536. source: "./media/characters/sarel/current.svg",
  43537. extra: 865/788,
  43538. bottom: 97/962
  43539. }
  43540. },
  43541. head: {
  43542. height: math.unit(1.77, "feet"),
  43543. name: "Head",
  43544. image: {
  43545. source: "./media/characters/sarel/head.svg"
  43546. }
  43547. },
  43548. claws: {
  43549. height: math.unit(1.8, "feet"),
  43550. name: "Claws",
  43551. image: {
  43552. source: "./media/characters/sarel/claws.svg"
  43553. }
  43554. },
  43555. clawsAlt: {
  43556. height: math.unit(1.8, "feet"),
  43557. name: "Claws-alt",
  43558. image: {
  43559. source: "./media/characters/sarel/claws-alt.svg"
  43560. }
  43561. },
  43562. },
  43563. [
  43564. {
  43565. name: "Normal",
  43566. height: math.unit(5.67, "feet"),
  43567. default: true
  43568. },
  43569. ]
  43570. ))
  43571. characterMakers.push(() => makeCharacter(
  43572. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  43573. {
  43574. front: {
  43575. height: math.unit(5500, "feet"),
  43576. name: "Front",
  43577. image: {
  43578. source: "./media/characters/alyonia/front.svg",
  43579. extra: 1200/1135,
  43580. bottom: 29/1229
  43581. }
  43582. },
  43583. back: {
  43584. height: math.unit(5500, "feet"),
  43585. name: "Back",
  43586. image: {
  43587. source: "./media/characters/alyonia/back.svg",
  43588. extra: 1205/1138,
  43589. bottom: 10/1215
  43590. }
  43591. },
  43592. },
  43593. [
  43594. {
  43595. name: "Small",
  43596. height: math.unit(10, "feet")
  43597. },
  43598. {
  43599. name: "Macro",
  43600. height: math.unit(500, "feet")
  43601. },
  43602. {
  43603. name: "Mega Macro",
  43604. height: math.unit(5500, "feet"),
  43605. default: true
  43606. },
  43607. {
  43608. name: "Mega Macro+",
  43609. height: math.unit(500000, "feet")
  43610. },
  43611. {
  43612. name: "Giga Macro",
  43613. height: math.unit(3000, "miles")
  43614. },
  43615. {
  43616. name: "Tera Macro",
  43617. height: math.unit(2.8e6, "miles")
  43618. },
  43619. {
  43620. name: "Galactic",
  43621. height: math.unit(120000, "lightyears")
  43622. },
  43623. ]
  43624. ))
  43625. characterMakers.push(() => makeCharacter(
  43626. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  43627. {
  43628. werewolf: {
  43629. height: math.unit(8, "feet"),
  43630. weight: math.unit(425, "lb"),
  43631. name: "Werewolf",
  43632. image: {
  43633. source: "./media/characters/autumn/werewolf.svg",
  43634. extra: 2154/2031,
  43635. bottom: 160/2314
  43636. }
  43637. },
  43638. human: {
  43639. height: math.unit(5 + 8/12, "feet"),
  43640. weight: math.unit(150, "lb"),
  43641. name: "Human",
  43642. image: {
  43643. source: "./media/characters/autumn/human.svg",
  43644. extra: 1200/1149,
  43645. bottom: 30/1230
  43646. }
  43647. },
  43648. },
  43649. [
  43650. {
  43651. name: "Normal",
  43652. height: math.unit(8, "feet"),
  43653. default: true
  43654. },
  43655. ]
  43656. ))
  43657. characterMakers.push(() => makeCharacter(
  43658. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  43659. {
  43660. front: {
  43661. height: math.unit(8 + 5/12, "feet"),
  43662. weight: math.unit(825, "lb"),
  43663. name: "Front",
  43664. image: {
  43665. source: "./media/characters/cobalt-charizard/front.svg",
  43666. extra: 1268/1155,
  43667. bottom: 122/1390
  43668. }
  43669. },
  43670. side: {
  43671. height: math.unit(8 + 5/12, "feet"),
  43672. weight: math.unit(825, "lb"),
  43673. name: "Side",
  43674. image: {
  43675. source: "./media/characters/cobalt-charizard/side.svg",
  43676. extra: 1348/1257,
  43677. bottom: 58/1406
  43678. }
  43679. },
  43680. gMax: {
  43681. height: math.unit(134 + 11/12, "feet"),
  43682. name: "G-Max",
  43683. image: {
  43684. source: "./media/characters/cobalt-charizard/g-max.svg",
  43685. extra: 1835/1541,
  43686. bottom: 151/1986
  43687. }
  43688. },
  43689. },
  43690. [
  43691. {
  43692. name: "Normal",
  43693. height: math.unit(8 + 5/12, "feet"),
  43694. default: true
  43695. },
  43696. ]
  43697. ))
  43698. characterMakers.push(() => makeCharacter(
  43699. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  43700. {
  43701. front: {
  43702. height: math.unit(6 + 3/12, "feet"),
  43703. weight: math.unit(210, "lb"),
  43704. name: "Front",
  43705. image: {
  43706. source: "./media/characters/stella/front.svg",
  43707. extra: 3549/3335,
  43708. bottom: 51/3600
  43709. }
  43710. },
  43711. },
  43712. [
  43713. {
  43714. name: "Normal",
  43715. height: math.unit(6 + 3/12, "feet"),
  43716. default: true
  43717. },
  43718. ]
  43719. ))
  43720. characterMakers.push(() => makeCharacter(
  43721. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  43722. {
  43723. front: {
  43724. height: math.unit(5, "feet"),
  43725. weight: math.unit(90, "lb"),
  43726. name: "Front",
  43727. image: {
  43728. source: "./media/characters/riley-bishop/front.svg",
  43729. extra: 1450/1428,
  43730. bottom: 152/1602
  43731. }
  43732. },
  43733. },
  43734. [
  43735. {
  43736. name: "Normal",
  43737. height: math.unit(5, "feet"),
  43738. default: true
  43739. },
  43740. ]
  43741. ))
  43742. characterMakers.push(() => makeCharacter(
  43743. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  43744. {
  43745. side: {
  43746. height: math.unit(8 + 2/12, "feet"),
  43747. weight: math.unit(500, "kg"),
  43748. name: "Side",
  43749. image: {
  43750. source: "./media/characters/theo-arcanine/side.svg",
  43751. extra: 1342/1074,
  43752. bottom: 111/1453
  43753. }
  43754. },
  43755. },
  43756. [
  43757. {
  43758. name: "Normal",
  43759. height: math.unit(8 + 2/12, "feet"),
  43760. default: true
  43761. },
  43762. ]
  43763. ))
  43764. characterMakers.push(() => makeCharacter(
  43765. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  43766. {
  43767. front: {
  43768. height: math.unit(4, "feet"),
  43769. name: "Front",
  43770. image: {
  43771. source: "./media/characters/kali/front.svg",
  43772. extra: 1921/1357,
  43773. bottom: 70/1991
  43774. }
  43775. },
  43776. },
  43777. [
  43778. {
  43779. name: "Normal",
  43780. height: math.unit(4, "feet"),
  43781. default: true
  43782. },
  43783. {
  43784. name: "Macro",
  43785. height: math.unit(32, "meters")
  43786. },
  43787. {
  43788. name: "Macro+",
  43789. height: math.unit(150, "meters")
  43790. },
  43791. {
  43792. name: "Megamacro",
  43793. height: math.unit(7500, "meters")
  43794. },
  43795. {
  43796. name: "Megamacro+",
  43797. height: math.unit(80, "kilometers")
  43798. },
  43799. ]
  43800. ))
  43801. characterMakers.push(() => makeCharacter(
  43802. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  43803. {
  43804. side: {
  43805. height: math.unit(5 + 11/12, "feet"),
  43806. weight: math.unit(236, "lb"),
  43807. name: "Side",
  43808. image: {
  43809. source: "./media/characters/gapp/side.svg",
  43810. extra: 775/340,
  43811. bottom: 58/833
  43812. }
  43813. },
  43814. mouth: {
  43815. height: math.unit(2.98, "feet"),
  43816. name: "Mouth",
  43817. image: {
  43818. source: "./media/characters/gapp/mouth.svg"
  43819. }
  43820. },
  43821. },
  43822. [
  43823. {
  43824. name: "Normal",
  43825. height: math.unit(5 + 1/12, "feet"),
  43826. default: true
  43827. },
  43828. ]
  43829. ))
  43830. characterMakers.push(() => makeCharacter(
  43831. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  43832. {
  43833. front: {
  43834. height: math.unit(6, "feet"),
  43835. name: "Front",
  43836. image: {
  43837. source: "./media/characters/persephone/front.svg",
  43838. extra: 1895/1717,
  43839. bottom: 96/1991
  43840. }
  43841. },
  43842. back: {
  43843. height: math.unit(6, "feet"),
  43844. name: "Back",
  43845. image: {
  43846. source: "./media/characters/persephone/back.svg",
  43847. extra: 1868/1679,
  43848. bottom: 26/1894
  43849. }
  43850. },
  43851. casual: {
  43852. height: math.unit(6, "feet"),
  43853. name: "Casual",
  43854. image: {
  43855. source: "./media/characters/persephone/casual.svg",
  43856. extra: 1713/1541,
  43857. bottom: 76/1789
  43858. }
  43859. },
  43860. },
  43861. [
  43862. {
  43863. name: "Human Size",
  43864. height: math.unit(6, "feet")
  43865. },
  43866. {
  43867. name: "Big Steppy",
  43868. height: math.unit(600, "meters"),
  43869. default: true
  43870. },
  43871. {
  43872. name: "Galaxy Brain",
  43873. height: math.unit(1, "zettameter")
  43874. },
  43875. ]
  43876. ))
  43877. characterMakers.push(() => makeCharacter(
  43878. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  43879. {
  43880. front: {
  43881. height: math.unit(1.85, "meters"),
  43882. name: "Front",
  43883. image: {
  43884. source: "./media/characters/riley-foxthing/front.svg",
  43885. extra: 1495/1354,
  43886. bottom: 122/1617
  43887. }
  43888. },
  43889. frontAlt: {
  43890. height: math.unit(1.85, "meters"),
  43891. name: "Front (Alt)",
  43892. image: {
  43893. source: "./media/characters/riley-foxthing/front-alt.svg",
  43894. extra: 1572/1389,
  43895. bottom: 116/1688
  43896. }
  43897. },
  43898. },
  43899. [
  43900. {
  43901. name: "Normal Sized",
  43902. height: math.unit(1.85, "meters"),
  43903. default: true
  43904. },
  43905. {
  43906. name: "Quite Sizable",
  43907. height: math.unit(5, "meters")
  43908. },
  43909. {
  43910. name: "Rather Large",
  43911. height: math.unit(20, "meters")
  43912. },
  43913. {
  43914. name: "Macro",
  43915. height: math.unit(450, "meters")
  43916. },
  43917. {
  43918. name: "Giga",
  43919. height: math.unit(5, "km")
  43920. },
  43921. ]
  43922. ))
  43923. characterMakers.push(() => makeCharacter(
  43924. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  43925. {
  43926. front: {
  43927. height: math.unit(6, "feet"),
  43928. weight: math.unit(200, "lb"),
  43929. name: "Front",
  43930. image: {
  43931. source: "./media/characters/blizzard/front.svg",
  43932. extra: 1136/990,
  43933. bottom: 136/1272
  43934. }
  43935. },
  43936. back: {
  43937. height: math.unit(6, "feet"),
  43938. weight: math.unit(200, "lb"),
  43939. name: "Back",
  43940. image: {
  43941. source: "./media/characters/blizzard/back.svg",
  43942. extra: 1175/1034,
  43943. bottom: 97/1272
  43944. }
  43945. },
  43946. sitting: {
  43947. height: math.unit(3.725, "feet"),
  43948. weight: math.unit(200, "lb"),
  43949. name: "Sitting",
  43950. image: {
  43951. source: "./media/characters/blizzard/sitting.svg",
  43952. extra: 581/485,
  43953. bottom: 90/671
  43954. }
  43955. },
  43956. frontWizard: {
  43957. height: math.unit(7.9, "feet"),
  43958. weight: math.unit(200, "lb"),
  43959. name: "Front (Wizard)",
  43960. image: {
  43961. source: "./media/characters/blizzard/front-wizard.svg"
  43962. }
  43963. },
  43964. backWizard: {
  43965. height: math.unit(7.9, "feet"),
  43966. weight: math.unit(200, "lb"),
  43967. name: "Back (Wizard)",
  43968. image: {
  43969. source: "./media/characters/blizzard/back-wizard.svg"
  43970. }
  43971. },
  43972. frontNsfw: {
  43973. height: math.unit(6, "feet"),
  43974. weight: math.unit(200, "lb"),
  43975. name: "Front (NSFW)",
  43976. image: {
  43977. source: "./media/characters/blizzard/front-nsfw.svg",
  43978. extra: 1136/990,
  43979. bottom: 136/1272
  43980. }
  43981. },
  43982. backNsfw: {
  43983. height: math.unit(6, "feet"),
  43984. weight: math.unit(200, "lb"),
  43985. name: "Back (NSFW)",
  43986. image: {
  43987. source: "./media/characters/blizzard/back-nsfw.svg",
  43988. extra: 1175/1034,
  43989. bottom: 97/1272
  43990. }
  43991. },
  43992. sittingNsfw: {
  43993. height: math.unit(3.725, "feet"),
  43994. weight: math.unit(200, "lb"),
  43995. name: "Sitting (NSFW)",
  43996. image: {
  43997. source: "./media/characters/blizzard/sitting-nsfw.svg",
  43998. extra: 581/485,
  43999. bottom: 90/671
  44000. }
  44001. },
  44002. wizardFrontNsfw: {
  44003. height: math.unit(7.9, "feet"),
  44004. weight: math.unit(200, "lb"),
  44005. name: "Wizard (Front, NSFW)",
  44006. image: {
  44007. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  44008. }
  44009. },
  44010. },
  44011. [
  44012. {
  44013. name: "Normal",
  44014. height: math.unit(6, "feet"),
  44015. default: true
  44016. },
  44017. ]
  44018. ))
  44019. characterMakers.push(() => makeCharacter(
  44020. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  44021. {
  44022. front: {
  44023. height: math.unit(5 + 2/12, "feet"),
  44024. name: "Front",
  44025. image: {
  44026. source: "./media/characters/lumi/front.svg",
  44027. extra: 1328/1268,
  44028. bottom: 103/1431
  44029. }
  44030. },
  44031. back: {
  44032. height: math.unit(5 + 2/12, "feet"),
  44033. name: "Back",
  44034. image: {
  44035. source: "./media/characters/lumi/back.svg",
  44036. extra: 1381/1327,
  44037. bottom: 43/1424
  44038. }
  44039. },
  44040. },
  44041. [
  44042. {
  44043. name: "Normal",
  44044. height: math.unit(5 + 2/12, "feet"),
  44045. default: true
  44046. },
  44047. ]
  44048. ))
  44049. characterMakers.push(() => makeCharacter(
  44050. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  44051. {
  44052. front: {
  44053. height: math.unit(5 + 9/12, "feet"),
  44054. name: "Front",
  44055. image: {
  44056. source: "./media/characters/aliya-cotton/front.svg",
  44057. extra: 577/564,
  44058. bottom: 29/606
  44059. }
  44060. },
  44061. },
  44062. [
  44063. {
  44064. name: "Normal",
  44065. height: math.unit(5 + 9/12, "feet"),
  44066. default: true
  44067. },
  44068. ]
  44069. ))
  44070. characterMakers.push(() => makeCharacter(
  44071. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  44072. {
  44073. front: {
  44074. height: math.unit(2.7, "meters"),
  44075. weight: math.unit(25000, "lb"),
  44076. name: "Front",
  44077. image: {
  44078. source: "./media/characters/noah-luxray/front.svg",
  44079. extra: 1644/825,
  44080. bottom: 339/1983
  44081. }
  44082. },
  44083. side: {
  44084. height: math.unit(2.97, "meters"),
  44085. weight: math.unit(25000, "lb"),
  44086. name: "Side",
  44087. image: {
  44088. source: "./media/characters/noah-luxray/side.svg",
  44089. extra: 1319/650,
  44090. bottom: 163/1482
  44091. }
  44092. },
  44093. dick: {
  44094. height: math.unit(7.4, "feet"),
  44095. weight: math.unit(2500, "lb"),
  44096. name: "Dick",
  44097. image: {
  44098. source: "./media/characters/noah-luxray/dick.svg"
  44099. }
  44100. },
  44101. dickAlt: {
  44102. height: math.unit(10.83, "feet"),
  44103. weight: math.unit(2500, "lb"),
  44104. name: "Dick-alt",
  44105. image: {
  44106. source: "./media/characters/noah-luxray/dick-alt.svg"
  44107. }
  44108. },
  44109. },
  44110. [
  44111. {
  44112. name: "BIG",
  44113. height: math.unit(2.7, "meters"),
  44114. default: true
  44115. },
  44116. ]
  44117. ))
  44118. characterMakers.push(() => makeCharacter(
  44119. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  44120. {
  44121. standing: {
  44122. height: math.unit(183, "cm"),
  44123. weight: math.unit(68, "kg"),
  44124. name: "Standing",
  44125. image: {
  44126. source: "./media/characters/arion/standing.svg",
  44127. extra: 1869/1807,
  44128. bottom: 93/1962
  44129. }
  44130. },
  44131. reclining: {
  44132. height: math.unit(70.5, "cm"),
  44133. weight: math.unit(68, "lb"),
  44134. name: "Reclining",
  44135. image: {
  44136. source: "./media/characters/arion/reclining.svg",
  44137. extra: 937/870,
  44138. bottom: 63/1000
  44139. }
  44140. },
  44141. },
  44142. [
  44143. {
  44144. name: "Colossus Size, Low",
  44145. height: math.unit(33, "meters"),
  44146. default: true
  44147. },
  44148. {
  44149. name: "Colossus Size, Mid",
  44150. height: math.unit(52, "meters")
  44151. },
  44152. {
  44153. name: "Colossus Size, High",
  44154. height: math.unit(60, "meters")
  44155. },
  44156. {
  44157. name: "Titan Size, Low",
  44158. height: math.unit(91, "meters"),
  44159. },
  44160. {
  44161. name: "Titan Size, Mid",
  44162. height: math.unit(122, "meters")
  44163. },
  44164. {
  44165. name: "Titan Size, High",
  44166. height: math.unit(162, "meters")
  44167. },
  44168. ]
  44169. ))
  44170. characterMakers.push(() => makeCharacter(
  44171. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  44172. {
  44173. front: {
  44174. height: math.unit(53, "meters"),
  44175. name: "Front",
  44176. image: {
  44177. source: "./media/characters/stellar-marbey/front.svg",
  44178. extra: 1913/1805,
  44179. bottom: 92/2005
  44180. }
  44181. },
  44182. back: {
  44183. height: math.unit(53, "meters"),
  44184. name: "Back",
  44185. image: {
  44186. source: "./media/characters/stellar-marbey/back.svg",
  44187. extra: 1960/1851,
  44188. bottom: 28/1988
  44189. }
  44190. },
  44191. mouth: {
  44192. height: math.unit(3.5, "meters"),
  44193. name: "Mouth",
  44194. image: {
  44195. source: "./media/characters/stellar-marbey/mouth.svg"
  44196. }
  44197. },
  44198. },
  44199. [
  44200. {
  44201. name: "Macro",
  44202. height: math.unit(53, "meters"),
  44203. default: true
  44204. },
  44205. ]
  44206. ))
  44207. characterMakers.push(() => makeCharacter(
  44208. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  44209. {
  44210. front: {
  44211. height: math.unit(8 + 1/12, "feet"),
  44212. weight: math.unit(233, "lb"),
  44213. name: "Front",
  44214. image: {
  44215. source: "./media/characters/matsu/front.svg",
  44216. extra: 832/772,
  44217. bottom: 40/872
  44218. }
  44219. },
  44220. back: {
  44221. height: math.unit(8 + 1/12, "feet"),
  44222. weight: math.unit(233, "lb"),
  44223. name: "Back",
  44224. image: {
  44225. source: "./media/characters/matsu/back.svg",
  44226. extra: 839/780,
  44227. bottom: 47/886
  44228. }
  44229. },
  44230. },
  44231. [
  44232. {
  44233. name: "Normal",
  44234. height: math.unit(8 + 1/12, "feet"),
  44235. default: true
  44236. },
  44237. ]
  44238. ))
  44239. characterMakers.push(() => makeCharacter(
  44240. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  44241. {
  44242. front: {
  44243. height: math.unit(4, "feet"),
  44244. weight: math.unit(148, "lb"),
  44245. name: "Front",
  44246. image: {
  44247. source: "./media/characters/thiz/front.svg",
  44248. extra: 1913/1748,
  44249. bottom: 62/1975
  44250. }
  44251. },
  44252. },
  44253. [
  44254. {
  44255. name: "Normal",
  44256. height: math.unit(4, "feet"),
  44257. default: true
  44258. },
  44259. ]
  44260. ))
  44261. characterMakers.push(() => makeCharacter(
  44262. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  44263. {
  44264. front: {
  44265. height: math.unit(7 + 6/12, "feet"),
  44266. weight: math.unit(267, "lb"),
  44267. name: "Front",
  44268. image: {
  44269. source: "./media/characters/marcel/front.svg",
  44270. extra: 1221/1096,
  44271. bottom: 76/1297
  44272. }
  44273. },
  44274. },
  44275. [
  44276. {
  44277. name: "Normal",
  44278. height: math.unit(7 + 6/12, "feet"),
  44279. default: true
  44280. },
  44281. ]
  44282. ))
  44283. characterMakers.push(() => makeCharacter(
  44284. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  44285. {
  44286. side: {
  44287. height: math.unit(42, "meters"),
  44288. name: "Side",
  44289. image: {
  44290. source: "./media/characters/flake/side.svg",
  44291. extra: 1525/1306,
  44292. bottom: 209/1734
  44293. }
  44294. },
  44295. },
  44296. [
  44297. {
  44298. name: "Normal",
  44299. height: math.unit(42, "meters"),
  44300. default: true
  44301. },
  44302. ]
  44303. ))
  44304. characterMakers.push(() => makeCharacter(
  44305. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  44306. {
  44307. dressed: {
  44308. height: math.unit(6 + 4/12, "feet"),
  44309. weight: math.unit(520, "lb"),
  44310. name: "Dressed",
  44311. image: {
  44312. source: "./media/characters/someonne/dressed.svg",
  44313. extra: 1020/1010,
  44314. bottom: 178/1198
  44315. }
  44316. },
  44317. undressed: {
  44318. height: math.unit(6 + 4/12, "feet"),
  44319. weight: math.unit(520, "lb"),
  44320. name: "Undressed",
  44321. image: {
  44322. source: "./media/characters/someonne/undressed.svg",
  44323. extra: 1019/1014,
  44324. bottom: 169/1188
  44325. }
  44326. },
  44327. },
  44328. [
  44329. {
  44330. name: "Normal",
  44331. height: math.unit(6 + 4/12, "feet"),
  44332. default: true
  44333. },
  44334. ]
  44335. ))
  44336. characterMakers.push(() => makeCharacter(
  44337. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  44338. {
  44339. front: {
  44340. height: math.unit(3, "feet"),
  44341. weight: math.unit(30, "lb"),
  44342. name: "Front",
  44343. image: {
  44344. source: "./media/characters/till/front.svg",
  44345. extra: 892/823,
  44346. bottom: 55/947
  44347. }
  44348. },
  44349. },
  44350. [
  44351. {
  44352. name: "Normal",
  44353. height: math.unit(3, "feet"),
  44354. default: true
  44355. },
  44356. ]
  44357. ))
  44358. characterMakers.push(() => makeCharacter(
  44359. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  44360. {
  44361. front: {
  44362. height: math.unit(9 + 8/12, "feet"),
  44363. weight: math.unit(800, "lb"),
  44364. name: "Front",
  44365. image: {
  44366. source: "./media/characters/sydney-heki/front.svg",
  44367. extra: 1360/1300,
  44368. bottom: 22/1382
  44369. }
  44370. },
  44371. back: {
  44372. height: math.unit(9 + 8/12, "feet"),
  44373. weight: math.unit(800, "lb"),
  44374. name: "Back",
  44375. image: {
  44376. source: "./media/characters/sydney-heki/back.svg",
  44377. extra: 1356/1293,
  44378. bottom: 12/1368
  44379. }
  44380. },
  44381. frontDressed: {
  44382. height: math.unit(9 + 8/12, "feet"),
  44383. weight: math.unit(800, "lb"),
  44384. name: "Front-dressed",
  44385. image: {
  44386. source: "./media/characters/sydney-heki/front-dressed.svg",
  44387. extra: 1360/1300,
  44388. bottom: 22/1382
  44389. }
  44390. },
  44391. },
  44392. [
  44393. {
  44394. name: "Normal",
  44395. height: math.unit(9 + 8/12, "feet"),
  44396. default: true
  44397. },
  44398. {
  44399. name: "Macro",
  44400. height: math.unit(500, "feet")
  44401. },
  44402. {
  44403. name: "Megamacro",
  44404. height: math.unit(3.6, "miles")
  44405. },
  44406. ]
  44407. ))
  44408. characterMakers.push(() => makeCharacter(
  44409. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  44410. {
  44411. front: {
  44412. height: math.unit(200, "cm"),
  44413. weight: math.unit(250, "lb"),
  44414. name: "Front",
  44415. image: {
  44416. source: "./media/characters/fowler-karlsson/front.svg",
  44417. extra: 897/845,
  44418. bottom: 123/1020
  44419. }
  44420. },
  44421. back: {
  44422. height: math.unit(200, "cm"),
  44423. weight: math.unit(250, "lb"),
  44424. name: "Back",
  44425. image: {
  44426. source: "./media/characters/fowler-karlsson/back.svg",
  44427. extra: 999/944,
  44428. bottom: 26/1025
  44429. }
  44430. },
  44431. dick: {
  44432. height: math.unit(1.92, "feet"),
  44433. weight: math.unit(150, "lb"),
  44434. name: "Dick",
  44435. image: {
  44436. source: "./media/characters/fowler-karlsson/dick.svg"
  44437. }
  44438. },
  44439. },
  44440. [
  44441. {
  44442. name: "Normal",
  44443. height: math.unit(200, "cm"),
  44444. default: true
  44445. },
  44446. {
  44447. name: "Smaller Macro",
  44448. height: math.unit(90, "m")
  44449. },
  44450. {
  44451. name: "Macro",
  44452. height: math.unit(150, "m")
  44453. },
  44454. {
  44455. name: "Bigger Macro",
  44456. height: math.unit(300, "m")
  44457. },
  44458. ]
  44459. ))
  44460. characterMakers.push(() => makeCharacter(
  44461. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  44462. {
  44463. side: {
  44464. height: math.unit(8 + 2/12, "feet"),
  44465. weight: math.unit(1, "tonne"),
  44466. name: "Side",
  44467. image: {
  44468. source: "./media/characters/rylide/side.svg",
  44469. extra: 1318/1034,
  44470. bottom: 106/1424
  44471. }
  44472. },
  44473. sitting: {
  44474. height: math.unit(303, "cm"),
  44475. weight: math.unit(1, "tonne"),
  44476. name: "Sitting",
  44477. image: {
  44478. source: "./media/characters/rylide/sitting.svg",
  44479. extra: 1303/1103,
  44480. bottom: 36/1339
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Normal",
  44487. height: math.unit(8 + 2/12, "feet"),
  44488. default: true
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  44494. {
  44495. front: {
  44496. height: math.unit(5 + 10/12, "feet"),
  44497. weight: math.unit(160, "lb"),
  44498. name: "Front",
  44499. image: {
  44500. source: "./media/characters/pudask/front.svg",
  44501. extra: 1616/1590,
  44502. bottom: 161/1777
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Ferret Height",
  44509. height: math.unit(2 + 5/12, "feet")
  44510. },
  44511. {
  44512. name: "Canon Height",
  44513. height: math.unit(5 + 10/12, "feet"),
  44514. default: true
  44515. },
  44516. ]
  44517. ))
  44518. characterMakers.push(() => makeCharacter(
  44519. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  44520. {
  44521. front: {
  44522. height: math.unit(3 + 6/12, "feet"),
  44523. weight: math.unit(60, "lb"),
  44524. name: "Front",
  44525. image: {
  44526. source: "./media/characters/ramita/front.svg",
  44527. extra: 1402/1232,
  44528. bottom: 62/1464
  44529. }
  44530. },
  44531. dressed: {
  44532. height: math.unit(3 + 6/12, "feet"),
  44533. weight: math.unit(60, "lb"),
  44534. name: "Dressed",
  44535. image: {
  44536. source: "./media/characters/ramita/dressed.svg",
  44537. extra: 1534/1249,
  44538. bottom: 50/1584
  44539. }
  44540. },
  44541. },
  44542. [
  44543. {
  44544. name: "Normal",
  44545. height: math.unit(3 + 6/12, "feet"),
  44546. default: true
  44547. },
  44548. ]
  44549. ))
  44550. characterMakers.push(() => makeCharacter(
  44551. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  44552. {
  44553. front: {
  44554. height: math.unit(8, "feet"),
  44555. name: "Front",
  44556. image: {
  44557. source: "./media/characters/ark/front.svg",
  44558. extra: 772/693,
  44559. bottom: 45/817
  44560. }
  44561. },
  44562. },
  44563. [
  44564. {
  44565. name: "Normal",
  44566. height: math.unit(8, "feet"),
  44567. default: true
  44568. },
  44569. ]
  44570. ))
  44571. characterMakers.push(() => makeCharacter(
  44572. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  44573. {
  44574. front: {
  44575. height: math.unit(6, "feet"),
  44576. weight: math.unit(250, "lb"),
  44577. volume: math.unit(5/8, "gallons"),
  44578. name: "Front",
  44579. image: {
  44580. source: "./media/characters/ludwig-horn/front.svg",
  44581. extra: 1782/1635,
  44582. bottom: 96/1878
  44583. }
  44584. },
  44585. back: {
  44586. height: math.unit(6, "feet"),
  44587. weight: math.unit(250, "lb"),
  44588. volume: math.unit(5/8, "gallons"),
  44589. name: "Back",
  44590. image: {
  44591. source: "./media/characters/ludwig-horn/back.svg",
  44592. extra: 1874/1729,
  44593. bottom: 27/1901
  44594. }
  44595. },
  44596. dick: {
  44597. height: math.unit(1.05, "feet"),
  44598. weight: math.unit(15, "lb"),
  44599. volume: math.unit(5/8, "gallons"),
  44600. name: "Dick",
  44601. image: {
  44602. source: "./media/characters/ludwig-horn/dick.svg"
  44603. }
  44604. },
  44605. },
  44606. [
  44607. {
  44608. name: "Small",
  44609. height: math.unit(6, "feet")
  44610. },
  44611. {
  44612. name: "Typical",
  44613. height: math.unit(12, "feet"),
  44614. default: true
  44615. },
  44616. {
  44617. name: "Building",
  44618. height: math.unit(80, "feet")
  44619. },
  44620. {
  44621. name: "Town",
  44622. height: math.unit(800, "feet")
  44623. },
  44624. {
  44625. name: "Kingdom",
  44626. height: math.unit(80000, "feet")
  44627. },
  44628. {
  44629. name: "Planet",
  44630. height: math.unit(8000000, "feet")
  44631. },
  44632. {
  44633. name: "Universe",
  44634. height: math.unit(8000000000, "feet")
  44635. },
  44636. {
  44637. name: "Transcended",
  44638. height: math.unit(8e27, "feet")
  44639. },
  44640. ]
  44641. ))
  44642. characterMakers.push(() => makeCharacter(
  44643. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  44644. {
  44645. front: {
  44646. height: math.unit(5, "feet"),
  44647. weight: math.unit(50, "kg"),
  44648. name: "Front",
  44649. image: {
  44650. source: "./media/characters/biot-avery/front.svg",
  44651. extra: 1295/1232,
  44652. bottom: 86/1381
  44653. }
  44654. },
  44655. },
  44656. [
  44657. {
  44658. name: "Normal",
  44659. height: math.unit(5, "feet"),
  44660. default: true
  44661. },
  44662. ]
  44663. ))
  44664. characterMakers.push(() => makeCharacter(
  44665. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  44666. {
  44667. front: {
  44668. height: math.unit(6, "feet"),
  44669. name: "Front",
  44670. image: {
  44671. source: "./media/characters/kitsune-kiro/front.svg",
  44672. extra: 1270/1158,
  44673. bottom: 42/1312
  44674. }
  44675. },
  44676. frontAlt: {
  44677. height: math.unit(6, "feet"),
  44678. name: "Front-alt",
  44679. image: {
  44680. source: "./media/characters/kitsune-kiro/front-alt.svg",
  44681. extra: 1130/1081,
  44682. bottom: 36/1166
  44683. }
  44684. },
  44685. },
  44686. [
  44687. {
  44688. name: "Smol",
  44689. height: math.unit(3, "feet")
  44690. },
  44691. {
  44692. name: "Normal",
  44693. height: math.unit(6, "feet"),
  44694. default: true
  44695. },
  44696. ]
  44697. ))
  44698. characterMakers.push(() => makeCharacter(
  44699. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  44700. {
  44701. front: {
  44702. height: math.unit(6, "feet"),
  44703. weight: math.unit(125, "lb"),
  44704. name: "Front",
  44705. image: {
  44706. source: "./media/characters/jack-thatcher/front.svg",
  44707. extra: 1474/1370,
  44708. bottom: 26/1500
  44709. }
  44710. },
  44711. back: {
  44712. height: math.unit(6, "feet"),
  44713. weight: math.unit(125, "lb"),
  44714. name: "Back",
  44715. image: {
  44716. source: "./media/characters/jack-thatcher/back.svg",
  44717. extra: 1489/1384,
  44718. bottom: 18/1507
  44719. }
  44720. },
  44721. },
  44722. [
  44723. {
  44724. name: "Normal",
  44725. height: math.unit(6, "feet"),
  44726. default: true
  44727. },
  44728. {
  44729. name: "Macro",
  44730. height: math.unit(75, "feet")
  44731. },
  44732. {
  44733. name: "Macro-er",
  44734. height: math.unit(250, "feet")
  44735. },
  44736. ]
  44737. ))
  44738. characterMakers.push(() => makeCharacter(
  44739. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  44740. {
  44741. front: {
  44742. height: math.unit(7, "feet"),
  44743. weight: math.unit(110, "kg"),
  44744. name: "Front",
  44745. image: {
  44746. source: "./media/characters/max-hyper/front.svg",
  44747. extra: 1969/1881,
  44748. bottom: 49/2018
  44749. }
  44750. },
  44751. },
  44752. [
  44753. {
  44754. name: "Normal",
  44755. height: math.unit(7, "feet"),
  44756. default: true
  44757. },
  44758. ]
  44759. ))
  44760. characterMakers.push(() => makeCharacter(
  44761. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  44762. {
  44763. front: {
  44764. height: math.unit(5 + 5/12, "feet"),
  44765. weight: math.unit(160, "lb"),
  44766. name: "Front",
  44767. image: {
  44768. source: "./media/characters/spook/front.svg",
  44769. extra: 794/791,
  44770. bottom: 54/848
  44771. }
  44772. },
  44773. back: {
  44774. height: math.unit(5 + 5/12, "feet"),
  44775. weight: math.unit(160, "lb"),
  44776. name: "Back",
  44777. image: {
  44778. source: "./media/characters/spook/back.svg",
  44779. extra: 812/798,
  44780. bottom: 32/844
  44781. }
  44782. },
  44783. },
  44784. [
  44785. {
  44786. name: "Normal",
  44787. height: math.unit(5 + 5/12, "feet"),
  44788. default: true
  44789. },
  44790. ]
  44791. ))
  44792. characterMakers.push(() => makeCharacter(
  44793. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  44794. {
  44795. front: {
  44796. height: math.unit(18, "feet"),
  44797. name: "Front",
  44798. image: {
  44799. source: "./media/characters/xeaduulix/front.svg",
  44800. extra: 1380/1166,
  44801. bottom: 110/1490
  44802. }
  44803. },
  44804. back: {
  44805. height: math.unit(18, "feet"),
  44806. name: "Back",
  44807. image: {
  44808. source: "./media/characters/xeaduulix/back.svg",
  44809. extra: 1592/1170,
  44810. bottom: 128/1720
  44811. }
  44812. },
  44813. frontNsfw: {
  44814. height: math.unit(18, "feet"),
  44815. name: "Front (NSFW)",
  44816. image: {
  44817. source: "./media/characters/xeaduulix/front-nsfw.svg",
  44818. extra: 1380/1166,
  44819. bottom: 110/1490
  44820. }
  44821. },
  44822. backNsfw: {
  44823. height: math.unit(18, "feet"),
  44824. name: "Back (NSFW)",
  44825. image: {
  44826. source: "./media/characters/xeaduulix/back-nsfw.svg",
  44827. extra: 1592/1170,
  44828. bottom: 128/1720
  44829. }
  44830. },
  44831. },
  44832. [
  44833. {
  44834. name: "Normal",
  44835. height: math.unit(18, "feet"),
  44836. default: true
  44837. },
  44838. ]
  44839. ))
  44840. characterMakers.push(() => makeCharacter(
  44841. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  44842. {
  44843. spreadWings: {
  44844. height: math.unit(20, "feet"),
  44845. name: "Spread Wings",
  44846. image: {
  44847. source: "./media/characters/fledge/spread-wings.svg",
  44848. extra: 693/635,
  44849. bottom: 26/719
  44850. }
  44851. },
  44852. front: {
  44853. height: math.unit(20, "feet"),
  44854. name: "Front",
  44855. image: {
  44856. source: "./media/characters/fledge/front.svg",
  44857. extra: 684/637,
  44858. bottom: 18/702
  44859. }
  44860. },
  44861. frontAlt: {
  44862. height: math.unit(20, "feet"),
  44863. name: "Front (Alt)",
  44864. image: {
  44865. source: "./media/characters/fledge/front-alt.svg",
  44866. extra: 708/664,
  44867. bottom: 13/721
  44868. }
  44869. },
  44870. back: {
  44871. height: math.unit(20, "feet"),
  44872. name: "Back",
  44873. image: {
  44874. source: "./media/characters/fledge/back.svg",
  44875. extra: 718/634,
  44876. bottom: 22/740
  44877. }
  44878. },
  44879. head: {
  44880. height: math.unit(5.55, "feet"),
  44881. name: "Head",
  44882. image: {
  44883. source: "./media/characters/fledge/head.svg"
  44884. }
  44885. },
  44886. headAlt: {
  44887. height: math.unit(5.1, "feet"),
  44888. name: "Head (Alt)",
  44889. image: {
  44890. source: "./media/characters/fledge/head-alt.svg"
  44891. }
  44892. },
  44893. },
  44894. [
  44895. {
  44896. name: "Small",
  44897. height: math.unit(6 + 2/12, "feet")
  44898. },
  44899. {
  44900. name: "Big",
  44901. height: math.unit(20, "feet"),
  44902. default: true
  44903. },
  44904. {
  44905. name: "Giant",
  44906. height: math.unit(100, "feet")
  44907. },
  44908. {
  44909. name: "Macro",
  44910. height: math.unit(200, "feet")
  44911. },
  44912. ]
  44913. ))
  44914. characterMakers.push(() => makeCharacter(
  44915. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  44916. {
  44917. front: {
  44918. height: math.unit(1, "meter"),
  44919. name: "Front",
  44920. image: {
  44921. source: "./media/characters/atlas-morenai/front.svg",
  44922. extra: 1275/1043,
  44923. bottom: 19/1294
  44924. }
  44925. },
  44926. back: {
  44927. height: math.unit(1, "meter"),
  44928. name: "Back",
  44929. image: {
  44930. source: "./media/characters/atlas-morenai/back.svg",
  44931. extra: 1141/1001,
  44932. bottom: 25/1166
  44933. }
  44934. },
  44935. },
  44936. [
  44937. {
  44938. name: "Normal",
  44939. height: math.unit(1, "meter"),
  44940. default: true
  44941. },
  44942. {
  44943. name: "Magic-Infused",
  44944. height: math.unit(5, "meters")
  44945. },
  44946. ]
  44947. ))
  44948. characterMakers.push(() => makeCharacter(
  44949. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  44950. {
  44951. front: {
  44952. height: math.unit(5, "meters"),
  44953. name: "Front",
  44954. image: {
  44955. source: "./media/characters/cintia/front.svg",
  44956. extra: 1312/1228,
  44957. bottom: 38/1350
  44958. }
  44959. },
  44960. back: {
  44961. height: math.unit(5, "meters"),
  44962. name: "Back",
  44963. image: {
  44964. source: "./media/characters/cintia/back.svg",
  44965. extra: 1260/1166,
  44966. bottom: 98/1358
  44967. }
  44968. },
  44969. frontDick: {
  44970. height: math.unit(5, "meters"),
  44971. name: "Front (Dick)",
  44972. image: {
  44973. source: "./media/characters/cintia/front-dick.svg",
  44974. extra: 1312/1228,
  44975. bottom: 38/1350
  44976. }
  44977. },
  44978. backDick: {
  44979. height: math.unit(5, "meters"),
  44980. name: "Back (Dick)",
  44981. image: {
  44982. source: "./media/characters/cintia/back-dick.svg",
  44983. extra: 1260/1166,
  44984. bottom: 98/1358
  44985. }
  44986. },
  44987. bust: {
  44988. height: math.unit(1.97, "meters"),
  44989. name: "Bust",
  44990. image: {
  44991. source: "./media/characters/cintia/bust.svg",
  44992. extra: 617/565,
  44993. bottom: 0/617
  44994. }
  44995. },
  44996. },
  44997. [
  44998. {
  44999. name: "Normal",
  45000. height: math.unit(5, "meters"),
  45001. default: true
  45002. },
  45003. ]
  45004. ))
  45005. characterMakers.push(() => makeCharacter(
  45006. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  45007. {
  45008. side: {
  45009. height: math.unit(100, "feet"),
  45010. name: "Side",
  45011. image: {
  45012. source: "./media/characters/denora/side.svg",
  45013. extra: 875/803,
  45014. bottom: 9/884
  45015. }
  45016. },
  45017. },
  45018. [
  45019. {
  45020. name: "Standard",
  45021. height: math.unit(100, "feet"),
  45022. default: true
  45023. },
  45024. {
  45025. name: "Grand",
  45026. height: math.unit(1000, "feet")
  45027. },
  45028. {
  45029. name: "Conquering",
  45030. height: math.unit(10000, "feet")
  45031. },
  45032. ]
  45033. ))
  45034. characterMakers.push(() => makeCharacter(
  45035. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  45036. {
  45037. dressed: {
  45038. height: math.unit(8 + 5/12, "feet"),
  45039. weight: math.unit(700, "lb"),
  45040. name: "Dressed",
  45041. image: {
  45042. source: "./media/characters/kiva/dressed.svg",
  45043. extra: 1102/1055,
  45044. bottom: 60/1162
  45045. }
  45046. },
  45047. nude: {
  45048. height: math.unit(8 + 5/12, "feet"),
  45049. weight: math.unit(700, "lb"),
  45050. name: "Nude",
  45051. image: {
  45052. source: "./media/characters/kiva/nude.svg",
  45053. extra: 1102/1055,
  45054. bottom: 60/1162
  45055. }
  45056. },
  45057. },
  45058. [
  45059. {
  45060. name: "Base Height",
  45061. height: math.unit(8 + 5/12, "feet"),
  45062. default: true
  45063. },
  45064. {
  45065. name: "Macro",
  45066. height: math.unit(100, "feet")
  45067. },
  45068. {
  45069. name: "Max",
  45070. height: math.unit(3280, "feet")
  45071. },
  45072. ]
  45073. ))
  45074. characterMakers.push(() => makeCharacter(
  45075. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  45076. {
  45077. front: {
  45078. height: math.unit(6 + 8/12, "feet"),
  45079. weight: math.unit(250, "lb"),
  45080. name: "Front",
  45081. image: {
  45082. source: "./media/characters/ztragon/front.svg",
  45083. extra: 1825/1684,
  45084. bottom: 98/1923
  45085. }
  45086. },
  45087. },
  45088. [
  45089. {
  45090. name: "Normal",
  45091. height: math.unit(6 + 8/12, "feet"),
  45092. default: true
  45093. },
  45094. {
  45095. name: "Macro",
  45096. height: math.unit(80, "feet")
  45097. },
  45098. ]
  45099. ))
  45100. characterMakers.push(() => makeCharacter(
  45101. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  45102. {
  45103. front: {
  45104. height: math.unit(10.4, "feet"),
  45105. weight: math.unit(2, "tons"),
  45106. name: "Front",
  45107. image: {
  45108. source: "./media/characters/yesenia/front.svg",
  45109. extra: 1479/1474,
  45110. bottom: 233/1712
  45111. }
  45112. },
  45113. },
  45114. [
  45115. {
  45116. name: "Normal",
  45117. height: math.unit(10.4, "feet"),
  45118. default: true
  45119. },
  45120. ]
  45121. ))
  45122. characterMakers.push(() => makeCharacter(
  45123. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  45124. {
  45125. normal: {
  45126. height: math.unit(6 + 1/12, "feet"),
  45127. weight: math.unit(180, "lb"),
  45128. name: "Normal",
  45129. image: {
  45130. source: "./media/characters/leanne-lycheborne/normal.svg",
  45131. extra: 1748/1660,
  45132. bottom: 98/1846
  45133. }
  45134. },
  45135. were: {
  45136. height: math.unit(12, "feet"),
  45137. weight: math.unit(1600, "lb"),
  45138. name: "Were",
  45139. image: {
  45140. source: "./media/characters/leanne-lycheborne/were.svg",
  45141. extra: 1485/1432,
  45142. bottom: 66/1551
  45143. }
  45144. },
  45145. },
  45146. [
  45147. {
  45148. name: "Normal",
  45149. height: math.unit(6 + 1/12, "feet"),
  45150. default: true
  45151. },
  45152. ]
  45153. ))
  45154. characterMakers.push(() => makeCharacter(
  45155. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  45156. {
  45157. side: {
  45158. height: math.unit(13, "feet"),
  45159. name: "Side",
  45160. image: {
  45161. source: "./media/characters/kira-tyler/side.svg",
  45162. extra: 693/393,
  45163. bottom: 58/751
  45164. }
  45165. },
  45166. },
  45167. [
  45168. {
  45169. name: "Normal",
  45170. height: math.unit(13, "feet"),
  45171. default: true
  45172. },
  45173. ]
  45174. ))
  45175. characterMakers.push(() => makeCharacter(
  45176. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  45177. {
  45178. front: {
  45179. height: math.unit(10.3, "feet"),
  45180. weight: math.unit(150, "lb"),
  45181. name: "Front",
  45182. image: {
  45183. source: "./media/characters/blaze/front.svg",
  45184. extra: 1378/1286,
  45185. bottom: 172/1550
  45186. }
  45187. },
  45188. },
  45189. [
  45190. {
  45191. name: "Normal",
  45192. height: math.unit(10.3, "feet"),
  45193. default: true
  45194. },
  45195. ]
  45196. ))
  45197. characterMakers.push(() => makeCharacter(
  45198. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  45199. {
  45200. side: {
  45201. height: math.unit(2, "meters"),
  45202. weight: math.unit(400, "kg"),
  45203. name: "Side",
  45204. image: {
  45205. source: "./media/characters/anu/side.svg",
  45206. extra: 506/394,
  45207. bottom: 18/524
  45208. }
  45209. },
  45210. },
  45211. [
  45212. {
  45213. name: "Humanoid",
  45214. height: math.unit(2, "meters")
  45215. },
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(5, "meters"),
  45219. default: true
  45220. },
  45221. ]
  45222. ))
  45223. characterMakers.push(() => makeCharacter(
  45224. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  45225. {
  45226. front: {
  45227. height: math.unit(5 + 5/12, "feet"),
  45228. weight: math.unit(170, "lb"),
  45229. name: "Front",
  45230. image: {
  45231. source: "./media/characters/synx-the-lynx/front.svg",
  45232. extra: 1893/1745,
  45233. bottom: 17/1910
  45234. }
  45235. },
  45236. side: {
  45237. height: math.unit(5 + 5/12, "feet"),
  45238. weight: math.unit(170, "lb"),
  45239. name: "Side",
  45240. image: {
  45241. source: "./media/characters/synx-the-lynx/side.svg",
  45242. extra: 1884/1740,
  45243. bottom: 39/1923
  45244. }
  45245. },
  45246. back: {
  45247. height: math.unit(5 + 5/12, "feet"),
  45248. weight: math.unit(170, "lb"),
  45249. name: "Back",
  45250. image: {
  45251. source: "./media/characters/synx-the-lynx/back.svg",
  45252. extra: 1903/1755,
  45253. bottom: 14/1917
  45254. }
  45255. },
  45256. },
  45257. [
  45258. {
  45259. name: "Normal",
  45260. height: math.unit(5 + 5/12, "feet"),
  45261. default: true
  45262. },
  45263. ]
  45264. ))
  45265. characterMakers.push(() => makeCharacter(
  45266. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  45267. {
  45268. back: {
  45269. height: math.unit(15, "feet"),
  45270. name: "Back",
  45271. image: {
  45272. source: "./media/characters/nadezda-fex/back.svg",
  45273. extra: 1695/1481,
  45274. bottom: 25/1720
  45275. }
  45276. },
  45277. },
  45278. [
  45279. {
  45280. name: "Normal",
  45281. height: math.unit(15, "feet"),
  45282. default: true
  45283. },
  45284. {
  45285. name: "Macro",
  45286. height: math.unit(2.5, "miles")
  45287. },
  45288. {
  45289. name: "Goddess",
  45290. height: math.unit(2, "multiverses")
  45291. },
  45292. ]
  45293. ))
  45294. characterMakers.push(() => makeCharacter(
  45295. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  45296. {
  45297. front: {
  45298. height: math.unit(216, "cm"),
  45299. name: "Front",
  45300. image: {
  45301. source: "./media/characters/lev/front.svg",
  45302. extra: 1728/1670,
  45303. bottom: 82/1810
  45304. }
  45305. },
  45306. back: {
  45307. height: math.unit(216, "cm"),
  45308. name: "Back",
  45309. image: {
  45310. source: "./media/characters/lev/back.svg",
  45311. extra: 1738/1675,
  45312. bottom: 24/1762
  45313. }
  45314. },
  45315. dressed: {
  45316. height: math.unit(216, "cm"),
  45317. name: "Dressed",
  45318. image: {
  45319. source: "./media/characters/lev/dressed.svg",
  45320. extra: 1397/1351,
  45321. bottom: 73/1470
  45322. }
  45323. },
  45324. head: {
  45325. height: math.unit(0.51, "meter"),
  45326. name: "Head",
  45327. image: {
  45328. source: "./media/characters/lev/head.svg"
  45329. }
  45330. },
  45331. },
  45332. [
  45333. {
  45334. name: "Normal",
  45335. height: math.unit(216, "cm"),
  45336. default: true
  45337. },
  45338. {
  45339. name: "Relatively Macro",
  45340. height: math.unit(80, "meters")
  45341. },
  45342. {
  45343. name: "Megamacro",
  45344. height: math.unit(21600, "meters")
  45345. },
  45346. {
  45347. name: "Megamacro+",
  45348. height: math.unit(64800, "meters")
  45349. },
  45350. ]
  45351. ))
  45352. characterMakers.push(() => makeCharacter(
  45353. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  45354. {
  45355. front: {
  45356. height: math.unit(2, "meters"),
  45357. weight: math.unit(80, "kg"),
  45358. name: "Front",
  45359. image: {
  45360. source: "./media/characters/moka/front.svg",
  45361. extra: 1337/1255,
  45362. bottom: 58/1395
  45363. }
  45364. },
  45365. },
  45366. [
  45367. {
  45368. name: "Micro",
  45369. height: math.unit(15, "cm")
  45370. },
  45371. {
  45372. name: "Normal",
  45373. height: math.unit(2, "meters"),
  45374. default: true
  45375. },
  45376. {
  45377. name: "Macro",
  45378. height: math.unit(20, "meters"),
  45379. },
  45380. ]
  45381. ))
  45382. characterMakers.push(() => makeCharacter(
  45383. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  45384. {
  45385. front: {
  45386. height: math.unit(9, "feet"),
  45387. weight: math.unit(240, "lb"),
  45388. name: "Front",
  45389. image: {
  45390. source: "./media/characters/kuzco/front.svg",
  45391. extra: 1593/1487,
  45392. bottom: 32/1625
  45393. }
  45394. },
  45395. side: {
  45396. height: math.unit(9, "feet"),
  45397. weight: math.unit(240, "lb"),
  45398. name: "Side",
  45399. image: {
  45400. source: "./media/characters/kuzco/side.svg",
  45401. extra: 1575/1485,
  45402. bottom: 30/1605
  45403. }
  45404. },
  45405. back: {
  45406. height: math.unit(9, "feet"),
  45407. weight: math.unit(240, "lb"),
  45408. name: "Back",
  45409. image: {
  45410. source: "./media/characters/kuzco/back.svg",
  45411. extra: 1603/1514,
  45412. bottom: 14/1617
  45413. }
  45414. },
  45415. },
  45416. [
  45417. {
  45418. name: "Normal",
  45419. height: math.unit(9, "feet"),
  45420. default: true
  45421. },
  45422. ]
  45423. ))
  45424. characterMakers.push(() => makeCharacter(
  45425. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  45426. {
  45427. side: {
  45428. height: math.unit(2, "meters"),
  45429. weight: math.unit(300, "kg"),
  45430. name: "Side",
  45431. image: {
  45432. source: "./media/characters/ceruleus/side.svg",
  45433. extra: 1068/974,
  45434. bottom: 126/1194
  45435. }
  45436. },
  45437. },
  45438. [
  45439. {
  45440. name: "Normal",
  45441. height: math.unit(16, "meters"),
  45442. default: true
  45443. },
  45444. ]
  45445. ))
  45446. characterMakers.push(() => makeCharacter(
  45447. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  45448. {
  45449. front: {
  45450. height: math.unit(9, "feet"),
  45451. weight: math.unit(500, "kg"),
  45452. name: "Front",
  45453. image: {
  45454. source: "./media/characters/acouya/front.svg",
  45455. extra: 1660/1473,
  45456. bottom: 28/1688
  45457. }
  45458. },
  45459. },
  45460. [
  45461. {
  45462. name: "Normal",
  45463. height: math.unit(9, "feet"),
  45464. default: true
  45465. },
  45466. ]
  45467. ))
  45468. characterMakers.push(() => makeCharacter(
  45469. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  45470. {
  45471. front: {
  45472. height: math.unit(5 + 6/12, "feet"),
  45473. weight: math.unit(195, "lb"),
  45474. name: "Front",
  45475. image: {
  45476. source: "./media/characters/vant/front.svg",
  45477. extra: 1396/1320,
  45478. bottom: 20/1416
  45479. }
  45480. },
  45481. back: {
  45482. height: math.unit(5 + 6/12, "feet"),
  45483. weight: math.unit(195, "lb"),
  45484. name: "Back",
  45485. image: {
  45486. source: "./media/characters/vant/back.svg",
  45487. extra: 1396/1320,
  45488. bottom: 20/1416
  45489. }
  45490. },
  45491. maw: {
  45492. height: math.unit(0.75, "feet"),
  45493. name: "Maw",
  45494. image: {
  45495. source: "./media/characters/vant/maw.svg"
  45496. }
  45497. },
  45498. paw: {
  45499. height: math.unit(1.07, "feet"),
  45500. name: "Paw",
  45501. image: {
  45502. source: "./media/characters/vant/paw.svg"
  45503. }
  45504. },
  45505. },
  45506. [
  45507. {
  45508. name: "Micro",
  45509. height: math.unit(0.25, "inches")
  45510. },
  45511. {
  45512. name: "Normal",
  45513. height: math.unit(5 + 6/12, "feet"),
  45514. default: true
  45515. },
  45516. {
  45517. name: "Macro",
  45518. height: math.unit(75, "feet")
  45519. },
  45520. ]
  45521. ))
  45522. characterMakers.push(() => makeCharacter(
  45523. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  45524. {
  45525. front: {
  45526. height: math.unit(30, "meters"),
  45527. weight: math.unit(363, "tons"),
  45528. name: "Front",
  45529. image: {
  45530. source: "./media/characters/ahra/front.svg",
  45531. extra: 1914/1814,
  45532. bottom: 46/1960
  45533. }
  45534. },
  45535. },
  45536. [
  45537. {
  45538. name: "Macro",
  45539. height: math.unit(30, "meters"),
  45540. default: true
  45541. },
  45542. ]
  45543. ))
  45544. characterMakers.push(() => makeCharacter(
  45545. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  45546. {
  45547. undressed: {
  45548. height: math.unit(2, "m"),
  45549. weight: math.unit(250, "kg"),
  45550. name: "Undressed",
  45551. image: {
  45552. source: "./media/characters/coriander/undressed.svg",
  45553. extra: 1757/1606,
  45554. bottom: 107/1864
  45555. }
  45556. },
  45557. dressed: {
  45558. height: math.unit(2, "m"),
  45559. weight: math.unit(250, "kg"),
  45560. name: "Dressed",
  45561. image: {
  45562. source: "./media/characters/coriander/dressed.svg",
  45563. extra: 1757/1606,
  45564. bottom: 107/1864
  45565. }
  45566. },
  45567. },
  45568. [
  45569. {
  45570. name: "Normal",
  45571. height: math.unit(4, "meters"),
  45572. default: true
  45573. },
  45574. {
  45575. name: "XL",
  45576. height: math.unit(6, "meters")
  45577. },
  45578. {
  45579. name: "XXL",
  45580. height: math.unit(8, "meters")
  45581. },
  45582. ]
  45583. ))
  45584. characterMakers.push(() => makeCharacter(
  45585. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  45586. {
  45587. front: {
  45588. height: math.unit(6, "feet"),
  45589. name: "Front",
  45590. image: {
  45591. source: "./media/characters/syrinx/front.svg",
  45592. extra: 1557/1259,
  45593. bottom: 171/1728
  45594. }
  45595. },
  45596. },
  45597. [
  45598. {
  45599. name: "Normal",
  45600. height: math.unit(6 + 3/12, "feet"),
  45601. default: true
  45602. },
  45603. ]
  45604. ))
  45605. characterMakers.push(() => makeCharacter(
  45606. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  45607. {
  45608. front: {
  45609. height: math.unit(11 + 6/12, "feet"),
  45610. weight: math.unit(1.5, "tons"),
  45611. name: "Front",
  45612. image: {
  45613. source: "./media/characters/bor/front.svg",
  45614. extra: 1189/1109,
  45615. bottom: 170/1359
  45616. }
  45617. },
  45618. },
  45619. [
  45620. {
  45621. name: "Normal",
  45622. height: math.unit(11 + 6/12, "feet"),
  45623. default: true
  45624. },
  45625. {
  45626. name: "Macro",
  45627. height: math.unit(32 + 9/12, "feet")
  45628. },
  45629. ]
  45630. ))
  45631. characterMakers.push(() => makeCharacter(
  45632. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  45633. {
  45634. anthro: {
  45635. height: math.unit(9, "feet"),
  45636. weight: math.unit(2076, "lb"),
  45637. name: "Anthro",
  45638. image: {
  45639. source: "./media/characters/abacus/anthro.svg",
  45640. extra: 1540/1494,
  45641. bottom: 233/1773
  45642. }
  45643. },
  45644. pigeon: {
  45645. height: math.unit(1, "feet"),
  45646. name: "Pigeon",
  45647. image: {
  45648. source: "./media/characters/abacus/pigeon.svg",
  45649. extra: 528/525,
  45650. bottom: 46/574
  45651. }
  45652. },
  45653. },
  45654. [
  45655. {
  45656. name: "Normal",
  45657. height: math.unit(9, "feet"),
  45658. default: true
  45659. },
  45660. ]
  45661. ))
  45662. characterMakers.push(() => makeCharacter(
  45663. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  45664. {
  45665. side: {
  45666. height: math.unit(6, "feet"),
  45667. name: "Side",
  45668. image: {
  45669. source: "./media/characters/delkhan/side.svg",
  45670. extra: 1884/1786,
  45671. bottom: 308/2192
  45672. }
  45673. },
  45674. head: {
  45675. height: math.unit(3.38, "feet"),
  45676. name: "Head",
  45677. image: {
  45678. source: "./media/characters/delkhan/head.svg"
  45679. }
  45680. },
  45681. },
  45682. [
  45683. {
  45684. name: "Normal",
  45685. height: math.unit(72, "feet"),
  45686. default: true
  45687. },
  45688. {
  45689. name: "Giant",
  45690. height: math.unit(172, "feet")
  45691. },
  45692. ]
  45693. ))
  45694. characterMakers.push(() => makeCharacter(
  45695. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  45696. {
  45697. standing: {
  45698. height: math.unit(6, "feet"),
  45699. name: "Standing",
  45700. image: {
  45701. source: "./media/characters/euchidat/standing.svg",
  45702. extra: 1612/1553,
  45703. bottom: 116/1728
  45704. }
  45705. },
  45706. leaning: {
  45707. height: math.unit(6, "feet"),
  45708. name: "Leaning",
  45709. image: {
  45710. source: "./media/characters/euchidat/leaning.svg",
  45711. extra: 1719/1674,
  45712. bottom: 27/1746
  45713. }
  45714. },
  45715. },
  45716. [
  45717. {
  45718. name: "Normal",
  45719. height: math.unit(175, "feet"),
  45720. default: true
  45721. },
  45722. {
  45723. name: "Megamacro",
  45724. height: math.unit(190, "miles")
  45725. },
  45726. {
  45727. name: "Gigamacro",
  45728. height: math.unit(190000, "miles")
  45729. },
  45730. ]
  45731. ))
  45732. characterMakers.push(() => makeCharacter(
  45733. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  45734. {
  45735. front: {
  45736. height: math.unit(6, "feet"),
  45737. weight: math.unit(150, "lb"),
  45738. name: "Front",
  45739. image: {
  45740. source: "./media/characters/rebecca-stack/front.svg",
  45741. extra: 1256/1201,
  45742. bottom: 18/1274
  45743. }
  45744. },
  45745. },
  45746. [
  45747. {
  45748. name: "Normal",
  45749. height: math.unit(5 + 8/12, "feet"),
  45750. default: true
  45751. },
  45752. {
  45753. name: "Demolitionist",
  45754. height: math.unit(200, "feet")
  45755. },
  45756. {
  45757. name: "Out of Control",
  45758. height: math.unit(2, "miles")
  45759. },
  45760. {
  45761. name: "Giga",
  45762. height: math.unit(7200, "miles")
  45763. },
  45764. ]
  45765. ))
  45766. characterMakers.push(() => makeCharacter(
  45767. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  45768. {
  45769. front: {
  45770. height: math.unit(6, "feet"),
  45771. weight: math.unit(150, "lb"),
  45772. name: "Front",
  45773. image: {
  45774. source: "./media/characters/jenny-cartwright/front.svg",
  45775. extra: 1384/1376,
  45776. bottom: 58/1442
  45777. }
  45778. },
  45779. },
  45780. [
  45781. {
  45782. name: "Normal",
  45783. height: math.unit(6 + 7/12, "feet"),
  45784. default: true
  45785. },
  45786. {
  45787. name: "Librarian",
  45788. height: math.unit(55, "feet")
  45789. },
  45790. {
  45791. name: "Sightseer",
  45792. height: math.unit(50, "miles")
  45793. },
  45794. {
  45795. name: "Giga",
  45796. height: math.unit(30000, "miles")
  45797. },
  45798. ]
  45799. ))
  45800. characterMakers.push(() => makeCharacter(
  45801. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  45802. {
  45803. nude: {
  45804. height: math.unit(8, "feet"),
  45805. weight: math.unit(225, "lb"),
  45806. name: "Nude",
  45807. image: {
  45808. source: "./media/characters/marvy/nude.svg",
  45809. extra: 1900/1683,
  45810. bottom: 89/1989
  45811. }
  45812. },
  45813. dressed: {
  45814. height: math.unit(8, "feet"),
  45815. weight: math.unit(225, "lb"),
  45816. name: "Dressed",
  45817. image: {
  45818. source: "./media/characters/marvy/dressed.svg",
  45819. extra: 1900/1683,
  45820. bottom: 89/1989
  45821. }
  45822. },
  45823. head: {
  45824. height: math.unit(2.85, "feet"),
  45825. name: "Head",
  45826. image: {
  45827. source: "./media/characters/marvy/head.svg"
  45828. }
  45829. },
  45830. },
  45831. [
  45832. {
  45833. name: "Normal",
  45834. height: math.unit(8, "feet"),
  45835. default: true
  45836. },
  45837. ]
  45838. ))
  45839. characterMakers.push(() => makeCharacter(
  45840. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  45841. {
  45842. front: {
  45843. height: math.unit(8, "feet"),
  45844. weight: math.unit(250, "lb"),
  45845. name: "Front",
  45846. image: {
  45847. source: "./media/characters/leah/front.svg",
  45848. extra: 1257/1149,
  45849. bottom: 109/1366
  45850. }
  45851. },
  45852. },
  45853. [
  45854. {
  45855. name: "Normal",
  45856. height: math.unit(8, "feet"),
  45857. default: true
  45858. },
  45859. {
  45860. name: "Minimacro",
  45861. height: math.unit(40, "feet")
  45862. },
  45863. {
  45864. name: "Macro",
  45865. height: math.unit(124, "feet")
  45866. },
  45867. {
  45868. name: "Megamacro",
  45869. height: math.unit(850, "feet")
  45870. },
  45871. ]
  45872. ))
  45873. characterMakers.push(() => makeCharacter(
  45874. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  45875. {
  45876. side: {
  45877. height: math.unit(13 + 6/12, "feet"),
  45878. weight: math.unit(3200, "lb"),
  45879. name: "Side",
  45880. image: {
  45881. source: "./media/characters/alvir/side.svg",
  45882. extra: 896/589,
  45883. bottom: 26/922
  45884. }
  45885. },
  45886. },
  45887. [
  45888. {
  45889. name: "Normal",
  45890. height: math.unit(13 + 6/12, "feet"),
  45891. default: true
  45892. },
  45893. ]
  45894. ))
  45895. characterMakers.push(() => makeCharacter(
  45896. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  45897. {
  45898. front: {
  45899. height: math.unit(5 + 4/12, "feet"),
  45900. weight: math.unit(236, "lb"),
  45901. name: "Front",
  45902. image: {
  45903. source: "./media/characters/zaina-khalil/front.svg",
  45904. extra: 1533/1485,
  45905. bottom: 94/1627
  45906. }
  45907. },
  45908. side: {
  45909. height: math.unit(5 + 4/12, "feet"),
  45910. weight: math.unit(236, "lb"),
  45911. name: "Side",
  45912. image: {
  45913. source: "./media/characters/zaina-khalil/side.svg",
  45914. extra: 1537/1498,
  45915. bottom: 66/1603
  45916. }
  45917. },
  45918. back: {
  45919. height: math.unit(5 + 4/12, "feet"),
  45920. weight: math.unit(236, "lb"),
  45921. name: "Back",
  45922. image: {
  45923. source: "./media/characters/zaina-khalil/back.svg",
  45924. extra: 1546/1494,
  45925. bottom: 89/1635
  45926. }
  45927. },
  45928. },
  45929. [
  45930. {
  45931. name: "Normal",
  45932. height: math.unit(5 + 4/12, "feet"),
  45933. default: true
  45934. },
  45935. ]
  45936. ))
  45937. characterMakers.push(() => makeCharacter(
  45938. { name: "Terry", species: ["husky"], tags: ["taur"] },
  45939. {
  45940. side: {
  45941. height: math.unit(12, "feet"),
  45942. weight: math.unit(4000, "lb"),
  45943. name: "Side",
  45944. image: {
  45945. source: "./media/characters/terry/side.svg",
  45946. extra: 1518/1439,
  45947. bottom: 149/1667
  45948. }
  45949. },
  45950. },
  45951. [
  45952. {
  45953. name: "Normal",
  45954. height: math.unit(12, "feet"),
  45955. default: true
  45956. },
  45957. ]
  45958. ))
  45959. characterMakers.push(() => makeCharacter(
  45960. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  45961. {
  45962. front: {
  45963. height: math.unit(12, "feet"),
  45964. weight: math.unit(1500, "lb"),
  45965. name: "Front",
  45966. image: {
  45967. source: "./media/characters/kahea/front.svg",
  45968. extra: 1722/1617,
  45969. bottom: 179/1901
  45970. }
  45971. },
  45972. },
  45973. [
  45974. {
  45975. name: "Normal",
  45976. height: math.unit(12, "feet"),
  45977. default: true
  45978. },
  45979. ]
  45980. ))
  45981. characterMakers.push(() => makeCharacter(
  45982. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  45983. {
  45984. demonFront: {
  45985. height: math.unit(36, "feet"),
  45986. name: "Front",
  45987. image: {
  45988. source: "./media/characters/alex-xuria/demon-front.svg",
  45989. extra: 1705/1673,
  45990. bottom: 198/1903
  45991. },
  45992. form: "demon",
  45993. default: true
  45994. },
  45995. demonBack: {
  45996. height: math.unit(36, "feet"),
  45997. name: "Back",
  45998. image: {
  45999. source: "./media/characters/alex-xuria/demon-back.svg",
  46000. extra: 1725/1693,
  46001. bottom: 70/1795
  46002. },
  46003. form: "demon"
  46004. },
  46005. demonHead: {
  46006. height: math.unit(2.14, "meters"),
  46007. name: "Head",
  46008. image: {
  46009. source: "./media/characters/alex-xuria/demon-head.svg"
  46010. },
  46011. form: "demon"
  46012. },
  46013. demonHand: {
  46014. height: math.unit(1.61, "meters"),
  46015. name: "Hand",
  46016. image: {
  46017. source: "./media/characters/alex-xuria/demon-hand.svg"
  46018. },
  46019. form: "demon"
  46020. },
  46021. demonPaw: {
  46022. height: math.unit(1.35, "meters"),
  46023. name: "Paw",
  46024. image: {
  46025. source: "./media/characters/alex-xuria/demon-paw.svg"
  46026. },
  46027. form: "demon"
  46028. },
  46029. demonFoot: {
  46030. height: math.unit(2.2, "meters"),
  46031. name: "Foot",
  46032. image: {
  46033. source: "./media/characters/alex-xuria/demon-foot.svg"
  46034. },
  46035. form: "demon"
  46036. },
  46037. demonCock: {
  46038. height: math.unit(1.74, "meters"),
  46039. name: "Cock",
  46040. image: {
  46041. source: "./media/characters/alex-xuria/demon-cock.svg"
  46042. },
  46043. form: "demon"
  46044. },
  46045. demonTailClosed: {
  46046. height: math.unit(1.47, "meters"),
  46047. name: "Tail (Closed)",
  46048. image: {
  46049. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  46050. },
  46051. form: "demon"
  46052. },
  46053. demonTailOpen: {
  46054. height: math.unit(2.85, "meters"),
  46055. name: "Tail (Open)",
  46056. image: {
  46057. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  46058. },
  46059. form: "demon"
  46060. },
  46061. incubusFront: {
  46062. height: math.unit(12, "feet"),
  46063. name: "Front",
  46064. image: {
  46065. source: "./media/characters/alex-xuria/incubus-front.svg",
  46066. extra: 1754/1677,
  46067. bottom: 125/1879
  46068. },
  46069. form: "incubus",
  46070. default: true
  46071. },
  46072. incubusBack: {
  46073. height: math.unit(12, "feet"),
  46074. name: "Back",
  46075. image: {
  46076. source: "./media/characters/alex-xuria/incubus-back.svg",
  46077. extra: 1702/1647,
  46078. bottom: 30/1732
  46079. },
  46080. form: "incubus"
  46081. },
  46082. incubusHead: {
  46083. height: math.unit(3.45, "feet"),
  46084. name: "Head",
  46085. image: {
  46086. source: "./media/characters/alex-xuria/incubus-head.svg"
  46087. },
  46088. form: "incubus"
  46089. },
  46090. rabbitFront: {
  46091. height: math.unit(6, "feet"),
  46092. name: "Front",
  46093. image: {
  46094. source: "./media/characters/alex-xuria/rabbit-front.svg",
  46095. extra: 1369/1349,
  46096. bottom: 45/1414
  46097. },
  46098. form: "rabbit",
  46099. default: true
  46100. },
  46101. rabbitSide: {
  46102. height: math.unit(6, "feet"),
  46103. name: "Side",
  46104. image: {
  46105. source: "./media/characters/alex-xuria/rabbit-side.svg",
  46106. extra: 1370/1356,
  46107. bottom: 37/1407
  46108. },
  46109. form: "rabbit"
  46110. },
  46111. rabbitBack: {
  46112. height: math.unit(6, "feet"),
  46113. name: "Back",
  46114. image: {
  46115. source: "./media/characters/alex-xuria/rabbit-back.svg",
  46116. extra: 1375/1358,
  46117. bottom: 43/1418
  46118. },
  46119. form: "rabbit"
  46120. },
  46121. },
  46122. [
  46123. {
  46124. name: "Normal",
  46125. height: math.unit(6, "feet"),
  46126. default: true,
  46127. form: "rabbit"
  46128. },
  46129. {
  46130. name: "Incubus",
  46131. height: math.unit(12, "feet"),
  46132. default: true,
  46133. form: "incubus"
  46134. },
  46135. {
  46136. name: "Demon",
  46137. height: math.unit(36, "feet"),
  46138. default: true,
  46139. form: "demon"
  46140. }
  46141. ],
  46142. {
  46143. "demon": {
  46144. name: "Demon",
  46145. default: true
  46146. },
  46147. "incubus": {
  46148. name: "Incubus",
  46149. },
  46150. "rabbit": {
  46151. name: "Rabbit"
  46152. }
  46153. }
  46154. ))
  46155. characterMakers.push(() => makeCharacter(
  46156. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  46157. {
  46158. front: {
  46159. height: math.unit(7 + 5/12, "feet"),
  46160. weight: math.unit(510, "lb"),
  46161. name: "Front",
  46162. image: {
  46163. source: "./media/characters/syrup/front.svg",
  46164. extra: 932/916,
  46165. bottom: 26/958
  46166. }
  46167. },
  46168. },
  46169. [
  46170. {
  46171. name: "Normal",
  46172. height: math.unit(7 + 5/12, "feet"),
  46173. default: true
  46174. },
  46175. {
  46176. name: "Big",
  46177. height: math.unit(50, "feet")
  46178. },
  46179. {
  46180. name: "Macro",
  46181. height: math.unit(300, "feet")
  46182. },
  46183. {
  46184. name: "Megamacro",
  46185. height: math.unit(1, "mile")
  46186. },
  46187. ]
  46188. ))
  46189. characterMakers.push(() => makeCharacter(
  46190. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  46191. {
  46192. front: {
  46193. height: math.unit(6 + 9/12, "feet"),
  46194. name: "Front",
  46195. image: {
  46196. source: "./media/characters/zeimne/front.svg",
  46197. extra: 1969/1806,
  46198. bottom: 53/2022
  46199. }
  46200. },
  46201. },
  46202. [
  46203. {
  46204. name: "Normal",
  46205. height: math.unit(6 + 9/12, "feet"),
  46206. default: true
  46207. },
  46208. {
  46209. name: "Giant",
  46210. height: math.unit(550, "feet")
  46211. },
  46212. {
  46213. name: "Mega",
  46214. height: math.unit(3, "miles")
  46215. },
  46216. {
  46217. name: "Giga",
  46218. height: math.unit(250, "miles")
  46219. },
  46220. {
  46221. name: "Tera",
  46222. height: math.unit(1, "AU")
  46223. },
  46224. ]
  46225. ))
  46226. characterMakers.push(() => makeCharacter(
  46227. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  46228. {
  46229. front: {
  46230. height: math.unit(5 + 2/12, "feet"),
  46231. name: "Front",
  46232. image: {
  46233. source: "./media/characters/grar/front.svg",
  46234. extra: 1331/1119,
  46235. bottom: 60/1391
  46236. }
  46237. },
  46238. back: {
  46239. height: math.unit(5 + 2/12, "feet"),
  46240. name: "Back",
  46241. image: {
  46242. source: "./media/characters/grar/back.svg",
  46243. extra: 1385/1169,
  46244. bottom: 23/1408
  46245. }
  46246. },
  46247. },
  46248. [
  46249. {
  46250. name: "Normal",
  46251. height: math.unit(5 + 2/12, "feet"),
  46252. default: true
  46253. },
  46254. ]
  46255. ))
  46256. characterMakers.push(() => makeCharacter(
  46257. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  46258. {
  46259. front: {
  46260. height: math.unit(13 + 7/12, "feet"),
  46261. weight: math.unit(2200, "lb"),
  46262. name: "Front",
  46263. image: {
  46264. source: "./media/characters/endraya/front.svg",
  46265. extra: 1289/1215,
  46266. bottom: 50/1339
  46267. }
  46268. },
  46269. nude: {
  46270. height: math.unit(13 + 7/12, "feet"),
  46271. weight: math.unit(2200, "lb"),
  46272. name: "Nude",
  46273. image: {
  46274. source: "./media/characters/endraya/nude.svg",
  46275. extra: 1247/1171,
  46276. bottom: 40/1287
  46277. }
  46278. },
  46279. head: {
  46280. height: math.unit(2.6, "feet"),
  46281. name: "Head",
  46282. image: {
  46283. source: "./media/characters/endraya/head.svg"
  46284. }
  46285. },
  46286. slit: {
  46287. height: math.unit(3.4, "feet"),
  46288. name: "Slit",
  46289. image: {
  46290. source: "./media/characters/endraya/slit.svg"
  46291. }
  46292. },
  46293. },
  46294. [
  46295. {
  46296. name: "Normal",
  46297. height: math.unit(13 + 7/12, "feet"),
  46298. default: true
  46299. },
  46300. {
  46301. name: "Macro",
  46302. height: math.unit(200, "feet")
  46303. },
  46304. ]
  46305. ))
  46306. characterMakers.push(() => makeCharacter(
  46307. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  46308. {
  46309. front: {
  46310. height: math.unit(1.81, "meters"),
  46311. weight: math.unit(69, "kg"),
  46312. name: "Front",
  46313. image: {
  46314. source: "./media/characters/rodryana/front.svg",
  46315. extra: 2002/1921,
  46316. bottom: 53/2055
  46317. }
  46318. },
  46319. back: {
  46320. height: math.unit(1.81, "meters"),
  46321. weight: math.unit(69, "kg"),
  46322. name: "Back",
  46323. image: {
  46324. source: "./media/characters/rodryana/back.svg",
  46325. extra: 1993/1926,
  46326. bottom: 48/2041
  46327. }
  46328. },
  46329. maw: {
  46330. height: math.unit(0.19769417475, "meters"),
  46331. name: "Maw",
  46332. image: {
  46333. source: "./media/characters/rodryana/maw.svg"
  46334. }
  46335. },
  46336. slit: {
  46337. height: math.unit(0.31631067961, "meters"),
  46338. name: "Slit",
  46339. image: {
  46340. source: "./media/characters/rodryana/slit.svg"
  46341. }
  46342. },
  46343. },
  46344. [
  46345. {
  46346. name: "Normal",
  46347. height: math.unit(1.81, "meters")
  46348. },
  46349. {
  46350. name: "Mini Macro",
  46351. height: math.unit(181, "meters")
  46352. },
  46353. {
  46354. name: "Macro",
  46355. height: math.unit(452, "meters"),
  46356. default: true
  46357. },
  46358. {
  46359. name: "Mega Macro",
  46360. height: math.unit(1.375, "km")
  46361. },
  46362. {
  46363. name: "Giga Macro",
  46364. height: math.unit(13.575, "km")
  46365. },
  46366. ]
  46367. ))
  46368. characterMakers.push(() => makeCharacter(
  46369. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  46370. {
  46371. front: {
  46372. height: math.unit(6, "feet"),
  46373. weight: math.unit(1000, "lb"),
  46374. name: "Front",
  46375. image: {
  46376. source: "./media/characters/asaya/front.svg",
  46377. extra: 1460/1200,
  46378. bottom: 71/1531
  46379. }
  46380. },
  46381. },
  46382. [
  46383. {
  46384. name: "Normal",
  46385. height: math.unit(8, "km"),
  46386. default: true
  46387. },
  46388. ]
  46389. ))
  46390. characterMakers.push(() => makeCharacter(
  46391. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  46392. {
  46393. front: {
  46394. height: math.unit(3.5, "meters"),
  46395. name: "Front",
  46396. image: {
  46397. source: "./media/characters/sarzu-and-israz/front.svg",
  46398. extra: 1570/1558,
  46399. bottom: 150/1720
  46400. },
  46401. },
  46402. back: {
  46403. height: math.unit(3.5, "meters"),
  46404. name: "Back",
  46405. image: {
  46406. source: "./media/characters/sarzu-and-israz/back.svg",
  46407. extra: 1523/1509,
  46408. bottom: 132/1655
  46409. },
  46410. },
  46411. frontFemale: {
  46412. height: math.unit(3.5, "meters"),
  46413. name: "Front (Female)",
  46414. image: {
  46415. source: "./media/characters/sarzu-and-israz/front-female.svg",
  46416. extra: 1570/1558,
  46417. bottom: 150/1720
  46418. },
  46419. },
  46420. frontHerm: {
  46421. height: math.unit(3.5, "meters"),
  46422. name: "Front (Herm)",
  46423. image: {
  46424. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  46425. extra: 1570/1558,
  46426. bottom: 150/1720
  46427. },
  46428. },
  46429. },
  46430. [
  46431. {
  46432. name: "Normal",
  46433. height: math.unit(3.5, "meters"),
  46434. default: true,
  46435. },
  46436. {
  46437. name: "Macro",
  46438. height: math.unit(65.5, "meters"),
  46439. },
  46440. ],
  46441. ))
  46442. characterMakers.push(() => makeCharacter(
  46443. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  46444. {
  46445. front: {
  46446. height: math.unit(6, "feet"),
  46447. weight: math.unit(250, "lb"),
  46448. name: "Front",
  46449. image: {
  46450. source: "./media/characters/zenimma/front.svg",
  46451. extra: 1346/1320,
  46452. bottom: 58/1404
  46453. }
  46454. },
  46455. back: {
  46456. height: math.unit(6, "feet"),
  46457. weight: math.unit(250, "lb"),
  46458. name: "Back",
  46459. image: {
  46460. source: "./media/characters/zenimma/back.svg",
  46461. extra: 1324/1308,
  46462. bottom: 44/1368
  46463. }
  46464. },
  46465. dick: {
  46466. height: math.unit(1.44, "feet"),
  46467. name: "Dick",
  46468. image: {
  46469. source: "./media/characters/zenimma/dick.svg"
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Canon Height",
  46476. height: math.unit(66, "miles"),
  46477. default: true
  46478. },
  46479. ]
  46480. ))
  46481. characterMakers.push(() => makeCharacter(
  46482. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  46483. {
  46484. nude: {
  46485. height: math.unit(6, "feet"),
  46486. weight: math.unit(150, "lb"),
  46487. name: "Nude",
  46488. image: {
  46489. source: "./media/characters/shavon/nude.svg",
  46490. extra: 1242/1096,
  46491. bottom: 98/1340
  46492. }
  46493. },
  46494. dressed: {
  46495. height: math.unit(6, "feet"),
  46496. weight: math.unit(150, "lb"),
  46497. name: "Dressed",
  46498. image: {
  46499. source: "./media/characters/shavon/dressed.svg",
  46500. extra: 1242/1096,
  46501. bottom: 98/1340
  46502. }
  46503. },
  46504. },
  46505. [
  46506. {
  46507. name: "Macro",
  46508. height: math.unit(255, "feet"),
  46509. default: true
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  46515. {
  46516. front: {
  46517. height: math.unit(6, "feet"),
  46518. name: "Front",
  46519. image: {
  46520. source: "./media/characters/steph/front.svg",
  46521. extra: 1430/1330,
  46522. bottom: 54/1484
  46523. }
  46524. },
  46525. },
  46526. [
  46527. {
  46528. name: "Normal",
  46529. height: math.unit(6, "feet"),
  46530. default: true
  46531. },
  46532. ]
  46533. ))
  46534. characterMakers.push(() => makeCharacter(
  46535. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  46536. {
  46537. front: {
  46538. height: math.unit(9, "feet"),
  46539. weight: math.unit(400, "lb"),
  46540. name: "Front",
  46541. image: {
  46542. source: "./media/characters/kil'aman/front.svg",
  46543. extra: 1210/1159,
  46544. bottom: 109/1319
  46545. }
  46546. },
  46547. head: {
  46548. height: math.unit(2.14, "feet"),
  46549. name: "Head",
  46550. image: {
  46551. source: "./media/characters/kil'aman/head.svg"
  46552. }
  46553. },
  46554. maw: {
  46555. height: math.unit(1.21, "feet"),
  46556. name: "Maw",
  46557. image: {
  46558. source: "./media/characters/kil'aman/maw.svg"
  46559. }
  46560. },
  46561. foot: {
  46562. height: math.unit(1.7, "feet"),
  46563. name: "Foot",
  46564. image: {
  46565. source: "./media/characters/kil'aman/foot.svg"
  46566. }
  46567. },
  46568. dick: {
  46569. height: math.unit(2.1, "feet"),
  46570. name: "Dick",
  46571. image: {
  46572. source: "./media/characters/kil'aman/dick.svg"
  46573. }
  46574. },
  46575. },
  46576. [
  46577. {
  46578. name: "Normal",
  46579. height: math.unit(9, "feet")
  46580. },
  46581. {
  46582. name: "Canon Height",
  46583. height: math.unit(10, "miles"),
  46584. default: true
  46585. },
  46586. {
  46587. name: "Maximum",
  46588. height: math.unit(6e9, "miles")
  46589. },
  46590. ]
  46591. ))
  46592. characterMakers.push(() => makeCharacter(
  46593. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  46594. {
  46595. front: {
  46596. height: math.unit(90, "feet"),
  46597. weight: math.unit(675000, "lb"),
  46598. name: "Front",
  46599. image: {
  46600. source: "./media/characters/qadan/front.svg",
  46601. extra: 1012/1004,
  46602. bottom: 78/1090
  46603. }
  46604. },
  46605. back: {
  46606. height: math.unit(90, "feet"),
  46607. weight: math.unit(675000, "lb"),
  46608. name: "Back",
  46609. image: {
  46610. source: "./media/characters/qadan/back.svg",
  46611. extra: 1042/1031,
  46612. bottom: 55/1097
  46613. }
  46614. },
  46615. armored: {
  46616. height: math.unit(90, "feet"),
  46617. weight: math.unit(675000, "lb"),
  46618. name: "Armored",
  46619. image: {
  46620. source: "./media/characters/qadan/armored.svg",
  46621. extra: 1047/1037,
  46622. bottom: 48/1095
  46623. }
  46624. },
  46625. },
  46626. [
  46627. {
  46628. name: "Normal",
  46629. height: math.unit(90, "feet"),
  46630. default: true
  46631. },
  46632. ]
  46633. ))
  46634. characterMakers.push(() => makeCharacter(
  46635. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  46636. {
  46637. front: {
  46638. height: math.unit(6, "feet"),
  46639. weight: math.unit(225, "lb"),
  46640. name: "Front",
  46641. image: {
  46642. source: "./media/characters/brooke/front.svg",
  46643. extra: 1050/1010,
  46644. bottom: 66/1116
  46645. }
  46646. },
  46647. back: {
  46648. height: math.unit(6, "feet"),
  46649. weight: math.unit(225, "lb"),
  46650. name: "Back",
  46651. image: {
  46652. source: "./media/characters/brooke/back.svg",
  46653. extra: 1053/1013,
  46654. bottom: 41/1094
  46655. }
  46656. },
  46657. dressed: {
  46658. height: math.unit(6, "feet"),
  46659. weight: math.unit(225, "lb"),
  46660. name: "Dressed",
  46661. image: {
  46662. source: "./media/characters/brooke/dressed.svg",
  46663. extra: 1050/1010,
  46664. bottom: 66/1116
  46665. }
  46666. },
  46667. },
  46668. [
  46669. {
  46670. name: "Canon Height",
  46671. height: math.unit(500, "miles"),
  46672. default: true
  46673. },
  46674. ]
  46675. ))
  46676. characterMakers.push(() => makeCharacter(
  46677. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  46678. {
  46679. front: {
  46680. height: math.unit(6 + 2/12, "feet"),
  46681. weight: math.unit(210, "lb"),
  46682. name: "Front",
  46683. image: {
  46684. source: "./media/characters/wubs/front.svg",
  46685. extra: 1345/1325,
  46686. bottom: 70/1415
  46687. }
  46688. },
  46689. back: {
  46690. height: math.unit(6 + 2/12, "feet"),
  46691. weight: math.unit(210, "lb"),
  46692. name: "Back",
  46693. image: {
  46694. source: "./media/characters/wubs/back.svg",
  46695. extra: 1296/1275,
  46696. bottom: 58/1354
  46697. }
  46698. },
  46699. },
  46700. [
  46701. {
  46702. name: "Normal",
  46703. height: math.unit(6 + 2/12, "feet"),
  46704. default: true
  46705. },
  46706. {
  46707. name: "Macro",
  46708. height: math.unit(1000, "feet")
  46709. },
  46710. {
  46711. name: "Megamacro",
  46712. height: math.unit(1, "mile")
  46713. },
  46714. ]
  46715. ))
  46716. characterMakers.push(() => makeCharacter(
  46717. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  46718. {
  46719. front: {
  46720. height: math.unit(4, "feet"),
  46721. weight: math.unit(120, "lb"),
  46722. name: "Front",
  46723. image: {
  46724. source: "./media/characters/blue/front.svg",
  46725. extra: 1636/1525,
  46726. bottom: 43/1679
  46727. }
  46728. },
  46729. back: {
  46730. height: math.unit(4, "feet"),
  46731. weight: math.unit(120, "lb"),
  46732. name: "Back",
  46733. image: {
  46734. source: "./media/characters/blue/back.svg",
  46735. extra: 1660/1560,
  46736. bottom: 57/1717
  46737. }
  46738. },
  46739. paws: {
  46740. height: math.unit(0.826, "feet"),
  46741. name: "Paws",
  46742. image: {
  46743. source: "./media/characters/blue/paws.svg"
  46744. }
  46745. },
  46746. },
  46747. [
  46748. {
  46749. name: "Micro",
  46750. height: math.unit(3, "inches")
  46751. },
  46752. {
  46753. name: "Normal",
  46754. height: math.unit(4, "feet"),
  46755. default: true
  46756. },
  46757. {
  46758. name: "Femenine Form",
  46759. height: math.unit(14, "feet")
  46760. },
  46761. {
  46762. name: "Werebat Form",
  46763. height: math.unit(18, "feet")
  46764. },
  46765. ]
  46766. ))
  46767. characterMakers.push(() => makeCharacter(
  46768. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  46769. {
  46770. female: {
  46771. height: math.unit(7 + 4/12, "feet"),
  46772. weight: math.unit(243, "lb"),
  46773. name: "Female",
  46774. image: {
  46775. source: "./media/characters/kaya/female.svg",
  46776. extra: 975/898,
  46777. bottom: 34/1009
  46778. }
  46779. },
  46780. herm: {
  46781. height: math.unit(7 + 4/12, "feet"),
  46782. weight: math.unit(243, "lb"),
  46783. name: "Herm",
  46784. image: {
  46785. source: "./media/characters/kaya/herm.svg",
  46786. extra: 975/898,
  46787. bottom: 34/1009
  46788. }
  46789. },
  46790. },
  46791. [
  46792. {
  46793. name: "Normal",
  46794. height: math.unit(7 + 4/12, "feet"),
  46795. default: true
  46796. },
  46797. ]
  46798. ))
  46799. characterMakers.push(() => makeCharacter(
  46800. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  46801. {
  46802. female: {
  46803. height: math.unit(9 + 4/12, "feet"),
  46804. weight: math.unit(398, "lb"),
  46805. name: "Female",
  46806. image: {
  46807. source: "./media/characters/kassandra/female.svg",
  46808. extra: 908/839,
  46809. bottom: 61/969
  46810. }
  46811. },
  46812. intersex: {
  46813. height: math.unit(9 + 4/12, "feet"),
  46814. weight: math.unit(398, "lb"),
  46815. name: "Intersex",
  46816. image: {
  46817. source: "./media/characters/kassandra/intersex.svg",
  46818. extra: 908/839,
  46819. bottom: 61/969
  46820. }
  46821. },
  46822. },
  46823. [
  46824. {
  46825. name: "Normal",
  46826. height: math.unit(9 + 4/12, "feet"),
  46827. default: true
  46828. },
  46829. ]
  46830. ))
  46831. characterMakers.push(() => makeCharacter(
  46832. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  46833. {
  46834. front: {
  46835. height: math.unit(3, "meters"),
  46836. name: "Front",
  46837. image: {
  46838. source: "./media/characters/amy/front.svg",
  46839. extra: 1380/1343,
  46840. bottom: 70/1450
  46841. }
  46842. },
  46843. back: {
  46844. height: math.unit(3, "meters"),
  46845. name: "Back",
  46846. image: {
  46847. source: "./media/characters/amy/back.svg",
  46848. extra: 1380/1347,
  46849. bottom: 66/1446
  46850. }
  46851. },
  46852. },
  46853. [
  46854. {
  46855. name: "Normal",
  46856. height: math.unit(3, "meters"),
  46857. default: true
  46858. },
  46859. ]
  46860. ))
  46861. characterMakers.push(() => makeCharacter(
  46862. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  46863. {
  46864. side: {
  46865. height: math.unit(47, "cm"),
  46866. weight: math.unit(10.8, "kg"),
  46867. name: "Side",
  46868. image: {
  46869. source: "./media/characters/alphaschakal/side.svg",
  46870. extra: 1058/568,
  46871. bottom: 62/1120
  46872. }
  46873. },
  46874. back: {
  46875. height: math.unit(78, "cm"),
  46876. weight: math.unit(10.8, "kg"),
  46877. name: "Back",
  46878. image: {
  46879. source: "./media/characters/alphaschakal/back.svg",
  46880. extra: 1102/942,
  46881. bottom: 185/1287
  46882. }
  46883. },
  46884. head: {
  46885. height: math.unit(28, "cm"),
  46886. name: "Head",
  46887. image: {
  46888. source: "./media/characters/alphaschakal/head.svg",
  46889. extra: 696/508,
  46890. bottom: 0/696
  46891. }
  46892. },
  46893. paw: {
  46894. height: math.unit(16, "cm"),
  46895. name: "Paw",
  46896. image: {
  46897. source: "./media/characters/alphaschakal/paw.svg"
  46898. }
  46899. },
  46900. },
  46901. [
  46902. {
  46903. name: "Normal",
  46904. height: math.unit(47, "cm"),
  46905. default: true
  46906. },
  46907. {
  46908. name: "Macro",
  46909. height: math.unit(340, "cm")
  46910. },
  46911. ]
  46912. ))
  46913. characterMakers.push(() => makeCharacter(
  46914. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  46915. {
  46916. front: {
  46917. height: math.unit(36, "earths"),
  46918. name: "Front",
  46919. image: {
  46920. source: "./media/characters/ecobyss/front.svg",
  46921. extra: 1282/1215,
  46922. bottom: 11/1293
  46923. }
  46924. },
  46925. back: {
  46926. height: math.unit(36, "earths"),
  46927. name: "Back",
  46928. image: {
  46929. source: "./media/characters/ecobyss/back.svg",
  46930. extra: 1291/1222,
  46931. bottom: 8/1299
  46932. }
  46933. },
  46934. },
  46935. [
  46936. {
  46937. name: "Normal",
  46938. height: math.unit(36, "earths"),
  46939. default: true
  46940. },
  46941. ]
  46942. ))
  46943. characterMakers.push(() => makeCharacter(
  46944. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  46945. {
  46946. front: {
  46947. height: math.unit(12, "feet"),
  46948. name: "Front",
  46949. image: {
  46950. source: "./media/characters/vasuk/front.svg",
  46951. extra: 1326/1207,
  46952. bottom: 64/1390
  46953. }
  46954. },
  46955. },
  46956. [
  46957. {
  46958. name: "Normal",
  46959. height: math.unit(12, "feet"),
  46960. default: true
  46961. },
  46962. ]
  46963. ))
  46964. characterMakers.push(() => makeCharacter(
  46965. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  46966. {
  46967. side: {
  46968. height: math.unit(100, "feet"),
  46969. name: "Side",
  46970. image: {
  46971. source: "./media/characters/linneaus/side.svg",
  46972. extra: 987/807,
  46973. bottom: 47/1034
  46974. }
  46975. },
  46976. },
  46977. [
  46978. {
  46979. name: "Macro",
  46980. height: math.unit(100, "feet"),
  46981. default: true
  46982. },
  46983. ]
  46984. ))
  46985. characterMakers.push(() => makeCharacter(
  46986. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  46987. {
  46988. front: {
  46989. height: math.unit(8, "feet"),
  46990. weight: math.unit(1200, "lb"),
  46991. name: "Front",
  46992. image: {
  46993. source: "./media/characters/nyterious-daligdig/front.svg",
  46994. extra: 1284/1094,
  46995. bottom: 84/1368
  46996. }
  46997. },
  46998. back: {
  46999. height: math.unit(8, "feet"),
  47000. weight: math.unit(1200, "lb"),
  47001. name: "Back",
  47002. image: {
  47003. source: "./media/characters/nyterious-daligdig/back.svg",
  47004. extra: 1301/1121,
  47005. bottom: 129/1430
  47006. }
  47007. },
  47008. mouth: {
  47009. height: math.unit(1.464, "feet"),
  47010. name: "Mouth",
  47011. image: {
  47012. source: "./media/characters/nyterious-daligdig/mouth.svg"
  47013. }
  47014. },
  47015. },
  47016. [
  47017. {
  47018. name: "Small",
  47019. height: math.unit(8, "feet"),
  47020. default: true
  47021. },
  47022. {
  47023. name: "Normal",
  47024. height: math.unit(15, "feet")
  47025. },
  47026. {
  47027. name: "Macro",
  47028. height: math.unit(90, "feet")
  47029. },
  47030. ]
  47031. ))
  47032. characterMakers.push(() => makeCharacter(
  47033. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  47034. {
  47035. front: {
  47036. height: math.unit(7 + 4/12, "feet"),
  47037. weight: math.unit(252, "lb"),
  47038. name: "Front",
  47039. image: {
  47040. source: "./media/characters/bandel/front.svg",
  47041. extra: 1946/1775,
  47042. bottom: 26/1972
  47043. }
  47044. },
  47045. back: {
  47046. height: math.unit(7 + 4/12, "feet"),
  47047. weight: math.unit(252, "lb"),
  47048. name: "Back",
  47049. image: {
  47050. source: "./media/characters/bandel/back.svg",
  47051. extra: 1940/1770,
  47052. bottom: 25/1965
  47053. }
  47054. },
  47055. maw: {
  47056. height: math.unit(2.15, "feet"),
  47057. name: "Maw",
  47058. image: {
  47059. source: "./media/characters/bandel/maw.svg"
  47060. }
  47061. },
  47062. stomach: {
  47063. height: math.unit(1.95, "feet"),
  47064. name: "Stomach",
  47065. image: {
  47066. source: "./media/characters/bandel/stomach.svg"
  47067. }
  47068. },
  47069. },
  47070. [
  47071. {
  47072. name: "Normal",
  47073. height: math.unit(7 + 4/12, "feet"),
  47074. default: true
  47075. },
  47076. ]
  47077. ))
  47078. characterMakers.push(() => makeCharacter(
  47079. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  47080. {
  47081. front: {
  47082. height: math.unit(10 + 5/12, "feet"),
  47083. weight: math.unit(773.5, "kg"),
  47084. name: "Front",
  47085. image: {
  47086. source: "./media/characters/zed/front.svg",
  47087. extra: 987/941,
  47088. bottom: 52/1039
  47089. }
  47090. },
  47091. },
  47092. [
  47093. {
  47094. name: "Short",
  47095. height: math.unit(5 + 4/12, "feet")
  47096. },
  47097. {
  47098. name: "Average",
  47099. height: math.unit(10 + 5/12, "feet"),
  47100. default: true
  47101. },
  47102. {
  47103. name: "Mini-Macro",
  47104. height: math.unit(24 + 9/12, "feet")
  47105. },
  47106. {
  47107. name: "Macro",
  47108. height: math.unit(249, "feet")
  47109. },
  47110. {
  47111. name: "Mega-Macro",
  47112. height: math.unit(12490, "feet")
  47113. },
  47114. {
  47115. name: "Giga-Macro",
  47116. height: math.unit(24.9, "miles")
  47117. },
  47118. {
  47119. name: "Tera-Macro",
  47120. height: math.unit(24900, "miles")
  47121. },
  47122. {
  47123. name: "Cosmic Scale",
  47124. height: math.unit(38.9, "lightyears")
  47125. },
  47126. {
  47127. name: "Universal Scale",
  47128. height: math.unit(138e12, "lightyears")
  47129. },
  47130. ]
  47131. ))
  47132. characterMakers.push(() => makeCharacter(
  47133. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  47134. {
  47135. front: {
  47136. height: math.unit(1561, "inches"),
  47137. name: "Front",
  47138. image: {
  47139. source: "./media/characters/ivan/front.svg",
  47140. extra: 1126/1071,
  47141. bottom: 26/1152
  47142. }
  47143. },
  47144. back: {
  47145. height: math.unit(1561, "inches"),
  47146. name: "Back",
  47147. image: {
  47148. source: "./media/characters/ivan/back.svg",
  47149. extra: 1134/1079,
  47150. bottom: 30/1164
  47151. }
  47152. },
  47153. },
  47154. [
  47155. {
  47156. name: "Normal",
  47157. height: math.unit(1561, "inches"),
  47158. default: true
  47159. },
  47160. ]
  47161. ))
  47162. characterMakers.push(() => makeCharacter(
  47163. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  47164. {
  47165. front: {
  47166. height: math.unit(5 + 7/12, "feet"),
  47167. weight: math.unit(150, "lb"),
  47168. name: "Front",
  47169. image: {
  47170. source: "./media/characters/robin-arctic-hare/front.svg",
  47171. extra: 1148/974,
  47172. bottom: 20/1168
  47173. }
  47174. },
  47175. },
  47176. [
  47177. {
  47178. name: "Normal",
  47179. height: math.unit(5 + 7/12, "feet"),
  47180. default: true
  47181. },
  47182. ]
  47183. ))
  47184. characterMakers.push(() => makeCharacter(
  47185. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  47186. {
  47187. side: {
  47188. height: math.unit(5, "feet"),
  47189. name: "Side",
  47190. image: {
  47191. source: "./media/characters/birch/side.svg",
  47192. extra: 985/796,
  47193. bottom: 111/1096
  47194. }
  47195. },
  47196. },
  47197. [
  47198. {
  47199. name: "Normal",
  47200. height: math.unit(5, "feet"),
  47201. default: true
  47202. },
  47203. ]
  47204. ))
  47205. characterMakers.push(() => makeCharacter(
  47206. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  47207. {
  47208. front: {
  47209. height: math.unit(4, "feet"),
  47210. name: "Front",
  47211. image: {
  47212. source: "./media/characters/rasp/front.svg",
  47213. extra: 561/478,
  47214. bottom: 74/635
  47215. }
  47216. },
  47217. },
  47218. [
  47219. {
  47220. name: "Normal",
  47221. height: math.unit(4, "feet"),
  47222. default: true
  47223. },
  47224. ]
  47225. ))
  47226. characterMakers.push(() => makeCharacter(
  47227. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  47228. {
  47229. front: {
  47230. height: math.unit(4 + 6/12, "feet"),
  47231. name: "Front",
  47232. image: {
  47233. source: "./media/characters/agatha/front.svg",
  47234. extra: 947/933,
  47235. bottom: 42/989
  47236. }
  47237. },
  47238. back: {
  47239. height: math.unit(4 + 6/12, "feet"),
  47240. name: "Back",
  47241. image: {
  47242. source: "./media/characters/agatha/back.svg",
  47243. extra: 935/922,
  47244. bottom: 48/983
  47245. }
  47246. },
  47247. },
  47248. [
  47249. {
  47250. name: "Normal",
  47251. height: math.unit(4 + 6 /12, "feet"),
  47252. default: true
  47253. },
  47254. {
  47255. name: "Max Size",
  47256. height: math.unit(500, "feet")
  47257. },
  47258. ]
  47259. ))
  47260. characterMakers.push(() => makeCharacter(
  47261. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  47262. {
  47263. side: {
  47264. height: math.unit(30, "feet"),
  47265. name: "Side",
  47266. image: {
  47267. source: "./media/characters/roggy/side.svg",
  47268. extra: 909/643,
  47269. bottom: 63/972
  47270. }
  47271. },
  47272. lounging: {
  47273. height: math.unit(20, "feet"),
  47274. name: "Lounging",
  47275. image: {
  47276. source: "./media/characters/roggy/lounging.svg",
  47277. extra: 643/479,
  47278. bottom: 145/788
  47279. }
  47280. },
  47281. handpaw: {
  47282. height: math.unit(13.1, "feet"),
  47283. name: "Handpaw",
  47284. image: {
  47285. source: "./media/characters/roggy/handpaw.svg"
  47286. }
  47287. },
  47288. footpaw: {
  47289. height: math.unit(15.8, "feet"),
  47290. name: "Footpaw",
  47291. image: {
  47292. source: "./media/characters/roggy/footpaw.svg"
  47293. }
  47294. },
  47295. },
  47296. [
  47297. {
  47298. name: "Menacing",
  47299. height: math.unit(30, "feet"),
  47300. default: true
  47301. },
  47302. ]
  47303. ))
  47304. characterMakers.push(() => makeCharacter(
  47305. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  47306. {
  47307. front: {
  47308. height: math.unit(5 + 7/12, "feet"),
  47309. weight: math.unit(135, "lb"),
  47310. name: "Front",
  47311. image: {
  47312. source: "./media/characters/naomi/front.svg",
  47313. extra: 1209/1154,
  47314. bottom: 129/1338
  47315. }
  47316. },
  47317. back: {
  47318. height: math.unit(5 + 7/12, "feet"),
  47319. weight: math.unit(135, "lb"),
  47320. name: "Back",
  47321. image: {
  47322. source: "./media/characters/naomi/back.svg",
  47323. extra: 1252/1190,
  47324. bottom: 23/1275
  47325. }
  47326. },
  47327. },
  47328. [
  47329. {
  47330. name: "Normal",
  47331. height: math.unit(5 + 7 /12, "feet"),
  47332. default: true
  47333. },
  47334. ]
  47335. ))
  47336. characterMakers.push(() => makeCharacter(
  47337. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  47338. {
  47339. side: {
  47340. height: math.unit(35, "meters"),
  47341. name: "Side",
  47342. image: {
  47343. source: "./media/characters/kimpi/side.svg",
  47344. extra: 419/382,
  47345. bottom: 63/482
  47346. }
  47347. },
  47348. hand: {
  47349. height: math.unit(8.96, "meters"),
  47350. name: "Hand",
  47351. image: {
  47352. source: "./media/characters/kimpi/hand.svg"
  47353. }
  47354. },
  47355. },
  47356. [
  47357. {
  47358. name: "Normal",
  47359. height: math.unit(35, "meters"),
  47360. default: true
  47361. },
  47362. ]
  47363. ))
  47364. characterMakers.push(() => makeCharacter(
  47365. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  47366. {
  47367. front: {
  47368. height: math.unit(4 + 4/12, "feet"),
  47369. name: "Front",
  47370. image: {
  47371. source: "./media/characters/pepper-purrloin/front.svg",
  47372. extra: 1141/1024,
  47373. bottom: 21/1162
  47374. }
  47375. },
  47376. },
  47377. [
  47378. {
  47379. name: "Normal",
  47380. height: math.unit(4 + 4/12, "feet"),
  47381. default: true
  47382. },
  47383. ]
  47384. ))
  47385. characterMakers.push(() => makeCharacter(
  47386. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  47387. {
  47388. front: {
  47389. height: math.unit(6 + 2/12, "feet"),
  47390. name: "Front",
  47391. image: {
  47392. source: "./media/characters/raphael/front.svg",
  47393. extra: 1101/962,
  47394. bottom: 59/1160
  47395. }
  47396. },
  47397. },
  47398. [
  47399. {
  47400. name: "Normal",
  47401. height: math.unit(6 + 2/12, "feet"),
  47402. default: true
  47403. },
  47404. ]
  47405. ))
  47406. characterMakers.push(() => makeCharacter(
  47407. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  47408. {
  47409. front: {
  47410. height: math.unit(6, "feet"),
  47411. weight: math.unit(150, "lb"),
  47412. name: "Front",
  47413. image: {
  47414. source: "./media/characters/victor-williams/front.svg",
  47415. extra: 1894/1825,
  47416. bottom: 67/1961
  47417. }
  47418. },
  47419. },
  47420. [
  47421. {
  47422. name: "Normal",
  47423. height: math.unit(6, "feet"),
  47424. default: true
  47425. },
  47426. ]
  47427. ))
  47428. characterMakers.push(() => makeCharacter(
  47429. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  47430. {
  47431. front: {
  47432. height: math.unit(5 + 8/12, "feet"),
  47433. weight: math.unit(150, "lb"),
  47434. name: "Front",
  47435. image: {
  47436. source: "./media/characters/rachel/front.svg",
  47437. extra: 1902/1787,
  47438. bottom: 46/1948
  47439. }
  47440. },
  47441. },
  47442. [
  47443. {
  47444. name: "Base Height",
  47445. height: math.unit(5 + 8/12, "feet"),
  47446. default: true
  47447. },
  47448. {
  47449. name: "Macro",
  47450. height: math.unit(200, "feet")
  47451. },
  47452. {
  47453. name: "Mega Macro",
  47454. height: math.unit(1, "mile")
  47455. },
  47456. {
  47457. name: "Giga Macro",
  47458. height: math.unit(1500, "miles")
  47459. },
  47460. {
  47461. name: "Tera Macro",
  47462. height: math.unit(8000, "miles")
  47463. },
  47464. {
  47465. name: "Tera Macro+",
  47466. height: math.unit(2e5, "miles")
  47467. },
  47468. ]
  47469. ))
  47470. characterMakers.push(() => makeCharacter(
  47471. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  47472. {
  47473. front: {
  47474. height: math.unit(6.5, "feet"),
  47475. name: "Front",
  47476. image: {
  47477. source: "./media/characters/svetlana-rozovskaya/front.svg",
  47478. extra: 860/819,
  47479. bottom: 307/1167
  47480. }
  47481. },
  47482. back: {
  47483. height: math.unit(6.5, "feet"),
  47484. name: "Back",
  47485. image: {
  47486. source: "./media/characters/svetlana-rozovskaya/back.svg",
  47487. extra: 880/837,
  47488. bottom: 395/1275
  47489. }
  47490. },
  47491. sleeping: {
  47492. height: math.unit(2.79, "feet"),
  47493. name: "Sleeping",
  47494. image: {
  47495. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  47496. extra: 465/383,
  47497. bottom: 263/728
  47498. }
  47499. },
  47500. maw: {
  47501. height: math.unit(2.52, "feet"),
  47502. name: "Maw",
  47503. image: {
  47504. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  47505. }
  47506. },
  47507. },
  47508. [
  47509. {
  47510. name: "Normal",
  47511. height: math.unit(6.5, "feet"),
  47512. default: true
  47513. },
  47514. ]
  47515. ))
  47516. characterMakers.push(() => makeCharacter(
  47517. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  47518. {
  47519. front: {
  47520. height: math.unit(5, "feet"),
  47521. name: "Front",
  47522. image: {
  47523. source: "./media/characters/nova-nerium/front.svg",
  47524. extra: 1548/1392,
  47525. bottom: 374/1922
  47526. }
  47527. },
  47528. back: {
  47529. height: math.unit(5, "feet"),
  47530. name: "Back",
  47531. image: {
  47532. source: "./media/characters/nova-nerium/back.svg",
  47533. extra: 1658/1468,
  47534. bottom: 257/1915
  47535. }
  47536. },
  47537. },
  47538. [
  47539. {
  47540. name: "Normal",
  47541. height: math.unit(5, "feet"),
  47542. default: true
  47543. },
  47544. ]
  47545. ))
  47546. characterMakers.push(() => makeCharacter(
  47547. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  47548. {
  47549. front: {
  47550. height: math.unit(5 + 4/12, "feet"),
  47551. name: "Front",
  47552. image: {
  47553. source: "./media/characters/ashe-pyriph/front.svg",
  47554. extra: 1935/1747,
  47555. bottom: 60/1995
  47556. }
  47557. },
  47558. },
  47559. [
  47560. {
  47561. name: "Normal",
  47562. height: math.unit(5 + 4/12, "feet"),
  47563. default: true
  47564. },
  47565. ]
  47566. ))
  47567. characterMakers.push(() => makeCharacter(
  47568. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  47569. {
  47570. front: {
  47571. height: math.unit(8.7, "feet"),
  47572. name: "Front",
  47573. image: {
  47574. source: "./media/characters/flicker-wisp/front.svg",
  47575. extra: 1835/1613,
  47576. bottom: 449/2284
  47577. }
  47578. },
  47579. side: {
  47580. height: math.unit(8.7, "feet"),
  47581. name: "Side",
  47582. image: {
  47583. source: "./media/characters/flicker-wisp/side.svg",
  47584. extra: 1841/1642,
  47585. bottom: 336/2177
  47586. },
  47587. default: true
  47588. },
  47589. maw: {
  47590. height: math.unit(3.35, "feet"),
  47591. name: "Maw",
  47592. image: {
  47593. source: "./media/characters/flicker-wisp/maw.svg",
  47594. extra: 2338/1506,
  47595. bottom: 0/2338
  47596. }
  47597. },
  47598. ovipositor: {
  47599. height: math.unit(4.95, "feet"),
  47600. name: "Ovipositor",
  47601. image: {
  47602. source: "./media/characters/flicker-wisp/ovipositor.svg"
  47603. }
  47604. },
  47605. egg: {
  47606. height: math.unit(0.385, "feet"),
  47607. weight: math.unit(2, "lb"),
  47608. name: "Egg",
  47609. image: {
  47610. source: "./media/characters/flicker-wisp/egg.svg"
  47611. }
  47612. },
  47613. },
  47614. [
  47615. {
  47616. name: "Normal",
  47617. height: math.unit(8.7, "feet"),
  47618. default: true
  47619. },
  47620. ]
  47621. ))
  47622. characterMakers.push(() => makeCharacter(
  47623. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  47624. {
  47625. side: {
  47626. height: math.unit(11, "feet"),
  47627. name: "Side",
  47628. image: {
  47629. source: "./media/characters/faefnul/side.svg",
  47630. extra: 1100/1007,
  47631. bottom: 0/1100
  47632. }
  47633. },
  47634. },
  47635. [
  47636. {
  47637. name: "Normal",
  47638. height: math.unit(11, "feet"),
  47639. default: true
  47640. },
  47641. ]
  47642. ))
  47643. characterMakers.push(() => makeCharacter(
  47644. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  47645. {
  47646. front: {
  47647. height: math.unit(6 + 2/12, "feet"),
  47648. name: "Front",
  47649. image: {
  47650. source: "./media/characters/shady/front.svg",
  47651. extra: 502/461,
  47652. bottom: 9/511
  47653. }
  47654. },
  47655. kneeling: {
  47656. height: math.unit(4.6, "feet"),
  47657. name: "Kneeling",
  47658. image: {
  47659. source: "./media/characters/shady/kneeling.svg",
  47660. extra: 1328/1219,
  47661. bottom: 117/1445
  47662. }
  47663. },
  47664. maw: {
  47665. height: math.unit(2, "feet"),
  47666. name: "Maw",
  47667. image: {
  47668. source: "./media/characters/shady/maw.svg"
  47669. }
  47670. },
  47671. },
  47672. [
  47673. {
  47674. name: "Nano",
  47675. height: math.unit(1, "mm")
  47676. },
  47677. {
  47678. name: "Micro",
  47679. height: math.unit(12, "mm")
  47680. },
  47681. {
  47682. name: "Tiny",
  47683. height: math.unit(3, "inches")
  47684. },
  47685. {
  47686. name: "Normal",
  47687. height: math.unit(6 + 2/12, "feet"),
  47688. default: true
  47689. },
  47690. {
  47691. name: "Big",
  47692. height: math.unit(15, "feet")
  47693. },
  47694. {
  47695. name: "Macro",
  47696. height: math.unit(150, "feet")
  47697. },
  47698. {
  47699. name: "Titanic",
  47700. height: math.unit(500, "feet")
  47701. },
  47702. ]
  47703. ))
  47704. characterMakers.push(() => makeCharacter(
  47705. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  47706. {
  47707. front: {
  47708. height: math.unit(12, "feet"),
  47709. name: "Front",
  47710. image: {
  47711. source: "./media/characters/fenrir/front.svg",
  47712. extra: 968/875,
  47713. bottom: 22/990
  47714. }
  47715. },
  47716. },
  47717. [
  47718. {
  47719. name: "Big",
  47720. height: math.unit(12, "feet"),
  47721. default: true
  47722. },
  47723. ]
  47724. ))
  47725. characterMakers.push(() => makeCharacter(
  47726. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  47727. {
  47728. front: {
  47729. height: math.unit(5 + 4/12, "feet"),
  47730. name: "Front",
  47731. image: {
  47732. source: "./media/characters/makar/front.svg",
  47733. extra: 1181/1112,
  47734. bottom: 78/1259
  47735. }
  47736. },
  47737. },
  47738. [
  47739. {
  47740. name: "Normal",
  47741. height: math.unit(5 + 4/12, "feet"),
  47742. default: true
  47743. },
  47744. ]
  47745. ))
  47746. characterMakers.push(() => makeCharacter(
  47747. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  47748. {
  47749. front: {
  47750. height: math.unit(5 + 7/12, "feet"),
  47751. name: "Front",
  47752. image: {
  47753. source: "./media/characters/callow/front.svg",
  47754. extra: 1482/1304,
  47755. bottom: 23/1505
  47756. }
  47757. },
  47758. back: {
  47759. height: math.unit(5 + 7/12, "feet"),
  47760. name: "Back",
  47761. image: {
  47762. source: "./media/characters/callow/back.svg",
  47763. extra: 1484/1296,
  47764. bottom: 25/1509
  47765. }
  47766. },
  47767. },
  47768. [
  47769. {
  47770. name: "Micro",
  47771. height: math.unit(3, "inches"),
  47772. default: true
  47773. },
  47774. {
  47775. name: "Normal",
  47776. height: math.unit(5 + 7/12, "feet")
  47777. },
  47778. ]
  47779. ))
  47780. characterMakers.push(() => makeCharacter(
  47781. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  47782. {
  47783. front: {
  47784. height: math.unit(6 + 2/12, "feet"),
  47785. name: "Front",
  47786. image: {
  47787. source: "./media/characters/natel/front.svg",
  47788. extra: 1833/1692,
  47789. bottom: 166/1999
  47790. }
  47791. },
  47792. },
  47793. [
  47794. {
  47795. name: "Normal",
  47796. height: math.unit(6 + 2/12, "feet"),
  47797. default: true
  47798. },
  47799. ]
  47800. ))
  47801. characterMakers.push(() => makeCharacter(
  47802. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  47803. {
  47804. front: {
  47805. height: math.unit(1.75, "meters"),
  47806. name: "Front",
  47807. image: {
  47808. source: "./media/characters/misu/front.svg",
  47809. extra: 1690/1558,
  47810. bottom: 234/1924
  47811. }
  47812. },
  47813. back: {
  47814. height: math.unit(1.75, "meters"),
  47815. name: "Back",
  47816. image: {
  47817. source: "./media/characters/misu/back.svg",
  47818. extra: 1762/1618,
  47819. bottom: 146/1908
  47820. }
  47821. },
  47822. frontNude: {
  47823. height: math.unit(1.75, "meters"),
  47824. name: "Front (Nude)",
  47825. image: {
  47826. source: "./media/characters/misu/front-nude.svg",
  47827. extra: 1690/1558,
  47828. bottom: 234/1924
  47829. }
  47830. },
  47831. backNude: {
  47832. height: math.unit(1.75, "meters"),
  47833. name: "Back (Nude)",
  47834. image: {
  47835. source: "./media/characters/misu/back-nude.svg",
  47836. extra: 1762/1618,
  47837. bottom: 146/1908
  47838. }
  47839. },
  47840. frontErect: {
  47841. height: math.unit(1.75, "meters"),
  47842. name: "Front (Erect)",
  47843. image: {
  47844. source: "./media/characters/misu/front-erect.svg",
  47845. extra: 1690/1558,
  47846. bottom: 234/1924
  47847. }
  47848. },
  47849. maw: {
  47850. height: math.unit(0.47, "meters"),
  47851. name: "Maw",
  47852. image: {
  47853. source: "./media/characters/misu/maw.svg"
  47854. }
  47855. },
  47856. head: {
  47857. height: math.unit(0.35, "meters"),
  47858. name: "Head",
  47859. image: {
  47860. source: "./media/characters/misu/head.svg"
  47861. }
  47862. },
  47863. rear: {
  47864. height: math.unit(0.47, "meters"),
  47865. name: "Rear",
  47866. image: {
  47867. source: "./media/characters/misu/rear.svg"
  47868. }
  47869. },
  47870. },
  47871. [
  47872. {
  47873. name: "Normal",
  47874. height: math.unit(1.75, "meters")
  47875. },
  47876. {
  47877. name: "Not good for the people",
  47878. height: math.unit(42, "meters")
  47879. },
  47880. {
  47881. name: "Not good for the neighborhood",
  47882. height: math.unit(135, "meters")
  47883. },
  47884. {
  47885. name: "Bit bigger problem",
  47886. height: math.unit(380, "meters"),
  47887. default: true
  47888. },
  47889. {
  47890. name: "Not good for the city",
  47891. height: math.unit(1.5, "km")
  47892. },
  47893. {
  47894. name: "Not good for the county",
  47895. height: math.unit(5.5, "km")
  47896. },
  47897. {
  47898. name: "Not good for the state",
  47899. height: math.unit(25, "km")
  47900. },
  47901. {
  47902. name: "Not good for the country",
  47903. height: math.unit(125, "km")
  47904. },
  47905. {
  47906. name: "Not good for the continent",
  47907. height: math.unit(2100, "km")
  47908. },
  47909. {
  47910. name: "Not good for the planet",
  47911. height: math.unit(35000, "km")
  47912. },
  47913. {
  47914. name: "Just no",
  47915. height: math.unit(8.5e18, "km")
  47916. },
  47917. ]
  47918. ))
  47919. characterMakers.push(() => makeCharacter(
  47920. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  47921. {
  47922. front: {
  47923. height: math.unit(6.5, "feet"),
  47924. name: "Front",
  47925. image: {
  47926. source: "./media/characters/poppy/front.svg",
  47927. extra: 1878/1812,
  47928. bottom: 43/1921
  47929. }
  47930. },
  47931. feet: {
  47932. height: math.unit(1.06, "feet"),
  47933. name: "Feet",
  47934. image: {
  47935. source: "./media/characters/poppy/feet.svg",
  47936. extra: 1083/1083,
  47937. bottom: 87/1170
  47938. }
  47939. },
  47940. },
  47941. [
  47942. {
  47943. name: "Human",
  47944. height: math.unit(6.5, "feet")
  47945. },
  47946. {
  47947. name: "Default",
  47948. height: math.unit(300, "feet"),
  47949. default: true
  47950. },
  47951. {
  47952. name: "Huge",
  47953. height: math.unit(850, "feet")
  47954. },
  47955. {
  47956. name: "Mega",
  47957. height: math.unit(8000, "feet")
  47958. },
  47959. {
  47960. name: "Giga",
  47961. height: math.unit(300, "miles")
  47962. },
  47963. ]
  47964. ))
  47965. characterMakers.push(() => makeCharacter(
  47966. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  47967. {
  47968. bipedal: {
  47969. height: math.unit(7, "feet"),
  47970. name: "Bipedal",
  47971. image: {
  47972. source: "./media/characters/zener/bipedal.svg",
  47973. extra: 874/805,
  47974. bottom: 109/983
  47975. }
  47976. },
  47977. quadrupedal: {
  47978. height: math.unit(4.64, "feet"),
  47979. name: "Quadrupedal",
  47980. image: {
  47981. source: "./media/characters/zener/quadrupedal.svg",
  47982. extra: 638/507,
  47983. bottom: 190/828
  47984. }
  47985. },
  47986. cock: {
  47987. height: math.unit(18, "inches"),
  47988. name: "Cock",
  47989. image: {
  47990. source: "./media/characters/zener/cock.svg"
  47991. }
  47992. },
  47993. },
  47994. [
  47995. {
  47996. name: "Normal",
  47997. height: math.unit(7, "feet"),
  47998. default: true
  47999. },
  48000. ]
  48001. ))
  48002. characterMakers.push(() => makeCharacter(
  48003. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  48004. {
  48005. nude: {
  48006. height: math.unit(5 + 6/12, "feet"),
  48007. name: "Nude",
  48008. image: {
  48009. source: "./media/characters/charlie-dog/nude.svg",
  48010. extra: 768/734,
  48011. bottom: 26/794
  48012. }
  48013. },
  48014. dressed: {
  48015. height: math.unit(5 + 6/12, "feet"),
  48016. name: "Dressed",
  48017. image: {
  48018. source: "./media/characters/charlie-dog/dressed.svg",
  48019. extra: 768/734,
  48020. bottom: 26/794
  48021. }
  48022. },
  48023. },
  48024. [
  48025. {
  48026. name: "Normal",
  48027. height: math.unit(5 + 6/12, "feet"),
  48028. default: true
  48029. },
  48030. ]
  48031. ))
  48032. characterMakers.push(() => makeCharacter(
  48033. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  48034. {
  48035. front: {
  48036. height: math.unit(6 + 4/12, "feet"),
  48037. name: "Front",
  48038. image: {
  48039. source: "./media/characters/ir'istrasz/front.svg",
  48040. extra: 1014/977,
  48041. bottom: 65/1079
  48042. }
  48043. },
  48044. back: {
  48045. height: math.unit(6 + 4/12, "feet"),
  48046. name: "Back",
  48047. image: {
  48048. source: "./media/characters/ir'istrasz/back.svg",
  48049. extra: 1024/992,
  48050. bottom: 34/1058
  48051. }
  48052. },
  48053. },
  48054. [
  48055. {
  48056. name: "Normal",
  48057. height: math.unit(6 + 4/12, "feet"),
  48058. default: true
  48059. },
  48060. ]
  48061. ))
  48062. characterMakers.push(() => makeCharacter(
  48063. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  48064. {
  48065. front: {
  48066. height: math.unit(5 + 8/12, "feet"),
  48067. name: "Front",
  48068. image: {
  48069. source: "./media/characters/dee-ditto/front.svg",
  48070. extra: 1874/1785,
  48071. bottom: 68/1942
  48072. }
  48073. },
  48074. back: {
  48075. height: math.unit(5 + 8/12, "feet"),
  48076. name: "Back",
  48077. image: {
  48078. source: "./media/characters/dee-ditto/back.svg",
  48079. extra: 1870/1783,
  48080. bottom: 77/1947
  48081. }
  48082. },
  48083. },
  48084. [
  48085. {
  48086. name: "Normal",
  48087. height: math.unit(5 + 8/12, "feet"),
  48088. default: true
  48089. },
  48090. ]
  48091. ))
  48092. characterMakers.push(() => makeCharacter(
  48093. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  48094. {
  48095. front: {
  48096. height: math.unit(7 + 6/12, "feet"),
  48097. name: "Front",
  48098. image: {
  48099. source: "./media/characters/fey/front.svg",
  48100. extra: 995/979,
  48101. bottom: 30/1025
  48102. }
  48103. },
  48104. back: {
  48105. height: math.unit(7 + 6/12, "feet"),
  48106. name: "Back",
  48107. image: {
  48108. source: "./media/characters/fey/back.svg",
  48109. extra: 1079/1008,
  48110. bottom: 5/1084
  48111. }
  48112. },
  48113. dressed: {
  48114. height: math.unit(7 + 6/12, "feet"),
  48115. name: "Dressed",
  48116. image: {
  48117. source: "./media/characters/fey/dressed.svg",
  48118. extra: 995/979,
  48119. bottom: 30/1025
  48120. }
  48121. },
  48122. },
  48123. [
  48124. {
  48125. name: "Normal",
  48126. height: math.unit(7 + 6/12, "feet"),
  48127. default: true
  48128. },
  48129. ]
  48130. ))
  48131. characterMakers.push(() => makeCharacter(
  48132. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  48133. {
  48134. standing: {
  48135. height: math.unit(17, "feet"),
  48136. name: "Standing",
  48137. image: {
  48138. source: "./media/characters/aster/standing.svg",
  48139. extra: 1798/1598,
  48140. bottom: 117/1915
  48141. }
  48142. },
  48143. },
  48144. [
  48145. {
  48146. name: "Normal",
  48147. height: math.unit(17, "feet"),
  48148. default: true
  48149. },
  48150. {
  48151. name: "Homewrecker",
  48152. height: math.unit(95, "feet")
  48153. },
  48154. {
  48155. name: "Planet Devourer",
  48156. height: math.unit(1008000, "miles")
  48157. },
  48158. ]
  48159. ))
  48160. characterMakers.push(() => makeCharacter(
  48161. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  48162. {
  48163. front: {
  48164. height: math.unit(6 + 5/12, "feet"),
  48165. weight: math.unit(265, "lb"),
  48166. name: "Front",
  48167. image: {
  48168. source: "./media/characters/devon-childs/front.svg",
  48169. extra: 1795/1721,
  48170. bottom: 41/1836
  48171. }
  48172. },
  48173. side: {
  48174. height: math.unit(6 + 5/12, "feet"),
  48175. weight: math.unit(265, "lb"),
  48176. name: "Side",
  48177. image: {
  48178. source: "./media/characters/devon-childs/side.svg",
  48179. extra: 1812/1738,
  48180. bottom: 30/1842
  48181. }
  48182. },
  48183. back: {
  48184. height: math.unit(6 + 5/12, "feet"),
  48185. weight: math.unit(265, "lb"),
  48186. name: "Back",
  48187. image: {
  48188. source: "./media/characters/devon-childs/back.svg",
  48189. extra: 1808/1735,
  48190. bottom: 23/1831
  48191. }
  48192. },
  48193. hand: {
  48194. height: math.unit(1.464, "feet"),
  48195. name: "Hand",
  48196. image: {
  48197. source: "./media/characters/devon-childs/hand.svg"
  48198. }
  48199. },
  48200. foot: {
  48201. height: math.unit(1.6, "feet"),
  48202. name: "Foot",
  48203. image: {
  48204. source: "./media/characters/devon-childs/foot.svg"
  48205. }
  48206. },
  48207. },
  48208. [
  48209. {
  48210. name: "Micro",
  48211. height: math.unit(7, "cm")
  48212. },
  48213. {
  48214. name: "Normal",
  48215. height: math.unit(6 + 5/12, "feet"),
  48216. default: true
  48217. },
  48218. {
  48219. name: "Macro",
  48220. height: math.unit(154, "feet")
  48221. },
  48222. ]
  48223. ))
  48224. characterMakers.push(() => makeCharacter(
  48225. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  48226. {
  48227. front: {
  48228. height: math.unit(6, "feet"),
  48229. weight: math.unit(180, "lb"),
  48230. name: "Front",
  48231. image: {
  48232. source: "./media/characters/lydemox-vir/front.svg",
  48233. extra: 1632/1435,
  48234. bottom: 58/1690
  48235. }
  48236. },
  48237. frontSFW: {
  48238. height: math.unit(6, "feet"),
  48239. weight: math.unit(180, "lb"),
  48240. name: "Front (SFW)",
  48241. image: {
  48242. source: "./media/characters/lydemox-vir/front-sfw.svg",
  48243. extra: 1632/1435,
  48244. bottom: 58/1690
  48245. }
  48246. },
  48247. back: {
  48248. height: math.unit(6, "feet"),
  48249. weight: math.unit(180, "lb"),
  48250. name: "Back",
  48251. image: {
  48252. source: "./media/characters/lydemox-vir/back.svg",
  48253. extra: 1593/1408,
  48254. bottom: 31/1624
  48255. }
  48256. },
  48257. paw: {
  48258. height: math.unit(1.85, "feet"),
  48259. name: "Paw",
  48260. image: {
  48261. source: "./media/characters/lydemox-vir/paw.svg"
  48262. }
  48263. },
  48264. dick: {
  48265. height: math.unit(1.8, "feet"),
  48266. name: "Dick",
  48267. image: {
  48268. source: "./media/characters/lydemox-vir/dick.svg"
  48269. }
  48270. },
  48271. },
  48272. [
  48273. {
  48274. name: "Macro",
  48275. height: math.unit(100, "feet"),
  48276. default: true
  48277. },
  48278. {
  48279. name: "Teramacro",
  48280. height: math.unit(1, "earth")
  48281. },
  48282. {
  48283. name: "Planetary",
  48284. height: math.unit(20, "earths")
  48285. },
  48286. ]
  48287. ))
  48288. characterMakers.push(() => makeCharacter(
  48289. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  48290. {
  48291. front: {
  48292. height: math.unit(15 + 8/12, "feet"),
  48293. weight: math.unit(1237, "kg"),
  48294. name: "Front",
  48295. image: {
  48296. source: "./media/characters/mia/front.svg",
  48297. extra: 1573/1446,
  48298. bottom: 58/1631
  48299. }
  48300. },
  48301. },
  48302. [
  48303. {
  48304. name: "Small",
  48305. height: math.unit(9 + 5/12, "feet")
  48306. },
  48307. {
  48308. name: "Normal",
  48309. height: math.unit(15 + 8/12, "feet"),
  48310. default: true
  48311. },
  48312. ]
  48313. ))
  48314. characterMakers.push(() => makeCharacter(
  48315. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  48316. {
  48317. front: {
  48318. height: math.unit(10 + 6/12, "feet"),
  48319. weight: math.unit(1.3, "tons"),
  48320. name: "Front",
  48321. image: {
  48322. source: "./media/characters/mr-graves/front.svg",
  48323. extra: 1779/1695,
  48324. bottom: 198/1977
  48325. }
  48326. },
  48327. },
  48328. [
  48329. {
  48330. name: "Normal",
  48331. height: math.unit(10 + 6 /12, "feet"),
  48332. default: true
  48333. },
  48334. ]
  48335. ))
  48336. characterMakers.push(() => makeCharacter(
  48337. { name: "Jess", species: ["human"], tags: ["anthro"] },
  48338. {
  48339. dressedFront: {
  48340. height: math.unit(5 + 8/12, "feet"),
  48341. weight: math.unit(125, "lb"),
  48342. name: "Dressed (Front)",
  48343. image: {
  48344. source: "./media/characters/jess/dressed-front.svg",
  48345. extra: 1176/1152,
  48346. bottom: 42/1218
  48347. }
  48348. },
  48349. dressedSide: {
  48350. height: math.unit(5 + 8/12, "feet"),
  48351. weight: math.unit(125, "lb"),
  48352. name: "Dressed (Side)",
  48353. image: {
  48354. source: "./media/characters/jess/dressed-side.svg",
  48355. extra: 1204/1190,
  48356. bottom: 6/1210
  48357. }
  48358. },
  48359. nudeFront: {
  48360. height: math.unit(5 + 8/12, "feet"),
  48361. weight: math.unit(125, "lb"),
  48362. name: "Nude (Front)",
  48363. image: {
  48364. source: "./media/characters/jess/nude-front.svg",
  48365. extra: 1176/1152,
  48366. bottom: 42/1218
  48367. }
  48368. },
  48369. nudeSide: {
  48370. height: math.unit(5 + 8/12, "feet"),
  48371. weight: math.unit(125, "lb"),
  48372. name: "Nude (Side)",
  48373. image: {
  48374. source: "./media/characters/jess/nude-side.svg",
  48375. extra: 1204/1190,
  48376. bottom: 6/1210
  48377. }
  48378. },
  48379. organsFront: {
  48380. height: math.unit(2.83799342105, "feet"),
  48381. name: "Organs (Front)",
  48382. image: {
  48383. source: "./media/characters/jess/organs-front.svg"
  48384. }
  48385. },
  48386. organsSide: {
  48387. height: math.unit(2.64225290474, "feet"),
  48388. name: "Organs (Side)",
  48389. image: {
  48390. source: "./media/characters/jess/organs-side.svg"
  48391. }
  48392. },
  48393. digestiveTractFront: {
  48394. height: math.unit(2.8106580871, "feet"),
  48395. name: "Digestive Tract (Front)",
  48396. image: {
  48397. source: "./media/characters/jess/digestive-tract-front.svg"
  48398. }
  48399. },
  48400. digestiveTractSide: {
  48401. height: math.unit(2.54365045014, "feet"),
  48402. name: "Digestive Tract (Side)",
  48403. image: {
  48404. source: "./media/characters/jess/digestive-tract-side.svg"
  48405. }
  48406. },
  48407. respiratorySystemFront: {
  48408. height: math.unit(1.11196233456, "feet"),
  48409. name: "Respiratory System (Front)",
  48410. image: {
  48411. source: "./media/characters/jess/respiratory-system-front.svg"
  48412. }
  48413. },
  48414. respiratorySystemSide: {
  48415. height: math.unit(0.89327966297, "feet"),
  48416. name: "Respiratory System (Side)",
  48417. image: {
  48418. source: "./media/characters/jess/respiratory-system-side.svg"
  48419. }
  48420. },
  48421. urinaryTractFront: {
  48422. height: math.unit(1.16126356186, "feet"),
  48423. name: "Urinary Tract (Front)",
  48424. image: {
  48425. source: "./media/characters/jess/urinary-tract-front.svg"
  48426. }
  48427. },
  48428. urinaryTractSide: {
  48429. height: math.unit(1.20910039627, "feet"),
  48430. name: "Urinary Tract (Side)",
  48431. image: {
  48432. source: "./media/characters/jess/urinary-tract-side.svg"
  48433. }
  48434. },
  48435. reproductiveOrgansFront: {
  48436. height: math.unit(0.48422591566, "feet"),
  48437. name: "Reproductive Organs (Front)",
  48438. image: {
  48439. source: "./media/characters/jess/reproductive-organs-front.svg"
  48440. }
  48441. },
  48442. reproductiveOrgansSide: {
  48443. height: math.unit(0.61553314481, "feet"),
  48444. name: "Reproductive Organs (Side)",
  48445. image: {
  48446. source: "./media/characters/jess/reproductive-organs-side.svg"
  48447. }
  48448. },
  48449. breastsFront: {
  48450. height: math.unit(0.47690395121, "feet"),
  48451. name: "Breasts (Front)",
  48452. image: {
  48453. source: "./media/characters/jess/breasts-front.svg"
  48454. }
  48455. },
  48456. breastsSide: {
  48457. height: math.unit(0.30556998307, "feet"),
  48458. name: "Breasts (Side)",
  48459. image: {
  48460. source: "./media/characters/jess/breasts-side.svg"
  48461. }
  48462. },
  48463. heartFront: {
  48464. height: math.unit(0.53011022622, "feet"),
  48465. name: "Heart (Front)",
  48466. image: {
  48467. source: "./media/characters/jess/heart-front.svg"
  48468. }
  48469. },
  48470. heartSide: {
  48471. height: math.unit(0.51790695213, "feet"),
  48472. name: "Heart (Side)",
  48473. image: {
  48474. source: "./media/characters/jess/heart-side.svg"
  48475. }
  48476. },
  48477. earsAndNoseFront: {
  48478. height: math.unit(0.29385483995, "feet"),
  48479. name: "Ears and Nose (Front)",
  48480. image: {
  48481. source: "./media/characters/jess/ears-and-nose-front.svg"
  48482. }
  48483. },
  48484. earsAndNoseSide: {
  48485. height: math.unit(0.18109658741, "feet"),
  48486. name: "Ears and Nose (Side)",
  48487. image: {
  48488. source: "./media/characters/jess/ears-and-nose-side.svg"
  48489. }
  48490. },
  48491. },
  48492. [
  48493. {
  48494. name: "Normal",
  48495. height: math.unit(5 + 8/12, "feet"),
  48496. default: true
  48497. },
  48498. ]
  48499. ))
  48500. characterMakers.push(() => makeCharacter(
  48501. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  48502. {
  48503. front: {
  48504. height: math.unit(6, "feet"),
  48505. weight: math.unit(6.64467e-7, "grams"),
  48506. name: "Front",
  48507. image: {
  48508. source: "./media/characters/wimpering/front.svg",
  48509. extra: 597/587,
  48510. bottom: 34/631
  48511. }
  48512. },
  48513. },
  48514. [
  48515. {
  48516. name: "Micro",
  48517. height: math.unit(0.4, "mm"),
  48518. default: true
  48519. },
  48520. ]
  48521. ))
  48522. //characters
  48523. function makeCharacters() {
  48524. const results = [];
  48525. characterMakers.forEach(character => {
  48526. results.push(character());
  48527. });
  48528. return results;
  48529. }