less copy protection, more size visualization
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 

63207 linhas
1.6 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.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. }
  2319. //species
  2320. function getSpeciesInfo(speciesList) {
  2321. let result = new Set();
  2322. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2323. result.add(entry)
  2324. });
  2325. return Array.from(result);
  2326. };
  2327. function getSpeciesInfoHelper(species) {
  2328. if (!speciesData[species]) {
  2329. console.warn(species + " doesn't exist");
  2330. return [];
  2331. }
  2332. if (speciesData[species].parents) {
  2333. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2334. } else {
  2335. return [species];
  2336. }
  2337. }
  2338. characterMakers.push(() => makeCharacter(
  2339. {
  2340. name: "Fen",
  2341. species: ["crux"],
  2342. description: {
  2343. title: "Bio",
  2344. text: "Very furry. Sheds on everything."
  2345. },
  2346. tags: [
  2347. "anthro",
  2348. "goo"
  2349. ]
  2350. },
  2351. {
  2352. front: {
  2353. height: math.unit(12, "feet"),
  2354. weight: math.unit(2400, "lb"),
  2355. preyCapacity: math.unit(1, "people"),
  2356. name: "Front",
  2357. image: {
  2358. source: "./media/characters/fen/front.svg",
  2359. extra: 1804/1562,
  2360. bottom: 205/2009
  2361. },
  2362. extraAttributes: {
  2363. pawSize: {
  2364. name: "Paw Size",
  2365. power: 2,
  2366. type: "area",
  2367. base: math.unit(0.35, "m^2")
  2368. }
  2369. }
  2370. },
  2371. diving: {
  2372. height: math.unit(4.9, "meters"),
  2373. weight: math.unit(2400, "lb"),
  2374. name: "Diving",
  2375. image: {
  2376. source: "./media/characters/fen/diving.svg"
  2377. }
  2378. },
  2379. sleeby: {
  2380. height: math.unit(3.45, "meters"),
  2381. weight: math.unit(2400, "lb"),
  2382. name: "Sleeby",
  2383. image: {
  2384. source: "./media/characters/fen/sleeby.svg"
  2385. }
  2386. },
  2387. goo: {
  2388. height: math.unit(12, "feet"),
  2389. weight: math.unit(3600, "lb"),
  2390. volume: math.unit(1000, "liters"),
  2391. preyCapacity: math.unit(6, "people"),
  2392. name: "Goo",
  2393. image: {
  2394. source: "./media/characters/fen/goo.svg",
  2395. extra: 1307/1071,
  2396. bottom: 134/1441
  2397. }
  2398. },
  2399. horror: {
  2400. height: math.unit(13.6, "feet"),
  2401. weight: math.unit(2400, "lb"),
  2402. preyCapacity: math.unit(1, "people"),
  2403. name: "Horror",
  2404. image: {
  2405. source: "./media/characters/fen/horror.svg",
  2406. extra: 893/797,
  2407. bottom: 0/893
  2408. }
  2409. },
  2410. gooNsfw: {
  2411. height: math.unit(12, "feet"),
  2412. weight: math.unit(3750, "lb"),
  2413. volume: math.unit(1000, "liters"),
  2414. preyCapacity: math.unit(6, "people"),
  2415. name: "Goo (NSFW)",
  2416. image: {
  2417. source: "./media/characters/fen/goo-nsfw.svg",
  2418. extra: 1875/1734,
  2419. bottom: 122/1997
  2420. }
  2421. },
  2422. maw: {
  2423. height: math.unit(5.03, "feet"),
  2424. name: "Maw",
  2425. image: {
  2426. source: "./media/characters/fen/maw.svg"
  2427. }
  2428. },
  2429. gooCeiling: {
  2430. height: math.unit(6.6, "feet"),
  2431. weight: math.unit(3000, "lb"),
  2432. volume: math.unit(1000, "liters"),
  2433. preyCapacity: math.unit(6, "people"),
  2434. name: "Maw (Goo)",
  2435. image: {
  2436. source: "./media/characters/fen/goo-maw.svg"
  2437. }
  2438. },
  2439. paw: {
  2440. height: math.unit(3.77, "feet"),
  2441. name: "Paw",
  2442. image: {
  2443. source: "./media/characters/fen/paw.svg"
  2444. },
  2445. extraAttributes: {
  2446. "toeSize": {
  2447. name: "Toe Size",
  2448. power: 2,
  2449. type: "area",
  2450. base: math.unit(0.02875, "m^2")
  2451. },
  2452. "pawSize": {
  2453. name: "Paw Size",
  2454. power: 2,
  2455. type: "area",
  2456. base: math.unit(0.378, "m^2")
  2457. },
  2458. }
  2459. },
  2460. tail: {
  2461. height: math.unit(12.1, "feet"),
  2462. name: "Tail",
  2463. image: {
  2464. source: "./media/characters/fen/tail.svg"
  2465. }
  2466. },
  2467. tailFull: {
  2468. height: math.unit(12.1, "feet"),
  2469. name: "Full Tail",
  2470. image: {
  2471. source: "./media/characters/fen/tail-full.svg"
  2472. }
  2473. },
  2474. back: {
  2475. height: math.unit(12, "feet"),
  2476. weight: math.unit(2400, "lb"),
  2477. name: "Back",
  2478. image: {
  2479. source: "./media/characters/fen/back.svg",
  2480. },
  2481. info: {
  2482. description: {
  2483. mode: "append",
  2484. text: "\n\nHe is not currently looking at you."
  2485. }
  2486. }
  2487. },
  2488. full: {
  2489. height: math.unit(1.85, "meter"),
  2490. weight: math.unit(3200, "lb"),
  2491. preyCapacity: math.unit(3, "people"),
  2492. name: "Full",
  2493. image: {
  2494. source: "./media/characters/fen/full.svg",
  2495. extra: 1133/859,
  2496. bottom: 145/1278
  2497. },
  2498. info: {
  2499. description: {
  2500. mode: "append",
  2501. text: "\n\nMunch."
  2502. }
  2503. }
  2504. },
  2505. gooLounging: {
  2506. height: math.unit(4.53, "feet"),
  2507. weight: math.unit(3000, "lb"),
  2508. preyCapacity: math.unit(6, "people"),
  2509. name: "Goo (Lounging)",
  2510. image: {
  2511. source: "./media/characters/fen/goo-lounging.svg",
  2512. bottom: 116 / 613
  2513. }
  2514. },
  2515. lounging: {
  2516. height: math.unit(10.52, "feet"),
  2517. weight: math.unit(2400, "lb"),
  2518. name: "Lounging",
  2519. image: {
  2520. source: "./media/characters/fen/lounging.svg"
  2521. }
  2522. },
  2523. },
  2524. [
  2525. {
  2526. name: "Small",
  2527. height: math.unit(2.2428, "meter")
  2528. },
  2529. {
  2530. name: "Normal",
  2531. height: math.unit(12, "feet"),
  2532. default: true,
  2533. },
  2534. {
  2535. name: "Big",
  2536. height: math.unit(20, "feet")
  2537. },
  2538. {
  2539. name: "Minimacro",
  2540. height: math.unit(40, "feet"),
  2541. info: {
  2542. description: {
  2543. mode: "append",
  2544. text: "\n\nTOO DAMN BIG"
  2545. }
  2546. }
  2547. },
  2548. {
  2549. name: "Macro",
  2550. height: math.unit(100, "feet"),
  2551. info: {
  2552. description: {
  2553. mode: "append",
  2554. text: "\n\nTOO DAMN BIG"
  2555. }
  2556. }
  2557. },
  2558. {
  2559. name: "Megamacro",
  2560. height: math.unit(2, "miles")
  2561. },
  2562. {
  2563. name: "Gigamacro",
  2564. height: math.unit(10, "earths")
  2565. },
  2566. ]
  2567. ))
  2568. characterMakers.push(() => makeCharacter(
  2569. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2570. {
  2571. front: {
  2572. height: math.unit(183, "cm"),
  2573. weight: math.unit(80, "kg"),
  2574. name: "Front",
  2575. image: {
  2576. source: "./media/characters/sofia-fluttertail/front.svg",
  2577. bottom: 0.01,
  2578. extra: 2154 / 2081
  2579. }
  2580. },
  2581. frontAlt: {
  2582. height: math.unit(183, "cm"),
  2583. weight: math.unit(80, "kg"),
  2584. name: "Front (alt)",
  2585. image: {
  2586. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2587. }
  2588. },
  2589. back: {
  2590. height: math.unit(183, "cm"),
  2591. weight: math.unit(80, "kg"),
  2592. name: "Back",
  2593. image: {
  2594. source: "./media/characters/sofia-fluttertail/back.svg"
  2595. }
  2596. },
  2597. kneeling: {
  2598. height: math.unit(125, "cm"),
  2599. weight: math.unit(80, "kg"),
  2600. name: "Kneeling",
  2601. image: {
  2602. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2603. extra: 1033 / 977,
  2604. bottom: 23.7 / 1057
  2605. }
  2606. },
  2607. maw: {
  2608. height: math.unit(183 / 5, "cm"),
  2609. name: "Maw",
  2610. image: {
  2611. source: "./media/characters/sofia-fluttertail/maw.svg"
  2612. }
  2613. },
  2614. mawcloseup: {
  2615. height: math.unit(183 / 5 * 0.41, "cm"),
  2616. name: "Maw (Closeup)",
  2617. image: {
  2618. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2619. }
  2620. },
  2621. paws: {
  2622. height: math.unit(1.17, "feet"),
  2623. name: "Paws",
  2624. image: {
  2625. source: "./media/characters/sofia-fluttertail/paws.svg",
  2626. extra: 851 / 851,
  2627. bottom: 17 / 868
  2628. }
  2629. },
  2630. },
  2631. [
  2632. {
  2633. name: "Normal",
  2634. height: math.unit(1.83, "meter")
  2635. },
  2636. {
  2637. name: "Size Thief",
  2638. height: math.unit(18, "feet")
  2639. },
  2640. {
  2641. name: "50 Foot Collie",
  2642. height: math.unit(50, "feet")
  2643. },
  2644. {
  2645. name: "Macro",
  2646. height: math.unit(96, "feet"),
  2647. default: true
  2648. },
  2649. {
  2650. name: "Megamerger",
  2651. height: math.unit(650, "feet")
  2652. },
  2653. ]
  2654. ))
  2655. characterMakers.push(() => makeCharacter(
  2656. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2657. {
  2658. front: {
  2659. height: math.unit(7, "feet"),
  2660. weight: math.unit(100, "kg"),
  2661. name: "Front",
  2662. image: {
  2663. source: "./media/characters/march/front.svg",
  2664. extra: 1992/1851,
  2665. bottom: 39/2031
  2666. }
  2667. },
  2668. foot: {
  2669. height: math.unit(0.9, "feet"),
  2670. name: "Foot",
  2671. image: {
  2672. source: "./media/characters/march/foot.svg"
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(7.9, "feet")
  2680. },
  2681. {
  2682. name: "Macro",
  2683. height: math.unit(220, "meters")
  2684. },
  2685. {
  2686. name: "Megamacro",
  2687. height: math.unit(2.98, "km"),
  2688. default: true
  2689. },
  2690. {
  2691. name: "Gigamacro",
  2692. height: math.unit(15963, "km")
  2693. },
  2694. {
  2695. name: "Teramacro",
  2696. height: math.unit(2980000000, "km")
  2697. },
  2698. {
  2699. name: "Examacro",
  2700. height: math.unit(250, "parsecs")
  2701. },
  2702. ]
  2703. ))
  2704. characterMakers.push(() => makeCharacter(
  2705. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2706. {
  2707. front: {
  2708. height: math.unit(6, "feet"),
  2709. weight: math.unit(60, "kg"),
  2710. name: "Front",
  2711. image: {
  2712. source: "./media/characters/noir/front.svg",
  2713. extra: 1,
  2714. bottom: 0.032
  2715. }
  2716. },
  2717. },
  2718. [
  2719. {
  2720. name: "Normal",
  2721. height: math.unit(6.6, "feet")
  2722. },
  2723. {
  2724. name: "Macro",
  2725. height: math.unit(500, "feet")
  2726. },
  2727. {
  2728. name: "Megamacro",
  2729. height: math.unit(2.5, "km"),
  2730. default: true
  2731. },
  2732. {
  2733. name: "Gigamacro",
  2734. height: math.unit(22500, "km")
  2735. },
  2736. {
  2737. name: "Teramacro",
  2738. height: math.unit(2500000000, "km")
  2739. },
  2740. {
  2741. name: "Examacro",
  2742. height: math.unit(200, "parsecs")
  2743. },
  2744. ]
  2745. ))
  2746. characterMakers.push(() => makeCharacter(
  2747. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2748. {
  2749. front: {
  2750. height: math.unit(7, "feet"),
  2751. weight: math.unit(100, "kg"),
  2752. name: "Front",
  2753. image: {
  2754. source: "./media/characters/okuri/front.svg",
  2755. extra: 739/665,
  2756. bottom: 39/778
  2757. }
  2758. },
  2759. back: {
  2760. height: math.unit(7, "feet"),
  2761. weight: math.unit(100, "kg"),
  2762. name: "Back",
  2763. image: {
  2764. source: "./media/characters/okuri/back.svg",
  2765. extra: 734/653,
  2766. bottom: 13/747
  2767. }
  2768. },
  2769. sitting: {
  2770. height: math.unit(2.95, "feet"),
  2771. weight: math.unit(100, "kg"),
  2772. name: "Sitting",
  2773. image: {
  2774. source: "./media/characters/okuri/sitting.svg",
  2775. extra: 370/318,
  2776. bottom: 99/469
  2777. }
  2778. },
  2779. },
  2780. [
  2781. {
  2782. name: "Smallest",
  2783. height: math.unit(5 + 2/12, "feet")
  2784. },
  2785. {
  2786. name: "Smaller",
  2787. height: math.unit(300, "feet")
  2788. },
  2789. {
  2790. name: "Small",
  2791. height: math.unit(1000, "feet")
  2792. },
  2793. {
  2794. name: "Macro",
  2795. height: math.unit(1, "mile")
  2796. },
  2797. {
  2798. name: "Mega Macro (Small)",
  2799. height: math.unit(20, "km")
  2800. },
  2801. {
  2802. name: "Mega Macro (Large)",
  2803. height: math.unit(600, "km")
  2804. },
  2805. {
  2806. name: "Giga Macro",
  2807. height: math.unit(10000, "km")
  2808. },
  2809. {
  2810. name: "Normal",
  2811. height: math.unit(577560, "km"),
  2812. default: true
  2813. },
  2814. {
  2815. name: "Large",
  2816. height: math.unit(4, "galaxies")
  2817. },
  2818. {
  2819. name: "Largest",
  2820. height: math.unit(15, "multiverses")
  2821. },
  2822. ]
  2823. ))
  2824. characterMakers.push(() => makeCharacter(
  2825. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2826. {
  2827. front: {
  2828. height: math.unit(7, "feet"),
  2829. weight: math.unit(100, "kg"),
  2830. name: "Front",
  2831. image: {
  2832. source: "./media/characters/manny/front.svg",
  2833. extra: 1,
  2834. bottom: 0.06
  2835. }
  2836. },
  2837. back: {
  2838. height: math.unit(7, "feet"),
  2839. weight: math.unit(100, "kg"),
  2840. name: "Back",
  2841. image: {
  2842. source: "./media/characters/manny/back.svg",
  2843. extra: 1,
  2844. bottom: 0.014
  2845. }
  2846. },
  2847. },
  2848. [
  2849. {
  2850. name: "Normal",
  2851. height: math.unit(7, "feet"),
  2852. },
  2853. {
  2854. name: "Macro",
  2855. height: math.unit(78, "feet"),
  2856. default: true
  2857. },
  2858. {
  2859. name: "Macro+",
  2860. height: math.unit(300, "meters")
  2861. },
  2862. {
  2863. name: "Macro++",
  2864. height: math.unit(2400, "meters")
  2865. },
  2866. {
  2867. name: "Megamacro",
  2868. height: math.unit(5167, "meters")
  2869. },
  2870. {
  2871. name: "Gigamacro",
  2872. height: math.unit(41769, "miles")
  2873. },
  2874. ]
  2875. ))
  2876. characterMakers.push(() => makeCharacter(
  2877. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2878. {
  2879. front: {
  2880. height: math.unit(7, "feet"),
  2881. weight: math.unit(100, "kg"),
  2882. name: "Front",
  2883. image: {
  2884. source: "./media/characters/adake/front-1.svg"
  2885. }
  2886. },
  2887. frontAlt: {
  2888. height: math.unit(7, "feet"),
  2889. weight: math.unit(100, "kg"),
  2890. name: "Front (Alt)",
  2891. image: {
  2892. source: "./media/characters/adake/front-2.svg",
  2893. extra: 1,
  2894. bottom: 0.01
  2895. }
  2896. },
  2897. back: {
  2898. height: math.unit(7, "feet"),
  2899. weight: math.unit(100, "kg"),
  2900. name: "Back",
  2901. image: {
  2902. source: "./media/characters/adake/back.svg",
  2903. }
  2904. },
  2905. kneel: {
  2906. height: math.unit(5.385, "feet"),
  2907. weight: math.unit(100, "kg"),
  2908. name: "Kneeling",
  2909. image: {
  2910. source: "./media/characters/adake/kneel.svg",
  2911. bottom: 0.052
  2912. }
  2913. },
  2914. },
  2915. [
  2916. {
  2917. name: "Normal",
  2918. height: math.unit(7, "feet"),
  2919. },
  2920. {
  2921. name: "Macro",
  2922. height: math.unit(78, "feet"),
  2923. default: true
  2924. },
  2925. {
  2926. name: "Macro+",
  2927. height: math.unit(300, "meters")
  2928. },
  2929. {
  2930. name: "Macro++",
  2931. height: math.unit(2400, "meters")
  2932. },
  2933. {
  2934. name: "Megamacro",
  2935. height: math.unit(5167, "meters")
  2936. },
  2937. {
  2938. name: "Gigamacro",
  2939. height: math.unit(41769, "miles")
  2940. },
  2941. ]
  2942. ))
  2943. characterMakers.push(() => makeCharacter(
  2944. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2945. {
  2946. front: {
  2947. height: math.unit(1.65, "meters"),
  2948. weight: math.unit(50, "kg"),
  2949. name: "Front",
  2950. image: {
  2951. source: "./media/characters/elijah/front.svg",
  2952. extra: 858 / 830,
  2953. bottom: 95.5 / 953.8559
  2954. }
  2955. },
  2956. back: {
  2957. height: math.unit(1.65, "meters"),
  2958. weight: math.unit(50, "kg"),
  2959. name: "Back",
  2960. image: {
  2961. source: "./media/characters/elijah/back.svg",
  2962. extra: 895 / 850,
  2963. bottom: 5.3 / 897.956
  2964. }
  2965. },
  2966. frontNsfw: {
  2967. height: math.unit(1.65, "meters"),
  2968. weight: math.unit(50, "kg"),
  2969. name: "Front (NSFW)",
  2970. image: {
  2971. source: "./media/characters/elijah/front-nsfw.svg",
  2972. extra: 858 / 830,
  2973. bottom: 95.5 / 953.8559
  2974. }
  2975. },
  2976. backNsfw: {
  2977. height: math.unit(1.65, "meters"),
  2978. weight: math.unit(50, "kg"),
  2979. name: "Back (NSFW)",
  2980. image: {
  2981. source: "./media/characters/elijah/back-nsfw.svg",
  2982. extra: 895 / 850,
  2983. bottom: 5.3 / 897.956
  2984. }
  2985. },
  2986. dick: {
  2987. height: math.unit(1, "feet"),
  2988. name: "Dick",
  2989. image: {
  2990. source: "./media/characters/elijah/dick.svg"
  2991. }
  2992. },
  2993. beakOpen: {
  2994. height: math.unit(1.25, "feet"),
  2995. name: "Beak (Open)",
  2996. image: {
  2997. source: "./media/characters/elijah/beak-open.svg"
  2998. }
  2999. },
  3000. beakShut: {
  3001. height: math.unit(1.25, "feet"),
  3002. name: "Beak (Shut)",
  3003. image: {
  3004. source: "./media/characters/elijah/beak-shut.svg"
  3005. }
  3006. },
  3007. footFlexing: {
  3008. height: math.unit(1.61, "feet"),
  3009. name: "Foot (Flexing)",
  3010. image: {
  3011. source: "./media/characters/elijah/foot-flexing.svg"
  3012. }
  3013. },
  3014. footStepping: {
  3015. height: math.unit(1.44, "feet"),
  3016. name: "Foot (Stepping)",
  3017. image: {
  3018. source: "./media/characters/elijah/foot-stepping.svg"
  3019. }
  3020. },
  3021. plantigradeLeg: {
  3022. height: math.unit(2.34, "feet"),
  3023. name: "Plantigrade Leg",
  3024. image: {
  3025. source: "./media/characters/elijah/plantigrade-leg.svg"
  3026. }
  3027. },
  3028. plantigradeFootLeft: {
  3029. height: math.unit(0.9, "feet"),
  3030. name: "Plantigrade Foot (Left)",
  3031. image: {
  3032. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3033. }
  3034. },
  3035. plantigradeFootRight: {
  3036. height: math.unit(0.9, "feet"),
  3037. name: "Plantigrade Foot (Right)",
  3038. image: {
  3039. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3040. }
  3041. },
  3042. },
  3043. [
  3044. {
  3045. name: "Normal",
  3046. height: math.unit(1.65, "meters")
  3047. },
  3048. {
  3049. name: "Macro",
  3050. height: math.unit(55, "meters"),
  3051. default: true
  3052. },
  3053. {
  3054. name: "Macro+",
  3055. height: math.unit(105, "meters")
  3056. },
  3057. ]
  3058. ))
  3059. characterMakers.push(() => makeCharacter(
  3060. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3061. {
  3062. front: {
  3063. height: math.unit(7 + 2/12, "feet"),
  3064. weight: math.unit(320, "kg"),
  3065. preyCapacity: math.unit(0.276549935, "people"),
  3066. name: "Front",
  3067. image: {
  3068. source: "./media/characters/rai/front.svg",
  3069. extra: 1802/1696,
  3070. bottom: 68/1870
  3071. },
  3072. form: "anthro",
  3073. default: true
  3074. },
  3075. frontDressed: {
  3076. height: math.unit(7 + 2/12, "feet"),
  3077. weight: math.unit(320, "kg"),
  3078. preyCapacity: math.unit(0.276549935, "people"),
  3079. name: "Front (Dressed)",
  3080. image: {
  3081. source: "./media/characters/rai/front-dressed.svg",
  3082. extra: 1802/1696,
  3083. bottom: 68/1870
  3084. },
  3085. form: "anthro"
  3086. },
  3087. side: {
  3088. height: math.unit(7 + 2/12, "feet"),
  3089. weight: math.unit(320, "kg"),
  3090. preyCapacity: math.unit(0.276549935, "people"),
  3091. name: "Side",
  3092. image: {
  3093. source: "./media/characters/rai/side.svg",
  3094. extra: 1789/1710,
  3095. bottom: 115/1904
  3096. },
  3097. form: "anthro"
  3098. },
  3099. back: {
  3100. height: math.unit(7 + 2/12, "feet"),
  3101. weight: math.unit(320, "kg"),
  3102. preyCapacity: math.unit(0.276549935, "people"),
  3103. name: "Back",
  3104. image: {
  3105. source: "./media/characters/rai/back.svg",
  3106. extra: 1770/1707,
  3107. bottom: 28/1798
  3108. },
  3109. form: "anthro"
  3110. },
  3111. feral: {
  3112. height: math.unit(9.5, "feet"),
  3113. weight: math.unit(640, "kg"),
  3114. preyCapacity: math.unit(4, "people"),
  3115. name: "Feral",
  3116. image: {
  3117. source: "./media/characters/rai/feral.svg",
  3118. extra: 945/553,
  3119. bottom: 176/1121
  3120. },
  3121. form: "feral",
  3122. default: true
  3123. },
  3124. dragon: {
  3125. height: math.unit(23, "feet"),
  3126. weight: math.unit(50000, "lb"),
  3127. name: "Dragon",
  3128. image: {
  3129. source: "./media/characters/rai/dragon.svg",
  3130. extra: 2498 / 2030,
  3131. bottom: 85.2 / 2584
  3132. },
  3133. form: "dragon",
  3134. default: true
  3135. },
  3136. maw: {
  3137. height: math.unit(1.69, "feet"),
  3138. name: "Maw",
  3139. image: {
  3140. source: "./media/characters/rai/maw.svg"
  3141. },
  3142. form: "anthro"
  3143. },
  3144. },
  3145. [
  3146. {
  3147. name: "Normal",
  3148. height: math.unit(7 + 2/12, "feet"),
  3149. form: "anthro"
  3150. },
  3151. {
  3152. name: "Big",
  3153. height: math.unit(11, "feet"),
  3154. form: "anthro"
  3155. },
  3156. {
  3157. name: "Minimacro",
  3158. height: math.unit(77, "feet"),
  3159. form: "anthro"
  3160. },
  3161. {
  3162. name: "Macro",
  3163. height: math.unit(302, "feet"),
  3164. default: true,
  3165. form: "anthro"
  3166. },
  3167. {
  3168. name: "Normal",
  3169. height: math.unit(9.5, "feet"),
  3170. form: "feral",
  3171. default: true
  3172. },
  3173. {
  3174. name: "Normal",
  3175. height: math.unit(23, "feet"),
  3176. form: "dragon",
  3177. default: true
  3178. }
  3179. ],
  3180. {
  3181. "anthro": {
  3182. name: "Anthro",
  3183. default: true
  3184. },
  3185. "feral": {
  3186. name: "Feral",
  3187. },
  3188. "dragon": {
  3189. name: "Dragon",
  3190. },
  3191. }
  3192. ))
  3193. characterMakers.push(() => makeCharacter(
  3194. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3195. {
  3196. frontDressed: {
  3197. height: math.unit(216, "feet"),
  3198. weight: math.unit(7000000, "lb"),
  3199. preyCapacity: math.unit(1321, "people"),
  3200. name: "Front (Dressed)",
  3201. image: {
  3202. source: "./media/characters/jazzy/front-dressed.svg",
  3203. extra: 2738 / 2651,
  3204. bottom: 41.8 / 2786
  3205. }
  3206. },
  3207. backDressed: {
  3208. height: math.unit(216, "feet"),
  3209. weight: math.unit(7000000, "lb"),
  3210. preyCapacity: math.unit(1321, "people"),
  3211. name: "Back (Dressed)",
  3212. image: {
  3213. source: "./media/characters/jazzy/back-dressed.svg",
  3214. extra: 2775 / 2673,
  3215. bottom: 36.8 / 2817
  3216. }
  3217. },
  3218. front: {
  3219. height: math.unit(216, "feet"),
  3220. weight: math.unit(7000000, "lb"),
  3221. preyCapacity: math.unit(1321, "people"),
  3222. name: "Front",
  3223. image: {
  3224. source: "./media/characters/jazzy/front.svg",
  3225. extra: 2738 / 2651,
  3226. bottom: 41.8 / 2786
  3227. }
  3228. },
  3229. back: {
  3230. height: math.unit(216, "feet"),
  3231. weight: math.unit(7000000, "lb"),
  3232. preyCapacity: math.unit(1321, "people"),
  3233. name: "Back",
  3234. image: {
  3235. source: "./media/characters/jazzy/back.svg",
  3236. extra: 2775 / 2673,
  3237. bottom: 36.8 / 2817
  3238. }
  3239. },
  3240. maw: {
  3241. height: math.unit(20, "feet"),
  3242. name: "Maw",
  3243. image: {
  3244. source: "./media/characters/jazzy/maw.svg"
  3245. }
  3246. },
  3247. paws: {
  3248. height: math.unit(27.5, "feet"),
  3249. name: "Paws",
  3250. image: {
  3251. source: "./media/characters/jazzy/paws.svg"
  3252. }
  3253. },
  3254. eye: {
  3255. height: math.unit(4.4, "feet"),
  3256. name: "Eye",
  3257. image: {
  3258. source: "./media/characters/jazzy/eye.svg"
  3259. }
  3260. },
  3261. droneOffense: {
  3262. height: math.unit(9.5, "inches"),
  3263. name: "Drone (Offense)",
  3264. image: {
  3265. source: "./media/characters/jazzy/drone-offense.svg"
  3266. }
  3267. },
  3268. droneRecon: {
  3269. height: math.unit(9.5, "inches"),
  3270. name: "Drone (Recon)",
  3271. image: {
  3272. source: "./media/characters/jazzy/drone-recon.svg"
  3273. }
  3274. },
  3275. droneDefense: {
  3276. height: math.unit(9.5, "inches"),
  3277. name: "Drone (Defense)",
  3278. image: {
  3279. source: "./media/characters/jazzy/drone-defense.svg"
  3280. }
  3281. },
  3282. },
  3283. [
  3284. {
  3285. name: "Macro",
  3286. height: math.unit(216, "feet"),
  3287. default: true
  3288. },
  3289. ]
  3290. ))
  3291. characterMakers.push(() => makeCharacter(
  3292. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3293. {
  3294. front: {
  3295. height: math.unit(9 + 6/12, "feet"),
  3296. weight: math.unit(700, "lb"),
  3297. name: "Front",
  3298. image: {
  3299. source: "./media/characters/flamm/front.svg",
  3300. extra: 1736/1596,
  3301. bottom: 93/1829
  3302. }
  3303. },
  3304. buff: {
  3305. height: math.unit(9 + 6/12, "feet"),
  3306. weight: math.unit(950, "lb"),
  3307. name: "Buff",
  3308. image: {
  3309. source: "./media/characters/flamm/buff.svg",
  3310. extra: 3018/2874,
  3311. bottom: 221/3239
  3312. }
  3313. },
  3314. },
  3315. [
  3316. {
  3317. name: "Normal",
  3318. height: math.unit(9.5, "feet")
  3319. },
  3320. {
  3321. name: "Macro",
  3322. height: math.unit(200, "feet"),
  3323. default: true
  3324. },
  3325. ]
  3326. ))
  3327. characterMakers.push(() => makeCharacter(
  3328. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3329. {
  3330. front: {
  3331. height: math.unit(5 + 3/12, "feet"),
  3332. weight: math.unit(60, "kg"),
  3333. name: "Front",
  3334. image: {
  3335. source: "./media/characters/zephiro/front.svg",
  3336. extra: 1873/1761,
  3337. bottom: 147/2020
  3338. }
  3339. },
  3340. side: {
  3341. height: math.unit(5 + 3/12, "feet"),
  3342. weight: math.unit(60, "kg"),
  3343. name: "Side",
  3344. image: {
  3345. source: "./media/characters/zephiro/side.svg",
  3346. extra: 1929/1827,
  3347. bottom: 65/1994
  3348. }
  3349. },
  3350. back: {
  3351. height: math.unit(5 + 3/12, "feet"),
  3352. weight: math.unit(60, "kg"),
  3353. name: "Back",
  3354. image: {
  3355. source: "./media/characters/zephiro/back.svg",
  3356. extra: 1926/1816,
  3357. bottom: 41/1967
  3358. }
  3359. },
  3360. hand: {
  3361. height: math.unit(0.68, "feet"),
  3362. name: "Hand",
  3363. image: {
  3364. source: "./media/characters/zephiro/hand.svg"
  3365. }
  3366. },
  3367. paw: {
  3368. height: math.unit(1, "feet"),
  3369. name: "Paw",
  3370. image: {
  3371. source: "./media/characters/zephiro/paw.svg"
  3372. }
  3373. },
  3374. beans: {
  3375. height: math.unit(0.93, "feet"),
  3376. name: "Beans",
  3377. image: {
  3378. source: "./media/characters/zephiro/beans.svg"
  3379. }
  3380. },
  3381. },
  3382. [
  3383. {
  3384. name: "Micro",
  3385. height: math.unit(3, "inches")
  3386. },
  3387. {
  3388. name: "Normal",
  3389. height: math.unit(5 + 3 / 12, "feet"),
  3390. default: true
  3391. },
  3392. {
  3393. name: "Macro",
  3394. height: math.unit(118, "feet")
  3395. },
  3396. ]
  3397. ))
  3398. characterMakers.push(() => makeCharacter(
  3399. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3400. {
  3401. front: {
  3402. height: math.unit(5, "feet"),
  3403. weight: math.unit(90, "kg"),
  3404. preyCapacity: math.unit(14, "people"),
  3405. name: "Front",
  3406. image: {
  3407. source: "./media/characters/fory/front.svg",
  3408. extra: 2862 / 2674,
  3409. bottom: 180 / 3043.8
  3410. },
  3411. form: "weaselbun",
  3412. default: true,
  3413. extraAttributes: {
  3414. "pawSize": {
  3415. name: "Paw Size",
  3416. power: 2,
  3417. type: "area",
  3418. base: math.unit(0.1596, "m^2")
  3419. },
  3420. "pawLength": {
  3421. name: "Paw Length",
  3422. power: 1,
  3423. type: "length",
  3424. base: math.unit(0.7, "m")
  3425. }
  3426. }
  3427. },
  3428. back: {
  3429. height: math.unit(5, "feet"),
  3430. weight: math.unit(90, "kg"),
  3431. preyCapacity: math.unit(14, "people"),
  3432. name: "Back",
  3433. image: {
  3434. source: "./media/characters/fory/back.svg",
  3435. extra: 1790/1672,
  3436. bottom: 84/1874
  3437. },
  3438. form: "weaselbun",
  3439. extraAttributes: {
  3440. "pawSize": {
  3441. name: "Paw Size",
  3442. power: 2,
  3443. type: "area",
  3444. base: math.unit(0.1596, "m^2")
  3445. },
  3446. "pawLength": {
  3447. name: "Paw Length",
  3448. power: 1,
  3449. type: "length",
  3450. base: math.unit(0.7, "m")
  3451. }
  3452. }
  3453. },
  3454. paw: {
  3455. height: math.unit(2.14, "feet"),
  3456. name: "Paw",
  3457. image: {
  3458. source: "./media/characters/fory/paw.svg"
  3459. },
  3460. form: "weaselbun",
  3461. extraAttributes: {
  3462. "pawSize": {
  3463. name: "Paw Size",
  3464. power: 2,
  3465. type: "area",
  3466. base: math.unit(0.1596, "m^2")
  3467. },
  3468. "pawLength": {
  3469. name: "Paw Length",
  3470. power: 1,
  3471. type: "length",
  3472. base: math.unit(0.48, "m")
  3473. }
  3474. }
  3475. },
  3476. bunBack: {
  3477. height: math.unit(3, "feet"),
  3478. weight: math.unit(20, "kg"),
  3479. preyCapacity: math.unit(3, "people"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/fory/bun-back.svg",
  3483. extra: 1749/1564,
  3484. bottom: 246/1995
  3485. },
  3486. form: "bun",
  3487. default: true,
  3488. extraAttributes: {
  3489. "pawSize": {
  3490. name: "Paw Size",
  3491. power: 2,
  3492. type: "area",
  3493. base: math.unit(0.072, "m^2")
  3494. },
  3495. "pawLength": {
  3496. name: "Paw Length",
  3497. power: 1,
  3498. type: "length",
  3499. base: math.unit(0.45, "m")
  3500. }
  3501. }
  3502. },
  3503. },
  3504. [
  3505. {
  3506. name: "Normal",
  3507. height: math.unit(5, "feet"),
  3508. form: "weaselbun"
  3509. },
  3510. {
  3511. name: "Macro",
  3512. height: math.unit(50, "feet"),
  3513. default: true,
  3514. form: "weaselbun"
  3515. },
  3516. {
  3517. name: "Megamacro",
  3518. height: math.unit(10, "miles"),
  3519. form: "weaselbun"
  3520. },
  3521. {
  3522. name: "Gigamacro",
  3523. height: math.unit(5, "earths"),
  3524. form: "weaselbun"
  3525. },
  3526. {
  3527. name: "Normal",
  3528. height: math.unit(3, "feet"),
  3529. default: true,
  3530. form: "bun"
  3531. },
  3532. {
  3533. name: "Fun-Size",
  3534. height: math.unit(12, "feet"),
  3535. form: "bun"
  3536. },
  3537. {
  3538. name: "Macro",
  3539. height: math.unit(100, "feet"),
  3540. form: "bun"
  3541. },
  3542. {
  3543. name: "Planetary",
  3544. height: math.unit(3, "earths"),
  3545. form: "bun"
  3546. },
  3547. ],
  3548. {
  3549. "weaselbun": {
  3550. name: "Weaselbun",
  3551. default: true
  3552. },
  3553. "bun": {
  3554. name: "Bun",
  3555. },
  3556. }
  3557. ))
  3558. characterMakers.push(() => makeCharacter(
  3559. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3560. {
  3561. front: {
  3562. height: math.unit(7, "feet"),
  3563. weight: math.unit(90, "kg"),
  3564. name: "Front",
  3565. image: {
  3566. source: "./media/characters/kurrikage/front.svg",
  3567. extra: 1845/1733,
  3568. bottom: 119/1964
  3569. }
  3570. },
  3571. back: {
  3572. height: math.unit(7, "feet"),
  3573. weight: math.unit(90, "kg"),
  3574. name: "Back",
  3575. image: {
  3576. source: "./media/characters/kurrikage/back.svg",
  3577. extra: 1790/1677,
  3578. bottom: 61/1851
  3579. }
  3580. },
  3581. dressed: {
  3582. height: math.unit(7, "feet"),
  3583. weight: math.unit(90, "kg"),
  3584. name: "Dressed",
  3585. image: {
  3586. source: "./media/characters/kurrikage/dressed.svg",
  3587. extra: 1845/1733,
  3588. bottom: 119/1964
  3589. }
  3590. },
  3591. foot: {
  3592. height: math.unit(1.5, "feet"),
  3593. name: "Foot",
  3594. image: {
  3595. source: "./media/characters/kurrikage/foot.svg"
  3596. }
  3597. },
  3598. staff: {
  3599. height: math.unit(6.7, "feet"),
  3600. name: "Staff",
  3601. image: {
  3602. source: "./media/characters/kurrikage/staff.svg"
  3603. }
  3604. },
  3605. peek: {
  3606. height: math.unit(1.05, "feet"),
  3607. name: "Peeking",
  3608. image: {
  3609. source: "./media/characters/kurrikage/peek.svg",
  3610. bottom: 0.08
  3611. }
  3612. },
  3613. },
  3614. [
  3615. {
  3616. name: "Normal",
  3617. height: math.unit(12, "feet"),
  3618. default: true
  3619. },
  3620. {
  3621. name: "Big",
  3622. height: math.unit(20, "feet")
  3623. },
  3624. {
  3625. name: "Macro",
  3626. height: math.unit(500, "feet")
  3627. },
  3628. {
  3629. name: "Megamacro",
  3630. height: math.unit(20, "miles")
  3631. },
  3632. ]
  3633. ))
  3634. characterMakers.push(() => makeCharacter(
  3635. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3636. {
  3637. front: {
  3638. height: math.unit(6, "feet"),
  3639. weight: math.unit(75, "kg"),
  3640. name: "Front",
  3641. image: {
  3642. source: "./media/characters/shingo/front.svg",
  3643. extra: 1900/1825,
  3644. bottom: 82/1982
  3645. }
  3646. },
  3647. side: {
  3648. height: math.unit(6, "feet"),
  3649. weight: math.unit(75, "kg"),
  3650. name: "Side",
  3651. image: {
  3652. source: "./media/characters/shingo/side.svg",
  3653. extra: 1930/1865,
  3654. bottom: 16/1946
  3655. }
  3656. },
  3657. back: {
  3658. height: math.unit(6, "feet"),
  3659. weight: math.unit(75, "kg"),
  3660. name: "Back",
  3661. image: {
  3662. source: "./media/characters/shingo/back.svg",
  3663. extra: 1922/1852,
  3664. bottom: 16/1938
  3665. }
  3666. },
  3667. frontDressed: {
  3668. height: math.unit(6, "feet"),
  3669. weight: math.unit(150, "lb"),
  3670. name: "Front-dressed",
  3671. image: {
  3672. source: "./media/characters/shingo/front-dressed.svg",
  3673. extra: 1900/1825,
  3674. bottom: 82/1982
  3675. }
  3676. },
  3677. paw: {
  3678. height: math.unit(1.29, "feet"),
  3679. name: "Paw",
  3680. image: {
  3681. source: "./media/characters/shingo/paw.svg"
  3682. }
  3683. },
  3684. hand: {
  3685. height: math.unit(1.07, "feet"),
  3686. name: "Hand",
  3687. image: {
  3688. source: "./media/characters/shingo/hand.svg"
  3689. }
  3690. },
  3691. frontAlt: {
  3692. height: math.unit(6, "feet"),
  3693. weight: math.unit(75, "kg"),
  3694. name: "Front (Alt)",
  3695. image: {
  3696. source: "./media/characters/shingo/front-alt.svg",
  3697. extra: 3511 / 3338,
  3698. bottom: 0.005
  3699. }
  3700. },
  3701. frontAlt2: {
  3702. height: math.unit(6, "feet"),
  3703. weight: math.unit(75, "kg"),
  3704. name: "Front (Alt 2)",
  3705. image: {
  3706. source: "./media/characters/shingo/front-alt-2.svg",
  3707. extra: 706/681,
  3708. bottom: 11/717
  3709. }
  3710. },
  3711. pawAlt: {
  3712. height: math.unit(1, "feet"),
  3713. name: "Paw (Alt)",
  3714. image: {
  3715. source: "./media/characters/shingo/paw-alt.svg"
  3716. }
  3717. },
  3718. },
  3719. [
  3720. {
  3721. name: "Micro",
  3722. height: math.unit(4, "inches")
  3723. },
  3724. {
  3725. name: "Normal",
  3726. height: math.unit(6, "feet"),
  3727. default: true
  3728. },
  3729. {
  3730. name: "Macro",
  3731. height: math.unit(108, "feet")
  3732. },
  3733. {
  3734. name: "Macro+",
  3735. height: math.unit(1500, "feet")
  3736. },
  3737. ]
  3738. ))
  3739. characterMakers.push(() => makeCharacter(
  3740. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3741. {
  3742. side: {
  3743. height: math.unit(6, "feet"),
  3744. weight: math.unit(75, "kg"),
  3745. name: "Side",
  3746. image: {
  3747. source: "./media/characters/aigey/side.svg"
  3748. }
  3749. },
  3750. },
  3751. [
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(200, "feet"),
  3755. default: true
  3756. },
  3757. {
  3758. name: "Megamacro",
  3759. height: math.unit(100, "miles")
  3760. },
  3761. ]
  3762. )
  3763. )
  3764. characterMakers.push(() => makeCharacter(
  3765. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3766. {
  3767. front: {
  3768. height: math.unit(5 + 5 / 12, "feet"),
  3769. weight: math.unit(75, "kg"),
  3770. name: "Front",
  3771. image: {
  3772. source: "./media/characters/natasha/front.svg",
  3773. extra: 859 / 824,
  3774. bottom: 23 / 879.6
  3775. }
  3776. },
  3777. frontNsfw: {
  3778. height: math.unit(5 + 5 / 12, "feet"),
  3779. weight: math.unit(75, "kg"),
  3780. name: "Front (NSFW)",
  3781. image: {
  3782. source: "./media/characters/natasha/front-nsfw.svg",
  3783. extra: 859 / 824,
  3784. bottom: 23 / 879.6
  3785. }
  3786. },
  3787. frontErect: {
  3788. height: math.unit(5 + 5 / 12, "feet"),
  3789. weight: math.unit(75, "kg"),
  3790. name: "Front (Erect)",
  3791. image: {
  3792. source: "./media/characters/natasha/front-erect.svg",
  3793. extra: 859 / 824,
  3794. bottom: 23 / 879.6
  3795. }
  3796. },
  3797. back: {
  3798. height: math.unit(5 + 5 / 12, "feet"),
  3799. weight: math.unit(75, "kg"),
  3800. name: "Back",
  3801. image: {
  3802. source: "./media/characters/natasha/back.svg",
  3803. extra: 887.9 / 852.6,
  3804. bottom: 9.7 / 896.4
  3805. }
  3806. },
  3807. backAlt: {
  3808. height: math.unit(5 + 5 / 12, "feet"),
  3809. weight: math.unit(75, "kg"),
  3810. name: "Back (Alt)",
  3811. image: {
  3812. source: "./media/characters/natasha/back-alt.svg",
  3813. extra: 1236.7 / 1192,
  3814. bottom: 22.3 / 1258.2
  3815. }
  3816. },
  3817. dick: {
  3818. height: math.unit(1.772, "feet"),
  3819. name: "Dick",
  3820. image: {
  3821. source: "./media/characters/natasha/dick.svg"
  3822. }
  3823. },
  3824. paw: {
  3825. height: math.unit(0.250, "meters"),
  3826. name: "Paw",
  3827. image: {
  3828. source: "./media/characters/natasha/paw.svg"
  3829. },
  3830. extraAttributes: {
  3831. "toeSize": {
  3832. name: "Toe Size",
  3833. power: 2,
  3834. type: "area",
  3835. base: math.unit(0.0024, "m^2")
  3836. },
  3837. "padSize": {
  3838. name: "Pad Size",
  3839. power: 2,
  3840. type: "area",
  3841. base: math.unit(0.00889, "m^2")
  3842. },
  3843. "pawSize": {
  3844. name: "Paw Size",
  3845. power: 2,
  3846. type: "area",
  3847. base: math.unit(0.023667, "m^2")
  3848. },
  3849. }
  3850. },
  3851. },
  3852. [
  3853. {
  3854. name: "Shortstack",
  3855. height: math.unit(3, "feet"),
  3856. default: true
  3857. },
  3858. {
  3859. name: "Normal",
  3860. height: math.unit(5 + 5 / 12, "feet")
  3861. },
  3862. {
  3863. name: "Large",
  3864. height: math.unit(12, "feet")
  3865. },
  3866. {
  3867. name: "Macro",
  3868. height: math.unit(100, "feet")
  3869. },
  3870. {
  3871. name: "Macro+",
  3872. height: math.unit(260, "feet")
  3873. },
  3874. {
  3875. name: "Macro++",
  3876. height: math.unit(1, "mile")
  3877. },
  3878. ]
  3879. ))
  3880. characterMakers.push(() => makeCharacter(
  3881. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3882. {
  3883. front: {
  3884. height: math.unit(6, "feet"),
  3885. weight: math.unit(75, "kg"),
  3886. name: "Front",
  3887. image: {
  3888. source: "./media/characters/malik/front.svg",
  3889. extra: 1750/1561,
  3890. bottom: 80/1830
  3891. },
  3892. extraAttributes: {
  3893. "toeSize": {
  3894. name: "Toe Size",
  3895. power: 2,
  3896. type: "area",
  3897. base: math.unit(0.0159, "m^2")
  3898. },
  3899. "pawSize": {
  3900. name: "Paw Size",
  3901. power: 2,
  3902. type: "area",
  3903. base: math.unit(0.09834, "m^2")
  3904. },
  3905. }
  3906. },
  3907. side: {
  3908. height: math.unit(6, "feet"),
  3909. weight: math.unit(75, "kg"),
  3910. name: "Side",
  3911. image: {
  3912. source: "./media/characters/malik/side.svg",
  3913. extra: 1802/1685,
  3914. bottom: 42/1844
  3915. },
  3916. extraAttributes: {
  3917. "toeSize": {
  3918. name: "Toe Size",
  3919. power: 2,
  3920. type: "area",
  3921. base: math.unit(0.0159, "m^2")
  3922. },
  3923. "pawSize": {
  3924. name: "Paw Size",
  3925. power: 2,
  3926. type: "area",
  3927. base: math.unit(0.09834, "m^2")
  3928. },
  3929. }
  3930. },
  3931. back: {
  3932. height: math.unit(6, "feet"),
  3933. weight: math.unit(75, "kg"),
  3934. name: "Back",
  3935. image: {
  3936. source: "./media/characters/malik/back.svg",
  3937. extra: 1803/1607,
  3938. bottom: 33/1836
  3939. },
  3940. extraAttributes: {
  3941. "toeSize": {
  3942. name: "Toe Size",
  3943. power: 2,
  3944. type: "area",
  3945. base: math.unit(0.0159, "m^2")
  3946. },
  3947. "pawSize": {
  3948. name: "Paw Size",
  3949. power: 2,
  3950. type: "area",
  3951. base: math.unit(0.09834, "m^2")
  3952. },
  3953. }
  3954. },
  3955. },
  3956. [
  3957. {
  3958. name: "Macro",
  3959. height: math.unit(156, "feet"),
  3960. default: true
  3961. },
  3962. {
  3963. name: "Macro+",
  3964. height: math.unit(1188, "feet")
  3965. },
  3966. ]
  3967. ))
  3968. characterMakers.push(() => makeCharacter(
  3969. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  3970. {
  3971. front: {
  3972. height: math.unit(6, "feet"),
  3973. weight: math.unit(75, "kg"),
  3974. name: "Front",
  3975. image: {
  3976. source: "./media/characters/sefer/front.svg",
  3977. extra: 848 / 659,
  3978. bottom: 28.3 / 876.442
  3979. }
  3980. },
  3981. back: {
  3982. height: math.unit(6, "feet"),
  3983. weight: math.unit(75, "kg"),
  3984. name: "Back",
  3985. image: {
  3986. source: "./media/characters/sefer/back.svg",
  3987. extra: 864 / 695,
  3988. bottom: 10 / 871
  3989. }
  3990. },
  3991. frontDressed: {
  3992. height: math.unit(6, "feet"),
  3993. weight: math.unit(75, "kg"),
  3994. name: "Dressed",
  3995. image: {
  3996. source: "./media/characters/sefer/dressed.svg",
  3997. extra: 839 / 653,
  3998. bottom: 37.6 / 878
  3999. }
  4000. },
  4001. },
  4002. [
  4003. {
  4004. name: "Normal",
  4005. height: math.unit(6, "feet"),
  4006. default: true
  4007. },
  4008. {
  4009. name: "Big",
  4010. height: math.unit(8, "meters")
  4011. },
  4012. ]
  4013. ))
  4014. characterMakers.push(() => makeCharacter(
  4015. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4016. {
  4017. body: {
  4018. height: math.unit(2.2428, "meter"),
  4019. weight: math.unit(124.738, "kg"),
  4020. name: "Body",
  4021. image: {
  4022. extra: 1225 / 1050,
  4023. source: "./media/characters/north/front.svg"
  4024. }
  4025. }
  4026. },
  4027. [
  4028. {
  4029. name: "Micro",
  4030. height: math.unit(4, "inches")
  4031. },
  4032. {
  4033. name: "Macro",
  4034. height: math.unit(63, "meters")
  4035. },
  4036. {
  4037. name: "Megamacro",
  4038. height: math.unit(101, "miles"),
  4039. default: true
  4040. }
  4041. ]
  4042. ))
  4043. characterMakers.push(() => makeCharacter(
  4044. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4045. {
  4046. angled: {
  4047. height: math.unit(4, "meter"),
  4048. weight: math.unit(150, "kg"),
  4049. name: "Angled",
  4050. image: {
  4051. source: "./media/characters/talan/angled-sfw.svg",
  4052. bottom: 29 / 3734
  4053. }
  4054. },
  4055. angledNsfw: {
  4056. height: math.unit(4, "meter"),
  4057. weight: math.unit(150, "kg"),
  4058. name: "Angled (NSFW)",
  4059. image: {
  4060. source: "./media/characters/talan/angled-nsfw.svg",
  4061. bottom: 29 / 3734
  4062. }
  4063. },
  4064. frontNsfw: {
  4065. height: math.unit(4, "meter"),
  4066. weight: math.unit(150, "kg"),
  4067. name: "Front (NSFW)",
  4068. image: {
  4069. source: "./media/characters/talan/front-nsfw.svg",
  4070. bottom: 29 / 3734
  4071. }
  4072. },
  4073. sideNsfw: {
  4074. height: math.unit(4, "meter"),
  4075. weight: math.unit(150, "kg"),
  4076. name: "Side (NSFW)",
  4077. image: {
  4078. source: "./media/characters/talan/side-nsfw.svg",
  4079. bottom: 29 / 3734
  4080. }
  4081. },
  4082. back: {
  4083. height: math.unit(4, "meter"),
  4084. weight: math.unit(150, "kg"),
  4085. name: "Back",
  4086. image: {
  4087. source: "./media/characters/talan/back.svg"
  4088. }
  4089. },
  4090. dickBottom: {
  4091. height: math.unit(0.621, "meter"),
  4092. name: "Dick (Bottom)",
  4093. image: {
  4094. source: "./media/characters/talan/dick-bottom.svg"
  4095. }
  4096. },
  4097. dickTop: {
  4098. height: math.unit(0.621, "meter"),
  4099. name: "Dick (Top)",
  4100. image: {
  4101. source: "./media/characters/talan/dick-top.svg"
  4102. }
  4103. },
  4104. dickSide: {
  4105. height: math.unit(0.305, "meter"),
  4106. name: "Dick (Side)",
  4107. image: {
  4108. source: "./media/characters/talan/dick-side.svg"
  4109. }
  4110. },
  4111. dickFront: {
  4112. height: math.unit(0.305, "meter"),
  4113. name: "Dick (Front)",
  4114. image: {
  4115. source: "./media/characters/talan/dick-front.svg"
  4116. }
  4117. },
  4118. },
  4119. [
  4120. {
  4121. name: "Normal",
  4122. height: math.unit(4, "meters")
  4123. },
  4124. {
  4125. name: "Macro",
  4126. height: math.unit(100, "meters")
  4127. },
  4128. {
  4129. name: "Megamacro",
  4130. height: math.unit(2, "miles"),
  4131. default: true
  4132. },
  4133. {
  4134. name: "Gigamacro",
  4135. height: math.unit(5000, "miles")
  4136. },
  4137. {
  4138. name: "Teramacro",
  4139. height: math.unit(100, "parsecs")
  4140. }
  4141. ]
  4142. ))
  4143. characterMakers.push(() => makeCharacter(
  4144. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4145. {
  4146. front: {
  4147. height: math.unit(2, "meter"),
  4148. weight: math.unit(90, "kg"),
  4149. name: "Front",
  4150. image: {
  4151. source: "./media/characters/gael'rathus/front.svg"
  4152. }
  4153. },
  4154. frontAlt: {
  4155. height: math.unit(2, "meter"),
  4156. weight: math.unit(90, "kg"),
  4157. name: "Front (alt)",
  4158. image: {
  4159. source: "./media/characters/gael'rathus/front-alt.svg"
  4160. }
  4161. },
  4162. frontAlt2: {
  4163. height: math.unit(2, "meter"),
  4164. weight: math.unit(90, "kg"),
  4165. name: "Front (alt 2)",
  4166. image: {
  4167. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4168. }
  4169. }
  4170. },
  4171. [
  4172. {
  4173. name: "Normal",
  4174. height: math.unit(9, "feet"),
  4175. default: true
  4176. },
  4177. {
  4178. name: "Large",
  4179. height: math.unit(25, "feet")
  4180. },
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(0.25, "miles")
  4184. },
  4185. {
  4186. name: "Megamacro",
  4187. height: math.unit(10, "miles")
  4188. }
  4189. ]
  4190. ))
  4191. characterMakers.push(() => makeCharacter(
  4192. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4193. {
  4194. side: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(140, "kg"),
  4197. name: "Side",
  4198. image: {
  4199. source: "./media/characters/sosha/side.svg",
  4200. extra: 1170/1006,
  4201. bottom: 94/1264
  4202. }
  4203. },
  4204. maw: {
  4205. height: math.unit(2.87, "feet"),
  4206. name: "Maw",
  4207. image: {
  4208. source: "./media/characters/sosha/maw.svg",
  4209. extra: 966/865,
  4210. bottom: 0/966
  4211. }
  4212. },
  4213. cooch: {
  4214. height: math.unit(5.6, "feet"),
  4215. name: "Cooch",
  4216. image: {
  4217. source: "./media/characters/sosha/cooch.svg"
  4218. }
  4219. },
  4220. },
  4221. [
  4222. {
  4223. name: "Normal",
  4224. height: math.unit(12, "feet"),
  4225. default: true
  4226. }
  4227. ]
  4228. ))
  4229. characterMakers.push(() => makeCharacter(
  4230. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4231. {
  4232. side: {
  4233. height: math.unit(5 + 5 / 12, "feet"),
  4234. weight: math.unit(170, "kg"),
  4235. name: "Side",
  4236. image: {
  4237. source: "./media/characters/runnola/side.svg",
  4238. extra: 741 / 448,
  4239. bottom: 0.05
  4240. }
  4241. },
  4242. },
  4243. [
  4244. {
  4245. name: "Small",
  4246. height: math.unit(3, "feet")
  4247. },
  4248. {
  4249. name: "Normal",
  4250. height: math.unit(5 + 5 / 12, "feet"),
  4251. default: true
  4252. },
  4253. {
  4254. name: "Big",
  4255. height: math.unit(10, "feet")
  4256. },
  4257. ]
  4258. ))
  4259. characterMakers.push(() => makeCharacter(
  4260. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4261. {
  4262. front: {
  4263. height: math.unit(2, "meter"),
  4264. weight: math.unit(50, "kg"),
  4265. name: "Front",
  4266. image: {
  4267. source: "./media/characters/kurribird/front.svg",
  4268. bottom: 0.015
  4269. }
  4270. },
  4271. frontAlt: {
  4272. height: math.unit(1.5, "meter"),
  4273. weight: math.unit(50, "kg"),
  4274. name: "Front (Alt)",
  4275. image: {
  4276. source: "./media/characters/kurribird/front-alt.svg",
  4277. extra: 1.45
  4278. }
  4279. },
  4280. },
  4281. [
  4282. {
  4283. name: "Normal",
  4284. height: math.unit(7, "feet")
  4285. },
  4286. {
  4287. name: "Big",
  4288. height: math.unit(12, "feet"),
  4289. default: true
  4290. },
  4291. {
  4292. name: "Macro",
  4293. height: math.unit(1500, "feet")
  4294. },
  4295. {
  4296. name: "Megamacro",
  4297. height: math.unit(2, "miles")
  4298. }
  4299. ]
  4300. ))
  4301. characterMakers.push(() => makeCharacter(
  4302. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4303. {
  4304. front: {
  4305. height: math.unit(2, "meter"),
  4306. weight: math.unit(80, "kg"),
  4307. name: "Front",
  4308. image: {
  4309. source: "./media/characters/elbial/front.svg",
  4310. extra: 1643 / 1556,
  4311. bottom: 60.2 / 1696
  4312. }
  4313. },
  4314. side: {
  4315. height: math.unit(2, "meter"),
  4316. weight: math.unit(80, "kg"),
  4317. name: "Side",
  4318. image: {
  4319. source: "./media/characters/elbial/side.svg",
  4320. extra: 1601/1528,
  4321. bottom: 97/1698
  4322. }
  4323. },
  4324. back: {
  4325. height: math.unit(2, "meter"),
  4326. weight: math.unit(80, "kg"),
  4327. name: "Back",
  4328. image: {
  4329. source: "./media/characters/elbial/back.svg",
  4330. extra: 1653/1569,
  4331. bottom: 20/1673
  4332. }
  4333. },
  4334. frontDressed: {
  4335. height: math.unit(2, "meter"),
  4336. weight: math.unit(80, "kg"),
  4337. name: "Front (Dressed)",
  4338. image: {
  4339. source: "./media/characters/elbial/front-dressed.svg",
  4340. extra: 1638/1569,
  4341. bottom: 70/1708
  4342. }
  4343. },
  4344. genitals: {
  4345. height: math.unit(2 / 3.367, "meter"),
  4346. name: "Genitals",
  4347. image: {
  4348. source: "./media/characters/elbial/genitals.svg"
  4349. }
  4350. },
  4351. },
  4352. [
  4353. {
  4354. name: "Large",
  4355. height: math.unit(100, "feet")
  4356. },
  4357. {
  4358. name: "Macro",
  4359. height: math.unit(500, "feet"),
  4360. default: true
  4361. },
  4362. {
  4363. name: "Megamacro",
  4364. height: math.unit(10, "miles")
  4365. },
  4366. {
  4367. name: "Gigamacro",
  4368. height: math.unit(25000, "miles")
  4369. },
  4370. {
  4371. name: "Full-Size",
  4372. height: math.unit(8000000, "gigaparsecs")
  4373. }
  4374. ]
  4375. ))
  4376. characterMakers.push(() => makeCharacter(
  4377. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4378. {
  4379. front: {
  4380. height: math.unit(2, "meter"),
  4381. weight: math.unit(60, "kg"),
  4382. name: "Front",
  4383. image: {
  4384. source: "./media/characters/noah/front.svg",
  4385. extra: 1383/1313,
  4386. bottom: 104/1487
  4387. }
  4388. },
  4389. hand: {
  4390. height: math.unit(0.6, "feet"),
  4391. name: "Hand",
  4392. image: {
  4393. source: "./media/characters/noah/hand.svg"
  4394. }
  4395. },
  4396. talons: {
  4397. height: math.unit(1.385, "feet"),
  4398. name: "Talons",
  4399. image: {
  4400. source: "./media/characters/noah/talons.svg"
  4401. }
  4402. },
  4403. beak: {
  4404. height: math.unit(0.43, "feet"),
  4405. name: "Beak",
  4406. image: {
  4407. source: "./media/characters/noah/beak.svg"
  4408. }
  4409. },
  4410. collar: {
  4411. height: math.unit(0.88, "feet"),
  4412. name: "Collar",
  4413. image: {
  4414. source: "./media/characters/noah/collar.svg"
  4415. }
  4416. },
  4417. eyeNarrow: {
  4418. height: math.unit(0.18, "feet"),
  4419. name: "Eye (Narrow)",
  4420. image: {
  4421. source: "./media/characters/noah/eye-narrow.svg"
  4422. }
  4423. },
  4424. eyeNormal: {
  4425. height: math.unit(0.18, "feet"),
  4426. name: "Eye (Normal)",
  4427. image: {
  4428. source: "./media/characters/noah/eye-normal.svg"
  4429. }
  4430. },
  4431. eyeWide: {
  4432. height: math.unit(0.18, "feet"),
  4433. name: "Eye (Wide)",
  4434. image: {
  4435. source: "./media/characters/noah/eye-wide.svg"
  4436. }
  4437. },
  4438. ear: {
  4439. height: math.unit(0.64, "feet"),
  4440. name: "Ear",
  4441. image: {
  4442. source: "./media/characters/noah/ear.svg"
  4443. }
  4444. },
  4445. },
  4446. [
  4447. {
  4448. name: "Large",
  4449. height: math.unit(50, "feet")
  4450. },
  4451. {
  4452. name: "Macro",
  4453. height: math.unit(750, "feet"),
  4454. default: true
  4455. },
  4456. {
  4457. name: "Megamacro",
  4458. height: math.unit(50, "miles")
  4459. },
  4460. {
  4461. name: "Gigamacro",
  4462. height: math.unit(100000, "miles")
  4463. },
  4464. {
  4465. name: "Full-Size",
  4466. height: math.unit(3000000000, "miles")
  4467. }
  4468. ]
  4469. ))
  4470. characterMakers.push(() => makeCharacter(
  4471. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4472. {
  4473. front: {
  4474. height: math.unit(2, "meter"),
  4475. weight: math.unit(80, "kg"),
  4476. name: "Front",
  4477. image: {
  4478. source: "./media/characters/natalya/front.svg"
  4479. }
  4480. },
  4481. back: {
  4482. height: math.unit(2, "meter"),
  4483. weight: math.unit(80, "kg"),
  4484. name: "Back",
  4485. image: {
  4486. source: "./media/characters/natalya/back.svg"
  4487. }
  4488. }
  4489. },
  4490. [
  4491. {
  4492. name: "Normal",
  4493. height: math.unit(150, "feet"),
  4494. default: true
  4495. },
  4496. {
  4497. name: "Megamacro",
  4498. height: math.unit(5, "miles")
  4499. },
  4500. {
  4501. name: "Full-Size",
  4502. height: math.unit(600, "kiloparsecs")
  4503. }
  4504. ]
  4505. ))
  4506. characterMakers.push(() => makeCharacter(
  4507. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4508. {
  4509. front: {
  4510. height: math.unit(2, "meter"),
  4511. weight: math.unit(50, "kg"),
  4512. name: "Front",
  4513. image: {
  4514. source: "./media/characters/erestrebah/front.svg",
  4515. extra: 1262/1162,
  4516. bottom: 96/1358
  4517. }
  4518. },
  4519. back: {
  4520. height: math.unit(2, "meter"),
  4521. weight: math.unit(50, "kg"),
  4522. name: "Back",
  4523. image: {
  4524. source: "./media/characters/erestrebah/back.svg",
  4525. extra: 1257/1139,
  4526. bottom: 13/1270
  4527. }
  4528. },
  4529. wing: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(50, "kg"),
  4532. name: "Wing",
  4533. image: {
  4534. source: "./media/characters/erestrebah/wing.svg",
  4535. extra: 1262/1162,
  4536. bottom: 96/1358
  4537. }
  4538. },
  4539. mouth: {
  4540. height: math.unit(0.39, "feet"),
  4541. name: "Mouth",
  4542. image: {
  4543. source: "./media/characters/erestrebah/mouth.svg"
  4544. }
  4545. }
  4546. },
  4547. [
  4548. {
  4549. name: "Normal",
  4550. height: math.unit(10, "feet")
  4551. },
  4552. {
  4553. name: "Large",
  4554. height: math.unit(50, "feet"),
  4555. default: true
  4556. },
  4557. {
  4558. name: "Macro",
  4559. height: math.unit(300, "feet")
  4560. },
  4561. {
  4562. name: "Macro+",
  4563. height: math.unit(750, "feet")
  4564. },
  4565. {
  4566. name: "Megamacro",
  4567. height: math.unit(3, "miles")
  4568. }
  4569. ]
  4570. ))
  4571. characterMakers.push(() => makeCharacter(
  4572. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4573. {
  4574. front: {
  4575. height: math.unit(2, "meter"),
  4576. weight: math.unit(80, "kg"),
  4577. name: "Front",
  4578. image: {
  4579. source: "./media/characters/jennifer/front.svg",
  4580. bottom: 0.11,
  4581. extra: 1.16
  4582. }
  4583. },
  4584. frontAlt: {
  4585. height: math.unit(2, "meter"),
  4586. weight: math.unit(80, "kg"),
  4587. name: "Front (Alt)",
  4588. image: {
  4589. source: "./media/characters/jennifer/front-alt.svg"
  4590. }
  4591. }
  4592. },
  4593. [
  4594. {
  4595. name: "Canon Height",
  4596. height: math.unit(120, "feet"),
  4597. default: true
  4598. },
  4599. {
  4600. name: "Macro+",
  4601. height: math.unit(300, "feet")
  4602. },
  4603. {
  4604. name: "Megamacro",
  4605. height: math.unit(20000, "feet")
  4606. }
  4607. ]
  4608. ))
  4609. characterMakers.push(() => makeCharacter(
  4610. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4611. {
  4612. front: {
  4613. height: math.unit(2, "meter"),
  4614. weight: math.unit(50, "kg"),
  4615. name: "Front",
  4616. image: {
  4617. source: "./media/characters/kalista/front.svg",
  4618. extra: 1314/1145,
  4619. bottom: 101/1415
  4620. }
  4621. },
  4622. back: {
  4623. height: math.unit(2, "meter"),
  4624. weight: math.unit(50, "kg"),
  4625. name: "Back",
  4626. image: {
  4627. source: "./media/characters/kalista/back.svg",
  4628. extra: 1366 / 1156,
  4629. bottom: 33.9 / 1362.78
  4630. }
  4631. }
  4632. },
  4633. [
  4634. {
  4635. name: "Uncomfortably Small",
  4636. height: math.unit(10, "feet")
  4637. },
  4638. {
  4639. name: "Small",
  4640. height: math.unit(30, "feet")
  4641. },
  4642. {
  4643. name: "Macro",
  4644. height: math.unit(100, "feet"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Macro+",
  4649. height: math.unit(2000, "feet")
  4650. },
  4651. {
  4652. name: "True Form",
  4653. height: math.unit(8924, "miles")
  4654. }
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(2, "meter"),
  4662. weight: math.unit(120, "kg"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/ggv/front.svg"
  4666. }
  4667. },
  4668. side: {
  4669. height: math.unit(2, "meter"),
  4670. weight: math.unit(120, "kg"),
  4671. name: "Side",
  4672. image: {
  4673. source: "./media/characters/ggv/side.svg"
  4674. }
  4675. }
  4676. },
  4677. [
  4678. {
  4679. name: "Extremely Puny",
  4680. height: math.unit(9 + 5 / 12, "feet")
  4681. },
  4682. {
  4683. name: "Horribly Small",
  4684. height: math.unit(47.7, "miles"),
  4685. default: true
  4686. },
  4687. {
  4688. name: "Reasonably Sized",
  4689. height: math.unit(25000, "parsecs")
  4690. },
  4691. {
  4692. name: "Slightly Uncompressed",
  4693. height: math.unit(7.77e31, "parsecs")
  4694. },
  4695. {
  4696. name: "Omniversal",
  4697. height: math.unit(1e300, "meters")
  4698. },
  4699. ]
  4700. ))
  4701. characterMakers.push(() => makeCharacter(
  4702. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4703. {
  4704. front: {
  4705. height: math.unit(2, "meter"),
  4706. weight: math.unit(75, "lb"),
  4707. name: "Front",
  4708. image: {
  4709. source: "./media/characters/napalm/front.svg"
  4710. }
  4711. },
  4712. back: {
  4713. height: math.unit(2, "meter"),
  4714. weight: math.unit(75, "lb"),
  4715. name: "Back",
  4716. image: {
  4717. source: "./media/characters/napalm/back.svg"
  4718. }
  4719. }
  4720. },
  4721. [
  4722. {
  4723. name: "Standard",
  4724. height: math.unit(55, "feet"),
  4725. default: true
  4726. }
  4727. ]
  4728. ))
  4729. characterMakers.push(() => makeCharacter(
  4730. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4731. {
  4732. front: {
  4733. height: math.unit(7 + 5 / 6, "feet"),
  4734. weight: math.unit(325, "lb"),
  4735. name: "Front",
  4736. image: {
  4737. source: "./media/characters/asana/front.svg",
  4738. extra: 1133 / 1060,
  4739. bottom: 15.2 / 1148.6
  4740. }
  4741. },
  4742. back: {
  4743. height: math.unit(7 + 5 / 6, "feet"),
  4744. weight: math.unit(325, "lb"),
  4745. name: "Back",
  4746. image: {
  4747. source: "./media/characters/asana/back.svg",
  4748. extra: 1114 / 1043,
  4749. bottom: 5 / 1120
  4750. }
  4751. },
  4752. dressedDark: {
  4753. height: math.unit(7 + 5 / 6, "feet"),
  4754. weight: math.unit(325, "lb"),
  4755. name: "Dressed (Dark)",
  4756. image: {
  4757. source: "./media/characters/asana/dressed-dark.svg",
  4758. extra: 1133 / 1060,
  4759. bottom: 15.2 / 1148.6
  4760. }
  4761. },
  4762. dressedLight: {
  4763. height: math.unit(7 + 5 / 6, "feet"),
  4764. weight: math.unit(325, "lb"),
  4765. name: "Dressed (Light)",
  4766. image: {
  4767. source: "./media/characters/asana/dressed-light.svg",
  4768. extra: 1133 / 1060,
  4769. bottom: 15.2 / 1148.6
  4770. }
  4771. },
  4772. },
  4773. [
  4774. {
  4775. name: "Standard",
  4776. height: math.unit(7 + 5 / 6, "feet"),
  4777. default: true
  4778. },
  4779. {
  4780. name: "Large",
  4781. height: math.unit(10, "meters")
  4782. },
  4783. {
  4784. name: "Macro",
  4785. height: math.unit(2500, "meters")
  4786. },
  4787. {
  4788. name: "Megamacro",
  4789. height: math.unit(5e6, "meters")
  4790. },
  4791. {
  4792. name: "Examacro",
  4793. height: math.unit(5e12, "lightyears")
  4794. },
  4795. {
  4796. name: "Max Size",
  4797. height: math.unit(1e31, "lightyears")
  4798. }
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4803. {
  4804. front: {
  4805. height: math.unit(2, "meter"),
  4806. weight: math.unit(60, "kg"),
  4807. name: "Front",
  4808. image: {
  4809. source: "./media/characters/ebony/front.svg",
  4810. bottom: 0.03,
  4811. extra: 1045 / 810 + 0.03
  4812. }
  4813. },
  4814. side: {
  4815. height: math.unit(2, "meter"),
  4816. weight: math.unit(60, "kg"),
  4817. name: "Side",
  4818. image: {
  4819. source: "./media/characters/ebony/side.svg",
  4820. bottom: 0.03,
  4821. extra: 1045 / 810 + 0.03
  4822. }
  4823. },
  4824. back: {
  4825. height: math.unit(2, "meter"),
  4826. weight: math.unit(60, "kg"),
  4827. name: "Back",
  4828. image: {
  4829. source: "./media/characters/ebony/back.svg",
  4830. bottom: 0.01,
  4831. extra: 1045 / 810 + 0.01
  4832. }
  4833. },
  4834. },
  4835. [
  4836. // TODO check why I did this lol
  4837. {
  4838. name: "Standard",
  4839. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4840. default: true
  4841. },
  4842. {
  4843. name: "Macro",
  4844. height: math.unit(200, "feet")
  4845. },
  4846. {
  4847. name: "Gigamacro",
  4848. height: math.unit(13000, "km")
  4849. }
  4850. ]
  4851. ))
  4852. characterMakers.push(() => makeCharacter(
  4853. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4854. {
  4855. front: {
  4856. height: math.unit(6, "feet"),
  4857. weight: math.unit(175, "lb"),
  4858. name: "Front",
  4859. image: {
  4860. source: "./media/characters/mountain/front.svg",
  4861. extra: 972 / 955,
  4862. bottom: 64 / 1036.6
  4863. }
  4864. },
  4865. back: {
  4866. height: math.unit(6, "feet"),
  4867. weight: math.unit(175, "lb"),
  4868. name: "Back",
  4869. image: {
  4870. source: "./media/characters/mountain/back.svg",
  4871. extra: 970 / 950,
  4872. bottom: 28.25 / 999
  4873. }
  4874. },
  4875. },
  4876. [
  4877. {
  4878. name: "Large",
  4879. height: math.unit(20, "meters")
  4880. },
  4881. {
  4882. name: "Macro",
  4883. height: math.unit(300, "meters")
  4884. },
  4885. {
  4886. name: "Gigamacro",
  4887. height: math.unit(10000, "km"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Examacro",
  4892. height: math.unit(10e9, "lightyears")
  4893. }
  4894. ]
  4895. ))
  4896. characterMakers.push(() => makeCharacter(
  4897. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4898. {
  4899. front: {
  4900. height: math.unit(8, "feet"),
  4901. weight: math.unit(500, "lb"),
  4902. name: "Front",
  4903. image: {
  4904. source: "./media/characters/rick/front.svg"
  4905. }
  4906. }
  4907. },
  4908. [
  4909. {
  4910. name: "Normal",
  4911. height: math.unit(8, "feet"),
  4912. default: true
  4913. },
  4914. {
  4915. name: "Macro",
  4916. height: math.unit(5, "km")
  4917. }
  4918. ]
  4919. ))
  4920. characterMakers.push(() => makeCharacter(
  4921. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4922. {
  4923. front: {
  4924. height: math.unit(8, "feet"),
  4925. weight: math.unit(120, "lb"),
  4926. name: "Front",
  4927. image: {
  4928. source: "./media/characters/ona/front.svg"
  4929. }
  4930. },
  4931. frontAlt: {
  4932. height: math.unit(8, "feet"),
  4933. weight: math.unit(120, "lb"),
  4934. name: "Front (Alt)",
  4935. image: {
  4936. source: "./media/characters/ona/front-alt.svg"
  4937. }
  4938. },
  4939. back: {
  4940. height: math.unit(8, "feet"),
  4941. weight: math.unit(120, "lb"),
  4942. name: "Back",
  4943. image: {
  4944. source: "./media/characters/ona/back.svg"
  4945. }
  4946. },
  4947. foot: {
  4948. height: math.unit(1.1, "feet"),
  4949. name: "Foot",
  4950. image: {
  4951. source: "./media/characters/ona/foot.svg"
  4952. }
  4953. }
  4954. },
  4955. [
  4956. {
  4957. name: "Megamacro",
  4958. height: math.unit(70, "km"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "Gigamacro",
  4963. height: math.unit(681818, "miles")
  4964. },
  4965. {
  4966. name: "Examacro",
  4967. height: math.unit(3800000, "lightyears")
  4968. },
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(12, "feet"),
  4976. weight: math.unit(3000, "lb"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/mech/front.svg",
  4980. extra: 2900 / 2770,
  4981. bottom: 110 / 3010
  4982. }
  4983. },
  4984. back: {
  4985. height: math.unit(12, "feet"),
  4986. weight: math.unit(3000, "lb"),
  4987. name: "Back",
  4988. image: {
  4989. source: "./media/characters/mech/back.svg",
  4990. extra: 3011 / 2890,
  4991. bottom: 94 / 3105
  4992. }
  4993. },
  4994. maw: {
  4995. height: math.unit(3.07, "feet"),
  4996. name: "Maw",
  4997. image: {
  4998. source: "./media/characters/mech/maw.svg"
  4999. }
  5000. },
  5001. head: {
  5002. height: math.unit(3.07, "feet"),
  5003. name: "Head",
  5004. image: {
  5005. source: "./media/characters/mech/head.svg"
  5006. }
  5007. },
  5008. dick: {
  5009. height: math.unit(1.43, "feet"),
  5010. name: "Dick",
  5011. image: {
  5012. source: "./media/characters/mech/dick.svg"
  5013. }
  5014. },
  5015. },
  5016. [
  5017. {
  5018. name: "Normal",
  5019. height: math.unit(12, "feet")
  5020. },
  5021. {
  5022. name: "Macro",
  5023. height: math.unit(300, "feet"),
  5024. default: true
  5025. },
  5026. {
  5027. name: "Macro+",
  5028. height: math.unit(1500, "feet")
  5029. },
  5030. ]
  5031. ))
  5032. characterMakers.push(() => makeCharacter(
  5033. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5034. {
  5035. front: {
  5036. height: math.unit(1.3, "meter"),
  5037. weight: math.unit(30, "kg"),
  5038. name: "Front",
  5039. image: {
  5040. source: "./media/characters/gregory/front.svg",
  5041. }
  5042. }
  5043. },
  5044. [
  5045. {
  5046. name: "Normal",
  5047. height: math.unit(1.3, "meter"),
  5048. default: true
  5049. },
  5050. {
  5051. name: "Macro",
  5052. height: math.unit(20, "meter")
  5053. }
  5054. ]
  5055. ))
  5056. characterMakers.push(() => makeCharacter(
  5057. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5058. {
  5059. front: {
  5060. height: math.unit(2.8, "meter"),
  5061. weight: math.unit(200, "kg"),
  5062. name: "Front",
  5063. image: {
  5064. source: "./media/characters/elory/front.svg",
  5065. }
  5066. }
  5067. },
  5068. [
  5069. {
  5070. name: "Normal",
  5071. height: math.unit(2.8, "meter"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Macro",
  5076. height: math.unit(38, "meter")
  5077. }
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5082. {
  5083. front: {
  5084. height: math.unit(470, "feet"),
  5085. weight: math.unit(924, "tons"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/angelpatamon/front.svg",
  5089. }
  5090. }
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(470, "feet"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Deity Size I",
  5100. height: math.unit(28651.2, "km")
  5101. },
  5102. {
  5103. name: "Deity Size II",
  5104. height: math.unit(171907.2, "km")
  5105. }
  5106. ]
  5107. ))
  5108. characterMakers.push(() => makeCharacter(
  5109. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5110. {
  5111. side: {
  5112. height: math.unit(7.2, "meter"),
  5113. weight: math.unit(8.2, "tons"),
  5114. name: "Side",
  5115. image: {
  5116. source: "./media/characters/cryae/side.svg",
  5117. extra: 3500 / 1500
  5118. }
  5119. }
  5120. },
  5121. [
  5122. {
  5123. name: "Normal",
  5124. height: math.unit(7.2, "meter"),
  5125. default: true
  5126. }
  5127. ]
  5128. ))
  5129. characterMakers.push(() => makeCharacter(
  5130. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5131. {
  5132. front: {
  5133. height: math.unit(6, "feet"),
  5134. weight: math.unit(175, "lb"),
  5135. name: "Front",
  5136. image: {
  5137. source: "./media/characters/xera/front.svg",
  5138. extra: 2377 / 1972,
  5139. bottom: 75.5 / 2452
  5140. }
  5141. },
  5142. side: {
  5143. height: math.unit(6, "feet"),
  5144. weight: math.unit(175, "lb"),
  5145. name: "Side",
  5146. image: {
  5147. source: "./media/characters/xera/side.svg",
  5148. extra: 2345 / 2019,
  5149. bottom: 39.7 / 2384
  5150. }
  5151. },
  5152. back: {
  5153. height: math.unit(6, "feet"),
  5154. weight: math.unit(175, "lb"),
  5155. name: "Back",
  5156. image: {
  5157. source: "./media/characters/xera/back.svg",
  5158. extra: 2095 / 1984,
  5159. bottom: 67 / 2166
  5160. }
  5161. },
  5162. },
  5163. [
  5164. {
  5165. name: "Small",
  5166. height: math.unit(10, "feet")
  5167. },
  5168. {
  5169. name: "Macro",
  5170. height: math.unit(500, "meters"),
  5171. default: true
  5172. },
  5173. {
  5174. name: "Macro+",
  5175. height: math.unit(10, "km")
  5176. },
  5177. {
  5178. name: "Gigamacro",
  5179. height: math.unit(25000, "km")
  5180. },
  5181. {
  5182. name: "Teramacro",
  5183. height: math.unit(3e6, "km")
  5184. }
  5185. ]
  5186. ))
  5187. characterMakers.push(() => makeCharacter(
  5188. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5189. {
  5190. front: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(175, "lb"),
  5193. name: "Front",
  5194. image: {
  5195. source: "./media/characters/nebula/front.svg",
  5196. extra: 2566 / 2362,
  5197. bottom: 81 / 2644
  5198. }
  5199. }
  5200. },
  5201. [
  5202. {
  5203. name: "Small",
  5204. height: math.unit(4.5, "meters")
  5205. },
  5206. {
  5207. name: "Macro",
  5208. height: math.unit(1500, "meters"),
  5209. default: true
  5210. },
  5211. {
  5212. name: "Megamacro",
  5213. height: math.unit(150, "km")
  5214. },
  5215. {
  5216. name: "Gigamacro",
  5217. height: math.unit(27000, "km")
  5218. }
  5219. ]
  5220. ))
  5221. characterMakers.push(() => makeCharacter(
  5222. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5223. {
  5224. front: {
  5225. height: math.unit(6, "feet"),
  5226. weight: math.unit(225, "lb"),
  5227. name: "Front",
  5228. image: {
  5229. source: "./media/characters/abysgar/front.svg",
  5230. extra: 1739/1614,
  5231. bottom: 71/1810
  5232. }
  5233. },
  5234. frontNsfw: {
  5235. height: math.unit(6, "feet"),
  5236. weight: math.unit(225, "lb"),
  5237. name: "Front (NSFW)",
  5238. image: {
  5239. source: "./media/characters/abysgar/front-nsfw.svg",
  5240. extra: 1739/1614,
  5241. bottom: 71/1810
  5242. }
  5243. },
  5244. back: {
  5245. height: math.unit(4.6, "feet"),
  5246. weight: math.unit(225, "lb"),
  5247. name: "Back",
  5248. image: {
  5249. source: "./media/characters/abysgar/back.svg",
  5250. extra: 1384/1327,
  5251. bottom: 0/1384
  5252. }
  5253. },
  5254. head: {
  5255. height: math.unit(1.25, "feet"),
  5256. name: "Head",
  5257. image: {
  5258. source: "./media/characters/abysgar/head.svg",
  5259. extra: 669/569,
  5260. bottom: 0/669
  5261. }
  5262. },
  5263. },
  5264. [
  5265. {
  5266. name: "Small",
  5267. height: math.unit(4.5, "meters")
  5268. },
  5269. {
  5270. name: "Macro",
  5271. height: math.unit(1250, "meters"),
  5272. default: true
  5273. },
  5274. {
  5275. name: "Megamacro",
  5276. height: math.unit(125, "km")
  5277. },
  5278. {
  5279. name: "Gigamacro",
  5280. height: math.unit(26000, "km")
  5281. }
  5282. ]
  5283. ))
  5284. characterMakers.push(() => makeCharacter(
  5285. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5286. {
  5287. front: {
  5288. height: math.unit(6, "feet"),
  5289. weight: math.unit(180, "lb"),
  5290. name: "Front",
  5291. image: {
  5292. source: "./media/characters/yakuz/front.svg"
  5293. }
  5294. }
  5295. },
  5296. [
  5297. {
  5298. name: "Small",
  5299. height: math.unit(5, "meters")
  5300. },
  5301. {
  5302. name: "Macro",
  5303. height: math.unit(1500, "meters"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Megamacro",
  5308. height: math.unit(200, "km")
  5309. },
  5310. {
  5311. name: "Gigamacro",
  5312. height: math.unit(100000, "km")
  5313. }
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5318. {
  5319. front: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(175, "lb"),
  5322. name: "Front",
  5323. image: {
  5324. source: "./media/characters/mirova/front.svg",
  5325. extra: 3334 / 3071,
  5326. bottom: 42 / 3375.6
  5327. }
  5328. }
  5329. },
  5330. [
  5331. {
  5332. name: "Small",
  5333. height: math.unit(5, "meters")
  5334. },
  5335. {
  5336. name: "Macro",
  5337. height: math.unit(900, "meters"),
  5338. default: true
  5339. },
  5340. {
  5341. name: "Megamacro",
  5342. height: math.unit(135, "km")
  5343. },
  5344. {
  5345. name: "Gigamacro",
  5346. height: math.unit(20000, "km")
  5347. }
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5352. {
  5353. side: {
  5354. height: math.unit(28.35, "feet"),
  5355. weight: math.unit(99.75, "tons"),
  5356. name: "Side",
  5357. image: {
  5358. source: "./media/characters/asana-mech/side.svg",
  5359. extra: 923 / 699,
  5360. bottom: 50 / 975
  5361. }
  5362. },
  5363. chaingun: {
  5364. height: math.unit(7, "feet"),
  5365. weight: math.unit(2400, "lb"),
  5366. name: "Chaingun",
  5367. image: {
  5368. source: "./media/characters/asana-mech/chaingun.svg"
  5369. }
  5370. },
  5371. laser: {
  5372. height: math.unit(7.12, "feet"),
  5373. weight: math.unit(2000, "lb"),
  5374. name: "Laser",
  5375. image: {
  5376. source: "./media/characters/asana-mech/laser.svg"
  5377. }
  5378. },
  5379. },
  5380. [
  5381. {
  5382. name: "Normal",
  5383. height: math.unit(28.35, "feet"),
  5384. default: true
  5385. },
  5386. {
  5387. name: "Macro",
  5388. height: math.unit(2500, "feet")
  5389. },
  5390. {
  5391. name: "Megamacro",
  5392. height: math.unit(25, "miles")
  5393. },
  5394. {
  5395. name: "Examacro",
  5396. height: math.unit(6e8, "lightyears")
  5397. },
  5398. ]
  5399. ))
  5400. characterMakers.push(() => makeCharacter(
  5401. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5402. {
  5403. front: {
  5404. height: math.unit(5, "meters"),
  5405. weight: math.unit(1000, "kg"),
  5406. name: "Front",
  5407. image: {
  5408. source: "./media/characters/asche/front.svg",
  5409. extra: 1258 / 1190,
  5410. bottom: 47 / 1305
  5411. }
  5412. },
  5413. frontUnderwear: {
  5414. height: math.unit(5, "meters"),
  5415. weight: math.unit(1000, "kg"),
  5416. name: "Front (Underwear)",
  5417. image: {
  5418. source: "./media/characters/asche/front-underwear.svg",
  5419. extra: 1258 / 1190,
  5420. bottom: 47 / 1305
  5421. }
  5422. },
  5423. frontDressed: {
  5424. height: math.unit(5, "meters"),
  5425. weight: math.unit(1000, "kg"),
  5426. name: "Front (Dressed)",
  5427. image: {
  5428. source: "./media/characters/asche/front-dressed.svg",
  5429. extra: 1258 / 1190,
  5430. bottom: 47 / 1305
  5431. }
  5432. },
  5433. frontArmor: {
  5434. height: math.unit(5, "meters"),
  5435. weight: math.unit(1000, "kg"),
  5436. name: "Front (Armored)",
  5437. image: {
  5438. source: "./media/characters/asche/front-armored.svg",
  5439. extra: 1374 / 1308,
  5440. bottom: 23 / 1397
  5441. }
  5442. },
  5443. mp724: {
  5444. height: math.unit(0.96, "meters"),
  5445. weight: math.unit(38, "kg"),
  5446. name: "H&K MP724",
  5447. image: {
  5448. source: "./media/characters/asche/h&k-mp724.svg"
  5449. }
  5450. },
  5451. side: {
  5452. height: math.unit(5, "meters"),
  5453. weight: math.unit(1000, "kg"),
  5454. name: "Side",
  5455. image: {
  5456. source: "./media/characters/asche/side.svg",
  5457. extra: 1717 / 1609,
  5458. bottom: 0.005
  5459. }
  5460. },
  5461. back: {
  5462. height: math.unit(5, "meters"),
  5463. weight: math.unit(1000, "kg"),
  5464. name: "Back",
  5465. image: {
  5466. source: "./media/characters/asche/back.svg",
  5467. extra: 1570 / 1501
  5468. }
  5469. },
  5470. },
  5471. [
  5472. {
  5473. name: "DEFCON 5",
  5474. height: math.unit(5, "meters")
  5475. },
  5476. {
  5477. name: "DEFCON 4",
  5478. height: math.unit(500, "meters"),
  5479. default: true
  5480. },
  5481. {
  5482. name: "DEFCON 3",
  5483. height: math.unit(5, "km")
  5484. },
  5485. {
  5486. name: "DEFCON 2",
  5487. height: math.unit(500, "km")
  5488. },
  5489. {
  5490. name: "DEFCON 1",
  5491. height: math.unit(500000, "km")
  5492. },
  5493. {
  5494. name: "DEFCON 0",
  5495. height: math.unit(3, "gigaparsecs")
  5496. },
  5497. ]
  5498. ))
  5499. characterMakers.push(() => makeCharacter(
  5500. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5501. {
  5502. front: {
  5503. height: math.unit(7, "feet"),
  5504. weight: math.unit(92.7, "kg"),
  5505. name: "Front",
  5506. image: {
  5507. source: "./media/characters/gale/front.svg",
  5508. extra: 977/919,
  5509. bottom: 105/1082
  5510. }
  5511. },
  5512. side: {
  5513. height: math.unit(6.7, "feet"),
  5514. weight: math.unit(92.7, "kg"),
  5515. name: "Side",
  5516. image: {
  5517. source: "./media/characters/gale/side.svg",
  5518. extra: 978/922,
  5519. bottom: 140/1118
  5520. }
  5521. },
  5522. back: {
  5523. height: math.unit(7, "feet"),
  5524. weight: math.unit(92.7, "kg"),
  5525. name: "Back",
  5526. image: {
  5527. source: "./media/characters/gale/back.svg",
  5528. extra: 966/920,
  5529. bottom: 61/1027
  5530. }
  5531. },
  5532. maw: {
  5533. height: math.unit(2.23, "feet"),
  5534. name: "Maw",
  5535. image: {
  5536. source: "./media/characters/gale/maw.svg"
  5537. }
  5538. },
  5539. foot: {
  5540. height: math.unit(2.1, "feet"),
  5541. name: "Foot",
  5542. image: {
  5543. source: "./media/characters/gale/foot.svg"
  5544. }
  5545. },
  5546. },
  5547. [
  5548. {
  5549. name: "Normal",
  5550. height: math.unit(7, "feet")
  5551. },
  5552. {
  5553. name: "Macro",
  5554. height: math.unit(150, "feet"),
  5555. default: true
  5556. },
  5557. {
  5558. name: "Macro+",
  5559. height: math.unit(300, "feet")
  5560. },
  5561. ]
  5562. ))
  5563. characterMakers.push(() => makeCharacter(
  5564. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5565. {
  5566. front: {
  5567. height: math.unit(5 + 10/12, "feet"),
  5568. weight: math.unit(67, "kg"),
  5569. name: "Front",
  5570. image: {
  5571. source: "./media/characters/draylen/front.svg",
  5572. extra: 832/777,
  5573. bottom: 85/917
  5574. }
  5575. }
  5576. },
  5577. [
  5578. {
  5579. name: "Normal",
  5580. height: math.unit(5 + 10/12, "feet")
  5581. },
  5582. {
  5583. name: "Macro",
  5584. height: math.unit(150, "feet"),
  5585. default: true
  5586. }
  5587. ]
  5588. ))
  5589. characterMakers.push(() => makeCharacter(
  5590. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5591. {
  5592. front: {
  5593. height: math.unit(7 + 9 / 12, "feet"),
  5594. weight: math.unit(379, "lbs"),
  5595. name: "Front",
  5596. image: {
  5597. source: "./media/characters/chez/front.svg"
  5598. }
  5599. },
  5600. side: {
  5601. height: math.unit(7 + 9 / 12, "feet"),
  5602. weight: math.unit(379, "lbs"),
  5603. name: "Side",
  5604. image: {
  5605. source: "./media/characters/chez/side.svg"
  5606. }
  5607. }
  5608. },
  5609. [
  5610. {
  5611. name: "Normal",
  5612. height: math.unit(7 + 9 / 12, "feet"),
  5613. default: true
  5614. },
  5615. {
  5616. name: "God King",
  5617. height: math.unit(9750000, "meters")
  5618. }
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(6, "feet"),
  5626. weight: math.unit(275, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/kaylum/front.svg",
  5630. bottom: 0.01,
  5631. extra: 1166 / 1031
  5632. }
  5633. },
  5634. frontWingless: {
  5635. height: math.unit(6, "feet"),
  5636. weight: math.unit(275, "lbs"),
  5637. name: "Front (Wingless)",
  5638. image: {
  5639. source: "./media/characters/kaylum/front-wingless.svg",
  5640. bottom: 0.01,
  5641. extra: 1117 / 1031
  5642. }
  5643. }
  5644. },
  5645. [
  5646. {
  5647. name: "Normal",
  5648. height: math.unit(3.05, "meters")
  5649. },
  5650. {
  5651. name: "Master",
  5652. height: math.unit(5.5, "meters")
  5653. },
  5654. {
  5655. name: "Rampage",
  5656. height: math.unit(19, "meters")
  5657. },
  5658. {
  5659. name: "Macro Lite",
  5660. height: math.unit(37, "meters")
  5661. },
  5662. {
  5663. name: "Hyper Predator",
  5664. height: math.unit(61, "meters")
  5665. },
  5666. {
  5667. name: "Macro",
  5668. height: math.unit(138, "meters"),
  5669. default: true
  5670. }
  5671. ]
  5672. ))
  5673. characterMakers.push(() => makeCharacter(
  5674. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5675. {
  5676. front: {
  5677. height: math.unit(5 + 5 / 12, "feet"),
  5678. weight: math.unit(120, "lbs"),
  5679. name: "Front",
  5680. image: {
  5681. source: "./media/characters/geta/front.svg",
  5682. extra: 1003/933,
  5683. bottom: 21/1024
  5684. }
  5685. },
  5686. paw: {
  5687. height: math.unit(0.35, "feet"),
  5688. name: "Paw",
  5689. image: {
  5690. source: "./media/characters/geta/paw.svg"
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Micro",
  5697. height: math.unit(3, "inches"),
  5698. default: true
  5699. },
  5700. {
  5701. name: "Normal",
  5702. height: math.unit(5 + 5 / 12, "feet")
  5703. }
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5708. {
  5709. front: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(300, "lbs"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/tyrnn/front.svg"
  5715. }
  5716. }
  5717. },
  5718. [
  5719. {
  5720. name: "Main Height",
  5721. height: math.unit(355, "feet"),
  5722. default: true
  5723. },
  5724. {
  5725. name: "Fave. Height",
  5726. height: math.unit(2400, "feet")
  5727. }
  5728. ]
  5729. ))
  5730. characterMakers.push(() => makeCharacter(
  5731. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5732. {
  5733. front: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(300, "lbs"),
  5736. name: "Front",
  5737. image: {
  5738. source: "./media/characters/appledectomy/front.svg"
  5739. }
  5740. }
  5741. },
  5742. [
  5743. {
  5744. name: "Macro",
  5745. height: math.unit(2500, "feet")
  5746. },
  5747. {
  5748. name: "Megamacro",
  5749. height: math.unit(50, "miles"),
  5750. default: true
  5751. },
  5752. {
  5753. name: "Gigamacro",
  5754. height: math.unit(5000, "miles")
  5755. },
  5756. {
  5757. name: "Teramacro",
  5758. height: math.unit(250000, "miles")
  5759. },
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5764. {
  5765. front: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(200, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/vulpes/front.svg",
  5771. extra: 573 / 543,
  5772. bottom: 0.033
  5773. }
  5774. },
  5775. side: {
  5776. height: math.unit(6, "feet"),
  5777. weight: math.unit(200, "lbs"),
  5778. name: "Side",
  5779. image: {
  5780. source: "./media/characters/vulpes/side.svg",
  5781. extra: 577 / 549,
  5782. bottom: 11 / 588
  5783. }
  5784. },
  5785. back: {
  5786. height: math.unit(6, "feet"),
  5787. weight: math.unit(200, "lbs"),
  5788. name: "Back",
  5789. image: {
  5790. source: "./media/characters/vulpes/back.svg",
  5791. extra: 573 / 549,
  5792. bottom: 20 / 593
  5793. }
  5794. },
  5795. feet: {
  5796. height: math.unit(1.276, "feet"),
  5797. name: "Feet",
  5798. image: {
  5799. source: "./media/characters/vulpes/feet.svg"
  5800. }
  5801. },
  5802. maw: {
  5803. height: math.unit(1.18, "feet"),
  5804. name: "Maw",
  5805. image: {
  5806. source: "./media/characters/vulpes/maw.svg"
  5807. }
  5808. },
  5809. },
  5810. [
  5811. {
  5812. name: "Micro",
  5813. height: math.unit(2, "inches")
  5814. },
  5815. {
  5816. name: "Normal",
  5817. height: math.unit(6.3, "feet")
  5818. },
  5819. {
  5820. name: "Macro",
  5821. height: math.unit(850, "feet")
  5822. },
  5823. {
  5824. name: "Megamacro",
  5825. height: math.unit(7500, "feet"),
  5826. default: true
  5827. },
  5828. {
  5829. name: "Gigamacro",
  5830. height: math.unit(570000, "miles")
  5831. }
  5832. ]
  5833. ))
  5834. characterMakers.push(() => makeCharacter(
  5835. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5836. {
  5837. front: {
  5838. height: math.unit(6, "feet"),
  5839. weight: math.unit(210, "lbs"),
  5840. name: "Front",
  5841. image: {
  5842. source: "./media/characters/rain-fallen/front.svg"
  5843. }
  5844. },
  5845. side: {
  5846. height: math.unit(6, "feet"),
  5847. weight: math.unit(210, "lbs"),
  5848. name: "Side",
  5849. image: {
  5850. source: "./media/characters/rain-fallen/side.svg"
  5851. }
  5852. },
  5853. back: {
  5854. height: math.unit(6, "feet"),
  5855. weight: math.unit(210, "lbs"),
  5856. name: "Back",
  5857. image: {
  5858. source: "./media/characters/rain-fallen/back.svg"
  5859. }
  5860. },
  5861. feral: {
  5862. height: math.unit(9, "feet"),
  5863. weight: math.unit(700, "lbs"),
  5864. name: "Feral",
  5865. image: {
  5866. source: "./media/characters/rain-fallen/feral.svg"
  5867. }
  5868. },
  5869. },
  5870. [
  5871. {
  5872. name: "Meddling with Mortals",
  5873. height: math.unit(8 + 8/12, "feet")
  5874. },
  5875. {
  5876. name: "Normal",
  5877. height: math.unit(5, "meter")
  5878. },
  5879. {
  5880. name: "Macro",
  5881. height: math.unit(150, "meter"),
  5882. default: true
  5883. },
  5884. {
  5885. name: "Megamacro",
  5886. height: math.unit(278e6, "meter")
  5887. },
  5888. {
  5889. name: "Gigamacro",
  5890. height: math.unit(2e9, "meter")
  5891. },
  5892. {
  5893. name: "Teramacro",
  5894. height: math.unit(8e12, "meter")
  5895. },
  5896. {
  5897. name: "Devourer",
  5898. height: math.unit(14, "zettameters")
  5899. },
  5900. {
  5901. name: "Scarlet King",
  5902. height: math.unit(18, "yottameters")
  5903. },
  5904. {
  5905. name: "Void",
  5906. height: math.unit(1e88, "yottameters")
  5907. }
  5908. ]
  5909. ))
  5910. characterMakers.push(() => makeCharacter(
  5911. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5912. {
  5913. standing: {
  5914. height: math.unit(6, "feet"),
  5915. weight: math.unit(180, "lbs"),
  5916. name: "Standing",
  5917. image: {
  5918. source: "./media/characters/zaakira/standing.svg",
  5919. extra: 1599/1504,
  5920. bottom: 39/1638
  5921. }
  5922. },
  5923. laying: {
  5924. height: math.unit(3.3, "feet"),
  5925. weight: math.unit(180, "lbs"),
  5926. name: "Laying",
  5927. image: {
  5928. source: "./media/characters/zaakira/laying.svg"
  5929. }
  5930. },
  5931. },
  5932. [
  5933. {
  5934. name: "Normal",
  5935. height: math.unit(12, "feet")
  5936. },
  5937. {
  5938. name: "Macro",
  5939. height: math.unit(279, "feet"),
  5940. default: true
  5941. }
  5942. ]
  5943. ))
  5944. characterMakers.push(() => makeCharacter(
  5945. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5946. {
  5947. femSfw: {
  5948. height: math.unit(8, "feet"),
  5949. weight: math.unit(350, "lb"),
  5950. name: "Fem",
  5951. image: {
  5952. source: "./media/characters/sigvald/fem-sfw.svg",
  5953. extra: 182 / 164,
  5954. bottom: 8.7 / 190.5
  5955. }
  5956. },
  5957. femNsfw: {
  5958. height: math.unit(8, "feet"),
  5959. weight: math.unit(350, "lb"),
  5960. name: "Fem (NSFW)",
  5961. image: {
  5962. source: "./media/characters/sigvald/fem-nsfw.svg",
  5963. extra: 182 / 164,
  5964. bottom: 8.7 / 190.5
  5965. }
  5966. },
  5967. maleNsfw: {
  5968. height: math.unit(8, "feet"),
  5969. weight: math.unit(350, "lb"),
  5970. name: "Male (NSFW)",
  5971. image: {
  5972. source: "./media/characters/sigvald/male-nsfw.svg",
  5973. extra: 182 / 164,
  5974. bottom: 8.7 / 190.5
  5975. }
  5976. },
  5977. hermNsfw: {
  5978. height: math.unit(8, "feet"),
  5979. weight: math.unit(350, "lb"),
  5980. name: "Herm (NSFW)",
  5981. image: {
  5982. source: "./media/characters/sigvald/herm-nsfw.svg",
  5983. extra: 182 / 164,
  5984. bottom: 8.7 / 190.5
  5985. }
  5986. },
  5987. dick: {
  5988. height: math.unit(2.36, "feet"),
  5989. name: "Dick",
  5990. image: {
  5991. source: "./media/characters/sigvald/dick.svg"
  5992. }
  5993. },
  5994. eye: {
  5995. height: math.unit(0.31, "feet"),
  5996. name: "Eye",
  5997. image: {
  5998. source: "./media/characters/sigvald/eye.svg"
  5999. }
  6000. },
  6001. mouth: {
  6002. height: math.unit(0.92, "feet"),
  6003. name: "Mouth",
  6004. image: {
  6005. source: "./media/characters/sigvald/mouth.svg"
  6006. }
  6007. },
  6008. paws: {
  6009. height: math.unit(2.2, "feet"),
  6010. name: "Paws",
  6011. image: {
  6012. source: "./media/characters/sigvald/paws.svg"
  6013. }
  6014. }
  6015. },
  6016. [
  6017. {
  6018. name: "Normal",
  6019. height: math.unit(8, "feet")
  6020. },
  6021. {
  6022. name: "Large",
  6023. height: math.unit(12, "feet")
  6024. },
  6025. {
  6026. name: "Larger",
  6027. height: math.unit(20, "feet")
  6028. },
  6029. {
  6030. name: "Macro",
  6031. height: math.unit(150, "feet")
  6032. },
  6033. {
  6034. name: "Macro+",
  6035. height: math.unit(200, "feet"),
  6036. default: true
  6037. },
  6038. ]
  6039. ))
  6040. characterMakers.push(() => makeCharacter(
  6041. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6042. {
  6043. side: {
  6044. height: math.unit(12, "feet"),
  6045. weight: math.unit(2000, "kg"),
  6046. name: "Side",
  6047. image: {
  6048. source: "./media/characters/scott/side.svg",
  6049. extra: 754 / 724,
  6050. bottom: 0.069
  6051. }
  6052. },
  6053. upright: {
  6054. height: math.unit(12, "feet"),
  6055. weight: math.unit(2000, "kg"),
  6056. name: "Upright",
  6057. image: {
  6058. source: "./media/characters/scott/upright.svg",
  6059. extra: 3881 / 3722,
  6060. bottom: 0.05
  6061. }
  6062. },
  6063. },
  6064. [
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(12, "feet"),
  6068. default: true
  6069. },
  6070. ]
  6071. ))
  6072. characterMakers.push(() => makeCharacter(
  6073. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6074. {
  6075. side: {
  6076. height: math.unit(8, "meters"),
  6077. weight: math.unit(84755, "lbs"),
  6078. name: "Side",
  6079. image: {
  6080. source: "./media/characters/tobias/side.svg",
  6081. extra: 1474 / 1096,
  6082. bottom: 38.9 / 1513.1235
  6083. }
  6084. },
  6085. },
  6086. [
  6087. {
  6088. name: "Normal",
  6089. height: math.unit(8, "meters"),
  6090. default: true
  6091. },
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6096. {
  6097. front: {
  6098. height: math.unit(5.5, "feet"),
  6099. weight: math.unit(400, "lbs"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/kieran/front.svg",
  6103. extra: 2694 / 2364,
  6104. bottom: 217 / 2908
  6105. }
  6106. },
  6107. side: {
  6108. height: math.unit(5.5, "feet"),
  6109. weight: math.unit(400, "lbs"),
  6110. name: "Side",
  6111. image: {
  6112. source: "./media/characters/kieran/side.svg",
  6113. extra: 875 / 777,
  6114. bottom: 84.6 / 959
  6115. }
  6116. },
  6117. },
  6118. [
  6119. {
  6120. name: "Normal",
  6121. height: math.unit(5.5, "feet"),
  6122. default: true
  6123. },
  6124. ]
  6125. ))
  6126. characterMakers.push(() => makeCharacter(
  6127. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6128. {
  6129. side: {
  6130. height: math.unit(2, "meters"),
  6131. weight: math.unit(70, "kg"),
  6132. name: "Side",
  6133. image: {
  6134. source: "./media/characters/sanya/side.svg",
  6135. bottom: 0.02,
  6136. extra: 1.02
  6137. }
  6138. },
  6139. },
  6140. [
  6141. {
  6142. name: "Small",
  6143. height: math.unit(2, "meters")
  6144. },
  6145. {
  6146. name: "Normal",
  6147. height: math.unit(3, "meters")
  6148. },
  6149. {
  6150. name: "Macro",
  6151. height: math.unit(16, "meters"),
  6152. default: true
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6158. {
  6159. front: {
  6160. height: math.unit(2, "meters"),
  6161. weight: math.unit(120, "kg"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/miranda/front.svg",
  6165. extra: 195 / 185,
  6166. bottom: 10.9 / 206.5
  6167. }
  6168. },
  6169. back: {
  6170. height: math.unit(2, "meters"),
  6171. weight: math.unit(120, "kg"),
  6172. name: "Back",
  6173. image: {
  6174. source: "./media/characters/miranda/back.svg",
  6175. extra: 201 / 193,
  6176. bottom: 2.3 / 203.7
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(10, "feet"),
  6184. default: true
  6185. }
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "James", species: ["deer"], tags: ["anthro"] },
  6190. {
  6191. side: {
  6192. height: math.unit(2, "meters"),
  6193. weight: math.unit(100, "kg"),
  6194. name: "Front",
  6195. image: {
  6196. source: "./media/characters/james/front.svg",
  6197. extra: 10 / 8.5
  6198. }
  6199. },
  6200. },
  6201. [
  6202. {
  6203. name: "Normal",
  6204. height: math.unit(8.5, "feet"),
  6205. default: true
  6206. }
  6207. ]
  6208. ))
  6209. characterMakers.push(() => makeCharacter(
  6210. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6211. {
  6212. side: {
  6213. height: math.unit(9.5, "feet"),
  6214. weight: math.unit(2500, "lbs"),
  6215. name: "Side",
  6216. image: {
  6217. source: "./media/characters/heather/side.svg"
  6218. }
  6219. },
  6220. },
  6221. [
  6222. {
  6223. name: "Normal",
  6224. height: math.unit(9.5, "feet"),
  6225. default: true
  6226. }
  6227. ]
  6228. ))
  6229. characterMakers.push(() => makeCharacter(
  6230. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6231. {
  6232. side: {
  6233. height: math.unit(6.5, "feet"),
  6234. weight: math.unit(400, "lbs"),
  6235. name: "Side",
  6236. image: {
  6237. source: "./media/characters/lukas/side.svg",
  6238. extra: 7.25 / 6.5
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(6.5, "feet"),
  6246. default: true
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6252. {
  6253. side: {
  6254. height: math.unit(5, "feet"),
  6255. weight: math.unit(3000, "lbs"),
  6256. name: "Side",
  6257. image: {
  6258. source: "./media/characters/louise/side.svg"
  6259. }
  6260. },
  6261. },
  6262. [
  6263. {
  6264. name: "Normal",
  6265. height: math.unit(5, "feet"),
  6266. default: true
  6267. }
  6268. ]
  6269. ))
  6270. characterMakers.push(() => makeCharacter(
  6271. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6272. {
  6273. side: {
  6274. height: math.unit(6, "feet"),
  6275. weight: math.unit(150, "lbs"),
  6276. name: "Side",
  6277. image: {
  6278. source: "./media/characters/ramona/side.svg",
  6279. extra: 871/854,
  6280. bottom: 41/912
  6281. }
  6282. },
  6283. },
  6284. [
  6285. {
  6286. name: "Normal",
  6287. height: math.unit(6 + 4/12, "feet")
  6288. },
  6289. {
  6290. name: "Minimacro",
  6291. height: math.unit(5.3, "meters"),
  6292. default: true
  6293. },
  6294. {
  6295. name: "Macro",
  6296. height: math.unit(20, "stories")
  6297. },
  6298. {
  6299. name: "Macro+",
  6300. height: math.unit(50, "stories")
  6301. },
  6302. ]
  6303. ))
  6304. characterMakers.push(() => makeCharacter(
  6305. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6306. {
  6307. standing: {
  6308. height: math.unit(5.75, "feet"),
  6309. weight: math.unit(160, "lbs"),
  6310. name: "Standing",
  6311. image: {
  6312. source: "./media/characters/deerpuff/standing.svg",
  6313. extra: 682 / 624
  6314. }
  6315. },
  6316. sitting: {
  6317. height: math.unit(5.75 / 1.79, "feet"),
  6318. weight: math.unit(160, "lbs"),
  6319. name: "Sitting",
  6320. image: {
  6321. source: "./media/characters/deerpuff/sitting.svg",
  6322. bottom: 44 / 400,
  6323. extra: 1
  6324. }
  6325. },
  6326. taurLaying: {
  6327. height: math.unit(6, "feet"),
  6328. weight: math.unit(400, "lbs"),
  6329. name: "Taur (Laying)",
  6330. image: {
  6331. source: "./media/characters/deerpuff/taur-laying.svg"
  6332. }
  6333. },
  6334. },
  6335. [
  6336. {
  6337. name: "Puffball",
  6338. height: math.unit(6, "inches")
  6339. },
  6340. {
  6341. name: "Normalpuff",
  6342. height: math.unit(5.75, "feet")
  6343. },
  6344. {
  6345. name: "Macropuff",
  6346. height: math.unit(1500, "feet"),
  6347. default: true
  6348. },
  6349. {
  6350. name: "Megapuff",
  6351. height: math.unit(500, "miles")
  6352. },
  6353. {
  6354. name: "Gigapuff",
  6355. height: math.unit(250000, "miles")
  6356. },
  6357. {
  6358. name: "Omegapuff",
  6359. height: math.unit(1000, "lightyears")
  6360. },
  6361. ]
  6362. ))
  6363. characterMakers.push(() => makeCharacter(
  6364. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6365. {
  6366. stomping: {
  6367. height: math.unit(6, "feet"),
  6368. weight: math.unit(170, "lbs"),
  6369. name: "Stomping",
  6370. image: {
  6371. source: "./media/characters/vivian/stomping.svg"
  6372. }
  6373. },
  6374. sitting: {
  6375. height: math.unit(6 / 1.75, "feet"),
  6376. weight: math.unit(170, "lbs"),
  6377. name: "Sitting",
  6378. image: {
  6379. source: "./media/characters/vivian/sitting.svg",
  6380. bottom: 1 / 6.4,
  6381. extra: 1,
  6382. }
  6383. },
  6384. },
  6385. [
  6386. {
  6387. name: "Normal",
  6388. height: math.unit(7, "feet"),
  6389. default: true
  6390. },
  6391. {
  6392. name: "Macro",
  6393. height: math.unit(10, "stories")
  6394. },
  6395. {
  6396. name: "Macro+",
  6397. height: math.unit(30, "stories")
  6398. },
  6399. {
  6400. name: "Megamacro",
  6401. height: math.unit(10, "miles")
  6402. },
  6403. {
  6404. name: "Megamacro+",
  6405. height: math.unit(2750000, "meters")
  6406. },
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6411. {
  6412. front: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(160, "lbs"),
  6415. name: "Front",
  6416. image: {
  6417. source: "./media/characters/prince/front.svg",
  6418. extra: 1938/1682,
  6419. bottom: 45/1983
  6420. }
  6421. },
  6422. back: {
  6423. height: math.unit(6, "feet"),
  6424. weight: math.unit(160, "lbs"),
  6425. name: "Back",
  6426. image: {
  6427. source: "./media/characters/prince/back.svg",
  6428. extra: 1955/1726,
  6429. bottom: 6/1961
  6430. }
  6431. },
  6432. },
  6433. [
  6434. {
  6435. name: "Normal",
  6436. height: math.unit(7.75, "feet"),
  6437. default: true
  6438. },
  6439. {
  6440. name: "Not cute",
  6441. height: math.unit(17, "feet")
  6442. },
  6443. {
  6444. name: "I said NOT",
  6445. height: math.unit(91, "feet")
  6446. },
  6447. {
  6448. name: "Please stop",
  6449. height: math.unit(560, "feet")
  6450. },
  6451. {
  6452. name: "What have you done",
  6453. height: math.unit(2200, "feet")
  6454. },
  6455. {
  6456. name: "Deer God",
  6457. height: math.unit(3.6, "miles")
  6458. },
  6459. ]
  6460. ))
  6461. characterMakers.push(() => makeCharacter(
  6462. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6463. {
  6464. standing: {
  6465. height: math.unit(6, "feet"),
  6466. weight: math.unit(300, "lbs"),
  6467. name: "Standing",
  6468. image: {
  6469. source: "./media/characters/psymon/standing.svg",
  6470. extra: 1888 / 1810,
  6471. bottom: 0.05
  6472. }
  6473. },
  6474. slithering: {
  6475. height: math.unit(6, "feet"),
  6476. weight: math.unit(300, "lbs"),
  6477. name: "Slithering",
  6478. image: {
  6479. source: "./media/characters/psymon/slithering.svg",
  6480. extra: 1330 / 1224
  6481. }
  6482. },
  6483. slitheringAlt: {
  6484. height: math.unit(6, "feet"),
  6485. weight: math.unit(300, "lbs"),
  6486. name: "Slithering (Alt)",
  6487. image: {
  6488. source: "./media/characters/psymon/slithering-alt.svg",
  6489. extra: 1330 / 1224
  6490. }
  6491. },
  6492. },
  6493. [
  6494. {
  6495. name: "Normal",
  6496. height: math.unit(11.25, "feet"),
  6497. default: true
  6498. },
  6499. {
  6500. name: "Large",
  6501. height: math.unit(27, "feet")
  6502. },
  6503. {
  6504. name: "Giant",
  6505. height: math.unit(87, "feet")
  6506. },
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(365, "feet")
  6510. },
  6511. {
  6512. name: "Megamacro",
  6513. height: math.unit(3, "miles")
  6514. },
  6515. {
  6516. name: "World Serpent",
  6517. height: math.unit(8000, "miles")
  6518. },
  6519. ]
  6520. ))
  6521. characterMakers.push(() => makeCharacter(
  6522. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6523. {
  6524. front: {
  6525. height: math.unit(6, "feet"),
  6526. weight: math.unit(180, "lbs"),
  6527. name: "Front",
  6528. image: {
  6529. source: "./media/characters/daimos/front.svg",
  6530. extra: 4160 / 3897,
  6531. bottom: 0.021
  6532. }
  6533. }
  6534. },
  6535. [
  6536. {
  6537. name: "Normal",
  6538. height: math.unit(8, "feet"),
  6539. default: true
  6540. },
  6541. {
  6542. name: "Big Dog",
  6543. height: math.unit(22, "feet")
  6544. },
  6545. {
  6546. name: "Macro",
  6547. height: math.unit(127, "feet")
  6548. },
  6549. {
  6550. name: "Megamacro",
  6551. height: math.unit(3600, "feet")
  6552. },
  6553. ]
  6554. ))
  6555. characterMakers.push(() => makeCharacter(
  6556. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6557. {
  6558. side: {
  6559. height: math.unit(6, "feet"),
  6560. weight: math.unit(180, "lbs"),
  6561. name: "Side",
  6562. image: {
  6563. source: "./media/characters/blake/side.svg",
  6564. extra: 1212 / 1120,
  6565. bottom: 0.05
  6566. }
  6567. },
  6568. crouched: {
  6569. height: math.unit(6 * 0.57, "feet"),
  6570. weight: math.unit(180, "lbs"),
  6571. name: "Crouched",
  6572. image: {
  6573. source: "./media/characters/blake/crouched.svg",
  6574. extra: 840 / 587,
  6575. bottom: 0.04
  6576. }
  6577. },
  6578. bent: {
  6579. height: math.unit(6 * 0.75, "feet"),
  6580. weight: math.unit(180, "lbs"),
  6581. name: "Bent",
  6582. image: {
  6583. source: "./media/characters/blake/bent.svg",
  6584. extra: 592 / 544,
  6585. bottom: 0.035
  6586. }
  6587. },
  6588. },
  6589. [
  6590. {
  6591. name: "Normal",
  6592. height: math.unit(8 + 1 / 6, "feet"),
  6593. default: true
  6594. },
  6595. {
  6596. name: "Big Backside",
  6597. height: math.unit(37, "feet")
  6598. },
  6599. {
  6600. name: "Subway Shredder",
  6601. height: math.unit(72, "feet")
  6602. },
  6603. {
  6604. name: "City Carver",
  6605. height: math.unit(1675, "feet")
  6606. },
  6607. {
  6608. name: "Tectonic Tweaker",
  6609. height: math.unit(2300, "miles")
  6610. },
  6611. ]
  6612. ))
  6613. characterMakers.push(() => makeCharacter(
  6614. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6615. {
  6616. front: {
  6617. height: math.unit(6, "feet"),
  6618. weight: math.unit(180, "lbs"),
  6619. name: "Front",
  6620. image: {
  6621. source: "./media/characters/guisetto/front.svg",
  6622. extra: 856 / 817,
  6623. bottom: 0.06
  6624. }
  6625. },
  6626. airborne: {
  6627. height: math.unit(6, "feet"),
  6628. weight: math.unit(180, "lbs"),
  6629. name: "Airborne",
  6630. image: {
  6631. source: "./media/characters/guisetto/airborne.svg",
  6632. extra: 584 / 525
  6633. }
  6634. },
  6635. },
  6636. [
  6637. {
  6638. name: "Normal",
  6639. height: math.unit(10 + 11 / 12, "feet"),
  6640. default: true
  6641. },
  6642. {
  6643. name: "Large",
  6644. height: math.unit(35, "feet")
  6645. },
  6646. {
  6647. name: "Macro",
  6648. height: math.unit(475, "feet")
  6649. },
  6650. ]
  6651. ))
  6652. characterMakers.push(() => makeCharacter(
  6653. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6654. {
  6655. front: {
  6656. height: math.unit(6, "feet"),
  6657. weight: math.unit(180, "lbs"),
  6658. name: "Front",
  6659. image: {
  6660. source: "./media/characters/luxor/front.svg",
  6661. extra: 2940 / 2152
  6662. }
  6663. },
  6664. back: {
  6665. height: math.unit(6, "feet"),
  6666. weight: math.unit(180, "lbs"),
  6667. name: "Back",
  6668. image: {
  6669. source: "./media/characters/luxor/back.svg",
  6670. extra: 1083 / 960
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(5 + 5 / 6, "feet"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Lamp",
  6682. height: math.unit(50, "feet")
  6683. },
  6684. {
  6685. name: "Lämp",
  6686. height: math.unit(300, "feet")
  6687. },
  6688. {
  6689. name: "The sun is a lamp",
  6690. height: math.unit(250000, "miles")
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(50, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/huoyan/front.svg"
  6703. }
  6704. },
  6705. side: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(180, "lbs"),
  6708. name: "Side",
  6709. image: {
  6710. source: "./media/characters/huoyan/side.svg"
  6711. }
  6712. },
  6713. },
  6714. [
  6715. {
  6716. name: "Chef",
  6717. height: math.unit(9, "feet")
  6718. },
  6719. {
  6720. name: "Normal",
  6721. height: math.unit(65, "feet"),
  6722. default: true
  6723. },
  6724. {
  6725. name: "Macro",
  6726. height: math.unit(780, "feet")
  6727. },
  6728. {
  6729. name: "Flaming Mountain",
  6730. height: math.unit(4.8, "miles")
  6731. },
  6732. {
  6733. name: "Celestial",
  6734. height: math.unit(765000, "miles")
  6735. },
  6736. ]
  6737. ))
  6738. characterMakers.push(() => makeCharacter(
  6739. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6740. {
  6741. front: {
  6742. height: math.unit(5 + 3 / 4, "feet"),
  6743. weight: math.unit(120, "lbs"),
  6744. name: "Front",
  6745. image: {
  6746. source: "./media/characters/tails/front.svg"
  6747. }
  6748. }
  6749. },
  6750. [
  6751. {
  6752. name: "Normal",
  6753. height: math.unit(5 + 3 / 4, "feet"),
  6754. default: true
  6755. }
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(4, "feet"),
  6763. weight: math.unit(50, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/rainy/front.svg"
  6767. }
  6768. }
  6769. },
  6770. [
  6771. {
  6772. name: "Macro",
  6773. height: math.unit(800, "feet"),
  6774. default: true
  6775. }
  6776. ]
  6777. ))
  6778. characterMakers.push(() => makeCharacter(
  6779. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6780. {
  6781. front: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(150, "lbs"),
  6784. name: "Front",
  6785. image: {
  6786. source: "./media/characters/rainier/front.svg"
  6787. }
  6788. }
  6789. },
  6790. [
  6791. {
  6792. name: "Micro",
  6793. height: math.unit(2, "mm"),
  6794. default: true
  6795. }
  6796. ]
  6797. ))
  6798. characterMakers.push(() => makeCharacter(
  6799. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6800. {
  6801. front: {
  6802. height: math.unit(8 + 4/12, "feet"),
  6803. weight: math.unit(450, "kilograms"),
  6804. volume: math.unit(5, "cups"),
  6805. name: "Front",
  6806. image: {
  6807. source: "./media/characters/andy-renard/front.svg",
  6808. extra: 1839/1726,
  6809. bottom: 134/1973
  6810. }
  6811. },
  6812. back: {
  6813. height: math.unit(8 + 4/12, "feet"),
  6814. weight: math.unit(450, "kilograms"),
  6815. volume: math.unit(5, "cups"),
  6816. name: "Back",
  6817. image: {
  6818. source: "./media/characters/andy-renard/back.svg",
  6819. extra: 1838/1710,
  6820. bottom: 105/1943
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Tall",
  6827. height: math.unit(8 + 4/12, "feet")
  6828. },
  6829. {
  6830. name: "Mini Macro",
  6831. height: math.unit(15, "feet"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Macro",
  6836. height: math.unit(100, "feet")
  6837. },
  6838. {
  6839. name: "Mega Macro",
  6840. height: math.unit(1000, "feet")
  6841. },
  6842. {
  6843. name: "Giga Macro",
  6844. height: math.unit(10, "miles")
  6845. },
  6846. {
  6847. name: "God Macro",
  6848. height: math.unit(1, "multiverse")
  6849. },
  6850. ]
  6851. ))
  6852. characterMakers.push(() => makeCharacter(
  6853. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6854. {
  6855. front: {
  6856. height: math.unit(6, "feet"),
  6857. weight: math.unit(210, "lbs"),
  6858. name: "Front",
  6859. image: {
  6860. source: "./media/characters/cimmaron/front-sfw.svg",
  6861. extra: 701 / 676,
  6862. bottom: 0.046
  6863. }
  6864. },
  6865. back: {
  6866. height: math.unit(6, "feet"),
  6867. weight: math.unit(210, "lbs"),
  6868. name: "Back",
  6869. image: {
  6870. source: "./media/characters/cimmaron/back-sfw.svg",
  6871. extra: 701 / 676,
  6872. bottom: 0.046
  6873. }
  6874. },
  6875. frontNsfw: {
  6876. height: math.unit(6, "feet"),
  6877. weight: math.unit(210, "lbs"),
  6878. name: "Front (NSFW)",
  6879. image: {
  6880. source: "./media/characters/cimmaron/front-nsfw.svg",
  6881. extra: 701 / 676,
  6882. bottom: 0.046
  6883. }
  6884. },
  6885. backNsfw: {
  6886. height: math.unit(6, "feet"),
  6887. weight: math.unit(210, "lbs"),
  6888. name: "Back (NSFW)",
  6889. image: {
  6890. source: "./media/characters/cimmaron/back-nsfw.svg",
  6891. extra: 701 / 676,
  6892. bottom: 0.046
  6893. }
  6894. },
  6895. dick: {
  6896. height: math.unit(1.714, "feet"),
  6897. name: "Dick",
  6898. image: {
  6899. source: "./media/characters/cimmaron/dick.svg"
  6900. }
  6901. },
  6902. },
  6903. [
  6904. {
  6905. name: "Normal",
  6906. height: math.unit(6, "feet"),
  6907. default: true
  6908. },
  6909. {
  6910. name: "Macro Mayor",
  6911. height: math.unit(350, "meters")
  6912. },
  6913. ]
  6914. ))
  6915. characterMakers.push(() => makeCharacter(
  6916. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6917. {
  6918. front: {
  6919. height: math.unit(6, "feet"),
  6920. weight: math.unit(200, "lbs"),
  6921. name: "Front",
  6922. image: {
  6923. source: "./media/characters/akari/front.svg",
  6924. extra: 962 / 901,
  6925. bottom: 0.04
  6926. }
  6927. }
  6928. },
  6929. [
  6930. {
  6931. name: "Micro",
  6932. height: math.unit(5, "inches"),
  6933. default: true
  6934. },
  6935. {
  6936. name: "Normal",
  6937. height: math.unit(7, "feet")
  6938. },
  6939. ]
  6940. ))
  6941. characterMakers.push(() => makeCharacter(
  6942. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6943. {
  6944. front: {
  6945. height: math.unit(6, "feet"),
  6946. weight: math.unit(140, "lbs"),
  6947. name: "Front",
  6948. image: {
  6949. source: "./media/characters/cynosura/front.svg",
  6950. extra: 437/410,
  6951. bottom: 9/446
  6952. }
  6953. },
  6954. back: {
  6955. height: math.unit(6, "feet"),
  6956. weight: math.unit(140, "lbs"),
  6957. name: "Back",
  6958. image: {
  6959. source: "./media/characters/cynosura/back.svg",
  6960. extra: 1304/1160,
  6961. bottom: 71/1375
  6962. }
  6963. },
  6964. },
  6965. [
  6966. {
  6967. name: "Micro",
  6968. height: math.unit(4, "inches")
  6969. },
  6970. {
  6971. name: "Normal",
  6972. height: math.unit(5.75, "feet"),
  6973. default: true
  6974. },
  6975. {
  6976. name: "Tall",
  6977. height: math.unit(10, "feet")
  6978. },
  6979. {
  6980. name: "Big",
  6981. height: math.unit(20, "feet")
  6982. },
  6983. {
  6984. name: "Macro",
  6985. height: math.unit(50, "feet")
  6986. },
  6987. ]
  6988. ))
  6989. characterMakers.push(() => makeCharacter(
  6990. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  6991. {
  6992. front: {
  6993. height: math.unit(13 + 2/12, "feet"),
  6994. weight: math.unit(800, "kg"),
  6995. name: "Front",
  6996. image: {
  6997. source: "./media/characters/gin/front.svg",
  6998. extra: 1312/1191,
  6999. bottom: 45/1357
  7000. }
  7001. },
  7002. mouth: {
  7003. height: math.unit(2.39 * 1.8, "feet"),
  7004. name: "Mouth",
  7005. image: {
  7006. source: "./media/characters/gin/mouth.svg"
  7007. }
  7008. },
  7009. hand: {
  7010. height: math.unit(1.57 * 2.19, "feet"),
  7011. name: "Hand",
  7012. image: {
  7013. source: "./media/characters/gin/hand.svg"
  7014. }
  7015. },
  7016. foot: {
  7017. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7018. name: "Foot",
  7019. image: {
  7020. source: "./media/characters/gin/foot.svg"
  7021. }
  7022. },
  7023. sole: {
  7024. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7025. name: "Sole",
  7026. image: {
  7027. source: "./media/characters/gin/sole.svg"
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Very Small",
  7034. height: math.unit(13 + 2 / 12, "feet")
  7035. },
  7036. {
  7037. name: "Micro",
  7038. height: math.unit(600, "miles")
  7039. },
  7040. {
  7041. name: "Regular",
  7042. height: math.unit(20, "earths"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(2.2, "solarradii")
  7048. },
  7049. {
  7050. name: "Teramacro",
  7051. height: math.unit(1.2, "galaxies")
  7052. },
  7053. {
  7054. name: "Omegamacro",
  7055. height: math.unit(200, "universes")
  7056. },
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(6 + 1 / 6, "feet"),
  7064. weight: math.unit(178, "lbs"),
  7065. name: "Front",
  7066. image: {
  7067. source: "./media/characters/guy/front.svg"
  7068. }
  7069. }
  7070. },
  7071. [
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(6 + 1 / 6, "feet"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Large",
  7079. height: math.unit(25 + 7 / 12, "feet")
  7080. },
  7081. {
  7082. name: "Macro",
  7083. height: math.unit(60 + 9 / 12, "feet")
  7084. },
  7085. {
  7086. name: "Macro+",
  7087. height: math.unit(246, "feet")
  7088. },
  7089. {
  7090. name: "Macro++",
  7091. height: math.unit(878, "feet")
  7092. }
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(9, "feet"),
  7100. weight: math.unit(800, "lbs"),
  7101. name: "Front",
  7102. image: {
  7103. source: "./media/characters/tiberius/front.svg",
  7104. extra: 2295 / 2071
  7105. }
  7106. },
  7107. back: {
  7108. height: math.unit(9, "feet"),
  7109. weight: math.unit(800, "lbs"),
  7110. name: "Back",
  7111. image: {
  7112. source: "./media/characters/tiberius/back.svg",
  7113. extra: 2373 / 2160
  7114. }
  7115. },
  7116. },
  7117. [
  7118. {
  7119. name: "Normal",
  7120. height: math.unit(9, "feet"),
  7121. default: true
  7122. }
  7123. ]
  7124. ))
  7125. characterMakers.push(() => makeCharacter(
  7126. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7127. {
  7128. front: {
  7129. height: math.unit(6, "feet"),
  7130. weight: math.unit(600, "lbs"),
  7131. name: "Front",
  7132. image: {
  7133. source: "./media/characters/surgo/front.svg",
  7134. extra: 3591 / 2227
  7135. }
  7136. },
  7137. back: {
  7138. height: math.unit(6, "feet"),
  7139. weight: math.unit(600, "lbs"),
  7140. name: "Back",
  7141. image: {
  7142. source: "./media/characters/surgo/back.svg",
  7143. extra: 3557 / 2228
  7144. }
  7145. },
  7146. laying: {
  7147. height: math.unit(6 * 0.85, "feet"),
  7148. weight: math.unit(600, "lbs"),
  7149. name: "Laying",
  7150. image: {
  7151. source: "./media/characters/surgo/laying.svg"
  7152. }
  7153. },
  7154. },
  7155. [
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(6, "feet"),
  7159. default: true
  7160. }
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7165. {
  7166. side: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(150, "lbs"),
  7169. name: "Side",
  7170. image: {
  7171. source: "./media/characters/cibus/side.svg",
  7172. extra: 800 / 400
  7173. }
  7174. },
  7175. },
  7176. [
  7177. {
  7178. name: "Normal",
  7179. height: math.unit(6, "feet"),
  7180. default: true
  7181. }
  7182. ]
  7183. ))
  7184. characterMakers.push(() => makeCharacter(
  7185. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7186. {
  7187. front: {
  7188. height: math.unit(6, "feet"),
  7189. weight: math.unit(240, "lbs"),
  7190. name: "Front",
  7191. image: {
  7192. source: "./media/characters/nibbles/front.svg"
  7193. }
  7194. },
  7195. side: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(240, "lbs"),
  7198. name: "Side",
  7199. image: {
  7200. source: "./media/characters/nibbles/side.svg"
  7201. }
  7202. },
  7203. },
  7204. [
  7205. {
  7206. name: "Normal",
  7207. height: math.unit(9, "feet"),
  7208. default: true
  7209. }
  7210. ]
  7211. ))
  7212. characterMakers.push(() => makeCharacter(
  7213. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7214. {
  7215. side: {
  7216. height: math.unit(5 + 1 / 6, "feet"),
  7217. weight: math.unit(130, "lbs"),
  7218. name: "Side",
  7219. image: {
  7220. source: "./media/characters/rikky/side.svg",
  7221. extra: 851 / 801
  7222. }
  7223. },
  7224. },
  7225. [
  7226. {
  7227. name: "Normal",
  7228. height: math.unit(5 + 1 / 6, "feet")
  7229. },
  7230. {
  7231. name: "Macro",
  7232. height: math.unit(152, "feet"),
  7233. default: true
  7234. },
  7235. {
  7236. name: "Megamacro",
  7237. height: math.unit(7, "miles")
  7238. }
  7239. ]
  7240. ))
  7241. characterMakers.push(() => makeCharacter(
  7242. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7243. {
  7244. side: {
  7245. height: math.unit(370, "cm"),
  7246. weight: math.unit(350, "lbs"),
  7247. name: "Side",
  7248. image: {
  7249. source: "./media/characters/malfressa/side.svg"
  7250. }
  7251. },
  7252. walking: {
  7253. height: math.unit(370, "cm"),
  7254. weight: math.unit(350, "lbs"),
  7255. name: "Walking",
  7256. image: {
  7257. source: "./media/characters/malfressa/walking.svg"
  7258. }
  7259. },
  7260. feral: {
  7261. height: math.unit(2500, "cm"),
  7262. weight: math.unit(100000, "lbs"),
  7263. name: "Feral",
  7264. image: {
  7265. source: "./media/characters/malfressa/feral.svg",
  7266. extra: 2108 / 837,
  7267. bottom: 0.02
  7268. }
  7269. },
  7270. },
  7271. [
  7272. {
  7273. name: "Normal",
  7274. height: math.unit(370, "cm")
  7275. },
  7276. {
  7277. name: "Macro",
  7278. height: math.unit(300, "meters"),
  7279. default: true
  7280. }
  7281. ]
  7282. ))
  7283. characterMakers.push(() => makeCharacter(
  7284. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7285. {
  7286. front: {
  7287. height: math.unit(6, "feet"),
  7288. weight: math.unit(60, "kg"),
  7289. name: "Front",
  7290. image: {
  7291. source: "./media/characters/jaro/front.svg",
  7292. extra: 845/817,
  7293. bottom: 45/890
  7294. }
  7295. },
  7296. back: {
  7297. height: math.unit(6, "feet"),
  7298. weight: math.unit(60, "kg"),
  7299. name: "Back",
  7300. image: {
  7301. source: "./media/characters/jaro/back.svg",
  7302. extra: 847/817,
  7303. bottom: 34/881
  7304. }
  7305. },
  7306. },
  7307. [
  7308. {
  7309. name: "Micro",
  7310. height: math.unit(7, "inches")
  7311. },
  7312. {
  7313. name: "Normal",
  7314. height: math.unit(5.5, "feet"),
  7315. default: true
  7316. },
  7317. {
  7318. name: "Minimacro",
  7319. height: math.unit(20, "feet")
  7320. },
  7321. {
  7322. name: "Macro",
  7323. height: math.unit(200, "meters")
  7324. }
  7325. ]
  7326. ))
  7327. characterMakers.push(() => makeCharacter(
  7328. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7329. {
  7330. front: {
  7331. height: math.unit(6, "feet"),
  7332. weight: math.unit(195, "lb"),
  7333. name: "Front",
  7334. image: {
  7335. source: "./media/characters/rogue/front.svg"
  7336. }
  7337. },
  7338. },
  7339. [
  7340. {
  7341. name: "Macro",
  7342. height: math.unit(90, "feet"),
  7343. default: true
  7344. },
  7345. ]
  7346. ))
  7347. characterMakers.push(() => makeCharacter(
  7348. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7349. {
  7350. standing: {
  7351. height: math.unit(5 + 8 / 12, "feet"),
  7352. weight: math.unit(140, "lb"),
  7353. name: "Standing",
  7354. image: {
  7355. source: "./media/characters/piper/standing.svg",
  7356. extra: 1440/1284,
  7357. bottom: 66/1506
  7358. }
  7359. },
  7360. running: {
  7361. height: math.unit(5 + 8 / 12, "feet"),
  7362. weight: math.unit(140, "lb"),
  7363. name: "Running",
  7364. image: {
  7365. source: "./media/characters/piper/running.svg",
  7366. extra: 3948/3655,
  7367. bottom: 0/3948
  7368. }
  7369. },
  7370. sole: {
  7371. height: math.unit(0.81, "feet"),
  7372. weight: math.unit(2, "kg"),
  7373. name: "Sole",
  7374. image: {
  7375. source: "./media/characters/piper/sole.svg"
  7376. }
  7377. },
  7378. nipple: {
  7379. height: math.unit(0.25, "feet"),
  7380. weight: math.unit(1.5, "lb"),
  7381. name: "Nipple",
  7382. image: {
  7383. source: "./media/characters/piper/nipple.svg"
  7384. }
  7385. },
  7386. head: {
  7387. height: math.unit(1.1, "feet"),
  7388. name: "Head",
  7389. image: {
  7390. source: "./media/characters/piper/head.svg"
  7391. }
  7392. },
  7393. },
  7394. [
  7395. {
  7396. name: "Micro",
  7397. height: math.unit(2, "inches")
  7398. },
  7399. {
  7400. name: "Normal",
  7401. height: math.unit(5 + 8 / 12, "feet")
  7402. },
  7403. {
  7404. name: "Macro",
  7405. height: math.unit(250, "feet"),
  7406. default: true
  7407. },
  7408. {
  7409. name: "Megamacro",
  7410. height: math.unit(7, "miles")
  7411. },
  7412. ]
  7413. ))
  7414. characterMakers.push(() => makeCharacter(
  7415. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7416. {
  7417. front: {
  7418. height: math.unit(6, "feet"),
  7419. weight: math.unit(220, "lb"),
  7420. name: "Front",
  7421. image: {
  7422. source: "./media/characters/gemini/front.svg"
  7423. }
  7424. },
  7425. back: {
  7426. height: math.unit(6, "feet"),
  7427. weight: math.unit(220, "lb"),
  7428. name: "Back",
  7429. image: {
  7430. source: "./media/characters/gemini/back.svg"
  7431. }
  7432. },
  7433. kneeling: {
  7434. height: math.unit(6 / 1.5, "feet"),
  7435. weight: math.unit(220, "lb"),
  7436. name: "Kneeling",
  7437. image: {
  7438. source: "./media/characters/gemini/kneeling.svg",
  7439. bottom: 0.02
  7440. }
  7441. },
  7442. },
  7443. [
  7444. {
  7445. name: "Macro",
  7446. height: math.unit(300, "meters"),
  7447. default: true
  7448. },
  7449. {
  7450. name: "Megamacro",
  7451. height: math.unit(6900, "meters")
  7452. },
  7453. ]
  7454. ))
  7455. characterMakers.push(() => makeCharacter(
  7456. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7457. {
  7458. anthro: {
  7459. height: math.unit(2.35, "meters"),
  7460. weight: math.unit(73, "kg"),
  7461. name: "Anthro",
  7462. image: {
  7463. source: "./media/characters/alicia/anthro.svg",
  7464. extra: 2571 / 2385,
  7465. bottom: 75 / 2648
  7466. }
  7467. },
  7468. paw: {
  7469. height: math.unit(1.32, "feet"),
  7470. name: "Paw",
  7471. image: {
  7472. source: "./media/characters/alicia/paw.svg"
  7473. }
  7474. },
  7475. feral: {
  7476. height: math.unit(1.69, "meters"),
  7477. weight: math.unit(73, "kg"),
  7478. name: "Feral",
  7479. image: {
  7480. source: "./media/characters/alicia/feral.svg",
  7481. extra: 2123 / 1715,
  7482. bottom: 222 / 2349
  7483. }
  7484. },
  7485. },
  7486. [
  7487. {
  7488. name: "Normal",
  7489. height: math.unit(2.35, "meters")
  7490. },
  7491. {
  7492. name: "Macro",
  7493. height: math.unit(60, "meters"),
  7494. default: true
  7495. },
  7496. {
  7497. name: "Megamacro",
  7498. height: math.unit(10000, "kilometers")
  7499. },
  7500. ]
  7501. ))
  7502. characterMakers.push(() => makeCharacter(
  7503. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7504. {
  7505. front: {
  7506. height: math.unit(7, "feet"),
  7507. weight: math.unit(250, "lbs"),
  7508. name: "Front",
  7509. image: {
  7510. source: "./media/characters/archy/front.svg"
  7511. }
  7512. }
  7513. },
  7514. [
  7515. {
  7516. name: "Micro",
  7517. height: math.unit(1, "inch")
  7518. },
  7519. {
  7520. name: "Shorty",
  7521. height: math.unit(5, "feet")
  7522. },
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(7, "feet")
  7526. },
  7527. {
  7528. name: "Macro",
  7529. height: math.unit(600, "meters"),
  7530. default: true
  7531. },
  7532. {
  7533. name: "Megamacro",
  7534. height: math.unit(1, "mile")
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7540. {
  7541. front: {
  7542. height: math.unit(1.65, "meters"),
  7543. weight: math.unit(74, "kg"),
  7544. name: "Front",
  7545. image: {
  7546. source: "./media/characters/berri/front.svg",
  7547. extra: 857 / 837,
  7548. bottom: 18 / 877
  7549. }
  7550. },
  7551. bum: {
  7552. height: math.unit(1.46, "feet"),
  7553. name: "Bum",
  7554. image: {
  7555. source: "./media/characters/berri/bum.svg"
  7556. }
  7557. },
  7558. mouth: {
  7559. height: math.unit(0.44, "feet"),
  7560. name: "Mouth",
  7561. image: {
  7562. source: "./media/characters/berri/mouth.svg"
  7563. }
  7564. },
  7565. paw: {
  7566. height: math.unit(0.826, "feet"),
  7567. name: "Paw",
  7568. image: {
  7569. source: "./media/characters/berri/paw.svg"
  7570. }
  7571. },
  7572. },
  7573. [
  7574. {
  7575. name: "Normal",
  7576. height: math.unit(1.65, "meters")
  7577. },
  7578. {
  7579. name: "Macro",
  7580. height: math.unit(60, "m"),
  7581. default: true
  7582. },
  7583. {
  7584. name: "Megamacro",
  7585. height: math.unit(9.213, "km")
  7586. },
  7587. {
  7588. name: "Planet Eater",
  7589. height: math.unit(489, "megameters")
  7590. },
  7591. {
  7592. name: "Teramacro",
  7593. height: math.unit(2471635000000, "meters")
  7594. },
  7595. {
  7596. name: "Examacro",
  7597. height: math.unit(8.0624e+26, "meters")
  7598. }
  7599. ]
  7600. ))
  7601. characterMakers.push(() => makeCharacter(
  7602. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7603. {
  7604. front: {
  7605. height: math.unit(1.72, "meters"),
  7606. weight: math.unit(68, "kg"),
  7607. name: "Front",
  7608. image: {
  7609. source: "./media/characters/lexi/front.svg"
  7610. }
  7611. }
  7612. },
  7613. [
  7614. {
  7615. name: "Very Smol",
  7616. height: math.unit(10, "mm")
  7617. },
  7618. {
  7619. name: "Micro",
  7620. height: math.unit(6.8, "cm"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Normal",
  7625. height: math.unit(1.72, "m")
  7626. }
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(1.69, "meters"),
  7634. weight: math.unit(68, "kg"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/martin/front.svg",
  7638. extra: 596 / 581
  7639. }
  7640. }
  7641. },
  7642. [
  7643. {
  7644. name: "Micro",
  7645. height: math.unit(6.85, "cm"),
  7646. default: true
  7647. },
  7648. {
  7649. name: "Normal",
  7650. height: math.unit(1.69, "m")
  7651. }
  7652. ]
  7653. ))
  7654. characterMakers.push(() => makeCharacter(
  7655. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7656. {
  7657. front: {
  7658. height: math.unit(1.69, "meters"),
  7659. weight: math.unit(68, "kg"),
  7660. name: "Front",
  7661. image: {
  7662. source: "./media/characters/juno/front.svg"
  7663. }
  7664. }
  7665. },
  7666. [
  7667. {
  7668. name: "Micro",
  7669. height: math.unit(7, "cm")
  7670. },
  7671. {
  7672. name: "Normal",
  7673. height: math.unit(1.89, "m")
  7674. },
  7675. {
  7676. name: "Macro",
  7677. height: math.unit(353, "meters"),
  7678. default: true
  7679. }
  7680. ]
  7681. ))
  7682. characterMakers.push(() => makeCharacter(
  7683. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7684. {
  7685. front: {
  7686. height: math.unit(1.93, "meters"),
  7687. weight: math.unit(83, "kg"),
  7688. name: "Front",
  7689. image: {
  7690. source: "./media/characters/samantha/front.svg"
  7691. }
  7692. },
  7693. frontClothed: {
  7694. height: math.unit(1.93, "meters"),
  7695. weight: math.unit(83, "kg"),
  7696. name: "Front (Clothed)",
  7697. image: {
  7698. source: "./media/characters/samantha/front-clothed.svg"
  7699. }
  7700. },
  7701. back: {
  7702. height: math.unit(1.93, "meters"),
  7703. weight: math.unit(83, "kg"),
  7704. name: "Back",
  7705. image: {
  7706. source: "./media/characters/samantha/back.svg"
  7707. }
  7708. },
  7709. },
  7710. [
  7711. {
  7712. name: "Normal",
  7713. height: math.unit(1.93, "m")
  7714. },
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(74, "meters"),
  7718. default: true
  7719. },
  7720. {
  7721. name: "Macro+",
  7722. height: math.unit(223, "meters"),
  7723. },
  7724. {
  7725. name: "Megamacro",
  7726. height: math.unit(8381, "meters"),
  7727. },
  7728. {
  7729. name: "Megamacro+",
  7730. height: math.unit(12000, "kilometers")
  7731. },
  7732. ]
  7733. ))
  7734. characterMakers.push(() => makeCharacter(
  7735. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7736. {
  7737. front: {
  7738. height: math.unit(1.92, "meters"),
  7739. weight: math.unit(80, "kg"),
  7740. name: "Front",
  7741. image: {
  7742. source: "./media/characters/dr-clay/front.svg"
  7743. }
  7744. },
  7745. frontClothed: {
  7746. height: math.unit(1.92, "meters"),
  7747. weight: math.unit(80, "kg"),
  7748. name: "Front (Clothed)",
  7749. image: {
  7750. source: "./media/characters/dr-clay/front-clothed.svg"
  7751. }
  7752. }
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(1.92, "m")
  7758. },
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(214, "meters"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Macro+",
  7766. height: math.unit(12.237, "meters"),
  7767. },
  7768. {
  7769. name: "Megamacro",
  7770. height: math.unit(557, "megameters"),
  7771. },
  7772. {
  7773. name: "Unimaginable",
  7774. height: math.unit(120e9, "lightyears")
  7775. },
  7776. ]
  7777. ))
  7778. characterMakers.push(() => makeCharacter(
  7779. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7780. {
  7781. front: {
  7782. height: math.unit(2, "meters"),
  7783. weight: math.unit(80, "kg"),
  7784. name: "Front",
  7785. image: {
  7786. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7787. }
  7788. }
  7789. },
  7790. [
  7791. {
  7792. name: "Teramacro",
  7793. height: math.unit(500000, "lightyears"),
  7794. default: true
  7795. },
  7796. ]
  7797. ))
  7798. characterMakers.push(() => makeCharacter(
  7799. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7800. {
  7801. crux: {
  7802. height: math.unit(2, "meters"),
  7803. weight: math.unit(150, "kg"),
  7804. name: "Crux",
  7805. image: {
  7806. source: "./media/characters/vemus/crux.svg",
  7807. extra: 1074/936,
  7808. bottom: 23/1097
  7809. }
  7810. },
  7811. skunkTanuki: {
  7812. height: math.unit(2, "meters"),
  7813. weight: math.unit(150, "kg"),
  7814. name: "Skunk-Tanuki",
  7815. image: {
  7816. source: "./media/characters/vemus/skunk-tanuki.svg",
  7817. extra: 926/893,
  7818. bottom: 20/946
  7819. }
  7820. },
  7821. },
  7822. [
  7823. {
  7824. name: "Normal",
  7825. height: math.unit(4, "meters"),
  7826. default: true
  7827. },
  7828. {
  7829. name: "Big",
  7830. height: math.unit(8, "meters")
  7831. },
  7832. {
  7833. name: "Macro",
  7834. height: math.unit(100, "meters")
  7835. },
  7836. {
  7837. name: "Macro+",
  7838. height: math.unit(1500, "meters")
  7839. },
  7840. {
  7841. name: "Stellar",
  7842. height: math.unit(14e8, "meters")
  7843. },
  7844. ]
  7845. ))
  7846. characterMakers.push(() => makeCharacter(
  7847. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7848. {
  7849. front: {
  7850. height: math.unit(2, "meters"),
  7851. weight: math.unit(70, "kg"),
  7852. name: "Front",
  7853. image: {
  7854. source: "./media/characters/beherit/front.svg",
  7855. extra: 1234/1109,
  7856. bottom: 55/1289
  7857. }
  7858. }
  7859. },
  7860. [
  7861. {
  7862. name: "Normal",
  7863. height: math.unit(6, "feet")
  7864. },
  7865. {
  7866. name: "Lorg",
  7867. height: math.unit(25, "feet"),
  7868. default: true
  7869. },
  7870. {
  7871. name: "Lorger",
  7872. height: math.unit(75, "feet")
  7873. },
  7874. {
  7875. name: "Macro",
  7876. height: math.unit(200, "meters")
  7877. },
  7878. ]
  7879. ))
  7880. characterMakers.push(() => makeCharacter(
  7881. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7882. {
  7883. front: {
  7884. height: math.unit(2, "meters"),
  7885. weight: math.unit(150, "kg"),
  7886. name: "Front",
  7887. image: {
  7888. source: "./media/characters/everett/front.svg",
  7889. extra: 1017/866,
  7890. bottom: 86/1103
  7891. }
  7892. },
  7893. paw: {
  7894. height: math.unit(2 / 3.6, "meters"),
  7895. name: "Paw",
  7896. image: {
  7897. source: "./media/characters/everett/paw.svg"
  7898. }
  7899. },
  7900. },
  7901. [
  7902. {
  7903. name: "Normal",
  7904. height: math.unit(15, "feet"),
  7905. default: true
  7906. },
  7907. {
  7908. name: "Lorg",
  7909. height: math.unit(70, "feet"),
  7910. default: true
  7911. },
  7912. {
  7913. name: "Lorger",
  7914. height: math.unit(250, "feet")
  7915. },
  7916. {
  7917. name: "Macro",
  7918. height: math.unit(500, "meters")
  7919. },
  7920. ]
  7921. ))
  7922. characterMakers.push(() => makeCharacter(
  7923. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7924. {
  7925. front: {
  7926. height: math.unit(2, "meters"),
  7927. weight: math.unit(86, "kg"),
  7928. name: "Front",
  7929. image: {
  7930. source: "./media/characters/rose/front.svg",
  7931. extra: 1785/1636,
  7932. bottom: 30/1815
  7933. },
  7934. form: "liom",
  7935. default: true
  7936. },
  7937. frontSporty: {
  7938. height: math.unit(2, "meters"),
  7939. weight: math.unit(86, "kg"),
  7940. name: "Front (Sporty)",
  7941. image: {
  7942. source: "./media/characters/rose/front-sporty.svg",
  7943. extra: 350/335,
  7944. bottom: 10/360
  7945. },
  7946. form: "liom"
  7947. },
  7948. frontAlt: {
  7949. height: math.unit(1.6, "meters"),
  7950. weight: math.unit(86, "kg"),
  7951. name: "Front (Alt)",
  7952. image: {
  7953. source: "./media/characters/rose/front-alt.svg",
  7954. extra: 299/283,
  7955. bottom: 3/302
  7956. },
  7957. form: "liom"
  7958. },
  7959. plush: {
  7960. height: math.unit(2, "meters"),
  7961. weight: math.unit(86/3, "kg"),
  7962. name: "Plush",
  7963. image: {
  7964. source: "./media/characters/rose/plush.svg",
  7965. extra: 361/337,
  7966. bottom: 11/372
  7967. },
  7968. form: "plush",
  7969. default: true
  7970. },
  7971. faeStanding: {
  7972. height: math.unit(10, "cm"),
  7973. weight: math.unit(10, "grams"),
  7974. name: "Standing",
  7975. image: {
  7976. source: "./media/characters/rose/fae-standing.svg",
  7977. extra: 1189/1060,
  7978. bottom: 27/1216
  7979. },
  7980. form: "fae",
  7981. default: true
  7982. },
  7983. faeSitting: {
  7984. height: math.unit(5, "cm"),
  7985. weight: math.unit(10, "grams"),
  7986. name: "Sitting",
  7987. image: {
  7988. source: "./media/characters/rose/fae-sitting.svg",
  7989. extra: 737/577,
  7990. bottom: 356/1093
  7991. },
  7992. form: "fae"
  7993. },
  7994. faePaw: {
  7995. height: math.unit(1.35, "cm"),
  7996. name: "Paw",
  7997. image: {
  7998. source: "./media/characters/rose/fae-paw.svg"
  7999. },
  8000. form: "fae"
  8001. },
  8002. },
  8003. [
  8004. {
  8005. name: "True Micro",
  8006. height: math.unit(9, "cm"),
  8007. form: "liom"
  8008. },
  8009. {
  8010. name: "Micro",
  8011. height: math.unit(16, "cm"),
  8012. form: "liom"
  8013. },
  8014. {
  8015. name: "Normal",
  8016. height: math.unit(1.85, "meters"),
  8017. default: true,
  8018. form: "liom"
  8019. },
  8020. {
  8021. name: "Mini-Macro",
  8022. height: math.unit(5, "meters"),
  8023. form: "liom"
  8024. },
  8025. {
  8026. name: "Macro",
  8027. height: math.unit(15, "meters"),
  8028. form: "liom"
  8029. },
  8030. {
  8031. name: "True Macro",
  8032. height: math.unit(40, "meters"),
  8033. form: "liom"
  8034. },
  8035. {
  8036. name: "City Scale",
  8037. height: math.unit(1, "km"),
  8038. form: "liom"
  8039. },
  8040. {
  8041. name: "Plushie",
  8042. height: math.unit(9, "cm"),
  8043. form: "plush",
  8044. default: true
  8045. },
  8046. {
  8047. name: "Fae",
  8048. height: math.unit(10, "cm"),
  8049. form: "fae",
  8050. default: true
  8051. },
  8052. ],
  8053. {
  8054. "liom": {
  8055. name: "Liom"
  8056. },
  8057. "plush": {
  8058. name: "Plush"
  8059. },
  8060. "fae": {
  8061. name: "Fae Fox",
  8062. default: true
  8063. }
  8064. }
  8065. ))
  8066. characterMakers.push(() => makeCharacter(
  8067. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8068. {
  8069. front: {
  8070. height: math.unit(2, "meters"),
  8071. weight: math.unit(350, "lbs"),
  8072. name: "Front",
  8073. image: {
  8074. source: "./media/characters/regal/front.svg"
  8075. }
  8076. },
  8077. back: {
  8078. height: math.unit(2, "meters"),
  8079. weight: math.unit(350, "lbs"),
  8080. name: "Back",
  8081. image: {
  8082. source: "./media/characters/regal/back.svg"
  8083. }
  8084. },
  8085. },
  8086. [
  8087. {
  8088. name: "Macro",
  8089. height: math.unit(350, "feet"),
  8090. default: true
  8091. }
  8092. ]
  8093. ))
  8094. characterMakers.push(() => makeCharacter(
  8095. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  8096. {
  8097. front: {
  8098. height: math.unit(4 + 11 / 12, "feet"),
  8099. weight: math.unit(100, "lbs"),
  8100. name: "Front",
  8101. image: {
  8102. source: "./media/characters/opal/front.svg"
  8103. }
  8104. },
  8105. frontAlt: {
  8106. height: math.unit(4 + 11 / 12, "feet"),
  8107. weight: math.unit(100, "lbs"),
  8108. name: "Front (Alt)",
  8109. image: {
  8110. source: "./media/characters/opal/front-alt.svg"
  8111. }
  8112. },
  8113. },
  8114. [
  8115. {
  8116. name: "Small",
  8117. height: math.unit(4 + 11 / 12, "feet")
  8118. },
  8119. {
  8120. name: "Normal",
  8121. height: math.unit(20, "feet"),
  8122. default: true
  8123. },
  8124. {
  8125. name: "Macro",
  8126. height: math.unit(120, "feet")
  8127. },
  8128. {
  8129. name: "Megamacro",
  8130. height: math.unit(80, "miles")
  8131. },
  8132. {
  8133. name: "True Size",
  8134. height: math.unit(100000, "lightyears")
  8135. },
  8136. ]
  8137. ))
  8138. characterMakers.push(() => makeCharacter(
  8139. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8140. {
  8141. front: {
  8142. height: math.unit(6, "feet"),
  8143. weight: math.unit(200, "lbs"),
  8144. name: "Front",
  8145. image: {
  8146. source: "./media/characters/vector-wuff/front.svg"
  8147. }
  8148. }
  8149. },
  8150. [
  8151. {
  8152. name: "Normal",
  8153. height: math.unit(2.8, "meters")
  8154. },
  8155. {
  8156. name: "Macro",
  8157. height: math.unit(450, "meters"),
  8158. default: true
  8159. },
  8160. {
  8161. name: "Megamacro",
  8162. height: math.unit(15, "kilometers")
  8163. }
  8164. ]
  8165. ))
  8166. characterMakers.push(() => makeCharacter(
  8167. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8168. {
  8169. front: {
  8170. height: math.unit(6, "feet"),
  8171. weight: math.unit(256, "lbs"),
  8172. name: "Front",
  8173. image: {
  8174. source: "./media/characters/dannik/front.svg"
  8175. }
  8176. }
  8177. },
  8178. [
  8179. {
  8180. name: "Macro",
  8181. height: math.unit(69.57, "meters"),
  8182. default: true
  8183. },
  8184. ]
  8185. ))
  8186. characterMakers.push(() => makeCharacter(
  8187. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8188. {
  8189. front: {
  8190. height: math.unit(6, "feet"),
  8191. weight: math.unit(120, "lbs"),
  8192. name: "Front",
  8193. image: {
  8194. source: "./media/characters/azura-saharah/front.svg"
  8195. }
  8196. },
  8197. back: {
  8198. height: math.unit(6, "feet"),
  8199. weight: math.unit(120, "lbs"),
  8200. name: "Back",
  8201. image: {
  8202. source: "./media/characters/azura-saharah/back.svg"
  8203. }
  8204. },
  8205. },
  8206. [
  8207. {
  8208. name: "Macro",
  8209. height: math.unit(100, "feet"),
  8210. default: true
  8211. },
  8212. ]
  8213. ))
  8214. characterMakers.push(() => makeCharacter(
  8215. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8216. {
  8217. side: {
  8218. height: math.unit(5 + 4 / 12, "feet"),
  8219. weight: math.unit(163, "lbs"),
  8220. name: "Side",
  8221. image: {
  8222. source: "./media/characters/kennedy/side.svg"
  8223. }
  8224. }
  8225. },
  8226. [
  8227. {
  8228. name: "Standard Doggo",
  8229. height: math.unit(5 + 4 / 12, "feet")
  8230. },
  8231. {
  8232. name: "Big Doggo",
  8233. height: math.unit(25 + 3 / 12, "feet"),
  8234. default: true
  8235. },
  8236. ]
  8237. ))
  8238. characterMakers.push(() => makeCharacter(
  8239. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8240. {
  8241. front: {
  8242. height: math.unit(5 + 5/12, "feet"),
  8243. weight: math.unit(100, "lbs"),
  8244. name: "Front",
  8245. image: {
  8246. source: "./media/characters/odios-de-lunar/front.svg",
  8247. extra: 1468/1323,
  8248. bottom: 22/1490
  8249. }
  8250. }
  8251. },
  8252. [
  8253. {
  8254. name: "Micro",
  8255. height: math.unit(3, "inches")
  8256. },
  8257. {
  8258. name: "Normal",
  8259. height: math.unit(5.5, "feet"),
  8260. default: true
  8261. },
  8262. {
  8263. name: "Macro",
  8264. height: math.unit(100, "feet")
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8270. {
  8271. back: {
  8272. height: math.unit(6, "feet"),
  8273. weight: math.unit(220, "lbs"),
  8274. name: "Back",
  8275. image: {
  8276. source: "./media/characters/mandake/back.svg"
  8277. }
  8278. }
  8279. },
  8280. [
  8281. {
  8282. name: "Normal",
  8283. height: math.unit(7, "feet"),
  8284. default: true
  8285. },
  8286. {
  8287. name: "Macro",
  8288. height: math.unit(78, "feet")
  8289. },
  8290. {
  8291. name: "Macro+",
  8292. height: math.unit(300, "meters")
  8293. },
  8294. {
  8295. name: "Macro++",
  8296. height: math.unit(2400, "feet")
  8297. },
  8298. {
  8299. name: "Megamacro",
  8300. height: math.unit(5167, "meters")
  8301. },
  8302. {
  8303. name: "Gigamacro",
  8304. height: math.unit(41769, "miles")
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(6, "feet"),
  8313. weight: math.unit(120, "lbs"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/yozey/front.svg"
  8317. }
  8318. },
  8319. frontAlt: {
  8320. height: math.unit(6, "feet"),
  8321. weight: math.unit(120, "lbs"),
  8322. name: "Front (Alt)",
  8323. image: {
  8324. source: "./media/characters/yozey/front-alt.svg"
  8325. }
  8326. },
  8327. side: {
  8328. height: math.unit(6, "feet"),
  8329. weight: math.unit(120, "lbs"),
  8330. name: "Side",
  8331. image: {
  8332. source: "./media/characters/yozey/side.svg"
  8333. }
  8334. },
  8335. },
  8336. [
  8337. {
  8338. name: "Micro",
  8339. height: math.unit(3, "inches"),
  8340. default: true
  8341. },
  8342. {
  8343. name: "Normal",
  8344. height: math.unit(6, "feet")
  8345. }
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8350. {
  8351. front: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(103, "lbs"),
  8354. name: "Front",
  8355. image: {
  8356. source: "./media/characters/valeska-voss/front.svg"
  8357. }
  8358. }
  8359. },
  8360. [
  8361. {
  8362. name: "Mini-Sized Sub",
  8363. height: math.unit(3.1, "inches")
  8364. },
  8365. {
  8366. name: "Mid-Sized Sub",
  8367. height: math.unit(6.2, "inches")
  8368. },
  8369. {
  8370. name: "Full-Sized Sub",
  8371. height: math.unit(9.3, "inches")
  8372. },
  8373. {
  8374. name: "Normal",
  8375. height: math.unit(5 + 2 / 12, "foot"),
  8376. default: true
  8377. },
  8378. ]
  8379. ))
  8380. characterMakers.push(() => makeCharacter(
  8381. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8382. {
  8383. front: {
  8384. height: math.unit(6, "feet"),
  8385. weight: math.unit(160, "lbs"),
  8386. name: "Front",
  8387. image: {
  8388. source: "./media/characters/gene-zeta/front.svg",
  8389. extra: 3006 / 2826,
  8390. bottom: 182 / 3188
  8391. }
  8392. }
  8393. },
  8394. [
  8395. {
  8396. name: "Micro",
  8397. height: math.unit(6, "inches")
  8398. },
  8399. {
  8400. name: "Normal",
  8401. height: math.unit(5 + 11 / 12, "foot"),
  8402. default: true
  8403. },
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(140, "feet")
  8407. },
  8408. {
  8409. name: "Supercharged",
  8410. height: math.unit(2500, "feet")
  8411. },
  8412. ]
  8413. ))
  8414. characterMakers.push(() => makeCharacter(
  8415. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8416. {
  8417. front: {
  8418. height: math.unit(6, "feet"),
  8419. weight: math.unit(350, "lbs"),
  8420. name: "Front",
  8421. image: {
  8422. source: "./media/characters/razinox/front.svg",
  8423. extra: 1686 / 1548,
  8424. bottom: 28.2 / 1868
  8425. }
  8426. },
  8427. back: {
  8428. height: math.unit(6, "feet"),
  8429. weight: math.unit(350, "lbs"),
  8430. name: "Back",
  8431. image: {
  8432. source: "./media/characters/razinox/back.svg",
  8433. extra: 1660 / 1590,
  8434. bottom: 15 / 1665
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(10 + 8 / 12, "foot")
  8442. },
  8443. {
  8444. name: "Minimacro",
  8445. height: math.unit(15, "foot")
  8446. },
  8447. {
  8448. name: "Macro",
  8449. height: math.unit(60, "foot"),
  8450. default: true
  8451. },
  8452. {
  8453. name: "Megamacro",
  8454. height: math.unit(5, "miles")
  8455. },
  8456. {
  8457. name: "Gigamacro",
  8458. height: math.unit(6000, "miles")
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(6, "feet"),
  8467. weight: math.unit(150, "lbs"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/cobalt/front.svg"
  8471. }
  8472. }
  8473. },
  8474. [
  8475. {
  8476. name: "Normal",
  8477. height: math.unit(8 + 1 / 12, "foot")
  8478. },
  8479. {
  8480. name: "Macro",
  8481. height: math.unit(111, "foot"),
  8482. default: true
  8483. },
  8484. {
  8485. name: "Supracosmic",
  8486. height: math.unit(1e42, "feet")
  8487. },
  8488. ]
  8489. ))
  8490. characterMakers.push(() => makeCharacter(
  8491. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8492. {
  8493. front: {
  8494. height: math.unit(5, "inches"),
  8495. name: "Front",
  8496. image: {
  8497. source: "./media/characters/amanda/front.svg",
  8498. extra: 926/791,
  8499. bottom: 38/964
  8500. }
  8501. },
  8502. back: {
  8503. height: math.unit(5, "inches"),
  8504. name: "Back",
  8505. image: {
  8506. source: "./media/characters/amanda/back.svg",
  8507. extra: 909/805,
  8508. bottom: 43/952
  8509. }
  8510. },
  8511. },
  8512. [
  8513. {
  8514. name: "Micro",
  8515. height: math.unit(5, "inches"),
  8516. default: true
  8517. },
  8518. ]
  8519. ))
  8520. characterMakers.push(() => makeCharacter(
  8521. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8522. {
  8523. front: {
  8524. height: math.unit(2.75, "meters"),
  8525. weight: math.unit(1200, "lb"),
  8526. name: "Front",
  8527. image: {
  8528. source: "./media/characters/teal/front.svg",
  8529. extra: 2463 / 2320,
  8530. bottom: 166 / 2629
  8531. }
  8532. },
  8533. back: {
  8534. height: math.unit(2.75, "meters"),
  8535. weight: math.unit(1200, "lb"),
  8536. name: "Back",
  8537. image: {
  8538. source: "./media/characters/teal/back.svg",
  8539. extra: 2580 / 2489,
  8540. bottom: 151 / 2731
  8541. }
  8542. },
  8543. sitting: {
  8544. height: math.unit(1.9, "meters"),
  8545. weight: math.unit(1200, "lb"),
  8546. name: "Sitting",
  8547. image: {
  8548. source: "./media/characters/teal/sitting.svg",
  8549. extra: 623 / 590,
  8550. bottom: 121 / 744
  8551. }
  8552. },
  8553. standing: {
  8554. height: math.unit(2.75, "meters"),
  8555. weight: math.unit(1200, "lb"),
  8556. name: "Standing",
  8557. image: {
  8558. source: "./media/characters/teal/standing.svg",
  8559. extra: 923 / 893,
  8560. bottom: 60 / 983
  8561. }
  8562. },
  8563. stretching: {
  8564. height: math.unit(3.65, "meters"),
  8565. weight: math.unit(1200, "lb"),
  8566. name: "Stretching",
  8567. image: {
  8568. source: "./media/characters/teal/stretching.svg",
  8569. extra: 1276 / 1244,
  8570. bottom: 0 / 1276
  8571. }
  8572. },
  8573. legged: {
  8574. height: math.unit(1.3, "meters"),
  8575. weight: math.unit(100, "lb"),
  8576. name: "Legged",
  8577. image: {
  8578. source: "./media/characters/teal/legged.svg",
  8579. extra: 462 / 437,
  8580. bottom: 24 / 486
  8581. }
  8582. },
  8583. naga: {
  8584. height: math.unit(5.4, "meters"),
  8585. weight: math.unit(4000, "lb"),
  8586. name: "Naga",
  8587. image: {
  8588. source: "./media/characters/teal/naga.svg",
  8589. extra: 1902 / 1858,
  8590. bottom: 0 / 1902
  8591. }
  8592. },
  8593. hand: {
  8594. height: math.unit(0.52, "meters"),
  8595. name: "Hand",
  8596. image: {
  8597. source: "./media/characters/teal/hand.svg"
  8598. }
  8599. },
  8600. maw: {
  8601. height: math.unit(0.43, "meters"),
  8602. name: "Maw",
  8603. image: {
  8604. source: "./media/characters/teal/maw.svg"
  8605. }
  8606. },
  8607. slit: {
  8608. height: math.unit(0.25, "meters"),
  8609. name: "Slit",
  8610. image: {
  8611. source: "./media/characters/teal/slit.svg"
  8612. }
  8613. },
  8614. },
  8615. [
  8616. {
  8617. name: "Normal",
  8618. height: math.unit(2.75, "meters"),
  8619. default: true
  8620. },
  8621. {
  8622. name: "Macro",
  8623. height: math.unit(300, "feet")
  8624. },
  8625. {
  8626. name: "Macro+",
  8627. height: math.unit(2000, "feet")
  8628. },
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8633. {
  8634. frontCat: {
  8635. height: math.unit(6, "feet"),
  8636. weight: math.unit(180, "lbs"),
  8637. name: "Front (Cat)",
  8638. image: {
  8639. source: "./media/characters/ravin-amulet/front-cat.svg"
  8640. }
  8641. },
  8642. frontCatAlt: {
  8643. height: math.unit(6, "feet"),
  8644. weight: math.unit(180, "lbs"),
  8645. name: "Front (Alt, Cat)",
  8646. image: {
  8647. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8648. }
  8649. },
  8650. frontWerewolf: {
  8651. height: math.unit(6 * 1.2, "feet"),
  8652. weight: math.unit(225, "lbs"),
  8653. name: "Front (Werewolf)",
  8654. image: {
  8655. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8656. }
  8657. },
  8658. backWerewolf: {
  8659. height: math.unit(6 * 1.2, "feet"),
  8660. weight: math.unit(225, "lbs"),
  8661. name: "Back (Werewolf)",
  8662. image: {
  8663. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8664. }
  8665. },
  8666. },
  8667. [
  8668. {
  8669. name: "Nano",
  8670. height: math.unit(1, "micrometer")
  8671. },
  8672. {
  8673. name: "Micro",
  8674. height: math.unit(1, "inch")
  8675. },
  8676. {
  8677. name: "Normal",
  8678. height: math.unit(6, "feet"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Macro",
  8683. height: math.unit(60, "feet")
  8684. }
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(6, "feet"),
  8692. weight: math.unit(165, "lbs"),
  8693. name: "Front",
  8694. image: {
  8695. source: "./media/characters/fluoresce/front.svg"
  8696. }
  8697. }
  8698. },
  8699. [
  8700. {
  8701. name: "Micro",
  8702. height: math.unit(6, "cm")
  8703. },
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(5 + 7 / 12, "feet"),
  8707. default: true
  8708. },
  8709. {
  8710. name: "Macro",
  8711. height: math.unit(56, "feet")
  8712. },
  8713. {
  8714. name: "Megamacro",
  8715. height: math.unit(1.9, "miles")
  8716. },
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8721. {
  8722. front: {
  8723. height: math.unit(9 + 6 / 12, "feet"),
  8724. weight: math.unit(523, "lbs"),
  8725. name: "Side",
  8726. image: {
  8727. source: "./media/characters/aurora/side.svg",
  8728. extra: 474/393,
  8729. bottom: 5/479
  8730. }
  8731. }
  8732. },
  8733. [
  8734. {
  8735. name: "Normal",
  8736. height: math.unit(9 + 6 / 12, "feet")
  8737. },
  8738. {
  8739. name: "Macro",
  8740. height: math.unit(96, "feet"),
  8741. default: true
  8742. },
  8743. {
  8744. name: "Macro+",
  8745. height: math.unit(243, "feet")
  8746. },
  8747. ]
  8748. ))
  8749. characterMakers.push(() => makeCharacter(
  8750. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8751. {
  8752. front: {
  8753. height: math.unit(194, "cm"),
  8754. weight: math.unit(90, "kg"),
  8755. name: "Front",
  8756. image: {
  8757. source: "./media/characters/ranek/front.svg",
  8758. extra: 1862/1791,
  8759. bottom: 80/1942
  8760. }
  8761. },
  8762. back: {
  8763. height: math.unit(194, "cm"),
  8764. weight: math.unit(90, "kg"),
  8765. name: "Back",
  8766. image: {
  8767. source: "./media/characters/ranek/back.svg",
  8768. extra: 1853/1787,
  8769. bottom: 74/1927
  8770. }
  8771. },
  8772. feral: {
  8773. height: math.unit(30, "cm"),
  8774. weight: math.unit(1.6, "lbs"),
  8775. name: "Feral",
  8776. image: {
  8777. source: "./media/characters/ranek/feral.svg",
  8778. extra: 990/631,
  8779. bottom: 29/1019
  8780. }
  8781. },
  8782. },
  8783. [
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(194, "cm"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Macro",
  8791. height: math.unit(100, "meters")
  8792. },
  8793. ]
  8794. ))
  8795. characterMakers.push(() => makeCharacter(
  8796. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8797. {
  8798. front: {
  8799. height: math.unit(5 + 6 / 12, "feet"),
  8800. weight: math.unit(153, "lbs"),
  8801. name: "Front",
  8802. image: {
  8803. source: "./media/characters/andrew-cooper/front.svg"
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Nano",
  8810. height: math.unit(1, "mm")
  8811. },
  8812. {
  8813. name: "Micro",
  8814. height: math.unit(2, "inches")
  8815. },
  8816. {
  8817. name: "Normal",
  8818. height: math.unit(5 + 6 / 12, "feet"),
  8819. default: true
  8820. }
  8821. ]
  8822. ))
  8823. characterMakers.push(() => makeCharacter(
  8824. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8825. {
  8826. front: {
  8827. height: math.unit(6, "feet"),
  8828. weight: math.unit(180, "lbs"),
  8829. name: "Front",
  8830. image: {
  8831. source: "./media/characters/akane-sato/front.svg",
  8832. extra: 1219 / 1140
  8833. }
  8834. },
  8835. back: {
  8836. height: math.unit(6, "feet"),
  8837. weight: math.unit(180, "lbs"),
  8838. name: "Back",
  8839. image: {
  8840. source: "./media/characters/akane-sato/back.svg",
  8841. extra: 1219 / 1170
  8842. }
  8843. },
  8844. },
  8845. [
  8846. {
  8847. name: "Normal",
  8848. height: math.unit(2.5, "meters")
  8849. },
  8850. {
  8851. name: "Macro",
  8852. height: math.unit(250, "meters"),
  8853. default: true
  8854. },
  8855. {
  8856. name: "Megamacro",
  8857. height: math.unit(25, "km")
  8858. },
  8859. ]
  8860. ))
  8861. characterMakers.push(() => makeCharacter(
  8862. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8863. {
  8864. front: {
  8865. height: math.unit(6, "feet"),
  8866. weight: math.unit(65, "kg"),
  8867. name: "Front",
  8868. image: {
  8869. source: "./media/characters/rook/front.svg",
  8870. extra: 960 / 950
  8871. }
  8872. }
  8873. },
  8874. [
  8875. {
  8876. name: "Normal",
  8877. height: math.unit(8.8, "feet")
  8878. },
  8879. {
  8880. name: "Macro",
  8881. height: math.unit(88, "feet"),
  8882. default: true
  8883. },
  8884. {
  8885. name: "Megamacro",
  8886. height: math.unit(8, "miles")
  8887. },
  8888. ]
  8889. ))
  8890. characterMakers.push(() => makeCharacter(
  8891. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8892. {
  8893. front: {
  8894. height: math.unit(12 + 2 / 12, "feet"),
  8895. weight: math.unit(808, "lbs"),
  8896. name: "Front",
  8897. image: {
  8898. source: "./media/characters/prodigy/front.svg"
  8899. }
  8900. }
  8901. },
  8902. [
  8903. {
  8904. name: "Normal",
  8905. height: math.unit(12 + 2 / 12, "feet"),
  8906. default: true
  8907. },
  8908. {
  8909. name: "Macro",
  8910. height: math.unit(143, "feet")
  8911. },
  8912. {
  8913. name: "Macro+",
  8914. height: math.unit(400, "feet")
  8915. },
  8916. ]
  8917. ))
  8918. characterMakers.push(() => makeCharacter(
  8919. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8920. {
  8921. front: {
  8922. height: math.unit(6, "feet"),
  8923. weight: math.unit(225, "lbs"),
  8924. name: "Front",
  8925. image: {
  8926. source: "./media/characters/daniel/front.svg"
  8927. }
  8928. },
  8929. leaning: {
  8930. height: math.unit(6, "feet"),
  8931. weight: math.unit(225, "lbs"),
  8932. name: "Leaning",
  8933. image: {
  8934. source: "./media/characters/daniel/leaning.svg"
  8935. }
  8936. },
  8937. },
  8938. [
  8939. {
  8940. name: "Macro",
  8941. height: math.unit(1000, "feet"),
  8942. default: true
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(6, "feet"),
  8951. weight: math.unit(88, "lbs"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/chiros/front.svg",
  8955. extra: 306 / 226
  8956. }
  8957. },
  8958. side: {
  8959. height: math.unit(6, "feet"),
  8960. weight: math.unit(88, "lbs"),
  8961. name: "Side",
  8962. image: {
  8963. source: "./media/characters/chiros/side.svg",
  8964. extra: 306 / 226
  8965. }
  8966. },
  8967. },
  8968. [
  8969. {
  8970. name: "Normal",
  8971. height: math.unit(6, "cm"),
  8972. default: true
  8973. },
  8974. ]
  8975. ))
  8976. characterMakers.push(() => makeCharacter(
  8977. { name: "Selka", species: ["snake"], tags: ["naga"] },
  8978. {
  8979. front: {
  8980. height: math.unit(6, "feet"),
  8981. weight: math.unit(100, "lbs"),
  8982. name: "Front",
  8983. image: {
  8984. source: "./media/characters/selka/front.svg",
  8985. extra: 947 / 887
  8986. }
  8987. }
  8988. },
  8989. [
  8990. {
  8991. name: "Normal",
  8992. height: math.unit(5, "cm"),
  8993. default: true
  8994. },
  8995. ]
  8996. ))
  8997. characterMakers.push(() => makeCharacter(
  8998. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  8999. {
  9000. front: {
  9001. height: math.unit(8 + 3 / 12, "feet"),
  9002. weight: math.unit(424, "lbs"),
  9003. name: "Front",
  9004. image: {
  9005. source: "./media/characters/verin/front.svg",
  9006. extra: 1845 / 1550
  9007. }
  9008. },
  9009. frontArmored: {
  9010. height: math.unit(8 + 3 / 12, "feet"),
  9011. weight: math.unit(424, "lbs"),
  9012. name: "Front (Armored)",
  9013. image: {
  9014. source: "./media/characters/verin/front-armor.svg",
  9015. extra: 1845 / 1550,
  9016. bottom: 0.01
  9017. }
  9018. },
  9019. back: {
  9020. height: math.unit(8 + 3 / 12, "feet"),
  9021. weight: math.unit(424, "lbs"),
  9022. name: "Back",
  9023. image: {
  9024. source: "./media/characters/verin/back.svg",
  9025. bottom: 0.1,
  9026. extra: 1
  9027. }
  9028. },
  9029. foot: {
  9030. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9031. name: "Foot",
  9032. image: {
  9033. source: "./media/characters/verin/foot.svg"
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Normal",
  9040. height: math.unit(8 + 3 / 12, "feet")
  9041. },
  9042. {
  9043. name: "Minimacro",
  9044. height: math.unit(21, "feet"),
  9045. default: true
  9046. },
  9047. {
  9048. name: "Macro",
  9049. height: math.unit(626, "feet")
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(2.718, "meters"),
  9058. weight: math.unit(150, "lbs"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/sovrim-terraquian/front.svg",
  9062. extra: 1752/1689,
  9063. bottom: 36/1788
  9064. }
  9065. },
  9066. back: {
  9067. height: math.unit(2.718, "meters"),
  9068. weight: math.unit(150, "lbs"),
  9069. name: "Back",
  9070. image: {
  9071. source: "./media/characters/sovrim-terraquian/back.svg",
  9072. extra: 1698/1657,
  9073. bottom: 58/1756
  9074. }
  9075. },
  9076. tongue: {
  9077. height: math.unit(2.865, "feet"),
  9078. name: "Tongue",
  9079. image: {
  9080. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9081. }
  9082. },
  9083. hand: {
  9084. height: math.unit(1.61, "feet"),
  9085. name: "Hand",
  9086. image: {
  9087. source: "./media/characters/sovrim-terraquian/hand.svg"
  9088. }
  9089. },
  9090. foot: {
  9091. height: math.unit(1.05, "feet"),
  9092. name: "Foot",
  9093. image: {
  9094. source: "./media/characters/sovrim-terraquian/foot.svg"
  9095. }
  9096. },
  9097. footAlt: {
  9098. height: math.unit(0.88, "feet"),
  9099. name: "Foot (Alt)",
  9100. image: {
  9101. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9102. }
  9103. },
  9104. },
  9105. [
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(2, "inches")
  9109. },
  9110. {
  9111. name: "Small",
  9112. height: math.unit(1, "meter")
  9113. },
  9114. {
  9115. name: "Normal",
  9116. height: math.unit(Math.E, "meters"),
  9117. default: true
  9118. },
  9119. {
  9120. name: "Macro",
  9121. height: math.unit(20, "meters")
  9122. },
  9123. {
  9124. name: "Macro+",
  9125. height: math.unit(400, "meters")
  9126. },
  9127. ]
  9128. ))
  9129. characterMakers.push(() => makeCharacter(
  9130. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9131. {
  9132. front: {
  9133. height: math.unit(7, "feet"),
  9134. weight: math.unit(489, "lbs"),
  9135. name: "Front",
  9136. image: {
  9137. source: "./media/characters/reece-silvermane/front.svg",
  9138. bottom: 0.02,
  9139. extra: 1
  9140. }
  9141. },
  9142. },
  9143. [
  9144. {
  9145. name: "Macro",
  9146. height: math.unit(1.5, "miles"),
  9147. default: true
  9148. },
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(6, "feet"),
  9156. weight: math.unit(78, "kg"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/kane/front.svg",
  9160. extra: 978 / 899
  9161. }
  9162. },
  9163. back: {
  9164. height: math.unit(6, "feet"),
  9165. weight: math.unit(78, "kg"),
  9166. name: "Back",
  9167. image: {
  9168. source: "./media/characters/kane/back.svg",
  9169. extra: 1966/1800,
  9170. bottom: 0/1966
  9171. }
  9172. },
  9173. head: {
  9174. height: math.unit(1.4, "feet"),
  9175. name: "Head",
  9176. image: {
  9177. source: "./media/characters/kane/head.svg"
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(2.1, "m"),
  9185. },
  9186. {
  9187. name: "Macro",
  9188. height: math.unit(1, "km"),
  9189. default: true
  9190. },
  9191. ]
  9192. ))
  9193. characterMakers.push(() => makeCharacter(
  9194. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9195. {
  9196. front: {
  9197. height: math.unit(6, "feet"),
  9198. weight: math.unit(200, "kg"),
  9199. name: "Front",
  9200. image: {
  9201. source: "./media/characters/tegon/front.svg",
  9202. bottom: 0.01,
  9203. extra: 1
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Micro",
  9210. height: math.unit(1, "inch")
  9211. },
  9212. {
  9213. name: "Normal",
  9214. height: math.unit(6 + 3 / 12, "feet"),
  9215. default: true
  9216. },
  9217. {
  9218. name: "Macro",
  9219. height: math.unit(300, "feet")
  9220. },
  9221. {
  9222. name: "Megamacro",
  9223. height: math.unit(69, "miles")
  9224. },
  9225. ]
  9226. ))
  9227. characterMakers.push(() => makeCharacter(
  9228. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9229. {
  9230. side: {
  9231. height: math.unit(6, "feet"),
  9232. weight: math.unit(2304, "lbs"),
  9233. name: "Side",
  9234. image: {
  9235. source: "./media/characters/arcturax/side.svg",
  9236. extra: 790 / 376,
  9237. bottom: 0.01
  9238. }
  9239. },
  9240. },
  9241. [
  9242. {
  9243. name: "Micro",
  9244. height: math.unit(2, "inch")
  9245. },
  9246. {
  9247. name: "Normal",
  9248. height: math.unit(6, "feet")
  9249. },
  9250. {
  9251. name: "Macro",
  9252. height: math.unit(39, "feet"),
  9253. default: true
  9254. },
  9255. {
  9256. name: "Megamacro",
  9257. height: math.unit(7, "miles")
  9258. },
  9259. ]
  9260. ))
  9261. characterMakers.push(() => makeCharacter(
  9262. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9263. {
  9264. front: {
  9265. height: math.unit(6, "feet"),
  9266. weight: math.unit(50, "lbs"),
  9267. name: "Front",
  9268. image: {
  9269. source: "./media/characters/sentri/front.svg",
  9270. extra: 1750 / 1570,
  9271. bottom: 0.025
  9272. }
  9273. },
  9274. frontAlt: {
  9275. height: math.unit(6, "feet"),
  9276. weight: math.unit(50, "lbs"),
  9277. name: "Front (Alt)",
  9278. image: {
  9279. source: "./media/characters/sentri/front-alt.svg",
  9280. extra: 1750 / 1570,
  9281. bottom: 0.025
  9282. }
  9283. },
  9284. },
  9285. [
  9286. {
  9287. name: "Normal",
  9288. height: math.unit(15, "feet"),
  9289. default: true
  9290. },
  9291. {
  9292. name: "Macro",
  9293. height: math.unit(2500, "feet")
  9294. }
  9295. ]
  9296. ))
  9297. characterMakers.push(() => makeCharacter(
  9298. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9299. {
  9300. front: {
  9301. height: math.unit(5 + 8 / 12, "feet"),
  9302. weight: math.unit(130, "lbs"),
  9303. name: "Front",
  9304. image: {
  9305. source: "./media/characters/corvin/front.svg",
  9306. extra: 1803 / 1629
  9307. }
  9308. },
  9309. frontShirt: {
  9310. height: math.unit(5 + 8 / 12, "feet"),
  9311. weight: math.unit(130, "lbs"),
  9312. name: "Front (Shirt)",
  9313. image: {
  9314. source: "./media/characters/corvin/front-shirt.svg",
  9315. extra: 1803 / 1629
  9316. }
  9317. },
  9318. frontPoncho: {
  9319. height: math.unit(5 + 8 / 12, "feet"),
  9320. weight: math.unit(130, "lbs"),
  9321. name: "Front (Poncho)",
  9322. image: {
  9323. source: "./media/characters/corvin/front-poncho.svg",
  9324. extra: 1803 / 1629
  9325. }
  9326. },
  9327. side: {
  9328. height: math.unit(5 + 8 / 12, "feet"),
  9329. weight: math.unit(130, "lbs"),
  9330. name: "Side",
  9331. image: {
  9332. source: "./media/characters/corvin/side.svg",
  9333. extra: 1012 / 945
  9334. }
  9335. },
  9336. back: {
  9337. height: math.unit(5 + 8 / 12, "feet"),
  9338. weight: math.unit(130, "lbs"),
  9339. name: "Back",
  9340. image: {
  9341. source: "./media/characters/corvin/back.svg",
  9342. extra: 1803 / 1629
  9343. }
  9344. },
  9345. },
  9346. [
  9347. {
  9348. name: "Micro",
  9349. height: math.unit(3, "inches")
  9350. },
  9351. {
  9352. name: "Normal",
  9353. height: math.unit(5 + 8 / 12, "feet")
  9354. },
  9355. {
  9356. name: "Macro",
  9357. height: math.unit(300, "feet"),
  9358. default: true
  9359. },
  9360. {
  9361. name: "Megamacro",
  9362. height: math.unit(500, "miles")
  9363. }
  9364. ]
  9365. ))
  9366. characterMakers.push(() => makeCharacter(
  9367. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9368. {
  9369. front: {
  9370. height: math.unit(6, "feet"),
  9371. weight: math.unit(135, "lbs"),
  9372. name: "Front",
  9373. image: {
  9374. source: "./media/characters/q/front.svg",
  9375. extra: 854 / 752,
  9376. bottom: 0.005
  9377. }
  9378. },
  9379. back: {
  9380. height: math.unit(6, "feet"),
  9381. weight: math.unit(130, "lbs"),
  9382. name: "Back",
  9383. image: {
  9384. source: "./media/characters/q/back.svg",
  9385. extra: 854 / 752
  9386. }
  9387. },
  9388. },
  9389. [
  9390. {
  9391. name: "Macro",
  9392. height: math.unit(90, "feet"),
  9393. default: true
  9394. },
  9395. {
  9396. name: "Extra Macro",
  9397. height: math.unit(300, "feet"),
  9398. },
  9399. {
  9400. name: "BIG WALF",
  9401. height: math.unit(750, "feet"),
  9402. },
  9403. ]
  9404. ))
  9405. characterMakers.push(() => makeCharacter(
  9406. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9407. {
  9408. front: {
  9409. height: math.unit(3, "feet"),
  9410. weight: math.unit(28, "lbs"),
  9411. name: "Front",
  9412. image: {
  9413. source: "./media/characters/citrine/front.svg"
  9414. }
  9415. }
  9416. },
  9417. [
  9418. {
  9419. name: "Normal",
  9420. height: math.unit(3, "feet"),
  9421. default: true
  9422. }
  9423. ]
  9424. ))
  9425. characterMakers.push(() => makeCharacter(
  9426. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9427. {
  9428. front: {
  9429. height: math.unit(14, "feet"),
  9430. weight: math.unit(1450, "kg"),
  9431. preyCapacity: math.unit(15, "people"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/aura-starwind/front.svg",
  9435. extra: 1440/1327,
  9436. bottom: 11/1451
  9437. }
  9438. },
  9439. side: {
  9440. height: math.unit(14, "feet"),
  9441. weight: math.unit(1450, "kg"),
  9442. preyCapacity: math.unit(15, "people"),
  9443. name: "Side",
  9444. image: {
  9445. source: "./media/characters/aura-starwind/side.svg",
  9446. extra: 1654 / 1497
  9447. }
  9448. },
  9449. taur: {
  9450. height: math.unit(18, "feet"),
  9451. weight: math.unit(5500, "kg"),
  9452. preyCapacity: math.unit(50, "people"),
  9453. name: "Taur",
  9454. image: {
  9455. source: "./media/characters/aura-starwind/taur.svg",
  9456. extra: 1760 / 1650
  9457. }
  9458. },
  9459. feral: {
  9460. height: math.unit(46, "feet"),
  9461. weight: math.unit(25000, "kg"),
  9462. preyCapacity: math.unit(120, "people"),
  9463. name: "Feral",
  9464. image: {
  9465. source: "./media/characters/aura-starwind/feral.svg"
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Normal",
  9472. height: math.unit(14, "feet"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "Macro",
  9477. height: math.unit(50, "meters")
  9478. },
  9479. {
  9480. name: "Megamacro",
  9481. height: math.unit(5000, "meters")
  9482. },
  9483. {
  9484. name: "Gigamacro",
  9485. height: math.unit(100000, "kilometers")
  9486. },
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9491. {
  9492. front: {
  9493. height: math.unit(2 + 7 / 12, "feet"),
  9494. weight: math.unit(32, "lbs"),
  9495. name: "Front",
  9496. image: {
  9497. source: "./media/characters/rivet/front.svg",
  9498. extra: 1716 / 1658,
  9499. bottom: 0.03
  9500. }
  9501. },
  9502. foot: {
  9503. height: math.unit(0.551, "feet"),
  9504. name: "Rivet's Foot",
  9505. image: {
  9506. source: "./media/characters/rivet/foot.svg"
  9507. },
  9508. rename: true
  9509. }
  9510. },
  9511. [
  9512. {
  9513. name: "Micro",
  9514. height: math.unit(1.5, "inches"),
  9515. },
  9516. {
  9517. name: "Normal",
  9518. height: math.unit(2 + 7 / 12, "feet"),
  9519. default: true
  9520. },
  9521. {
  9522. name: "Macro",
  9523. height: math.unit(85, "feet")
  9524. },
  9525. {
  9526. name: "Megamacro",
  9527. height: math.unit(2.2, "km")
  9528. }
  9529. ]
  9530. ))
  9531. characterMakers.push(() => makeCharacter(
  9532. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9533. {
  9534. front: {
  9535. height: math.unit(5 + 9 / 12, "feet"),
  9536. weight: math.unit(150, "lbs"),
  9537. name: "Front",
  9538. image: {
  9539. source: "./media/characters/coffee/front.svg",
  9540. extra: 946/880,
  9541. bottom: 66/1012
  9542. }
  9543. },
  9544. foot: {
  9545. height: math.unit(1.29, "feet"),
  9546. name: "Foot",
  9547. image: {
  9548. source: "./media/characters/coffee/foot.svg"
  9549. }
  9550. },
  9551. },
  9552. [
  9553. {
  9554. name: "Micro",
  9555. height: math.unit(2, "inches"),
  9556. },
  9557. {
  9558. name: "Normal",
  9559. height: math.unit(5 + 9 / 12, "feet"),
  9560. default: true
  9561. },
  9562. {
  9563. name: "Macro",
  9564. height: math.unit(800, "feet")
  9565. },
  9566. {
  9567. name: "Megamacro",
  9568. height: math.unit(25, "miles")
  9569. }
  9570. ]
  9571. ))
  9572. characterMakers.push(() => makeCharacter(
  9573. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9574. {
  9575. front: {
  9576. height: math.unit(6, "feet"),
  9577. weight: math.unit(200, "lbs"),
  9578. name: "Front",
  9579. image: {
  9580. source: "./media/characters/chari-gal/front.svg",
  9581. extra: 735/649,
  9582. bottom: 55/790
  9583. },
  9584. form: "normal",
  9585. default: true
  9586. },
  9587. back: {
  9588. height: math.unit(6, "feet"),
  9589. weight: math.unit(200, "lb"),
  9590. name: "Back",
  9591. image: {
  9592. source: "./media/characters/chari-gal/back.svg",
  9593. extra: 762/666,
  9594. bottom: 31/793
  9595. },
  9596. form: "normal"
  9597. },
  9598. mouth: {
  9599. height: math.unit(1.35, "feet"),
  9600. name: "Mouth",
  9601. image: {
  9602. source: "./media/characters/chari-gal/mouth.svg"
  9603. },
  9604. form: "normal"
  9605. },
  9606. gigantamax: {
  9607. height: math.unit(6 * 16, "feet"),
  9608. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9609. name: "Gigantamax",
  9610. image: {
  9611. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9612. extra: 1507/1149,
  9613. bottom: 254/1761
  9614. },
  9615. form: "gigantamax",
  9616. default: true
  9617. },
  9618. },
  9619. [
  9620. {
  9621. name: "Normal",
  9622. height: math.unit(5 + 7 / 12, "feet"),
  9623. form: "normal",
  9624. },
  9625. {
  9626. name: "Macro",
  9627. height: math.unit(200, "feet"),
  9628. default: true,
  9629. form: "normal"
  9630. },
  9631. {
  9632. name: "Normal",
  9633. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9634. form: "gigantamax",
  9635. },
  9636. {
  9637. name: "Macro",
  9638. height: math.unit(16 * 200, "feet"),
  9639. default: true,
  9640. form: "gigantamax"
  9641. },
  9642. ],
  9643. {
  9644. "normal": {
  9645. name: "Normal",
  9646. default: true
  9647. },
  9648. "gigantamax": {
  9649. name: "Gigantamax",
  9650. },
  9651. }
  9652. ))
  9653. characterMakers.push(() => makeCharacter(
  9654. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9655. {
  9656. front: {
  9657. height: math.unit(6, "feet"),
  9658. weight: math.unit(150, "lbs"),
  9659. name: "Front",
  9660. image: {
  9661. source: "./media/characters/nova/front.svg",
  9662. extra: 5000 / 4722,
  9663. bottom: 0.02
  9664. }
  9665. }
  9666. },
  9667. [
  9668. {
  9669. name: "Micro-",
  9670. height: math.unit(0.8, "inches")
  9671. },
  9672. {
  9673. name: "Micro",
  9674. height: math.unit(2, "inches"),
  9675. default: true
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9681. {
  9682. koboldFront: {
  9683. height: math.unit(3 + 1 / 12, "feet"),
  9684. weight: math.unit(21.7, "lbs"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/argent/kobold-front.svg",
  9688. extra: 1471 / 1331,
  9689. bottom: 100.8 / 1575.5
  9690. },
  9691. form: "kobold",
  9692. default: true
  9693. },
  9694. dragonFront: {
  9695. height: math.unit(75, "inches"),
  9696. name: "Front",
  9697. image: {
  9698. source: "./media/characters/argent/dragon-front.svg",
  9699. extra: 1389/1248,
  9700. bottom: 54/1443
  9701. },
  9702. form: "dragon",
  9703. },
  9704. dragonBack: {
  9705. height: math.unit(75, "inches"),
  9706. name: "Back",
  9707. image: {
  9708. source: "./media/characters/argent/dragon-back.svg",
  9709. extra: 1399/1271,
  9710. bottom: 23/1422
  9711. },
  9712. form: "dragon",
  9713. },
  9714. dragonDressed: {
  9715. height: math.unit(75, "inches"),
  9716. name: "Dressed",
  9717. image: {
  9718. source: "./media/characters/argent/dragon-dressed.svg",
  9719. extra: 1350/1215,
  9720. bottom: 26/1376
  9721. },
  9722. form: "dragon"
  9723. },
  9724. dragonHead: {
  9725. height: math.unit(23.5, "inches"),
  9726. name: "Head",
  9727. image: {
  9728. source: "./media/characters/argent/dragon-head.svg"
  9729. },
  9730. form: "dragon",
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Micro",
  9736. height: math.unit(2, "inches"),
  9737. form: "kobold",
  9738. },
  9739. {
  9740. name: "Normal",
  9741. height: math.unit(3 + 1 / 12, "feet"),
  9742. form: "kobold",
  9743. default: true
  9744. },
  9745. {
  9746. name: "Macro",
  9747. height: math.unit(120, "feet"),
  9748. form: "kobold",
  9749. },
  9750. {
  9751. name: "Speck",
  9752. height: math.unit(1, "mm"),
  9753. form: "dragon",
  9754. },
  9755. {
  9756. name: "Tiny",
  9757. height: math.unit(1, "cm"),
  9758. form: "dragon",
  9759. },
  9760. {
  9761. name: "Micro",
  9762. height: math.unit(5, "cm"),
  9763. form: "dragon",
  9764. },
  9765. {
  9766. name: "Normal",
  9767. height: math.unit(75, "inches"),
  9768. form: "dragon",
  9769. default: true
  9770. },
  9771. {
  9772. name: "Extra Tall",
  9773. height: math.unit(9, "feet"),
  9774. form: "dragon",
  9775. },
  9776. {
  9777. name: "Inconvenient",
  9778. height: math.unit(5, "meters"),
  9779. form: "dragon",
  9780. },
  9781. {
  9782. name: "Macro",
  9783. height: math.unit(70, "meters"),
  9784. form: "dragon",
  9785. },
  9786. {
  9787. name: "Macro+",
  9788. height: math.unit(250, "meters"),
  9789. form: "dragon",
  9790. },
  9791. {
  9792. name: "Megamacro",
  9793. height: math.unit(20, "km"),
  9794. form: "dragon",
  9795. },
  9796. {
  9797. name: "Mountainous",
  9798. height: math.unit(100, "km"),
  9799. form: "dragon",
  9800. },
  9801. {
  9802. name: "Continental",
  9803. height: math.unit(2, "megameters"),
  9804. form: "dragon",
  9805. },
  9806. {
  9807. name: "Too Big",
  9808. height: math.unit(900, "megameters"),
  9809. form: "dragon",
  9810. },
  9811. ],
  9812. {
  9813. "kobold": {
  9814. name: "Kobold",
  9815. default: true
  9816. },
  9817. "dragon": {
  9818. name: "Dragon",
  9819. },
  9820. }
  9821. ))
  9822. characterMakers.push(() => makeCharacter(
  9823. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9824. {
  9825. lamp: {
  9826. height: math.unit(7 * 1559 / 989, "feet"),
  9827. name: "Magic Lamp",
  9828. image: {
  9829. source: "./media/characters/mira-al-cul/lamp.svg",
  9830. extra: 1617 / 1559
  9831. }
  9832. },
  9833. front: {
  9834. height: math.unit(7, "feet"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/mira-al-cul/front.svg",
  9838. extra: 1044 / 990
  9839. }
  9840. },
  9841. },
  9842. [
  9843. {
  9844. name: "Heavily Restricted",
  9845. height: math.unit(7 * 1559 / 989, "feet")
  9846. },
  9847. {
  9848. name: "Freshly Freed",
  9849. height: math.unit(50 * 1559 / 989, "feet")
  9850. },
  9851. {
  9852. name: "World Encompassing",
  9853. height: math.unit(10000 * 1559 / 989, "miles")
  9854. },
  9855. {
  9856. name: "Galactic",
  9857. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9858. },
  9859. {
  9860. name: "Palmed Universe",
  9861. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9862. default: true
  9863. },
  9864. {
  9865. name: "Multiversal Matriarch",
  9866. height: math.unit(8.87e10, "yottameters")
  9867. },
  9868. {
  9869. name: "Void Mother",
  9870. height: math.unit(3.14e110, "yottaparsecs")
  9871. },
  9872. {
  9873. name: "Toying with Transcendence",
  9874. height: math.unit(1e307, "meters")
  9875. },
  9876. ]
  9877. ))
  9878. characterMakers.push(() => makeCharacter(
  9879. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9880. {
  9881. front: {
  9882. height: math.unit(17 + 1 / 12, "feet"),
  9883. weight: math.unit(476.2 * 5, "lbs"),
  9884. name: "Front",
  9885. image: {
  9886. source: "./media/characters/kuro-shi-uchū/front.svg",
  9887. extra: 2329 / 1835,
  9888. bottom: 0.02
  9889. }
  9890. },
  9891. },
  9892. [
  9893. {
  9894. name: "Micro",
  9895. height: math.unit(2, "inches")
  9896. },
  9897. {
  9898. name: "Normal",
  9899. height: math.unit(12, "meters")
  9900. },
  9901. {
  9902. name: "Planetary",
  9903. height: math.unit(0.00929, "AU"),
  9904. default: true
  9905. },
  9906. {
  9907. name: "Universal",
  9908. height: math.unit(20, "gigaparsecs")
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9914. {
  9915. front: {
  9916. height: math.unit(5 + 2 / 12, "feet"),
  9917. weight: math.unit(120, "lbs"),
  9918. name: "Front",
  9919. image: {
  9920. source: "./media/characters/katherine/front.svg",
  9921. extra: 2075 / 1969
  9922. }
  9923. },
  9924. dress: {
  9925. height: math.unit(5 + 2 / 12, "feet"),
  9926. weight: math.unit(120, "lbs"),
  9927. name: "Dress",
  9928. image: {
  9929. source: "./media/characters/katherine/dress.svg",
  9930. extra: 2258 / 2064
  9931. }
  9932. },
  9933. },
  9934. [
  9935. {
  9936. name: "Micro",
  9937. height: math.unit(1, "inches"),
  9938. default: true
  9939. },
  9940. {
  9941. name: "Normal",
  9942. height: math.unit(5 + 2 / 12, "feet")
  9943. },
  9944. {
  9945. name: "Macro",
  9946. height: math.unit(100, "meters")
  9947. },
  9948. {
  9949. name: "Megamacro",
  9950. height: math.unit(80, "miles")
  9951. },
  9952. ]
  9953. ))
  9954. characterMakers.push(() => makeCharacter(
  9955. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  9956. {
  9957. front: {
  9958. height: math.unit(7 + 8 / 12, "feet"),
  9959. weight: math.unit(250, "lbs"),
  9960. name: "Front",
  9961. image: {
  9962. source: "./media/characters/yevis/front.svg",
  9963. extra: 1938 / 1755
  9964. }
  9965. }
  9966. },
  9967. [
  9968. {
  9969. name: "Mortal",
  9970. height: math.unit(7 + 8 / 12, "feet")
  9971. },
  9972. {
  9973. name: "Battle",
  9974. height: math.unit(25 + 11 / 12, "feet")
  9975. },
  9976. {
  9977. name: "Wrath",
  9978. height: math.unit(1654 + 11 / 12, "feet")
  9979. },
  9980. {
  9981. name: "Planet Destroyer",
  9982. height: math.unit(12000, "miles")
  9983. },
  9984. {
  9985. name: "Galaxy Conqueror",
  9986. height: math.unit(1.45, "zettameters"),
  9987. default: true
  9988. },
  9989. {
  9990. name: "Universal War",
  9991. height: math.unit(184, "gigaparsecs")
  9992. },
  9993. {
  9994. name: "Eternity War",
  9995. height: math.unit(1.98e55, "yottaparsecs")
  9996. },
  9997. ]
  9998. ))
  9999. characterMakers.push(() => makeCharacter(
  10000. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10001. {
  10002. front: {
  10003. height: math.unit(5 + 8 / 12, "feet"),
  10004. weight: math.unit(63, "kg"),
  10005. name: "Front",
  10006. image: {
  10007. source: "./media/characters/xavier/front.svg",
  10008. extra: 944 / 883
  10009. }
  10010. },
  10011. frontStretch: {
  10012. height: math.unit(5 + 8 / 12, "feet"),
  10013. weight: math.unit(63, "kg"),
  10014. name: "Stretching",
  10015. image: {
  10016. source: "./media/characters/xavier/front-stretch.svg",
  10017. extra: 962 / 820
  10018. }
  10019. },
  10020. },
  10021. [
  10022. {
  10023. name: "Normal",
  10024. height: math.unit(5 + 8 / 12, "feet")
  10025. },
  10026. {
  10027. name: "Macro",
  10028. height: math.unit(100, "meters"),
  10029. default: true
  10030. },
  10031. {
  10032. name: "McLargeHuge",
  10033. height: math.unit(10, "miles")
  10034. },
  10035. ]
  10036. ))
  10037. characterMakers.push(() => makeCharacter(
  10038. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10039. {
  10040. front: {
  10041. height: math.unit(5 + 5 / 12, "feet"),
  10042. weight: math.unit(150, "lb"),
  10043. name: "Front",
  10044. image: {
  10045. source: "./media/characters/joshii/front.svg",
  10046. extra: 765 / 653,
  10047. bottom: 51 / 816
  10048. }
  10049. },
  10050. foot: {
  10051. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10052. name: "Foot",
  10053. image: {
  10054. source: "./media/characters/joshii/foot.svg"
  10055. }
  10056. },
  10057. },
  10058. [
  10059. {
  10060. name: "Micro",
  10061. height: math.unit(2, "inches")
  10062. },
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(5 + 5 / 12, "feet")
  10066. },
  10067. {
  10068. name: "Macro",
  10069. height: math.unit(785, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Megamacro",
  10074. height: math.unit(24.5, "miles")
  10075. },
  10076. ]
  10077. ))
  10078. characterMakers.push(() => makeCharacter(
  10079. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10080. {
  10081. front: {
  10082. height: math.unit(6, "feet"),
  10083. weight: math.unit(150, "lb"),
  10084. name: "Front",
  10085. image: {
  10086. source: "./media/characters/goddess-elizabeth/front.svg",
  10087. extra: 1800 / 1525,
  10088. bottom: 0.005
  10089. }
  10090. },
  10091. foot: {
  10092. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10093. name: "Foot",
  10094. image: {
  10095. source: "./media/characters/goddess-elizabeth/foot.svg"
  10096. }
  10097. },
  10098. mouth: {
  10099. height: math.unit(6, "feet"),
  10100. name: "Mouth",
  10101. image: {
  10102. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10103. }
  10104. },
  10105. },
  10106. [
  10107. {
  10108. name: "Micro",
  10109. height: math.unit(12, "feet")
  10110. },
  10111. {
  10112. name: "Normal",
  10113. height: math.unit(80, "miles"),
  10114. default: true
  10115. },
  10116. {
  10117. name: "Macro",
  10118. height: math.unit(15000, "parsecs")
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(5 + 9 / 12, "feet"),
  10127. weight: math.unit(144, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/kara/front.svg"
  10131. }
  10132. },
  10133. feet: {
  10134. height: math.unit(6 / 6.765, "feet"),
  10135. name: "Kara's Feet",
  10136. rename: true,
  10137. image: {
  10138. source: "./media/characters/kara/feet.svg"
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(5 + 9 / 12, "feet")
  10146. },
  10147. {
  10148. name: "Macro",
  10149. height: math.unit(174, "feet"),
  10150. default: true
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(18, "feet"),
  10159. weight: math.unit(4050, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/tyrone/front.svg",
  10163. extra: 2405 / 2270,
  10164. bottom: 182 / 2587
  10165. }
  10166. },
  10167. },
  10168. [
  10169. {
  10170. name: "Normal",
  10171. height: math.unit(18, "feet"),
  10172. default: true
  10173. },
  10174. {
  10175. name: "Macro",
  10176. height: math.unit(300, "feet")
  10177. },
  10178. {
  10179. name: "Megamacro",
  10180. height: math.unit(15, "km")
  10181. },
  10182. {
  10183. name: "Gigamacro",
  10184. height: math.unit(500, "km")
  10185. },
  10186. {
  10187. name: "Teramacro",
  10188. height: math.unit(0.5, "gigameters")
  10189. },
  10190. {
  10191. name: "Omnimacro",
  10192. height: math.unit(1e252, "yottauniverse")
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(7 + 8 / 12, "feet"),
  10201. weight: math.unit(120, "lb"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/danny/front.svg",
  10205. extra: 1490 / 1350
  10206. }
  10207. },
  10208. back: {
  10209. height: math.unit(7 + 8 / 12, "feet"),
  10210. weight: math.unit(120, "lb"),
  10211. name: "Back",
  10212. image: {
  10213. source: "./media/characters/danny/back.svg",
  10214. extra: 1490 / 1350
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(7 + 8 / 12, "feet"),
  10222. default: true
  10223. },
  10224. ]
  10225. ))
  10226. characterMakers.push(() => makeCharacter(
  10227. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10228. {
  10229. front: {
  10230. height: math.unit(3.5, "inches"),
  10231. weight: math.unit(19, "grams"),
  10232. name: "Front",
  10233. image: {
  10234. source: "./media/characters/mallow/front.svg",
  10235. extra: 471 / 431
  10236. }
  10237. },
  10238. back: {
  10239. height: math.unit(3.5, "inches"),
  10240. weight: math.unit(19, "grams"),
  10241. name: "Back",
  10242. image: {
  10243. source: "./media/characters/mallow/back.svg",
  10244. extra: 471 / 431
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(3.5, "inches"),
  10252. default: true
  10253. },
  10254. ]
  10255. ))
  10256. characterMakers.push(() => makeCharacter(
  10257. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10258. {
  10259. front: {
  10260. height: math.unit(9, "feet"),
  10261. weight: math.unit(230, "kg"),
  10262. name: "Front",
  10263. image: {
  10264. source: "./media/characters/starry-aqua/front.svg"
  10265. }
  10266. },
  10267. back: {
  10268. height: math.unit(9, "feet"),
  10269. weight: math.unit(230, "kg"),
  10270. name: "Back",
  10271. image: {
  10272. source: "./media/characters/starry-aqua/back.svg"
  10273. }
  10274. },
  10275. hand: {
  10276. height: math.unit(9 * 0.1168, "feet"),
  10277. name: "Hand",
  10278. image: {
  10279. source: "./media/characters/starry-aqua/hand.svg"
  10280. }
  10281. },
  10282. foot: {
  10283. height: math.unit(9 * 0.18, "feet"),
  10284. name: "Foot",
  10285. image: {
  10286. source: "./media/characters/starry-aqua/foot.svg"
  10287. }
  10288. }
  10289. },
  10290. [
  10291. {
  10292. name: "Micro",
  10293. height: math.unit(3, "inches")
  10294. },
  10295. {
  10296. name: "Normal",
  10297. height: math.unit(9, "feet")
  10298. },
  10299. {
  10300. name: "Macro",
  10301. height: math.unit(300, "feet"),
  10302. default: true
  10303. },
  10304. {
  10305. name: "Megamacro",
  10306. height: math.unit(3200, "feet")
  10307. }
  10308. ]
  10309. ))
  10310. characterMakers.push(() => makeCharacter(
  10311. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10312. {
  10313. front: {
  10314. height: math.unit(15, "feet"),
  10315. weight: math.unit(5026, "lb"),
  10316. name: "Front",
  10317. image: {
  10318. source: "./media/characters/luka-towers/front.svg",
  10319. extra: 1269/1133,
  10320. bottom: 51/1320
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Normal",
  10327. height: math.unit(15, "feet"),
  10328. default: true
  10329. },
  10330. {
  10331. name: "Minimacro",
  10332. height: math.unit(25, "feet")
  10333. },
  10334. {
  10335. name: "Macro",
  10336. height: math.unit(320, "feet")
  10337. },
  10338. {
  10339. name: "Megamacro",
  10340. height: math.unit(35000, "feet")
  10341. },
  10342. {
  10343. name: "Gigamacro",
  10344. height: math.unit(4000, "miles")
  10345. },
  10346. {
  10347. name: "Teramacro",
  10348. height: math.unit(15000, "miles")
  10349. },
  10350. ]
  10351. ))
  10352. characterMakers.push(() => makeCharacter(
  10353. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10354. {
  10355. front: {
  10356. height: math.unit(6, "feet"),
  10357. weight: math.unit(150, "lb"),
  10358. name: "Front",
  10359. image: {
  10360. source: "./media/characters/natalie-nightring/front.svg",
  10361. extra: 1,
  10362. bottom: 0.06
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Uh Oh",
  10369. height: math.unit(0.1, "mm")
  10370. },
  10371. {
  10372. name: "Small",
  10373. height: math.unit(3, "inches")
  10374. },
  10375. {
  10376. name: "Human Scale",
  10377. height: math.unit(6, "feet")
  10378. },
  10379. {
  10380. name: "Librarian",
  10381. height: math.unit(50, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Immense",
  10386. height: math.unit(200, "miles")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(6, "feet"),
  10395. weight: math.unit(180, "lbs"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/danni-rosie/front.svg",
  10399. extra: 1260 / 1128,
  10400. bottom: 0.022
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Micro",
  10407. height: math.unit(2, "inches"),
  10408. default: true
  10409. },
  10410. ]
  10411. ))
  10412. characterMakers.push(() => makeCharacter(
  10413. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10414. {
  10415. front: {
  10416. height: math.unit(5 + 9 / 12, "feet"),
  10417. weight: math.unit(220, "lb"),
  10418. name: "Front",
  10419. image: {
  10420. source: "./media/characters/samantha-kruse/front.svg",
  10421. extra: (985 / 935),
  10422. bottom: 0.03
  10423. }
  10424. },
  10425. frontUndressed: {
  10426. height: math.unit(5 + 9 / 12, "feet"),
  10427. weight: math.unit(220, "lb"),
  10428. name: "Front (Undressed)",
  10429. image: {
  10430. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10431. extra: (973 / 923),
  10432. bottom: 0.025
  10433. }
  10434. },
  10435. fat: {
  10436. height: math.unit(5 + 9 / 12, "feet"),
  10437. weight: math.unit(900, "lb"),
  10438. name: "Front (Fat)",
  10439. image: {
  10440. source: "./media/characters/samantha-kruse/fat.svg",
  10441. extra: 2688 / 2561
  10442. }
  10443. },
  10444. },
  10445. [
  10446. {
  10447. name: "Normal",
  10448. height: math.unit(5 + 9 / 12, "feet"),
  10449. default: true
  10450. }
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10455. {
  10456. back: {
  10457. height: math.unit(5 + 4 / 12, "feet"),
  10458. weight: math.unit(4963, "lb"),
  10459. name: "Back",
  10460. image: {
  10461. source: "./media/characters/amelia-rosie/back.svg",
  10462. extra: 1113 / 963,
  10463. bottom: 0.01
  10464. }
  10465. },
  10466. },
  10467. [
  10468. {
  10469. name: "Level 0",
  10470. height: math.unit(5 + 4 / 12, "feet")
  10471. },
  10472. {
  10473. name: "Level 1",
  10474. height: math.unit(164597, "feet"),
  10475. default: true
  10476. },
  10477. {
  10478. name: "Level 2",
  10479. height: math.unit(956243, "miles")
  10480. },
  10481. {
  10482. name: "Level 3",
  10483. height: math.unit(29421709423, "miles")
  10484. },
  10485. {
  10486. name: "Level 4",
  10487. height: math.unit(154, "lightyears")
  10488. },
  10489. {
  10490. name: "Level 5",
  10491. height: math.unit(4738272, "lightyears")
  10492. },
  10493. {
  10494. name: "Level 6",
  10495. height: math.unit(145787152896, "lightyears")
  10496. },
  10497. ]
  10498. ))
  10499. characterMakers.push(() => makeCharacter(
  10500. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10501. {
  10502. front: {
  10503. height: math.unit(5 + 11 / 12, "feet"),
  10504. weight: math.unit(65, "kg"),
  10505. name: "Front",
  10506. image: {
  10507. source: "./media/characters/rook-kitara/front.svg",
  10508. extra: 1347 / 1274,
  10509. bottom: 0.005
  10510. }
  10511. },
  10512. },
  10513. [
  10514. {
  10515. name: "Totally Unfair",
  10516. height: math.unit(1.8, "mm")
  10517. },
  10518. {
  10519. name: "Lap Rookie",
  10520. height: math.unit(1.4, "feet")
  10521. },
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(5 + 11 / 12, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "How Did This Happen",
  10529. height: math.unit(80, "miles")
  10530. }
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10535. {
  10536. front: {
  10537. height: math.unit(7, "feet"),
  10538. weight: math.unit(300, "lb"),
  10539. name: "Front",
  10540. image: {
  10541. source: "./media/characters/pisces/front.svg",
  10542. extra: 2255 / 2115,
  10543. bottom: 0.03
  10544. }
  10545. },
  10546. back: {
  10547. height: math.unit(7, "feet"),
  10548. weight: math.unit(300, "lb"),
  10549. name: "Back",
  10550. image: {
  10551. source: "./media/characters/pisces/back.svg",
  10552. extra: 2146 / 2055,
  10553. bottom: 0.04
  10554. }
  10555. },
  10556. },
  10557. [
  10558. {
  10559. name: "Normal",
  10560. height: math.unit(7, "feet"),
  10561. default: true
  10562. },
  10563. {
  10564. name: "Swimming Pool",
  10565. height: math.unit(12.2, "meters")
  10566. },
  10567. {
  10568. name: "Olympic Swimming Pool",
  10569. height: math.unit(56.3, "meters")
  10570. },
  10571. {
  10572. name: "Lake Superior",
  10573. height: math.unit(93900, "meters")
  10574. },
  10575. {
  10576. name: "Mediterranean Sea",
  10577. height: math.unit(644457, "meters")
  10578. },
  10579. {
  10580. name: "World's Oceans",
  10581. height: math.unit(4567491, "meters")
  10582. },
  10583. ]
  10584. ))
  10585. characterMakers.push(() => makeCharacter(
  10586. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10587. {
  10588. front: {
  10589. height: math.unit(2.3, "meters"),
  10590. weight: math.unit(120, "kg"),
  10591. name: "Front",
  10592. image: {
  10593. source: "./media/characters/zelas/front.svg"
  10594. }
  10595. },
  10596. side: {
  10597. height: math.unit(2.3, "meters"),
  10598. weight: math.unit(120, "kg"),
  10599. name: "Side",
  10600. image: {
  10601. source: "./media/characters/zelas/side.svg"
  10602. }
  10603. },
  10604. back: {
  10605. height: math.unit(2.3, "meters"),
  10606. weight: math.unit(120, "kg"),
  10607. name: "Back",
  10608. image: {
  10609. source: "./media/characters/zelas/back.svg"
  10610. }
  10611. },
  10612. foot: {
  10613. height: math.unit(1.116, "feet"),
  10614. name: "Foot",
  10615. image: {
  10616. source: "./media/characters/zelas/foot.svg"
  10617. }
  10618. },
  10619. },
  10620. [
  10621. {
  10622. name: "Normal",
  10623. height: math.unit(2.3, "meters")
  10624. },
  10625. {
  10626. name: "Macro",
  10627. height: math.unit(30, "meters"),
  10628. default: true
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10634. {
  10635. front: {
  10636. height: math.unit(1, "inch"),
  10637. weight: math.unit(0.21, "grams"),
  10638. name: "Front",
  10639. image: {
  10640. source: "./media/characters/talbot/front.svg",
  10641. extra: 594 / 544
  10642. }
  10643. },
  10644. },
  10645. [
  10646. {
  10647. name: "Micro",
  10648. height: math.unit(1, "inch"),
  10649. default: true
  10650. },
  10651. ]
  10652. ))
  10653. characterMakers.push(() => makeCharacter(
  10654. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10655. {
  10656. front: {
  10657. height: math.unit(3 + 3 / 12, "feet"),
  10658. weight: math.unit(51.8, "lb"),
  10659. name: "Front",
  10660. image: {
  10661. source: "./media/characters/fliss/front.svg",
  10662. extra: 840 / 640
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Teeny Tiny",
  10669. height: math.unit(1, "mm")
  10670. },
  10671. {
  10672. name: "Small",
  10673. height: math.unit(1, "inch"),
  10674. default: true
  10675. },
  10676. {
  10677. name: "Standard Sylveon",
  10678. height: math.unit(3 + 3 / 12, "feet")
  10679. },
  10680. {
  10681. name: "Large Nuisance",
  10682. height: math.unit(33, "feet")
  10683. },
  10684. {
  10685. name: "City Filler",
  10686. height: math.unit(3000, "feet")
  10687. },
  10688. {
  10689. name: "New Horizon",
  10690. height: math.unit(6000, "miles")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10696. {
  10697. front: {
  10698. height: math.unit(5, "cm"),
  10699. weight: math.unit(1.94, "g"),
  10700. name: "Front",
  10701. image: {
  10702. source: "./media/characters/fleta/front.svg",
  10703. extra: 835 / 803
  10704. }
  10705. },
  10706. back: {
  10707. height: math.unit(5, "cm"),
  10708. weight: math.unit(1.94, "g"),
  10709. name: "Back",
  10710. image: {
  10711. source: "./media/characters/fleta/back.svg",
  10712. extra: 835 / 803
  10713. }
  10714. },
  10715. },
  10716. [
  10717. {
  10718. name: "Micro",
  10719. height: math.unit(5, "cm"),
  10720. default: true
  10721. },
  10722. ]
  10723. ))
  10724. characterMakers.push(() => makeCharacter(
  10725. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10726. {
  10727. front: {
  10728. height: math.unit(6, "feet"),
  10729. weight: math.unit(225, "lb"),
  10730. name: "Front",
  10731. image: {
  10732. source: "./media/characters/dominic/front.svg",
  10733. extra: 1770 / 1620,
  10734. bottom: 0.025
  10735. }
  10736. },
  10737. back: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(225, "lb"),
  10740. name: "Back",
  10741. image: {
  10742. source: "./media/characters/dominic/back.svg",
  10743. extra: 1745 / 1620,
  10744. bottom: 0.065
  10745. }
  10746. },
  10747. },
  10748. [
  10749. {
  10750. name: "Nano",
  10751. height: math.unit(0.1, "mm")
  10752. },
  10753. {
  10754. name: "Micro-",
  10755. height: math.unit(1, "mm")
  10756. },
  10757. {
  10758. name: "Micro",
  10759. height: math.unit(4, "inches")
  10760. },
  10761. {
  10762. name: "Normal",
  10763. height: math.unit(6 + 4 / 12, "feet"),
  10764. default: true
  10765. },
  10766. {
  10767. name: "Macro",
  10768. height: math.unit(115, "feet")
  10769. },
  10770. {
  10771. name: "Macro+",
  10772. height: math.unit(955, "feet")
  10773. },
  10774. {
  10775. name: "Megamacro",
  10776. height: math.unit(8990, "feet")
  10777. },
  10778. {
  10779. name: "Gigmacro",
  10780. height: math.unit(9310, "miles")
  10781. },
  10782. {
  10783. name: "Teramacro",
  10784. height: math.unit(1567005010, "miles")
  10785. },
  10786. {
  10787. name: "Examacro",
  10788. height: math.unit(1425, "parsecs")
  10789. },
  10790. ]
  10791. ))
  10792. characterMakers.push(() => makeCharacter(
  10793. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10794. {
  10795. front: {
  10796. height: math.unit(400, "feet"),
  10797. weight: math.unit(44444444, "lb"),
  10798. name: "Front",
  10799. image: {
  10800. source: "./media/characters/major-colonel/front.svg"
  10801. }
  10802. },
  10803. back: {
  10804. height: math.unit(400, "feet"),
  10805. weight: math.unit(44444444, "lb"),
  10806. name: "Back",
  10807. image: {
  10808. source: "./media/characters/major-colonel/back.svg"
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Macro",
  10815. height: math.unit(400, "feet"),
  10816. default: true
  10817. },
  10818. ]
  10819. ))
  10820. characterMakers.push(() => makeCharacter(
  10821. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10822. {
  10823. catFront: {
  10824. height: math.unit(6, "feet"),
  10825. weight: math.unit(120, "lb"),
  10826. name: "Front (Cat Side)",
  10827. image: {
  10828. source: "./media/characters/axel-lycan/cat-front.svg",
  10829. extra: 430 / 402,
  10830. bottom: 43 / 472.35
  10831. }
  10832. },
  10833. catBack: {
  10834. height: math.unit(6, "feet"),
  10835. weight: math.unit(120, "lb"),
  10836. name: "Back (Cat Side)",
  10837. image: {
  10838. source: "./media/characters/axel-lycan/cat-back.svg",
  10839. extra: 447 / 419,
  10840. bottom: 23.3 / 469
  10841. }
  10842. },
  10843. wolfFront: {
  10844. height: math.unit(6, "feet"),
  10845. weight: math.unit(120, "lb"),
  10846. name: "Front (Wolf Side)",
  10847. image: {
  10848. source: "./media/characters/axel-lycan/wolf-front.svg",
  10849. extra: 485 / 456,
  10850. bottom: 19 / 504
  10851. }
  10852. },
  10853. wolfBack: {
  10854. height: math.unit(6, "feet"),
  10855. weight: math.unit(120, "lb"),
  10856. name: "Back (Wolf Side)",
  10857. image: {
  10858. source: "./media/characters/axel-lycan/wolf-back.svg",
  10859. extra: 475 / 438,
  10860. bottom: 39.2 / 514
  10861. }
  10862. },
  10863. },
  10864. [
  10865. {
  10866. name: "Macro",
  10867. height: math.unit(1, "km"),
  10868. default: true
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10874. {
  10875. front: {
  10876. height: math.unit(5 + 9 / 12, "feet"),
  10877. weight: math.unit(175, "lb"),
  10878. name: "Front",
  10879. image: {
  10880. source: "./media/characters/vanrel-hyena/front.svg",
  10881. extra: 1086 / 1010,
  10882. bottom: 0.04
  10883. }
  10884. },
  10885. },
  10886. [
  10887. {
  10888. name: "Normal",
  10889. height: math.unit(5 + 9 / 12, "feet"),
  10890. default: true
  10891. },
  10892. ]
  10893. ))
  10894. characterMakers.push(() => makeCharacter(
  10895. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10896. {
  10897. front: {
  10898. height: math.unit(6, "feet"),
  10899. weight: math.unit(103, "lb"),
  10900. name: "Front",
  10901. image: {
  10902. source: "./media/characters/abbott-absol/front.svg",
  10903. extra: 2010 / 1842
  10904. }
  10905. },
  10906. },
  10907. [
  10908. {
  10909. name: "Megamicro",
  10910. height: math.unit(0.1, "mm")
  10911. },
  10912. {
  10913. name: "Micro",
  10914. height: math.unit(1, "inch")
  10915. },
  10916. {
  10917. name: "Normal",
  10918. height: math.unit(6, "feet"),
  10919. default: true
  10920. },
  10921. ]
  10922. ))
  10923. characterMakers.push(() => makeCharacter(
  10924. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10925. {
  10926. front: {
  10927. height: math.unit(6, "feet"),
  10928. weight: math.unit(264, "lb"),
  10929. name: "Front",
  10930. image: {
  10931. source: "./media/characters/hector/front.svg",
  10932. extra: 2280 / 2130,
  10933. bottom: 0.07
  10934. }
  10935. },
  10936. },
  10937. [
  10938. {
  10939. name: "Normal",
  10940. height: math.unit(12.25, "foot"),
  10941. default: true
  10942. },
  10943. {
  10944. name: "Macro",
  10945. height: math.unit(160, "feet")
  10946. },
  10947. ]
  10948. ))
  10949. characterMakers.push(() => makeCharacter(
  10950. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  10951. {
  10952. front: {
  10953. height: math.unit(6, "feet"),
  10954. weight: math.unit(150, "lb"),
  10955. name: "Front",
  10956. image: {
  10957. source: "./media/characters/sal/front.svg",
  10958. extra: 1846 / 1699,
  10959. bottom: 0.04
  10960. }
  10961. },
  10962. },
  10963. [
  10964. {
  10965. name: "Megamacro",
  10966. height: math.unit(10, "miles"),
  10967. default: true
  10968. },
  10969. ]
  10970. ))
  10971. characterMakers.push(() => makeCharacter(
  10972. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  10973. {
  10974. front: {
  10975. height: math.unit(3, "meters"),
  10976. weight: math.unit(450, "kg"),
  10977. name: "front",
  10978. image: {
  10979. source: "./media/characters/ranger/front.svg",
  10980. extra: 2401 / 2243,
  10981. bottom: 0.05
  10982. }
  10983. },
  10984. },
  10985. [
  10986. {
  10987. name: "Normal",
  10988. height: math.unit(3, "meters"),
  10989. default: true
  10990. },
  10991. ]
  10992. ))
  10993. characterMakers.push(() => makeCharacter(
  10994. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  10995. {
  10996. front: {
  10997. height: math.unit(14, "feet"),
  10998. weight: math.unit(800, "kg"),
  10999. name: "Front",
  11000. image: {
  11001. source: "./media/characters/theresa/front.svg",
  11002. extra: 3575 / 3346,
  11003. bottom: 0.03
  11004. }
  11005. },
  11006. },
  11007. [
  11008. {
  11009. name: "Normal",
  11010. height: math.unit(14, "feet"),
  11011. default: true
  11012. },
  11013. ]
  11014. ))
  11015. characterMakers.push(() => makeCharacter(
  11016. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11017. {
  11018. front: {
  11019. height: math.unit(6, "feet"),
  11020. weight: math.unit(3, "kg"),
  11021. name: "Front",
  11022. image: {
  11023. source: "./media/characters/ine/front.svg",
  11024. extra: 678 / 539,
  11025. bottom: 0.023
  11026. }
  11027. },
  11028. },
  11029. [
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(2.265, "feet"),
  11033. default: true
  11034. },
  11035. ]
  11036. ))
  11037. characterMakers.push(() => makeCharacter(
  11038. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11039. {
  11040. front: {
  11041. height: math.unit(5, "feet"),
  11042. weight: math.unit(30, "kg"),
  11043. name: "Front",
  11044. image: {
  11045. source: "./media/characters/vial/front.svg",
  11046. extra: 1365 / 1277,
  11047. bottom: 0.04
  11048. }
  11049. },
  11050. },
  11051. [
  11052. {
  11053. name: "Normal",
  11054. height: math.unit(5, "feet"),
  11055. default: true
  11056. },
  11057. ]
  11058. ))
  11059. characterMakers.push(() => makeCharacter(
  11060. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11061. {
  11062. side: {
  11063. height: math.unit(3.4, "meters"),
  11064. weight: math.unit(1000, "lb"),
  11065. name: "Side",
  11066. image: {
  11067. source: "./media/characters/rovoska/side.svg",
  11068. extra: 4403 / 1515
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Normal",
  11075. height: math.unit(3.4, "meters"),
  11076. default: true
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11082. {
  11083. front: {
  11084. height: math.unit(8, "feet"),
  11085. weight: math.unit(315, "lb"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/gunner-rotthbauer/front.svg"
  11089. }
  11090. },
  11091. back: {
  11092. height: math.unit(8, "feet"),
  11093. weight: math.unit(315, "lb"),
  11094. name: "Back",
  11095. image: {
  11096. source: "./media/characters/gunner-rotthbauer/back.svg"
  11097. }
  11098. },
  11099. },
  11100. [
  11101. {
  11102. name: "Micro",
  11103. height: math.unit(3.5, "inches")
  11104. },
  11105. {
  11106. name: "Normal",
  11107. height: math.unit(8, "feet"),
  11108. default: true
  11109. },
  11110. {
  11111. name: "Macro",
  11112. height: math.unit(250, "feet")
  11113. },
  11114. {
  11115. name: "Megamacro",
  11116. height: math.unit(1, "AU")
  11117. },
  11118. ]
  11119. ))
  11120. characterMakers.push(() => makeCharacter(
  11121. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11122. {
  11123. front: {
  11124. height: math.unit(5 + 5 / 12, "feet"),
  11125. weight: math.unit(140, "lb"),
  11126. name: "Front",
  11127. image: {
  11128. source: "./media/characters/allatia/front.svg",
  11129. extra: 1227 / 1180,
  11130. bottom: 0.027
  11131. }
  11132. },
  11133. },
  11134. [
  11135. {
  11136. name: "Normal",
  11137. height: math.unit(5 + 5 / 12, "feet")
  11138. },
  11139. {
  11140. name: "Macro",
  11141. height: math.unit(250, "feet"),
  11142. default: true
  11143. },
  11144. {
  11145. name: "Megamacro",
  11146. height: math.unit(8, "miles")
  11147. }
  11148. ]
  11149. ))
  11150. characterMakers.push(() => makeCharacter(
  11151. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11152. {
  11153. front: {
  11154. height: math.unit(6, "feet"),
  11155. weight: math.unit(120, "lb"),
  11156. name: "Front",
  11157. image: {
  11158. source: "./media/characters/tene/front.svg",
  11159. extra: 814/750,
  11160. bottom: 36/850
  11161. }
  11162. },
  11163. stomping: {
  11164. height: math.unit(2.025, "meters"),
  11165. weight: math.unit(120, "lb"),
  11166. name: "Stomping",
  11167. image: {
  11168. source: "./media/characters/tene/stomping.svg",
  11169. extra: 885/821,
  11170. bottom: 15/900
  11171. }
  11172. },
  11173. sitting: {
  11174. height: math.unit(1, "meter"),
  11175. weight: math.unit(120, "lb"),
  11176. name: "Sitting",
  11177. image: {
  11178. source: "./media/characters/tene/sitting.svg",
  11179. extra: 396/366,
  11180. bottom: 79/475
  11181. }
  11182. },
  11183. smiling: {
  11184. height: math.unit(1.2, "feet"),
  11185. name: "Smiling",
  11186. image: {
  11187. source: "./media/characters/tene/smiling.svg",
  11188. extra: 1364/1071,
  11189. bottom: 0/1364
  11190. }
  11191. },
  11192. smug: {
  11193. height: math.unit(1.3, "feet"),
  11194. name: "Smug",
  11195. image: {
  11196. source: "./media/characters/tene/smug.svg",
  11197. extra: 1323/1082,
  11198. bottom: 0/1323
  11199. }
  11200. },
  11201. feral: {
  11202. height: math.unit(3.9, "feet"),
  11203. weight: math.unit(250, "lb"),
  11204. name: "Feral",
  11205. image: {
  11206. source: "./media/characters/tene/feral.svg",
  11207. extra: 717 / 458,
  11208. bottom: 0.179
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(6, "feet")
  11216. },
  11217. {
  11218. name: "Macro",
  11219. height: math.unit(300, "feet"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Megamacro",
  11224. height: math.unit(5, "miles")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11230. {
  11231. side: {
  11232. height: math.unit(6, "feet"),
  11233. name: "Side",
  11234. image: {
  11235. source: "./media/characters/evander/side.svg",
  11236. extra: 877 / 477
  11237. }
  11238. },
  11239. },
  11240. [
  11241. {
  11242. name: "Normal",
  11243. height: math.unit(0.83, "meters"),
  11244. default: true
  11245. },
  11246. ]
  11247. ))
  11248. characterMakers.push(() => makeCharacter(
  11249. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11250. {
  11251. front: {
  11252. height: math.unit(12, "feet"),
  11253. weight: math.unit(1000, "lb"),
  11254. name: "Front",
  11255. image: {
  11256. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11257. extra: 1762 / 1611
  11258. }
  11259. },
  11260. back: {
  11261. height: math.unit(12, "feet"),
  11262. weight: math.unit(1000, "lb"),
  11263. name: "Back",
  11264. image: {
  11265. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11266. extra: 1762 / 1611
  11267. }
  11268. },
  11269. },
  11270. [
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(12, "feet"),
  11274. default: true
  11275. },
  11276. {
  11277. name: "Kaiju",
  11278. height: math.unit(150, "feet")
  11279. },
  11280. ]
  11281. ))
  11282. characterMakers.push(() => makeCharacter(
  11283. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11284. {
  11285. front: {
  11286. height: math.unit(6, "feet"),
  11287. weight: math.unit(150, "lb"),
  11288. name: "Front",
  11289. image: {
  11290. source: "./media/characters/zero-alurus/front.svg"
  11291. }
  11292. },
  11293. back: {
  11294. height: math.unit(6, "feet"),
  11295. weight: math.unit(150, "lb"),
  11296. name: "Back",
  11297. image: {
  11298. source: "./media/characters/zero-alurus/back.svg"
  11299. }
  11300. },
  11301. },
  11302. [
  11303. {
  11304. name: "Normal",
  11305. height: math.unit(5 + 10 / 12, "feet")
  11306. },
  11307. {
  11308. name: "Macro",
  11309. height: math.unit(60, "feet"),
  11310. default: true
  11311. },
  11312. {
  11313. name: "Macro+",
  11314. height: math.unit(450, "feet")
  11315. },
  11316. ]
  11317. ))
  11318. characterMakers.push(() => makeCharacter(
  11319. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11320. {
  11321. front: {
  11322. height: math.unit(6, "feet"),
  11323. weight: math.unit(200, "lb"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/mega-shi/front.svg",
  11327. extra: 1279 / 1250,
  11328. bottom: 0.02
  11329. }
  11330. },
  11331. back: {
  11332. height: math.unit(6, "feet"),
  11333. weight: math.unit(200, "lb"),
  11334. name: "Back",
  11335. image: {
  11336. source: "./media/characters/mega-shi/back.svg",
  11337. extra: 1279 / 1250,
  11338. bottom: 0.02
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Micro",
  11345. height: math.unit(16 + 6 / 12, "feet")
  11346. },
  11347. {
  11348. name: "Third Dimension",
  11349. height: math.unit(40, "meters")
  11350. },
  11351. {
  11352. name: "Normal",
  11353. height: math.unit(660, "feet"),
  11354. default: true
  11355. },
  11356. {
  11357. name: "Megamacro",
  11358. height: math.unit(10, "miles")
  11359. },
  11360. {
  11361. name: "Planetary Launch",
  11362. height: math.unit(500, "miles")
  11363. },
  11364. {
  11365. name: "Interstellar",
  11366. height: math.unit(1e9, "miles")
  11367. },
  11368. {
  11369. name: "Leaving the Universe",
  11370. height: math.unit(1, "gigaparsec")
  11371. },
  11372. {
  11373. name: "Travelling Universes",
  11374. height: math.unit(30e15, "parsecs")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11380. {
  11381. front: {
  11382. height: math.unit(5 + 4/12, "feet"),
  11383. weight: math.unit(120, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/odyssey/front.svg",
  11387. extra: 1747/1571,
  11388. bottom: 47/1794
  11389. }
  11390. },
  11391. side: {
  11392. height: math.unit(5.1, "feet"),
  11393. weight: math.unit(120, "lb"),
  11394. name: "Side",
  11395. image: {
  11396. source: "./media/characters/odyssey/side.svg",
  11397. extra: 1847/1619,
  11398. bottom: 47/1894
  11399. }
  11400. },
  11401. lounging: {
  11402. height: math.unit(1.464, "feet"),
  11403. weight: math.unit(120, "lb"),
  11404. name: "Lounging",
  11405. image: {
  11406. source: "./media/characters/odyssey/lounging.svg",
  11407. extra: 1235/837,
  11408. bottom: 551/1786
  11409. }
  11410. },
  11411. },
  11412. [
  11413. {
  11414. name: "Normal",
  11415. height: math.unit(5 + 4 / 12, "feet")
  11416. },
  11417. {
  11418. name: "Macro",
  11419. height: math.unit(1, "km")
  11420. },
  11421. {
  11422. name: "Megamacro",
  11423. height: math.unit(3000, "km")
  11424. },
  11425. {
  11426. name: "Gigamacro",
  11427. height: math.unit(1, "AU"),
  11428. default: true
  11429. },
  11430. {
  11431. name: "Omniversal",
  11432. height: math.unit(100e14, "lightyears")
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(5 + 10/12, "feet"),
  11441. name: "Front",
  11442. image: {
  11443. source: "./media/characters/mekuto/front.svg",
  11444. extra: 875/835,
  11445. bottom: 46/921
  11446. }
  11447. },
  11448. },
  11449. [
  11450. {
  11451. name: "Minimicro",
  11452. height: math.unit(0.2, "inches")
  11453. },
  11454. {
  11455. name: "Micro",
  11456. height: math.unit(1.5, "inches")
  11457. },
  11458. {
  11459. name: "Normal",
  11460. height: math.unit(5 + 10 / 12, "feet"),
  11461. default: true
  11462. },
  11463. {
  11464. name: "Minimacro",
  11465. height: math.unit(17 + 9 / 12, "feet")
  11466. },
  11467. {
  11468. name: "Macro",
  11469. height: math.unit(177.5, "feet")
  11470. },
  11471. {
  11472. name: "Megamacro",
  11473. height: math.unit(152, "miles")
  11474. },
  11475. ]
  11476. ))
  11477. characterMakers.push(() => makeCharacter(
  11478. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11479. {
  11480. front: {
  11481. height: math.unit(6.5, "inches"),
  11482. weight: math.unit(13, "oz"),
  11483. name: "Front",
  11484. image: {
  11485. source: "./media/characters/dafydd-tomos/front.svg",
  11486. extra: 2990 / 2603,
  11487. bottom: 0.03
  11488. }
  11489. },
  11490. },
  11491. [
  11492. {
  11493. name: "Micro",
  11494. height: math.unit(6.5, "inches"),
  11495. default: true
  11496. },
  11497. ]
  11498. ))
  11499. characterMakers.push(() => makeCharacter(
  11500. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11501. {
  11502. front: {
  11503. height: math.unit(6, "feet"),
  11504. weight: math.unit(150, "lb"),
  11505. name: "Front",
  11506. image: {
  11507. source: "./media/characters/splinter/front.svg",
  11508. extra: 2990 / 2882,
  11509. bottom: 0.04
  11510. }
  11511. },
  11512. back: {
  11513. height: math.unit(6, "feet"),
  11514. weight: math.unit(150, "lb"),
  11515. name: "Back",
  11516. image: {
  11517. source: "./media/characters/splinter/back.svg",
  11518. extra: 2990 / 2882,
  11519. bottom: 0.04
  11520. }
  11521. },
  11522. },
  11523. [
  11524. {
  11525. name: "Normal",
  11526. height: math.unit(6, "feet")
  11527. },
  11528. {
  11529. name: "Macro",
  11530. height: math.unit(230, "meters"),
  11531. default: true
  11532. },
  11533. ]
  11534. ))
  11535. characterMakers.push(() => makeCharacter(
  11536. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11537. {
  11538. front: {
  11539. height: math.unit(4 + 10 / 12, "feet"),
  11540. weight: math.unit(480, "lb"),
  11541. name: "Front",
  11542. image: {
  11543. source: "./media/characters/snow-gabumon/front.svg",
  11544. extra: 1140 / 963,
  11545. bottom: 0.058
  11546. }
  11547. },
  11548. back: {
  11549. height: math.unit(4 + 10 / 12, "feet"),
  11550. weight: math.unit(480, "lb"),
  11551. name: "Back",
  11552. image: {
  11553. source: "./media/characters/snow-gabumon/back.svg",
  11554. extra: 1115 / 962,
  11555. bottom: 0.041
  11556. }
  11557. },
  11558. frontUndresed: {
  11559. height: math.unit(4 + 10 / 12, "feet"),
  11560. weight: math.unit(480, "lb"),
  11561. name: "Front (Undressed)",
  11562. image: {
  11563. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11564. extra: 1061 / 960,
  11565. bottom: 0.045
  11566. }
  11567. },
  11568. },
  11569. [
  11570. {
  11571. name: "Micro",
  11572. height: math.unit(1, "inch")
  11573. },
  11574. {
  11575. name: "Normal",
  11576. height: math.unit(4 + 10 / 12, "feet"),
  11577. default: true
  11578. },
  11579. {
  11580. name: "Macro",
  11581. height: math.unit(200, "feet")
  11582. },
  11583. {
  11584. name: "Megamacro",
  11585. height: math.unit(120, "miles")
  11586. },
  11587. {
  11588. name: "Gigamacro",
  11589. height: math.unit(9800, "miles")
  11590. },
  11591. ]
  11592. ))
  11593. characterMakers.push(() => makeCharacter(
  11594. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11595. {
  11596. front: {
  11597. height: math.unit(1.7, "meters"),
  11598. weight: math.unit(140, "lb"),
  11599. name: "Front",
  11600. image: {
  11601. source: "./media/characters/moody/front.svg",
  11602. extra: 3226 / 3007,
  11603. bottom: 0.087
  11604. }
  11605. },
  11606. },
  11607. [
  11608. {
  11609. name: "Micro",
  11610. height: math.unit(1, "mm")
  11611. },
  11612. {
  11613. name: "Normal",
  11614. height: math.unit(1.7, "meters"),
  11615. default: true
  11616. },
  11617. {
  11618. name: "Macro",
  11619. height: math.unit(80, "meters")
  11620. },
  11621. {
  11622. name: "Macro+",
  11623. height: math.unit(500, "meters")
  11624. },
  11625. ]
  11626. ))
  11627. characterMakers.push(() => makeCharacter(
  11628. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11629. {
  11630. front: {
  11631. height: math.unit(6, "feet"),
  11632. weight: math.unit(150, "lb"),
  11633. name: "Front",
  11634. image: {
  11635. source: "./media/characters/zyas/front.svg",
  11636. extra: 1180 / 1120,
  11637. bottom: 0.045
  11638. }
  11639. },
  11640. },
  11641. [
  11642. {
  11643. name: "Normal",
  11644. height: math.unit(10, "feet"),
  11645. default: true
  11646. },
  11647. {
  11648. name: "Macro",
  11649. height: math.unit(500, "feet")
  11650. },
  11651. {
  11652. name: "Megamacro",
  11653. height: math.unit(5, "miles")
  11654. },
  11655. {
  11656. name: "Teramacro",
  11657. height: math.unit(150000, "miles")
  11658. },
  11659. ]
  11660. ))
  11661. characterMakers.push(() => makeCharacter(
  11662. { name: "Cuon", species: ["border-collie"], 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/cuon/front.svg",
  11670. extra: 1390 / 1320,
  11671. bottom: 0.008
  11672. }
  11673. },
  11674. },
  11675. [
  11676. {
  11677. name: "Micro",
  11678. height: math.unit(3, "inches")
  11679. },
  11680. {
  11681. name: "Normal",
  11682. height: math.unit(18 + 9 / 12, "feet"),
  11683. default: true
  11684. },
  11685. {
  11686. name: "Macro",
  11687. height: math.unit(360, "feet")
  11688. },
  11689. {
  11690. name: "Megamacro",
  11691. height: math.unit(360, "miles")
  11692. },
  11693. ]
  11694. ))
  11695. characterMakers.push(() => makeCharacter(
  11696. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11697. {
  11698. front: {
  11699. height: math.unit(2.4, "meters"),
  11700. weight: math.unit(70, "kg"),
  11701. name: "Front",
  11702. image: {
  11703. source: "./media/characters/nyanuxk/front.svg",
  11704. extra: 1172 / 1084,
  11705. bottom: 0.065
  11706. }
  11707. },
  11708. side: {
  11709. height: math.unit(2.4, "meters"),
  11710. weight: math.unit(70, "kg"),
  11711. name: "Side",
  11712. image: {
  11713. source: "./media/characters/nyanuxk/side.svg",
  11714. extra: 1190 / 1132,
  11715. bottom: 0.007
  11716. }
  11717. },
  11718. back: {
  11719. height: math.unit(2.4, "meters"),
  11720. weight: math.unit(70, "kg"),
  11721. name: "Back",
  11722. image: {
  11723. source: "./media/characters/nyanuxk/back.svg",
  11724. extra: 1200 / 1141,
  11725. bottom: 0.015
  11726. }
  11727. },
  11728. foot: {
  11729. height: math.unit(0.52, "meters"),
  11730. name: "Foot",
  11731. image: {
  11732. source: "./media/characters/nyanuxk/foot.svg"
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Micro",
  11739. height: math.unit(2, "cm")
  11740. },
  11741. {
  11742. name: "Normal",
  11743. height: math.unit(2.4, "meters"),
  11744. default: true
  11745. },
  11746. {
  11747. name: "Smaller Macro",
  11748. height: math.unit(120, "meters")
  11749. },
  11750. {
  11751. name: "Bigger Macro",
  11752. height: math.unit(1.2, "km")
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(15, "kilometers")
  11757. },
  11758. {
  11759. name: "Gigamacro",
  11760. height: math.unit(2000, "km")
  11761. },
  11762. {
  11763. name: "Teramacro",
  11764. height: math.unit(500000, "km")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11770. {
  11771. side: {
  11772. height: math.unit(6, "feet"),
  11773. name: "Side",
  11774. image: {
  11775. source: "./media/characters/ailbhe/side.svg",
  11776. extra: 757 / 464,
  11777. bottom: 0.041
  11778. }
  11779. },
  11780. },
  11781. [
  11782. {
  11783. name: "Normal",
  11784. height: math.unit(1.07, "meters"),
  11785. default: true
  11786. },
  11787. ]
  11788. ))
  11789. characterMakers.push(() => makeCharacter(
  11790. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11791. {
  11792. front: {
  11793. height: math.unit(6, "feet"),
  11794. weight: math.unit(120, "kg"),
  11795. name: "Front",
  11796. image: {
  11797. source: "./media/characters/zevulfius/front.svg",
  11798. extra: 965 / 903
  11799. }
  11800. },
  11801. side: {
  11802. height: math.unit(6, "feet"),
  11803. weight: math.unit(120, "kg"),
  11804. name: "Side",
  11805. image: {
  11806. source: "./media/characters/zevulfius/side.svg",
  11807. extra: 939 / 900
  11808. }
  11809. },
  11810. back: {
  11811. height: math.unit(6, "feet"),
  11812. weight: math.unit(120, "kg"),
  11813. name: "Back",
  11814. image: {
  11815. source: "./media/characters/zevulfius/back.svg",
  11816. extra: 918 / 854,
  11817. bottom: 0.005
  11818. }
  11819. },
  11820. foot: {
  11821. height: math.unit(6 / 3.72, "feet"),
  11822. name: "Foot",
  11823. image: {
  11824. source: "./media/characters/zevulfius/foot.svg"
  11825. }
  11826. },
  11827. },
  11828. [
  11829. {
  11830. name: "Macro",
  11831. height: math.unit(750, "meters")
  11832. },
  11833. {
  11834. name: "Megamacro",
  11835. height: math.unit(20, "km"),
  11836. default: true
  11837. },
  11838. {
  11839. name: "Gigamacro",
  11840. height: math.unit(2000, "km")
  11841. },
  11842. {
  11843. name: "Teramacro",
  11844. height: math.unit(250000, "km")
  11845. },
  11846. ]
  11847. ))
  11848. characterMakers.push(() => makeCharacter(
  11849. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11850. {
  11851. front: {
  11852. height: math.unit(100, "feet"),
  11853. weight: math.unit(350, "kg"),
  11854. name: "Front",
  11855. image: {
  11856. source: "./media/characters/rikes/front.svg",
  11857. extra: 1565 / 1483,
  11858. bottom: 0.017
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Macro",
  11865. height: math.unit(100, "feet"),
  11866. default: true
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(8, "feet"),
  11875. weight: math.unit(356, "lb"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/adam-silver-mane/front.svg",
  11879. extra: 1036/937,
  11880. bottom: 63/1099
  11881. }
  11882. },
  11883. side: {
  11884. height: math.unit(8, "feet"),
  11885. weight: math.unit(356, "lb"),
  11886. name: "Side",
  11887. image: {
  11888. source: "./media/characters/adam-silver-mane/side.svg",
  11889. extra: 997/901,
  11890. bottom: 59/1056
  11891. }
  11892. },
  11893. frontNsfw: {
  11894. height: math.unit(8, "feet"),
  11895. weight: math.unit(356, "lb"),
  11896. name: "Front (NSFW)",
  11897. image: {
  11898. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11899. extra: 1036/937,
  11900. bottom: 63/1099
  11901. }
  11902. },
  11903. sideNsfw: {
  11904. height: math.unit(8, "feet"),
  11905. weight: math.unit(356, "lb"),
  11906. name: "Side (NSFW)",
  11907. image: {
  11908. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11909. extra: 997/901,
  11910. bottom: 59/1056
  11911. }
  11912. },
  11913. dick: {
  11914. height: math.unit(2.1, "feet"),
  11915. name: "Dick",
  11916. image: {
  11917. source: "./media/characters/adam-silver-mane/dick.svg"
  11918. }
  11919. },
  11920. taur: {
  11921. height: math.unit(16, "feet"),
  11922. weight: math.unit(1500, "kg"),
  11923. name: "Taur",
  11924. image: {
  11925. source: "./media/characters/adam-silver-mane/taur.svg",
  11926. extra: 1713 / 1571,
  11927. bottom: 0.01
  11928. }
  11929. },
  11930. },
  11931. [
  11932. {
  11933. name: "Normal",
  11934. height: math.unit(8, "feet")
  11935. },
  11936. {
  11937. name: "Minimacro",
  11938. height: math.unit(80, "feet")
  11939. },
  11940. {
  11941. name: "MDA",
  11942. height: math.unit(80, "meters")
  11943. },
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(800, "feet"),
  11947. default: true
  11948. },
  11949. {
  11950. name: "Megamacro",
  11951. height: math.unit(8000, "feet")
  11952. },
  11953. {
  11954. name: "Gigamacro",
  11955. height: math.unit(800, "miles")
  11956. },
  11957. {
  11958. name: "Teramacro",
  11959. height: math.unit(80000, "miles")
  11960. },
  11961. {
  11962. name: "Celestial",
  11963. height: math.unit(8e6, "miles")
  11964. },
  11965. {
  11966. name: "Star Dragon",
  11967. height: math.unit(800000, "parsecs")
  11968. },
  11969. {
  11970. name: "Godly",
  11971. height: math.unit(800, "teraparsecs")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(6, "feet"),
  11980. weight: math.unit(150, "lb"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/ky'owin/front.svg",
  11984. extra: 3862/3053,
  11985. bottom: 74/3936
  11986. }
  11987. },
  11988. },
  11989. [
  11990. {
  11991. name: "Normal",
  11992. height: math.unit(6 + 8 / 12, "feet")
  11993. },
  11994. {
  11995. name: "Large",
  11996. height: math.unit(68, "feet")
  11997. },
  11998. {
  11999. name: "Macro",
  12000. height: math.unit(132, "feet")
  12001. },
  12002. {
  12003. name: "Macro+",
  12004. height: math.unit(340, "feet")
  12005. },
  12006. {
  12007. name: "Macro++",
  12008. height: math.unit(680, "feet"),
  12009. default: true
  12010. },
  12011. {
  12012. name: "Megamacro",
  12013. height: math.unit(1, "mile")
  12014. },
  12015. {
  12016. name: "Megamacro+",
  12017. height: math.unit(10, "miles")
  12018. },
  12019. ]
  12020. ))
  12021. characterMakers.push(() => makeCharacter(
  12022. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12023. {
  12024. front: {
  12025. height: math.unit(4, "feet"),
  12026. weight: math.unit(50, "lb"),
  12027. name: "Front",
  12028. image: {
  12029. source: "./media/characters/mal/front.svg",
  12030. extra: 785 / 724,
  12031. bottom: 0.07
  12032. }
  12033. },
  12034. },
  12035. [
  12036. {
  12037. name: "Micro",
  12038. height: math.unit(4, "inches")
  12039. },
  12040. {
  12041. name: "Normal",
  12042. height: math.unit(4, "feet"),
  12043. default: true
  12044. },
  12045. {
  12046. name: "Macro",
  12047. height: math.unit(200, "feet")
  12048. },
  12049. ]
  12050. ))
  12051. characterMakers.push(() => makeCharacter(
  12052. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12053. {
  12054. front: {
  12055. height: math.unit(6, "feet"),
  12056. weight: math.unit(150, "lb"),
  12057. name: "Front",
  12058. image: {
  12059. source: "./media/characters/jordan-deware/front.svg",
  12060. extra: 1191 / 1012
  12061. }
  12062. },
  12063. },
  12064. [
  12065. {
  12066. name: "Nano",
  12067. height: math.unit(0.01, "mm")
  12068. },
  12069. {
  12070. name: "Minimicro",
  12071. height: math.unit(1, "mm")
  12072. },
  12073. {
  12074. name: "Micro",
  12075. height: math.unit(0.5, "inches")
  12076. },
  12077. {
  12078. name: "Normal",
  12079. height: math.unit(4, "feet"),
  12080. default: true
  12081. },
  12082. {
  12083. name: "Minimacro",
  12084. height: math.unit(40, "meters")
  12085. },
  12086. {
  12087. name: "Small Macro",
  12088. height: math.unit(400, "meters")
  12089. },
  12090. {
  12091. name: "Macro",
  12092. height: math.unit(4, "miles")
  12093. },
  12094. {
  12095. name: "Megamacro",
  12096. height: math.unit(40, "miles")
  12097. },
  12098. {
  12099. name: "Megamacro+",
  12100. height: math.unit(400, "miles")
  12101. },
  12102. {
  12103. name: "Gigamacro",
  12104. height: math.unit(400000, "miles")
  12105. },
  12106. ]
  12107. ))
  12108. characterMakers.push(() => makeCharacter(
  12109. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12110. {
  12111. side: {
  12112. height: math.unit(6, "feet"),
  12113. weight: math.unit(150, "lb"),
  12114. name: "Side",
  12115. image: {
  12116. source: "./media/characters/kimiko/side.svg",
  12117. extra: 600 / 358
  12118. }
  12119. },
  12120. },
  12121. [
  12122. {
  12123. name: "Normal",
  12124. height: math.unit(15, "feet"),
  12125. default: true
  12126. },
  12127. {
  12128. name: "Macro",
  12129. height: math.unit(220, "feet")
  12130. },
  12131. {
  12132. name: "Macro+",
  12133. height: math.unit(1450, "feet")
  12134. },
  12135. {
  12136. name: "Megamacro",
  12137. height: math.unit(11500, "feet")
  12138. },
  12139. {
  12140. name: "Gigamacro",
  12141. height: math.unit(9500, "miles")
  12142. },
  12143. {
  12144. name: "Teramacro",
  12145. height: math.unit(2208005005, "miles")
  12146. },
  12147. {
  12148. name: "Examacro",
  12149. height: math.unit(2750, "parsecs")
  12150. },
  12151. {
  12152. name: "Zettamacro",
  12153. height: math.unit(101500, "parsecs")
  12154. },
  12155. ]
  12156. ))
  12157. characterMakers.push(() => makeCharacter(
  12158. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12159. {
  12160. front: {
  12161. height: math.unit(6, "feet"),
  12162. weight: math.unit(70, "kg"),
  12163. name: "Front",
  12164. image: {
  12165. source: "./media/characters/andrew-sleepy/front.svg"
  12166. }
  12167. },
  12168. side: {
  12169. height: math.unit(6, "feet"),
  12170. weight: math.unit(70, "kg"),
  12171. name: "Side",
  12172. image: {
  12173. source: "./media/characters/andrew-sleepy/side.svg"
  12174. }
  12175. },
  12176. },
  12177. [
  12178. {
  12179. name: "Micro",
  12180. height: math.unit(1, "mm"),
  12181. default: true
  12182. },
  12183. ]
  12184. ))
  12185. characterMakers.push(() => makeCharacter(
  12186. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12187. {
  12188. front: {
  12189. height: math.unit(6, "feet"),
  12190. weight: math.unit(150, "lb"),
  12191. name: "Front",
  12192. image: {
  12193. source: "./media/characters/judio/front.svg",
  12194. extra: 1258 / 1110
  12195. }
  12196. },
  12197. },
  12198. [
  12199. {
  12200. name: "Normal",
  12201. height: math.unit(5 + 6 / 12, "feet")
  12202. },
  12203. {
  12204. name: "Macro",
  12205. height: math.unit(1000, "feet"),
  12206. default: true
  12207. },
  12208. {
  12209. name: "Megamacro",
  12210. height: math.unit(10, "miles")
  12211. },
  12212. ]
  12213. ))
  12214. characterMakers.push(() => makeCharacter(
  12215. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12216. {
  12217. frontDressed: {
  12218. height: math.unit(6, "feet"),
  12219. weight: math.unit(68, "kg"),
  12220. name: "Front (Dressed)",
  12221. image: {
  12222. source: "./media/characters/nomaxice/front-dressed.svg",
  12223. extra: 1137/824,
  12224. bottom: 74/1211
  12225. }
  12226. },
  12227. frontShorts: {
  12228. height: math.unit(6, "feet"),
  12229. weight: math.unit(68, "kg"),
  12230. name: "Front (Shorts)",
  12231. image: {
  12232. source: "./media/characters/nomaxice/front-shorts.svg",
  12233. extra: 1137/824,
  12234. bottom: 74/1211
  12235. }
  12236. },
  12237. back: {
  12238. height: math.unit(6, "feet"),
  12239. weight: math.unit(68, "kg"),
  12240. name: "Back",
  12241. image: {
  12242. source: "./media/characters/nomaxice/back.svg",
  12243. extra: 822/786,
  12244. bottom: 39/861
  12245. }
  12246. },
  12247. hand: {
  12248. height: math.unit(0.565, "feet"),
  12249. name: "Hand",
  12250. image: {
  12251. source: "./media/characters/nomaxice/hand.svg"
  12252. }
  12253. },
  12254. foot: {
  12255. height: math.unit(1, "feet"),
  12256. name: "Foot",
  12257. image: {
  12258. source: "./media/characters/nomaxice/foot.svg"
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Micro",
  12265. height: math.unit(8, "cm")
  12266. },
  12267. {
  12268. name: "Norm",
  12269. height: math.unit(1.82, "m")
  12270. },
  12271. {
  12272. name: "Norm+",
  12273. height: math.unit(8.8, "feet"),
  12274. default: true
  12275. },
  12276. {
  12277. name: "Big",
  12278. height: math.unit(8, "meters")
  12279. },
  12280. {
  12281. name: "Macro",
  12282. height: math.unit(18, "meters")
  12283. },
  12284. {
  12285. name: "Macro+",
  12286. height: math.unit(88, "meters")
  12287. },
  12288. ]
  12289. ))
  12290. characterMakers.push(() => makeCharacter(
  12291. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12292. {
  12293. front: {
  12294. height: math.unit(12, "feet"),
  12295. weight: math.unit(1.5, "tons"),
  12296. name: "Front",
  12297. image: {
  12298. source: "./media/characters/dydros/front.svg",
  12299. extra: 863 / 800,
  12300. bottom: 0.015
  12301. }
  12302. },
  12303. back: {
  12304. height: math.unit(12, "feet"),
  12305. weight: math.unit(1.5, "tons"),
  12306. name: "Back",
  12307. image: {
  12308. source: "./media/characters/dydros/back.svg",
  12309. extra: 900 / 843,
  12310. bottom: 0.005
  12311. }
  12312. },
  12313. },
  12314. [
  12315. {
  12316. name: "Normal",
  12317. height: math.unit(12, "feet"),
  12318. default: true
  12319. },
  12320. ]
  12321. ))
  12322. characterMakers.push(() => makeCharacter(
  12323. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12324. {
  12325. front: {
  12326. height: math.unit(6, "feet"),
  12327. weight: math.unit(100, "kg"),
  12328. name: "Front",
  12329. image: {
  12330. source: "./media/characters/riggi/front.svg",
  12331. extra: 5787 / 5303
  12332. }
  12333. },
  12334. hyper: {
  12335. height: math.unit(6 * 5 / 3, "feet"),
  12336. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12337. name: "Hyper",
  12338. image: {
  12339. source: "./media/characters/riggi/hyper.svg",
  12340. extra: 3595 / 3485
  12341. }
  12342. },
  12343. },
  12344. [
  12345. {
  12346. name: "Small Macro",
  12347. height: math.unit(50, "feet")
  12348. },
  12349. {
  12350. name: "Default",
  12351. height: math.unit(200, "feet"),
  12352. default: true
  12353. },
  12354. {
  12355. name: "Loom",
  12356. height: math.unit(10000, "feet")
  12357. },
  12358. {
  12359. name: "Cruising Altitude",
  12360. height: math.unit(30000, "feet")
  12361. },
  12362. {
  12363. name: "Megamacro",
  12364. height: math.unit(100, "miles")
  12365. },
  12366. {
  12367. name: "Continent Sized",
  12368. height: math.unit(2800, "miles")
  12369. },
  12370. {
  12371. name: "Earth Sized",
  12372. height: math.unit(8000, "miles")
  12373. },
  12374. ]
  12375. ))
  12376. characterMakers.push(() => makeCharacter(
  12377. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12378. {
  12379. front: {
  12380. height: math.unit(6, "feet"),
  12381. weight: math.unit(250, "lb"),
  12382. name: "Front",
  12383. image: {
  12384. source: "./media/characters/alexi/front.svg",
  12385. extra: 3483 / 3291,
  12386. bottom: 0.04
  12387. }
  12388. },
  12389. back: {
  12390. height: math.unit(6, "feet"),
  12391. weight: math.unit(250, "lb"),
  12392. name: "Back",
  12393. image: {
  12394. source: "./media/characters/alexi/back.svg",
  12395. extra: 3533 / 3356,
  12396. bottom: 0.021
  12397. }
  12398. },
  12399. frontTransforming: {
  12400. height: math.unit(8.58, "feet"),
  12401. weight: math.unit(1300, "lb"),
  12402. name: "Transforming",
  12403. image: {
  12404. source: "./media/characters/alexi/front-transforming.svg",
  12405. extra: 437 / 409,
  12406. bottom: 19 / 458.66
  12407. }
  12408. },
  12409. frontTransformed: {
  12410. height: math.unit(12.5, "feet"),
  12411. weight: math.unit(4000, "lb"),
  12412. name: "Transformed",
  12413. image: {
  12414. source: "./media/characters/alexi/front-transformed.svg",
  12415. extra: 639 / 614,
  12416. bottom: 30.55 / 671
  12417. }
  12418. },
  12419. },
  12420. [
  12421. {
  12422. name: "Normal",
  12423. height: math.unit(14, "feet"),
  12424. default: true
  12425. },
  12426. {
  12427. name: "Minimacro",
  12428. height: math.unit(30, "meters")
  12429. },
  12430. {
  12431. name: "Macro",
  12432. height: math.unit(500, "meters")
  12433. },
  12434. {
  12435. name: "Megamacro",
  12436. height: math.unit(9000, "km")
  12437. },
  12438. {
  12439. name: "Teramacro",
  12440. height: math.unit(384000, "km")
  12441. },
  12442. ]
  12443. ))
  12444. characterMakers.push(() => makeCharacter(
  12445. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12446. {
  12447. front: {
  12448. height: math.unit(6, "feet"),
  12449. weight: math.unit(150, "lb"),
  12450. name: "Front",
  12451. image: {
  12452. source: "./media/characters/kayroo/front.svg",
  12453. extra: 1153 / 1038,
  12454. bottom: 0.06
  12455. }
  12456. },
  12457. foot: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(150, "lb"),
  12460. name: "Foot",
  12461. image: {
  12462. source: "./media/characters/kayroo/foot.svg"
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Normal",
  12469. height: math.unit(8, "feet"),
  12470. default: true
  12471. },
  12472. {
  12473. name: "Minimacro",
  12474. height: math.unit(250, "feet")
  12475. },
  12476. {
  12477. name: "Macro",
  12478. height: math.unit(2800, "feet")
  12479. },
  12480. {
  12481. name: "Megamacro",
  12482. height: math.unit(5200, "feet")
  12483. },
  12484. {
  12485. name: "Gigamacro",
  12486. height: math.unit(27000, "feet")
  12487. },
  12488. {
  12489. name: "Omega",
  12490. height: math.unit(45000, "feet")
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12496. {
  12497. front: {
  12498. height: math.unit(18, "feet"),
  12499. weight: math.unit(5800, "lb"),
  12500. name: "Front",
  12501. image: {
  12502. source: "./media/characters/rhys/front.svg",
  12503. extra: 3386 / 3090,
  12504. bottom: 0.07
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Normal",
  12511. height: math.unit(18, "feet"),
  12512. default: true
  12513. },
  12514. {
  12515. name: "Working Size",
  12516. height: math.unit(200, "feet")
  12517. },
  12518. {
  12519. name: "Demolition Size",
  12520. height: math.unit(2000, "feet")
  12521. },
  12522. {
  12523. name: "Maximum Licensed Size",
  12524. height: math.unit(5, "miles")
  12525. },
  12526. {
  12527. name: "Maximum Observed Size",
  12528. height: math.unit(10, "yottameters")
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(250, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/toto/front.svg",
  12541. extra: 527 / 479,
  12542. bottom: 0.05
  12543. }
  12544. },
  12545. },
  12546. [
  12547. {
  12548. name: "Micro",
  12549. height: math.unit(3, "feet")
  12550. },
  12551. {
  12552. name: "Normal",
  12553. height: math.unit(10, "feet")
  12554. },
  12555. {
  12556. name: "Macro",
  12557. height: math.unit(150, "feet"),
  12558. default: true
  12559. },
  12560. {
  12561. name: "Megamacro",
  12562. height: math.unit(1200, "feet")
  12563. },
  12564. ]
  12565. ))
  12566. characterMakers.push(() => makeCharacter(
  12567. { name: "King", species: ["lion"], tags: ["anthro"] },
  12568. {
  12569. back: {
  12570. height: math.unit(6, "feet"),
  12571. weight: math.unit(150, "lb"),
  12572. name: "Back",
  12573. image: {
  12574. source: "./media/characters/king/back.svg"
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Micro",
  12581. height: math.unit(2, "inches")
  12582. },
  12583. {
  12584. name: "Normal",
  12585. height: math.unit(8, "feet")
  12586. },
  12587. {
  12588. name: "Macro",
  12589. height: math.unit(200, "feet"),
  12590. default: true
  12591. },
  12592. {
  12593. name: "Megamacro",
  12594. height: math.unit(50, "miles")
  12595. },
  12596. ]
  12597. ))
  12598. characterMakers.push(() => makeCharacter(
  12599. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12600. {
  12601. front: {
  12602. height: math.unit(11, "feet"),
  12603. weight: math.unit(1400, "lb"),
  12604. name: "Front",
  12605. image: {
  12606. source: "./media/characters/cordite/front.svg",
  12607. extra: 1919/1827,
  12608. bottom: 40/1959
  12609. }
  12610. },
  12611. side: {
  12612. height: math.unit(11, "feet"),
  12613. weight: math.unit(1400, "lb"),
  12614. name: "Side",
  12615. image: {
  12616. source: "./media/characters/cordite/side.svg",
  12617. extra: 1908/1793,
  12618. bottom: 38/1946
  12619. }
  12620. },
  12621. back: {
  12622. height: math.unit(11, "feet"),
  12623. weight: math.unit(1400, "lb"),
  12624. name: "Back",
  12625. image: {
  12626. source: "./media/characters/cordite/back.svg",
  12627. extra: 1938/1837,
  12628. bottom: 10/1948
  12629. }
  12630. },
  12631. feral: {
  12632. height: math.unit(2, "feet"),
  12633. weight: math.unit(90, "lb"),
  12634. name: "Feral",
  12635. image: {
  12636. source: "./media/characters/cordite/feral.svg",
  12637. extra: 1260 / 755,
  12638. bottom: 0.05
  12639. }
  12640. },
  12641. },
  12642. [
  12643. {
  12644. name: "Normal",
  12645. height: math.unit(11, "feet"),
  12646. default: true
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12652. {
  12653. front: {
  12654. height: math.unit(6, "feet"),
  12655. weight: math.unit(150, "lb"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/pianostrong/front.svg",
  12659. extra: 6577 / 6254,
  12660. bottom: 0.02
  12661. }
  12662. },
  12663. side: {
  12664. height: math.unit(6, "feet"),
  12665. weight: math.unit(150, "lb"),
  12666. name: "Side",
  12667. image: {
  12668. source: "./media/characters/pianostrong/side.svg",
  12669. extra: 6106 / 5730
  12670. }
  12671. },
  12672. back: {
  12673. height: math.unit(6, "feet"),
  12674. weight: math.unit(150, "lb"),
  12675. name: "Back",
  12676. image: {
  12677. source: "./media/characters/pianostrong/back.svg",
  12678. extra: 6085 / 5733,
  12679. bottom: 0.01
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Macro",
  12686. height: math.unit(100, "feet")
  12687. },
  12688. {
  12689. name: "Macro+",
  12690. height: math.unit(300, "feet"),
  12691. default: true
  12692. },
  12693. {
  12694. name: "Macro++",
  12695. height: math.unit(1000, "feet")
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(6, "feet"),
  12704. weight: math.unit(150, "lb"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/kona/front.svg",
  12708. extra: 2960 / 2629,
  12709. bottom: 0.005
  12710. }
  12711. },
  12712. },
  12713. [
  12714. {
  12715. name: "Normal",
  12716. height: math.unit(11 + 8 / 12, "feet")
  12717. },
  12718. {
  12719. name: "Macro",
  12720. height: math.unit(850, "feet"),
  12721. default: true
  12722. },
  12723. {
  12724. name: "Macro+",
  12725. height: math.unit(1.5, "km"),
  12726. default: true
  12727. },
  12728. {
  12729. name: "Megamacro",
  12730. height: math.unit(80, "miles")
  12731. },
  12732. {
  12733. name: "Gigamacro",
  12734. height: math.unit(3500, "miles")
  12735. },
  12736. ]
  12737. ))
  12738. characterMakers.push(() => makeCharacter(
  12739. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12740. {
  12741. side: {
  12742. height: math.unit(1.9, "meters"),
  12743. weight: math.unit(326, "kg"),
  12744. name: "Side",
  12745. image: {
  12746. source: "./media/characters/levi/side.svg",
  12747. extra: 1704 / 1334,
  12748. bottom: 0.02
  12749. }
  12750. },
  12751. },
  12752. [
  12753. {
  12754. name: "Normal",
  12755. height: math.unit(1.9, "meters"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Macro",
  12760. height: math.unit(20, "meters")
  12761. },
  12762. {
  12763. name: "Macro+",
  12764. height: math.unit(200, "meters")
  12765. },
  12766. {
  12767. name: "Megamacro",
  12768. height: math.unit(2, "km")
  12769. },
  12770. {
  12771. name: "Megamacro+",
  12772. height: math.unit(20, "km")
  12773. },
  12774. {
  12775. name: "Gigamacro",
  12776. height: math.unit(2500, "km")
  12777. },
  12778. {
  12779. name: "Gigamacro+",
  12780. height: math.unit(120000, "km")
  12781. },
  12782. {
  12783. name: "Teramacro",
  12784. height: math.unit(7.77e6, "km")
  12785. },
  12786. ]
  12787. ))
  12788. characterMakers.push(() => makeCharacter(
  12789. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12790. {
  12791. front: {
  12792. height: math.unit(6 + 4/12, "feet"),
  12793. weight: math.unit(190, "lb"),
  12794. name: "Front",
  12795. image: {
  12796. source: "./media/characters/bmc/front.svg",
  12797. extra: 1626/1472,
  12798. bottom: 79/1705
  12799. }
  12800. },
  12801. back: {
  12802. height: math.unit(6 + 4/12, "feet"),
  12803. weight: math.unit(190, "lb"),
  12804. name: "Back",
  12805. image: {
  12806. source: "./media/characters/bmc/back.svg",
  12807. extra: 1640/1479,
  12808. bottom: 45/1685
  12809. }
  12810. },
  12811. frontArmor: {
  12812. height: math.unit(6 + 4/12, "feet"),
  12813. weight: math.unit(190, "lb"),
  12814. name: "Front-armor",
  12815. image: {
  12816. source: "./media/characters/bmc/front-armor.svg",
  12817. extra: 1538/1468,
  12818. bottom: 79/1617
  12819. }
  12820. },
  12821. },
  12822. [
  12823. {
  12824. name: "Human-sized",
  12825. height: math.unit(6 + 4 / 12, "feet")
  12826. },
  12827. {
  12828. name: "Interactive Size",
  12829. height: math.unit(25, "feet")
  12830. },
  12831. {
  12832. name: "Small",
  12833. height: math.unit(250, "feet")
  12834. },
  12835. {
  12836. name: "Normal",
  12837. height: math.unit(1250, "feet"),
  12838. default: true
  12839. },
  12840. {
  12841. name: "Good Day",
  12842. height: math.unit(88, "miles")
  12843. },
  12844. {
  12845. name: "Largest Measured Size",
  12846. height: math.unit(105.960, "galaxies")
  12847. },
  12848. ]
  12849. ))
  12850. characterMakers.push(() => makeCharacter(
  12851. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12852. {
  12853. front: {
  12854. height: math.unit(20, "feet"),
  12855. weight: math.unit(2016, "kg"),
  12856. name: "Front",
  12857. image: {
  12858. source: "./media/characters/sven-the-kaiju/front.svg",
  12859. extra: 1277/1250,
  12860. bottom: 35/1312
  12861. }
  12862. },
  12863. mouth: {
  12864. height: math.unit(1.85, "feet"),
  12865. name: "Mouth",
  12866. image: {
  12867. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12868. }
  12869. },
  12870. },
  12871. [
  12872. {
  12873. name: "Fairy",
  12874. height: math.unit(6, "inches")
  12875. },
  12876. {
  12877. name: "Normal",
  12878. height: math.unit(20, "feet"),
  12879. default: true
  12880. },
  12881. {
  12882. name: "Rampage",
  12883. height: math.unit(200, "feet")
  12884. },
  12885. {
  12886. name: "Archfey Forest Guardian",
  12887. height: math.unit(1, "mile")
  12888. },
  12889. ]
  12890. ))
  12891. characterMakers.push(() => makeCharacter(
  12892. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12893. {
  12894. front: {
  12895. height: math.unit(4, "meters"),
  12896. weight: math.unit(2, "tons"),
  12897. name: "Front",
  12898. image: {
  12899. source: "./media/characters/marik/front.svg",
  12900. extra: 1057 / 1003,
  12901. bottom: 0.08
  12902. }
  12903. },
  12904. },
  12905. [
  12906. {
  12907. name: "Normal",
  12908. height: math.unit(4, "meters"),
  12909. default: true
  12910. },
  12911. {
  12912. name: "Macro",
  12913. height: math.unit(20, "meters")
  12914. },
  12915. {
  12916. name: "Megamacro",
  12917. height: math.unit(50, "km")
  12918. },
  12919. {
  12920. name: "Gigamacro",
  12921. height: math.unit(100, "km")
  12922. },
  12923. {
  12924. name: "Alpha Macro",
  12925. height: math.unit(7.88e7, "yottameters")
  12926. },
  12927. ]
  12928. ))
  12929. characterMakers.push(() => makeCharacter(
  12930. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12931. {
  12932. front: {
  12933. height: math.unit(6, "feet"),
  12934. weight: math.unit(110, "lb"),
  12935. name: "Front",
  12936. image: {
  12937. source: "./media/characters/mel/front.svg",
  12938. extra: 736 / 617,
  12939. bottom: 0.017
  12940. }
  12941. },
  12942. },
  12943. [
  12944. {
  12945. name: "Pico",
  12946. height: math.unit(3, "pm")
  12947. },
  12948. {
  12949. name: "Nano",
  12950. height: math.unit(3, "nm")
  12951. },
  12952. {
  12953. name: "Micro",
  12954. height: math.unit(0.3, "mm"),
  12955. default: true
  12956. },
  12957. {
  12958. name: "Micro+",
  12959. height: math.unit(3, "mm")
  12960. },
  12961. {
  12962. name: "Normal",
  12963. height: math.unit(5 + 10.5 / 12, "feet")
  12964. },
  12965. ]
  12966. ))
  12967. characterMakers.push(() => makeCharacter(
  12968. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  12969. {
  12970. kaiju: {
  12971. height: math.unit(1.75, "meters"),
  12972. weight: math.unit(55, "kg"),
  12973. name: "Kaiju",
  12974. image: {
  12975. source: "./media/characters/lykonous/kaiju.svg",
  12976. extra: 1055 / 946,
  12977. bottom: 0.135
  12978. }
  12979. },
  12980. },
  12981. [
  12982. {
  12983. name: "Normal",
  12984. height: math.unit(2.5, "meters"),
  12985. default: true
  12986. },
  12987. {
  12988. name: "Kaiju Dragon",
  12989. height: math.unit(60, "meters")
  12990. },
  12991. {
  12992. name: "Mega Kaiju",
  12993. height: math.unit(120, "km")
  12994. },
  12995. {
  12996. name: "Giga Kaiju",
  12997. height: math.unit(200, "megameters")
  12998. },
  12999. {
  13000. name: "Terra Kaiju",
  13001. height: math.unit(400, "gigameters")
  13002. },
  13003. {
  13004. name: "Kaiju Dragon God",
  13005. height: math.unit(13000, "exaparsecs")
  13006. },
  13007. ]
  13008. ))
  13009. characterMakers.push(() => makeCharacter(
  13010. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13011. {
  13012. front: {
  13013. height: math.unit(6, "feet"),
  13014. weight: math.unit(150, "lb"),
  13015. name: "Front",
  13016. image: {
  13017. source: "./media/characters/blü/front.svg",
  13018. extra: 1883 / 1564,
  13019. bottom: 0.031
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(13, "feet"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Big Boi",
  13031. height: math.unit(150, "meters")
  13032. },
  13033. {
  13034. name: "Mini Stomper",
  13035. height: math.unit(300, "meters")
  13036. },
  13037. {
  13038. name: "Macro",
  13039. height: math.unit(1000, "meters")
  13040. },
  13041. {
  13042. name: "Megamacro",
  13043. height: math.unit(11000, "meters")
  13044. },
  13045. {
  13046. name: "Gigamacro",
  13047. height: math.unit(11000, "km")
  13048. },
  13049. {
  13050. name: "Teramacro",
  13051. height: math.unit(420000, "km")
  13052. },
  13053. {
  13054. name: "Examacro",
  13055. height: math.unit(120, "parsecs")
  13056. },
  13057. {
  13058. name: "God Tho",
  13059. height: math.unit(98000000000, "parsecs")
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13065. {
  13066. taurFront: {
  13067. height: math.unit(6, "feet"),
  13068. weight: math.unit(200, "lb"),
  13069. name: "Taur (Front)",
  13070. image: {
  13071. source: "./media/characters/scales/taur-front.svg",
  13072. extra: 1,
  13073. bottom: 0.05
  13074. }
  13075. },
  13076. taurBack: {
  13077. height: math.unit(6, "feet"),
  13078. weight: math.unit(200, "lb"),
  13079. name: "Taur (Back)",
  13080. image: {
  13081. source: "./media/characters/scales/taur-back.svg",
  13082. extra: 1,
  13083. bottom: 0.08
  13084. }
  13085. },
  13086. anthro: {
  13087. height: math.unit(6 * 7 / 12, "feet"),
  13088. weight: math.unit(100, "lb"),
  13089. name: "Anthro",
  13090. image: {
  13091. source: "./media/characters/scales/anthro.svg",
  13092. extra: 1,
  13093. bottom: 0.06
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(12, "feet"),
  13101. default: true
  13102. },
  13103. ]
  13104. ))
  13105. characterMakers.push(() => makeCharacter(
  13106. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13107. {
  13108. front: {
  13109. height: math.unit(6, "feet"),
  13110. weight: math.unit(150, "lb"),
  13111. name: "Front",
  13112. image: {
  13113. source: "./media/characters/koragos/front.svg",
  13114. extra: 841 / 794,
  13115. bottom: 0.035
  13116. }
  13117. },
  13118. back: {
  13119. height: math.unit(6, "feet"),
  13120. weight: math.unit(150, "lb"),
  13121. name: "Back",
  13122. image: {
  13123. source: "./media/characters/koragos/back.svg",
  13124. extra: 841 / 810,
  13125. bottom: 0.022
  13126. }
  13127. },
  13128. },
  13129. [
  13130. {
  13131. name: "Normal",
  13132. height: math.unit(6 + 11 / 12, "feet"),
  13133. default: true
  13134. },
  13135. {
  13136. name: "Macro",
  13137. height: math.unit(490, "feet")
  13138. },
  13139. {
  13140. name: "Megamacro",
  13141. height: math.unit(10, "miles")
  13142. },
  13143. {
  13144. name: "Gigamacro",
  13145. height: math.unit(50, "miles")
  13146. },
  13147. ]
  13148. ))
  13149. characterMakers.push(() => makeCharacter(
  13150. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13151. {
  13152. front: {
  13153. height: math.unit(6, "feet"),
  13154. weight: math.unit(250, "lb"),
  13155. name: "Front",
  13156. image: {
  13157. source: "./media/characters/xylrem/front.svg",
  13158. extra: 3323 / 3050,
  13159. bottom: 0.065
  13160. }
  13161. },
  13162. },
  13163. [
  13164. {
  13165. name: "Micro",
  13166. height: math.unit(4, "feet")
  13167. },
  13168. {
  13169. name: "Normal",
  13170. height: math.unit(16, "feet"),
  13171. default: true
  13172. },
  13173. {
  13174. name: "Macro",
  13175. height: math.unit(2720, "feet")
  13176. },
  13177. {
  13178. name: "Megamacro",
  13179. height: math.unit(25000, "miles")
  13180. },
  13181. ]
  13182. ))
  13183. characterMakers.push(() => makeCharacter(
  13184. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13185. {
  13186. front: {
  13187. height: math.unit(8, "feet"),
  13188. weight: math.unit(250, "kg"),
  13189. name: "Front",
  13190. image: {
  13191. source: "./media/characters/ikideru/front.svg",
  13192. extra: 930 / 870,
  13193. bottom: 0.087
  13194. }
  13195. },
  13196. back: {
  13197. height: math.unit(8, "feet"),
  13198. weight: math.unit(250, "kg"),
  13199. name: "Back",
  13200. image: {
  13201. source: "./media/characters/ikideru/back.svg",
  13202. extra: 919 / 852,
  13203. bottom: 0.055
  13204. }
  13205. },
  13206. },
  13207. [
  13208. {
  13209. name: "Rare",
  13210. height: math.unit(8, "feet"),
  13211. default: true
  13212. },
  13213. {
  13214. name: "Playful Loom",
  13215. height: math.unit(80, "feet")
  13216. },
  13217. {
  13218. name: "City Leaner",
  13219. height: math.unit(230, "feet")
  13220. },
  13221. {
  13222. name: "Megamacro",
  13223. height: math.unit(2500, "feet")
  13224. },
  13225. {
  13226. name: "Gigamacro",
  13227. height: math.unit(26400, "feet")
  13228. },
  13229. {
  13230. name: "Tectonic Shifter",
  13231. height: math.unit(1.7, "megameters")
  13232. },
  13233. {
  13234. name: "Planet Carer",
  13235. height: math.unit(21, "megameters")
  13236. },
  13237. {
  13238. name: "God",
  13239. height: math.unit(11157.22, "parsecs")
  13240. },
  13241. ]
  13242. ))
  13243. characterMakers.push(() => makeCharacter(
  13244. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13245. {
  13246. front: {
  13247. height: math.unit(6, "feet"),
  13248. weight: math.unit(120, "lb"),
  13249. name: "Front",
  13250. image: {
  13251. source: "./media/characters/neo/front.svg"
  13252. }
  13253. },
  13254. },
  13255. [
  13256. {
  13257. name: "Micro",
  13258. height: math.unit(2, "inches"),
  13259. default: true
  13260. },
  13261. {
  13262. name: "Human Size",
  13263. height: math.unit(5 + 8 / 12, "feet")
  13264. },
  13265. ]
  13266. ))
  13267. characterMakers.push(() => makeCharacter(
  13268. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13269. {
  13270. front: {
  13271. height: math.unit(13 + 10 / 12, "feet"),
  13272. weight: math.unit(5320, "lb"),
  13273. name: "Front",
  13274. image: {
  13275. source: "./media/characters/chauncey-chantz/front.svg",
  13276. extra: 1587 / 1435,
  13277. bottom: 0.02
  13278. }
  13279. },
  13280. },
  13281. [
  13282. {
  13283. name: "Normal",
  13284. height: math.unit(13 + 10 / 12, "feet"),
  13285. default: true
  13286. },
  13287. {
  13288. name: "Macro",
  13289. height: math.unit(45, "feet")
  13290. },
  13291. {
  13292. name: "Megamacro",
  13293. height: math.unit(250, "miles")
  13294. },
  13295. {
  13296. name: "Planetary",
  13297. height: math.unit(10000, "miles")
  13298. },
  13299. {
  13300. name: "Galactic",
  13301. height: math.unit(40000, "parsecs")
  13302. },
  13303. {
  13304. name: "Universal",
  13305. height: math.unit(1, "yottameter")
  13306. },
  13307. ]
  13308. ))
  13309. characterMakers.push(() => makeCharacter(
  13310. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13311. {
  13312. front: {
  13313. height: math.unit(6, "feet"),
  13314. weight: math.unit(150, "lb"),
  13315. name: "Front",
  13316. image: {
  13317. source: "./media/characters/epifox/front.svg",
  13318. extra: 1,
  13319. bottom: 0.075
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Micro",
  13326. height: math.unit(6, "inches")
  13327. },
  13328. {
  13329. name: "Normal",
  13330. height: math.unit(12, "feet"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Macro",
  13335. height: math.unit(3810, "feet")
  13336. },
  13337. {
  13338. name: "Megamacro",
  13339. height: math.unit(500, "miles")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13345. {
  13346. front: {
  13347. height: math.unit(1.8796, "m"),
  13348. weight: math.unit(230, "lb"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/colin-t/front.svg",
  13352. extra: 1272 / 1193,
  13353. bottom: 0.07
  13354. }
  13355. },
  13356. },
  13357. [
  13358. {
  13359. name: "Micro",
  13360. height: math.unit(0.571, "meters")
  13361. },
  13362. {
  13363. name: "Normal",
  13364. height: math.unit(1.8796, "meters"),
  13365. default: true
  13366. },
  13367. {
  13368. name: "Tall",
  13369. height: math.unit(4, "meters")
  13370. },
  13371. {
  13372. name: "Macro",
  13373. height: math.unit(67.241, "meters")
  13374. },
  13375. {
  13376. name: "Megamacro",
  13377. height: math.unit(371.856, "meters")
  13378. },
  13379. {
  13380. name: "Planetary",
  13381. height: math.unit(12631.5689, "km")
  13382. },
  13383. ]
  13384. ))
  13385. characterMakers.push(() => makeCharacter(
  13386. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13387. {
  13388. front: {
  13389. height: math.unit(1.85, "meters"),
  13390. weight: math.unit(80, "kg"),
  13391. name: "Front",
  13392. image: {
  13393. source: "./media/characters/matvei/front.svg",
  13394. extra: 456/447,
  13395. bottom: 8/464
  13396. }
  13397. },
  13398. back: {
  13399. height: math.unit(1.85, "meters"),
  13400. weight: math.unit(80, "kg"),
  13401. name: "Back",
  13402. image: {
  13403. source: "./media/characters/matvei/back.svg",
  13404. extra: 434/427,
  13405. bottom: 11/445
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Normal",
  13412. height: math.unit(1.85, "meters"),
  13413. default: true
  13414. },
  13415. ]
  13416. ))
  13417. characterMakers.push(() => makeCharacter(
  13418. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13419. {
  13420. front: {
  13421. height: math.unit(5 + 9 / 12, "feet"),
  13422. weight: math.unit(70, "lb"),
  13423. name: "Front",
  13424. image: {
  13425. source: "./media/characters/quincy/front.svg",
  13426. extra: 3041 / 2751
  13427. }
  13428. },
  13429. back: {
  13430. height: math.unit(5 + 9 / 12, "feet"),
  13431. weight: math.unit(70, "lb"),
  13432. name: "Back",
  13433. image: {
  13434. source: "./media/characters/quincy/back.svg",
  13435. extra: 3041 / 2751
  13436. }
  13437. },
  13438. flying: {
  13439. height: math.unit(5 + 4 / 12, "feet"),
  13440. weight: math.unit(70, "lb"),
  13441. name: "Flying",
  13442. image: {
  13443. source: "./media/characters/quincy/flying.svg",
  13444. extra: 1044 / 930
  13445. }
  13446. },
  13447. },
  13448. [
  13449. {
  13450. name: "Micro",
  13451. height: math.unit(3, "cm")
  13452. },
  13453. {
  13454. name: "Normal",
  13455. height: math.unit(5 + 9 / 12, "feet")
  13456. },
  13457. {
  13458. name: "Macro",
  13459. height: math.unit(200, "meters"),
  13460. default: true
  13461. },
  13462. {
  13463. name: "Megamacro",
  13464. height: math.unit(1000, "meters")
  13465. },
  13466. ]
  13467. ))
  13468. characterMakers.push(() => makeCharacter(
  13469. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13470. {
  13471. front: {
  13472. height: math.unit(3 + 11/12, "feet"),
  13473. weight: math.unit(50, "lb"),
  13474. name: "Front",
  13475. image: {
  13476. source: "./media/characters/vanrel/front.svg",
  13477. extra: 1104/949,
  13478. bottom: 52/1156
  13479. }
  13480. },
  13481. back: {
  13482. height: math.unit(3 + 11/12, "feet"),
  13483. weight: math.unit(50, "lb"),
  13484. name: "Back",
  13485. image: {
  13486. source: "./media/characters/vanrel/back.svg",
  13487. extra: 1119/976,
  13488. bottom: 37/1156
  13489. }
  13490. },
  13491. tome: {
  13492. height: math.unit(1.35, "feet"),
  13493. weight: math.unit(10, "lb"),
  13494. name: "Vanrel's Tome",
  13495. rename: true,
  13496. image: {
  13497. source: "./media/characters/vanrel/tome.svg"
  13498. }
  13499. },
  13500. beans: {
  13501. height: math.unit(0.89, "feet"),
  13502. name: "Beans",
  13503. image: {
  13504. source: "./media/characters/vanrel/beans.svg"
  13505. }
  13506. },
  13507. },
  13508. [
  13509. {
  13510. name: "Normal",
  13511. height: math.unit(3 + 11/12, "feet"),
  13512. default: true
  13513. },
  13514. ]
  13515. ))
  13516. characterMakers.push(() => makeCharacter(
  13517. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13518. {
  13519. front: {
  13520. height: math.unit(7 + 5 / 12, "feet"),
  13521. name: "Front",
  13522. image: {
  13523. source: "./media/characters/kuiper-vanrel/front.svg",
  13524. extra: 1219/1169,
  13525. bottom: 69/1288
  13526. }
  13527. },
  13528. back: {
  13529. height: math.unit(7 + 5 / 12, "feet"),
  13530. name: "Back",
  13531. image: {
  13532. source: "./media/characters/kuiper-vanrel/back.svg",
  13533. extra: 1236/1193,
  13534. bottom: 27/1263
  13535. }
  13536. },
  13537. foot: {
  13538. height: math.unit(0.55, "meters"),
  13539. name: "Foot",
  13540. image: {
  13541. source: "./media/characters/kuiper-vanrel/foot.svg",
  13542. }
  13543. },
  13544. battle: {
  13545. height: math.unit(6.824, "feet"),
  13546. name: "Battle",
  13547. image: {
  13548. source: "./media/characters/kuiper-vanrel/battle.svg",
  13549. extra: 1466 / 1327,
  13550. bottom: 29 / 1492.5
  13551. }
  13552. },
  13553. meerkui: {
  13554. height: math.unit(18, "inches"),
  13555. name: "Meerkui",
  13556. image: {
  13557. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13558. extra: 1354/1289,
  13559. bottom: 69/1423
  13560. }
  13561. },
  13562. },
  13563. [
  13564. {
  13565. name: "Normal",
  13566. height: math.unit(7 + 5 / 12, "feet"),
  13567. default: true
  13568. },
  13569. ]
  13570. ))
  13571. characterMakers.push(() => makeCharacter(
  13572. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13573. {
  13574. front: {
  13575. height: math.unit(8 + 5 / 12, "feet"),
  13576. name: "Front",
  13577. image: {
  13578. source: "./media/characters/keset-vanrel/front.svg",
  13579. extra: 1231/1148,
  13580. bottom: 82/1313
  13581. }
  13582. },
  13583. back: {
  13584. height: math.unit(8 + 5 / 12, "feet"),
  13585. name: "Back",
  13586. image: {
  13587. source: "./media/characters/keset-vanrel/back.svg",
  13588. extra: 1240/1174,
  13589. bottom: 33/1273
  13590. }
  13591. },
  13592. hand: {
  13593. height: math.unit(0.6, "meters"),
  13594. name: "Hand",
  13595. image: {
  13596. source: "./media/characters/keset-vanrel/hand.svg"
  13597. }
  13598. },
  13599. foot: {
  13600. height: math.unit(0.94978, "meters"),
  13601. name: "Foot",
  13602. image: {
  13603. source: "./media/characters/keset-vanrel/foot.svg"
  13604. }
  13605. },
  13606. battle: {
  13607. height: math.unit(7.408, "feet"),
  13608. name: "Battle",
  13609. image: {
  13610. source: "./media/characters/keset-vanrel/battle.svg",
  13611. extra: 1890 / 1386,
  13612. bottom: 73.28 / 1970
  13613. }
  13614. },
  13615. },
  13616. [
  13617. {
  13618. name: "Normal",
  13619. height: math.unit(8 + 5 / 12, "feet"),
  13620. default: true
  13621. },
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13626. {
  13627. front: {
  13628. height: math.unit(6, "feet"),
  13629. weight: math.unit(150, "lb"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/neos/front.svg",
  13633. extra: 1696 / 992,
  13634. bottom: 0.14
  13635. }
  13636. },
  13637. },
  13638. [
  13639. {
  13640. name: "Normal",
  13641. height: math.unit(54, "cm"),
  13642. default: true
  13643. },
  13644. {
  13645. name: "Macro",
  13646. height: math.unit(100, "m")
  13647. },
  13648. {
  13649. name: "Megamacro",
  13650. height: math.unit(10, "km")
  13651. },
  13652. {
  13653. name: "Megamacro+",
  13654. height: math.unit(100, "km")
  13655. },
  13656. {
  13657. name: "Gigamacro",
  13658. height: math.unit(100, "Mm")
  13659. },
  13660. {
  13661. name: "Teramacro",
  13662. height: math.unit(100, "Gm")
  13663. },
  13664. {
  13665. name: "Examacro",
  13666. height: math.unit(100, "Em")
  13667. },
  13668. {
  13669. name: "Godly",
  13670. height: math.unit(10000, "Ym")
  13671. },
  13672. {
  13673. name: "Beyond Godly",
  13674. height: math.unit(25, "multiverses")
  13675. },
  13676. ]
  13677. ))
  13678. characterMakers.push(() => makeCharacter(
  13679. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13680. {
  13681. feminine: {
  13682. height: math.unit(5, "feet"),
  13683. weight: math.unit(100, "lb"),
  13684. name: "Feminine",
  13685. image: {
  13686. source: "./media/characters/sammy-mouse/feminine.svg",
  13687. extra: 2526 / 2425,
  13688. bottom: 0.123
  13689. }
  13690. },
  13691. masculine: {
  13692. height: math.unit(5, "feet"),
  13693. weight: math.unit(100, "lb"),
  13694. name: "Masculine",
  13695. image: {
  13696. source: "./media/characters/sammy-mouse/masculine.svg",
  13697. extra: 2526 / 2425,
  13698. bottom: 0.123
  13699. }
  13700. },
  13701. },
  13702. [
  13703. {
  13704. name: "Micro",
  13705. height: math.unit(5, "inches")
  13706. },
  13707. {
  13708. name: "Normal",
  13709. height: math.unit(5, "feet"),
  13710. default: true
  13711. },
  13712. {
  13713. name: "Macro",
  13714. height: math.unit(60, "feet")
  13715. },
  13716. ]
  13717. ))
  13718. characterMakers.push(() => makeCharacter(
  13719. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13720. {
  13721. front: {
  13722. height: math.unit(4, "feet"),
  13723. weight: math.unit(50, "lb"),
  13724. name: "Front",
  13725. image: {
  13726. source: "./media/characters/kole/front.svg",
  13727. extra: 1423 / 1303,
  13728. bottom: 0.025
  13729. }
  13730. },
  13731. back: {
  13732. height: math.unit(4, "feet"),
  13733. weight: math.unit(50, "lb"),
  13734. name: "Back",
  13735. image: {
  13736. source: "./media/characters/kole/back.svg",
  13737. extra: 1426 / 1280,
  13738. bottom: 0.02
  13739. }
  13740. },
  13741. },
  13742. [
  13743. {
  13744. name: "Normal",
  13745. height: math.unit(4, "feet"),
  13746. default: true
  13747. },
  13748. ]
  13749. ))
  13750. characterMakers.push(() => makeCharacter(
  13751. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13752. {
  13753. front: {
  13754. height: math.unit(2.5, "feet"),
  13755. weight: math.unit(32, "lb"),
  13756. name: "Front",
  13757. image: {
  13758. source: "./media/characters/rufran/front.svg",
  13759. extra: 1313/885,
  13760. bottom: 94/1407
  13761. }
  13762. },
  13763. side: {
  13764. height: math.unit(2.5, "feet"),
  13765. weight: math.unit(32, "lb"),
  13766. name: "Side",
  13767. image: {
  13768. source: "./media/characters/rufran/side.svg",
  13769. extra: 1109/852,
  13770. bottom: 118/1227
  13771. }
  13772. },
  13773. back: {
  13774. height: math.unit(2.5, "feet"),
  13775. weight: math.unit(32, "lb"),
  13776. name: "Back",
  13777. image: {
  13778. source: "./media/characters/rufran/back.svg",
  13779. extra: 1280/878,
  13780. bottom: 131/1411
  13781. }
  13782. },
  13783. mouth: {
  13784. height: math.unit(1.13, "feet"),
  13785. name: "Mouth",
  13786. image: {
  13787. source: "./media/characters/rufran/mouth.svg"
  13788. }
  13789. },
  13790. foot: {
  13791. height: math.unit(1.33, "feet"),
  13792. name: "Foot",
  13793. image: {
  13794. source: "./media/characters/rufran/foot.svg"
  13795. }
  13796. },
  13797. koboldFront: {
  13798. height: math.unit(2 + 6 / 12, "feet"),
  13799. weight: math.unit(20, "lb"),
  13800. name: "Front (Kobold)",
  13801. image: {
  13802. source: "./media/characters/rufran/kobold-front.svg",
  13803. extra: 2041 / 1839,
  13804. bottom: 0.055
  13805. }
  13806. },
  13807. koboldBack: {
  13808. height: math.unit(2 + 6 / 12, "feet"),
  13809. weight: math.unit(20, "lb"),
  13810. name: "Back (Kobold)",
  13811. image: {
  13812. source: "./media/characters/rufran/kobold-back.svg",
  13813. extra: 2054 / 1839,
  13814. bottom: 0.01
  13815. }
  13816. },
  13817. koboldHand: {
  13818. height: math.unit(0.2166, "meters"),
  13819. name: "Hand (Kobold)",
  13820. image: {
  13821. source: "./media/characters/rufran/kobold-hand.svg"
  13822. }
  13823. },
  13824. koboldFoot: {
  13825. height: math.unit(0.185, "meters"),
  13826. name: "Foot (Kobold)",
  13827. image: {
  13828. source: "./media/characters/rufran/kobold-foot.svg"
  13829. }
  13830. },
  13831. },
  13832. [
  13833. {
  13834. name: "Micro",
  13835. height: math.unit(1, "inch")
  13836. },
  13837. {
  13838. name: "Normal",
  13839. height: math.unit(2 + 6 / 12, "feet"),
  13840. default: true
  13841. },
  13842. {
  13843. name: "Big",
  13844. height: math.unit(60, "feet")
  13845. },
  13846. {
  13847. name: "Macro",
  13848. height: math.unit(325, "feet")
  13849. },
  13850. ]
  13851. ))
  13852. characterMakers.push(() => makeCharacter(
  13853. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13854. {
  13855. front: {
  13856. height: math.unit(0.3, "meters"),
  13857. weight: math.unit(3.5, "kg"),
  13858. name: "Front",
  13859. image: {
  13860. source: "./media/characters/chip/front.svg",
  13861. extra: 748 / 674
  13862. }
  13863. },
  13864. },
  13865. [
  13866. {
  13867. name: "Micro",
  13868. height: math.unit(1, "inch"),
  13869. default: true
  13870. },
  13871. ]
  13872. ))
  13873. characterMakers.push(() => makeCharacter(
  13874. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13875. {
  13876. side: {
  13877. height: math.unit(2.3, "meters"),
  13878. weight: math.unit(3500, "lb"),
  13879. name: "Side",
  13880. image: {
  13881. source: "./media/characters/torvid/side.svg",
  13882. extra: 1972 / 722,
  13883. bottom: 0.035
  13884. }
  13885. },
  13886. },
  13887. [
  13888. {
  13889. name: "Normal",
  13890. height: math.unit(2.3, "meters"),
  13891. default: true
  13892. },
  13893. ]
  13894. ))
  13895. characterMakers.push(() => makeCharacter(
  13896. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13897. {
  13898. front: {
  13899. height: math.unit(2, "meters"),
  13900. weight: math.unit(150.5, "kg"),
  13901. name: "Front",
  13902. image: {
  13903. source: "./media/characters/susan/front.svg",
  13904. extra: 693 / 635,
  13905. bottom: 0.05
  13906. }
  13907. },
  13908. },
  13909. [
  13910. {
  13911. name: "Megamacro",
  13912. height: math.unit(505, "miles"),
  13913. default: true
  13914. },
  13915. ]
  13916. ))
  13917. characterMakers.push(() => makeCharacter(
  13918. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13919. {
  13920. front: {
  13921. height: math.unit(6, "feet"),
  13922. weight: math.unit(150, "lb"),
  13923. name: "Front",
  13924. image: {
  13925. source: "./media/characters/raindrops/front.svg",
  13926. extra: 2655 / 2461,
  13927. bottom: 49 / 2705
  13928. }
  13929. },
  13930. back: {
  13931. height: math.unit(6, "feet"),
  13932. weight: math.unit(150, "lb"),
  13933. name: "Back",
  13934. image: {
  13935. source: "./media/characters/raindrops/back.svg",
  13936. extra: 2574 / 2400,
  13937. bottom: 65 / 2634
  13938. }
  13939. },
  13940. },
  13941. [
  13942. {
  13943. name: "Micro",
  13944. height: math.unit(6, "inches")
  13945. },
  13946. {
  13947. name: "Normal",
  13948. height: math.unit(6 + 2 / 12, "feet")
  13949. },
  13950. {
  13951. name: "Macro",
  13952. height: math.unit(131, "feet"),
  13953. default: true
  13954. },
  13955. {
  13956. name: "Megamacro",
  13957. height: math.unit(15, "miles")
  13958. },
  13959. {
  13960. name: "Gigamacro",
  13961. height: math.unit(4000, "miles")
  13962. },
  13963. {
  13964. name: "Teramacro",
  13965. height: math.unit(315000, "miles")
  13966. },
  13967. ]
  13968. ))
  13969. characterMakers.push(() => makeCharacter(
  13970. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  13971. {
  13972. front: {
  13973. height: math.unit(2.794, "meters"),
  13974. weight: math.unit(325, "kg"),
  13975. name: "Front",
  13976. image: {
  13977. source: "./media/characters/tezwa/front.svg",
  13978. extra: 2083 / 1906,
  13979. bottom: 0.031
  13980. }
  13981. },
  13982. foot: {
  13983. height: math.unit(0.687, "meters"),
  13984. name: "Foot",
  13985. image: {
  13986. source: "./media/characters/tezwa/foot.svg"
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Normal",
  13993. height: math.unit(9 + 2 / 12, "feet"),
  13994. default: true
  13995. },
  13996. ]
  13997. ))
  13998. characterMakers.push(() => makeCharacter(
  13999. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14000. {
  14001. front: {
  14002. height: math.unit(58, "feet"),
  14003. weight: math.unit(89000, "lb"),
  14004. name: "Front",
  14005. image: {
  14006. source: "./media/characters/typhus/front.svg",
  14007. extra: 816 / 800,
  14008. bottom: 0.065
  14009. }
  14010. },
  14011. },
  14012. [
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(58, "feet"),
  14016. default: true
  14017. },
  14018. ]
  14019. ))
  14020. characterMakers.push(() => makeCharacter(
  14021. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14022. {
  14023. front: {
  14024. height: math.unit(12, "feet"),
  14025. weight: math.unit(6, "tonnes"),
  14026. name: "Front",
  14027. image: {
  14028. source: "./media/characters/lyra-von-wulf/front.svg",
  14029. extra: 1,
  14030. bottom: 0.10
  14031. }
  14032. },
  14033. frontMecha: {
  14034. height: math.unit(12, "feet"),
  14035. weight: math.unit(12, "tonnes"),
  14036. name: "Front (Mecha)",
  14037. image: {
  14038. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14039. extra: 1,
  14040. bottom: 0.042
  14041. }
  14042. },
  14043. maw: {
  14044. height: math.unit(2.2, "feet"),
  14045. name: "Maw",
  14046. image: {
  14047. source: "./media/characters/lyra-von-wulf/maw.svg"
  14048. }
  14049. },
  14050. },
  14051. [
  14052. {
  14053. name: "Normal",
  14054. height: math.unit(12, "feet"),
  14055. default: true
  14056. },
  14057. {
  14058. name: "Classic",
  14059. height: math.unit(50, "feet")
  14060. },
  14061. {
  14062. name: "Macro",
  14063. height: math.unit(500, "feet")
  14064. },
  14065. {
  14066. name: "Megamacro",
  14067. height: math.unit(1, "mile")
  14068. },
  14069. {
  14070. name: "Gigamacro",
  14071. height: math.unit(400, "miles")
  14072. },
  14073. {
  14074. name: "Teramacro",
  14075. height: math.unit(22000, "miles")
  14076. },
  14077. {
  14078. name: "Solarmacro",
  14079. height: math.unit(8600000, "miles")
  14080. },
  14081. {
  14082. name: "Galactic",
  14083. height: math.unit(1057000, "lightyears")
  14084. },
  14085. ]
  14086. ))
  14087. characterMakers.push(() => makeCharacter(
  14088. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14089. {
  14090. front: {
  14091. height: math.unit(6 + 10 / 12, "feet"),
  14092. weight: math.unit(150, "lb"),
  14093. name: "Front",
  14094. image: {
  14095. source: "./media/characters/dixon/front.svg",
  14096. extra: 3361 / 3209,
  14097. bottom: 0.01
  14098. }
  14099. },
  14100. },
  14101. [
  14102. {
  14103. name: "Normal",
  14104. height: math.unit(6 + 10 / 12, "feet"),
  14105. default: true
  14106. },
  14107. {
  14108. name: "Big",
  14109. height: math.unit(12, "meters")
  14110. },
  14111. {
  14112. name: "Macro",
  14113. height: math.unit(500, "meters")
  14114. },
  14115. {
  14116. name: "Megamacro",
  14117. height: math.unit(2, "km")
  14118. },
  14119. ]
  14120. ))
  14121. characterMakers.push(() => makeCharacter(
  14122. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14123. {
  14124. front: {
  14125. height: math.unit(185, "cm"),
  14126. weight: math.unit(68, "kg"),
  14127. name: "Front",
  14128. image: {
  14129. source: "./media/characters/kauko/front.svg",
  14130. extra: 1455 / 1421,
  14131. bottom: 0.03
  14132. }
  14133. },
  14134. back: {
  14135. height: math.unit(185, "cm"),
  14136. weight: math.unit(68, "kg"),
  14137. name: "Back",
  14138. image: {
  14139. source: "./media/characters/kauko/back.svg",
  14140. extra: 1455 / 1421,
  14141. bottom: 0.004
  14142. }
  14143. },
  14144. },
  14145. [
  14146. {
  14147. name: "Normal",
  14148. height: math.unit(185, "cm"),
  14149. default: true
  14150. },
  14151. ]
  14152. ))
  14153. characterMakers.push(() => makeCharacter(
  14154. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14155. {
  14156. frontSfw: {
  14157. height: math.unit(5, "meters"),
  14158. weight: math.unit(4250, "lb"),
  14159. name: "Front",
  14160. image: {
  14161. source: "./media/characters/varg/front-sfw.svg",
  14162. extra: 1103/1010,
  14163. bottom: 50/1153
  14164. },
  14165. form: "anthro",
  14166. default: true
  14167. },
  14168. backSfw: {
  14169. height: math.unit(5, "meters"),
  14170. weight: math.unit(4250, "lb"),
  14171. name: "Back",
  14172. image: {
  14173. source: "./media/characters/varg/back-sfw.svg",
  14174. extra: 1038/1022,
  14175. bottom: 36/1074
  14176. },
  14177. form: "anthro"
  14178. },
  14179. frontNsfw: {
  14180. height: math.unit(5, "meters"),
  14181. weight: math.unit(4250, "lb"),
  14182. name: "Front (NSFW)",
  14183. image: {
  14184. source: "./media/characters/varg/front-nsfw.svg",
  14185. extra: 1103/1010,
  14186. bottom: 50/1153
  14187. },
  14188. form: "anthro"
  14189. },
  14190. sheath: {
  14191. height: math.unit(3.8, "feet"),
  14192. weight: math.unit(90, "kilograms"),
  14193. name: "Sheath",
  14194. image: {
  14195. source: "./media/characters/varg/sheath.svg"
  14196. },
  14197. form: "anthro"
  14198. },
  14199. dick: {
  14200. height: math.unit(4.6, "feet"),
  14201. weight: math.unit(451, "kilograms"),
  14202. name: "Dick",
  14203. image: {
  14204. source: "./media/characters/varg/dick.svg"
  14205. },
  14206. form: "anthro"
  14207. },
  14208. feralSfw: {
  14209. height: math.unit(5, "meters"),
  14210. weight: math.unit(100000, "lb"),
  14211. name: "Side",
  14212. image: {
  14213. source: "./media/characters/varg/feral-sfw.svg",
  14214. extra: 1065/511,
  14215. bottom: 211/1276
  14216. },
  14217. form: "feral",
  14218. default: true
  14219. },
  14220. feralNsfw: {
  14221. height: math.unit(5, "meters"),
  14222. weight: math.unit(100000, "lb"),
  14223. name: "Side (NSFW)",
  14224. image: {
  14225. source: "./media/characters/varg/feral-nsfw.svg",
  14226. extra: 1065/511,
  14227. bottom: 211/1276
  14228. },
  14229. form: "feral",
  14230. },
  14231. feralSheath: {
  14232. height: math.unit(9.8, "feet"),
  14233. weight: math.unit(2000, "kilograms"),
  14234. name: "Sheath",
  14235. image: {
  14236. source: "./media/characters/varg/sheath.svg"
  14237. },
  14238. form: "feral"
  14239. },
  14240. feralDick: {
  14241. height: math.unit(13.11, "feet"),
  14242. weight: math.unit(10440, "kilograms"),
  14243. name: "Dick",
  14244. image: {
  14245. source: "./media/characters/varg/dick.svg"
  14246. },
  14247. form: "feral"
  14248. },
  14249. },
  14250. [
  14251. {
  14252. name: "Normal",
  14253. height: math.unit(5, "meters"),
  14254. form: "anthro"
  14255. },
  14256. {
  14257. name: "Macro",
  14258. height: math.unit(200, "meters"),
  14259. form: "anthro"
  14260. },
  14261. {
  14262. name: "Megamacro",
  14263. height: math.unit(20, "kilometers"),
  14264. form: "anthro"
  14265. },
  14266. {
  14267. name: "True Size",
  14268. height: math.unit(211, "km"),
  14269. form: "anthro",
  14270. default: true
  14271. },
  14272. {
  14273. name: "Gigamacro",
  14274. height: math.unit(1000, "km"),
  14275. form: "anthro"
  14276. },
  14277. {
  14278. name: "Gigamacro+",
  14279. height: math.unit(8000, "km"),
  14280. form: "anthro"
  14281. },
  14282. {
  14283. name: "Teramacro",
  14284. height: math.unit(1000000, "km"),
  14285. form: "anthro"
  14286. },
  14287. {
  14288. name: "Normal",
  14289. height: math.unit(5, "meters"),
  14290. form: "feral"
  14291. },
  14292. {
  14293. name: "Macro",
  14294. height: math.unit(200, "meters"),
  14295. form: "feral"
  14296. },
  14297. {
  14298. name: "Megamacro",
  14299. height: math.unit(20, "kilometers"),
  14300. form: "feral"
  14301. },
  14302. {
  14303. name: "True Size",
  14304. height: math.unit(211, "km"),
  14305. form: "feral",
  14306. default: true
  14307. },
  14308. {
  14309. name: "Gigamacro",
  14310. height: math.unit(1000, "km"),
  14311. form: "feral"
  14312. },
  14313. {
  14314. name: "Gigamacro+",
  14315. height: math.unit(8000, "km"),
  14316. form: "feral"
  14317. },
  14318. {
  14319. name: "Teramacro",
  14320. height: math.unit(1000000, "km"),
  14321. form: "feral"
  14322. },
  14323. ],
  14324. {
  14325. "anthro": {
  14326. name: "Anthro",
  14327. default: true
  14328. },
  14329. "feral": {
  14330. name: "Feral",
  14331. },
  14332. }
  14333. ))
  14334. characterMakers.push(() => makeCharacter(
  14335. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14336. {
  14337. front: {
  14338. height: math.unit(7 + 7 / 12, "feet"),
  14339. weight: math.unit(267, "lb"),
  14340. name: "Front",
  14341. image: {
  14342. source: "./media/characters/dayza/front.svg",
  14343. extra: 1262 / 1200,
  14344. bottom: 0.035
  14345. }
  14346. },
  14347. side: {
  14348. height: math.unit(7 + 7 / 12, "feet"),
  14349. weight: math.unit(267, "lb"),
  14350. name: "Side",
  14351. image: {
  14352. source: "./media/characters/dayza/side.svg",
  14353. extra: 1295 / 1245,
  14354. bottom: 0.05
  14355. }
  14356. },
  14357. back: {
  14358. height: math.unit(7 + 7 / 12, "feet"),
  14359. weight: math.unit(267, "lb"),
  14360. name: "Back",
  14361. image: {
  14362. source: "./media/characters/dayza/back.svg",
  14363. extra: 1241 / 1170
  14364. }
  14365. },
  14366. },
  14367. [
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(7 + 7 / 12, "feet"),
  14371. default: true
  14372. },
  14373. {
  14374. name: "Macro",
  14375. height: math.unit(155, "feet")
  14376. },
  14377. ]
  14378. ))
  14379. characterMakers.push(() => makeCharacter(
  14380. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14381. {
  14382. front: {
  14383. height: math.unit(6 + 5 / 12, "feet"),
  14384. weight: math.unit(160, "lb"),
  14385. name: "Front",
  14386. image: {
  14387. source: "./media/characters/xanthos/front.svg",
  14388. extra: 1,
  14389. bottom: 0.04
  14390. }
  14391. },
  14392. back: {
  14393. height: math.unit(6 + 5 / 12, "feet"),
  14394. weight: math.unit(160, "lb"),
  14395. name: "Back",
  14396. image: {
  14397. source: "./media/characters/xanthos/back.svg",
  14398. extra: 1,
  14399. bottom: 0.03
  14400. }
  14401. },
  14402. hand: {
  14403. height: math.unit(0.928, "feet"),
  14404. name: "Hand",
  14405. image: {
  14406. source: "./media/characters/xanthos/hand.svg"
  14407. }
  14408. },
  14409. foot: {
  14410. height: math.unit(1.286, "feet"),
  14411. name: "Foot",
  14412. image: {
  14413. source: "./media/characters/xanthos/foot.svg"
  14414. }
  14415. },
  14416. },
  14417. [
  14418. {
  14419. name: "Normal",
  14420. height: math.unit(6 + 5 / 12, "feet"),
  14421. default: true
  14422. },
  14423. {
  14424. name: "Normal+",
  14425. height: math.unit(6, "meters")
  14426. },
  14427. {
  14428. name: "Macro",
  14429. height: math.unit(40, "feet")
  14430. },
  14431. {
  14432. name: "Macro+",
  14433. height: math.unit(200, "meters")
  14434. },
  14435. {
  14436. name: "Megamacro",
  14437. height: math.unit(20, "km")
  14438. },
  14439. {
  14440. name: "Megamacro+",
  14441. height: math.unit(100, "km")
  14442. },
  14443. {
  14444. name: "Gigamacro",
  14445. height: math.unit(200, "megameters")
  14446. },
  14447. {
  14448. name: "Gigamacro+",
  14449. height: math.unit(1.5, "gigameters")
  14450. },
  14451. ]
  14452. ))
  14453. characterMakers.push(() => makeCharacter(
  14454. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14455. {
  14456. front: {
  14457. height: math.unit(6 + 3 / 12, "feet"),
  14458. weight: math.unit(215, "lb"),
  14459. name: "Front",
  14460. image: {
  14461. source: "./media/characters/grynn/front.svg",
  14462. extra: 4627 / 4209,
  14463. bottom: 0.047
  14464. }
  14465. },
  14466. },
  14467. [
  14468. {
  14469. name: "Micro",
  14470. height: math.unit(6, "inches")
  14471. },
  14472. {
  14473. name: "Normal",
  14474. height: math.unit(6 + 3 / 12, "feet"),
  14475. default: true
  14476. },
  14477. {
  14478. name: "Big",
  14479. height: math.unit(104, "feet")
  14480. },
  14481. {
  14482. name: "Macro",
  14483. height: math.unit(944, "feet")
  14484. },
  14485. {
  14486. name: "Macro+",
  14487. height: math.unit(9480, "feet")
  14488. },
  14489. {
  14490. name: "Megamacro",
  14491. height: math.unit(78752, "feet")
  14492. },
  14493. {
  14494. name: "Megamacro+",
  14495. height: math.unit(630128, "feet")
  14496. },
  14497. {
  14498. name: "Megamacro++",
  14499. height: math.unit(3150695, "feet")
  14500. },
  14501. ]
  14502. ))
  14503. characterMakers.push(() => makeCharacter(
  14504. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14505. {
  14506. front: {
  14507. height: math.unit(7 + 5 / 12, "feet"),
  14508. weight: math.unit(450, "lb"),
  14509. name: "Front",
  14510. image: {
  14511. source: "./media/characters/mocha-aura/front.svg",
  14512. extra: 1907 / 1817,
  14513. bottom: 0.04
  14514. }
  14515. },
  14516. back: {
  14517. height: math.unit(7 + 5 / 12, "feet"),
  14518. weight: math.unit(450, "lb"),
  14519. name: "Back",
  14520. image: {
  14521. source: "./media/characters/mocha-aura/back.svg",
  14522. extra: 1900 / 1825,
  14523. bottom: 0.045
  14524. }
  14525. },
  14526. },
  14527. [
  14528. {
  14529. name: "Nano",
  14530. height: math.unit(1, "nm")
  14531. },
  14532. {
  14533. name: "Megamicro",
  14534. height: math.unit(1, "mm")
  14535. },
  14536. {
  14537. name: "Micro",
  14538. height: math.unit(3, "inches")
  14539. },
  14540. {
  14541. name: "Normal",
  14542. height: math.unit(7 + 5 / 12, "feet"),
  14543. default: true
  14544. },
  14545. {
  14546. name: "Macro",
  14547. height: math.unit(30, "feet")
  14548. },
  14549. {
  14550. name: "Megamacro",
  14551. height: math.unit(3500, "feet")
  14552. },
  14553. {
  14554. name: "Teramacro",
  14555. height: math.unit(500000, "miles")
  14556. },
  14557. {
  14558. name: "Petamacro",
  14559. height: math.unit(50000000000000000, "parsecs")
  14560. },
  14561. ]
  14562. ))
  14563. characterMakers.push(() => makeCharacter(
  14564. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14565. {
  14566. front: {
  14567. height: math.unit(6, "feet"),
  14568. weight: math.unit(150, "lb"),
  14569. name: "Front",
  14570. image: {
  14571. source: "./media/characters/ilisha-devya/front.svg",
  14572. extra: 1053/1049,
  14573. bottom: 270/1323
  14574. }
  14575. },
  14576. back: {
  14577. height: math.unit(6, "feet"),
  14578. weight: math.unit(150, "lb"),
  14579. name: "Back",
  14580. image: {
  14581. source: "./media/characters/ilisha-devya/back.svg",
  14582. extra: 1131/1128,
  14583. bottom: 39/1170
  14584. }
  14585. },
  14586. },
  14587. [
  14588. {
  14589. name: "Macro",
  14590. height: math.unit(500, "feet"),
  14591. default: true
  14592. },
  14593. {
  14594. name: "Megamacro",
  14595. height: math.unit(10, "miles")
  14596. },
  14597. {
  14598. name: "Gigamacro",
  14599. height: math.unit(100000, "miles")
  14600. },
  14601. {
  14602. name: "Examacro",
  14603. height: math.unit(1e9, "lightyears")
  14604. },
  14605. {
  14606. name: "Omniversal",
  14607. height: math.unit(1e33, "lightyears")
  14608. },
  14609. {
  14610. name: "Beyond Infinite",
  14611. height: math.unit(1e100, "lightyears")
  14612. },
  14613. ]
  14614. ))
  14615. characterMakers.push(() => makeCharacter(
  14616. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14617. {
  14618. Side: {
  14619. height: math.unit(6, "feet"),
  14620. weight: math.unit(150, "lb"),
  14621. name: "Side",
  14622. image: {
  14623. source: "./media/characters/mira/side.svg",
  14624. extra: 900 / 799,
  14625. bottom: 0.02
  14626. }
  14627. },
  14628. },
  14629. [
  14630. {
  14631. name: "Human Size",
  14632. height: math.unit(6, "feet")
  14633. },
  14634. {
  14635. name: "Macro",
  14636. height: math.unit(100, "feet"),
  14637. default: true
  14638. },
  14639. {
  14640. name: "Megamacro",
  14641. height: math.unit(10, "miles")
  14642. },
  14643. {
  14644. name: "Gigamacro",
  14645. height: math.unit(25000, "miles")
  14646. },
  14647. {
  14648. name: "Teramacro",
  14649. height: math.unit(300, "AU")
  14650. },
  14651. {
  14652. name: "Full Size",
  14653. height: math.unit(4.5e10, "lightyears")
  14654. },
  14655. ]
  14656. ))
  14657. characterMakers.push(() => makeCharacter(
  14658. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14659. {
  14660. front: {
  14661. height: math.unit(6, "feet"),
  14662. weight: math.unit(150, "lb"),
  14663. name: "Front",
  14664. image: {
  14665. source: "./media/characters/holly/front.svg",
  14666. extra: 639 / 606
  14667. }
  14668. },
  14669. back: {
  14670. height: math.unit(6, "feet"),
  14671. weight: math.unit(150, "lb"),
  14672. name: "Back",
  14673. image: {
  14674. source: "./media/characters/holly/back.svg",
  14675. extra: 623 / 598
  14676. }
  14677. },
  14678. frontWorking: {
  14679. height: math.unit(6, "feet"),
  14680. weight: math.unit(150, "lb"),
  14681. name: "Front (Working)",
  14682. image: {
  14683. source: "./media/characters/holly/front-working.svg",
  14684. extra: 607 / 577,
  14685. bottom: 0.048
  14686. }
  14687. },
  14688. },
  14689. [
  14690. {
  14691. name: "Normal",
  14692. height: math.unit(12 + 3 / 12, "feet"),
  14693. default: true
  14694. },
  14695. ]
  14696. ))
  14697. characterMakers.push(() => makeCharacter(
  14698. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14699. {
  14700. front: {
  14701. height: math.unit(6, "feet"),
  14702. weight: math.unit(150, "lb"),
  14703. name: "Front",
  14704. image: {
  14705. source: "./media/characters/porter/front.svg",
  14706. extra: 1,
  14707. bottom: 0.01
  14708. }
  14709. },
  14710. frontRobes: {
  14711. height: math.unit(6, "feet"),
  14712. weight: math.unit(150, "lb"),
  14713. name: "Front (Robes)",
  14714. image: {
  14715. source: "./media/characters/porter/front-robes.svg",
  14716. extra: 1.01,
  14717. bottom: 0.01
  14718. }
  14719. },
  14720. },
  14721. [
  14722. {
  14723. name: "Normal",
  14724. height: math.unit(11 + 9 / 12, "feet"),
  14725. default: true
  14726. },
  14727. ]
  14728. ))
  14729. characterMakers.push(() => makeCharacter(
  14730. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14731. {
  14732. legendary: {
  14733. height: math.unit(6, "feet"),
  14734. weight: math.unit(150, "lb"),
  14735. name: "Legendary",
  14736. image: {
  14737. source: "./media/characters/lucy/legendary.svg",
  14738. extra: 1355 / 1100,
  14739. bottom: 0.045
  14740. }
  14741. },
  14742. },
  14743. [
  14744. {
  14745. name: "Legendary",
  14746. height: math.unit(86882 * 2, "miles"),
  14747. default: true
  14748. },
  14749. ]
  14750. ))
  14751. characterMakers.push(() => makeCharacter(
  14752. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14753. {
  14754. front: {
  14755. height: math.unit(6, "feet"),
  14756. weight: math.unit(150, "lb"),
  14757. name: "Front",
  14758. image: {
  14759. source: "./media/characters/drusilla/front.svg",
  14760. extra: 678 / 635,
  14761. bottom: 0.03
  14762. }
  14763. },
  14764. back: {
  14765. height: math.unit(6, "feet"),
  14766. weight: math.unit(150, "lb"),
  14767. name: "Back",
  14768. image: {
  14769. source: "./media/characters/drusilla/back.svg",
  14770. extra: 678 / 635,
  14771. bottom: 0.005
  14772. }
  14773. },
  14774. },
  14775. [
  14776. {
  14777. name: "Macro",
  14778. height: math.unit(100, "feet")
  14779. },
  14780. {
  14781. name: "Canon Height",
  14782. height: math.unit(2000, "feet"),
  14783. default: true
  14784. },
  14785. ]
  14786. ))
  14787. characterMakers.push(() => makeCharacter(
  14788. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14789. {
  14790. front: {
  14791. height: math.unit(6, "feet"),
  14792. weight: math.unit(180, "lb"),
  14793. name: "Front",
  14794. image: {
  14795. source: "./media/characters/renard-thatch/front.svg",
  14796. extra: 2411 / 2275,
  14797. bottom: 0.01
  14798. }
  14799. },
  14800. frontPosing: {
  14801. height: math.unit(6, "feet"),
  14802. weight: math.unit(180, "lb"),
  14803. name: "Front (Posing)",
  14804. image: {
  14805. source: "./media/characters/renard-thatch/front-posing.svg",
  14806. extra: 2381 / 2261,
  14807. bottom: 0.01
  14808. }
  14809. },
  14810. back: {
  14811. height: math.unit(6, "feet"),
  14812. weight: math.unit(180, "lb"),
  14813. name: "Back",
  14814. image: {
  14815. source: "./media/characters/renard-thatch/back.svg",
  14816. extra: 2428 / 2288
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Micro",
  14823. height: math.unit(3, "inches")
  14824. },
  14825. {
  14826. name: "Default",
  14827. height: math.unit(6, "feet"),
  14828. default: true
  14829. },
  14830. {
  14831. name: "Macro",
  14832. height: math.unit(75, "feet")
  14833. },
  14834. ]
  14835. ))
  14836. characterMakers.push(() => makeCharacter(
  14837. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14838. {
  14839. front: {
  14840. height: math.unit(1450, "feet"),
  14841. weight: math.unit(1.21e6, "tons"),
  14842. name: "Front",
  14843. image: {
  14844. source: "./media/characters/sekvra/front.svg",
  14845. extra: 1193/1190,
  14846. bottom: 78/1271
  14847. }
  14848. },
  14849. side: {
  14850. height: math.unit(1450, "feet"),
  14851. weight: math.unit(1.21e6, "tons"),
  14852. name: "Side",
  14853. image: {
  14854. source: "./media/characters/sekvra/side.svg",
  14855. extra: 1193/1190,
  14856. bottom: 52/1245
  14857. }
  14858. },
  14859. back: {
  14860. height: math.unit(1450, "feet"),
  14861. weight: math.unit(1.21e6, "tons"),
  14862. name: "Back",
  14863. image: {
  14864. source: "./media/characters/sekvra/back.svg",
  14865. extra: 1219/1216,
  14866. bottom: 21/1240
  14867. }
  14868. },
  14869. frontClothed: {
  14870. height: math.unit(1450, "feet"),
  14871. weight: math.unit(1.21e6, "tons"),
  14872. name: "Front (Clothed)",
  14873. image: {
  14874. source: "./media/characters/sekvra/front-clothed.svg",
  14875. extra: 1192/1189,
  14876. bottom: 79/1271
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Macro",
  14883. height: math.unit(1450, "feet"),
  14884. default: true
  14885. },
  14886. {
  14887. name: "Megamacro",
  14888. height: math.unit(15000, "feet")
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14894. {
  14895. front: {
  14896. height: math.unit(6, "feet"),
  14897. weight: math.unit(150, "lb"),
  14898. name: "Front",
  14899. image: {
  14900. source: "./media/characters/carmine/front.svg",
  14901. extra: 1557/1538,
  14902. bottom: 68/1625
  14903. }
  14904. },
  14905. frontArmor: {
  14906. height: math.unit(6, "feet"),
  14907. weight: math.unit(150, "lb"),
  14908. name: "Front (Armor)",
  14909. image: {
  14910. source: "./media/characters/carmine/front-armor.svg",
  14911. extra: 1549/1530,
  14912. bottom: 82/1631
  14913. }
  14914. },
  14915. mouth: {
  14916. height: math.unit(0.55, "feet"),
  14917. name: "Mouth",
  14918. image: {
  14919. source: "./media/characters/carmine/mouth.svg"
  14920. }
  14921. },
  14922. hand: {
  14923. height: math.unit(1.05, "feet"),
  14924. name: "Hand",
  14925. image: {
  14926. source: "./media/characters/carmine/hand.svg"
  14927. }
  14928. },
  14929. foot: {
  14930. height: math.unit(0.6, "feet"),
  14931. name: "Foot",
  14932. image: {
  14933. source: "./media/characters/carmine/foot.svg"
  14934. }
  14935. },
  14936. },
  14937. [
  14938. {
  14939. name: "Large",
  14940. height: math.unit(1, "mile")
  14941. },
  14942. {
  14943. name: "Huge",
  14944. height: math.unit(40, "miles"),
  14945. default: true
  14946. },
  14947. {
  14948. name: "Colossal",
  14949. height: math.unit(2500, "miles")
  14950. },
  14951. ]
  14952. ))
  14953. characterMakers.push(() => makeCharacter(
  14954. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  14955. {
  14956. front: {
  14957. height: math.unit(6, "feet"),
  14958. weight: math.unit(150, "lb"),
  14959. name: "Front",
  14960. image: {
  14961. source: "./media/characters/elyssia/front.svg",
  14962. extra: 2201 / 2035,
  14963. bottom: 0.05
  14964. }
  14965. },
  14966. frontClothed: {
  14967. height: math.unit(6, "feet"),
  14968. weight: math.unit(150, "lb"),
  14969. name: "Front (Clothed)",
  14970. image: {
  14971. source: "./media/characters/elyssia/front-clothed.svg",
  14972. extra: 2201 / 2035,
  14973. bottom: 0.05
  14974. }
  14975. },
  14976. back: {
  14977. height: math.unit(6, "feet"),
  14978. weight: math.unit(150, "lb"),
  14979. name: "Back",
  14980. image: {
  14981. source: "./media/characters/elyssia/back.svg",
  14982. extra: 2201 / 2035,
  14983. bottom: 0.013
  14984. }
  14985. },
  14986. },
  14987. [
  14988. {
  14989. name: "Smaller",
  14990. height: math.unit(150, "feet")
  14991. },
  14992. {
  14993. name: "Standard",
  14994. height: math.unit(1400, "feet"),
  14995. default: true
  14996. },
  14997. {
  14998. name: "Distracted",
  14999. height: math.unit(15000, "feet")
  15000. },
  15001. ]
  15002. ))
  15003. characterMakers.push(() => makeCharacter(
  15004. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15005. {
  15006. front: {
  15007. height: math.unit(7 + 4/12, "feet"),
  15008. weight: math.unit(690, "lb"),
  15009. name: "Front",
  15010. image: {
  15011. source: "./media/characters/geno-maxwell/front.svg",
  15012. extra: 984/856,
  15013. bottom: 87/1071
  15014. }
  15015. },
  15016. back: {
  15017. height: math.unit(7 + 4/12, "feet"),
  15018. weight: math.unit(690, "lb"),
  15019. name: "Back",
  15020. image: {
  15021. source: "./media/characters/geno-maxwell/back.svg",
  15022. extra: 981/854,
  15023. bottom: 57/1038
  15024. }
  15025. },
  15026. frontCostume: {
  15027. height: math.unit(7 + 4/12, "feet"),
  15028. weight: math.unit(690, "lb"),
  15029. name: "Front (Costume)",
  15030. image: {
  15031. source: "./media/characters/geno-maxwell/front-costume.svg",
  15032. extra: 984/856,
  15033. bottom: 87/1071
  15034. }
  15035. },
  15036. backcostume: {
  15037. height: math.unit(7 + 4/12, "feet"),
  15038. weight: math.unit(690, "lb"),
  15039. name: "Back (Costume)",
  15040. image: {
  15041. source: "./media/characters/geno-maxwell/back-costume.svg",
  15042. extra: 981/854,
  15043. bottom: 57/1038
  15044. }
  15045. },
  15046. },
  15047. [
  15048. {
  15049. name: "Micro",
  15050. height: math.unit(3, "inches")
  15051. },
  15052. {
  15053. name: "Normal",
  15054. height: math.unit(7 + 4 / 12, "feet"),
  15055. default: true
  15056. },
  15057. {
  15058. name: "Macro",
  15059. height: math.unit(220, "feet")
  15060. },
  15061. {
  15062. name: "Megamacro",
  15063. height: math.unit(11, "miles")
  15064. },
  15065. ]
  15066. ))
  15067. characterMakers.push(() => makeCharacter(
  15068. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15069. {
  15070. front: {
  15071. height: math.unit(7 + 4/12, "feet"),
  15072. weight: math.unit(750, "lb"),
  15073. name: "Front",
  15074. image: {
  15075. source: "./media/characters/regena-maxwell/front.svg",
  15076. extra: 984/856,
  15077. bottom: 87/1071
  15078. }
  15079. },
  15080. back: {
  15081. height: math.unit(7 + 4/12, "feet"),
  15082. weight: math.unit(750, "lb"),
  15083. name: "Back",
  15084. image: {
  15085. source: "./media/characters/regena-maxwell/back.svg",
  15086. extra: 981/854,
  15087. bottom: 57/1038
  15088. }
  15089. },
  15090. frontCostume: {
  15091. height: math.unit(7 + 4/12, "feet"),
  15092. weight: math.unit(750, "lb"),
  15093. name: "Front (Costume)",
  15094. image: {
  15095. source: "./media/characters/regena-maxwell/front-costume.svg",
  15096. extra: 984/856,
  15097. bottom: 87/1071
  15098. }
  15099. },
  15100. backcostume: {
  15101. height: math.unit(7 + 4/12, "feet"),
  15102. weight: math.unit(750, "lb"),
  15103. name: "Back (Costume)",
  15104. image: {
  15105. source: "./media/characters/regena-maxwell/back-costume.svg",
  15106. extra: 981/854,
  15107. bottom: 57/1038
  15108. }
  15109. },
  15110. },
  15111. [
  15112. {
  15113. name: "Normal",
  15114. height: math.unit(7 + 4 / 12, "feet"),
  15115. default: true
  15116. },
  15117. {
  15118. name: "Macro",
  15119. height: math.unit(220, "feet")
  15120. },
  15121. {
  15122. name: "Megamacro",
  15123. height: math.unit(11, "miles")
  15124. },
  15125. ]
  15126. ))
  15127. characterMakers.push(() => makeCharacter(
  15128. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15129. {
  15130. front: {
  15131. height: math.unit(6, "feet"),
  15132. weight: math.unit(150, "lb"),
  15133. name: "Front",
  15134. image: {
  15135. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15136. extra: 860 / 690,
  15137. bottom: 0.03
  15138. }
  15139. },
  15140. },
  15141. [
  15142. {
  15143. name: "Normal",
  15144. height: math.unit(1.7, "meters"),
  15145. default: true
  15146. },
  15147. ]
  15148. ))
  15149. characterMakers.push(() => makeCharacter(
  15150. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15151. {
  15152. front: {
  15153. height: math.unit(6, "feet"),
  15154. weight: math.unit(150, "lb"),
  15155. name: "Front",
  15156. image: {
  15157. source: "./media/characters/quilly/front.svg",
  15158. extra: 890 / 776
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Gigamacro",
  15165. height: math.unit(404090, "miles"),
  15166. default: true
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15172. {
  15173. front: {
  15174. height: math.unit(7 + 8 / 12, "feet"),
  15175. weight: math.unit(350, "lb"),
  15176. name: "Front",
  15177. image: {
  15178. source: "./media/characters/tempest/front.svg",
  15179. extra: 1175 / 1086,
  15180. bottom: 0.02
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(7 + 8 / 12, "feet"),
  15188. default: true
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15194. {
  15195. side: {
  15196. height: math.unit(4 + 5 / 12, "feet"),
  15197. weight: math.unit(80, "lb"),
  15198. name: "Side",
  15199. image: {
  15200. source: "./media/characters/rodger/side.svg",
  15201. extra: 1235 / 1118
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Micro",
  15208. height: math.unit(1, "inch")
  15209. },
  15210. {
  15211. name: "Normal",
  15212. height: math.unit(4 + 5 / 12, "feet"),
  15213. default: true
  15214. },
  15215. {
  15216. name: "Macro",
  15217. height: math.unit(120, "feet")
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(6, "feet"),
  15226. weight: math.unit(150, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/danyel/front.svg",
  15230. extra: 1185 / 1123,
  15231. bottom: 0.05
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Shrunken",
  15238. height: math.unit(0.5, "mm")
  15239. },
  15240. {
  15241. name: "Micro",
  15242. height: math.unit(1, "mm"),
  15243. default: true
  15244. },
  15245. {
  15246. name: "Upsized",
  15247. height: math.unit(5 + 5 / 12, "feet")
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(5 + 6 / 12, "feet"),
  15256. weight: math.unit(200, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/vivian-bijoux/front.svg",
  15260. extra: 1217/1209,
  15261. bottom: 76/1293
  15262. }
  15263. },
  15264. back: {
  15265. height: math.unit(5 + 6 / 12, "feet"),
  15266. weight: math.unit(200, "lb"),
  15267. name: "Back",
  15268. image: {
  15269. source: "./media/characters/vivian-bijoux/back.svg",
  15270. extra: 1214/1208,
  15271. bottom: 51/1265
  15272. }
  15273. },
  15274. dressed: {
  15275. height: math.unit(5 + 6 / 12, "feet"),
  15276. weight: math.unit(200, "lb"),
  15277. name: "Dressed",
  15278. image: {
  15279. source: "./media/characters/vivian-bijoux/dressed.svg",
  15280. extra: 1217/1209,
  15281. bottom: 76/1293
  15282. }
  15283. },
  15284. },
  15285. [
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(5 + 6 / 12, "feet"),
  15289. default: true
  15290. },
  15291. {
  15292. name: "Bad Dream",
  15293. height: math.unit(500, "feet")
  15294. },
  15295. {
  15296. name: "Nightmare",
  15297. height: math.unit(500, "miles")
  15298. },
  15299. ]
  15300. ))
  15301. characterMakers.push(() => makeCharacter(
  15302. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15303. {
  15304. front: {
  15305. height: math.unit(6 + 1 / 12, "feet"),
  15306. weight: math.unit(260, "lb"),
  15307. name: "Front",
  15308. image: {
  15309. source: "./media/characters/zeta/front.svg",
  15310. extra: 1968 / 1889,
  15311. bottom: 0.06
  15312. }
  15313. },
  15314. back: {
  15315. height: math.unit(6 + 1 / 12, "feet"),
  15316. weight: math.unit(260, "lb"),
  15317. name: "Back",
  15318. image: {
  15319. source: "./media/characters/zeta/back.svg",
  15320. extra: 1944 / 1858,
  15321. bottom: 0.03
  15322. }
  15323. },
  15324. hand: {
  15325. height: math.unit(1.112, "feet"),
  15326. name: "Hand",
  15327. image: {
  15328. source: "./media/characters/zeta/hand.svg"
  15329. }
  15330. },
  15331. foot: {
  15332. height: math.unit(1.48, "feet"),
  15333. name: "Foot",
  15334. image: {
  15335. source: "./media/characters/zeta/foot.svg"
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Micro",
  15342. height: math.unit(6, "inches")
  15343. },
  15344. {
  15345. name: "Normal",
  15346. height: math.unit(6 + 1 / 12, "feet"),
  15347. default: true
  15348. },
  15349. {
  15350. name: "Macro",
  15351. height: math.unit(20, "feet")
  15352. },
  15353. ]
  15354. ))
  15355. characterMakers.push(() => makeCharacter(
  15356. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15357. {
  15358. front: {
  15359. height: math.unit(6, "feet"),
  15360. weight: math.unit(150, "lb"),
  15361. name: "Front",
  15362. image: {
  15363. source: "./media/characters/jamie-larsen/front.svg",
  15364. extra: 962 / 933,
  15365. bottom: 0.02
  15366. }
  15367. },
  15368. back: {
  15369. height: math.unit(6, "feet"),
  15370. weight: math.unit(150, "lb"),
  15371. name: "Back",
  15372. image: {
  15373. source: "./media/characters/jamie-larsen/back.svg",
  15374. extra: 997 / 946
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Macro",
  15381. height: math.unit(28 + 7 / 12, "feet"),
  15382. default: true
  15383. },
  15384. {
  15385. name: "Macro+",
  15386. height: math.unit(180, "feet")
  15387. },
  15388. {
  15389. name: "Megamacro",
  15390. height: math.unit(10, "miles")
  15391. },
  15392. {
  15393. name: "Gigamacro",
  15394. height: math.unit(200000, "miles")
  15395. },
  15396. ]
  15397. ))
  15398. characterMakers.push(() => makeCharacter(
  15399. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15400. {
  15401. front: {
  15402. height: math.unit(6, "feet"),
  15403. weight: math.unit(120, "lb"),
  15404. name: "Front",
  15405. image: {
  15406. source: "./media/characters/vance/front.svg",
  15407. extra: 1980 / 1890,
  15408. bottom: 0.09
  15409. }
  15410. },
  15411. back: {
  15412. height: math.unit(6, "feet"),
  15413. weight: math.unit(120, "lb"),
  15414. name: "Back",
  15415. image: {
  15416. source: "./media/characters/vance/back.svg",
  15417. extra: 2081 / 1994,
  15418. bottom: 0.014
  15419. }
  15420. },
  15421. hand: {
  15422. height: math.unit(0.88, "feet"),
  15423. name: "Hand",
  15424. image: {
  15425. source: "./media/characters/vance/hand.svg"
  15426. }
  15427. },
  15428. foot: {
  15429. height: math.unit(0.64, "feet"),
  15430. name: "Foot",
  15431. image: {
  15432. source: "./media/characters/vance/foot.svg"
  15433. }
  15434. },
  15435. },
  15436. [
  15437. {
  15438. name: "Small",
  15439. height: math.unit(90, "feet"),
  15440. default: true
  15441. },
  15442. {
  15443. name: "Macro",
  15444. height: math.unit(100, "meters")
  15445. },
  15446. {
  15447. name: "Megamacro",
  15448. height: math.unit(15, "miles")
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(180, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/xochitl/front.svg",
  15461. extra: 2297 / 2261,
  15462. bottom: 0.065
  15463. }
  15464. },
  15465. back: {
  15466. height: math.unit(6, "feet"),
  15467. weight: math.unit(180, "lb"),
  15468. name: "Back",
  15469. image: {
  15470. source: "./media/characters/xochitl/back.svg",
  15471. extra: 2386 / 2354,
  15472. bottom: 0.01
  15473. }
  15474. },
  15475. foot: {
  15476. height: math.unit(6 / 5 * 1.15, "feet"),
  15477. weight: math.unit(150, "lb"),
  15478. name: "Foot",
  15479. image: {
  15480. source: "./media/characters/xochitl/foot.svg"
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Macro",
  15487. height: math.unit(80, "feet")
  15488. },
  15489. {
  15490. name: "Macro+",
  15491. height: math.unit(400, "feet"),
  15492. default: true
  15493. },
  15494. {
  15495. name: "Gigamacro",
  15496. height: math.unit(80000, "miles")
  15497. },
  15498. {
  15499. name: "Gigamacro+",
  15500. height: math.unit(400000, "miles")
  15501. },
  15502. {
  15503. name: "Teramacro",
  15504. height: math.unit(300, "AU")
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(6, "feet"),
  15513. weight: math.unit(150, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/vincent/front.svg",
  15517. extra: 1130 / 1080,
  15518. bottom: 0.055
  15519. }
  15520. },
  15521. beak: {
  15522. height: math.unit(6 * 0.1, "feet"),
  15523. name: "Beak",
  15524. image: {
  15525. source: "./media/characters/vincent/beak.svg"
  15526. }
  15527. },
  15528. hand: {
  15529. height: math.unit(6 * 0.85, "feet"),
  15530. weight: math.unit(150, "lb"),
  15531. name: "Hand",
  15532. image: {
  15533. source: "./media/characters/vincent/hand.svg"
  15534. }
  15535. },
  15536. foot: {
  15537. height: math.unit(6 * 0.19, "feet"),
  15538. weight: math.unit(150, "lb"),
  15539. name: "Foot",
  15540. image: {
  15541. source: "./media/characters/vincent/foot.svg"
  15542. }
  15543. },
  15544. },
  15545. [
  15546. {
  15547. name: "Base",
  15548. height: math.unit(6 + 5 / 12, "feet"),
  15549. default: true
  15550. },
  15551. {
  15552. name: "Macro",
  15553. height: math.unit(300, "feet")
  15554. },
  15555. {
  15556. name: "Megamacro",
  15557. height: math.unit(2, "miles")
  15558. },
  15559. {
  15560. name: "Gigamacro",
  15561. height: math.unit(1000, "miles")
  15562. },
  15563. ]
  15564. ))
  15565. characterMakers.push(() => makeCharacter(
  15566. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15567. {
  15568. front: {
  15569. height: math.unit(2, "meters"),
  15570. weight: math.unit(500, "kg"),
  15571. name: "Front",
  15572. image: {
  15573. source: "./media/characters/coatl/front.svg",
  15574. extra: 3948 / 3500,
  15575. bottom: 0.082
  15576. }
  15577. },
  15578. },
  15579. [
  15580. {
  15581. name: "Normal",
  15582. height: math.unit(4, "meters")
  15583. },
  15584. {
  15585. name: "Macro",
  15586. height: math.unit(100, "meters"),
  15587. default: true
  15588. },
  15589. {
  15590. name: "Macro+",
  15591. height: math.unit(300, "meters")
  15592. },
  15593. {
  15594. name: "Megamacro",
  15595. height: math.unit(3, "gigameters")
  15596. },
  15597. {
  15598. name: "Megamacro+",
  15599. height: math.unit(300, "terameters")
  15600. },
  15601. {
  15602. name: "Megamacro++",
  15603. height: math.unit(3, "lightyears")
  15604. },
  15605. ]
  15606. ))
  15607. characterMakers.push(() => makeCharacter(
  15608. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15609. {
  15610. front: {
  15611. height: math.unit(6, "feet"),
  15612. weight: math.unit(50, "kg"),
  15613. name: "front",
  15614. image: {
  15615. source: "./media/characters/shiroryu/front.svg",
  15616. extra: 1990 / 1935
  15617. }
  15618. },
  15619. },
  15620. [
  15621. {
  15622. name: "Mortal Mingling",
  15623. height: math.unit(3, "meters")
  15624. },
  15625. {
  15626. name: "Kaiju-ish",
  15627. height: math.unit(250, "meters")
  15628. },
  15629. {
  15630. name: "Somewhat Godly",
  15631. height: math.unit(400, "km"),
  15632. default: true
  15633. },
  15634. {
  15635. name: "Planetary",
  15636. height: math.unit(300, "megameters")
  15637. },
  15638. {
  15639. name: "Galaxy-dwarfing",
  15640. height: math.unit(450, "kiloparsecs")
  15641. },
  15642. {
  15643. name: "Universe Eater",
  15644. height: math.unit(150, "gigaparsecs")
  15645. },
  15646. {
  15647. name: "Almost Immeasurable",
  15648. height: math.unit(1.3e266, "yottaparsecs")
  15649. },
  15650. ]
  15651. ))
  15652. characterMakers.push(() => makeCharacter(
  15653. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15654. {
  15655. front: {
  15656. height: math.unit(6, "feet"),
  15657. weight: math.unit(150, "lb"),
  15658. name: "Front",
  15659. image: {
  15660. source: "./media/characters/umeko/front.svg",
  15661. extra: 1,
  15662. bottom: 0.019
  15663. }
  15664. },
  15665. frontArmored: {
  15666. height: math.unit(6, "feet"),
  15667. weight: math.unit(150, "lb"),
  15668. name: "Front (Armored)",
  15669. image: {
  15670. source: "./media/characters/umeko/front-armored.svg",
  15671. extra: 1,
  15672. bottom: 0.021
  15673. }
  15674. },
  15675. },
  15676. [
  15677. {
  15678. name: "Macro",
  15679. height: math.unit(220, "feet"),
  15680. default: true
  15681. },
  15682. {
  15683. name: "Guardian Dragon",
  15684. height: math.unit(50, "miles")
  15685. },
  15686. {
  15687. name: "Cosmic",
  15688. height: math.unit(800000, "miles")
  15689. },
  15690. ]
  15691. ))
  15692. characterMakers.push(() => makeCharacter(
  15693. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15694. {
  15695. front: {
  15696. height: math.unit(6, "feet"),
  15697. weight: math.unit(150, "lb"),
  15698. name: "Front",
  15699. image: {
  15700. source: "./media/characters/cassidy/front.svg",
  15701. extra: 810/808,
  15702. bottom: 41/851
  15703. }
  15704. },
  15705. },
  15706. [
  15707. {
  15708. name: "Canon Height",
  15709. height: math.unit(120, "feet"),
  15710. default: true
  15711. },
  15712. {
  15713. name: "Macro+",
  15714. height: math.unit(400, "feet")
  15715. },
  15716. {
  15717. name: "Macro++",
  15718. height: math.unit(4000, "feet")
  15719. },
  15720. {
  15721. name: "Megamacro",
  15722. height: math.unit(3, "miles")
  15723. },
  15724. ]
  15725. ))
  15726. characterMakers.push(() => makeCharacter(
  15727. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15728. {
  15729. front: {
  15730. height: math.unit(6, "feet"),
  15731. weight: math.unit(150, "lb"),
  15732. name: "Front",
  15733. image: {
  15734. source: "./media/characters/isaac/front.svg",
  15735. extra: 896 / 815,
  15736. bottom: 0.11
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Human Size",
  15743. height: math.unit(8, "feet"),
  15744. default: true
  15745. },
  15746. {
  15747. name: "Macro",
  15748. height: math.unit(400, "feet")
  15749. },
  15750. {
  15751. name: "Megamacro",
  15752. height: math.unit(50, "miles")
  15753. },
  15754. {
  15755. name: "Canon Height",
  15756. height: math.unit(200, "AU")
  15757. },
  15758. ]
  15759. ))
  15760. characterMakers.push(() => makeCharacter(
  15761. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15762. {
  15763. front: {
  15764. height: math.unit(6, "feet"),
  15765. weight: math.unit(72, "kg"),
  15766. name: "Front",
  15767. image: {
  15768. source: "./media/characters/sleekit/front.svg",
  15769. extra: 4693 / 4487,
  15770. bottom: 0.012
  15771. }
  15772. },
  15773. },
  15774. [
  15775. {
  15776. name: "Minimum Height",
  15777. height: math.unit(10, "meters")
  15778. },
  15779. {
  15780. name: "Smaller",
  15781. height: math.unit(25, "meters")
  15782. },
  15783. {
  15784. name: "Larger",
  15785. height: math.unit(38, "meters"),
  15786. default: true
  15787. },
  15788. {
  15789. name: "Maximum height",
  15790. height: math.unit(100, "meters")
  15791. },
  15792. ]
  15793. ))
  15794. characterMakers.push(() => makeCharacter(
  15795. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15796. {
  15797. front: {
  15798. height: math.unit(6, "feet"),
  15799. weight: math.unit(150, "lb"),
  15800. name: "Front",
  15801. image: {
  15802. source: "./media/characters/nillia/front.svg",
  15803. extra: 719/665,
  15804. bottom: 6/725
  15805. }
  15806. },
  15807. back: {
  15808. height: math.unit(6, "feet"),
  15809. weight: math.unit(150, "lb"),
  15810. name: "Back",
  15811. image: {
  15812. source: "./media/characters/nillia/back.svg",
  15813. extra: 705/651,
  15814. bottom: 5/710
  15815. }
  15816. },
  15817. },
  15818. [
  15819. {
  15820. name: "Canon Height",
  15821. height: math.unit(489, "feet"),
  15822. default: true
  15823. }
  15824. ]
  15825. ))
  15826. characterMakers.push(() => makeCharacter(
  15827. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15828. {
  15829. front: {
  15830. height: math.unit(6, "feet"),
  15831. weight: math.unit(150, "lb"),
  15832. name: "Front",
  15833. image: {
  15834. source: "./media/characters/mesmyriza/front.svg",
  15835. extra: 1541/1291,
  15836. bottom: 87/1628
  15837. }
  15838. },
  15839. foot: {
  15840. height: math.unit(6 / (250 / 35), "feet"),
  15841. name: "Foot",
  15842. image: {
  15843. source: "./media/characters/mesmyriza/foot.svg"
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Macro",
  15850. height: math.unit(457, "meters"),
  15851. default: true
  15852. },
  15853. {
  15854. name: "Megamacro",
  15855. height: math.unit(8, "megameters")
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15861. {
  15862. front: {
  15863. height: math.unit(6, "feet"),
  15864. weight: math.unit(250, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/saudade/front.svg",
  15868. extra: 1172 / 1139,
  15869. bottom: 0.035
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Micro",
  15876. height: math.unit(3, "inches")
  15877. },
  15878. {
  15879. name: "Normal",
  15880. height: math.unit(6, "feet"),
  15881. default: true
  15882. },
  15883. {
  15884. name: "Macro",
  15885. height: math.unit(50, "feet")
  15886. },
  15887. {
  15888. name: "Megamacro",
  15889. height: math.unit(2800, "feet")
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(5 + 4 / 12, "feet"),
  15898. weight: math.unit(100, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/keireer/front.svg",
  15902. extra: 716 / 666,
  15903. bottom: 0.05
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Normal",
  15910. height: math.unit(5 + 4 / 12, "feet"),
  15911. default: true
  15912. },
  15913. ]
  15914. ))
  15915. characterMakers.push(() => makeCharacter(
  15916. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15917. {
  15918. front: {
  15919. height: math.unit(5.5, "feet"),
  15920. weight: math.unit(90, "kg"),
  15921. name: "Front",
  15922. image: {
  15923. source: "./media/characters/mirja/front.svg",
  15924. extra: 1452/1262,
  15925. bottom: 67/1519
  15926. }
  15927. },
  15928. frontDressed: {
  15929. height: math.unit(5.5, "feet"),
  15930. weight: math.unit(90, "lb"),
  15931. name: "Front (Dressed)",
  15932. image: {
  15933. source: "./media/characters/mirja/dressed.svg",
  15934. extra: 1452/1262,
  15935. bottom: 67/1519
  15936. }
  15937. },
  15938. back: {
  15939. height: math.unit(6, "feet"),
  15940. weight: math.unit(90, "lb"),
  15941. name: "Back",
  15942. image: {
  15943. source: "./media/characters/mirja/back.svg",
  15944. extra: 1892/1795,
  15945. bottom: 48/1940
  15946. }
  15947. },
  15948. maw: {
  15949. height: math.unit(1.312, "feet"),
  15950. name: "Maw",
  15951. image: {
  15952. source: "./media/characters/mirja/maw.svg"
  15953. }
  15954. },
  15955. paw: {
  15956. height: math.unit(1.15, "feet"),
  15957. name: "Paw",
  15958. image: {
  15959. source: "./media/characters/mirja/paw.svg"
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "\"Incognito\"",
  15966. height: math.unit(3, "meters")
  15967. },
  15968. {
  15969. name: "Strolling Size",
  15970. height: math.unit(15, "km")
  15971. },
  15972. {
  15973. name: "Larger Strolling Size",
  15974. height: math.unit(400, "km")
  15975. },
  15976. {
  15977. name: "Preferred Size",
  15978. height: math.unit(5000, "km"),
  15979. default: true
  15980. },
  15981. {
  15982. name: "True Size",
  15983. height: math.unit(30657809462086840000000000000000, "parsecs"),
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(15, "feet"),
  15992. weight: math.unit(880, "kg"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/nightraver/front.svg",
  15996. extra: 2444 / 2160,
  15997. bottom: 0.027
  15998. }
  15999. },
  16000. back: {
  16001. height: math.unit(15, "feet"),
  16002. weight: math.unit(880, "kg"),
  16003. name: "Back",
  16004. image: {
  16005. source: "./media/characters/nightraver/back.svg",
  16006. extra: 2309 / 2180,
  16007. bottom: 0.005
  16008. }
  16009. },
  16010. sole: {
  16011. height: math.unit(2.878, "feet"),
  16012. name: "Sole",
  16013. image: {
  16014. source: "./media/characters/nightraver/sole.svg"
  16015. }
  16016. },
  16017. foot: {
  16018. height: math.unit(2.285, "feet"),
  16019. name: "Foot",
  16020. image: {
  16021. source: "./media/characters/nightraver/foot.svg"
  16022. }
  16023. },
  16024. maw: {
  16025. height: math.unit(2.67, "feet"),
  16026. name: "Maw",
  16027. image: {
  16028. source: "./media/characters/nightraver/maw.svg"
  16029. }
  16030. },
  16031. },
  16032. [
  16033. {
  16034. name: "Micro",
  16035. height: math.unit(1, "cm")
  16036. },
  16037. {
  16038. name: "Normal",
  16039. height: math.unit(15, "feet"),
  16040. default: true
  16041. },
  16042. {
  16043. name: "Macro",
  16044. height: math.unit(300, "feet")
  16045. },
  16046. {
  16047. name: "Megamacro",
  16048. height: math.unit(300, "miles")
  16049. },
  16050. {
  16051. name: "Gigamacro",
  16052. height: math.unit(10000, "miles")
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16058. {
  16059. side: {
  16060. height: math.unit(2, "inches"),
  16061. weight: math.unit(5, "grams"),
  16062. name: "Side",
  16063. image: {
  16064. source: "./media/characters/arc/side.svg"
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Micro",
  16071. height: math.unit(2, "inches"),
  16072. default: true
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(1.1938, "meters"),
  16081. weight: math.unit(54, "kg"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/nebula-shahar/front.svg",
  16085. extra: 1642 / 1436,
  16086. bottom: 0.06
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Megamicro",
  16093. height: math.unit(0.3, "mm")
  16094. },
  16095. {
  16096. name: "Micro",
  16097. height: math.unit(3, "cm")
  16098. },
  16099. {
  16100. name: "Normal",
  16101. height: math.unit(138, "cm"),
  16102. default: true
  16103. },
  16104. {
  16105. name: "Macro",
  16106. height: math.unit(30, "m")
  16107. },
  16108. ]
  16109. ))
  16110. characterMakers.push(() => makeCharacter(
  16111. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16112. {
  16113. front: {
  16114. height: math.unit(5.24, "feet"),
  16115. weight: math.unit(150, "lb"),
  16116. name: "Front",
  16117. image: {
  16118. source: "./media/characters/shayla/front.svg",
  16119. extra: 1512 / 1414,
  16120. bottom: 0.01
  16121. }
  16122. },
  16123. back: {
  16124. height: math.unit(5.24, "feet"),
  16125. weight: math.unit(150, "lb"),
  16126. name: "Back",
  16127. image: {
  16128. source: "./media/characters/shayla/back.svg",
  16129. extra: 1512 / 1414
  16130. }
  16131. },
  16132. hand: {
  16133. height: math.unit(0.7781496062992126, "feet"),
  16134. name: "Hand",
  16135. image: {
  16136. source: "./media/characters/shayla/hand.svg"
  16137. }
  16138. },
  16139. foot: {
  16140. height: math.unit(1.4206036745406823, "feet"),
  16141. name: "Foot",
  16142. image: {
  16143. source: "./media/characters/shayla/foot.svg"
  16144. }
  16145. },
  16146. },
  16147. [
  16148. {
  16149. name: "Micro",
  16150. height: math.unit(0.32, "feet")
  16151. },
  16152. {
  16153. name: "Normal",
  16154. height: math.unit(5.24, "feet"),
  16155. default: true
  16156. },
  16157. {
  16158. name: "Macro",
  16159. height: math.unit(492.12, "feet")
  16160. },
  16161. {
  16162. name: "Megamacro",
  16163. height: math.unit(186.41, "miles")
  16164. },
  16165. ]
  16166. ))
  16167. characterMakers.push(() => makeCharacter(
  16168. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16169. {
  16170. front: {
  16171. height: math.unit(2.2, "m"),
  16172. weight: math.unit(120, "kg"),
  16173. name: "Front",
  16174. image: {
  16175. source: "./media/characters/pia-jr/front.svg",
  16176. extra: 1000 / 970,
  16177. bottom: 0.035
  16178. }
  16179. },
  16180. hand: {
  16181. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16182. name: "Hand",
  16183. image: {
  16184. source: "./media/characters/pia-jr/hand.svg"
  16185. }
  16186. },
  16187. paw: {
  16188. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16189. name: "Paw",
  16190. image: {
  16191. source: "./media/characters/pia-jr/paw.svg"
  16192. }
  16193. },
  16194. },
  16195. [
  16196. {
  16197. name: "Micro",
  16198. height: math.unit(1.2, "cm")
  16199. },
  16200. {
  16201. name: "Normal",
  16202. height: math.unit(2.2, "m"),
  16203. default: true
  16204. },
  16205. {
  16206. name: "Macro",
  16207. height: math.unit(180, "m")
  16208. },
  16209. {
  16210. name: "Megamacro",
  16211. height: math.unit(420, "km")
  16212. },
  16213. ]
  16214. ))
  16215. characterMakers.push(() => makeCharacter(
  16216. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16217. {
  16218. front: {
  16219. height: math.unit(2, "m"),
  16220. weight: math.unit(115, "kg"),
  16221. name: "Front",
  16222. image: {
  16223. source: "./media/characters/pia-sr/front.svg",
  16224. extra: 760 / 730,
  16225. bottom: 0.015
  16226. }
  16227. },
  16228. back: {
  16229. height: math.unit(2, "m"),
  16230. weight: math.unit(115, "kg"),
  16231. name: "Back",
  16232. image: {
  16233. source: "./media/characters/pia-sr/back.svg",
  16234. extra: 760 / 730,
  16235. bottom: 0.01
  16236. }
  16237. },
  16238. hand: {
  16239. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16240. name: "Hand",
  16241. image: {
  16242. source: "./media/characters/pia-sr/hand.svg"
  16243. }
  16244. },
  16245. foot: {
  16246. height: math.unit(1.83, "feet"),
  16247. name: "Foot",
  16248. image: {
  16249. source: "./media/characters/pia-sr/foot.svg"
  16250. }
  16251. },
  16252. },
  16253. [
  16254. {
  16255. name: "Micro",
  16256. height: math.unit(88, "mm")
  16257. },
  16258. {
  16259. name: "Normal",
  16260. height: math.unit(2, "m"),
  16261. default: true
  16262. },
  16263. {
  16264. name: "Macro",
  16265. height: math.unit(200, "m")
  16266. },
  16267. {
  16268. name: "Megamacro",
  16269. height: math.unit(420, "km")
  16270. },
  16271. ]
  16272. ))
  16273. characterMakers.push(() => makeCharacter(
  16274. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16275. {
  16276. front: {
  16277. height: math.unit(8 + 2 / 12, "feet"),
  16278. weight: math.unit(300, "lb"),
  16279. name: "Front",
  16280. image: {
  16281. source: "./media/characters/kibibyte/front.svg",
  16282. extra: 2221 / 2098,
  16283. bottom: 0.04
  16284. }
  16285. },
  16286. },
  16287. [
  16288. {
  16289. name: "Normal",
  16290. height: math.unit(8 + 2 / 12, "feet"),
  16291. default: true
  16292. },
  16293. {
  16294. name: "Socialable Macro",
  16295. height: math.unit(50, "feet")
  16296. },
  16297. {
  16298. name: "Macro",
  16299. height: math.unit(300, "feet")
  16300. },
  16301. {
  16302. name: "Megamacro",
  16303. height: math.unit(500, "miles")
  16304. },
  16305. ]
  16306. ))
  16307. characterMakers.push(() => makeCharacter(
  16308. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16309. {
  16310. front: {
  16311. height: math.unit(6, "feet"),
  16312. weight: math.unit(150, "lb"),
  16313. name: "Front",
  16314. image: {
  16315. source: "./media/characters/felix/front.svg",
  16316. extra: 762 / 722,
  16317. bottom: 0.02
  16318. }
  16319. },
  16320. frontClothed: {
  16321. height: math.unit(6, "feet"),
  16322. weight: math.unit(150, "lb"),
  16323. name: "Front (Clothed)",
  16324. image: {
  16325. source: "./media/characters/felix/front-clothed.svg",
  16326. extra: 762 / 722,
  16327. bottom: 0.02
  16328. }
  16329. },
  16330. },
  16331. [
  16332. {
  16333. name: "Normal",
  16334. height: math.unit(6 + 8 / 12, "feet"),
  16335. default: true
  16336. },
  16337. {
  16338. name: "Macro",
  16339. height: math.unit(2600, "feet")
  16340. },
  16341. {
  16342. name: "Megamacro",
  16343. height: math.unit(450, "miles")
  16344. },
  16345. ]
  16346. ))
  16347. characterMakers.push(() => makeCharacter(
  16348. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16349. {
  16350. front: {
  16351. height: math.unit(6 + 1 / 12, "feet"),
  16352. weight: math.unit(250, "lb"),
  16353. name: "Front",
  16354. image: {
  16355. source: "./media/characters/tobo/front.svg",
  16356. extra: 608 / 586,
  16357. bottom: 0.023
  16358. }
  16359. },
  16360. back: {
  16361. height: math.unit(6 + 1 / 12, "feet"),
  16362. weight: math.unit(250, "lb"),
  16363. name: "Back",
  16364. image: {
  16365. source: "./media/characters/tobo/back.svg",
  16366. extra: 608 / 586
  16367. }
  16368. },
  16369. },
  16370. [
  16371. {
  16372. name: "Nano",
  16373. height: math.unit(2, "nm")
  16374. },
  16375. {
  16376. name: "Megamicro",
  16377. height: math.unit(0.1, "mm")
  16378. },
  16379. {
  16380. name: "Micro",
  16381. height: math.unit(1, "inch"),
  16382. default: true
  16383. },
  16384. {
  16385. name: "Human-sized",
  16386. height: math.unit(6 + 1 / 12, "feet")
  16387. },
  16388. {
  16389. name: "Macro",
  16390. height: math.unit(250, "feet")
  16391. },
  16392. {
  16393. name: "Megamacro",
  16394. height: math.unit(75, "miles")
  16395. },
  16396. {
  16397. name: "Texas-sized",
  16398. height: math.unit(750, "miles")
  16399. },
  16400. {
  16401. name: "Teramacro",
  16402. height: math.unit(50000, "miles")
  16403. },
  16404. ]
  16405. ))
  16406. characterMakers.push(() => makeCharacter(
  16407. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16408. {
  16409. front: {
  16410. height: math.unit(6, "feet"),
  16411. weight: math.unit(269, "lb"),
  16412. name: "Front",
  16413. image: {
  16414. source: "./media/characters/danny-kapowsky/front.svg",
  16415. extra: 766 / 736,
  16416. bottom: 0.044
  16417. }
  16418. },
  16419. back: {
  16420. height: math.unit(6, "feet"),
  16421. weight: math.unit(269, "lb"),
  16422. name: "Back",
  16423. image: {
  16424. source: "./media/characters/danny-kapowsky/back.svg",
  16425. extra: 797 / 760,
  16426. bottom: 0.025
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Macro",
  16433. height: math.unit(150, "feet"),
  16434. default: true
  16435. },
  16436. {
  16437. name: "Macro+",
  16438. height: math.unit(200, "feet")
  16439. },
  16440. {
  16441. name: "Macro++",
  16442. height: math.unit(300, "feet")
  16443. },
  16444. {
  16445. name: "Macro+++",
  16446. height: math.unit(400, "feet")
  16447. },
  16448. ]
  16449. ))
  16450. characterMakers.push(() => makeCharacter(
  16451. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16452. {
  16453. side: {
  16454. height: math.unit(6, "feet"),
  16455. weight: math.unit(170, "lb"),
  16456. name: "Side",
  16457. image: {
  16458. source: "./media/characters/finn/side.svg",
  16459. extra: 1953 / 1807,
  16460. bottom: 0.057
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Megamacro",
  16467. height: math.unit(14445, "feet"),
  16468. default: true
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16474. {
  16475. front: {
  16476. height: math.unit(5 + 6 / 12, "feet"),
  16477. weight: math.unit(125, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/roy/front.svg",
  16481. extra: 1,
  16482. bottom: 0.11
  16483. }
  16484. },
  16485. },
  16486. [
  16487. {
  16488. name: "Micro",
  16489. height: math.unit(3, "inches"),
  16490. default: true
  16491. },
  16492. {
  16493. name: "Normal",
  16494. height: math.unit(5 + 6 / 12, "feet")
  16495. },
  16496. {
  16497. name: "Lesser Macro",
  16498. height: math.unit(60, "feet")
  16499. },
  16500. {
  16501. name: "Greater Macro",
  16502. height: math.unit(120, "feet")
  16503. },
  16504. ]
  16505. ))
  16506. characterMakers.push(() => makeCharacter(
  16507. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16508. {
  16509. front: {
  16510. height: math.unit(6, "feet"),
  16511. weight: math.unit(100, "lb"),
  16512. name: "Front",
  16513. image: {
  16514. source: "./media/characters/aevsivs/front.svg",
  16515. extra: 1,
  16516. bottom: 0.03
  16517. }
  16518. },
  16519. back: {
  16520. height: math.unit(6, "feet"),
  16521. weight: math.unit(100, "lb"),
  16522. name: "Back",
  16523. image: {
  16524. source: "./media/characters/aevsivs/back.svg"
  16525. }
  16526. },
  16527. },
  16528. [
  16529. {
  16530. name: "Micro",
  16531. height: math.unit(2, "inches"),
  16532. default: true
  16533. },
  16534. {
  16535. name: "Normal",
  16536. height: math.unit(5, "feet")
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16542. {
  16543. front: {
  16544. height: math.unit(5 + 7 / 12, "feet"),
  16545. weight: math.unit(159, "lb"),
  16546. name: "Front",
  16547. image: {
  16548. source: "./media/characters/hildegard/front.svg",
  16549. extra: 289 / 269,
  16550. bottom: 7.63 / 297.8
  16551. }
  16552. },
  16553. back: {
  16554. height: math.unit(5 + 7 / 12, "feet"),
  16555. weight: math.unit(159, "lb"),
  16556. name: "Back",
  16557. image: {
  16558. source: "./media/characters/hildegard/back.svg",
  16559. extra: 280 / 260,
  16560. bottom: 2.3 / 282
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(5 + 7 / 12, "feet"),
  16568. default: true
  16569. },
  16570. ]
  16571. ))
  16572. characterMakers.push(() => makeCharacter(
  16573. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16574. {
  16575. bernard: {
  16576. height: math.unit(2 + 7 / 12, "feet"),
  16577. weight: math.unit(66, "lb"),
  16578. name: "Bernard",
  16579. rename: true,
  16580. image: {
  16581. source: "./media/characters/bernard-wilder/bernard.svg",
  16582. extra: 192 / 128,
  16583. bottom: 0.05
  16584. }
  16585. },
  16586. wilder: {
  16587. height: math.unit(5 + 8 / 12, "feet"),
  16588. weight: math.unit(143, "lb"),
  16589. name: "Wilder",
  16590. rename: true,
  16591. image: {
  16592. source: "./media/characters/bernard-wilder/wilder.svg",
  16593. extra: 361 / 312,
  16594. bottom: 0.02
  16595. }
  16596. },
  16597. },
  16598. [
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(2 + 7 / 12, "feet"),
  16602. default: true
  16603. },
  16604. ]
  16605. ))
  16606. characterMakers.push(() => makeCharacter(
  16607. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16608. {
  16609. anthro: {
  16610. height: math.unit(6 + 1 / 12, "feet"),
  16611. weight: math.unit(155, "lb"),
  16612. name: "Anthro",
  16613. image: {
  16614. source: "./media/characters/hearth/anthro.svg",
  16615. extra: 1178/1136,
  16616. bottom: 28/1206
  16617. }
  16618. },
  16619. feral: {
  16620. height: math.unit(3.78, "feet"),
  16621. weight: math.unit(35, "kg"),
  16622. name: "Feral",
  16623. image: {
  16624. source: "./media/characters/hearth/feral.svg",
  16625. extra: 153 / 135,
  16626. bottom: 0.03
  16627. }
  16628. },
  16629. },
  16630. [
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(6 + 1 / 12, "feet"),
  16634. default: true
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(6, "feet"),
  16643. weight: math.unit(182, "lb"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/ingrid/front.svg",
  16647. extra: 294 / 268,
  16648. bottom: 0.027
  16649. }
  16650. },
  16651. },
  16652. [
  16653. {
  16654. name: "Normal",
  16655. height: math.unit(6, "feet"),
  16656. default: true
  16657. },
  16658. ]
  16659. ))
  16660. characterMakers.push(() => makeCharacter(
  16661. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16662. {
  16663. eevee: {
  16664. height: math.unit(2 + 10 / 12, "feet"),
  16665. weight: math.unit(86, "lb"),
  16666. name: "Malgam",
  16667. image: {
  16668. source: "./media/characters/malgam/eevee.svg",
  16669. extra: 952/784,
  16670. bottom: 38/990
  16671. }
  16672. },
  16673. sylveon: {
  16674. height: math.unit(4, "feet"),
  16675. weight: math.unit(101, "lb"),
  16676. name: "Future Malgam",
  16677. rename: true,
  16678. image: {
  16679. source: "./media/characters/malgam/sylveon.svg",
  16680. extra: 371 / 325,
  16681. bottom: 0.015
  16682. }
  16683. },
  16684. gigantamax: {
  16685. height: math.unit(50, "feet"),
  16686. name: "Gigantamax Malgam",
  16687. rename: true,
  16688. image: {
  16689. source: "./media/characters/malgam/gigantamax.svg"
  16690. }
  16691. },
  16692. },
  16693. [
  16694. {
  16695. name: "Normal",
  16696. height: math.unit(2 + 10 / 12, "feet"),
  16697. default: true
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(5 + 11 / 12, "feet"),
  16706. weight: math.unit(188, "lb"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/fleur/front.svg",
  16710. extra: 309 / 283,
  16711. bottom: 0.007
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Normal",
  16718. height: math.unit(5 + 11 / 12, "feet"),
  16719. default: true
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16725. {
  16726. front: {
  16727. height: math.unit(5 + 4 / 12, "feet"),
  16728. weight: math.unit(122, "lb"),
  16729. name: "Front",
  16730. image: {
  16731. source: "./media/characters/jude/front.svg",
  16732. extra: 288 / 273,
  16733. bottom: 0.03
  16734. }
  16735. },
  16736. },
  16737. [
  16738. {
  16739. name: "Normal",
  16740. height: math.unit(5 + 4 / 12, "feet"),
  16741. default: true
  16742. },
  16743. ]
  16744. ))
  16745. characterMakers.push(() => makeCharacter(
  16746. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16747. {
  16748. front: {
  16749. height: math.unit(5 + 11 / 12, "feet"),
  16750. weight: math.unit(190, "lb"),
  16751. name: "Front",
  16752. image: {
  16753. source: "./media/characters/seara/front.svg",
  16754. extra: 1,
  16755. bottom: 0.05
  16756. }
  16757. },
  16758. },
  16759. [
  16760. {
  16761. name: "Normal",
  16762. height: math.unit(5 + 11 / 12, "feet"),
  16763. default: true
  16764. },
  16765. ]
  16766. ))
  16767. characterMakers.push(() => makeCharacter(
  16768. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16769. {
  16770. front: {
  16771. height: math.unit(16 + 5 / 12, "feet"),
  16772. weight: math.unit(524, "lb"),
  16773. name: "Front",
  16774. image: {
  16775. source: "./media/characters/caspian-lugia/front.svg",
  16776. extra: 1,
  16777. bottom: 0.04
  16778. }
  16779. },
  16780. },
  16781. [
  16782. {
  16783. name: "Normal",
  16784. height: math.unit(16 + 5 / 12, "feet"),
  16785. default: true
  16786. },
  16787. ]
  16788. ))
  16789. characterMakers.push(() => makeCharacter(
  16790. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16791. {
  16792. front: {
  16793. height: math.unit(5 + 7 / 12, "feet"),
  16794. weight: math.unit(170, "lb"),
  16795. name: "Front",
  16796. image: {
  16797. source: "./media/characters/mika/front.svg",
  16798. extra: 1,
  16799. bottom: 0.016
  16800. }
  16801. },
  16802. },
  16803. [
  16804. {
  16805. name: "Normal",
  16806. height: math.unit(5 + 7 / 12, "feet"),
  16807. default: true
  16808. },
  16809. ]
  16810. ))
  16811. characterMakers.push(() => makeCharacter(
  16812. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16813. {
  16814. front: {
  16815. height: math.unit(6 + 2 / 12, "feet"),
  16816. weight: math.unit(268, "lb"),
  16817. name: "Front",
  16818. image: {
  16819. source: "./media/characters/sol/front.svg",
  16820. extra: 247 / 231,
  16821. bottom: 0.05
  16822. }
  16823. },
  16824. },
  16825. [
  16826. {
  16827. name: "Normal",
  16828. height: math.unit(6 + 2 / 12, "feet"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16835. {
  16836. buizel: {
  16837. height: math.unit(2 + 5 / 12, "feet"),
  16838. weight: math.unit(87, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/umiko/buizel.svg",
  16842. extra: 172 / 157,
  16843. bottom: 0.01
  16844. },
  16845. form: "buizel",
  16846. default: true
  16847. },
  16848. floatzel: {
  16849. height: math.unit(5 + 9 / 12, "feet"),
  16850. weight: math.unit(250, "lb"),
  16851. name: "Front",
  16852. image: {
  16853. source: "./media/characters/umiko/floatzel.svg",
  16854. extra: 1076/1006,
  16855. bottom: 15/1091
  16856. },
  16857. form: "floatzel",
  16858. default: true
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(2 + 5 / 12, "feet"),
  16865. form: "buizel",
  16866. default: true
  16867. },
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(5 + 9 / 12, "feet"),
  16871. form: "floatzel",
  16872. default: true
  16873. },
  16874. ],
  16875. {
  16876. "buizel": {
  16877. name: "Buizel"
  16878. },
  16879. "floatzel": {
  16880. name: "Floatzel",
  16881. default: true
  16882. }
  16883. }
  16884. ))
  16885. characterMakers.push(() => makeCharacter(
  16886. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16887. {
  16888. front: {
  16889. height: math.unit(6 + 2 / 12, "feet"),
  16890. weight: math.unit(146, "lb"),
  16891. name: "Front",
  16892. image: {
  16893. source: "./media/characters/iliac/front.svg",
  16894. extra: 389 / 365,
  16895. bottom: 0.035
  16896. }
  16897. },
  16898. },
  16899. [
  16900. {
  16901. name: "Normal",
  16902. height: math.unit(6 + 2 / 12, "feet"),
  16903. default: true
  16904. },
  16905. ]
  16906. ))
  16907. characterMakers.push(() => makeCharacter(
  16908. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16909. {
  16910. front: {
  16911. height: math.unit(6, "feet"),
  16912. weight: math.unit(170, "lb"),
  16913. name: "Front",
  16914. image: {
  16915. source: "./media/characters/topaz/front.svg",
  16916. extra: 317 / 303,
  16917. bottom: 0.055
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Normal",
  16924. height: math.unit(6, "feet"),
  16925. default: true
  16926. },
  16927. ]
  16928. ))
  16929. characterMakers.push(() => makeCharacter(
  16930. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16931. {
  16932. front: {
  16933. height: math.unit(5 + 11 / 12, "feet"),
  16934. weight: math.unit(144, "lb"),
  16935. name: "Front",
  16936. image: {
  16937. source: "./media/characters/gabriel/front.svg",
  16938. extra: 285 / 262,
  16939. bottom: 0.004
  16940. }
  16941. },
  16942. },
  16943. [
  16944. {
  16945. name: "Normal",
  16946. height: math.unit(5 + 11 / 12, "feet"),
  16947. default: true
  16948. },
  16949. ]
  16950. ))
  16951. characterMakers.push(() => makeCharacter(
  16952. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  16953. {
  16954. side: {
  16955. height: math.unit(6 + 5 / 12, "feet"),
  16956. weight: math.unit(300, "lb"),
  16957. name: "Side",
  16958. image: {
  16959. source: "./media/characters/tempest-suicune/side.svg",
  16960. extra: 195 / 154,
  16961. bottom: 0.04
  16962. }
  16963. },
  16964. },
  16965. [
  16966. {
  16967. name: "Normal",
  16968. height: math.unit(6 + 5 / 12, "feet"),
  16969. default: true
  16970. },
  16971. ]
  16972. ))
  16973. characterMakers.push(() => makeCharacter(
  16974. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  16975. {
  16976. front: {
  16977. height: math.unit(7 + 2 / 12, "feet"),
  16978. weight: math.unit(322, "lb"),
  16979. name: "Front",
  16980. image: {
  16981. source: "./media/characters/vulcan/front.svg",
  16982. extra: 154 / 147,
  16983. bottom: 0.04
  16984. }
  16985. },
  16986. },
  16987. [
  16988. {
  16989. name: "Normal",
  16990. height: math.unit(7 + 2 / 12, "feet"),
  16991. default: true
  16992. },
  16993. ]
  16994. ))
  16995. characterMakers.push(() => makeCharacter(
  16996. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  16997. {
  16998. front: {
  16999. height: math.unit(5 + 10 / 12, "feet"),
  17000. weight: math.unit(264, "lb"),
  17001. name: "Front",
  17002. image: {
  17003. source: "./media/characters/gault/front.svg",
  17004. extra: 161 / 140,
  17005. bottom: 0.028
  17006. }
  17007. },
  17008. },
  17009. [
  17010. {
  17011. name: "Normal",
  17012. height: math.unit(5 + 10 / 12, "feet"),
  17013. default: true
  17014. },
  17015. ]
  17016. ))
  17017. characterMakers.push(() => makeCharacter(
  17018. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17019. {
  17020. front: {
  17021. height: math.unit(6, "feet"),
  17022. weight: math.unit(150, "lb"),
  17023. name: "Front",
  17024. image: {
  17025. source: "./media/characters/shard/front.svg",
  17026. extra: 273 / 238,
  17027. bottom: 0.02
  17028. }
  17029. },
  17030. },
  17031. [
  17032. {
  17033. name: "Normal",
  17034. height: math.unit(3 + 6 / 12, "feet"),
  17035. default: true
  17036. },
  17037. ]
  17038. ))
  17039. characterMakers.push(() => makeCharacter(
  17040. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17041. {
  17042. front: {
  17043. height: math.unit(5 + 11 / 12, "feet"),
  17044. weight: math.unit(146, "lb"),
  17045. name: "Front",
  17046. image: {
  17047. source: "./media/characters/ashe/front.svg",
  17048. extra: 400 / 373,
  17049. bottom: 0.01
  17050. }
  17051. },
  17052. },
  17053. [
  17054. {
  17055. name: "Normal",
  17056. height: math.unit(5 + 11 / 12, "feet"),
  17057. default: true
  17058. },
  17059. ]
  17060. ))
  17061. characterMakers.push(() => makeCharacter(
  17062. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17063. {
  17064. front: {
  17065. height: math.unit(5 + 5 / 12, "feet"),
  17066. weight: math.unit(135, "lb"),
  17067. name: "Front",
  17068. image: {
  17069. source: "./media/characters/beatrix/front.svg",
  17070. extra: 392 / 379,
  17071. bottom: 0.01
  17072. }
  17073. },
  17074. },
  17075. [
  17076. {
  17077. name: "Normal",
  17078. height: math.unit(6, "feet"),
  17079. default: true
  17080. },
  17081. ]
  17082. ))
  17083. characterMakers.push(() => makeCharacter(
  17084. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17085. {
  17086. front: {
  17087. height: math.unit(6 + 2/12, "feet"),
  17088. weight: math.unit(135, "lb"),
  17089. name: "Front",
  17090. image: {
  17091. source: "./media/characters/ignatius/front.svg",
  17092. extra: 1380/1259,
  17093. bottom: 27/1407
  17094. }
  17095. },
  17096. },
  17097. [
  17098. {
  17099. name: "Normal",
  17100. height: math.unit(6 + 2/12, "feet"),
  17101. default: true
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17107. {
  17108. front: {
  17109. height: math.unit(6 + 2 / 12, "feet"),
  17110. weight: math.unit(138, "lb"),
  17111. name: "Front",
  17112. image: {
  17113. source: "./media/characters/mei-li/front.svg",
  17114. extra: 237 / 229,
  17115. bottom: 0.03
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Normal",
  17122. height: math.unit(6 + 2 / 12, "feet"),
  17123. default: true
  17124. },
  17125. ]
  17126. ))
  17127. characterMakers.push(() => makeCharacter(
  17128. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17129. {
  17130. front: {
  17131. height: math.unit(2 + 4 / 12, "feet"),
  17132. weight: math.unit(62, "lb"),
  17133. name: "Front",
  17134. image: {
  17135. source: "./media/characters/puru/front.svg",
  17136. extra: 206 / 149,
  17137. bottom: 0.06
  17138. }
  17139. },
  17140. },
  17141. [
  17142. {
  17143. name: "Normal",
  17144. height: math.unit(2 + 4 / 12, "feet"),
  17145. default: true
  17146. },
  17147. ]
  17148. ))
  17149. characterMakers.push(() => makeCharacter(
  17150. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17151. {
  17152. anthro: {
  17153. height: math.unit(5 + 8/12, "feet"),
  17154. weight: math.unit(200, "lb"),
  17155. energyNeed: math.unit(2000, "kcal"),
  17156. name: "Anthro",
  17157. image: {
  17158. source: "./media/characters/kee/anthro.svg",
  17159. extra: 3251/3184,
  17160. bottom: 250/3501
  17161. }
  17162. },
  17163. taur: {
  17164. height: math.unit(11, "feet"),
  17165. weight: math.unit(500, "lb"),
  17166. energyNeed: math.unit(5000, "kcal"),
  17167. name: "Taur",
  17168. image: {
  17169. source: "./media/characters/kee/taur.svg",
  17170. extra: 1362/1320,
  17171. bottom: 83/1445
  17172. }
  17173. },
  17174. },
  17175. [
  17176. {
  17177. name: "Normal",
  17178. height: math.unit(5 + 8/12, "feet"),
  17179. default: true
  17180. },
  17181. {
  17182. name: "Macro",
  17183. height: math.unit(35, "feet")
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17189. {
  17190. anthro: {
  17191. height: math.unit(7, "feet"),
  17192. weight: math.unit(190, "lb"),
  17193. name: "Anthro",
  17194. image: {
  17195. source: "./media/characters/cobalt-dracha/anthro.svg",
  17196. extra: 231 / 225,
  17197. bottom: 0.04
  17198. }
  17199. },
  17200. feral: {
  17201. height: math.unit(9 + 7 / 12, "feet"),
  17202. weight: math.unit(294, "lb"),
  17203. name: "Feral",
  17204. image: {
  17205. source: "./media/characters/cobalt-dracha/feral.svg",
  17206. extra: 692 / 633,
  17207. bottom: 0.05
  17208. }
  17209. },
  17210. },
  17211. [
  17212. {
  17213. name: "Normal",
  17214. height: math.unit(7, "feet"),
  17215. default: true
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17221. {
  17222. fallen: {
  17223. height: math.unit(11 + 8 / 12, "feet"),
  17224. weight: math.unit(485, "lb"),
  17225. name: "Java (Fallen)",
  17226. rename: true,
  17227. image: {
  17228. source: "./media/characters/java/fallen.svg",
  17229. extra: 226 / 208,
  17230. bottom: 0.005
  17231. }
  17232. },
  17233. godkin: {
  17234. height: math.unit(10 + 6 / 12, "feet"),
  17235. weight: math.unit(328, "lb"),
  17236. name: "Java (Godkin)",
  17237. rename: true,
  17238. image: {
  17239. source: "./media/characters/java/godkin.svg",
  17240. extra: 1104/1068,
  17241. bottom: 36/1140
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(11 + 8 / 12, "feet"),
  17249. default: true
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17255. {
  17256. front: {
  17257. height: math.unit(5 + 9 / 12, "feet"),
  17258. weight: math.unit(170, "lb"),
  17259. name: "Front",
  17260. image: {
  17261. source: "./media/characters/purna/front.svg",
  17262. extra: 239 / 229,
  17263. bottom: 0.01
  17264. }
  17265. },
  17266. },
  17267. [
  17268. {
  17269. name: "Normal",
  17270. height: math.unit(5 + 9 / 12, "feet"),
  17271. default: true
  17272. },
  17273. ]
  17274. ))
  17275. characterMakers.push(() => makeCharacter(
  17276. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17277. {
  17278. front: {
  17279. height: math.unit(5 + 9 / 12, "feet"),
  17280. weight: math.unit(142, "lb"),
  17281. name: "Front",
  17282. image: {
  17283. source: "./media/characters/kuva/front.svg",
  17284. extra: 281 / 271,
  17285. bottom: 0.006
  17286. }
  17287. },
  17288. },
  17289. [
  17290. {
  17291. name: "Normal",
  17292. height: math.unit(5 + 9 / 12, "feet"),
  17293. default: true
  17294. },
  17295. ]
  17296. ))
  17297. characterMakers.push(() => makeCharacter(
  17298. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17299. {
  17300. anthro: {
  17301. height: math.unit(9 + 2 / 12, "feet"),
  17302. weight: math.unit(270, "lb"),
  17303. name: "Anthro",
  17304. image: {
  17305. source: "./media/characters/embra/anthro.svg",
  17306. extra: 200 / 187,
  17307. bottom: 0.02
  17308. }
  17309. },
  17310. feral: {
  17311. height: math.unit(18 + 8 / 12, "feet"),
  17312. weight: math.unit(576, "lb"),
  17313. name: "Feral",
  17314. image: {
  17315. source: "./media/characters/embra/feral.svg",
  17316. extra: 152 / 137,
  17317. bottom: 0.037
  17318. }
  17319. },
  17320. },
  17321. [
  17322. {
  17323. name: "Normal",
  17324. height: math.unit(9 + 2 / 12, "feet"),
  17325. default: true
  17326. },
  17327. ]
  17328. ))
  17329. characterMakers.push(() => makeCharacter(
  17330. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17331. {
  17332. anthro: {
  17333. height: math.unit(10 + 9 / 12, "feet"),
  17334. weight: math.unit(224, "lb"),
  17335. name: "Anthro",
  17336. image: {
  17337. source: "./media/characters/grottos/anthro.svg",
  17338. extra: 350 / 332,
  17339. bottom: 0.045
  17340. }
  17341. },
  17342. feral: {
  17343. height: math.unit(20 + 7 / 12, "feet"),
  17344. weight: math.unit(629, "lb"),
  17345. name: "Feral",
  17346. image: {
  17347. source: "./media/characters/grottos/feral.svg",
  17348. extra: 207 / 190,
  17349. bottom: 0.05
  17350. }
  17351. },
  17352. },
  17353. [
  17354. {
  17355. name: "Normal",
  17356. height: math.unit(10 + 9 / 12, "feet"),
  17357. default: true
  17358. },
  17359. ]
  17360. ))
  17361. characterMakers.push(() => makeCharacter(
  17362. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17363. {
  17364. anthro: {
  17365. height: math.unit(9 + 6 / 12, "feet"),
  17366. weight: math.unit(298, "lb"),
  17367. name: "Anthro",
  17368. image: {
  17369. source: "./media/characters/frifna/anthro.svg",
  17370. extra: 282 / 269,
  17371. bottom: 0.015
  17372. }
  17373. },
  17374. feral: {
  17375. height: math.unit(16 + 2 / 12, "feet"),
  17376. weight: math.unit(624, "lb"),
  17377. name: "Feral",
  17378. image: {
  17379. source: "./media/characters/frifna/feral.svg"
  17380. }
  17381. },
  17382. },
  17383. [
  17384. {
  17385. name: "Normal",
  17386. height: math.unit(9 + 6 / 12, "feet"),
  17387. default: true
  17388. },
  17389. ]
  17390. ))
  17391. characterMakers.push(() => makeCharacter(
  17392. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17393. {
  17394. front: {
  17395. height: math.unit(6 + 2 / 12, "feet"),
  17396. weight: math.unit(168, "lb"),
  17397. name: "Front",
  17398. image: {
  17399. source: "./media/characters/elise/front.svg",
  17400. extra: 276 / 271
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(6 + 2 / 12, "feet"),
  17408. default: true
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17414. {
  17415. front: {
  17416. height: math.unit(5 + 10 / 12, "feet"),
  17417. weight: math.unit(210, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/glade/front.svg",
  17421. extra: 258 / 247,
  17422. bottom: 0.008
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Normal",
  17429. height: math.unit(5 + 10 / 12, "feet"),
  17430. default: true
  17431. },
  17432. ]
  17433. ))
  17434. characterMakers.push(() => makeCharacter(
  17435. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17436. {
  17437. front: {
  17438. height: math.unit(5 + 10 / 12, "feet"),
  17439. weight: math.unit(129, "lb"),
  17440. name: "Front",
  17441. image: {
  17442. source: "./media/characters/rina/front.svg",
  17443. extra: 266 / 255,
  17444. bottom: 0.005
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(5 + 10 / 12, "feet"),
  17452. default: true
  17453. },
  17454. ]
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17458. {
  17459. front: {
  17460. height: math.unit(6 + 1 / 12, "feet"),
  17461. weight: math.unit(192, "lb"),
  17462. name: "Front",
  17463. image: {
  17464. source: "./media/characters/veronica/front.svg",
  17465. extra: 319 / 309,
  17466. bottom: 0.005
  17467. }
  17468. },
  17469. },
  17470. [
  17471. {
  17472. name: "Normal",
  17473. height: math.unit(6 + 1 / 12, "feet"),
  17474. default: true
  17475. },
  17476. ]
  17477. ))
  17478. characterMakers.push(() => makeCharacter(
  17479. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17480. {
  17481. front: {
  17482. height: math.unit(9 + 3 / 12, "feet"),
  17483. weight: math.unit(1100, "lb"),
  17484. name: "Front",
  17485. image: {
  17486. source: "./media/characters/braxton/front.svg",
  17487. extra: 1057 / 984,
  17488. bottom: 0.05
  17489. }
  17490. },
  17491. },
  17492. [
  17493. {
  17494. name: "Normal",
  17495. height: math.unit(9 + 3 / 12, "feet")
  17496. },
  17497. {
  17498. name: "Giant",
  17499. height: math.unit(300, "feet"),
  17500. default: true
  17501. },
  17502. {
  17503. name: "Macro",
  17504. height: math.unit(700, "feet")
  17505. },
  17506. {
  17507. name: "Megamacro",
  17508. height: math.unit(6000, "feet")
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17514. {
  17515. front: {
  17516. height: math.unit(6 + 7 / 12, "feet"),
  17517. weight: math.unit(150, "lb"),
  17518. name: "Front",
  17519. image: {
  17520. source: "./media/characters/blue-feyonics/front.svg",
  17521. extra: 1403 / 1306,
  17522. bottom: 0.047
  17523. }
  17524. },
  17525. },
  17526. [
  17527. {
  17528. name: "Normal",
  17529. height: math.unit(6 + 7 / 12, "feet"),
  17530. default: true
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17536. {
  17537. front: {
  17538. height: math.unit(1.8, "meters"),
  17539. weight: math.unit(60, "kg"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/maxwell/front.svg",
  17543. extra: 2060 / 1873
  17544. }
  17545. },
  17546. },
  17547. [
  17548. {
  17549. name: "Micro",
  17550. height: math.unit(1, "mm")
  17551. },
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(1.8, "meter"),
  17555. default: true
  17556. },
  17557. {
  17558. name: "Macro",
  17559. height: math.unit(30, "meters")
  17560. },
  17561. {
  17562. name: "Megamacro",
  17563. height: math.unit(10, "km")
  17564. },
  17565. ]
  17566. ))
  17567. characterMakers.push(() => makeCharacter(
  17568. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17569. {
  17570. front: {
  17571. height: math.unit(6, "feet"),
  17572. weight: math.unit(150, "lb"),
  17573. name: "Front",
  17574. image: {
  17575. source: "./media/characters/jack/front.svg",
  17576. extra: 1754 / 1640,
  17577. bottom: 0.01
  17578. }
  17579. },
  17580. },
  17581. [
  17582. {
  17583. name: "Normal",
  17584. height: math.unit(80000, "feet"),
  17585. default: true
  17586. },
  17587. {
  17588. name: "Max size",
  17589. height: math.unit(10, "lightyears")
  17590. },
  17591. ]
  17592. ))
  17593. characterMakers.push(() => makeCharacter(
  17594. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17595. {
  17596. urban: {
  17597. height: math.unit(5, "feet"),
  17598. weight: math.unit(240, "lb"),
  17599. name: "Urban",
  17600. image: {
  17601. source: "./media/characters/cafat/urban.svg",
  17602. extra: 1223/1126,
  17603. bottom: 205/1428
  17604. }
  17605. },
  17606. summer: {
  17607. height: math.unit(5, "feet"),
  17608. weight: math.unit(240, "lb"),
  17609. name: "Summer",
  17610. image: {
  17611. source: "./media/characters/cafat/summer.svg",
  17612. extra: 1223/1126,
  17613. bottom: 205/1428
  17614. }
  17615. },
  17616. winter: {
  17617. height: math.unit(5, "feet"),
  17618. weight: math.unit(240, "lb"),
  17619. name: "Winter",
  17620. image: {
  17621. source: "./media/characters/cafat/winter.svg",
  17622. extra: 1223/1126,
  17623. bottom: 205/1428
  17624. }
  17625. },
  17626. lingerie: {
  17627. height: math.unit(5, "feet"),
  17628. weight: math.unit(240, "lb"),
  17629. name: "Lingerie",
  17630. image: {
  17631. source: "./media/characters/cafat/lingerie.svg",
  17632. extra: 1223/1126,
  17633. bottom: 205/1428
  17634. }
  17635. },
  17636. upright: {
  17637. height: math.unit(6.3, "feet"),
  17638. weight: math.unit(240, "lb"),
  17639. name: "Upright",
  17640. image: {
  17641. source: "./media/characters/cafat/upright.svg",
  17642. bottom: 0.01
  17643. }
  17644. },
  17645. uprightFull: {
  17646. height: math.unit(6.3, "feet"),
  17647. weight: math.unit(240, "lb"),
  17648. name: "Upright (Full)",
  17649. image: {
  17650. source: "./media/characters/cafat/upright-full.svg",
  17651. bottom: 0.01
  17652. }
  17653. },
  17654. },
  17655. [
  17656. {
  17657. name: "Small",
  17658. height: math.unit(5, "feet"),
  17659. default: true
  17660. },
  17661. {
  17662. name: "Large",
  17663. height: math.unit(13, "feet")
  17664. },
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(6, "feet"),
  17672. weight: math.unit(150, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/verin-raharra/front.svg",
  17676. extra: 5019 / 4835,
  17677. bottom: 0.023
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(7 + 5 / 12, "feet"),
  17685. default: true
  17686. },
  17687. {
  17688. name: "Upsized",
  17689. height: math.unit(20, "feet")
  17690. },
  17691. ]
  17692. ))
  17693. characterMakers.push(() => makeCharacter(
  17694. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17695. {
  17696. front: {
  17697. height: math.unit(7, "feet"),
  17698. weight: math.unit(230, "lb"),
  17699. name: "Front",
  17700. image: {
  17701. source: "./media/characters/nakata/front.svg",
  17702. extra: 1.005,
  17703. bottom: 0.01
  17704. }
  17705. },
  17706. },
  17707. [
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(7, "feet"),
  17711. default: true
  17712. },
  17713. {
  17714. name: "Big",
  17715. height: math.unit(14, "feet")
  17716. },
  17717. {
  17718. name: "Macro",
  17719. height: math.unit(400, "feet")
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(4.91, "feet"),
  17728. weight: math.unit(100, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/lily/front.svg",
  17732. extra: 1585 / 1415,
  17733. bottom: 0.02
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Normal",
  17740. height: math.unit(4.91, "feet"),
  17741. default: true
  17742. },
  17743. ]
  17744. ))
  17745. characterMakers.push(() => makeCharacter(
  17746. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17747. {
  17748. laying: {
  17749. height: math.unit(4 + 4 / 12, "feet"),
  17750. weight: math.unit(600, "lb"),
  17751. name: "Laying",
  17752. image: {
  17753. source: "./media/characters/sheila/laying.svg",
  17754. extra: 1333 / 1265,
  17755. bottom: 0.16
  17756. }
  17757. },
  17758. },
  17759. [
  17760. {
  17761. name: "Normal",
  17762. height: math.unit(4 + 4 / 12, "feet"),
  17763. default: true
  17764. },
  17765. ]
  17766. ))
  17767. characterMakers.push(() => makeCharacter(
  17768. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17769. {
  17770. front: {
  17771. height: math.unit(6, "feet"),
  17772. weight: math.unit(190, "lb"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/sax/front.svg",
  17776. extra: 1187 / 973,
  17777. bottom: 0.042
  17778. }
  17779. },
  17780. },
  17781. [
  17782. {
  17783. name: "Micro",
  17784. height: math.unit(4, "inches"),
  17785. default: true
  17786. },
  17787. ]
  17788. ))
  17789. characterMakers.push(() => makeCharacter(
  17790. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17791. {
  17792. front: {
  17793. height: math.unit(6, "feet"),
  17794. weight: math.unit(150, "lb"),
  17795. name: "Front",
  17796. image: {
  17797. source: "./media/characters/pandora/front.svg",
  17798. extra: 2720 / 2556,
  17799. bottom: 0.015
  17800. }
  17801. },
  17802. back: {
  17803. height: math.unit(6, "feet"),
  17804. weight: math.unit(150, "lb"),
  17805. name: "Back",
  17806. image: {
  17807. source: "./media/characters/pandora/back.svg",
  17808. extra: 2720 / 2556,
  17809. bottom: 0.01
  17810. }
  17811. },
  17812. beans: {
  17813. height: math.unit(6 / 8, "feet"),
  17814. name: "Beans",
  17815. image: {
  17816. source: "./media/characters/pandora/beans.svg"
  17817. }
  17818. },
  17819. collar: {
  17820. height: math.unit(0.31, "feet"),
  17821. name: "Collar",
  17822. image: {
  17823. source: "./media/characters/pandora/collar.svg"
  17824. }
  17825. },
  17826. skirt: {
  17827. height: math.unit(6, "feet"),
  17828. weight: math.unit(150, "lb"),
  17829. name: "Skirt",
  17830. image: {
  17831. source: "./media/characters/pandora/skirt.svg",
  17832. extra: 1622 / 1525,
  17833. bottom: 0.015
  17834. }
  17835. },
  17836. hoodie: {
  17837. height: math.unit(6, "feet"),
  17838. weight: math.unit(150, "lb"),
  17839. name: "Hoodie",
  17840. image: {
  17841. source: "./media/characters/pandora/hoodie.svg",
  17842. extra: 1622 / 1525,
  17843. bottom: 0.015
  17844. }
  17845. },
  17846. casual: {
  17847. height: math.unit(6, "feet"),
  17848. weight: math.unit(150, "lb"),
  17849. name: "Casual",
  17850. image: {
  17851. source: "./media/characters/pandora/casual.svg",
  17852. extra: 1622 / 1525,
  17853. bottom: 0.015
  17854. }
  17855. },
  17856. },
  17857. [
  17858. {
  17859. name: "Normal",
  17860. height: math.unit(6, "feet")
  17861. },
  17862. {
  17863. name: "Big Steppy",
  17864. height: math.unit(1, "km"),
  17865. default: true
  17866. },
  17867. {
  17868. name: "Galactic Steppy",
  17869. height: math.unit(2, "gigameters")
  17870. },
  17871. ]
  17872. ))
  17873. characterMakers.push(() => makeCharacter(
  17874. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17875. {
  17876. side: {
  17877. height: math.unit(10, "feet"),
  17878. weight: math.unit(800, "kg"),
  17879. name: "Side",
  17880. image: {
  17881. source: "./media/characters/venio-darcony/side.svg",
  17882. extra: 1373 / 1003,
  17883. bottom: 0.037
  17884. }
  17885. },
  17886. front: {
  17887. height: math.unit(19, "feet"),
  17888. weight: math.unit(800, "kg"),
  17889. name: "Front",
  17890. image: {
  17891. source: "./media/characters/venio-darcony/front.svg"
  17892. }
  17893. },
  17894. back: {
  17895. height: math.unit(19, "feet"),
  17896. weight: math.unit(800, "kg"),
  17897. name: "Back",
  17898. image: {
  17899. source: "./media/characters/venio-darcony/back.svg"
  17900. }
  17901. },
  17902. sideNsfw: {
  17903. height: math.unit(10, "feet"),
  17904. weight: math.unit(800, "kg"),
  17905. name: "Side (NSFW)",
  17906. image: {
  17907. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17908. extra: 1373 / 1003,
  17909. bottom: 0.037
  17910. }
  17911. },
  17912. frontNsfw: {
  17913. height: math.unit(19, "feet"),
  17914. weight: math.unit(800, "kg"),
  17915. name: "Front (NSFW)",
  17916. image: {
  17917. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17918. }
  17919. },
  17920. backNsfw: {
  17921. height: math.unit(19, "feet"),
  17922. weight: math.unit(800, "kg"),
  17923. name: "Back (NSFW)",
  17924. image: {
  17925. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17926. }
  17927. },
  17928. sideArmored: {
  17929. height: math.unit(10, "feet"),
  17930. weight: math.unit(800, "kg"),
  17931. name: "Side (Armored)",
  17932. image: {
  17933. source: "./media/characters/venio-darcony/side-armored.svg",
  17934. extra: 1373 / 1003,
  17935. bottom: 0.037
  17936. }
  17937. },
  17938. frontArmored: {
  17939. height: math.unit(19, "feet"),
  17940. weight: math.unit(900, "kg"),
  17941. name: "Front (Armored)",
  17942. image: {
  17943. source: "./media/characters/venio-darcony/front-armored.svg"
  17944. }
  17945. },
  17946. backArmored: {
  17947. height: math.unit(19, "feet"),
  17948. weight: math.unit(900, "kg"),
  17949. name: "Back (Armored)",
  17950. image: {
  17951. source: "./media/characters/venio-darcony/back-armored.svg"
  17952. }
  17953. },
  17954. sword: {
  17955. height: math.unit(10, "feet"),
  17956. weight: math.unit(50, "lb"),
  17957. name: "Sword",
  17958. image: {
  17959. source: "./media/characters/venio-darcony/sword.svg"
  17960. }
  17961. },
  17962. },
  17963. [
  17964. {
  17965. name: "Normal",
  17966. height: math.unit(10, "feet")
  17967. },
  17968. {
  17969. name: "Macro",
  17970. height: math.unit(130, "feet"),
  17971. default: true
  17972. },
  17973. {
  17974. name: "Macro+",
  17975. height: math.unit(240, "feet")
  17976. },
  17977. ]
  17978. ))
  17979. characterMakers.push(() => makeCharacter(
  17980. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  17981. {
  17982. front: {
  17983. height: math.unit(6, "feet"),
  17984. weight: math.unit(150, "lb"),
  17985. name: "Front",
  17986. image: {
  17987. source: "./media/characters/veski/front.svg",
  17988. extra: 1299 / 1225,
  17989. bottom: 0.04
  17990. }
  17991. },
  17992. back: {
  17993. height: math.unit(6, "feet"),
  17994. weight: math.unit(150, "lb"),
  17995. name: "Back",
  17996. image: {
  17997. source: "./media/characters/veski/back.svg",
  17998. extra: 1299 / 1225,
  17999. bottom: 0.008
  18000. }
  18001. },
  18002. maw: {
  18003. height: math.unit(1.5 * 1.21, "feet"),
  18004. name: "Maw",
  18005. image: {
  18006. source: "./media/characters/veski/maw.svg"
  18007. }
  18008. },
  18009. },
  18010. [
  18011. {
  18012. name: "Macro",
  18013. height: math.unit(2, "km"),
  18014. default: true
  18015. },
  18016. ]
  18017. ))
  18018. characterMakers.push(() => makeCharacter(
  18019. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18020. {
  18021. front: {
  18022. height: math.unit(5 + 7 / 12, "feet"),
  18023. name: "Front",
  18024. image: {
  18025. source: "./media/characters/isabelle/front.svg",
  18026. extra: 2130 / 1976,
  18027. bottom: 0.05
  18028. }
  18029. },
  18030. },
  18031. [
  18032. {
  18033. name: "Supermicro",
  18034. height: math.unit(10, "micrometers")
  18035. },
  18036. {
  18037. name: "Micro",
  18038. height: math.unit(1, "inch")
  18039. },
  18040. {
  18041. name: "Tiny",
  18042. height: math.unit(5, "inches")
  18043. },
  18044. {
  18045. name: "Standard",
  18046. height: math.unit(5 + 7 / 12, "inches")
  18047. },
  18048. {
  18049. name: "Macro",
  18050. height: math.unit(80, "meters"),
  18051. default: true
  18052. },
  18053. {
  18054. name: "Megamacro",
  18055. height: math.unit(250, "meters")
  18056. },
  18057. {
  18058. name: "Gigamacro",
  18059. height: math.unit(5, "km")
  18060. },
  18061. {
  18062. name: "Cosmic",
  18063. height: math.unit(2.5e6, "miles")
  18064. },
  18065. ]
  18066. ))
  18067. characterMakers.push(() => makeCharacter(
  18068. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18069. {
  18070. front: {
  18071. height: math.unit(6, "feet"),
  18072. weight: math.unit(150, "lb"),
  18073. name: "Front",
  18074. image: {
  18075. source: "./media/characters/hanzo/front.svg",
  18076. extra: 374 / 344,
  18077. bottom: 0.02
  18078. }
  18079. },
  18080. },
  18081. [
  18082. {
  18083. name: "Normal",
  18084. height: math.unit(8, "feet"),
  18085. default: true
  18086. },
  18087. ]
  18088. ))
  18089. characterMakers.push(() => makeCharacter(
  18090. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18091. {
  18092. front: {
  18093. height: math.unit(7, "feet"),
  18094. weight: math.unit(130, "lb"),
  18095. name: "Front",
  18096. image: {
  18097. source: "./media/characters/anna/front.svg",
  18098. extra: 169 / 145,
  18099. bottom: 0.06
  18100. }
  18101. },
  18102. full: {
  18103. height: math.unit(4.96, "feet"),
  18104. weight: math.unit(220, "lb"),
  18105. name: "Full",
  18106. image: {
  18107. source: "./media/characters/anna/full.svg",
  18108. extra: 138 / 114,
  18109. bottom: 0.15
  18110. }
  18111. },
  18112. tongue: {
  18113. height: math.unit(2.53, "feet"),
  18114. name: "Tongue",
  18115. image: {
  18116. source: "./media/characters/anna/tongue.svg"
  18117. }
  18118. },
  18119. },
  18120. [
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(7, "feet"),
  18124. default: true
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(7, "feet"),
  18133. weight: math.unit(150, "lb"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/ian-corvid/front.svg",
  18137. extra: 150 / 142,
  18138. bottom: 0.02
  18139. }
  18140. },
  18141. back: {
  18142. height: math.unit(7, "feet"),
  18143. weight: math.unit(150, "lb"),
  18144. name: "Back",
  18145. image: {
  18146. source: "./media/characters/ian-corvid/back.svg",
  18147. extra: 150 / 143,
  18148. bottom: 0.01
  18149. }
  18150. },
  18151. stomping: {
  18152. height: math.unit(7, "feet"),
  18153. weight: math.unit(150, "lb"),
  18154. name: "Stomping",
  18155. image: {
  18156. source: "./media/characters/ian-corvid/stomping.svg",
  18157. extra: 76 / 72
  18158. }
  18159. },
  18160. sitting: {
  18161. height: math.unit(7 / 1.8, "feet"),
  18162. weight: math.unit(150, "lb"),
  18163. name: "Sitting",
  18164. image: {
  18165. source: "./media/characters/ian-corvid/sitting.svg",
  18166. extra: 1400 / 1269,
  18167. bottom: 0.15
  18168. }
  18169. },
  18170. },
  18171. [
  18172. {
  18173. name: "Tiny Microw",
  18174. height: math.unit(1, "inch")
  18175. },
  18176. {
  18177. name: "Microw",
  18178. height: math.unit(6, "inches")
  18179. },
  18180. {
  18181. name: "Crow",
  18182. height: math.unit(7 + 1 / 12, "feet"),
  18183. default: true
  18184. },
  18185. {
  18186. name: "Macrow",
  18187. height: math.unit(176, "feet")
  18188. },
  18189. ]
  18190. ))
  18191. characterMakers.push(() => makeCharacter(
  18192. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18193. {
  18194. front: {
  18195. height: math.unit(5 + 7 / 12, "feet"),
  18196. weight: math.unit(147, "lb"),
  18197. name: "Front",
  18198. image: {
  18199. source: "./media/characters/natalie-kellon/front.svg",
  18200. extra: 1214 / 1141,
  18201. bottom: 0.02
  18202. }
  18203. },
  18204. },
  18205. [
  18206. {
  18207. name: "Micro",
  18208. height: math.unit(1 / 16, "inch")
  18209. },
  18210. {
  18211. name: "Tiny",
  18212. height: math.unit(4, "inches")
  18213. },
  18214. {
  18215. name: "Normal",
  18216. height: math.unit(5 + 7 / 12, "feet"),
  18217. default: true
  18218. },
  18219. {
  18220. name: "Amazon",
  18221. height: math.unit(12, "feet")
  18222. },
  18223. {
  18224. name: "Giantess",
  18225. height: math.unit(160, "meters")
  18226. },
  18227. {
  18228. name: "Titaness",
  18229. height: math.unit(800, "meters")
  18230. },
  18231. ]
  18232. ))
  18233. characterMakers.push(() => makeCharacter(
  18234. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18235. {
  18236. front: {
  18237. height: math.unit(6, "feet"),
  18238. weight: math.unit(150, "lb"),
  18239. name: "Front",
  18240. image: {
  18241. source: "./media/characters/alluria/front.svg",
  18242. extra: 806 / 738,
  18243. bottom: 0.01
  18244. }
  18245. },
  18246. side: {
  18247. height: math.unit(6, "feet"),
  18248. weight: math.unit(150, "lb"),
  18249. name: "Side",
  18250. image: {
  18251. source: "./media/characters/alluria/side.svg",
  18252. extra: 800 / 750,
  18253. }
  18254. },
  18255. back: {
  18256. height: math.unit(6, "feet"),
  18257. weight: math.unit(150, "lb"),
  18258. name: "Back",
  18259. image: {
  18260. source: "./media/characters/alluria/back.svg",
  18261. extra: 806 / 738,
  18262. }
  18263. },
  18264. frontMaid: {
  18265. height: math.unit(6, "feet"),
  18266. weight: math.unit(150, "lb"),
  18267. name: "Front (Maid)",
  18268. image: {
  18269. source: "./media/characters/alluria/front-maid.svg",
  18270. extra: 806 / 738,
  18271. bottom: 0.01
  18272. }
  18273. },
  18274. sideMaid: {
  18275. height: math.unit(6, "feet"),
  18276. weight: math.unit(150, "lb"),
  18277. name: "Side (Maid)",
  18278. image: {
  18279. source: "./media/characters/alluria/side-maid.svg",
  18280. extra: 800 / 750,
  18281. bottom: 0.005
  18282. }
  18283. },
  18284. backMaid: {
  18285. height: math.unit(6, "feet"),
  18286. weight: math.unit(150, "lb"),
  18287. name: "Back (Maid)",
  18288. image: {
  18289. source: "./media/characters/alluria/back-maid.svg",
  18290. extra: 806 / 738,
  18291. }
  18292. },
  18293. },
  18294. [
  18295. {
  18296. name: "Micro",
  18297. height: math.unit(6, "inches"),
  18298. default: true
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(6, "feet"),
  18307. weight: math.unit(150, "lb"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/kyle/front.svg",
  18311. extra: 1069 / 962,
  18312. bottom: 77.228 / 1727.45
  18313. }
  18314. },
  18315. },
  18316. [
  18317. {
  18318. name: "Macro",
  18319. height: math.unit(150, "feet"),
  18320. default: true
  18321. },
  18322. ]
  18323. ))
  18324. characterMakers.push(() => makeCharacter(
  18325. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18326. {
  18327. front: {
  18328. height: math.unit(6, "feet"),
  18329. weight: math.unit(300, "lb"),
  18330. name: "Front",
  18331. image: {
  18332. source: "./media/characters/duncan/front.svg",
  18333. extra: 1650 / 1482,
  18334. bottom: 0.05
  18335. }
  18336. },
  18337. },
  18338. [
  18339. {
  18340. name: "Macro",
  18341. height: math.unit(100, "feet"),
  18342. default: true
  18343. },
  18344. ]
  18345. ))
  18346. characterMakers.push(() => makeCharacter(
  18347. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18348. {
  18349. front: {
  18350. height: math.unit(5 + 4 / 12, "feet"),
  18351. weight: math.unit(220, "lb"),
  18352. name: "Front",
  18353. image: {
  18354. source: "./media/characters/memory/front.svg",
  18355. extra: 3641 / 3545,
  18356. bottom: 0.03
  18357. }
  18358. },
  18359. back: {
  18360. height: math.unit(5 + 4 / 12, "feet"),
  18361. weight: math.unit(220, "lb"),
  18362. name: "Back",
  18363. image: {
  18364. source: "./media/characters/memory/back.svg",
  18365. extra: 3641 / 3545,
  18366. bottom: 0.025
  18367. }
  18368. },
  18369. frontSkirt: {
  18370. height: math.unit(5 + 4 / 12, "feet"),
  18371. weight: math.unit(220, "lb"),
  18372. name: "Front (Skirt)",
  18373. image: {
  18374. source: "./media/characters/memory/front-skirt.svg",
  18375. extra: 3641 / 3545,
  18376. bottom: 0.03
  18377. }
  18378. },
  18379. frontDress: {
  18380. height: math.unit(5 + 4 / 12, "feet"),
  18381. weight: math.unit(220, "lb"),
  18382. name: "Front (Dress)",
  18383. image: {
  18384. source: "./media/characters/memory/front-dress.svg",
  18385. extra: 3641 / 3545,
  18386. bottom: 0.03
  18387. }
  18388. },
  18389. },
  18390. [
  18391. {
  18392. name: "Micro",
  18393. height: math.unit(6, "inches"),
  18394. default: true
  18395. },
  18396. {
  18397. name: "Normal",
  18398. height: math.unit(5 + 4 / 12, "feet")
  18399. },
  18400. ]
  18401. ))
  18402. characterMakers.push(() => makeCharacter(
  18403. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18404. {
  18405. front: {
  18406. height: math.unit(4 + 11 / 12, "feet"),
  18407. weight: math.unit(100, "lb"),
  18408. name: "Front",
  18409. image: {
  18410. source: "./media/characters/luno/front.svg",
  18411. extra: 1535 / 1487,
  18412. bottom: 0.03
  18413. }
  18414. },
  18415. },
  18416. [
  18417. {
  18418. name: "Micro",
  18419. height: math.unit(3, "inches")
  18420. },
  18421. {
  18422. name: "Normal",
  18423. height: math.unit(4 + 11 / 12, "feet"),
  18424. default: true
  18425. },
  18426. {
  18427. name: "Macro",
  18428. height: math.unit(300, "feet")
  18429. },
  18430. {
  18431. name: "Megamacro",
  18432. height: math.unit(700, "miles")
  18433. },
  18434. ]
  18435. ))
  18436. characterMakers.push(() => makeCharacter(
  18437. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18438. {
  18439. front: {
  18440. height: math.unit(6 + 2 / 12, "feet"),
  18441. weight: math.unit(170, "lb"),
  18442. name: "Front",
  18443. image: {
  18444. source: "./media/characters/jamesy/front.svg",
  18445. extra: 440 / 382,
  18446. bottom: 0.005
  18447. }
  18448. },
  18449. },
  18450. [
  18451. {
  18452. name: "Micro",
  18453. height: math.unit(3, "inches")
  18454. },
  18455. {
  18456. name: "Normal",
  18457. height: math.unit(6 + 2 / 12, "feet"),
  18458. default: true
  18459. },
  18460. {
  18461. name: "Macro",
  18462. height: math.unit(300, "feet")
  18463. },
  18464. {
  18465. name: "Megamacro",
  18466. height: math.unit(700, "miles")
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18472. {
  18473. front: {
  18474. height: math.unit(6, "feet"),
  18475. weight: math.unit(160, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/mark/front.svg",
  18479. extra: 3300 / 3100,
  18480. bottom: 136.42 / 3440.47
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Macro",
  18487. height: math.unit(120, "meters")
  18488. },
  18489. {
  18490. name: "Bigger Macro",
  18491. height: math.unit(350, "meters")
  18492. },
  18493. {
  18494. name: "Megamacro",
  18495. height: math.unit(8, "km"),
  18496. default: true
  18497. },
  18498. {
  18499. name: "Continental",
  18500. height: math.unit(4550, "km")
  18501. },
  18502. {
  18503. name: "Planetary",
  18504. height: math.unit(65000, "km")
  18505. },
  18506. ]
  18507. ))
  18508. characterMakers.push(() => makeCharacter(
  18509. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18510. {
  18511. front: {
  18512. height: math.unit(6, "feet"),
  18513. weight: math.unit(400, "lb"),
  18514. name: "Front",
  18515. image: {
  18516. source: "./media/characters/mac/front.svg",
  18517. extra: 1048 / 987.7,
  18518. bottom: 60 / 1107.6,
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Macro",
  18525. height: math.unit(500, "feet"),
  18526. default: true
  18527. },
  18528. ]
  18529. ))
  18530. characterMakers.push(() => makeCharacter(
  18531. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18532. {
  18533. front: {
  18534. height: math.unit(5 + 2 / 12, "feet"),
  18535. weight: math.unit(190, "lb"),
  18536. name: "Front",
  18537. image: {
  18538. source: "./media/characters/bari/front.svg",
  18539. extra: 3156 / 2880,
  18540. bottom: 0.03
  18541. }
  18542. },
  18543. back: {
  18544. height: math.unit(5 + 2 / 12, "feet"),
  18545. weight: math.unit(190, "lb"),
  18546. name: "Back",
  18547. image: {
  18548. source: "./media/characters/bari/back.svg",
  18549. extra: 3260 / 2834,
  18550. bottom: 0.025
  18551. }
  18552. },
  18553. frontPlush: {
  18554. height: math.unit(5 + 2 / 12, "feet"),
  18555. weight: math.unit(190, "lb"),
  18556. name: "Front (Plush)",
  18557. image: {
  18558. source: "./media/characters/bari/front-plush.svg",
  18559. extra: 1112 / 1061,
  18560. bottom: 0.002
  18561. }
  18562. },
  18563. },
  18564. [
  18565. {
  18566. name: "Micro",
  18567. height: math.unit(3, "inches")
  18568. },
  18569. {
  18570. name: "Normal",
  18571. height: math.unit(5 + 2 / 12, "feet"),
  18572. default: true
  18573. },
  18574. {
  18575. name: "Macro",
  18576. height: math.unit(20, "feet")
  18577. },
  18578. ]
  18579. ))
  18580. characterMakers.push(() => makeCharacter(
  18581. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18582. {
  18583. front: {
  18584. height: math.unit(6 + 1 / 12, "feet"),
  18585. weight: math.unit(275, "lb"),
  18586. name: "Front",
  18587. image: {
  18588. source: "./media/characters/hunter-misha-raven/front.svg"
  18589. }
  18590. },
  18591. },
  18592. [
  18593. {
  18594. name: "Mortal",
  18595. height: math.unit(6 + 1 / 12, "feet")
  18596. },
  18597. {
  18598. name: "Divine",
  18599. height: math.unit(1.12134e34, "parsecs"),
  18600. default: true
  18601. },
  18602. ]
  18603. ))
  18604. characterMakers.push(() => makeCharacter(
  18605. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18606. {
  18607. front: {
  18608. height: math.unit(6 + 3 / 12, "feet"),
  18609. weight: math.unit(220, "lb"),
  18610. name: "Front",
  18611. image: {
  18612. source: "./media/characters/max-calore/front.svg",
  18613. extra: 1700 / 1648,
  18614. bottom: 0.01
  18615. }
  18616. },
  18617. back: {
  18618. height: math.unit(6 + 3 / 12, "feet"),
  18619. weight: math.unit(220, "lb"),
  18620. name: "Back",
  18621. image: {
  18622. source: "./media/characters/max-calore/back.svg",
  18623. extra: 1700 / 1648,
  18624. bottom: 0.01
  18625. }
  18626. },
  18627. },
  18628. [
  18629. {
  18630. name: "Normal",
  18631. height: math.unit(6 + 3 / 12, "feet"),
  18632. default: true
  18633. },
  18634. ]
  18635. ))
  18636. characterMakers.push(() => makeCharacter(
  18637. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18638. {
  18639. side: {
  18640. height: math.unit(2 + 8 / 12, "feet"),
  18641. weight: math.unit(99, "lb"),
  18642. name: "Side",
  18643. image: {
  18644. source: "./media/characters/aspen/side.svg",
  18645. extra: 152 / 138,
  18646. bottom: 0.032
  18647. }
  18648. },
  18649. },
  18650. [
  18651. {
  18652. name: "Normal",
  18653. height: math.unit(2 + 8 / 12, "feet"),
  18654. default: true
  18655. },
  18656. ]
  18657. ))
  18658. characterMakers.push(() => makeCharacter(
  18659. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18660. {
  18661. side: {
  18662. height: math.unit(3 + 2 / 12, "feet"),
  18663. weight: math.unit(224, "lb"),
  18664. name: "Side",
  18665. image: {
  18666. source: "./media/characters/sheila-feral-wolf/side.svg",
  18667. extra: 179 / 166,
  18668. bottom: 0.03
  18669. }
  18670. },
  18671. },
  18672. [
  18673. {
  18674. name: "Normal",
  18675. height: math.unit(3 + 2 / 12, "feet"),
  18676. default: true
  18677. },
  18678. ]
  18679. ))
  18680. characterMakers.push(() => makeCharacter(
  18681. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18682. {
  18683. side: {
  18684. height: math.unit(1 + 9 / 12, "feet"),
  18685. weight: math.unit(38, "lb"),
  18686. name: "Side",
  18687. image: {
  18688. source: "./media/characters/michelle/side.svg",
  18689. extra: 147 / 136.7,
  18690. bottom: 0.03
  18691. }
  18692. },
  18693. },
  18694. [
  18695. {
  18696. name: "Normal",
  18697. height: math.unit(1 + 9 / 12, "feet"),
  18698. default: true
  18699. },
  18700. ]
  18701. ))
  18702. characterMakers.push(() => makeCharacter(
  18703. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18704. {
  18705. front: {
  18706. height: math.unit(1.54, "feet"),
  18707. weight: math.unit(50, "lb"),
  18708. name: "Front",
  18709. image: {
  18710. source: "./media/characters/nino/front.svg"
  18711. }
  18712. },
  18713. },
  18714. [
  18715. {
  18716. name: "Normal",
  18717. height: math.unit(1.54, "feet"),
  18718. default: true
  18719. },
  18720. ]
  18721. ))
  18722. characterMakers.push(() => makeCharacter(
  18723. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18724. {
  18725. front: {
  18726. height: math.unit(1.49, "feet"),
  18727. weight: math.unit(45, "lb"),
  18728. name: "Front",
  18729. image: {
  18730. source: "./media/characters/viola/front.svg"
  18731. }
  18732. },
  18733. },
  18734. [
  18735. {
  18736. name: "Normal",
  18737. height: math.unit(1.49, "feet"),
  18738. default: true
  18739. },
  18740. ]
  18741. ))
  18742. characterMakers.push(() => makeCharacter(
  18743. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18744. {
  18745. front: {
  18746. height: math.unit(6 + 5 / 12, "feet"),
  18747. weight: math.unit(580, "lb"),
  18748. name: "Front",
  18749. image: {
  18750. source: "./media/characters/atlas/front.svg",
  18751. extra: 298.5 / 290,
  18752. bottom: 0.015
  18753. }
  18754. },
  18755. },
  18756. [
  18757. {
  18758. name: "Normal",
  18759. height: math.unit(6 + 5 / 12, "feet"),
  18760. default: true
  18761. },
  18762. ]
  18763. ))
  18764. characterMakers.push(() => makeCharacter(
  18765. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18766. {
  18767. side: {
  18768. height: math.unit(15.6, "inches"),
  18769. weight: math.unit(10, "lb"),
  18770. name: "Side",
  18771. image: {
  18772. source: "./media/characters/davy/side.svg",
  18773. extra: 200 / 170,
  18774. bottom: 0.01
  18775. }
  18776. },
  18777. },
  18778. [
  18779. {
  18780. name: "Normal",
  18781. height: math.unit(15.6, "inches"),
  18782. default: true
  18783. },
  18784. ]
  18785. ))
  18786. characterMakers.push(() => makeCharacter(
  18787. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18788. {
  18789. side: {
  18790. height: math.unit(4 + 8 / 12, "feet"),
  18791. weight: math.unit(166, "lb"),
  18792. name: "Side",
  18793. image: {
  18794. source: "./media/characters/fiona/side.svg",
  18795. extra: 232 / 220,
  18796. bottom: 0.03
  18797. }
  18798. },
  18799. },
  18800. [
  18801. {
  18802. name: "Normal",
  18803. height: math.unit(4 + 8 / 12, "feet"),
  18804. default: true
  18805. },
  18806. ]
  18807. ))
  18808. characterMakers.push(() => makeCharacter(
  18809. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18810. {
  18811. front: {
  18812. height: math.unit(26, "inches"),
  18813. weight: math.unit(35, "lb"),
  18814. name: "Front",
  18815. image: {
  18816. source: "./media/characters/lyla/front.svg",
  18817. bottom: 0.1
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(3, "feet"),
  18825. default: true
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18831. {
  18832. side: {
  18833. height: math.unit(1.8, "feet"),
  18834. weight: math.unit(44, "lb"),
  18835. name: "Side",
  18836. image: {
  18837. source: "./media/characters/perseus/side.svg",
  18838. bottom: 0.21
  18839. }
  18840. },
  18841. },
  18842. [
  18843. {
  18844. name: "Normal",
  18845. height: math.unit(1.8, "feet"),
  18846. default: true
  18847. },
  18848. ]
  18849. ))
  18850. characterMakers.push(() => makeCharacter(
  18851. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18852. {
  18853. side: {
  18854. height: math.unit(4 + 2 / 12, "feet"),
  18855. weight: math.unit(20, "lb"),
  18856. name: "Side",
  18857. image: {
  18858. source: "./media/characters/remus/side.svg"
  18859. }
  18860. },
  18861. },
  18862. [
  18863. {
  18864. name: "Normal",
  18865. height: math.unit(4 + 2 / 12, "feet"),
  18866. default: true
  18867. },
  18868. ]
  18869. ))
  18870. characterMakers.push(() => makeCharacter(
  18871. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18872. {
  18873. front: {
  18874. height: math.unit(4 + 11 / 12, "feet"),
  18875. weight: math.unit(114, "lb"),
  18876. name: "Front",
  18877. image: {
  18878. source: "./media/characters/raf/front.svg",
  18879. extra: 1504/1339,
  18880. bottom: 26/1530
  18881. }
  18882. },
  18883. side: {
  18884. height: math.unit(4 + 11 / 12, "feet"),
  18885. weight: math.unit(114, "lb"),
  18886. name: "Side",
  18887. image: {
  18888. source: "./media/characters/raf/side.svg",
  18889. extra: 1466/1316,
  18890. bottom: 29/1495
  18891. }
  18892. },
  18893. paw: {
  18894. height: math.unit(1.45, "feet"),
  18895. name: "Paw",
  18896. image: {
  18897. source: "./media/characters/raf/paw.svg"
  18898. },
  18899. extraAttributes: {
  18900. "toeSize": {
  18901. name: "Toe Size",
  18902. power: 2,
  18903. type: "area",
  18904. base: math.unit(0.004, "m^2")
  18905. },
  18906. "padSize": {
  18907. name: "Pad Size",
  18908. power: 2,
  18909. type: "area",
  18910. base: math.unit(0.04, "m^2")
  18911. },
  18912. "footSize": {
  18913. name: "Foot Size",
  18914. power: 2,
  18915. type: "area",
  18916. base: math.unit(0.08, "m^2")
  18917. },
  18918. }
  18919. },
  18920. },
  18921. [
  18922. {
  18923. name: "Micro",
  18924. height: math.unit(2, "inches")
  18925. },
  18926. {
  18927. name: "Normal",
  18928. height: math.unit(4 + 11 / 12, "feet"),
  18929. default: true
  18930. },
  18931. {
  18932. name: "Macro",
  18933. height: math.unit(70, "feet")
  18934. },
  18935. ]
  18936. ))
  18937. characterMakers.push(() => makeCharacter(
  18938. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  18939. {
  18940. front: {
  18941. height: math.unit(1.5, "meters"),
  18942. weight: math.unit(68, "kg"),
  18943. name: "Front",
  18944. image: {
  18945. source: "./media/characters/liam-einarr/front.svg",
  18946. extra: 2822 / 2666
  18947. }
  18948. },
  18949. back: {
  18950. height: math.unit(1.5, "meters"),
  18951. weight: math.unit(68, "kg"),
  18952. name: "Back",
  18953. image: {
  18954. source: "./media/characters/liam-einarr/back.svg",
  18955. extra: 2822 / 2666,
  18956. bottom: 0.015
  18957. }
  18958. },
  18959. },
  18960. [
  18961. {
  18962. name: "Normal",
  18963. height: math.unit(1.5, "meters"),
  18964. default: true
  18965. },
  18966. {
  18967. name: "Macro",
  18968. height: math.unit(150, "meters")
  18969. },
  18970. {
  18971. name: "Megamacro",
  18972. height: math.unit(35, "km")
  18973. },
  18974. ]
  18975. ))
  18976. characterMakers.push(() => makeCharacter(
  18977. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  18978. {
  18979. front: {
  18980. height: math.unit(6, "feet"),
  18981. weight: math.unit(75, "kg"),
  18982. name: "Front",
  18983. image: {
  18984. source: "./media/characters/linda/front.svg",
  18985. extra: 930 / 874,
  18986. bottom: 0.004
  18987. }
  18988. },
  18989. },
  18990. [
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(6, "feet"),
  18994. default: true
  18995. },
  18996. ]
  18997. ))
  18998. characterMakers.push(() => makeCharacter(
  18999. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19000. {
  19001. front: {
  19002. height: math.unit(6 + 8 / 12, "feet"),
  19003. weight: math.unit(220, "lb"),
  19004. name: "Front",
  19005. image: {
  19006. source: "./media/characters/caylex/front.svg",
  19007. extra: 821 / 772,
  19008. bottom: 0.07
  19009. }
  19010. },
  19011. back: {
  19012. height: math.unit(6 + 8 / 12, "feet"),
  19013. weight: math.unit(220, "lb"),
  19014. name: "Back",
  19015. image: {
  19016. source: "./media/characters/caylex/back.svg",
  19017. extra: 821 / 772,
  19018. bottom: 0.022
  19019. }
  19020. },
  19021. hand: {
  19022. height: math.unit(1.25, "feet"),
  19023. name: "Hand",
  19024. image: {
  19025. source: "./media/characters/caylex/hand.svg"
  19026. }
  19027. },
  19028. foot: {
  19029. height: math.unit(1.6, "feet"),
  19030. name: "Foot",
  19031. image: {
  19032. source: "./media/characters/caylex/foot.svg"
  19033. }
  19034. },
  19035. armored: {
  19036. height: math.unit(6 + 8 / 12, "feet"),
  19037. weight: math.unit(250, "lb"),
  19038. name: "Armored",
  19039. image: {
  19040. source: "./media/characters/caylex/armored.svg",
  19041. extra: 1420 / 1310,
  19042. bottom: 0.045
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(6 + 8 / 12, "feet"),
  19050. default: true
  19051. },
  19052. {
  19053. name: "Normal+",
  19054. height: math.unit(12, "feet")
  19055. },
  19056. ]
  19057. ))
  19058. characterMakers.push(() => makeCharacter(
  19059. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19060. {
  19061. front: {
  19062. height: math.unit(7 + 6 / 12, "feet"),
  19063. weight: math.unit(288, "lb"),
  19064. name: "Front",
  19065. image: {
  19066. source: "./media/characters/alana/front.svg",
  19067. extra: 679 / 653,
  19068. bottom: 22.5 / 701
  19069. }
  19070. },
  19071. },
  19072. [
  19073. {
  19074. name: "Normal",
  19075. height: math.unit(7 + 6 / 12, "feet")
  19076. },
  19077. {
  19078. name: "Large",
  19079. height: math.unit(50, "feet")
  19080. },
  19081. {
  19082. name: "Macro",
  19083. height: math.unit(100, "feet"),
  19084. default: true
  19085. },
  19086. {
  19087. name: "Macro+",
  19088. height: math.unit(200, "feet")
  19089. },
  19090. ]
  19091. ))
  19092. characterMakers.push(() => makeCharacter(
  19093. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19094. {
  19095. front: {
  19096. height: math.unit(6 + 1 / 12, "feet"),
  19097. weight: math.unit(210, "lb"),
  19098. name: "Front",
  19099. image: {
  19100. source: "./media/characters/hasani/front.svg",
  19101. extra: 244 / 232,
  19102. bottom: 0.01
  19103. }
  19104. },
  19105. back: {
  19106. height: math.unit(6 + 1 / 12, "feet"),
  19107. weight: math.unit(210, "lb"),
  19108. name: "Back",
  19109. image: {
  19110. source: "./media/characters/hasani/back.svg",
  19111. extra: 244 / 232,
  19112. bottom: 0.01
  19113. }
  19114. },
  19115. },
  19116. [
  19117. {
  19118. name: "Normal",
  19119. height: math.unit(6 + 1 / 12, "feet")
  19120. },
  19121. {
  19122. name: "Macro",
  19123. height: math.unit(175, "feet"),
  19124. default: true
  19125. },
  19126. ]
  19127. ))
  19128. characterMakers.push(() => makeCharacter(
  19129. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19130. {
  19131. front: {
  19132. height: math.unit(1.82, "meters"),
  19133. weight: math.unit(140, "lb"),
  19134. name: "Front",
  19135. image: {
  19136. source: "./media/characters/nita/front.svg",
  19137. extra: 2473 / 2363,
  19138. bottom: 0.01
  19139. }
  19140. },
  19141. },
  19142. [
  19143. {
  19144. name: "Normal",
  19145. height: math.unit(1.82, "m")
  19146. },
  19147. {
  19148. name: "Macro",
  19149. height: math.unit(300, "m")
  19150. },
  19151. {
  19152. name: "Mistake Canon",
  19153. height: math.unit(0.5, "miles"),
  19154. default: true
  19155. },
  19156. {
  19157. name: "Big Mistake",
  19158. height: math.unit(13, "miles")
  19159. },
  19160. {
  19161. name: "Playing God",
  19162. height: math.unit(2450, "miles")
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(4, "feet"),
  19171. weight: math.unit(120, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/shiriko/front.svg",
  19175. extra: 970/934,
  19176. bottom: 5/975
  19177. }
  19178. },
  19179. },
  19180. [
  19181. {
  19182. name: "Normal",
  19183. height: math.unit(4, "feet"),
  19184. default: true
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19190. {
  19191. front: {
  19192. height: math.unit(6, "feet"),
  19193. name: "front",
  19194. image: {
  19195. source: "./media/characters/deja/front.svg",
  19196. extra: 926 / 840,
  19197. bottom: 0.07
  19198. }
  19199. },
  19200. },
  19201. [
  19202. {
  19203. name: "Planck Length",
  19204. height: math.unit(1.6e-35, "meters")
  19205. },
  19206. {
  19207. name: "Normal",
  19208. height: math.unit(30.48, "meters"),
  19209. default: true
  19210. },
  19211. {
  19212. name: "Universal",
  19213. height: math.unit(8.8e26, "meters")
  19214. },
  19215. ]
  19216. ))
  19217. characterMakers.push(() => makeCharacter(
  19218. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19219. {
  19220. side: {
  19221. height: math.unit(8, "feet"),
  19222. weight: math.unit(6300, "lb"),
  19223. name: "Side",
  19224. image: {
  19225. source: "./media/characters/anima/side.svg",
  19226. bottom: 0.035
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(8, "feet"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(8, "feet"),
  19243. weight: math.unit(350, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/bianca/front.svg",
  19247. extra: 234 / 225,
  19248. bottom: 0.03
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Normal",
  19255. height: math.unit(8, "feet"),
  19256. default: true
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19262. {
  19263. front: {
  19264. height: math.unit(11 + 5/12, "feet"),
  19265. weight: math.unit(1200, "lb"),
  19266. name: "Front",
  19267. image: {
  19268. source: "./media/characters/adinia/front.svg",
  19269. extra: 1767/1641,
  19270. bottom: 44/1811
  19271. },
  19272. extraAttributes: {
  19273. "energyIntake": {
  19274. name: "Energy Intake",
  19275. power: 3,
  19276. type: "energy",
  19277. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19278. },
  19279. }
  19280. },
  19281. back: {
  19282. height: math.unit(11 + 5/12, "feet"),
  19283. weight: math.unit(1200, "lb"),
  19284. name: "Back",
  19285. image: {
  19286. source: "./media/characters/adinia/back.svg",
  19287. extra: 1834/1684,
  19288. bottom: 14/1848
  19289. },
  19290. extraAttributes: {
  19291. "energyIntake": {
  19292. name: "Energy Intake",
  19293. power: 3,
  19294. type: "energy",
  19295. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19296. },
  19297. }
  19298. },
  19299. maw: {
  19300. height: math.unit(3.79, "feet"),
  19301. name: "Maw",
  19302. image: {
  19303. source: "./media/characters/adinia/maw.svg"
  19304. }
  19305. },
  19306. rump: {
  19307. height: math.unit(4.6, "feet"),
  19308. name: "Rump",
  19309. image: {
  19310. source: "./media/characters/adinia/rump.svg"
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(11 + 5 / 12, "feet"),
  19318. default: true
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(3, "meters"),
  19327. weight: math.unit(200, "kg"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/lykasa/front.svg",
  19331. extra: 1076 / 976,
  19332. bottom: 0.06
  19333. }
  19334. },
  19335. },
  19336. [
  19337. {
  19338. name: "Normal",
  19339. height: math.unit(3, "meters")
  19340. },
  19341. {
  19342. name: "Kaiju",
  19343. height: math.unit(120, "meters"),
  19344. default: true
  19345. },
  19346. {
  19347. name: "Mega Kaiju",
  19348. height: math.unit(240, "km")
  19349. },
  19350. {
  19351. name: "Giga Kaiju",
  19352. height: math.unit(400, "megameters")
  19353. },
  19354. {
  19355. name: "Tera Kaiju",
  19356. height: math.unit(800, "gigameters")
  19357. },
  19358. {
  19359. name: "Kaiju Dragon Goddess",
  19360. height: math.unit(26, "zettaparsecs")
  19361. },
  19362. ]
  19363. ))
  19364. characterMakers.push(() => makeCharacter(
  19365. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19366. {
  19367. side: {
  19368. height: math.unit(283 / 124 * 6, "feet"),
  19369. weight: math.unit(35000, "lb"),
  19370. name: "Side",
  19371. image: {
  19372. source: "./media/characters/malfaren/side.svg",
  19373. extra: 1310/529,
  19374. bottom: 24/1334
  19375. }
  19376. },
  19377. front: {
  19378. height: math.unit(22.36, "feet"),
  19379. weight: math.unit(35000, "lb"),
  19380. name: "Front",
  19381. image: {
  19382. source: "./media/characters/malfaren/front.svg",
  19383. extra: 1237/1115,
  19384. bottom: 32/1269
  19385. }
  19386. },
  19387. maw: {
  19388. height: math.unit(6.9, "feet"),
  19389. name: "Maw",
  19390. image: {
  19391. source: "./media/characters/malfaren/maw.svg"
  19392. }
  19393. },
  19394. dick: {
  19395. height: math.unit(6.19, "feet"),
  19396. name: "Dick",
  19397. image: {
  19398. source: "./media/characters/malfaren/dick.svg"
  19399. }
  19400. },
  19401. eye: {
  19402. height: math.unit(0.69, "feet"),
  19403. name: "Eye",
  19404. image: {
  19405. source: "./media/characters/malfaren/eye.svg"
  19406. }
  19407. },
  19408. },
  19409. [
  19410. {
  19411. name: "Big",
  19412. height: math.unit(283 / 162 * 6, "feet"),
  19413. },
  19414. {
  19415. name: "Bigger",
  19416. height: math.unit(283 / 124 * 6, "feet")
  19417. },
  19418. {
  19419. name: "Massive",
  19420. height: math.unit(283 / 92 * 6, "feet"),
  19421. default: true
  19422. },
  19423. {
  19424. name: "👀💦",
  19425. height: math.unit(283 / 73 * 6, "feet"),
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19431. {
  19432. front: {
  19433. height: math.unit(1.7, "m"),
  19434. weight: math.unit(70, "kg"),
  19435. name: "Front",
  19436. image: {
  19437. source: "./media/characters/kernel/front.svg",
  19438. extra: 222 / 210,
  19439. bottom: 0.007
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Nano",
  19446. height: math.unit(17, "micrometers")
  19447. },
  19448. {
  19449. name: "Micro",
  19450. height: math.unit(1.7, "mm")
  19451. },
  19452. {
  19453. name: "Small",
  19454. height: math.unit(1.7, "cm")
  19455. },
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(1.7, "m"),
  19459. default: true
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(1.75, "meters"),
  19468. weight: math.unit(65, "kg"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/jayne-folest/front.svg",
  19472. extra: 2115 / 2007,
  19473. bottom: 0.02
  19474. }
  19475. },
  19476. back: {
  19477. height: math.unit(1.75, "meters"),
  19478. weight: math.unit(65, "kg"),
  19479. name: "Back",
  19480. image: {
  19481. source: "./media/characters/jayne-folest/back.svg",
  19482. extra: 2115 / 2007,
  19483. bottom: 0.005
  19484. }
  19485. },
  19486. frontClothed: {
  19487. height: math.unit(1.75, "meters"),
  19488. weight: math.unit(65, "kg"),
  19489. name: "Front (Clothed)",
  19490. image: {
  19491. source: "./media/characters/jayne-folest/front-clothed.svg",
  19492. extra: 2115 / 2007,
  19493. bottom: 0.035
  19494. }
  19495. },
  19496. hand: {
  19497. height: math.unit(1 / 1.260, "feet"),
  19498. name: "Hand",
  19499. image: {
  19500. source: "./media/characters/jayne-folest/hand.svg"
  19501. }
  19502. },
  19503. foot: {
  19504. height: math.unit(1 / 0.918, "feet"),
  19505. name: "Foot",
  19506. image: {
  19507. source: "./media/characters/jayne-folest/foot.svg"
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Micro",
  19514. height: math.unit(4, "cm")
  19515. },
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(1.75, "meters")
  19519. },
  19520. {
  19521. name: "Macro",
  19522. height: math.unit(47.5, "meters"),
  19523. default: true
  19524. },
  19525. ]
  19526. ))
  19527. characterMakers.push(() => makeCharacter(
  19528. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19529. {
  19530. front: {
  19531. height: math.unit(180, "cm"),
  19532. weight: math.unit(70, "kg"),
  19533. name: "Front",
  19534. image: {
  19535. source: "./media/characters/algier/front.svg",
  19536. extra: 596 / 572,
  19537. bottom: 0.04
  19538. }
  19539. },
  19540. back: {
  19541. height: math.unit(180, "cm"),
  19542. weight: math.unit(70, "kg"),
  19543. name: "Back",
  19544. image: {
  19545. source: "./media/characters/algier/back.svg",
  19546. extra: 596 / 572,
  19547. bottom: 0.025
  19548. }
  19549. },
  19550. frontdressed: {
  19551. height: math.unit(180, "cm"),
  19552. weight: math.unit(150, "kg"),
  19553. name: "Front-dressed",
  19554. image: {
  19555. source: "./media/characters/algier/front-dressed.svg",
  19556. extra: 596 / 572,
  19557. bottom: 0.038
  19558. }
  19559. },
  19560. },
  19561. [
  19562. {
  19563. name: "Micro",
  19564. height: math.unit(5, "cm")
  19565. },
  19566. {
  19567. name: "Normal",
  19568. height: math.unit(180, "cm"),
  19569. default: true
  19570. },
  19571. {
  19572. name: "Macro",
  19573. height: math.unit(64, "m")
  19574. },
  19575. ]
  19576. ))
  19577. characterMakers.push(() => makeCharacter(
  19578. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19579. {
  19580. upright: {
  19581. height: math.unit(7, "feet"),
  19582. weight: math.unit(300, "lb"),
  19583. name: "Upright",
  19584. image: {
  19585. source: "./media/characters/pretzel/upright.svg",
  19586. extra: 534 / 522,
  19587. bottom: 0.065
  19588. }
  19589. },
  19590. sprawling: {
  19591. height: math.unit(3.75, "feet"),
  19592. weight: math.unit(300, "lb"),
  19593. name: "Sprawling",
  19594. image: {
  19595. source: "./media/characters/pretzel/sprawling.svg",
  19596. extra: 314 / 281,
  19597. bottom: 0.1
  19598. }
  19599. },
  19600. tongue: {
  19601. height: math.unit(2, "feet"),
  19602. name: "Tongue",
  19603. image: {
  19604. source: "./media/characters/pretzel/tongue.svg"
  19605. }
  19606. },
  19607. },
  19608. [
  19609. {
  19610. name: "Normal",
  19611. height: math.unit(7, "feet"),
  19612. default: true
  19613. },
  19614. {
  19615. name: "Oversized",
  19616. height: math.unit(15, "feet")
  19617. },
  19618. {
  19619. name: "Huge",
  19620. height: math.unit(30, "feet")
  19621. },
  19622. {
  19623. name: "Macro",
  19624. height: math.unit(250, "feet")
  19625. },
  19626. ]
  19627. ))
  19628. characterMakers.push(() => makeCharacter(
  19629. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19630. {
  19631. sideFront: {
  19632. height: math.unit(5 + 2 / 12, "feet"),
  19633. weight: math.unit(120, "lb"),
  19634. name: "Front Side",
  19635. image: {
  19636. source: "./media/characters/roxi/side-front.svg",
  19637. extra: 2924 / 2717,
  19638. bottom: 0.08
  19639. }
  19640. },
  19641. sideBack: {
  19642. height: math.unit(5 + 2 / 12, "feet"),
  19643. weight: math.unit(120, "lb"),
  19644. name: "Back Side",
  19645. image: {
  19646. source: "./media/characters/roxi/side-back.svg",
  19647. extra: 2904 / 2693,
  19648. bottom: 0.06
  19649. }
  19650. },
  19651. front: {
  19652. height: math.unit(5 + 2 / 12, "feet"),
  19653. weight: math.unit(120, "lb"),
  19654. name: "Front",
  19655. image: {
  19656. source: "./media/characters/roxi/front.svg",
  19657. extra: 2028 / 1907,
  19658. bottom: 0.01
  19659. }
  19660. },
  19661. frontAlt: {
  19662. height: math.unit(5 + 2 / 12, "feet"),
  19663. weight: math.unit(120, "lb"),
  19664. name: "Front (Alt)",
  19665. image: {
  19666. source: "./media/characters/roxi/front-alt.svg",
  19667. extra: 1828 / 1798,
  19668. bottom: 0.01
  19669. }
  19670. },
  19671. sitting: {
  19672. height: math.unit(2.8, "feet"),
  19673. weight: math.unit(120, "lb"),
  19674. name: "Sitting",
  19675. image: {
  19676. source: "./media/characters/roxi/sitting.svg",
  19677. extra: 2660 / 2462,
  19678. bottom: 0.1
  19679. }
  19680. },
  19681. },
  19682. [
  19683. {
  19684. name: "Normal",
  19685. height: math.unit(5 + 2 / 12, "feet"),
  19686. default: true
  19687. },
  19688. ]
  19689. ))
  19690. characterMakers.push(() => makeCharacter(
  19691. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19692. {
  19693. side: {
  19694. height: math.unit(55, "feet"),
  19695. weight: math.unit(153, "tons"),
  19696. name: "Side",
  19697. image: {
  19698. source: "./media/characters/shadow/side.svg",
  19699. extra: 701 / 628,
  19700. bottom: 0.02
  19701. }
  19702. },
  19703. flying: {
  19704. height: math.unit(145, "feet"),
  19705. weight: math.unit(153, "tons"),
  19706. name: "Flying",
  19707. image: {
  19708. source: "./media/characters/shadow/flying.svg"
  19709. }
  19710. },
  19711. },
  19712. [
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(55, "feet"),
  19716. default: true
  19717. },
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19722. {
  19723. front: {
  19724. height: math.unit(6, "feet"),
  19725. weight: math.unit(200, "lb"),
  19726. name: "Front",
  19727. image: {
  19728. source: "./media/characters/marcie/front.svg",
  19729. extra: 960 / 876,
  19730. bottom: 58 / 1017.87
  19731. }
  19732. },
  19733. },
  19734. [
  19735. {
  19736. name: "Macro",
  19737. height: math.unit(1, "mile"),
  19738. default: true
  19739. },
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19744. {
  19745. front: {
  19746. height: math.unit(7, "feet"),
  19747. weight: math.unit(200, "lb"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/kachina/front.svg",
  19751. extra: 1290.68 / 1119,
  19752. bottom: 36.5 / 1327.18
  19753. }
  19754. },
  19755. },
  19756. [
  19757. {
  19758. name: "Normal",
  19759. height: math.unit(7, "feet"),
  19760. default: true
  19761. },
  19762. ]
  19763. ))
  19764. characterMakers.push(() => makeCharacter(
  19765. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19766. {
  19767. looking: {
  19768. height: math.unit(2, "meters"),
  19769. weight: math.unit(300, "kg"),
  19770. name: "Looking",
  19771. image: {
  19772. source: "./media/characters/kash/looking.svg",
  19773. extra: 474 / 344,
  19774. bottom: 0.03
  19775. }
  19776. },
  19777. side: {
  19778. height: math.unit(2, "meters"),
  19779. weight: math.unit(300, "kg"),
  19780. name: "Side",
  19781. image: {
  19782. source: "./media/characters/kash/side.svg",
  19783. extra: 302 / 251,
  19784. bottom: 0.03
  19785. }
  19786. },
  19787. front: {
  19788. height: math.unit(2, "meters"),
  19789. weight: math.unit(300, "kg"),
  19790. name: "Front",
  19791. image: {
  19792. source: "./media/characters/kash/front.svg",
  19793. extra: 495 / 360,
  19794. bottom: 0.015
  19795. }
  19796. },
  19797. },
  19798. [
  19799. {
  19800. name: "Normal",
  19801. height: math.unit(2, "meters"),
  19802. default: true
  19803. },
  19804. {
  19805. name: "Big",
  19806. height: math.unit(3, "meters")
  19807. },
  19808. {
  19809. name: "Large",
  19810. height: math.unit(5, "meters")
  19811. },
  19812. ]
  19813. ))
  19814. characterMakers.push(() => makeCharacter(
  19815. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19816. {
  19817. feeding: {
  19818. height: math.unit(6.7, "feet"),
  19819. weight: math.unit(350, "lb"),
  19820. name: "Feeding",
  19821. image: {
  19822. source: "./media/characters/lalim/feeding.svg",
  19823. }
  19824. },
  19825. },
  19826. [
  19827. {
  19828. name: "Normal",
  19829. height: math.unit(6.7, "feet"),
  19830. default: true
  19831. },
  19832. ]
  19833. ))
  19834. characterMakers.push(() => makeCharacter(
  19835. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19836. {
  19837. front: {
  19838. height: math.unit(9.5, "feet"),
  19839. weight: math.unit(600, "lb"),
  19840. name: "Front",
  19841. image: {
  19842. source: "./media/characters/de'vout/front.svg",
  19843. extra: 1443 / 1328,
  19844. bottom: 0.025
  19845. }
  19846. },
  19847. back: {
  19848. height: math.unit(9.5, "feet"),
  19849. weight: math.unit(600, "lb"),
  19850. name: "Back",
  19851. image: {
  19852. source: "./media/characters/de'vout/back.svg",
  19853. extra: 1443 / 1328
  19854. }
  19855. },
  19856. frontDressed: {
  19857. height: math.unit(9.5, "feet"),
  19858. weight: math.unit(600, "lb"),
  19859. name: "Front (Dressed",
  19860. image: {
  19861. source: "./media/characters/de'vout/front-dressed.svg",
  19862. extra: 1443 / 1328,
  19863. bottom: 0.025
  19864. }
  19865. },
  19866. backDressed: {
  19867. height: math.unit(9.5, "feet"),
  19868. weight: math.unit(600, "lb"),
  19869. name: "Back (Dressed",
  19870. image: {
  19871. source: "./media/characters/de'vout/back-dressed.svg",
  19872. extra: 1443 / 1328
  19873. }
  19874. },
  19875. },
  19876. [
  19877. {
  19878. name: "Normal",
  19879. height: math.unit(9.5, "feet"),
  19880. default: true
  19881. },
  19882. ]
  19883. ))
  19884. characterMakers.push(() => makeCharacter(
  19885. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19886. {
  19887. front: {
  19888. height: math.unit(8, "feet"),
  19889. weight: math.unit(225, "lb"),
  19890. name: "Front",
  19891. image: {
  19892. source: "./media/characters/talana/front.svg",
  19893. extra: 1410 / 1300,
  19894. bottom: 0.015
  19895. }
  19896. },
  19897. frontDressed: {
  19898. height: math.unit(8, "feet"),
  19899. weight: math.unit(225, "lb"),
  19900. name: "Front (Dressed",
  19901. image: {
  19902. source: "./media/characters/talana/front-dressed.svg",
  19903. extra: 1410 / 1300,
  19904. bottom: 0.015
  19905. }
  19906. },
  19907. },
  19908. [
  19909. {
  19910. name: "Normal",
  19911. height: math.unit(8, "feet"),
  19912. default: true
  19913. },
  19914. ]
  19915. ))
  19916. characterMakers.push(() => makeCharacter(
  19917. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19918. {
  19919. side: {
  19920. height: math.unit(7.2, "feet"),
  19921. weight: math.unit(150, "lb"),
  19922. name: "Side",
  19923. image: {
  19924. source: "./media/characters/xeauvok/side.svg",
  19925. extra: 1975 / 1523,
  19926. bottom: 0.07
  19927. }
  19928. },
  19929. },
  19930. [
  19931. {
  19932. name: "Normal",
  19933. height: math.unit(7.2, "feet"),
  19934. default: true
  19935. },
  19936. ]
  19937. ))
  19938. characterMakers.push(() => makeCharacter(
  19939. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  19940. {
  19941. side: {
  19942. height: math.unit(4, "meters"),
  19943. weight: math.unit(2200, "kg"),
  19944. name: "Side",
  19945. image: {
  19946. source: "./media/characters/zara/side.svg",
  19947. extra: 765/744,
  19948. bottom: 156/921
  19949. }
  19950. },
  19951. },
  19952. [
  19953. {
  19954. name: "Normal",
  19955. height: math.unit(4, "meters"),
  19956. default: true
  19957. },
  19958. ]
  19959. ))
  19960. characterMakers.push(() => makeCharacter(
  19961. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  19962. {
  19963. side: {
  19964. height: math.unit(6, "feet"),
  19965. weight: math.unit(150, "lb"),
  19966. name: "Side",
  19967. image: {
  19968. source: "./media/characters/richard-dragon/side.svg",
  19969. extra: 845 / 340,
  19970. bottom: 0.017
  19971. }
  19972. },
  19973. maw: {
  19974. height: math.unit(2.97, "feet"),
  19975. name: "Maw",
  19976. image: {
  19977. source: "./media/characters/richard-dragon/maw.svg"
  19978. }
  19979. },
  19980. },
  19981. [
  19982. ]
  19983. ))
  19984. characterMakers.push(() => makeCharacter(
  19985. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  19986. {
  19987. front: {
  19988. height: math.unit(4, "feet"),
  19989. weight: math.unit(100, "lb"),
  19990. name: "Front",
  19991. image: {
  19992. source: "./media/characters/richard-smeargle/front.svg",
  19993. extra: 2952 / 2820,
  19994. bottom: 0.028
  19995. }
  19996. },
  19997. },
  19998. [
  19999. {
  20000. name: "Normal",
  20001. height: math.unit(4, "feet"),
  20002. default: true
  20003. },
  20004. {
  20005. name: "Dynamax",
  20006. height: math.unit(20, "meters")
  20007. },
  20008. ]
  20009. ))
  20010. characterMakers.push(() => makeCharacter(
  20011. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20012. {
  20013. front: {
  20014. height: math.unit(6, "feet"),
  20015. weight: math.unit(110, "lb"),
  20016. name: "Front",
  20017. image: {
  20018. source: "./media/characters/klay/front.svg",
  20019. extra: 962 / 883,
  20020. bottom: 0.04
  20021. }
  20022. },
  20023. back: {
  20024. height: math.unit(6, "feet"),
  20025. weight: math.unit(110, "lb"),
  20026. name: "Back",
  20027. image: {
  20028. source: "./media/characters/klay/back.svg",
  20029. extra: 962 / 883
  20030. }
  20031. },
  20032. beans: {
  20033. height: math.unit(1.15, "feet"),
  20034. name: "Beans",
  20035. image: {
  20036. source: "./media/characters/klay/beans.svg"
  20037. }
  20038. },
  20039. },
  20040. [
  20041. {
  20042. name: "Micro",
  20043. height: math.unit(6, "inches")
  20044. },
  20045. {
  20046. name: "Mini",
  20047. height: math.unit(3, "feet")
  20048. },
  20049. {
  20050. name: "Normal",
  20051. height: math.unit(6, "feet"),
  20052. default: true
  20053. },
  20054. {
  20055. name: "Big",
  20056. height: math.unit(25, "feet")
  20057. },
  20058. {
  20059. name: "Macro",
  20060. height: math.unit(100, "feet")
  20061. },
  20062. {
  20063. name: "Megamacro",
  20064. height: math.unit(400, "feet")
  20065. },
  20066. ]
  20067. ))
  20068. characterMakers.push(() => makeCharacter(
  20069. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20070. {
  20071. front: {
  20072. height: math.unit(6, "feet"),
  20073. weight: math.unit(160, "lb"),
  20074. name: "Front",
  20075. image: {
  20076. source: "./media/characters/marcus/front.svg",
  20077. extra: 734 / 676,
  20078. bottom: 0.03
  20079. }
  20080. },
  20081. },
  20082. [
  20083. {
  20084. name: "Little",
  20085. height: math.unit(6, "feet")
  20086. },
  20087. {
  20088. name: "Normal",
  20089. height: math.unit(110, "feet"),
  20090. default: true
  20091. },
  20092. {
  20093. name: "Macro",
  20094. height: math.unit(250, "feet")
  20095. },
  20096. {
  20097. name: "Megamacro",
  20098. height: math.unit(1000, "feet")
  20099. },
  20100. ]
  20101. ))
  20102. characterMakers.push(() => makeCharacter(
  20103. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20104. {
  20105. front: {
  20106. height: math.unit(7, "feet"),
  20107. weight: math.unit(275, "lb"),
  20108. name: "Front",
  20109. image: {
  20110. source: "./media/characters/claude-delroute/front.svg",
  20111. extra: 902/827,
  20112. bottom: 26/928
  20113. }
  20114. },
  20115. side: {
  20116. height: math.unit(7, "feet"),
  20117. weight: math.unit(275, "lb"),
  20118. name: "Side",
  20119. image: {
  20120. source: "./media/characters/claude-delroute/side.svg",
  20121. extra: 908/853,
  20122. bottom: 16/924
  20123. }
  20124. },
  20125. back: {
  20126. height: math.unit(7, "feet"),
  20127. weight: math.unit(275, "lb"),
  20128. name: "Back",
  20129. image: {
  20130. source: "./media/characters/claude-delroute/back.svg",
  20131. extra: 911/829,
  20132. bottom: 18/929
  20133. }
  20134. },
  20135. maw: {
  20136. height: math.unit(0.6407, "meters"),
  20137. name: "Maw",
  20138. image: {
  20139. source: "./media/characters/claude-delroute/maw.svg"
  20140. }
  20141. },
  20142. },
  20143. [
  20144. {
  20145. name: "Normal",
  20146. height: math.unit(7, "feet"),
  20147. default: true
  20148. },
  20149. {
  20150. name: "Lorge",
  20151. height: math.unit(20, "feet")
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(8 + 4 / 12, "feet"),
  20160. weight: math.unit(600, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/dragonien/front.svg",
  20164. extra: 100 / 94,
  20165. bottom: 3.3 / 103.3445
  20166. }
  20167. },
  20168. back: {
  20169. height: math.unit(8 + 4 / 12, "feet"),
  20170. weight: math.unit(600, "lb"),
  20171. name: "Back",
  20172. image: {
  20173. source: "./media/characters/dragonien/back.svg",
  20174. extra: 776 / 746,
  20175. bottom: 6.4 / 782.0616
  20176. }
  20177. },
  20178. foot: {
  20179. height: math.unit(1.54, "feet"),
  20180. name: "Foot",
  20181. image: {
  20182. source: "./media/characters/dragonien/foot.svg",
  20183. }
  20184. },
  20185. },
  20186. [
  20187. {
  20188. name: "Normal",
  20189. height: math.unit(8 + 4 / 12, "feet"),
  20190. default: true
  20191. },
  20192. {
  20193. name: "Macro",
  20194. height: math.unit(200, "feet")
  20195. },
  20196. {
  20197. name: "Megamacro",
  20198. height: math.unit(1, "mile")
  20199. },
  20200. {
  20201. name: "Gigamacro",
  20202. height: math.unit(1000, "miles")
  20203. },
  20204. ]
  20205. ))
  20206. characterMakers.push(() => makeCharacter(
  20207. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20208. {
  20209. front: {
  20210. height: math.unit(5 + 2 / 12, "feet"),
  20211. weight: math.unit(110, "lb"),
  20212. name: "Front",
  20213. image: {
  20214. source: "./media/characters/desta/front.svg",
  20215. extra: 767 / 726,
  20216. bottom: 11.7 / 779
  20217. }
  20218. },
  20219. back: {
  20220. height: math.unit(5 + 2 / 12, "feet"),
  20221. weight: math.unit(110, "lb"),
  20222. name: "Back",
  20223. image: {
  20224. source: "./media/characters/desta/back.svg",
  20225. extra: 777 / 728,
  20226. bottom: 6 / 784
  20227. }
  20228. },
  20229. frontAlt: {
  20230. height: math.unit(5 + 2 / 12, "feet"),
  20231. weight: math.unit(110, "lb"),
  20232. name: "Front",
  20233. image: {
  20234. source: "./media/characters/desta/front-alt.svg",
  20235. extra: 1482 / 1417
  20236. }
  20237. },
  20238. side: {
  20239. height: math.unit(5 + 2 / 12, "feet"),
  20240. weight: math.unit(110, "lb"),
  20241. name: "Side",
  20242. image: {
  20243. source: "./media/characters/desta/side.svg",
  20244. extra: 2579 / 2491,
  20245. bottom: 0.053
  20246. }
  20247. },
  20248. },
  20249. [
  20250. {
  20251. name: "Micro",
  20252. height: math.unit(6, "inches")
  20253. },
  20254. {
  20255. name: "Normal",
  20256. height: math.unit(5 + 2 / 12, "feet"),
  20257. default: true
  20258. },
  20259. {
  20260. name: "Macro",
  20261. height: math.unit(62, "feet")
  20262. },
  20263. {
  20264. name: "Megamacro",
  20265. height: math.unit(1800, "feet")
  20266. },
  20267. ]
  20268. ))
  20269. characterMakers.push(() => makeCharacter(
  20270. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20271. {
  20272. front: {
  20273. height: math.unit(10, "feet"),
  20274. weight: math.unit(700, "lb"),
  20275. name: "Front",
  20276. image: {
  20277. source: "./media/characters/storm-alystar/front.svg",
  20278. extra: 2112 / 1898,
  20279. bottom: 0.034
  20280. }
  20281. },
  20282. },
  20283. [
  20284. {
  20285. name: "Micro",
  20286. height: math.unit(3.5, "inches")
  20287. },
  20288. {
  20289. name: "Normal",
  20290. height: math.unit(10, "feet"),
  20291. default: true
  20292. },
  20293. {
  20294. name: "Macro",
  20295. height: math.unit(400, "feet")
  20296. },
  20297. {
  20298. name: "Deific",
  20299. height: math.unit(60, "miles")
  20300. },
  20301. ]
  20302. ))
  20303. characterMakers.push(() => makeCharacter(
  20304. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20305. {
  20306. front: {
  20307. height: math.unit(2.35, "meters"),
  20308. weight: math.unit(119, "kg"),
  20309. name: "Front",
  20310. image: {
  20311. source: "./media/characters/ilia/front.svg",
  20312. extra: 1285 / 1255,
  20313. bottom: 0.06
  20314. }
  20315. },
  20316. },
  20317. [
  20318. {
  20319. name: "Normal",
  20320. height: math.unit(2.35, "meters")
  20321. },
  20322. {
  20323. name: "Macro",
  20324. height: math.unit(140, "meters"),
  20325. default: true
  20326. },
  20327. {
  20328. name: "Megamacro",
  20329. height: math.unit(100, "miles")
  20330. },
  20331. ]
  20332. ))
  20333. characterMakers.push(() => makeCharacter(
  20334. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20335. {
  20336. front: {
  20337. height: math.unit(6 + 5 / 12, "feet"),
  20338. weight: math.unit(190, "lb"),
  20339. name: "Front",
  20340. image: {
  20341. source: "./media/characters/kingdead/front.svg",
  20342. extra: 1228 / 1177
  20343. }
  20344. },
  20345. },
  20346. [
  20347. {
  20348. name: "Micro",
  20349. height: math.unit(7, "inches")
  20350. },
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(6 + 5 / 12, "feet")
  20354. },
  20355. {
  20356. name: "Macro",
  20357. height: math.unit(150, "feet"),
  20358. default: true
  20359. },
  20360. {
  20361. name: "Megamacro",
  20362. height: math.unit(200, "miles")
  20363. },
  20364. ]
  20365. ))
  20366. characterMakers.push(() => makeCharacter(
  20367. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20368. {
  20369. front: {
  20370. height: math.unit(8, "feet"),
  20371. weight: math.unit(600, "lb"),
  20372. name: "Front",
  20373. image: {
  20374. source: "./media/characters/kyrehx/front.svg",
  20375. extra: 1195 / 1095,
  20376. bottom: 0.034
  20377. }
  20378. },
  20379. },
  20380. [
  20381. {
  20382. name: "Micro",
  20383. height: math.unit(2, "inches")
  20384. },
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(8, "feet"),
  20388. default: true
  20389. },
  20390. {
  20391. name: "Macro",
  20392. height: math.unit(255, "feet")
  20393. },
  20394. ]
  20395. ))
  20396. characterMakers.push(() => makeCharacter(
  20397. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20398. {
  20399. front: {
  20400. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20401. weight: math.unit(184, "lb"),
  20402. name: "Front",
  20403. image: {
  20404. source: "./media/characters/xang/front.svg",
  20405. extra: 845 / 755
  20406. }
  20407. },
  20408. },
  20409. [
  20410. {
  20411. name: "Normal",
  20412. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20413. default: true
  20414. },
  20415. {
  20416. name: "Macro",
  20417. height: math.unit(0.935 * 146, "feet")
  20418. },
  20419. {
  20420. name: "Megamacro",
  20421. height: math.unit(0.935 * 3, "miles")
  20422. },
  20423. ]
  20424. ))
  20425. characterMakers.push(() => makeCharacter(
  20426. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20427. {
  20428. frontDressed: {
  20429. height: math.unit(5 + 7 / 12, "feet"),
  20430. weight: math.unit(140, "lb"),
  20431. name: "Front (Dressed)",
  20432. image: {
  20433. source: "./media/characters/doc-weardno/front-dressed.svg",
  20434. extra: 263 / 234
  20435. }
  20436. },
  20437. backDressed: {
  20438. height: math.unit(5 + 7 / 12, "feet"),
  20439. weight: math.unit(140, "lb"),
  20440. name: "Back (Dressed)",
  20441. image: {
  20442. source: "./media/characters/doc-weardno/back-dressed.svg",
  20443. extra: 266 / 238
  20444. }
  20445. },
  20446. front: {
  20447. height: math.unit(5 + 7 / 12, "feet"),
  20448. weight: math.unit(140, "lb"),
  20449. name: "Front",
  20450. image: {
  20451. source: "./media/characters/doc-weardno/front.svg",
  20452. extra: 254 / 233
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Micro",
  20459. height: math.unit(3, "inches")
  20460. },
  20461. {
  20462. name: "Normal",
  20463. height: math.unit(5 + 7 / 12, "feet"),
  20464. default: true
  20465. },
  20466. {
  20467. name: "Macro",
  20468. height: math.unit(25, "feet")
  20469. },
  20470. {
  20471. name: "Megamacro",
  20472. height: math.unit(2, "miles")
  20473. },
  20474. ]
  20475. ))
  20476. characterMakers.push(() => makeCharacter(
  20477. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20478. {
  20479. front: {
  20480. height: math.unit(6 + 2 / 12, "feet"),
  20481. weight: math.unit(153, "lb"),
  20482. name: "Front",
  20483. image: {
  20484. source: "./media/characters/seth-whilst/front.svg",
  20485. bottom: 0.07
  20486. }
  20487. },
  20488. },
  20489. [
  20490. {
  20491. name: "Micro",
  20492. height: math.unit(5, "inches")
  20493. },
  20494. {
  20495. name: "Normal",
  20496. height: math.unit(6 + 2 / 12, "feet"),
  20497. default: true
  20498. },
  20499. ]
  20500. ))
  20501. characterMakers.push(() => makeCharacter(
  20502. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20503. {
  20504. front: {
  20505. height: math.unit(3, "inches"),
  20506. weight: math.unit(8, "grams"),
  20507. name: "Front",
  20508. image: {
  20509. source: "./media/characters/pocket-jabari/front.svg",
  20510. extra: 1024 / 974,
  20511. bottom: 0.039
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Minimicro",
  20518. height: math.unit(8, "mm")
  20519. },
  20520. {
  20521. name: "Micro",
  20522. height: math.unit(3, "inches"),
  20523. default: true
  20524. },
  20525. {
  20526. name: "Normal",
  20527. height: math.unit(3, "feet")
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20533. {
  20534. frontDressed: {
  20535. height: math.unit(15, "feet"),
  20536. weight: math.unit(3280, "lb"),
  20537. name: "Front (Dressed)",
  20538. image: {
  20539. source: "./media/characters/sapphy/front-dressed.svg",
  20540. extra: 1951/1654,
  20541. bottom: 194/2145
  20542. },
  20543. form: "anthro",
  20544. default: true
  20545. },
  20546. backDressed: {
  20547. height: math.unit(15, "feet"),
  20548. weight: math.unit(3280, "lb"),
  20549. name: "Back (Dressed)",
  20550. image: {
  20551. source: "./media/characters/sapphy/back-dressed.svg",
  20552. extra: 2058/1918,
  20553. bottom: 125/2183
  20554. },
  20555. form: "anthro"
  20556. },
  20557. frontNude: {
  20558. height: math.unit(15, "feet"),
  20559. weight: math.unit(3280, "lb"),
  20560. name: "Front (Nude)",
  20561. image: {
  20562. source: "./media/characters/sapphy/front-nude.svg",
  20563. extra: 1951/1654,
  20564. bottom: 194/2145
  20565. },
  20566. form: "anthro"
  20567. },
  20568. backNude: {
  20569. height: math.unit(15, "feet"),
  20570. weight: math.unit(3280, "lb"),
  20571. name: "Back (Nude)",
  20572. image: {
  20573. source: "./media/characters/sapphy/back-nude.svg",
  20574. extra: 2058/1918,
  20575. bottom: 125/2183
  20576. },
  20577. form: "anthro"
  20578. },
  20579. full: {
  20580. height: math.unit(15, "feet"),
  20581. weight: math.unit(3280, "lb"),
  20582. name: "Full",
  20583. image: {
  20584. source: "./media/characters/sapphy/full.svg",
  20585. extra: 1396/1317,
  20586. bottom: 44/1440
  20587. },
  20588. form: "anthro"
  20589. },
  20590. dick: {
  20591. height: math.unit(3.8, "feet"),
  20592. name: "Dick",
  20593. image: {
  20594. source: "./media/characters/sapphy/dick.svg"
  20595. },
  20596. form: "anthro"
  20597. },
  20598. feral: {
  20599. height: math.unit(35, "feet"),
  20600. weight: math.unit(160, "tons"),
  20601. name: "Feral",
  20602. image: {
  20603. source: "./media/characters/sapphy/feral.svg",
  20604. extra: 1050/573,
  20605. bottom: 60/1110
  20606. },
  20607. form: "feral",
  20608. default: true
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(15, "feet"),
  20615. form: "anthro"
  20616. },
  20617. {
  20618. name: "Casual Macro",
  20619. height: math.unit(120, "feet"),
  20620. form: "anthro"
  20621. },
  20622. {
  20623. name: "Macro",
  20624. height: math.unit(2150, "feet"),
  20625. default: true,
  20626. form: "anthro"
  20627. },
  20628. {
  20629. name: "Megamacro",
  20630. height: math.unit(8, "miles"),
  20631. form: "anthro"
  20632. },
  20633. {
  20634. name: "Galaxy Mom",
  20635. height: math.unit(6, "megalightyears"),
  20636. form: "anthro"
  20637. },
  20638. {
  20639. name: "Normal",
  20640. height: math.unit(35, "feet"),
  20641. form: "feral",
  20642. default: true
  20643. },
  20644. {
  20645. name: "Macro",
  20646. height: math.unit(300, "feet"),
  20647. form: "feral"
  20648. },
  20649. {
  20650. name: "Galaxy Mom",
  20651. height: math.unit(10, "megalightyears"),
  20652. form: "feral"
  20653. },
  20654. ],
  20655. {
  20656. "anthro": {
  20657. name: "Anthro",
  20658. default: true
  20659. },
  20660. "feral": {
  20661. name: "Feral"
  20662. }
  20663. }
  20664. ))
  20665. characterMakers.push(() => makeCharacter(
  20666. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20667. {
  20668. hyenaFront: {
  20669. height: math.unit(6, "feet"),
  20670. weight: math.unit(190, "lb"),
  20671. name: "Front",
  20672. image: {
  20673. source: "./media/characters/kiro/hyena-front.svg",
  20674. extra: 927/839,
  20675. bottom: 91/1018
  20676. },
  20677. form: "hyena",
  20678. default: true
  20679. },
  20680. front: {
  20681. height: math.unit(6, "feet"),
  20682. weight: math.unit(170, "lb"),
  20683. name: "Front",
  20684. image: {
  20685. source: "./media/characters/kiro/front.svg",
  20686. extra: 1064 / 1012,
  20687. bottom: 0.052
  20688. },
  20689. form: "folf",
  20690. default: true
  20691. },
  20692. },
  20693. [
  20694. {
  20695. name: "Micro",
  20696. height: math.unit(6, "inches"),
  20697. form: "folf"
  20698. },
  20699. {
  20700. name: "Normal",
  20701. height: math.unit(6, "feet"),
  20702. form: "folf",
  20703. default: true
  20704. },
  20705. {
  20706. name: "Macro",
  20707. height: math.unit(72, "feet"),
  20708. form: "folf"
  20709. },
  20710. {
  20711. name: "Micro",
  20712. height: math.unit(6, "inches"),
  20713. form: "hyena"
  20714. },
  20715. {
  20716. name: "Normal",
  20717. height: math.unit(6, "feet"),
  20718. form: "hyena",
  20719. default: true
  20720. },
  20721. {
  20722. name: "Macro",
  20723. height: math.unit(72, "feet"),
  20724. form: "hyena"
  20725. },
  20726. ],
  20727. {
  20728. "hyena": {
  20729. name: "Hyena",
  20730. default: true
  20731. },
  20732. "folf": {
  20733. name: "Folf",
  20734. },
  20735. }
  20736. ))
  20737. characterMakers.push(() => makeCharacter(
  20738. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20739. {
  20740. front: {
  20741. height: math.unit(5 + 9 / 12, "feet"),
  20742. weight: math.unit(175, "lb"),
  20743. name: "Front",
  20744. image: {
  20745. source: "./media/characters/irishfox/front.svg",
  20746. extra: 1912 / 1680,
  20747. bottom: 0.02
  20748. }
  20749. },
  20750. },
  20751. [
  20752. {
  20753. name: "Nano",
  20754. height: math.unit(1, "mm")
  20755. },
  20756. {
  20757. name: "Micro",
  20758. height: math.unit(2, "inches")
  20759. },
  20760. {
  20761. name: "Normal",
  20762. height: math.unit(5 + 9 / 12, "feet"),
  20763. default: true
  20764. },
  20765. {
  20766. name: "Macro",
  20767. height: math.unit(45, "feet")
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20773. {
  20774. front: {
  20775. height: math.unit(6 + 1 / 12, "feet"),
  20776. weight: math.unit(75, "lb"),
  20777. name: "Front",
  20778. image: {
  20779. source: "./media/characters/aronai-sieyes/front.svg",
  20780. extra: 1532/1450,
  20781. bottom: 42/1574
  20782. }
  20783. },
  20784. side: {
  20785. height: math.unit(6 + 1 / 12, "feet"),
  20786. weight: math.unit(75, "lb"),
  20787. name: "Side",
  20788. image: {
  20789. source: "./media/characters/aronai-sieyes/side.svg",
  20790. extra: 1422/1365,
  20791. bottom: 148/1570
  20792. }
  20793. },
  20794. back: {
  20795. height: math.unit(6 + 1 / 12, "feet"),
  20796. weight: math.unit(75, "lb"),
  20797. name: "Back",
  20798. image: {
  20799. source: "./media/characters/aronai-sieyes/back.svg",
  20800. extra: 1526/1464,
  20801. bottom: 51/1577
  20802. }
  20803. },
  20804. dressed: {
  20805. height: math.unit(6 + 1 / 12, "feet"),
  20806. weight: math.unit(75, "lb"),
  20807. name: "Dressed",
  20808. image: {
  20809. source: "./media/characters/aronai-sieyes/dressed.svg",
  20810. extra: 1559/1483,
  20811. bottom: 39/1598
  20812. }
  20813. },
  20814. slit: {
  20815. height: math.unit(1.3, "feet"),
  20816. name: "Slit",
  20817. image: {
  20818. source: "./media/characters/aronai-sieyes/slit.svg"
  20819. }
  20820. },
  20821. slitSpread: {
  20822. height: math.unit(0.9, "feet"),
  20823. name: "Slit (Spread)",
  20824. image: {
  20825. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20826. }
  20827. },
  20828. rump: {
  20829. height: math.unit(1.3, "feet"),
  20830. name: "Rump",
  20831. image: {
  20832. source: "./media/characters/aronai-sieyes/rump.svg"
  20833. }
  20834. },
  20835. maw: {
  20836. height: math.unit(1.25, "feet"),
  20837. name: "Maw",
  20838. image: {
  20839. source: "./media/characters/aronai-sieyes/maw.svg"
  20840. }
  20841. },
  20842. feral: {
  20843. height: math.unit(18, "feet"),
  20844. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20845. name: "Feral",
  20846. image: {
  20847. source: "./media/characters/aronai-sieyes/feral.svg",
  20848. extra: 1530 / 1240,
  20849. bottom: 0.035
  20850. }
  20851. },
  20852. },
  20853. [
  20854. {
  20855. name: "Micro",
  20856. height: math.unit(2, "inches")
  20857. },
  20858. {
  20859. name: "Normal",
  20860. height: math.unit(6 + 1 / 12, "feet"),
  20861. default: true
  20862. }
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20867. {
  20868. front: {
  20869. height: math.unit(12, "feet"),
  20870. weight: math.unit(410, "kg"),
  20871. name: "Front",
  20872. image: {
  20873. source: "./media/characters/xuna/front.svg",
  20874. extra: 2184 / 1980
  20875. }
  20876. },
  20877. side: {
  20878. height: math.unit(12, "feet"),
  20879. weight: math.unit(410, "kg"),
  20880. name: "Side",
  20881. image: {
  20882. source: "./media/characters/xuna/side.svg",
  20883. extra: 2184 / 1980
  20884. }
  20885. },
  20886. back: {
  20887. height: math.unit(12, "feet"),
  20888. weight: math.unit(410, "kg"),
  20889. name: "Back",
  20890. image: {
  20891. source: "./media/characters/xuna/back.svg",
  20892. extra: 2184 / 1980
  20893. }
  20894. },
  20895. },
  20896. [
  20897. {
  20898. name: "Nano glow",
  20899. height: math.unit(10, "nm")
  20900. },
  20901. {
  20902. name: "Micro floof",
  20903. height: math.unit(0.3, "m")
  20904. },
  20905. {
  20906. name: "Huggable softy boi",
  20907. height: math.unit(3.6576, "m"),
  20908. default: true
  20909. },
  20910. {
  20911. name: "Admirable floof",
  20912. height: math.unit(80, "meters")
  20913. },
  20914. {
  20915. name: "Gentle macro",
  20916. height: math.unit(300, "meters")
  20917. },
  20918. {
  20919. name: "Very careful floof",
  20920. height: math.unit(3200, "meters")
  20921. },
  20922. {
  20923. name: "The mega floof",
  20924. height: math.unit(36000, "meters")
  20925. },
  20926. {
  20927. name: "Giga-fur-Wicker",
  20928. height: math.unit(4800000, "meters")
  20929. },
  20930. {
  20931. name: "Licky world",
  20932. height: math.unit(20000000, "meters")
  20933. },
  20934. {
  20935. name: "Floofy cyan sun",
  20936. height: math.unit(1500000000, "meters")
  20937. },
  20938. {
  20939. name: "Milky Wicker",
  20940. height: math.unit(1000000000000000000000, "meters")
  20941. },
  20942. {
  20943. name: "The observing Wicker",
  20944. height: math.unit(999999999999999999999999999, "meters")
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20950. {
  20951. front: {
  20952. height: math.unit(5 + 9 / 12, "feet"),
  20953. weight: math.unit(150, "lb"),
  20954. name: "Front",
  20955. image: {
  20956. source: "./media/characters/arokha-sieyes/front.svg",
  20957. extra: 1425 / 1284,
  20958. bottom: 0.05
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Normal",
  20965. height: math.unit(5 + 9 / 12, "feet")
  20966. },
  20967. {
  20968. name: "Macro",
  20969. height: math.unit(30, "meters"),
  20970. default: true
  20971. },
  20972. ]
  20973. ))
  20974. characterMakers.push(() => makeCharacter(
  20975. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  20976. {
  20977. front: {
  20978. height: math.unit(6, "feet"),
  20979. weight: math.unit(180, "lb"),
  20980. name: "Front",
  20981. image: {
  20982. source: "./media/characters/arokh-sieyes/front.svg",
  20983. extra: 1830 / 1769,
  20984. bottom: 0.01
  20985. }
  20986. },
  20987. },
  20988. [
  20989. {
  20990. name: "Normal",
  20991. height: math.unit(6, "feet")
  20992. },
  20993. {
  20994. name: "Macro",
  20995. height: math.unit(30, "meters"),
  20996. default: true
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21002. {
  21003. side: {
  21004. height: math.unit(13 + 1 / 12, "feet"),
  21005. weight: math.unit(8.5, "tonnes"),
  21006. preyCapacity: math.unit(36, "people"),
  21007. name: "Side",
  21008. image: {
  21009. source: "./media/characters/goldeneye/side.svg",
  21010. extra: 1139/741,
  21011. bottom: 98/1237
  21012. }
  21013. },
  21014. front: {
  21015. height: math.unit(5.1, "feet"),
  21016. weight: math.unit(8.5, "tonnes"),
  21017. preyCapacity: math.unit(36, "people"),
  21018. name: "Front",
  21019. image: {
  21020. source: "./media/characters/goldeneye/front.svg",
  21021. extra: 635/365,
  21022. bottom: 598/1233
  21023. }
  21024. },
  21025. maw: {
  21026. height: math.unit(6.6, "feet"),
  21027. name: "Maw",
  21028. image: {
  21029. source: "./media/characters/goldeneye/maw.svg"
  21030. }
  21031. },
  21032. headFront: {
  21033. height: math.unit(8, "feet"),
  21034. name: "Head (Front)",
  21035. image: {
  21036. source: "./media/characters/goldeneye/head-front.svg"
  21037. }
  21038. },
  21039. headSide: {
  21040. height: math.unit(6, "feet"),
  21041. name: "Head (Side)",
  21042. image: {
  21043. source: "./media/characters/goldeneye/head-side.svg"
  21044. }
  21045. },
  21046. headBack: {
  21047. height: math.unit(8, "feet"),
  21048. name: "Head (Back)",
  21049. image: {
  21050. source: "./media/characters/goldeneye/head-back.svg"
  21051. }
  21052. },
  21053. paw: {
  21054. height: math.unit(3.4, "feet"),
  21055. name: "Paw",
  21056. image: {
  21057. source: "./media/characters/goldeneye/paw.svg"
  21058. }
  21059. },
  21060. toering: {
  21061. height: math.unit(0.45, "feet"),
  21062. name: "Toering",
  21063. image: {
  21064. source: "./media/characters/goldeneye/toering.svg"
  21065. }
  21066. },
  21067. eyes: {
  21068. height: math.unit(0.5, "feet"),
  21069. name: "Eyes",
  21070. image: {
  21071. source: "./media/characters/goldeneye/eyes.svg"
  21072. }
  21073. },
  21074. },
  21075. [
  21076. {
  21077. name: "Normal",
  21078. height: math.unit(13 + 1 / 12, "feet"),
  21079. default: true
  21080. },
  21081. ]
  21082. ))
  21083. characterMakers.push(() => makeCharacter(
  21084. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21085. {
  21086. front: {
  21087. height: math.unit(6 + 1 / 12, "feet"),
  21088. weight: math.unit(210, "lb"),
  21089. name: "Front",
  21090. image: {
  21091. source: "./media/characters/leonardo-lycheborne/front.svg",
  21092. extra: 776/723,
  21093. bottom: 34/810
  21094. }
  21095. },
  21096. side: {
  21097. height: math.unit(6 + 1 / 12, "feet"),
  21098. weight: math.unit(210, "lb"),
  21099. name: "Side",
  21100. image: {
  21101. source: "./media/characters/leonardo-lycheborne/side.svg",
  21102. extra: 780/728,
  21103. bottom: 12/792
  21104. }
  21105. },
  21106. back: {
  21107. height: math.unit(6 + 1 / 12, "feet"),
  21108. weight: math.unit(210, "lb"),
  21109. name: "Back",
  21110. image: {
  21111. source: "./media/characters/leonardo-lycheborne/back.svg",
  21112. extra: 775/721,
  21113. bottom: 17/792
  21114. }
  21115. },
  21116. hand: {
  21117. height: math.unit(1.08, "feet"),
  21118. name: "Hand",
  21119. image: {
  21120. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21121. }
  21122. },
  21123. foot: {
  21124. height: math.unit(1.32, "feet"),
  21125. name: "Foot",
  21126. image: {
  21127. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21128. }
  21129. },
  21130. maw: {
  21131. height: math.unit(1, "feet"),
  21132. name: "Maw",
  21133. image: {
  21134. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21135. }
  21136. },
  21137. were: {
  21138. height: math.unit(20, "feet"),
  21139. weight: math.unit(7800, "lb"),
  21140. name: "Were",
  21141. image: {
  21142. source: "./media/characters/leonardo-lycheborne/were.svg",
  21143. extra: 1224/1165,
  21144. bottom: 72/1296
  21145. }
  21146. },
  21147. feral: {
  21148. height: math.unit(7.5, "feet"),
  21149. weight: math.unit(600, "lb"),
  21150. name: "Feral",
  21151. image: {
  21152. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21153. extra: 797/702,
  21154. bottom: 139/936
  21155. }
  21156. },
  21157. taur: {
  21158. height: math.unit(11, "feet"),
  21159. weight: math.unit(3300, "lb"),
  21160. name: "Taur",
  21161. image: {
  21162. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21163. extra: 1271/1197,
  21164. bottom: 47/1318
  21165. }
  21166. },
  21167. barghest: {
  21168. height: math.unit(11, "feet"),
  21169. weight: math.unit(1300, "lb"),
  21170. name: "Barghest",
  21171. image: {
  21172. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21173. extra: 1291/1204,
  21174. bottom: 37/1328
  21175. }
  21176. },
  21177. dick: {
  21178. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21179. name: "Dick",
  21180. image: {
  21181. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21182. }
  21183. },
  21184. dickWere: {
  21185. height: math.unit((20) / 3.8, "feet"),
  21186. name: "Dick (Were)",
  21187. image: {
  21188. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21189. }
  21190. },
  21191. },
  21192. [
  21193. {
  21194. name: "Normal",
  21195. height: math.unit(6 + 1 / 12, "feet"),
  21196. default: true
  21197. },
  21198. ]
  21199. ))
  21200. characterMakers.push(() => makeCharacter(
  21201. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21202. {
  21203. front: {
  21204. height: math.unit(10, "feet"),
  21205. weight: math.unit(350, "lb"),
  21206. name: "Front",
  21207. image: {
  21208. source: "./media/characters/jet/front.svg",
  21209. extra: 2050 / 1980,
  21210. bottom: 0.013
  21211. }
  21212. },
  21213. back: {
  21214. height: math.unit(10, "feet"),
  21215. weight: math.unit(350, "lb"),
  21216. name: "Back",
  21217. image: {
  21218. source: "./media/characters/jet/back.svg",
  21219. extra: 2050 / 1980,
  21220. bottom: 0.013
  21221. }
  21222. },
  21223. },
  21224. [
  21225. {
  21226. name: "Micro",
  21227. height: math.unit(6, "inches")
  21228. },
  21229. {
  21230. name: "Normal",
  21231. height: math.unit(10, "feet"),
  21232. default: true
  21233. },
  21234. {
  21235. name: "Macro",
  21236. height: math.unit(100, "feet")
  21237. },
  21238. ]
  21239. ))
  21240. characterMakers.push(() => makeCharacter(
  21241. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21242. {
  21243. front: {
  21244. height: math.unit(15, "feet"),
  21245. weight: math.unit(2800, "lb"),
  21246. name: "Front",
  21247. image: {
  21248. source: "./media/characters/tanarath/front.svg",
  21249. extra: 2392 / 2220,
  21250. bottom: 0.03
  21251. }
  21252. },
  21253. back: {
  21254. height: math.unit(15, "feet"),
  21255. weight: math.unit(2800, "lb"),
  21256. name: "Back",
  21257. image: {
  21258. source: "./media/characters/tanarath/back.svg",
  21259. extra: 2392 / 2220,
  21260. bottom: 0.03
  21261. }
  21262. },
  21263. },
  21264. [
  21265. {
  21266. name: "Normal",
  21267. height: math.unit(15, "feet"),
  21268. default: true
  21269. },
  21270. ]
  21271. ))
  21272. characterMakers.push(() => makeCharacter(
  21273. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21274. {
  21275. front: {
  21276. height: math.unit(7 + 1 / 12, "feet"),
  21277. weight: math.unit(175, "lb"),
  21278. name: "Front",
  21279. image: {
  21280. source: "./media/characters/patty-cattybatty/front.svg",
  21281. extra: 908 / 874,
  21282. bottom: 0.025
  21283. }
  21284. },
  21285. },
  21286. [
  21287. {
  21288. name: "Micro",
  21289. height: math.unit(1, "inch")
  21290. },
  21291. {
  21292. name: "Normal",
  21293. height: math.unit(7 + 1 / 12, "feet")
  21294. },
  21295. {
  21296. name: "Mini Macro",
  21297. height: math.unit(155, "feet")
  21298. },
  21299. {
  21300. name: "Macro",
  21301. height: math.unit(1077, "feet")
  21302. },
  21303. {
  21304. name: "Mega Macro",
  21305. height: math.unit(47650, "feet"),
  21306. default: true
  21307. },
  21308. {
  21309. name: "Giga Macro",
  21310. height: math.unit(440, "miles")
  21311. },
  21312. {
  21313. name: "Tera Macro",
  21314. height: math.unit(8700, "miles")
  21315. },
  21316. {
  21317. name: "Planetary Macro",
  21318. height: math.unit(32700, "miles")
  21319. },
  21320. {
  21321. name: "Solar Macro",
  21322. height: math.unit(550000, "miles")
  21323. },
  21324. {
  21325. name: "Celestial Macro",
  21326. height: math.unit(2.5, "AU")
  21327. },
  21328. ]
  21329. ))
  21330. characterMakers.push(() => makeCharacter(
  21331. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21332. {
  21333. front: {
  21334. height: math.unit(4 + 5 / 12, "feet"),
  21335. weight: math.unit(90, "lb"),
  21336. name: "Front",
  21337. image: {
  21338. source: "./media/characters/cappu/front.svg",
  21339. extra: 1247 / 1152,
  21340. bottom: 0.012
  21341. }
  21342. },
  21343. },
  21344. [
  21345. {
  21346. name: "Normal",
  21347. height: math.unit(4 + 5 / 12, "feet"),
  21348. default: true
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21354. {
  21355. frontDressed: {
  21356. height: math.unit(70, "cm"),
  21357. weight: math.unit(6, "kg"),
  21358. name: "Front (Dressed)",
  21359. image: {
  21360. source: "./media/characters/sebi/front-dressed.svg",
  21361. extra: 713.5 / 686.5,
  21362. bottom: 0.003
  21363. }
  21364. },
  21365. front: {
  21366. height: math.unit(70, "cm"),
  21367. weight: math.unit(5, "kg"),
  21368. name: "Front",
  21369. image: {
  21370. source: "./media/characters/sebi/front.svg",
  21371. extra: 713.5 / 686.5,
  21372. bottom: 0.003
  21373. }
  21374. }
  21375. },
  21376. [
  21377. {
  21378. name: "Normal",
  21379. height: math.unit(70, "cm"),
  21380. default: true
  21381. },
  21382. {
  21383. name: "Macro",
  21384. height: math.unit(8, "meters")
  21385. },
  21386. ]
  21387. ))
  21388. characterMakers.push(() => makeCharacter(
  21389. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21390. {
  21391. front: {
  21392. height: math.unit(6, "feet"),
  21393. weight: math.unit(150, "lb"),
  21394. name: "Front",
  21395. image: {
  21396. source: "./media/characters/typhek/front.svg",
  21397. extra: 1948 / 1929,
  21398. bottom: 0.025
  21399. }
  21400. },
  21401. side: {
  21402. height: math.unit(6, "feet"),
  21403. weight: math.unit(150, "lb"),
  21404. name: "Side",
  21405. image: {
  21406. source: "./media/characters/typhek/side.svg",
  21407. extra: 2034 / 2010,
  21408. bottom: 0.003
  21409. }
  21410. },
  21411. back: {
  21412. height: math.unit(6, "feet"),
  21413. weight: math.unit(150, "lb"),
  21414. name: "Back",
  21415. image: {
  21416. source: "./media/characters/typhek/back.svg",
  21417. extra: 2005 / 1978,
  21418. bottom: 0.004
  21419. }
  21420. },
  21421. palm: {
  21422. height: math.unit(1.2, "feet"),
  21423. name: "Palm",
  21424. image: {
  21425. source: "./media/characters/typhek/palm.svg"
  21426. }
  21427. },
  21428. fist: {
  21429. height: math.unit(1.1, "feet"),
  21430. name: "Fist",
  21431. image: {
  21432. source: "./media/characters/typhek/fist.svg"
  21433. }
  21434. },
  21435. foot: {
  21436. height: math.unit(1.57, "feet"),
  21437. name: "Foot",
  21438. image: {
  21439. source: "./media/characters/typhek/foot.svg"
  21440. }
  21441. },
  21442. sole: {
  21443. height: math.unit(2.05, "feet"),
  21444. name: "Sole",
  21445. image: {
  21446. source: "./media/characters/typhek/sole.svg"
  21447. }
  21448. },
  21449. },
  21450. [
  21451. {
  21452. name: "Macro",
  21453. height: math.unit(40, "stories"),
  21454. default: true
  21455. },
  21456. {
  21457. name: "Megamacro",
  21458. height: math.unit(1, "mile")
  21459. },
  21460. {
  21461. name: "Gigamacro",
  21462. height: math.unit(4000, "solarradii")
  21463. },
  21464. {
  21465. name: "Universal",
  21466. height: math.unit(1.1, "universes")
  21467. }
  21468. ]
  21469. ))
  21470. characterMakers.push(() => makeCharacter(
  21471. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21472. {
  21473. side: {
  21474. height: math.unit(5 + 7 / 12, "feet"),
  21475. weight: math.unit(150, "lb"),
  21476. name: "Side",
  21477. image: {
  21478. source: "./media/characters/kassy/side.svg",
  21479. extra: 1280 / 1225,
  21480. bottom: 0.002
  21481. }
  21482. },
  21483. front: {
  21484. height: math.unit(5 + 7 / 12, "feet"),
  21485. weight: math.unit(150, "lb"),
  21486. name: "Front",
  21487. image: {
  21488. source: "./media/characters/kassy/front.svg",
  21489. extra: 1280 / 1225,
  21490. bottom: 0.025
  21491. }
  21492. },
  21493. back: {
  21494. height: math.unit(5 + 7 / 12, "feet"),
  21495. weight: math.unit(150, "lb"),
  21496. name: "Back",
  21497. image: {
  21498. source: "./media/characters/kassy/back.svg",
  21499. extra: 1280 / 1225,
  21500. bottom: 0.002
  21501. }
  21502. },
  21503. foot: {
  21504. height: math.unit(1.266, "feet"),
  21505. name: "Foot",
  21506. image: {
  21507. source: "./media/characters/kassy/foot.svg"
  21508. }
  21509. },
  21510. },
  21511. [
  21512. {
  21513. name: "Normal",
  21514. height: math.unit(5 + 7 / 12, "feet")
  21515. },
  21516. {
  21517. name: "Macro",
  21518. height: math.unit(137, "feet"),
  21519. default: true
  21520. },
  21521. {
  21522. name: "Megamacro",
  21523. height: math.unit(1, "mile")
  21524. },
  21525. ]
  21526. ))
  21527. characterMakers.push(() => makeCharacter(
  21528. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21529. {
  21530. front: {
  21531. height: math.unit(6 + 1 / 12, "feet"),
  21532. weight: math.unit(200, "lb"),
  21533. name: "Front",
  21534. image: {
  21535. source: "./media/characters/neil/front.svg",
  21536. extra: 1326 / 1250,
  21537. bottom: 0.023
  21538. }
  21539. },
  21540. },
  21541. [
  21542. {
  21543. name: "Normal",
  21544. height: math.unit(6 + 1 / 12, "feet"),
  21545. default: true
  21546. },
  21547. {
  21548. name: "Macro",
  21549. height: math.unit(200, "feet")
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(5 + 9 / 12, "feet"),
  21558. weight: math.unit(190, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/atticus/front.svg",
  21562. extra: 2934 / 2785,
  21563. bottom: 0.025
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Normal",
  21570. height: math.unit(5 + 9 / 12, "feet"),
  21571. default: true
  21572. },
  21573. {
  21574. name: "Macro",
  21575. height: math.unit(180, "feet")
  21576. },
  21577. ]
  21578. ))
  21579. characterMakers.push(() => makeCharacter(
  21580. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21581. {
  21582. side: {
  21583. height: math.unit(9, "feet"),
  21584. weight: math.unit(650, "lb"),
  21585. name: "Side",
  21586. image: {
  21587. source: "./media/characters/milo/side.svg",
  21588. extra: 2644 / 2310,
  21589. bottom: 0.032
  21590. }
  21591. },
  21592. },
  21593. [
  21594. {
  21595. name: "Normal",
  21596. height: math.unit(9, "feet"),
  21597. default: true
  21598. },
  21599. {
  21600. name: "Macro",
  21601. height: math.unit(300, "feet")
  21602. },
  21603. ]
  21604. ))
  21605. characterMakers.push(() => makeCharacter(
  21606. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21607. {
  21608. side: {
  21609. height: math.unit(8, "meters"),
  21610. weight: math.unit(90000, "kg"),
  21611. name: "Side",
  21612. image: {
  21613. source: "./media/characters/ijzer/side.svg",
  21614. extra: 2756 / 1600,
  21615. bottom: 0.01
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Small",
  21622. height: math.unit(3, "meters")
  21623. },
  21624. {
  21625. name: "Normal",
  21626. height: math.unit(8, "meters"),
  21627. default: true
  21628. },
  21629. {
  21630. name: "Normal+",
  21631. height: math.unit(10, "meters")
  21632. },
  21633. {
  21634. name: "Bigger",
  21635. height: math.unit(24, "meters")
  21636. },
  21637. {
  21638. name: "Huge",
  21639. height: math.unit(80, "meters")
  21640. },
  21641. ]
  21642. ))
  21643. characterMakers.push(() => makeCharacter(
  21644. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21645. {
  21646. front: {
  21647. height: math.unit(6 + 2 / 12, "feet"),
  21648. weight: math.unit(153, "lb"),
  21649. name: "Front",
  21650. image: {
  21651. source: "./media/characters/luca-cervicum/front.svg",
  21652. extra: 370 / 327,
  21653. bottom: 0.015
  21654. }
  21655. },
  21656. back: {
  21657. height: math.unit(6 + 2 / 12, "feet"),
  21658. weight: math.unit(153, "lb"),
  21659. name: "Back",
  21660. image: {
  21661. source: "./media/characters/luca-cervicum/back.svg",
  21662. extra: 367 / 333,
  21663. bottom: 0.005
  21664. }
  21665. },
  21666. frontGear: {
  21667. height: math.unit(6 + 2 / 12, "feet"),
  21668. weight: math.unit(173, "lb"),
  21669. name: "Front (Gear)",
  21670. image: {
  21671. source: "./media/characters/luca-cervicum/front-gear.svg",
  21672. extra: 377 / 333,
  21673. bottom: 0.006
  21674. }
  21675. },
  21676. },
  21677. [
  21678. {
  21679. name: "Normal",
  21680. height: math.unit(6 + 2 / 12, "feet"),
  21681. default: true
  21682. },
  21683. ]
  21684. ))
  21685. characterMakers.push(() => makeCharacter(
  21686. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21687. {
  21688. front: {
  21689. height: math.unit(6 + 1 / 12, "feet"),
  21690. weight: math.unit(304, "lb"),
  21691. name: "Front",
  21692. image: {
  21693. source: "./media/characters/oliver/front.svg",
  21694. extra: 157 / 143,
  21695. bottom: 0.08
  21696. }
  21697. },
  21698. },
  21699. [
  21700. {
  21701. name: "Normal",
  21702. height: math.unit(6 + 1 / 12, "feet"),
  21703. default: true
  21704. },
  21705. ]
  21706. ))
  21707. characterMakers.push(() => makeCharacter(
  21708. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21709. {
  21710. front: {
  21711. height: math.unit(5 + 7 / 12, "feet"),
  21712. weight: math.unit(140, "lb"),
  21713. name: "Front",
  21714. image: {
  21715. source: "./media/characters/shane/front.svg",
  21716. extra: 304 / 289,
  21717. bottom: 0.005
  21718. }
  21719. },
  21720. },
  21721. [
  21722. {
  21723. name: "Normal",
  21724. height: math.unit(5 + 7 / 12, "feet"),
  21725. default: true
  21726. },
  21727. ]
  21728. ))
  21729. characterMakers.push(() => makeCharacter(
  21730. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21731. {
  21732. front: {
  21733. height: math.unit(5 + 9 / 12, "feet"),
  21734. weight: math.unit(178, "lb"),
  21735. name: "Front",
  21736. image: {
  21737. source: "./media/characters/shin/front.svg",
  21738. extra: 159 / 151,
  21739. bottom: 0.015
  21740. }
  21741. },
  21742. },
  21743. [
  21744. {
  21745. name: "Normal",
  21746. height: math.unit(5 + 9 / 12, "feet"),
  21747. default: true
  21748. },
  21749. ]
  21750. ))
  21751. characterMakers.push(() => makeCharacter(
  21752. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21753. {
  21754. front: {
  21755. height: math.unit(5 + 10 / 12, "feet"),
  21756. weight: math.unit(168, "lb"),
  21757. name: "Front",
  21758. image: {
  21759. source: "./media/characters/xerxes/front.svg",
  21760. extra: 282 / 260,
  21761. bottom: 0.045
  21762. }
  21763. },
  21764. },
  21765. [
  21766. {
  21767. name: "Normal",
  21768. height: math.unit(5 + 10 / 12, "feet"),
  21769. default: true
  21770. },
  21771. ]
  21772. ))
  21773. characterMakers.push(() => makeCharacter(
  21774. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21775. {
  21776. front: {
  21777. height: math.unit(6 + 7 / 12, "feet"),
  21778. weight: math.unit(208, "lb"),
  21779. name: "Front",
  21780. image: {
  21781. source: "./media/characters/chaska/front.svg",
  21782. extra: 332 / 319,
  21783. bottom: 0.015
  21784. }
  21785. },
  21786. },
  21787. [
  21788. {
  21789. name: "Normal",
  21790. height: math.unit(6 + 7 / 12, "feet"),
  21791. default: true
  21792. },
  21793. ]
  21794. ))
  21795. characterMakers.push(() => makeCharacter(
  21796. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21797. {
  21798. front: {
  21799. height: math.unit(5 + 8 / 12, "feet"),
  21800. weight: math.unit(208, "lb"),
  21801. name: "Front",
  21802. image: {
  21803. source: "./media/characters/enuk/front.svg",
  21804. extra: 437 / 406,
  21805. bottom: 0.02
  21806. }
  21807. },
  21808. },
  21809. [
  21810. {
  21811. name: "Normal",
  21812. height: math.unit(5 + 8 / 12, "feet"),
  21813. default: true
  21814. },
  21815. ]
  21816. ))
  21817. characterMakers.push(() => makeCharacter(
  21818. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21819. {
  21820. front: {
  21821. height: math.unit(5 + 10 / 12, "feet"),
  21822. weight: math.unit(252, "lb"),
  21823. name: "Front",
  21824. image: {
  21825. source: "./media/characters/bruun/front.svg",
  21826. extra: 197 / 187,
  21827. bottom: 0.012
  21828. }
  21829. },
  21830. },
  21831. [
  21832. {
  21833. name: "Normal",
  21834. height: math.unit(5 + 10 / 12, "feet"),
  21835. default: true
  21836. },
  21837. ]
  21838. ))
  21839. characterMakers.push(() => makeCharacter(
  21840. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21841. {
  21842. front: {
  21843. height: math.unit(6 + 10 / 12, "feet"),
  21844. weight: math.unit(255, "lb"),
  21845. name: "Front",
  21846. image: {
  21847. source: "./media/characters/alexeev/front.svg",
  21848. extra: 213 / 200,
  21849. bottom: 0.05
  21850. }
  21851. },
  21852. },
  21853. [
  21854. {
  21855. name: "Normal",
  21856. height: math.unit(6 + 10 / 12, "feet"),
  21857. default: true
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(2 + 8 / 12, "feet"),
  21866. weight: math.unit(22, "lb"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/evelyn/front.svg",
  21870. extra: 208 / 180
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Normal",
  21877. height: math.unit(2 + 8 / 12, "feet"),
  21878. default: true
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(5 + 9 / 12, "feet"),
  21887. weight: math.unit(139, "lb"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/inca/front.svg",
  21891. extra: 294 / 291,
  21892. bottom: 0.03
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "Normal",
  21899. height: math.unit(5 + 9 / 12, "feet"),
  21900. default: true
  21901. },
  21902. ]
  21903. ))
  21904. characterMakers.push(() => makeCharacter(
  21905. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21906. {
  21907. front: {
  21908. height: math.unit(6 + 3 / 12, "feet"),
  21909. weight: math.unit(185, "lb"),
  21910. name: "Front",
  21911. image: {
  21912. source: "./media/characters/mera/front.svg",
  21913. extra: 291 / 277,
  21914. bottom: 0.03
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(6 + 3 / 12, "feet"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(6 + 7 / 12, "feet"),
  21931. weight: math.unit(160, "lb"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/ceres/front.svg",
  21935. extra: 1023 / 950,
  21936. bottom: 0.027
  21937. }
  21938. },
  21939. back: {
  21940. height: math.unit(6 + 7 / 12, "feet"),
  21941. weight: math.unit(160, "lb"),
  21942. name: "Back",
  21943. image: {
  21944. source: "./media/characters/ceres/back.svg",
  21945. extra: 1023 / 950
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Normal",
  21952. height: math.unit(6 + 7 / 12, "feet"),
  21953. default: true
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  21959. {
  21960. front: {
  21961. height: math.unit(5 + 10 / 12, "feet"),
  21962. weight: math.unit(150, "lb"),
  21963. name: "Front",
  21964. image: {
  21965. source: "./media/characters/kris/front.svg",
  21966. extra: 885 / 803,
  21967. bottom: 0.03
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Normal",
  21974. height: math.unit(5 + 10 / 12, "feet"),
  21975. default: true
  21976. },
  21977. ]
  21978. ))
  21979. characterMakers.push(() => makeCharacter(
  21980. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  21981. {
  21982. dragon_front: {
  21983. height: math.unit(5, "feet"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/taluthus/dragon-front.svg",
  21987. extra: 1203/1098,
  21988. bottom: 46/1249
  21989. },
  21990. form: "dragon",
  21991. default: true
  21992. },
  21993. dragon_maw: {
  21994. height: math.unit(2.35, "feet"),
  21995. name: "Maw",
  21996. image: {
  21997. source: "./media/characters/taluthus/dragon-maw.svg"
  21998. },
  21999. form: "dragon",
  22000. },
  22001. kitsune_front: {
  22002. height: math.unit(7, "feet"),
  22003. name: "Front",
  22004. image: {
  22005. source: "./media/characters/taluthus/kitsune-front.svg",
  22006. extra: 900/841,
  22007. bottom: 65/965
  22008. },
  22009. form: "kitsune",
  22010. default: true
  22011. },
  22012. },
  22013. [
  22014. {
  22015. name: "Normal",
  22016. height: math.unit(5, "feet"),
  22017. form: "dragon",
  22018. default: true,
  22019. },
  22020. {
  22021. name: "Normal",
  22022. height: math.unit(7, "feet"),
  22023. form: "kitsune",
  22024. default: true
  22025. },
  22026. {
  22027. name: "Macro",
  22028. height: math.unit(300, "feet"),
  22029. allForms: true
  22030. },
  22031. ],
  22032. {
  22033. "dragon": {
  22034. name: "Dragon",
  22035. default: true
  22036. },
  22037. "kitsune": {
  22038. name: "Kitsune",
  22039. },
  22040. }
  22041. ))
  22042. characterMakers.push(() => makeCharacter(
  22043. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22044. {
  22045. front: {
  22046. height: math.unit(5 + 9 / 12, "feet"),
  22047. weight: math.unit(145, "lb"),
  22048. name: "Front",
  22049. image: {
  22050. source: "./media/characters/dawn/front.svg",
  22051. extra: 2094 / 2016,
  22052. bottom: 0.025
  22053. }
  22054. },
  22055. back: {
  22056. height: math.unit(5 + 9 / 12, "feet"),
  22057. weight: math.unit(160, "lb"),
  22058. name: "Back",
  22059. image: {
  22060. source: "./media/characters/dawn/back.svg",
  22061. extra: 2112 / 2080,
  22062. bottom: 0.005
  22063. }
  22064. },
  22065. },
  22066. [
  22067. {
  22068. name: "Normal",
  22069. height: math.unit(6 + 7 / 12, "feet"),
  22070. default: true
  22071. },
  22072. ]
  22073. ))
  22074. characterMakers.push(() => makeCharacter(
  22075. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22076. {
  22077. anthro: {
  22078. height: math.unit(8 + 3 / 12, "feet"),
  22079. weight: math.unit(450, "lb"),
  22080. name: "Anthro",
  22081. image: {
  22082. source: "./media/characters/arador/anthro.svg",
  22083. extra: 1835 / 1718,
  22084. bottom: 0.025
  22085. }
  22086. },
  22087. feral: {
  22088. height: math.unit(4, "feet"),
  22089. weight: math.unit(200, "lb"),
  22090. name: "Feral",
  22091. image: {
  22092. source: "./media/characters/arador/feral.svg",
  22093. extra: 1683 / 1514,
  22094. bottom: 0.07
  22095. }
  22096. },
  22097. },
  22098. [
  22099. {
  22100. name: "Normal",
  22101. height: math.unit(8 + 3 / 12, "feet")
  22102. },
  22103. {
  22104. name: "Macro",
  22105. height: math.unit(82.5, "feet"),
  22106. default: true
  22107. },
  22108. ]
  22109. ))
  22110. characterMakers.push(() => makeCharacter(
  22111. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22112. {
  22113. front: {
  22114. height: math.unit(5 + 10 / 12, "feet"),
  22115. weight: math.unit(125, "lb"),
  22116. name: "Front",
  22117. image: {
  22118. source: "./media/characters/dharsi/front.svg",
  22119. extra: 716 / 630,
  22120. bottom: 0.035
  22121. }
  22122. },
  22123. },
  22124. [
  22125. {
  22126. name: "Nano",
  22127. height: math.unit(100, "nm")
  22128. },
  22129. {
  22130. name: "Micro",
  22131. height: math.unit(2, "inches")
  22132. },
  22133. {
  22134. name: "Normal",
  22135. height: math.unit(5 + 10 / 12, "feet"),
  22136. default: true
  22137. },
  22138. {
  22139. name: "Macro",
  22140. height: math.unit(1000, "feet")
  22141. },
  22142. {
  22143. name: "Megamacro",
  22144. height: math.unit(10, "miles")
  22145. },
  22146. {
  22147. name: "Gigamacro",
  22148. height: math.unit(3000, "miles")
  22149. },
  22150. {
  22151. name: "Teramacro",
  22152. height: math.unit(500000, "miles")
  22153. },
  22154. {
  22155. name: "Teramacro+",
  22156. height: math.unit(30, "galaxies")
  22157. },
  22158. ]
  22159. ))
  22160. characterMakers.push(() => makeCharacter(
  22161. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22162. {
  22163. front: {
  22164. height: math.unit(6, "feet"),
  22165. weight: math.unit(150, "lb"),
  22166. name: "Front",
  22167. image: {
  22168. source: "./media/characters/deathy/front.svg",
  22169. extra: 1552 / 1463,
  22170. bottom: 0.025
  22171. }
  22172. },
  22173. side: {
  22174. height: math.unit(6, "feet"),
  22175. weight: math.unit(150, "lb"),
  22176. name: "Side",
  22177. image: {
  22178. source: "./media/characters/deathy/side.svg",
  22179. extra: 1604 / 1455,
  22180. bottom: 0.025
  22181. }
  22182. },
  22183. back: {
  22184. height: math.unit(6, "feet"),
  22185. weight: math.unit(150, "lb"),
  22186. name: "Back",
  22187. image: {
  22188. source: "./media/characters/deathy/back.svg",
  22189. extra: 1580 / 1463,
  22190. bottom: 0.005
  22191. }
  22192. },
  22193. },
  22194. [
  22195. {
  22196. name: "Micro",
  22197. height: math.unit(5, "millimeters")
  22198. },
  22199. {
  22200. name: "Normal",
  22201. height: math.unit(6 + 5 / 12, "feet"),
  22202. default: true
  22203. },
  22204. ]
  22205. ))
  22206. characterMakers.push(() => makeCharacter(
  22207. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22208. {
  22209. front: {
  22210. height: math.unit(16, "feet"),
  22211. weight: math.unit(4000, "lb"),
  22212. name: "Front",
  22213. image: {
  22214. source: "./media/characters/juniper/front.svg",
  22215. bottom: 0.04
  22216. }
  22217. },
  22218. },
  22219. [
  22220. {
  22221. name: "Normal",
  22222. height: math.unit(16, "feet"),
  22223. default: true
  22224. },
  22225. ]
  22226. ))
  22227. characterMakers.push(() => makeCharacter(
  22228. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22229. {
  22230. front: {
  22231. height: math.unit(6, "feet"),
  22232. weight: math.unit(150, "lb"),
  22233. name: "Front",
  22234. image: {
  22235. source: "./media/characters/hipster/front.svg",
  22236. extra: 1312 / 1209,
  22237. bottom: 0.025
  22238. }
  22239. },
  22240. back: {
  22241. height: math.unit(6, "feet"),
  22242. weight: math.unit(150, "lb"),
  22243. name: "Back",
  22244. image: {
  22245. source: "./media/characters/hipster/back.svg",
  22246. extra: 1281 / 1196,
  22247. bottom: 0.01
  22248. }
  22249. },
  22250. },
  22251. [
  22252. {
  22253. name: "Micro",
  22254. height: math.unit(1, "mm")
  22255. },
  22256. {
  22257. name: "Normal",
  22258. height: math.unit(4, "inches"),
  22259. default: true
  22260. },
  22261. {
  22262. name: "Macro",
  22263. height: math.unit(500, "feet")
  22264. },
  22265. {
  22266. name: "Megamacro",
  22267. height: math.unit(1000, "miles")
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22273. {
  22274. front: {
  22275. height: math.unit(6, "feet"),
  22276. weight: math.unit(150, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/tendirmuldr/front.svg",
  22280. extra: 1878 / 1772,
  22281. bottom: 0.015
  22282. }
  22283. },
  22284. },
  22285. [
  22286. {
  22287. name: "Megamacro",
  22288. height: math.unit(1500, "miles"),
  22289. default: true
  22290. },
  22291. ]
  22292. ))
  22293. characterMakers.push(() => makeCharacter(
  22294. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22295. {
  22296. front: {
  22297. height: math.unit(14, "feet"),
  22298. weight: math.unit(12000, "lb"),
  22299. name: "Front",
  22300. image: {
  22301. source: "./media/characters/mort/front.svg",
  22302. extra: 365 / 318,
  22303. bottom: 0.01
  22304. }
  22305. },
  22306. side: {
  22307. height: math.unit(14, "feet"),
  22308. weight: math.unit(12000, "lb"),
  22309. name: "Side",
  22310. image: {
  22311. source: "./media/characters/mort/side.svg",
  22312. extra: 365 / 318,
  22313. bottom: 0.052
  22314. },
  22315. default: true
  22316. },
  22317. back: {
  22318. height: math.unit(14, "feet"),
  22319. weight: math.unit(12000, "lb"),
  22320. name: "Back",
  22321. image: {
  22322. source: "./media/characters/mort/back.svg",
  22323. extra: 371 / 332,
  22324. bottom: 0.18
  22325. }
  22326. },
  22327. },
  22328. [
  22329. {
  22330. name: "Normal",
  22331. height: math.unit(14, "feet"),
  22332. default: true
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22338. {
  22339. front: {
  22340. height: math.unit(8, "feet"),
  22341. weight: math.unit(1, "ton"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/lycoa/front.svg",
  22345. extra: 1836/1728,
  22346. bottom: 81/1917
  22347. }
  22348. },
  22349. back: {
  22350. height: math.unit(8, "feet"),
  22351. weight: math.unit(1, "ton"),
  22352. name: "Back",
  22353. image: {
  22354. source: "./media/characters/lycoa/back.svg",
  22355. extra: 1785/1720,
  22356. bottom: 91/1876
  22357. }
  22358. },
  22359. head: {
  22360. height: math.unit(1.6243, "feet"),
  22361. name: "Head",
  22362. image: {
  22363. source: "./media/characters/lycoa/head.svg",
  22364. extra: 1011/782,
  22365. bottom: 0/1011
  22366. }
  22367. },
  22368. tailmaw: {
  22369. height: math.unit(1.9, "feet"),
  22370. name: "Tailmaw",
  22371. image: {
  22372. source: "./media/characters/lycoa/tailmaw.svg"
  22373. }
  22374. },
  22375. tentacles: {
  22376. height: math.unit(2.1, "feet"),
  22377. name: "Tentacles",
  22378. image: {
  22379. source: "./media/characters/lycoa/tentacles.svg"
  22380. }
  22381. },
  22382. dick: {
  22383. height: math.unit(1.73, "feet"),
  22384. name: "Dick",
  22385. image: {
  22386. source: "./media/characters/lycoa/dick.svg"
  22387. }
  22388. },
  22389. },
  22390. [
  22391. {
  22392. name: "Normal",
  22393. height: math.unit(8, "feet"),
  22394. default: true
  22395. },
  22396. {
  22397. name: "Macro",
  22398. height: math.unit(30, "feet")
  22399. },
  22400. ]
  22401. ))
  22402. characterMakers.push(() => makeCharacter(
  22403. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22404. {
  22405. front: {
  22406. height: math.unit(4 + 2 / 12, "feet"),
  22407. weight: math.unit(70, "lb"),
  22408. name: "Front",
  22409. image: {
  22410. source: "./media/characters/naldara/front.svg",
  22411. extra: 1664/1387,
  22412. bottom: 81/1745
  22413. },
  22414. form: "anthro",
  22415. default: true
  22416. },
  22417. naga: {
  22418. height: math.unit(20, "feet"),
  22419. weight: math.unit(15000, "kg"),
  22420. name: "Front",
  22421. image: {
  22422. source: "./media/characters/naldara/naga.svg",
  22423. extra: 1590/1396,
  22424. bottom: 285/1875
  22425. },
  22426. form: "naga",
  22427. default: true
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Normal",
  22433. height: math.unit(4 + 2 / 12, "feet"),
  22434. form: "anthro",
  22435. default: true
  22436. },
  22437. {
  22438. name: "Normal",
  22439. height: math.unit(20, "feet"),
  22440. form: "naga",
  22441. default: true
  22442. },
  22443. ],
  22444. {
  22445. "anthro": {
  22446. name: "Anthro",
  22447. default: true
  22448. },
  22449. "naga": {
  22450. name: "Naga"
  22451. }
  22452. }
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22456. {
  22457. front: {
  22458. height: math.unit(13 + 7 / 12, "feet"),
  22459. weight: math.unit(1500, "lb"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/briar/front.svg",
  22463. extra: 1223/1157,
  22464. bottom: 123/1346
  22465. }
  22466. },
  22467. },
  22468. [
  22469. {
  22470. name: "Normal",
  22471. height: math.unit(13 + 7 / 12, "feet"),
  22472. default: true
  22473. },
  22474. ]
  22475. ))
  22476. characterMakers.push(() => makeCharacter(
  22477. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22478. {
  22479. side: {
  22480. height: math.unit(16, "feet"),
  22481. weight: math.unit(500, "lb"),
  22482. name: "Side",
  22483. image: {
  22484. source: "./media/characters/vanguard/side.svg",
  22485. extra: 1022/914,
  22486. bottom: 30/1052
  22487. }
  22488. },
  22489. sideAlt: {
  22490. height: math.unit(10, "feet"),
  22491. weight: math.unit(500, "lb"),
  22492. name: "Side (Alt)",
  22493. image: {
  22494. source: "./media/characters/vanguard/side-alt.svg",
  22495. extra: 502 / 425,
  22496. bottom: 0.087
  22497. }
  22498. },
  22499. },
  22500. [
  22501. {
  22502. name: "Normal",
  22503. height: math.unit(17.71, "feet"),
  22504. default: true
  22505. },
  22506. ]
  22507. ))
  22508. characterMakers.push(() => makeCharacter(
  22509. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22510. {
  22511. front: {
  22512. height: math.unit(7.5, "feet"),
  22513. weight: math.unit(2, "lb"),
  22514. name: "Front",
  22515. image: {
  22516. source: "./media/characters/artemis/work-safe-front.svg",
  22517. extra: 1192 / 1075,
  22518. bottom: 0.07
  22519. },
  22520. form: "work-safe",
  22521. default: true
  22522. },
  22523. frontNsfw: {
  22524. height: math.unit(7.5, "feet"),
  22525. weight: math.unit(2, "lb"),
  22526. name: "Front",
  22527. image: {
  22528. source: "./media/characters/artemis/calibrating-front.svg",
  22529. extra: 1192 / 1075,
  22530. bottom: 0.07
  22531. },
  22532. form: "calibrating",
  22533. default: true
  22534. },
  22535. frontNsfwer: {
  22536. height: math.unit(7.5, "feet"),
  22537. weight: math.unit(2, "lb"),
  22538. name: "Front",
  22539. image: {
  22540. source: "./media/characters/artemis/oversize-load-front.svg",
  22541. extra: 1192 / 1075,
  22542. bottom: 0.07
  22543. },
  22544. form: "oversize-load",
  22545. default: true
  22546. },
  22547. side: {
  22548. height: math.unit(7.5, "feet"),
  22549. weight: math.unit(2, "lb"),
  22550. name: "Side",
  22551. image: {
  22552. source: "./media/characters/artemis/work-safe-side.svg",
  22553. extra: 1192 / 1075,
  22554. bottom: 0.07
  22555. },
  22556. form: "work-safe"
  22557. },
  22558. sideNsfw: {
  22559. height: math.unit(7.5, "feet"),
  22560. weight: math.unit(2, "lb"),
  22561. name: "Side",
  22562. image: {
  22563. source: "./media/characters/artemis/calibrating-side.svg",
  22564. extra: 1192 / 1075,
  22565. bottom: 0.07
  22566. },
  22567. form: "calibrating"
  22568. },
  22569. sideNsfwer: {
  22570. height: math.unit(7.5, "feet"),
  22571. weight: math.unit(2, "lb"),
  22572. name: "Side",
  22573. image: {
  22574. source: "./media/characters/artemis/oversize-load-side.svg",
  22575. extra: 1192 / 1075,
  22576. bottom: 0.07
  22577. },
  22578. form: "oversize-load"
  22579. },
  22580. maw: {
  22581. height: math.unit(1.1, "feet"),
  22582. name: "Maw",
  22583. image: {
  22584. source: "./media/characters/artemis/maw.svg"
  22585. },
  22586. form: "work-safe"
  22587. },
  22588. stomach: {
  22589. height: math.unit(0.95, "feet"),
  22590. name: "Stomach",
  22591. image: {
  22592. source: "./media/characters/artemis/stomach.svg"
  22593. },
  22594. form: "work-safe"
  22595. },
  22596. dickCanine: {
  22597. height: math.unit(1, "feet"),
  22598. name: "Dick (Canine)",
  22599. image: {
  22600. source: "./media/characters/artemis/dick-canine.svg"
  22601. },
  22602. form: "calibrating"
  22603. },
  22604. dickEquine: {
  22605. height: math.unit(0.85, "feet"),
  22606. name: "Dick (Equine)",
  22607. image: {
  22608. source: "./media/characters/artemis/dick-equine.svg"
  22609. },
  22610. form: "calibrating"
  22611. },
  22612. dickExotic: {
  22613. height: math.unit(0.85, "feet"),
  22614. name: "Dick (Exotic)",
  22615. image: {
  22616. source: "./media/characters/artemis/dick-exotic.svg"
  22617. },
  22618. form: "calibrating"
  22619. },
  22620. dickCanineBigger: {
  22621. height: math.unit(1 * 1.33, "feet"),
  22622. name: "Dick (Canine)",
  22623. image: {
  22624. source: "./media/characters/artemis/dick-canine.svg"
  22625. },
  22626. form: "oversize-load"
  22627. },
  22628. dickEquineBigger: {
  22629. height: math.unit(0.85 * 1.33, "feet"),
  22630. name: "Dick (Equine)",
  22631. image: {
  22632. source: "./media/characters/artemis/dick-equine.svg"
  22633. },
  22634. form: "oversize-load"
  22635. },
  22636. dickExoticBigger: {
  22637. height: math.unit(0.85 * 1.33, "feet"),
  22638. name: "Dick (Exotic)",
  22639. image: {
  22640. source: "./media/characters/artemis/dick-exotic.svg"
  22641. },
  22642. form: "oversize-load"
  22643. },
  22644. },
  22645. [
  22646. {
  22647. name: "Normal",
  22648. height: math.unit(7.5, "feet"),
  22649. form: "work-safe",
  22650. default: true
  22651. },
  22652. {
  22653. name: "Normal",
  22654. height: math.unit(7.5, "feet"),
  22655. form: "calibrating",
  22656. default: true
  22657. },
  22658. {
  22659. name: "Normal",
  22660. height: math.unit(7.5, "feet"),
  22661. form: "oversize-load",
  22662. default: true
  22663. },
  22664. {
  22665. name: "Enlarged",
  22666. height: math.unit(12, "feet"),
  22667. form: "work-safe",
  22668. },
  22669. {
  22670. name: "Enlarged",
  22671. height: math.unit(12, "feet"),
  22672. form: "calibrating",
  22673. },
  22674. {
  22675. name: "Enlarged",
  22676. height: math.unit(12, "feet"),
  22677. form: "oversize-load",
  22678. },
  22679. ],
  22680. {
  22681. "work-safe": {
  22682. name: "Work-Safe",
  22683. default: true
  22684. },
  22685. "calibrating": {
  22686. name: "Calibrating"
  22687. },
  22688. "oversize-load": {
  22689. name: "Oversize Load"
  22690. }
  22691. }
  22692. ))
  22693. characterMakers.push(() => makeCharacter(
  22694. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22695. {
  22696. front: {
  22697. height: math.unit(5 + 3 / 12, "feet"),
  22698. weight: math.unit(160, "lb"),
  22699. name: "Front",
  22700. image: {
  22701. source: "./media/characters/kira/front.svg",
  22702. extra: 906 / 786,
  22703. bottom: 0.01
  22704. }
  22705. },
  22706. back: {
  22707. height: math.unit(5 + 3 / 12, "feet"),
  22708. weight: math.unit(160, "lb"),
  22709. name: "Back",
  22710. image: {
  22711. source: "./media/characters/kira/back.svg",
  22712. extra: 882 / 757,
  22713. bottom: 0.005
  22714. }
  22715. },
  22716. frontDressed: {
  22717. height: math.unit(5 + 3 / 12, "feet"),
  22718. weight: math.unit(160, "lb"),
  22719. name: "Front (Dressed)",
  22720. image: {
  22721. source: "./media/characters/kira/front-dressed.svg",
  22722. extra: 906 / 786,
  22723. bottom: 0.01
  22724. }
  22725. },
  22726. beans: {
  22727. height: math.unit(0.92, "feet"),
  22728. name: "Beans",
  22729. image: {
  22730. source: "./media/characters/kira/beans.svg"
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Normal",
  22737. height: math.unit(5 + 3 / 12, "feet"),
  22738. default: true
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22744. {
  22745. front: {
  22746. height: math.unit(5 + 4 / 12, "feet"),
  22747. weight: math.unit(145, "lb"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/scramble/front.svg",
  22751. extra: 763 / 727,
  22752. bottom: 0.05
  22753. }
  22754. },
  22755. back: {
  22756. height: math.unit(5 + 4 / 12, "feet"),
  22757. weight: math.unit(145, "lb"),
  22758. name: "Back",
  22759. image: {
  22760. source: "./media/characters/scramble/back.svg",
  22761. extra: 826 / 737,
  22762. bottom: 0.002
  22763. }
  22764. },
  22765. },
  22766. [
  22767. {
  22768. name: "Normal",
  22769. height: math.unit(5 + 4 / 12, "feet"),
  22770. default: true
  22771. },
  22772. ]
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22776. {
  22777. side: {
  22778. height: math.unit(6 + 2 / 12, "feet"),
  22779. weight: math.unit(190, "lb"),
  22780. name: "Side",
  22781. image: {
  22782. source: "./media/characters/biscuit/side.svg",
  22783. extra: 858 / 791,
  22784. bottom: 0.044
  22785. }
  22786. },
  22787. },
  22788. [
  22789. {
  22790. name: "Normal",
  22791. height: math.unit(6 + 2 / 12, "feet"),
  22792. default: true
  22793. },
  22794. ]
  22795. ))
  22796. characterMakers.push(() => makeCharacter(
  22797. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22798. {
  22799. front: {
  22800. height: math.unit(5 + 2 / 12, "feet"),
  22801. weight: math.unit(120, "lb"),
  22802. name: "Front",
  22803. image: {
  22804. source: "./media/characters/poffin/front.svg",
  22805. extra: 786 / 680,
  22806. bottom: 0.005
  22807. }
  22808. },
  22809. },
  22810. [
  22811. {
  22812. name: "Normal",
  22813. height: math.unit(5 + 2 / 12, "feet"),
  22814. default: true
  22815. },
  22816. ]
  22817. ))
  22818. characterMakers.push(() => makeCharacter(
  22819. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22820. {
  22821. front: {
  22822. height: math.unit(6 + 3 / 12, "feet"),
  22823. weight: math.unit(519, "lb"),
  22824. name: "Front",
  22825. image: {
  22826. source: "./media/characters/dhari/front.svg",
  22827. extra: 1048 / 946,
  22828. bottom: 0.015
  22829. }
  22830. },
  22831. back: {
  22832. height: math.unit(6 + 3 / 12, "feet"),
  22833. weight: math.unit(519, "lb"),
  22834. name: "Back",
  22835. image: {
  22836. source: "./media/characters/dhari/back.svg",
  22837. extra: 1048 / 931,
  22838. bottom: 0.005
  22839. }
  22840. },
  22841. frontDressed: {
  22842. height: math.unit(6 + 3 / 12, "feet"),
  22843. weight: math.unit(519, "lb"),
  22844. name: "Front (Dressed)",
  22845. image: {
  22846. source: "./media/characters/dhari/front-dressed.svg",
  22847. extra: 1713 / 1546,
  22848. bottom: 0.02
  22849. }
  22850. },
  22851. backDressed: {
  22852. height: math.unit(6 + 3 / 12, "feet"),
  22853. weight: math.unit(519, "lb"),
  22854. name: "Back (Dressed)",
  22855. image: {
  22856. source: "./media/characters/dhari/back-dressed.svg",
  22857. extra: 1699 / 1537,
  22858. bottom: 0.01
  22859. }
  22860. },
  22861. maw: {
  22862. height: math.unit(0.95, "feet"),
  22863. name: "Maw",
  22864. image: {
  22865. source: "./media/characters/dhari/maw.svg"
  22866. }
  22867. },
  22868. wereFront: {
  22869. height: math.unit(12 + 8 / 12, "feet"),
  22870. weight: math.unit(4000, "lb"),
  22871. name: "Front (Were)",
  22872. image: {
  22873. source: "./media/characters/dhari/were-front.svg",
  22874. extra: 1065 / 969,
  22875. bottom: 0.015
  22876. }
  22877. },
  22878. wereBack: {
  22879. height: math.unit(12 + 8 / 12, "feet"),
  22880. weight: math.unit(4000, "lb"),
  22881. name: "Back (Were)",
  22882. image: {
  22883. source: "./media/characters/dhari/were-back.svg",
  22884. extra: 1065 / 969,
  22885. bottom: 0.012
  22886. }
  22887. },
  22888. wereMaw: {
  22889. height: math.unit(0.625, "meters"),
  22890. name: "Maw (Were)",
  22891. image: {
  22892. source: "./media/characters/dhari/were-maw.svg"
  22893. }
  22894. },
  22895. },
  22896. [
  22897. {
  22898. name: "Normal",
  22899. height: math.unit(6 + 3 / 12, "feet"),
  22900. default: true
  22901. },
  22902. ]
  22903. ))
  22904. characterMakers.push(() => makeCharacter(
  22905. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22906. {
  22907. anthro: {
  22908. height: math.unit(5 + 7 / 12, "feet"),
  22909. weight: math.unit(175, "lb"),
  22910. name: "Anthro",
  22911. image: {
  22912. source: "./media/characters/rena-dyne/anthro.svg",
  22913. extra: 1849 / 1785,
  22914. bottom: 0.005
  22915. }
  22916. },
  22917. taur: {
  22918. height: math.unit(15 + 6 / 12, "feet"),
  22919. weight: math.unit(8000, "lb"),
  22920. name: "Taur",
  22921. image: {
  22922. source: "./media/characters/rena-dyne/taur.svg",
  22923. extra: 2315 / 2234,
  22924. bottom: 0.033
  22925. }
  22926. },
  22927. },
  22928. [
  22929. {
  22930. name: "Normal",
  22931. height: math.unit(5 + 7 / 12, "feet"),
  22932. default: true
  22933. },
  22934. ]
  22935. ))
  22936. characterMakers.push(() => makeCharacter(
  22937. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  22938. {
  22939. front: {
  22940. height: math.unit(8, "feet"),
  22941. weight: math.unit(600, "lb"),
  22942. name: "Front",
  22943. image: {
  22944. source: "./media/characters/weremeep/front.svg",
  22945. extra: 970/849,
  22946. bottom: 7/977
  22947. }
  22948. },
  22949. },
  22950. [
  22951. {
  22952. name: "Normal",
  22953. height: math.unit(8, "feet"),
  22954. default: true
  22955. },
  22956. {
  22957. name: "Lorg",
  22958. height: math.unit(12, "feet")
  22959. },
  22960. {
  22961. name: "Oh Lawd She Comin'",
  22962. height: math.unit(20, "feet")
  22963. },
  22964. ]
  22965. ))
  22966. characterMakers.push(() => makeCharacter(
  22967. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  22968. {
  22969. front: {
  22970. height: math.unit(4, "feet"),
  22971. weight: math.unit(90, "lb"),
  22972. name: "Front",
  22973. image: {
  22974. source: "./media/characters/reza/front.svg",
  22975. extra: 1183 / 1111,
  22976. bottom: 0.017
  22977. }
  22978. },
  22979. back: {
  22980. height: math.unit(4, "feet"),
  22981. weight: math.unit(90, "lb"),
  22982. name: "Back",
  22983. image: {
  22984. source: "./media/characters/reza/back.svg",
  22985. extra: 1183 / 1111,
  22986. bottom: 0.01
  22987. }
  22988. },
  22989. drake: {
  22990. height: math.unit(30, "feet"),
  22991. weight: math.unit(246960, "lb"),
  22992. name: "Drake",
  22993. image: {
  22994. source: "./media/characters/reza/drake.svg",
  22995. extra: 2350 / 2024,
  22996. bottom: 60.7 / 2403
  22997. }
  22998. },
  22999. },
  23000. [
  23001. {
  23002. name: "Normal",
  23003. height: math.unit(4, "feet"),
  23004. default: true
  23005. },
  23006. ]
  23007. ))
  23008. characterMakers.push(() => makeCharacter(
  23009. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23010. {
  23011. side: {
  23012. height: math.unit(15, "feet"),
  23013. weight: math.unit(14, "tons"),
  23014. name: "Side",
  23015. image: {
  23016. source: "./media/characters/athea/side.svg",
  23017. extra: 960 / 540,
  23018. bottom: 0.003
  23019. }
  23020. },
  23021. sitting: {
  23022. height: math.unit(6 * 2.85, "feet"),
  23023. weight: math.unit(14, "tons"),
  23024. name: "Sitting",
  23025. image: {
  23026. source: "./media/characters/athea/sitting.svg",
  23027. extra: 621 / 581,
  23028. bottom: 0.075
  23029. }
  23030. },
  23031. maw: {
  23032. height: math.unit(7.59498031496063, "feet"),
  23033. name: "Maw",
  23034. image: {
  23035. source: "./media/characters/athea/maw.svg"
  23036. }
  23037. },
  23038. },
  23039. [
  23040. {
  23041. name: "Lap Cat",
  23042. height: math.unit(2.5, "feet")
  23043. },
  23044. {
  23045. name: "Minimacro",
  23046. height: math.unit(15, "feet"),
  23047. default: true
  23048. },
  23049. {
  23050. name: "Macro",
  23051. height: math.unit(120, "feet")
  23052. },
  23053. {
  23054. name: "Macro+",
  23055. height: math.unit(640, "feet")
  23056. },
  23057. {
  23058. name: "Colossus",
  23059. height: math.unit(2.2, "miles")
  23060. },
  23061. ]
  23062. ))
  23063. characterMakers.push(() => makeCharacter(
  23064. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23065. {
  23066. front: {
  23067. height: math.unit(8 + 8 / 12, "feet"),
  23068. weight: math.unit(130, "kg"),
  23069. name: "Front",
  23070. image: {
  23071. source: "./media/characters/seroko/front.svg",
  23072. extra: 1385 / 1280,
  23073. bottom: 0.025
  23074. }
  23075. },
  23076. back: {
  23077. height: math.unit(8 + 8 / 12, "feet"),
  23078. weight: math.unit(130, "kg"),
  23079. name: "Back",
  23080. image: {
  23081. source: "./media/characters/seroko/back.svg",
  23082. extra: 1369 / 1238,
  23083. bottom: 0.018
  23084. }
  23085. },
  23086. frontDressed: {
  23087. height: math.unit(8 + 8 / 12, "feet"),
  23088. weight: math.unit(130, "kg"),
  23089. name: "Front (Dressed)",
  23090. image: {
  23091. source: "./media/characters/seroko/front-dressed.svg",
  23092. extra: 1366 / 1275,
  23093. bottom: 0.03
  23094. }
  23095. },
  23096. },
  23097. [
  23098. {
  23099. name: "Normal",
  23100. height: math.unit(8 + 8 / 12, "feet"),
  23101. default: true
  23102. },
  23103. ]
  23104. ))
  23105. characterMakers.push(() => makeCharacter(
  23106. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23107. {
  23108. front: {
  23109. height: math.unit(5.5, "feet"),
  23110. weight: math.unit(160, "lb"),
  23111. name: "Front",
  23112. image: {
  23113. source: "./media/characters/quatzi/front.svg",
  23114. extra: 2346 / 2242,
  23115. bottom: 0.015
  23116. }
  23117. },
  23118. },
  23119. [
  23120. {
  23121. name: "Normal",
  23122. height: math.unit(5.5, "feet"),
  23123. default: true
  23124. },
  23125. {
  23126. name: "Big",
  23127. height: math.unit(7.7, "feet")
  23128. },
  23129. ]
  23130. ))
  23131. characterMakers.push(() => makeCharacter(
  23132. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23133. {
  23134. front: {
  23135. height: math.unit(5 + 11 / 12, "feet"),
  23136. weight: math.unit(180, "lb"),
  23137. name: "Front",
  23138. image: {
  23139. source: "./media/characters/sen/front.svg",
  23140. extra: 1321 / 1254,
  23141. bottom: 0.015
  23142. }
  23143. },
  23144. side: {
  23145. height: math.unit(5 + 11 / 12, "feet"),
  23146. weight: math.unit(180, "lb"),
  23147. name: "Side",
  23148. image: {
  23149. source: "./media/characters/sen/side.svg",
  23150. extra: 1321 / 1254,
  23151. bottom: 0.007
  23152. }
  23153. },
  23154. back: {
  23155. height: math.unit(5 + 11 / 12, "feet"),
  23156. weight: math.unit(180, "lb"),
  23157. name: "Back",
  23158. image: {
  23159. source: "./media/characters/sen/back.svg",
  23160. extra: 1321 / 1254
  23161. }
  23162. },
  23163. },
  23164. [
  23165. {
  23166. name: "Normal",
  23167. height: math.unit(5 + 11 / 12, "feet"),
  23168. default: true
  23169. },
  23170. ]
  23171. ))
  23172. characterMakers.push(() => makeCharacter(
  23173. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23174. {
  23175. front: {
  23176. height: math.unit(166.6, "cm"),
  23177. weight: math.unit(66.6, "kg"),
  23178. name: "Front",
  23179. image: {
  23180. source: "./media/characters/fruity/front.svg",
  23181. extra: 1510 / 1386,
  23182. bottom: 0.04
  23183. }
  23184. },
  23185. back: {
  23186. height: math.unit(166.6, "cm"),
  23187. weight: math.unit(66.6, "lb"),
  23188. name: "Back",
  23189. image: {
  23190. source: "./media/characters/fruity/back.svg",
  23191. extra: 1563 / 1435,
  23192. bottom: 0.005
  23193. }
  23194. },
  23195. },
  23196. [
  23197. {
  23198. name: "Normal",
  23199. height: math.unit(166.6, "cm"),
  23200. default: true
  23201. },
  23202. {
  23203. name: "Demonic",
  23204. height: math.unit(166.6, "feet")
  23205. },
  23206. ]
  23207. ))
  23208. characterMakers.push(() => makeCharacter(
  23209. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23210. {
  23211. side: {
  23212. height: math.unit(10, "feet"),
  23213. weight: math.unit(500, "lb"),
  23214. name: "Side",
  23215. image: {
  23216. source: "./media/characters/zost/side.svg",
  23217. extra: 2870/2533,
  23218. bottom: 252/3122
  23219. }
  23220. },
  23221. mawFront: {
  23222. height: math.unit(1.08, "meters"),
  23223. name: "Maw (Front)",
  23224. image: {
  23225. source: "./media/characters/zost/maw-front.svg"
  23226. }
  23227. },
  23228. mawSide: {
  23229. height: math.unit(2.66, "feet"),
  23230. name: "Maw (Side)",
  23231. image: {
  23232. source: "./media/characters/zost/maw-side.svg"
  23233. }
  23234. },
  23235. wingspan: {
  23236. height: math.unit(7.4, "feet"),
  23237. name: "Wingspan",
  23238. image: {
  23239. source: "./media/characters/zost/wingspan.svg"
  23240. }
  23241. },
  23242. },
  23243. [
  23244. {
  23245. name: "Normal",
  23246. height: math.unit(10, "feet"),
  23247. default: true
  23248. },
  23249. ]
  23250. ))
  23251. characterMakers.push(() => makeCharacter(
  23252. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23253. {
  23254. front: {
  23255. height: math.unit(5 + 4 / 12, "feet"),
  23256. weight: math.unit(120, "lb"),
  23257. name: "Front",
  23258. image: {
  23259. source: "./media/characters/luci/front.svg",
  23260. extra: 1985 / 1884,
  23261. bottom: 0.04
  23262. }
  23263. },
  23264. back: {
  23265. height: math.unit(5 + 4 / 12, "feet"),
  23266. weight: math.unit(120, "lb"),
  23267. name: "Back",
  23268. image: {
  23269. source: "./media/characters/luci/back.svg",
  23270. extra: 1892 / 1791,
  23271. bottom: 0.002
  23272. }
  23273. },
  23274. },
  23275. [
  23276. {
  23277. name: "Normal",
  23278. height: math.unit(5 + 4 / 12, "feet"),
  23279. default: true
  23280. },
  23281. ]
  23282. ))
  23283. characterMakers.push(() => makeCharacter(
  23284. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23285. {
  23286. front: {
  23287. height: math.unit(1500, "feet"),
  23288. weight: math.unit(3.8e6, "tons"),
  23289. name: "Front",
  23290. image: {
  23291. source: "./media/characters/2th/front.svg",
  23292. extra: 3489 / 3350,
  23293. bottom: 0.1
  23294. }
  23295. },
  23296. foot: {
  23297. height: math.unit(461, "feet"),
  23298. name: "Foot",
  23299. image: {
  23300. source: "./media/characters/2th/foot.svg"
  23301. }
  23302. },
  23303. },
  23304. [
  23305. {
  23306. name: "\"Micro\"",
  23307. height: math.unit(15 + 7 / 12, "feet")
  23308. },
  23309. {
  23310. name: "Normal",
  23311. height: math.unit(1500, "feet"),
  23312. default: true
  23313. },
  23314. {
  23315. name: "Macro",
  23316. height: math.unit(5000, "feet")
  23317. },
  23318. {
  23319. name: "Megamacro",
  23320. height: math.unit(15, "miles")
  23321. },
  23322. {
  23323. name: "Gigamacro",
  23324. height: math.unit(4000, "miles")
  23325. },
  23326. {
  23327. name: "Galactic",
  23328. height: math.unit(50, "AU")
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23334. {
  23335. front: {
  23336. height: math.unit(5 + 6 / 12, "feet"),
  23337. weight: math.unit(220, "lb"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/amethyst/front.svg",
  23341. extra: 2078 / 2040,
  23342. bottom: 0.045
  23343. }
  23344. },
  23345. back: {
  23346. height: math.unit(5 + 6 / 12, "feet"),
  23347. weight: math.unit(220, "lb"),
  23348. name: "Back",
  23349. image: {
  23350. source: "./media/characters/amethyst/back.svg",
  23351. extra: 2021 / 1989,
  23352. bottom: 0.02
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Normal",
  23359. height: math.unit(5 + 6 / 12, "feet"),
  23360. default: true
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23366. {
  23367. front: {
  23368. height: math.unit(4 + 11 / 12, "feet"),
  23369. weight: math.unit(120, "lb"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/yumi-akiyama/front.svg",
  23373. extra: 1327 / 1235,
  23374. bottom: 0.02
  23375. }
  23376. },
  23377. back: {
  23378. height: math.unit(4 + 11 / 12, "feet"),
  23379. weight: math.unit(120, "lb"),
  23380. name: "Back",
  23381. image: {
  23382. source: "./media/characters/yumi-akiyama/back.svg",
  23383. extra: 1287 / 1245,
  23384. bottom: 0.002
  23385. }
  23386. },
  23387. },
  23388. [
  23389. {
  23390. name: "Galactic",
  23391. height: math.unit(50, "galaxies"),
  23392. default: true
  23393. },
  23394. {
  23395. name: "Universal",
  23396. height: math.unit(100, "universes")
  23397. },
  23398. ]
  23399. ))
  23400. characterMakers.push(() => makeCharacter(
  23401. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23402. {
  23403. front: {
  23404. height: math.unit(8, "feet"),
  23405. weight: math.unit(500, "lb"),
  23406. name: "Front",
  23407. image: {
  23408. source: "./media/characters/rifter-yrmori/front.svg",
  23409. extra: 1180 / 1125,
  23410. bottom: 0.02
  23411. }
  23412. },
  23413. back: {
  23414. height: math.unit(8, "feet"),
  23415. weight: math.unit(500, "lb"),
  23416. name: "Back",
  23417. image: {
  23418. source: "./media/characters/rifter-yrmori/back.svg",
  23419. extra: 1190 / 1145,
  23420. bottom: 0.001
  23421. }
  23422. },
  23423. wings: {
  23424. height: math.unit(7.75, "feet"),
  23425. weight: math.unit(500, "lb"),
  23426. name: "Wings",
  23427. image: {
  23428. source: "./media/characters/rifter-yrmori/wings.svg",
  23429. extra: 1357 / 1285
  23430. }
  23431. },
  23432. maw: {
  23433. height: math.unit(0.8, "feet"),
  23434. name: "Maw",
  23435. image: {
  23436. source: "./media/characters/rifter-yrmori/maw.svg"
  23437. }
  23438. },
  23439. mawfront: {
  23440. height: math.unit(1.45, "feet"),
  23441. name: "Maw (Front)",
  23442. image: {
  23443. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23444. }
  23445. },
  23446. },
  23447. [
  23448. {
  23449. name: "Normal",
  23450. height: math.unit(8, "feet"),
  23451. default: true
  23452. },
  23453. {
  23454. name: "Macro",
  23455. height: math.unit(42, "meters")
  23456. },
  23457. ]
  23458. ))
  23459. characterMakers.push(() => makeCharacter(
  23460. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23461. {
  23462. were: {
  23463. height: math.unit(25 + 6 / 12, "feet"),
  23464. weight: math.unit(10000, "lb"),
  23465. name: "Were",
  23466. image: {
  23467. source: "./media/characters/tahajin/were.svg",
  23468. extra: 801 / 770,
  23469. bottom: 0.042
  23470. }
  23471. },
  23472. aquatic: {
  23473. height: math.unit(6 + 4 / 12, "feet"),
  23474. weight: math.unit(160, "lb"),
  23475. name: "Aquatic",
  23476. image: {
  23477. source: "./media/characters/tahajin/aquatic.svg",
  23478. extra: 572 / 542,
  23479. bottom: 0.04
  23480. }
  23481. },
  23482. chow: {
  23483. height: math.unit(8 + 11 / 12, "feet"),
  23484. weight: math.unit(450, "lb"),
  23485. name: "Chow",
  23486. image: {
  23487. source: "./media/characters/tahajin/chow.svg",
  23488. extra: 660 / 640,
  23489. bottom: 0.015
  23490. }
  23491. },
  23492. demiNaga: {
  23493. height: math.unit(6 + 8 / 12, "feet"),
  23494. weight: math.unit(300, "lb"),
  23495. name: "Demi Naga",
  23496. image: {
  23497. source: "./media/characters/tahajin/demi-naga.svg",
  23498. extra: 643 / 615,
  23499. bottom: 0.1
  23500. }
  23501. },
  23502. data: {
  23503. height: math.unit(5, "inches"),
  23504. weight: math.unit(0.1, "lb"),
  23505. name: "Data",
  23506. image: {
  23507. source: "./media/characters/tahajin/data.svg"
  23508. }
  23509. },
  23510. fluu: {
  23511. height: math.unit(5 + 7 / 12, "feet"),
  23512. weight: math.unit(140, "lb"),
  23513. name: "Fluu",
  23514. image: {
  23515. source: "./media/characters/tahajin/fluu.svg",
  23516. extra: 628 / 592,
  23517. bottom: 0.02
  23518. }
  23519. },
  23520. starWarrior: {
  23521. height: math.unit(4 + 5 / 12, "feet"),
  23522. weight: math.unit(50, "lb"),
  23523. name: "Star Warrior",
  23524. image: {
  23525. source: "./media/characters/tahajin/star-warrior.svg"
  23526. }
  23527. },
  23528. },
  23529. [
  23530. {
  23531. name: "Normal",
  23532. height: math.unit(25 + 6 / 12, "feet"),
  23533. default: true
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23539. {
  23540. front: {
  23541. height: math.unit(8, "feet"),
  23542. weight: math.unit(350, "lb"),
  23543. name: "Front",
  23544. image: {
  23545. source: "./media/characters/gabira/front.svg",
  23546. extra: 1261/1154,
  23547. bottom: 51/1312
  23548. }
  23549. },
  23550. back: {
  23551. height: math.unit(8, "feet"),
  23552. weight: math.unit(350, "lb"),
  23553. name: "Back",
  23554. image: {
  23555. source: "./media/characters/gabira/back.svg",
  23556. extra: 1265/1163,
  23557. bottom: 46/1311
  23558. }
  23559. },
  23560. head: {
  23561. height: math.unit(2.85, "feet"),
  23562. name: "Head",
  23563. image: {
  23564. source: "./media/characters/gabira/head.svg"
  23565. }
  23566. },
  23567. },
  23568. [
  23569. {
  23570. name: "Normal",
  23571. height: math.unit(8, "feet"),
  23572. default: true
  23573. },
  23574. ]
  23575. ))
  23576. characterMakers.push(() => makeCharacter(
  23577. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23578. {
  23579. front: {
  23580. height: math.unit(5 + 3 / 12, "feet"),
  23581. weight: math.unit(137, "lb"),
  23582. name: "Front",
  23583. image: {
  23584. source: "./media/characters/sasha-katraine/front.svg",
  23585. extra: 1745/1694,
  23586. bottom: 37/1782
  23587. }
  23588. },
  23589. back: {
  23590. height: math.unit(5 + 3 / 12, "feet"),
  23591. weight: math.unit(137, "lb"),
  23592. name: "Back",
  23593. image: {
  23594. source: "./media/characters/sasha-katraine/back.svg",
  23595. extra: 1776/1699,
  23596. bottom: 26/1802
  23597. }
  23598. },
  23599. },
  23600. [
  23601. {
  23602. name: "Micro",
  23603. height: math.unit(5, "inches")
  23604. },
  23605. {
  23606. name: "Normal",
  23607. height: math.unit(5 + 3 / 12, "feet"),
  23608. default: true
  23609. },
  23610. ]
  23611. ))
  23612. characterMakers.push(() => makeCharacter(
  23613. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23614. {
  23615. side: {
  23616. height: math.unit(4, "inches"),
  23617. weight: math.unit(200, "grams"),
  23618. name: "Side",
  23619. image: {
  23620. source: "./media/characters/der/side.svg",
  23621. extra: 719 / 400,
  23622. bottom: 30.6 / 749.9187
  23623. }
  23624. },
  23625. },
  23626. [
  23627. {
  23628. name: "Micro",
  23629. height: math.unit(4, "inches"),
  23630. default: true
  23631. },
  23632. ]
  23633. ))
  23634. characterMakers.push(() => makeCharacter(
  23635. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23636. {
  23637. side: {
  23638. height: math.unit(30, "meters"),
  23639. weight: math.unit(700, "tonnes"),
  23640. name: "Side",
  23641. image: {
  23642. source: "./media/characters/fixerdragon/side.svg",
  23643. extra: (1293.0514 - 116.03) / 1106.86,
  23644. bottom: 116.03 / 1293.0514
  23645. }
  23646. },
  23647. },
  23648. [
  23649. {
  23650. name: "Planck",
  23651. height: math.unit(1.6e-35, "meters")
  23652. },
  23653. {
  23654. name: "Micro",
  23655. height: math.unit(0.4, "meters")
  23656. },
  23657. {
  23658. name: "Normal",
  23659. height: math.unit(30, "meters"),
  23660. default: true
  23661. },
  23662. {
  23663. name: "Megamacro",
  23664. height: math.unit(1.2, "megameters")
  23665. },
  23666. {
  23667. name: "Teramacro",
  23668. height: math.unit(130, "terameters")
  23669. },
  23670. {
  23671. name: "Yottamacro",
  23672. height: math.unit(6200, "yottameters")
  23673. },
  23674. ]
  23675. ));
  23676. characterMakers.push(() => makeCharacter(
  23677. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23678. {
  23679. front: {
  23680. height: math.unit(8, "feet"),
  23681. weight: math.unit(250, "lb"),
  23682. name: "Front",
  23683. image: {
  23684. source: "./media/characters/kite/front.svg",
  23685. extra: 2796 / 2659,
  23686. bottom: 0.002
  23687. }
  23688. },
  23689. },
  23690. [
  23691. {
  23692. name: "Normal",
  23693. height: math.unit(8, "feet"),
  23694. default: true
  23695. },
  23696. {
  23697. name: "Macro",
  23698. height: math.unit(360, "feet")
  23699. },
  23700. {
  23701. name: "Megamacro",
  23702. height: math.unit(1500, "feet")
  23703. },
  23704. ]
  23705. ))
  23706. characterMakers.push(() => makeCharacter(
  23707. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23708. {
  23709. front: {
  23710. height: math.unit(5 + 11/12, "feet"),
  23711. weight: math.unit(170, "lb"),
  23712. name: "Front",
  23713. image: {
  23714. source: "./media/characters/poojawa-vynar/front.svg",
  23715. extra: 1735/1585,
  23716. bottom: 96/1831
  23717. }
  23718. },
  23719. back: {
  23720. height: math.unit(5 + 11/12, "feet"),
  23721. weight: math.unit(170, "lb"),
  23722. name: "Back",
  23723. image: {
  23724. source: "./media/characters/poojawa-vynar/back.svg",
  23725. extra: 1749/1607,
  23726. bottom: 28/1777
  23727. }
  23728. },
  23729. male: {
  23730. height: math.unit(5 + 11/12, "feet"),
  23731. weight: math.unit(170, "lb"),
  23732. name: "Male",
  23733. image: {
  23734. source: "./media/characters/poojawa-vynar/male.svg",
  23735. extra: 1855/1713,
  23736. bottom: 63/1918
  23737. }
  23738. },
  23739. taur: {
  23740. height: math.unit(5 + 11/12, "feet"),
  23741. weight: math.unit(170, "lb"),
  23742. name: "Taur",
  23743. image: {
  23744. source: "./media/characters/poojawa-vynar/taur.svg",
  23745. extra: 1151/1059,
  23746. bottom: 356/1507
  23747. }
  23748. },
  23749. frontDressed: {
  23750. height: math.unit(5 + 11/12, "feet"),
  23751. weight: math.unit(170, "lb"),
  23752. name: "Front (Dressed)",
  23753. image: {
  23754. source: "./media/characters/poojawa-vynar/front-dressed.svg",
  23755. extra: 1735/1585,
  23756. bottom: 96/1831
  23757. }
  23758. },
  23759. backDressed: {
  23760. height: math.unit(5 + 11/12, "feet"),
  23761. weight: math.unit(170, "lb"),
  23762. name: "Back (Dressed)",
  23763. image: {
  23764. source: "./media/characters/poojawa-vynar/back-dressed.svg",
  23765. extra: 1749/1607,
  23766. bottom: 28/1777
  23767. }
  23768. },
  23769. maleDressed: {
  23770. height: math.unit(5 + 11/12, "feet"),
  23771. weight: math.unit(170, "lb"),
  23772. name: "Male (Dressed)",
  23773. image: {
  23774. source: "./media/characters/poojawa-vynar/male-dressed.svg",
  23775. extra: 1855/1713,
  23776. bottom: 63/1918
  23777. }
  23778. },
  23779. taurDressed: {
  23780. height: math.unit(5 + 11/12, "feet"),
  23781. weight: math.unit(170, "lb"),
  23782. name: "Taur (Dressed)",
  23783. image: {
  23784. source: "./media/characters/poojawa-vynar/taur-dressed.svg",
  23785. extra: 1151/1059,
  23786. bottom: 356/1507
  23787. }
  23788. },
  23789. maw: {
  23790. height: math.unit(1.46, "feet"),
  23791. name: "Maw",
  23792. image: {
  23793. source: "./media/characters/poojawa-vynar/maw.svg"
  23794. }
  23795. },
  23796. head: {
  23797. height: math.unit(2.34, "feet"),
  23798. name: "Head",
  23799. image: {
  23800. source: "./media/characters/poojawa-vynar/head.svg"
  23801. }
  23802. },
  23803. paw: {
  23804. height: math.unit(1.61, "feet"),
  23805. name: "Paw",
  23806. image: {
  23807. source: "./media/characters/poojawa-vynar/paw.svg"
  23808. }
  23809. },
  23810. pawToering: {
  23811. height: math.unit(1.72, "feet"),
  23812. name: "Paw (Toering)",
  23813. image: {
  23814. source: "./media/characters/poojawa-vynar/paw-toering.svg"
  23815. }
  23816. },
  23817. toering: {
  23818. height: math.unit(2.9, "inches"),
  23819. name: "Toering",
  23820. image: {
  23821. source: "./media/characters/poojawa-vynar/toering.svg"
  23822. }
  23823. },
  23824. shaft: {
  23825. height: math.unit(0.625, "feet"),
  23826. name: "Shaft",
  23827. image: {
  23828. source: "./media/characters/poojawa-vynar/shaft.svg"
  23829. }
  23830. },
  23831. spade: {
  23832. height: math.unit(0.42, "feet"),
  23833. name: "Spade",
  23834. image: {
  23835. source: "./media/characters/poojawa-vynar/spade.svg"
  23836. }
  23837. },
  23838. },
  23839. [
  23840. {
  23841. name: "Shortstack",
  23842. height: math.unit(4, "feet")
  23843. },
  23844. {
  23845. name: "Normal",
  23846. height: math.unit(5 + 11 / 12, "feet"),
  23847. default: true
  23848. },
  23849. {
  23850. name: "Tauric",
  23851. height: math.unit(4, "meters")
  23852. },
  23853. ]
  23854. ))
  23855. characterMakers.push(() => makeCharacter(
  23856. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23857. {
  23858. front: {
  23859. height: math.unit(293, "meters"),
  23860. weight: math.unit(70400, "tons"),
  23861. name: "Front",
  23862. image: {
  23863. source: "./media/characters/violette/front.svg",
  23864. extra: 1227 / 1180,
  23865. bottom: 0.005
  23866. }
  23867. },
  23868. back: {
  23869. height: math.unit(293, "meters"),
  23870. weight: math.unit(70400, "tons"),
  23871. name: "Back",
  23872. image: {
  23873. source: "./media/characters/violette/back.svg",
  23874. extra: 1227 / 1180,
  23875. bottom: 0.005
  23876. }
  23877. },
  23878. },
  23879. [
  23880. {
  23881. name: "Macro",
  23882. height: math.unit(293, "meters"),
  23883. default: true
  23884. },
  23885. ]
  23886. ))
  23887. characterMakers.push(() => makeCharacter(
  23888. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23889. {
  23890. front: {
  23891. height: math.unit(1050, "feet"),
  23892. weight: math.unit(200000, "tons"),
  23893. name: "Front",
  23894. image: {
  23895. source: "./media/characters/alessandra/front.svg",
  23896. extra: 960 / 912,
  23897. bottom: 0.06
  23898. }
  23899. },
  23900. },
  23901. [
  23902. {
  23903. name: "Macro",
  23904. height: math.unit(1050, "feet")
  23905. },
  23906. {
  23907. name: "Macro+",
  23908. height: math.unit(900, "meters"),
  23909. default: true
  23910. },
  23911. ]
  23912. ))
  23913. characterMakers.push(() => makeCharacter(
  23914. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  23915. {
  23916. front: {
  23917. height: math.unit(5, "feet"),
  23918. weight: math.unit(187, "lb"),
  23919. name: "Front",
  23920. image: {
  23921. source: "./media/characters/person/front.svg",
  23922. extra: 3087 / 2945,
  23923. bottom: 91 / 3181
  23924. }
  23925. },
  23926. },
  23927. [
  23928. {
  23929. name: "Micro",
  23930. height: math.unit(3, "inches")
  23931. },
  23932. {
  23933. name: "Normal",
  23934. height: math.unit(5, "feet"),
  23935. default: true
  23936. },
  23937. {
  23938. name: "Macro",
  23939. height: math.unit(90, "feet")
  23940. },
  23941. {
  23942. name: "Max Size",
  23943. height: math.unit(280, "feet")
  23944. },
  23945. ]
  23946. ))
  23947. characterMakers.push(() => makeCharacter(
  23948. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  23949. {
  23950. front: {
  23951. height: math.unit(4.5, "meters"),
  23952. weight: math.unit(3200, "lb"),
  23953. name: "Front",
  23954. image: {
  23955. source: "./media/characters/ty/front.svg",
  23956. extra: 1038 / 960,
  23957. bottom: 31.156 / 1068
  23958. }
  23959. },
  23960. back: {
  23961. height: math.unit(4.5, "meters"),
  23962. weight: math.unit(3200, "lb"),
  23963. name: "Back",
  23964. image: {
  23965. source: "./media/characters/ty/back.svg",
  23966. extra: 1044 / 966,
  23967. bottom: 7.48 / 1049
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(4.5, "meters"),
  23975. default: true
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  23981. {
  23982. front: {
  23983. height: math.unit(5 + 4 / 12, "feet"),
  23984. weight: math.unit(115, "lb"),
  23985. name: "Front",
  23986. image: {
  23987. source: "./media/characters/rocky/front.svg",
  23988. extra: 1012 / 975,
  23989. bottom: 54 / 1066
  23990. }
  23991. },
  23992. },
  23993. [
  23994. {
  23995. name: "Normal",
  23996. height: math.unit(5 + 4 / 12, "feet"),
  23997. default: true
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24003. {
  24004. upright: {
  24005. height: math.unit(6, "meters"),
  24006. weight: math.unit(4000, "kg"),
  24007. name: "Upright",
  24008. image: {
  24009. source: "./media/characters/ruin/upright.svg",
  24010. extra: 668 / 661,
  24011. bottom: 42 / 799.8396
  24012. }
  24013. },
  24014. },
  24015. [
  24016. {
  24017. name: "Normal",
  24018. height: math.unit(6, "meters"),
  24019. default: true
  24020. },
  24021. ]
  24022. ))
  24023. characterMakers.push(() => makeCharacter(
  24024. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24025. {
  24026. front: {
  24027. height: math.unit(5, "feet"),
  24028. weight: math.unit(106, "lb"),
  24029. name: "Front",
  24030. image: {
  24031. source: "./media/characters/robin/front.svg",
  24032. extra: 862 / 799,
  24033. bottom: 42.4 / 914.8856
  24034. }
  24035. },
  24036. },
  24037. [
  24038. {
  24039. name: "Normal",
  24040. height: math.unit(5, "feet"),
  24041. default: true
  24042. },
  24043. ]
  24044. ))
  24045. characterMakers.push(() => makeCharacter(
  24046. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24047. {
  24048. side: {
  24049. height: math.unit(3, "feet"),
  24050. weight: math.unit(225, "lb"),
  24051. name: "Side",
  24052. image: {
  24053. source: "./media/characters/saian/side.svg",
  24054. extra: 566 / 356,
  24055. bottom: 79.7 / 643
  24056. }
  24057. },
  24058. maw: {
  24059. height: math.unit(2.85, "feet"),
  24060. name: "Maw",
  24061. image: {
  24062. source: "./media/characters/saian/maw.svg"
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Normal",
  24069. height: math.unit(3, "feet"),
  24070. default: true
  24071. },
  24072. ]
  24073. ))
  24074. characterMakers.push(() => makeCharacter(
  24075. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24076. {
  24077. side: {
  24078. height: math.unit(8, "feet"),
  24079. weight: math.unit(300, "lb"),
  24080. name: "Side",
  24081. image: {
  24082. source: "./media/characters/equus-silvermane/side.svg",
  24083. extra: 2176 / 2050,
  24084. bottom: 65.7 / 2245
  24085. }
  24086. },
  24087. front: {
  24088. height: math.unit(8, "feet"),
  24089. weight: math.unit(300, "lb"),
  24090. name: "Front",
  24091. image: {
  24092. source: "./media/characters/equus-silvermane/front.svg",
  24093. extra: 4633 / 4400,
  24094. bottom: 71.3 / 4706.915
  24095. }
  24096. },
  24097. sideStepping: {
  24098. height: math.unit(8, "feet"),
  24099. weight: math.unit(300, "lb"),
  24100. name: "Side (Stepping)",
  24101. image: {
  24102. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24103. extra: 1968 / 1860,
  24104. bottom: 16.4 / 1989
  24105. }
  24106. },
  24107. },
  24108. [
  24109. {
  24110. name: "Normal",
  24111. height: math.unit(8, "feet")
  24112. },
  24113. {
  24114. name: "Minimacro",
  24115. height: math.unit(75, "feet"),
  24116. default: true
  24117. },
  24118. {
  24119. name: "Macro",
  24120. height: math.unit(150, "feet")
  24121. },
  24122. {
  24123. name: "Macro+",
  24124. height: math.unit(1000, "feet")
  24125. },
  24126. {
  24127. name: "Megamacro",
  24128. height: math.unit(1, "mile")
  24129. },
  24130. ]
  24131. ))
  24132. characterMakers.push(() => makeCharacter(
  24133. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24134. {
  24135. side: {
  24136. height: math.unit(20, "feet"),
  24137. weight: math.unit(30000, "kg"),
  24138. name: "Side",
  24139. image: {
  24140. source: "./media/characters/windar/side.svg",
  24141. extra: 1491 / 1248,
  24142. bottom: 82.56 / 1568
  24143. }
  24144. },
  24145. },
  24146. [
  24147. {
  24148. name: "Normal",
  24149. height: math.unit(20, "feet"),
  24150. default: true
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24156. {
  24157. side: {
  24158. height: math.unit(15.66, "feet"),
  24159. weight: math.unit(150, "lb"),
  24160. name: "Side",
  24161. image: {
  24162. source: "./media/characters/melody/side.svg",
  24163. extra: 1097 / 944,
  24164. bottom: 11.8 / 1109
  24165. }
  24166. },
  24167. sideOutfit: {
  24168. height: math.unit(15.66, "feet"),
  24169. weight: math.unit(150, "lb"),
  24170. name: "Side (Outfit)",
  24171. image: {
  24172. source: "./media/characters/melody/side-outfit.svg",
  24173. extra: 1097 / 944,
  24174. bottom: 11.8 / 1109
  24175. }
  24176. },
  24177. },
  24178. [
  24179. {
  24180. name: "Normal",
  24181. height: math.unit(15.66, "feet"),
  24182. default: true
  24183. },
  24184. ]
  24185. ))
  24186. characterMakers.push(() => makeCharacter(
  24187. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24188. {
  24189. armoredFront: {
  24190. height: math.unit(8, "feet"),
  24191. weight: math.unit(325, "lb"),
  24192. name: "Front",
  24193. image: {
  24194. source: "./media/characters/windera/armored-front.svg",
  24195. extra: 1830/1598,
  24196. bottom: 151/1981
  24197. },
  24198. form: "armored",
  24199. default: true
  24200. },
  24201. macroFront: {
  24202. height: math.unit(70, "feet"),
  24203. weight: math.unit(315453, "lb"),
  24204. name: "Front",
  24205. image: {
  24206. source: "./media/characters/windera/macro-front.svg",
  24207. extra: 963/883,
  24208. bottom: 23/986
  24209. },
  24210. form: "macro",
  24211. default: true
  24212. },
  24213. },
  24214. [
  24215. {
  24216. name: "Normal",
  24217. height: math.unit(8, "feet"),
  24218. default: true,
  24219. form: "armored"
  24220. },
  24221. {
  24222. name: "Normal",
  24223. height: math.unit(70, "feet"),
  24224. default: true,
  24225. form: "macro"
  24226. },
  24227. ],
  24228. {
  24229. "armored": {
  24230. name: "Armored",
  24231. default: true
  24232. },
  24233. "macro": {
  24234. name: "Macro",
  24235. },
  24236. }
  24237. ))
  24238. characterMakers.push(() => makeCharacter(
  24239. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24240. {
  24241. front: {
  24242. height: math.unit(28.75, "feet"),
  24243. weight: math.unit(2000, "kg"),
  24244. name: "Front",
  24245. image: {
  24246. source: "./media/characters/sonear/front.svg",
  24247. extra: 1041.1 / 964.9,
  24248. bottom: 53.7 / 1096.6
  24249. }
  24250. },
  24251. },
  24252. [
  24253. {
  24254. name: "Normal",
  24255. height: math.unit(28.75, "feet"),
  24256. default: true
  24257. },
  24258. ]
  24259. ))
  24260. characterMakers.push(() => makeCharacter(
  24261. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24262. {
  24263. side: {
  24264. height: math.unit(25.5, "feet"),
  24265. weight: math.unit(23000, "kg"),
  24266. name: "Side",
  24267. image: {
  24268. source: "./media/characters/kanara/side.svg"
  24269. }
  24270. },
  24271. },
  24272. [
  24273. {
  24274. name: "Normal",
  24275. height: math.unit(25.5, "feet"),
  24276. default: true
  24277. },
  24278. ]
  24279. ))
  24280. characterMakers.push(() => makeCharacter(
  24281. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24282. {
  24283. side: {
  24284. height: math.unit(10, "feet"),
  24285. weight: math.unit(1000, "kg"),
  24286. name: "Side",
  24287. image: {
  24288. source: "./media/characters/ereus/side.svg",
  24289. extra: 1157 / 959,
  24290. bottom: 153 / 1312.5
  24291. }
  24292. },
  24293. },
  24294. [
  24295. {
  24296. name: "Normal",
  24297. height: math.unit(10, "feet"),
  24298. default: true
  24299. },
  24300. ]
  24301. ))
  24302. characterMakers.push(() => makeCharacter(
  24303. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24304. {
  24305. side: {
  24306. height: math.unit(4.5, "feet"),
  24307. weight: math.unit(500, "lb"),
  24308. name: "Side",
  24309. image: {
  24310. source: "./media/characters/e-ter/side.svg",
  24311. extra: 1550 / 1248,
  24312. bottom: 146 / 1694
  24313. }
  24314. },
  24315. },
  24316. [
  24317. {
  24318. name: "Normal",
  24319. height: math.unit(4.5, "feet"),
  24320. default: true
  24321. },
  24322. ]
  24323. ))
  24324. characterMakers.push(() => makeCharacter(
  24325. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24326. {
  24327. side: {
  24328. height: math.unit(9.7, "feet"),
  24329. weight: math.unit(4000, "kg"),
  24330. name: "Side",
  24331. image: {
  24332. source: "./media/characters/yamie/side.svg"
  24333. }
  24334. },
  24335. },
  24336. [
  24337. {
  24338. name: "Normal",
  24339. height: math.unit(9.7, "feet"),
  24340. default: true
  24341. },
  24342. ]
  24343. ))
  24344. characterMakers.push(() => makeCharacter(
  24345. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24346. {
  24347. front: {
  24348. height: math.unit(50, "feet"),
  24349. weight: math.unit(50000, "kg"),
  24350. name: "Front",
  24351. image: {
  24352. source: "./media/characters/anders/front.svg",
  24353. extra: 570 / 539,
  24354. bottom: 14.7 / 586.7
  24355. }
  24356. },
  24357. },
  24358. [
  24359. {
  24360. name: "Large",
  24361. height: math.unit(50, "feet")
  24362. },
  24363. {
  24364. name: "Macro",
  24365. height: math.unit(2000, "feet"),
  24366. default: true
  24367. },
  24368. {
  24369. name: "Megamacro",
  24370. height: math.unit(12, "miles")
  24371. },
  24372. ]
  24373. ))
  24374. characterMakers.push(() => makeCharacter(
  24375. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24376. {
  24377. front: {
  24378. height: math.unit(7 + 2 / 12, "feet"),
  24379. weight: math.unit(300, "lb"),
  24380. name: "Front",
  24381. image: {
  24382. source: "./media/characters/reban/front.svg",
  24383. extra: 1287/1212,
  24384. bottom: 148/1435
  24385. }
  24386. },
  24387. head: {
  24388. height: math.unit(1.95, "feet"),
  24389. name: "Head",
  24390. image: {
  24391. source: "./media/characters/reban/head.svg"
  24392. }
  24393. },
  24394. maw: {
  24395. height: math.unit(0.95, "feet"),
  24396. name: "Maw",
  24397. image: {
  24398. source: "./media/characters/reban/maw.svg"
  24399. }
  24400. },
  24401. foot: {
  24402. height: math.unit(1.65, "feet"),
  24403. name: "Foot",
  24404. image: {
  24405. source: "./media/characters/reban/foot.svg"
  24406. }
  24407. },
  24408. dick: {
  24409. height: math.unit(7 / 5, "feet"),
  24410. name: "Dick",
  24411. image: {
  24412. source: "./media/characters/reban/dick.svg"
  24413. }
  24414. },
  24415. },
  24416. [
  24417. {
  24418. name: "Natural Height",
  24419. height: math.unit(7 + 2 / 12, "feet")
  24420. },
  24421. {
  24422. name: "Macro",
  24423. height: math.unit(500, "feet"),
  24424. default: true
  24425. },
  24426. {
  24427. name: "Canon Height",
  24428. height: math.unit(50, "AU")
  24429. },
  24430. ]
  24431. ))
  24432. characterMakers.push(() => makeCharacter(
  24433. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24434. {
  24435. front: {
  24436. height: math.unit(6, "feet"),
  24437. weight: math.unit(150, "lb"),
  24438. name: "Front",
  24439. image: {
  24440. source: "./media/characters/terrance-keayes/front.svg",
  24441. extra: 1.005,
  24442. bottom: 151 / 1615
  24443. }
  24444. },
  24445. side: {
  24446. height: math.unit(6, "feet"),
  24447. weight: math.unit(150, "lb"),
  24448. name: "Side",
  24449. image: {
  24450. source: "./media/characters/terrance-keayes/side.svg",
  24451. extra: 1.005,
  24452. bottom: 129.4 / 1544
  24453. }
  24454. },
  24455. back: {
  24456. height: math.unit(6, "feet"),
  24457. weight: math.unit(150, "lb"),
  24458. name: "Back",
  24459. image: {
  24460. source: "./media/characters/terrance-keayes/back.svg",
  24461. extra: 1.005,
  24462. bottom: 58.4 / 1557.3
  24463. }
  24464. },
  24465. dick: {
  24466. height: math.unit(6 * 0.208, "feet"),
  24467. name: "Dick",
  24468. image: {
  24469. source: "./media/characters/terrance-keayes/dick.svg"
  24470. }
  24471. },
  24472. },
  24473. [
  24474. {
  24475. name: "Canon Height",
  24476. height: math.unit(35, "miles"),
  24477. default: true
  24478. },
  24479. ]
  24480. ))
  24481. characterMakers.push(() => makeCharacter(
  24482. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24483. {
  24484. front: {
  24485. height: math.unit(6, "feet"),
  24486. weight: math.unit(150, "lb"),
  24487. name: "Front",
  24488. image: {
  24489. source: "./media/characters/ofelia/front.svg",
  24490. extra: 1130/1117,
  24491. bottom: 91/1221
  24492. }
  24493. },
  24494. back: {
  24495. height: math.unit(6, "feet"),
  24496. weight: math.unit(150, "lb"),
  24497. name: "Back",
  24498. image: {
  24499. source: "./media/characters/ofelia/back.svg",
  24500. extra: 1172/1159,
  24501. bottom: 28/1200
  24502. }
  24503. },
  24504. maw: {
  24505. height: math.unit(1, "feet"),
  24506. name: "Maw",
  24507. image: {
  24508. source: "./media/characters/ofelia/maw.svg"
  24509. }
  24510. },
  24511. foot: {
  24512. height: math.unit(1.949, "feet"),
  24513. name: "Foot",
  24514. image: {
  24515. source: "./media/characters/ofelia/foot.svg"
  24516. }
  24517. },
  24518. },
  24519. [
  24520. {
  24521. name: "Canon Height",
  24522. height: math.unit(2000, "miles"),
  24523. default: true
  24524. },
  24525. ]
  24526. ))
  24527. characterMakers.push(() => makeCharacter(
  24528. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24529. {
  24530. front: {
  24531. height: math.unit(6, "feet"),
  24532. weight: math.unit(150, "lb"),
  24533. name: "Front",
  24534. image: {
  24535. source: "./media/characters/samuel/front.svg",
  24536. extra: 265 / 258,
  24537. bottom: 2 / 266.1566
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Macro",
  24544. height: math.unit(100, "feet"),
  24545. default: true
  24546. },
  24547. {
  24548. name: "Full Size",
  24549. height: math.unit(1000, "miles")
  24550. },
  24551. ]
  24552. ))
  24553. characterMakers.push(() => makeCharacter(
  24554. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24555. {
  24556. front: {
  24557. height: math.unit(6, "feet"),
  24558. weight: math.unit(300, "lb"),
  24559. name: "Front",
  24560. image: {
  24561. source: "./media/characters/beishir-kiel/front.svg",
  24562. extra: 569 / 547,
  24563. bottom: 41.9 / 609
  24564. }
  24565. },
  24566. maw: {
  24567. height: math.unit(6 * 0.202, "feet"),
  24568. name: "Maw",
  24569. image: {
  24570. source: "./media/characters/beishir-kiel/maw.svg"
  24571. }
  24572. },
  24573. },
  24574. [
  24575. {
  24576. name: "Macro",
  24577. height: math.unit(300, "feet"),
  24578. default: true
  24579. },
  24580. ]
  24581. ))
  24582. characterMakers.push(() => makeCharacter(
  24583. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24584. {
  24585. front: {
  24586. height: math.unit(5 + 7/12, "feet"),
  24587. weight: math.unit(120, "lb"),
  24588. name: "Front",
  24589. image: {
  24590. source: "./media/characters/logan-grey/front.svg",
  24591. extra: 1836/1738,
  24592. bottom: 108/1944
  24593. }
  24594. },
  24595. back: {
  24596. height: math.unit(5 + 7/12, "feet"),
  24597. weight: math.unit(120, "lb"),
  24598. name: "Back",
  24599. image: {
  24600. source: "./media/characters/logan-grey/back.svg",
  24601. extra: 1880/1794,
  24602. bottom: 24/1904
  24603. }
  24604. },
  24605. frontSfw: {
  24606. height: math.unit(5 + 7/12, "feet"),
  24607. weight: math.unit(120, "lb"),
  24608. name: "Front (SFW)",
  24609. image: {
  24610. source: "./media/characters/logan-grey/front-sfw.svg",
  24611. extra: 1836/1738,
  24612. bottom: 108/1944
  24613. }
  24614. },
  24615. backSfw: {
  24616. height: math.unit(5 + 7/12, "feet"),
  24617. weight: math.unit(120, "lb"),
  24618. name: "Back (SFW)",
  24619. image: {
  24620. source: "./media/characters/logan-grey/back-sfw.svg",
  24621. extra: 1880/1794,
  24622. bottom: 24/1904
  24623. }
  24624. },
  24625. hands: {
  24626. height: math.unit(0.84, "feet"),
  24627. name: "Hands",
  24628. image: {
  24629. source: "./media/characters/logan-grey/hands.svg"
  24630. }
  24631. },
  24632. paws: {
  24633. height: math.unit(0.72, "feet"),
  24634. name: "Paws",
  24635. image: {
  24636. source: "./media/characters/logan-grey/paws.svg"
  24637. }
  24638. },
  24639. cock: {
  24640. height: math.unit(1.45, "feet"),
  24641. name: "Cock",
  24642. image: {
  24643. source: "./media/characters/logan-grey/cock.svg"
  24644. }
  24645. },
  24646. cockAlt: {
  24647. height: math.unit(1.437, "feet"),
  24648. name: "Cock (alt)",
  24649. image: {
  24650. source: "./media/characters/logan-grey/cock-alt.svg"
  24651. }
  24652. },
  24653. },
  24654. [
  24655. {
  24656. name: "Normal",
  24657. height: math.unit(5 + 8 / 12, "feet")
  24658. },
  24659. {
  24660. name: "The 500 Foot Femboy",
  24661. height: math.unit(500, "feet"),
  24662. default: true
  24663. },
  24664. {
  24665. name: "Megmacro",
  24666. height: math.unit(20, "miles")
  24667. },
  24668. ]
  24669. ))
  24670. characterMakers.push(() => makeCharacter(
  24671. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24672. {
  24673. front: {
  24674. height: math.unit(8 + 2 / 12, "feet"),
  24675. weight: math.unit(275, "lb"),
  24676. name: "Front",
  24677. image: {
  24678. source: "./media/characters/draganta/front.svg",
  24679. extra: 1177 / 1135,
  24680. bottom: 33.46 / 1212.1
  24681. }
  24682. },
  24683. },
  24684. [
  24685. {
  24686. name: "Normal",
  24687. height: math.unit(8 + 6 / 12, "feet"),
  24688. default: true
  24689. },
  24690. {
  24691. name: "Macro",
  24692. height: math.unit(150, "feet")
  24693. },
  24694. {
  24695. name: "Megamacro",
  24696. height: math.unit(1000, "miles")
  24697. },
  24698. ]
  24699. ))
  24700. characterMakers.push(() => makeCharacter(
  24701. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24702. {
  24703. front: {
  24704. height: math.unit(1.72, "m"),
  24705. weight: math.unit(80, "lb"),
  24706. name: "Front",
  24707. image: {
  24708. source: "./media/characters/voski/front.svg",
  24709. extra: 2076.22 / 2022.4,
  24710. bottom: 102.7 / 2177.3866
  24711. }
  24712. },
  24713. frontFlaccid: {
  24714. height: math.unit(1.72, "m"),
  24715. weight: math.unit(80, "lb"),
  24716. name: "Front (Flaccid)",
  24717. image: {
  24718. source: "./media/characters/voski/front-flaccid.svg",
  24719. extra: 2076.22 / 2022.4,
  24720. bottom: 102.7 / 2177.3866
  24721. }
  24722. },
  24723. frontErect: {
  24724. height: math.unit(1.72, "m"),
  24725. weight: math.unit(80, "lb"),
  24726. name: "Front (Erect)",
  24727. image: {
  24728. source: "./media/characters/voski/front-erect.svg",
  24729. extra: 2076.22 / 2022.4,
  24730. bottom: 102.7 / 2177.3866
  24731. }
  24732. },
  24733. back: {
  24734. height: math.unit(1.72, "m"),
  24735. weight: math.unit(80, "lb"),
  24736. name: "Back",
  24737. image: {
  24738. source: "./media/characters/voski/back.svg",
  24739. extra: 2104 / 2051,
  24740. bottom: 10.45 / 2113.63
  24741. }
  24742. },
  24743. },
  24744. [
  24745. {
  24746. name: "Normal",
  24747. height: math.unit(1.72, "m")
  24748. },
  24749. {
  24750. name: "Macro",
  24751. height: math.unit(55, "m"),
  24752. default: true
  24753. },
  24754. {
  24755. name: "Macro+",
  24756. height: math.unit(300, "m")
  24757. },
  24758. {
  24759. name: "Macro++",
  24760. height: math.unit(700, "m")
  24761. },
  24762. {
  24763. name: "Macro+++",
  24764. height: math.unit(4500, "m")
  24765. },
  24766. {
  24767. name: "Macro++++",
  24768. height: math.unit(45, "km")
  24769. },
  24770. {
  24771. name: "Macro+++++",
  24772. height: math.unit(1220, "km")
  24773. },
  24774. ]
  24775. ))
  24776. characterMakers.push(() => makeCharacter(
  24777. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24778. {
  24779. front: {
  24780. height: math.unit(2.3, "m"),
  24781. weight: math.unit(304, "kg"),
  24782. name: "Front",
  24783. image: {
  24784. source: "./media/characters/icowom-lee/front.svg",
  24785. extra: 985 / 955,
  24786. bottom: 25.4 / 1012
  24787. }
  24788. },
  24789. fronttentacles: {
  24790. height: math.unit(2.3, "m"),
  24791. weight: math.unit(304, "kg"),
  24792. name: "Front-tentacles",
  24793. image: {
  24794. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24795. extra: 985 / 955,
  24796. bottom: 25.4 / 1012
  24797. }
  24798. },
  24799. back: {
  24800. height: math.unit(2.3, "m"),
  24801. weight: math.unit(304, "kg"),
  24802. name: "Back",
  24803. image: {
  24804. source: "./media/characters/icowom-lee/back.svg",
  24805. extra: 975 / 954,
  24806. bottom: 9.5 / 985
  24807. }
  24808. },
  24809. backtentacles: {
  24810. height: math.unit(2.3, "m"),
  24811. weight: math.unit(304, "kg"),
  24812. name: "Back-tentacles",
  24813. image: {
  24814. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24815. extra: 975 / 954,
  24816. bottom: 9.5 / 985
  24817. }
  24818. },
  24819. frontDressed: {
  24820. height: math.unit(2.3, "m"),
  24821. weight: math.unit(304, "kg"),
  24822. name: "Front (Dressed)",
  24823. image: {
  24824. source: "./media/characters/icowom-lee/front-dressed.svg",
  24825. extra: 3076 / 2933,
  24826. bottom: 51.4 / 3125.1889
  24827. }
  24828. },
  24829. rump: {
  24830. height: math.unit(0.776, "meters"),
  24831. name: "Rump",
  24832. image: {
  24833. source: "./media/characters/icowom-lee/rump.svg"
  24834. }
  24835. },
  24836. genitals: {
  24837. height: math.unit(0.78, "meters"),
  24838. name: "Genitals",
  24839. image: {
  24840. source: "./media/characters/icowom-lee/genitals.svg"
  24841. }
  24842. },
  24843. },
  24844. [
  24845. {
  24846. name: "Normal",
  24847. height: math.unit(2.3, "meters"),
  24848. default: true
  24849. },
  24850. {
  24851. name: "Macro",
  24852. height: math.unit(94, "meters"),
  24853. default: true
  24854. },
  24855. ]
  24856. ))
  24857. characterMakers.push(() => makeCharacter(
  24858. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24859. {
  24860. front: {
  24861. height: math.unit(22, "meters"),
  24862. weight: math.unit(21000, "kg"),
  24863. name: "Front",
  24864. image: {
  24865. source: "./media/characters/shock-diamond/front.svg",
  24866. extra: 2204 / 2053,
  24867. bottom: 65 / 2239.47
  24868. }
  24869. },
  24870. frontNude: {
  24871. height: math.unit(22, "meters"),
  24872. weight: math.unit(21000, "kg"),
  24873. name: "Front (Nude)",
  24874. image: {
  24875. source: "./media/characters/shock-diamond/front-nude.svg",
  24876. extra: 2514 / 2285,
  24877. bottom: 13 / 2527.56
  24878. }
  24879. },
  24880. },
  24881. [
  24882. {
  24883. name: "Normal",
  24884. height: math.unit(3, "meters")
  24885. },
  24886. {
  24887. name: "Macro",
  24888. height: math.unit(22, "meters"),
  24889. default: true
  24890. },
  24891. ]
  24892. ))
  24893. characterMakers.push(() => makeCharacter(
  24894. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24895. {
  24896. front: {
  24897. height: math.unit(5 + 4/12, "feet"),
  24898. weight: math.unit(125, "lb"),
  24899. name: "Front",
  24900. image: {
  24901. source: "./media/characters/rory/front.svg",
  24902. extra: 1790/1681,
  24903. bottom: 66/1856
  24904. },
  24905. form: "normal",
  24906. default: true
  24907. },
  24908. back: {
  24909. height: math.unit(5 + 4/12, "feet"),
  24910. weight: math.unit(125, "lb"),
  24911. name: "Back",
  24912. image: {
  24913. source: "./media/characters/rory/back.svg",
  24914. extra: 1805/1690,
  24915. bottom: 56/1861
  24916. },
  24917. form: "normal"
  24918. },
  24919. frontDressed: {
  24920. height: math.unit(5 + 4/12, "feet"),
  24921. weight: math.unit(125, "lb"),
  24922. name: "Front (Dressed)",
  24923. image: {
  24924. source: "./media/characters/rory/front-dressed.svg",
  24925. extra: 1790/1681,
  24926. bottom: 66/1856
  24927. },
  24928. form: "normal"
  24929. },
  24930. backDressed: {
  24931. height: math.unit(5 + 4/12, "feet"),
  24932. weight: math.unit(125, "lb"),
  24933. name: "Back (Dressed)",
  24934. image: {
  24935. source: "./media/characters/rory/back-dressed.svg",
  24936. extra: 1805/1690,
  24937. bottom: 56/1861
  24938. },
  24939. form: "normal"
  24940. },
  24941. frontNsfw: {
  24942. height: math.unit(5 + 4/12, "feet"),
  24943. weight: math.unit(125, "lb"),
  24944. name: "Front (NSFW)",
  24945. image: {
  24946. source: "./media/characters/rory/front-nsfw.svg",
  24947. extra: 1790/1681,
  24948. bottom: 66/1856
  24949. },
  24950. form: "normal"
  24951. },
  24952. backNsfw: {
  24953. height: math.unit(5 + 4/12, "feet"),
  24954. weight: math.unit(125, "lb"),
  24955. name: "Back (NSFW)",
  24956. image: {
  24957. source: "./media/characters/rory/back-nsfw.svg",
  24958. extra: 1805/1690,
  24959. bottom: 56/1861
  24960. },
  24961. form: "normal"
  24962. },
  24963. dick: {
  24964. height: math.unit(0.8, "feet"),
  24965. name: "Dick",
  24966. image: {
  24967. source: "./media/characters/rory/dick.svg"
  24968. },
  24969. form: "normal"
  24970. },
  24971. thicc_front: {
  24972. height: math.unit(5 + 4/12, "feet"),
  24973. weight: math.unit(195, "lb"),
  24974. name: "Front",
  24975. image: {
  24976. source: "./media/characters/rory/thicc-front.svg",
  24977. extra: 1220/1100,
  24978. bottom: 103/1323
  24979. },
  24980. form: "thicc",
  24981. default: true
  24982. },
  24983. thicc_back: {
  24984. height: math.unit(5 + 4/12, "feet"),
  24985. weight: math.unit(195, "lb"),
  24986. name: "Back",
  24987. image: {
  24988. source: "./media/characters/rory/thicc-back.svg",
  24989. extra: 1166/1086,
  24990. bottom: 35/1201
  24991. },
  24992. form: "thicc"
  24993. },
  24994. },
  24995. [
  24996. {
  24997. name: "Micro",
  24998. height: math.unit(3, "inches"),
  24999. allForms: true
  25000. },
  25001. {
  25002. name: "Normal",
  25003. height: math.unit(5 + 4/12, "feet"),
  25004. allForms: true,
  25005. default: true
  25006. },
  25007. {
  25008. name: "Macro",
  25009. height: math.unit(90, "feet"),
  25010. allForms: true
  25011. },
  25012. {
  25013. name: "Supercharged",
  25014. height: math.unit(270, "feet"),
  25015. allForms: true
  25016. },
  25017. ],
  25018. {
  25019. "normal": {
  25020. name: "Normal",
  25021. default: true
  25022. },
  25023. "thicc": {
  25024. name: "Thicc",
  25025. },
  25026. }
  25027. ))
  25028. characterMakers.push(() => makeCharacter(
  25029. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25030. {
  25031. front: {
  25032. height: math.unit(5 + 9 / 12, "feet"),
  25033. weight: math.unit(190, "lb"),
  25034. name: "Front",
  25035. image: {
  25036. source: "./media/characters/sprisk/front.svg",
  25037. extra: 1225 / 1180,
  25038. bottom: 42.7 / 1266.4
  25039. }
  25040. },
  25041. frontNsfw: {
  25042. height: math.unit(5 + 9 / 12, "feet"),
  25043. weight: math.unit(190, "lb"),
  25044. name: "Front (NSFW)",
  25045. image: {
  25046. source: "./media/characters/sprisk/front-nsfw.svg",
  25047. extra: 1225 / 1180,
  25048. bottom: 42.7 / 1266.4
  25049. }
  25050. },
  25051. back: {
  25052. height: math.unit(5 + 9 / 12, "feet"),
  25053. weight: math.unit(190, "lb"),
  25054. name: "Back",
  25055. image: {
  25056. source: "./media/characters/sprisk/back.svg",
  25057. extra: 1247 / 1200,
  25058. bottom: 5.6 / 1253.04
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Tiny",
  25065. height: math.unit(2, "inches")
  25066. },
  25067. {
  25068. name: "Normal",
  25069. height: math.unit(5 + 9 / 12, "feet"),
  25070. default: true
  25071. },
  25072. {
  25073. name: "Mini Macro",
  25074. height: math.unit(18, "feet")
  25075. },
  25076. {
  25077. name: "Macro",
  25078. height: math.unit(100, "feet")
  25079. },
  25080. {
  25081. name: "MACRO",
  25082. height: math.unit(50, "miles")
  25083. },
  25084. {
  25085. name: "M A C R O",
  25086. height: math.unit(300, "miles")
  25087. },
  25088. ]
  25089. ))
  25090. characterMakers.push(() => makeCharacter(
  25091. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25092. {
  25093. side: {
  25094. height: math.unit(15.6, "meters"),
  25095. weight: math.unit(700000, "kg"),
  25096. name: "Side",
  25097. image: {
  25098. source: "./media/characters/bunsen/side.svg",
  25099. extra: 1644 / 358
  25100. }
  25101. },
  25102. foot: {
  25103. height: math.unit(1.611 * 1644 / 358, "meter"),
  25104. name: "Foot",
  25105. image: {
  25106. source: "./media/characters/bunsen/foot.svg"
  25107. }
  25108. },
  25109. },
  25110. [
  25111. {
  25112. name: "Small",
  25113. height: math.unit(10, "feet")
  25114. },
  25115. {
  25116. name: "Normal",
  25117. height: math.unit(15.6, "meters"),
  25118. default: true
  25119. },
  25120. ]
  25121. ))
  25122. characterMakers.push(() => makeCharacter(
  25123. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25124. {
  25125. front: {
  25126. height: math.unit(4 + 11 / 12, "feet"),
  25127. weight: math.unit(140, "lb"),
  25128. name: "Front",
  25129. image: {
  25130. source: "./media/characters/sesh/front.svg",
  25131. extra: 3420 / 3231,
  25132. bottom: 72 / 3949.5
  25133. }
  25134. },
  25135. },
  25136. [
  25137. {
  25138. name: "Normal",
  25139. height: math.unit(4 + 11 / 12, "feet")
  25140. },
  25141. {
  25142. name: "Grown",
  25143. height: math.unit(15, "feet"),
  25144. default: true
  25145. },
  25146. {
  25147. name: "Macro",
  25148. height: math.unit(1500, "feet")
  25149. },
  25150. {
  25151. name: "Megamacro",
  25152. height: math.unit(30, "miles")
  25153. },
  25154. {
  25155. name: "Continental",
  25156. height: math.unit(3000, "miles")
  25157. },
  25158. {
  25159. name: "Gravity Mass",
  25160. height: math.unit(300000, "miles")
  25161. },
  25162. {
  25163. name: "Planet Buster",
  25164. height: math.unit(30000000, "miles")
  25165. },
  25166. {
  25167. name: "Big",
  25168. height: math.unit(3000000000, "miles")
  25169. },
  25170. ]
  25171. ))
  25172. characterMakers.push(() => makeCharacter(
  25173. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25174. {
  25175. front: {
  25176. height: math.unit(9, "feet"),
  25177. weight: math.unit(350, "lb"),
  25178. name: "Front",
  25179. image: {
  25180. source: "./media/characters/pepper/front.svg",
  25181. extra: 1448 / 1312,
  25182. bottom: 9.4 / 1457.88
  25183. }
  25184. },
  25185. back: {
  25186. height: math.unit(9, "feet"),
  25187. weight: math.unit(350, "lb"),
  25188. name: "Back",
  25189. image: {
  25190. source: "./media/characters/pepper/back.svg",
  25191. extra: 1423 / 1300,
  25192. bottom: 4.6 / 1429
  25193. }
  25194. },
  25195. maw: {
  25196. height: math.unit(0.932, "feet"),
  25197. name: "Maw",
  25198. image: {
  25199. source: "./media/characters/pepper/maw.svg"
  25200. }
  25201. },
  25202. },
  25203. [
  25204. {
  25205. name: "Normal",
  25206. height: math.unit(9, "feet"),
  25207. default: true
  25208. },
  25209. ]
  25210. ))
  25211. characterMakers.push(() => makeCharacter(
  25212. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25213. {
  25214. front: {
  25215. height: math.unit(6, "feet"),
  25216. weight: math.unit(150, "lb"),
  25217. name: "Front",
  25218. image: {
  25219. source: "./media/characters/maelstrom/front.svg",
  25220. extra: 2100 / 1883,
  25221. bottom: 94 / 2196.7
  25222. }
  25223. },
  25224. },
  25225. [
  25226. {
  25227. name: "Less Kaiju",
  25228. height: math.unit(200, "feet")
  25229. },
  25230. {
  25231. name: "Kaiju",
  25232. height: math.unit(400, "feet"),
  25233. default: true
  25234. },
  25235. {
  25236. name: "Kaiju-er",
  25237. height: math.unit(600, "feet")
  25238. },
  25239. ]
  25240. ))
  25241. characterMakers.push(() => makeCharacter(
  25242. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25243. {
  25244. front: {
  25245. height: math.unit(6 + 5 / 12, "feet"),
  25246. weight: math.unit(180, "lb"),
  25247. name: "Front",
  25248. image: {
  25249. source: "./media/characters/lexir/front.svg",
  25250. extra: 180 / 172,
  25251. bottom: 12 / 192
  25252. }
  25253. },
  25254. back: {
  25255. height: math.unit(6 + 5 / 12, "feet"),
  25256. weight: math.unit(180, "lb"),
  25257. name: "Back",
  25258. image: {
  25259. source: "./media/characters/lexir/back.svg",
  25260. extra: 1273/1201,
  25261. bottom: 39/1312
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Very Smal",
  25268. height: math.unit(1, "nm")
  25269. },
  25270. {
  25271. name: "Normal",
  25272. height: math.unit(6 + 5 / 12, "feet"),
  25273. default: true
  25274. },
  25275. {
  25276. name: "Macro",
  25277. height: math.unit(1, "mile")
  25278. },
  25279. {
  25280. name: "Megamacro",
  25281. height: math.unit(50, "miles")
  25282. },
  25283. ]
  25284. ))
  25285. characterMakers.push(() => makeCharacter(
  25286. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25287. {
  25288. front: {
  25289. height: math.unit(1.5, "meters"),
  25290. weight: math.unit(100, "lb"),
  25291. name: "Front",
  25292. image: {
  25293. source: "./media/characters/maksio/front.svg",
  25294. extra: 1549 / 1531,
  25295. bottom: 123.7 / 1674.5429
  25296. }
  25297. },
  25298. back: {
  25299. height: math.unit(1.5, "meters"),
  25300. weight: math.unit(100, "lb"),
  25301. name: "Back",
  25302. image: {
  25303. source: "./media/characters/maksio/back.svg",
  25304. extra: 1541 / 1509,
  25305. bottom: 97 / 1639
  25306. }
  25307. },
  25308. hand: {
  25309. height: math.unit(0.621, "feet"),
  25310. name: "Hand",
  25311. image: {
  25312. source: "./media/characters/maksio/hand.svg"
  25313. }
  25314. },
  25315. foot: {
  25316. height: math.unit(1.611, "feet"),
  25317. name: "Foot",
  25318. image: {
  25319. source: "./media/characters/maksio/foot.svg"
  25320. }
  25321. },
  25322. },
  25323. [
  25324. {
  25325. name: "Shrunken",
  25326. height: math.unit(10, "cm")
  25327. },
  25328. {
  25329. name: "Normal",
  25330. height: math.unit(150, "cm"),
  25331. default: true
  25332. },
  25333. ]
  25334. ))
  25335. characterMakers.push(() => makeCharacter(
  25336. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25337. {
  25338. front: {
  25339. height: math.unit(100, "feet"),
  25340. name: "Front",
  25341. image: {
  25342. source: "./media/characters/erza-bear/front.svg",
  25343. extra: 2449 / 2390,
  25344. bottom: 46 / 2494
  25345. }
  25346. },
  25347. back: {
  25348. height: math.unit(100, "feet"),
  25349. name: "Back",
  25350. image: {
  25351. source: "./media/characters/erza-bear/back.svg",
  25352. extra: 2489 / 2430,
  25353. bottom: 85.4 / 2480
  25354. }
  25355. },
  25356. tail: {
  25357. height: math.unit(42, "feet"),
  25358. name: "Tail",
  25359. image: {
  25360. source: "./media/characters/erza-bear/tail.svg"
  25361. }
  25362. },
  25363. tongue: {
  25364. height: math.unit(8, "feet"),
  25365. name: "Tongue",
  25366. image: {
  25367. source: "./media/characters/erza-bear/tongue.svg"
  25368. }
  25369. },
  25370. dick: {
  25371. height: math.unit(10.5, "feet"),
  25372. name: "Dick",
  25373. image: {
  25374. source: "./media/characters/erza-bear/dick.svg"
  25375. }
  25376. },
  25377. dickVertical: {
  25378. height: math.unit(16.9, "feet"),
  25379. name: "Dick (Vertical)",
  25380. image: {
  25381. source: "./media/characters/erza-bear/dick-vertical.svg"
  25382. }
  25383. },
  25384. },
  25385. [
  25386. {
  25387. name: "Macro",
  25388. height: math.unit(100, "feet"),
  25389. default: true
  25390. },
  25391. ]
  25392. ))
  25393. characterMakers.push(() => makeCharacter(
  25394. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25395. {
  25396. front: {
  25397. height: math.unit(172, "cm"),
  25398. weight: math.unit(73, "kg"),
  25399. name: "Front",
  25400. image: {
  25401. source: "./media/characters/violet-flor/front.svg",
  25402. extra: 1530 / 1442,
  25403. bottom: 61.9 / 1588.8
  25404. }
  25405. },
  25406. back: {
  25407. height: math.unit(180, "cm"),
  25408. weight: math.unit(73, "kg"),
  25409. name: "Back",
  25410. image: {
  25411. source: "./media/characters/violet-flor/back.svg",
  25412. extra: 1692 / 1630,
  25413. bottom: 20 / 1712
  25414. }
  25415. },
  25416. },
  25417. [
  25418. {
  25419. name: "Normal",
  25420. height: math.unit(172, "cm"),
  25421. default: true
  25422. },
  25423. ]
  25424. ))
  25425. characterMakers.push(() => makeCharacter(
  25426. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25427. {
  25428. front: {
  25429. height: math.unit(6, "feet"),
  25430. weight: math.unit(220, "lb"),
  25431. name: "Front",
  25432. image: {
  25433. source: "./media/characters/lynn-rhea/front.svg",
  25434. extra: 310 / 273
  25435. }
  25436. },
  25437. back: {
  25438. height: math.unit(6, "feet"),
  25439. weight: math.unit(220, "lb"),
  25440. name: "Back",
  25441. image: {
  25442. source: "./media/characters/lynn-rhea/back.svg",
  25443. extra: 310 / 273
  25444. }
  25445. },
  25446. dicks: {
  25447. height: math.unit(0.9, "feet"),
  25448. name: "Dicks",
  25449. image: {
  25450. source: "./media/characters/lynn-rhea/dicks.svg"
  25451. }
  25452. },
  25453. slit: {
  25454. height: math.unit(0.4, "feet"),
  25455. name: "Slit",
  25456. image: {
  25457. source: "./media/characters/lynn-rhea/slit.svg"
  25458. }
  25459. },
  25460. },
  25461. [
  25462. {
  25463. name: "Micro",
  25464. height: math.unit(1, "inch")
  25465. },
  25466. {
  25467. name: "Macro",
  25468. height: math.unit(60, "feet"),
  25469. default: true
  25470. },
  25471. {
  25472. name: "Megamacro",
  25473. height: math.unit(2, "miles")
  25474. },
  25475. {
  25476. name: "Gigamacro",
  25477. height: math.unit(3, "earths")
  25478. },
  25479. {
  25480. name: "Galactic",
  25481. height: math.unit(0.8, "galaxies")
  25482. },
  25483. ]
  25484. ))
  25485. characterMakers.push(() => makeCharacter(
  25486. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25487. {
  25488. front: {
  25489. height: math.unit(1600, "feet"),
  25490. weight: math.unit(85758785169, "kg"),
  25491. name: "Front",
  25492. image: {
  25493. source: "./media/characters/valathos/front.svg",
  25494. extra: 1451 / 1339
  25495. }
  25496. },
  25497. },
  25498. [
  25499. {
  25500. name: "Macro",
  25501. height: math.unit(1600, "feet"),
  25502. default: true
  25503. },
  25504. ]
  25505. ))
  25506. characterMakers.push(() => makeCharacter(
  25507. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25508. {
  25509. front: {
  25510. height: math.unit(7 + 5 / 12, "feet"),
  25511. weight: math.unit(300, "lb"),
  25512. name: "Front",
  25513. image: {
  25514. source: "./media/characters/azula/front.svg",
  25515. extra: 3208 / 2880,
  25516. bottom: 80.2 / 3277
  25517. }
  25518. },
  25519. back: {
  25520. height: math.unit(7 + 5 / 12, "feet"),
  25521. weight: math.unit(300, "lb"),
  25522. name: "Back",
  25523. image: {
  25524. source: "./media/characters/azula/back.svg",
  25525. extra: 3169 / 2822,
  25526. bottom: 150.6 / 3321
  25527. }
  25528. },
  25529. },
  25530. [
  25531. {
  25532. name: "Normal",
  25533. height: math.unit(7 + 5 / 12, "feet"),
  25534. default: true
  25535. },
  25536. {
  25537. name: "Big",
  25538. height: math.unit(20, "feet")
  25539. },
  25540. ]
  25541. ))
  25542. characterMakers.push(() => makeCharacter(
  25543. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25544. {
  25545. front: {
  25546. height: math.unit(5 + 1 / 12, "feet"),
  25547. weight: math.unit(110, "lb"),
  25548. name: "Front",
  25549. image: {
  25550. source: "./media/characters/rupert/front.svg",
  25551. extra: 1549 / 1495,
  25552. bottom: 54.2 / 1604.4
  25553. }
  25554. },
  25555. },
  25556. [
  25557. {
  25558. name: "Normal",
  25559. height: math.unit(5 + 1 / 12, "feet"),
  25560. default: true
  25561. },
  25562. ]
  25563. ))
  25564. characterMakers.push(() => makeCharacter(
  25565. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25566. {
  25567. front: {
  25568. height: math.unit(8 + 4 / 12, "feet"),
  25569. weight: math.unit(350, "lb"),
  25570. name: "Front",
  25571. image: {
  25572. source: "./media/characters/sheera-castellar/front.svg",
  25573. extra: 1957 / 1894,
  25574. bottom: 26.97 / 1975.017
  25575. }
  25576. },
  25577. side: {
  25578. height: math.unit(8 + 4 / 12, "feet"),
  25579. weight: math.unit(350, "lb"),
  25580. name: "Side",
  25581. image: {
  25582. source: "./media/characters/sheera-castellar/side.svg",
  25583. extra: 1957 / 1894
  25584. }
  25585. },
  25586. back: {
  25587. height: math.unit(8 + 4 / 12, "feet"),
  25588. weight: math.unit(350, "lb"),
  25589. name: "Back",
  25590. image: {
  25591. source: "./media/characters/sheera-castellar/back.svg",
  25592. extra: 1957 / 1894
  25593. }
  25594. },
  25595. angled: {
  25596. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25597. weight: math.unit(350, "lb"),
  25598. name: "Angled",
  25599. image: {
  25600. source: "./media/characters/sheera-castellar/angled.svg",
  25601. extra: 1807 / 1707,
  25602. bottom: 68 / 1875
  25603. }
  25604. },
  25605. genitals: {
  25606. height: math.unit(2.2, "feet"),
  25607. name: "Genitals",
  25608. image: {
  25609. source: "./media/characters/sheera-castellar/genitals.svg"
  25610. }
  25611. },
  25612. taur: {
  25613. height: math.unit(10 + 6/12, "feet"),
  25614. name: "Taur",
  25615. image: {
  25616. source: "./media/characters/sheera-castellar/taur.svg",
  25617. extra: 2017/1909,
  25618. bottom: 185/2202
  25619. }
  25620. },
  25621. },
  25622. [
  25623. {
  25624. name: "Normal",
  25625. height: math.unit(8 + 4 / 12, "feet")
  25626. },
  25627. {
  25628. name: "Macro",
  25629. height: math.unit(150, "feet"),
  25630. default: true
  25631. },
  25632. {
  25633. name: "Macro+",
  25634. height: math.unit(800, "feet")
  25635. },
  25636. ]
  25637. ))
  25638. characterMakers.push(() => makeCharacter(
  25639. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25640. {
  25641. front: {
  25642. height: math.unit(6, "feet"),
  25643. weight: math.unit(150, "lb"),
  25644. name: "Front",
  25645. image: {
  25646. source: "./media/characters/jaipur/front.svg",
  25647. extra: 3860 / 3731,
  25648. bottom: 287 / 4140
  25649. }
  25650. },
  25651. back: {
  25652. height: math.unit(6, "feet"),
  25653. weight: math.unit(150, "lb"),
  25654. name: "Back",
  25655. image: {
  25656. source: "./media/characters/jaipur/back.svg",
  25657. extra: 1637/1561,
  25658. bottom: 154/1791
  25659. }
  25660. },
  25661. },
  25662. [
  25663. {
  25664. name: "Normal",
  25665. height: math.unit(1.85, "meters"),
  25666. default: true
  25667. },
  25668. {
  25669. name: "Macro",
  25670. height: math.unit(150, "meters")
  25671. },
  25672. {
  25673. name: "Macro+",
  25674. height: math.unit(0.5, "miles")
  25675. },
  25676. {
  25677. name: "Macro++",
  25678. height: math.unit(2.5, "miles")
  25679. },
  25680. {
  25681. name: "Macro+++",
  25682. height: math.unit(12, "miles")
  25683. },
  25684. {
  25685. name: "Macro++++",
  25686. height: math.unit(120, "miles")
  25687. },
  25688. {
  25689. name: "Macro+++++",
  25690. height: math.unit(1200, "miles")
  25691. },
  25692. ]
  25693. ))
  25694. characterMakers.push(() => makeCharacter(
  25695. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25696. {
  25697. front: {
  25698. height: math.unit(6, "feet"),
  25699. weight: math.unit(150, "lb"),
  25700. name: "Front",
  25701. image: {
  25702. source: "./media/characters/sheila-wolf/front.svg",
  25703. extra: 1931 / 1808,
  25704. bottom: 29.5 / 1960
  25705. }
  25706. },
  25707. dick: {
  25708. height: math.unit(1.464, "feet"),
  25709. name: "Dick",
  25710. image: {
  25711. source: "./media/characters/sheila-wolf/dick.svg"
  25712. }
  25713. },
  25714. muzzle: {
  25715. height: math.unit(0.513, "feet"),
  25716. name: "Muzzle",
  25717. image: {
  25718. source: "./media/characters/sheila-wolf/muzzle.svg"
  25719. }
  25720. },
  25721. },
  25722. [
  25723. {
  25724. name: "Macro",
  25725. height: math.unit(70, "feet"),
  25726. default: true
  25727. },
  25728. ]
  25729. ))
  25730. characterMakers.push(() => makeCharacter(
  25731. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25732. {
  25733. front: {
  25734. height: math.unit(32, "meters"),
  25735. weight: math.unit(300000, "kg"),
  25736. name: "Front",
  25737. image: {
  25738. source: "./media/characters/almor/front.svg",
  25739. extra: 1408 / 1322,
  25740. bottom: 94.6 / 1506.5
  25741. }
  25742. },
  25743. },
  25744. [
  25745. {
  25746. name: "Macro",
  25747. height: math.unit(32, "meters"),
  25748. default: true
  25749. },
  25750. ]
  25751. ))
  25752. characterMakers.push(() => makeCharacter(
  25753. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25754. {
  25755. front: {
  25756. height: math.unit(7, "feet"),
  25757. weight: math.unit(200, "lb"),
  25758. name: "Front",
  25759. image: {
  25760. source: "./media/characters/silver/front.svg",
  25761. extra: 472.1 / 450.5,
  25762. bottom: 26.5 / 499.424
  25763. }
  25764. },
  25765. },
  25766. [
  25767. {
  25768. name: "Normal",
  25769. height: math.unit(7, "feet"),
  25770. default: true
  25771. },
  25772. {
  25773. name: "Macro",
  25774. height: math.unit(800, "feet")
  25775. },
  25776. {
  25777. name: "Megamacro",
  25778. height: math.unit(250, "miles")
  25779. },
  25780. ]
  25781. ))
  25782. characterMakers.push(() => makeCharacter(
  25783. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25784. {
  25785. front: {
  25786. height: math.unit(6, "feet"),
  25787. weight: math.unit(150, "lb"),
  25788. name: "Front",
  25789. image: {
  25790. source: "./media/characters/pliskin/front.svg",
  25791. extra: 1469 / 1359,
  25792. bottom: 70 / 1540
  25793. }
  25794. },
  25795. },
  25796. [
  25797. {
  25798. name: "Micro",
  25799. height: math.unit(3, "inches")
  25800. },
  25801. {
  25802. name: "Normal",
  25803. height: math.unit(5 + 11 / 12, "feet"),
  25804. default: true
  25805. },
  25806. {
  25807. name: "Macro",
  25808. height: math.unit(120, "feet")
  25809. },
  25810. ]
  25811. ))
  25812. characterMakers.push(() => makeCharacter(
  25813. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25814. {
  25815. front: {
  25816. height: math.unit(6, "feet"),
  25817. weight: math.unit(150, "lb"),
  25818. name: "Front",
  25819. image: {
  25820. source: "./media/characters/sammy/front.svg",
  25821. extra: 1193 / 1089,
  25822. bottom: 30.5 / 1226
  25823. }
  25824. },
  25825. },
  25826. [
  25827. {
  25828. name: "Macro",
  25829. height: math.unit(1700, "feet"),
  25830. default: true
  25831. },
  25832. {
  25833. name: "Examacro",
  25834. height: math.unit(2.5e9, "lightyears")
  25835. },
  25836. ]
  25837. ))
  25838. characterMakers.push(() => makeCharacter(
  25839. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25840. {
  25841. front: {
  25842. height: math.unit(21, "meters"),
  25843. weight: math.unit(12, "tonnes"),
  25844. name: "Front",
  25845. image: {
  25846. source: "./media/characters/kuru/front.svg",
  25847. extra: 4301 / 3785,
  25848. bottom: 371.3 / 4691
  25849. }
  25850. },
  25851. },
  25852. [
  25853. {
  25854. name: "Macro",
  25855. height: math.unit(21, "meters"),
  25856. default: true
  25857. },
  25858. ]
  25859. ))
  25860. characterMakers.push(() => makeCharacter(
  25861. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25862. {
  25863. front: {
  25864. height: math.unit(23, "meters"),
  25865. weight: math.unit(12.2, "tonnes"),
  25866. name: "Front",
  25867. image: {
  25868. source: "./media/characters/rakka/front.svg",
  25869. extra: 4670 / 4169,
  25870. bottom: 301 / 4968.7
  25871. }
  25872. },
  25873. },
  25874. [
  25875. {
  25876. name: "Macro",
  25877. height: math.unit(23, "meters"),
  25878. default: true
  25879. },
  25880. ]
  25881. ))
  25882. characterMakers.push(() => makeCharacter(
  25883. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25884. {
  25885. front: {
  25886. height: math.unit(6, "feet"),
  25887. weight: math.unit(150, "lb"),
  25888. name: "Front",
  25889. image: {
  25890. source: "./media/characters/rhys-feline/front.svg",
  25891. extra: 2488 / 2308,
  25892. bottom: 35.67 / 2519.19
  25893. }
  25894. },
  25895. },
  25896. [
  25897. {
  25898. name: "Really Small",
  25899. height: math.unit(1, "nm")
  25900. },
  25901. {
  25902. name: "Micro",
  25903. height: math.unit(4, "inches")
  25904. },
  25905. {
  25906. name: "Normal",
  25907. height: math.unit(4 + 10 / 12, "feet"),
  25908. default: true
  25909. },
  25910. {
  25911. name: "Macro",
  25912. height: math.unit(100, "feet")
  25913. },
  25914. {
  25915. name: "Megamacto",
  25916. height: math.unit(50, "miles")
  25917. },
  25918. ]
  25919. ))
  25920. characterMakers.push(() => makeCharacter(
  25921. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  25922. {
  25923. side: {
  25924. height: math.unit(30, "feet"),
  25925. weight: math.unit(35000, "kg"),
  25926. name: "Side",
  25927. image: {
  25928. source: "./media/characters/alydar/side.svg",
  25929. extra: 234 / 222,
  25930. bottom: 6.5 / 241
  25931. }
  25932. },
  25933. front: {
  25934. height: math.unit(30, "feet"),
  25935. weight: math.unit(35000, "kg"),
  25936. name: "Front",
  25937. image: {
  25938. source: "./media/characters/alydar/front.svg",
  25939. extra: 223.37 / 210.2,
  25940. bottom: 22.3 / 246.76
  25941. }
  25942. },
  25943. top: {
  25944. height: math.unit(64.54, "feet"),
  25945. weight: math.unit(35000, "kg"),
  25946. name: "Top",
  25947. image: {
  25948. source: "./media/characters/alydar/top.svg"
  25949. }
  25950. },
  25951. anthro: {
  25952. height: math.unit(30, "feet"),
  25953. weight: math.unit(9000, "kg"),
  25954. name: "Anthro",
  25955. image: {
  25956. source: "./media/characters/alydar/anthro.svg",
  25957. extra: 432 / 421,
  25958. bottom: 7.18 / 440
  25959. }
  25960. },
  25961. maw: {
  25962. height: math.unit(11.693, "feet"),
  25963. name: "Maw",
  25964. image: {
  25965. source: "./media/characters/alydar/maw.svg"
  25966. }
  25967. },
  25968. head: {
  25969. height: math.unit(11.693, "feet"),
  25970. name: "Head",
  25971. image: {
  25972. source: "./media/characters/alydar/head.svg"
  25973. }
  25974. },
  25975. headAlt: {
  25976. height: math.unit(12.861, "feet"),
  25977. name: "Head (Alt)",
  25978. image: {
  25979. source: "./media/characters/alydar/head-alt.svg"
  25980. }
  25981. },
  25982. wing: {
  25983. height: math.unit(20.712, "feet"),
  25984. name: "Wing",
  25985. image: {
  25986. source: "./media/characters/alydar/wing.svg"
  25987. }
  25988. },
  25989. wingFeather: {
  25990. height: math.unit(9.662, "feet"),
  25991. name: "Wing Feather",
  25992. image: {
  25993. source: "./media/characters/alydar/wing-feather.svg"
  25994. }
  25995. },
  25996. countourFeather: {
  25997. height: math.unit(4.154, "feet"),
  25998. name: "Contour Feather",
  25999. image: {
  26000. source: "./media/characters/alydar/contour-feather.svg"
  26001. }
  26002. },
  26003. },
  26004. [
  26005. {
  26006. name: "Diplomatic",
  26007. height: math.unit(13, "feet"),
  26008. default: true
  26009. },
  26010. {
  26011. name: "Small",
  26012. height: math.unit(30, "feet")
  26013. },
  26014. {
  26015. name: "Normal",
  26016. height: math.unit(95, "feet"),
  26017. default: true
  26018. },
  26019. {
  26020. name: "Large",
  26021. height: math.unit(285, "feet")
  26022. },
  26023. {
  26024. name: "Incomprehensible",
  26025. height: math.unit(450, "megameters")
  26026. },
  26027. ]
  26028. ))
  26029. characterMakers.push(() => makeCharacter(
  26030. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26031. {
  26032. side: {
  26033. height: math.unit(11, "feet"),
  26034. weight: math.unit(1750, "kg"),
  26035. name: "Side",
  26036. image: {
  26037. source: "./media/characters/selicia/side.svg",
  26038. extra: 440 / 396,
  26039. bottom: 24.8 / 465.979
  26040. }
  26041. },
  26042. maw: {
  26043. height: math.unit(4.665, "feet"),
  26044. name: "Maw",
  26045. image: {
  26046. source: "./media/characters/selicia/maw.svg"
  26047. }
  26048. },
  26049. },
  26050. [
  26051. {
  26052. name: "Normal",
  26053. height: math.unit(11, "feet"),
  26054. default: true
  26055. },
  26056. ]
  26057. ))
  26058. characterMakers.push(() => makeCharacter(
  26059. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26060. {
  26061. side: {
  26062. height: math.unit(2 + 6 / 12, "feet"),
  26063. weight: math.unit(30, "lb"),
  26064. name: "Side",
  26065. image: {
  26066. source: "./media/characters/layla/side.svg",
  26067. extra: 244 / 188,
  26068. bottom: 18.2 / 262.1
  26069. }
  26070. },
  26071. back: {
  26072. height: math.unit(2 + 6 / 12, "feet"),
  26073. weight: math.unit(30, "lb"),
  26074. name: "Back",
  26075. image: {
  26076. source: "./media/characters/layla/back.svg",
  26077. extra: 308 / 241.5,
  26078. bottom: 8.9 / 316.8
  26079. }
  26080. },
  26081. cumming: {
  26082. height: math.unit(2 + 6 / 12, "feet"),
  26083. weight: math.unit(30, "lb"),
  26084. name: "Cumming",
  26085. image: {
  26086. source: "./media/characters/layla/cumming.svg",
  26087. extra: 342 / 279,
  26088. bottom: 595 / 938
  26089. }
  26090. },
  26091. dickFlaccid: {
  26092. height: math.unit(2.595, "feet"),
  26093. name: "Flaccid Genitals",
  26094. image: {
  26095. source: "./media/characters/layla/dick-flaccid.svg"
  26096. }
  26097. },
  26098. dickErect: {
  26099. height: math.unit(2.359, "feet"),
  26100. name: "Erect Genitals",
  26101. image: {
  26102. source: "./media/characters/layla/dick-erect.svg"
  26103. }
  26104. },
  26105. dragon: {
  26106. height: math.unit(40, "feet"),
  26107. name: "Dragon",
  26108. image: {
  26109. source: "./media/characters/layla/dragon.svg",
  26110. extra: 610/535,
  26111. bottom: 367/977
  26112. }
  26113. },
  26114. taur: {
  26115. height: math.unit(30, "feet"),
  26116. name: "Taur",
  26117. image: {
  26118. source: "./media/characters/layla/taur.svg",
  26119. extra: 1268/1199,
  26120. bottom: 112/1380
  26121. }
  26122. },
  26123. },
  26124. [
  26125. {
  26126. name: "Micro",
  26127. height: math.unit(1, "inch")
  26128. },
  26129. {
  26130. name: "Small",
  26131. height: math.unit(1, "foot")
  26132. },
  26133. {
  26134. name: "Normal",
  26135. height: math.unit(2 + 6 / 12, "feet"),
  26136. default: true
  26137. },
  26138. {
  26139. name: "Macro",
  26140. height: math.unit(200, "feet")
  26141. },
  26142. {
  26143. name: "Megamacro",
  26144. height: math.unit(1000, "miles")
  26145. },
  26146. {
  26147. name: "Planetary",
  26148. height: math.unit(8000, "miles")
  26149. },
  26150. {
  26151. name: "True Layla",
  26152. height: math.unit(200000 * 7, "multiverses")
  26153. },
  26154. ]
  26155. ))
  26156. characterMakers.push(() => makeCharacter(
  26157. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26158. {
  26159. back: {
  26160. height: math.unit(10.5, "feet"),
  26161. weight: math.unit(800, "lb"),
  26162. name: "Back",
  26163. image: {
  26164. source: "./media/characters/knox/back.svg",
  26165. extra: 1486 / 1089,
  26166. bottom: 107 / 1601.4
  26167. }
  26168. },
  26169. side: {
  26170. height: math.unit(10.5, "feet"),
  26171. weight: math.unit(800, "lb"),
  26172. name: "Side",
  26173. image: {
  26174. source: "./media/characters/knox/side.svg",
  26175. extra: 244 / 218,
  26176. bottom: 14 / 260
  26177. }
  26178. },
  26179. },
  26180. [
  26181. {
  26182. name: "Compact",
  26183. height: math.unit(10.5, "feet"),
  26184. default: true
  26185. },
  26186. {
  26187. name: "Dynamax",
  26188. height: math.unit(210, "feet")
  26189. },
  26190. {
  26191. name: "Full Macro",
  26192. height: math.unit(850, "feet")
  26193. },
  26194. ]
  26195. ))
  26196. characterMakers.push(() => makeCharacter(
  26197. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26198. {
  26199. front: {
  26200. height: math.unit(28, "feet"),
  26201. weight: math.unit(10500, "lb"),
  26202. name: "Front",
  26203. image: {
  26204. source: "./media/characters/kayda/front.svg",
  26205. extra: 1536 / 1428,
  26206. bottom: 68.7 / 1603
  26207. }
  26208. },
  26209. back: {
  26210. height: math.unit(28, "feet"),
  26211. weight: math.unit(10500, "lb"),
  26212. name: "Back",
  26213. image: {
  26214. source: "./media/characters/kayda/back.svg",
  26215. extra: 1557 / 1464,
  26216. bottom: 39.5 / 1597.49
  26217. }
  26218. },
  26219. dick: {
  26220. height: math.unit(3.858, "feet"),
  26221. name: "Dick",
  26222. image: {
  26223. source: "./media/characters/kayda/dick.svg"
  26224. }
  26225. },
  26226. },
  26227. [
  26228. {
  26229. name: "Macro",
  26230. height: math.unit(28, "feet"),
  26231. default: true
  26232. },
  26233. ]
  26234. ))
  26235. characterMakers.push(() => makeCharacter(
  26236. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26237. {
  26238. front: {
  26239. height: math.unit(10 + 11 / 12, "feet"),
  26240. weight: math.unit(1400, "lb"),
  26241. name: "Front",
  26242. image: {
  26243. source: "./media/characters/brian/front.svg",
  26244. extra: 737 / 692,
  26245. bottom: 55.4 / 785
  26246. }
  26247. },
  26248. },
  26249. [
  26250. {
  26251. name: "Normal",
  26252. height: math.unit(10 + 11 / 12, "feet"),
  26253. default: true
  26254. },
  26255. ]
  26256. ))
  26257. characterMakers.push(() => makeCharacter(
  26258. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26259. {
  26260. front: {
  26261. height: math.unit(5 + 8 / 12, "feet"),
  26262. weight: math.unit(140, "lb"),
  26263. name: "Front",
  26264. image: {
  26265. source: "./media/characters/khemri/front.svg",
  26266. extra: 4780 / 4059,
  26267. bottom: 80.1 / 4859.25
  26268. }
  26269. },
  26270. },
  26271. [
  26272. {
  26273. name: "Micro",
  26274. height: math.unit(6, "inches")
  26275. },
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(5 + 8 / 12, "feet"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26285. {
  26286. front: {
  26287. height: math.unit(13, "feet"),
  26288. weight: math.unit(1700, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/felix-braveheart/front.svg",
  26292. extra: 1222 / 1157,
  26293. bottom: 53.2 / 1280
  26294. }
  26295. },
  26296. back: {
  26297. height: math.unit(13, "feet"),
  26298. weight: math.unit(1700, "lb"),
  26299. name: "Back",
  26300. image: {
  26301. source: "./media/characters/felix-braveheart/back.svg",
  26302. extra: 1277 / 1203,
  26303. bottom: 50.2 / 1327
  26304. }
  26305. },
  26306. feral: {
  26307. height: math.unit(6, "feet"),
  26308. weight: math.unit(400, "lb"),
  26309. name: "Feral",
  26310. image: {
  26311. source: "./media/characters/felix-braveheart/feral.svg",
  26312. extra: 682 / 625,
  26313. bottom: 6.9 / 688
  26314. }
  26315. },
  26316. },
  26317. [
  26318. {
  26319. name: "Normal",
  26320. height: math.unit(13, "feet"),
  26321. default: true
  26322. },
  26323. ]
  26324. ))
  26325. characterMakers.push(() => makeCharacter(
  26326. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26327. {
  26328. side: {
  26329. height: math.unit(5 + 11 / 12, "feet"),
  26330. weight: math.unit(1400, "lb"),
  26331. name: "Side",
  26332. image: {
  26333. source: "./media/characters/shadow-blade/side.svg",
  26334. extra: 1726 / 1267,
  26335. bottom: 58.4 / 1785
  26336. }
  26337. },
  26338. },
  26339. [
  26340. {
  26341. name: "Normal",
  26342. height: math.unit(5 + 11 / 12, "feet"),
  26343. default: true
  26344. },
  26345. ]
  26346. ))
  26347. characterMakers.push(() => makeCharacter(
  26348. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26349. {
  26350. front: {
  26351. height: math.unit(1 + 6 / 12, "feet"),
  26352. weight: math.unit(25, "lb"),
  26353. name: "Front",
  26354. image: {
  26355. source: "./media/characters/karla-halldor/front.svg",
  26356. extra: 1459 / 1383,
  26357. bottom: 12 / 1472
  26358. }
  26359. },
  26360. },
  26361. [
  26362. {
  26363. name: "Normal",
  26364. height: math.unit(1 + 6 / 12, "feet"),
  26365. default: true
  26366. },
  26367. ]
  26368. ))
  26369. characterMakers.push(() => makeCharacter(
  26370. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26371. {
  26372. front: {
  26373. height: math.unit(6 + 2 / 12, "feet"),
  26374. weight: math.unit(160, "lb"),
  26375. name: "Front",
  26376. image: {
  26377. source: "./media/characters/ariam/front.svg",
  26378. extra: 1073/976,
  26379. bottom: 52/1125
  26380. }
  26381. },
  26382. back: {
  26383. height: math.unit(6 + 2/12, "feet"),
  26384. weight: math.unit(160, "lb"),
  26385. name: "Back",
  26386. image: {
  26387. source: "./media/characters/ariam/back.svg",
  26388. extra: 1103/1023,
  26389. bottom: 9/1112
  26390. }
  26391. },
  26392. dressed: {
  26393. height: math.unit(6 + 2/12, "feet"),
  26394. weight: math.unit(160, "lb"),
  26395. name: "Dressed",
  26396. image: {
  26397. source: "./media/characters/ariam/dressed.svg",
  26398. extra: 1099/1009,
  26399. bottom: 25/1124
  26400. }
  26401. },
  26402. squatting: {
  26403. height: math.unit(4.1, "feet"),
  26404. weight: math.unit(160, "lb"),
  26405. name: "Squatting",
  26406. image: {
  26407. source: "./media/characters/ariam/squatting.svg",
  26408. extra: 2617 / 2112,
  26409. bottom: 61.2 / 2681,
  26410. }
  26411. },
  26412. },
  26413. [
  26414. {
  26415. name: "Normal",
  26416. height: math.unit(6 + 2 / 12, "feet"),
  26417. default: true
  26418. },
  26419. {
  26420. name: "Normal+",
  26421. height: math.unit(4, "meters")
  26422. },
  26423. {
  26424. name: "Macro",
  26425. height: math.unit(50, "meters")
  26426. },
  26427. {
  26428. name: "Macro+",
  26429. height: math.unit(100, "meters")
  26430. },
  26431. {
  26432. name: "Megamacro",
  26433. height: math.unit(20, "km")
  26434. },
  26435. {
  26436. name: "Caretaker",
  26437. height: math.unit(444, "megameters")
  26438. },
  26439. ]
  26440. ))
  26441. characterMakers.push(() => makeCharacter(
  26442. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26443. {
  26444. front: {
  26445. height: math.unit(1.67, "meters"),
  26446. weight: math.unit(140, "lb"),
  26447. name: "Front",
  26448. image: {
  26449. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26450. extra: 438 / 410,
  26451. bottom: 0.75 / 439
  26452. }
  26453. },
  26454. },
  26455. [
  26456. {
  26457. name: "Shrunken",
  26458. height: math.unit(7.6, "cm")
  26459. },
  26460. {
  26461. name: "Human Scale",
  26462. height: math.unit(1.67, "meters")
  26463. },
  26464. {
  26465. name: "Wolxi Scale",
  26466. height: math.unit(36.7, "meters"),
  26467. default: true
  26468. },
  26469. ]
  26470. ))
  26471. characterMakers.push(() => makeCharacter(
  26472. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26473. {
  26474. front: {
  26475. height: math.unit(1.73, "meters"),
  26476. weight: math.unit(240, "lb"),
  26477. name: "Front",
  26478. image: {
  26479. source: "./media/characters/izue-two-mothers/front.svg",
  26480. extra: 469 / 437,
  26481. bottom: 1.24 / 470.6
  26482. }
  26483. },
  26484. },
  26485. [
  26486. {
  26487. name: "Shrunken",
  26488. height: math.unit(7.86, "cm")
  26489. },
  26490. {
  26491. name: "Human Scale",
  26492. height: math.unit(1.73, "meters")
  26493. },
  26494. {
  26495. name: "Wolxi Scale",
  26496. height: math.unit(38, "meters"),
  26497. default: true
  26498. },
  26499. ]
  26500. ))
  26501. characterMakers.push(() => makeCharacter(
  26502. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26503. {
  26504. front: {
  26505. height: math.unit(1.55, "meters"),
  26506. weight: math.unit(120, "lb"),
  26507. name: "Front",
  26508. image: {
  26509. source: "./media/characters/teeku-love-shack/front.svg",
  26510. extra: 387 / 362,
  26511. bottom: 1.51 / 388
  26512. }
  26513. },
  26514. },
  26515. [
  26516. {
  26517. name: "Shrunken",
  26518. height: math.unit(7, "cm")
  26519. },
  26520. {
  26521. name: "Human Scale",
  26522. height: math.unit(1.55, "meters")
  26523. },
  26524. {
  26525. name: "Wolxi Scale",
  26526. height: math.unit(34.1, "meters"),
  26527. default: true
  26528. },
  26529. ]
  26530. ))
  26531. characterMakers.push(() => makeCharacter(
  26532. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26533. {
  26534. front: {
  26535. height: math.unit(1.83, "meters"),
  26536. weight: math.unit(135, "lb"),
  26537. name: "Front",
  26538. image: {
  26539. source: "./media/characters/dejma-the-red/front.svg",
  26540. extra: 480 / 458,
  26541. bottom: 1.8 / 482
  26542. }
  26543. },
  26544. },
  26545. [
  26546. {
  26547. name: "Shrunken",
  26548. height: math.unit(8.3, "cm")
  26549. },
  26550. {
  26551. name: "Human Scale",
  26552. height: math.unit(1.83, "meters")
  26553. },
  26554. {
  26555. name: "Wolxi Scale",
  26556. height: math.unit(40, "meters"),
  26557. default: true
  26558. },
  26559. ]
  26560. ))
  26561. characterMakers.push(() => makeCharacter(
  26562. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26563. {
  26564. front: {
  26565. height: math.unit(1.78, "meters"),
  26566. weight: math.unit(65, "kg"),
  26567. name: "Front",
  26568. image: {
  26569. source: "./media/characters/aki/front.svg",
  26570. extra: 452 / 415
  26571. }
  26572. },
  26573. frontNsfw: {
  26574. height: math.unit(1.78, "meters"),
  26575. weight: math.unit(65, "kg"),
  26576. name: "Front (NSFW)",
  26577. image: {
  26578. source: "./media/characters/aki/front-nsfw.svg",
  26579. extra: 452 / 415
  26580. }
  26581. },
  26582. back: {
  26583. height: math.unit(1.78, "meters"),
  26584. weight: math.unit(65, "kg"),
  26585. name: "Back",
  26586. image: {
  26587. source: "./media/characters/aki/back.svg",
  26588. extra: 452 / 415
  26589. }
  26590. },
  26591. rump: {
  26592. height: math.unit(2.05, "feet"),
  26593. name: "Rump",
  26594. image: {
  26595. source: "./media/characters/aki/rump.svg"
  26596. }
  26597. },
  26598. dick: {
  26599. height: math.unit(0.95, "feet"),
  26600. name: "Dick",
  26601. image: {
  26602. source: "./media/characters/aki/dick.svg"
  26603. }
  26604. },
  26605. },
  26606. [
  26607. {
  26608. name: "Micro",
  26609. height: math.unit(15, "cm")
  26610. },
  26611. {
  26612. name: "Normal",
  26613. height: math.unit(178, "cm"),
  26614. default: true
  26615. },
  26616. {
  26617. name: "Macro",
  26618. height: math.unit(214, "m")
  26619. },
  26620. {
  26621. name: "Macro+",
  26622. height: math.unit(534, "m")
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26628. {
  26629. front: {
  26630. height: math.unit(5 + 5 / 12, "feet"),
  26631. weight: math.unit(120, "lb"),
  26632. name: "Front",
  26633. image: {
  26634. source: "./media/characters/ari/front.svg",
  26635. extra: 1550/1471,
  26636. bottom: 39/1589
  26637. }
  26638. },
  26639. },
  26640. [
  26641. {
  26642. name: "Normal",
  26643. height: math.unit(5 + 5 / 12, "feet")
  26644. },
  26645. {
  26646. name: "Macro",
  26647. height: math.unit(100, "feet"),
  26648. default: true
  26649. },
  26650. {
  26651. name: "Megamacro",
  26652. height: math.unit(100, "miles")
  26653. },
  26654. {
  26655. name: "Gigamacro",
  26656. height: math.unit(80000, "miles")
  26657. },
  26658. ]
  26659. ))
  26660. characterMakers.push(() => makeCharacter(
  26661. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26662. {
  26663. side: {
  26664. height: math.unit(9, "feet"),
  26665. weight: math.unit(400, "kg"),
  26666. name: "Side",
  26667. image: {
  26668. source: "./media/characters/bolt/side.svg",
  26669. extra: 1126 / 896,
  26670. bottom: 60 / 1187.3,
  26671. }
  26672. },
  26673. },
  26674. [
  26675. {
  26676. name: "Micro",
  26677. height: math.unit(5, "inches")
  26678. },
  26679. {
  26680. name: "Normal",
  26681. height: math.unit(9, "feet"),
  26682. default: true
  26683. },
  26684. {
  26685. name: "Macro",
  26686. height: math.unit(700, "feet")
  26687. },
  26688. {
  26689. name: "Max Size",
  26690. height: math.unit(1.52e22, "yottameters")
  26691. },
  26692. ]
  26693. ))
  26694. characterMakers.push(() => makeCharacter(
  26695. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26696. {
  26697. front: {
  26698. height: math.unit(4.3, "meters"),
  26699. weight: math.unit(3, "tons"),
  26700. name: "Front",
  26701. image: {
  26702. source: "./media/characters/draekon-sylviar/front.svg",
  26703. extra: 2072/1512,
  26704. bottom: 74/2146
  26705. }
  26706. },
  26707. back: {
  26708. height: math.unit(4.3, "meters"),
  26709. weight: math.unit(3, "tons"),
  26710. name: "Back",
  26711. image: {
  26712. source: "./media/characters/draekon-sylviar/back.svg",
  26713. extra: 1639/1483,
  26714. bottom: 41/1680
  26715. }
  26716. },
  26717. feral: {
  26718. height: math.unit(1.15, "meters"),
  26719. weight: math.unit(3, "tons"),
  26720. name: "Feral",
  26721. image: {
  26722. source: "./media/characters/draekon-sylviar/feral.svg",
  26723. extra: 1033/395,
  26724. bottom: 130/1163
  26725. }
  26726. },
  26727. maw: {
  26728. height: math.unit(1.3, "meters"),
  26729. name: "Maw",
  26730. image: {
  26731. source: "./media/characters/draekon-sylviar/maw.svg"
  26732. }
  26733. },
  26734. mawSeparated: {
  26735. height: math.unit(1.53, "meters"),
  26736. name: "Separated Maw",
  26737. image: {
  26738. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26739. }
  26740. },
  26741. tail: {
  26742. height: math.unit(1.15, "meters"),
  26743. name: "Tail",
  26744. image: {
  26745. source: "./media/characters/draekon-sylviar/tail.svg"
  26746. }
  26747. },
  26748. tailDick: {
  26749. height: math.unit(1.15, "meters"),
  26750. name: "Tail (Dick)",
  26751. image: {
  26752. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26753. }
  26754. },
  26755. tailDickSeparated: {
  26756. height: math.unit(1.19, "meters"),
  26757. name: "Tail (Separated Dick)",
  26758. image: {
  26759. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26760. }
  26761. },
  26762. slit: {
  26763. height: math.unit(1, "meters"),
  26764. name: "Slit",
  26765. image: {
  26766. source: "./media/characters/draekon-sylviar/slit.svg"
  26767. }
  26768. },
  26769. dick: {
  26770. height: math.unit(1.15, "meters"),
  26771. name: "Dick",
  26772. image: {
  26773. source: "./media/characters/draekon-sylviar/dick.svg"
  26774. }
  26775. },
  26776. dickSeparated: {
  26777. height: math.unit(1.1, "meters"),
  26778. name: "Separated Dick",
  26779. image: {
  26780. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26781. }
  26782. },
  26783. sheath: {
  26784. height: math.unit(1.15, "meters"),
  26785. name: "Sheath",
  26786. image: {
  26787. source: "./media/characters/draekon-sylviar/sheath.svg"
  26788. }
  26789. },
  26790. },
  26791. [
  26792. {
  26793. name: "Small",
  26794. height: math.unit(4.53 / 2, "meters"),
  26795. default: true
  26796. },
  26797. {
  26798. name: "Normal",
  26799. height: math.unit(4.53, "meters"),
  26800. default: true
  26801. },
  26802. {
  26803. name: "Large",
  26804. height: math.unit(4.53 * 2, "meters"),
  26805. },
  26806. ]
  26807. ))
  26808. characterMakers.push(() => makeCharacter(
  26809. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26810. {
  26811. front: {
  26812. height: math.unit(6 + 2 / 12, "feet"),
  26813. weight: math.unit(180, "lb"),
  26814. name: "Front",
  26815. image: {
  26816. source: "./media/characters/brawler/front.svg",
  26817. extra: 3301 / 3027,
  26818. bottom: 138 / 3439
  26819. }
  26820. },
  26821. },
  26822. [
  26823. {
  26824. name: "Normal",
  26825. height: math.unit(6 + 2 / 12, "feet"),
  26826. default: true
  26827. },
  26828. ]
  26829. ))
  26830. characterMakers.push(() => makeCharacter(
  26831. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26832. {
  26833. front: {
  26834. height: math.unit(11, "feet"),
  26835. weight: math.unit(1000, "lb"),
  26836. name: "Front",
  26837. image: {
  26838. source: "./media/characters/alex/front.svg",
  26839. bottom: 44.5 / 620
  26840. }
  26841. },
  26842. },
  26843. [
  26844. {
  26845. name: "Micro",
  26846. height: math.unit(5, "inches")
  26847. },
  26848. {
  26849. name: "Normal",
  26850. height: math.unit(11, "feet"),
  26851. default: true
  26852. },
  26853. {
  26854. name: "Macro",
  26855. height: math.unit(9.5e9, "feet")
  26856. },
  26857. {
  26858. name: "Max Size",
  26859. height: math.unit(1.4e283, "yottameters")
  26860. },
  26861. ]
  26862. ))
  26863. characterMakers.push(() => makeCharacter(
  26864. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26865. {
  26866. female: {
  26867. height: math.unit(29.9, "m"),
  26868. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26869. name: "Female",
  26870. image: {
  26871. source: "./media/characters/zenari/female.svg",
  26872. extra: 3281.6 / 3217,
  26873. bottom: 72.2 / 3353
  26874. }
  26875. },
  26876. male: {
  26877. height: math.unit(27.7, "m"),
  26878. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26879. name: "Male",
  26880. image: {
  26881. source: "./media/characters/zenari/male.svg",
  26882. extra: 3008 / 2991,
  26883. bottom: 54.6 / 3069
  26884. }
  26885. },
  26886. },
  26887. [
  26888. {
  26889. name: "Macro",
  26890. height: math.unit(29.7, "meters"),
  26891. default: true
  26892. },
  26893. ]
  26894. ))
  26895. characterMakers.push(() => makeCharacter(
  26896. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26897. {
  26898. female: {
  26899. height: math.unit(23.8, "m"),
  26900. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26901. name: "Female",
  26902. image: {
  26903. source: "./media/characters/mactarian/female.svg",
  26904. extra: 2662 / 2569,
  26905. bottom: 73 / 2736
  26906. }
  26907. },
  26908. male: {
  26909. height: math.unit(23.8, "m"),
  26910. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26911. name: "Male",
  26912. image: {
  26913. source: "./media/characters/mactarian/male.svg",
  26914. extra: 2673 / 2600,
  26915. bottom: 76 / 2750
  26916. }
  26917. },
  26918. },
  26919. [
  26920. {
  26921. name: "Macro",
  26922. height: math.unit(23.8, "meters"),
  26923. default: true
  26924. },
  26925. ]
  26926. ))
  26927. characterMakers.push(() => makeCharacter(
  26928. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  26929. {
  26930. female: {
  26931. height: math.unit(19.3, "m"),
  26932. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  26933. name: "Female",
  26934. image: {
  26935. source: "./media/characters/umok/female.svg",
  26936. extra: 2186 / 2078,
  26937. bottom: 87 / 2277
  26938. }
  26939. },
  26940. male: {
  26941. height: math.unit(19.5, "m"),
  26942. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  26943. name: "Male",
  26944. image: {
  26945. source: "./media/characters/umok/male.svg",
  26946. extra: 2233 / 2140,
  26947. bottom: 24.4 / 2258
  26948. }
  26949. },
  26950. },
  26951. [
  26952. {
  26953. name: "Macro",
  26954. height: math.unit(19.3, "meters"),
  26955. default: true
  26956. },
  26957. ]
  26958. ))
  26959. characterMakers.push(() => makeCharacter(
  26960. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  26961. {
  26962. female: {
  26963. height: math.unit(26.15, "m"),
  26964. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  26965. name: "Female",
  26966. image: {
  26967. source: "./media/characters/joraxian/female.svg",
  26968. extra: 2912 / 2824,
  26969. bottom: 36 / 2956
  26970. }
  26971. },
  26972. male: {
  26973. height: math.unit(25.4, "m"),
  26974. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  26975. name: "Male",
  26976. image: {
  26977. source: "./media/characters/joraxian/male.svg",
  26978. extra: 2877 / 2721,
  26979. bottom: 82 / 2967
  26980. }
  26981. },
  26982. },
  26983. [
  26984. {
  26985. name: "Macro",
  26986. height: math.unit(26.15, "meters"),
  26987. default: true
  26988. },
  26989. ]
  26990. ))
  26991. characterMakers.push(() => makeCharacter(
  26992. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  26993. {
  26994. female: {
  26995. height: math.unit(21.6, "m"),
  26996. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  26997. name: "Female",
  26998. image: {
  26999. source: "./media/characters/sthara/female.svg",
  27000. extra: 2516 / 2347,
  27001. bottom: 21.5 / 2537
  27002. }
  27003. },
  27004. male: {
  27005. height: math.unit(24, "m"),
  27006. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27007. name: "Male",
  27008. image: {
  27009. source: "./media/characters/sthara/male.svg",
  27010. extra: 2732 / 2607,
  27011. bottom: 23 / 2732
  27012. }
  27013. },
  27014. },
  27015. [
  27016. {
  27017. name: "Macro",
  27018. height: math.unit(21.6, "meters"),
  27019. default: true
  27020. },
  27021. ]
  27022. ))
  27023. characterMakers.push(() => makeCharacter(
  27024. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27025. {
  27026. front: {
  27027. height: math.unit(6 + 4 / 12, "feet"),
  27028. weight: math.unit(175, "lb"),
  27029. name: "Front",
  27030. image: {
  27031. source: "./media/characters/luka-bryzant/front.svg",
  27032. extra: 311 / 289,
  27033. bottom: 4 / 315
  27034. }
  27035. },
  27036. back: {
  27037. height: math.unit(6 + 4 / 12, "feet"),
  27038. weight: math.unit(175, "lb"),
  27039. name: "Back",
  27040. image: {
  27041. source: "./media/characters/luka-bryzant/back.svg",
  27042. extra: 311 / 289,
  27043. bottom: 3.8 / 313.7
  27044. }
  27045. },
  27046. },
  27047. [
  27048. {
  27049. name: "Micro",
  27050. height: math.unit(10, "inches")
  27051. },
  27052. {
  27053. name: "Normal",
  27054. height: math.unit(6 + 4 / 12, "feet"),
  27055. default: true
  27056. },
  27057. {
  27058. name: "Large",
  27059. height: math.unit(12, "feet")
  27060. },
  27061. ]
  27062. ))
  27063. characterMakers.push(() => makeCharacter(
  27064. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27065. {
  27066. front: {
  27067. height: math.unit(5 + 7 / 12, "feet"),
  27068. weight: math.unit(185, "lb"),
  27069. name: "Front",
  27070. image: {
  27071. source: "./media/characters/aman-aquila/front.svg",
  27072. extra: 1013 / 976,
  27073. bottom: 45.6 / 1057
  27074. }
  27075. },
  27076. side: {
  27077. height: math.unit(5 + 7 / 12, "feet"),
  27078. weight: math.unit(185, "lb"),
  27079. name: "Side",
  27080. image: {
  27081. source: "./media/characters/aman-aquila/side.svg",
  27082. extra: 1054 / 1011,
  27083. bottom: 15 / 1070
  27084. }
  27085. },
  27086. back: {
  27087. height: math.unit(5 + 7 / 12, "feet"),
  27088. weight: math.unit(185, "lb"),
  27089. name: "Back",
  27090. image: {
  27091. source: "./media/characters/aman-aquila/back.svg",
  27092. extra: 1026 / 970,
  27093. bottom: 12 / 1039
  27094. }
  27095. },
  27096. head: {
  27097. height: math.unit(1.211, "feet"),
  27098. name: "Head",
  27099. image: {
  27100. source: "./media/characters/aman-aquila/head.svg",
  27101. }
  27102. },
  27103. },
  27104. [
  27105. {
  27106. name: "Minimicro",
  27107. height: math.unit(0.057, "inches")
  27108. },
  27109. {
  27110. name: "Micro",
  27111. height: math.unit(7, "inches")
  27112. },
  27113. {
  27114. name: "Mini",
  27115. height: math.unit(3 + 7 / 12, "feet")
  27116. },
  27117. {
  27118. name: "Normal",
  27119. height: math.unit(5 + 7 / 12, "feet"),
  27120. default: true
  27121. },
  27122. {
  27123. name: "Macro",
  27124. height: math.unit(157 + 7 / 12, "feet")
  27125. },
  27126. {
  27127. name: "Megamacro",
  27128. height: math.unit(1557 + 7 / 12, "feet")
  27129. },
  27130. {
  27131. name: "Gigamacro",
  27132. height: math.unit(15557 + 7 / 12, "feet")
  27133. },
  27134. ]
  27135. ))
  27136. characterMakers.push(() => makeCharacter(
  27137. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27138. {
  27139. front: {
  27140. height: math.unit(3 + 2 / 12, "inches"),
  27141. weight: math.unit(0.3, "ounces"),
  27142. name: "Front",
  27143. image: {
  27144. source: "./media/characters/hiphae/front.svg",
  27145. extra: 1931 / 1683,
  27146. bottom: 24 / 1955
  27147. }
  27148. },
  27149. },
  27150. [
  27151. {
  27152. name: "Normal",
  27153. height: math.unit(3 + 1 / 2, "inches"),
  27154. default: true
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(5 + 10 / 12, "feet"),
  27163. weight: math.unit(165, "lb"),
  27164. name: "Front",
  27165. image: {
  27166. source: "./media/characters/nicky/front.svg",
  27167. extra: 3144 / 2886,
  27168. bottom: 45.6 / 3192
  27169. }
  27170. },
  27171. back: {
  27172. height: math.unit(5 + 10 / 12, "feet"),
  27173. weight: math.unit(165, "lb"),
  27174. name: "Back",
  27175. image: {
  27176. source: "./media/characters/nicky/back.svg",
  27177. extra: 3055 / 2804,
  27178. bottom: 28.4 / 3087
  27179. }
  27180. },
  27181. frontclothed: {
  27182. height: math.unit(5 + 10 / 12, "feet"),
  27183. weight: math.unit(165, "lb"),
  27184. name: "Front-clothed",
  27185. image: {
  27186. source: "./media/characters/nicky/front-clothed.svg",
  27187. extra: 3184.9 / 2926.9,
  27188. bottom: 86.5 / 3239.9
  27189. }
  27190. },
  27191. foot: {
  27192. height: math.unit(1.16, "feet"),
  27193. name: "Foot",
  27194. image: {
  27195. source: "./media/characters/nicky/foot.svg"
  27196. }
  27197. },
  27198. feet: {
  27199. height: math.unit(1.34, "feet"),
  27200. name: "Feet",
  27201. image: {
  27202. source: "./media/characters/nicky/feet.svg"
  27203. }
  27204. },
  27205. maw: {
  27206. height: math.unit(0.9, "feet"),
  27207. name: "Maw",
  27208. image: {
  27209. source: "./media/characters/nicky/maw.svg"
  27210. }
  27211. },
  27212. },
  27213. [
  27214. {
  27215. name: "Normal",
  27216. height: math.unit(5 + 10 / 12, "feet"),
  27217. default: true
  27218. },
  27219. {
  27220. name: "Macro",
  27221. height: math.unit(60, "feet")
  27222. },
  27223. {
  27224. name: "Megamacro",
  27225. height: math.unit(1, "mile")
  27226. },
  27227. ]
  27228. ))
  27229. characterMakers.push(() => makeCharacter(
  27230. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27231. {
  27232. side: {
  27233. height: math.unit(10, "feet"),
  27234. weight: math.unit(600, "lb"),
  27235. name: "Side",
  27236. image: {
  27237. source: "./media/characters/blair/side.svg",
  27238. bottom: 16.6 / 475,
  27239. extra: 458 / 431
  27240. }
  27241. },
  27242. },
  27243. [
  27244. {
  27245. name: "Micro",
  27246. height: math.unit(8, "inches")
  27247. },
  27248. {
  27249. name: "Normal",
  27250. height: math.unit(10, "feet"),
  27251. default: true
  27252. },
  27253. {
  27254. name: "Macro",
  27255. height: math.unit(180, "feet")
  27256. },
  27257. ]
  27258. ))
  27259. characterMakers.push(() => makeCharacter(
  27260. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27261. {
  27262. front: {
  27263. height: math.unit(5 + 4 / 12, "feet"),
  27264. weight: math.unit(125, "lb"),
  27265. name: "Front",
  27266. image: {
  27267. source: "./media/characters/fisher/front.svg",
  27268. extra: 444 / 390,
  27269. bottom: 2 / 444.8
  27270. }
  27271. },
  27272. },
  27273. [
  27274. {
  27275. name: "Micro",
  27276. height: math.unit(4, "inches")
  27277. },
  27278. {
  27279. name: "Normal",
  27280. height: math.unit(5 + 4 / 12, "feet"),
  27281. default: true
  27282. },
  27283. {
  27284. name: "Macro",
  27285. height: math.unit(100, "feet")
  27286. },
  27287. ]
  27288. ))
  27289. characterMakers.push(() => makeCharacter(
  27290. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27291. {
  27292. front: {
  27293. height: math.unit(6.71, "feet"),
  27294. weight: math.unit(200, "lb"),
  27295. preyCapacity: math.unit(1000000, "people"),
  27296. name: "Front",
  27297. image: {
  27298. source: "./media/characters/gliss/front.svg",
  27299. extra: 2347 / 2231,
  27300. bottom: 113 / 2462
  27301. }
  27302. },
  27303. hammerspaceSize: {
  27304. height: math.unit(6.71 * 717, "feet"),
  27305. weight: math.unit(200, "lb"),
  27306. preyCapacity: math.unit(1000000, "people"),
  27307. name: "Hammerspace Size",
  27308. image: {
  27309. source: "./media/characters/gliss/front.svg",
  27310. extra: 2347 / 2231,
  27311. bottom: 113 / 2462
  27312. }
  27313. },
  27314. },
  27315. [
  27316. {
  27317. name: "Normal",
  27318. height: math.unit(6.71, "feet"),
  27319. default: true
  27320. },
  27321. ]
  27322. ))
  27323. characterMakers.push(() => makeCharacter(
  27324. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27325. {
  27326. side: {
  27327. height: math.unit(1.44, "m"),
  27328. weight: math.unit(80, "kg"),
  27329. name: "Side",
  27330. image: {
  27331. source: "./media/characters/dune-anderson/side.svg",
  27332. bottom: 49 / 1426
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Wolf-sized",
  27339. height: math.unit(1.44, "meters")
  27340. },
  27341. {
  27342. name: "Normal",
  27343. height: math.unit(5.05, "meters"),
  27344. default: true
  27345. },
  27346. {
  27347. name: "Big",
  27348. height: math.unit(14.4, "meters")
  27349. },
  27350. {
  27351. name: "Huge",
  27352. height: math.unit(144, "meters")
  27353. },
  27354. ]
  27355. ))
  27356. characterMakers.push(() => makeCharacter(
  27357. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27358. {
  27359. front: {
  27360. height: math.unit(7, "feet"),
  27361. weight: math.unit(425, "lb"),
  27362. name: "Front",
  27363. image: {
  27364. source: "./media/characters/hind/front.svg",
  27365. extra: 2091 / 1860,
  27366. bottom: 129 / 2220
  27367. }
  27368. },
  27369. back: {
  27370. height: math.unit(7, "feet"),
  27371. weight: math.unit(425, "lb"),
  27372. name: "Back",
  27373. image: {
  27374. source: "./media/characters/hind/back.svg",
  27375. extra: 2091 / 1860,
  27376. bottom: 24.6 / 2309
  27377. }
  27378. },
  27379. tail: {
  27380. height: math.unit(2.8, "feet"),
  27381. name: "Tail",
  27382. image: {
  27383. source: "./media/characters/hind/tail.svg"
  27384. }
  27385. },
  27386. head: {
  27387. height: math.unit(2.55, "feet"),
  27388. name: "Head",
  27389. image: {
  27390. source: "./media/characters/hind/head.svg"
  27391. }
  27392. },
  27393. },
  27394. [
  27395. {
  27396. name: "XS",
  27397. height: math.unit(0.7, "feet")
  27398. },
  27399. {
  27400. name: "Normal",
  27401. height: math.unit(7, "feet"),
  27402. default: true
  27403. },
  27404. {
  27405. name: "XL",
  27406. height: math.unit(70, "feet")
  27407. },
  27408. ]
  27409. ))
  27410. characterMakers.push(() => makeCharacter(
  27411. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27412. {
  27413. front: {
  27414. height: math.unit(2.1, "meters"),
  27415. weight: math.unit(150, "lb"),
  27416. name: "Front",
  27417. image: {
  27418. source: "./media/characters/tharquench-sizestealer/front.svg",
  27419. extra: 1605/1470,
  27420. bottom: 36/1641
  27421. }
  27422. },
  27423. frontAlt: {
  27424. height: math.unit(2.1, "meters"),
  27425. weight: math.unit(150, "lb"),
  27426. name: "Front (Alt)",
  27427. image: {
  27428. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27429. extra: 2318 / 2063,
  27430. bottom: 93.4 / 2410
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Nano",
  27437. height: math.unit(1, "mm")
  27438. },
  27439. {
  27440. name: "Micro",
  27441. height: math.unit(1, "cm")
  27442. },
  27443. {
  27444. name: "Normal",
  27445. height: math.unit(2.1, "meters"),
  27446. default: true
  27447. },
  27448. ]
  27449. ))
  27450. characterMakers.push(() => makeCharacter(
  27451. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27452. {
  27453. front: {
  27454. height: math.unit(7 + 5 / 12, "feet"),
  27455. weight: math.unit(357, "lb"),
  27456. name: "Front",
  27457. image: {
  27458. source: "./media/characters/solex-draconov/front.svg",
  27459. extra: 1993 / 1865,
  27460. bottom: 117 / 2111
  27461. }
  27462. },
  27463. },
  27464. [
  27465. {
  27466. name: "Natural Height",
  27467. height: math.unit(7 + 5 / 12, "feet"),
  27468. default: true
  27469. },
  27470. {
  27471. name: "Macro",
  27472. height: math.unit(350, "feet")
  27473. },
  27474. {
  27475. name: "Macro+",
  27476. height: math.unit(1000, "feet")
  27477. },
  27478. {
  27479. name: "Megamacro",
  27480. height: math.unit(20, "km")
  27481. },
  27482. {
  27483. name: "Megamacro+",
  27484. height: math.unit(1000, "km")
  27485. },
  27486. {
  27487. name: "Gigamacro",
  27488. height: math.unit(2.5, "Gm")
  27489. },
  27490. {
  27491. name: "Teramacro",
  27492. height: math.unit(15, "Tm")
  27493. },
  27494. {
  27495. name: "Galactic",
  27496. height: math.unit(30, "Zm")
  27497. },
  27498. {
  27499. name: "Universal",
  27500. height: math.unit(21000, "Ym")
  27501. },
  27502. {
  27503. name: "Omniversal",
  27504. height: math.unit(9.861e50, "Ym")
  27505. },
  27506. {
  27507. name: "Existential",
  27508. height: math.unit(1e300, "meters")
  27509. },
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27514. {
  27515. side: {
  27516. height: math.unit(25, "feet"),
  27517. weight: math.unit(90000, "lb"),
  27518. name: "Side",
  27519. image: {
  27520. source: "./media/characters/mandarax/side.svg",
  27521. extra: 614 / 332,
  27522. bottom: 55 / 630
  27523. }
  27524. },
  27525. lounging: {
  27526. height: math.unit(15.4, "feet"),
  27527. weight: math.unit(90000, "lb"),
  27528. name: "Lounging",
  27529. image: {
  27530. source: "./media/characters/mandarax/lounging.svg",
  27531. extra: 817/609,
  27532. bottom: 685/1502
  27533. }
  27534. },
  27535. head: {
  27536. height: math.unit(11.4, "feet"),
  27537. name: "Head",
  27538. image: {
  27539. source: "./media/characters/mandarax/head.svg"
  27540. }
  27541. },
  27542. belly: {
  27543. height: math.unit(33, "feet"),
  27544. name: "Belly",
  27545. preyCapacity: math.unit(500, "people"),
  27546. image: {
  27547. source: "./media/characters/mandarax/belly.svg"
  27548. }
  27549. },
  27550. dick: {
  27551. height: math.unit(8.46, "feet"),
  27552. name: "Dick",
  27553. image: {
  27554. source: "./media/characters/mandarax/dick.svg"
  27555. }
  27556. },
  27557. top: {
  27558. height: math.unit(28, "meters"),
  27559. name: "Top",
  27560. image: {
  27561. source: "./media/characters/mandarax/top.svg"
  27562. }
  27563. },
  27564. },
  27565. [
  27566. {
  27567. name: "Normal",
  27568. height: math.unit(25, "feet"),
  27569. default: true
  27570. },
  27571. ]
  27572. ))
  27573. characterMakers.push(() => makeCharacter(
  27574. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27575. {
  27576. front: {
  27577. height: math.unit(5, "feet"),
  27578. weight: math.unit(90, "lb"),
  27579. name: "Front",
  27580. image: {
  27581. source: "./media/characters/pixil/front.svg",
  27582. extra: 2000 / 1618,
  27583. bottom: 12.3 / 2011
  27584. }
  27585. },
  27586. },
  27587. [
  27588. {
  27589. name: "Normal",
  27590. height: math.unit(5, "feet"),
  27591. default: true
  27592. },
  27593. {
  27594. name: "Megamacro",
  27595. height: math.unit(10, "miles"),
  27596. },
  27597. ]
  27598. ))
  27599. characterMakers.push(() => makeCharacter(
  27600. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27601. {
  27602. front: {
  27603. height: math.unit(7 + 2 / 12, "feet"),
  27604. weight: math.unit(200, "lb"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/angel/front.svg",
  27608. extra: 1830 / 1737,
  27609. bottom: 22.6 / 1854,
  27610. }
  27611. },
  27612. },
  27613. [
  27614. {
  27615. name: "Normal",
  27616. height: math.unit(7 + 2 / 12, "feet"),
  27617. default: true
  27618. },
  27619. {
  27620. name: "Macro",
  27621. height: math.unit(1000, "feet")
  27622. },
  27623. {
  27624. name: "Megamacro",
  27625. height: math.unit(2, "miles")
  27626. },
  27627. {
  27628. name: "Gigamacro",
  27629. height: math.unit(20, "earths")
  27630. },
  27631. ]
  27632. ))
  27633. characterMakers.push(() => makeCharacter(
  27634. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27635. {
  27636. front: {
  27637. height: math.unit(5, "feet"),
  27638. weight: math.unit(180, "lb"),
  27639. name: "Front",
  27640. image: {
  27641. source: "./media/characters/mekana/front.svg",
  27642. extra: 1671 / 1605,
  27643. bottom: 3.5 / 1691
  27644. }
  27645. },
  27646. side: {
  27647. height: math.unit(5, "feet"),
  27648. weight: math.unit(180, "lb"),
  27649. name: "Side",
  27650. image: {
  27651. source: "./media/characters/mekana/side.svg",
  27652. extra: 1671 / 1605,
  27653. bottom: 3.5 / 1691
  27654. }
  27655. },
  27656. back: {
  27657. height: math.unit(5, "feet"),
  27658. weight: math.unit(180, "lb"),
  27659. name: "Back",
  27660. image: {
  27661. source: "./media/characters/mekana/back.svg",
  27662. extra: 1671 / 1605,
  27663. bottom: 3.5 / 1691
  27664. }
  27665. },
  27666. },
  27667. [
  27668. {
  27669. name: "Normal",
  27670. height: math.unit(5, "feet"),
  27671. default: true
  27672. },
  27673. ]
  27674. ))
  27675. characterMakers.push(() => makeCharacter(
  27676. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27677. {
  27678. front: {
  27679. height: math.unit(4 + 6 / 12, "feet"),
  27680. weight: math.unit(80, "lb"),
  27681. name: "Front",
  27682. image: {
  27683. source: "./media/characters/pixie/front.svg",
  27684. extra: 1924 / 1825,
  27685. bottom: 22.4 / 1946
  27686. }
  27687. },
  27688. },
  27689. [
  27690. {
  27691. name: "Normal",
  27692. height: math.unit(4 + 6 / 12, "feet"),
  27693. default: true
  27694. },
  27695. {
  27696. name: "Macro",
  27697. height: math.unit(40, "feet")
  27698. },
  27699. ]
  27700. ))
  27701. characterMakers.push(() => makeCharacter(
  27702. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27703. {
  27704. front: {
  27705. height: math.unit(2.1, "meters"),
  27706. weight: math.unit(200, "lb"),
  27707. name: "Front",
  27708. image: {
  27709. source: "./media/characters/the-lascivious/front.svg",
  27710. extra: 1 / 0.893,
  27711. bottom: 3.5 / 573.7
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Human Scale",
  27718. height: math.unit(2.1, "meters")
  27719. },
  27720. {
  27721. name: "Wolxi Scale",
  27722. height: math.unit(46.2, "m"),
  27723. default: true
  27724. },
  27725. {
  27726. name: "Boinker of Buildings",
  27727. height: math.unit(10, "km")
  27728. },
  27729. {
  27730. name: "Shagger of Skyscrapers",
  27731. height: math.unit(40, "km")
  27732. },
  27733. {
  27734. name: "Banger of Boroughs",
  27735. height: math.unit(4000, "km")
  27736. },
  27737. {
  27738. name: "Screwer of States",
  27739. height: math.unit(100000, "km")
  27740. },
  27741. {
  27742. name: "Pounder of Planets",
  27743. height: math.unit(2000000, "km")
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27749. {
  27750. front: {
  27751. height: math.unit(6, "feet"),
  27752. weight: math.unit(150, "lb"),
  27753. name: "Front",
  27754. image: {
  27755. source: "./media/characters/aj/front.svg",
  27756. extra: 2039 / 1562,
  27757. bottom: 40 / 2079
  27758. }
  27759. },
  27760. },
  27761. [
  27762. {
  27763. name: "Normal",
  27764. height: math.unit(11 + 6 / 12, "feet"),
  27765. default: true
  27766. },
  27767. {
  27768. name: "Megamacro",
  27769. height: math.unit(60, "megameters")
  27770. },
  27771. ]
  27772. ))
  27773. characterMakers.push(() => makeCharacter(
  27774. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27775. {
  27776. side: {
  27777. height: math.unit(31 + 8 / 12, "feet"),
  27778. weight: math.unit(75000, "kg"),
  27779. name: "Side",
  27780. image: {
  27781. source: "./media/characters/koros/side.svg",
  27782. extra: 1442 / 1297,
  27783. bottom: 122.7 / 1562
  27784. }
  27785. },
  27786. dicksKingsCrown: {
  27787. height: math.unit(6, "feet"),
  27788. name: "Dicks (King's Crown)",
  27789. image: {
  27790. source: "./media/characters/koros/dicks-kings-crown.svg"
  27791. }
  27792. },
  27793. dicksTailSet: {
  27794. height: math.unit(3, "feet"),
  27795. name: "Dicks (Tail Set)",
  27796. image: {
  27797. source: "./media/characters/koros/dicks-tail-set.svg"
  27798. }
  27799. },
  27800. dickCumming: {
  27801. height: math.unit(7.98, "feet"),
  27802. name: "Dick (Cumming)",
  27803. image: {
  27804. source: "./media/characters/koros/dick-cumming.svg"
  27805. }
  27806. },
  27807. dicksBack: {
  27808. height: math.unit(5.9, "feet"),
  27809. name: "Dicks (Back)",
  27810. image: {
  27811. source: "./media/characters/koros/dicks-back.svg"
  27812. }
  27813. },
  27814. dicksFront: {
  27815. height: math.unit(3.72, "feet"),
  27816. name: "Dicks (Front)",
  27817. image: {
  27818. source: "./media/characters/koros/dicks-front.svg"
  27819. }
  27820. },
  27821. dicksPeeking: {
  27822. height: math.unit(3.0, "feet"),
  27823. name: "Dicks (Peeking)",
  27824. image: {
  27825. source: "./media/characters/koros/dicks-peeking.svg"
  27826. }
  27827. },
  27828. eye: {
  27829. height: math.unit(1.7, "feet"),
  27830. name: "Eye",
  27831. image: {
  27832. source: "./media/characters/koros/eye.svg"
  27833. }
  27834. },
  27835. headFront: {
  27836. height: math.unit(11.69, "feet"),
  27837. name: "Head (Front)",
  27838. image: {
  27839. source: "./media/characters/koros/head-front.svg"
  27840. }
  27841. },
  27842. headSide: {
  27843. height: math.unit(14, "feet"),
  27844. name: "Head (Side)",
  27845. image: {
  27846. source: "./media/characters/koros/head-side.svg"
  27847. }
  27848. },
  27849. leg: {
  27850. height: math.unit(17, "feet"),
  27851. name: "Leg",
  27852. image: {
  27853. source: "./media/characters/koros/leg.svg"
  27854. }
  27855. },
  27856. mawSide: {
  27857. height: math.unit(12.8, "feet"),
  27858. name: "Maw (Side)",
  27859. image: {
  27860. source: "./media/characters/koros/maw-side.svg"
  27861. }
  27862. },
  27863. mawSpitting: {
  27864. height: math.unit(17, "feet"),
  27865. name: "Maw (Spitting)",
  27866. image: {
  27867. source: "./media/characters/koros/maw-spitting.svg"
  27868. }
  27869. },
  27870. slit: {
  27871. height: math.unit(2.8, "feet"),
  27872. name: "Slit",
  27873. image: {
  27874. source: "./media/characters/koros/slit.svg"
  27875. }
  27876. },
  27877. stomach: {
  27878. height: math.unit(6.8, "feet"),
  27879. preyCapacity: math.unit(20, "people"),
  27880. name: "Stomach",
  27881. image: {
  27882. source: "./media/characters/koros/stomach.svg"
  27883. }
  27884. },
  27885. wingspanBottom: {
  27886. height: math.unit(114, "feet"),
  27887. name: "Wingspan (Bottom)",
  27888. image: {
  27889. source: "./media/characters/koros/wingspan-bottom.svg"
  27890. }
  27891. },
  27892. wingspanTop: {
  27893. height: math.unit(104, "feet"),
  27894. name: "Wingspan (Top)",
  27895. image: {
  27896. source: "./media/characters/koros/wingspan-top.svg"
  27897. }
  27898. },
  27899. },
  27900. [
  27901. {
  27902. name: "Normal",
  27903. height: math.unit(31 + 8 / 12, "feet"),
  27904. default: true
  27905. },
  27906. ]
  27907. ))
  27908. characterMakers.push(() => makeCharacter(
  27909. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  27910. {
  27911. front: {
  27912. height: math.unit(18 + 5 / 12, "feet"),
  27913. weight: math.unit(3750, "kg"),
  27914. name: "Front",
  27915. image: {
  27916. source: "./media/characters/vexx/front.svg",
  27917. extra: 426 / 396,
  27918. bottom: 31.5 / 458
  27919. }
  27920. },
  27921. maw: {
  27922. height: math.unit(6, "feet"),
  27923. name: "Maw",
  27924. image: {
  27925. source: "./media/characters/vexx/maw.svg"
  27926. }
  27927. },
  27928. },
  27929. [
  27930. {
  27931. name: "Normal",
  27932. height: math.unit(18 + 5 / 12, "feet"),
  27933. default: true
  27934. },
  27935. ]
  27936. ))
  27937. characterMakers.push(() => makeCharacter(
  27938. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  27939. {
  27940. front: {
  27941. height: math.unit(17 + 6 / 12, "feet"),
  27942. weight: math.unit(150, "lb"),
  27943. name: "Front",
  27944. image: {
  27945. source: "./media/characters/baadra/front.svg",
  27946. extra: 1694/1553,
  27947. bottom: 179/1873
  27948. }
  27949. },
  27950. frontAlt: {
  27951. height: math.unit(17 + 6 / 12, "feet"),
  27952. weight: math.unit(150, "lb"),
  27953. name: "Front (Alt)",
  27954. image: {
  27955. source: "./media/characters/baadra/front-alt.svg",
  27956. extra: 3137 / 2890,
  27957. bottom: 168.4 / 3305
  27958. }
  27959. },
  27960. back: {
  27961. height: math.unit(17 + 6 / 12, "feet"),
  27962. weight: math.unit(150, "lb"),
  27963. name: "Back",
  27964. image: {
  27965. source: "./media/characters/baadra/back.svg",
  27966. extra: 3142 / 2890,
  27967. bottom: 220 / 3371
  27968. }
  27969. },
  27970. head: {
  27971. height: math.unit(5.45, "feet"),
  27972. name: "Head",
  27973. image: {
  27974. source: "./media/characters/baadra/head.svg"
  27975. }
  27976. },
  27977. headAngry: {
  27978. height: math.unit(4.95, "feet"),
  27979. name: "Head (Angry)",
  27980. image: {
  27981. source: "./media/characters/baadra/head-angry.svg"
  27982. }
  27983. },
  27984. headOpen: {
  27985. height: math.unit(6, "feet"),
  27986. name: "Head (Open)",
  27987. image: {
  27988. source: "./media/characters/baadra/head-open.svg"
  27989. }
  27990. },
  27991. },
  27992. [
  27993. {
  27994. name: "Normal",
  27995. height: math.unit(17 + 6 / 12, "feet"),
  27996. default: true
  27997. },
  27998. ]
  27999. ))
  28000. characterMakers.push(() => makeCharacter(
  28001. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28002. {
  28003. front: {
  28004. height: math.unit(7 + 3 / 12, "feet"),
  28005. weight: math.unit(180, "lb"),
  28006. name: "Front",
  28007. image: {
  28008. source: "./media/characters/juri/front.svg",
  28009. extra: 1401 / 1237,
  28010. bottom: 18.5 / 1418
  28011. }
  28012. },
  28013. side: {
  28014. height: math.unit(7 + 3 / 12, "feet"),
  28015. weight: math.unit(180, "lb"),
  28016. name: "Side",
  28017. image: {
  28018. source: "./media/characters/juri/side.svg",
  28019. extra: 1424 / 1242,
  28020. bottom: 18.5 / 1447
  28021. }
  28022. },
  28023. sitting: {
  28024. height: math.unit(6, "feet"),
  28025. weight: math.unit(180, "lb"),
  28026. name: "Sitting",
  28027. image: {
  28028. source: "./media/characters/juri/sitting.svg",
  28029. extra: 1270 / 1143,
  28030. bottom: 100 / 1343
  28031. }
  28032. },
  28033. back: {
  28034. height: math.unit(7 + 3 / 12, "feet"),
  28035. weight: math.unit(180, "lb"),
  28036. name: "Back",
  28037. image: {
  28038. source: "./media/characters/juri/back.svg",
  28039. extra: 1377 / 1240,
  28040. bottom: 23.7 / 1405
  28041. }
  28042. },
  28043. maw: {
  28044. height: math.unit(2.8, "feet"),
  28045. name: "Maw",
  28046. image: {
  28047. source: "./media/characters/juri/maw.svg"
  28048. }
  28049. },
  28050. stomach: {
  28051. height: math.unit(0.89, "feet"),
  28052. preyCapacity: math.unit(4, "liters"),
  28053. name: "Stomach",
  28054. image: {
  28055. source: "./media/characters/juri/stomach.svg"
  28056. }
  28057. },
  28058. },
  28059. [
  28060. {
  28061. name: "Normal",
  28062. height: math.unit(7 + 3 / 12, "feet"),
  28063. default: true
  28064. },
  28065. ]
  28066. ))
  28067. characterMakers.push(() => makeCharacter(
  28068. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28069. {
  28070. fox: {
  28071. height: math.unit(5 + 6 / 12, "feet"),
  28072. weight: math.unit(140, "lb"),
  28073. name: "Fox",
  28074. image: {
  28075. source: "./media/characters/maxene-sita/fox.svg",
  28076. extra: 146 / 138,
  28077. bottom: 2.1 / 148.19
  28078. }
  28079. },
  28080. foxLaying: {
  28081. height: math.unit(1.70, "feet"),
  28082. weight: math.unit(140, "lb"),
  28083. name: "Fox (Laying)",
  28084. image: {
  28085. source: "./media/characters/maxene-sita/fox-laying.svg",
  28086. extra: 910 / 572,
  28087. bottom: 71 / 981
  28088. }
  28089. },
  28090. kitsune: {
  28091. height: math.unit(10, "feet"),
  28092. weight: math.unit(800, "lb"),
  28093. name: "Kitsune",
  28094. image: {
  28095. source: "./media/characters/maxene-sita/kitsune.svg",
  28096. extra: 185 / 176,
  28097. bottom: 4.7 / 189.9
  28098. }
  28099. },
  28100. hellhound: {
  28101. height: math.unit(10, "feet"),
  28102. weight: math.unit(700, "lb"),
  28103. name: "Hellhound",
  28104. image: {
  28105. source: "./media/characters/maxene-sita/hellhound.svg",
  28106. extra: 1600 / 1545,
  28107. bottom: 81 / 1681
  28108. }
  28109. },
  28110. },
  28111. [
  28112. {
  28113. name: "Normal",
  28114. height: math.unit(5 + 6 / 12, "feet"),
  28115. default: true
  28116. },
  28117. ]
  28118. ))
  28119. characterMakers.push(() => makeCharacter(
  28120. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28121. {
  28122. front: {
  28123. height: math.unit(3 + 4 / 12, "feet"),
  28124. weight: math.unit(70, "lb"),
  28125. name: "Front",
  28126. image: {
  28127. source: "./media/characters/maia/front.svg",
  28128. extra: 227 / 219.5,
  28129. bottom: 40 / 267
  28130. }
  28131. },
  28132. back: {
  28133. height: math.unit(3 + 4 / 12, "feet"),
  28134. weight: math.unit(70, "lb"),
  28135. name: "Back",
  28136. image: {
  28137. source: "./media/characters/maia/back.svg",
  28138. extra: 237 / 225
  28139. }
  28140. },
  28141. },
  28142. [
  28143. {
  28144. name: "Normal",
  28145. height: math.unit(3 + 4 / 12, "feet"),
  28146. default: true
  28147. },
  28148. ]
  28149. ))
  28150. characterMakers.push(() => makeCharacter(
  28151. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28152. {
  28153. front: {
  28154. height: math.unit(5 + 10 / 12, "feet"),
  28155. weight: math.unit(197, "lb"),
  28156. name: "Front",
  28157. image: {
  28158. source: "./media/characters/jabaro/front.svg",
  28159. extra: 225 / 216,
  28160. bottom: 5.06 / 230
  28161. }
  28162. },
  28163. back: {
  28164. height: math.unit(5 + 10 / 12, "feet"),
  28165. weight: math.unit(197, "lb"),
  28166. name: "Back",
  28167. image: {
  28168. source: "./media/characters/jabaro/back.svg",
  28169. extra: 225 / 219,
  28170. bottom: 1.9 / 227
  28171. }
  28172. },
  28173. },
  28174. [
  28175. {
  28176. name: "Normal",
  28177. height: math.unit(5 + 10 / 12, "feet"),
  28178. default: true
  28179. },
  28180. ]
  28181. ))
  28182. characterMakers.push(() => makeCharacter(
  28183. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28184. {
  28185. front: {
  28186. height: math.unit(5 + 8 / 12, "feet"),
  28187. weight: math.unit(139, "lb"),
  28188. name: "Front",
  28189. image: {
  28190. source: "./media/characters/risa/front.svg",
  28191. extra: 270 / 260,
  28192. bottom: 11.2 / 282
  28193. }
  28194. },
  28195. back: {
  28196. height: math.unit(5 + 8 / 12, "feet"),
  28197. weight: math.unit(139, "lb"),
  28198. name: "Back",
  28199. image: {
  28200. source: "./media/characters/risa/back.svg",
  28201. extra: 264 / 255,
  28202. bottom: 4 / 268
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(5 + 8 / 12, "feet"),
  28210. default: true
  28211. },
  28212. ]
  28213. ))
  28214. characterMakers.push(() => makeCharacter(
  28215. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28216. {
  28217. front: {
  28218. height: math.unit(2 + 11 / 12, "feet"),
  28219. weight: math.unit(30, "lb"),
  28220. name: "Front",
  28221. image: {
  28222. source: "./media/characters/weatley/front.svg",
  28223. bottom: 10.7 / 414,
  28224. extra: 403.5 / 362
  28225. }
  28226. },
  28227. back: {
  28228. height: math.unit(2 + 11 / 12, "feet"),
  28229. weight: math.unit(30, "lb"),
  28230. name: "Back",
  28231. image: {
  28232. source: "./media/characters/weatley/back.svg",
  28233. bottom: 10.7 / 414,
  28234. extra: 403.5 / 362
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Normal",
  28241. height: math.unit(2 + 11 / 12, "feet"),
  28242. default: true
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28248. {
  28249. front: {
  28250. height: math.unit(5 + 2 / 12, "feet"),
  28251. weight: math.unit(50, "kg"),
  28252. name: "Front",
  28253. image: {
  28254. source: "./media/characters/mercury-crescent/front.svg",
  28255. extra: 1088 / 1033,
  28256. bottom: 18.9 / 1109
  28257. }
  28258. },
  28259. },
  28260. [
  28261. {
  28262. name: "Normal",
  28263. height: math.unit(5 + 2 / 12, "feet"),
  28264. default: true
  28265. },
  28266. ]
  28267. ))
  28268. characterMakers.push(() => makeCharacter(
  28269. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28270. {
  28271. front: {
  28272. height: math.unit(2, "feet"),
  28273. weight: math.unit(15, "kg"),
  28274. name: "Front",
  28275. image: {
  28276. source: "./media/characters/diamond-jones/front.svg",
  28277. extra: 727/723,
  28278. bottom: 46/773
  28279. }
  28280. },
  28281. },
  28282. [
  28283. {
  28284. name: "Normal",
  28285. height: math.unit(2, "feet"),
  28286. default: true
  28287. },
  28288. ]
  28289. ))
  28290. characterMakers.push(() => makeCharacter(
  28291. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28292. {
  28293. front: {
  28294. height: math.unit(3, "feet"),
  28295. weight: math.unit(30, "kg"),
  28296. name: "Front",
  28297. image: {
  28298. source: "./media/characters/sweet-bit/front.svg",
  28299. extra: 675 / 567,
  28300. bottom: 27.7 / 703
  28301. }
  28302. },
  28303. },
  28304. [
  28305. {
  28306. name: "Normal",
  28307. height: math.unit(3, "feet"),
  28308. default: true
  28309. },
  28310. ]
  28311. ))
  28312. characterMakers.push(() => makeCharacter(
  28313. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28314. {
  28315. side: {
  28316. height: math.unit(9.178, "feet"),
  28317. weight: math.unit(500, "lb"),
  28318. name: "Side",
  28319. image: {
  28320. source: "./media/characters/umbrazen/side.svg",
  28321. extra: 1730 / 1473,
  28322. bottom: 34.6 / 1765
  28323. }
  28324. },
  28325. },
  28326. [
  28327. {
  28328. name: "Normal",
  28329. height: math.unit(9.178, "feet"),
  28330. default: true
  28331. },
  28332. ]
  28333. ))
  28334. characterMakers.push(() => makeCharacter(
  28335. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28336. {
  28337. front: {
  28338. height: math.unit(10, "feet"),
  28339. weight: math.unit(750, "lb"),
  28340. name: "Front",
  28341. image: {
  28342. source: "./media/characters/arlist/front.svg",
  28343. extra: 961 / 778,
  28344. bottom: 6.2 / 986
  28345. }
  28346. },
  28347. },
  28348. [
  28349. {
  28350. name: "Normal",
  28351. height: math.unit(10, "feet"),
  28352. default: true
  28353. },
  28354. ]
  28355. ))
  28356. characterMakers.push(() => makeCharacter(
  28357. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28358. {
  28359. front: {
  28360. height: math.unit(5 + 1 / 12, "feet"),
  28361. weight: math.unit(110, "lb"),
  28362. name: "Front",
  28363. image: {
  28364. source: "./media/characters/aradel/front.svg",
  28365. extra: 324 / 303,
  28366. bottom: 3.6 / 329.4
  28367. }
  28368. },
  28369. },
  28370. [
  28371. {
  28372. name: "Normal",
  28373. height: math.unit(5 + 1 / 12, "feet"),
  28374. default: true
  28375. },
  28376. ]
  28377. ))
  28378. characterMakers.push(() => makeCharacter(
  28379. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28380. {
  28381. dressed: {
  28382. height: math.unit(3 + 8 / 12, "feet"),
  28383. weight: math.unit(50, "lb"),
  28384. name: "Dressed",
  28385. image: {
  28386. source: "./media/characters/serryn/dressed.svg",
  28387. extra: 1792 / 1656,
  28388. bottom: 43.5 / 1840
  28389. }
  28390. },
  28391. nude: {
  28392. height: math.unit(3 + 8 / 12, "feet"),
  28393. weight: math.unit(50, "lb"),
  28394. name: "Nude",
  28395. image: {
  28396. source: "./media/characters/serryn/nude.svg",
  28397. extra: 1792 / 1656,
  28398. bottom: 43.5 / 1840
  28399. }
  28400. },
  28401. },
  28402. [
  28403. {
  28404. name: "Normal",
  28405. height: math.unit(3 + 8 / 12, "feet"),
  28406. default: true
  28407. },
  28408. ]
  28409. ))
  28410. characterMakers.push(() => makeCharacter(
  28411. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28412. {
  28413. front: {
  28414. height: math.unit(7 + 10 / 12, "feet"),
  28415. weight: math.unit(255, "lb"),
  28416. name: "Front",
  28417. image: {
  28418. source: "./media/characters/xavier-thyme/front.svg",
  28419. extra: 3733 / 3642,
  28420. bottom: 131 / 3869
  28421. }
  28422. },
  28423. frontRaven: {
  28424. height: math.unit(7 + 10 / 12, "feet"),
  28425. weight: math.unit(255, "lb"),
  28426. name: "Front (Raven)",
  28427. image: {
  28428. source: "./media/characters/xavier-thyme/front-raven.svg",
  28429. extra: 4385 / 3642,
  28430. bottom: 131 / 4517
  28431. }
  28432. },
  28433. },
  28434. [
  28435. {
  28436. name: "Normal",
  28437. height: math.unit(7 + 10 / 12, "feet"),
  28438. default: true
  28439. },
  28440. ]
  28441. ))
  28442. characterMakers.push(() => makeCharacter(
  28443. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28444. {
  28445. front: {
  28446. height: math.unit(1.6, "m"),
  28447. weight: math.unit(50, "kg"),
  28448. name: "Front",
  28449. image: {
  28450. source: "./media/characters/kiki/front.svg",
  28451. extra: 4682 / 3610,
  28452. bottom: 115 / 4777
  28453. }
  28454. },
  28455. },
  28456. [
  28457. {
  28458. name: "Normal",
  28459. height: math.unit(1.6, "meters"),
  28460. default: true
  28461. },
  28462. ]
  28463. ))
  28464. characterMakers.push(() => makeCharacter(
  28465. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28466. {
  28467. front: {
  28468. height: math.unit(50, "m"),
  28469. weight: math.unit(500, "tonnes"),
  28470. name: "Front",
  28471. image: {
  28472. source: "./media/characters/ryoko/front.svg",
  28473. extra: 4632 / 3926,
  28474. bottom: 193 / 4823
  28475. }
  28476. },
  28477. },
  28478. [
  28479. {
  28480. name: "Normal",
  28481. height: math.unit(50, "meters"),
  28482. default: true
  28483. },
  28484. ]
  28485. ))
  28486. characterMakers.push(() => makeCharacter(
  28487. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28488. {
  28489. front: {
  28490. height: math.unit(30, "m"),
  28491. weight: math.unit(22, "tonnes"),
  28492. name: "Front",
  28493. image: {
  28494. source: "./media/characters/elio/front.svg",
  28495. extra: 4582 / 3720,
  28496. bottom: 236 / 4828
  28497. }
  28498. },
  28499. },
  28500. [
  28501. {
  28502. name: "Normal",
  28503. height: math.unit(30, "meters"),
  28504. default: true
  28505. },
  28506. ]
  28507. ))
  28508. characterMakers.push(() => makeCharacter(
  28509. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28510. {
  28511. front: {
  28512. height: math.unit(6 + 3 / 12, "feet"),
  28513. weight: math.unit(120, "lb"),
  28514. name: "Front",
  28515. image: {
  28516. source: "./media/characters/azura/front.svg",
  28517. extra: 1149 / 1135,
  28518. bottom: 45 / 1194
  28519. }
  28520. },
  28521. frontClothed: {
  28522. height: math.unit(6 + 3 / 12, "feet"),
  28523. weight: math.unit(120, "lb"),
  28524. name: "Front (Clothed)",
  28525. image: {
  28526. source: "./media/characters/azura/front-clothed.svg",
  28527. extra: 1149 / 1135,
  28528. bottom: 45 / 1194
  28529. }
  28530. },
  28531. },
  28532. [
  28533. {
  28534. name: "Normal",
  28535. height: math.unit(6 + 3 / 12, "feet"),
  28536. default: true
  28537. },
  28538. {
  28539. name: "Macro",
  28540. height: math.unit(20 + 6 / 12, "feet")
  28541. },
  28542. {
  28543. name: "Megamacro",
  28544. height: math.unit(12, "miles")
  28545. },
  28546. {
  28547. name: "Gigamacro",
  28548. height: math.unit(10000, "miles")
  28549. },
  28550. {
  28551. name: "Teramacro",
  28552. height: math.unit(900000, "miles")
  28553. },
  28554. ]
  28555. ))
  28556. characterMakers.push(() => makeCharacter(
  28557. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28558. {
  28559. front: {
  28560. height: math.unit(12, "feet"),
  28561. weight: math.unit(1, "ton"),
  28562. capacity: math.unit(660000, "gallons"),
  28563. name: "Front",
  28564. image: {
  28565. source: "./media/characters/zeus/front.svg",
  28566. extra: 5005 / 4717,
  28567. bottom: 363 / 5388
  28568. }
  28569. },
  28570. },
  28571. [
  28572. {
  28573. name: "Normal",
  28574. height: math.unit(12, "feet")
  28575. },
  28576. {
  28577. name: "Preferred Size",
  28578. height: math.unit(0.5, "miles"),
  28579. default: true
  28580. },
  28581. {
  28582. name: "Giga Horse",
  28583. height: math.unit(300, "miles")
  28584. },
  28585. {
  28586. name: "Riding Planets",
  28587. height: math.unit(30, "megameters")
  28588. },
  28589. {
  28590. name: "Cosmic Giant",
  28591. height: math.unit(3, "zettameters")
  28592. },
  28593. {
  28594. name: "Breeding God",
  28595. height: math.unit(9.92e22, "yottameters")
  28596. },
  28597. ]
  28598. ))
  28599. characterMakers.push(() => makeCharacter(
  28600. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28601. {
  28602. side: {
  28603. height: math.unit(9, "feet"),
  28604. weight: math.unit(1500, "kg"),
  28605. name: "Side",
  28606. image: {
  28607. source: "./media/characters/fang/side.svg",
  28608. extra: 924 / 866,
  28609. bottom: 47.5 / 972.3
  28610. }
  28611. },
  28612. },
  28613. [
  28614. {
  28615. name: "Normal",
  28616. height: math.unit(9, "feet"),
  28617. default: true
  28618. },
  28619. {
  28620. name: "Macro",
  28621. height: math.unit(75 + 6 / 12, "feet")
  28622. },
  28623. {
  28624. name: "Teramacro",
  28625. height: math.unit(50000, "miles")
  28626. },
  28627. ]
  28628. ))
  28629. characterMakers.push(() => makeCharacter(
  28630. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28631. {
  28632. front: {
  28633. height: math.unit(10, "feet"),
  28634. weight: math.unit(2, "tons"),
  28635. name: "Front",
  28636. image: {
  28637. source: "./media/characters/rekhit/front.svg",
  28638. extra: 2796 / 2590,
  28639. bottom: 225 / 3022
  28640. }
  28641. },
  28642. },
  28643. [
  28644. {
  28645. name: "Normal",
  28646. height: math.unit(10, "feet"),
  28647. default: true
  28648. },
  28649. {
  28650. name: "Macro",
  28651. height: math.unit(500, "feet")
  28652. },
  28653. ]
  28654. ))
  28655. characterMakers.push(() => makeCharacter(
  28656. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28657. {
  28658. front: {
  28659. height: math.unit(7 + 6.451 / 12, "feet"),
  28660. weight: math.unit(310, "lb"),
  28661. name: "Front",
  28662. image: {
  28663. source: "./media/characters/dahlia-verrick/front.svg",
  28664. extra: 1488 / 1365,
  28665. bottom: 6.2 / 1495
  28666. }
  28667. },
  28668. back: {
  28669. height: math.unit(7 + 6.451 / 12, "feet"),
  28670. weight: math.unit(310, "lb"),
  28671. name: "Back",
  28672. image: {
  28673. source: "./media/characters/dahlia-verrick/back.svg",
  28674. extra: 1472 / 1351,
  28675. bottom: 5.28 / 1477
  28676. }
  28677. },
  28678. frontBusiness: {
  28679. height: math.unit(7 + 6.451 / 12, "feet"),
  28680. weight: math.unit(200, "lb"),
  28681. name: "Front (Business)",
  28682. image: {
  28683. source: "./media/characters/dahlia-verrick/front-business.svg",
  28684. extra: 1478 / 1381,
  28685. bottom: 5.5 / 1484
  28686. }
  28687. },
  28688. frontCasual: {
  28689. height: math.unit(7 + 6.451 / 12, "feet"),
  28690. weight: math.unit(200, "lb"),
  28691. name: "Front (Casual)",
  28692. image: {
  28693. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28694. extra: 1478 / 1381,
  28695. bottom: 5.5 / 1484
  28696. }
  28697. },
  28698. },
  28699. [
  28700. {
  28701. name: "Travel-Sized",
  28702. height: math.unit(7.45, "inches")
  28703. },
  28704. {
  28705. name: "Normal",
  28706. height: math.unit(7 + 6.451 / 12, "feet"),
  28707. default: true
  28708. },
  28709. {
  28710. name: "Hitting the Town",
  28711. height: math.unit(37 + 8 / 12, "feet")
  28712. },
  28713. {
  28714. name: "Stomp in the Suburbs",
  28715. height: math.unit(964 + 9.728 / 12, "feet")
  28716. },
  28717. {
  28718. name: "Sit on the City",
  28719. height: math.unit(61747 + 10.592 / 12, "feet")
  28720. },
  28721. {
  28722. name: "Glomp the Globe",
  28723. height: math.unit(252919327 + 4.832 / 12, "feet")
  28724. },
  28725. ]
  28726. ))
  28727. characterMakers.push(() => makeCharacter(
  28728. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28729. {
  28730. front: {
  28731. height: math.unit(6 + 4 / 12, "feet"),
  28732. weight: math.unit(320, "lb"),
  28733. name: "Front",
  28734. image: {
  28735. source: "./media/characters/balina-mahigan/front.svg",
  28736. extra: 447 / 428,
  28737. bottom: 18 / 466
  28738. }
  28739. },
  28740. back: {
  28741. height: math.unit(6 + 4 / 12, "feet"),
  28742. weight: math.unit(320, "lb"),
  28743. name: "Back",
  28744. image: {
  28745. source: "./media/characters/balina-mahigan/back.svg",
  28746. extra: 445 / 428,
  28747. bottom: 4.07 / 448
  28748. }
  28749. },
  28750. arm: {
  28751. height: math.unit(1.88, "feet"),
  28752. name: "Arm",
  28753. image: {
  28754. source: "./media/characters/balina-mahigan/arm.svg"
  28755. }
  28756. },
  28757. backPort: {
  28758. height: math.unit(0.685, "feet"),
  28759. name: "Back Port",
  28760. image: {
  28761. source: "./media/characters/balina-mahigan/back-port.svg"
  28762. }
  28763. },
  28764. hoofpaw: {
  28765. height: math.unit(1.41, "feet"),
  28766. name: "Hoofpaw",
  28767. image: {
  28768. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28769. }
  28770. },
  28771. leftHandBack: {
  28772. height: math.unit(0.938, "feet"),
  28773. name: "Left Hand (Back)",
  28774. image: {
  28775. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28776. }
  28777. },
  28778. leftHandFront: {
  28779. height: math.unit(0.938, "feet"),
  28780. name: "Left Hand (Front)",
  28781. image: {
  28782. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28783. }
  28784. },
  28785. rightHandBack: {
  28786. height: math.unit(0.95, "feet"),
  28787. name: "Right Hand (Back)",
  28788. image: {
  28789. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28790. }
  28791. },
  28792. rightHandFront: {
  28793. height: math.unit(0.95, "feet"),
  28794. name: "Right Hand (Front)",
  28795. image: {
  28796. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28797. }
  28798. },
  28799. },
  28800. [
  28801. {
  28802. name: "Normal",
  28803. height: math.unit(6 + 4 / 12, "feet"),
  28804. default: true
  28805. },
  28806. ]
  28807. ))
  28808. characterMakers.push(() => makeCharacter(
  28809. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28810. {
  28811. front: {
  28812. height: math.unit(6, "feet"),
  28813. weight: math.unit(320, "lb"),
  28814. name: "Front",
  28815. image: {
  28816. source: "./media/characters/balina-mejeri/front.svg",
  28817. extra: 517 / 488,
  28818. bottom: 44.2 / 561
  28819. }
  28820. },
  28821. },
  28822. [
  28823. {
  28824. name: "Normal",
  28825. height: math.unit(6 + 4 / 12, "feet")
  28826. },
  28827. {
  28828. name: "Business",
  28829. height: math.unit(155, "feet"),
  28830. default: true
  28831. },
  28832. ]
  28833. ))
  28834. characterMakers.push(() => makeCharacter(
  28835. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28836. {
  28837. kneeling: {
  28838. height: math.unit(6 + 4 / 12, "feet"),
  28839. weight: math.unit(300 * 20, "lb"),
  28840. name: "Kneeling",
  28841. image: {
  28842. source: "./media/characters/balbarian/kneeling.svg",
  28843. extra: 922 / 862,
  28844. bottom: 42.4 / 965
  28845. }
  28846. },
  28847. },
  28848. [
  28849. {
  28850. name: "Normal",
  28851. height: math.unit(6 + 4 / 12, "feet")
  28852. },
  28853. {
  28854. name: "Treasured",
  28855. height: math.unit(18 + 9 / 12, "feet"),
  28856. default: true
  28857. },
  28858. {
  28859. name: "Macro",
  28860. height: math.unit(900, "feet")
  28861. },
  28862. ]
  28863. ))
  28864. characterMakers.push(() => makeCharacter(
  28865. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28866. {
  28867. front: {
  28868. height: math.unit(6 + 4 / 12, "feet"),
  28869. weight: math.unit(325, "lb"),
  28870. name: "Front",
  28871. image: {
  28872. source: "./media/characters/balina-amarini/front.svg",
  28873. extra: 415 / 403,
  28874. bottom: 19 / 433.4
  28875. }
  28876. },
  28877. back: {
  28878. height: math.unit(6 + 4 / 12, "feet"),
  28879. weight: math.unit(325, "lb"),
  28880. name: "Back",
  28881. image: {
  28882. source: "./media/characters/balina-amarini/back.svg",
  28883. extra: 415 / 403,
  28884. bottom: 13.5 / 432
  28885. }
  28886. },
  28887. overdrive: {
  28888. height: math.unit(6 + 4 / 12, "feet"),
  28889. weight: math.unit(400, "lb"),
  28890. name: "Overdrive",
  28891. image: {
  28892. source: "./media/characters/balina-amarini/overdrive.svg",
  28893. extra: 269 / 259,
  28894. bottom: 12 / 282
  28895. }
  28896. },
  28897. },
  28898. [
  28899. {
  28900. name: "Boom",
  28901. height: math.unit(9 + 10 / 12, "feet"),
  28902. default: true
  28903. },
  28904. {
  28905. name: "Macro",
  28906. height: math.unit(280, "feet")
  28907. },
  28908. ]
  28909. ))
  28910. characterMakers.push(() => makeCharacter(
  28911. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  28912. {
  28913. goddess: {
  28914. height: math.unit(600, "feet"),
  28915. weight: math.unit(2000000, "tons"),
  28916. name: "Goddess",
  28917. image: {
  28918. source: "./media/characters/lady-kubwa/goddess.svg",
  28919. extra: 1240.5 / 1223,
  28920. bottom: 22 / 1263
  28921. }
  28922. },
  28923. goddesser: {
  28924. height: math.unit(900, "feet"),
  28925. weight: math.unit(20000000, "lb"),
  28926. name: "Goddess-er",
  28927. image: {
  28928. source: "./media/characters/lady-kubwa/goddess-er.svg",
  28929. extra: 899 / 888,
  28930. bottom: 12.6 / 912
  28931. }
  28932. },
  28933. },
  28934. [
  28935. {
  28936. name: "Macro",
  28937. height: math.unit(600, "feet"),
  28938. default: true
  28939. },
  28940. {
  28941. name: "Megamacro",
  28942. height: math.unit(250, "miles")
  28943. },
  28944. ]
  28945. ))
  28946. characterMakers.push(() => makeCharacter(
  28947. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  28948. {
  28949. front: {
  28950. height: math.unit(7 + 7 / 12, "feet"),
  28951. weight: math.unit(250, "lb"),
  28952. name: "Front",
  28953. image: {
  28954. source: "./media/characters/tala-grovehorn/front.svg",
  28955. extra: 2636 / 2525,
  28956. bottom: 147 / 2781
  28957. }
  28958. },
  28959. back: {
  28960. height: math.unit(7 + 7 / 12, "feet"),
  28961. weight: math.unit(250, "lb"),
  28962. name: "Back",
  28963. image: {
  28964. source: "./media/characters/tala-grovehorn/back.svg",
  28965. extra: 2635 / 2539,
  28966. bottom: 100 / 2732.8
  28967. }
  28968. },
  28969. mouth: {
  28970. height: math.unit(1.15, "feet"),
  28971. name: "Mouth",
  28972. image: {
  28973. source: "./media/characters/tala-grovehorn/mouth.svg"
  28974. }
  28975. },
  28976. dick: {
  28977. height: math.unit(2.36, "feet"),
  28978. name: "Dick",
  28979. image: {
  28980. source: "./media/characters/tala-grovehorn/dick.svg"
  28981. }
  28982. },
  28983. slit: {
  28984. height: math.unit(0.61, "feet"),
  28985. name: "Slit",
  28986. image: {
  28987. source: "./media/characters/tala-grovehorn/slit.svg"
  28988. }
  28989. },
  28990. },
  28991. [
  28992. ]
  28993. ))
  28994. characterMakers.push(() => makeCharacter(
  28995. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  28996. {
  28997. front: {
  28998. height: math.unit(7 + 7 / 12, "feet"),
  28999. weight: math.unit(225, "lb"),
  29000. name: "Front",
  29001. image: {
  29002. source: "./media/characters/epona/front.svg",
  29003. extra: 2445 / 2290,
  29004. bottom: 251 / 2696
  29005. }
  29006. },
  29007. back: {
  29008. height: math.unit(7 + 7 / 12, "feet"),
  29009. weight: math.unit(225, "lb"),
  29010. name: "Back",
  29011. image: {
  29012. source: "./media/characters/epona/back.svg",
  29013. extra: 2546 / 2408,
  29014. bottom: 44 / 2589
  29015. }
  29016. },
  29017. genitals: {
  29018. height: math.unit(1.5, "feet"),
  29019. name: "Genitals",
  29020. image: {
  29021. source: "./media/characters/epona/genitals.svg"
  29022. }
  29023. },
  29024. },
  29025. [
  29026. {
  29027. name: "Normal",
  29028. height: math.unit(7 + 7 / 12, "feet"),
  29029. default: true
  29030. },
  29031. ]
  29032. ))
  29033. characterMakers.push(() => makeCharacter(
  29034. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29035. {
  29036. front: {
  29037. height: math.unit(7, "feet"),
  29038. weight: math.unit(518, "lb"),
  29039. name: "Front",
  29040. image: {
  29041. source: "./media/characters/avia-bloodbourn/front.svg",
  29042. extra: 1466 / 1350,
  29043. bottom: 65 / 1527
  29044. }
  29045. },
  29046. },
  29047. [
  29048. ]
  29049. ))
  29050. characterMakers.push(() => makeCharacter(
  29051. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29052. {
  29053. front: {
  29054. height: math.unit(9.35, "feet"),
  29055. weight: math.unit(600, "lb"),
  29056. name: "Front",
  29057. image: {
  29058. source: "./media/characters/amera/front.svg",
  29059. extra: 891 / 818,
  29060. bottom: 30 / 922.7
  29061. }
  29062. },
  29063. back: {
  29064. height: math.unit(9.35, "feet"),
  29065. weight: math.unit(600, "lb"),
  29066. name: "Back",
  29067. image: {
  29068. source: "./media/characters/amera/back.svg",
  29069. extra: 876 / 824,
  29070. bottom: 6.8 / 884
  29071. }
  29072. },
  29073. dick: {
  29074. height: math.unit(2.14, "feet"),
  29075. name: "Dick",
  29076. image: {
  29077. source: "./media/characters/amera/dick.svg"
  29078. }
  29079. },
  29080. },
  29081. [
  29082. {
  29083. name: "Normal",
  29084. height: math.unit(9.35, "feet"),
  29085. default: true
  29086. },
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29091. {
  29092. kneeling: {
  29093. height: math.unit(3 + 4 / 12, "feet"),
  29094. weight: math.unit(90, "lb"),
  29095. name: "Kneeling",
  29096. image: {
  29097. source: "./media/characters/rosewen/kneeling.svg",
  29098. extra: 1835 / 1571,
  29099. bottom: 27.7 / 1862
  29100. }
  29101. },
  29102. },
  29103. [
  29104. {
  29105. name: "Normal",
  29106. height: math.unit(3 + 4 / 12, "feet"),
  29107. default: true
  29108. },
  29109. ]
  29110. ))
  29111. characterMakers.push(() => makeCharacter(
  29112. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29113. {
  29114. front: {
  29115. height: math.unit(5 + 10 / 12, "feet"),
  29116. weight: math.unit(200, "lb"),
  29117. name: "Front",
  29118. image: {
  29119. source: "./media/characters/sabah/front.svg",
  29120. extra: 849 / 763,
  29121. bottom: 33.9 / 881
  29122. }
  29123. },
  29124. },
  29125. [
  29126. {
  29127. name: "Normal",
  29128. height: math.unit(5 + 10 / 12, "feet"),
  29129. default: true
  29130. },
  29131. ]
  29132. ))
  29133. characterMakers.push(() => makeCharacter(
  29134. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29135. {
  29136. front: {
  29137. height: math.unit(3 + 5 / 12, "feet"),
  29138. weight: math.unit(40, "kg"),
  29139. name: "Front",
  29140. image: {
  29141. source: "./media/characters/purple-flame/front.svg",
  29142. extra: 1577 / 1412,
  29143. bottom: 97 / 1694
  29144. }
  29145. },
  29146. frontDressed: {
  29147. height: math.unit(3 + 5 / 12, "feet"),
  29148. weight: math.unit(40, "kg"),
  29149. name: "Front (Dressed)",
  29150. image: {
  29151. source: "./media/characters/purple-flame/front-dressed.svg",
  29152. extra: 1577 / 1412,
  29153. bottom: 97 / 1694
  29154. }
  29155. },
  29156. headphones: {
  29157. height: math.unit(0.85, "feet"),
  29158. name: "Headphones",
  29159. image: {
  29160. source: "./media/characters/purple-flame/headphones.svg"
  29161. }
  29162. },
  29163. },
  29164. [
  29165. {
  29166. name: "Really Small",
  29167. height: math.unit(5, "cm")
  29168. },
  29169. {
  29170. name: "Micro",
  29171. height: math.unit(1 + 5 / 12, "feet")
  29172. },
  29173. {
  29174. name: "Normal",
  29175. height: math.unit(3 + 5 / 12, "feet"),
  29176. default: true
  29177. },
  29178. {
  29179. name: "Minimacro",
  29180. height: math.unit(125, "feet")
  29181. },
  29182. {
  29183. name: "Macro",
  29184. height: math.unit(0.5, "miles")
  29185. },
  29186. {
  29187. name: "Megamacro",
  29188. height: math.unit(50, "miles")
  29189. },
  29190. {
  29191. name: "Gigantic",
  29192. height: math.unit(750, "miles")
  29193. },
  29194. {
  29195. name: "Planetary",
  29196. height: math.unit(15000, "miles")
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29202. {
  29203. front: {
  29204. height: math.unit(14, "feet"),
  29205. weight: math.unit(959, "lb"),
  29206. name: "Front",
  29207. image: {
  29208. source: "./media/characters/arsenal/front.svg",
  29209. extra: 2357 / 2157,
  29210. bottom: 93 / 2458
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Normal",
  29217. height: math.unit(14, "feet"),
  29218. default: true
  29219. },
  29220. ]
  29221. ))
  29222. characterMakers.push(() => makeCharacter(
  29223. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29224. {
  29225. front: {
  29226. height: math.unit(6, "feet"),
  29227. weight: math.unit(150, "lb"),
  29228. name: "Front",
  29229. image: {
  29230. source: "./media/characters/adira/front.svg",
  29231. extra: 1078 / 1029,
  29232. bottom: 87 / 1166
  29233. }
  29234. },
  29235. },
  29236. [
  29237. {
  29238. name: "Micro",
  29239. height: math.unit(4, "inches"),
  29240. default: true
  29241. },
  29242. {
  29243. name: "Macro",
  29244. height: math.unit(50, "feet")
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(16, "feet"),
  29253. weight: math.unit(1000, "lb"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/grim/front.svg",
  29257. extra: 622 / 614,
  29258. bottom: 18.1 / 642
  29259. }
  29260. },
  29261. back: {
  29262. height: math.unit(16, "feet"),
  29263. weight: math.unit(1000, "lb"),
  29264. name: "Back",
  29265. image: {
  29266. source: "./media/characters/grim/back.svg",
  29267. extra: 610.6 / 602,
  29268. bottom: 40.8 / 652
  29269. }
  29270. },
  29271. hunched: {
  29272. height: math.unit(9.75, "feet"),
  29273. weight: math.unit(1000, "lb"),
  29274. name: "Hunched",
  29275. image: {
  29276. source: "./media/characters/grim/hunched.svg",
  29277. extra: 304 / 297,
  29278. bottom: 35.4 / 394
  29279. }
  29280. },
  29281. },
  29282. [
  29283. {
  29284. name: "Normal",
  29285. height: math.unit(16, "feet"),
  29286. default: true
  29287. },
  29288. ]
  29289. ))
  29290. characterMakers.push(() => makeCharacter(
  29291. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29292. {
  29293. front: {
  29294. height: math.unit(2.3, "meters"),
  29295. weight: math.unit(300, "lb"),
  29296. name: "Front",
  29297. image: {
  29298. source: "./media/characters/sinja/front-sfw.svg",
  29299. extra: 1393 / 1294,
  29300. bottom: 70 / 1463
  29301. }
  29302. },
  29303. frontNsfw: {
  29304. height: math.unit(2.3, "meters"),
  29305. weight: math.unit(300, "lb"),
  29306. name: "Front (NSFW)",
  29307. image: {
  29308. source: "./media/characters/sinja/front-nsfw.svg",
  29309. extra: 1393 / 1294,
  29310. bottom: 70 / 1463
  29311. }
  29312. },
  29313. back: {
  29314. height: math.unit(2.3, "meters"),
  29315. weight: math.unit(300, "lb"),
  29316. name: "Back",
  29317. image: {
  29318. source: "./media/characters/sinja/back.svg",
  29319. extra: 1393 / 1294,
  29320. bottom: 70 / 1463
  29321. }
  29322. },
  29323. head: {
  29324. height: math.unit(1.771, "feet"),
  29325. name: "Head",
  29326. image: {
  29327. source: "./media/characters/sinja/head.svg"
  29328. }
  29329. },
  29330. slit: {
  29331. height: math.unit(0.8, "feet"),
  29332. name: "Slit",
  29333. image: {
  29334. source: "./media/characters/sinja/slit.svg"
  29335. }
  29336. },
  29337. },
  29338. [
  29339. {
  29340. name: "Normal",
  29341. height: math.unit(2.3, "meters")
  29342. },
  29343. {
  29344. name: "Macro",
  29345. height: math.unit(91, "meters"),
  29346. default: true
  29347. },
  29348. {
  29349. name: "Megamacro",
  29350. height: math.unit(91440, "meters")
  29351. },
  29352. {
  29353. name: "Gigamacro",
  29354. height: math.unit(60960000, "meters")
  29355. },
  29356. {
  29357. name: "Teramacro",
  29358. height: math.unit(9144000000, "meters")
  29359. },
  29360. ]
  29361. ))
  29362. characterMakers.push(() => makeCharacter(
  29363. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29364. {
  29365. front: {
  29366. height: math.unit(1.7, "meters"),
  29367. weight: math.unit(130, "lb"),
  29368. name: "Front",
  29369. image: {
  29370. source: "./media/characters/kyu/front.svg",
  29371. extra: 415 / 395,
  29372. bottom: 5 / 420
  29373. }
  29374. },
  29375. head: {
  29376. height: math.unit(1.75, "feet"),
  29377. name: "Head",
  29378. image: {
  29379. source: "./media/characters/kyu/head.svg"
  29380. }
  29381. },
  29382. foot: {
  29383. height: math.unit(0.81, "feet"),
  29384. name: "Foot",
  29385. image: {
  29386. source: "./media/characters/kyu/foot.svg"
  29387. }
  29388. },
  29389. },
  29390. [
  29391. {
  29392. name: "Normal",
  29393. height: math.unit(1.7, "meters")
  29394. },
  29395. {
  29396. name: "Macro",
  29397. height: math.unit(131, "feet"),
  29398. default: true
  29399. },
  29400. {
  29401. name: "Megamacro",
  29402. height: math.unit(91440, "meters")
  29403. },
  29404. {
  29405. name: "Gigamacro",
  29406. height: math.unit(60960000, "meters")
  29407. },
  29408. {
  29409. name: "Teramacro",
  29410. height: math.unit(9144000000, "meters")
  29411. },
  29412. ]
  29413. ))
  29414. characterMakers.push(() => makeCharacter(
  29415. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29416. {
  29417. front: {
  29418. height: math.unit(7 + 1 / 12, "feet"),
  29419. weight: math.unit(250, "lb"),
  29420. name: "Front",
  29421. image: {
  29422. source: "./media/characters/joey/front.svg",
  29423. extra: 1791 / 1537,
  29424. bottom: 28 / 1816
  29425. }
  29426. },
  29427. },
  29428. [
  29429. {
  29430. name: "Micro",
  29431. height: math.unit(3, "inches")
  29432. },
  29433. {
  29434. name: "Normal",
  29435. height: math.unit(7 + 1 / 12, "feet"),
  29436. default: true
  29437. },
  29438. ]
  29439. ))
  29440. characterMakers.push(() => makeCharacter(
  29441. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29442. {
  29443. front: {
  29444. height: math.unit(165, "cm"),
  29445. weight: math.unit(140, "lb"),
  29446. name: "Front",
  29447. image: {
  29448. source: "./media/characters/sam-evans/front.svg",
  29449. extra: 3417 / 3230,
  29450. bottom: 41.3 / 3417
  29451. }
  29452. },
  29453. frontSixTails: {
  29454. height: math.unit(165, "cm"),
  29455. weight: math.unit(140, "lb"),
  29456. name: "Front-six-tails",
  29457. image: {
  29458. source: "./media/characters/sam-evans/front-six-tails.svg",
  29459. extra: 3417 / 3230,
  29460. bottom: 41.3 / 3417
  29461. }
  29462. },
  29463. back: {
  29464. height: math.unit(165, "cm"),
  29465. weight: math.unit(140, "lb"),
  29466. name: "Back",
  29467. image: {
  29468. source: "./media/characters/sam-evans/back.svg",
  29469. extra: 3227 / 3032,
  29470. bottom: 6.8 / 3234
  29471. }
  29472. },
  29473. face: {
  29474. height: math.unit(0.68, "feet"),
  29475. name: "Face",
  29476. image: {
  29477. source: "./media/characters/sam-evans/face.svg"
  29478. }
  29479. },
  29480. },
  29481. [
  29482. {
  29483. name: "Normal",
  29484. height: math.unit(165, "cm"),
  29485. default: true
  29486. },
  29487. {
  29488. name: "Macro",
  29489. height: math.unit(100, "meters")
  29490. },
  29491. {
  29492. name: "Macro+",
  29493. height: math.unit(800, "meters")
  29494. },
  29495. {
  29496. name: "Macro++",
  29497. height: math.unit(3, "km")
  29498. },
  29499. {
  29500. name: "Macro+++",
  29501. height: math.unit(30, "km")
  29502. },
  29503. ]
  29504. ))
  29505. characterMakers.push(() => makeCharacter(
  29506. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29507. {
  29508. front: {
  29509. height: math.unit(10, "feet"),
  29510. weight: math.unit(750, "lb"),
  29511. name: "Front",
  29512. image: {
  29513. source: "./media/characters/juliet-a/front.svg",
  29514. extra: 1766 / 1720,
  29515. bottom: 43 / 1809
  29516. }
  29517. },
  29518. back: {
  29519. height: math.unit(10, "feet"),
  29520. weight: math.unit(750, "lb"),
  29521. name: "Back",
  29522. image: {
  29523. source: "./media/characters/juliet-a/back.svg",
  29524. extra: 1781 / 1734,
  29525. bottom: 35 / 1810,
  29526. }
  29527. },
  29528. },
  29529. [
  29530. {
  29531. name: "Normal",
  29532. height: math.unit(10, "feet"),
  29533. default: true
  29534. },
  29535. {
  29536. name: "Dragon Form",
  29537. height: math.unit(250, "feet")
  29538. },
  29539. {
  29540. name: "Macro",
  29541. height: math.unit(1000, "feet")
  29542. },
  29543. {
  29544. name: "Megamacro",
  29545. height: math.unit(10000, "feet")
  29546. }
  29547. ]
  29548. ))
  29549. characterMakers.push(() => makeCharacter(
  29550. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29551. {
  29552. regular: {
  29553. height: math.unit(7 + 3 / 12, "feet"),
  29554. weight: math.unit(260, "lb"),
  29555. name: "Regular",
  29556. image: {
  29557. source: "./media/characters/wild/regular.svg",
  29558. extra: 97.45 / 92,
  29559. bottom: 6.8 / 104.3
  29560. }
  29561. },
  29562. biggums: {
  29563. height: math.unit(8 + 6 / 12, "feet"),
  29564. weight: math.unit(425, "lb"),
  29565. name: "Biggums",
  29566. image: {
  29567. source: "./media/characters/wild/biggums.svg",
  29568. extra: 97.45 / 92,
  29569. bottom: 7.5 / 132.34
  29570. }
  29571. },
  29572. mawRegular: {
  29573. height: math.unit(1.24, "feet"),
  29574. name: "Maw (Regular)",
  29575. image: {
  29576. source: "./media/characters/wild/maw.svg"
  29577. }
  29578. },
  29579. mawBiggums: {
  29580. height: math.unit(1.47, "feet"),
  29581. name: "Maw (Biggums)",
  29582. image: {
  29583. source: "./media/characters/wild/maw.svg"
  29584. }
  29585. },
  29586. },
  29587. [
  29588. {
  29589. name: "Normal",
  29590. height: math.unit(7 + 3 / 12, "feet"),
  29591. default: true
  29592. },
  29593. ]
  29594. ))
  29595. characterMakers.push(() => makeCharacter(
  29596. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29597. {
  29598. front: {
  29599. height: math.unit(2.5, "meters"),
  29600. weight: math.unit(200, "kg"),
  29601. name: "Front",
  29602. image: {
  29603. source: "./media/characters/vidar/front.svg",
  29604. extra: 2994 / 2795,
  29605. bottom: 56 / 3061
  29606. }
  29607. },
  29608. back: {
  29609. height: math.unit(2.5, "meters"),
  29610. weight: math.unit(200, "kg"),
  29611. name: "Back",
  29612. image: {
  29613. source: "./media/characters/vidar/back.svg",
  29614. extra: 3131 / 2928,
  29615. bottom: 13.5 / 3141.5
  29616. }
  29617. },
  29618. feral: {
  29619. height: math.unit(2.5, "meters"),
  29620. weight: math.unit(2000, "kg"),
  29621. name: "Feral",
  29622. image: {
  29623. source: "./media/characters/vidar/feral.svg",
  29624. extra: 2790 / 1765,
  29625. bottom: 6 / 2796
  29626. }
  29627. },
  29628. },
  29629. [
  29630. {
  29631. name: "Normal",
  29632. height: math.unit(2.5, "meters"),
  29633. default: true
  29634. },
  29635. {
  29636. name: "Macro",
  29637. height: math.unit(100, "meters")
  29638. },
  29639. ]
  29640. ))
  29641. characterMakers.push(() => makeCharacter(
  29642. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29643. {
  29644. front: {
  29645. height: math.unit(5 + 9 / 12, "feet"),
  29646. weight: math.unit(120, "lb"),
  29647. name: "Front",
  29648. image: {
  29649. source: "./media/characters/ash/front.svg",
  29650. extra: 2189 / 1961,
  29651. bottom: 5.2 / 2194
  29652. }
  29653. },
  29654. },
  29655. [
  29656. {
  29657. name: "Normal",
  29658. height: math.unit(5 + 9 / 12, "feet"),
  29659. default: true
  29660. },
  29661. ]
  29662. ))
  29663. characterMakers.push(() => makeCharacter(
  29664. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29665. {
  29666. front: {
  29667. height: math.unit(9, "feet"),
  29668. weight: math.unit(10000, "lb"),
  29669. name: "Front",
  29670. image: {
  29671. source: "./media/characters/gygabite/front.svg",
  29672. bottom: 31.7 / 537.8,
  29673. extra: 505 / 370
  29674. }
  29675. },
  29676. },
  29677. [
  29678. {
  29679. name: "Normal",
  29680. height: math.unit(9, "feet"),
  29681. default: true
  29682. },
  29683. ]
  29684. ))
  29685. characterMakers.push(() => makeCharacter(
  29686. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29687. {
  29688. front: {
  29689. height: math.unit(12, "feet"),
  29690. weight: math.unit(4000, "lb"),
  29691. name: "Front",
  29692. image: {
  29693. source: "./media/characters/p0tat0/front.svg",
  29694. extra: 1065 / 921,
  29695. bottom: 55.7 / 1121.25
  29696. }
  29697. },
  29698. },
  29699. [
  29700. {
  29701. name: "Normal",
  29702. height: math.unit(12, "feet"),
  29703. default: true
  29704. },
  29705. ]
  29706. ))
  29707. characterMakers.push(() => makeCharacter(
  29708. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29709. {
  29710. side: {
  29711. height: math.unit(6.5, "feet"),
  29712. weight: math.unit(800, "lb"),
  29713. name: "Side",
  29714. image: {
  29715. source: "./media/characters/dusk/side.svg",
  29716. extra: 615 / 373,
  29717. bottom: 53 / 664
  29718. }
  29719. },
  29720. sitting: {
  29721. height: math.unit(7, "feet"),
  29722. weight: math.unit(800, "lb"),
  29723. name: "Sitting",
  29724. image: {
  29725. source: "./media/characters/dusk/sitting.svg",
  29726. extra: 753 / 425,
  29727. bottom: 33 / 774
  29728. }
  29729. },
  29730. head: {
  29731. height: math.unit(6.1, "feet"),
  29732. name: "Head",
  29733. image: {
  29734. source: "./media/characters/dusk/head.svg"
  29735. }
  29736. },
  29737. },
  29738. [
  29739. {
  29740. name: "Normal",
  29741. height: math.unit(7, "feet"),
  29742. default: true
  29743. },
  29744. ]
  29745. ))
  29746. characterMakers.push(() => makeCharacter(
  29747. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29748. {
  29749. front: {
  29750. height: math.unit(15, "feet"),
  29751. weight: math.unit(7000, "lb"),
  29752. name: "Front",
  29753. image: {
  29754. source: "./media/characters/jay-direwolf/front.svg",
  29755. extra: 1810 / 1732,
  29756. bottom: 66 / 1892
  29757. }
  29758. },
  29759. },
  29760. [
  29761. {
  29762. name: "Normal",
  29763. height: math.unit(15, "feet"),
  29764. default: true
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(4 + 9 / 12, "feet"),
  29773. weight: math.unit(130, "lb"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/anchovie/front.svg",
  29777. extra: 382 / 350,
  29778. bottom: 25 / 409
  29779. }
  29780. },
  29781. back: {
  29782. height: math.unit(4 + 9 / 12, "feet"),
  29783. weight: math.unit(130, "lb"),
  29784. name: "Back",
  29785. image: {
  29786. source: "./media/characters/anchovie/back.svg",
  29787. extra: 385 / 352,
  29788. bottom: 16.6 / 402
  29789. }
  29790. },
  29791. frontDressed: {
  29792. height: math.unit(4 + 9 / 12, "feet"),
  29793. weight: math.unit(130, "lb"),
  29794. name: "Front (Dressed)",
  29795. image: {
  29796. source: "./media/characters/anchovie/front-dressed.svg",
  29797. extra: 382 / 350,
  29798. bottom: 25 / 409
  29799. }
  29800. },
  29801. backDressed: {
  29802. height: math.unit(4 + 9 / 12, "feet"),
  29803. weight: math.unit(130, "lb"),
  29804. name: "Back (Dressed)",
  29805. image: {
  29806. source: "./media/characters/anchovie/back-dressed.svg",
  29807. extra: 385 / 352,
  29808. bottom: 16.6 / 402
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Micro",
  29815. height: math.unit(6.4, "inches")
  29816. },
  29817. {
  29818. name: "Normal",
  29819. height: math.unit(4 + 9 / 12, "feet"),
  29820. default: true
  29821. },
  29822. ]
  29823. ))
  29824. characterMakers.push(() => makeCharacter(
  29825. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29826. {
  29827. front: {
  29828. height: math.unit(2, "meters"),
  29829. weight: math.unit(180, "lb"),
  29830. name: "Front",
  29831. image: {
  29832. source: "./media/characters/acidrenamon/front.svg",
  29833. extra: 987 / 890,
  29834. bottom: 22.8 / 1009
  29835. }
  29836. },
  29837. back: {
  29838. height: math.unit(2, "meters"),
  29839. weight: math.unit(180, "lb"),
  29840. name: "Back",
  29841. image: {
  29842. source: "./media/characters/acidrenamon/back.svg",
  29843. extra: 983 / 891,
  29844. bottom: 8.4 / 992
  29845. }
  29846. },
  29847. head: {
  29848. height: math.unit(1.92, "feet"),
  29849. name: "Head",
  29850. image: {
  29851. source: "./media/characters/acidrenamon/head.svg"
  29852. }
  29853. },
  29854. rump: {
  29855. height: math.unit(1.72, "feet"),
  29856. name: "Rump",
  29857. image: {
  29858. source: "./media/characters/acidrenamon/rump.svg"
  29859. }
  29860. },
  29861. tail: {
  29862. height: math.unit(4.2, "feet"),
  29863. name: "Tail",
  29864. image: {
  29865. source: "./media/characters/acidrenamon/tail.svg"
  29866. }
  29867. },
  29868. },
  29869. [
  29870. {
  29871. name: "Normal",
  29872. height: math.unit(2, "meters"),
  29873. default: true
  29874. },
  29875. {
  29876. name: "Minimacro",
  29877. height: math.unit(7, "meters")
  29878. },
  29879. {
  29880. name: "Macro",
  29881. height: math.unit(200, "meters")
  29882. },
  29883. {
  29884. name: "Gigamacro",
  29885. height: math.unit(0.2, "earths")
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29891. {
  29892. front: {
  29893. height: math.unit(152, "feet"),
  29894. name: "Front",
  29895. image: {
  29896. source: "./media/characters/kenzie-lee/front.svg",
  29897. extra: 1869/1774,
  29898. bottom: 128/1997
  29899. }
  29900. },
  29901. side: {
  29902. height: math.unit(86, "feet"),
  29903. name: "Side",
  29904. image: {
  29905. source: "./media/characters/kenzie-lee/side.svg",
  29906. extra: 930/815,
  29907. bottom: 177/1107
  29908. }
  29909. },
  29910. paw: {
  29911. height: math.unit(15, "feet"),
  29912. name: "Paw",
  29913. image: {
  29914. source: "./media/characters/kenzie-lee/paw.svg"
  29915. }
  29916. },
  29917. },
  29918. [
  29919. {
  29920. name: "Kenzie Flea",
  29921. height: math.unit(2, "mm"),
  29922. default: true
  29923. },
  29924. {
  29925. name: "Micro",
  29926. height: math.unit(2, "inches")
  29927. },
  29928. {
  29929. name: "Normal",
  29930. height: math.unit(152, "feet")
  29931. },
  29932. {
  29933. name: "Megamacro",
  29934. height: math.unit(7, "miles")
  29935. },
  29936. {
  29937. name: "Gigamacro",
  29938. height: math.unit(8000, "miles")
  29939. },
  29940. ]
  29941. ))
  29942. characterMakers.push(() => makeCharacter(
  29943. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  29944. {
  29945. front: {
  29946. height: math.unit(6, "feet"),
  29947. name: "Front",
  29948. image: {
  29949. source: "./media/characters/withers/front.svg",
  29950. extra: 1935/1760,
  29951. bottom: 72/2007
  29952. }
  29953. },
  29954. back: {
  29955. height: math.unit(6, "feet"),
  29956. name: "Back",
  29957. image: {
  29958. source: "./media/characters/withers/back.svg",
  29959. extra: 1944/1792,
  29960. bottom: 12/1956
  29961. }
  29962. },
  29963. dressed: {
  29964. height: math.unit(6, "feet"),
  29965. name: "Dressed",
  29966. image: {
  29967. source: "./media/characters/withers/dressed.svg",
  29968. extra: 1937/1765,
  29969. bottom: 73/2010
  29970. }
  29971. },
  29972. phase1: {
  29973. height: math.unit(1.1, "feet"),
  29974. name: "Phase 1",
  29975. image: {
  29976. source: "./media/characters/withers/phase-1.svg",
  29977. extra: 1885/1232,
  29978. bottom: 0/1885
  29979. }
  29980. },
  29981. phase2: {
  29982. height: math.unit(1.05, "feet"),
  29983. name: "Phase 2",
  29984. image: {
  29985. source: "./media/characters/withers/phase-2.svg",
  29986. extra: 1792/1090,
  29987. bottom: 0/1792
  29988. }
  29989. },
  29990. partyWipe: {
  29991. height: math.unit(1.1, "feet"),
  29992. name: "Party Wipe",
  29993. image: {
  29994. source: "./media/characters/withers/party-wipe.svg",
  29995. extra: 1864/1207,
  29996. bottom: 0/1864
  29997. }
  29998. },
  29999. },
  30000. [
  30001. {
  30002. name: "Macro",
  30003. height: math.unit(167, "feet"),
  30004. default: true
  30005. },
  30006. {
  30007. name: "Megamacro",
  30008. height: math.unit(15, "miles")
  30009. }
  30010. ]
  30011. ))
  30012. characterMakers.push(() => makeCharacter(
  30013. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30014. {
  30015. front: {
  30016. height: math.unit(6 + 7 / 12, "feet"),
  30017. weight: math.unit(250, "lb"),
  30018. name: "Front",
  30019. image: {
  30020. source: "./media/characters/nemoskii/front.svg",
  30021. extra: 2270 / 1734,
  30022. bottom: 86 / 2354
  30023. }
  30024. },
  30025. back: {
  30026. height: math.unit(6 + 7 / 12, "feet"),
  30027. weight: math.unit(250, "lb"),
  30028. name: "Back",
  30029. image: {
  30030. source: "./media/characters/nemoskii/back.svg",
  30031. extra: 1845 / 1788,
  30032. bottom: 10.5 / 1852
  30033. }
  30034. },
  30035. head: {
  30036. height: math.unit(1.31, "feet"),
  30037. name: "Head",
  30038. image: {
  30039. source: "./media/characters/nemoskii/head.svg"
  30040. }
  30041. },
  30042. },
  30043. [
  30044. {
  30045. name: "Micro",
  30046. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30047. },
  30048. {
  30049. name: "Normal",
  30050. height: math.unit(6 + 7 / 12, "feet"),
  30051. default: true
  30052. },
  30053. {
  30054. name: "Macro",
  30055. height: math.unit((6 + 7 / 12) * 150, "feet")
  30056. },
  30057. {
  30058. name: "Macro+",
  30059. height: math.unit((6 + 7 / 12) * 500, "feet")
  30060. },
  30061. {
  30062. name: "Megamacro",
  30063. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30064. },
  30065. ]
  30066. ))
  30067. characterMakers.push(() => makeCharacter(
  30068. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30069. {
  30070. front: {
  30071. height: math.unit(1, "mile"),
  30072. weight: math.unit(265261.9, "lb"),
  30073. name: "Front",
  30074. image: {
  30075. source: "./media/characters/shui/front.svg",
  30076. extra: 1633 / 1564,
  30077. bottom: 91.5 / 1726
  30078. }
  30079. },
  30080. },
  30081. [
  30082. {
  30083. name: "Macro",
  30084. height: math.unit(1, "mile"),
  30085. default: true
  30086. },
  30087. ]
  30088. ))
  30089. characterMakers.push(() => makeCharacter(
  30090. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30091. {
  30092. front: {
  30093. height: math.unit(12 + 6 / 12, "feet"),
  30094. weight: math.unit(1342, "lb"),
  30095. name: "Front",
  30096. image: {
  30097. source: "./media/characters/arokh-takakura/front.svg",
  30098. extra: 1089 / 1043,
  30099. bottom: 77.4 / 1176.7
  30100. }
  30101. },
  30102. back: {
  30103. height: math.unit(12 + 6 / 12, "feet"),
  30104. weight: math.unit(1342, "lb"),
  30105. name: "Back",
  30106. image: {
  30107. source: "./media/characters/arokh-takakura/back.svg",
  30108. extra: 1046 / 1019,
  30109. bottom: 102 / 1150
  30110. }
  30111. },
  30112. },
  30113. [
  30114. {
  30115. name: "Big",
  30116. height: math.unit(12 + 6 / 12, "feet"),
  30117. default: true
  30118. },
  30119. ]
  30120. ))
  30121. characterMakers.push(() => makeCharacter(
  30122. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30123. {
  30124. front: {
  30125. height: math.unit(5 + 6 / 12, "feet"),
  30126. weight: math.unit(150, "lb"),
  30127. name: "Front",
  30128. image: {
  30129. source: "./media/characters/theo/front.svg",
  30130. extra: 1184 / 1131,
  30131. bottom: 7.4 / 1191
  30132. }
  30133. },
  30134. },
  30135. [
  30136. {
  30137. name: "Micro",
  30138. height: math.unit(5, "inches")
  30139. },
  30140. {
  30141. name: "Normal",
  30142. height: math.unit(5 + 6 / 12, "feet"),
  30143. default: true
  30144. },
  30145. ]
  30146. ))
  30147. characterMakers.push(() => makeCharacter(
  30148. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30149. {
  30150. front: {
  30151. height: math.unit(5 + 9 / 12, "feet"),
  30152. weight: math.unit(130, "lb"),
  30153. name: "Front",
  30154. image: {
  30155. source: "./media/characters/cecelia-swift/front.svg",
  30156. extra: 502 / 484,
  30157. bottom: 23 / 523
  30158. }
  30159. },
  30160. back: {
  30161. height: math.unit(5 + 9 / 12, "feet"),
  30162. weight: math.unit(130, "lb"),
  30163. name: "Back",
  30164. image: {
  30165. source: "./media/characters/cecelia-swift/back.svg",
  30166. extra: 499 / 485,
  30167. bottom: 12 / 511
  30168. }
  30169. },
  30170. head: {
  30171. height: math.unit(0.90, "feet"),
  30172. name: "Head",
  30173. image: {
  30174. source: "./media/characters/cecelia-swift/head.svg"
  30175. }
  30176. },
  30177. rump: {
  30178. height: math.unit(1.75, "feet"),
  30179. name: "Rump",
  30180. image: {
  30181. source: "./media/characters/cecelia-swift/rump.svg"
  30182. }
  30183. },
  30184. },
  30185. [
  30186. {
  30187. name: "Normal",
  30188. height: math.unit(5 + 9 / 12, "feet"),
  30189. default: true
  30190. },
  30191. {
  30192. name: "Big",
  30193. height: math.unit(50, "feet")
  30194. },
  30195. {
  30196. name: "Macro",
  30197. height: math.unit(100, "feet")
  30198. },
  30199. {
  30200. name: "Macro+",
  30201. height: math.unit(500, "feet")
  30202. },
  30203. {
  30204. name: "Macro++",
  30205. height: math.unit(1000, "feet")
  30206. },
  30207. ]
  30208. ))
  30209. characterMakers.push(() => makeCharacter(
  30210. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30211. {
  30212. front: {
  30213. height: math.unit(6, "feet"),
  30214. weight: math.unit(150, "lb"),
  30215. name: "Front",
  30216. image: {
  30217. source: "./media/characters/kaunan/front.svg",
  30218. extra: 2890 / 2523,
  30219. bottom: 49 / 2939
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Macro",
  30226. height: math.unit(150, "feet"),
  30227. default: true
  30228. },
  30229. ]
  30230. ))
  30231. characterMakers.push(() => makeCharacter(
  30232. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30233. {
  30234. dressed: {
  30235. height: math.unit(175, "cm"),
  30236. weight: math.unit(60, "kg"),
  30237. name: "Dressed",
  30238. image: {
  30239. source: "./media/characters/fei/dressed.svg",
  30240. extra: 1402/1278,
  30241. bottom: 27/1429
  30242. }
  30243. },
  30244. nude: {
  30245. height: math.unit(175, "cm"),
  30246. weight: math.unit(60, "kg"),
  30247. name: "Nude",
  30248. image: {
  30249. source: "./media/characters/fei/nude.svg",
  30250. extra: 1402/1278,
  30251. bottom: 27/1429
  30252. }
  30253. },
  30254. heels: {
  30255. height: math.unit(0.466, "feet"),
  30256. name: "Heels",
  30257. image: {
  30258. source: "./media/characters/fei/heels.svg",
  30259. extra: 156/152,
  30260. bottom: 28/184
  30261. }
  30262. },
  30263. },
  30264. [
  30265. {
  30266. name: "Mortal",
  30267. height: math.unit(175, "cm")
  30268. },
  30269. {
  30270. name: "Normal",
  30271. height: math.unit(3500, "m")
  30272. },
  30273. {
  30274. name: "Stroll",
  30275. height: math.unit(18.4, "km"),
  30276. default: true
  30277. },
  30278. {
  30279. name: "Showoff",
  30280. height: math.unit(175, "km")
  30281. },
  30282. ]
  30283. ))
  30284. characterMakers.push(() => makeCharacter(
  30285. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30286. {
  30287. front: {
  30288. height: math.unit(7, "feet"),
  30289. weight: math.unit(1000, "kg"),
  30290. name: "Front",
  30291. image: {
  30292. source: "./media/characters/edrax/front.svg",
  30293. extra: 2838 / 2550,
  30294. bottom: 130 / 2968
  30295. }
  30296. },
  30297. },
  30298. [
  30299. {
  30300. name: "Small",
  30301. height: math.unit(7, "feet")
  30302. },
  30303. {
  30304. name: "Normal",
  30305. height: math.unit(1500, "meters")
  30306. },
  30307. {
  30308. name: "Mega",
  30309. height: math.unit(12000000, "km"),
  30310. default: true
  30311. },
  30312. {
  30313. name: "Megamacro",
  30314. height: math.unit(10600000, "lightyears")
  30315. },
  30316. {
  30317. name: "Hypermacro",
  30318. height: math.unit(256, "yottameters")
  30319. },
  30320. ]
  30321. ))
  30322. characterMakers.push(() => makeCharacter(
  30323. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30324. {
  30325. front: {
  30326. height: math.unit(10, "feet"),
  30327. weight: math.unit(750, "lb"),
  30328. name: "Front",
  30329. image: {
  30330. source: "./media/characters/clove/front.svg",
  30331. extra: 1918/1751,
  30332. bottom: 52/1970
  30333. }
  30334. },
  30335. back: {
  30336. height: math.unit(10, "feet"),
  30337. weight: math.unit(750, "lb"),
  30338. name: "Back",
  30339. image: {
  30340. source: "./media/characters/clove/back.svg",
  30341. extra: 1912/1747,
  30342. bottom: 50/1962
  30343. }
  30344. },
  30345. },
  30346. [
  30347. {
  30348. name: "Normal",
  30349. height: math.unit(10, "feet"),
  30350. default: true
  30351. },
  30352. ]
  30353. ))
  30354. characterMakers.push(() => makeCharacter(
  30355. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30356. {
  30357. front: {
  30358. height: math.unit(4, "feet"),
  30359. weight: math.unit(50, "lb"),
  30360. name: "Front",
  30361. image: {
  30362. source: "./media/characters/alex-rabbit/front.svg",
  30363. extra: 507 / 458,
  30364. bottom: 18.5 / 527
  30365. }
  30366. },
  30367. back: {
  30368. height: math.unit(4, "feet"),
  30369. weight: math.unit(50, "lb"),
  30370. name: "Back",
  30371. image: {
  30372. source: "./media/characters/alex-rabbit/back.svg",
  30373. extra: 502 / 460,
  30374. bottom: 18.9 / 521
  30375. }
  30376. },
  30377. },
  30378. [
  30379. {
  30380. name: "Normal",
  30381. height: math.unit(4, "feet"),
  30382. default: true
  30383. },
  30384. ]
  30385. ))
  30386. characterMakers.push(() => makeCharacter(
  30387. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30388. {
  30389. front: {
  30390. height: math.unit(1 + 3 / 12, "feet"),
  30391. weight: math.unit(80, "lb"),
  30392. name: "Front",
  30393. image: {
  30394. source: "./media/characters/zander-rose/front.svg",
  30395. extra: 916 / 797,
  30396. bottom: 17 / 933
  30397. }
  30398. },
  30399. back: {
  30400. height: math.unit(1 + 3 / 12, "feet"),
  30401. weight: math.unit(80, "lb"),
  30402. name: "Back",
  30403. image: {
  30404. source: "./media/characters/zander-rose/back.svg",
  30405. extra: 903 / 779,
  30406. bottom: 31 / 934
  30407. }
  30408. },
  30409. },
  30410. [
  30411. {
  30412. name: "Normal",
  30413. height: math.unit(1 + 3 / 12, "feet"),
  30414. default: true
  30415. },
  30416. ]
  30417. ))
  30418. characterMakers.push(() => makeCharacter(
  30419. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30420. {
  30421. anthro: {
  30422. height: math.unit(6, "feet"),
  30423. weight: math.unit(150, "lb"),
  30424. name: "Anthro",
  30425. image: {
  30426. source: "./media/characters/razz/anthro.svg",
  30427. extra: 1437 / 1343,
  30428. bottom: 48 / 1485
  30429. }
  30430. },
  30431. feral: {
  30432. height: math.unit(6, "feet"),
  30433. weight: math.unit(150, "lb"),
  30434. name: "Feral",
  30435. image: {
  30436. source: "./media/characters/razz/feral.svg",
  30437. extra: 2569 / 1385,
  30438. bottom: 95 / 2664
  30439. }
  30440. },
  30441. },
  30442. [
  30443. {
  30444. name: "Normal",
  30445. height: math.unit(6, "feet"),
  30446. default: true
  30447. },
  30448. ]
  30449. ))
  30450. characterMakers.push(() => makeCharacter(
  30451. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30452. {
  30453. front: {
  30454. height: math.unit(9 + 4 / 12, "feet"),
  30455. weight: math.unit(500, "lb"),
  30456. name: "Front",
  30457. image: {
  30458. source: "./media/characters/morrigan/front.svg",
  30459. extra: 2707 / 2579,
  30460. bottom: 156 / 2863
  30461. }
  30462. },
  30463. },
  30464. [
  30465. {
  30466. name: "Normal",
  30467. height: math.unit(9 + 4 / 12, "feet"),
  30468. default: true
  30469. },
  30470. ]
  30471. ))
  30472. characterMakers.push(() => makeCharacter(
  30473. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30474. {
  30475. front: {
  30476. height: math.unit(5, "stories"),
  30477. weight: math.unit(4000, "lb"),
  30478. name: "Front",
  30479. image: {
  30480. source: "./media/characters/jenene/front.svg",
  30481. extra: 1780 / 1710,
  30482. bottom: 57 / 1837
  30483. }
  30484. },
  30485. },
  30486. [
  30487. {
  30488. name: "Normal",
  30489. height: math.unit(5, "stories"),
  30490. default: true
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30496. {
  30497. taurSfw: {
  30498. height: math.unit(10, "meters"),
  30499. weight: math.unit(17500, "kg"),
  30500. name: "Taur",
  30501. image: {
  30502. source: "./media/characters/faey/taur-sfw.svg",
  30503. extra: 1200 / 968,
  30504. bottom: 41 / 1241
  30505. }
  30506. },
  30507. chestmaw: {
  30508. height: math.unit(2.01, "meters"),
  30509. name: "Chestmaw",
  30510. image: {
  30511. source: "./media/characters/faey/chestmaw.svg"
  30512. }
  30513. },
  30514. foot: {
  30515. height: math.unit(2.43, "meters"),
  30516. name: "Foot",
  30517. image: {
  30518. source: "./media/characters/faey/foot.svg"
  30519. }
  30520. },
  30521. jaws: {
  30522. height: math.unit(1.66, "meters"),
  30523. name: "Jaws",
  30524. image: {
  30525. source: "./media/characters/faey/jaws.svg"
  30526. }
  30527. },
  30528. tongues: {
  30529. height: math.unit(2.01, "meters"),
  30530. name: "Tongues",
  30531. image: {
  30532. source: "./media/characters/faey/tongues.svg"
  30533. }
  30534. },
  30535. },
  30536. [
  30537. {
  30538. name: "Small",
  30539. height: math.unit(10, "meters"),
  30540. default: true
  30541. },
  30542. {
  30543. name: "Big",
  30544. height: math.unit(500000, "km")
  30545. },
  30546. ]
  30547. ))
  30548. characterMakers.push(() => makeCharacter(
  30549. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30550. {
  30551. front: {
  30552. height: math.unit(7, "feet"),
  30553. weight: math.unit(275, "lb"),
  30554. name: "Front",
  30555. image: {
  30556. source: "./media/characters/roku/front.svg",
  30557. extra: 903 / 878,
  30558. bottom: 37 / 940
  30559. }
  30560. },
  30561. },
  30562. [
  30563. {
  30564. name: "Normal",
  30565. height: math.unit(7, "feet"),
  30566. default: true
  30567. },
  30568. {
  30569. name: "Macro",
  30570. height: math.unit(500, "feet")
  30571. },
  30572. {
  30573. name: "Megamacro",
  30574. height: math.unit(200, "miles")
  30575. },
  30576. ]
  30577. ))
  30578. characterMakers.push(() => makeCharacter(
  30579. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30580. {
  30581. front: {
  30582. height: math.unit(6 + 2 / 12, "feet"),
  30583. weight: math.unit(150, "lb"),
  30584. name: "Front",
  30585. image: {
  30586. source: "./media/characters/lira/front.svg",
  30587. extra: 1727 / 1605,
  30588. bottom: 26 / 1753
  30589. }
  30590. },
  30591. back: {
  30592. height: math.unit(6 + 2 / 12, "feet"),
  30593. weight: math.unit(150, "lb"),
  30594. name: "Back",
  30595. image: {
  30596. source: "./media/characters/lira/back.svg",
  30597. extra: 1713/1621,
  30598. bottom: 20/1733
  30599. }
  30600. },
  30601. hand: {
  30602. height: math.unit(0.75, "feet"),
  30603. name: "Hand",
  30604. image: {
  30605. source: "./media/characters/lira/hand.svg"
  30606. }
  30607. },
  30608. maw: {
  30609. height: math.unit(0.65, "feet"),
  30610. name: "Maw",
  30611. image: {
  30612. source: "./media/characters/lira/maw.svg"
  30613. }
  30614. },
  30615. pawDigi: {
  30616. height: math.unit(1.6, "feet"),
  30617. name: "Paw Digi",
  30618. image: {
  30619. source: "./media/characters/lira/paw-digi.svg"
  30620. }
  30621. },
  30622. pawPlanti: {
  30623. height: math.unit(1.4, "feet"),
  30624. name: "Paw Planti",
  30625. image: {
  30626. source: "./media/characters/lira/paw-planti.svg"
  30627. }
  30628. },
  30629. },
  30630. [
  30631. {
  30632. name: "Normal",
  30633. height: math.unit(6 + 2 / 12, "feet"),
  30634. default: true
  30635. },
  30636. {
  30637. name: "Macro",
  30638. height: math.unit(100, "feet")
  30639. },
  30640. {
  30641. name: "Macro²",
  30642. height: math.unit(1600, "feet")
  30643. },
  30644. {
  30645. name: "Planetary",
  30646. height: math.unit(20, "earths")
  30647. },
  30648. ]
  30649. ))
  30650. characterMakers.push(() => makeCharacter(
  30651. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30652. {
  30653. front: {
  30654. height: math.unit(6, "feet"),
  30655. weight: math.unit(150, "lb"),
  30656. name: "Front",
  30657. image: {
  30658. source: "./media/characters/hadjet/front.svg",
  30659. extra: 1480 / 1346,
  30660. bottom: 26 / 1506
  30661. }
  30662. },
  30663. frontNsfw: {
  30664. height: math.unit(6, "feet"),
  30665. weight: math.unit(150, "lb"),
  30666. name: "Front (NSFW)",
  30667. image: {
  30668. source: "./media/characters/hadjet/front-nsfw.svg",
  30669. extra: 1440 / 1358,
  30670. bottom: 52 / 1492
  30671. }
  30672. },
  30673. },
  30674. [
  30675. {
  30676. name: "Macro",
  30677. height: math.unit(10, "stories"),
  30678. default: true
  30679. },
  30680. {
  30681. name: "Megamacro",
  30682. height: math.unit(1.5, "miles")
  30683. },
  30684. {
  30685. name: "Megamacro+",
  30686. height: math.unit(5, "miles")
  30687. },
  30688. ]
  30689. ))
  30690. characterMakers.push(() => makeCharacter(
  30691. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30692. {
  30693. side: {
  30694. height: math.unit(106, "feet"),
  30695. weight: math.unit(500, "tonnes"),
  30696. name: "Side",
  30697. image: {
  30698. source: "./media/characters/kodran/side.svg",
  30699. extra: 553 / 480,
  30700. bottom: 33 / 586
  30701. }
  30702. },
  30703. front: {
  30704. height: math.unit(132, "feet"),
  30705. weight: math.unit(500, "tonnes"),
  30706. name: "Front",
  30707. image: {
  30708. source: "./media/characters/kodran/front.svg",
  30709. extra: 667 / 643,
  30710. bottom: 42 / 709
  30711. }
  30712. },
  30713. flying: {
  30714. height: math.unit(350, "feet"),
  30715. weight: math.unit(500, "tonnes"),
  30716. name: "Flying",
  30717. image: {
  30718. source: "./media/characters/kodran/flying.svg"
  30719. }
  30720. },
  30721. foot: {
  30722. height: math.unit(33, "feet"),
  30723. name: "Foot",
  30724. image: {
  30725. source: "./media/characters/kodran/foot.svg"
  30726. }
  30727. },
  30728. footFront: {
  30729. height: math.unit(19, "feet"),
  30730. name: "Foot (Front)",
  30731. image: {
  30732. source: "./media/characters/kodran/foot-front.svg",
  30733. extra: 261 / 261,
  30734. bottom: 91 / 352
  30735. }
  30736. },
  30737. headFront: {
  30738. height: math.unit(53, "feet"),
  30739. name: "Head (Front)",
  30740. image: {
  30741. source: "./media/characters/kodran/head-front.svg"
  30742. }
  30743. },
  30744. headSide: {
  30745. height: math.unit(65, "feet"),
  30746. name: "Head (Side)",
  30747. image: {
  30748. source: "./media/characters/kodran/head-side.svg"
  30749. }
  30750. },
  30751. throat: {
  30752. height: math.unit(79, "feet"),
  30753. name: "Throat",
  30754. image: {
  30755. source: "./media/characters/kodran/throat.svg"
  30756. }
  30757. },
  30758. },
  30759. [
  30760. {
  30761. name: "Large",
  30762. height: math.unit(106, "feet"),
  30763. default: true
  30764. },
  30765. ]
  30766. ))
  30767. characterMakers.push(() => makeCharacter(
  30768. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30769. {
  30770. side: {
  30771. height: math.unit(11, "feet"),
  30772. weight: math.unit(150, "lb"),
  30773. name: "Side",
  30774. image: {
  30775. source: "./media/characters/pyxaron/side.svg",
  30776. extra: 305 / 195,
  30777. bottom: 17 / 322
  30778. }
  30779. },
  30780. },
  30781. [
  30782. {
  30783. name: "Normal",
  30784. height: math.unit(11, "feet"),
  30785. default: true
  30786. },
  30787. ]
  30788. ))
  30789. characterMakers.push(() => makeCharacter(
  30790. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30791. {
  30792. front: {
  30793. height: math.unit(6, "feet"),
  30794. weight: math.unit(150, "lb"),
  30795. name: "Front",
  30796. image: {
  30797. source: "./media/characters/meep/front.svg",
  30798. extra: 88 / 80,
  30799. bottom: 6 / 94
  30800. }
  30801. },
  30802. },
  30803. [
  30804. {
  30805. name: "Fun Sized",
  30806. height: math.unit(2, "inches"),
  30807. default: true
  30808. },
  30809. {
  30810. name: "Friend Sized",
  30811. height: math.unit(8, "inches")
  30812. },
  30813. ]
  30814. ))
  30815. characterMakers.push(() => makeCharacter(
  30816. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30817. {
  30818. front: {
  30819. height: math.unit(15, "feet"),
  30820. weight: math.unit(2500, "lb"),
  30821. name: "Front",
  30822. image: {
  30823. source: "./media/characters/holly-rabbit/front.svg",
  30824. extra: 1433 / 1233,
  30825. bottom: 125 / 1558
  30826. }
  30827. },
  30828. dick: {
  30829. height: math.unit(4.6, "feet"),
  30830. name: "Dick",
  30831. image: {
  30832. source: "./media/characters/holly-rabbit/dick.svg"
  30833. }
  30834. },
  30835. },
  30836. [
  30837. {
  30838. name: "Normal",
  30839. height: math.unit(15, "feet"),
  30840. default: true
  30841. },
  30842. {
  30843. name: "Macro",
  30844. height: math.unit(250, "feet")
  30845. },
  30846. {
  30847. name: "Macro+",
  30848. height: math.unit(2500, "feet")
  30849. },
  30850. ]
  30851. ))
  30852. characterMakers.push(() => makeCharacter(
  30853. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30854. {
  30855. front: {
  30856. height: math.unit(3.02, "meters"),
  30857. weight: math.unit(500, "kg"),
  30858. name: "Front",
  30859. image: {
  30860. source: "./media/characters/drena/front.svg",
  30861. extra: 282 / 243,
  30862. bottom: 8 / 290
  30863. }
  30864. },
  30865. side: {
  30866. height: math.unit(3.02, "meters"),
  30867. weight: math.unit(500, "kg"),
  30868. name: "Side",
  30869. image: {
  30870. source: "./media/characters/drena/side.svg",
  30871. extra: 280 / 245,
  30872. bottom: 10 / 290
  30873. }
  30874. },
  30875. back: {
  30876. height: math.unit(3.02, "meters"),
  30877. weight: math.unit(500, "kg"),
  30878. name: "Back",
  30879. image: {
  30880. source: "./media/characters/drena/back.svg",
  30881. extra: 278 / 243,
  30882. bottom: 2 / 280
  30883. }
  30884. },
  30885. foot: {
  30886. height: math.unit(0.75, "meters"),
  30887. name: "Foot",
  30888. image: {
  30889. source: "./media/characters/drena/foot.svg"
  30890. }
  30891. },
  30892. maw: {
  30893. height: math.unit(0.82, "meters"),
  30894. name: "Maw",
  30895. image: {
  30896. source: "./media/characters/drena/maw.svg"
  30897. }
  30898. },
  30899. eating: {
  30900. height: math.unit(0.75, "meters"),
  30901. name: "Eating",
  30902. image: {
  30903. source: "./media/characters/drena/eating.svg"
  30904. }
  30905. },
  30906. rump: {
  30907. height: math.unit(0.93, "meters"),
  30908. name: "Rump",
  30909. image: {
  30910. source: "./media/characters/drena/rump.svg"
  30911. }
  30912. },
  30913. },
  30914. [
  30915. {
  30916. name: "Normal",
  30917. height: math.unit(3.02, "meters"),
  30918. default: true
  30919. },
  30920. ]
  30921. ))
  30922. characterMakers.push(() => makeCharacter(
  30923. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  30924. {
  30925. front: {
  30926. height: math.unit(6 + 4 / 12, "feet"),
  30927. weight: math.unit(250, "lb"),
  30928. name: "Front",
  30929. image: {
  30930. source: "./media/characters/remmyzilla/front.svg",
  30931. extra: 4033 / 3588,
  30932. bottom: 123 / 4156
  30933. }
  30934. },
  30935. back: {
  30936. height: math.unit(6 + 4 / 12, "feet"),
  30937. weight: math.unit(250, "lb"),
  30938. name: "Back",
  30939. image: {
  30940. source: "./media/characters/remmyzilla/back.svg",
  30941. extra: 2687 / 2555,
  30942. bottom: 48 / 2735
  30943. }
  30944. },
  30945. paw: {
  30946. height: math.unit(1.73, "feet"),
  30947. name: "Paw",
  30948. image: {
  30949. source: "./media/characters/remmyzilla/paw.svg"
  30950. },
  30951. extraAttributes: {
  30952. "toeSize": {
  30953. name: "Toe Size",
  30954. power: 2,
  30955. type: "area",
  30956. base: math.unit(0.0035, "m^2")
  30957. },
  30958. "padSize": {
  30959. name: "Pad Size",
  30960. power: 2,
  30961. type: "area",
  30962. base: math.unit(0.015, "m^2")
  30963. },
  30964. "pawsize": {
  30965. name: "Paw Size",
  30966. power: 2,
  30967. type: "area",
  30968. base: math.unit(0.072, "m^2")
  30969. },
  30970. }
  30971. },
  30972. maw: {
  30973. height: math.unit(1.73, "feet"),
  30974. name: "Maw",
  30975. image: {
  30976. source: "./media/characters/remmyzilla/maw.svg"
  30977. }
  30978. },
  30979. },
  30980. [
  30981. {
  30982. name: "Normal",
  30983. height: math.unit(6 + 4 / 12, "feet")
  30984. },
  30985. {
  30986. name: "Minimacro",
  30987. height: math.unit(12 + 8 / 12, "feet")
  30988. },
  30989. {
  30990. name: "Normal",
  30991. height: math.unit(640, "feet"),
  30992. default: true
  30993. },
  30994. {
  30995. name: "Megamacro",
  30996. height: math.unit(6400, "feet")
  30997. },
  30998. {
  30999. name: "Gigamacro",
  31000. height: math.unit(64000, "miles")
  31001. },
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31006. {
  31007. front: {
  31008. height: math.unit(2.5, "meters"),
  31009. weight: math.unit(300, "lb"),
  31010. name: "Front",
  31011. image: {
  31012. source: "./media/characters/lawrence/front.svg",
  31013. extra: 357 / 335,
  31014. bottom: 30 / 387
  31015. }
  31016. },
  31017. back: {
  31018. height: math.unit(2.5, "meters"),
  31019. weight: math.unit(300, "lb"),
  31020. name: "Back",
  31021. image: {
  31022. source: "./media/characters/lawrence/back.svg",
  31023. extra: 357 / 338,
  31024. bottom: 16 / 373
  31025. }
  31026. },
  31027. head: {
  31028. height: math.unit(0.9, "meter"),
  31029. name: "Head",
  31030. image: {
  31031. source: "./media/characters/lawrence/head.svg"
  31032. }
  31033. },
  31034. maw: {
  31035. height: math.unit(0.7, "meter"),
  31036. name: "Maw",
  31037. image: {
  31038. source: "./media/characters/lawrence/maw.svg"
  31039. }
  31040. },
  31041. footBottom: {
  31042. height: math.unit(0.5, "meter"),
  31043. name: "Foot (Bottom)",
  31044. image: {
  31045. source: "./media/characters/lawrence/foot-bottom.svg"
  31046. }
  31047. },
  31048. footTop: {
  31049. height: math.unit(0.5, "meter"),
  31050. name: "Foot (Top)",
  31051. image: {
  31052. source: "./media/characters/lawrence/foot-top.svg"
  31053. }
  31054. },
  31055. },
  31056. [
  31057. {
  31058. name: "Normal",
  31059. height: math.unit(2.5, "meters"),
  31060. default: true
  31061. },
  31062. {
  31063. name: "Macro",
  31064. height: math.unit(95, "meters")
  31065. },
  31066. {
  31067. name: "Megamacro",
  31068. height: math.unit(150, "km")
  31069. },
  31070. ]
  31071. ))
  31072. characterMakers.push(() => makeCharacter(
  31073. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31074. {
  31075. front: {
  31076. height: math.unit(4.2, "meters"),
  31077. preyCapacity: math.unit(50, "m^3"),
  31078. weight: math.unit(30, "tonnes"),
  31079. name: "Front",
  31080. image: {
  31081. source: "./media/characters/sydney/front.svg",
  31082. extra: 1177/1129,
  31083. bottom: 197/1374
  31084. },
  31085. extraAttributes: {
  31086. "length": {
  31087. name: "Length",
  31088. power: 1,
  31089. type: "length",
  31090. base: math.unit(21, "meters")
  31091. },
  31092. }
  31093. },
  31094. },
  31095. [
  31096. {
  31097. name: "Normal",
  31098. height: math.unit(4.2, "meters"),
  31099. default: true
  31100. },
  31101. ]
  31102. ))
  31103. characterMakers.push(() => makeCharacter(
  31104. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31105. {
  31106. back: {
  31107. height: math.unit(201, "feet"),
  31108. name: "Back",
  31109. image: {
  31110. source: "./media/characters/jessica/back.svg",
  31111. extra: 273 / 259,
  31112. bottom: 7 / 280
  31113. }
  31114. },
  31115. },
  31116. [
  31117. {
  31118. name: "Normal",
  31119. height: math.unit(201, "feet"),
  31120. default: true
  31121. },
  31122. {
  31123. name: "Megamacro",
  31124. height: math.unit(8, "miles")
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31130. {
  31131. side: {
  31132. height: math.unit(5.6, "m"),
  31133. weight: math.unit(8000, "kg"),
  31134. name: "Side",
  31135. image: {
  31136. source: "./media/characters/victoria/side.svg",
  31137. extra: 1542/1229,
  31138. bottom: 124/1666
  31139. }
  31140. },
  31141. maw: {
  31142. height: math.unit(7.14, "feet"),
  31143. name: "Maw",
  31144. image: {
  31145. source: "./media/characters/victoria/maw.svg"
  31146. }
  31147. },
  31148. },
  31149. [
  31150. {
  31151. name: "Normal",
  31152. height: math.unit(5.6, "m"),
  31153. default: true
  31154. },
  31155. ]
  31156. ))
  31157. characterMakers.push(() => makeCharacter(
  31158. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31159. {
  31160. front: {
  31161. height: math.unit(5 + 6 / 12, "feet"),
  31162. name: "Front",
  31163. image: {
  31164. source: "./media/characters/cat/front.svg",
  31165. extra: 1449/1295,
  31166. bottom: 34/1483
  31167. },
  31168. form: "cat",
  31169. default: true
  31170. },
  31171. back: {
  31172. height: math.unit(5 + 6 / 12, "feet"),
  31173. name: "Back",
  31174. image: {
  31175. source: "./media/characters/cat/back.svg",
  31176. extra: 1466/1301,
  31177. bottom: 19/1485
  31178. },
  31179. form: "cat"
  31180. },
  31181. taur: {
  31182. height: math.unit(7, "feet"),
  31183. name: "Taur",
  31184. image: {
  31185. source: "./media/characters/cat/taur.svg",
  31186. extra: 1389/1233,
  31187. bottom: 83/1472
  31188. },
  31189. form: "taur",
  31190. default: true
  31191. },
  31192. lucarioFront: {
  31193. height: math.unit(4, "feet"),
  31194. name: "Lucario (Front)",
  31195. image: {
  31196. source: "./media/characters/cat/lucario-front.svg",
  31197. extra: 1149/1019,
  31198. bottom: 84/1233
  31199. },
  31200. form: "lucario",
  31201. default: true
  31202. },
  31203. lucarioBack: {
  31204. height: math.unit(4, "feet"),
  31205. name: "Lucario (Back)",
  31206. image: {
  31207. source: "./media/characters/cat/lucario-back.svg",
  31208. extra: 1190/1059,
  31209. bottom: 33/1223
  31210. },
  31211. form: "lucario"
  31212. },
  31213. megaLucario: {
  31214. height: math.unit(4, "feet"),
  31215. name: "Mega Lucario",
  31216. image: {
  31217. source: "./media/characters/cat/mega-lucario.svg",
  31218. extra: 1515 / 1319,
  31219. bottom: 63 / 1578
  31220. },
  31221. form: "lucario"
  31222. },
  31223. nickit: {
  31224. height: math.unit(2, "feet"),
  31225. name: "Nickit",
  31226. image: {
  31227. source: "./media/characters/cat/nickit.svg",
  31228. extra: 1980 / 1585,
  31229. bottom: 102 / 2082
  31230. },
  31231. form: "nickit",
  31232. default: true
  31233. },
  31234. lopunnyFront: {
  31235. height: math.unit(5, "feet"),
  31236. name: "Lopunny (Front)",
  31237. image: {
  31238. source: "./media/characters/cat/lopunny-front.svg",
  31239. extra: 1782 / 1469,
  31240. bottom: 38 / 1820
  31241. },
  31242. form: "lopunny",
  31243. default: true
  31244. },
  31245. lopunnyBack: {
  31246. height: math.unit(5, "feet"),
  31247. name: "Lopunny (Back)",
  31248. image: {
  31249. source: "./media/characters/cat/lopunny-back.svg",
  31250. extra: 1660 / 1490,
  31251. bottom: 25 / 1685
  31252. },
  31253. form: "lopunny"
  31254. },
  31255. },
  31256. [
  31257. {
  31258. name: "Really small",
  31259. height: math.unit(1, "nm")
  31260. },
  31261. {
  31262. name: "Micro",
  31263. height: math.unit(5, "inches")
  31264. },
  31265. {
  31266. name: "Normal",
  31267. height: math.unit(5 + 6 / 12, "feet"),
  31268. default: true
  31269. },
  31270. {
  31271. name: "Macro",
  31272. height: math.unit(50, "feet")
  31273. },
  31274. {
  31275. name: "Macro+",
  31276. height: math.unit(150, "feet")
  31277. },
  31278. {
  31279. name: "Megamacro",
  31280. height: math.unit(100, "miles")
  31281. },
  31282. ]
  31283. ))
  31284. characterMakers.push(() => makeCharacter(
  31285. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31286. {
  31287. front: {
  31288. height: math.unit(63.4, "meters"),
  31289. weight: math.unit(3.28349e+6, "kilograms"),
  31290. name: "Front",
  31291. image: {
  31292. source: "./media/characters/kirina-violet/front.svg",
  31293. extra: 2812 / 2725,
  31294. bottom: 0 / 2812
  31295. }
  31296. },
  31297. back: {
  31298. height: math.unit(63.4, "meters"),
  31299. weight: math.unit(3.28349e+6, "kilograms"),
  31300. name: "Back",
  31301. image: {
  31302. source: "./media/characters/kirina-violet/back.svg",
  31303. extra: 2812 / 2725,
  31304. bottom: 0 / 2812
  31305. }
  31306. },
  31307. mouth: {
  31308. height: math.unit(4.35, "meters"),
  31309. name: "Mouth",
  31310. image: {
  31311. source: "./media/characters/kirina-violet/mouth.svg"
  31312. }
  31313. },
  31314. paw: {
  31315. height: math.unit(5.6, "meters"),
  31316. name: "Paw",
  31317. image: {
  31318. source: "./media/characters/kirina-violet/paw.svg"
  31319. }
  31320. },
  31321. tail: {
  31322. height: math.unit(18, "meters"),
  31323. name: "Tail",
  31324. image: {
  31325. source: "./media/characters/kirina-violet/tail.svg"
  31326. }
  31327. },
  31328. },
  31329. [
  31330. {
  31331. name: "Macro",
  31332. height: math.unit(63.4, "meters"),
  31333. default: true
  31334. },
  31335. ]
  31336. ))
  31337. characterMakers.push(() => makeCharacter(
  31338. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31339. {
  31340. front: {
  31341. height: math.unit(75, "feet"),
  31342. name: "Front",
  31343. image: {
  31344. source: "./media/characters/cat-gigachu/front.svg",
  31345. extra: 1239/1027,
  31346. bottom: 32/1271
  31347. }
  31348. },
  31349. back: {
  31350. height: math.unit(75, "feet"),
  31351. name: "Back",
  31352. image: {
  31353. source: "./media/characters/cat-gigachu/back.svg",
  31354. extra: 1229/1030,
  31355. bottom: 9/1238
  31356. }
  31357. },
  31358. },
  31359. [
  31360. {
  31361. name: "Dynamax",
  31362. height: math.unit(75, "feet"),
  31363. default: true
  31364. },
  31365. ]
  31366. ))
  31367. characterMakers.push(() => makeCharacter(
  31368. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31369. {
  31370. front: {
  31371. height: math.unit(6, "feet"),
  31372. weight: math.unit(150, "lb"),
  31373. name: "Front",
  31374. image: {
  31375. source: "./media/characters/sfaiyan/front.svg",
  31376. extra: 999 / 978,
  31377. bottom: 5 / 1004
  31378. }
  31379. },
  31380. },
  31381. [
  31382. {
  31383. name: "Normal",
  31384. height: math.unit(1.82, "meters")
  31385. },
  31386. {
  31387. name: "Giant",
  31388. height: math.unit(2.27, "km"),
  31389. default: true
  31390. },
  31391. ]
  31392. ))
  31393. characterMakers.push(() => makeCharacter(
  31394. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31395. {
  31396. front: {
  31397. height: math.unit(179, "cm"),
  31398. weight: math.unit(100, "kg"),
  31399. name: "Front",
  31400. image: {
  31401. source: "./media/characters/raunehkeli/front.svg",
  31402. extra: 1934 / 1926,
  31403. bottom: 0 / 1934
  31404. }
  31405. },
  31406. },
  31407. [
  31408. {
  31409. name: "Normal",
  31410. height: math.unit(179, "cm")
  31411. },
  31412. {
  31413. name: "Maximum",
  31414. height: math.unit(575, "meters"),
  31415. default: true
  31416. },
  31417. ]
  31418. ))
  31419. characterMakers.push(() => makeCharacter(
  31420. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31421. {
  31422. front: {
  31423. height: math.unit(6, "feet"),
  31424. weight: math.unit(150, "lb"),
  31425. name: "Front",
  31426. image: {
  31427. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31428. extra: 2625 / 2518,
  31429. bottom: 60 / 2685
  31430. }
  31431. },
  31432. },
  31433. [
  31434. {
  31435. name: "Normal",
  31436. height: math.unit(6 + 2 / 12, "feet")
  31437. },
  31438. {
  31439. name: "Macro",
  31440. height: math.unit(1180, "feet"),
  31441. default: true
  31442. },
  31443. ]
  31444. ))
  31445. characterMakers.push(() => makeCharacter(
  31446. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31447. {
  31448. front: {
  31449. height: math.unit(5 + 6 / 12, "feet"),
  31450. weight: math.unit(108, "lb"),
  31451. name: "Front",
  31452. image: {
  31453. source: "./media/characters/lilith-zott/front.svg",
  31454. extra: 2510 / 2238,
  31455. bottom: 100 / 2610
  31456. }
  31457. },
  31458. frontDressed: {
  31459. height: math.unit(5 + 6 / 12, "feet"),
  31460. weight: math.unit(108, "lb"),
  31461. name: "Front (Dressed)",
  31462. image: {
  31463. source: "./media/characters/lilith-zott/front-dressed.svg",
  31464. extra: 2510 / 2238,
  31465. bottom: 100 / 2610
  31466. }
  31467. },
  31468. },
  31469. [
  31470. {
  31471. name: "Normal",
  31472. height: math.unit(5 + 6 / 12, "feet")
  31473. },
  31474. {
  31475. name: "Macro",
  31476. height: math.unit(1030, "feet"),
  31477. default: true
  31478. },
  31479. ]
  31480. ))
  31481. characterMakers.push(() => makeCharacter(
  31482. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31483. {
  31484. front: {
  31485. height: math.unit(6, "feet"),
  31486. weight: math.unit(150, "lb"),
  31487. name: "Front",
  31488. image: {
  31489. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31490. extra: 2567 / 2435,
  31491. bottom: 39 / 2606
  31492. }
  31493. },
  31494. frontSuper: {
  31495. height: math.unit(6, "feet"),
  31496. name: "Front (Super)",
  31497. image: {
  31498. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31499. extra: 2567 / 2435,
  31500. bottom: 39 / 2606
  31501. }
  31502. },
  31503. },
  31504. [
  31505. {
  31506. name: "Normal",
  31507. height: math.unit(5 + 10 / 12, "feet")
  31508. },
  31509. {
  31510. name: "Macro",
  31511. height: math.unit(1100, "feet"),
  31512. default: true
  31513. },
  31514. ]
  31515. ))
  31516. characterMakers.push(() => makeCharacter(
  31517. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31518. {
  31519. front: {
  31520. height: math.unit(100, "miles"),
  31521. name: "Front",
  31522. image: {
  31523. source: "./media/characters/sona/front.svg",
  31524. extra: 2433 / 2201,
  31525. bottom: 53 / 2486
  31526. }
  31527. },
  31528. foot: {
  31529. height: math.unit(16.1, "miles"),
  31530. name: "Foot",
  31531. image: {
  31532. source: "./media/characters/sona/foot.svg"
  31533. }
  31534. },
  31535. },
  31536. [
  31537. {
  31538. name: "Macro",
  31539. height: math.unit(100, "miles"),
  31540. default: true
  31541. },
  31542. ]
  31543. ))
  31544. characterMakers.push(() => makeCharacter(
  31545. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31546. {
  31547. front: {
  31548. height: math.unit(6, "feet"),
  31549. weight: math.unit(150, "lb"),
  31550. name: "Front",
  31551. image: {
  31552. source: "./media/characters/bailey/front.svg",
  31553. extra: 1778 / 1724,
  31554. bottom: 30 / 1808
  31555. }
  31556. },
  31557. },
  31558. [
  31559. {
  31560. name: "Micro",
  31561. height: math.unit(4, "inches")
  31562. },
  31563. {
  31564. name: "Normal",
  31565. height: math.unit(5 + 5 / 12, "feet"),
  31566. default: true
  31567. },
  31568. {
  31569. name: "Macro",
  31570. height: math.unit(250, "feet")
  31571. },
  31572. {
  31573. name: "Megamacro",
  31574. height: math.unit(100, "miles")
  31575. },
  31576. ]
  31577. ))
  31578. characterMakers.push(() => makeCharacter(
  31579. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31580. {
  31581. front: {
  31582. height: math.unit(5 + 2 / 12, "feet"),
  31583. weight: math.unit(120, "lb"),
  31584. name: "Front",
  31585. image: {
  31586. source: "./media/characters/snaps/front.svg",
  31587. extra: 2370 / 2177,
  31588. bottom: 48 / 2418
  31589. }
  31590. },
  31591. back: {
  31592. height: math.unit(5 + 2 / 12, "feet"),
  31593. weight: math.unit(120, "lb"),
  31594. name: "Back",
  31595. image: {
  31596. source: "./media/characters/snaps/back.svg",
  31597. extra: 2408 / 2258,
  31598. bottom: 15 / 2423
  31599. }
  31600. },
  31601. },
  31602. [
  31603. {
  31604. name: "Micro",
  31605. height: math.unit(9, "inches")
  31606. },
  31607. {
  31608. name: "Normal",
  31609. height: math.unit(5 + 2 / 12, "feet"),
  31610. default: true
  31611. },
  31612. {
  31613. name: "Mini Macro",
  31614. height: math.unit(10, "feet")
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31620. {
  31621. front: {
  31622. height: math.unit(1.8, "meters"),
  31623. weight: math.unit(85, "kg"),
  31624. name: "Front",
  31625. image: {
  31626. source: "./media/characters/azteck/front.svg",
  31627. extra: 2815 / 2625,
  31628. bottom: 89 / 2904
  31629. }
  31630. },
  31631. back: {
  31632. height: math.unit(1.8, "meters"),
  31633. weight: math.unit(85, "kg"),
  31634. name: "Back",
  31635. image: {
  31636. source: "./media/characters/azteck/back.svg",
  31637. extra: 2856 / 2648,
  31638. bottom: 85 / 2941
  31639. }
  31640. },
  31641. frontDressed: {
  31642. height: math.unit(1.8, "meters"),
  31643. weight: math.unit(85, "kg"),
  31644. name: "Front (Dressed)",
  31645. image: {
  31646. source: "./media/characters/azteck/front-dressed.svg",
  31647. extra: 2147 / 2003,
  31648. bottom: 68 / 2215
  31649. }
  31650. },
  31651. head: {
  31652. height: math.unit(0.47, "meters"),
  31653. weight: math.unit(85, "kg"),
  31654. name: "Head",
  31655. image: {
  31656. source: "./media/characters/azteck/head.svg"
  31657. }
  31658. },
  31659. },
  31660. [
  31661. {
  31662. name: "Bite sized",
  31663. height: math.unit(16, "cm")
  31664. },
  31665. {
  31666. name: "Normal",
  31667. height: math.unit(1.8, "meters"),
  31668. default: true
  31669. },
  31670. ]
  31671. ))
  31672. characterMakers.push(() => makeCharacter(
  31673. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31674. {
  31675. front: {
  31676. height: math.unit(6, "feet"),
  31677. weight: math.unit(150, "lb"),
  31678. name: "Front",
  31679. image: {
  31680. source: "./media/characters/pidge/front.svg",
  31681. extra: 1936/1820,
  31682. bottom: 0/1936
  31683. }
  31684. },
  31685. back: {
  31686. height: math.unit(6, "feet"),
  31687. weight: math.unit(150, "lb"),
  31688. name: "Back",
  31689. image: {
  31690. source: "./media/characters/pidge/back.svg",
  31691. extra: 1938/1843,
  31692. bottom: 0/1938
  31693. }
  31694. },
  31695. casual: {
  31696. height: math.unit(6, "feet"),
  31697. weight: math.unit(150, "lb"),
  31698. name: "Casual",
  31699. image: {
  31700. source: "./media/characters/pidge/casual.svg",
  31701. extra: 1936/1820,
  31702. bottom: 0/1936
  31703. }
  31704. },
  31705. tech: {
  31706. height: math.unit(6, "feet"),
  31707. weight: math.unit(150, "lb"),
  31708. name: "Tech",
  31709. image: {
  31710. source: "./media/characters/pidge/tech.svg",
  31711. extra: 1802/1682,
  31712. bottom: 0/1802
  31713. }
  31714. },
  31715. head: {
  31716. height: math.unit(1.61, "feet"),
  31717. name: "Head",
  31718. image: {
  31719. source: "./media/characters/pidge/head.svg"
  31720. }
  31721. },
  31722. collar: {
  31723. height: math.unit(0.82, "feet"),
  31724. name: "Collar",
  31725. image: {
  31726. source: "./media/characters/pidge/collar.svg"
  31727. }
  31728. },
  31729. },
  31730. [
  31731. {
  31732. name: "Macro",
  31733. height: math.unit(2, "mile"),
  31734. default: true
  31735. },
  31736. {
  31737. name: "PUPPY",
  31738. height: math.unit(20, "miles")
  31739. },
  31740. ]
  31741. ))
  31742. characterMakers.push(() => makeCharacter(
  31743. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31744. {
  31745. front: {
  31746. height: math.unit(6, "feet"),
  31747. weight: math.unit(150, "lb"),
  31748. name: "Front",
  31749. image: {
  31750. source: "./media/characters/en/front.svg",
  31751. extra: 1697 / 1563,
  31752. bottom: 103 / 1800
  31753. }
  31754. },
  31755. back: {
  31756. height: math.unit(6, "feet"),
  31757. weight: math.unit(150, "lb"),
  31758. name: "Back",
  31759. image: {
  31760. source: "./media/characters/en/back.svg",
  31761. extra: 1700 / 1570,
  31762. bottom: 51 / 1751
  31763. }
  31764. },
  31765. frontDressed: {
  31766. height: math.unit(6, "feet"),
  31767. weight: math.unit(150, "lb"),
  31768. name: "Front (Dressed)",
  31769. image: {
  31770. source: "./media/characters/en/front-dressed.svg",
  31771. extra: 1697 / 1563,
  31772. bottom: 103 / 1800
  31773. }
  31774. },
  31775. backDressed: {
  31776. height: math.unit(6, "feet"),
  31777. weight: math.unit(150, "lb"),
  31778. name: "Back (Dressed)",
  31779. image: {
  31780. source: "./media/characters/en/back-dressed.svg",
  31781. extra: 1700 / 1570,
  31782. bottom: 51 / 1751
  31783. }
  31784. },
  31785. },
  31786. [
  31787. {
  31788. name: "Macro",
  31789. height: math.unit(210, "feet"),
  31790. default: true
  31791. },
  31792. ]
  31793. ))
  31794. characterMakers.push(() => makeCharacter(
  31795. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31796. {
  31797. front: {
  31798. height: math.unit(6, "feet"),
  31799. weight: math.unit(150, "lb"),
  31800. name: "Front",
  31801. image: {
  31802. source: "./media/characters/haze-orris/front.svg",
  31803. extra: 3975 / 3525,
  31804. bottom: 137 / 4112
  31805. }
  31806. },
  31807. },
  31808. [
  31809. {
  31810. name: "Micro",
  31811. height: math.unit(150, "mm"),
  31812. default: true
  31813. },
  31814. ]
  31815. ))
  31816. characterMakers.push(() => makeCharacter(
  31817. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31818. {
  31819. front: {
  31820. height: math.unit(6, "feet"),
  31821. weight: math.unit(150, "lb"),
  31822. name: "Front",
  31823. image: {
  31824. source: "./media/characters/casselene-yaro/front.svg",
  31825. extra: 4721 / 4541,
  31826. bottom: 82 / 4803
  31827. }
  31828. },
  31829. back: {
  31830. height: math.unit(6, "feet"),
  31831. weight: math.unit(150, "lb"),
  31832. name: "Back",
  31833. image: {
  31834. source: "./media/characters/casselene-yaro/back.svg",
  31835. extra: 4569 / 4377,
  31836. bottom: 69 / 4638
  31837. }
  31838. },
  31839. dressed: {
  31840. height: math.unit(6, "feet"),
  31841. weight: math.unit(150, "lb"),
  31842. name: "Dressed",
  31843. image: {
  31844. source: "./media/characters/casselene-yaro/dressed.svg",
  31845. extra: 4721 / 4541,
  31846. bottom: 82 / 4803
  31847. }
  31848. },
  31849. maw: {
  31850. height: math.unit(1, "feet"),
  31851. name: "Maw",
  31852. image: {
  31853. source: "./media/characters/casselene-yaro/maw.svg"
  31854. }
  31855. },
  31856. },
  31857. [
  31858. {
  31859. name: "Macro",
  31860. height: math.unit(190, "feet"),
  31861. default: true
  31862. },
  31863. ]
  31864. ))
  31865. characterMakers.push(() => makeCharacter(
  31866. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31867. {
  31868. front: {
  31869. height: math.unit(10, "feet"),
  31870. weight: math.unit(15015, "lb"),
  31871. name: "Front",
  31872. image: {
  31873. source: "./media/characters/platine/front.svg",
  31874. extra: 1741/1650,
  31875. bottom: 84/1825
  31876. }
  31877. },
  31878. side: {
  31879. height: math.unit(10, "feet"),
  31880. weight: math.unit(15015, "lb"),
  31881. name: "Side",
  31882. image: {
  31883. source: "./media/characters/platine/side.svg",
  31884. extra: 1790/1705,
  31885. bottom: 29/1819
  31886. }
  31887. },
  31888. },
  31889. [
  31890. {
  31891. name: "Normal",
  31892. height: math.unit(10, "feet"),
  31893. default: true
  31894. },
  31895. {
  31896. name: "Macro",
  31897. height: math.unit(100, "feet")
  31898. },
  31899. {
  31900. name: "Megamacro",
  31901. height: math.unit(1000, "feet")
  31902. },
  31903. ]
  31904. ))
  31905. characterMakers.push(() => makeCharacter(
  31906. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  31907. {
  31908. front: {
  31909. height: math.unit(15 + 5 / 12, "feet"),
  31910. weight: math.unit(4600, "lb"),
  31911. name: "Front",
  31912. image: {
  31913. source: "./media/characters/neapolitan-ananassa/front.svg",
  31914. extra: 2903 / 2736,
  31915. bottom: 0 / 2903
  31916. }
  31917. },
  31918. side: {
  31919. height: math.unit(15 + 5 / 12, "feet"),
  31920. weight: math.unit(4600, "lb"),
  31921. name: "Side",
  31922. image: {
  31923. source: "./media/characters/neapolitan-ananassa/side.svg",
  31924. extra: 2925 / 2719,
  31925. bottom: 0 / 2925
  31926. }
  31927. },
  31928. back: {
  31929. height: math.unit(15 + 5 / 12, "feet"),
  31930. weight: math.unit(4600, "lb"),
  31931. name: "Back",
  31932. image: {
  31933. source: "./media/characters/neapolitan-ananassa/back.svg",
  31934. extra: 2903 / 2736,
  31935. bottom: 0 / 2903
  31936. }
  31937. },
  31938. },
  31939. [
  31940. {
  31941. name: "Normal",
  31942. height: math.unit(15 + 5 / 12, "feet"),
  31943. default: true
  31944. },
  31945. {
  31946. name: "Post-Millenium",
  31947. height: math.unit(35 + 5 / 12, "feet")
  31948. },
  31949. {
  31950. name: "Post-Era",
  31951. height: math.unit(450 + 5 / 12, "feet")
  31952. },
  31953. ]
  31954. ))
  31955. characterMakers.push(() => makeCharacter(
  31956. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  31957. {
  31958. front: {
  31959. height: math.unit(300, "meters"),
  31960. weight: math.unit(125000, "tonnes"),
  31961. name: "Front",
  31962. image: {
  31963. source: "./media/characters/pazuzu/front.svg",
  31964. extra: 877 / 794,
  31965. bottom: 47 / 924
  31966. }
  31967. },
  31968. },
  31969. [
  31970. {
  31971. name: "Macro",
  31972. height: math.unit(300, "meters"),
  31973. default: true
  31974. },
  31975. ]
  31976. ))
  31977. characterMakers.push(() => makeCharacter(
  31978. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  31979. {
  31980. side: {
  31981. height: math.unit(10 + 7 / 12, "feet"),
  31982. weight: math.unit(2.5, "tons"),
  31983. name: "Side",
  31984. image: {
  31985. source: "./media/characters/aasha/side.svg",
  31986. extra: 1345 / 1245,
  31987. bottom: 111 / 1456
  31988. }
  31989. },
  31990. back: {
  31991. height: math.unit(10 + 7 / 12, "feet"),
  31992. weight: math.unit(2.5, "tons"),
  31993. name: "Back",
  31994. image: {
  31995. source: "./media/characters/aasha/back.svg",
  31996. extra: 1133 / 1057,
  31997. bottom: 257 / 1390
  31998. }
  31999. },
  32000. },
  32001. [
  32002. {
  32003. name: "Normal",
  32004. height: math.unit(10 + 7 / 12, "feet"),
  32005. default: true
  32006. },
  32007. ]
  32008. ))
  32009. characterMakers.push(() => makeCharacter(
  32010. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32011. {
  32012. front: {
  32013. height: math.unit(6 + 3 / 12, "feet"),
  32014. name: "Front",
  32015. image: {
  32016. source: "./media/characters/nevan/front.svg",
  32017. extra: 704 / 704,
  32018. bottom: 28 / 732
  32019. }
  32020. },
  32021. back: {
  32022. height: math.unit(6 + 3 / 12, "feet"),
  32023. name: "Back",
  32024. image: {
  32025. source: "./media/characters/nevan/back.svg",
  32026. extra: 714 / 714,
  32027. bottom: 21 / 735
  32028. }
  32029. },
  32030. frontFlaccid: {
  32031. height: math.unit(6 + 3 / 12, "feet"),
  32032. name: "Front (Flaccid)",
  32033. image: {
  32034. source: "./media/characters/nevan/front-flaccid.svg",
  32035. extra: 704 / 704,
  32036. bottom: 28 / 732
  32037. }
  32038. },
  32039. frontErect: {
  32040. height: math.unit(6 + 3 / 12, "feet"),
  32041. name: "Front (Erect)",
  32042. image: {
  32043. source: "./media/characters/nevan/front-erect.svg",
  32044. extra: 704 / 704,
  32045. bottom: 28 / 732
  32046. }
  32047. },
  32048. backFlaccid: {
  32049. height: math.unit(6 + 3 / 12, "feet"),
  32050. name: "Back (Flaccid)",
  32051. image: {
  32052. source: "./media/characters/nevan/back-flaccid.svg",
  32053. extra: 714 / 714,
  32054. bottom: 21 / 735
  32055. }
  32056. },
  32057. },
  32058. [
  32059. {
  32060. name: "Normal",
  32061. height: math.unit(6 + 3 / 12, "feet"),
  32062. default: true
  32063. },
  32064. ]
  32065. ))
  32066. characterMakers.push(() => makeCharacter(
  32067. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32068. {
  32069. front: {
  32070. height: math.unit(4, "feet"),
  32071. name: "Front",
  32072. image: {
  32073. source: "./media/characters/arhan/front.svg",
  32074. extra: 3368 / 3133,
  32075. bottom: 0 / 3368
  32076. }
  32077. },
  32078. side: {
  32079. height: math.unit(4, "feet"),
  32080. name: "Side",
  32081. image: {
  32082. source: "./media/characters/arhan/side.svg",
  32083. extra: 3347 / 3105,
  32084. bottom: 0 / 3347
  32085. }
  32086. },
  32087. tongue: {
  32088. height: math.unit(1.42, "feet"),
  32089. name: "Tongue",
  32090. image: {
  32091. source: "./media/characters/arhan/tongue.svg"
  32092. }
  32093. },
  32094. head: {
  32095. height: math.unit(0.85, "feet"),
  32096. name: "Head",
  32097. image: {
  32098. source: "./media/characters/arhan/head.svg"
  32099. }
  32100. },
  32101. },
  32102. [
  32103. {
  32104. name: "Normal",
  32105. height: math.unit(4, "feet"),
  32106. default: true
  32107. },
  32108. ]
  32109. ))
  32110. characterMakers.push(() => makeCharacter(
  32111. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32112. {
  32113. front: {
  32114. height: math.unit(5 + 7.5 / 12, "feet"),
  32115. weight: math.unit(120, "lb"),
  32116. name: "Front",
  32117. image: {
  32118. source: "./media/characters/digi-duncan/front.svg",
  32119. extra: 330 / 326,
  32120. bottom: 16 / 346
  32121. }
  32122. },
  32123. side: {
  32124. height: math.unit(5 + 7.5 / 12, "feet"),
  32125. weight: math.unit(120, "lb"),
  32126. name: "Side",
  32127. image: {
  32128. source: "./media/characters/digi-duncan/side.svg",
  32129. extra: 341 / 337,
  32130. bottom: 1 / 342
  32131. }
  32132. },
  32133. back: {
  32134. height: math.unit(5 + 7.5 / 12, "feet"),
  32135. weight: math.unit(120, "lb"),
  32136. name: "Back",
  32137. image: {
  32138. source: "./media/characters/digi-duncan/back.svg",
  32139. extra: 330 / 326,
  32140. bottom: 12 / 342
  32141. }
  32142. },
  32143. },
  32144. [
  32145. {
  32146. name: "Speck",
  32147. height: math.unit(0.25, "mm")
  32148. },
  32149. {
  32150. name: "Micro",
  32151. height: math.unit(5, "mm")
  32152. },
  32153. {
  32154. name: "Tiny",
  32155. height: math.unit(0.5, "inches"),
  32156. default: true
  32157. },
  32158. {
  32159. name: "Human",
  32160. height: math.unit(5 + 7.5 / 12, "feet")
  32161. },
  32162. {
  32163. name: "Minigiant",
  32164. height: math.unit(8 + 5.25, "feet")
  32165. },
  32166. {
  32167. name: "Giant",
  32168. height: math.unit(2000, "feet")
  32169. },
  32170. {
  32171. name: "Mega",
  32172. height: math.unit(371.1, "miles")
  32173. },
  32174. ]
  32175. ))
  32176. characterMakers.push(() => makeCharacter(
  32177. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32178. {
  32179. front: {
  32180. height: math.unit(2, "meters"),
  32181. weight: math.unit(350, "kg"),
  32182. name: "Front",
  32183. image: {
  32184. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32185. extra: 898 / 838,
  32186. bottom: 9 / 907
  32187. }
  32188. },
  32189. },
  32190. [
  32191. {
  32192. name: "Micro",
  32193. height: math.unit(8, "meters")
  32194. },
  32195. {
  32196. name: "Normal",
  32197. height: math.unit(50, "meters"),
  32198. default: true
  32199. },
  32200. {
  32201. name: "Macro",
  32202. height: math.unit(500, "meters")
  32203. },
  32204. ]
  32205. ))
  32206. characterMakers.push(() => makeCharacter(
  32207. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32208. {
  32209. front: {
  32210. height: math.unit(6 + 6 / 12, "feet"),
  32211. name: "Front",
  32212. image: {
  32213. source: "./media/characters/khardesh/front.svg",
  32214. extra: 1788/1596,
  32215. bottom: 66/1854
  32216. }
  32217. },
  32218. back: {
  32219. height: math.unit(6 + 6 / 12, "feet"),
  32220. name: "Back",
  32221. image: {
  32222. source: "./media/characters/khardesh/back.svg",
  32223. extra: 1781/1584,
  32224. bottom: 68/1849
  32225. }
  32226. },
  32227. },
  32228. [
  32229. {
  32230. name: "Normal",
  32231. height: math.unit(6 + 6 / 12, "feet"),
  32232. default: true
  32233. },
  32234. {
  32235. name: "Normal+",
  32236. height: math.unit(4, "meters")
  32237. },
  32238. {
  32239. name: "Macro",
  32240. height: math.unit(50, "meters")
  32241. },
  32242. {
  32243. name: "Macro+",
  32244. height: math.unit(100, "meters")
  32245. },
  32246. {
  32247. name: "Megamacro",
  32248. height: math.unit(20, "km")
  32249. },
  32250. ]
  32251. ))
  32252. characterMakers.push(() => makeCharacter(
  32253. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32254. {
  32255. front: {
  32256. height: math.unit(6, "feet"),
  32257. weight: math.unit(150, "lb"),
  32258. name: "Front",
  32259. image: {
  32260. source: "./media/characters/kosho/front.svg",
  32261. extra: 1847 / 1847,
  32262. bottom: 86 / 1933
  32263. }
  32264. },
  32265. },
  32266. [
  32267. {
  32268. name: "Second-stage micro",
  32269. height: math.unit(0.5, "inches")
  32270. },
  32271. {
  32272. name: "First-stage micro",
  32273. height: math.unit(6, "inches")
  32274. },
  32275. {
  32276. name: "Normal",
  32277. height: math.unit(6, "feet"),
  32278. default: true
  32279. },
  32280. {
  32281. name: "First-stage macro",
  32282. height: math.unit(72, "feet")
  32283. },
  32284. {
  32285. name: "Second-stage macro",
  32286. height: math.unit(864, "feet")
  32287. },
  32288. ]
  32289. ))
  32290. characterMakers.push(() => makeCharacter(
  32291. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32292. {
  32293. normal: {
  32294. height: math.unit(4 + 6 / 12, "feet"),
  32295. name: "Normal",
  32296. image: {
  32297. source: "./media/characters/hydra/normal.svg",
  32298. extra: 2833 / 2634,
  32299. bottom: 68 / 2901
  32300. }
  32301. },
  32302. smol: {
  32303. height: math.unit(0.705, "inches"),
  32304. name: "Smol",
  32305. image: {
  32306. source: "./media/characters/hydra/smol.svg",
  32307. extra: 2715 / 2540,
  32308. bottom: 0 / 2715
  32309. }
  32310. },
  32311. },
  32312. [
  32313. {
  32314. name: "Normal",
  32315. height: math.unit(4 + 6 / 12, "feet"),
  32316. default: true
  32317. }
  32318. ]
  32319. ))
  32320. characterMakers.push(() => makeCharacter(
  32321. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32322. {
  32323. front: {
  32324. height: math.unit(0.6, "cm"),
  32325. name: "Front",
  32326. image: {
  32327. source: "./media/characters/daz/front.svg",
  32328. extra: 1682 / 1164,
  32329. bottom: 42 / 1724
  32330. }
  32331. },
  32332. },
  32333. [
  32334. {
  32335. name: "Normal",
  32336. height: math.unit(0.6, "cm"),
  32337. default: true
  32338. },
  32339. ]
  32340. ))
  32341. characterMakers.push(() => makeCharacter(
  32342. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32343. {
  32344. front: {
  32345. height: math.unit(6, "feet"),
  32346. weight: math.unit(235, "lb"),
  32347. name: "Front",
  32348. image: {
  32349. source: "./media/characters/theo-pangolin/front.svg",
  32350. extra: 1996 / 1969,
  32351. bottom: 115 / 2111
  32352. }
  32353. },
  32354. back: {
  32355. height: math.unit(6, "feet"),
  32356. weight: math.unit(235, "lb"),
  32357. name: "Back",
  32358. image: {
  32359. source: "./media/characters/theo-pangolin/back.svg",
  32360. extra: 1979 / 1979,
  32361. bottom: 40 / 2019
  32362. }
  32363. },
  32364. feral: {
  32365. height: math.unit(2, "feet"),
  32366. weight: math.unit(30, "lb"),
  32367. name: "Feral",
  32368. image: {
  32369. source: "./media/characters/theo-pangolin/feral.svg",
  32370. extra: 803 / 791,
  32371. bottom: 181 / 984
  32372. }
  32373. },
  32374. footFive: {
  32375. height: math.unit(1.43, "feet"),
  32376. name: "Foot (Five Toes)",
  32377. image: {
  32378. source: "./media/characters/theo-pangolin/foot-five.svg"
  32379. }
  32380. },
  32381. footFour: {
  32382. height: math.unit(1.43, "feet"),
  32383. name: "Foot (Four Toes)",
  32384. image: {
  32385. source: "./media/characters/theo-pangolin/foot-four.svg"
  32386. }
  32387. },
  32388. handFour: {
  32389. height: math.unit(0.81, "feet"),
  32390. name: "Hand (Four Fingers)",
  32391. image: {
  32392. source: "./media/characters/theo-pangolin/hand-four.svg"
  32393. }
  32394. },
  32395. handThree: {
  32396. height: math.unit(0.81, "feet"),
  32397. name: "Hand (Three Fingers)",
  32398. image: {
  32399. source: "./media/characters/theo-pangolin/hand-three.svg"
  32400. }
  32401. },
  32402. headFront: {
  32403. height: math.unit(1.37, "feet"),
  32404. name: "Head (Front)",
  32405. image: {
  32406. source: "./media/characters/theo-pangolin/head-front.svg"
  32407. }
  32408. },
  32409. headSide: {
  32410. height: math.unit(1.43, "feet"),
  32411. name: "Head (Side)",
  32412. image: {
  32413. source: "./media/characters/theo-pangolin/head-side.svg"
  32414. }
  32415. },
  32416. tongue: {
  32417. height: math.unit(2.29, "feet"),
  32418. name: "Tongue",
  32419. image: {
  32420. source: "./media/characters/theo-pangolin/tongue.svg"
  32421. }
  32422. },
  32423. },
  32424. [
  32425. {
  32426. name: "Normal",
  32427. height: math.unit(6, "feet")
  32428. },
  32429. {
  32430. name: "Macro",
  32431. height: math.unit(400, "feet"),
  32432. default: true
  32433. },
  32434. ]
  32435. ))
  32436. characterMakers.push(() => makeCharacter(
  32437. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32438. {
  32439. front: {
  32440. height: math.unit(6, "inches"),
  32441. weight: math.unit(0.036, "kg"),
  32442. name: "Front",
  32443. image: {
  32444. source: "./media/characters/renée/front.svg",
  32445. extra: 900 / 886,
  32446. bottom: 8 / 908
  32447. }
  32448. },
  32449. },
  32450. [
  32451. {
  32452. name: "Nano",
  32453. height: math.unit(1, "nm")
  32454. },
  32455. {
  32456. name: "Micro",
  32457. height: math.unit(1, "mm")
  32458. },
  32459. {
  32460. name: "Normal",
  32461. height: math.unit(6, "inches")
  32462. },
  32463. {
  32464. name: "Macro",
  32465. height: math.unit(2000, "feet"),
  32466. default: true
  32467. },
  32468. {
  32469. name: "Megamacro",
  32470. height: math.unit(2, "km")
  32471. },
  32472. {
  32473. name: "Gigamacro",
  32474. height: math.unit(2000, "km")
  32475. },
  32476. {
  32477. name: "Teramacro",
  32478. height: math.unit(250000, "km")
  32479. },
  32480. ]
  32481. ))
  32482. characterMakers.push(() => makeCharacter(
  32483. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32484. {
  32485. front: {
  32486. height: math.unit(4, "meters"),
  32487. weight: math.unit(150, "kg"),
  32488. name: "Front",
  32489. image: {
  32490. source: "./media/characters/caledvwlch/front.svg",
  32491. extra: 1757/1537,
  32492. bottom: 31/1788
  32493. }
  32494. },
  32495. side: {
  32496. height: math.unit(4, "meters"),
  32497. weight: math.unit(150, "kg"),
  32498. name: "Side",
  32499. image: {
  32500. source: "./media/characters/caledvwlch/side.svg",
  32501. extra: 1605 / 1536,
  32502. bottom: 31 / 1636
  32503. }
  32504. },
  32505. back: {
  32506. height: math.unit(4, "meters"),
  32507. weight: math.unit(150, "kg"),
  32508. name: "Back",
  32509. image: {
  32510. source: "./media/characters/caledvwlch/back.svg",
  32511. extra: 1635 / 1565,
  32512. bottom: 27 / 1662
  32513. }
  32514. },
  32515. },
  32516. [
  32517. {
  32518. name: "\"Incognito\"",
  32519. height: math.unit(4, "meters")
  32520. },
  32521. {
  32522. name: "Small rampage",
  32523. height: math.unit(600, "meters")
  32524. },
  32525. {
  32526. name: "Mega",
  32527. height: math.unit(30, "km")
  32528. },
  32529. {
  32530. name: "Home-size",
  32531. height: math.unit(50, "km"),
  32532. default: true
  32533. },
  32534. {
  32535. name: "Giga",
  32536. height: math.unit(300, "km")
  32537. },
  32538. {
  32539. name: "Lounging",
  32540. height: math.unit(11000, "km")
  32541. },
  32542. {
  32543. name: "Planet snacking",
  32544. height: math.unit(2000000, "km")
  32545. },
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32550. {
  32551. front: {
  32552. height: math.unit(6, "feet"),
  32553. weight: math.unit(215, "lb"),
  32554. name: "Front",
  32555. image: {
  32556. source: "./media/characters/sapphire-svell/front.svg",
  32557. extra: 495 / 455,
  32558. bottom: 20 / 515
  32559. }
  32560. },
  32561. back: {
  32562. height: math.unit(6, "feet"),
  32563. weight: math.unit(216, "lb"),
  32564. name: "Back",
  32565. image: {
  32566. source: "./media/characters/sapphire-svell/back.svg",
  32567. extra: 497 / 477,
  32568. bottom: 7 / 504
  32569. }
  32570. },
  32571. maw: {
  32572. height: math.unit(1.57, "feet"),
  32573. name: "Maw",
  32574. image: {
  32575. source: "./media/characters/sapphire-svell/maw.svg"
  32576. }
  32577. },
  32578. foot: {
  32579. height: math.unit(1.07, "feet"),
  32580. name: "Foot",
  32581. image: {
  32582. source: "./media/characters/sapphire-svell/foot.svg"
  32583. }
  32584. },
  32585. toering: {
  32586. height: math.unit(1.7, "inch"),
  32587. name: "Toering",
  32588. image: {
  32589. source: "./media/characters/sapphire-svell/toering.svg"
  32590. }
  32591. },
  32592. },
  32593. [
  32594. {
  32595. name: "Normal",
  32596. height: math.unit(300, "feet"),
  32597. default: true
  32598. },
  32599. {
  32600. name: "Augmented",
  32601. height: math.unit(1250, "feet")
  32602. },
  32603. {
  32604. name: "Unleashed",
  32605. height: math.unit(3000, "feet")
  32606. },
  32607. ]
  32608. ))
  32609. characterMakers.push(() => makeCharacter(
  32610. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32611. {
  32612. side: {
  32613. height: math.unit(2 + 3 / 12, "feet"),
  32614. weight: math.unit(110, "lb"),
  32615. name: "Side",
  32616. image: {
  32617. source: "./media/characters/glitch-flux/side.svg",
  32618. extra: 997 / 805,
  32619. bottom: 20 / 1017
  32620. }
  32621. },
  32622. },
  32623. [
  32624. {
  32625. name: "Normal",
  32626. height: math.unit(2 + 3 / 12, "feet"),
  32627. default: true
  32628. },
  32629. ]
  32630. ))
  32631. characterMakers.push(() => makeCharacter(
  32632. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32633. {
  32634. front: {
  32635. height: math.unit(4, "meters"),
  32636. name: "Front",
  32637. image: {
  32638. source: "./media/characters/mid/front.svg",
  32639. extra: 507 / 476,
  32640. bottom: 17 / 524
  32641. }
  32642. },
  32643. back: {
  32644. height: math.unit(4, "meters"),
  32645. name: "Back",
  32646. image: {
  32647. source: "./media/characters/mid/back.svg",
  32648. extra: 519 / 487,
  32649. bottom: 7 / 526
  32650. }
  32651. },
  32652. stuck: {
  32653. height: math.unit(2.2, "meters"),
  32654. name: "Stuck",
  32655. image: {
  32656. source: "./media/characters/mid/stuck.svg",
  32657. extra: 1951 / 1869,
  32658. bottom: 88 / 2039
  32659. }
  32660. }
  32661. },
  32662. [
  32663. {
  32664. name: "Normal",
  32665. height: math.unit(4, "meters"),
  32666. default: true
  32667. },
  32668. {
  32669. name: "Big",
  32670. height: math.unit(10, "meters")
  32671. },
  32672. {
  32673. name: "Macro",
  32674. height: math.unit(800, "meters")
  32675. },
  32676. {
  32677. name: "Megamacro",
  32678. height: math.unit(100, "km")
  32679. },
  32680. {
  32681. name: "Overgrown",
  32682. height: math.unit(1, "parsec")
  32683. },
  32684. ]
  32685. ))
  32686. characterMakers.push(() => makeCharacter(
  32687. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32688. {
  32689. front: {
  32690. height: math.unit(2.5, "meters"),
  32691. weight: math.unit(225, "kg"),
  32692. name: "Front",
  32693. image: {
  32694. source: "./media/characters/iris/front.svg",
  32695. extra: 3348 / 3251,
  32696. bottom: 205 / 3553
  32697. }
  32698. },
  32699. maw: {
  32700. height: math.unit(0.56, "meter"),
  32701. name: "Maw",
  32702. image: {
  32703. source: "./media/characters/iris/maw.svg"
  32704. }
  32705. },
  32706. },
  32707. [
  32708. {
  32709. name: "Mewter cat",
  32710. height: math.unit(1.2, "meters")
  32711. },
  32712. {
  32713. name: "Normal",
  32714. height: math.unit(2.5, "meters"),
  32715. default: true
  32716. },
  32717. {
  32718. name: "Minimacro",
  32719. height: math.unit(18, "feet")
  32720. },
  32721. {
  32722. name: "Macro",
  32723. height: math.unit(140, "feet")
  32724. },
  32725. {
  32726. name: "Macro+",
  32727. height: math.unit(180, "meters")
  32728. },
  32729. {
  32730. name: "Megamacro",
  32731. height: math.unit(2746, "meters")
  32732. },
  32733. ]
  32734. ))
  32735. characterMakers.push(() => makeCharacter(
  32736. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32737. {
  32738. front: {
  32739. height: math.unit(6, "feet"),
  32740. weight: math.unit(135, "lb"),
  32741. name: "Front",
  32742. image: {
  32743. source: "./media/characters/axel/front.svg",
  32744. extra: 908 / 908,
  32745. bottom: 58 / 966
  32746. }
  32747. },
  32748. side: {
  32749. height: math.unit(6, "feet"),
  32750. weight: math.unit(135, "lb"),
  32751. name: "Side",
  32752. image: {
  32753. source: "./media/characters/axel/side.svg",
  32754. extra: 958 / 958,
  32755. bottom: 11 / 969
  32756. }
  32757. },
  32758. back: {
  32759. height: math.unit(6, "feet"),
  32760. weight: math.unit(135, "lb"),
  32761. name: "Back",
  32762. image: {
  32763. source: "./media/characters/axel/back.svg",
  32764. extra: 887 / 887,
  32765. bottom: 34 / 921
  32766. }
  32767. },
  32768. head: {
  32769. height: math.unit(1.07, "feet"),
  32770. name: "Head",
  32771. image: {
  32772. source: "./media/characters/axel/head.svg"
  32773. }
  32774. },
  32775. beak: {
  32776. height: math.unit(1.4, "feet"),
  32777. name: "Beak",
  32778. image: {
  32779. source: "./media/characters/axel/beak.svg"
  32780. }
  32781. },
  32782. beakSide: {
  32783. height: math.unit(1.4, "feet"),
  32784. name: "Beak Side",
  32785. image: {
  32786. source: "./media/characters/axel/beak-side.svg"
  32787. }
  32788. },
  32789. sheath: {
  32790. height: math.unit(0.5, "feet"),
  32791. name: "Sheath",
  32792. image: {
  32793. source: "./media/characters/axel/sheath.svg"
  32794. }
  32795. },
  32796. dick: {
  32797. height: math.unit(0.98, "feet"),
  32798. name: "Dick",
  32799. image: {
  32800. source: "./media/characters/axel/dick.svg"
  32801. }
  32802. },
  32803. },
  32804. [
  32805. {
  32806. name: "Macro",
  32807. height: math.unit(68, "meters"),
  32808. default: true
  32809. },
  32810. ]
  32811. ))
  32812. characterMakers.push(() => makeCharacter(
  32813. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32814. {
  32815. front: {
  32816. height: math.unit(3.5, "meters"),
  32817. weight: math.unit(1200, "kg"),
  32818. name: "Front",
  32819. image: {
  32820. source: "./media/characters/joanna/front.svg",
  32821. extra: 1596 / 1488,
  32822. bottom: 29 / 1625
  32823. }
  32824. },
  32825. back: {
  32826. height: math.unit(3.5, "meters"),
  32827. weight: math.unit(1200, "kg"),
  32828. name: "Back",
  32829. image: {
  32830. source: "./media/characters/joanna/back.svg",
  32831. extra: 1594 / 1495,
  32832. bottom: 26 / 1620
  32833. }
  32834. },
  32835. frontShorts: {
  32836. height: math.unit(3.5, "meters"),
  32837. weight: math.unit(1200, "kg"),
  32838. name: "Front (Shorts)",
  32839. image: {
  32840. source: "./media/characters/joanna/front-shorts.svg",
  32841. extra: 1596 / 1488,
  32842. bottom: 29 / 1625
  32843. }
  32844. },
  32845. frontBiker: {
  32846. height: math.unit(3.5, "meters"),
  32847. weight: math.unit(1200, "kg"),
  32848. name: "Front (Biker)",
  32849. image: {
  32850. source: "./media/characters/joanna/front-biker.svg",
  32851. extra: 1596 / 1488,
  32852. bottom: 29 / 1625
  32853. }
  32854. },
  32855. backBiker: {
  32856. height: math.unit(3.5, "meters"),
  32857. weight: math.unit(1200, "kg"),
  32858. name: "Back (Biker)",
  32859. image: {
  32860. source: "./media/characters/joanna/back-biker.svg",
  32861. extra: 1594 / 1495,
  32862. bottom: 88 / 1682
  32863. }
  32864. },
  32865. bikeLeft: {
  32866. height: math.unit(2.4, "meters"),
  32867. weight: math.unit(1600, "kg"),
  32868. name: "Bike (Left)",
  32869. image: {
  32870. source: "./media/characters/joanna/bike-left.svg",
  32871. extra: 720 / 720,
  32872. bottom: 8 / 728
  32873. }
  32874. },
  32875. bikeRight: {
  32876. height: math.unit(2.4, "meters"),
  32877. weight: math.unit(1600, "kg"),
  32878. name: "Bike (Right)",
  32879. image: {
  32880. source: "./media/characters/joanna/bike-right.svg",
  32881. extra: 720 / 720,
  32882. bottom: 8 / 728
  32883. }
  32884. },
  32885. },
  32886. [
  32887. {
  32888. name: "Incognito",
  32889. height: math.unit(3.5, "meters")
  32890. },
  32891. {
  32892. name: "Casual Big",
  32893. height: math.unit(200, "meters")
  32894. },
  32895. {
  32896. name: "Macro",
  32897. height: math.unit(600, "meters")
  32898. },
  32899. {
  32900. name: "Original",
  32901. height: math.unit(20, "km"),
  32902. default: true
  32903. },
  32904. {
  32905. name: "Giga",
  32906. height: math.unit(400, "km")
  32907. },
  32908. {
  32909. name: "Lounging",
  32910. height: math.unit(1500, "km")
  32911. },
  32912. {
  32913. name: "Planetary",
  32914. height: math.unit(200000, "km")
  32915. },
  32916. ]
  32917. ))
  32918. characterMakers.push(() => makeCharacter(
  32919. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  32920. {
  32921. front: {
  32922. height: math.unit(6, "feet"),
  32923. weight: math.unit(150, "lb"),
  32924. name: "Front",
  32925. image: {
  32926. source: "./media/characters/hugo-sigil/front.svg",
  32927. extra: 522 / 500,
  32928. bottom: 2 / 524
  32929. }
  32930. },
  32931. back: {
  32932. height: math.unit(6, "feet"),
  32933. weight: math.unit(150, "lb"),
  32934. name: "Back",
  32935. image: {
  32936. source: "./media/characters/hugo-sigil/back.svg",
  32937. extra: 519 / 495,
  32938. bottom: 5 / 524
  32939. }
  32940. },
  32941. maw: {
  32942. height: math.unit(1.4, "feet"),
  32943. weight: math.unit(150, "lb"),
  32944. name: "Maw",
  32945. image: {
  32946. source: "./media/characters/hugo-sigil/maw.svg"
  32947. }
  32948. },
  32949. feet: {
  32950. height: math.unit(1.56, "feet"),
  32951. weight: math.unit(150, "lb"),
  32952. name: "Feet",
  32953. image: {
  32954. source: "./media/characters/hugo-sigil/feet.svg",
  32955. extra: 177 / 177,
  32956. bottom: 12 / 189
  32957. }
  32958. },
  32959. },
  32960. [
  32961. {
  32962. name: "Normal",
  32963. height: math.unit(6, "feet")
  32964. },
  32965. {
  32966. name: "Macro",
  32967. height: math.unit(200, "feet"),
  32968. default: true
  32969. },
  32970. ]
  32971. ))
  32972. characterMakers.push(() => makeCharacter(
  32973. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  32974. {
  32975. front: {
  32976. height: math.unit(6, "feet"),
  32977. weight: math.unit(150, "lb"),
  32978. name: "Front",
  32979. image: {
  32980. source: "./media/characters/peri/front.svg",
  32981. extra: 2354 / 2233,
  32982. bottom: 49 / 2403
  32983. }
  32984. },
  32985. },
  32986. [
  32987. {
  32988. name: "Really Small",
  32989. height: math.unit(1, "nm")
  32990. },
  32991. {
  32992. name: "Micro",
  32993. height: math.unit(4, "inches")
  32994. },
  32995. {
  32996. name: "Normal",
  32997. height: math.unit(7, "inches"),
  32998. default: true
  32999. },
  33000. {
  33001. name: "Macro",
  33002. height: math.unit(400, "feet")
  33003. },
  33004. {
  33005. name: "Megamacro",
  33006. height: math.unit(100, "miles")
  33007. },
  33008. ]
  33009. ))
  33010. characterMakers.push(() => makeCharacter(
  33011. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33012. {
  33013. frontSlim: {
  33014. height: math.unit(7, "feet"),
  33015. name: "Front (Slim)",
  33016. image: {
  33017. source: "./media/characters/issilora/front-slim.svg",
  33018. extra: 529 / 449,
  33019. bottom: 53 / 582
  33020. }
  33021. },
  33022. sideSlim: {
  33023. height: math.unit(7, "feet"),
  33024. name: "Side (Slim)",
  33025. image: {
  33026. source: "./media/characters/issilora/side-slim.svg",
  33027. extra: 570 / 480,
  33028. bottom: 30 / 600
  33029. }
  33030. },
  33031. backSlim: {
  33032. height: math.unit(7, "feet"),
  33033. name: "Back (Slim)",
  33034. image: {
  33035. source: "./media/characters/issilora/back-slim.svg",
  33036. extra: 537 / 455,
  33037. bottom: 46 / 583
  33038. }
  33039. },
  33040. frontBuff: {
  33041. height: math.unit(7, "feet"),
  33042. name: "Front (Buff)",
  33043. image: {
  33044. source: "./media/characters/issilora/front-buff.svg",
  33045. extra: 2310 / 2035,
  33046. bottom: 335 / 2645
  33047. }
  33048. },
  33049. head: {
  33050. height: math.unit(1.94, "feet"),
  33051. name: "Head",
  33052. image: {
  33053. source: "./media/characters/issilora/head.svg"
  33054. }
  33055. },
  33056. },
  33057. [
  33058. {
  33059. name: "Minimum",
  33060. height: math.unit(7, "feet")
  33061. },
  33062. {
  33063. name: "Comfortable",
  33064. height: math.unit(17, "feet")
  33065. },
  33066. {
  33067. name: "Fun Size",
  33068. height: math.unit(47, "feet")
  33069. },
  33070. {
  33071. name: "Natural Macro",
  33072. height: math.unit(137, "feet"),
  33073. default: true
  33074. },
  33075. {
  33076. name: "Maximum Kaiju",
  33077. height: math.unit(397, "feet")
  33078. },
  33079. ]
  33080. ))
  33081. characterMakers.push(() => makeCharacter(
  33082. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33083. {
  33084. front: {
  33085. height: math.unit(50 + 9/12, "feet"),
  33086. weight: math.unit(32.8, "tons"),
  33087. name: "Front",
  33088. image: {
  33089. source: "./media/characters/irb'iiritaahn/front.svg",
  33090. extra: 1878/1826,
  33091. bottom: 326/2204
  33092. }
  33093. },
  33094. back: {
  33095. height: math.unit(50 + 9/12, "feet"),
  33096. weight: math.unit(32.8, "tons"),
  33097. name: "Back",
  33098. image: {
  33099. source: "./media/characters/irb'iiritaahn/back.svg",
  33100. extra: 2052/2018,
  33101. bottom: 152/2204
  33102. }
  33103. },
  33104. head: {
  33105. height: math.unit(12.86, "feet"),
  33106. name: "Head",
  33107. image: {
  33108. source: "./media/characters/irb'iiritaahn/head.svg"
  33109. }
  33110. },
  33111. maw: {
  33112. height: math.unit(9.66, "feet"),
  33113. name: "Maw",
  33114. image: {
  33115. source: "./media/characters/irb'iiritaahn/maw.svg"
  33116. }
  33117. },
  33118. frontDick: {
  33119. height: math.unit(8.78461, "feet"),
  33120. name: "Front Dick",
  33121. image: {
  33122. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33123. }
  33124. },
  33125. rearDick: {
  33126. height: math.unit(8.78461, "feet"),
  33127. name: "Rear Dick",
  33128. image: {
  33129. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33130. }
  33131. },
  33132. rearDickUnfolded: {
  33133. height: math.unit(8.78, "feet"),
  33134. name: "Rear Dick (Unfolded)",
  33135. image: {
  33136. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33137. }
  33138. },
  33139. wings: {
  33140. height: math.unit(43, "feet"),
  33141. name: "Wings",
  33142. image: {
  33143. source: "./media/characters/irb'iiritaahn/wings.svg"
  33144. }
  33145. },
  33146. },
  33147. [
  33148. {
  33149. name: "Macro",
  33150. height: math.unit(50 + 9/12, "feet"),
  33151. default: true
  33152. },
  33153. ]
  33154. ))
  33155. characterMakers.push(() => makeCharacter(
  33156. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33157. {
  33158. front: {
  33159. height: math.unit(205, "cm"),
  33160. weight: math.unit(102, "kg"),
  33161. name: "Front",
  33162. image: {
  33163. source: "./media/characters/irbisgreif/front.svg",
  33164. extra: 785/706,
  33165. bottom: 13/798
  33166. }
  33167. },
  33168. back: {
  33169. height: math.unit(205, "cm"),
  33170. weight: math.unit(102, "kg"),
  33171. name: "Back",
  33172. image: {
  33173. source: "./media/characters/irbisgreif/back.svg",
  33174. extra: 713/701,
  33175. bottom: 26/739
  33176. }
  33177. },
  33178. frontDressed: {
  33179. height: math.unit(216, "cm"),
  33180. weight: math.unit(102, "kg"),
  33181. name: "Front-dressed",
  33182. image: {
  33183. source: "./media/characters/irbisgreif/front-dressed.svg",
  33184. extra: 902/776,
  33185. bottom: 14/916
  33186. }
  33187. },
  33188. sideDressed: {
  33189. height: math.unit(195, "cm"),
  33190. weight: math.unit(102, "kg"),
  33191. name: "Side-dressed",
  33192. image: {
  33193. source: "./media/characters/irbisgreif/side-dressed.svg",
  33194. extra: 788/688,
  33195. bottom: 21/809
  33196. }
  33197. },
  33198. backDressed: {
  33199. height: math.unit(216, "cm"),
  33200. weight: math.unit(102, "kg"),
  33201. name: "Back-dressed",
  33202. image: {
  33203. source: "./media/characters/irbisgreif/back-dressed.svg",
  33204. extra: 901/783,
  33205. bottom: 10/911
  33206. }
  33207. },
  33208. dick: {
  33209. height: math.unit(0.49, "feet"),
  33210. name: "Dick",
  33211. image: {
  33212. source: "./media/characters/irbisgreif/dick.svg"
  33213. }
  33214. },
  33215. wingTop: {
  33216. height: math.unit(1.93 , "feet"),
  33217. name: "Wing-top",
  33218. image: {
  33219. source: "./media/characters/irbisgreif/wing-top.svg"
  33220. }
  33221. },
  33222. wingBottom: {
  33223. height: math.unit(1.93 , "feet"),
  33224. name: "Wing-bottom",
  33225. image: {
  33226. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33227. }
  33228. },
  33229. },
  33230. [
  33231. {
  33232. name: "Normal",
  33233. height: math.unit(216, "cm"),
  33234. default: true
  33235. },
  33236. ]
  33237. ))
  33238. characterMakers.push(() => makeCharacter(
  33239. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33240. {
  33241. front: {
  33242. height: math.unit(6, "feet"),
  33243. weight: math.unit(150, "lb"),
  33244. name: "Front",
  33245. image: {
  33246. source: "./media/characters/pride/front.svg",
  33247. extra: 1299/1230,
  33248. bottom: 18/1317
  33249. }
  33250. },
  33251. },
  33252. [
  33253. {
  33254. name: "Normal",
  33255. height: math.unit(7, "feet")
  33256. },
  33257. {
  33258. name: "Mini-macro",
  33259. height: math.unit(11, "feet")
  33260. },
  33261. {
  33262. name: "Macro",
  33263. height: math.unit(15, "meters"),
  33264. default: true
  33265. },
  33266. {
  33267. name: "Macro+",
  33268. height: math.unit(40, "meters")
  33269. },
  33270. ]
  33271. ))
  33272. characterMakers.push(() => makeCharacter(
  33273. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33274. {
  33275. front: {
  33276. height: math.unit(4 + 2 / 12, "feet"),
  33277. weight: math.unit(95, "lb"),
  33278. name: "Front",
  33279. image: {
  33280. source: "./media/characters/vaelophis-nyx/front.svg",
  33281. extra: 2532/2330,
  33282. bottom: 0/2532
  33283. }
  33284. },
  33285. back: {
  33286. height: math.unit(4 + 2 / 12, "feet"),
  33287. weight: math.unit(95, "lb"),
  33288. name: "Back",
  33289. image: {
  33290. source: "./media/characters/vaelophis-nyx/back.svg",
  33291. extra: 2484/2361,
  33292. bottom: 0/2484
  33293. }
  33294. },
  33295. feralSide: {
  33296. height: math.unit(2 + 1/12, "feet"),
  33297. weight: math.unit(20, "lb"),
  33298. name: "Feral (Side)",
  33299. image: {
  33300. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33301. extra: 1721/1581,
  33302. bottom: 70/1791
  33303. }
  33304. },
  33305. feralLazing: {
  33306. height: math.unit(1.08, "feet"),
  33307. weight: math.unit(20, "lb"),
  33308. name: "Feral (Lazing)",
  33309. image: {
  33310. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33311. extra: 822/822,
  33312. bottom: 248/1070
  33313. }
  33314. },
  33315. ear: {
  33316. height: math.unit(0.416, "feet"),
  33317. name: "Ear",
  33318. image: {
  33319. source: "./media/characters/vaelophis-nyx/ear.svg"
  33320. }
  33321. },
  33322. eye: {
  33323. height: math.unit(0.0748, "feet"),
  33324. name: "Eye",
  33325. image: {
  33326. source: "./media/characters/vaelophis-nyx/eye.svg"
  33327. }
  33328. },
  33329. mouth: {
  33330. height: math.unit(0.378, "feet"),
  33331. name: "Mouth",
  33332. image: {
  33333. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33334. }
  33335. },
  33336. spade: {
  33337. height: math.unit(0.55, "feet"),
  33338. name: "Spade",
  33339. image: {
  33340. source: "./media/characters/vaelophis-nyx/spade.svg"
  33341. }
  33342. },
  33343. },
  33344. [
  33345. {
  33346. name: "Normal",
  33347. height: math.unit(4 + 2/12, "feet"),
  33348. default: true
  33349. },
  33350. ]
  33351. ))
  33352. characterMakers.push(() => makeCharacter(
  33353. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33354. {
  33355. front: {
  33356. height: math.unit(7, "feet"),
  33357. weight: math.unit(231, "lb"),
  33358. name: "Front",
  33359. image: {
  33360. source: "./media/characters/flux/front.svg",
  33361. extra: 919/871,
  33362. bottom: 0/919
  33363. }
  33364. },
  33365. back: {
  33366. height: math.unit(7, "feet"),
  33367. weight: math.unit(231, "lb"),
  33368. name: "Back",
  33369. image: {
  33370. source: "./media/characters/flux/back.svg",
  33371. extra: 1040/992,
  33372. bottom: 0/1040
  33373. }
  33374. },
  33375. frontDressed: {
  33376. height: math.unit(7, "feet"),
  33377. weight: math.unit(231, "lb"),
  33378. name: "Front (Dressed)",
  33379. image: {
  33380. source: "./media/characters/flux/front-dressed.svg",
  33381. extra: 919/871,
  33382. bottom: 0/919
  33383. }
  33384. },
  33385. feralSide: {
  33386. height: math.unit(5, "feet"),
  33387. weight: math.unit(150, "lb"),
  33388. name: "Feral (Side)",
  33389. image: {
  33390. source: "./media/characters/flux/feral-side.svg",
  33391. extra: 598/528,
  33392. bottom: 28/626
  33393. }
  33394. },
  33395. head: {
  33396. height: math.unit(1.585, "feet"),
  33397. name: "Head",
  33398. image: {
  33399. source: "./media/characters/flux/head.svg"
  33400. }
  33401. },
  33402. headSide: {
  33403. height: math.unit(1.74, "feet"),
  33404. name: "Head (Side)",
  33405. image: {
  33406. source: "./media/characters/flux/head-side.svg"
  33407. }
  33408. },
  33409. headSideFire: {
  33410. height: math.unit(1.76, "feet"),
  33411. name: "Head (Side, Fire)",
  33412. image: {
  33413. source: "./media/characters/flux/head-side-fire.svg"
  33414. }
  33415. },
  33416. },
  33417. [
  33418. {
  33419. name: "Normal",
  33420. height: math.unit(7, "feet"),
  33421. default: true
  33422. },
  33423. ]
  33424. ))
  33425. characterMakers.push(() => makeCharacter(
  33426. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33427. {
  33428. front: {
  33429. height: math.unit(9, "feet"),
  33430. weight: math.unit(1012, "lb"),
  33431. name: "Front",
  33432. image: {
  33433. source: "./media/characters/ulfra-lupae/front.svg",
  33434. extra: 1083/1011,
  33435. bottom: 67/1150
  33436. }
  33437. },
  33438. },
  33439. [
  33440. {
  33441. name: "Micro",
  33442. height: math.unit(6, "inches")
  33443. },
  33444. {
  33445. name: "Socializing",
  33446. height: math.unit(6 + 5/12, "feet")
  33447. },
  33448. {
  33449. name: "Normal",
  33450. height: math.unit(9, "feet"),
  33451. default: true
  33452. },
  33453. {
  33454. name: "Macro",
  33455. height: math.unit(150, "feet")
  33456. },
  33457. ]
  33458. ))
  33459. characterMakers.push(() => makeCharacter(
  33460. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33461. {
  33462. front: {
  33463. height: math.unit(5 + 2/12, "feet"),
  33464. weight: math.unit(120, "lb"),
  33465. name: "Front",
  33466. image: {
  33467. source: "./media/characters/timber/front.svg",
  33468. extra: 2814/2705,
  33469. bottom: 181/2995
  33470. }
  33471. },
  33472. },
  33473. [
  33474. {
  33475. name: "Normal",
  33476. height: math.unit(5 + 2/12, "feet"),
  33477. default: true
  33478. },
  33479. ]
  33480. ))
  33481. characterMakers.push(() => makeCharacter(
  33482. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33483. {
  33484. front: {
  33485. height: math.unit(9, "feet"),
  33486. name: "Front",
  33487. image: {
  33488. source: "./media/characters/nicki/front.svg",
  33489. extra: 1240/990,
  33490. bottom: 45/1285
  33491. },
  33492. form: "anthro",
  33493. default: true
  33494. },
  33495. side: {
  33496. height: math.unit(9, "feet"),
  33497. name: "Side",
  33498. image: {
  33499. source: "./media/characters/nicki/side.svg",
  33500. extra: 1047/973,
  33501. bottom: 61/1108
  33502. },
  33503. form: "anthro"
  33504. },
  33505. back: {
  33506. height: math.unit(9, "feet"),
  33507. name: "Back",
  33508. image: {
  33509. source: "./media/characters/nicki/back.svg",
  33510. extra: 1006/965,
  33511. bottom: 39/1045
  33512. },
  33513. form: "anthro"
  33514. },
  33515. taur: {
  33516. height: math.unit(15, "feet"),
  33517. name: "Taur",
  33518. image: {
  33519. source: "./media/characters/nicki/taur.svg",
  33520. extra: 1592/1347,
  33521. bottom: 0/1592
  33522. },
  33523. form: "taur",
  33524. default: true
  33525. },
  33526. },
  33527. [
  33528. {
  33529. name: "Normal",
  33530. height: math.unit(9, "feet"),
  33531. form: "anthro",
  33532. default: true
  33533. },
  33534. {
  33535. name: "Normal",
  33536. height: math.unit(15, "feet"),
  33537. form: "taur",
  33538. default: true
  33539. }
  33540. ],
  33541. {
  33542. "anthro": {
  33543. name: "Anthro",
  33544. default: true
  33545. },
  33546. "taur": {
  33547. name: "Taur"
  33548. }
  33549. }
  33550. ))
  33551. characterMakers.push(() => makeCharacter(
  33552. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33553. {
  33554. front: {
  33555. height: math.unit(7 + 10/12, "feet"),
  33556. weight: math.unit(3.5, "tons"),
  33557. name: "Front",
  33558. image: {
  33559. source: "./media/characters/lee/front.svg",
  33560. extra: 1773/1615,
  33561. bottom: 86/1859
  33562. }
  33563. },
  33564. hand: {
  33565. height: math.unit(1.78, "feet"),
  33566. name: "Hand",
  33567. image: {
  33568. source: "./media/characters/lee/hand.svg"
  33569. }
  33570. },
  33571. maw: {
  33572. height: math.unit(1.18, "feet"),
  33573. name: "Maw",
  33574. image: {
  33575. source: "./media/characters/lee/maw.svg"
  33576. }
  33577. },
  33578. },
  33579. [
  33580. {
  33581. name: "Normal",
  33582. height: math.unit(7 + 10/12, "feet"),
  33583. default: true
  33584. },
  33585. ]
  33586. ))
  33587. characterMakers.push(() => makeCharacter(
  33588. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33589. {
  33590. front: {
  33591. height: math.unit(9, "feet"),
  33592. name: "Front",
  33593. image: {
  33594. source: "./media/characters/guti/front.svg",
  33595. extra: 4551/4355,
  33596. bottom: 123/4674
  33597. }
  33598. },
  33599. tongue: {
  33600. height: math.unit(1, "feet"),
  33601. name: "Tongue",
  33602. image: {
  33603. source: "./media/characters/guti/tongue.svg"
  33604. }
  33605. },
  33606. paw: {
  33607. height: math.unit(1.18, "feet"),
  33608. name: "Paw",
  33609. image: {
  33610. source: "./media/characters/guti/paw.svg"
  33611. }
  33612. },
  33613. },
  33614. [
  33615. {
  33616. name: "Normal",
  33617. height: math.unit(9, "feet"),
  33618. default: true
  33619. },
  33620. ]
  33621. ))
  33622. characterMakers.push(() => makeCharacter(
  33623. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33624. {
  33625. side: {
  33626. height: math.unit(5, "meters"),
  33627. name: "Side",
  33628. image: {
  33629. source: "./media/characters/vesper/side.svg",
  33630. extra: 1605/1518,
  33631. bottom: 0/1605
  33632. }
  33633. },
  33634. },
  33635. [
  33636. {
  33637. name: "Small",
  33638. height: math.unit(5, "meters")
  33639. },
  33640. {
  33641. name: "Sage",
  33642. height: math.unit(100, "meters"),
  33643. default: true
  33644. },
  33645. {
  33646. name: "Fun Size",
  33647. height: math.unit(600, "meters")
  33648. },
  33649. {
  33650. name: "Goddess",
  33651. height: math.unit(20000, "km")
  33652. },
  33653. {
  33654. name: "Maximum",
  33655. height: math.unit(5, "galaxies")
  33656. },
  33657. ]
  33658. ))
  33659. characterMakers.push(() => makeCharacter(
  33660. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33661. {
  33662. front: {
  33663. height: math.unit(6 + 3/12, "feet"),
  33664. weight: math.unit(190, "lb"),
  33665. name: "Front",
  33666. image: {
  33667. source: "./media/characters/gawain/front.svg",
  33668. extra: 2222/2139,
  33669. bottom: 90/2312
  33670. }
  33671. },
  33672. back: {
  33673. height: math.unit(6 + 3/12, "feet"),
  33674. weight: math.unit(190, "lb"),
  33675. name: "Back",
  33676. image: {
  33677. source: "./media/characters/gawain/back.svg",
  33678. extra: 2199/2111,
  33679. bottom: 73/2272
  33680. }
  33681. },
  33682. },
  33683. [
  33684. {
  33685. name: "Normal",
  33686. height: math.unit(6 + 3/12, "feet"),
  33687. default: true
  33688. },
  33689. ]
  33690. ))
  33691. characterMakers.push(() => makeCharacter(
  33692. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33693. {
  33694. side: {
  33695. height: math.unit(3.5, "meters"),
  33696. weight: math.unit(16000, "lb"),
  33697. name: "Side",
  33698. image: {
  33699. source: "./media/characters/dascalti/side.svg",
  33700. extra: 392/273,
  33701. bottom: 47/439
  33702. }
  33703. },
  33704. breath: {
  33705. height: math.unit(7.4, "feet"),
  33706. name: "Breath",
  33707. image: {
  33708. source: "./media/characters/dascalti/breath.svg"
  33709. }
  33710. },
  33711. fed: {
  33712. height: math.unit(3.6, "meters"),
  33713. weight: math.unit(16000, "lb"),
  33714. name: "Fed",
  33715. image: {
  33716. source: "./media/characters/dascalti/fed.svg",
  33717. extra: 1419/820,
  33718. bottom: 95/1514
  33719. }
  33720. },
  33721. },
  33722. [
  33723. {
  33724. name: "Normal",
  33725. height: math.unit(3.5, "meters"),
  33726. default: true
  33727. },
  33728. ]
  33729. ))
  33730. characterMakers.push(() => makeCharacter(
  33731. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33732. {
  33733. front: {
  33734. height: math.unit(3 + 5/12, "feet"),
  33735. name: "Front",
  33736. image: {
  33737. source: "./media/characters/mauve/front.svg",
  33738. extra: 1126/1033,
  33739. bottom: 65/1191
  33740. }
  33741. },
  33742. side: {
  33743. height: math.unit(3 + 5/12, "feet"),
  33744. name: "Side",
  33745. image: {
  33746. source: "./media/characters/mauve/side.svg",
  33747. extra: 1089/1001,
  33748. bottom: 29/1118
  33749. }
  33750. },
  33751. back: {
  33752. height: math.unit(3 + 5/12, "feet"),
  33753. name: "Back",
  33754. image: {
  33755. source: "./media/characters/mauve/back.svg",
  33756. extra: 1173/1053,
  33757. bottom: 109/1282
  33758. }
  33759. },
  33760. },
  33761. [
  33762. {
  33763. name: "Normal",
  33764. height: math.unit(3 + 5/12, "feet"),
  33765. default: true
  33766. },
  33767. ]
  33768. ))
  33769. characterMakers.push(() => makeCharacter(
  33770. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33771. {
  33772. front: {
  33773. height: math.unit(6 + 3/12, "feet"),
  33774. weight: math.unit(430, "lb"),
  33775. name: "Front",
  33776. image: {
  33777. source: "./media/characters/carlos/front.svg",
  33778. extra: 1964/1913,
  33779. bottom: 70/2034
  33780. }
  33781. },
  33782. },
  33783. [
  33784. {
  33785. name: "Normal",
  33786. height: math.unit(6 + 3/12, "feet"),
  33787. default: true
  33788. },
  33789. ]
  33790. ))
  33791. characterMakers.push(() => makeCharacter(
  33792. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33793. {
  33794. back: {
  33795. height: math.unit(5 + 10/12, "feet"),
  33796. weight: math.unit(200, "lb"),
  33797. name: "Back",
  33798. image: {
  33799. source: "./media/characters/jax/back.svg",
  33800. extra: 764/739,
  33801. bottom: 25/789
  33802. }
  33803. },
  33804. },
  33805. [
  33806. {
  33807. name: "Normal",
  33808. height: math.unit(5 + 10/12, "feet"),
  33809. default: true
  33810. },
  33811. ]
  33812. ))
  33813. characterMakers.push(() => makeCharacter(
  33814. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33815. {
  33816. front: {
  33817. height: math.unit(8, "feet"),
  33818. weight: math.unit(250, "lb"),
  33819. name: "Front",
  33820. image: {
  33821. source: "./media/characters/eikthynir/front.svg",
  33822. extra: 1332/1166,
  33823. bottom: 82/1414
  33824. }
  33825. },
  33826. back: {
  33827. height: math.unit(8, "feet"),
  33828. weight: math.unit(250, "lb"),
  33829. name: "Back",
  33830. image: {
  33831. source: "./media/characters/eikthynir/back.svg",
  33832. extra: 1342/1190,
  33833. bottom: 19/1361
  33834. }
  33835. },
  33836. dick: {
  33837. height: math.unit(2.35, "feet"),
  33838. name: "Dick",
  33839. image: {
  33840. source: "./media/characters/eikthynir/dick.svg"
  33841. }
  33842. },
  33843. },
  33844. [
  33845. {
  33846. name: "Normal",
  33847. height: math.unit(8, "feet"),
  33848. default: true
  33849. },
  33850. ]
  33851. ))
  33852. characterMakers.push(() => makeCharacter(
  33853. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33854. {
  33855. front: {
  33856. height: math.unit(99, "meters"),
  33857. weight: math.unit(13000, "tons"),
  33858. name: "Front",
  33859. image: {
  33860. source: "./media/characters/zlmos/front.svg",
  33861. extra: 2202/1992,
  33862. bottom: 315/2517
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Macro",
  33869. height: math.unit(99, "meters"),
  33870. default: true
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33876. {
  33877. front: {
  33878. height: math.unit(6 + 5/12, "feet"),
  33879. name: "Front",
  33880. image: {
  33881. source: "./media/characters/purri/front.svg",
  33882. extra: 1698/1610,
  33883. bottom: 32/1730
  33884. }
  33885. },
  33886. frontAlt: {
  33887. height: math.unit(6 + 5/12, "feet"),
  33888. name: "Front (Alt)",
  33889. image: {
  33890. source: "./media/characters/purri/front-alt.svg",
  33891. extra: 450/420,
  33892. bottom: 26/476
  33893. }
  33894. },
  33895. boots: {
  33896. height: math.unit(5.5, "feet"),
  33897. name: "Boots",
  33898. image: {
  33899. source: "./media/characters/purri/boots.svg",
  33900. extra: 905/853,
  33901. bottom: 18/923
  33902. }
  33903. },
  33904. lying: {
  33905. height: math.unit(2, "feet"),
  33906. name: "Lying",
  33907. image: {
  33908. source: "./media/characters/purri/lying.svg",
  33909. extra: 940/843,
  33910. bottom: 146/1086
  33911. }
  33912. },
  33913. devious: {
  33914. height: math.unit(1.77, "feet"),
  33915. name: "Devious",
  33916. image: {
  33917. source: "./media/characters/purri/devious.svg",
  33918. extra: 1440/1155,
  33919. bottom: 147/1587
  33920. }
  33921. },
  33922. bean: {
  33923. height: math.unit(1.94, "feet"),
  33924. name: "Bean",
  33925. image: {
  33926. source: "./media/characters/purri/bean.svg"
  33927. }
  33928. },
  33929. },
  33930. [
  33931. {
  33932. name: "Micro",
  33933. height: math.unit(1, "mm")
  33934. },
  33935. {
  33936. name: "Normal",
  33937. height: math.unit(6 + 5/12, "feet"),
  33938. default: true
  33939. },
  33940. {
  33941. name: "Macro :3c",
  33942. height: math.unit(2, "miles")
  33943. },
  33944. ]
  33945. ))
  33946. characterMakers.push(() => makeCharacter(
  33947. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  33948. {
  33949. front: {
  33950. height: math.unit(6 + 2/12, "feet"),
  33951. weight: math.unit(250, "lb"),
  33952. name: "Front",
  33953. image: {
  33954. source: "./media/characters/moonlight/front.svg",
  33955. extra: 1044/908,
  33956. bottom: 56/1100
  33957. }
  33958. },
  33959. feral: {
  33960. height: math.unit(3 + 1/12, "feet"),
  33961. weight: math.unit(50, "kg"),
  33962. name: "Feral",
  33963. image: {
  33964. source: "./media/characters/moonlight/feral.svg",
  33965. extra: 3705/2791,
  33966. bottom: 145/3850
  33967. }
  33968. },
  33969. paw: {
  33970. height: math.unit(1, "feet"),
  33971. name: "Paw",
  33972. image: {
  33973. source: "./media/characters/moonlight/paw.svg"
  33974. }
  33975. },
  33976. paws: {
  33977. height: math.unit(0.98, "feet"),
  33978. name: "Paws",
  33979. image: {
  33980. source: "./media/characters/moonlight/paws.svg",
  33981. extra: 939/939,
  33982. bottom: 50/989
  33983. }
  33984. },
  33985. mouth: {
  33986. height: math.unit(0.48, "feet"),
  33987. name: "Mouth",
  33988. image: {
  33989. source: "./media/characters/moonlight/mouth.svg"
  33990. }
  33991. },
  33992. dick: {
  33993. height: math.unit(1.46, "feet"),
  33994. name: "Dick",
  33995. image: {
  33996. source: "./media/characters/moonlight/dick.svg"
  33997. }
  33998. },
  33999. },
  34000. [
  34001. {
  34002. name: "Normal",
  34003. height: math.unit(6 + 2/12, "feet"),
  34004. default: true
  34005. },
  34006. {
  34007. name: "Macro",
  34008. height: math.unit(300, "feet")
  34009. },
  34010. {
  34011. name: "Macro+",
  34012. height: math.unit(1, "mile")
  34013. },
  34014. {
  34015. name: "Mt. Moon",
  34016. height: math.unit(5, "miles")
  34017. },
  34018. {
  34019. name: "Megamacro",
  34020. height: math.unit(15, "miles")
  34021. },
  34022. ]
  34023. ))
  34024. characterMakers.push(() => makeCharacter(
  34025. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34026. {
  34027. back: {
  34028. height: math.unit(6, "feet"),
  34029. weight: math.unit(150, "lb"),
  34030. name: "Back",
  34031. image: {
  34032. source: "./media/characters/sylen/back.svg",
  34033. extra: 1335/1273,
  34034. bottom: 107/1442
  34035. }
  34036. },
  34037. },
  34038. [
  34039. {
  34040. name: "Normal",
  34041. height: math.unit(5 + 5/12, "feet")
  34042. },
  34043. {
  34044. name: "Megamacro",
  34045. height: math.unit(3, "miles"),
  34046. default: true
  34047. },
  34048. ]
  34049. ))
  34050. characterMakers.push(() => makeCharacter(
  34051. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34052. {
  34053. front: {
  34054. height: math.unit(6, "feet"),
  34055. weight: math.unit(190, "lb"),
  34056. name: "Front",
  34057. image: {
  34058. source: "./media/characters/huttser/front.svg",
  34059. extra: 1152/1058,
  34060. bottom: 23/1175
  34061. }
  34062. },
  34063. side: {
  34064. height: math.unit(6, "feet"),
  34065. weight: math.unit(190, "lb"),
  34066. name: "Side",
  34067. image: {
  34068. source: "./media/characters/huttser/side.svg",
  34069. extra: 1174/1065,
  34070. bottom: 18/1192
  34071. }
  34072. },
  34073. back: {
  34074. height: math.unit(6, "feet"),
  34075. weight: math.unit(190, "lb"),
  34076. name: "Back",
  34077. image: {
  34078. source: "./media/characters/huttser/back.svg",
  34079. extra: 1158/1056,
  34080. bottom: 12/1170
  34081. }
  34082. },
  34083. },
  34084. [
  34085. ]
  34086. ))
  34087. characterMakers.push(() => makeCharacter(
  34088. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34089. {
  34090. side: {
  34091. height: math.unit(12 + 9/12, "feet"),
  34092. weight: math.unit(15000, "lb"),
  34093. name: "Side",
  34094. image: {
  34095. source: "./media/characters/faan/side.svg",
  34096. extra: 2747/2697,
  34097. bottom: 0/2747
  34098. }
  34099. },
  34100. front: {
  34101. height: math.unit(12 + 9/12, "feet"),
  34102. weight: math.unit(15000, "lb"),
  34103. name: "Front",
  34104. image: {
  34105. source: "./media/characters/faan/front.svg",
  34106. extra: 607/571,
  34107. bottom: 24/631
  34108. }
  34109. },
  34110. head: {
  34111. height: math.unit(2.85, "feet"),
  34112. name: "Head",
  34113. image: {
  34114. source: "./media/characters/faan/head.svg"
  34115. }
  34116. },
  34117. headAlt: {
  34118. height: math.unit(3.13, "feet"),
  34119. name: "Head-alt",
  34120. image: {
  34121. source: "./media/characters/faan/head-alt.svg"
  34122. }
  34123. },
  34124. },
  34125. [
  34126. {
  34127. name: "Normal",
  34128. height: math.unit(12 + 9/12, "feet"),
  34129. default: true
  34130. },
  34131. ]
  34132. ))
  34133. characterMakers.push(() => makeCharacter(
  34134. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34135. {
  34136. front: {
  34137. height: math.unit(6, "feet"),
  34138. weight: math.unit(300, "lb"),
  34139. name: "Front",
  34140. image: {
  34141. source: "./media/characters/tanio/front.svg",
  34142. extra: 711/673,
  34143. bottom: 25/736
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Normal",
  34150. height: math.unit(6, "feet"),
  34151. default: true
  34152. },
  34153. ]
  34154. ))
  34155. characterMakers.push(() => makeCharacter(
  34156. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34157. {
  34158. front: {
  34159. height: math.unit(3, "inches"),
  34160. name: "Front",
  34161. image: {
  34162. source: "./media/characters/noboru/front.svg",
  34163. extra: 1039/932,
  34164. bottom: 18/1057
  34165. }
  34166. },
  34167. },
  34168. [
  34169. {
  34170. name: "Micro",
  34171. height: math.unit(3, "inches"),
  34172. default: true
  34173. },
  34174. ]
  34175. ))
  34176. characterMakers.push(() => makeCharacter(
  34177. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34178. {
  34179. front: {
  34180. height: math.unit(1.85, "meters"),
  34181. weight: math.unit(80, "kg"),
  34182. name: "Front",
  34183. image: {
  34184. source: "./media/characters/daniel-barrett/front.svg",
  34185. extra: 355/337,
  34186. bottom: 9/364
  34187. }
  34188. },
  34189. },
  34190. [
  34191. {
  34192. name: "Pico",
  34193. height: math.unit(0.0433, "mm")
  34194. },
  34195. {
  34196. name: "Nano",
  34197. height: math.unit(1.5, "mm")
  34198. },
  34199. {
  34200. name: "Micro",
  34201. height: math.unit(5.3, "cm"),
  34202. default: true
  34203. },
  34204. {
  34205. name: "Normal",
  34206. height: math.unit(1.85, "meters")
  34207. },
  34208. {
  34209. name: "Macro",
  34210. height: math.unit(64.7, "meters")
  34211. },
  34212. {
  34213. name: "Megamacro",
  34214. height: math.unit(2.26, "km")
  34215. },
  34216. {
  34217. name: "Gigamacro",
  34218. height: math.unit(79, "km")
  34219. },
  34220. {
  34221. name: "Teramacro",
  34222. height: math.unit(2765, "km")
  34223. },
  34224. {
  34225. name: "Petamacro",
  34226. height: math.unit(96678, "km")
  34227. },
  34228. ]
  34229. ))
  34230. characterMakers.push(() => makeCharacter(
  34231. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34232. {
  34233. front: {
  34234. height: math.unit(30, "meters"),
  34235. weight: math.unit(400, "tons"),
  34236. name: "Front",
  34237. image: {
  34238. source: "./media/characters/zeel/front.svg",
  34239. extra: 2599/2599,
  34240. bottom: 226/2825
  34241. }
  34242. },
  34243. },
  34244. [
  34245. {
  34246. name: "Macro",
  34247. height: math.unit(30, "meters"),
  34248. default: true
  34249. },
  34250. ]
  34251. ))
  34252. characterMakers.push(() => makeCharacter(
  34253. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34254. {
  34255. front: {
  34256. height: math.unit(6 + 7/12, "feet"),
  34257. weight: math.unit(210, "lb"),
  34258. name: "Front",
  34259. image: {
  34260. source: "./media/characters/tarn/front.svg",
  34261. extra: 3517/3220,
  34262. bottom: 91/3608
  34263. }
  34264. },
  34265. back: {
  34266. height: math.unit(6 + 7/12, "feet"),
  34267. weight: math.unit(210, "lb"),
  34268. name: "Back",
  34269. image: {
  34270. source: "./media/characters/tarn/back.svg",
  34271. extra: 3566/3241,
  34272. bottom: 34/3600
  34273. }
  34274. },
  34275. dick: {
  34276. height: math.unit(1.65, "feet"),
  34277. name: "Dick",
  34278. image: {
  34279. source: "./media/characters/tarn/dick.svg"
  34280. }
  34281. },
  34282. paw: {
  34283. height: math.unit(1.80, "feet"),
  34284. name: "Paw",
  34285. image: {
  34286. source: "./media/characters/tarn/paw.svg"
  34287. }
  34288. },
  34289. tongue: {
  34290. height: math.unit(0.97, "feet"),
  34291. name: "Tongue",
  34292. image: {
  34293. source: "./media/characters/tarn/tongue.svg"
  34294. }
  34295. },
  34296. },
  34297. [
  34298. {
  34299. name: "Micro",
  34300. height: math.unit(4, "inches")
  34301. },
  34302. {
  34303. name: "Normal",
  34304. height: math.unit(6 + 7/12, "feet"),
  34305. default: true
  34306. },
  34307. {
  34308. name: "Macro",
  34309. height: math.unit(300, "feet")
  34310. },
  34311. ]
  34312. ))
  34313. characterMakers.push(() => makeCharacter(
  34314. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34315. {
  34316. front: {
  34317. height: math.unit(5 + 7/12, "feet"),
  34318. weight: math.unit(80, "kg"),
  34319. name: "Front",
  34320. image: {
  34321. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34322. extra: 3023/2865,
  34323. bottom: 33/3056
  34324. }
  34325. },
  34326. back: {
  34327. height: math.unit(5 + 7/12, "feet"),
  34328. weight: math.unit(80, "kg"),
  34329. name: "Back",
  34330. image: {
  34331. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34332. extra: 3020/2886,
  34333. bottom: 30/3050
  34334. }
  34335. },
  34336. dick: {
  34337. height: math.unit(0.98, "feet"),
  34338. name: "Dick",
  34339. image: {
  34340. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34341. }
  34342. },
  34343. anatomy: {
  34344. height: math.unit(2.86, "feet"),
  34345. name: "Anatomy",
  34346. image: {
  34347. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34348. }
  34349. },
  34350. },
  34351. [
  34352. {
  34353. name: "Really Small",
  34354. height: math.unit(2, "inches")
  34355. },
  34356. {
  34357. name: "Micro",
  34358. height: math.unit(5.583, "inches")
  34359. },
  34360. {
  34361. name: "Normal",
  34362. height: math.unit(5 + 7/12, "feet"),
  34363. default: true
  34364. },
  34365. {
  34366. name: "Macro",
  34367. height: math.unit(67, "feet")
  34368. },
  34369. {
  34370. name: "Megamacro",
  34371. height: math.unit(134, "feet")
  34372. },
  34373. ]
  34374. ))
  34375. characterMakers.push(() => makeCharacter(
  34376. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34377. {
  34378. front: {
  34379. height: math.unit(9, "feet"),
  34380. weight: math.unit(120, "lb"),
  34381. name: "Front",
  34382. image: {
  34383. source: "./media/characters/sally/front.svg",
  34384. extra: 1506/1349,
  34385. bottom: 66/1572
  34386. }
  34387. },
  34388. },
  34389. [
  34390. {
  34391. name: "Normal",
  34392. height: math.unit(9, "feet"),
  34393. default: true
  34394. },
  34395. ]
  34396. ))
  34397. characterMakers.push(() => makeCharacter(
  34398. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34399. {
  34400. front: {
  34401. height: math.unit(8, "feet"),
  34402. weight: math.unit(900, "lb"),
  34403. name: "Front",
  34404. image: {
  34405. source: "./media/characters/owen/front.svg",
  34406. extra: 1761/1657,
  34407. bottom: 74/1835
  34408. }
  34409. },
  34410. side: {
  34411. height: math.unit(8, "feet"),
  34412. weight: math.unit(900, "lb"),
  34413. name: "Side",
  34414. image: {
  34415. source: "./media/characters/owen/side.svg",
  34416. extra: 1797/1734,
  34417. bottom: 30/1827
  34418. }
  34419. },
  34420. back: {
  34421. height: math.unit(8, "feet"),
  34422. weight: math.unit(900, "lb"),
  34423. name: "Back",
  34424. image: {
  34425. source: "./media/characters/owen/back.svg",
  34426. extra: 1796/1706,
  34427. bottom: 59/1855
  34428. }
  34429. },
  34430. maw: {
  34431. height: math.unit(1.76, "feet"),
  34432. name: "Maw",
  34433. image: {
  34434. source: "./media/characters/owen/maw.svg"
  34435. }
  34436. },
  34437. },
  34438. [
  34439. {
  34440. name: "Normal",
  34441. height: math.unit(8, "feet"),
  34442. default: true
  34443. },
  34444. ]
  34445. ))
  34446. characterMakers.push(() => makeCharacter(
  34447. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34448. {
  34449. front: {
  34450. height: math.unit(4, "feet"),
  34451. weight: math.unit(400, "lb"),
  34452. name: "Front",
  34453. image: {
  34454. source: "./media/characters/ryth/front.svg",
  34455. extra: 1920/1748,
  34456. bottom: 42/1962
  34457. }
  34458. },
  34459. back: {
  34460. height: math.unit(4, "feet"),
  34461. weight: math.unit(400, "lb"),
  34462. name: "Back",
  34463. image: {
  34464. source: "./media/characters/ryth/back.svg",
  34465. extra: 1897/1690,
  34466. bottom: 89/1986
  34467. }
  34468. },
  34469. mouth: {
  34470. height: math.unit(1.39, "feet"),
  34471. name: "Mouth",
  34472. image: {
  34473. source: "./media/characters/ryth/mouth.svg"
  34474. }
  34475. },
  34476. tailmaw: {
  34477. height: math.unit(1.23, "feet"),
  34478. name: "Tailmaw",
  34479. image: {
  34480. source: "./media/characters/ryth/tailmaw.svg"
  34481. }
  34482. },
  34483. goia: {
  34484. height: math.unit(4, "meters"),
  34485. weight: math.unit(10800, "lb"),
  34486. name: "Goia",
  34487. image: {
  34488. source: "./media/characters/ryth/goia.svg",
  34489. extra: 745/640,
  34490. bottom: 107/852
  34491. }
  34492. },
  34493. goiaFront: {
  34494. height: math.unit(4, "meters"),
  34495. weight: math.unit(10800, "lb"),
  34496. name: "Goia (Front)",
  34497. image: {
  34498. source: "./media/characters/ryth/goia-front.svg",
  34499. extra: 750/586,
  34500. bottom: 114/864
  34501. }
  34502. },
  34503. goiaMaw: {
  34504. height: math.unit(5.55, "feet"),
  34505. name: "Goia Maw",
  34506. image: {
  34507. source: "./media/characters/ryth/goia-maw.svg"
  34508. }
  34509. },
  34510. goiaForepaw: {
  34511. height: math.unit(3.5, "feet"),
  34512. name: "Goia Forepaw",
  34513. image: {
  34514. source: "./media/characters/ryth/goia-forepaw.svg"
  34515. }
  34516. },
  34517. goiaHindpaw: {
  34518. height: math.unit(5.55, "feet"),
  34519. name: "Goia Hindpaw",
  34520. image: {
  34521. source: "./media/characters/ryth/goia-hindpaw.svg"
  34522. }
  34523. },
  34524. },
  34525. [
  34526. {
  34527. name: "Normal",
  34528. height: math.unit(4, "feet"),
  34529. default: true
  34530. },
  34531. ]
  34532. ))
  34533. characterMakers.push(() => makeCharacter(
  34534. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34535. {
  34536. front: {
  34537. height: math.unit(7, "feet"),
  34538. weight: math.unit(180, "lb"),
  34539. name: "Front",
  34540. image: {
  34541. source: "./media/characters/necrolance/front.svg",
  34542. extra: 1062/947,
  34543. bottom: 41/1103
  34544. }
  34545. },
  34546. back: {
  34547. height: math.unit(7, "feet"),
  34548. weight: math.unit(180, "lb"),
  34549. name: "Back",
  34550. image: {
  34551. source: "./media/characters/necrolance/back.svg",
  34552. extra: 1045/984,
  34553. bottom: 14/1059
  34554. }
  34555. },
  34556. wing: {
  34557. height: math.unit(2.67, "feet"),
  34558. name: "Wing",
  34559. image: {
  34560. source: "./media/characters/necrolance/wing.svg"
  34561. }
  34562. },
  34563. },
  34564. [
  34565. {
  34566. name: "Normal",
  34567. height: math.unit(7, "feet"),
  34568. default: true
  34569. },
  34570. ]
  34571. ))
  34572. characterMakers.push(() => makeCharacter(
  34573. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34574. {
  34575. front: {
  34576. height: math.unit(76, "meters"),
  34577. weight: math.unit(30000, "tons"),
  34578. name: "Front",
  34579. image: {
  34580. source: "./media/characters/tyler/front.svg",
  34581. extra: 1640/1640,
  34582. bottom: 114/1754
  34583. }
  34584. },
  34585. },
  34586. [
  34587. {
  34588. name: "Macro",
  34589. height: math.unit(76, "meters"),
  34590. default: true
  34591. },
  34592. ]
  34593. ))
  34594. characterMakers.push(() => makeCharacter(
  34595. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34596. {
  34597. front: {
  34598. height: math.unit(4 + 11/12, "feet"),
  34599. weight: math.unit(132, "lb"),
  34600. name: "Front",
  34601. image: {
  34602. source: "./media/characters/icey/front.svg",
  34603. extra: 2750/2550,
  34604. bottom: 33/2783
  34605. }
  34606. },
  34607. back: {
  34608. height: math.unit(4 + 11/12, "feet"),
  34609. weight: math.unit(132, "lb"),
  34610. name: "Back",
  34611. image: {
  34612. source: "./media/characters/icey/back.svg",
  34613. extra: 2624/2481,
  34614. bottom: 35/2659
  34615. }
  34616. },
  34617. },
  34618. [
  34619. {
  34620. name: "Normal",
  34621. height: math.unit(4 + 11/12, "feet"),
  34622. default: true
  34623. },
  34624. ]
  34625. ))
  34626. characterMakers.push(() => makeCharacter(
  34627. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34628. {
  34629. front: {
  34630. height: math.unit(100, "feet"),
  34631. weight: math.unit(0, "lb"),
  34632. name: "Front",
  34633. image: {
  34634. source: "./media/characters/smile/front.svg",
  34635. extra: 2983/2912,
  34636. bottom: 162/3145
  34637. }
  34638. },
  34639. back: {
  34640. height: math.unit(100, "feet"),
  34641. weight: math.unit(0, "lb"),
  34642. name: "Back",
  34643. image: {
  34644. source: "./media/characters/smile/back.svg",
  34645. extra: 3143/3031,
  34646. bottom: 91/3234
  34647. }
  34648. },
  34649. head: {
  34650. height: math.unit(26.3, "feet"),
  34651. weight: math.unit(0, "lb"),
  34652. name: "Head",
  34653. image: {
  34654. source: "./media/characters/smile/head.svg"
  34655. }
  34656. },
  34657. collar: {
  34658. height: math.unit(5.3, "feet"),
  34659. weight: math.unit(0, "lb"),
  34660. name: "Collar",
  34661. image: {
  34662. source: "./media/characters/smile/collar.svg"
  34663. }
  34664. },
  34665. },
  34666. [
  34667. {
  34668. name: "Macro",
  34669. height: math.unit(100, "feet"),
  34670. default: true
  34671. },
  34672. ]
  34673. ))
  34674. characterMakers.push(() => makeCharacter(
  34675. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34676. {
  34677. dragon: {
  34678. height: math.unit(26, "feet"),
  34679. weight: math.unit(36, "tons"),
  34680. name: "Dragon",
  34681. image: {
  34682. source: "./media/characters/arimphae/dragon.svg",
  34683. extra: 1574/983,
  34684. bottom: 357/1931
  34685. }
  34686. },
  34687. drake: {
  34688. height: math.unit(9, "feet"),
  34689. weight: math.unit(1.5, "tons"),
  34690. name: "Drake",
  34691. image: {
  34692. source: "./media/characters/arimphae/drake.svg",
  34693. extra: 1120/925,
  34694. bottom: 435/1555
  34695. }
  34696. },
  34697. },
  34698. [
  34699. {
  34700. name: "Small",
  34701. height: math.unit(26*5/9, "feet")
  34702. },
  34703. {
  34704. name: "Normal",
  34705. height: math.unit(26, "feet"),
  34706. default: true
  34707. },
  34708. ]
  34709. ))
  34710. characterMakers.push(() => makeCharacter(
  34711. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34712. {
  34713. front: {
  34714. height: math.unit(8 + 9/12, "feet"),
  34715. name: "Front",
  34716. image: {
  34717. source: "./media/characters/xander/front.svg",
  34718. extra: 1237/974,
  34719. bottom: 94/1331
  34720. }
  34721. },
  34722. },
  34723. [
  34724. {
  34725. name: "Normal",
  34726. height: math.unit(8 + 9/12, "feet"),
  34727. default: true
  34728. },
  34729. {
  34730. name: "Gaze Grabber",
  34731. height: math.unit(13 + 8/12, "feet")
  34732. },
  34733. {
  34734. name: "Jaw Dropper",
  34735. height: math.unit(27, "feet")
  34736. },
  34737. {
  34738. name: "Show Stopper",
  34739. height: math.unit(136, "feet")
  34740. },
  34741. {
  34742. name: "Superstar",
  34743. height: math.unit(1.9e6, "miles")
  34744. },
  34745. ]
  34746. ))
  34747. characterMakers.push(() => makeCharacter(
  34748. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34749. {
  34750. side: {
  34751. height: math.unit(2100, "feet"),
  34752. name: "Side",
  34753. image: {
  34754. source: "./media/characters/osiris/side.svg",
  34755. extra: 1105/939,
  34756. bottom: 167/1272
  34757. }
  34758. },
  34759. },
  34760. [
  34761. {
  34762. name: "Macro",
  34763. height: math.unit(2100, "feet"),
  34764. default: true
  34765. },
  34766. ]
  34767. ))
  34768. characterMakers.push(() => makeCharacter(
  34769. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34770. {
  34771. front: {
  34772. height: math.unit(6 + 8/12, "feet"),
  34773. weight: math.unit(225, "lb"),
  34774. name: "Front",
  34775. image: {
  34776. source: "./media/characters/rhys-londe/front.svg",
  34777. extra: 2258/2141,
  34778. bottom: 188/2446
  34779. }
  34780. },
  34781. back: {
  34782. height: math.unit(6 + 8/12, "feet"),
  34783. weight: math.unit(225, "lb"),
  34784. name: "Back",
  34785. image: {
  34786. source: "./media/characters/rhys-londe/back.svg",
  34787. extra: 2237/2137,
  34788. bottom: 63/2300
  34789. }
  34790. },
  34791. frontNsfw: {
  34792. height: math.unit(6 + 8/12, "feet"),
  34793. weight: math.unit(225, "lb"),
  34794. name: "Front (NSFW)",
  34795. image: {
  34796. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34797. extra: 2258/2141,
  34798. bottom: 188/2446
  34799. }
  34800. },
  34801. backNsfw: {
  34802. height: math.unit(6 + 8/12, "feet"),
  34803. weight: math.unit(225, "lb"),
  34804. name: "Back (NSFW)",
  34805. image: {
  34806. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34807. extra: 2237/2137,
  34808. bottom: 63/2300
  34809. }
  34810. },
  34811. dick: {
  34812. height: math.unit(30, "inches"),
  34813. name: "Dick",
  34814. image: {
  34815. source: "./media/characters/rhys-londe/dick.svg"
  34816. }
  34817. },
  34818. maw: {
  34819. height: math.unit(1.6, "feet"),
  34820. name: "Maw",
  34821. image: {
  34822. source: "./media/characters/rhys-londe/maw.svg"
  34823. }
  34824. },
  34825. },
  34826. [
  34827. {
  34828. name: "Normal",
  34829. height: math.unit(6 + 8/12, "feet"),
  34830. default: true
  34831. },
  34832. ]
  34833. ))
  34834. characterMakers.push(() => makeCharacter(
  34835. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34836. {
  34837. front: {
  34838. height: math.unit(3 + 10/12, "feet"),
  34839. weight: math.unit(90, "lb"),
  34840. name: "Front",
  34841. image: {
  34842. source: "./media/characters/taivas-ensim/front.svg",
  34843. extra: 1327/1216,
  34844. bottom: 96/1423
  34845. }
  34846. },
  34847. back: {
  34848. height: math.unit(3 + 10/12, "feet"),
  34849. weight: math.unit(90, "lb"),
  34850. name: "Back",
  34851. image: {
  34852. source: "./media/characters/taivas-ensim/back.svg",
  34853. extra: 1355/1247,
  34854. bottom: 11/1366
  34855. }
  34856. },
  34857. frontNsfw: {
  34858. height: math.unit(3 + 10/12, "feet"),
  34859. weight: math.unit(90, "lb"),
  34860. name: "Front (NSFW)",
  34861. image: {
  34862. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34863. extra: 1327/1216,
  34864. bottom: 96/1423
  34865. }
  34866. },
  34867. backNsfw: {
  34868. height: math.unit(3 + 10/12, "feet"),
  34869. weight: math.unit(90, "lb"),
  34870. name: "Back (NSFW)",
  34871. image: {
  34872. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34873. extra: 1355/1247,
  34874. bottom: 11/1366
  34875. }
  34876. },
  34877. },
  34878. [
  34879. {
  34880. name: "Normal",
  34881. height: math.unit(3 + 10/12, "feet"),
  34882. default: true
  34883. },
  34884. ]
  34885. ))
  34886. characterMakers.push(() => makeCharacter(
  34887. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34888. {
  34889. front: {
  34890. height: math.unit(9 + 6/12, "feet"),
  34891. weight: math.unit(940, "lb"),
  34892. name: "Front",
  34893. image: {
  34894. source: "./media/characters/byliss/front.svg",
  34895. extra: 1327/1290,
  34896. bottom: 82/1409
  34897. }
  34898. },
  34899. back: {
  34900. height: math.unit(9 + 6/12, "feet"),
  34901. weight: math.unit(940, "lb"),
  34902. name: "Back",
  34903. image: {
  34904. source: "./media/characters/byliss/back.svg",
  34905. extra: 1376/1349,
  34906. bottom: 9/1385
  34907. }
  34908. },
  34909. frontNsfw: {
  34910. height: math.unit(9 + 6/12, "feet"),
  34911. weight: math.unit(940, "lb"),
  34912. name: "Front (NSFW)",
  34913. image: {
  34914. source: "./media/characters/byliss/front-nsfw.svg",
  34915. extra: 1327/1290,
  34916. bottom: 82/1409
  34917. }
  34918. },
  34919. backNsfw: {
  34920. height: math.unit(9 + 6/12, "feet"),
  34921. weight: math.unit(940, "lb"),
  34922. name: "Back (NSFW)",
  34923. image: {
  34924. source: "./media/characters/byliss/back-nsfw.svg",
  34925. extra: 1376/1349,
  34926. bottom: 9/1385
  34927. }
  34928. },
  34929. },
  34930. [
  34931. {
  34932. name: "Normal",
  34933. height: math.unit(9 + 6/12, "feet"),
  34934. default: true
  34935. },
  34936. ]
  34937. ))
  34938. characterMakers.push(() => makeCharacter(
  34939. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  34940. {
  34941. front: {
  34942. height: math.unit(5 + 2/12, "feet"),
  34943. weight: math.unit(200, "lb"),
  34944. name: "Front",
  34945. image: {
  34946. source: "./media/characters/noraly/front.svg",
  34947. extra: 4985/4773,
  34948. bottom: 150/5135
  34949. }
  34950. },
  34951. full: {
  34952. height: math.unit(5 + 2/12, "feet"),
  34953. weight: math.unit(164, "lb"),
  34954. name: "Full",
  34955. image: {
  34956. source: "./media/characters/noraly/full.svg",
  34957. extra: 1114/1059,
  34958. bottom: 35/1149
  34959. }
  34960. },
  34961. fuller: {
  34962. height: math.unit(5 + 2/12, "feet"),
  34963. weight: math.unit(230, "lb"),
  34964. name: "Fuller",
  34965. image: {
  34966. source: "./media/characters/noraly/fuller.svg",
  34967. extra: 1114/1059,
  34968. bottom: 35/1149
  34969. }
  34970. },
  34971. fullest: {
  34972. height: math.unit(5 + 2/12, "feet"),
  34973. weight: math.unit(300, "lb"),
  34974. name: "Fullest",
  34975. image: {
  34976. source: "./media/characters/noraly/fullest.svg",
  34977. extra: 1114/1059,
  34978. bottom: 35/1149
  34979. }
  34980. },
  34981. },
  34982. [
  34983. {
  34984. name: "Normal",
  34985. height: math.unit(5 + 2/12, "feet"),
  34986. default: true
  34987. },
  34988. ]
  34989. ))
  34990. characterMakers.push(() => makeCharacter(
  34991. { name: "Pera", species: ["snake"], tags: ["naga"] },
  34992. {
  34993. front: {
  34994. height: math.unit(5 + 2/12, "feet"),
  34995. weight: math.unit(210, "lb"),
  34996. name: "Front",
  34997. image: {
  34998. source: "./media/characters/pera/front.svg",
  34999. extra: 1560/1531,
  35000. bottom: 165/1725
  35001. }
  35002. },
  35003. back: {
  35004. height: math.unit(5 + 2/12, "feet"),
  35005. weight: math.unit(210, "lb"),
  35006. name: "Back",
  35007. image: {
  35008. source: "./media/characters/pera/back.svg",
  35009. extra: 1523/1493,
  35010. bottom: 152/1675
  35011. }
  35012. },
  35013. dick: {
  35014. height: math.unit(2.4, "feet"),
  35015. name: "Dick",
  35016. image: {
  35017. source: "./media/characters/pera/dick.svg"
  35018. }
  35019. },
  35020. },
  35021. [
  35022. {
  35023. name: "Normal",
  35024. height: math.unit(5 + 2/12, "feet"),
  35025. default: true
  35026. },
  35027. ]
  35028. ))
  35029. characterMakers.push(() => makeCharacter(
  35030. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35031. {
  35032. front: {
  35033. height: math.unit(12, "feet"),
  35034. weight: math.unit(3200, "lb"),
  35035. name: "Front",
  35036. image: {
  35037. source: "./media/characters/julian/front.svg",
  35038. extra: 2962/2701,
  35039. bottom: 184/3146
  35040. }
  35041. },
  35042. maw: {
  35043. height: math.unit(5.35, "feet"),
  35044. name: "Maw",
  35045. image: {
  35046. source: "./media/characters/julian/maw.svg"
  35047. }
  35048. },
  35049. paw: {
  35050. height: math.unit(3.07, "feet"),
  35051. name: "Paw",
  35052. image: {
  35053. source: "./media/characters/julian/paw.svg"
  35054. }
  35055. },
  35056. },
  35057. [
  35058. {
  35059. name: "Default",
  35060. height: math.unit(12, "feet"),
  35061. default: true
  35062. },
  35063. {
  35064. name: "Big",
  35065. height: math.unit(50, "feet")
  35066. },
  35067. {
  35068. name: "Really Big",
  35069. height: math.unit(1, "mile")
  35070. },
  35071. {
  35072. name: "Extremely Big",
  35073. height: math.unit(100, "miles")
  35074. },
  35075. {
  35076. name: "Planet Hugger",
  35077. height: math.unit(200, "megameters")
  35078. },
  35079. {
  35080. name: "Unreasonably Big",
  35081. height: math.unit(1e300, "meters")
  35082. },
  35083. ]
  35084. ))
  35085. characterMakers.push(() => makeCharacter(
  35086. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35087. {
  35088. solgooleo: {
  35089. height: math.unit(4, "meters"),
  35090. weight: math.unit(6000*1.5, "kg"),
  35091. volume: math.unit(6000, "liters"),
  35092. name: "Solgooleo",
  35093. image: {
  35094. source: "./media/characters/pi/solgooleo.svg",
  35095. extra: 388/331,
  35096. bottom: 29/417
  35097. }
  35098. },
  35099. },
  35100. [
  35101. {
  35102. name: "Normal",
  35103. height: math.unit(4, "meters"),
  35104. default: true
  35105. },
  35106. ]
  35107. ))
  35108. characterMakers.push(() => makeCharacter(
  35109. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35110. {
  35111. front: {
  35112. height: math.unit(8, "feet"),
  35113. weight: math.unit(4, "tons"),
  35114. name: "Front",
  35115. image: {
  35116. source: "./media/characters/shaun/front.svg",
  35117. extra: 503/495,
  35118. bottom: 20/523
  35119. }
  35120. },
  35121. back: {
  35122. height: math.unit(8, "feet"),
  35123. weight: math.unit(4, "tons"),
  35124. name: "Back",
  35125. image: {
  35126. source: "./media/characters/shaun/back.svg",
  35127. extra: 487/480,
  35128. bottom: 20/507
  35129. }
  35130. },
  35131. },
  35132. [
  35133. {
  35134. name: "Lorg",
  35135. height: math.unit(8, "feet"),
  35136. default: true
  35137. },
  35138. ]
  35139. ))
  35140. characterMakers.push(() => makeCharacter(
  35141. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35142. {
  35143. frontAnthro: {
  35144. height: math.unit(7, "feet"),
  35145. name: "Front",
  35146. image: {
  35147. source: "./media/characters/sini/front-anthro.svg",
  35148. extra: 726/678,
  35149. bottom: 35/761
  35150. },
  35151. form: "anthro",
  35152. default: true
  35153. },
  35154. backAnthro: {
  35155. height: math.unit(7, "feet"),
  35156. name: "Back",
  35157. image: {
  35158. source: "./media/characters/sini/back-anthro.svg",
  35159. extra: 743/701,
  35160. bottom: 12/755
  35161. },
  35162. form: "anthro",
  35163. },
  35164. frontAnthroNsfw: {
  35165. height: math.unit(7, "feet"),
  35166. name: "Front (NSFW)",
  35167. image: {
  35168. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35169. extra: 726/678,
  35170. bottom: 35/761
  35171. },
  35172. form: "anthro"
  35173. },
  35174. backAnthroNsfw: {
  35175. height: math.unit(7, "feet"),
  35176. name: "Back (NSFW)",
  35177. image: {
  35178. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35179. extra: 743/701,
  35180. bottom: 12/755
  35181. },
  35182. form: "anthro",
  35183. },
  35184. mawAnthro: {
  35185. height: math.unit(2.14, "feet"),
  35186. name: "Maw",
  35187. image: {
  35188. source: "./media/characters/sini/maw-anthro.svg"
  35189. },
  35190. form: "anthro"
  35191. },
  35192. dick: {
  35193. height: math.unit(1.45, "feet"),
  35194. name: "Dick",
  35195. image: {
  35196. source: "./media/characters/sini/dick-anthro.svg"
  35197. },
  35198. form: "anthro"
  35199. },
  35200. feral: {
  35201. height: math.unit(16, "feet"),
  35202. name: "Feral",
  35203. image: {
  35204. source: "./media/characters/sini/feral.svg",
  35205. extra: 814/605,
  35206. bottom: 11/825
  35207. },
  35208. form: "feral",
  35209. default: true
  35210. },
  35211. feralNsfw: {
  35212. height: math.unit(16, "feet"),
  35213. name: "Feral (NSFW)",
  35214. image: {
  35215. source: "./media/characters/sini/feral-nsfw.svg",
  35216. extra: 814/605,
  35217. bottom: 11/825
  35218. },
  35219. form: "feral"
  35220. },
  35221. mawFeral: {
  35222. height: math.unit(5.66, "feet"),
  35223. name: "Maw",
  35224. image: {
  35225. source: "./media/characters/sini/maw-feral.svg"
  35226. },
  35227. form: "feral",
  35228. },
  35229. pawFeral: {
  35230. height: math.unit(5.17, "feet"),
  35231. name: "Paw",
  35232. image: {
  35233. source: "./media/characters/sini/paw-feral.svg"
  35234. },
  35235. form: "feral",
  35236. },
  35237. rumpFeral: {
  35238. height: math.unit(13.11, "feet"),
  35239. name: "Rump",
  35240. image: {
  35241. source: "./media/characters/sini/rump-feral.svg"
  35242. },
  35243. form: "feral",
  35244. },
  35245. dickFeral: {
  35246. height: math.unit(1, "feet"),
  35247. name: "Dick",
  35248. image: {
  35249. source: "./media/characters/sini/dick-feral.svg"
  35250. },
  35251. form: "feral",
  35252. },
  35253. eyeFeral: {
  35254. height: math.unit(1.23, "feet"),
  35255. name: "Eye",
  35256. image: {
  35257. source: "./media/characters/sini/eye-feral.svg"
  35258. },
  35259. form: "feral",
  35260. },
  35261. },
  35262. [
  35263. {
  35264. name: "Normal",
  35265. height: math.unit(7, "feet"),
  35266. default: true,
  35267. form: "anthro"
  35268. },
  35269. {
  35270. name: "Normal",
  35271. height: math.unit(16, "feet"),
  35272. default: true,
  35273. form: "feral"
  35274. },
  35275. ],
  35276. {
  35277. "anthro": {
  35278. name: "Anthro",
  35279. default: true
  35280. },
  35281. "feral": {
  35282. name: "Feral",
  35283. }
  35284. }
  35285. ))
  35286. characterMakers.push(() => makeCharacter(
  35287. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35288. {
  35289. side: {
  35290. height: math.unit(47.2, "meters"),
  35291. weight: math.unit(10000, "tons"),
  35292. name: "Side",
  35293. image: {
  35294. source: "./media/characters/raylldo/side.svg",
  35295. extra: 2363/642,
  35296. bottom: 221/2584
  35297. }
  35298. },
  35299. top: {
  35300. height: math.unit(240, "meters"),
  35301. weight: math.unit(10000, "tons"),
  35302. name: "Top",
  35303. image: {
  35304. source: "./media/characters/raylldo/top.svg"
  35305. }
  35306. },
  35307. bottom: {
  35308. height: math.unit(240, "meters"),
  35309. weight: math.unit(10000, "tons"),
  35310. name: "Bottom",
  35311. image: {
  35312. source: "./media/characters/raylldo/bottom.svg"
  35313. }
  35314. },
  35315. head: {
  35316. height: math.unit(38.6, "meters"),
  35317. name: "Head",
  35318. image: {
  35319. source: "./media/characters/raylldo/head.svg",
  35320. extra: 1335/1112,
  35321. bottom: 0/1335
  35322. }
  35323. },
  35324. maw: {
  35325. height: math.unit(16.37, "meters"),
  35326. name: "Maw",
  35327. image: {
  35328. source: "./media/characters/raylldo/maw.svg",
  35329. extra: 883/660,
  35330. bottom: 0/883
  35331. },
  35332. extraAttributes: {
  35333. preyCapacity: {
  35334. name: "Capacity",
  35335. power: 3,
  35336. type: "volume",
  35337. base: math.unit(1000, "people")
  35338. },
  35339. tongueSize: {
  35340. name: "Tongue Size",
  35341. power: 2,
  35342. type: "area",
  35343. base: math.unit(21, "m^2")
  35344. }
  35345. }
  35346. },
  35347. forepaw: {
  35348. height: math.unit(18, "meters"),
  35349. name: "Forepaw",
  35350. image: {
  35351. source: "./media/characters/raylldo/forepaw.svg"
  35352. }
  35353. },
  35354. hindpaw: {
  35355. height: math.unit(23, "meters"),
  35356. name: "Hindpaw",
  35357. image: {
  35358. source: "./media/characters/raylldo/hindpaw.svg"
  35359. }
  35360. },
  35361. genitals: {
  35362. height: math.unit(42, "meters"),
  35363. name: "Genitals",
  35364. image: {
  35365. source: "./media/characters/raylldo/genitals.svg"
  35366. }
  35367. },
  35368. },
  35369. [
  35370. {
  35371. name: "Normal",
  35372. height: math.unit(47.2, "meters"),
  35373. default: true
  35374. },
  35375. ]
  35376. ))
  35377. characterMakers.push(() => makeCharacter(
  35378. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35379. {
  35380. anthroFront: {
  35381. height: math.unit(9, "feet"),
  35382. weight: math.unit(600, "lb"),
  35383. name: "Anthro (Front)",
  35384. image: {
  35385. source: "./media/characters/glint/anthro-front.svg",
  35386. extra: 1097/1018,
  35387. bottom: 28/1125
  35388. }
  35389. },
  35390. anthroBack: {
  35391. height: math.unit(9, "feet"),
  35392. weight: math.unit(600, "lb"),
  35393. name: "Anthro (Back)",
  35394. image: {
  35395. source: "./media/characters/glint/anthro-back.svg",
  35396. extra: 1154/997,
  35397. bottom: 36/1190
  35398. }
  35399. },
  35400. feral: {
  35401. height: math.unit(11, "feet"),
  35402. weight: math.unit(50000, "lb"),
  35403. name: "Feral",
  35404. image: {
  35405. source: "./media/characters/glint/feral.svg",
  35406. extra: 3035/1585,
  35407. bottom: 1169/4204
  35408. }
  35409. },
  35410. dickAnthro: {
  35411. height: math.unit(0.7, "meters"),
  35412. name: "Dick (Anthro)",
  35413. image: {
  35414. source: "./media/characters/glint/dick-anthro.svg"
  35415. }
  35416. },
  35417. dickFeral: {
  35418. height: math.unit(2.65, "meters"),
  35419. name: "Dick (Feral)",
  35420. image: {
  35421. source: "./media/characters/glint/dick-feral.svg"
  35422. }
  35423. },
  35424. slitHidden: {
  35425. height: math.unit(5.85, "meters"),
  35426. name: "Slit (Hidden)",
  35427. image: {
  35428. source: "./media/characters/glint/slit-hidden.svg"
  35429. }
  35430. },
  35431. slitErect: {
  35432. height: math.unit(5.85, "meters"),
  35433. name: "Slit (Erect)",
  35434. image: {
  35435. source: "./media/characters/glint/slit-erect.svg"
  35436. }
  35437. },
  35438. mawAnthro: {
  35439. height: math.unit(0.63, "meters"),
  35440. name: "Maw (Anthro)",
  35441. image: {
  35442. source: "./media/characters/glint/maw.svg"
  35443. }
  35444. },
  35445. mawFeral: {
  35446. height: math.unit(2.89, "meters"),
  35447. name: "Maw (Feral)",
  35448. image: {
  35449. source: "./media/characters/glint/maw.svg"
  35450. }
  35451. },
  35452. },
  35453. [
  35454. {
  35455. name: "Normal",
  35456. height: math.unit(9, "feet"),
  35457. default: true
  35458. },
  35459. ]
  35460. ))
  35461. characterMakers.push(() => makeCharacter(
  35462. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35463. {
  35464. side: {
  35465. height: math.unit(15, "feet"),
  35466. weight: math.unit(5000, "kg"),
  35467. name: "Side",
  35468. image: {
  35469. source: "./media/characters/kairne/side.svg",
  35470. extra: 979/811,
  35471. bottom: 13/992
  35472. }
  35473. },
  35474. front: {
  35475. height: math.unit(15, "feet"),
  35476. weight: math.unit(5000, "kg"),
  35477. name: "Front",
  35478. image: {
  35479. source: "./media/characters/kairne/front.svg",
  35480. extra: 908/814,
  35481. bottom: 26/934
  35482. }
  35483. },
  35484. sideNsfw: {
  35485. height: math.unit(15, "feet"),
  35486. weight: math.unit(5000, "kg"),
  35487. name: "Side (NSFW)",
  35488. image: {
  35489. source: "./media/characters/kairne/side-nsfw.svg",
  35490. extra: 979/811,
  35491. bottom: 13/992
  35492. }
  35493. },
  35494. frontNsfw: {
  35495. height: math.unit(15, "feet"),
  35496. weight: math.unit(5000, "kg"),
  35497. name: "Front (NSFW)",
  35498. image: {
  35499. source: "./media/characters/kairne/front-nsfw.svg",
  35500. extra: 908/814,
  35501. bottom: 26/934
  35502. }
  35503. },
  35504. dickCaged: {
  35505. height: math.unit(0.65, "meters"),
  35506. name: "Dick-caged",
  35507. image: {
  35508. source: "./media/characters/kairne/dick-caged.svg"
  35509. }
  35510. },
  35511. dick: {
  35512. height: math.unit(0.79, "meters"),
  35513. name: "Dick",
  35514. image: {
  35515. source: "./media/characters/kairne/dick.svg"
  35516. }
  35517. },
  35518. genitals: {
  35519. height: math.unit(1.29, "meters"),
  35520. name: "Genitals",
  35521. image: {
  35522. source: "./media/characters/kairne/genitals.svg"
  35523. }
  35524. },
  35525. maw: {
  35526. height: math.unit(1.73, "meters"),
  35527. name: "Maw",
  35528. image: {
  35529. source: "./media/characters/kairne/maw.svg"
  35530. }
  35531. },
  35532. },
  35533. [
  35534. {
  35535. name: "Normal",
  35536. height: math.unit(15, "feet"),
  35537. default: true
  35538. },
  35539. ]
  35540. ))
  35541. characterMakers.push(() => makeCharacter(
  35542. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35543. {
  35544. front: {
  35545. height: math.unit(5 + 8/12, "feet"),
  35546. weight: math.unit(139, "lb"),
  35547. name: "Front",
  35548. image: {
  35549. source: "./media/characters/biscuit-jackal/front.svg",
  35550. extra: 2106/1961,
  35551. bottom: 58/2164
  35552. }
  35553. },
  35554. back: {
  35555. height: math.unit(5 + 8/12, "feet"),
  35556. weight: math.unit(139, "lb"),
  35557. name: "Back",
  35558. image: {
  35559. source: "./media/characters/biscuit-jackal/back.svg",
  35560. extra: 2132/1976,
  35561. bottom: 57/2189
  35562. }
  35563. },
  35564. werejackal: {
  35565. height: math.unit(6 + 3/12, "feet"),
  35566. weight: math.unit(188, "lb"),
  35567. name: "Werejackal",
  35568. image: {
  35569. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35570. extra: 2373/2178,
  35571. bottom: 53/2426
  35572. }
  35573. },
  35574. },
  35575. [
  35576. {
  35577. name: "Normal",
  35578. height: math.unit(5 + 8/12, "feet"),
  35579. default: true
  35580. },
  35581. ]
  35582. ))
  35583. characterMakers.push(() => makeCharacter(
  35584. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35585. {
  35586. front: {
  35587. height: math.unit(140, "cm"),
  35588. weight: math.unit(45, "kg"),
  35589. name: "Front",
  35590. image: {
  35591. source: "./media/characters/tayra-white/front.svg",
  35592. extra: 2229/2192,
  35593. bottom: 75/2304
  35594. }
  35595. },
  35596. },
  35597. [
  35598. {
  35599. name: "Normal",
  35600. height: math.unit(140, "cm"),
  35601. default: true
  35602. },
  35603. ]
  35604. ))
  35605. characterMakers.push(() => makeCharacter(
  35606. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35607. {
  35608. front: {
  35609. height: math.unit(4 + 5/12, "feet"),
  35610. name: "Front",
  35611. image: {
  35612. source: "./media/characters/scoop/front.svg",
  35613. extra: 1257/1136,
  35614. bottom: 69/1326
  35615. }
  35616. },
  35617. back: {
  35618. height: math.unit(4 + 5/12, "feet"),
  35619. name: "Back",
  35620. image: {
  35621. source: "./media/characters/scoop/back.svg",
  35622. extra: 1321/1152,
  35623. bottom: 32/1353
  35624. }
  35625. },
  35626. maw: {
  35627. height: math.unit(0.68, "feet"),
  35628. name: "Maw",
  35629. image: {
  35630. source: "./media/characters/scoop/maw.svg"
  35631. }
  35632. },
  35633. },
  35634. [
  35635. {
  35636. name: "Really Small",
  35637. height: math.unit(1, "mm")
  35638. },
  35639. {
  35640. name: "Micro",
  35641. height: math.unit(1, "inch")
  35642. },
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(4 + 5/12, "feet"),
  35646. default: true
  35647. },
  35648. {
  35649. name: "Macro",
  35650. height: math.unit(200, "feet")
  35651. },
  35652. {
  35653. name: "Megamacro",
  35654. height: math.unit(3240, "feet")
  35655. },
  35656. {
  35657. name: "Teramacro",
  35658. height: math.unit(2500, "miles")
  35659. },
  35660. ]
  35661. ))
  35662. characterMakers.push(() => makeCharacter(
  35663. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35664. {
  35665. front: {
  35666. height: math.unit(15 + 7/12, "feet"),
  35667. weight: math.unit(1150, "tons"),
  35668. name: "Front",
  35669. image: {
  35670. source: "./media/characters/saphinara/front.svg",
  35671. extra: 1837/1643,
  35672. bottom: 84/1921
  35673. },
  35674. form: "normal",
  35675. default: true
  35676. },
  35677. side: {
  35678. height: math.unit(15 + 7/12, "feet"),
  35679. weight: math.unit(1150, "tons"),
  35680. name: "Side",
  35681. image: {
  35682. source: "./media/characters/saphinara/side.svg",
  35683. extra: 605/547,
  35684. bottom: 6/611
  35685. },
  35686. form: "normal"
  35687. },
  35688. back: {
  35689. height: math.unit(15 + 7/12, "feet"),
  35690. weight: math.unit(1150, "tons"),
  35691. name: "Back",
  35692. image: {
  35693. source: "./media/characters/saphinara/back.svg",
  35694. extra: 591/531,
  35695. bottom: 13/604
  35696. },
  35697. form: "normal"
  35698. },
  35699. frontTail: {
  35700. height: math.unit(15 + 7/12, "feet"),
  35701. weight: math.unit(1150, "tons"),
  35702. name: "Front (Full Tail)",
  35703. image: {
  35704. source: "./media/characters/saphinara/front-tail.svg",
  35705. extra: 2256/1630,
  35706. bottom: 261/2517
  35707. },
  35708. form: "normal"
  35709. },
  35710. insides: {
  35711. height: math.unit(11.92, "feet"),
  35712. name: "Insides",
  35713. image: {
  35714. source: "./media/characters/saphinara/insides.svg"
  35715. },
  35716. form: "normal"
  35717. },
  35718. head: {
  35719. height: math.unit(4.17, "feet"),
  35720. name: "Head",
  35721. image: {
  35722. source: "./media/characters/saphinara/head.svg"
  35723. },
  35724. form: "normal"
  35725. },
  35726. tongue: {
  35727. height: math.unit(4.60, "feet"),
  35728. name: "Tongue",
  35729. image: {
  35730. source: "./media/characters/saphinara/tongue.svg"
  35731. },
  35732. form: "normal"
  35733. },
  35734. headEnraged: {
  35735. height: math.unit(5.55, "feet"),
  35736. name: "Head (Enraged)",
  35737. image: {
  35738. source: "./media/characters/saphinara/head-enraged.svg"
  35739. },
  35740. form: "normal"
  35741. },
  35742. wings: {
  35743. height: math.unit(11.95, "feet"),
  35744. name: "Wings",
  35745. image: {
  35746. source: "./media/characters/saphinara/wings.svg"
  35747. },
  35748. form: "normal"
  35749. },
  35750. feathers: {
  35751. height: math.unit(8.92, "feet"),
  35752. name: "Feathers",
  35753. image: {
  35754. source: "./media/characters/saphinara/feathers.svg"
  35755. },
  35756. form: "normal"
  35757. },
  35758. shackles: {
  35759. height: math.unit(2, "feet"),
  35760. name: "Shackles",
  35761. image: {
  35762. source: "./media/characters/saphinara/shackles.svg"
  35763. },
  35764. form: "normal"
  35765. },
  35766. eyes: {
  35767. height: math.unit(1.331, "feet"),
  35768. name: "Eyes",
  35769. image: {
  35770. source: "./media/characters/saphinara/eyes.svg"
  35771. },
  35772. form: "normal"
  35773. },
  35774. eyesEnraged: {
  35775. height: math.unit(1.331, "feet"),
  35776. name: "Eyes (Enraged)",
  35777. image: {
  35778. source: "./media/characters/saphinara/eyes-enraged.svg"
  35779. },
  35780. form: "normal"
  35781. },
  35782. trueFormSide: {
  35783. height: math.unit(200, "feet"),
  35784. weight: math.unit(1e7, "tons"),
  35785. name: "Side",
  35786. image: {
  35787. source: "./media/characters/saphinara/true-form-side.svg",
  35788. extra: 1399/770,
  35789. bottom: 97/1496
  35790. },
  35791. form: "true-form",
  35792. default: true
  35793. },
  35794. trueFormMaw: {
  35795. height: math.unit(71.5, "feet"),
  35796. name: "Maw",
  35797. image: {
  35798. source: "./media/characters/saphinara/true-form-maw.svg",
  35799. extra: 2302/1453,
  35800. bottom: 0/2302
  35801. },
  35802. form: "true-form"
  35803. },
  35804. meowberusSide: {
  35805. height: math.unit(75, "feet"),
  35806. weight: math.unit(180000, "kg"),
  35807. preyCapacity: math.unit(50000, "people"),
  35808. name: "Side",
  35809. image: {
  35810. source: "./media/characters/saphinara/meowberus-side.svg",
  35811. extra: 1400/711,
  35812. bottom: 126/1526
  35813. },
  35814. form: "meowberus",
  35815. extraAttributes: {
  35816. "pawArea": {
  35817. name: "Paw Size",
  35818. power: 2,
  35819. type: "area",
  35820. base: math.unit(35, "m^2")
  35821. }
  35822. }
  35823. },
  35824. },
  35825. [
  35826. {
  35827. name: "Normal",
  35828. height: math.unit(15 + 7/12, "feet"),
  35829. default: true,
  35830. form: "normal"
  35831. },
  35832. {
  35833. name: "Angry",
  35834. height: math.unit(30 + 6/12, "feet"),
  35835. form: "normal"
  35836. },
  35837. {
  35838. name: "Enraged",
  35839. height: math.unit(102 + 1/12, "feet"),
  35840. form: "normal"
  35841. },
  35842. {
  35843. name: "True",
  35844. height: math.unit(200, "feet"),
  35845. default: true,
  35846. form: "true-form"
  35847. },
  35848. {
  35849. name: "Normal",
  35850. height: math.unit(75, "feet"),
  35851. default: true,
  35852. form: "meowberus"
  35853. },
  35854. ],
  35855. {
  35856. "normal": {
  35857. name: "Normal",
  35858. default: true
  35859. },
  35860. "true-form": {
  35861. name: "True Form"
  35862. },
  35863. "meowberus": {
  35864. name: "Meowberus",
  35865. },
  35866. }
  35867. ))
  35868. characterMakers.push(() => makeCharacter(
  35869. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35870. {
  35871. front: {
  35872. height: math.unit(6 + 8/12, "feet"),
  35873. weight: math.unit(300, "lb"),
  35874. name: "Front",
  35875. image: {
  35876. source: "./media/characters/jrain/front.svg",
  35877. extra: 3039/2865,
  35878. bottom: 399/3438
  35879. }
  35880. },
  35881. back: {
  35882. height: math.unit(6 + 8/12, "feet"),
  35883. weight: math.unit(300, "lb"),
  35884. name: "Back",
  35885. image: {
  35886. source: "./media/characters/jrain/back.svg",
  35887. extra: 3089/2938,
  35888. bottom: 172/3261
  35889. }
  35890. },
  35891. head: {
  35892. height: math.unit(2.14, "feet"),
  35893. name: "Head",
  35894. image: {
  35895. source: "./media/characters/jrain/head.svg"
  35896. }
  35897. },
  35898. maw: {
  35899. height: math.unit(1.77, "feet"),
  35900. name: "Maw",
  35901. image: {
  35902. source: "./media/characters/jrain/maw.svg"
  35903. }
  35904. },
  35905. leftHand: {
  35906. height: math.unit(1.1, "feet"),
  35907. name: "Left Hand",
  35908. image: {
  35909. source: "./media/characters/jrain/left-hand.svg"
  35910. }
  35911. },
  35912. rightHand: {
  35913. height: math.unit(1.1, "feet"),
  35914. name: "Right Hand",
  35915. image: {
  35916. source: "./media/characters/jrain/right-hand.svg"
  35917. }
  35918. },
  35919. eye: {
  35920. height: math.unit(0.35, "feet"),
  35921. name: "Eye",
  35922. image: {
  35923. source: "./media/characters/jrain/eye.svg"
  35924. }
  35925. },
  35926. },
  35927. [
  35928. {
  35929. name: "Normal",
  35930. height: math.unit(6 + 8/12, "feet"),
  35931. default: true
  35932. },
  35933. {
  35934. name: "Casually Large",
  35935. height: math.unit(25, "feet")
  35936. },
  35937. {
  35938. name: "Giant",
  35939. height: math.unit(100, "feet")
  35940. },
  35941. {
  35942. name: "Kaiju",
  35943. height: math.unit(300, "feet")
  35944. },
  35945. ]
  35946. ))
  35947. characterMakers.push(() => makeCharacter(
  35948. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  35949. {
  35950. dragon: {
  35951. height: math.unit(5, "meters"),
  35952. name: "Dragon",
  35953. image: {
  35954. source: "./media/characters/sabrina/dragon.svg",
  35955. extra: 3670 / 2365,
  35956. bottom: 333 / 4003
  35957. }
  35958. },
  35959. gryphon: {
  35960. height: math.unit(3, "meters"),
  35961. name: "Gryphon",
  35962. image: {
  35963. source: "./media/characters/sabrina/gryphon.svg",
  35964. extra: 1576 / 945,
  35965. bottom: 71 / 1647
  35966. }
  35967. },
  35968. snake: {
  35969. height: math.unit(12, "meters"),
  35970. name: "Snake",
  35971. image: {
  35972. source: "./media/characters/sabrina/snake.svg",
  35973. extra: 1758 / 1320,
  35974. bottom: 186 / 1944
  35975. }
  35976. },
  35977. collar: {
  35978. height: math.unit(1.86, "meters"),
  35979. name: "Collar",
  35980. image: {
  35981. source: "./media/characters/sabrina/collar.svg"
  35982. }
  35983. },
  35984. eye: {
  35985. height: math.unit(0.53, "meters"),
  35986. name: "Eye",
  35987. image: {
  35988. source: "./media/characters/sabrina/eye.svg"
  35989. }
  35990. },
  35991. foot: {
  35992. height: math.unit(1.86, "meters"),
  35993. name: "Foot",
  35994. image: {
  35995. source: "./media/characters/sabrina/foot.svg"
  35996. }
  35997. },
  35998. hand: {
  35999. height: math.unit(1.32, "meters"),
  36000. name: "Hand",
  36001. image: {
  36002. source: "./media/characters/sabrina/hand.svg"
  36003. }
  36004. },
  36005. head: {
  36006. height: math.unit(2.44, "meters"),
  36007. name: "Head",
  36008. image: {
  36009. source: "./media/characters/sabrina/head.svg"
  36010. }
  36011. },
  36012. headAngry: {
  36013. height: math.unit(2.44, "meters"),
  36014. name: "Head (Angry))",
  36015. image: {
  36016. source: "./media/characters/sabrina/head-angry.svg"
  36017. }
  36018. },
  36019. maw: {
  36020. height: math.unit(1.65, "meters"),
  36021. name: "Maw",
  36022. image: {
  36023. source: "./media/characters/sabrina/maw.svg"
  36024. }
  36025. },
  36026. spikes: {
  36027. height: math.unit(1.69, "meters"),
  36028. name: "Spikes",
  36029. image: {
  36030. source: "./media/characters/sabrina/spikes.svg"
  36031. }
  36032. },
  36033. stomach: {
  36034. height: math.unit(1.15, "meters"),
  36035. name: "Stomach",
  36036. image: {
  36037. source: "./media/characters/sabrina/stomach.svg"
  36038. }
  36039. },
  36040. tongue: {
  36041. height: math.unit(1.27, "meters"),
  36042. name: "Tongue",
  36043. image: {
  36044. source: "./media/characters/sabrina/tongue.svg"
  36045. }
  36046. },
  36047. wingDorsal: {
  36048. height: math.unit(4.85, "meters"),
  36049. name: "Wing (Dorsal)",
  36050. image: {
  36051. source: "./media/characters/sabrina/wing-dorsal.svg"
  36052. }
  36053. },
  36054. wingVentral: {
  36055. height: math.unit(4.85, "meters"),
  36056. name: "Wing (Ventral)",
  36057. image: {
  36058. source: "./media/characters/sabrina/wing-ventral.svg"
  36059. }
  36060. },
  36061. },
  36062. [
  36063. {
  36064. name: "Normal",
  36065. height: math.unit(5, "meters"),
  36066. default: true
  36067. },
  36068. ]
  36069. ))
  36070. characterMakers.push(() => makeCharacter(
  36071. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36072. {
  36073. frontMaid: {
  36074. height: math.unit(5 + 5/12, "feet"),
  36075. weight: math.unit(130, "lb"),
  36076. name: "Front (Maid)",
  36077. image: {
  36078. source: "./media/characters/midnight-tales/front-maid.svg",
  36079. extra: 489/454,
  36080. bottom: 61/550
  36081. }
  36082. },
  36083. frontFormal: {
  36084. height: math.unit(5 + 5/12, "feet"),
  36085. weight: math.unit(130, "lb"),
  36086. name: "Front (Formal)",
  36087. image: {
  36088. source: "./media/characters/midnight-tales/front-formal.svg",
  36089. extra: 489/454,
  36090. bottom: 61/550
  36091. }
  36092. },
  36093. back: {
  36094. height: math.unit(5 + 5/12, "feet"),
  36095. weight: math.unit(130, "lb"),
  36096. name: "Back",
  36097. image: {
  36098. source: "./media/characters/midnight-tales/back.svg",
  36099. extra: 498/456,
  36100. bottom: 33/531
  36101. }
  36102. },
  36103. frontBeast: {
  36104. height: math.unit(40, "feet"),
  36105. weight: math.unit(64000, "lb"),
  36106. name: "Front (Beast)",
  36107. image: {
  36108. source: "./media/characters/midnight-tales/front-beast.svg",
  36109. extra: 927/860,
  36110. bottom: 53/980
  36111. }
  36112. },
  36113. backBeast: {
  36114. height: math.unit(40, "feet"),
  36115. weight: math.unit(64000, "lb"),
  36116. name: "Back (Beast)",
  36117. image: {
  36118. source: "./media/characters/midnight-tales/back-beast.svg",
  36119. extra: 929/855,
  36120. bottom: 16/945
  36121. }
  36122. },
  36123. footBeast: {
  36124. height: math.unit(6.7, "feet"),
  36125. name: "Foot (Beast)",
  36126. image: {
  36127. source: "./media/characters/midnight-tales/foot-beast.svg"
  36128. }
  36129. },
  36130. headBeast: {
  36131. height: math.unit(8, "feet"),
  36132. name: "Head (Beast)",
  36133. image: {
  36134. source: "./media/characters/midnight-tales/head-beast.svg"
  36135. }
  36136. },
  36137. },
  36138. [
  36139. {
  36140. name: "Normal",
  36141. height: math.unit(5 + 5 / 12, "feet"),
  36142. default: true
  36143. },
  36144. {
  36145. name: "Macro",
  36146. height: math.unit(25, "feet")
  36147. },
  36148. ]
  36149. ))
  36150. characterMakers.push(() => makeCharacter(
  36151. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36152. {
  36153. front: {
  36154. height: math.unit(5 + 10/12, "feet"),
  36155. name: "Front",
  36156. image: {
  36157. source: "./media/characters/argon/front.svg",
  36158. extra: 2009/1935,
  36159. bottom: 118/2127
  36160. }
  36161. },
  36162. back: {
  36163. height: math.unit(5 + 10/12, "feet"),
  36164. name: "Back",
  36165. image: {
  36166. source: "./media/characters/argon/back.svg",
  36167. extra: 2047/1992,
  36168. bottom: 20/2067
  36169. }
  36170. },
  36171. frontDressed: {
  36172. height: math.unit(5 + 10/12, "feet"),
  36173. name: "Front (Dressed)",
  36174. image: {
  36175. source: "./media/characters/argon/front-dressed.svg",
  36176. extra: 2009/1935,
  36177. bottom: 118/2127
  36178. }
  36179. },
  36180. },
  36181. [
  36182. {
  36183. name: "Normal",
  36184. height: math.unit(5 + 10/12, "feet"),
  36185. default: true
  36186. },
  36187. ]
  36188. ))
  36189. characterMakers.push(() => makeCharacter(
  36190. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36191. {
  36192. front: {
  36193. height: math.unit(8 + 6/12, "feet"),
  36194. weight: math.unit(1150, "lb"),
  36195. name: "Front",
  36196. image: {
  36197. source: "./media/characters/kichi/front.svg",
  36198. extra: 1267/1164,
  36199. bottom: 61/1328
  36200. }
  36201. },
  36202. back: {
  36203. height: math.unit(8 + 6/12, "feet"),
  36204. weight: math.unit(1150, "lb"),
  36205. name: "Back",
  36206. image: {
  36207. source: "./media/characters/kichi/back.svg",
  36208. extra: 1273/1166,
  36209. bottom: 33/1306
  36210. }
  36211. },
  36212. },
  36213. [
  36214. {
  36215. name: "Normal",
  36216. height: math.unit(8 + 6/12, "feet"),
  36217. default: true
  36218. },
  36219. ]
  36220. ))
  36221. characterMakers.push(() => makeCharacter(
  36222. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36223. {
  36224. front: {
  36225. height: math.unit(6, "feet"),
  36226. weight: math.unit(210, "lb"),
  36227. name: "Front",
  36228. image: {
  36229. source: "./media/characters/manetel-greyscale/front.svg",
  36230. extra: 350/312,
  36231. bottom: 8/358
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Micro",
  36238. height: math.unit(2, "inches")
  36239. },
  36240. {
  36241. name: "Normal",
  36242. height: math.unit(6, "feet"),
  36243. default: true
  36244. },
  36245. {
  36246. name: "Minimacro",
  36247. height: math.unit(17, "feet")
  36248. },
  36249. {
  36250. name: "Macro",
  36251. height: math.unit(117, "feet")
  36252. },
  36253. ]
  36254. ))
  36255. characterMakers.push(() => makeCharacter(
  36256. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36257. {
  36258. side: {
  36259. height: math.unit(5 + 1/12, "feet"),
  36260. weight: math.unit(418, "lb"),
  36261. name: "Side",
  36262. image: {
  36263. source: "./media/characters/softpurr/side.svg",
  36264. extra: 1993/1945,
  36265. bottom: 134/2127
  36266. }
  36267. },
  36268. front: {
  36269. height: math.unit(5 + 1/12, "feet"),
  36270. weight: math.unit(418, "lb"),
  36271. name: "Front",
  36272. image: {
  36273. source: "./media/characters/softpurr/front.svg",
  36274. extra: 1950/1856,
  36275. bottom: 174/2124
  36276. }
  36277. },
  36278. paw: {
  36279. height: math.unit(1, "feet"),
  36280. name: "Paw",
  36281. image: {
  36282. source: "./media/characters/softpurr/paw.svg"
  36283. }
  36284. },
  36285. },
  36286. [
  36287. {
  36288. name: "Normal",
  36289. height: math.unit(5 + 1/12, "feet"),
  36290. default: true
  36291. },
  36292. ]
  36293. ))
  36294. characterMakers.push(() => makeCharacter(
  36295. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36296. {
  36297. front: {
  36298. height: math.unit(260, "meters"),
  36299. name: "Front",
  36300. image: {
  36301. source: "./media/characters/anahita/front.svg",
  36302. extra: 665/635,
  36303. bottom: 89/754
  36304. }
  36305. },
  36306. },
  36307. [
  36308. {
  36309. name: "Macro",
  36310. height: math.unit(260, "meters"),
  36311. default: true
  36312. },
  36313. ]
  36314. ))
  36315. characterMakers.push(() => makeCharacter(
  36316. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36317. {
  36318. front: {
  36319. height: math.unit(4 + 10/12, "feet"),
  36320. weight: math.unit(160, "lb"),
  36321. name: "Front",
  36322. image: {
  36323. source: "./media/characters/chip-mouse/front.svg",
  36324. extra: 3528/3408,
  36325. bottom: 0/3528
  36326. }
  36327. },
  36328. frontNsfw: {
  36329. height: math.unit(4 + 10/12, "feet"),
  36330. weight: math.unit(160, "lb"),
  36331. name: "Front (NSFW)",
  36332. image: {
  36333. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36334. extra: 3528/3408,
  36335. bottom: 0/3528
  36336. }
  36337. },
  36338. },
  36339. [
  36340. {
  36341. name: "Normal",
  36342. height: math.unit(4 + 10/12, "feet"),
  36343. default: true
  36344. },
  36345. ]
  36346. ))
  36347. characterMakers.push(() => makeCharacter(
  36348. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36349. {
  36350. side: {
  36351. height: math.unit(10, "feet"),
  36352. weight: math.unit(14000, "lb"),
  36353. name: "Side",
  36354. image: {
  36355. source: "./media/characters/kremm/side.svg",
  36356. extra: 1390/1053,
  36357. bottom: 90/1480
  36358. }
  36359. },
  36360. gut: {
  36361. height: math.unit(5.8, "feet"),
  36362. name: "Gut",
  36363. image: {
  36364. source: "./media/characters/kremm/gut.svg"
  36365. }
  36366. },
  36367. ass: {
  36368. height: math.unit(6.1, "feet"),
  36369. name: "Ass",
  36370. image: {
  36371. source: "./media/characters/kremm/ass.svg"
  36372. }
  36373. },
  36374. jaws: {
  36375. height: math.unit(2.2, "feet"),
  36376. name: "Jaws",
  36377. image: {
  36378. source: "./media/characters/kremm/jaws.svg"
  36379. }
  36380. },
  36381. dick: {
  36382. height: math.unit(4.26, "feet"),
  36383. name: "Dick",
  36384. image: {
  36385. source: "./media/characters/kremm/dick.svg"
  36386. }
  36387. },
  36388. },
  36389. [
  36390. {
  36391. name: "Normal",
  36392. height: math.unit(10, "feet"),
  36393. default: true
  36394. },
  36395. ]
  36396. ))
  36397. characterMakers.push(() => makeCharacter(
  36398. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36399. {
  36400. front: {
  36401. height: math.unit(30, "stories"),
  36402. name: "Front",
  36403. image: {
  36404. source: "./media/characters/kai/front.svg",
  36405. extra: 1892/1718,
  36406. bottom: 162/2054
  36407. }
  36408. },
  36409. },
  36410. [
  36411. {
  36412. name: "Macro",
  36413. height: math.unit(30, "stories"),
  36414. default: true
  36415. },
  36416. ]
  36417. ))
  36418. characterMakers.push(() => makeCharacter(
  36419. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36420. {
  36421. front: {
  36422. height: math.unit(6 + 4/12, "feet"),
  36423. weight: math.unit(145, "lb"),
  36424. name: "Front",
  36425. image: {
  36426. source: "./media/characters/sykes/front.svg",
  36427. extra: 1321 / 1187,
  36428. bottom: 66 / 1387
  36429. }
  36430. },
  36431. back: {
  36432. height: math.unit(6 + 4/12, "feet"),
  36433. weight: math.unit(145, "lb"),
  36434. name: "Back",
  36435. image: {
  36436. source: "./media/characters/sykes/back.svg",
  36437. extra: 1326/1181,
  36438. bottom: 31/1357
  36439. }
  36440. },
  36441. traditionalOutfit: {
  36442. height: math.unit(6 + 4/12, "feet"),
  36443. weight: math.unit(145, "lb"),
  36444. name: "Traditional Outfit",
  36445. image: {
  36446. source: "./media/characters/sykes/traditional-outfit.svg",
  36447. extra: 1321 / 1187,
  36448. bottom: 66 / 1387
  36449. }
  36450. },
  36451. adventureOutfit: {
  36452. height: math.unit(6 + 4/12, "feet"),
  36453. weight: math.unit(145, "lb"),
  36454. name: "Adventure Outfit",
  36455. image: {
  36456. source: "./media/characters/sykes/adventure-outfit.svg",
  36457. extra: 1321 / 1187,
  36458. bottom: 66 / 1387
  36459. }
  36460. },
  36461. handLeft: {
  36462. height: math.unit(0.9, "feet"),
  36463. name: "Hand (Left)",
  36464. image: {
  36465. source: "./media/characters/sykes/hand-left.svg"
  36466. }
  36467. },
  36468. handRight: {
  36469. height: math.unit(0.839, "feet"),
  36470. name: "Hand (Right)",
  36471. image: {
  36472. source: "./media/characters/sykes/hand-right.svg"
  36473. }
  36474. },
  36475. leftFoot: {
  36476. height: math.unit(1.2, "feet"),
  36477. name: "Foot (Left)",
  36478. image: {
  36479. source: "./media/characters/sykes/foot-left.svg"
  36480. }
  36481. },
  36482. rightFoot: {
  36483. height: math.unit(1.2, "feet"),
  36484. name: "Foot (Right)",
  36485. image: {
  36486. source: "./media/characters/sykes/foot-right.svg"
  36487. }
  36488. },
  36489. maw: {
  36490. height: math.unit(1.93, "feet"),
  36491. name: "Maw",
  36492. image: {
  36493. source: "./media/characters/sykes/maw.svg"
  36494. }
  36495. },
  36496. teeth: {
  36497. height: math.unit(0.51, "feet"),
  36498. name: "Teeth",
  36499. image: {
  36500. source: "./media/characters/sykes/teeth.svg"
  36501. }
  36502. },
  36503. tongue: {
  36504. height: math.unit(2.13, "feet"),
  36505. name: "Tongue",
  36506. image: {
  36507. source: "./media/characters/sykes/tongue.svg"
  36508. }
  36509. },
  36510. uvula: {
  36511. height: math.unit(0.16, "feet"),
  36512. name: "Uvula",
  36513. image: {
  36514. source: "./media/characters/sykes/uvula.svg"
  36515. }
  36516. },
  36517. collar: {
  36518. height: math.unit(0.287, "feet"),
  36519. name: "Collar",
  36520. image: {
  36521. source: "./media/characters/sykes/collar.svg"
  36522. }
  36523. },
  36524. tail: {
  36525. height: math.unit(3.8, "feet"),
  36526. name: "Tail",
  36527. image: {
  36528. source: "./media/characters/sykes/tail.svg"
  36529. }
  36530. },
  36531. },
  36532. [
  36533. {
  36534. name: "Shrunken",
  36535. height: math.unit(5, "inches")
  36536. },
  36537. {
  36538. name: "Normal",
  36539. height: math.unit(6 + 4 / 12, "feet"),
  36540. default: true
  36541. },
  36542. {
  36543. name: "Big",
  36544. height: math.unit(15, "feet")
  36545. },
  36546. ]
  36547. ))
  36548. characterMakers.push(() => makeCharacter(
  36549. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36550. {
  36551. front: {
  36552. height: math.unit(5 + 8/12, "feet"),
  36553. weight: math.unit(190, "lb"),
  36554. name: "Front",
  36555. image: {
  36556. source: "./media/characters/oven-otter/front.svg",
  36557. extra: 1809/1740,
  36558. bottom: 181/1990
  36559. }
  36560. },
  36561. back: {
  36562. height: math.unit(5 + 8/12, "feet"),
  36563. weight: math.unit(190, "lb"),
  36564. name: "Back",
  36565. image: {
  36566. source: "./media/characters/oven-otter/back.svg",
  36567. extra: 1709/1635,
  36568. bottom: 118/1827
  36569. }
  36570. },
  36571. hand: {
  36572. height: math.unit(1.07, "feet"),
  36573. name: "Hand",
  36574. image: {
  36575. source: "./media/characters/oven-otter/hand.svg"
  36576. }
  36577. },
  36578. beans: {
  36579. height: math.unit(1.74, "feet"),
  36580. name: "Beans",
  36581. image: {
  36582. source: "./media/characters/oven-otter/beans.svg"
  36583. }
  36584. },
  36585. },
  36586. [
  36587. {
  36588. name: "Micro",
  36589. height: math.unit(0.5, "inches")
  36590. },
  36591. {
  36592. name: "Normal",
  36593. height: math.unit(5 + 8/12, "feet"),
  36594. default: true
  36595. },
  36596. {
  36597. name: "Macro",
  36598. height: math.unit(250, "feet")
  36599. },
  36600. {
  36601. name: "Really High",
  36602. height: math.unit(420, "feet")
  36603. },
  36604. ]
  36605. ))
  36606. characterMakers.push(() => makeCharacter(
  36607. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36608. {
  36609. front: {
  36610. height: math.unit(5, "meters"),
  36611. weight: math.unit(292000000000000, "kg"),
  36612. name: "Front",
  36613. image: {
  36614. source: "./media/characters/devourer/front.svg",
  36615. extra: 1800/1733,
  36616. bottom: 211/2011
  36617. }
  36618. },
  36619. maw: {
  36620. height: math.unit(1.1, "meter"),
  36621. name: "Maw",
  36622. image: {
  36623. source: "./media/characters/devourer/maw.svg"
  36624. }
  36625. },
  36626. },
  36627. [
  36628. {
  36629. name: "Small",
  36630. height: math.unit(3, "meters")
  36631. },
  36632. {
  36633. name: "Large",
  36634. height: math.unit(5, "meters"),
  36635. default: true
  36636. },
  36637. ]
  36638. ))
  36639. characterMakers.push(() => makeCharacter(
  36640. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36641. {
  36642. front: {
  36643. height: math.unit(6, "feet"),
  36644. weight: math.unit(400, "lb"),
  36645. name: "Front",
  36646. image: {
  36647. source: "./media/characters/ellarby/front.svg",
  36648. extra: 1909/1763,
  36649. bottom: 80/1989
  36650. }
  36651. },
  36652. back: {
  36653. height: math.unit(6, "feet"),
  36654. weight: math.unit(400, "lb"),
  36655. name: "Back",
  36656. image: {
  36657. source: "./media/characters/ellarby/back.svg",
  36658. extra: 1914/1784,
  36659. bottom: 172/2086
  36660. }
  36661. },
  36662. },
  36663. [
  36664. {
  36665. name: "Mischief",
  36666. height: math.unit(18, "inches")
  36667. },
  36668. {
  36669. name: "Trouble",
  36670. height: math.unit(12, "feet")
  36671. },
  36672. {
  36673. name: "Havoc",
  36674. height: math.unit(200, "feet"),
  36675. default: true
  36676. },
  36677. {
  36678. name: "Pandemonium",
  36679. height: math.unit(1, "mile")
  36680. },
  36681. {
  36682. name: "Catastrophe",
  36683. height: math.unit(100, "miles")
  36684. },
  36685. ]
  36686. ))
  36687. characterMakers.push(() => makeCharacter(
  36688. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36689. {
  36690. front: {
  36691. height: math.unit(4.7, "meters"),
  36692. weight: math.unit(6500, "kg"),
  36693. name: "Front",
  36694. image: {
  36695. source: "./media/characters/vex/front.svg",
  36696. extra: 1288/1140,
  36697. bottom: 100/1388
  36698. }
  36699. },
  36700. },
  36701. [
  36702. {
  36703. name: "Normal",
  36704. height: math.unit(4.7, "meters"),
  36705. default: true
  36706. },
  36707. ]
  36708. ))
  36709. characterMakers.push(() => makeCharacter(
  36710. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36711. {
  36712. normal: {
  36713. height: math.unit(6, "feet"),
  36714. weight: math.unit(350, "lb"),
  36715. name: "Normal",
  36716. image: {
  36717. source: "./media/characters/teshy/normal.svg",
  36718. extra: 1795/1735,
  36719. bottom: 16/1811
  36720. }
  36721. },
  36722. monsterFront: {
  36723. height: math.unit(12, "feet"),
  36724. weight: math.unit(4700, "lb"),
  36725. name: "Monster (Front)",
  36726. image: {
  36727. source: "./media/characters/teshy/monster-front.svg",
  36728. extra: 2042/2034,
  36729. bottom: 128/2170
  36730. }
  36731. },
  36732. monsterSide: {
  36733. height: math.unit(12, "feet"),
  36734. weight: math.unit(4700, "lb"),
  36735. name: "Monster (Side)",
  36736. image: {
  36737. source: "./media/characters/teshy/monster-side.svg",
  36738. extra: 2067/2056,
  36739. bottom: 70/2137
  36740. }
  36741. },
  36742. monsterBack: {
  36743. height: math.unit(12, "feet"),
  36744. weight: math.unit(4700, "lb"),
  36745. name: "Monster (Back)",
  36746. image: {
  36747. source: "./media/characters/teshy/monster-back.svg",
  36748. extra: 1921/1914,
  36749. bottom: 171/2092
  36750. }
  36751. },
  36752. },
  36753. [
  36754. {
  36755. name: "Normal",
  36756. height: math.unit(6, "feet"),
  36757. default: true
  36758. },
  36759. ]
  36760. ))
  36761. characterMakers.push(() => makeCharacter(
  36762. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36763. {
  36764. front: {
  36765. height: math.unit(6, "feet"),
  36766. name: "Front",
  36767. image: {
  36768. source: "./media/characters/ramey/front.svg",
  36769. extra: 790/787,
  36770. bottom: 27/817
  36771. }
  36772. },
  36773. },
  36774. [
  36775. {
  36776. name: "Normal",
  36777. height: math.unit(6, "feet"),
  36778. default: true
  36779. },
  36780. ]
  36781. ))
  36782. characterMakers.push(() => makeCharacter(
  36783. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36784. {
  36785. front: {
  36786. height: math.unit(5 + 5/12, "feet"),
  36787. weight: math.unit(120, "lb"),
  36788. name: "Front",
  36789. image: {
  36790. source: "./media/characters/phirae/front.svg",
  36791. extra: 2491/2436,
  36792. bottom: 38/2529
  36793. }
  36794. },
  36795. },
  36796. [
  36797. {
  36798. name: "Normal",
  36799. height: math.unit(5 + 5/12, "feet"),
  36800. default: true
  36801. },
  36802. ]
  36803. ))
  36804. characterMakers.push(() => makeCharacter(
  36805. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36806. {
  36807. front: {
  36808. height: math.unit(5 + 3/12, "feet"),
  36809. name: "Front",
  36810. image: {
  36811. source: "./media/characters/stagglas/front.svg",
  36812. extra: 962/882,
  36813. bottom: 53/1015
  36814. }
  36815. },
  36816. feral: {
  36817. height: math.unit(335, "cm"),
  36818. name: "Feral",
  36819. image: {
  36820. source: "./media/characters/stagglas/feral.svg",
  36821. extra: 1732/1090,
  36822. bottom: 48/1780
  36823. }
  36824. },
  36825. },
  36826. [
  36827. {
  36828. name: "Normal",
  36829. height: math.unit(5 + 3/12, "feet"),
  36830. default: true
  36831. },
  36832. ]
  36833. ))
  36834. characterMakers.push(() => makeCharacter(
  36835. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36836. {
  36837. front: {
  36838. height: math.unit(5 + 4/12, "feet"),
  36839. weight: math.unit(145, "lb"),
  36840. name: "Front",
  36841. image: {
  36842. source: "./media/characters/starra/front.svg",
  36843. extra: 1790/1691,
  36844. bottom: 91/1881
  36845. }
  36846. },
  36847. },
  36848. [
  36849. {
  36850. name: "Normal",
  36851. height: math.unit(5 + 4/12, "feet"),
  36852. default: true
  36853. },
  36854. ]
  36855. ))
  36856. characterMakers.push(() => makeCharacter(
  36857. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36858. {
  36859. front: {
  36860. height: math.unit(3.5, "meters"),
  36861. name: "Front",
  36862. image: {
  36863. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36864. extra: 1248/972,
  36865. bottom: 38/1286
  36866. }
  36867. },
  36868. },
  36869. [
  36870. {
  36871. name: "Normal",
  36872. height: math.unit(3.5, "meters"),
  36873. default: true
  36874. },
  36875. ]
  36876. ))
  36877. characterMakers.push(() => makeCharacter(
  36878. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36879. {
  36880. side: {
  36881. height: math.unit(8 + 2/12, "feet"),
  36882. weight: math.unit(1240, "lb"),
  36883. name: "Side",
  36884. image: {
  36885. source: "./media/characters/mika-valentine/side.svg",
  36886. extra: 2670/2501,
  36887. bottom: 250/2920
  36888. }
  36889. },
  36890. },
  36891. [
  36892. {
  36893. name: "Normal",
  36894. height: math.unit(8 + 2/12, "feet"),
  36895. default: true
  36896. },
  36897. ]
  36898. ))
  36899. characterMakers.push(() => makeCharacter(
  36900. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  36901. {
  36902. front: {
  36903. height: math.unit(7 + 2/12, "feet"),
  36904. name: "Front",
  36905. image: {
  36906. source: "./media/characters/xoltol/front.svg",
  36907. extra: 2212/2124,
  36908. bottom: 84/2296
  36909. }
  36910. },
  36911. side: {
  36912. height: math.unit(7 + 2/12, "feet"),
  36913. name: "Side",
  36914. image: {
  36915. source: "./media/characters/xoltol/side.svg",
  36916. extra: 2273/2197,
  36917. bottom: 26/2299
  36918. }
  36919. },
  36920. hand: {
  36921. height: math.unit(2.5, "feet"),
  36922. name: "Hand",
  36923. image: {
  36924. source: "./media/characters/xoltol/hand.svg"
  36925. }
  36926. },
  36927. },
  36928. [
  36929. {
  36930. name: "Small-ish",
  36931. height: math.unit(5 + 11/12, "feet")
  36932. },
  36933. {
  36934. name: "Normal",
  36935. height: math.unit(7 + 2/12, "feet")
  36936. },
  36937. {
  36938. name: "\"Macro\"",
  36939. height: math.unit(14 + 9/12, "feet"),
  36940. default: true
  36941. },
  36942. {
  36943. name: "Alternate Height",
  36944. height: math.unit(20, "feet")
  36945. },
  36946. {
  36947. name: "Actually Macro",
  36948. height: math.unit(100, "feet")
  36949. },
  36950. ]
  36951. ))
  36952. characterMakers.push(() => makeCharacter(
  36953. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  36954. {
  36955. front: {
  36956. height: math.unit(5 + 2/12, "feet"),
  36957. weight: math.unit(75, "kg"),
  36958. name: "Front",
  36959. image: {
  36960. source: "./media/characters/kotetsu-redwood/front.svg",
  36961. extra: 1053/942,
  36962. bottom: 60/1113
  36963. }
  36964. },
  36965. },
  36966. [
  36967. {
  36968. name: "Normal",
  36969. height: math.unit(5 + 2/12, "feet"),
  36970. default: true
  36971. },
  36972. ]
  36973. ))
  36974. characterMakers.push(() => makeCharacter(
  36975. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  36976. {
  36977. front: {
  36978. height: math.unit(2.4, "meters"),
  36979. weight: math.unit(125, "kg"),
  36980. name: "Front",
  36981. image: {
  36982. source: "./media/characters/lilith/front.svg",
  36983. extra: 1590/1513,
  36984. bottom: 203/1793
  36985. }
  36986. },
  36987. },
  36988. [
  36989. {
  36990. name: "Humanoid",
  36991. height: math.unit(2.4, "meters")
  36992. },
  36993. {
  36994. name: "Normal",
  36995. height: math.unit(6, "meters"),
  36996. default: true
  36997. },
  36998. {
  36999. name: "Largest",
  37000. height: math.unit(55, "meters")
  37001. },
  37002. ]
  37003. ))
  37004. characterMakers.push(() => makeCharacter(
  37005. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37006. {
  37007. front: {
  37008. height: math.unit(8 + 4/12, "feet"),
  37009. weight: math.unit(535, "lb"),
  37010. name: "Front",
  37011. image: {
  37012. source: "./media/characters/beh'kah-bolger/front.svg",
  37013. extra: 1660/1603,
  37014. bottom: 37/1697
  37015. }
  37016. },
  37017. },
  37018. [
  37019. {
  37020. name: "Normal",
  37021. height: math.unit(8 + 4/12, "feet"),
  37022. default: true
  37023. },
  37024. {
  37025. name: "Kaiju",
  37026. height: math.unit(250, "feet")
  37027. },
  37028. {
  37029. name: "Still Growing",
  37030. height: math.unit(10, "miles")
  37031. },
  37032. {
  37033. name: "Continental",
  37034. height: math.unit(5000, "miles")
  37035. },
  37036. {
  37037. name: "Final Form",
  37038. height: math.unit(2500000, "miles")
  37039. },
  37040. ]
  37041. ))
  37042. characterMakers.push(() => makeCharacter(
  37043. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37044. {
  37045. front: {
  37046. height: math.unit(7 + 2/12, "feet"),
  37047. weight: math.unit(230, "kg"),
  37048. name: "Front",
  37049. image: {
  37050. source: "./media/characters/tatyana-milewska/front.svg",
  37051. extra: 1199/1150,
  37052. bottom: 86/1285
  37053. }
  37054. },
  37055. },
  37056. [
  37057. {
  37058. name: "Normal",
  37059. height: math.unit(7 + 2/12, "feet"),
  37060. default: true
  37061. },
  37062. {
  37063. name: "Big",
  37064. height: math.unit(12, "feet")
  37065. },
  37066. {
  37067. name: "Minimacro",
  37068. height: math.unit(20, "feet")
  37069. },
  37070. {
  37071. name: "Macro",
  37072. height: math.unit(120, "feet")
  37073. },
  37074. ]
  37075. ))
  37076. characterMakers.push(() => makeCharacter(
  37077. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37078. {
  37079. front: {
  37080. height: math.unit(7 + 8/12, "feet"),
  37081. weight: math.unit(152, "kg"),
  37082. name: "Front",
  37083. image: {
  37084. source: "./media/characters/helen-arri/front.svg",
  37085. extra: 440/423,
  37086. bottom: 14/454
  37087. }
  37088. },
  37089. back: {
  37090. height: math.unit(7 + 8/12, "feet"),
  37091. weight: math.unit(152, "kg"),
  37092. name: "Back",
  37093. image: {
  37094. source: "./media/characters/helen-arri/back.svg",
  37095. extra: 443/426,
  37096. bottom: 8/451
  37097. }
  37098. },
  37099. },
  37100. [
  37101. {
  37102. name: "Normal",
  37103. height: math.unit(7 + 8/12, "feet"),
  37104. default: true
  37105. },
  37106. {
  37107. name: "Big",
  37108. height: math.unit(14, "feet")
  37109. },
  37110. {
  37111. name: "Minimacro",
  37112. height: math.unit(24, "feet")
  37113. },
  37114. {
  37115. name: "Macro",
  37116. height: math.unit(140, "feet")
  37117. },
  37118. ]
  37119. ))
  37120. characterMakers.push(() => makeCharacter(
  37121. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37122. {
  37123. front: {
  37124. height: math.unit(6, "meters"),
  37125. name: "Front",
  37126. image: {
  37127. source: "./media/characters/ehanu-rehu/front.svg",
  37128. extra: 1800/1800,
  37129. bottom: 59/1859
  37130. }
  37131. },
  37132. },
  37133. [
  37134. {
  37135. name: "Normal",
  37136. height: math.unit(6, "meters"),
  37137. default: true
  37138. },
  37139. ]
  37140. ))
  37141. characterMakers.push(() => makeCharacter(
  37142. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37143. {
  37144. front: {
  37145. height: math.unit(7 + 3/12, "feet"),
  37146. name: "Front",
  37147. image: {
  37148. source: "./media/characters/renholder/front.svg",
  37149. extra: 3096/2960,
  37150. bottom: 250/3346
  37151. }
  37152. },
  37153. },
  37154. [
  37155. {
  37156. name: "Normal Bat",
  37157. height: math.unit(7 + 3/12, "feet"),
  37158. default: true
  37159. },
  37160. {
  37161. name: "Slightly Tall Bat",
  37162. height: math.unit(100, "feet")
  37163. },
  37164. {
  37165. name: "Big Bat",
  37166. height: math.unit(1000, "feet")
  37167. },
  37168. {
  37169. name: "City-Sized Bat",
  37170. height: math.unit(200000, "feet")
  37171. },
  37172. {
  37173. name: "Bigger Bat",
  37174. height: math.unit(10000, "miles")
  37175. },
  37176. {
  37177. name: "Solar Sized Bat",
  37178. height: math.unit(100, "AU")
  37179. },
  37180. {
  37181. name: "Galactic Bat",
  37182. height: math.unit(200000, "lightyears")
  37183. },
  37184. {
  37185. name: "Universally Known Bat",
  37186. height: math.unit(1, "universe")
  37187. },
  37188. ]
  37189. ))
  37190. characterMakers.push(() => makeCharacter(
  37191. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37192. {
  37193. front: {
  37194. height: math.unit(6 + 11/12, "feet"),
  37195. weight: math.unit(250, "lb"),
  37196. name: "Front",
  37197. image: {
  37198. source: "./media/characters/cookiecat/front.svg",
  37199. extra: 893/827,
  37200. bottom: 14/907
  37201. }
  37202. },
  37203. },
  37204. [
  37205. {
  37206. name: "Micro",
  37207. height: math.unit(3, "inches")
  37208. },
  37209. {
  37210. name: "Normal",
  37211. height: math.unit(6 + 11/12, "feet"),
  37212. default: true
  37213. },
  37214. {
  37215. name: "Macro",
  37216. height: math.unit(100, "feet")
  37217. },
  37218. {
  37219. name: "Macro+",
  37220. height: math.unit(404, "feet")
  37221. },
  37222. {
  37223. name: "Megamacro",
  37224. height: math.unit(165, "miles")
  37225. },
  37226. {
  37227. name: "Planetary",
  37228. height: math.unit(4600, "miles")
  37229. },
  37230. ]
  37231. ))
  37232. characterMakers.push(() => makeCharacter(
  37233. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37234. {
  37235. front: {
  37236. height: math.unit(10 + 3/12, "feet"),
  37237. weight: math.unit(1500, "lb"),
  37238. name: "Front",
  37239. image: {
  37240. source: "./media/characters/tux-kusanagi/front.svg",
  37241. extra: 944/840,
  37242. bottom: 39/983
  37243. }
  37244. },
  37245. back: {
  37246. height: math.unit(10 + 3/12, "feet"),
  37247. weight: math.unit(1500, "lb"),
  37248. name: "Back",
  37249. image: {
  37250. source: "./media/characters/tux-kusanagi/back.svg",
  37251. extra: 941/842,
  37252. bottom: 28/969
  37253. }
  37254. },
  37255. rump: {
  37256. height: math.unit(5.25, "feet"),
  37257. name: "Rump",
  37258. image: {
  37259. source: "./media/characters/tux-kusanagi/rump.svg"
  37260. }
  37261. },
  37262. beak: {
  37263. height: math.unit(1.54, "feet"),
  37264. name: "Beak",
  37265. image: {
  37266. source: "./media/characters/tux-kusanagi/beak.svg"
  37267. }
  37268. },
  37269. },
  37270. [
  37271. {
  37272. name: "Normal",
  37273. height: math.unit(10 + 3/12, "feet"),
  37274. default: true
  37275. },
  37276. ]
  37277. ))
  37278. characterMakers.push(() => makeCharacter(
  37279. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37280. {
  37281. front: {
  37282. height: math.unit(58, "feet"),
  37283. weight: math.unit(200, "tons"),
  37284. name: "Front",
  37285. image: {
  37286. source: "./media/characters/uzarmazari/front.svg",
  37287. extra: 1575/1455,
  37288. bottom: 152/1727
  37289. }
  37290. },
  37291. back: {
  37292. height: math.unit(58, "feet"),
  37293. weight: math.unit(200, "tons"),
  37294. name: "Back",
  37295. image: {
  37296. source: "./media/characters/uzarmazari/back.svg",
  37297. extra: 1585/1510,
  37298. bottom: 157/1742
  37299. }
  37300. },
  37301. head: {
  37302. height: math.unit(26, "feet"),
  37303. name: "Head",
  37304. image: {
  37305. source: "./media/characters/uzarmazari/head.svg"
  37306. }
  37307. },
  37308. },
  37309. [
  37310. {
  37311. name: "Normal",
  37312. height: math.unit(58, "feet"),
  37313. default: true
  37314. },
  37315. ]
  37316. ))
  37317. characterMakers.push(() => makeCharacter(
  37318. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37319. {
  37320. side: {
  37321. height: math.unit(15, "feet"),
  37322. name: "Side",
  37323. image: {
  37324. source: "./media/characters/akitu/side.svg",
  37325. extra: 1421/1321,
  37326. bottom: 157/1578
  37327. }
  37328. },
  37329. front: {
  37330. height: math.unit(15, "feet"),
  37331. name: "Front",
  37332. image: {
  37333. source: "./media/characters/akitu/front.svg",
  37334. extra: 1435/1326,
  37335. bottom: 232/1667
  37336. }
  37337. },
  37338. },
  37339. [
  37340. {
  37341. name: "Normal",
  37342. height: math.unit(15, "feet"),
  37343. default: true
  37344. },
  37345. ]
  37346. ))
  37347. characterMakers.push(() => makeCharacter(
  37348. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37349. {
  37350. front: {
  37351. height: math.unit(10 + 8/12, "feet"),
  37352. name: "Front",
  37353. image: {
  37354. source: "./media/characters/azalie-croixland/front.svg",
  37355. extra: 1972/1856,
  37356. bottom: 31/2003
  37357. }
  37358. },
  37359. },
  37360. [
  37361. {
  37362. name: "Original Height",
  37363. height: math.unit(5 + 4/12, "feet")
  37364. },
  37365. {
  37366. name: "Normal Height",
  37367. height: math.unit(10 + 8/12, "feet"),
  37368. default: true
  37369. },
  37370. ]
  37371. ))
  37372. characterMakers.push(() => makeCharacter(
  37373. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37374. {
  37375. side: {
  37376. height: math.unit(7 + 1/12, "feet"),
  37377. weight: math.unit(245, "lb"),
  37378. name: "Side",
  37379. image: {
  37380. source: "./media/characters/kavus-kazian/side.svg",
  37381. extra: 349/342,
  37382. bottom: 15/364
  37383. }
  37384. },
  37385. },
  37386. [
  37387. {
  37388. name: "Normal",
  37389. height: math.unit(7 + 1/12, "feet"),
  37390. default: true
  37391. },
  37392. ]
  37393. ))
  37394. characterMakers.push(() => makeCharacter(
  37395. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37396. {
  37397. normalFront: {
  37398. height: math.unit(5 + 11/12, "feet"),
  37399. name: "Front",
  37400. image: {
  37401. source: "./media/characters/moonlight-rose/normal-front.svg",
  37402. extra: 1980/1825,
  37403. bottom: 18/1998
  37404. },
  37405. form: "normal",
  37406. default: true
  37407. },
  37408. normalBack: {
  37409. height: math.unit(5 + 11/12, "feet"),
  37410. name: "Back",
  37411. image: {
  37412. source: "./media/characters/moonlight-rose/normal-back.svg",
  37413. extra: 2010/1839,
  37414. bottom: 10/2020
  37415. },
  37416. form: "normal"
  37417. },
  37418. demonFront: {
  37419. height: math.unit(1.5, "earths"),
  37420. name: "Front",
  37421. image: {
  37422. source: "./media/characters/moonlight-rose/demon.svg",
  37423. extra: 1400/1294,
  37424. bottom: 45/1445
  37425. },
  37426. form: "demon",
  37427. default: true
  37428. },
  37429. terraFront: {
  37430. height: math.unit(1.5, "earths"),
  37431. name: "Front",
  37432. image: {
  37433. source: "./media/characters/moonlight-rose/terra.svg"
  37434. },
  37435. form: "terra",
  37436. default: true
  37437. },
  37438. jupiterFront: {
  37439. height: math.unit(69911*2, "km"),
  37440. name: "Front",
  37441. image: {
  37442. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37443. extra: 1367/1286,
  37444. bottom: 55/1422
  37445. },
  37446. form: "jupiter",
  37447. default: true
  37448. },
  37449. neptuneFront: {
  37450. height: math.unit(24622*2, "feet"),
  37451. name: "Front",
  37452. image: {
  37453. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37454. extra: 1851/1712,
  37455. bottom: 0/1851
  37456. },
  37457. form: "neptune",
  37458. default: true
  37459. },
  37460. },
  37461. [
  37462. {
  37463. name: "\"Natural\" Height",
  37464. height: math.unit(5 + 11/12, "feet"),
  37465. form: "normal"
  37466. },
  37467. {
  37468. name: "Smallest comfortable size",
  37469. height: math.unit(40, "meters"),
  37470. form: "normal"
  37471. },
  37472. {
  37473. name: "Common size",
  37474. height: math.unit(50, "km"),
  37475. form: "normal",
  37476. default: true
  37477. },
  37478. {
  37479. name: "Normal",
  37480. height: math.unit(1.5, "earths"),
  37481. form: "demon",
  37482. default: true
  37483. },
  37484. {
  37485. name: "Universal",
  37486. height: math.unit(15, "universes"),
  37487. form: "demon"
  37488. },
  37489. {
  37490. name: "Earth",
  37491. height: math.unit(1.5, "earths"),
  37492. form: "terra",
  37493. default: true
  37494. },
  37495. {
  37496. name: "Super Earth",
  37497. height: math.unit(67.5, "earths"),
  37498. form: "terra"
  37499. },
  37500. {
  37501. name: "Doesn't fit in a solar system...",
  37502. height: math.unit(1, "galaxy"),
  37503. form: "terra"
  37504. },
  37505. {
  37506. name: "Saturn",
  37507. height: math.unit(58232*2, "km"),
  37508. form: "jupiter"
  37509. },
  37510. {
  37511. name: "Jupiter",
  37512. height: math.unit(69911*2, "km"),
  37513. form: "jupiter",
  37514. default: true
  37515. },
  37516. {
  37517. name: "HD 100546 b",
  37518. height: math.unit(482938, "km"),
  37519. form: "jupiter"
  37520. },
  37521. {
  37522. name: "Enceladus",
  37523. height: math.unit(513*2, "km"),
  37524. form: "neptune"
  37525. },
  37526. {
  37527. name: "Europe",
  37528. height: math.unit(1560*2, "km"),
  37529. form: "neptune"
  37530. },
  37531. {
  37532. name: "Neptune",
  37533. height: math.unit(24622*2, "km"),
  37534. form: "neptune",
  37535. default: true
  37536. },
  37537. {
  37538. name: "CoRoT-9b",
  37539. height: math.unit(75067*2, "km"),
  37540. form: "neptune"
  37541. },
  37542. ],
  37543. {
  37544. "normal": {
  37545. name: "Normal",
  37546. default: true
  37547. },
  37548. "demon": {
  37549. name: "Demon"
  37550. },
  37551. "terra": {
  37552. name: "Terra"
  37553. },
  37554. "jupiter": {
  37555. name: "Jupiter"
  37556. },
  37557. "neptune": {
  37558. name: "Neptune"
  37559. }
  37560. }
  37561. ))
  37562. characterMakers.push(() => makeCharacter(
  37563. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37564. {
  37565. front: {
  37566. height: math.unit(16, "feet"),
  37567. weight: math.unit(610, "kg"),
  37568. name: "Front",
  37569. image: {
  37570. source: "./media/characters/huckle/front.svg",
  37571. extra: 1731/1625,
  37572. bottom: 33/1764
  37573. }
  37574. },
  37575. back: {
  37576. height: math.unit(16, "feet"),
  37577. weight: math.unit(610, "kg"),
  37578. name: "Back",
  37579. image: {
  37580. source: "./media/characters/huckle/back.svg",
  37581. extra: 1738/1651,
  37582. bottom: 37/1775
  37583. }
  37584. },
  37585. laughing: {
  37586. height: math.unit(3.75, "feet"),
  37587. name: "Laughing",
  37588. image: {
  37589. source: "./media/characters/huckle/laughing.svg"
  37590. }
  37591. },
  37592. angry: {
  37593. height: math.unit(4.15, "feet"),
  37594. name: "Angry",
  37595. image: {
  37596. source: "./media/characters/huckle/angry.svg"
  37597. }
  37598. },
  37599. },
  37600. [
  37601. {
  37602. name: "Normal",
  37603. height: math.unit(16, "feet"),
  37604. default: true
  37605. },
  37606. {
  37607. name: "Mini Macro",
  37608. height: math.unit(463, "feet")
  37609. },
  37610. {
  37611. name: "Macro",
  37612. height: math.unit(1680, "meters")
  37613. },
  37614. {
  37615. name: "Mega Macro",
  37616. height: math.unit(175, "km")
  37617. },
  37618. {
  37619. name: "Terra Macro",
  37620. height: math.unit(32, "gigameters")
  37621. },
  37622. {
  37623. name: "Multiverse+",
  37624. height: math.unit(2.56e23, "yottameters")
  37625. },
  37626. ]
  37627. ))
  37628. characterMakers.push(() => makeCharacter(
  37629. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37630. {
  37631. front: {
  37632. height: math.unit(6 + 9/12, "feet"),
  37633. weight: math.unit(280, "lb"),
  37634. name: "Front",
  37635. image: {
  37636. source: "./media/characters/candy/front.svg",
  37637. extra: 234/217,
  37638. bottom: 11/245
  37639. }
  37640. },
  37641. },
  37642. [
  37643. {
  37644. name: "Really Small",
  37645. height: math.unit(0.1, "nm")
  37646. },
  37647. {
  37648. name: "Micro",
  37649. height: math.unit(2, "inches")
  37650. },
  37651. {
  37652. name: "Normal",
  37653. height: math.unit(6 + 9/12, "feet"),
  37654. default: true
  37655. },
  37656. {
  37657. name: "Small Macro",
  37658. height: math.unit(69, "feet")
  37659. },
  37660. {
  37661. name: "Macro",
  37662. height: math.unit(160, "feet")
  37663. },
  37664. {
  37665. name: "Megamacro",
  37666. height: math.unit(22000, "miles")
  37667. },
  37668. {
  37669. name: "Gigamacro",
  37670. height: math.unit(50000, "miles")
  37671. },
  37672. ]
  37673. ))
  37674. characterMakers.push(() => makeCharacter(
  37675. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37676. {
  37677. front: {
  37678. height: math.unit(4, "feet"),
  37679. weight: math.unit(90, "lb"),
  37680. name: "Front",
  37681. image: {
  37682. source: "./media/characters/joey-mcdonald/front.svg",
  37683. extra: 1059/852,
  37684. bottom: 33/1092
  37685. }
  37686. },
  37687. back: {
  37688. height: math.unit(4, "feet"),
  37689. weight: math.unit(90, "lb"),
  37690. name: "Back",
  37691. image: {
  37692. source: "./media/characters/joey-mcdonald/back.svg",
  37693. extra: 1077/879,
  37694. bottom: 5/1082
  37695. }
  37696. },
  37697. frontKobold: {
  37698. height: math.unit(4, "feet"),
  37699. weight: math.unit(100, "lb"),
  37700. name: "Front-kobold",
  37701. image: {
  37702. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37703. extra: 1480/1367,
  37704. bottom: 0/1480
  37705. }
  37706. },
  37707. backKobold: {
  37708. height: math.unit(4, "feet"),
  37709. weight: math.unit(100, "lb"),
  37710. name: "Back-kobold",
  37711. image: {
  37712. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37713. extra: 1449/1361,
  37714. bottom: 0/1449
  37715. }
  37716. },
  37717. },
  37718. [
  37719. {
  37720. name: "Normal",
  37721. height: math.unit(4, "feet"),
  37722. default: true
  37723. },
  37724. ]
  37725. ))
  37726. characterMakers.push(() => makeCharacter(
  37727. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37728. {
  37729. front: {
  37730. height: math.unit(12 + 6/12, "feet"),
  37731. name: "Front",
  37732. image: {
  37733. source: "./media/characters/kass-lockheed/front.svg",
  37734. extra: 354/343,
  37735. bottom: 9/363
  37736. }
  37737. },
  37738. back: {
  37739. height: math.unit(12 + 6/12, "feet"),
  37740. name: "Back",
  37741. image: {
  37742. source: "./media/characters/kass-lockheed/back.svg",
  37743. extra: 364/352,
  37744. bottom: 3/367
  37745. }
  37746. },
  37747. dick: {
  37748. height: math.unit(3.12, "feet"),
  37749. name: "Dick",
  37750. image: {
  37751. source: "./media/characters/kass-lockheed/dick.svg"
  37752. }
  37753. },
  37754. head: {
  37755. height: math.unit(2.6, "feet"),
  37756. name: "Head",
  37757. image: {
  37758. source: "./media/characters/kass-lockheed/head.svg"
  37759. }
  37760. },
  37761. bleh: {
  37762. height: math.unit(2.85, "feet"),
  37763. name: "Bleh",
  37764. image: {
  37765. source: "./media/characters/kass-lockheed/bleh.svg"
  37766. }
  37767. },
  37768. smug: {
  37769. height: math.unit(2.85, "feet"),
  37770. name: "Smug",
  37771. image: {
  37772. source: "./media/characters/kass-lockheed/smug.svg"
  37773. }
  37774. },
  37775. },
  37776. [
  37777. {
  37778. name: "Normal",
  37779. height: math.unit(12 + 6/12, "feet"),
  37780. default: true
  37781. },
  37782. ]
  37783. ))
  37784. characterMakers.push(() => makeCharacter(
  37785. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37786. {
  37787. front: {
  37788. height: math.unit(6 + 2/12, "feet"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/taylor/front.svg",
  37792. extra: 639/495,
  37793. bottom: 12/651
  37794. }
  37795. },
  37796. },
  37797. [
  37798. {
  37799. name: "Normal",
  37800. height: math.unit(6 + 2/12, "feet"),
  37801. default: true
  37802. },
  37803. {
  37804. name: "Big",
  37805. height: math.unit(15, "feet")
  37806. },
  37807. {
  37808. name: "Lorg",
  37809. height: math.unit(80, "feet")
  37810. },
  37811. {
  37812. name: "Too Lorg",
  37813. height: math.unit(120, "feet")
  37814. },
  37815. ]
  37816. ))
  37817. characterMakers.push(() => makeCharacter(
  37818. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37819. {
  37820. front: {
  37821. height: math.unit(15, "feet"),
  37822. name: "Front",
  37823. image: {
  37824. source: "./media/characters/kaizer/front.svg",
  37825. extra: 1612/1436,
  37826. bottom: 43/1655
  37827. }
  37828. },
  37829. },
  37830. [
  37831. {
  37832. name: "Normal",
  37833. height: math.unit(15, "feet"),
  37834. default: true
  37835. },
  37836. ]
  37837. ))
  37838. characterMakers.push(() => makeCharacter(
  37839. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37840. {
  37841. front: {
  37842. height: math.unit(2, "feet"),
  37843. weight: math.unit(30, "lb"),
  37844. name: "Front",
  37845. image: {
  37846. source: "./media/characters/sandy/front.svg",
  37847. extra: 1439/1307,
  37848. bottom: 194/1633
  37849. }
  37850. },
  37851. },
  37852. [
  37853. {
  37854. name: "Normal",
  37855. height: math.unit(2, "feet"),
  37856. default: true
  37857. },
  37858. ]
  37859. ))
  37860. characterMakers.push(() => makeCharacter(
  37861. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37862. {
  37863. front: {
  37864. height: math.unit(3, "feet"),
  37865. name: "Front",
  37866. image: {
  37867. source: "./media/characters/mellvi/front.svg",
  37868. extra: 1831/1630,
  37869. bottom: 58/1889
  37870. }
  37871. },
  37872. },
  37873. [
  37874. {
  37875. name: "Normal",
  37876. height: math.unit(3, "feet"),
  37877. default: true
  37878. },
  37879. ]
  37880. ))
  37881. characterMakers.push(() => makeCharacter(
  37882. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37883. {
  37884. front: {
  37885. height: math.unit(5 + 11/12, "feet"),
  37886. weight: math.unit(200, "lb"),
  37887. name: "Front",
  37888. image: {
  37889. source: "./media/characters/shirou/front.svg",
  37890. extra: 2491/2383,
  37891. bottom: 189/2680
  37892. }
  37893. },
  37894. back: {
  37895. height: math.unit(5 + 11/12, "feet"),
  37896. weight: math.unit(200, "lb"),
  37897. name: "Back",
  37898. image: {
  37899. source: "./media/characters/shirou/back.svg",
  37900. extra: 2554/2450,
  37901. bottom: 76/2630
  37902. }
  37903. },
  37904. },
  37905. [
  37906. {
  37907. name: "Normal",
  37908. height: math.unit(5 + 11/12, "feet"),
  37909. default: true
  37910. },
  37911. ]
  37912. ))
  37913. characterMakers.push(() => makeCharacter(
  37914. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  37915. {
  37916. front: {
  37917. height: math.unit(6 + 3/12, "feet"),
  37918. weight: math.unit(177, "lb"),
  37919. name: "Front",
  37920. image: {
  37921. source: "./media/characters/noryu/front.svg",
  37922. extra: 973/885,
  37923. bottom: 10/983
  37924. }
  37925. },
  37926. },
  37927. [
  37928. {
  37929. name: "Normal",
  37930. height: math.unit(6 + 3/12, "feet"),
  37931. default: true
  37932. },
  37933. ]
  37934. ))
  37935. characterMakers.push(() => makeCharacter(
  37936. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  37937. {
  37938. front: {
  37939. height: math.unit(5 + 6/12, "feet"),
  37940. weight: math.unit(170, "lb"),
  37941. name: "Front",
  37942. image: {
  37943. source: "./media/characters/mevolas-rubenido/front.svg",
  37944. extra: 2109/1901,
  37945. bottom: 96/2205
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(5 + 6/12, "feet"),
  37953. default: true
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  37959. {
  37960. front: {
  37961. height: math.unit(100, "feet"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/dee/front.svg",
  37965. extra: 2153/2036,
  37966. bottom: 59/2212
  37967. }
  37968. },
  37969. back: {
  37970. height: math.unit(100, "feet"),
  37971. name: "Back",
  37972. image: {
  37973. source: "./media/characters/dee/back.svg",
  37974. extra: 2183/2058,
  37975. bottom: 75/2258
  37976. }
  37977. },
  37978. foot: {
  37979. height: math.unit(19.43, "feet"),
  37980. name: "Foot",
  37981. image: {
  37982. source: "./media/characters/dee/foot.svg"
  37983. }
  37984. },
  37985. hoof: {
  37986. height: math.unit(20.6, "feet"),
  37987. name: "Hoof",
  37988. image: {
  37989. source: "./media/characters/dee/hoof.svg"
  37990. }
  37991. },
  37992. },
  37993. [
  37994. {
  37995. name: "Macro",
  37996. height: math.unit(100, "feet"),
  37997. default: true
  37998. },
  37999. ]
  38000. ))
  38001. characterMakers.push(() => makeCharacter(
  38002. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38003. {
  38004. front: {
  38005. height: math.unit(5 + 6/12, "feet"),
  38006. name: "Front",
  38007. image: {
  38008. source: "./media/characters/teh/front.svg",
  38009. extra: 1002/847,
  38010. bottom: 62/1064
  38011. }
  38012. },
  38013. },
  38014. [
  38015. {
  38016. name: "Normal",
  38017. height: math.unit(5 + 6/12, "feet"),
  38018. default: true
  38019. },
  38020. ]
  38021. ))
  38022. characterMakers.push(() => makeCharacter(
  38023. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38024. {
  38025. side: {
  38026. height: math.unit(6 + 1/12, "feet"),
  38027. weight: math.unit(204, "lb"),
  38028. name: "Side",
  38029. image: {
  38030. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38031. extra: 974/775,
  38032. bottom: 169/1143
  38033. }
  38034. },
  38035. sitting: {
  38036. height: math.unit(6 + 2/12, "feet"),
  38037. weight: math.unit(204, "lb"),
  38038. name: "Sitting",
  38039. image: {
  38040. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38041. extra: 1175/964,
  38042. bottom: 378/1553
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(6 + 1/12, "feet"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38056. {
  38057. front: {
  38058. height: math.unit(6, "inches"),
  38059. name: "Front",
  38060. image: {
  38061. source: "./media/characters/tululi/front.svg",
  38062. extra: 1997/1876,
  38063. bottom: 20/2017
  38064. }
  38065. },
  38066. },
  38067. [
  38068. {
  38069. name: "Normal",
  38070. height: math.unit(6, "inches"),
  38071. default: true
  38072. },
  38073. ]
  38074. ))
  38075. characterMakers.push(() => makeCharacter(
  38076. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38077. {
  38078. front: {
  38079. height: math.unit(4 + 1/12, "feet"),
  38080. name: "Front",
  38081. image: {
  38082. source: "./media/characters/star/front.svg",
  38083. extra: 1493/1189,
  38084. bottom: 48/1541
  38085. }
  38086. },
  38087. },
  38088. [
  38089. {
  38090. name: "Normal",
  38091. height: math.unit(4 + 1/12, "feet"),
  38092. default: true
  38093. },
  38094. ]
  38095. ))
  38096. characterMakers.push(() => makeCharacter(
  38097. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38098. {
  38099. front: {
  38100. height: math.unit(6 + 3/12, "feet"),
  38101. name: "Front",
  38102. image: {
  38103. source: "./media/characters/comet/front.svg",
  38104. extra: 1681/1462,
  38105. bottom: 26/1707
  38106. }
  38107. },
  38108. },
  38109. [
  38110. {
  38111. name: "Normal",
  38112. height: math.unit(6 + 3/12, "feet"),
  38113. default: true
  38114. },
  38115. ]
  38116. ))
  38117. characterMakers.push(() => makeCharacter(
  38118. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38119. {
  38120. front: {
  38121. height: math.unit(950, "feet"),
  38122. name: "Front",
  38123. image: {
  38124. source: "./media/characters/vortex/front.svg",
  38125. extra: 1497/1434,
  38126. bottom: 56/1553
  38127. }
  38128. },
  38129. maw: {
  38130. height: math.unit(285, "feet"),
  38131. name: "Maw",
  38132. image: {
  38133. source: "./media/characters/vortex/maw.svg"
  38134. }
  38135. },
  38136. },
  38137. [
  38138. {
  38139. name: "Macro",
  38140. height: math.unit(950, "feet"),
  38141. default: true
  38142. },
  38143. ]
  38144. ))
  38145. characterMakers.push(() => makeCharacter(
  38146. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38147. {
  38148. front: {
  38149. height: math.unit(600, "feet"),
  38150. weight: math.unit(0.02, "grams"),
  38151. name: "Front",
  38152. image: {
  38153. source: "./media/characters/doodle/front.svg",
  38154. extra: 1578/1413,
  38155. bottom: 37/1615
  38156. }
  38157. },
  38158. },
  38159. [
  38160. {
  38161. name: "Macro",
  38162. height: math.unit(600, "feet"),
  38163. default: true
  38164. },
  38165. ]
  38166. ))
  38167. characterMakers.push(() => makeCharacter(
  38168. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38169. {
  38170. front: {
  38171. height: math.unit(6 + 6/12, "feet"),
  38172. name: "Front",
  38173. image: {
  38174. source: "./media/characters/jai/front.svg",
  38175. extra: 1645/1534,
  38176. bottom: 115/1760
  38177. }
  38178. },
  38179. },
  38180. [
  38181. {
  38182. name: "Normal",
  38183. height: math.unit(6 + 6/12, "feet"),
  38184. default: true
  38185. },
  38186. ]
  38187. ))
  38188. characterMakers.push(() => makeCharacter(
  38189. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38190. {
  38191. front: {
  38192. height: math.unit(6 + 8/12, "feet"),
  38193. name: "Front",
  38194. image: {
  38195. source: "./media/characters/pixel/front.svg",
  38196. extra: 1900/1735,
  38197. bottom: 63/1963
  38198. }
  38199. },
  38200. },
  38201. [
  38202. {
  38203. name: "Normal",
  38204. height: math.unit(6 + 8/12, "feet"),
  38205. default: true
  38206. },
  38207. ]
  38208. ))
  38209. characterMakers.push(() => makeCharacter(
  38210. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38211. {
  38212. back: {
  38213. height: math.unit(4 + 1/12, "feet"),
  38214. weight: math.unit(75, "lb"),
  38215. name: "Back",
  38216. image: {
  38217. source: "./media/characters/rhett/back.svg",
  38218. extra: 930/878,
  38219. bottom: 25/955
  38220. }
  38221. },
  38222. front: {
  38223. height: math.unit(4 + 1/12, "feet"),
  38224. weight: math.unit(75, "lb"),
  38225. name: "Front",
  38226. image: {
  38227. source: "./media/characters/rhett/front.svg",
  38228. extra: 1682/1586,
  38229. bottom: 92/1774
  38230. }
  38231. },
  38232. },
  38233. [
  38234. {
  38235. name: "Micro",
  38236. height: math.unit(8, "inches")
  38237. },
  38238. {
  38239. name: "Tiny",
  38240. height: math.unit(2, "feet")
  38241. },
  38242. {
  38243. name: "Normal",
  38244. height: math.unit(4 + 1/12, "feet"),
  38245. default: true
  38246. },
  38247. ]
  38248. ))
  38249. characterMakers.push(() => makeCharacter(
  38250. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38251. {
  38252. front: {
  38253. height: math.unit(3 + 3/12, "feet"),
  38254. name: "Front",
  38255. image: {
  38256. source: "./media/characters/penny/front.svg",
  38257. extra: 1406/1311,
  38258. bottom: 26/1432
  38259. }
  38260. },
  38261. },
  38262. [
  38263. {
  38264. name: "Normal",
  38265. height: math.unit(3 + 3/12, "feet"),
  38266. default: true
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38272. {
  38273. front: {
  38274. height: math.unit(4 + 11/12, "feet"),
  38275. name: "Front",
  38276. image: {
  38277. source: "./media/characters/monty/front.svg",
  38278. extra: 1479/1209,
  38279. bottom: 0/1479
  38280. }
  38281. },
  38282. },
  38283. [
  38284. {
  38285. name: "Normal",
  38286. height: math.unit(4 + 11/12, "feet"),
  38287. default: true
  38288. },
  38289. ]
  38290. ))
  38291. characterMakers.push(() => makeCharacter(
  38292. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38293. {
  38294. front: {
  38295. height: math.unit(8 + 4/12, "feet"),
  38296. name: "Front",
  38297. image: {
  38298. source: "./media/characters/sterling/front.svg",
  38299. extra: 1420/1236,
  38300. bottom: 27/1447
  38301. }
  38302. },
  38303. },
  38304. [
  38305. {
  38306. name: "Normal",
  38307. height: math.unit(8 + 4/12, "feet"),
  38308. default: true
  38309. },
  38310. ]
  38311. ))
  38312. characterMakers.push(() => makeCharacter(
  38313. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38314. {
  38315. front: {
  38316. height: math.unit(15, "feet"),
  38317. name: "Front",
  38318. image: {
  38319. source: "./media/characters/marble/front.svg",
  38320. extra: 973/937,
  38321. bottom: 32/1005
  38322. }
  38323. },
  38324. },
  38325. [
  38326. {
  38327. name: "Normal",
  38328. height: math.unit(15, "feet"),
  38329. default: true
  38330. },
  38331. ]
  38332. ))
  38333. characterMakers.push(() => makeCharacter(
  38334. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38335. {
  38336. front: {
  38337. height: math.unit(3, "inches"),
  38338. name: "Front",
  38339. image: {
  38340. source: "./media/characters/powder/front.svg",
  38341. extra: 1504/1334,
  38342. bottom: 518/2022
  38343. }
  38344. },
  38345. },
  38346. [
  38347. {
  38348. name: "Normal",
  38349. height: math.unit(3, "inches"),
  38350. default: true
  38351. },
  38352. ]
  38353. ))
  38354. characterMakers.push(() => makeCharacter(
  38355. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38356. {
  38357. front: {
  38358. height: math.unit(4 + 5/12, "feet"),
  38359. name: "Front",
  38360. image: {
  38361. source: "./media/characters/joey-raccoon/front.svg",
  38362. extra: 1273/1197,
  38363. bottom: 0/1273
  38364. }
  38365. },
  38366. },
  38367. [
  38368. {
  38369. name: "Normal",
  38370. height: math.unit(4 + 5/12, "feet"),
  38371. default: true
  38372. },
  38373. ]
  38374. ))
  38375. characterMakers.push(() => makeCharacter(
  38376. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38377. {
  38378. front: {
  38379. height: math.unit(8 + 4/12, "feet"),
  38380. name: "Front",
  38381. image: {
  38382. source: "./media/characters/vick/front.svg",
  38383. extra: 2187/2118,
  38384. bottom: 47/2234
  38385. }
  38386. },
  38387. },
  38388. [
  38389. {
  38390. name: "Normal",
  38391. height: math.unit(8 + 4/12, "feet"),
  38392. default: true
  38393. },
  38394. ]
  38395. ))
  38396. characterMakers.push(() => makeCharacter(
  38397. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38398. {
  38399. front: {
  38400. height: math.unit(5 + 5/12, "feet"),
  38401. name: "Front",
  38402. image: {
  38403. source: "./media/characters/mitsy/front.svg",
  38404. extra: 1842/1695,
  38405. bottom: 0/1842
  38406. }
  38407. },
  38408. },
  38409. [
  38410. {
  38411. name: "Normal",
  38412. height: math.unit(5 + 5/12, "feet"),
  38413. default: true
  38414. },
  38415. ]
  38416. ))
  38417. characterMakers.push(() => makeCharacter(
  38418. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38419. {
  38420. front: {
  38421. height: math.unit(6 + 3/12, "feet"),
  38422. name: "Front",
  38423. image: {
  38424. source: "./media/characters/silvy/front.svg",
  38425. extra: 1995/1836,
  38426. bottom: 225/2220
  38427. }
  38428. },
  38429. },
  38430. [
  38431. {
  38432. name: "Normal",
  38433. height: math.unit(6 + 3/12, "feet"),
  38434. default: true
  38435. },
  38436. ]
  38437. ))
  38438. characterMakers.push(() => makeCharacter(
  38439. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38440. {
  38441. front: {
  38442. height: math.unit(3 + 8/12, "feet"),
  38443. name: "Front",
  38444. image: {
  38445. source: "./media/characters/rodney/front.svg",
  38446. extra: 1956/1747,
  38447. bottom: 31/1987
  38448. }
  38449. },
  38450. frontDressed: {
  38451. height: math.unit(2.9, "feet"),
  38452. name: "Front (Dressed)",
  38453. image: {
  38454. source: "./media/characters/rodney/front-dressed.svg",
  38455. extra: 1382/1241,
  38456. bottom: 385/1767
  38457. }
  38458. },
  38459. },
  38460. [
  38461. {
  38462. name: "Normal",
  38463. height: math.unit(3 + 8/12, "feet"),
  38464. default: true
  38465. },
  38466. ]
  38467. ))
  38468. characterMakers.push(() => makeCharacter(
  38469. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38470. {
  38471. front: {
  38472. height: math.unit(5 + 9/12, "feet"),
  38473. weight: math.unit(194, "lbs"),
  38474. name: "Front",
  38475. image: {
  38476. source: "./media/characters/zakail-sudekai/front.svg",
  38477. extra: 2696/2533,
  38478. bottom: 248/2944
  38479. }
  38480. },
  38481. maw: {
  38482. height: math.unit(1.35, "feet"),
  38483. name: "Maw",
  38484. image: {
  38485. source: "./media/characters/zakail-sudekai/maw.svg"
  38486. }
  38487. },
  38488. },
  38489. [
  38490. {
  38491. name: "Normal",
  38492. height: math.unit(5 + 9/12, "feet"),
  38493. default: true
  38494. },
  38495. ]
  38496. ))
  38497. characterMakers.push(() => makeCharacter(
  38498. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38499. {
  38500. front: {
  38501. height: math.unit(8 + 4/12, "feet"),
  38502. weight: math.unit(1200, "lb"),
  38503. name: "Front",
  38504. image: {
  38505. source: "./media/characters/eleanor/front.svg",
  38506. extra: 1226/1192,
  38507. bottom: 52/1278
  38508. }
  38509. },
  38510. back: {
  38511. height: math.unit(8 + 4/12, "feet"),
  38512. weight: math.unit(1200, "lb"),
  38513. name: "Back",
  38514. image: {
  38515. source: "./media/characters/eleanor/back.svg",
  38516. extra: 1242/1184,
  38517. bottom: 60/1302
  38518. }
  38519. },
  38520. head: {
  38521. height: math.unit(2.62, "feet"),
  38522. name: "Head",
  38523. image: {
  38524. source: "./media/characters/eleanor/head.svg"
  38525. }
  38526. },
  38527. },
  38528. [
  38529. {
  38530. name: "Normal",
  38531. height: math.unit(8 + 4/12, "feet"),
  38532. default: true
  38533. },
  38534. ]
  38535. ))
  38536. characterMakers.push(() => makeCharacter(
  38537. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38538. {
  38539. front: {
  38540. height: math.unit(8 + 4/12, "feet"),
  38541. weight: math.unit(750, "lb"),
  38542. name: "Front",
  38543. image: {
  38544. source: "./media/characters/tanya/front.svg",
  38545. extra: 1749/1615,
  38546. bottom: 33/1782
  38547. }
  38548. },
  38549. },
  38550. [
  38551. {
  38552. name: "Normal",
  38553. height: math.unit(8 + 4/12, "feet"),
  38554. default: true
  38555. },
  38556. ]
  38557. ))
  38558. characterMakers.push(() => makeCharacter(
  38559. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38560. {
  38561. front: {
  38562. height: math.unit(5, "feet"),
  38563. weight: math.unit(225, "lb"),
  38564. name: "Front",
  38565. image: {
  38566. source: "./media/characters/cindy/front.svg",
  38567. extra: 1320/1250,
  38568. bottom: 42/1362
  38569. }
  38570. },
  38571. frontDressed: {
  38572. height: math.unit(5, "feet"),
  38573. weight: math.unit(225, "lb"),
  38574. name: "Front (Dressed)",
  38575. image: {
  38576. source: "./media/characters/cindy/front-dressed.svg",
  38577. extra: 1320/1250,
  38578. bottom: 42/1362
  38579. }
  38580. },
  38581. back: {
  38582. height: math.unit(5, "feet"),
  38583. weight: math.unit(225, "lb"),
  38584. name: "Back",
  38585. image: {
  38586. source: "./media/characters/cindy/back.svg",
  38587. extra: 1384/1346,
  38588. bottom: 14/1398
  38589. }
  38590. },
  38591. },
  38592. [
  38593. {
  38594. name: "Normal",
  38595. height: math.unit(5, "feet"),
  38596. default: true
  38597. },
  38598. ]
  38599. ))
  38600. characterMakers.push(() => makeCharacter(
  38601. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38602. {
  38603. front: {
  38604. height: math.unit(6 + 9/12, "feet"),
  38605. weight: math.unit(440, "lb"),
  38606. name: "Front",
  38607. image: {
  38608. source: "./media/characters/wilbur-owen/front.svg",
  38609. extra: 1575/1448,
  38610. bottom: 72/1647
  38611. }
  38612. },
  38613. back: {
  38614. height: math.unit(6 + 9/12, "feet"),
  38615. weight: math.unit(440, "lb"),
  38616. name: "Back",
  38617. image: {
  38618. source: "./media/characters/wilbur-owen/back.svg",
  38619. extra: 1578/1445,
  38620. bottom: 36/1614
  38621. }
  38622. },
  38623. },
  38624. [
  38625. {
  38626. name: "Normal",
  38627. height: math.unit(6 + 9/12, "feet"),
  38628. default: true
  38629. },
  38630. ]
  38631. ))
  38632. characterMakers.push(() => makeCharacter(
  38633. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38634. {
  38635. front: {
  38636. height: math.unit(6 + 5/12, "feet"),
  38637. weight: math.unit(650, "lb"),
  38638. name: "Front",
  38639. image: {
  38640. source: "./media/characters/keegan/front.svg",
  38641. extra: 2387/2198,
  38642. bottom: 33/2420
  38643. }
  38644. },
  38645. side: {
  38646. height: math.unit(6 + 5/12, "feet"),
  38647. weight: math.unit(650, "lb"),
  38648. name: "Side",
  38649. image: {
  38650. source: "./media/characters/keegan/side.svg",
  38651. extra: 2390/2202,
  38652. bottom: 47/2437
  38653. }
  38654. },
  38655. back: {
  38656. height: math.unit(6 + 5/12, "feet"),
  38657. weight: math.unit(650, "lb"),
  38658. name: "Back",
  38659. image: {
  38660. source: "./media/characters/keegan/back.svg",
  38661. extra: 2418/2268,
  38662. bottom: 15/2433
  38663. }
  38664. },
  38665. frontSfw: {
  38666. height: math.unit(6 + 5/12, "feet"),
  38667. weight: math.unit(650, "lb"),
  38668. name: "Front (SFW)",
  38669. image: {
  38670. source: "./media/characters/keegan/front-sfw.svg",
  38671. extra: 2387/2198,
  38672. bottom: 33/2420
  38673. }
  38674. },
  38675. beans: {
  38676. height: math.unit(1.85, "feet"),
  38677. name: "Beans",
  38678. image: {
  38679. source: "./media/characters/keegan/beans.svg"
  38680. }
  38681. },
  38682. },
  38683. [
  38684. {
  38685. name: "Normal",
  38686. height: math.unit(6 + 5/12, "feet"),
  38687. default: true
  38688. },
  38689. ]
  38690. ))
  38691. characterMakers.push(() => makeCharacter(
  38692. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38693. {
  38694. front: {
  38695. height: math.unit(9, "feet"),
  38696. name: "Front",
  38697. image: {
  38698. source: "./media/characters/colton/front.svg",
  38699. extra: 1589/1326,
  38700. bottom: 139/1728
  38701. }
  38702. },
  38703. },
  38704. [
  38705. {
  38706. name: "Normal",
  38707. height: math.unit(9, "feet"),
  38708. default: true
  38709. },
  38710. ]
  38711. ))
  38712. characterMakers.push(() => makeCharacter(
  38713. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38714. {
  38715. front: {
  38716. height: math.unit(2 + 9/12, "feet"),
  38717. name: "Front",
  38718. image: {
  38719. source: "./media/characters/bora/front.svg",
  38720. extra: 1265/1250,
  38721. bottom: 24/1289
  38722. }
  38723. },
  38724. },
  38725. [
  38726. {
  38727. name: "Normal",
  38728. height: math.unit(2 + 9/12, "feet"),
  38729. default: true
  38730. },
  38731. ]
  38732. ))
  38733. characterMakers.push(() => makeCharacter(
  38734. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38735. {
  38736. front: {
  38737. height: math.unit(8, "feet"),
  38738. name: "Front",
  38739. image: {
  38740. source: "./media/characters/myu-myu/front.svg",
  38741. extra: 1949/1857,
  38742. bottom: 90/2039
  38743. }
  38744. },
  38745. },
  38746. [
  38747. {
  38748. name: "Normal",
  38749. height: math.unit(8, "feet"),
  38750. default: true
  38751. },
  38752. {
  38753. name: "Big",
  38754. height: math.unit(15, "feet")
  38755. },
  38756. {
  38757. name: "BIG",
  38758. height: math.unit(25, "feet")
  38759. },
  38760. ]
  38761. ))
  38762. characterMakers.push(() => makeCharacter(
  38763. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38764. {
  38765. side: {
  38766. height: math.unit(7 + 5/12, "feet"),
  38767. weight: math.unit(2800, "lb"),
  38768. name: "Side",
  38769. image: {
  38770. source: "./media/characters/haloren/side.svg",
  38771. extra: 1793/409,
  38772. bottom: 59/1852
  38773. }
  38774. },
  38775. frontPaw: {
  38776. height: math.unit(2.36, "feet"),
  38777. name: "Front paw",
  38778. image: {
  38779. source: "./media/characters/haloren/front-paw.svg"
  38780. }
  38781. },
  38782. hindPaw: {
  38783. height: math.unit(3.18, "feet"),
  38784. name: "Hind paw",
  38785. image: {
  38786. source: "./media/characters/haloren/hind-paw.svg"
  38787. }
  38788. },
  38789. maw: {
  38790. height: math.unit(5.05, "feet"),
  38791. name: "Maw",
  38792. image: {
  38793. source: "./media/characters/haloren/maw.svg"
  38794. }
  38795. },
  38796. dick: {
  38797. height: math.unit(2.90, "feet"),
  38798. name: "Dick",
  38799. image: {
  38800. source: "./media/characters/haloren/dick.svg"
  38801. }
  38802. },
  38803. },
  38804. [
  38805. {
  38806. name: "Normal",
  38807. height: math.unit(7 + 5/12, "feet"),
  38808. default: true
  38809. },
  38810. {
  38811. name: "Enhanced",
  38812. height: math.unit(14 + 3/12, "feet")
  38813. },
  38814. ]
  38815. ))
  38816. characterMakers.push(() => makeCharacter(
  38817. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38818. {
  38819. front: {
  38820. height: math.unit(171, "cm"),
  38821. name: "Front",
  38822. image: {
  38823. source: "./media/characters/kimmy/front.svg",
  38824. extra: 1491/1435,
  38825. bottom: 53/1544
  38826. }
  38827. },
  38828. },
  38829. [
  38830. {
  38831. name: "Small",
  38832. height: math.unit(9, "cm")
  38833. },
  38834. {
  38835. name: "Normal",
  38836. height: math.unit(171, "cm"),
  38837. default: true
  38838. },
  38839. ]
  38840. ))
  38841. characterMakers.push(() => makeCharacter(
  38842. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38843. {
  38844. front: {
  38845. height: math.unit(8, "feet"),
  38846. weight: math.unit(300, "lb"),
  38847. name: "Front",
  38848. image: {
  38849. source: "./media/characters/galeboomer/front.svg",
  38850. extra: 4651/4415,
  38851. bottom: 162/4813
  38852. }
  38853. },
  38854. back: {
  38855. height: math.unit(8, "feet"),
  38856. weight: math.unit(300, "lb"),
  38857. name: "Back",
  38858. image: {
  38859. source: "./media/characters/galeboomer/back.svg",
  38860. extra: 4544/4314,
  38861. bottom: 16/4560
  38862. }
  38863. },
  38864. frontAlt: {
  38865. height: math.unit(8, "feet"),
  38866. weight: math.unit(300, "lb"),
  38867. name: "Front (Alt)",
  38868. image: {
  38869. source: "./media/characters/galeboomer/front-alt.svg",
  38870. extra: 4458/4228,
  38871. bottom: 68/4526
  38872. }
  38873. },
  38874. maw: {
  38875. height: math.unit(1.2, "feet"),
  38876. name: "Maw",
  38877. image: {
  38878. source: "./media/characters/galeboomer/maw.svg"
  38879. }
  38880. },
  38881. },
  38882. [
  38883. {
  38884. name: "Normal",
  38885. height: math.unit(8, "feet"),
  38886. default: true
  38887. },
  38888. ]
  38889. ))
  38890. characterMakers.push(() => makeCharacter(
  38891. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  38892. {
  38893. front: {
  38894. height: math.unit(5 + 9/12, "feet"),
  38895. weight: math.unit(120, "lb"),
  38896. name: "Front",
  38897. image: {
  38898. source: "./media/characters/chyr/front.svg",
  38899. extra: 1323/1254,
  38900. bottom: 63/1386
  38901. }
  38902. },
  38903. back: {
  38904. height: math.unit(5 + 9/12, "feet"),
  38905. weight: math.unit(120, "lb"),
  38906. name: "Back",
  38907. image: {
  38908. source: "./media/characters/chyr/back.svg",
  38909. extra: 1323/1252,
  38910. bottom: 48/1371
  38911. }
  38912. },
  38913. },
  38914. [
  38915. {
  38916. name: "Normal",
  38917. height: math.unit(5 + 9/12, "feet"),
  38918. default: true
  38919. },
  38920. ]
  38921. ))
  38922. characterMakers.push(() => makeCharacter(
  38923. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  38924. {
  38925. front: {
  38926. height: math.unit(7, "feet"),
  38927. weight: math.unit(310, "lb"),
  38928. name: "Front",
  38929. image: {
  38930. source: "./media/characters/solarus/front.svg",
  38931. extra: 2415/2021,
  38932. bottom: 103/2518
  38933. }
  38934. },
  38935. back: {
  38936. height: math.unit(7, "feet"),
  38937. weight: math.unit(310, "lb"),
  38938. name: "Back",
  38939. image: {
  38940. source: "./media/characters/solarus/back.svg",
  38941. extra: 2463/2089,
  38942. bottom: 79/2542
  38943. }
  38944. },
  38945. },
  38946. [
  38947. {
  38948. name: "Normal",
  38949. height: math.unit(7, "feet"),
  38950. default: true
  38951. },
  38952. ]
  38953. ))
  38954. characterMakers.push(() => makeCharacter(
  38955. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  38956. {
  38957. front: {
  38958. height: math.unit(16, "feet"),
  38959. name: "Front",
  38960. image: {
  38961. source: "./media/characters/mutsuju-koizaemon/front.svg",
  38962. extra: 1844/1780,
  38963. bottom: 58/1902
  38964. }
  38965. },
  38966. winterCoat: {
  38967. height: math.unit(16, "feet"),
  38968. name: "Winter Coat",
  38969. image: {
  38970. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  38971. extra: 1807/1775,
  38972. bottom: 69/1876
  38973. }
  38974. },
  38975. },
  38976. [
  38977. {
  38978. name: "Normal",
  38979. height: math.unit(16, "feet"),
  38980. default: true
  38981. },
  38982. {
  38983. name: "Chicago Size",
  38984. height: math.unit(560, "feet")
  38985. },
  38986. ]
  38987. ))
  38988. characterMakers.push(() => makeCharacter(
  38989. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  38990. {
  38991. front: {
  38992. height: math.unit(11 + 6/12, "feet"),
  38993. weight: math.unit(1366, "lb"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/lexor/front.svg",
  38997. extra: 1560/1481,
  38998. bottom: 211/1771
  38999. }
  39000. },
  39001. back: {
  39002. height: math.unit(11 + 6/12, "feet"),
  39003. weight: math.unit(1366, "lb"),
  39004. name: "Back",
  39005. image: {
  39006. source: "./media/characters/lexor/back.svg",
  39007. extra: 1614/1533,
  39008. bottom: 76/1690
  39009. }
  39010. },
  39011. maw: {
  39012. height: math.unit(3, "feet"),
  39013. name: "Maw",
  39014. image: {
  39015. source: "./media/characters/lexor/maw.svg"
  39016. }
  39017. },
  39018. dick: {
  39019. height: math.unit(2.59, "feet"),
  39020. name: "Dick",
  39021. image: {
  39022. source: "./media/characters/lexor/dick.svg"
  39023. }
  39024. },
  39025. },
  39026. [
  39027. {
  39028. name: "Normal",
  39029. height: math.unit(11 + 6/12, "feet"),
  39030. default: true
  39031. },
  39032. ]
  39033. ))
  39034. characterMakers.push(() => makeCharacter(
  39035. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39036. {
  39037. front: {
  39038. height: math.unit(5 + 8/12, "feet"),
  39039. name: "Front",
  39040. image: {
  39041. source: "./media/characters/magnum/front.svg",
  39042. extra: 942/855,
  39043. bottom: 26/968
  39044. }
  39045. },
  39046. },
  39047. [
  39048. {
  39049. name: "Normal",
  39050. height: math.unit(5 + 8/12, "feet"),
  39051. default: true
  39052. },
  39053. ]
  39054. ))
  39055. characterMakers.push(() => makeCharacter(
  39056. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39057. {
  39058. front: {
  39059. height: math.unit(18 + 4/12, "feet"),
  39060. weight: math.unit(1500, "kg"),
  39061. name: "Front",
  39062. image: {
  39063. source: "./media/characters/solas-sharpsman/front.svg",
  39064. extra: 1698/1589,
  39065. bottom: 0/1698
  39066. }
  39067. },
  39068. },
  39069. [
  39070. {
  39071. name: "Normal",
  39072. height: math.unit(18 + 4/12, "feet"),
  39073. default: true
  39074. },
  39075. ]
  39076. ))
  39077. characterMakers.push(() => makeCharacter(
  39078. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39079. {
  39080. front: {
  39081. height: math.unit(5 + 5/12, "feet"),
  39082. weight: math.unit(180, "lb"),
  39083. name: "Front",
  39084. image: {
  39085. source: "./media/characters/october/front.svg",
  39086. extra: 1800/1650,
  39087. bottom: 0/1800
  39088. }
  39089. },
  39090. frontNsfw: {
  39091. height: math.unit(5 + 5/12, "feet"),
  39092. weight: math.unit(180, "lb"),
  39093. name: "Front (NSFW)",
  39094. image: {
  39095. source: "./media/characters/october/front-nsfw.svg",
  39096. extra: 1392/1307,
  39097. bottom: 42/1434
  39098. }
  39099. },
  39100. },
  39101. [
  39102. {
  39103. name: "Normal",
  39104. height: math.unit(5 + 5/12, "feet"),
  39105. default: true
  39106. },
  39107. ]
  39108. ))
  39109. characterMakers.push(() => makeCharacter(
  39110. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39111. {
  39112. front: {
  39113. height: math.unit(8 + 6/12, "feet"),
  39114. name: "Front",
  39115. image: {
  39116. source: "./media/characters/essynkardi/front.svg",
  39117. extra: 1541/1457,
  39118. bottom: 47/1588
  39119. }
  39120. },
  39121. },
  39122. [
  39123. {
  39124. name: "Normal",
  39125. height: math.unit(8 + 6/12, "feet"),
  39126. default: true
  39127. },
  39128. ]
  39129. ))
  39130. characterMakers.push(() => makeCharacter(
  39131. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39132. {
  39133. front: {
  39134. height: math.unit(6 + 6/12, "feet"),
  39135. weight: math.unit(7, "lb"),
  39136. name: "Front",
  39137. image: {
  39138. source: "./media/characters/icky/front.svg",
  39139. extra: 813/782,
  39140. bottom: 66/879
  39141. }
  39142. },
  39143. back: {
  39144. height: math.unit(6 + 6/12, "feet"),
  39145. weight: math.unit(7, "lb"),
  39146. name: "Back",
  39147. image: {
  39148. source: "./media/characters/icky/back.svg",
  39149. extra: 754/735,
  39150. bottom: 56/810
  39151. }
  39152. },
  39153. },
  39154. [
  39155. {
  39156. name: "Normal",
  39157. height: math.unit(6 + 6/12, "feet"),
  39158. default: true
  39159. },
  39160. ]
  39161. ))
  39162. characterMakers.push(() => makeCharacter(
  39163. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39164. {
  39165. front: {
  39166. height: math.unit(15, "feet"),
  39167. name: "Front",
  39168. image: {
  39169. source: "./media/characters/rojas/front.svg",
  39170. extra: 1462/1408,
  39171. bottom: 95/1557
  39172. }
  39173. },
  39174. back: {
  39175. height: math.unit(15, "feet"),
  39176. name: "Back",
  39177. image: {
  39178. source: "./media/characters/rojas/back.svg",
  39179. extra: 1023/954,
  39180. bottom: 28/1051
  39181. }
  39182. },
  39183. },
  39184. [
  39185. {
  39186. name: "Normal",
  39187. height: math.unit(15, "feet"),
  39188. default: true
  39189. },
  39190. ]
  39191. ))
  39192. characterMakers.push(() => makeCharacter(
  39193. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39194. {
  39195. frontHuman: {
  39196. height: math.unit(5 + 7/12, "feet"),
  39197. name: "Front (Human)",
  39198. image: {
  39199. source: "./media/characters/alek-dryagan/front-human.svg",
  39200. extra: 1687/1667,
  39201. bottom: 69/1756
  39202. }
  39203. },
  39204. backHuman: {
  39205. height: math.unit(5 + 7/12, "feet"),
  39206. name: "Back (Human)",
  39207. image: {
  39208. source: "./media/characters/alek-dryagan/back-human.svg",
  39209. extra: 1670/1649,
  39210. bottom: 65/1735
  39211. }
  39212. },
  39213. frontDemi: {
  39214. height: math.unit(65, "feet"),
  39215. name: "Front (Demi)",
  39216. image: {
  39217. source: "./media/characters/alek-dryagan/front-demi.svg",
  39218. extra: 1669/1642,
  39219. bottom: 49/1718
  39220. }
  39221. },
  39222. backDemi: {
  39223. height: math.unit(65, "feet"),
  39224. name: "Back (Demi)",
  39225. image: {
  39226. source: "./media/characters/alek-dryagan/back-demi.svg",
  39227. extra: 1658/1637,
  39228. bottom: 40/1698
  39229. }
  39230. },
  39231. mawHuman: {
  39232. height: math.unit(0.3, "feet"),
  39233. name: "Maw (Human)",
  39234. image: {
  39235. source: "./media/characters/alek-dryagan/maw-human.svg"
  39236. }
  39237. },
  39238. mawDemi: {
  39239. height: math.unit(3.8, "feet"),
  39240. name: "Maw (Demi)",
  39241. image: {
  39242. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39243. }
  39244. },
  39245. },
  39246. [
  39247. {
  39248. name: "Normal",
  39249. height: math.unit(5 + 7/12, "feet"),
  39250. default: true
  39251. },
  39252. ]
  39253. ))
  39254. characterMakers.push(() => makeCharacter(
  39255. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39256. {
  39257. frontHuman: {
  39258. height: math.unit(5 + 2/12, "feet"),
  39259. name: "Front (Human)",
  39260. image: {
  39261. source: "./media/characters/gen/front-human.svg",
  39262. extra: 1627/1538,
  39263. bottom: 71/1698
  39264. }
  39265. },
  39266. backHuman: {
  39267. height: math.unit(5 + 2/12, "feet"),
  39268. name: "Back (Human)",
  39269. image: {
  39270. source: "./media/characters/gen/back-human.svg",
  39271. extra: 1638/1548,
  39272. bottom: 69/1707
  39273. }
  39274. },
  39275. frontDemi: {
  39276. height: math.unit(5 + 2/12, "feet"),
  39277. name: "Front (Demi)",
  39278. image: {
  39279. source: "./media/characters/gen/front-demi.svg",
  39280. extra: 1627/1538,
  39281. bottom: 71/1698
  39282. }
  39283. },
  39284. backDemi: {
  39285. height: math.unit(5 + 2/12, "feet"),
  39286. name: "Back (Demi)",
  39287. image: {
  39288. source: "./media/characters/gen/back-demi.svg",
  39289. extra: 1638/1548,
  39290. bottom: 69/1707
  39291. }
  39292. },
  39293. },
  39294. [
  39295. {
  39296. name: "Normal",
  39297. height: math.unit(5 + 2/12, "feet"),
  39298. default: true
  39299. },
  39300. ]
  39301. ))
  39302. characterMakers.push(() => makeCharacter(
  39303. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39304. {
  39305. frontImp: {
  39306. height: math.unit(1 + 11/12, "feet"),
  39307. name: "Front (Imp)",
  39308. image: {
  39309. source: "./media/characters/max-kobold/front-imp.svg",
  39310. extra: 1238/1134,
  39311. bottom: 81/1319
  39312. }
  39313. },
  39314. backImp: {
  39315. height: math.unit(1 + 11/12, "feet"),
  39316. name: "Back (Imp)",
  39317. image: {
  39318. source: "./media/characters/max-kobold/back-imp.svg",
  39319. extra: 1334/1175,
  39320. bottom: 34/1368
  39321. }
  39322. },
  39323. frontDemi: {
  39324. height: math.unit(5 + 9/12, "feet"),
  39325. name: "Front (Demi)",
  39326. image: {
  39327. source: "./media/characters/max-kobold/front-demi.svg",
  39328. extra: 1715/1685,
  39329. bottom: 54/1769
  39330. }
  39331. },
  39332. backDemi: {
  39333. height: math.unit(5 + 9/12, "feet"),
  39334. name: "Back (Demi)",
  39335. image: {
  39336. source: "./media/characters/max-kobold/back-demi.svg",
  39337. extra: 1752/1729,
  39338. bottom: 41/1793
  39339. }
  39340. },
  39341. handImp: {
  39342. height: math.unit(0.45, "feet"),
  39343. name: "Hand (Imp)",
  39344. image: {
  39345. source: "./media/characters/max-kobold/hand.svg"
  39346. }
  39347. },
  39348. pawImp: {
  39349. height: math.unit(0.46, "feet"),
  39350. name: "Paw (Imp)",
  39351. image: {
  39352. source: "./media/characters/max-kobold/paw.svg"
  39353. }
  39354. },
  39355. handDemi: {
  39356. height: math.unit(0.80, "feet"),
  39357. name: "Hand (Demi)",
  39358. image: {
  39359. source: "./media/characters/max-kobold/hand.svg"
  39360. }
  39361. },
  39362. pawDemi: {
  39363. height: math.unit(1.1, "feet"),
  39364. name: "Paw (Demi)",
  39365. image: {
  39366. source: "./media/characters/max-kobold/paw.svg"
  39367. }
  39368. },
  39369. headImp: {
  39370. height: math.unit(1.33, "feet"),
  39371. name: "Head (Imp)",
  39372. image: {
  39373. source: "./media/characters/max-kobold/head-imp.svg"
  39374. }
  39375. },
  39376. mawImp: {
  39377. height: math.unit(0.75, "feet"),
  39378. name: "Maw (Imp)",
  39379. image: {
  39380. source: "./media/characters/max-kobold/maw-imp.svg"
  39381. }
  39382. },
  39383. mawDemi: {
  39384. height: math.unit(0.42, "feet"),
  39385. name: "Maw (Demi)",
  39386. image: {
  39387. source: "./media/characters/max-kobold/maw-demi.svg"
  39388. }
  39389. },
  39390. },
  39391. [
  39392. {
  39393. name: "Normal",
  39394. height: math.unit(1 + 11/12, "feet"),
  39395. default: true
  39396. },
  39397. ]
  39398. ))
  39399. characterMakers.push(() => makeCharacter(
  39400. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39401. {
  39402. front: {
  39403. height: math.unit(7 + 5/12, "feet"),
  39404. name: "Front",
  39405. image: {
  39406. source: "./media/characters/carbon/front.svg",
  39407. extra: 1754/1689,
  39408. bottom: 65/1819
  39409. }
  39410. },
  39411. back: {
  39412. height: math.unit(7 + 5/12, "feet"),
  39413. name: "Back",
  39414. image: {
  39415. source: "./media/characters/carbon/back.svg",
  39416. extra: 1762/1695,
  39417. bottom: 24/1786
  39418. }
  39419. },
  39420. frontGigantamax: {
  39421. height: math.unit(150, "feet"),
  39422. name: "Front (Gigantamax)",
  39423. image: {
  39424. source: "./media/characters/carbon/front-gigantamax.svg",
  39425. extra: 1826/1669,
  39426. bottom: 59/1885
  39427. }
  39428. },
  39429. backGigantamax: {
  39430. height: math.unit(150, "feet"),
  39431. name: "Back (Gigantamax)",
  39432. image: {
  39433. source: "./media/characters/carbon/back-gigantamax.svg",
  39434. extra: 1796/1653,
  39435. bottom: 53/1849
  39436. }
  39437. },
  39438. maw: {
  39439. height: math.unit(0.48, "feet"),
  39440. name: "Maw",
  39441. image: {
  39442. source: "./media/characters/carbon/maw.svg"
  39443. }
  39444. },
  39445. mawGigantamax: {
  39446. height: math.unit(7.5, "feet"),
  39447. name: "Maw (Gigantamax)",
  39448. image: {
  39449. source: "./media/characters/carbon/maw-gigantamax.svg"
  39450. }
  39451. },
  39452. },
  39453. [
  39454. {
  39455. name: "Normal",
  39456. height: math.unit(7 + 5/12, "feet"),
  39457. default: true
  39458. },
  39459. ]
  39460. ))
  39461. characterMakers.push(() => makeCharacter(
  39462. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39463. {
  39464. front: {
  39465. height: math.unit(6, "feet"),
  39466. name: "Front",
  39467. image: {
  39468. source: "./media/characters/maverick/front.svg",
  39469. extra: 1672/1661,
  39470. bottom: 85/1757
  39471. }
  39472. },
  39473. back: {
  39474. height: math.unit(6, "feet"),
  39475. name: "Back",
  39476. image: {
  39477. source: "./media/characters/maverick/back.svg",
  39478. extra: 1642/1631,
  39479. bottom: 38/1680
  39480. }
  39481. },
  39482. },
  39483. [
  39484. {
  39485. name: "Normal",
  39486. height: math.unit(6, "feet"),
  39487. default: true
  39488. },
  39489. ]
  39490. ))
  39491. characterMakers.push(() => makeCharacter(
  39492. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39493. {
  39494. front: {
  39495. height: math.unit(15, "feet"),
  39496. weight: math.unit(615, "lb"),
  39497. name: "Front",
  39498. image: {
  39499. source: "./media/characters/grockle/front.svg",
  39500. extra: 1535/1427,
  39501. bottom: 56/1591
  39502. }
  39503. },
  39504. },
  39505. [
  39506. {
  39507. name: "Normal",
  39508. height: math.unit(15, "feet"),
  39509. default: true
  39510. },
  39511. {
  39512. name: "Large",
  39513. height: math.unit(150, "feet")
  39514. },
  39515. {
  39516. name: "Macro",
  39517. height: math.unit(1876, "feet")
  39518. },
  39519. {
  39520. name: "Mega Macro",
  39521. height: math.unit(121940, "feet")
  39522. },
  39523. {
  39524. name: "Giga Macro",
  39525. height: math.unit(750, "km")
  39526. },
  39527. {
  39528. name: "Tera Macro",
  39529. height: math.unit(750000, "km")
  39530. },
  39531. {
  39532. name: "Galactic",
  39533. height: math.unit(1.4e5, "km")
  39534. },
  39535. {
  39536. name: "Godlike",
  39537. height: math.unit(9.8e280, "galaxies")
  39538. },
  39539. ]
  39540. ))
  39541. characterMakers.push(() => makeCharacter(
  39542. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39543. {
  39544. front: {
  39545. height: math.unit(11, "meters"),
  39546. weight: math.unit(20, "tonnes"),
  39547. name: "Front",
  39548. image: {
  39549. source: "./media/characters/alistair/front.svg",
  39550. extra: 1265/1009,
  39551. bottom: 93/1358
  39552. }
  39553. },
  39554. },
  39555. [
  39556. {
  39557. name: "Normal",
  39558. height: math.unit(11, "meters"),
  39559. default: true
  39560. },
  39561. ]
  39562. ))
  39563. characterMakers.push(() => makeCharacter(
  39564. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39565. {
  39566. front: {
  39567. height: math.unit(5 + 8/12, "feet"),
  39568. name: "Front",
  39569. image: {
  39570. source: "./media/characters/haruka/front.svg",
  39571. extra: 2012/1952,
  39572. bottom: 0/2012
  39573. }
  39574. },
  39575. },
  39576. [
  39577. {
  39578. name: "Normal",
  39579. height: math.unit(5 + 8/12, "feet"),
  39580. default: true
  39581. },
  39582. ]
  39583. ))
  39584. characterMakers.push(() => makeCharacter(
  39585. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39586. {
  39587. back: {
  39588. height: math.unit(9, "feet"),
  39589. name: "Back",
  39590. image: {
  39591. source: "./media/characters/vivian-sylveon/back.svg",
  39592. extra: 1853/1714,
  39593. bottom: 0/1853
  39594. }
  39595. },
  39596. },
  39597. [
  39598. {
  39599. name: "Normal",
  39600. height: math.unit(9, "feet"),
  39601. default: true
  39602. },
  39603. {
  39604. name: "Macro",
  39605. height: math.unit(500, "feet")
  39606. },
  39607. {
  39608. name: "Megamacro",
  39609. height: math.unit(600, "miles")
  39610. },
  39611. {
  39612. name: "Gigamacro",
  39613. height: math.unit(30000, "miles")
  39614. },
  39615. ]
  39616. ))
  39617. characterMakers.push(() => makeCharacter(
  39618. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39619. {
  39620. anthro: {
  39621. height: math.unit(5 + 10/12, "feet"),
  39622. weight: math.unit(100, "lb"),
  39623. name: "Anthro",
  39624. image: {
  39625. source: "./media/characters/daiki/anthro.svg",
  39626. extra: 1115/1027,
  39627. bottom: 69/1184
  39628. }
  39629. },
  39630. feral: {
  39631. height: math.unit(200, "feet"),
  39632. name: "Feral",
  39633. image: {
  39634. source: "./media/characters/daiki/feral.svg",
  39635. extra: 1256/313,
  39636. bottom: 39/1295
  39637. }
  39638. },
  39639. feralHead: {
  39640. height: math.unit(171, "feet"),
  39641. name: "Feral Head",
  39642. image: {
  39643. source: "./media/characters/daiki/feral-head.svg"
  39644. }
  39645. },
  39646. manaDragon: {
  39647. height: math.unit(170, "meters"),
  39648. name: "Mana-dragon",
  39649. image: {
  39650. source: "./media/characters/daiki/mana-dragon.svg",
  39651. extra: 763/420,
  39652. bottom: 97/860
  39653. }
  39654. },
  39655. },
  39656. [
  39657. {
  39658. name: "Normal",
  39659. height: math.unit(5 + 10/12, "feet"),
  39660. default: true
  39661. },
  39662. ]
  39663. ))
  39664. characterMakers.push(() => makeCharacter(
  39665. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39666. {
  39667. fullyEquippedFront: {
  39668. height: math.unit(3 + 1/12, "feet"),
  39669. weight: math.unit(24, "lb"),
  39670. name: "Fully Equipped (Front)",
  39671. image: {
  39672. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39673. extra: 687/605,
  39674. bottom: 18/705
  39675. }
  39676. },
  39677. fullyEquippedBack: {
  39678. height: math.unit(3 + 1/12, "feet"),
  39679. weight: math.unit(24, "lb"),
  39680. name: "Fully Equipped (Back)",
  39681. image: {
  39682. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39683. extra: 689/590,
  39684. bottom: 18/707
  39685. }
  39686. },
  39687. dailyWear: {
  39688. height: math.unit(3 + 1/12, "feet"),
  39689. weight: math.unit(24, "lb"),
  39690. name: "Daily Wear",
  39691. image: {
  39692. source: "./media/characters/tea-spot/daily-wear.svg",
  39693. extra: 701/620,
  39694. bottom: 21/722
  39695. }
  39696. },
  39697. maidWork: {
  39698. height: math.unit(3 + 1/12, "feet"),
  39699. weight: math.unit(24, "lb"),
  39700. name: "Maid Work",
  39701. image: {
  39702. source: "./media/characters/tea-spot/maid-work.svg",
  39703. extra: 693/609,
  39704. bottom: 15/708
  39705. }
  39706. },
  39707. },
  39708. [
  39709. {
  39710. name: "Normal",
  39711. height: math.unit(3 + 1/12, "feet"),
  39712. default: true
  39713. },
  39714. ]
  39715. ))
  39716. characterMakers.push(() => makeCharacter(
  39717. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39718. {
  39719. front: {
  39720. height: math.unit(175, "cm"),
  39721. weight: math.unit(75, "kg"),
  39722. name: "Front",
  39723. image: {
  39724. source: "./media/characters/chee/front.svg",
  39725. extra: 1796/1740,
  39726. bottom: 40/1836
  39727. }
  39728. },
  39729. },
  39730. [
  39731. {
  39732. name: "Micro-Micro",
  39733. height: math.unit(1, "nm")
  39734. },
  39735. {
  39736. name: "Micro-erst",
  39737. height: math.unit(1, "micrometer")
  39738. },
  39739. {
  39740. name: "Micro-er",
  39741. height: math.unit(1, "cm")
  39742. },
  39743. {
  39744. name: "Normal",
  39745. height: math.unit(175, "cm"),
  39746. default: true
  39747. },
  39748. {
  39749. name: "Macro",
  39750. height: math.unit(100, "m")
  39751. },
  39752. {
  39753. name: "Macro-er",
  39754. height: math.unit(1, "km")
  39755. },
  39756. {
  39757. name: "Macro-erst",
  39758. height: math.unit(10, "km")
  39759. },
  39760. {
  39761. name: "Macro-Macro",
  39762. height: math.unit(100, "km")
  39763. },
  39764. ]
  39765. ))
  39766. characterMakers.push(() => makeCharacter(
  39767. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39768. {
  39769. front: {
  39770. height: math.unit(11 + 9/12, "feet"),
  39771. weight: math.unit(935, "lb"),
  39772. name: "Front",
  39773. image: {
  39774. source: "./media/characters/kingsley/front.svg",
  39775. extra: 1803/1674,
  39776. bottom: 127/1930
  39777. }
  39778. },
  39779. frontNude: {
  39780. height: math.unit(11 + 9/12, "feet"),
  39781. weight: math.unit(935, "lb"),
  39782. name: "Front (Nude)",
  39783. image: {
  39784. source: "./media/characters/kingsley/front-nude.svg",
  39785. extra: 1803/1674,
  39786. bottom: 127/1930
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Normal",
  39793. height: math.unit(11 + 9/12, "feet"),
  39794. default: true
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39800. {
  39801. side: {
  39802. height: math.unit(9, "feet"),
  39803. name: "Side",
  39804. image: {
  39805. source: "./media/characters/rymel/side.svg",
  39806. extra: 792/469,
  39807. bottom: 121/913
  39808. }
  39809. },
  39810. maw: {
  39811. height: math.unit(2.4, "meters"),
  39812. name: "Maw",
  39813. image: {
  39814. source: "./media/characters/rymel/maw.svg"
  39815. }
  39816. },
  39817. },
  39818. [
  39819. {
  39820. name: "House Drake",
  39821. height: math.unit(2, "feet")
  39822. },
  39823. {
  39824. name: "Reduced",
  39825. height: math.unit(4.5, "feet")
  39826. },
  39827. {
  39828. name: "Normal",
  39829. height: math.unit(9, "feet"),
  39830. default: true
  39831. },
  39832. ]
  39833. ))
  39834. characterMakers.push(() => makeCharacter(
  39835. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39836. {
  39837. front: {
  39838. height: math.unit(1.74, "meters"),
  39839. weight: math.unit(55, "kg"),
  39840. name: "Front",
  39841. image: {
  39842. source: "./media/characters/rubus/front.svg",
  39843. extra: 1894/1742,
  39844. bottom: 44/1938
  39845. }
  39846. },
  39847. },
  39848. [
  39849. {
  39850. name: "Normal",
  39851. height: math.unit(1.74, "meters"),
  39852. default: true
  39853. },
  39854. ]
  39855. ))
  39856. characterMakers.push(() => makeCharacter(
  39857. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39858. {
  39859. front: {
  39860. height: math.unit(5 + 2/12, "feet"),
  39861. weight: math.unit(112, "lb"),
  39862. name: "Front",
  39863. image: {
  39864. source: "./media/characters/cassie-kingston/front.svg",
  39865. extra: 1438/1390,
  39866. bottom: 47/1485
  39867. }
  39868. },
  39869. },
  39870. [
  39871. {
  39872. name: "Normal",
  39873. height: math.unit(5 + 2/12, "feet"),
  39874. default: true
  39875. },
  39876. {
  39877. name: "Macro",
  39878. height: math.unit(128, "feet")
  39879. },
  39880. {
  39881. name: "Megamacro",
  39882. height: math.unit(2.56, "miles")
  39883. },
  39884. ]
  39885. ))
  39886. characterMakers.push(() => makeCharacter(
  39887. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  39888. {
  39889. front: {
  39890. height: math.unit(7, "feet"),
  39891. name: "Front",
  39892. image: {
  39893. source: "./media/characters/fox/front.svg",
  39894. extra: 1798/1703,
  39895. bottom: 55/1853
  39896. }
  39897. },
  39898. back: {
  39899. height: math.unit(7, "feet"),
  39900. name: "Back",
  39901. image: {
  39902. source: "./media/characters/fox/back.svg",
  39903. extra: 1748/1649,
  39904. bottom: 32/1780
  39905. }
  39906. },
  39907. head: {
  39908. height: math.unit(1.95, "feet"),
  39909. name: "Head",
  39910. image: {
  39911. source: "./media/characters/fox/head.svg"
  39912. }
  39913. },
  39914. dick: {
  39915. height: math.unit(1.33, "feet"),
  39916. name: "Dick",
  39917. image: {
  39918. source: "./media/characters/fox/dick.svg"
  39919. }
  39920. },
  39921. foot: {
  39922. height: math.unit(1, "feet"),
  39923. name: "Foot",
  39924. image: {
  39925. source: "./media/characters/fox/foot.svg"
  39926. }
  39927. },
  39928. paw: {
  39929. height: math.unit(0.92, "feet"),
  39930. name: "Paw",
  39931. image: {
  39932. source: "./media/characters/fox/paw.svg"
  39933. }
  39934. },
  39935. },
  39936. [
  39937. {
  39938. name: "Small",
  39939. height: math.unit(3, "inches")
  39940. },
  39941. {
  39942. name: "\"Realistic\"",
  39943. height: math.unit(7, "feet")
  39944. },
  39945. {
  39946. name: "Normal",
  39947. height: math.unit(150, "feet"),
  39948. default: true
  39949. },
  39950. {
  39951. name: "BIG",
  39952. height: math.unit(1200, "feet")
  39953. },
  39954. {
  39955. name: "👀",
  39956. height: math.unit(5, "miles")
  39957. },
  39958. {
  39959. name: "👀👀👀",
  39960. height: math.unit(64, "miles")
  39961. },
  39962. ]
  39963. ))
  39964. characterMakers.push(() => makeCharacter(
  39965. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  39966. {
  39967. front: {
  39968. height: math.unit(625, "feet"),
  39969. name: "Front",
  39970. image: {
  39971. source: "./media/characters/asonja-rossa/front.svg",
  39972. extra: 1833/1686,
  39973. bottom: 24/1857
  39974. }
  39975. },
  39976. back: {
  39977. height: math.unit(625, "feet"),
  39978. name: "Back",
  39979. image: {
  39980. source: "./media/characters/asonja-rossa/back.svg",
  39981. extra: 1852/1753,
  39982. bottom: 26/1878
  39983. }
  39984. },
  39985. },
  39986. [
  39987. {
  39988. name: "Macro",
  39989. height: math.unit(625, "feet"),
  39990. default: true
  39991. },
  39992. ]
  39993. ))
  39994. characterMakers.push(() => makeCharacter(
  39995. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  39996. {
  39997. side: {
  39998. height: math.unit(8, "feet"),
  39999. name: "Side",
  40000. image: {
  40001. source: "./media/characters/rezukii/side.svg",
  40002. extra: 979/542,
  40003. bottom: 87/1066
  40004. }
  40005. },
  40006. sitting: {
  40007. height: math.unit(14.6, "feet"),
  40008. name: "Sitting",
  40009. image: {
  40010. source: "./media/characters/rezukii/sitting.svg",
  40011. extra: 1023/813,
  40012. bottom: 45/1068
  40013. }
  40014. },
  40015. },
  40016. [
  40017. {
  40018. name: "Tiny",
  40019. height: math.unit(2, "feet")
  40020. },
  40021. {
  40022. name: "Smol",
  40023. height: math.unit(4, "feet")
  40024. },
  40025. {
  40026. name: "Normal",
  40027. height: math.unit(8, "feet"),
  40028. default: true
  40029. },
  40030. {
  40031. name: "Big",
  40032. height: math.unit(12, "feet")
  40033. },
  40034. {
  40035. name: "Macro",
  40036. height: math.unit(30, "feet")
  40037. },
  40038. ]
  40039. ))
  40040. characterMakers.push(() => makeCharacter(
  40041. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40042. {
  40043. front: {
  40044. height: math.unit(14, "feet"),
  40045. weight: math.unit(9.5, "tonnes"),
  40046. name: "Front",
  40047. image: {
  40048. source: "./media/characters/dawnheart/front.svg",
  40049. extra: 2792/2675,
  40050. bottom: 64/2856
  40051. }
  40052. },
  40053. },
  40054. [
  40055. {
  40056. name: "Normal",
  40057. height: math.unit(14, "feet"),
  40058. default: true
  40059. },
  40060. ]
  40061. ))
  40062. characterMakers.push(() => makeCharacter(
  40063. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40064. {
  40065. front: {
  40066. height: math.unit(1.7, "m"),
  40067. name: "Front",
  40068. image: {
  40069. source: "./media/characters/gladi/front.svg",
  40070. extra: 1460/1362,
  40071. bottom: 19/1479
  40072. }
  40073. },
  40074. back: {
  40075. height: math.unit(1.7, "m"),
  40076. name: "Back",
  40077. image: {
  40078. source: "./media/characters/gladi/back.svg",
  40079. extra: 1459/1357,
  40080. bottom: 12/1471
  40081. }
  40082. },
  40083. feral: {
  40084. height: math.unit(2.05, "m"),
  40085. name: "Feral",
  40086. image: {
  40087. source: "./media/characters/gladi/feral.svg",
  40088. extra: 821/557,
  40089. bottom: 91/912
  40090. }
  40091. },
  40092. },
  40093. [
  40094. {
  40095. name: "Shortest",
  40096. height: math.unit(70, "cm")
  40097. },
  40098. {
  40099. name: "Normal",
  40100. height: math.unit(1.7, "m")
  40101. },
  40102. {
  40103. name: "Macro",
  40104. height: math.unit(10, "m"),
  40105. default: true
  40106. },
  40107. {
  40108. name: "Tallest",
  40109. height: math.unit(200, "m")
  40110. },
  40111. ]
  40112. ))
  40113. characterMakers.push(() => makeCharacter(
  40114. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40115. {
  40116. front: {
  40117. height: math.unit(5 + 7/12, "feet"),
  40118. weight: math.unit(2, "tons"),
  40119. name: "Front",
  40120. image: {
  40121. source: "./media/characters/erdno/front.svg",
  40122. extra: 1234/1129,
  40123. bottom: 35/1269
  40124. }
  40125. },
  40126. angled: {
  40127. height: math.unit(5 + 7/12, "feet"),
  40128. weight: math.unit(2, "tons"),
  40129. name: "Angled",
  40130. image: {
  40131. source: "./media/characters/erdno/angled.svg",
  40132. extra: 1185/1139,
  40133. bottom: 36/1221
  40134. }
  40135. },
  40136. side: {
  40137. height: math.unit(5 + 7/12, "feet"),
  40138. weight: math.unit(2, "tons"),
  40139. name: "Side",
  40140. image: {
  40141. source: "./media/characters/erdno/side.svg",
  40142. extra: 1191/1144,
  40143. bottom: 40/1231
  40144. }
  40145. },
  40146. back: {
  40147. height: math.unit(5 + 7/12, "feet"),
  40148. weight: math.unit(2, "tons"),
  40149. name: "Back",
  40150. image: {
  40151. source: "./media/characters/erdno/back.svg",
  40152. extra: 1202/1146,
  40153. bottom: 17/1219
  40154. }
  40155. },
  40156. frontNsfw: {
  40157. height: math.unit(5 + 7/12, "feet"),
  40158. weight: math.unit(2, "tons"),
  40159. name: "Front (NSFW)",
  40160. image: {
  40161. source: "./media/characters/erdno/front-nsfw.svg",
  40162. extra: 1234/1129,
  40163. bottom: 35/1269
  40164. }
  40165. },
  40166. angledNsfw: {
  40167. height: math.unit(5 + 7/12, "feet"),
  40168. weight: math.unit(2, "tons"),
  40169. name: "Angled (NSFW)",
  40170. image: {
  40171. source: "./media/characters/erdno/angled-nsfw.svg",
  40172. extra: 1185/1139,
  40173. bottom: 36/1221
  40174. }
  40175. },
  40176. sideNsfw: {
  40177. height: math.unit(5 + 7/12, "feet"),
  40178. weight: math.unit(2, "tons"),
  40179. name: "Side (NSFW)",
  40180. image: {
  40181. source: "./media/characters/erdno/side-nsfw.svg",
  40182. extra: 1191/1144,
  40183. bottom: 40/1231
  40184. }
  40185. },
  40186. backNsfw: {
  40187. height: math.unit(5 + 7/12, "feet"),
  40188. weight: math.unit(2, "tons"),
  40189. name: "Back (NSFW)",
  40190. image: {
  40191. source: "./media/characters/erdno/back-nsfw.svg",
  40192. extra: 1202/1146,
  40193. bottom: 17/1219
  40194. }
  40195. },
  40196. frontHyper: {
  40197. height: math.unit(5 + 7/12, "feet"),
  40198. weight: math.unit(2, "tons"),
  40199. name: "Front (Hyper)",
  40200. image: {
  40201. source: "./media/characters/erdno/front-hyper.svg",
  40202. extra: 1298/1136,
  40203. bottom: 35/1333
  40204. }
  40205. },
  40206. },
  40207. [
  40208. {
  40209. name: "Normal",
  40210. height: math.unit(5 + 7/12, "feet"),
  40211. default: true
  40212. },
  40213. {
  40214. name: "Big",
  40215. height: math.unit(5.7, "meters")
  40216. },
  40217. {
  40218. name: "Macro",
  40219. height: math.unit(5.7, "kilometers")
  40220. },
  40221. {
  40222. name: "Megamacro",
  40223. height: math.unit(5.7, "earths")
  40224. },
  40225. ]
  40226. ))
  40227. characterMakers.push(() => makeCharacter(
  40228. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40229. {
  40230. front: {
  40231. height: math.unit(5 + 10/12, "feet"),
  40232. weight: math.unit(150, "lb"),
  40233. name: "Front",
  40234. image: {
  40235. source: "./media/characters/jamie/front.svg",
  40236. extra: 1908/1768,
  40237. bottom: 19/1927
  40238. }
  40239. },
  40240. },
  40241. [
  40242. {
  40243. name: "Minimum",
  40244. height: math.unit(2, "cm")
  40245. },
  40246. {
  40247. name: "Micro",
  40248. height: math.unit(3, "inches")
  40249. },
  40250. {
  40251. name: "Normal",
  40252. height: math.unit(5 + 10/12, "feet"),
  40253. default: true
  40254. },
  40255. {
  40256. name: "Macro",
  40257. height: math.unit(150, "feet")
  40258. },
  40259. {
  40260. name: "Megamacro",
  40261. height: math.unit(10000, "m")
  40262. },
  40263. ]
  40264. ))
  40265. characterMakers.push(() => makeCharacter(
  40266. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40267. {
  40268. front: {
  40269. height: math.unit(2, "meters"),
  40270. weight: math.unit(100, "kg"),
  40271. name: "Front",
  40272. image: {
  40273. source: "./media/characters/shiron/front.svg",
  40274. extra: 2103/1985,
  40275. bottom: 98/2201
  40276. }
  40277. },
  40278. back: {
  40279. height: math.unit(2, "meters"),
  40280. weight: math.unit(100, "kg"),
  40281. name: "Back",
  40282. image: {
  40283. source: "./media/characters/shiron/back.svg",
  40284. extra: 2110/2015,
  40285. bottom: 89/2199
  40286. }
  40287. },
  40288. hand: {
  40289. height: math.unit(0.96, "feet"),
  40290. name: "Hand",
  40291. image: {
  40292. source: "./media/characters/shiron/hand.svg"
  40293. }
  40294. },
  40295. foot: {
  40296. height: math.unit(1.464, "feet"),
  40297. name: "Foot",
  40298. image: {
  40299. source: "./media/characters/shiron/foot.svg"
  40300. }
  40301. },
  40302. },
  40303. [
  40304. {
  40305. name: "Normal",
  40306. height: math.unit(2, "meters")
  40307. },
  40308. {
  40309. name: "Macro",
  40310. height: math.unit(500, "meters"),
  40311. default: true
  40312. },
  40313. {
  40314. name: "Megamacro",
  40315. height: math.unit(20, "km")
  40316. },
  40317. ]
  40318. ))
  40319. characterMakers.push(() => makeCharacter(
  40320. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40321. {
  40322. front: {
  40323. height: math.unit(6, "feet"),
  40324. name: "Front",
  40325. image: {
  40326. source: "./media/characters/sam/front.svg",
  40327. extra: 849/826,
  40328. bottom: 19/868
  40329. }
  40330. },
  40331. },
  40332. [
  40333. {
  40334. name: "Normal",
  40335. height: math.unit(6, "feet"),
  40336. default: true
  40337. },
  40338. ]
  40339. ))
  40340. characterMakers.push(() => makeCharacter(
  40341. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40342. {
  40343. front: {
  40344. height: math.unit(8 + 4/12, "feet"),
  40345. weight: math.unit(122, "kg"),
  40346. name: "Front",
  40347. image: {
  40348. source: "./media/characters/namori-kurogawa/front.svg",
  40349. extra: 1894/1576,
  40350. bottom: 34/1928
  40351. }
  40352. },
  40353. },
  40354. [
  40355. {
  40356. name: "Normal",
  40357. height: math.unit(8 + 4/12, "feet"),
  40358. default: true
  40359. },
  40360. ]
  40361. ))
  40362. characterMakers.push(() => makeCharacter(
  40363. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40364. {
  40365. front: {
  40366. height: math.unit(9, "feet"),
  40367. weight: math.unit(621, "lb"),
  40368. name: "Front",
  40369. image: {
  40370. source: "./media/characters/unmru/front.svg",
  40371. extra: 1853/1747,
  40372. bottom: 73/1926
  40373. }
  40374. },
  40375. side: {
  40376. height: math.unit(9, "feet"),
  40377. weight: math.unit(621, "lb"),
  40378. name: "Side",
  40379. image: {
  40380. source: "./media/characters/unmru/side.svg",
  40381. extra: 1781/1671,
  40382. bottom: 127/1908
  40383. }
  40384. },
  40385. back: {
  40386. height: math.unit(9, "feet"),
  40387. weight: math.unit(621, "lb"),
  40388. name: "Back",
  40389. image: {
  40390. source: "./media/characters/unmru/back.svg",
  40391. extra: 1894/1765,
  40392. bottom: 75/1969
  40393. }
  40394. },
  40395. dick: {
  40396. height: math.unit(3, "feet"),
  40397. weight: math.unit(35, "lb"),
  40398. name: "Dick",
  40399. image: {
  40400. source: "./media/characters/unmru/dick.svg"
  40401. }
  40402. },
  40403. },
  40404. [
  40405. {
  40406. name: "Normal",
  40407. height: math.unit(9, "feet")
  40408. },
  40409. {
  40410. name: "Natural",
  40411. height: math.unit(27, "feet"),
  40412. default: true
  40413. },
  40414. {
  40415. name: "Giant",
  40416. height: math.unit(90, "feet")
  40417. },
  40418. {
  40419. name: "Kaiju",
  40420. height: math.unit(270, "feet")
  40421. },
  40422. {
  40423. name: "Macro",
  40424. height: math.unit(900, "feet")
  40425. },
  40426. {
  40427. name: "Macro+",
  40428. height: math.unit(2700, "feet")
  40429. },
  40430. {
  40431. name: "Megamacro",
  40432. height: math.unit(9000, "feet")
  40433. },
  40434. {
  40435. name: "City-Crushing",
  40436. height: math.unit(27000, "feet")
  40437. },
  40438. {
  40439. name: "Mountain-Mashing",
  40440. height: math.unit(90000, "feet")
  40441. },
  40442. {
  40443. name: "Earth-Eclipsing",
  40444. height: math.unit(2.7e8, "feet")
  40445. },
  40446. {
  40447. name: "Sol-Swallowing",
  40448. height: math.unit(9e10, "feet")
  40449. },
  40450. {
  40451. name: "Majoris-Munching",
  40452. height: math.unit(2.7e13, "feet")
  40453. },
  40454. ]
  40455. ))
  40456. characterMakers.push(() => makeCharacter(
  40457. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40458. {
  40459. front: {
  40460. height: math.unit(1, "inch"),
  40461. name: "Front",
  40462. image: {
  40463. source: "./media/characters/squeaks-mouse/front.svg",
  40464. extra: 352/308,
  40465. bottom: 25/377
  40466. }
  40467. },
  40468. },
  40469. [
  40470. {
  40471. name: "Micro",
  40472. height: math.unit(1, "inch"),
  40473. default: true
  40474. },
  40475. ]
  40476. ))
  40477. characterMakers.push(() => makeCharacter(
  40478. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40479. {
  40480. side: {
  40481. height: math.unit(35, "feet"),
  40482. name: "Side",
  40483. image: {
  40484. source: "./media/characters/sayko/side.svg",
  40485. extra: 1697/1021,
  40486. bottom: 82/1779
  40487. }
  40488. },
  40489. head: {
  40490. height: math.unit(16, "feet"),
  40491. name: "Head",
  40492. image: {
  40493. source: "./media/characters/sayko/head.svg"
  40494. }
  40495. },
  40496. forepaw: {
  40497. height: math.unit(7.85, "feet"),
  40498. name: "Forepaw",
  40499. image: {
  40500. source: "./media/characters/sayko/forepaw.svg"
  40501. }
  40502. },
  40503. hindpaw: {
  40504. height: math.unit(8.8, "feet"),
  40505. name: "Hindpaw",
  40506. image: {
  40507. source: "./media/characters/sayko/hindpaw.svg"
  40508. }
  40509. },
  40510. },
  40511. [
  40512. {
  40513. name: "Normal",
  40514. height: math.unit(35, "feet"),
  40515. default: true
  40516. },
  40517. {
  40518. name: "Colossus",
  40519. height: math.unit(100, "meters")
  40520. },
  40521. {
  40522. name: "\"Small\" Deity",
  40523. height: math.unit(1, "km")
  40524. },
  40525. {
  40526. name: "\"Large\" Deity",
  40527. height: math.unit(15, "km")
  40528. },
  40529. ]
  40530. ))
  40531. characterMakers.push(() => makeCharacter(
  40532. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40533. {
  40534. front: {
  40535. height: math.unit(6, "feet"),
  40536. weight: math.unit(250, "lb"),
  40537. name: "Front",
  40538. image: {
  40539. source: "./media/characters/mukiro/front.svg",
  40540. extra: 1368/1310,
  40541. bottom: 34/1402
  40542. }
  40543. },
  40544. },
  40545. [
  40546. {
  40547. name: "Normal",
  40548. height: math.unit(6, "feet"),
  40549. default: true
  40550. },
  40551. ]
  40552. ))
  40553. characterMakers.push(() => makeCharacter(
  40554. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40555. {
  40556. front: {
  40557. height: math.unit(12 + 4/12, "feet"),
  40558. name: "Front",
  40559. image: {
  40560. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40561. extra: 1346/1311,
  40562. bottom: 65/1411
  40563. }
  40564. },
  40565. },
  40566. [
  40567. {
  40568. name: "Base",
  40569. height: math.unit(12 + 4/12, "feet"),
  40570. default: true
  40571. },
  40572. {
  40573. name: "Macro",
  40574. height: math.unit(150, "feet")
  40575. },
  40576. {
  40577. name: "Mega",
  40578. height: math.unit(2, "miles")
  40579. },
  40580. {
  40581. name: "Demi God",
  40582. height: math.unit(4, "AU")
  40583. },
  40584. {
  40585. name: "God Size",
  40586. height: math.unit(1, "universe")
  40587. },
  40588. ]
  40589. ))
  40590. characterMakers.push(() => makeCharacter(
  40591. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40592. {
  40593. front: {
  40594. height: math.unit(3 + 3/12, "feet"),
  40595. weight: math.unit(88, "lb"),
  40596. name: "Front",
  40597. image: {
  40598. source: "./media/characters/trey/front.svg",
  40599. extra: 1815/1509,
  40600. bottom: 60/1875
  40601. }
  40602. },
  40603. },
  40604. [
  40605. {
  40606. name: "Normal",
  40607. height: math.unit(3 + 3/12, "feet"),
  40608. default: true
  40609. },
  40610. ]
  40611. ))
  40612. characterMakers.push(() => makeCharacter(
  40613. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40614. {
  40615. front: {
  40616. height: math.unit(4, "meters"),
  40617. name: "Front",
  40618. image: {
  40619. source: "./media/characters/adelonda/front.svg",
  40620. extra: 1077/982,
  40621. bottom: 39/1116
  40622. }
  40623. },
  40624. back: {
  40625. height: math.unit(4, "meters"),
  40626. name: "Back",
  40627. image: {
  40628. source: "./media/characters/adelonda/back.svg",
  40629. extra: 1105/1003,
  40630. bottom: 25/1130
  40631. }
  40632. },
  40633. feral: {
  40634. height: math.unit(40/1.5, "meters"),
  40635. name: "Feral",
  40636. image: {
  40637. source: "./media/characters/adelonda/feral.svg",
  40638. extra: 597/271,
  40639. bottom: 387/984
  40640. }
  40641. },
  40642. },
  40643. [
  40644. {
  40645. name: "Normal",
  40646. height: math.unit(4, "meters"),
  40647. default: true
  40648. },
  40649. ]
  40650. ))
  40651. characterMakers.push(() => makeCharacter(
  40652. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40653. {
  40654. front: {
  40655. height: math.unit(8 + 4/12, "feet"),
  40656. weight: math.unit(670, "lb"),
  40657. name: "Front",
  40658. image: {
  40659. source: "./media/characters/acadiel/front.svg",
  40660. extra: 1901/1595,
  40661. bottom: 142/2043
  40662. }
  40663. },
  40664. },
  40665. [
  40666. {
  40667. name: "Normal",
  40668. height: math.unit(8 + 4/12, "feet"),
  40669. default: true
  40670. },
  40671. {
  40672. name: "Macro",
  40673. height: math.unit(200, "feet")
  40674. },
  40675. ]
  40676. ))
  40677. characterMakers.push(() => makeCharacter(
  40678. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40679. {
  40680. front: {
  40681. height: math.unit(6 + 2/12, "feet"),
  40682. weight: math.unit(185, "lb"),
  40683. name: "Front",
  40684. image: {
  40685. source: "./media/characters/kayne-ein/front.svg",
  40686. extra: 1780/1560,
  40687. bottom: 81/1861
  40688. }
  40689. },
  40690. },
  40691. [
  40692. {
  40693. name: "Normal",
  40694. height: math.unit(6 + 2/12, "feet"),
  40695. default: true
  40696. },
  40697. {
  40698. name: "Transformation Stage",
  40699. height: math.unit(15, "feet")
  40700. },
  40701. {
  40702. name: "Macro",
  40703. height: math.unit(150, "feet")
  40704. },
  40705. {
  40706. name: "Earth's Shadow",
  40707. height: math.unit(6200, "miles")
  40708. },
  40709. {
  40710. name: "Universal Demon",
  40711. height: math.unit(28e9, "parsecs")
  40712. },
  40713. {
  40714. name: "Multiverse God",
  40715. height: math.unit(3, "multiverses")
  40716. },
  40717. ]
  40718. ))
  40719. characterMakers.push(() => makeCharacter(
  40720. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40721. {
  40722. front: {
  40723. height: math.unit(5 + 5/12, "feet"),
  40724. name: "Front",
  40725. image: {
  40726. source: "./media/characters/fawn/front.svg",
  40727. extra: 1873/1731,
  40728. bottom: 95/1968
  40729. }
  40730. },
  40731. back: {
  40732. height: math.unit(5 + 5/12, "feet"),
  40733. name: "Back",
  40734. image: {
  40735. source: "./media/characters/fawn/back.svg",
  40736. extra: 1813/1700,
  40737. bottom: 14/1827
  40738. }
  40739. },
  40740. hoof: {
  40741. height: math.unit(1.45, "feet"),
  40742. name: "Hoof",
  40743. image: {
  40744. source: "./media/characters/fawn/hoof.svg"
  40745. }
  40746. },
  40747. },
  40748. [
  40749. {
  40750. name: "Normal",
  40751. height: math.unit(5 + 5/12, "feet"),
  40752. default: true
  40753. },
  40754. ]
  40755. ))
  40756. characterMakers.push(() => makeCharacter(
  40757. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40758. {
  40759. front: {
  40760. height: math.unit(2 + 5/12, "feet"),
  40761. name: "Front",
  40762. image: {
  40763. source: "./media/characters/orion/front.svg",
  40764. extra: 1366/1304,
  40765. bottom: 43/1409
  40766. }
  40767. },
  40768. paw: {
  40769. height: math.unit(0.52, "feet"),
  40770. name: "Paw",
  40771. image: {
  40772. source: "./media/characters/orion/paw.svg"
  40773. }
  40774. },
  40775. },
  40776. [
  40777. {
  40778. name: "Normal",
  40779. height: math.unit(2 + 5/12, "feet"),
  40780. default: true
  40781. },
  40782. ]
  40783. ))
  40784. characterMakers.push(() => makeCharacter(
  40785. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40786. {
  40787. front: {
  40788. height: math.unit(5 + 10/12, "feet"),
  40789. name: "Front",
  40790. image: {
  40791. source: "./media/characters/vera/front.svg",
  40792. extra: 1680/1575,
  40793. bottom: 49/1729
  40794. }
  40795. },
  40796. back: {
  40797. height: math.unit(5 + 10/12, "feet"),
  40798. name: "Back",
  40799. image: {
  40800. source: "./media/characters/vera/back.svg",
  40801. extra: 1700/1588,
  40802. bottom: 18/1718
  40803. }
  40804. },
  40805. arcanine: {
  40806. height: math.unit(6 + 8/12, "feet"),
  40807. name: "Arcanine",
  40808. image: {
  40809. source: "./media/characters/vera/arcanine.svg",
  40810. extra: 1590/1511,
  40811. bottom: 71/1661
  40812. }
  40813. },
  40814. maw: {
  40815. height: math.unit(0.82, "feet"),
  40816. name: "Maw",
  40817. image: {
  40818. source: "./media/characters/vera/maw.svg"
  40819. }
  40820. },
  40821. mawArcanine: {
  40822. height: math.unit(0.97, "feet"),
  40823. name: "Maw (Arcanine)",
  40824. image: {
  40825. source: "./media/characters/vera/maw-arcanine.svg"
  40826. }
  40827. },
  40828. paw: {
  40829. height: math.unit(0.75, "feet"),
  40830. name: "Paw",
  40831. image: {
  40832. source: "./media/characters/vera/paw.svg"
  40833. }
  40834. },
  40835. pawprint: {
  40836. height: math.unit(0.52, "feet"),
  40837. name: "Pawprint",
  40838. image: {
  40839. source: "./media/characters/vera/pawprint.svg"
  40840. }
  40841. },
  40842. },
  40843. [
  40844. {
  40845. name: "Normal",
  40846. height: math.unit(5 + 10/12, "feet"),
  40847. default: true
  40848. },
  40849. {
  40850. name: "Macro",
  40851. height: math.unit(75, "feet")
  40852. },
  40853. ]
  40854. ))
  40855. characterMakers.push(() => makeCharacter(
  40856. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40857. {
  40858. front: {
  40859. height: math.unit(4, "feet"),
  40860. weight: math.unit(40, "lb"),
  40861. name: "Front",
  40862. image: {
  40863. source: "./media/characters/orvan-rabbit/front.svg",
  40864. extra: 1896/1642,
  40865. bottom: 29/1925
  40866. }
  40867. },
  40868. },
  40869. [
  40870. {
  40871. name: "Normal",
  40872. height: math.unit(4, "feet"),
  40873. default: true
  40874. },
  40875. ]
  40876. ))
  40877. characterMakers.push(() => makeCharacter(
  40878. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  40879. {
  40880. front: {
  40881. height: math.unit(6, "feet"),
  40882. weight: math.unit(168, "lb"),
  40883. name: "Front",
  40884. image: {
  40885. source: "./media/characters/lisa/front.svg",
  40886. extra: 2065/1867,
  40887. bottom: 46/2111
  40888. }
  40889. },
  40890. back: {
  40891. height: math.unit(6, "feet"),
  40892. weight: math.unit(168, "lb"),
  40893. name: "Back",
  40894. image: {
  40895. source: "./media/characters/lisa/back.svg",
  40896. extra: 1982/1838,
  40897. bottom: 29/2011
  40898. }
  40899. },
  40900. maw: {
  40901. height: math.unit(0.81, "feet"),
  40902. name: "Maw",
  40903. image: {
  40904. source: "./media/characters/lisa/maw.svg"
  40905. }
  40906. },
  40907. paw: {
  40908. height: math.unit(0.9, "feet"),
  40909. name: "Paw",
  40910. image: {
  40911. source: "./media/characters/lisa/paw.svg"
  40912. }
  40913. },
  40914. caribousune: {
  40915. height: math.unit(7 + 2/12, "feet"),
  40916. weight: math.unit(268, "lb"),
  40917. name: "Caribousune",
  40918. image: {
  40919. source: "./media/characters/lisa/caribousune.svg",
  40920. extra: 1843/1633,
  40921. bottom: 29/1872
  40922. }
  40923. },
  40924. frontCaribousune: {
  40925. height: math.unit(7 + 2/12, "feet"),
  40926. weight: math.unit(268, "lb"),
  40927. name: "Front (Caribousune)",
  40928. image: {
  40929. source: "./media/characters/lisa/front-caribousune.svg",
  40930. extra: 1818/1638,
  40931. bottom: 52/1870
  40932. }
  40933. },
  40934. sideCaribousune: {
  40935. height: math.unit(7 + 2/12, "feet"),
  40936. weight: math.unit(268, "lb"),
  40937. name: "Side (Caribousune)",
  40938. image: {
  40939. source: "./media/characters/lisa/side-caribousune.svg",
  40940. extra: 1851/1635,
  40941. bottom: 16/1867
  40942. }
  40943. },
  40944. backCaribousune: {
  40945. height: math.unit(7 + 2/12, "feet"),
  40946. weight: math.unit(268, "lb"),
  40947. name: "Back (Caribousune)",
  40948. image: {
  40949. source: "./media/characters/lisa/back-caribousune.svg",
  40950. extra: 1801/1604,
  40951. bottom: 44/1845
  40952. }
  40953. },
  40954. caribou: {
  40955. height: math.unit(7 + 2/12, "feet"),
  40956. weight: math.unit(268, "lb"),
  40957. name: "Caribou",
  40958. image: {
  40959. source: "./media/characters/lisa/caribou.svg",
  40960. extra: 1843/1633,
  40961. bottom: 29/1872
  40962. }
  40963. },
  40964. frontCaribou: {
  40965. height: math.unit(7 + 2/12, "feet"),
  40966. weight: math.unit(268, "lb"),
  40967. name: "Front (Caribou)",
  40968. image: {
  40969. source: "./media/characters/lisa/front-caribou.svg",
  40970. extra: 1818/1638,
  40971. bottom: 52/1870
  40972. }
  40973. },
  40974. sideCaribou: {
  40975. height: math.unit(7 + 2/12, "feet"),
  40976. weight: math.unit(268, "lb"),
  40977. name: "Side (Caribou)",
  40978. image: {
  40979. source: "./media/characters/lisa/side-caribou.svg",
  40980. extra: 1851/1635,
  40981. bottom: 16/1867
  40982. }
  40983. },
  40984. backCaribou: {
  40985. height: math.unit(7 + 2/12, "feet"),
  40986. weight: math.unit(268, "lb"),
  40987. name: "Back (Caribou)",
  40988. image: {
  40989. source: "./media/characters/lisa/back-caribou.svg",
  40990. extra: 1801/1604,
  40991. bottom: 44/1845
  40992. }
  40993. },
  40994. mawCaribou: {
  40995. height: math.unit(1.45, "feet"),
  40996. name: "Maw (Caribou)",
  40997. image: {
  40998. source: "./media/characters/lisa/maw-caribou.svg"
  40999. }
  41000. },
  41001. mawCaribousune: {
  41002. height: math.unit(1.45, "feet"),
  41003. name: "Maw (Caribousune)",
  41004. image: {
  41005. source: "./media/characters/lisa/maw-caribousune.svg"
  41006. }
  41007. },
  41008. pawCaribousune: {
  41009. height: math.unit(1.61, "feet"),
  41010. name: "Paw (Caribou)",
  41011. image: {
  41012. source: "./media/characters/lisa/paw-caribousune.svg"
  41013. }
  41014. },
  41015. },
  41016. [
  41017. {
  41018. name: "Normal",
  41019. height: math.unit(6, "feet")
  41020. },
  41021. {
  41022. name: "God Size",
  41023. height: math.unit(72, "feet"),
  41024. default: true
  41025. },
  41026. {
  41027. name: "Towering",
  41028. height: math.unit(288, "feet")
  41029. },
  41030. {
  41031. name: "City Size",
  41032. height: math.unit(48384, "feet")
  41033. },
  41034. {
  41035. name: "Continental",
  41036. height: math.unit(4200, "miles")
  41037. },
  41038. {
  41039. name: "Planet Eater",
  41040. height: math.unit(42, "earths")
  41041. },
  41042. {
  41043. name: "Star Swallower",
  41044. height: math.unit(42, "solarradii")
  41045. },
  41046. {
  41047. name: "System Swallower",
  41048. height: math.unit(84000, "AU")
  41049. },
  41050. {
  41051. name: "Galaxy Gobbler",
  41052. height: math.unit(42, "galaxies")
  41053. },
  41054. {
  41055. name: "Universe Devourer",
  41056. height: math.unit(42, "universes")
  41057. },
  41058. {
  41059. name: "Multiverse Muncher",
  41060. height: math.unit(42, "multiverses")
  41061. },
  41062. ]
  41063. ))
  41064. characterMakers.push(() => makeCharacter(
  41065. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41066. {
  41067. front: {
  41068. height: math.unit(36, "feet"),
  41069. name: "Front",
  41070. image: {
  41071. source: "./media/characters/shadow-rat/front.svg",
  41072. extra: 1845/1758,
  41073. bottom: 83/1928
  41074. }
  41075. },
  41076. },
  41077. [
  41078. {
  41079. name: "Macro",
  41080. height: math.unit(36, "feet"),
  41081. default: true
  41082. },
  41083. ]
  41084. ))
  41085. characterMakers.push(() => makeCharacter(
  41086. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41087. {
  41088. side: {
  41089. height: math.unit(8, "feet"),
  41090. weight: math.unit(2630, "lb"),
  41091. name: "Side",
  41092. image: {
  41093. source: "./media/characters/torallia/side.svg",
  41094. extra: 2164/2021,
  41095. bottom: 371/2535
  41096. }
  41097. },
  41098. },
  41099. [
  41100. {
  41101. name: "Mortal Interaction",
  41102. height: math.unit(8, "feet")
  41103. },
  41104. {
  41105. name: "Natural",
  41106. height: math.unit(24, "feet"),
  41107. default: true
  41108. },
  41109. {
  41110. name: "Giant",
  41111. height: math.unit(80, "feet")
  41112. },
  41113. {
  41114. name: "Kaiju",
  41115. height: math.unit(240, "feet")
  41116. },
  41117. {
  41118. name: "Macro",
  41119. height: math.unit(800, "feet")
  41120. },
  41121. {
  41122. name: "Macro+",
  41123. height: math.unit(2400, "feet")
  41124. },
  41125. {
  41126. name: "Macro++",
  41127. height: math.unit(8000, "feet")
  41128. },
  41129. {
  41130. name: "City-Crushing",
  41131. height: math.unit(24000, "feet")
  41132. },
  41133. {
  41134. name: "Mountain-Mashing",
  41135. height: math.unit(80000, "feet")
  41136. },
  41137. {
  41138. name: "District Demolisher",
  41139. height: math.unit(240000, "feet")
  41140. },
  41141. {
  41142. name: "Tri-County Terror",
  41143. height: math.unit(800000, "feet")
  41144. },
  41145. {
  41146. name: "State Smasher",
  41147. height: math.unit(2.4e6, "feet")
  41148. },
  41149. {
  41150. name: "Nation Nemesis",
  41151. height: math.unit(8e6, "feet")
  41152. },
  41153. {
  41154. name: "Continent Cracker",
  41155. height: math.unit(2.4e7, "feet")
  41156. },
  41157. {
  41158. name: "Planet-Pillaging",
  41159. height: math.unit(8e7, "feet")
  41160. },
  41161. {
  41162. name: "Earth-Eclipsing",
  41163. height: math.unit(2.4e8, "feet")
  41164. },
  41165. {
  41166. name: "Jovian-Jostling",
  41167. height: math.unit(8e8, "feet")
  41168. },
  41169. {
  41170. name: "Gas Giant Gulper",
  41171. height: math.unit(2.4e9, "feet")
  41172. },
  41173. {
  41174. name: "Astral Annihilator",
  41175. height: math.unit(8e9, "feet")
  41176. },
  41177. {
  41178. name: "Celestial Conqueror",
  41179. height: math.unit(2.4e10, "feet")
  41180. },
  41181. {
  41182. name: "Sol-Swallowing",
  41183. height: math.unit(8e10, "feet")
  41184. },
  41185. {
  41186. name: "Hunter of the Heavens",
  41187. height: math.unit(2.4e13, "feet")
  41188. },
  41189. ]
  41190. ))
  41191. characterMakers.push(() => makeCharacter(
  41192. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41193. {
  41194. front: {
  41195. height: math.unit(6 + 8/12, "feet"),
  41196. weight: math.unit(250, "kilograms"),
  41197. volume: math.unit(28, "liters"),
  41198. name: "Front",
  41199. image: {
  41200. source: "./media/characters/rebecca-pawlson/front.svg",
  41201. extra: 1737/1596,
  41202. bottom: 107/1844
  41203. }
  41204. },
  41205. back: {
  41206. height: math.unit(6 + 8/12, "feet"),
  41207. weight: math.unit(250, "kilograms"),
  41208. volume: math.unit(28, "liters"),
  41209. name: "Back",
  41210. image: {
  41211. source: "./media/characters/rebecca-pawlson/back.svg",
  41212. extra: 1702/1523,
  41213. bottom: 86/1788
  41214. }
  41215. },
  41216. },
  41217. [
  41218. {
  41219. name: "Normal",
  41220. height: math.unit(6 + 8/12, "feet")
  41221. },
  41222. {
  41223. name: "Mini Macro",
  41224. height: math.unit(10, "feet"),
  41225. default: true
  41226. },
  41227. {
  41228. name: "Macro",
  41229. height: math.unit(100, "feet")
  41230. },
  41231. {
  41232. name: "Mega Macro",
  41233. height: math.unit(2500, "feet")
  41234. },
  41235. {
  41236. name: "Giga Macro",
  41237. height: math.unit(50, "miles")
  41238. },
  41239. ]
  41240. ))
  41241. characterMakers.push(() => makeCharacter(
  41242. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41243. {
  41244. front: {
  41245. height: math.unit(7 + 6/12, "feet"),
  41246. weight: math.unit(600, "lb"),
  41247. name: "Front",
  41248. image: {
  41249. source: "./media/characters/moxie-nova/front.svg",
  41250. extra: 1734/1652,
  41251. bottom: 41/1775
  41252. }
  41253. },
  41254. },
  41255. [
  41256. {
  41257. name: "Normal",
  41258. height: math.unit(7 + 6/12, "feet"),
  41259. default: true
  41260. },
  41261. ]
  41262. ))
  41263. characterMakers.push(() => makeCharacter(
  41264. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41265. {
  41266. goat: {
  41267. height: math.unit(4, "feet"),
  41268. weight: math.unit(180, "lb"),
  41269. name: "Goat",
  41270. image: {
  41271. source: "./media/characters/tiffany/goat.svg",
  41272. extra: 1845/1595,
  41273. bottom: 106/1951
  41274. }
  41275. },
  41276. front: {
  41277. height: math.unit(5, "feet"),
  41278. weight: math.unit(150, "lb"),
  41279. name: "Foxcoon",
  41280. image: {
  41281. source: "./media/characters/tiffany/foxcoon.svg",
  41282. extra: 1941/1845,
  41283. bottom: 58/1999
  41284. }
  41285. },
  41286. },
  41287. [
  41288. {
  41289. name: "Normal",
  41290. height: math.unit(5, "feet"),
  41291. default: true
  41292. },
  41293. ]
  41294. ))
  41295. characterMakers.push(() => makeCharacter(
  41296. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41297. {
  41298. front: {
  41299. height: math.unit(8, "feet"),
  41300. weight: math.unit(300, "lb"),
  41301. name: "Front",
  41302. image: {
  41303. source: "./media/characters/raxinath/front.svg",
  41304. extra: 1407/1309,
  41305. bottom: 39/1446
  41306. }
  41307. },
  41308. back: {
  41309. height: math.unit(8, "feet"),
  41310. weight: math.unit(300, "lb"),
  41311. name: "Back",
  41312. image: {
  41313. source: "./media/characters/raxinath/back.svg",
  41314. extra: 1405/1315,
  41315. bottom: 9/1414
  41316. }
  41317. },
  41318. },
  41319. [
  41320. {
  41321. name: "Speck",
  41322. height: math.unit(0.5, "nm")
  41323. },
  41324. {
  41325. name: "Micro",
  41326. height: math.unit(3, "inches")
  41327. },
  41328. {
  41329. name: "Kobold",
  41330. height: math.unit(3, "feet")
  41331. },
  41332. {
  41333. name: "Normal",
  41334. height: math.unit(8, "feet"),
  41335. default: true
  41336. },
  41337. {
  41338. name: "Giant",
  41339. height: math.unit(50, "feet")
  41340. },
  41341. {
  41342. name: "Macro",
  41343. height: math.unit(1000, "feet")
  41344. },
  41345. {
  41346. name: "Megamacro",
  41347. height: math.unit(1, "mile")
  41348. },
  41349. ]
  41350. ))
  41351. characterMakers.push(() => makeCharacter(
  41352. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41353. {
  41354. front: {
  41355. height: math.unit(10, "feet"),
  41356. weight: math.unit(1442, "lb"),
  41357. name: "Front",
  41358. image: {
  41359. source: "./media/characters/mal-dragon/front.svg",
  41360. extra: 1515/1444,
  41361. bottom: 113/1628
  41362. }
  41363. },
  41364. back: {
  41365. height: math.unit(10, "feet"),
  41366. weight: math.unit(1442, "lb"),
  41367. name: "Back",
  41368. image: {
  41369. source: "./media/characters/mal-dragon/back.svg",
  41370. extra: 1527/1434,
  41371. bottom: 25/1552
  41372. }
  41373. },
  41374. },
  41375. [
  41376. {
  41377. name: "Mortal Interaction",
  41378. height: math.unit(10, "feet"),
  41379. default: true
  41380. },
  41381. {
  41382. name: "Large",
  41383. height: math.unit(30, "feet")
  41384. },
  41385. {
  41386. name: "Kaiju",
  41387. height: math.unit(300, "feet")
  41388. },
  41389. {
  41390. name: "Megamacro",
  41391. height: math.unit(10000, "feet")
  41392. },
  41393. {
  41394. name: "Continent Cracker",
  41395. height: math.unit(30000000, "feet")
  41396. },
  41397. {
  41398. name: "Sol-Swallowing",
  41399. height: math.unit(1e11, "feet")
  41400. },
  41401. {
  41402. name: "Light Universal",
  41403. height: math.unit(5, "universes")
  41404. },
  41405. {
  41406. name: "Universe Atoms",
  41407. height: math.unit(1.829e9, "universes")
  41408. },
  41409. {
  41410. name: "Light Multiversal",
  41411. height: math.unit(5, "multiverses")
  41412. },
  41413. {
  41414. name: "Multiverse Atoms",
  41415. height: math.unit(1.829e9, "multiverses")
  41416. },
  41417. {
  41418. name: "Fabric of Time",
  41419. height: math.unit(1e262, "multiverses")
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41425. {
  41426. front: {
  41427. height: math.unit(9, "feet"),
  41428. weight: math.unit(1050, "lb"),
  41429. name: "Front",
  41430. image: {
  41431. source: "./media/characters/tabitha/front.svg",
  41432. extra: 2083/1994,
  41433. bottom: 68/2151
  41434. }
  41435. },
  41436. },
  41437. [
  41438. {
  41439. name: "Baseline",
  41440. height: math.unit(9, "feet"),
  41441. default: true
  41442. },
  41443. {
  41444. name: "Giant",
  41445. height: math.unit(90, "feet")
  41446. },
  41447. {
  41448. name: "Macro",
  41449. height: math.unit(900, "feet")
  41450. },
  41451. {
  41452. name: "Megamacro",
  41453. height: math.unit(9000, "feet")
  41454. },
  41455. {
  41456. name: "City-Crushing",
  41457. height: math.unit(27000, "feet")
  41458. },
  41459. {
  41460. name: "Mountain-Mashing",
  41461. height: math.unit(90000, "feet")
  41462. },
  41463. {
  41464. name: "Nation Nemesis",
  41465. height: math.unit(9e6, "feet")
  41466. },
  41467. {
  41468. name: "Continent Cracker",
  41469. height: math.unit(27e6, "feet")
  41470. },
  41471. {
  41472. name: "Earth-Eclipsing",
  41473. height: math.unit(2.7e8, "feet")
  41474. },
  41475. {
  41476. name: "Gas Giant Gulper",
  41477. height: math.unit(2.7e9, "feet")
  41478. },
  41479. {
  41480. name: "Sol-Swallowing",
  41481. height: math.unit(9e10, "feet")
  41482. },
  41483. {
  41484. name: "Galaxy Gulper",
  41485. height: math.unit(9, "galaxies")
  41486. },
  41487. {
  41488. name: "Cosmos Churner",
  41489. height: math.unit(9, "universes")
  41490. },
  41491. ]
  41492. ))
  41493. characterMakers.push(() => makeCharacter(
  41494. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41495. {
  41496. front: {
  41497. height: math.unit(160, "cm"),
  41498. weight: math.unit(55, "kg"),
  41499. name: "Front",
  41500. image: {
  41501. source: "./media/characters/tow/front.svg",
  41502. extra: 1751/1722,
  41503. bottom: 74/1825
  41504. }
  41505. },
  41506. },
  41507. [
  41508. {
  41509. name: "Norm",
  41510. height: math.unit(160, "cm")
  41511. },
  41512. {
  41513. name: "Casual",
  41514. height: math.unit(3200, "m"),
  41515. default: true
  41516. },
  41517. {
  41518. name: "Show-Off",
  41519. height: math.unit(160, "km")
  41520. },
  41521. ]
  41522. ))
  41523. characterMakers.push(() => makeCharacter(
  41524. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41525. {
  41526. front: {
  41527. height: math.unit(7 + 11/12, "feet"),
  41528. weight: math.unit(342.8, "lb"),
  41529. name: "Front",
  41530. image: {
  41531. source: "./media/characters/vivian-orca-dragon/front.svg",
  41532. extra: 1890/1865,
  41533. bottom: 28/1918
  41534. }
  41535. },
  41536. },
  41537. [
  41538. {
  41539. name: "Micro",
  41540. height: math.unit(5, "inches")
  41541. },
  41542. {
  41543. name: "Normal",
  41544. height: math.unit(7 + 11/12, "feet"),
  41545. default: true
  41546. },
  41547. {
  41548. name: "Macro",
  41549. height: math.unit(395 + 7/12, "feet")
  41550. },
  41551. ]
  41552. ))
  41553. characterMakers.push(() => makeCharacter(
  41554. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41555. {
  41556. side: {
  41557. height: math.unit(10, "feet"),
  41558. weight: math.unit(1442, "lb"),
  41559. name: "Side",
  41560. image: {
  41561. source: "./media/characters/lotherakon/side.svg",
  41562. extra: 1604/1497,
  41563. bottom: 89/1693
  41564. }
  41565. },
  41566. },
  41567. [
  41568. {
  41569. name: "Mortal Interaction",
  41570. height: math.unit(10, "feet")
  41571. },
  41572. {
  41573. name: "Large",
  41574. height: math.unit(30, "feet"),
  41575. default: true
  41576. },
  41577. {
  41578. name: "Giant",
  41579. height: math.unit(100, "feet")
  41580. },
  41581. {
  41582. name: "Kaiju",
  41583. height: math.unit(300, "feet")
  41584. },
  41585. {
  41586. name: "Macro",
  41587. height: math.unit(1000, "feet")
  41588. },
  41589. {
  41590. name: "Macro+",
  41591. height: math.unit(3000, "feet")
  41592. },
  41593. {
  41594. name: "Megamacro",
  41595. height: math.unit(10000, "feet")
  41596. },
  41597. {
  41598. name: "City-Crushing",
  41599. height: math.unit(30000, "feet")
  41600. },
  41601. {
  41602. name: "Continent Cracker",
  41603. height: math.unit(30e6, "feet")
  41604. },
  41605. {
  41606. name: "Earth Eclipsing",
  41607. height: math.unit(3e8, "feet")
  41608. },
  41609. {
  41610. name: "Gas Giant Gulper",
  41611. height: math.unit(3e9, "feet")
  41612. },
  41613. {
  41614. name: "Sol-Swallowing",
  41615. height: math.unit(1e11, "feet")
  41616. },
  41617. {
  41618. name: "System Swallower",
  41619. height: math.unit(3e14, "feet")
  41620. },
  41621. {
  41622. name: "Galaxy Gulper",
  41623. height: math.unit(10, "galaxies")
  41624. },
  41625. {
  41626. name: "Light Universal",
  41627. height: math.unit(5, "universes")
  41628. },
  41629. {
  41630. name: "Universe Palm",
  41631. height: math.unit(20, "universes")
  41632. },
  41633. {
  41634. name: "Light Multiversal",
  41635. height: math.unit(5, "multiverses")
  41636. },
  41637. {
  41638. name: "Multiverse Palm",
  41639. height: math.unit(20, "multiverses")
  41640. },
  41641. {
  41642. name: "Inferno Incarnate",
  41643. height: math.unit(1e7, "multiverses")
  41644. },
  41645. ]
  41646. ))
  41647. characterMakers.push(() => makeCharacter(
  41648. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41649. {
  41650. front: {
  41651. height: math.unit(8, "feet"),
  41652. weight: math.unit(1200, "lb"),
  41653. name: "Front",
  41654. image: {
  41655. source: "./media/characters/malithee/front.svg",
  41656. extra: 1675/1640,
  41657. bottom: 162/1837
  41658. }
  41659. },
  41660. },
  41661. [
  41662. {
  41663. name: "Mortal Interaction",
  41664. height: math.unit(8, "feet"),
  41665. default: true
  41666. },
  41667. {
  41668. name: "Large",
  41669. height: math.unit(24, "feet")
  41670. },
  41671. {
  41672. name: "Kaiju",
  41673. height: math.unit(240, "feet")
  41674. },
  41675. {
  41676. name: "Megamacro",
  41677. height: math.unit(8000, "feet")
  41678. },
  41679. {
  41680. name: "Continent Cracker",
  41681. height: math.unit(24e6, "feet")
  41682. },
  41683. {
  41684. name: "Earth-Eclipsing",
  41685. height: math.unit(2.4e8, "feet")
  41686. },
  41687. {
  41688. name: "Sol-Swallowing",
  41689. height: math.unit(8e10, "feet")
  41690. },
  41691. {
  41692. name: "Galaxy Gulper",
  41693. height: math.unit(8, "galaxies")
  41694. },
  41695. {
  41696. name: "Light Universal",
  41697. height: math.unit(4, "universes")
  41698. },
  41699. {
  41700. name: "Universe Atoms",
  41701. height: math.unit(1.829e9, "universes")
  41702. },
  41703. {
  41704. name: "Light Multiversal",
  41705. height: math.unit(4, "multiverses")
  41706. },
  41707. {
  41708. name: "Multiverse Atoms",
  41709. height: math.unit(1.829e9, "multiverses")
  41710. },
  41711. {
  41712. name: "Nigh-Omnipresence",
  41713. height: math.unit(8e261, "multiverses")
  41714. },
  41715. ]
  41716. ))
  41717. characterMakers.push(() => makeCharacter(
  41718. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41719. {
  41720. front: {
  41721. height: math.unit(10, "feet"),
  41722. weight: math.unit(1500, "lb"),
  41723. name: "Front",
  41724. image: {
  41725. source: "./media/characters/miles-thestia/front.svg",
  41726. extra: 1812/1727,
  41727. bottom: 86/1898
  41728. }
  41729. },
  41730. back: {
  41731. height: math.unit(10, "feet"),
  41732. weight: math.unit(1500, "lb"),
  41733. name: "Back",
  41734. image: {
  41735. source: "./media/characters/miles-thestia/back.svg",
  41736. extra: 1799/1690,
  41737. bottom: 47/1846
  41738. }
  41739. },
  41740. frontNsfw: {
  41741. height: math.unit(10, "feet"),
  41742. weight: math.unit(1500, "lb"),
  41743. name: "Front (NSFW)",
  41744. image: {
  41745. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41746. extra: 1812/1727,
  41747. bottom: 86/1898
  41748. }
  41749. },
  41750. },
  41751. [
  41752. {
  41753. name: "Mini-Macro",
  41754. height: math.unit(10, "feet"),
  41755. default: true
  41756. },
  41757. ]
  41758. ))
  41759. characterMakers.push(() => makeCharacter(
  41760. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41761. {
  41762. front: {
  41763. height: math.unit(25, "feet"),
  41764. name: "Front",
  41765. image: {
  41766. source: "./media/characters/titan-s-wulf/front.svg",
  41767. extra: 1560/1484,
  41768. bottom: 76/1636
  41769. }
  41770. },
  41771. },
  41772. [
  41773. {
  41774. name: "Smallest",
  41775. height: math.unit(25, "feet"),
  41776. default: true
  41777. },
  41778. {
  41779. name: "Normal",
  41780. height: math.unit(200, "feet")
  41781. },
  41782. {
  41783. name: "Macro",
  41784. height: math.unit(200000, "feet")
  41785. },
  41786. {
  41787. name: "Multiversal Original",
  41788. height: math.unit(10000, "multiverses")
  41789. },
  41790. ]
  41791. ))
  41792. characterMakers.push(() => makeCharacter(
  41793. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41794. {
  41795. front: {
  41796. height: math.unit(8, "feet"),
  41797. weight: math.unit(553, "lb"),
  41798. name: "Front",
  41799. image: {
  41800. source: "./media/characters/tawendeh/front.svg",
  41801. extra: 2365/2268,
  41802. bottom: 83/2448
  41803. }
  41804. },
  41805. frontClothed: {
  41806. height: math.unit(8, "feet"),
  41807. weight: math.unit(553, "lb"),
  41808. name: "Front (Clothed)",
  41809. image: {
  41810. source: "./media/characters/tawendeh/front-clothed.svg",
  41811. extra: 2365/2268,
  41812. bottom: 83/2448
  41813. }
  41814. },
  41815. back: {
  41816. height: math.unit(8, "feet"),
  41817. weight: math.unit(553, "lb"),
  41818. name: "Back",
  41819. image: {
  41820. source: "./media/characters/tawendeh/back.svg",
  41821. extra: 2397/2294,
  41822. bottom: 42/2439
  41823. }
  41824. },
  41825. },
  41826. [
  41827. {
  41828. name: "Mortal Interaction",
  41829. height: math.unit(8, "feet"),
  41830. default: true
  41831. },
  41832. {
  41833. name: "Giant",
  41834. height: math.unit(80, "feet")
  41835. },
  41836. {
  41837. name: "Macro",
  41838. height: math.unit(800, "feet")
  41839. },
  41840. {
  41841. name: "Megamacro",
  41842. height: math.unit(8000, "feet")
  41843. },
  41844. {
  41845. name: "City-Crushing",
  41846. height: math.unit(24000, "feet")
  41847. },
  41848. {
  41849. name: "Mountain-Mashing",
  41850. height: math.unit(80000, "feet")
  41851. },
  41852. {
  41853. name: "Nation Nemesis",
  41854. height: math.unit(8e6, "feet")
  41855. },
  41856. {
  41857. name: "Continent Cracker",
  41858. height: math.unit(24e6, "feet")
  41859. },
  41860. {
  41861. name: "Earth-Eclipsing",
  41862. height: math.unit(2.4e8, "feet")
  41863. },
  41864. {
  41865. name: "Gas Giant Gulper",
  41866. height: math.unit(2.4e9, "feet")
  41867. },
  41868. {
  41869. name: "Sol-Swallowing",
  41870. height: math.unit(8e10, "feet")
  41871. },
  41872. {
  41873. name: "Galaxy Gulper",
  41874. height: math.unit(8, "galaxies")
  41875. },
  41876. {
  41877. name: "Cosmos Churner",
  41878. height: math.unit(8, "universes")
  41879. },
  41880. {
  41881. name: "Omnipotent Otter",
  41882. height: math.unit(80, "universes")
  41883. },
  41884. ]
  41885. ))
  41886. characterMakers.push(() => makeCharacter(
  41887. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  41888. {
  41889. front: {
  41890. height: math.unit(2.6, "meters"),
  41891. weight: math.unit(900, "kg"),
  41892. name: "Front",
  41893. image: {
  41894. source: "./media/characters/neesha/front.svg",
  41895. extra: 1803/1653,
  41896. bottom: 128/1931
  41897. }
  41898. },
  41899. },
  41900. [
  41901. {
  41902. name: "Normal",
  41903. height: math.unit(2.6, "meters"),
  41904. default: true
  41905. },
  41906. {
  41907. name: "Macro",
  41908. height: math.unit(50, "meters")
  41909. },
  41910. ]
  41911. ))
  41912. characterMakers.push(() => makeCharacter(
  41913. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  41914. {
  41915. front: {
  41916. height: math.unit(5, "feet"),
  41917. weight: math.unit(185, "lb"),
  41918. name: "Front",
  41919. image: {
  41920. source: "./media/characters/kyera/front.svg",
  41921. extra: 1875/1790,
  41922. bottom: 96/1971
  41923. }
  41924. },
  41925. },
  41926. [
  41927. {
  41928. name: "Normal",
  41929. height: math.unit(5, "feet"),
  41930. default: true
  41931. },
  41932. ]
  41933. ))
  41934. characterMakers.push(() => makeCharacter(
  41935. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  41936. {
  41937. front: {
  41938. height: math.unit(7 + 6/12, "feet"),
  41939. weight: math.unit(540, "lb"),
  41940. name: "Front",
  41941. image: {
  41942. source: "./media/characters/yuko/front.svg",
  41943. extra: 1282/1222,
  41944. bottom: 101/1383
  41945. }
  41946. },
  41947. frontClothed: {
  41948. height: math.unit(7 + 6/12, "feet"),
  41949. weight: math.unit(540, "lb"),
  41950. name: "Front (Clothed)",
  41951. image: {
  41952. source: "./media/characters/yuko/front-clothed.svg",
  41953. extra: 1282/1222,
  41954. bottom: 101/1383
  41955. }
  41956. },
  41957. },
  41958. [
  41959. {
  41960. name: "Normal",
  41961. height: math.unit(7 + 6/12, "feet"),
  41962. default: true
  41963. },
  41964. {
  41965. name: "Macro",
  41966. height: math.unit(26 + 9/12, "feet")
  41967. },
  41968. {
  41969. name: "Megamacro",
  41970. height: math.unit(300, "feet")
  41971. },
  41972. {
  41973. name: "Gigamacro",
  41974. height: math.unit(5000, "feet")
  41975. },
  41976. {
  41977. name: "Planetary",
  41978. height: math.unit(10000, "miles")
  41979. },
  41980. ]
  41981. ))
  41982. characterMakers.push(() => makeCharacter(
  41983. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  41984. {
  41985. front: {
  41986. height: math.unit(8 + 2/12, "feet"),
  41987. weight: math.unit(600, "lb"),
  41988. name: "Front",
  41989. image: {
  41990. source: "./media/characters/deam-nitrel/front.svg",
  41991. extra: 1308/1234,
  41992. bottom: 125/1433
  41993. }
  41994. },
  41995. },
  41996. [
  41997. {
  41998. name: "Normal",
  41999. height: math.unit(8 + 2/12, "feet"),
  42000. default: true
  42001. },
  42002. ]
  42003. ))
  42004. characterMakers.push(() => makeCharacter(
  42005. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42006. {
  42007. front: {
  42008. height: math.unit(6.1, "feet"),
  42009. weight: math.unit(180, "lb"),
  42010. name: "Front",
  42011. image: {
  42012. source: "./media/characters/skyress/front.svg",
  42013. extra: 1045/915,
  42014. bottom: 28/1073
  42015. }
  42016. },
  42017. maw: {
  42018. height: math.unit(1, "feet"),
  42019. name: "Maw",
  42020. image: {
  42021. source: "./media/characters/skyress/maw.svg"
  42022. }
  42023. },
  42024. },
  42025. [
  42026. {
  42027. name: "Normal",
  42028. height: math.unit(6.1, "feet"),
  42029. default: true
  42030. },
  42031. {
  42032. name: "Macro",
  42033. height: math.unit(200, "feet")
  42034. },
  42035. ]
  42036. ))
  42037. characterMakers.push(() => makeCharacter(
  42038. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42039. {
  42040. front: {
  42041. height: math.unit(4 + 2/12, "feet"),
  42042. weight: math.unit(40, "kg"),
  42043. name: "Front",
  42044. image: {
  42045. source: "./media/characters/amethyst-jones/front.svg",
  42046. extra: 1220/1150,
  42047. bottom: 101/1321
  42048. }
  42049. },
  42050. },
  42051. [
  42052. {
  42053. name: "Normal",
  42054. height: math.unit(4 + 2/12, "feet"),
  42055. default: true
  42056. },
  42057. ]
  42058. ))
  42059. characterMakers.push(() => makeCharacter(
  42060. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42061. {
  42062. front: {
  42063. height: math.unit(1.7, "m"),
  42064. weight: math.unit(135, "lb"),
  42065. name: "Front",
  42066. image: {
  42067. source: "./media/characters/jade/front.svg",
  42068. extra: 1818/1767,
  42069. bottom: 32/1850
  42070. }
  42071. },
  42072. back: {
  42073. height: math.unit(1.7, "m"),
  42074. weight: math.unit(135, "lb"),
  42075. name: "Back",
  42076. image: {
  42077. source: "./media/characters/jade/back.svg",
  42078. extra: 1869/1809,
  42079. bottom: 35/1904
  42080. }
  42081. },
  42082. hand: {
  42083. height: math.unit(0.24, "m"),
  42084. name: "Hand",
  42085. image: {
  42086. source: "./media/characters/jade/hand.svg"
  42087. }
  42088. },
  42089. foot: {
  42090. height: math.unit(0.263, "m"),
  42091. name: "Foot",
  42092. image: {
  42093. source: "./media/characters/jade/foot.svg"
  42094. }
  42095. },
  42096. dick: {
  42097. height: math.unit(0.47, "m"),
  42098. name: "Dick",
  42099. image: {
  42100. source: "./media/characters/jade/dick.svg"
  42101. }
  42102. },
  42103. },
  42104. [
  42105. {
  42106. name: "Micro",
  42107. height: math.unit(22, "cm")
  42108. },
  42109. {
  42110. name: "Normal",
  42111. height: math.unit(1.7, "m"),
  42112. default: true
  42113. },
  42114. {
  42115. name: "Macro",
  42116. height: math.unit(152, "m")
  42117. },
  42118. ]
  42119. ))
  42120. characterMakers.push(() => makeCharacter(
  42121. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42122. {
  42123. front: {
  42124. height: math.unit(100, "miles"),
  42125. weight: math.unit(20000, "tons"),
  42126. name: "Front",
  42127. image: {
  42128. source: "./media/characters/cookie/front.svg",
  42129. extra: 1125/1070,
  42130. bottom: 30/1155
  42131. }
  42132. },
  42133. },
  42134. [
  42135. {
  42136. name: "Big",
  42137. height: math.unit(50, "feet")
  42138. },
  42139. {
  42140. name: "Macro",
  42141. height: math.unit(100, "miles"),
  42142. default: true
  42143. },
  42144. {
  42145. name: "Megamacro",
  42146. height: math.unit(90000, "miles")
  42147. },
  42148. ]
  42149. ))
  42150. characterMakers.push(() => makeCharacter(
  42151. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42152. {
  42153. front: {
  42154. height: math.unit(6, "feet"),
  42155. weight: math.unit(145, "lb"),
  42156. name: "Front",
  42157. image: {
  42158. source: "./media/characters/farzian/front.svg",
  42159. extra: 1902/1693,
  42160. bottom: 108/2010
  42161. }
  42162. },
  42163. },
  42164. [
  42165. {
  42166. name: "Macro",
  42167. height: math.unit(500, "feet"),
  42168. default: true
  42169. },
  42170. ]
  42171. ))
  42172. characterMakers.push(() => makeCharacter(
  42173. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42174. {
  42175. front: {
  42176. height: math.unit(3 + 6/12, "feet"),
  42177. weight: math.unit(50, "lb"),
  42178. name: "Front",
  42179. image: {
  42180. source: "./media/characters/kimberly-tilson/front.svg",
  42181. extra: 1400/1322,
  42182. bottom: 36/1436
  42183. }
  42184. },
  42185. back: {
  42186. height: math.unit(3 + 6/12, "feet"),
  42187. weight: math.unit(50, "lb"),
  42188. name: "Back",
  42189. image: {
  42190. source: "./media/characters/kimberly-tilson/back.svg",
  42191. extra: 1370/1307,
  42192. bottom: 20/1390
  42193. }
  42194. },
  42195. },
  42196. [
  42197. {
  42198. name: "Normal",
  42199. height: math.unit(3 + 6/12, "feet"),
  42200. default: true
  42201. },
  42202. ]
  42203. ))
  42204. characterMakers.push(() => makeCharacter(
  42205. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42206. {
  42207. front: {
  42208. height: math.unit(1148, "feet"),
  42209. weight: math.unit(34057, "lb"),
  42210. name: "Front",
  42211. image: {
  42212. source: "./media/characters/harthos/front.svg",
  42213. extra: 1391/1339,
  42214. bottom: 13/1404
  42215. }
  42216. },
  42217. },
  42218. [
  42219. {
  42220. name: "Macro",
  42221. height: math.unit(1148, "feet"),
  42222. default: true
  42223. },
  42224. ]
  42225. ))
  42226. characterMakers.push(() => makeCharacter(
  42227. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42228. {
  42229. front: {
  42230. height: math.unit(15, "feet"),
  42231. name: "Front",
  42232. image: {
  42233. source: "./media/characters/hypatia/front.svg",
  42234. extra: 1653/1591,
  42235. bottom: 79/1732
  42236. }
  42237. },
  42238. },
  42239. [
  42240. {
  42241. name: "Normal",
  42242. height: math.unit(15, "feet")
  42243. },
  42244. {
  42245. name: "Small",
  42246. height: math.unit(300, "feet")
  42247. },
  42248. {
  42249. name: "Macro",
  42250. height: math.unit(2500, "feet"),
  42251. default: true
  42252. },
  42253. {
  42254. name: "Mega Macro",
  42255. height: math.unit(1500, "miles")
  42256. },
  42257. {
  42258. name: "Giga Macro",
  42259. height: math.unit(1.5e6, "miles")
  42260. },
  42261. ]
  42262. ))
  42263. characterMakers.push(() => makeCharacter(
  42264. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42265. {
  42266. front: {
  42267. height: math.unit(6, "feet"),
  42268. weight: math.unit(200, "lb"),
  42269. name: "Front",
  42270. image: {
  42271. source: "./media/characters/wulver/front.svg",
  42272. extra: 1724/1632,
  42273. bottom: 130/1854
  42274. }
  42275. },
  42276. frontNsfw: {
  42277. height: math.unit(6, "feet"),
  42278. weight: math.unit(200, "lb"),
  42279. name: "Front (NSFW)",
  42280. image: {
  42281. source: "./media/characters/wulver/front-nsfw.svg",
  42282. extra: 1724/1632,
  42283. bottom: 130/1854
  42284. }
  42285. },
  42286. },
  42287. [
  42288. {
  42289. name: "Human-Sized",
  42290. height: math.unit(6, "feet")
  42291. },
  42292. {
  42293. name: "Normal",
  42294. height: math.unit(4, "meters"),
  42295. default: true
  42296. },
  42297. {
  42298. name: "Large",
  42299. height: math.unit(6, "m")
  42300. },
  42301. ]
  42302. ))
  42303. characterMakers.push(() => makeCharacter(
  42304. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42305. {
  42306. front: {
  42307. height: math.unit(7, "feet"),
  42308. name: "Front",
  42309. image: {
  42310. source: "./media/characters/maru/front.svg",
  42311. extra: 1595/1570,
  42312. bottom: 0/1595
  42313. }
  42314. },
  42315. },
  42316. [
  42317. {
  42318. name: "Normal",
  42319. height: math.unit(7, "feet"),
  42320. default: true
  42321. },
  42322. {
  42323. name: "Macro",
  42324. height: math.unit(700, "feet")
  42325. },
  42326. {
  42327. name: "Mega Macro",
  42328. height: math.unit(25, "miles")
  42329. },
  42330. ]
  42331. ))
  42332. characterMakers.push(() => makeCharacter(
  42333. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42334. {
  42335. front: {
  42336. height: math.unit(6, "feet"),
  42337. weight: math.unit(170, "lb"),
  42338. name: "Front",
  42339. image: {
  42340. source: "./media/characters/xenon/front.svg",
  42341. extra: 1376/1305,
  42342. bottom: 56/1432
  42343. }
  42344. },
  42345. back: {
  42346. height: math.unit(6, "feet"),
  42347. weight: math.unit(170, "lb"),
  42348. name: "Back",
  42349. image: {
  42350. source: "./media/characters/xenon/back.svg",
  42351. extra: 1328/1259,
  42352. bottom: 95/1423
  42353. }
  42354. },
  42355. maw: {
  42356. height: math.unit(0.52, "feet"),
  42357. name: "Maw",
  42358. image: {
  42359. source: "./media/characters/xenon/maw.svg"
  42360. }
  42361. },
  42362. handLeft: {
  42363. height: math.unit(0.82 * 169 / 153, "feet"),
  42364. name: "Hand (Left)",
  42365. image: {
  42366. source: "./media/characters/xenon/hand-left.svg"
  42367. }
  42368. },
  42369. handRight: {
  42370. height: math.unit(0.82, "feet"),
  42371. name: "Hand (Right)",
  42372. image: {
  42373. source: "./media/characters/xenon/hand-right.svg"
  42374. }
  42375. },
  42376. footLeft: {
  42377. height: math.unit(1.13, "feet"),
  42378. name: "Foot (Left)",
  42379. image: {
  42380. source: "./media/characters/xenon/foot-left.svg"
  42381. }
  42382. },
  42383. footRight: {
  42384. height: math.unit(1.13 * 194 / 196, "feet"),
  42385. name: "Foot (Right)",
  42386. image: {
  42387. source: "./media/characters/xenon/foot-right.svg"
  42388. }
  42389. },
  42390. },
  42391. [
  42392. {
  42393. name: "Micro",
  42394. height: math.unit(0.8, "inches")
  42395. },
  42396. {
  42397. name: "Normal",
  42398. height: math.unit(6, "feet")
  42399. },
  42400. {
  42401. name: "Macro",
  42402. height: math.unit(50, "feet"),
  42403. default: true
  42404. },
  42405. {
  42406. name: "Macro+",
  42407. height: math.unit(250, "feet")
  42408. },
  42409. {
  42410. name: "Megamacro",
  42411. height: math.unit(1500, "feet")
  42412. },
  42413. ]
  42414. ))
  42415. characterMakers.push(() => makeCharacter(
  42416. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42417. {
  42418. front: {
  42419. height: math.unit(7 + 5/12, "feet"),
  42420. name: "Front",
  42421. image: {
  42422. source: "./media/characters/zane/front.svg",
  42423. extra: 1260/1203,
  42424. bottom: 94/1354
  42425. }
  42426. },
  42427. back: {
  42428. height: math.unit(5.05, "feet"),
  42429. name: "Back",
  42430. image: {
  42431. source: "./media/characters/zane/back.svg",
  42432. extra: 893/829,
  42433. bottom: 30/923
  42434. }
  42435. },
  42436. werewolf: {
  42437. height: math.unit(11, "feet"),
  42438. name: "Werewolf",
  42439. image: {
  42440. source: "./media/characters/zane/werewolf.svg",
  42441. extra: 1383/1323,
  42442. bottom: 89/1472
  42443. }
  42444. },
  42445. foot: {
  42446. height: math.unit(1.46, "feet"),
  42447. name: "Foot",
  42448. image: {
  42449. source: "./media/characters/zane/foot.svg"
  42450. }
  42451. },
  42452. footFront: {
  42453. height: math.unit(0.784, "feet"),
  42454. name: "Foot (Front)",
  42455. image: {
  42456. source: "./media/characters/zane/foot-front.svg"
  42457. }
  42458. },
  42459. dick: {
  42460. height: math.unit(1.95, "feet"),
  42461. name: "Dick",
  42462. image: {
  42463. source: "./media/characters/zane/dick.svg"
  42464. }
  42465. },
  42466. dickWerewolf: {
  42467. height: math.unit(3.77, "feet"),
  42468. name: "Dick (Werewolf)",
  42469. image: {
  42470. source: "./media/characters/zane/dick.svg"
  42471. }
  42472. },
  42473. },
  42474. [
  42475. {
  42476. name: "Normal",
  42477. height: math.unit(7 + 5/12, "feet"),
  42478. default: true
  42479. },
  42480. ]
  42481. ))
  42482. characterMakers.push(() => makeCharacter(
  42483. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42484. {
  42485. front: {
  42486. height: math.unit(6 + 2/12, "feet"),
  42487. weight: math.unit(284, "lb"),
  42488. name: "Front",
  42489. image: {
  42490. source: "./media/characters/benni-desparque/front.svg",
  42491. extra: 1353/1126,
  42492. bottom: 69/1422
  42493. }
  42494. },
  42495. },
  42496. [
  42497. {
  42498. name: "Civilian",
  42499. height: math.unit(6 + 2/12, "feet")
  42500. },
  42501. {
  42502. name: "Normal",
  42503. height: math.unit(98, "feet"),
  42504. default: true
  42505. },
  42506. {
  42507. name: "Kaiju Fighter",
  42508. height: math.unit(268, "feet")
  42509. },
  42510. ]
  42511. ))
  42512. characterMakers.push(() => makeCharacter(
  42513. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42514. {
  42515. front: {
  42516. height: math.unit(5, "feet"),
  42517. weight: math.unit(105, "lb"),
  42518. name: "Front",
  42519. image: {
  42520. source: "./media/characters/maxine/front.svg",
  42521. extra: 1386/1250,
  42522. bottom: 71/1457
  42523. }
  42524. },
  42525. },
  42526. [
  42527. {
  42528. name: "Normal",
  42529. height: math.unit(5, "feet"),
  42530. default: true
  42531. },
  42532. ]
  42533. ))
  42534. characterMakers.push(() => makeCharacter(
  42535. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42536. {
  42537. front: {
  42538. height: math.unit(11 + 7/12, "feet"),
  42539. weight: math.unit(9576, "lb"),
  42540. name: "Front",
  42541. image: {
  42542. source: "./media/characters/scaly/front.svg",
  42543. extra: 888/867,
  42544. bottom: 36/924
  42545. }
  42546. },
  42547. },
  42548. [
  42549. {
  42550. name: "Normal",
  42551. height: math.unit(11 + 7/12, "feet"),
  42552. default: true
  42553. },
  42554. ]
  42555. ))
  42556. characterMakers.push(() => makeCharacter(
  42557. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42558. {
  42559. front: {
  42560. height: math.unit(6 + 3/12, "feet"),
  42561. name: "Front",
  42562. image: {
  42563. source: "./media/characters/saelria/front.svg",
  42564. extra: 1243/1138,
  42565. bottom: 46/1289
  42566. }
  42567. },
  42568. },
  42569. [
  42570. {
  42571. name: "Micro",
  42572. height: math.unit(6, "inches"),
  42573. },
  42574. {
  42575. name: "Normal",
  42576. height: math.unit(6 + 3/12, "feet"),
  42577. default: true
  42578. },
  42579. {
  42580. name: "Macro",
  42581. height: math.unit(25, "feet")
  42582. },
  42583. ]
  42584. ))
  42585. characterMakers.push(() => makeCharacter(
  42586. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42587. {
  42588. front: {
  42589. height: math.unit(80, "meters"),
  42590. weight: math.unit(7000, "tonnes"),
  42591. name: "Front",
  42592. image: {
  42593. source: "./media/characters/tef/front.svg",
  42594. extra: 2036/1991,
  42595. bottom: 54/2090
  42596. }
  42597. },
  42598. back: {
  42599. height: math.unit(80, "meters"),
  42600. weight: math.unit(7000, "tonnes"),
  42601. name: "Back",
  42602. image: {
  42603. source: "./media/characters/tef/back.svg",
  42604. extra: 2036/1991,
  42605. bottom: 54/2090
  42606. }
  42607. },
  42608. },
  42609. [
  42610. {
  42611. name: "Macro",
  42612. height: math.unit(80, "meters"),
  42613. default: true
  42614. },
  42615. ]
  42616. ))
  42617. characterMakers.push(() => makeCharacter(
  42618. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42619. {
  42620. front: {
  42621. height: math.unit(13, "feet"),
  42622. weight: math.unit(6, "tons"),
  42623. name: "Front",
  42624. image: {
  42625. source: "./media/characters/rover/front.svg",
  42626. extra: 1233/1156,
  42627. bottom: 50/1283
  42628. }
  42629. },
  42630. back: {
  42631. height: math.unit(13, "feet"),
  42632. weight: math.unit(6, "tons"),
  42633. name: "Back",
  42634. image: {
  42635. source: "./media/characters/rover/back.svg",
  42636. extra: 1327/1258,
  42637. bottom: 39/1366
  42638. }
  42639. },
  42640. },
  42641. [
  42642. {
  42643. name: "Normal",
  42644. height: math.unit(13, "feet"),
  42645. default: true
  42646. },
  42647. {
  42648. name: "Macro",
  42649. height: math.unit(1300, "feet")
  42650. },
  42651. {
  42652. name: "Megamacro",
  42653. height: math.unit(1300, "miles")
  42654. },
  42655. {
  42656. name: "Gigamacro",
  42657. height: math.unit(1300000, "miles")
  42658. },
  42659. ]
  42660. ))
  42661. characterMakers.push(() => makeCharacter(
  42662. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42663. {
  42664. front: {
  42665. height: math.unit(6, "feet"),
  42666. weight: math.unit(150, "lb"),
  42667. name: "Front",
  42668. image: {
  42669. source: "./media/characters/ariz/front.svg",
  42670. extra: 1401/1346,
  42671. bottom: 5/1406
  42672. }
  42673. },
  42674. },
  42675. [
  42676. {
  42677. name: "Normal",
  42678. height: math.unit(10, "feet"),
  42679. default: true
  42680. },
  42681. ]
  42682. ))
  42683. characterMakers.push(() => makeCharacter(
  42684. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42685. {
  42686. front: {
  42687. height: math.unit(6, "feet"),
  42688. weight: math.unit(140, "lb"),
  42689. name: "Front",
  42690. image: {
  42691. source: "./media/characters/sigrun/front.svg",
  42692. extra: 1418/1359,
  42693. bottom: 27/1445
  42694. }
  42695. },
  42696. },
  42697. [
  42698. {
  42699. name: "Macro",
  42700. height: math.unit(35, "feet"),
  42701. default: true
  42702. },
  42703. ]
  42704. ))
  42705. characterMakers.push(() => makeCharacter(
  42706. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42707. {
  42708. front: {
  42709. height: math.unit(6, "feet"),
  42710. weight: math.unit(150, "lb"),
  42711. name: "Front",
  42712. image: {
  42713. source: "./media/characters/numin/front.svg",
  42714. extra: 1433/1388,
  42715. bottom: 12/1445
  42716. }
  42717. },
  42718. },
  42719. [
  42720. {
  42721. name: "Macro",
  42722. height: math.unit(21.5, "km"),
  42723. default: true
  42724. },
  42725. ]
  42726. ))
  42727. characterMakers.push(() => makeCharacter(
  42728. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42729. {
  42730. front: {
  42731. height: math.unit(6, "feet"),
  42732. weight: math.unit(463, "lb"),
  42733. name: "Front",
  42734. image: {
  42735. source: "./media/characters/melwa/front.svg",
  42736. extra: 1307/1248,
  42737. bottom: 93/1400
  42738. }
  42739. },
  42740. },
  42741. [
  42742. {
  42743. name: "Macro",
  42744. height: math.unit(50, "meters"),
  42745. default: true
  42746. },
  42747. ]
  42748. ))
  42749. characterMakers.push(() => makeCharacter(
  42750. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42751. {
  42752. front: {
  42753. height: math.unit(325, "feet"),
  42754. name: "Front",
  42755. image: {
  42756. source: "./media/characters/zorkaiju/front.svg",
  42757. extra: 1955/1814,
  42758. bottom: 40/1995
  42759. }
  42760. },
  42761. frontExtended: {
  42762. height: math.unit(325, "feet"),
  42763. name: "Front (Extended)",
  42764. image: {
  42765. source: "./media/characters/zorkaiju/front-extended.svg",
  42766. extra: 1955/1814,
  42767. bottom: 40/1995
  42768. }
  42769. },
  42770. side: {
  42771. height: math.unit(325, "feet"),
  42772. name: "Side",
  42773. image: {
  42774. source: "./media/characters/zorkaiju/side.svg",
  42775. extra: 1495/1396,
  42776. bottom: 17/1512
  42777. }
  42778. },
  42779. sideExtended: {
  42780. height: math.unit(325, "feet"),
  42781. name: "Side (Extended)",
  42782. image: {
  42783. source: "./media/characters/zorkaiju/side-extended.svg",
  42784. extra: 1495/1396,
  42785. bottom: 17/1512
  42786. }
  42787. },
  42788. back: {
  42789. height: math.unit(325, "feet"),
  42790. name: "Back",
  42791. image: {
  42792. source: "./media/characters/zorkaiju/back.svg",
  42793. extra: 1959/1821,
  42794. bottom: 31/1990
  42795. }
  42796. },
  42797. backExtended: {
  42798. height: math.unit(325, "feet"),
  42799. name: "Back (Extended)",
  42800. image: {
  42801. source: "./media/characters/zorkaiju/back-extended.svg",
  42802. extra: 1959/1821,
  42803. bottom: 31/1990
  42804. }
  42805. },
  42806. hand: {
  42807. height: math.unit(58.4, "feet"),
  42808. name: "Hand",
  42809. image: {
  42810. source: "./media/characters/zorkaiju/hand.svg"
  42811. }
  42812. },
  42813. handExtended: {
  42814. height: math.unit(61.4, "feet"),
  42815. name: "Hand (Extended)",
  42816. image: {
  42817. source: "./media/characters/zorkaiju/hand-extended.svg"
  42818. }
  42819. },
  42820. foot: {
  42821. height: math.unit(95, "feet"),
  42822. name: "Foot",
  42823. image: {
  42824. source: "./media/characters/zorkaiju/foot.svg"
  42825. }
  42826. },
  42827. leftArm: {
  42828. height: math.unit(59, "feet"),
  42829. name: "Left Arm",
  42830. image: {
  42831. source: "./media/characters/zorkaiju/left-arm.svg"
  42832. }
  42833. },
  42834. rightArm: {
  42835. height: math.unit(59, "feet"),
  42836. name: "Right Arm",
  42837. image: {
  42838. source: "./media/characters/zorkaiju/right-arm.svg"
  42839. }
  42840. },
  42841. leftArmExtended: {
  42842. height: math.unit(59 * 1.033546, "feet"),
  42843. name: "Left Arm (Extended)",
  42844. image: {
  42845. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42846. }
  42847. },
  42848. rightArmExtended: {
  42849. height: math.unit(59 * 1.0496, "feet"),
  42850. name: "Right Arm (Extended)",
  42851. image: {
  42852. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42853. }
  42854. },
  42855. tail: {
  42856. height: math.unit(104, "feet"),
  42857. name: "Tail",
  42858. image: {
  42859. source: "./media/characters/zorkaiju/tail.svg"
  42860. }
  42861. },
  42862. tailExtended: {
  42863. height: math.unit(104, "feet"),
  42864. name: "Tail (Extended)",
  42865. image: {
  42866. source: "./media/characters/zorkaiju/tail-extended.svg"
  42867. }
  42868. },
  42869. tailBottom: {
  42870. height: math.unit(104, "feet"),
  42871. name: "Tail Bottom",
  42872. image: {
  42873. source: "./media/characters/zorkaiju/tail-bottom.svg"
  42874. }
  42875. },
  42876. crystal: {
  42877. height: math.unit(27.54, "feet"),
  42878. name: "Crystal",
  42879. image: {
  42880. source: "./media/characters/zorkaiju/crystal.svg"
  42881. }
  42882. },
  42883. },
  42884. [
  42885. {
  42886. name: "Kaiju",
  42887. height: math.unit(325, "feet"),
  42888. default: true
  42889. },
  42890. ]
  42891. ))
  42892. characterMakers.push(() => makeCharacter(
  42893. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  42894. {
  42895. front: {
  42896. height: math.unit(6 + 1/12, "feet"),
  42897. weight: math.unit(115, "lb"),
  42898. name: "Front",
  42899. image: {
  42900. source: "./media/characters/bailey-belfry/front.svg",
  42901. extra: 1240/1121,
  42902. bottom: 101/1341
  42903. }
  42904. },
  42905. },
  42906. [
  42907. {
  42908. name: "Normal",
  42909. height: math.unit(6 + 1/12, "feet"),
  42910. default: true
  42911. },
  42912. ]
  42913. ))
  42914. characterMakers.push(() => makeCharacter(
  42915. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  42916. {
  42917. side: {
  42918. height: math.unit(4, "meters"),
  42919. weight: math.unit(250, "kg"),
  42920. name: "Side",
  42921. image: {
  42922. source: "./media/characters/blacky/side.svg",
  42923. extra: 1027/919,
  42924. bottom: 43/1070
  42925. }
  42926. },
  42927. maw: {
  42928. height: math.unit(1, "meters"),
  42929. name: "Maw",
  42930. image: {
  42931. source: "./media/characters/blacky/maw.svg"
  42932. }
  42933. },
  42934. paw: {
  42935. height: math.unit(1, "meters"),
  42936. name: "Paw",
  42937. image: {
  42938. source: "./media/characters/blacky/paw.svg"
  42939. }
  42940. },
  42941. },
  42942. [
  42943. {
  42944. name: "Normal",
  42945. height: math.unit(4, "meters"),
  42946. default: true
  42947. },
  42948. ]
  42949. ))
  42950. characterMakers.push(() => makeCharacter(
  42951. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  42952. {
  42953. front: {
  42954. height: math.unit(170, "cm"),
  42955. weight: math.unit(66, "kg"),
  42956. name: "Front",
  42957. image: {
  42958. source: "./media/characters/thux-ei/front.svg",
  42959. extra: 1109/1011,
  42960. bottom: 8/1117
  42961. }
  42962. },
  42963. },
  42964. [
  42965. {
  42966. name: "Normal",
  42967. height: math.unit(170, "cm"),
  42968. default: true
  42969. },
  42970. ]
  42971. ))
  42972. characterMakers.push(() => makeCharacter(
  42973. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  42974. {
  42975. front: {
  42976. height: math.unit(5, "feet"),
  42977. weight: math.unit(120, "lb"),
  42978. name: "Front",
  42979. image: {
  42980. source: "./media/characters/roxanne-voltaire/front.svg",
  42981. extra: 1901/1779,
  42982. bottom: 53/1954
  42983. }
  42984. },
  42985. },
  42986. [
  42987. {
  42988. name: "Normal",
  42989. height: math.unit(5, "feet"),
  42990. default: true
  42991. },
  42992. {
  42993. name: "Giant",
  42994. height: math.unit(50, "feet")
  42995. },
  42996. {
  42997. name: "Titan",
  42998. height: math.unit(500, "feet")
  42999. },
  43000. {
  43001. name: "Macro",
  43002. height: math.unit(5000, "feet")
  43003. },
  43004. {
  43005. name: "Megamacro",
  43006. height: math.unit(50000, "feet")
  43007. },
  43008. {
  43009. name: "Gigamacro",
  43010. height: math.unit(500000, "feet")
  43011. },
  43012. {
  43013. name: "Teramacro",
  43014. height: math.unit(5e6, "feet")
  43015. },
  43016. ]
  43017. ))
  43018. characterMakers.push(() => makeCharacter(
  43019. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43020. {
  43021. front: {
  43022. height: math.unit(6 + 2/12, "feet"),
  43023. name: "Front",
  43024. image: {
  43025. source: "./media/characters/squeaks/front.svg",
  43026. extra: 1823/1768,
  43027. bottom: 138/1961
  43028. }
  43029. },
  43030. },
  43031. [
  43032. {
  43033. name: "Micro",
  43034. height: math.unit(0.5, "inches")
  43035. },
  43036. {
  43037. name: "Normal",
  43038. height: math.unit(6 + 2/12, "feet"),
  43039. default: true
  43040. },
  43041. {
  43042. name: "Macro",
  43043. height: math.unit(600, "feet")
  43044. },
  43045. ]
  43046. ))
  43047. characterMakers.push(() => makeCharacter(
  43048. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43049. {
  43050. front: {
  43051. height: math.unit(1.72, "meters"),
  43052. name: "Front",
  43053. image: {
  43054. source: "./media/characters/archinger/front.svg",
  43055. extra: 1861/1675,
  43056. bottom: 125/1986
  43057. }
  43058. },
  43059. back: {
  43060. height: math.unit(1.72, "meters"),
  43061. name: "Back",
  43062. image: {
  43063. source: "./media/characters/archinger/back.svg",
  43064. extra: 1844/1701,
  43065. bottom: 104/1948
  43066. }
  43067. },
  43068. cock: {
  43069. height: math.unit(0.59, "feet"),
  43070. name: "Cock",
  43071. image: {
  43072. source: "./media/characters/archinger/cock.svg"
  43073. }
  43074. },
  43075. },
  43076. [
  43077. {
  43078. name: "Normal",
  43079. height: math.unit(1.72, "meters"),
  43080. default: true
  43081. },
  43082. {
  43083. name: "Macro",
  43084. height: math.unit(84, "meters")
  43085. },
  43086. {
  43087. name: "Macro+",
  43088. height: math.unit(112, "meters")
  43089. },
  43090. {
  43091. name: "Macro++",
  43092. height: math.unit(960, "meters")
  43093. },
  43094. {
  43095. name: "Macro+++",
  43096. height: math.unit(4, "km")
  43097. },
  43098. {
  43099. name: "Macro++++",
  43100. height: math.unit(48, "km")
  43101. },
  43102. {
  43103. name: "Macro+++++",
  43104. height: math.unit(4500, "km")
  43105. },
  43106. ]
  43107. ))
  43108. characterMakers.push(() => makeCharacter(
  43109. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43110. {
  43111. front: {
  43112. height: math.unit(5 + 5/12, "feet"),
  43113. name: "Front",
  43114. image: {
  43115. source: "./media/characters/alsnapz/front.svg",
  43116. extra: 1157/1065,
  43117. bottom: 42/1199
  43118. }
  43119. },
  43120. },
  43121. [
  43122. {
  43123. name: "Normal",
  43124. height: math.unit(5 + 5/12, "feet"),
  43125. default: true
  43126. },
  43127. ]
  43128. ))
  43129. characterMakers.push(() => makeCharacter(
  43130. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43131. {
  43132. side: {
  43133. height: math.unit(3.2, "earths"),
  43134. name: "Side",
  43135. image: {
  43136. source: "./media/characters/mag/side.svg",
  43137. extra: 1331/1008,
  43138. bottom: 52/1383
  43139. }
  43140. },
  43141. wing: {
  43142. height: math.unit(1.94, "earths"),
  43143. name: "Wing",
  43144. image: {
  43145. source: "./media/characters/mag/wing.svg"
  43146. }
  43147. },
  43148. dick: {
  43149. height: math.unit(1.8, "earths"),
  43150. name: "Dick",
  43151. image: {
  43152. source: "./media/characters/mag/dick.svg"
  43153. }
  43154. },
  43155. ass: {
  43156. height: math.unit(1.33, "earths"),
  43157. name: "Ass",
  43158. image: {
  43159. source: "./media/characters/mag/ass.svg"
  43160. }
  43161. },
  43162. head: {
  43163. height: math.unit(1.1, "earths"),
  43164. name: "Head",
  43165. image: {
  43166. source: "./media/characters/mag/head.svg"
  43167. }
  43168. },
  43169. maw: {
  43170. height: math.unit(1.62, "earths"),
  43171. name: "Maw",
  43172. image: {
  43173. source: "./media/characters/mag/maw.svg"
  43174. }
  43175. },
  43176. },
  43177. [
  43178. {
  43179. name: "Small",
  43180. height: math.unit(162, "feet")
  43181. },
  43182. {
  43183. name: "Normal",
  43184. height: math.unit(3.2, "earths"),
  43185. default: true
  43186. },
  43187. ]
  43188. ))
  43189. characterMakers.push(() => makeCharacter(
  43190. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43191. {
  43192. front: {
  43193. height: math.unit(512, "feet"),
  43194. weight: math.unit(63509, "tonnes"),
  43195. name: "Front",
  43196. image: {
  43197. source: "./media/characters/vorrel-harroc/front.svg",
  43198. extra: 1075/1063,
  43199. bottom: 62/1137
  43200. }
  43201. },
  43202. },
  43203. [
  43204. {
  43205. name: "Normal",
  43206. height: math.unit(10, "feet")
  43207. },
  43208. {
  43209. name: "Macro",
  43210. height: math.unit(512, "feet"),
  43211. default: true
  43212. },
  43213. {
  43214. name: "Megamacro",
  43215. height: math.unit(256, "miles")
  43216. },
  43217. {
  43218. name: "Gigamacro",
  43219. height: math.unit(4096, "miles")
  43220. },
  43221. ]
  43222. ))
  43223. characterMakers.push(() => makeCharacter(
  43224. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43225. {
  43226. side: {
  43227. height: math.unit(50, "feet"),
  43228. name: "Side",
  43229. image: {
  43230. source: "./media/characters/froimar/side.svg",
  43231. extra: 855/638,
  43232. bottom: 99/954
  43233. }
  43234. },
  43235. },
  43236. [
  43237. {
  43238. name: "Macro",
  43239. height: math.unit(50, "feet"),
  43240. default: true
  43241. },
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43246. {
  43247. front: {
  43248. height: math.unit(210, "miles"),
  43249. name: "Front",
  43250. image: {
  43251. source: "./media/characters/timothy/front.svg",
  43252. extra: 1007/943,
  43253. bottom: 62/1069
  43254. }
  43255. },
  43256. frontSkirt: {
  43257. height: math.unit(210, "miles"),
  43258. name: "Front (Skirt)",
  43259. image: {
  43260. source: "./media/characters/timothy/front-skirt.svg",
  43261. extra: 1007/943,
  43262. bottom: 62/1069
  43263. }
  43264. },
  43265. frontCoat: {
  43266. height: math.unit(210, "miles"),
  43267. name: "Front (Coat)",
  43268. image: {
  43269. source: "./media/characters/timothy/front-coat.svg",
  43270. extra: 1007/943,
  43271. bottom: 62/1069
  43272. }
  43273. },
  43274. },
  43275. [
  43276. {
  43277. name: "Macro",
  43278. height: math.unit(210, "miles"),
  43279. default: true
  43280. },
  43281. {
  43282. name: "Megamacro",
  43283. height: math.unit(210000, "miles")
  43284. },
  43285. ]
  43286. ))
  43287. characterMakers.push(() => makeCharacter(
  43288. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43289. {
  43290. front: {
  43291. height: math.unit(188, "feet"),
  43292. name: "Front",
  43293. image: {
  43294. source: "./media/characters/pyotr/front.svg",
  43295. extra: 1912/1826,
  43296. bottom: 18/1930
  43297. }
  43298. },
  43299. },
  43300. [
  43301. {
  43302. name: "Macro",
  43303. height: math.unit(188, "feet"),
  43304. default: true
  43305. },
  43306. {
  43307. name: "Megamacro",
  43308. height: math.unit(8, "miles")
  43309. },
  43310. ]
  43311. ))
  43312. characterMakers.push(() => makeCharacter(
  43313. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43314. {
  43315. side: {
  43316. height: math.unit(10, "feet"),
  43317. weight: math.unit(4500, "lb"),
  43318. name: "Side",
  43319. image: {
  43320. source: "./media/characters/ackart/side.svg",
  43321. extra: 1776/1668,
  43322. bottom: 116/1892
  43323. }
  43324. },
  43325. },
  43326. [
  43327. {
  43328. name: "Normal",
  43329. height: math.unit(10, "feet"),
  43330. default: true
  43331. },
  43332. ]
  43333. ))
  43334. characterMakers.push(() => makeCharacter(
  43335. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43336. {
  43337. side: {
  43338. height: math.unit(21, "feet"),
  43339. name: "Side",
  43340. image: {
  43341. source: "./media/characters/nolow/side.svg",
  43342. extra: 1484/1434,
  43343. bottom: 85/1569
  43344. }
  43345. },
  43346. sideErect: {
  43347. height: math.unit(21, "feet"),
  43348. name: "Side-erect",
  43349. image: {
  43350. source: "./media/characters/nolow/side-erect.svg",
  43351. extra: 1484/1434,
  43352. bottom: 85/1569
  43353. }
  43354. },
  43355. },
  43356. [
  43357. {
  43358. name: "Regular",
  43359. height: math.unit(12, "feet")
  43360. },
  43361. {
  43362. name: "Big Chee",
  43363. height: math.unit(21, "feet"),
  43364. default: true
  43365. },
  43366. ]
  43367. ))
  43368. characterMakers.push(() => makeCharacter(
  43369. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43370. {
  43371. front: {
  43372. height: math.unit(7, "feet"),
  43373. weight: math.unit(250, "lb"),
  43374. name: "Front",
  43375. image: {
  43376. source: "./media/characters/nines/front.svg",
  43377. extra: 1741/1607,
  43378. bottom: 41/1782
  43379. }
  43380. },
  43381. side: {
  43382. height: math.unit(7, "feet"),
  43383. weight: math.unit(250, "lb"),
  43384. name: "Side",
  43385. image: {
  43386. source: "./media/characters/nines/side.svg",
  43387. extra: 1854/1735,
  43388. bottom: 93/1947
  43389. }
  43390. },
  43391. back: {
  43392. height: math.unit(7, "feet"),
  43393. weight: math.unit(250, "lb"),
  43394. name: "Back",
  43395. image: {
  43396. source: "./media/characters/nines/back.svg",
  43397. extra: 1748/1615,
  43398. bottom: 20/1768
  43399. }
  43400. },
  43401. },
  43402. [
  43403. {
  43404. name: "Megamacro",
  43405. height: math.unit(99, "km"),
  43406. default: true
  43407. },
  43408. ]
  43409. ))
  43410. characterMakers.push(() => makeCharacter(
  43411. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43412. {
  43413. front: {
  43414. height: math.unit(5 + 10/12, "feet"),
  43415. weight: math.unit(210, "lb"),
  43416. name: "Front",
  43417. image: {
  43418. source: "./media/characters/zenith/front.svg",
  43419. extra: 1531/1452,
  43420. bottom: 198/1729
  43421. }
  43422. },
  43423. back: {
  43424. height: math.unit(5 + 10/12, "feet"),
  43425. weight: math.unit(210, "lb"),
  43426. name: "Back",
  43427. image: {
  43428. source: "./media/characters/zenith/back.svg",
  43429. extra: 1571/1487,
  43430. bottom: 75/1646
  43431. }
  43432. },
  43433. },
  43434. [
  43435. {
  43436. name: "Normal",
  43437. height: math.unit(5 + 10/12, "feet"),
  43438. default: true
  43439. }
  43440. ]
  43441. ))
  43442. characterMakers.push(() => makeCharacter(
  43443. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43444. {
  43445. front: {
  43446. height: math.unit(4, "feet"),
  43447. weight: math.unit(60, "lb"),
  43448. name: "Front",
  43449. image: {
  43450. source: "./media/characters/jasper/front.svg",
  43451. extra: 1450/1379,
  43452. bottom: 19/1469
  43453. }
  43454. },
  43455. },
  43456. [
  43457. {
  43458. name: "Normal",
  43459. height: math.unit(4, "feet"),
  43460. default: true
  43461. },
  43462. ]
  43463. ))
  43464. characterMakers.push(() => makeCharacter(
  43465. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43466. {
  43467. front: {
  43468. height: math.unit(6 + 5/12, "feet"),
  43469. weight: math.unit(290, "lb"),
  43470. name: "Front",
  43471. image: {
  43472. source: "./media/characters/tiberius-thyben/front.svg",
  43473. extra: 757/739,
  43474. bottom: 39/796
  43475. }
  43476. },
  43477. },
  43478. [
  43479. {
  43480. name: "Micro",
  43481. height: math.unit(1.5, "inches")
  43482. },
  43483. {
  43484. name: "Normal",
  43485. height: math.unit(6 + 5/12, "feet"),
  43486. default: true
  43487. },
  43488. {
  43489. name: "Macro",
  43490. height: math.unit(300, "feet")
  43491. },
  43492. ]
  43493. ))
  43494. characterMakers.push(() => makeCharacter(
  43495. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43496. {
  43497. front: {
  43498. height: math.unit(5 + 6/12, "feet"),
  43499. weight: math.unit(60, "kg"),
  43500. name: "Front",
  43501. image: {
  43502. source: "./media/characters/sabre/front.svg",
  43503. extra: 738/671,
  43504. bottom: 27/765
  43505. }
  43506. },
  43507. },
  43508. [
  43509. {
  43510. name: "Teeny",
  43511. height: math.unit(2, "inches")
  43512. },
  43513. {
  43514. name: "Smol",
  43515. height: math.unit(8, "inches")
  43516. },
  43517. {
  43518. name: "Normal",
  43519. height: math.unit(5 + 6/12, "feet"),
  43520. default: true
  43521. },
  43522. {
  43523. name: "Mini-Macro",
  43524. height: math.unit(15, "feet")
  43525. },
  43526. {
  43527. name: "Macro",
  43528. height: math.unit(50, "feet")
  43529. },
  43530. ]
  43531. ))
  43532. characterMakers.push(() => makeCharacter(
  43533. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43534. {
  43535. front: {
  43536. height: math.unit(6 + 4/12, "feet"),
  43537. weight: math.unit(170, "lb"),
  43538. name: "Front",
  43539. image: {
  43540. source: "./media/characters/charlie/front.svg",
  43541. extra: 1348/1228,
  43542. bottom: 15/1363
  43543. }
  43544. },
  43545. },
  43546. [
  43547. {
  43548. name: "Macro",
  43549. height: math.unit(1700, "meters"),
  43550. default: true
  43551. },
  43552. {
  43553. name: "MegaMacro",
  43554. height: math.unit(20400, "meters")
  43555. },
  43556. ]
  43557. ))
  43558. characterMakers.push(() => makeCharacter(
  43559. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43560. {
  43561. front: {
  43562. height: math.unit(6 + 3/12, "feet"),
  43563. weight: math.unit(185, "lb"),
  43564. name: "Front",
  43565. image: {
  43566. source: "./media/characters/susan-grant/front.svg",
  43567. extra: 1351/1327,
  43568. bottom: 26/1377
  43569. }
  43570. },
  43571. },
  43572. [
  43573. {
  43574. name: "Normal",
  43575. height: math.unit(6 + 3/12, "feet"),
  43576. default: true
  43577. },
  43578. {
  43579. name: "Macro",
  43580. height: math.unit(225, "feet")
  43581. },
  43582. {
  43583. name: "Macro+",
  43584. height: math.unit(900, "feet")
  43585. },
  43586. {
  43587. name: "MegaMacro",
  43588. height: math.unit(14400, "feet")
  43589. },
  43590. ]
  43591. ))
  43592. characterMakers.push(() => makeCharacter(
  43593. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43594. {
  43595. front: {
  43596. height: math.unit(5 + 4/12, "feet"),
  43597. weight: math.unit(110, "lb"),
  43598. name: "Front",
  43599. image: {
  43600. source: "./media/characters/axel-isanov/front.svg",
  43601. extra: 1096/1065,
  43602. bottom: 13/1109
  43603. }
  43604. },
  43605. },
  43606. [
  43607. {
  43608. name: "Normal",
  43609. height: math.unit(5 + 4/12, "feet"),
  43610. default: true
  43611. },
  43612. ]
  43613. ))
  43614. characterMakers.push(() => makeCharacter(
  43615. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43616. {
  43617. front: {
  43618. height: math.unit(9, "feet"),
  43619. weight: math.unit(467, "lb"),
  43620. name: "Front",
  43621. image: {
  43622. source: "./media/characters/necahual/front.svg",
  43623. extra: 920/873,
  43624. bottom: 26/946
  43625. }
  43626. },
  43627. back: {
  43628. height: math.unit(9, "feet"),
  43629. weight: math.unit(467, "lb"),
  43630. name: "Back",
  43631. image: {
  43632. source: "./media/characters/necahual/back.svg",
  43633. extra: 930/884,
  43634. bottom: 16/946
  43635. }
  43636. },
  43637. frontUnderwear: {
  43638. height: math.unit(9, "feet"),
  43639. weight: math.unit(467, "lb"),
  43640. name: "Front (Underwear)",
  43641. image: {
  43642. source: "./media/characters/necahual/front-underwear.svg",
  43643. extra: 920/873,
  43644. bottom: 26/946
  43645. }
  43646. },
  43647. frontDressed: {
  43648. height: math.unit(9, "feet"),
  43649. weight: math.unit(467, "lb"),
  43650. name: "Front (Dressed)",
  43651. image: {
  43652. source: "./media/characters/necahual/front-dressed.svg",
  43653. extra: 920/873,
  43654. bottom: 26/946
  43655. }
  43656. },
  43657. },
  43658. [
  43659. {
  43660. name: "Comprsesed",
  43661. height: math.unit(9, "feet")
  43662. },
  43663. {
  43664. name: "Natural",
  43665. height: math.unit(15, "feet"),
  43666. default: true
  43667. },
  43668. {
  43669. name: "Boosted",
  43670. height: math.unit(50, "feet")
  43671. },
  43672. {
  43673. name: "Boosted+",
  43674. height: math.unit(150, "feet")
  43675. },
  43676. {
  43677. name: "Max",
  43678. height: math.unit(500, "feet")
  43679. },
  43680. ]
  43681. ))
  43682. characterMakers.push(() => makeCharacter(
  43683. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43684. {
  43685. front: {
  43686. height: math.unit(22 + 1/12, "feet"),
  43687. weight: math.unit(3200, "lb"),
  43688. name: "Front",
  43689. image: {
  43690. source: "./media/characters/theo-acacia/front.svg",
  43691. extra: 1796/1741,
  43692. bottom: 83/1879
  43693. }
  43694. },
  43695. frontUnderwear: {
  43696. height: math.unit(22 + 1/12, "feet"),
  43697. weight: math.unit(3200, "lb"),
  43698. name: "Front (Underwear)",
  43699. image: {
  43700. source: "./media/characters/theo-acacia/front-underwear.svg",
  43701. extra: 1796/1741,
  43702. bottom: 83/1879
  43703. }
  43704. },
  43705. frontNude: {
  43706. height: math.unit(22 + 1/12, "feet"),
  43707. weight: math.unit(3200, "lb"),
  43708. name: "Front (Nude)",
  43709. image: {
  43710. source: "./media/characters/theo-acacia/front-nude.svg",
  43711. extra: 1796/1741,
  43712. bottom: 83/1879
  43713. }
  43714. },
  43715. },
  43716. [
  43717. {
  43718. name: "Normal",
  43719. height: math.unit(22 + 1/12, "feet"),
  43720. default: true
  43721. },
  43722. ]
  43723. ))
  43724. characterMakers.push(() => makeCharacter(
  43725. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43726. {
  43727. front: {
  43728. height: math.unit(20, "feet"),
  43729. name: "Front",
  43730. image: {
  43731. source: "./media/characters/astra/front.svg",
  43732. extra: 1850/1714,
  43733. bottom: 106/1956
  43734. }
  43735. },
  43736. frontUndressed: {
  43737. height: math.unit(20, "feet"),
  43738. name: "Front (Undressed)",
  43739. image: {
  43740. source: "./media/characters/astra/front-undressed.svg",
  43741. extra: 1926/1749,
  43742. bottom: 0/1926
  43743. }
  43744. },
  43745. hand: {
  43746. height: math.unit(1.53, "feet"),
  43747. name: "Hand",
  43748. image: {
  43749. source: "./media/characters/astra/hand.svg"
  43750. }
  43751. },
  43752. paw: {
  43753. height: math.unit(1.53, "feet"),
  43754. name: "Paw",
  43755. image: {
  43756. source: "./media/characters/astra/paw.svg"
  43757. }
  43758. },
  43759. },
  43760. [
  43761. {
  43762. name: "Smallest",
  43763. height: math.unit(20, "feet")
  43764. },
  43765. {
  43766. name: "Normal",
  43767. height: math.unit(1e9, "miles"),
  43768. default: true
  43769. },
  43770. {
  43771. name: "Larger",
  43772. height: math.unit(5, "multiverses")
  43773. },
  43774. {
  43775. name: "Largest",
  43776. height: math.unit(1e9, "multiverses")
  43777. },
  43778. ]
  43779. ))
  43780. characterMakers.push(() => makeCharacter(
  43781. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43782. {
  43783. front: {
  43784. height: math.unit(8, "feet"),
  43785. name: "Front",
  43786. image: {
  43787. source: "./media/characters/breanna/front.svg",
  43788. extra: 1912/1632,
  43789. bottom: 33/1945
  43790. }
  43791. },
  43792. },
  43793. [
  43794. {
  43795. name: "Smallest",
  43796. height: math.unit(8, "feet")
  43797. },
  43798. {
  43799. name: "Normal",
  43800. height: math.unit(1, "mile"),
  43801. default: true
  43802. },
  43803. {
  43804. name: "Maximum",
  43805. height: math.unit(1500000000000, "lightyears")
  43806. },
  43807. ]
  43808. ))
  43809. characterMakers.push(() => makeCharacter(
  43810. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43811. {
  43812. front: {
  43813. height: math.unit(5 + 11/12, "feet"),
  43814. weight: math.unit(155, "lb"),
  43815. name: "Front",
  43816. image: {
  43817. source: "./media/characters/cai/front.svg",
  43818. extra: 1823/1702,
  43819. bottom: 32/1855
  43820. }
  43821. },
  43822. back: {
  43823. height: math.unit(5 + 11/12, "feet"),
  43824. weight: math.unit(155, "lb"),
  43825. name: "Back",
  43826. image: {
  43827. source: "./media/characters/cai/back.svg",
  43828. extra: 1809/1708,
  43829. bottom: 31/1840
  43830. }
  43831. },
  43832. },
  43833. [
  43834. {
  43835. name: "Normal",
  43836. height: math.unit(5 + 11/12, "feet"),
  43837. default: true
  43838. },
  43839. {
  43840. name: "Big",
  43841. height: math.unit(15, "feet")
  43842. },
  43843. {
  43844. name: "Macro",
  43845. height: math.unit(200, "feet")
  43846. },
  43847. ]
  43848. ))
  43849. characterMakers.push(() => makeCharacter(
  43850. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43851. {
  43852. front: {
  43853. height: math.unit(5 + 6/12, "feet"),
  43854. weight: math.unit(160, "lb"),
  43855. name: "Front",
  43856. image: {
  43857. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43858. extra: 1227/1174,
  43859. bottom: 37/1264
  43860. }
  43861. },
  43862. },
  43863. [
  43864. {
  43865. name: "Macro",
  43866. height: math.unit(444, "meters"),
  43867. default: true
  43868. },
  43869. ]
  43870. ))
  43871. characterMakers.push(() => makeCharacter(
  43872. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  43873. {
  43874. front: {
  43875. height: math.unit(18 + 7/12, "feet"),
  43876. name: "Front",
  43877. image: {
  43878. source: "./media/characters/rex/front.svg",
  43879. extra: 1941/1807,
  43880. bottom: 66/2007
  43881. }
  43882. },
  43883. back: {
  43884. height: math.unit(18 + 7/12, "feet"),
  43885. name: "Back",
  43886. image: {
  43887. source: "./media/characters/rex/back.svg",
  43888. extra: 1937/1822,
  43889. bottom: 42/1979
  43890. }
  43891. },
  43892. boot: {
  43893. height: math.unit(3.45, "feet"),
  43894. name: "Boot",
  43895. image: {
  43896. source: "./media/characters/rex/boot.svg"
  43897. }
  43898. },
  43899. paw: {
  43900. height: math.unit(4.17, "feet"),
  43901. name: "Paw",
  43902. image: {
  43903. source: "./media/characters/rex/paw.svg"
  43904. }
  43905. },
  43906. head: {
  43907. height: math.unit(6.728, "feet"),
  43908. name: "Head",
  43909. image: {
  43910. source: "./media/characters/rex/head.svg"
  43911. }
  43912. },
  43913. },
  43914. [
  43915. {
  43916. name: "Nano",
  43917. height: math.unit(18 + 7/12, "feet")
  43918. },
  43919. {
  43920. name: "Micro",
  43921. height: math.unit(1.5, "megameters")
  43922. },
  43923. {
  43924. name: "Normal",
  43925. height: math.unit(440, "megameters"),
  43926. default: true
  43927. },
  43928. {
  43929. name: "Macro",
  43930. height: math.unit(2.5, "gigameters")
  43931. },
  43932. {
  43933. name: "Gigamacro",
  43934. height: math.unit(2, "galaxies")
  43935. },
  43936. ]
  43937. ))
  43938. characterMakers.push(() => makeCharacter(
  43939. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  43940. {
  43941. side: {
  43942. height: math.unit(32, "feet"),
  43943. weight: math.unit(250000, "lb"),
  43944. name: "Side",
  43945. image: {
  43946. source: "./media/characters/silverwing/side.svg",
  43947. extra: 1100/1019,
  43948. bottom: 204/1304
  43949. }
  43950. },
  43951. },
  43952. [
  43953. {
  43954. name: "Normal",
  43955. height: math.unit(32, "feet"),
  43956. default: true
  43957. },
  43958. ]
  43959. ))
  43960. characterMakers.push(() => makeCharacter(
  43961. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  43962. {
  43963. front: {
  43964. height: math.unit(6 + 6/12, "feet"),
  43965. weight: math.unit(350, "lb"),
  43966. name: "Front",
  43967. image: {
  43968. source: "./media/characters/tristan-hawthorne/front.svg",
  43969. extra: 1159/1124,
  43970. bottom: 37/1196
  43971. },
  43972. form: "labrador",
  43973. default: true
  43974. },
  43975. skunkFront: {
  43976. height: math.unit(4 + 6/12, "feet"),
  43977. weight: math.unit(120, "lb"),
  43978. name: "Front",
  43979. image: {
  43980. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  43981. extra: 1609/1551,
  43982. bottom: 169/1778
  43983. },
  43984. form: "skunk",
  43985. default: true
  43986. },
  43987. },
  43988. [
  43989. {
  43990. name: "Normal",
  43991. height: math.unit(6 + 6/12, "feet"),
  43992. form: "labrador",
  43993. default: true
  43994. },
  43995. {
  43996. name: "Normal",
  43997. height: math.unit(4 + 6/12, "feet"),
  43998. form: "skunk",
  43999. default: true
  44000. },
  44001. ],
  44002. {
  44003. "labrador": {
  44004. name: "Labrador",
  44005. default: true
  44006. },
  44007. "skunk": {
  44008. name: "Skunk"
  44009. }
  44010. }
  44011. ))
  44012. characterMakers.push(() => makeCharacter(
  44013. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44014. {
  44015. front: {
  44016. height: math.unit(5 + 11/12, "feet"),
  44017. weight: math.unit(190, "lb"),
  44018. name: "Front",
  44019. image: {
  44020. source: "./media/characters/mizu/front.svg",
  44021. extra: 1988/1788,
  44022. bottom: 14/2002
  44023. }
  44024. },
  44025. },
  44026. [
  44027. {
  44028. name: "Normal",
  44029. height: math.unit(5 + 11/12, "feet"),
  44030. default: true
  44031. },
  44032. ]
  44033. ))
  44034. characterMakers.push(() => makeCharacter(
  44035. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44036. {
  44037. front: {
  44038. height: math.unit(1.7, "feet"),
  44039. weight: math.unit(50, "lb"),
  44040. name: "Front",
  44041. image: {
  44042. source: "./media/characters/dechroma/front.svg",
  44043. extra: 1095/859,
  44044. bottom: 64/1159
  44045. }
  44046. },
  44047. },
  44048. [
  44049. {
  44050. name: "Normal",
  44051. height: math.unit(1.7, "feet"),
  44052. default: true
  44053. },
  44054. ]
  44055. ))
  44056. characterMakers.push(() => makeCharacter(
  44057. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44058. {
  44059. side: {
  44060. height: math.unit(30, "feet"),
  44061. name: "Side",
  44062. image: {
  44063. source: "./media/characters/veluren-thanazel/side.svg",
  44064. extra: 1611/633,
  44065. bottom: 118/1729
  44066. }
  44067. },
  44068. front: {
  44069. height: math.unit(30, "feet"),
  44070. name: "Front",
  44071. image: {
  44072. source: "./media/characters/veluren-thanazel/front.svg",
  44073. extra: 1486/636,
  44074. bottom: 238/1724
  44075. }
  44076. },
  44077. head: {
  44078. height: math.unit(21.4, "feet"),
  44079. name: "Head",
  44080. image: {
  44081. source: "./media/characters/veluren-thanazel/head.svg"
  44082. }
  44083. },
  44084. genitals: {
  44085. height: math.unit(19.4, "feet"),
  44086. name: "Genitals",
  44087. image: {
  44088. source: "./media/characters/veluren-thanazel/genitals.svg"
  44089. }
  44090. },
  44091. },
  44092. [
  44093. {
  44094. name: "Social",
  44095. height: math.unit(6, "feet")
  44096. },
  44097. {
  44098. name: "Play",
  44099. height: math.unit(12, "feet")
  44100. },
  44101. {
  44102. name: "True",
  44103. height: math.unit(30, "feet"),
  44104. default: true
  44105. },
  44106. ]
  44107. ))
  44108. characterMakers.push(() => makeCharacter(
  44109. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44110. {
  44111. front: {
  44112. height: math.unit(7 + 6/12, "feet"),
  44113. weight: math.unit(500, "kg"),
  44114. name: "Front",
  44115. image: {
  44116. source: "./media/characters/arcturas/front.svg",
  44117. extra: 1700/1500,
  44118. bottom: 145/1845
  44119. }
  44120. },
  44121. },
  44122. [
  44123. {
  44124. name: "Normal",
  44125. height: math.unit(7 + 6/12, "feet"),
  44126. default: true
  44127. },
  44128. ]
  44129. ))
  44130. characterMakers.push(() => makeCharacter(
  44131. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44132. {
  44133. side: {
  44134. height: math.unit(6, "feet"),
  44135. weight: math.unit(2, "tons"),
  44136. name: "Side",
  44137. image: {
  44138. source: "./media/characters/vitaen/side.svg",
  44139. extra: 1157/617,
  44140. bottom: 122/1279
  44141. }
  44142. },
  44143. },
  44144. [
  44145. {
  44146. name: "Normal",
  44147. height: math.unit(6, "feet"),
  44148. default: true
  44149. },
  44150. ]
  44151. ))
  44152. characterMakers.push(() => makeCharacter(
  44153. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44154. {
  44155. front: {
  44156. height: math.unit(19, "feet"),
  44157. name: "Front",
  44158. image: {
  44159. source: "./media/characters/fia-dreamweaver/front.svg",
  44160. extra: 1630/1504,
  44161. bottom: 25/1655
  44162. }
  44163. },
  44164. },
  44165. [
  44166. {
  44167. name: "Normal",
  44168. height: math.unit(19, "feet"),
  44169. default: true
  44170. },
  44171. ]
  44172. ))
  44173. characterMakers.push(() => makeCharacter(
  44174. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44175. {
  44176. front: {
  44177. height: math.unit(5 + 4/12, "feet"),
  44178. name: "Front",
  44179. image: {
  44180. source: "./media/characters/artan/front.svg",
  44181. extra: 1618/1535,
  44182. bottom: 46/1664
  44183. }
  44184. },
  44185. back: {
  44186. height: math.unit(5 + 4/12, "feet"),
  44187. name: "Back",
  44188. image: {
  44189. source: "./media/characters/artan/back.svg",
  44190. extra: 1618/1543,
  44191. bottom: 31/1649
  44192. }
  44193. },
  44194. },
  44195. [
  44196. {
  44197. name: "Normal",
  44198. height: math.unit(5 + 4/12, "feet"),
  44199. default: true
  44200. },
  44201. ]
  44202. ))
  44203. characterMakers.push(() => makeCharacter(
  44204. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44205. {
  44206. side: {
  44207. height: math.unit(182, "cm"),
  44208. weight: math.unit(1000, "lb"),
  44209. name: "Side",
  44210. image: {
  44211. source: "./media/characters/silver-dragon/side.svg",
  44212. extra: 710/287,
  44213. bottom: 88/798
  44214. }
  44215. },
  44216. },
  44217. [
  44218. {
  44219. name: "Normal",
  44220. height: math.unit(182, "cm"),
  44221. default: true
  44222. },
  44223. ]
  44224. ))
  44225. characterMakers.push(() => makeCharacter(
  44226. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44227. {
  44228. side: {
  44229. height: math.unit(6 + 6/12, "feet"),
  44230. weight: math.unit(1.5, "tons"),
  44231. name: "Side",
  44232. image: {
  44233. source: "./media/characters/zephyr/side.svg",
  44234. extra: 1433/586,
  44235. bottom: 109/1542
  44236. }
  44237. },
  44238. },
  44239. [
  44240. {
  44241. name: "Normal",
  44242. height: math.unit(6 + 6/12, "feet"),
  44243. default: true
  44244. },
  44245. ]
  44246. ))
  44247. characterMakers.push(() => makeCharacter(
  44248. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44249. {
  44250. side: {
  44251. height: math.unit(1, "feet"),
  44252. name: "Side",
  44253. image: {
  44254. source: "./media/characters/vixye/side.svg",
  44255. extra: 632/541,
  44256. bottom: 0/632
  44257. }
  44258. },
  44259. },
  44260. [
  44261. {
  44262. name: "Normal",
  44263. height: math.unit(1, "feet"),
  44264. default: true
  44265. },
  44266. {
  44267. name: "True",
  44268. height: math.unit(1e15, "multiverses")
  44269. },
  44270. ]
  44271. ))
  44272. characterMakers.push(() => makeCharacter(
  44273. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44274. {
  44275. front: {
  44276. height: math.unit(8 + 2/12, "feet"),
  44277. weight: math.unit(650, "lb"),
  44278. name: "Front",
  44279. image: {
  44280. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44281. extra: 1174/1137,
  44282. bottom: 82/1256
  44283. }
  44284. },
  44285. back: {
  44286. height: math.unit(8 + 2/12, "feet"),
  44287. weight: math.unit(650, "lb"),
  44288. name: "Back",
  44289. image: {
  44290. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44291. extra: 1204/1157,
  44292. bottom: 46/1250
  44293. }
  44294. },
  44295. },
  44296. [
  44297. {
  44298. name: "Wildform",
  44299. height: math.unit(8 + 2/12, "feet"),
  44300. default: true
  44301. },
  44302. ]
  44303. ))
  44304. characterMakers.push(() => makeCharacter(
  44305. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44306. {
  44307. front: {
  44308. height: math.unit(18, "feet"),
  44309. name: "Front",
  44310. image: {
  44311. source: "./media/characters/cyphin/front.svg",
  44312. extra: 970/886,
  44313. bottom: 42/1012
  44314. }
  44315. },
  44316. back: {
  44317. height: math.unit(18, "feet"),
  44318. name: "Back",
  44319. image: {
  44320. source: "./media/characters/cyphin/back.svg",
  44321. extra: 1009/894,
  44322. bottom: 24/1033
  44323. }
  44324. },
  44325. head: {
  44326. height: math.unit(5.05, "feet"),
  44327. name: "Head",
  44328. image: {
  44329. source: "./media/characters/cyphin/head.svg"
  44330. }
  44331. },
  44332. tailbud: {
  44333. height: math.unit(5, "feet"),
  44334. name: "Tailbud",
  44335. image: {
  44336. source: "./media/characters/cyphin/tailbud.svg"
  44337. }
  44338. },
  44339. },
  44340. [
  44341. ]
  44342. ))
  44343. characterMakers.push(() => makeCharacter(
  44344. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44345. {
  44346. side: {
  44347. height: math.unit(10, "feet"),
  44348. weight: math.unit(6, "tons"),
  44349. name: "Side",
  44350. image: {
  44351. source: "./media/characters/raijin/side.svg",
  44352. extra: 1529/613,
  44353. bottom: 337/1866
  44354. }
  44355. },
  44356. },
  44357. [
  44358. {
  44359. name: "Normal",
  44360. height: math.unit(10, "feet"),
  44361. default: true
  44362. },
  44363. ]
  44364. ))
  44365. characterMakers.push(() => makeCharacter(
  44366. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44367. {
  44368. side: {
  44369. height: math.unit(9, "feet"),
  44370. name: "Side",
  44371. image: {
  44372. source: "./media/characters/nilghais/side.svg",
  44373. extra: 1047/744,
  44374. bottom: 91/1138
  44375. }
  44376. },
  44377. head: {
  44378. height: math.unit(3.14, "feet"),
  44379. name: "Head",
  44380. image: {
  44381. source: "./media/characters/nilghais/head.svg"
  44382. }
  44383. },
  44384. mouth: {
  44385. height: math.unit(4.6, "feet"),
  44386. name: "Mouth",
  44387. image: {
  44388. source: "./media/characters/nilghais/mouth.svg"
  44389. }
  44390. },
  44391. wings: {
  44392. height: math.unit(24, "feet"),
  44393. name: "Wings",
  44394. image: {
  44395. source: "./media/characters/nilghais/wings.svg"
  44396. }
  44397. },
  44398. ass: {
  44399. height: math.unit(6.12, "feet"),
  44400. name: "Ass",
  44401. image: {
  44402. source: "./media/characters/nilghais/ass.svg"
  44403. }
  44404. },
  44405. },
  44406. [
  44407. {
  44408. name: "Normal",
  44409. height: math.unit(9, "feet"),
  44410. default: true
  44411. },
  44412. ]
  44413. ))
  44414. characterMakers.push(() => makeCharacter(
  44415. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44416. {
  44417. regular: {
  44418. height: math.unit(16 + 2/12, "feet"),
  44419. weight: math.unit(2300, "lb"),
  44420. name: "Regular",
  44421. image: {
  44422. source: "./media/characters/zolgar/regular.svg",
  44423. extra: 1246/1004,
  44424. bottom: 124/1370
  44425. }
  44426. },
  44427. boxers: {
  44428. height: math.unit(16 + 2/12, "feet"),
  44429. weight: math.unit(2300, "lb"),
  44430. name: "Boxers",
  44431. image: {
  44432. source: "./media/characters/zolgar/boxers.svg",
  44433. extra: 1246/1004,
  44434. bottom: 124/1370
  44435. }
  44436. },
  44437. armored: {
  44438. height: math.unit(16 + 2/12, "feet"),
  44439. weight: math.unit(2300, "lb"),
  44440. name: "Armored",
  44441. image: {
  44442. source: "./media/characters/zolgar/armored.svg",
  44443. extra: 1246/1004,
  44444. bottom: 124/1370
  44445. }
  44446. },
  44447. goth: {
  44448. height: math.unit(16 + 2/12, "feet"),
  44449. weight: math.unit(2300, "lb"),
  44450. name: "Goth",
  44451. image: {
  44452. source: "./media/characters/zolgar/goth.svg",
  44453. extra: 1246/1004,
  44454. bottom: 124/1370
  44455. }
  44456. },
  44457. },
  44458. [
  44459. {
  44460. name: "Shrunken Down",
  44461. height: math.unit(9 + 2/12, "feet")
  44462. },
  44463. {
  44464. name: "Normal",
  44465. height: math.unit(16 + 2/12, "feet"),
  44466. default: true
  44467. },
  44468. ]
  44469. ))
  44470. characterMakers.push(() => makeCharacter(
  44471. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44472. {
  44473. front: {
  44474. height: math.unit(6, "feet"),
  44475. weight: math.unit(168, "lb"),
  44476. name: "Front",
  44477. image: {
  44478. source: "./media/characters/luca/front.svg",
  44479. extra: 841/667,
  44480. bottom: 102/943
  44481. }
  44482. },
  44483. },
  44484. [
  44485. {
  44486. name: "Normal",
  44487. height: math.unit(6, "feet"),
  44488. default: true
  44489. },
  44490. ]
  44491. ))
  44492. characterMakers.push(() => makeCharacter(
  44493. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44494. {
  44495. side: {
  44496. height: math.unit(7 + 3/12, "feet"),
  44497. weight: math.unit(312, "lb"),
  44498. name: "Side",
  44499. image: {
  44500. source: "./media/characters/zezo/side.svg",
  44501. extra: 1192/1067,
  44502. bottom: 63/1255
  44503. }
  44504. },
  44505. },
  44506. [
  44507. {
  44508. name: "Normal",
  44509. height: math.unit(7 + 3/12, "feet"),
  44510. default: true
  44511. },
  44512. ]
  44513. ))
  44514. characterMakers.push(() => makeCharacter(
  44515. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44516. {
  44517. front: {
  44518. height: math.unit(5 + 5/12, "feet"),
  44519. weight: math.unit(170, "lb"),
  44520. name: "Front",
  44521. image: {
  44522. source: "./media/characters/mayso/front.svg",
  44523. extra: 1215/1108,
  44524. bottom: 16/1231
  44525. }
  44526. },
  44527. },
  44528. [
  44529. {
  44530. name: "Normal",
  44531. height: math.unit(5 + 5/12, "feet"),
  44532. default: true
  44533. },
  44534. ]
  44535. ))
  44536. characterMakers.push(() => makeCharacter(
  44537. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44538. {
  44539. front: {
  44540. height: math.unit(4 + 3/12, "feet"),
  44541. weight: math.unit(80, "lb"),
  44542. name: "Front",
  44543. image: {
  44544. source: "./media/characters/hess/front.svg",
  44545. extra: 1200/1123,
  44546. bottom: 16/1216
  44547. }
  44548. },
  44549. },
  44550. [
  44551. {
  44552. name: "Normal",
  44553. height: math.unit(4 + 3/12, "feet"),
  44554. default: true
  44555. },
  44556. ]
  44557. ))
  44558. characterMakers.push(() => makeCharacter(
  44559. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44560. {
  44561. front: {
  44562. height: math.unit(1.9, "meters"),
  44563. name: "Front",
  44564. image: {
  44565. source: "./media/characters/ashgar/front.svg",
  44566. extra: 1177/1146,
  44567. bottom: 99/1276
  44568. }
  44569. },
  44570. back: {
  44571. height: math.unit(1.9, "meters"),
  44572. name: "Back",
  44573. image: {
  44574. source: "./media/characters/ashgar/back.svg",
  44575. extra: 1201/1183,
  44576. bottom: 53/1254
  44577. }
  44578. },
  44579. feral: {
  44580. height: math.unit(1.4, "meters"),
  44581. name: "Feral",
  44582. image: {
  44583. source: "./media/characters/ashgar/feral.svg",
  44584. extra: 370/345,
  44585. bottom: 45/415
  44586. }
  44587. },
  44588. },
  44589. [
  44590. {
  44591. name: "Normal",
  44592. height: math.unit(1.9, "meters"),
  44593. default: true
  44594. },
  44595. ]
  44596. ))
  44597. characterMakers.push(() => makeCharacter(
  44598. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44599. {
  44600. regular: {
  44601. height: math.unit(6, "feet"),
  44602. weight: math.unit(220, "lb"),
  44603. name: "Regular",
  44604. image: {
  44605. source: "./media/characters/phillip/regular.svg",
  44606. extra: 1373/1277,
  44607. bottom: 75/1448
  44608. }
  44609. },
  44610. dressed: {
  44611. height: math.unit(6, "feet"),
  44612. weight: math.unit(220, "lb"),
  44613. name: "Dressed",
  44614. image: {
  44615. source: "./media/characters/phillip/dressed.svg",
  44616. extra: 1373/1277,
  44617. bottom: 75/1448
  44618. }
  44619. },
  44620. paw: {
  44621. height: math.unit(1.44, "feet"),
  44622. name: "Paw",
  44623. image: {
  44624. source: "./media/characters/phillip/paw.svg"
  44625. }
  44626. },
  44627. },
  44628. [
  44629. {
  44630. name: "Normal",
  44631. height: math.unit(6, "feet"),
  44632. default: true
  44633. },
  44634. ]
  44635. ))
  44636. characterMakers.push(() => makeCharacter(
  44637. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44638. {
  44639. side: {
  44640. height: math.unit(42, "feet"),
  44641. name: "Side",
  44642. image: {
  44643. source: "./media/characters/uvula/side.svg",
  44644. extra: 683/586,
  44645. bottom: 60/743
  44646. }
  44647. },
  44648. front: {
  44649. height: math.unit(42, "feet"),
  44650. name: "Front",
  44651. image: {
  44652. source: "./media/characters/uvula/front.svg",
  44653. extra: 705/613,
  44654. bottom: 54/759
  44655. }
  44656. },
  44657. maw: {
  44658. height: math.unit(23.5, "feet"),
  44659. name: "Maw",
  44660. image: {
  44661. source: "./media/characters/uvula/maw.svg"
  44662. }
  44663. },
  44664. },
  44665. [
  44666. {
  44667. name: "Original Size",
  44668. height: math.unit(14, "inches")
  44669. },
  44670. {
  44671. name: "Human Size",
  44672. height: math.unit(6, "feet")
  44673. },
  44674. {
  44675. name: "Big",
  44676. height: math.unit(42, "feet"),
  44677. default: true
  44678. },
  44679. {
  44680. name: "Bigger",
  44681. height: math.unit(100, "feet")
  44682. },
  44683. ]
  44684. ))
  44685. characterMakers.push(() => makeCharacter(
  44686. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44687. {
  44688. front: {
  44689. height: math.unit(5 + 11/12, "feet"),
  44690. name: "Front",
  44691. image: {
  44692. source: "./media/characters/lannah/front.svg",
  44693. extra: 1208/1113,
  44694. bottom: 97/1305
  44695. }
  44696. },
  44697. },
  44698. [
  44699. {
  44700. name: "Normal",
  44701. height: math.unit(5 + 11/12, "feet"),
  44702. default: true
  44703. },
  44704. ]
  44705. ))
  44706. characterMakers.push(() => makeCharacter(
  44707. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44708. {
  44709. front: {
  44710. height: math.unit(6 + 3/12, "feet"),
  44711. weight: math.unit(3.5, "tons"),
  44712. name: "Front",
  44713. image: {
  44714. source: "./media/characters/emberflame/front.svg",
  44715. extra: 1198/672,
  44716. bottom: 82/1280
  44717. }
  44718. },
  44719. side: {
  44720. height: math.unit(6 + 3/12, "feet"),
  44721. weight: math.unit(3.5, "tons"),
  44722. name: "Side",
  44723. image: {
  44724. source: "./media/characters/emberflame/side.svg",
  44725. extra: 938/527,
  44726. bottom: 56/994
  44727. }
  44728. },
  44729. },
  44730. [
  44731. {
  44732. name: "Normal",
  44733. height: math.unit(6 + 3/12, "feet"),
  44734. default: true
  44735. },
  44736. ]
  44737. ))
  44738. characterMakers.push(() => makeCharacter(
  44739. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44740. {
  44741. side: {
  44742. height: math.unit(17.5, "feet"),
  44743. weight: math.unit(35, "tons"),
  44744. name: "Side",
  44745. image: {
  44746. source: "./media/characters/sophie-ambrose/side.svg",
  44747. extra: 1573/1242,
  44748. bottom: 71/1644
  44749. }
  44750. },
  44751. maw: {
  44752. height: math.unit(7.4, "feet"),
  44753. name: "Maw",
  44754. image: {
  44755. source: "./media/characters/sophie-ambrose/maw.svg"
  44756. }
  44757. },
  44758. },
  44759. [
  44760. {
  44761. name: "Normal",
  44762. height: math.unit(17.5, "feet"),
  44763. default: true
  44764. },
  44765. ]
  44766. ))
  44767. characterMakers.push(() => makeCharacter(
  44768. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44769. {
  44770. front: {
  44771. height: math.unit(280, "feet"),
  44772. weight: math.unit(550, "tons"),
  44773. name: "Front",
  44774. image: {
  44775. source: "./media/characters/king-mugi/front.svg",
  44776. extra: 1102/947,
  44777. bottom: 104/1206
  44778. }
  44779. },
  44780. },
  44781. [
  44782. {
  44783. name: "King Mugi",
  44784. height: math.unit(280, "feet"),
  44785. default: true
  44786. },
  44787. ]
  44788. ))
  44789. characterMakers.push(() => makeCharacter(
  44790. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44791. {
  44792. front: {
  44793. height: math.unit(64, "meters"),
  44794. name: "Front",
  44795. image: {
  44796. source: "./media/characters/nova-fox/front.svg",
  44797. extra: 1310/1246,
  44798. bottom: 65/1375
  44799. }
  44800. },
  44801. },
  44802. [
  44803. {
  44804. name: "Macro",
  44805. height: math.unit(64, "meters"),
  44806. default: true
  44807. },
  44808. ]
  44809. ))
  44810. characterMakers.push(() => makeCharacter(
  44811. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44812. {
  44813. front: {
  44814. height: math.unit(6 + 3/12, "feet"),
  44815. weight: math.unit(170, "lb"),
  44816. name: "Front",
  44817. image: {
  44818. source: "./media/characters/sam-bat/front.svg",
  44819. extra: 1601/1411,
  44820. bottom: 125/1726
  44821. }
  44822. },
  44823. back: {
  44824. height: math.unit(6 + 3/12, "feet"),
  44825. weight: math.unit(170, "lb"),
  44826. name: "Back",
  44827. image: {
  44828. source: "./media/characters/sam-bat/back.svg",
  44829. extra: 1577/1405,
  44830. bottom: 58/1635
  44831. }
  44832. },
  44833. },
  44834. [
  44835. {
  44836. name: "Normal",
  44837. height: math.unit(6 + 3/12, "feet"),
  44838. default: true
  44839. },
  44840. ]
  44841. ))
  44842. characterMakers.push(() => makeCharacter(
  44843. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44844. {
  44845. front: {
  44846. height: math.unit(59, "feet"),
  44847. weight: math.unit(40000, "lb"),
  44848. name: "Front",
  44849. image: {
  44850. source: "./media/characters/inari/front.svg",
  44851. extra: 1884/1350,
  44852. bottom: 95/1979
  44853. }
  44854. },
  44855. },
  44856. [
  44857. {
  44858. name: "Gigantamax",
  44859. height: math.unit(59, "feet"),
  44860. default: true
  44861. },
  44862. ]
  44863. ))
  44864. characterMakers.push(() => makeCharacter(
  44865. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  44866. {
  44867. front: {
  44868. height: math.unit(5 + 8/12, "feet"),
  44869. name: "Front",
  44870. image: {
  44871. source: "./media/characters/elizabeth/front.svg",
  44872. extra: 1395/1298,
  44873. bottom: 54/1449
  44874. }
  44875. },
  44876. mouth: {
  44877. height: math.unit(1.97, "feet"),
  44878. name: "Mouth",
  44879. image: {
  44880. source: "./media/characters/elizabeth/mouth.svg"
  44881. }
  44882. },
  44883. foot: {
  44884. height: math.unit(1.17, "feet"),
  44885. name: "Foot",
  44886. image: {
  44887. source: "./media/characters/elizabeth/foot.svg"
  44888. }
  44889. },
  44890. },
  44891. [
  44892. {
  44893. name: "Normal",
  44894. height: math.unit(5 + 8/12, "feet"),
  44895. default: true
  44896. },
  44897. {
  44898. name: "Minimacro",
  44899. height: math.unit(18, "feet")
  44900. },
  44901. {
  44902. name: "Macro",
  44903. height: math.unit(180, "feet")
  44904. },
  44905. ]
  44906. ))
  44907. characterMakers.push(() => makeCharacter(
  44908. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  44909. {
  44910. front: {
  44911. height: math.unit(5 + 2/12, "feet"),
  44912. name: "Front",
  44913. image: {
  44914. source: "./media/characters/october-gossamer/front.svg",
  44915. extra: 505/454,
  44916. bottom: 7/512
  44917. }
  44918. },
  44919. back: {
  44920. height: math.unit(5 + 2/12, "feet"),
  44921. name: "Back",
  44922. image: {
  44923. source: "./media/characters/october-gossamer/back.svg",
  44924. extra: 501/454,
  44925. bottom: 11/512
  44926. }
  44927. },
  44928. },
  44929. [
  44930. {
  44931. name: "Normal",
  44932. height: math.unit(5 + 2/12, "feet"),
  44933. default: true
  44934. },
  44935. ]
  44936. ))
  44937. characterMakers.push(() => makeCharacter(
  44938. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  44939. {
  44940. front: {
  44941. height: math.unit(5, "feet"),
  44942. name: "Front",
  44943. image: {
  44944. source: "./media/characters/epiglottis/front.svg",
  44945. extra: 923/849,
  44946. bottom: 17/940
  44947. }
  44948. },
  44949. },
  44950. [
  44951. {
  44952. name: "Original Size",
  44953. height: math.unit(10, "inches")
  44954. },
  44955. {
  44956. name: "Human Size",
  44957. height: math.unit(5, "feet"),
  44958. default: true
  44959. },
  44960. {
  44961. name: "Big",
  44962. height: math.unit(25, "feet")
  44963. },
  44964. {
  44965. name: "Bigger",
  44966. height: math.unit(50, "feet")
  44967. },
  44968. {
  44969. name: "oh lawd",
  44970. height: math.unit(75, "feet")
  44971. },
  44972. ]
  44973. ))
  44974. characterMakers.push(() => makeCharacter(
  44975. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  44976. {
  44977. front: {
  44978. height: math.unit(2 + 4/12, "feet"),
  44979. weight: math.unit(60, "lb"),
  44980. name: "Front",
  44981. image: {
  44982. source: "./media/characters/lerm/front.svg",
  44983. extra: 796/790,
  44984. bottom: 79/875
  44985. }
  44986. },
  44987. },
  44988. [
  44989. {
  44990. name: "Normal",
  44991. height: math.unit(2 + 4/12, "feet"),
  44992. default: true
  44993. },
  44994. ]
  44995. ))
  44996. characterMakers.push(() => makeCharacter(
  44997. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  44998. {
  44999. front: {
  45000. height: math.unit(5.5, "feet"),
  45001. weight: math.unit(130, "lb"),
  45002. name: "Front",
  45003. image: {
  45004. source: "./media/characters/xena-nebadon/front.svg",
  45005. extra: 1828/1730,
  45006. bottom: 79/1907
  45007. }
  45008. },
  45009. },
  45010. [
  45011. {
  45012. name: "Tiny Puppy",
  45013. height: math.unit(3, "inches")
  45014. },
  45015. {
  45016. name: "Normal",
  45017. height: math.unit(5.5, "feet"),
  45018. default: true
  45019. },
  45020. {
  45021. name: "Lotta Lady",
  45022. height: math.unit(12, "feet")
  45023. },
  45024. {
  45025. name: "Pretty Big",
  45026. height: math.unit(100, "feet")
  45027. },
  45028. {
  45029. name: "Big",
  45030. height: math.unit(500, "feet")
  45031. },
  45032. {
  45033. name: "Skyscraper Toys",
  45034. height: math.unit(2500, "feet")
  45035. },
  45036. {
  45037. name: "Plane Catcher",
  45038. height: math.unit(8, "miles")
  45039. },
  45040. {
  45041. name: "Planet Toys",
  45042. height: math.unit(15, "earths")
  45043. },
  45044. {
  45045. name: "Stardust",
  45046. height: math.unit(0.25, "galaxies")
  45047. },
  45048. {
  45049. name: "Snacks",
  45050. height: math.unit(70, "universes")
  45051. },
  45052. ]
  45053. ))
  45054. characterMakers.push(() => makeCharacter(
  45055. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45056. {
  45057. front: {
  45058. height: math.unit(1.6, "meters"),
  45059. weight: math.unit(60, "kg"),
  45060. name: "Front",
  45061. image: {
  45062. source: "./media/characters/bounty/front.svg",
  45063. extra: 1426/1308,
  45064. bottom: 15/1441
  45065. }
  45066. },
  45067. back: {
  45068. height: math.unit(1.6, "meters"),
  45069. weight: math.unit(60, "kg"),
  45070. name: "Back",
  45071. image: {
  45072. source: "./media/characters/bounty/back.svg",
  45073. extra: 1417/1307,
  45074. bottom: 8/1425
  45075. }
  45076. },
  45077. },
  45078. [
  45079. {
  45080. name: "Normal",
  45081. height: math.unit(1.6, "meters"),
  45082. default: true
  45083. },
  45084. {
  45085. name: "Macro",
  45086. height: math.unit(300, "meters")
  45087. },
  45088. ]
  45089. ))
  45090. characterMakers.push(() => makeCharacter(
  45091. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45092. {
  45093. front: {
  45094. height: math.unit(2 + 8/12, "feet"),
  45095. weight: math.unit(15, "lb"),
  45096. name: "Front",
  45097. image: {
  45098. source: "./media/characters/mochi/front.svg",
  45099. extra: 1022/852,
  45100. bottom: 435/1457
  45101. }
  45102. },
  45103. back: {
  45104. height: math.unit(2 + 8/12, "feet"),
  45105. weight: math.unit(15, "lb"),
  45106. name: "Back",
  45107. image: {
  45108. source: "./media/characters/mochi/back.svg",
  45109. extra: 1335/1119,
  45110. bottom: 39/1374
  45111. }
  45112. },
  45113. bird: {
  45114. height: math.unit(2 + 8/12, "feet"),
  45115. weight: math.unit(15, "lb"),
  45116. name: "Bird",
  45117. image: {
  45118. source: "./media/characters/mochi/bird.svg",
  45119. extra: 1251/1113,
  45120. bottom: 178/1429
  45121. }
  45122. },
  45123. kaiju: {
  45124. height: math.unit(154, "feet"),
  45125. weight: math.unit(1e7, "lb"),
  45126. name: "Kaiju",
  45127. image: {
  45128. source: "./media/characters/mochi/kaiju.svg",
  45129. extra: 460/324,
  45130. bottom: 40/500
  45131. }
  45132. },
  45133. head: {
  45134. height: math.unit(1.21, "feet"),
  45135. name: "Head",
  45136. image: {
  45137. source: "./media/characters/mochi/head.svg"
  45138. }
  45139. },
  45140. alternateTail: {
  45141. height: math.unit(2 + 8/12, "feet"),
  45142. weight: math.unit(45, "lb"),
  45143. name: "Alternate Tail",
  45144. image: {
  45145. source: "./media/characters/mochi/alternate-tail.svg",
  45146. extra: 139/76,
  45147. bottom: 45/184
  45148. }
  45149. },
  45150. },
  45151. [
  45152. {
  45153. name: "Micro",
  45154. height: math.unit(2, "inches")
  45155. },
  45156. {
  45157. name: "Normal",
  45158. height: math.unit(2 + 8/12, "feet"),
  45159. default: true
  45160. },
  45161. {
  45162. name: "Macro",
  45163. height: math.unit(106, "feet")
  45164. },
  45165. ]
  45166. ))
  45167. characterMakers.push(() => makeCharacter(
  45168. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45169. {
  45170. front: {
  45171. height: math.unit(5.67, "feet"),
  45172. weight: math.unit(135, "lb"),
  45173. name: "Front",
  45174. image: {
  45175. source: "./media/characters/sarel/front.svg",
  45176. extra: 865/788,
  45177. bottom: 97/962
  45178. }
  45179. },
  45180. back: {
  45181. height: math.unit(5.67, "feet"),
  45182. weight: math.unit(135, "lb"),
  45183. name: "Back",
  45184. image: {
  45185. source: "./media/characters/sarel/back.svg",
  45186. extra: 857/777,
  45187. bottom: 32/889
  45188. }
  45189. },
  45190. chozoan: {
  45191. height: math.unit(5.67, "feet"),
  45192. weight: math.unit(135, "lb"),
  45193. name: "Chozoan",
  45194. image: {
  45195. source: "./media/characters/sarel/chozoan.svg",
  45196. extra: 865/788,
  45197. bottom: 97/962
  45198. }
  45199. },
  45200. current: {
  45201. height: math.unit(5.67, "feet"),
  45202. weight: math.unit(135, "lb"),
  45203. name: "Current",
  45204. image: {
  45205. source: "./media/characters/sarel/current.svg",
  45206. extra: 865/788,
  45207. bottom: 97/962
  45208. }
  45209. },
  45210. head: {
  45211. height: math.unit(1.77, "feet"),
  45212. name: "Head",
  45213. image: {
  45214. source: "./media/characters/sarel/head.svg"
  45215. }
  45216. },
  45217. claws: {
  45218. height: math.unit(1.8, "feet"),
  45219. name: "Claws",
  45220. image: {
  45221. source: "./media/characters/sarel/claws.svg"
  45222. }
  45223. },
  45224. clawsAlt: {
  45225. height: math.unit(1.8, "feet"),
  45226. name: "Claws-alt",
  45227. image: {
  45228. source: "./media/characters/sarel/claws-alt.svg"
  45229. }
  45230. },
  45231. },
  45232. [
  45233. {
  45234. name: "Normal",
  45235. height: math.unit(5.67, "feet"),
  45236. default: true
  45237. },
  45238. ]
  45239. ))
  45240. characterMakers.push(() => makeCharacter(
  45241. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45242. {
  45243. front: {
  45244. height: math.unit(5500, "feet"),
  45245. name: "Front",
  45246. image: {
  45247. source: "./media/characters/alyonia/front.svg",
  45248. extra: 1200/1135,
  45249. bottom: 29/1229
  45250. }
  45251. },
  45252. back: {
  45253. height: math.unit(5500, "feet"),
  45254. name: "Back",
  45255. image: {
  45256. source: "./media/characters/alyonia/back.svg",
  45257. extra: 1205/1138,
  45258. bottom: 10/1215
  45259. }
  45260. },
  45261. },
  45262. [
  45263. {
  45264. name: "Small",
  45265. height: math.unit(10, "feet")
  45266. },
  45267. {
  45268. name: "Macro",
  45269. height: math.unit(500, "feet")
  45270. },
  45271. {
  45272. name: "Mega Macro",
  45273. height: math.unit(5500, "feet"),
  45274. default: true
  45275. },
  45276. {
  45277. name: "Mega Macro+",
  45278. height: math.unit(500000, "feet")
  45279. },
  45280. {
  45281. name: "Giga Macro",
  45282. height: math.unit(3000, "miles")
  45283. },
  45284. {
  45285. name: "Tera Macro",
  45286. height: math.unit(2.8e6, "miles")
  45287. },
  45288. {
  45289. name: "Galactic",
  45290. height: math.unit(120000, "lightyears")
  45291. },
  45292. ]
  45293. ))
  45294. characterMakers.push(() => makeCharacter(
  45295. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45296. {
  45297. werewolf: {
  45298. height: math.unit(8, "feet"),
  45299. weight: math.unit(425, "lb"),
  45300. name: "Werewolf",
  45301. image: {
  45302. source: "./media/characters/autumn/werewolf.svg",
  45303. extra: 2154/2031,
  45304. bottom: 160/2314
  45305. }
  45306. },
  45307. human: {
  45308. height: math.unit(5 + 8/12, "feet"),
  45309. weight: math.unit(150, "lb"),
  45310. name: "Human",
  45311. image: {
  45312. source: "./media/characters/autumn/human.svg",
  45313. extra: 1200/1149,
  45314. bottom: 30/1230
  45315. }
  45316. },
  45317. },
  45318. [
  45319. {
  45320. name: "Normal",
  45321. height: math.unit(8, "feet"),
  45322. default: true
  45323. },
  45324. ]
  45325. ))
  45326. characterMakers.push(() => makeCharacter(
  45327. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45328. {
  45329. front: {
  45330. height: math.unit(8 + 5/12, "feet"),
  45331. weight: math.unit(825, "lb"),
  45332. name: "Front",
  45333. image: {
  45334. source: "./media/characters/cobalt-charizard/front.svg",
  45335. extra: 1268/1155,
  45336. bottom: 122/1390
  45337. }
  45338. },
  45339. side: {
  45340. height: math.unit(8 + 5/12, "feet"),
  45341. weight: math.unit(825, "lb"),
  45342. name: "Side",
  45343. image: {
  45344. source: "./media/characters/cobalt-charizard/side.svg",
  45345. extra: 1348/1257,
  45346. bottom: 58/1406
  45347. }
  45348. },
  45349. gMax: {
  45350. height: math.unit(134 + 11/12, "feet"),
  45351. name: "G-Max",
  45352. image: {
  45353. source: "./media/characters/cobalt-charizard/g-max.svg",
  45354. extra: 1835/1541,
  45355. bottom: 151/1986
  45356. }
  45357. },
  45358. },
  45359. [
  45360. {
  45361. name: "Normal",
  45362. height: math.unit(8 + 5/12, "feet"),
  45363. default: true
  45364. },
  45365. ]
  45366. ))
  45367. characterMakers.push(() => makeCharacter(
  45368. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45369. {
  45370. front: {
  45371. height: math.unit(6 + 3/12, "feet"),
  45372. weight: math.unit(210, "lb"),
  45373. name: "Front",
  45374. image: {
  45375. source: "./media/characters/stella/front.svg",
  45376. extra: 3549/3335,
  45377. bottom: 51/3600
  45378. }
  45379. },
  45380. },
  45381. [
  45382. {
  45383. name: "Normal",
  45384. height: math.unit(6 + 3/12, "feet"),
  45385. default: true
  45386. },
  45387. ]
  45388. ))
  45389. characterMakers.push(() => makeCharacter(
  45390. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45391. {
  45392. front: {
  45393. height: math.unit(5, "feet"),
  45394. weight: math.unit(90, "lb"),
  45395. name: "Front",
  45396. image: {
  45397. source: "./media/characters/riley-bishop/front.svg",
  45398. extra: 1450/1428,
  45399. bottom: 152/1602
  45400. }
  45401. },
  45402. },
  45403. [
  45404. {
  45405. name: "Normal",
  45406. height: math.unit(5, "feet"),
  45407. default: true
  45408. },
  45409. ]
  45410. ))
  45411. characterMakers.push(() => makeCharacter(
  45412. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45413. {
  45414. side: {
  45415. height: math.unit(8 + 2/12, "feet"),
  45416. weight: math.unit(500, "kg"),
  45417. name: "Side",
  45418. image: {
  45419. source: "./media/characters/theo-arcanine/side.svg",
  45420. extra: 1342/1074,
  45421. bottom: 111/1453
  45422. }
  45423. },
  45424. },
  45425. [
  45426. {
  45427. name: "Normal",
  45428. height: math.unit(8 + 2/12, "feet"),
  45429. default: true
  45430. },
  45431. ]
  45432. ))
  45433. characterMakers.push(() => makeCharacter(
  45434. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45435. {
  45436. front: {
  45437. height: math.unit(4, "feet"),
  45438. name: "Front",
  45439. image: {
  45440. source: "./media/characters/kali/front.svg",
  45441. extra: 1074/867,
  45442. bottom: 34/1108
  45443. }
  45444. },
  45445. back: {
  45446. height: math.unit(4, "feet"),
  45447. name: "Back",
  45448. image: {
  45449. source: "./media/characters/kali/back.svg",
  45450. extra: 1068/863,
  45451. bottom: 26/1094
  45452. }
  45453. },
  45454. frontAlt: {
  45455. height: math.unit(4, "feet"),
  45456. name: "Front (Alt)",
  45457. image: {
  45458. source: "./media/characters/kali/front-alt.svg",
  45459. extra: 1921/1357,
  45460. bottom: 70/1991
  45461. }
  45462. },
  45463. },
  45464. [
  45465. {
  45466. name: "Normal",
  45467. height: math.unit(4, "feet"),
  45468. default: true
  45469. },
  45470. {
  45471. name: "Big'vali",
  45472. height: math.unit(11, "feet")
  45473. },
  45474. {
  45475. name: "Macro",
  45476. height: math.unit(32, "meters")
  45477. },
  45478. {
  45479. name: "Macro+",
  45480. height: math.unit(150, "meters")
  45481. },
  45482. {
  45483. name: "Megamacro",
  45484. height: math.unit(7500, "meters")
  45485. },
  45486. {
  45487. name: "Megamacro+",
  45488. height: math.unit(80, "kilometers")
  45489. },
  45490. ]
  45491. ))
  45492. characterMakers.push(() => makeCharacter(
  45493. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45494. {
  45495. side: {
  45496. height: math.unit(5 + 11/12, "feet"),
  45497. weight: math.unit(236, "lb"),
  45498. name: "Side",
  45499. image: {
  45500. source: "./media/characters/gapp/side.svg",
  45501. extra: 775/340,
  45502. bottom: 58/833
  45503. }
  45504. },
  45505. mouth: {
  45506. height: math.unit(2.98, "feet"),
  45507. name: "Mouth",
  45508. image: {
  45509. source: "./media/characters/gapp/mouth.svg"
  45510. }
  45511. },
  45512. },
  45513. [
  45514. {
  45515. name: "Normal",
  45516. height: math.unit(5 + 1/12, "feet"),
  45517. default: true
  45518. },
  45519. ]
  45520. ))
  45521. characterMakers.push(() => makeCharacter(
  45522. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45523. {
  45524. front: {
  45525. height: math.unit(6, "feet"),
  45526. name: "Front",
  45527. image: {
  45528. source: "./media/characters/persephone/front.svg",
  45529. extra: 1895/1717,
  45530. bottom: 96/1991
  45531. }
  45532. },
  45533. back: {
  45534. height: math.unit(6, "feet"),
  45535. name: "Back",
  45536. image: {
  45537. source: "./media/characters/persephone/back.svg",
  45538. extra: 1868/1679,
  45539. bottom: 26/1894
  45540. }
  45541. },
  45542. casual: {
  45543. height: math.unit(6, "feet"),
  45544. name: "Casual",
  45545. image: {
  45546. source: "./media/characters/persephone/casual.svg",
  45547. extra: 1713/1541,
  45548. bottom: 76/1789
  45549. }
  45550. },
  45551. gaming: {
  45552. height: math.unit(3.55, "feet"),
  45553. name: "Gaming",
  45554. image: {
  45555. source: "./media/characters/persephone/gaming.svg",
  45556. extra: 1242/1038,
  45557. bottom: 66/1308
  45558. }
  45559. },
  45560. head: {
  45561. height: math.unit(2.15, "feet"),
  45562. name: "😐",
  45563. image: {
  45564. source: "./media/characters/persephone/head.svg"
  45565. }
  45566. },
  45567. talking: {
  45568. height: math.unit(2.5, "feet"),
  45569. name: "💬",
  45570. image: {
  45571. source: "./media/characters/persephone/talking.svg"
  45572. }
  45573. },
  45574. hmm: {
  45575. height: math.unit(2.28, "feet"),
  45576. name: "🤨",
  45577. image: {
  45578. source: "./media/characters/persephone/hmm.svg"
  45579. }
  45580. },
  45581. },
  45582. [
  45583. {
  45584. name: "Human Size",
  45585. height: math.unit(6, "feet")
  45586. },
  45587. {
  45588. name: "Big Steppy",
  45589. height: math.unit(600, "meters"),
  45590. default: true
  45591. },
  45592. {
  45593. name: "Galaxy Brain",
  45594. height: math.unit(1, "zettameter")
  45595. },
  45596. ]
  45597. ))
  45598. characterMakers.push(() => makeCharacter(
  45599. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45600. {
  45601. front: {
  45602. height: math.unit(1.85, "meters"),
  45603. name: "Front",
  45604. image: {
  45605. source: "./media/characters/riley-foxthing/front.svg",
  45606. extra: 1495/1354,
  45607. bottom: 122/1617
  45608. }
  45609. },
  45610. frontAlt: {
  45611. height: math.unit(1.85, "meters"),
  45612. name: "Front (Alt)",
  45613. image: {
  45614. source: "./media/characters/riley-foxthing/front-alt.svg",
  45615. extra: 1572/1389,
  45616. bottom: 116/1688
  45617. }
  45618. },
  45619. },
  45620. [
  45621. {
  45622. name: "Normal Sized",
  45623. height: math.unit(1.85, "meters"),
  45624. default: true
  45625. },
  45626. {
  45627. name: "Quite Sizable",
  45628. height: math.unit(5, "meters")
  45629. },
  45630. {
  45631. name: "Rather Large",
  45632. height: math.unit(20, "meters")
  45633. },
  45634. {
  45635. name: "Macro",
  45636. height: math.unit(450, "meters")
  45637. },
  45638. {
  45639. name: "Giga",
  45640. height: math.unit(5, "km")
  45641. },
  45642. ]
  45643. ))
  45644. characterMakers.push(() => makeCharacter(
  45645. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45646. {
  45647. front: {
  45648. height: math.unit(6, "feet"),
  45649. weight: math.unit(200, "lb"),
  45650. name: "Front",
  45651. image: {
  45652. source: "./media/characters/blizzard/front.svg",
  45653. extra: 1136/990,
  45654. bottom: 136/1272
  45655. }
  45656. },
  45657. back: {
  45658. height: math.unit(6, "feet"),
  45659. weight: math.unit(200, "lb"),
  45660. name: "Back",
  45661. image: {
  45662. source: "./media/characters/blizzard/back.svg",
  45663. extra: 1175/1034,
  45664. bottom: 97/1272
  45665. }
  45666. },
  45667. sitting: {
  45668. height: math.unit(3.725, "feet"),
  45669. weight: math.unit(200, "lb"),
  45670. name: "Sitting",
  45671. image: {
  45672. source: "./media/characters/blizzard/sitting.svg",
  45673. extra: 581/485,
  45674. bottom: 90/671
  45675. }
  45676. },
  45677. frontWizard: {
  45678. height: math.unit(7.9, "feet"),
  45679. weight: math.unit(200, "lb"),
  45680. name: "Front (Wizard)",
  45681. image: {
  45682. source: "./media/characters/blizzard/front-wizard.svg"
  45683. }
  45684. },
  45685. backWizard: {
  45686. height: math.unit(7.9, "feet"),
  45687. weight: math.unit(200, "lb"),
  45688. name: "Back (Wizard)",
  45689. image: {
  45690. source: "./media/characters/blizzard/back-wizard.svg"
  45691. }
  45692. },
  45693. frontNsfw: {
  45694. height: math.unit(6, "feet"),
  45695. weight: math.unit(200, "lb"),
  45696. name: "Front (NSFW)",
  45697. image: {
  45698. source: "./media/characters/blizzard/front-nsfw.svg",
  45699. extra: 1136/990,
  45700. bottom: 136/1272
  45701. }
  45702. },
  45703. backNsfw: {
  45704. height: math.unit(6, "feet"),
  45705. weight: math.unit(200, "lb"),
  45706. name: "Back (NSFW)",
  45707. image: {
  45708. source: "./media/characters/blizzard/back-nsfw.svg",
  45709. extra: 1175/1034,
  45710. bottom: 97/1272
  45711. }
  45712. },
  45713. sittingNsfw: {
  45714. height: math.unit(3.725, "feet"),
  45715. weight: math.unit(200, "lb"),
  45716. name: "Sitting (NSFW)",
  45717. image: {
  45718. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45719. extra: 581/485,
  45720. bottom: 90/671
  45721. }
  45722. },
  45723. wizardFrontNsfw: {
  45724. height: math.unit(7.9, "feet"),
  45725. weight: math.unit(200, "lb"),
  45726. name: "Wizard (Front, NSFW)",
  45727. image: {
  45728. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45729. }
  45730. },
  45731. },
  45732. [
  45733. {
  45734. name: "Normal",
  45735. height: math.unit(6, "feet"),
  45736. default: true
  45737. },
  45738. ]
  45739. ))
  45740. characterMakers.push(() => makeCharacter(
  45741. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45742. {
  45743. front: {
  45744. height: math.unit(5 + 2/12, "feet"),
  45745. name: "Front",
  45746. image: {
  45747. source: "./media/characters/lumi/front.svg",
  45748. extra: 1328/1268,
  45749. bottom: 103/1431
  45750. }
  45751. },
  45752. back: {
  45753. height: math.unit(5 + 2/12, "feet"),
  45754. name: "Back",
  45755. image: {
  45756. source: "./media/characters/lumi/back.svg",
  45757. extra: 1381/1327,
  45758. bottom: 43/1424
  45759. }
  45760. },
  45761. },
  45762. [
  45763. {
  45764. name: "Normal",
  45765. height: math.unit(5 + 2/12, "feet"),
  45766. default: true
  45767. },
  45768. ]
  45769. ))
  45770. characterMakers.push(() => makeCharacter(
  45771. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45772. {
  45773. front: {
  45774. height: math.unit(5 + 9/12, "feet"),
  45775. name: "Front",
  45776. image: {
  45777. source: "./media/characters/aliya-cotton/front.svg",
  45778. extra: 577/564,
  45779. bottom: 29/606
  45780. }
  45781. },
  45782. },
  45783. [
  45784. {
  45785. name: "Normal",
  45786. height: math.unit(5 + 9/12, "feet"),
  45787. default: true
  45788. },
  45789. ]
  45790. ))
  45791. characterMakers.push(() => makeCharacter(
  45792. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45793. {
  45794. front: {
  45795. height: math.unit(2.7, "meters"),
  45796. weight: math.unit(25000, "lb"),
  45797. name: "Front",
  45798. image: {
  45799. source: "./media/characters/noah-luxray/front.svg",
  45800. extra: 1644/825,
  45801. bottom: 339/1983
  45802. }
  45803. },
  45804. side: {
  45805. height: math.unit(2.97, "meters"),
  45806. weight: math.unit(25000, "lb"),
  45807. name: "Side",
  45808. image: {
  45809. source: "./media/characters/noah-luxray/side.svg",
  45810. extra: 1319/650,
  45811. bottom: 163/1482
  45812. }
  45813. },
  45814. dick: {
  45815. height: math.unit(7.4, "feet"),
  45816. weight: math.unit(2500, "lb"),
  45817. name: "Dick",
  45818. image: {
  45819. source: "./media/characters/noah-luxray/dick.svg"
  45820. }
  45821. },
  45822. dickAlt: {
  45823. height: math.unit(10.83, "feet"),
  45824. weight: math.unit(2500, "lb"),
  45825. name: "Dick-alt",
  45826. image: {
  45827. source: "./media/characters/noah-luxray/dick-alt.svg"
  45828. }
  45829. },
  45830. },
  45831. [
  45832. {
  45833. name: "BIG",
  45834. height: math.unit(2.7, "meters"),
  45835. default: true
  45836. },
  45837. ]
  45838. ))
  45839. characterMakers.push(() => makeCharacter(
  45840. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45841. {
  45842. standing: {
  45843. height: math.unit(183, "cm"),
  45844. weight: math.unit(68, "kg"),
  45845. name: "Standing",
  45846. image: {
  45847. source: "./media/characters/arion/standing.svg",
  45848. extra: 1869/1807,
  45849. bottom: 93/1962
  45850. }
  45851. },
  45852. reclining: {
  45853. height: math.unit(70.5, "cm"),
  45854. weight: math.unit(68, "lb"),
  45855. name: "Reclining",
  45856. image: {
  45857. source: "./media/characters/arion/reclining.svg",
  45858. extra: 937/870,
  45859. bottom: 63/1000
  45860. }
  45861. },
  45862. },
  45863. [
  45864. {
  45865. name: "Colossus Size, Low",
  45866. height: math.unit(33, "meters"),
  45867. default: true
  45868. },
  45869. {
  45870. name: "Colossus Size, Mid",
  45871. height: math.unit(52, "meters")
  45872. },
  45873. {
  45874. name: "Colossus Size, High",
  45875. height: math.unit(60, "meters")
  45876. },
  45877. {
  45878. name: "Titan Size, Low",
  45879. height: math.unit(91, "meters"),
  45880. },
  45881. {
  45882. name: "Titan Size, Mid",
  45883. height: math.unit(122, "meters")
  45884. },
  45885. {
  45886. name: "Titan Size, High",
  45887. height: math.unit(162, "meters")
  45888. },
  45889. ]
  45890. ))
  45891. characterMakers.push(() => makeCharacter(
  45892. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  45893. {
  45894. front: {
  45895. height: math.unit(53, "meters"),
  45896. name: "Front",
  45897. image: {
  45898. source: "./media/characters/stellar-marbey/front.svg",
  45899. extra: 1913/1805,
  45900. bottom: 92/2005
  45901. }
  45902. },
  45903. back: {
  45904. height: math.unit(53, "meters"),
  45905. name: "Back",
  45906. image: {
  45907. source: "./media/characters/stellar-marbey/back.svg",
  45908. extra: 1960/1851,
  45909. bottom: 28/1988
  45910. }
  45911. },
  45912. mouth: {
  45913. height: math.unit(3.5, "meters"),
  45914. name: "Mouth",
  45915. image: {
  45916. source: "./media/characters/stellar-marbey/mouth.svg"
  45917. }
  45918. },
  45919. },
  45920. [
  45921. {
  45922. name: "Macro",
  45923. height: math.unit(53, "meters"),
  45924. default: true
  45925. },
  45926. ]
  45927. ))
  45928. characterMakers.push(() => makeCharacter(
  45929. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  45930. {
  45931. front: {
  45932. height: math.unit(8 + 1/12, "feet"),
  45933. weight: math.unit(233, "lb"),
  45934. name: "Front",
  45935. image: {
  45936. source: "./media/characters/matsu/front.svg",
  45937. extra: 832/772,
  45938. bottom: 40/872
  45939. }
  45940. },
  45941. back: {
  45942. height: math.unit(8 + 1/12, "feet"),
  45943. weight: math.unit(233, "lb"),
  45944. name: "Back",
  45945. image: {
  45946. source: "./media/characters/matsu/back.svg",
  45947. extra: 839/780,
  45948. bottom: 47/886
  45949. }
  45950. },
  45951. },
  45952. [
  45953. {
  45954. name: "Normal",
  45955. height: math.unit(8 + 1/12, "feet"),
  45956. default: true
  45957. },
  45958. ]
  45959. ))
  45960. characterMakers.push(() => makeCharacter(
  45961. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  45962. {
  45963. front: {
  45964. height: math.unit(4, "feet"),
  45965. weight: math.unit(148, "lb"),
  45966. name: "Front",
  45967. image: {
  45968. source: "./media/characters/thiz/front.svg",
  45969. extra: 1913/1748,
  45970. bottom: 62/1975
  45971. }
  45972. },
  45973. },
  45974. [
  45975. {
  45976. name: "Normal",
  45977. height: math.unit(4, "feet"),
  45978. default: true
  45979. },
  45980. ]
  45981. ))
  45982. characterMakers.push(() => makeCharacter(
  45983. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  45984. {
  45985. front: {
  45986. height: math.unit(7 + 6/12, "feet"),
  45987. weight: math.unit(267, "lb"),
  45988. name: "Front",
  45989. image: {
  45990. source: "./media/characters/marcel/front.svg",
  45991. extra: 1221/1096,
  45992. bottom: 76/1297
  45993. }
  45994. },
  45995. },
  45996. [
  45997. {
  45998. name: "Normal",
  45999. height: math.unit(7 + 6/12, "feet"),
  46000. default: true
  46001. },
  46002. ]
  46003. ))
  46004. characterMakers.push(() => makeCharacter(
  46005. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46006. {
  46007. side: {
  46008. height: math.unit(42, "meters"),
  46009. name: "Side",
  46010. image: {
  46011. source: "./media/characters/flake/side.svg",
  46012. extra: 1525/1306,
  46013. bottom: 209/1734
  46014. }
  46015. },
  46016. },
  46017. [
  46018. {
  46019. name: "Normal",
  46020. height: math.unit(42, "meters"),
  46021. default: true
  46022. },
  46023. ]
  46024. ))
  46025. characterMakers.push(() => makeCharacter(
  46026. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46027. {
  46028. dressed: {
  46029. height: math.unit(6 + 4/12, "feet"),
  46030. weight: math.unit(520, "lb"),
  46031. name: "Dressed",
  46032. image: {
  46033. source: "./media/characters/someonne/dressed.svg",
  46034. extra: 1020/1010,
  46035. bottom: 178/1198
  46036. }
  46037. },
  46038. undressed: {
  46039. height: math.unit(6 + 4/12, "feet"),
  46040. weight: math.unit(520, "lb"),
  46041. name: "Undressed",
  46042. image: {
  46043. source: "./media/characters/someonne/undressed.svg",
  46044. extra: 1019/1014,
  46045. bottom: 169/1188
  46046. }
  46047. },
  46048. },
  46049. [
  46050. {
  46051. name: "Normal",
  46052. height: math.unit(6 + 4/12, "feet"),
  46053. default: true
  46054. },
  46055. ]
  46056. ))
  46057. characterMakers.push(() => makeCharacter(
  46058. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46059. {
  46060. front: {
  46061. height: math.unit(3, "feet"),
  46062. weight: math.unit(30, "lb"),
  46063. name: "Front",
  46064. image: {
  46065. source: "./media/characters/till/front.svg",
  46066. extra: 892/823,
  46067. bottom: 55/947
  46068. }
  46069. },
  46070. },
  46071. [
  46072. {
  46073. name: "Normal",
  46074. height: math.unit(3, "feet"),
  46075. default: true
  46076. },
  46077. ]
  46078. ))
  46079. characterMakers.push(() => makeCharacter(
  46080. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46081. {
  46082. front: {
  46083. height: math.unit(9 + 8/12, "feet"),
  46084. weight: math.unit(800, "lb"),
  46085. name: "Front",
  46086. image: {
  46087. source: "./media/characters/sydney-heki/front.svg",
  46088. extra: 1360/1300,
  46089. bottom: 22/1382
  46090. }
  46091. },
  46092. back: {
  46093. height: math.unit(9 + 8/12, "feet"),
  46094. weight: math.unit(800, "lb"),
  46095. name: "Back",
  46096. image: {
  46097. source: "./media/characters/sydney-heki/back.svg",
  46098. extra: 1356/1293,
  46099. bottom: 12/1368
  46100. }
  46101. },
  46102. frontDressed: {
  46103. height: math.unit(9 + 8/12, "feet"),
  46104. weight: math.unit(800, "lb"),
  46105. name: "Front-dressed",
  46106. image: {
  46107. source: "./media/characters/sydney-heki/front-dressed.svg",
  46108. extra: 1360/1300,
  46109. bottom: 22/1382
  46110. }
  46111. },
  46112. },
  46113. [
  46114. {
  46115. name: "Normal",
  46116. height: math.unit(9 + 8/12, "feet"),
  46117. default: true
  46118. },
  46119. {
  46120. name: "Macro",
  46121. height: math.unit(500, "feet")
  46122. },
  46123. {
  46124. name: "Megamacro",
  46125. height: math.unit(3.6, "miles")
  46126. },
  46127. ]
  46128. ))
  46129. characterMakers.push(() => makeCharacter(
  46130. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46131. {
  46132. front: {
  46133. height: math.unit(200, "cm"),
  46134. weight: math.unit(250, "lb"),
  46135. name: "Front",
  46136. image: {
  46137. source: "./media/characters/fowler-karlsson/front.svg",
  46138. extra: 897/845,
  46139. bottom: 123/1020
  46140. }
  46141. },
  46142. back: {
  46143. height: math.unit(200, "cm"),
  46144. weight: math.unit(250, "lb"),
  46145. name: "Back",
  46146. image: {
  46147. source: "./media/characters/fowler-karlsson/back.svg",
  46148. extra: 999/944,
  46149. bottom: 26/1025
  46150. }
  46151. },
  46152. dick: {
  46153. height: math.unit(1.92, "feet"),
  46154. weight: math.unit(150, "lb"),
  46155. name: "Dick",
  46156. image: {
  46157. source: "./media/characters/fowler-karlsson/dick.svg"
  46158. }
  46159. },
  46160. },
  46161. [
  46162. {
  46163. name: "Normal",
  46164. height: math.unit(200, "cm"),
  46165. default: true
  46166. },
  46167. {
  46168. name: "Smaller Macro",
  46169. height: math.unit(90, "m")
  46170. },
  46171. {
  46172. name: "Macro",
  46173. height: math.unit(150, "m")
  46174. },
  46175. {
  46176. name: "Bigger Macro",
  46177. height: math.unit(300, "m")
  46178. },
  46179. ]
  46180. ))
  46181. characterMakers.push(() => makeCharacter(
  46182. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46183. {
  46184. side: {
  46185. height: math.unit(8 + 2/12, "feet"),
  46186. weight: math.unit(1, "tonne"),
  46187. name: "Side",
  46188. image: {
  46189. source: "./media/characters/rylide/side.svg",
  46190. extra: 1318/1034,
  46191. bottom: 106/1424
  46192. }
  46193. },
  46194. sitting: {
  46195. height: math.unit(303, "cm"),
  46196. weight: math.unit(1, "tonne"),
  46197. name: "Sitting",
  46198. image: {
  46199. source: "./media/characters/rylide/sitting.svg",
  46200. extra: 1303/1103,
  46201. bottom: 36/1339
  46202. }
  46203. },
  46204. },
  46205. [
  46206. {
  46207. name: "Normal",
  46208. height: math.unit(8 + 2/12, "feet"),
  46209. default: true
  46210. },
  46211. ]
  46212. ))
  46213. characterMakers.push(() => makeCharacter(
  46214. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46215. {
  46216. front: {
  46217. height: math.unit(5 + 10/12, "feet"),
  46218. weight: math.unit(160, "lb"),
  46219. name: "Front",
  46220. image: {
  46221. source: "./media/characters/pudask/front.svg",
  46222. extra: 1616/1590,
  46223. bottom: 161/1777
  46224. }
  46225. },
  46226. },
  46227. [
  46228. {
  46229. name: "Ferret Height",
  46230. height: math.unit(2 + 5/12, "feet")
  46231. },
  46232. {
  46233. name: "Canon Height",
  46234. height: math.unit(5 + 10/12, "feet"),
  46235. default: true
  46236. },
  46237. ]
  46238. ))
  46239. characterMakers.push(() => makeCharacter(
  46240. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46241. {
  46242. front: {
  46243. height: math.unit(3 + 6/12, "feet"),
  46244. weight: math.unit(60, "lb"),
  46245. name: "Front",
  46246. image: {
  46247. source: "./media/characters/ramita/front.svg",
  46248. extra: 1402/1232,
  46249. bottom: 62/1464
  46250. }
  46251. },
  46252. dressed: {
  46253. height: math.unit(3 + 6/12, "feet"),
  46254. weight: math.unit(60, "lb"),
  46255. name: "Dressed",
  46256. image: {
  46257. source: "./media/characters/ramita/dressed.svg",
  46258. extra: 1534/1249,
  46259. bottom: 50/1584
  46260. }
  46261. },
  46262. },
  46263. [
  46264. {
  46265. name: "Normal",
  46266. height: math.unit(3 + 6/12, "feet"),
  46267. default: true
  46268. },
  46269. ]
  46270. ))
  46271. characterMakers.push(() => makeCharacter(
  46272. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46273. {
  46274. front: {
  46275. height: math.unit(8, "feet"),
  46276. name: "Front",
  46277. image: {
  46278. source: "./media/characters/ark/front.svg",
  46279. extra: 772/693,
  46280. bottom: 45/817
  46281. }
  46282. },
  46283. },
  46284. [
  46285. {
  46286. name: "Normal",
  46287. height: math.unit(8, "feet"),
  46288. default: true
  46289. },
  46290. ]
  46291. ))
  46292. characterMakers.push(() => makeCharacter(
  46293. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46294. {
  46295. front: {
  46296. height: math.unit(6, "feet"),
  46297. weight: math.unit(250, "lb"),
  46298. volume: math.unit(5/8, "gallons"),
  46299. name: "Front",
  46300. image: {
  46301. source: "./media/characters/ludwig-horn/front.svg",
  46302. extra: 1782/1635,
  46303. bottom: 96/1878
  46304. }
  46305. },
  46306. back: {
  46307. height: math.unit(6, "feet"),
  46308. weight: math.unit(250, "lb"),
  46309. volume: math.unit(5/8, "gallons"),
  46310. name: "Back",
  46311. image: {
  46312. source: "./media/characters/ludwig-horn/back.svg",
  46313. extra: 1874/1729,
  46314. bottom: 27/1901
  46315. }
  46316. },
  46317. dick: {
  46318. height: math.unit(1.05, "feet"),
  46319. weight: math.unit(15, "lb"),
  46320. volume: math.unit(5/8, "gallons"),
  46321. name: "Dick",
  46322. image: {
  46323. source: "./media/characters/ludwig-horn/dick.svg"
  46324. }
  46325. },
  46326. },
  46327. [
  46328. {
  46329. name: "Small",
  46330. height: math.unit(6, "feet")
  46331. },
  46332. {
  46333. name: "Typical",
  46334. height: math.unit(12, "feet"),
  46335. default: true
  46336. },
  46337. {
  46338. name: "Building",
  46339. height: math.unit(80, "feet")
  46340. },
  46341. {
  46342. name: "Town",
  46343. height: math.unit(800, "feet")
  46344. },
  46345. {
  46346. name: "Kingdom",
  46347. height: math.unit(80000, "feet")
  46348. },
  46349. {
  46350. name: "Planet",
  46351. height: math.unit(8000000, "feet")
  46352. },
  46353. {
  46354. name: "Universe",
  46355. height: math.unit(8000000000, "feet")
  46356. },
  46357. {
  46358. name: "Transcended",
  46359. height: math.unit(8e27, "feet")
  46360. },
  46361. ]
  46362. ))
  46363. characterMakers.push(() => makeCharacter(
  46364. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46365. {
  46366. front: {
  46367. height: math.unit(5, "feet"),
  46368. weight: math.unit(50, "kg"),
  46369. name: "Front",
  46370. image: {
  46371. source: "./media/characters/biot-avery/front.svg",
  46372. extra: 1295/1232,
  46373. bottom: 86/1381
  46374. }
  46375. },
  46376. },
  46377. [
  46378. {
  46379. name: "Normal",
  46380. height: math.unit(5, "feet"),
  46381. default: true
  46382. },
  46383. ]
  46384. ))
  46385. characterMakers.push(() => makeCharacter(
  46386. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46387. {
  46388. front: {
  46389. height: math.unit(6, "feet"),
  46390. name: "Front",
  46391. image: {
  46392. source: "./media/characters/kitsune-kiro/front.svg",
  46393. extra: 1270/1158,
  46394. bottom: 42/1312
  46395. }
  46396. },
  46397. frontAlt: {
  46398. height: math.unit(6, "feet"),
  46399. name: "Front-alt",
  46400. image: {
  46401. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46402. extra: 1130/1081,
  46403. bottom: 36/1166
  46404. }
  46405. },
  46406. },
  46407. [
  46408. {
  46409. name: "Smol",
  46410. height: math.unit(3, "feet")
  46411. },
  46412. {
  46413. name: "Normal",
  46414. height: math.unit(6, "feet"),
  46415. default: true
  46416. },
  46417. ]
  46418. ))
  46419. characterMakers.push(() => makeCharacter(
  46420. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46421. {
  46422. front: {
  46423. height: math.unit(6, "feet"),
  46424. weight: math.unit(125, "lb"),
  46425. name: "Front",
  46426. image: {
  46427. source: "./media/characters/jack-thatcher/front.svg",
  46428. extra: 1474/1370,
  46429. bottom: 26/1500
  46430. }
  46431. },
  46432. back: {
  46433. height: math.unit(6, "feet"),
  46434. weight: math.unit(125, "lb"),
  46435. name: "Back",
  46436. image: {
  46437. source: "./media/characters/jack-thatcher/back.svg",
  46438. extra: 1489/1384,
  46439. bottom: 18/1507
  46440. }
  46441. },
  46442. },
  46443. [
  46444. {
  46445. name: "Normal",
  46446. height: math.unit(6, "feet"),
  46447. default: true
  46448. },
  46449. {
  46450. name: "Macro",
  46451. height: math.unit(75, "feet")
  46452. },
  46453. {
  46454. name: "Macro-er",
  46455. height: math.unit(250, "feet")
  46456. },
  46457. ]
  46458. ))
  46459. characterMakers.push(() => makeCharacter(
  46460. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46461. {
  46462. front: {
  46463. height: math.unit(7, "feet"),
  46464. weight: math.unit(110, "kg"),
  46465. name: "Front",
  46466. image: {
  46467. source: "./media/characters/max-hyper/front.svg",
  46468. extra: 1969/1881,
  46469. bottom: 49/2018
  46470. }
  46471. },
  46472. },
  46473. [
  46474. {
  46475. name: "Normal",
  46476. height: math.unit(7, "feet"),
  46477. default: true
  46478. },
  46479. ]
  46480. ))
  46481. characterMakers.push(() => makeCharacter(
  46482. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46483. {
  46484. front: {
  46485. height: math.unit(5 + 5/12, "feet"),
  46486. weight: math.unit(160, "lb"),
  46487. name: "Front",
  46488. image: {
  46489. source: "./media/characters/spook/front.svg",
  46490. extra: 794/791,
  46491. bottom: 54/848
  46492. }
  46493. },
  46494. back: {
  46495. height: math.unit(5 + 5/12, "feet"),
  46496. weight: math.unit(160, "lb"),
  46497. name: "Back",
  46498. image: {
  46499. source: "./media/characters/spook/back.svg",
  46500. extra: 812/798,
  46501. bottom: 32/844
  46502. }
  46503. },
  46504. },
  46505. [
  46506. {
  46507. name: "Normal",
  46508. height: math.unit(5 + 5/12, "feet"),
  46509. default: true
  46510. },
  46511. ]
  46512. ))
  46513. characterMakers.push(() => makeCharacter(
  46514. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46515. {
  46516. front: {
  46517. height: math.unit(18, "feet"),
  46518. name: "Front",
  46519. image: {
  46520. source: "./media/characters/xeaduulix/front.svg",
  46521. extra: 1380/1166,
  46522. bottom: 110/1490
  46523. }
  46524. },
  46525. back: {
  46526. height: math.unit(18, "feet"),
  46527. name: "Back",
  46528. image: {
  46529. source: "./media/characters/xeaduulix/back.svg",
  46530. extra: 1592/1170,
  46531. bottom: 128/1720
  46532. }
  46533. },
  46534. frontNsfw: {
  46535. height: math.unit(18, "feet"),
  46536. name: "Front (NSFW)",
  46537. image: {
  46538. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46539. extra: 1380/1166,
  46540. bottom: 110/1490
  46541. }
  46542. },
  46543. backNsfw: {
  46544. height: math.unit(18, "feet"),
  46545. name: "Back (NSFW)",
  46546. image: {
  46547. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46548. extra: 1592/1170,
  46549. bottom: 128/1720
  46550. }
  46551. },
  46552. },
  46553. [
  46554. {
  46555. name: "Normal",
  46556. height: math.unit(18, "feet"),
  46557. default: true
  46558. },
  46559. ]
  46560. ))
  46561. characterMakers.push(() => makeCharacter(
  46562. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46563. {
  46564. spreadWings: {
  46565. height: math.unit(20, "feet"),
  46566. name: "Spread Wings",
  46567. image: {
  46568. source: "./media/characters/fledge/spread-wings.svg",
  46569. extra: 693/635,
  46570. bottom: 26/719
  46571. }
  46572. },
  46573. front: {
  46574. height: math.unit(20, "feet"),
  46575. name: "Front",
  46576. image: {
  46577. source: "./media/characters/fledge/front.svg",
  46578. extra: 684/637,
  46579. bottom: 18/702
  46580. }
  46581. },
  46582. frontAlt: {
  46583. height: math.unit(20, "feet"),
  46584. name: "Front (Alt)",
  46585. image: {
  46586. source: "./media/characters/fledge/front-alt.svg",
  46587. extra: 708/664,
  46588. bottom: 13/721
  46589. }
  46590. },
  46591. back: {
  46592. height: math.unit(20, "feet"),
  46593. name: "Back",
  46594. image: {
  46595. source: "./media/characters/fledge/back.svg",
  46596. extra: 718/634,
  46597. bottom: 22/740
  46598. }
  46599. },
  46600. head: {
  46601. height: math.unit(5.55, "feet"),
  46602. name: "Head",
  46603. image: {
  46604. source: "./media/characters/fledge/head.svg"
  46605. }
  46606. },
  46607. headAlt: {
  46608. height: math.unit(5.1, "feet"),
  46609. name: "Head (Alt)",
  46610. image: {
  46611. source: "./media/characters/fledge/head-alt.svg"
  46612. }
  46613. },
  46614. },
  46615. [
  46616. {
  46617. name: "Small",
  46618. height: math.unit(6 + 2/12, "feet")
  46619. },
  46620. {
  46621. name: "Big",
  46622. height: math.unit(20, "feet"),
  46623. default: true
  46624. },
  46625. {
  46626. name: "Giant",
  46627. height: math.unit(100, "feet")
  46628. },
  46629. {
  46630. name: "Macro",
  46631. height: math.unit(200, "feet")
  46632. },
  46633. ]
  46634. ))
  46635. characterMakers.push(() => makeCharacter(
  46636. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46637. {
  46638. front: {
  46639. height: math.unit(1, "meter"),
  46640. name: "Front",
  46641. image: {
  46642. source: "./media/characters/atlas-morenai/front.svg",
  46643. extra: 1275/1043,
  46644. bottom: 19/1294
  46645. }
  46646. },
  46647. back: {
  46648. height: math.unit(1, "meter"),
  46649. name: "Back",
  46650. image: {
  46651. source: "./media/characters/atlas-morenai/back.svg",
  46652. extra: 1141/1001,
  46653. bottom: 25/1166
  46654. }
  46655. },
  46656. },
  46657. [
  46658. {
  46659. name: "Normal",
  46660. height: math.unit(1, "meter"),
  46661. default: true
  46662. },
  46663. {
  46664. name: "Magic-Infused",
  46665. height: math.unit(5, "meters")
  46666. },
  46667. ]
  46668. ))
  46669. characterMakers.push(() => makeCharacter(
  46670. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46671. {
  46672. front: {
  46673. height: math.unit(5, "meters"),
  46674. name: "Front",
  46675. image: {
  46676. source: "./media/characters/cintia/front.svg",
  46677. extra: 1312/1228,
  46678. bottom: 38/1350
  46679. }
  46680. },
  46681. back: {
  46682. height: math.unit(5, "meters"),
  46683. name: "Back",
  46684. image: {
  46685. source: "./media/characters/cintia/back.svg",
  46686. extra: 1260/1166,
  46687. bottom: 98/1358
  46688. }
  46689. },
  46690. frontDick: {
  46691. height: math.unit(5, "meters"),
  46692. name: "Front (Dick)",
  46693. image: {
  46694. source: "./media/characters/cintia/front-dick.svg",
  46695. extra: 1312/1228,
  46696. bottom: 38/1350
  46697. }
  46698. },
  46699. backDick: {
  46700. height: math.unit(5, "meters"),
  46701. name: "Back (Dick)",
  46702. image: {
  46703. source: "./media/characters/cintia/back-dick.svg",
  46704. extra: 1260/1166,
  46705. bottom: 98/1358
  46706. }
  46707. },
  46708. bust: {
  46709. height: math.unit(1.97, "meters"),
  46710. name: "Bust",
  46711. image: {
  46712. source: "./media/characters/cintia/bust.svg",
  46713. extra: 617/565,
  46714. bottom: 0/617
  46715. }
  46716. },
  46717. },
  46718. [
  46719. {
  46720. name: "Normal",
  46721. height: math.unit(5, "meters"),
  46722. default: true
  46723. },
  46724. ]
  46725. ))
  46726. characterMakers.push(() => makeCharacter(
  46727. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46728. {
  46729. side: {
  46730. height: math.unit(100, "feet"),
  46731. name: "Side",
  46732. image: {
  46733. source: "./media/characters/denora/side.svg",
  46734. extra: 875/803,
  46735. bottom: 9/884
  46736. }
  46737. },
  46738. },
  46739. [
  46740. {
  46741. name: "Standard",
  46742. height: math.unit(100, "feet"),
  46743. default: true
  46744. },
  46745. {
  46746. name: "Grand",
  46747. height: math.unit(1000, "feet")
  46748. },
  46749. {
  46750. name: "Conquering",
  46751. height: math.unit(10000, "feet")
  46752. },
  46753. ]
  46754. ))
  46755. characterMakers.push(() => makeCharacter(
  46756. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46757. {
  46758. dressed: {
  46759. height: math.unit(8 + 5/12, "feet"),
  46760. weight: math.unit(700, "lb"),
  46761. name: "Dressed",
  46762. image: {
  46763. source: "./media/characters/kiva/dressed.svg",
  46764. extra: 1102/1055,
  46765. bottom: 60/1162
  46766. }
  46767. },
  46768. nude: {
  46769. height: math.unit(8 + 5/12, "feet"),
  46770. weight: math.unit(700, "lb"),
  46771. name: "Nude",
  46772. image: {
  46773. source: "./media/characters/kiva/nude.svg",
  46774. extra: 1102/1055,
  46775. bottom: 60/1162
  46776. }
  46777. },
  46778. },
  46779. [
  46780. {
  46781. name: "Base Height",
  46782. height: math.unit(8 + 5/12, "feet"),
  46783. default: true
  46784. },
  46785. {
  46786. name: "Macro",
  46787. height: math.unit(100, "feet")
  46788. },
  46789. {
  46790. name: "Max",
  46791. height: math.unit(3280, "feet")
  46792. },
  46793. ]
  46794. ))
  46795. characterMakers.push(() => makeCharacter(
  46796. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46797. {
  46798. front: {
  46799. height: math.unit(6 + 8/12, "feet"),
  46800. weight: math.unit(250, "lb"),
  46801. name: "Front",
  46802. image: {
  46803. source: "./media/characters/ztragon/front.svg",
  46804. extra: 1825/1684,
  46805. bottom: 98/1923
  46806. }
  46807. },
  46808. },
  46809. [
  46810. {
  46811. name: "Normal",
  46812. height: math.unit(6 + 8/12, "feet"),
  46813. default: true
  46814. },
  46815. {
  46816. name: "Macro",
  46817. height: math.unit(80, "feet")
  46818. },
  46819. ]
  46820. ))
  46821. characterMakers.push(() => makeCharacter(
  46822. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46823. {
  46824. front: {
  46825. height: math.unit(10.4, "feet"),
  46826. weight: math.unit(2, "tons"),
  46827. name: "Front",
  46828. image: {
  46829. source: "./media/characters/yesenia/front.svg",
  46830. extra: 1479/1474,
  46831. bottom: 233/1712
  46832. }
  46833. },
  46834. },
  46835. [
  46836. {
  46837. name: "Normal",
  46838. height: math.unit(10.4, "feet"),
  46839. default: true
  46840. },
  46841. ]
  46842. ))
  46843. characterMakers.push(() => makeCharacter(
  46844. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46845. {
  46846. normal: {
  46847. height: math.unit(6 + 1/12, "feet"),
  46848. weight: math.unit(180, "lb"),
  46849. name: "Normal",
  46850. image: {
  46851. source: "./media/characters/leanne-lycheborne/normal.svg",
  46852. extra: 1748/1660,
  46853. bottom: 98/1846
  46854. }
  46855. },
  46856. were: {
  46857. height: math.unit(12, "feet"),
  46858. weight: math.unit(1600, "lb"),
  46859. name: "Were",
  46860. image: {
  46861. source: "./media/characters/leanne-lycheborne/were.svg",
  46862. extra: 1485/1432,
  46863. bottom: 66/1551
  46864. }
  46865. },
  46866. },
  46867. [
  46868. {
  46869. name: "Normal",
  46870. height: math.unit(6 + 1/12, "feet"),
  46871. default: true
  46872. },
  46873. ]
  46874. ))
  46875. characterMakers.push(() => makeCharacter(
  46876. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  46877. {
  46878. side: {
  46879. height: math.unit(13, "feet"),
  46880. name: "Side",
  46881. image: {
  46882. source: "./media/characters/kira-tyler/side.svg",
  46883. extra: 693/393,
  46884. bottom: 58/751
  46885. }
  46886. },
  46887. },
  46888. [
  46889. {
  46890. name: "Normal",
  46891. height: math.unit(13, "feet"),
  46892. default: true
  46893. },
  46894. ]
  46895. ))
  46896. characterMakers.push(() => makeCharacter(
  46897. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  46898. {
  46899. front: {
  46900. height: math.unit(10.3, "feet"),
  46901. weight: math.unit(150, "lb"),
  46902. name: "Front",
  46903. image: {
  46904. source: "./media/characters/blaze/front.svg",
  46905. extra: 1378/1286,
  46906. bottom: 172/1550
  46907. }
  46908. },
  46909. },
  46910. [
  46911. {
  46912. name: "Normal",
  46913. height: math.unit(10.3, "feet"),
  46914. default: true
  46915. },
  46916. ]
  46917. ))
  46918. characterMakers.push(() => makeCharacter(
  46919. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  46920. {
  46921. side: {
  46922. height: math.unit(2, "meters"),
  46923. weight: math.unit(400, "kg"),
  46924. name: "Side",
  46925. image: {
  46926. source: "./media/characters/anu/side.svg",
  46927. extra: 506/394,
  46928. bottom: 18/524
  46929. }
  46930. },
  46931. },
  46932. [
  46933. {
  46934. name: "Humanoid",
  46935. height: math.unit(2, "meters")
  46936. },
  46937. {
  46938. name: "Normal",
  46939. height: math.unit(5, "meters"),
  46940. default: true
  46941. },
  46942. ]
  46943. ))
  46944. characterMakers.push(() => makeCharacter(
  46945. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  46946. {
  46947. front: {
  46948. height: math.unit(5 + 5/12, "feet"),
  46949. weight: math.unit(170, "lb"),
  46950. name: "Front",
  46951. image: {
  46952. source: "./media/characters/synx-the-lynx/front.svg",
  46953. extra: 1893/1745,
  46954. bottom: 17/1910
  46955. }
  46956. },
  46957. side: {
  46958. height: math.unit(5 + 5/12, "feet"),
  46959. weight: math.unit(170, "lb"),
  46960. name: "Side",
  46961. image: {
  46962. source: "./media/characters/synx-the-lynx/side.svg",
  46963. extra: 1884/1740,
  46964. bottom: 39/1923
  46965. }
  46966. },
  46967. back: {
  46968. height: math.unit(5 + 5/12, "feet"),
  46969. weight: math.unit(170, "lb"),
  46970. name: "Back",
  46971. image: {
  46972. source: "./media/characters/synx-the-lynx/back.svg",
  46973. extra: 1903/1755,
  46974. bottom: 14/1917
  46975. }
  46976. },
  46977. },
  46978. [
  46979. {
  46980. name: "Normal",
  46981. height: math.unit(5 + 5/12, "feet"),
  46982. default: true
  46983. },
  46984. ]
  46985. ))
  46986. characterMakers.push(() => makeCharacter(
  46987. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  46988. {
  46989. back: {
  46990. height: math.unit(15, "feet"),
  46991. name: "Back",
  46992. image: {
  46993. source: "./media/characters/nadezda-fex/back.svg",
  46994. extra: 1695/1481,
  46995. bottom: 25/1720
  46996. }
  46997. },
  46998. },
  46999. [
  47000. {
  47001. name: "Normal",
  47002. height: math.unit(15, "feet"),
  47003. default: true
  47004. },
  47005. {
  47006. name: "Macro",
  47007. height: math.unit(2.5, "miles")
  47008. },
  47009. {
  47010. name: "Goddess",
  47011. height: math.unit(2, "multiverses")
  47012. },
  47013. ]
  47014. ))
  47015. characterMakers.push(() => makeCharacter(
  47016. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47017. {
  47018. front: {
  47019. height: math.unit(216, "cm"),
  47020. name: "Front",
  47021. image: {
  47022. source: "./media/characters/lev/front.svg",
  47023. extra: 1728/1670,
  47024. bottom: 82/1810
  47025. }
  47026. },
  47027. back: {
  47028. height: math.unit(216, "cm"),
  47029. name: "Back",
  47030. image: {
  47031. source: "./media/characters/lev/back.svg",
  47032. extra: 1738/1675,
  47033. bottom: 24/1762
  47034. }
  47035. },
  47036. dressed: {
  47037. height: math.unit(216, "cm"),
  47038. name: "Dressed",
  47039. image: {
  47040. source: "./media/characters/lev/dressed.svg",
  47041. extra: 1397/1351,
  47042. bottom: 73/1470
  47043. }
  47044. },
  47045. head: {
  47046. height: math.unit(0.51, "meter"),
  47047. name: "Head",
  47048. image: {
  47049. source: "./media/characters/lev/head.svg"
  47050. }
  47051. },
  47052. },
  47053. [
  47054. {
  47055. name: "Normal",
  47056. height: math.unit(216, "cm"),
  47057. default: true
  47058. },
  47059. {
  47060. name: "Relatively Macro",
  47061. height: math.unit(80, "meters")
  47062. },
  47063. {
  47064. name: "Megamacro",
  47065. height: math.unit(21600, "meters")
  47066. },
  47067. {
  47068. name: "Megamacro+",
  47069. height: math.unit(64800, "meters")
  47070. },
  47071. ]
  47072. ))
  47073. characterMakers.push(() => makeCharacter(
  47074. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47075. {
  47076. front: {
  47077. height: math.unit(2, "meters"),
  47078. weight: math.unit(80, "kg"),
  47079. name: "Front",
  47080. image: {
  47081. source: "./media/characters/moka/front.svg",
  47082. extra: 1337/1255,
  47083. bottom: 58/1395
  47084. }
  47085. },
  47086. },
  47087. [
  47088. {
  47089. name: "Micro",
  47090. height: math.unit(15, "cm")
  47091. },
  47092. {
  47093. name: "Normal",
  47094. height: math.unit(2, "meters"),
  47095. default: true
  47096. },
  47097. {
  47098. name: "Macro",
  47099. height: math.unit(20, "meters"),
  47100. },
  47101. ]
  47102. ))
  47103. characterMakers.push(() => makeCharacter(
  47104. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47105. {
  47106. front: {
  47107. height: math.unit(9, "feet"),
  47108. weight: math.unit(240, "lb"),
  47109. name: "Front",
  47110. image: {
  47111. source: "./media/characters/kuzco/front.svg",
  47112. extra: 1593/1487,
  47113. bottom: 32/1625
  47114. }
  47115. },
  47116. side: {
  47117. height: math.unit(9, "feet"),
  47118. weight: math.unit(240, "lb"),
  47119. name: "Side",
  47120. image: {
  47121. source: "./media/characters/kuzco/side.svg",
  47122. extra: 1575/1485,
  47123. bottom: 30/1605
  47124. }
  47125. },
  47126. back: {
  47127. height: math.unit(9, "feet"),
  47128. weight: math.unit(240, "lb"),
  47129. name: "Back",
  47130. image: {
  47131. source: "./media/characters/kuzco/back.svg",
  47132. extra: 1603/1514,
  47133. bottom: 14/1617
  47134. }
  47135. },
  47136. },
  47137. [
  47138. {
  47139. name: "Normal",
  47140. height: math.unit(9, "feet"),
  47141. default: true
  47142. },
  47143. ]
  47144. ))
  47145. characterMakers.push(() => makeCharacter(
  47146. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47147. {
  47148. side: {
  47149. height: math.unit(2, "meters"),
  47150. weight: math.unit(300, "kg"),
  47151. name: "Side",
  47152. image: {
  47153. source: "./media/characters/ceruleus/side.svg",
  47154. extra: 1068/974,
  47155. bottom: 126/1194
  47156. }
  47157. },
  47158. maw: {
  47159. height: math.unit(0.8125, "meter"),
  47160. name: "Maw",
  47161. image: {
  47162. source: "./media/characters/ceruleus/maw.svg"
  47163. }
  47164. },
  47165. },
  47166. [
  47167. {
  47168. name: "Normal",
  47169. height: math.unit(16, "meters"),
  47170. default: true
  47171. },
  47172. ]
  47173. ))
  47174. characterMakers.push(() => makeCharacter(
  47175. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47176. {
  47177. front: {
  47178. height: math.unit(9, "feet"),
  47179. weight: math.unit(500, "kg"),
  47180. name: "Front",
  47181. image: {
  47182. source: "./media/characters/acouya/front.svg",
  47183. extra: 1660/1473,
  47184. bottom: 28/1688
  47185. }
  47186. },
  47187. },
  47188. [
  47189. {
  47190. name: "Normal",
  47191. height: math.unit(9, "feet"),
  47192. default: true
  47193. },
  47194. ]
  47195. ))
  47196. characterMakers.push(() => makeCharacter(
  47197. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47198. {
  47199. front: {
  47200. height: math.unit(5 + 6/12, "feet"),
  47201. weight: math.unit(195, "lb"),
  47202. name: "Front",
  47203. image: {
  47204. source: "./media/characters/vant/front.svg",
  47205. extra: 1396/1320,
  47206. bottom: 20/1416
  47207. }
  47208. },
  47209. back: {
  47210. height: math.unit(5 + 6/12, "feet"),
  47211. weight: math.unit(195, "lb"),
  47212. name: "Back",
  47213. image: {
  47214. source: "./media/characters/vant/back.svg",
  47215. extra: 1396/1320,
  47216. bottom: 20/1416
  47217. }
  47218. },
  47219. maw: {
  47220. height: math.unit(0.75, "feet"),
  47221. name: "Maw",
  47222. image: {
  47223. source: "./media/characters/vant/maw.svg"
  47224. }
  47225. },
  47226. paw: {
  47227. height: math.unit(1.07, "feet"),
  47228. name: "Paw",
  47229. image: {
  47230. source: "./media/characters/vant/paw.svg"
  47231. }
  47232. },
  47233. },
  47234. [
  47235. {
  47236. name: "Micro",
  47237. height: math.unit(0.25, "inches")
  47238. },
  47239. {
  47240. name: "Normal",
  47241. height: math.unit(5 + 6/12, "feet"),
  47242. default: true
  47243. },
  47244. {
  47245. name: "Macro",
  47246. height: math.unit(75, "feet")
  47247. },
  47248. ]
  47249. ))
  47250. characterMakers.push(() => makeCharacter(
  47251. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47252. {
  47253. front: {
  47254. height: math.unit(30, "meters"),
  47255. weight: math.unit(363, "tons"),
  47256. name: "Front",
  47257. image: {
  47258. source: "./media/characters/ahra/front.svg",
  47259. extra: 1914/1814,
  47260. bottom: 46/1960
  47261. }
  47262. },
  47263. },
  47264. [
  47265. {
  47266. name: "Macro",
  47267. height: math.unit(30, "meters"),
  47268. default: true
  47269. },
  47270. ]
  47271. ))
  47272. characterMakers.push(() => makeCharacter(
  47273. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47274. {
  47275. undressed: {
  47276. height: math.unit(2, "m"),
  47277. weight: math.unit(250, "kg"),
  47278. name: "Undressed",
  47279. image: {
  47280. source: "./media/characters/coriander/undressed.svg",
  47281. extra: 1757/1606,
  47282. bottom: 107/1864
  47283. }
  47284. },
  47285. dressed: {
  47286. height: math.unit(2, "m"),
  47287. weight: math.unit(250, "kg"),
  47288. name: "Dressed",
  47289. image: {
  47290. source: "./media/characters/coriander/dressed.svg",
  47291. extra: 1757/1606,
  47292. bottom: 107/1864
  47293. }
  47294. },
  47295. },
  47296. [
  47297. {
  47298. name: "Normal",
  47299. height: math.unit(4, "meters"),
  47300. default: true
  47301. },
  47302. {
  47303. name: "XL",
  47304. height: math.unit(6, "meters")
  47305. },
  47306. {
  47307. name: "XXL",
  47308. height: math.unit(8, "meters")
  47309. },
  47310. ]
  47311. ))
  47312. characterMakers.push(() => makeCharacter(
  47313. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47314. {
  47315. front: {
  47316. height: math.unit(6, "feet"),
  47317. name: "Front",
  47318. image: {
  47319. source: "./media/characters/syrinx/front.svg",
  47320. extra: 1557/1259,
  47321. bottom: 171/1728
  47322. }
  47323. },
  47324. },
  47325. [
  47326. {
  47327. name: "Normal",
  47328. height: math.unit(6 + 3/12, "feet"),
  47329. default: true
  47330. },
  47331. ]
  47332. ))
  47333. characterMakers.push(() => makeCharacter(
  47334. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47335. {
  47336. front: {
  47337. height: math.unit(11 + 6/12, "feet"),
  47338. weight: math.unit(1.5, "tons"),
  47339. name: "Front",
  47340. image: {
  47341. source: "./media/characters/bor/front.svg",
  47342. extra: 1189/1109,
  47343. bottom: 170/1359
  47344. }
  47345. },
  47346. },
  47347. [
  47348. {
  47349. name: "Normal",
  47350. height: math.unit(11 + 6/12, "feet"),
  47351. default: true
  47352. },
  47353. {
  47354. name: "Macro",
  47355. height: math.unit(32 + 9/12, "feet")
  47356. },
  47357. ]
  47358. ))
  47359. characterMakers.push(() => makeCharacter(
  47360. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47361. {
  47362. anthro: {
  47363. height: math.unit(9, "feet"),
  47364. weight: math.unit(2076, "lb"),
  47365. name: "Anthro",
  47366. image: {
  47367. source: "./media/characters/abacus/anthro.svg",
  47368. extra: 1540/1494,
  47369. bottom: 233/1773
  47370. }
  47371. },
  47372. pigeon: {
  47373. height: math.unit(1, "feet"),
  47374. name: "Pigeon",
  47375. image: {
  47376. source: "./media/characters/abacus/pigeon.svg",
  47377. extra: 528/525,
  47378. bottom: 46/574
  47379. }
  47380. },
  47381. },
  47382. [
  47383. {
  47384. name: "Normal",
  47385. height: math.unit(9, "feet"),
  47386. default: true
  47387. },
  47388. ]
  47389. ))
  47390. characterMakers.push(() => makeCharacter(
  47391. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47392. {
  47393. side: {
  47394. height: math.unit(6, "feet"),
  47395. name: "Side",
  47396. image: {
  47397. source: "./media/characters/delkhan/side.svg",
  47398. extra: 1884/1786,
  47399. bottom: 308/2192
  47400. }
  47401. },
  47402. head: {
  47403. height: math.unit(3.38, "feet"),
  47404. name: "Head",
  47405. image: {
  47406. source: "./media/characters/delkhan/head.svg"
  47407. }
  47408. },
  47409. },
  47410. [
  47411. {
  47412. name: "Normal",
  47413. height: math.unit(72, "feet"),
  47414. default: true
  47415. },
  47416. {
  47417. name: "Giant",
  47418. height: math.unit(172, "feet")
  47419. },
  47420. ]
  47421. ))
  47422. characterMakers.push(() => makeCharacter(
  47423. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47424. {
  47425. standing: {
  47426. height: math.unit(6, "feet"),
  47427. name: "Standing",
  47428. image: {
  47429. source: "./media/characters/euchidat/standing.svg",
  47430. extra: 1612/1553,
  47431. bottom: 116/1728
  47432. }
  47433. },
  47434. leaning: {
  47435. height: math.unit(6, "feet"),
  47436. name: "Leaning",
  47437. image: {
  47438. source: "./media/characters/euchidat/leaning.svg",
  47439. extra: 1719/1674,
  47440. bottom: 27/1746
  47441. }
  47442. },
  47443. },
  47444. [
  47445. {
  47446. name: "Normal",
  47447. height: math.unit(175, "feet"),
  47448. default: true
  47449. },
  47450. {
  47451. name: "Megamacro",
  47452. height: math.unit(190, "miles")
  47453. },
  47454. {
  47455. name: "Gigamacro",
  47456. height: math.unit(190000, "miles")
  47457. },
  47458. ]
  47459. ))
  47460. characterMakers.push(() => makeCharacter(
  47461. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47462. {
  47463. front: {
  47464. height: math.unit(6, "feet"),
  47465. weight: math.unit(150, "lb"),
  47466. name: "Front",
  47467. image: {
  47468. source: "./media/characters/rebecca-stack/front.svg",
  47469. extra: 1256/1201,
  47470. bottom: 18/1274
  47471. }
  47472. },
  47473. },
  47474. [
  47475. {
  47476. name: "Normal",
  47477. height: math.unit(5 + 8/12, "feet"),
  47478. default: true
  47479. },
  47480. {
  47481. name: "Demolitionist",
  47482. height: math.unit(200, "feet")
  47483. },
  47484. {
  47485. name: "Out of Control",
  47486. height: math.unit(2, "miles")
  47487. },
  47488. {
  47489. name: "Giga",
  47490. height: math.unit(7200, "miles")
  47491. },
  47492. ]
  47493. ))
  47494. characterMakers.push(() => makeCharacter(
  47495. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47496. {
  47497. front: {
  47498. height: math.unit(6, "feet"),
  47499. weight: math.unit(150, "lb"),
  47500. name: "Front",
  47501. image: {
  47502. source: "./media/characters/jenny-cartwright/front.svg",
  47503. extra: 1384/1376,
  47504. bottom: 58/1442
  47505. }
  47506. },
  47507. },
  47508. [
  47509. {
  47510. name: "Normal",
  47511. height: math.unit(6 + 7/12, "feet"),
  47512. default: true
  47513. },
  47514. {
  47515. name: "Librarian",
  47516. height: math.unit(55, "feet")
  47517. },
  47518. {
  47519. name: "Sightseer",
  47520. height: math.unit(50, "miles")
  47521. },
  47522. {
  47523. name: "Giga",
  47524. height: math.unit(30000, "miles")
  47525. },
  47526. ]
  47527. ))
  47528. characterMakers.push(() => makeCharacter(
  47529. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47530. {
  47531. nude: {
  47532. height: math.unit(8, "feet"),
  47533. weight: math.unit(225, "lb"),
  47534. name: "Nude",
  47535. image: {
  47536. source: "./media/characters/marvy/nude.svg",
  47537. extra: 1900/1683,
  47538. bottom: 89/1989
  47539. }
  47540. },
  47541. dressed: {
  47542. height: math.unit(8, "feet"),
  47543. weight: math.unit(225, "lb"),
  47544. name: "Dressed",
  47545. image: {
  47546. source: "./media/characters/marvy/dressed.svg",
  47547. extra: 1900/1683,
  47548. bottom: 89/1989
  47549. }
  47550. },
  47551. head: {
  47552. height: math.unit(2.85, "feet"),
  47553. name: "Head",
  47554. image: {
  47555. source: "./media/characters/marvy/head.svg"
  47556. }
  47557. },
  47558. },
  47559. [
  47560. {
  47561. name: "Normal",
  47562. height: math.unit(8, "feet"),
  47563. default: true
  47564. },
  47565. ]
  47566. ))
  47567. characterMakers.push(() => makeCharacter(
  47568. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47569. {
  47570. front: {
  47571. height: math.unit(8, "feet"),
  47572. weight: math.unit(250, "lb"),
  47573. name: "Front",
  47574. image: {
  47575. source: "./media/characters/leah/front.svg",
  47576. extra: 1257/1149,
  47577. bottom: 109/1366
  47578. }
  47579. },
  47580. },
  47581. [
  47582. {
  47583. name: "Normal",
  47584. height: math.unit(8, "feet"),
  47585. default: true
  47586. },
  47587. {
  47588. name: "Minimacro",
  47589. height: math.unit(40, "feet")
  47590. },
  47591. {
  47592. name: "Macro",
  47593. height: math.unit(124, "feet")
  47594. },
  47595. {
  47596. name: "Megamacro",
  47597. height: math.unit(850, "feet")
  47598. },
  47599. ]
  47600. ))
  47601. characterMakers.push(() => makeCharacter(
  47602. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47603. {
  47604. side: {
  47605. height: math.unit(13 + 6/12, "feet"),
  47606. weight: math.unit(3200, "lb"),
  47607. name: "Side",
  47608. image: {
  47609. source: "./media/characters/alvir/side.svg",
  47610. extra: 896/589,
  47611. bottom: 26/922
  47612. }
  47613. },
  47614. },
  47615. [
  47616. {
  47617. name: "Normal",
  47618. height: math.unit(13 + 6/12, "feet"),
  47619. default: true
  47620. },
  47621. ]
  47622. ))
  47623. characterMakers.push(() => makeCharacter(
  47624. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47625. {
  47626. front: {
  47627. height: math.unit(5 + 4/12, "feet"),
  47628. weight: math.unit(236, "lb"),
  47629. name: "Front",
  47630. image: {
  47631. source: "./media/characters/zaina-khalil/front.svg",
  47632. extra: 1533/1485,
  47633. bottom: 94/1627
  47634. }
  47635. },
  47636. side: {
  47637. height: math.unit(5 + 4/12, "feet"),
  47638. weight: math.unit(236, "lb"),
  47639. name: "Side",
  47640. image: {
  47641. source: "./media/characters/zaina-khalil/side.svg",
  47642. extra: 1537/1498,
  47643. bottom: 66/1603
  47644. }
  47645. },
  47646. back: {
  47647. height: math.unit(5 + 4/12, "feet"),
  47648. weight: math.unit(236, "lb"),
  47649. name: "Back",
  47650. image: {
  47651. source: "./media/characters/zaina-khalil/back.svg",
  47652. extra: 1546/1494,
  47653. bottom: 89/1635
  47654. }
  47655. },
  47656. },
  47657. [
  47658. {
  47659. name: "Normal",
  47660. height: math.unit(5 + 4/12, "feet"),
  47661. default: true
  47662. },
  47663. ]
  47664. ))
  47665. characterMakers.push(() => makeCharacter(
  47666. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47667. {
  47668. side: {
  47669. height: math.unit(12, "feet"),
  47670. weight: math.unit(4000, "lb"),
  47671. name: "Side",
  47672. image: {
  47673. source: "./media/characters/terry/side.svg",
  47674. extra: 1518/1439,
  47675. bottom: 149/1667
  47676. }
  47677. },
  47678. },
  47679. [
  47680. {
  47681. name: "Normal",
  47682. height: math.unit(12, "feet"),
  47683. default: true
  47684. },
  47685. ]
  47686. ))
  47687. characterMakers.push(() => makeCharacter(
  47688. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47689. {
  47690. front: {
  47691. height: math.unit(12, "feet"),
  47692. weight: math.unit(1500, "lb"),
  47693. name: "Front",
  47694. image: {
  47695. source: "./media/characters/kahea/front.svg",
  47696. extra: 1722/1617,
  47697. bottom: 179/1901
  47698. }
  47699. },
  47700. },
  47701. [
  47702. {
  47703. name: "Normal",
  47704. height: math.unit(12, "feet"),
  47705. default: true
  47706. },
  47707. ]
  47708. ))
  47709. characterMakers.push(() => makeCharacter(
  47710. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47711. {
  47712. demonFront: {
  47713. height: math.unit(36, "feet"),
  47714. name: "Front",
  47715. image: {
  47716. source: "./media/characters/alex-xuria/demon-front.svg",
  47717. extra: 1705/1673,
  47718. bottom: 198/1903
  47719. },
  47720. form: "demon",
  47721. default: true
  47722. },
  47723. demonBack: {
  47724. height: math.unit(36, "feet"),
  47725. name: "Back",
  47726. image: {
  47727. source: "./media/characters/alex-xuria/demon-back.svg",
  47728. extra: 1725/1693,
  47729. bottom: 70/1795
  47730. },
  47731. form: "demon"
  47732. },
  47733. demonHead: {
  47734. height: math.unit(2.14, "meters"),
  47735. name: "Head",
  47736. image: {
  47737. source: "./media/characters/alex-xuria/demon-head.svg"
  47738. },
  47739. form: "demon"
  47740. },
  47741. demonHand: {
  47742. height: math.unit(1.61, "meters"),
  47743. name: "Hand",
  47744. image: {
  47745. source: "./media/characters/alex-xuria/demon-hand.svg"
  47746. },
  47747. form: "demon"
  47748. },
  47749. demonPaw: {
  47750. height: math.unit(1.35, "meters"),
  47751. name: "Paw",
  47752. image: {
  47753. source: "./media/characters/alex-xuria/demon-paw.svg"
  47754. },
  47755. form: "demon"
  47756. },
  47757. demonFoot: {
  47758. height: math.unit(2.2, "meters"),
  47759. name: "Foot",
  47760. image: {
  47761. source: "./media/characters/alex-xuria/demon-foot.svg"
  47762. },
  47763. form: "demon"
  47764. },
  47765. demonCock: {
  47766. height: math.unit(1.74, "meters"),
  47767. name: "Cock",
  47768. image: {
  47769. source: "./media/characters/alex-xuria/demon-cock.svg"
  47770. },
  47771. form: "demon"
  47772. },
  47773. demonTailClosed: {
  47774. height: math.unit(1.47, "meters"),
  47775. name: "Tail (Closed)",
  47776. image: {
  47777. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47778. },
  47779. form: "demon"
  47780. },
  47781. demonTailOpen: {
  47782. height: math.unit(2.85, "meters"),
  47783. name: "Tail (Open)",
  47784. image: {
  47785. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47786. },
  47787. form: "demon"
  47788. },
  47789. incubusFront: {
  47790. height: math.unit(12, "feet"),
  47791. name: "Front",
  47792. image: {
  47793. source: "./media/characters/alex-xuria/incubus-front.svg",
  47794. extra: 1754/1677,
  47795. bottom: 125/1879
  47796. },
  47797. form: "incubus",
  47798. default: true
  47799. },
  47800. incubusBack: {
  47801. height: math.unit(12, "feet"),
  47802. name: "Back",
  47803. image: {
  47804. source: "./media/characters/alex-xuria/incubus-back.svg",
  47805. extra: 1702/1647,
  47806. bottom: 30/1732
  47807. },
  47808. form: "incubus"
  47809. },
  47810. incubusHead: {
  47811. height: math.unit(3.45, "feet"),
  47812. name: "Head",
  47813. image: {
  47814. source: "./media/characters/alex-xuria/incubus-head.svg"
  47815. },
  47816. form: "incubus"
  47817. },
  47818. rabbitFront: {
  47819. height: math.unit(6, "feet"),
  47820. name: "Front",
  47821. image: {
  47822. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47823. extra: 1369/1349,
  47824. bottom: 45/1414
  47825. },
  47826. form: "rabbit",
  47827. default: true
  47828. },
  47829. rabbitSide: {
  47830. height: math.unit(6, "feet"),
  47831. name: "Side",
  47832. image: {
  47833. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47834. extra: 1370/1356,
  47835. bottom: 37/1407
  47836. },
  47837. form: "rabbit"
  47838. },
  47839. rabbitBack: {
  47840. height: math.unit(6, "feet"),
  47841. name: "Back",
  47842. image: {
  47843. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47844. extra: 1375/1358,
  47845. bottom: 43/1418
  47846. },
  47847. form: "rabbit"
  47848. },
  47849. },
  47850. [
  47851. {
  47852. name: "Normal",
  47853. height: math.unit(6, "feet"),
  47854. default: true,
  47855. form: "rabbit"
  47856. },
  47857. {
  47858. name: "Incubus",
  47859. height: math.unit(12, "feet"),
  47860. default: true,
  47861. form: "incubus"
  47862. },
  47863. {
  47864. name: "Demon",
  47865. height: math.unit(36, "feet"),
  47866. default: true,
  47867. form: "demon"
  47868. }
  47869. ],
  47870. {
  47871. "demon": {
  47872. name: "Demon",
  47873. default: true
  47874. },
  47875. "incubus": {
  47876. name: "Incubus",
  47877. },
  47878. "rabbit": {
  47879. name: "Rabbit"
  47880. }
  47881. }
  47882. ))
  47883. characterMakers.push(() => makeCharacter(
  47884. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  47885. {
  47886. front: {
  47887. height: math.unit(7 + 5/12, "feet"),
  47888. weight: math.unit(510, "lb"),
  47889. name: "Front",
  47890. image: {
  47891. source: "./media/characters/syrup/front.svg",
  47892. extra: 932/916,
  47893. bottom: 26/958
  47894. }
  47895. },
  47896. },
  47897. [
  47898. {
  47899. name: "Normal",
  47900. height: math.unit(7 + 5/12, "feet"),
  47901. default: true
  47902. },
  47903. {
  47904. name: "Big",
  47905. height: math.unit(50, "feet")
  47906. },
  47907. {
  47908. name: "Macro",
  47909. height: math.unit(300, "feet")
  47910. },
  47911. {
  47912. name: "Megamacro",
  47913. height: math.unit(1, "mile")
  47914. },
  47915. ]
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  47919. {
  47920. front: {
  47921. height: math.unit(6 + 9/12, "feet"),
  47922. name: "Front",
  47923. image: {
  47924. source: "./media/characters/zeimne/front.svg",
  47925. extra: 1969/1806,
  47926. bottom: 53/2022
  47927. }
  47928. },
  47929. },
  47930. [
  47931. {
  47932. name: "Normal",
  47933. height: math.unit(6 + 9/12, "feet"),
  47934. default: true
  47935. },
  47936. {
  47937. name: "Giant",
  47938. height: math.unit(550, "feet")
  47939. },
  47940. {
  47941. name: "Mega",
  47942. height: math.unit(3, "miles")
  47943. },
  47944. {
  47945. name: "Giga",
  47946. height: math.unit(250, "miles")
  47947. },
  47948. {
  47949. name: "Tera",
  47950. height: math.unit(1, "AU")
  47951. },
  47952. ]
  47953. ))
  47954. characterMakers.push(() => makeCharacter(
  47955. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  47956. {
  47957. front: {
  47958. height: math.unit(5 + 2/12, "feet"),
  47959. name: "Front",
  47960. image: {
  47961. source: "./media/characters/grar/front.svg",
  47962. extra: 1331/1119,
  47963. bottom: 60/1391
  47964. }
  47965. },
  47966. back: {
  47967. height: math.unit(5 + 2/12, "feet"),
  47968. name: "Back",
  47969. image: {
  47970. source: "./media/characters/grar/back.svg",
  47971. extra: 1385/1169,
  47972. bottom: 23/1408
  47973. }
  47974. },
  47975. },
  47976. [
  47977. {
  47978. name: "Normal",
  47979. height: math.unit(5 + 2/12, "feet"),
  47980. default: true
  47981. },
  47982. ]
  47983. ))
  47984. characterMakers.push(() => makeCharacter(
  47985. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  47986. {
  47987. front: {
  47988. height: math.unit(13 + 7/12, "feet"),
  47989. weight: math.unit(2200, "lb"),
  47990. name: "Front",
  47991. image: {
  47992. source: "./media/characters/endraya/front.svg",
  47993. extra: 1289/1215,
  47994. bottom: 50/1339
  47995. }
  47996. },
  47997. nude: {
  47998. height: math.unit(13 + 7/12, "feet"),
  47999. weight: math.unit(2200, "lb"),
  48000. name: "Nude",
  48001. image: {
  48002. source: "./media/characters/endraya/nude.svg",
  48003. extra: 1247/1171,
  48004. bottom: 40/1287
  48005. }
  48006. },
  48007. head: {
  48008. height: math.unit(2.6, "feet"),
  48009. name: "Head",
  48010. image: {
  48011. source: "./media/characters/endraya/head.svg"
  48012. }
  48013. },
  48014. slit: {
  48015. height: math.unit(3.4, "feet"),
  48016. name: "Slit",
  48017. image: {
  48018. source: "./media/characters/endraya/slit.svg"
  48019. }
  48020. },
  48021. },
  48022. [
  48023. {
  48024. name: "Normal",
  48025. height: math.unit(13 + 7/12, "feet"),
  48026. default: true
  48027. },
  48028. {
  48029. name: "Macro",
  48030. height: math.unit(200, "feet")
  48031. },
  48032. ]
  48033. ))
  48034. characterMakers.push(() => makeCharacter(
  48035. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48036. {
  48037. front: {
  48038. height: math.unit(1.81, "meters"),
  48039. weight: math.unit(69, "kg"),
  48040. name: "Front",
  48041. image: {
  48042. source: "./media/characters/rodryana/front.svg",
  48043. extra: 2002/1921,
  48044. bottom: 53/2055
  48045. }
  48046. },
  48047. back: {
  48048. height: math.unit(1.81, "meters"),
  48049. weight: math.unit(69, "kg"),
  48050. name: "Back",
  48051. image: {
  48052. source: "./media/characters/rodryana/back.svg",
  48053. extra: 1993/1926,
  48054. bottom: 48/2041
  48055. }
  48056. },
  48057. maw: {
  48058. height: math.unit(0.19769417475, "meters"),
  48059. name: "Maw",
  48060. image: {
  48061. source: "./media/characters/rodryana/maw.svg"
  48062. }
  48063. },
  48064. slit: {
  48065. height: math.unit(0.31631067961, "meters"),
  48066. name: "Slit",
  48067. image: {
  48068. source: "./media/characters/rodryana/slit.svg"
  48069. }
  48070. },
  48071. },
  48072. [
  48073. {
  48074. name: "Normal",
  48075. height: math.unit(1.81, "meters")
  48076. },
  48077. {
  48078. name: "Mini Macro",
  48079. height: math.unit(181, "meters")
  48080. },
  48081. {
  48082. name: "Macro",
  48083. height: math.unit(452, "meters"),
  48084. default: true
  48085. },
  48086. {
  48087. name: "Mega Macro",
  48088. height: math.unit(1.375, "km")
  48089. },
  48090. {
  48091. name: "Giga Macro",
  48092. height: math.unit(13.575, "km")
  48093. },
  48094. ]
  48095. ))
  48096. characterMakers.push(() => makeCharacter(
  48097. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48098. {
  48099. front: {
  48100. height: math.unit(6, "feet"),
  48101. weight: math.unit(1000, "lb"),
  48102. name: "Front",
  48103. image: {
  48104. source: "./media/characters/asaya/front.svg",
  48105. extra: 1460/1200,
  48106. bottom: 71/1531
  48107. }
  48108. },
  48109. },
  48110. [
  48111. {
  48112. name: "Normal",
  48113. height: math.unit(8, "km"),
  48114. default: true
  48115. },
  48116. ]
  48117. ))
  48118. characterMakers.push(() => makeCharacter(
  48119. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48120. {
  48121. front: {
  48122. height: math.unit(3.5, "meters"),
  48123. name: "Front",
  48124. image: {
  48125. source: "./media/characters/sarzu-and-israz/front.svg",
  48126. extra: 1570/1558,
  48127. bottom: 150/1720
  48128. },
  48129. },
  48130. back: {
  48131. height: math.unit(3.5, "meters"),
  48132. name: "Back",
  48133. image: {
  48134. source: "./media/characters/sarzu-and-israz/back.svg",
  48135. extra: 1523/1509,
  48136. bottom: 132/1655
  48137. },
  48138. },
  48139. frontFemale: {
  48140. height: math.unit(3.5, "meters"),
  48141. name: "Front (Female)",
  48142. image: {
  48143. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48144. extra: 1570/1558,
  48145. bottom: 150/1720
  48146. },
  48147. },
  48148. frontHerm: {
  48149. height: math.unit(3.5, "meters"),
  48150. name: "Front (Herm)",
  48151. image: {
  48152. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48153. extra: 1570/1558,
  48154. bottom: 150/1720
  48155. },
  48156. },
  48157. },
  48158. [
  48159. {
  48160. name: "Normal",
  48161. height: math.unit(3.5, "meters"),
  48162. default: true,
  48163. },
  48164. {
  48165. name: "Macro",
  48166. height: math.unit(65.5, "meters"),
  48167. },
  48168. ],
  48169. ))
  48170. characterMakers.push(() => makeCharacter(
  48171. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48172. {
  48173. front: {
  48174. height: math.unit(6, "feet"),
  48175. weight: math.unit(250, "lb"),
  48176. name: "Front",
  48177. image: {
  48178. source: "./media/characters/zenimma/front.svg",
  48179. extra: 1346/1320,
  48180. bottom: 58/1404
  48181. }
  48182. },
  48183. back: {
  48184. height: math.unit(6, "feet"),
  48185. weight: math.unit(250, "lb"),
  48186. name: "Back",
  48187. image: {
  48188. source: "./media/characters/zenimma/back.svg",
  48189. extra: 1324/1308,
  48190. bottom: 44/1368
  48191. }
  48192. },
  48193. dick: {
  48194. height: math.unit(1.44, "feet"),
  48195. name: "Dick",
  48196. image: {
  48197. source: "./media/characters/zenimma/dick.svg"
  48198. }
  48199. },
  48200. },
  48201. [
  48202. {
  48203. name: "Canon Height",
  48204. height: math.unit(66, "miles"),
  48205. default: true
  48206. },
  48207. ]
  48208. ))
  48209. characterMakers.push(() => makeCharacter(
  48210. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48211. {
  48212. nude: {
  48213. height: math.unit(6, "feet"),
  48214. weight: math.unit(150, "lb"),
  48215. name: "Nude",
  48216. image: {
  48217. source: "./media/characters/shavon/nude.svg",
  48218. extra: 1242/1096,
  48219. bottom: 98/1340
  48220. }
  48221. },
  48222. dressed: {
  48223. height: math.unit(6, "feet"),
  48224. weight: math.unit(150, "lb"),
  48225. name: "Dressed",
  48226. image: {
  48227. source: "./media/characters/shavon/dressed.svg",
  48228. extra: 1242/1096,
  48229. bottom: 98/1340
  48230. }
  48231. },
  48232. },
  48233. [
  48234. {
  48235. name: "Macro",
  48236. height: math.unit(255, "feet"),
  48237. default: true
  48238. },
  48239. ]
  48240. ))
  48241. characterMakers.push(() => makeCharacter(
  48242. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48243. {
  48244. front: {
  48245. height: math.unit(6, "feet"),
  48246. name: "Front",
  48247. image: {
  48248. source: "./media/characters/steph/front.svg",
  48249. extra: 1430/1330,
  48250. bottom: 54/1484
  48251. }
  48252. },
  48253. },
  48254. [
  48255. {
  48256. name: "Normal",
  48257. height: math.unit(6, "feet"),
  48258. default: true
  48259. },
  48260. ]
  48261. ))
  48262. characterMakers.push(() => makeCharacter(
  48263. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48264. {
  48265. front: {
  48266. height: math.unit(9, "feet"),
  48267. weight: math.unit(400, "lb"),
  48268. name: "Front",
  48269. image: {
  48270. source: "./media/characters/kil'aman/front.svg",
  48271. extra: 1210/1159,
  48272. bottom: 109/1319
  48273. }
  48274. },
  48275. head: {
  48276. height: math.unit(2.14, "feet"),
  48277. name: "Head",
  48278. image: {
  48279. source: "./media/characters/kil'aman/head.svg"
  48280. }
  48281. },
  48282. maw: {
  48283. height: math.unit(1.21, "feet"),
  48284. name: "Maw",
  48285. image: {
  48286. source: "./media/characters/kil'aman/maw.svg"
  48287. }
  48288. },
  48289. foot: {
  48290. height: math.unit(1.7, "feet"),
  48291. name: "Foot",
  48292. image: {
  48293. source: "./media/characters/kil'aman/foot.svg"
  48294. }
  48295. },
  48296. dick: {
  48297. height: math.unit(2.1, "feet"),
  48298. name: "Dick",
  48299. image: {
  48300. source: "./media/characters/kil'aman/dick.svg"
  48301. }
  48302. },
  48303. },
  48304. [
  48305. {
  48306. name: "Normal",
  48307. height: math.unit(9, "feet")
  48308. },
  48309. {
  48310. name: "Canon Height",
  48311. height: math.unit(10, "miles"),
  48312. default: true
  48313. },
  48314. {
  48315. name: "Maximum",
  48316. height: math.unit(6e9, "miles")
  48317. },
  48318. ]
  48319. ))
  48320. characterMakers.push(() => makeCharacter(
  48321. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48322. {
  48323. front: {
  48324. height: math.unit(90, "feet"),
  48325. weight: math.unit(675000, "lb"),
  48326. name: "Front",
  48327. image: {
  48328. source: "./media/characters/qadan/front.svg",
  48329. extra: 1012/1004,
  48330. bottom: 78/1090
  48331. }
  48332. },
  48333. back: {
  48334. height: math.unit(90, "feet"),
  48335. weight: math.unit(675000, "lb"),
  48336. name: "Back",
  48337. image: {
  48338. source: "./media/characters/qadan/back.svg",
  48339. extra: 1042/1031,
  48340. bottom: 55/1097
  48341. }
  48342. },
  48343. armored: {
  48344. height: math.unit(90, "feet"),
  48345. weight: math.unit(675000, "lb"),
  48346. name: "Armored",
  48347. image: {
  48348. source: "./media/characters/qadan/armored.svg",
  48349. extra: 1047/1037,
  48350. bottom: 48/1095
  48351. }
  48352. },
  48353. },
  48354. [
  48355. {
  48356. name: "Normal",
  48357. height: math.unit(90, "feet"),
  48358. default: true
  48359. },
  48360. ]
  48361. ))
  48362. characterMakers.push(() => makeCharacter(
  48363. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48364. {
  48365. front: {
  48366. height: math.unit(6, "feet"),
  48367. weight: math.unit(225, "lb"),
  48368. name: "Front",
  48369. image: {
  48370. source: "./media/characters/brooke/front.svg",
  48371. extra: 1050/1010,
  48372. bottom: 66/1116
  48373. }
  48374. },
  48375. back: {
  48376. height: math.unit(6, "feet"),
  48377. weight: math.unit(225, "lb"),
  48378. name: "Back",
  48379. image: {
  48380. source: "./media/characters/brooke/back.svg",
  48381. extra: 1053/1013,
  48382. bottom: 41/1094
  48383. }
  48384. },
  48385. dressed: {
  48386. height: math.unit(6, "feet"),
  48387. weight: math.unit(225, "lb"),
  48388. name: "Dressed",
  48389. image: {
  48390. source: "./media/characters/brooke/dressed.svg",
  48391. extra: 1050/1010,
  48392. bottom: 66/1116
  48393. }
  48394. },
  48395. },
  48396. [
  48397. {
  48398. name: "Canon Height",
  48399. height: math.unit(500, "miles"),
  48400. default: true
  48401. },
  48402. ]
  48403. ))
  48404. characterMakers.push(() => makeCharacter(
  48405. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48406. {
  48407. front: {
  48408. height: math.unit(6 + 2/12, "feet"),
  48409. weight: math.unit(210, "lb"),
  48410. name: "Front",
  48411. image: {
  48412. source: "./media/characters/wubs/front.svg",
  48413. extra: 1345/1325,
  48414. bottom: 70/1415
  48415. }
  48416. },
  48417. back: {
  48418. height: math.unit(6 + 2/12, "feet"),
  48419. weight: math.unit(210, "lb"),
  48420. name: "Back",
  48421. image: {
  48422. source: "./media/characters/wubs/back.svg",
  48423. extra: 1296/1275,
  48424. bottom: 58/1354
  48425. }
  48426. },
  48427. },
  48428. [
  48429. {
  48430. name: "Normal",
  48431. height: math.unit(6 + 2/12, "feet"),
  48432. default: true
  48433. },
  48434. {
  48435. name: "Macro",
  48436. height: math.unit(1000, "feet")
  48437. },
  48438. {
  48439. name: "Megamacro",
  48440. height: math.unit(1, "mile")
  48441. },
  48442. ]
  48443. ))
  48444. characterMakers.push(() => makeCharacter(
  48445. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48446. {
  48447. front: {
  48448. height: math.unit(4, "feet"),
  48449. weight: math.unit(120, "lb"),
  48450. name: "Front",
  48451. image: {
  48452. source: "./media/characters/blue/front.svg",
  48453. extra: 1636/1525,
  48454. bottom: 43/1679
  48455. }
  48456. },
  48457. back: {
  48458. height: math.unit(4, "feet"),
  48459. weight: math.unit(120, "lb"),
  48460. name: "Back",
  48461. image: {
  48462. source: "./media/characters/blue/back.svg",
  48463. extra: 1660/1560,
  48464. bottom: 57/1717
  48465. }
  48466. },
  48467. paws: {
  48468. height: math.unit(0.826, "feet"),
  48469. name: "Paws",
  48470. image: {
  48471. source: "./media/characters/blue/paws.svg"
  48472. }
  48473. },
  48474. },
  48475. [
  48476. {
  48477. name: "Micro",
  48478. height: math.unit(3, "inches")
  48479. },
  48480. {
  48481. name: "Normal",
  48482. height: math.unit(4, "feet"),
  48483. default: true
  48484. },
  48485. {
  48486. name: "Femenine Form",
  48487. height: math.unit(14, "feet")
  48488. },
  48489. {
  48490. name: "Werebat Form",
  48491. height: math.unit(18, "feet")
  48492. },
  48493. ]
  48494. ))
  48495. characterMakers.push(() => makeCharacter(
  48496. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48497. {
  48498. female: {
  48499. height: math.unit(7 + 4/12, "feet"),
  48500. weight: math.unit(243, "lb"),
  48501. name: "Female",
  48502. image: {
  48503. source: "./media/characters/kaya/female.svg",
  48504. extra: 975/898,
  48505. bottom: 34/1009
  48506. }
  48507. },
  48508. herm: {
  48509. height: math.unit(7 + 4/12, "feet"),
  48510. weight: math.unit(243, "lb"),
  48511. name: "Herm",
  48512. image: {
  48513. source: "./media/characters/kaya/herm.svg",
  48514. extra: 975/898,
  48515. bottom: 34/1009
  48516. }
  48517. },
  48518. },
  48519. [
  48520. {
  48521. name: "Normal",
  48522. height: math.unit(7 + 4/12, "feet"),
  48523. default: true
  48524. },
  48525. ]
  48526. ))
  48527. characterMakers.push(() => makeCharacter(
  48528. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48529. {
  48530. female: {
  48531. height: math.unit(9 + 4/12, "feet"),
  48532. weight: math.unit(398, "lb"),
  48533. name: "Female",
  48534. image: {
  48535. source: "./media/characters/kassandra/female.svg",
  48536. extra: 908/839,
  48537. bottom: 61/969
  48538. }
  48539. },
  48540. intersex: {
  48541. height: math.unit(9 + 4/12, "feet"),
  48542. weight: math.unit(398, "lb"),
  48543. name: "Intersex",
  48544. image: {
  48545. source: "./media/characters/kassandra/intersex.svg",
  48546. extra: 908/839,
  48547. bottom: 61/969
  48548. }
  48549. },
  48550. },
  48551. [
  48552. {
  48553. name: "Normal",
  48554. height: math.unit(9 + 4/12, "feet"),
  48555. default: true
  48556. },
  48557. ]
  48558. ))
  48559. characterMakers.push(() => makeCharacter(
  48560. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48561. {
  48562. front: {
  48563. height: math.unit(3, "meters"),
  48564. name: "Front",
  48565. image: {
  48566. source: "./media/characters/amy/front.svg",
  48567. extra: 1380/1343,
  48568. bottom: 70/1450
  48569. }
  48570. },
  48571. back: {
  48572. height: math.unit(3, "meters"),
  48573. name: "Back",
  48574. image: {
  48575. source: "./media/characters/amy/back.svg",
  48576. extra: 1380/1347,
  48577. bottom: 66/1446
  48578. }
  48579. },
  48580. },
  48581. [
  48582. {
  48583. name: "Normal",
  48584. height: math.unit(3, "meters"),
  48585. default: true
  48586. },
  48587. ]
  48588. ))
  48589. characterMakers.push(() => makeCharacter(
  48590. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48591. {
  48592. side: {
  48593. height: math.unit(47, "cm"),
  48594. weight: math.unit(10.8, "kg"),
  48595. name: "Side",
  48596. image: {
  48597. source: "./media/characters/alphaschakal/side.svg",
  48598. extra: 1058/568,
  48599. bottom: 62/1120
  48600. }
  48601. },
  48602. back: {
  48603. height: math.unit(78, "cm"),
  48604. weight: math.unit(10.8, "kg"),
  48605. name: "Back",
  48606. image: {
  48607. source: "./media/characters/alphaschakal/back.svg",
  48608. extra: 1102/942,
  48609. bottom: 185/1287
  48610. }
  48611. },
  48612. head: {
  48613. height: math.unit(28, "cm"),
  48614. name: "Head",
  48615. image: {
  48616. source: "./media/characters/alphaschakal/head.svg",
  48617. extra: 696/508,
  48618. bottom: 0/696
  48619. }
  48620. },
  48621. paw: {
  48622. height: math.unit(16, "cm"),
  48623. name: "Paw",
  48624. image: {
  48625. source: "./media/characters/alphaschakal/paw.svg"
  48626. }
  48627. },
  48628. },
  48629. [
  48630. {
  48631. name: "Normal",
  48632. height: math.unit(47, "cm"),
  48633. default: true
  48634. },
  48635. {
  48636. name: "Macro",
  48637. height: math.unit(340, "cm")
  48638. },
  48639. ]
  48640. ))
  48641. characterMakers.push(() => makeCharacter(
  48642. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48643. {
  48644. front: {
  48645. height: math.unit(36, "earths"),
  48646. name: "Front",
  48647. image: {
  48648. source: "./media/characters/ecobyss/front.svg",
  48649. extra: 1282/1215,
  48650. bottom: 11/1293
  48651. }
  48652. },
  48653. back: {
  48654. height: math.unit(36, "earths"),
  48655. name: "Back",
  48656. image: {
  48657. source: "./media/characters/ecobyss/back.svg",
  48658. extra: 1291/1222,
  48659. bottom: 8/1299
  48660. }
  48661. },
  48662. },
  48663. [
  48664. {
  48665. name: "Normal",
  48666. height: math.unit(36, "earths"),
  48667. default: true
  48668. },
  48669. ]
  48670. ))
  48671. characterMakers.push(() => makeCharacter(
  48672. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48673. {
  48674. front: {
  48675. height: math.unit(12, "feet"),
  48676. name: "Front",
  48677. image: {
  48678. source: "./media/characters/vasuk/front.svg",
  48679. extra: 1326/1207,
  48680. bottom: 64/1390
  48681. }
  48682. },
  48683. },
  48684. [
  48685. {
  48686. name: "Normal",
  48687. height: math.unit(12, "feet"),
  48688. default: true
  48689. },
  48690. ]
  48691. ))
  48692. characterMakers.push(() => makeCharacter(
  48693. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48694. {
  48695. side: {
  48696. height: math.unit(100, "feet"),
  48697. name: "Side",
  48698. image: {
  48699. source: "./media/characters/linneaus/side.svg",
  48700. extra: 987/807,
  48701. bottom: 47/1034
  48702. }
  48703. },
  48704. },
  48705. [
  48706. {
  48707. name: "Macro",
  48708. height: math.unit(100, "feet"),
  48709. default: true
  48710. },
  48711. ]
  48712. ))
  48713. characterMakers.push(() => makeCharacter(
  48714. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48715. {
  48716. front: {
  48717. height: math.unit(8, "feet"),
  48718. weight: math.unit(1200, "lb"),
  48719. name: "Front",
  48720. image: {
  48721. source: "./media/characters/nyterious-daligdig/front.svg",
  48722. extra: 1284/1094,
  48723. bottom: 84/1368
  48724. }
  48725. },
  48726. back: {
  48727. height: math.unit(8, "feet"),
  48728. weight: math.unit(1200, "lb"),
  48729. name: "Back",
  48730. image: {
  48731. source: "./media/characters/nyterious-daligdig/back.svg",
  48732. extra: 1301/1121,
  48733. bottom: 129/1430
  48734. }
  48735. },
  48736. mouth: {
  48737. height: math.unit(1.464, "feet"),
  48738. name: "Mouth",
  48739. image: {
  48740. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48741. }
  48742. },
  48743. },
  48744. [
  48745. {
  48746. name: "Small",
  48747. height: math.unit(8, "feet"),
  48748. default: true
  48749. },
  48750. {
  48751. name: "Normal",
  48752. height: math.unit(15, "feet")
  48753. },
  48754. {
  48755. name: "Macro",
  48756. height: math.unit(90, "feet")
  48757. },
  48758. ]
  48759. ))
  48760. characterMakers.push(() => makeCharacter(
  48761. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48762. {
  48763. front: {
  48764. height: math.unit(7 + 4/12, "feet"),
  48765. weight: math.unit(252, "lb"),
  48766. name: "Front",
  48767. image: {
  48768. source: "./media/characters/bandel/front.svg",
  48769. extra: 1946/1775,
  48770. bottom: 26/1972
  48771. }
  48772. },
  48773. back: {
  48774. height: math.unit(7 + 4/12, "feet"),
  48775. weight: math.unit(252, "lb"),
  48776. name: "Back",
  48777. image: {
  48778. source: "./media/characters/bandel/back.svg",
  48779. extra: 1940/1770,
  48780. bottom: 25/1965
  48781. }
  48782. },
  48783. maw: {
  48784. height: math.unit(2.15, "feet"),
  48785. name: "Maw",
  48786. image: {
  48787. source: "./media/characters/bandel/maw.svg"
  48788. }
  48789. },
  48790. stomach: {
  48791. height: math.unit(1.95, "feet"),
  48792. name: "Stomach",
  48793. image: {
  48794. source: "./media/characters/bandel/stomach.svg"
  48795. }
  48796. },
  48797. },
  48798. [
  48799. {
  48800. name: "Normal",
  48801. height: math.unit(7 + 4/12, "feet"),
  48802. default: true
  48803. },
  48804. ]
  48805. ))
  48806. characterMakers.push(() => makeCharacter(
  48807. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48808. {
  48809. front: {
  48810. height: math.unit(10 + 5/12, "feet"),
  48811. weight: math.unit(773.5, "kg"),
  48812. name: "Front",
  48813. image: {
  48814. source: "./media/characters/zed/front.svg",
  48815. extra: 987/941,
  48816. bottom: 52/1039
  48817. }
  48818. },
  48819. },
  48820. [
  48821. {
  48822. name: "Short",
  48823. height: math.unit(5 + 4/12, "feet")
  48824. },
  48825. {
  48826. name: "Average",
  48827. height: math.unit(10 + 5/12, "feet"),
  48828. default: true
  48829. },
  48830. {
  48831. name: "Mini-Macro",
  48832. height: math.unit(24 + 9/12, "feet")
  48833. },
  48834. {
  48835. name: "Macro",
  48836. height: math.unit(249, "feet")
  48837. },
  48838. {
  48839. name: "Mega-Macro",
  48840. height: math.unit(12490, "feet")
  48841. },
  48842. {
  48843. name: "Giga-Macro",
  48844. height: math.unit(24.9, "miles")
  48845. },
  48846. {
  48847. name: "Tera-Macro",
  48848. height: math.unit(24900, "miles")
  48849. },
  48850. {
  48851. name: "Cosmic Scale",
  48852. height: math.unit(38.9, "lightyears")
  48853. },
  48854. {
  48855. name: "Universal Scale",
  48856. height: math.unit(138e12, "lightyears")
  48857. },
  48858. ]
  48859. ))
  48860. characterMakers.push(() => makeCharacter(
  48861. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48862. {
  48863. front: {
  48864. height: math.unit(1561, "inches"),
  48865. name: "Front",
  48866. image: {
  48867. source: "./media/characters/ivan/front.svg",
  48868. extra: 1126/1071,
  48869. bottom: 26/1152
  48870. }
  48871. },
  48872. back: {
  48873. height: math.unit(1561, "inches"),
  48874. name: "Back",
  48875. image: {
  48876. source: "./media/characters/ivan/back.svg",
  48877. extra: 1134/1079,
  48878. bottom: 30/1164
  48879. }
  48880. },
  48881. },
  48882. [
  48883. {
  48884. name: "Normal",
  48885. height: math.unit(1561, "inches"),
  48886. default: true
  48887. },
  48888. ]
  48889. ))
  48890. characterMakers.push(() => makeCharacter(
  48891. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  48892. {
  48893. front: {
  48894. height: math.unit(5 + 7/12, "feet"),
  48895. weight: math.unit(150, "lb"),
  48896. name: "Front",
  48897. image: {
  48898. source: "./media/characters/robin-arctic-hare/front.svg",
  48899. extra: 1148/974,
  48900. bottom: 20/1168
  48901. }
  48902. },
  48903. },
  48904. [
  48905. {
  48906. name: "Normal",
  48907. height: math.unit(5 + 7/12, "feet"),
  48908. default: true
  48909. },
  48910. ]
  48911. ))
  48912. characterMakers.push(() => makeCharacter(
  48913. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  48914. {
  48915. side: {
  48916. height: math.unit(5, "feet"),
  48917. name: "Side",
  48918. image: {
  48919. source: "./media/characters/birch/side.svg",
  48920. extra: 985/796,
  48921. bottom: 111/1096
  48922. }
  48923. },
  48924. },
  48925. [
  48926. {
  48927. name: "Normal",
  48928. height: math.unit(5, "feet"),
  48929. default: true
  48930. },
  48931. ]
  48932. ))
  48933. characterMakers.push(() => makeCharacter(
  48934. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  48935. {
  48936. front: {
  48937. height: math.unit(4, "feet"),
  48938. name: "Front",
  48939. image: {
  48940. source: "./media/characters/rasp/front.svg",
  48941. extra: 561/478,
  48942. bottom: 74/635
  48943. }
  48944. },
  48945. },
  48946. [
  48947. {
  48948. name: "Normal",
  48949. height: math.unit(4, "feet"),
  48950. default: true
  48951. },
  48952. ]
  48953. ))
  48954. characterMakers.push(() => makeCharacter(
  48955. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  48956. {
  48957. front: {
  48958. height: math.unit(4 + 6/12, "feet"),
  48959. name: "Front",
  48960. image: {
  48961. source: "./media/characters/agatha/front.svg",
  48962. extra: 947/933,
  48963. bottom: 42/989
  48964. }
  48965. },
  48966. back: {
  48967. height: math.unit(4 + 6/12, "feet"),
  48968. name: "Back",
  48969. image: {
  48970. source: "./media/characters/agatha/back.svg",
  48971. extra: 935/922,
  48972. bottom: 48/983
  48973. }
  48974. },
  48975. },
  48976. [
  48977. {
  48978. name: "Normal",
  48979. height: math.unit(4 + 6 /12, "feet"),
  48980. default: true
  48981. },
  48982. {
  48983. name: "Max Size",
  48984. height: math.unit(500, "feet")
  48985. },
  48986. ]
  48987. ))
  48988. characterMakers.push(() => makeCharacter(
  48989. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  48990. {
  48991. side: {
  48992. height: math.unit(30, "feet"),
  48993. name: "Side",
  48994. image: {
  48995. source: "./media/characters/roggy/side.svg",
  48996. extra: 909/643,
  48997. bottom: 63/972
  48998. }
  48999. },
  49000. lounging: {
  49001. height: math.unit(20, "feet"),
  49002. name: "Lounging",
  49003. image: {
  49004. source: "./media/characters/roggy/lounging.svg",
  49005. extra: 643/479,
  49006. bottom: 145/788
  49007. }
  49008. },
  49009. handpaw: {
  49010. height: math.unit(13.1, "feet"),
  49011. name: "Handpaw",
  49012. image: {
  49013. source: "./media/characters/roggy/handpaw.svg"
  49014. }
  49015. },
  49016. footpaw: {
  49017. height: math.unit(15.8, "feet"),
  49018. name: "Footpaw",
  49019. image: {
  49020. source: "./media/characters/roggy/footpaw.svg"
  49021. }
  49022. },
  49023. },
  49024. [
  49025. {
  49026. name: "Menacing",
  49027. height: math.unit(30, "feet"),
  49028. default: true
  49029. },
  49030. ]
  49031. ))
  49032. characterMakers.push(() => makeCharacter(
  49033. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49034. {
  49035. front: {
  49036. height: math.unit(5 + 7/12, "feet"),
  49037. weight: math.unit(135, "lb"),
  49038. name: "Front",
  49039. image: {
  49040. source: "./media/characters/naomi/front.svg",
  49041. extra: 1209/1154,
  49042. bottom: 129/1338
  49043. }
  49044. },
  49045. back: {
  49046. height: math.unit(5 + 7/12, "feet"),
  49047. weight: math.unit(135, "lb"),
  49048. name: "Back",
  49049. image: {
  49050. source: "./media/characters/naomi/back.svg",
  49051. extra: 1252/1190,
  49052. bottom: 23/1275
  49053. }
  49054. },
  49055. },
  49056. [
  49057. {
  49058. name: "Normal",
  49059. height: math.unit(5 + 7 /12, "feet"),
  49060. default: true
  49061. },
  49062. ]
  49063. ))
  49064. characterMakers.push(() => makeCharacter(
  49065. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49066. {
  49067. side: {
  49068. height: math.unit(35, "meters"),
  49069. name: "Side",
  49070. image: {
  49071. source: "./media/characters/kimpi/side.svg",
  49072. extra: 419/382,
  49073. bottom: 63/482
  49074. }
  49075. },
  49076. hand: {
  49077. height: math.unit(8.96, "meters"),
  49078. name: "Hand",
  49079. image: {
  49080. source: "./media/characters/kimpi/hand.svg"
  49081. }
  49082. },
  49083. },
  49084. [
  49085. {
  49086. name: "Normal",
  49087. height: math.unit(35, "meters"),
  49088. default: true
  49089. },
  49090. ]
  49091. ))
  49092. characterMakers.push(() => makeCharacter(
  49093. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49094. {
  49095. front: {
  49096. height: math.unit(4 + 4/12, "feet"),
  49097. name: "Front",
  49098. image: {
  49099. source: "./media/characters/pepper-purrloin/front.svg",
  49100. extra: 1141/1024,
  49101. bottom: 21/1162
  49102. }
  49103. },
  49104. },
  49105. [
  49106. {
  49107. name: "Normal",
  49108. height: math.unit(4 + 4/12, "feet"),
  49109. default: true
  49110. },
  49111. ]
  49112. ))
  49113. characterMakers.push(() => makeCharacter(
  49114. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49115. {
  49116. front: {
  49117. height: math.unit(6 + 2/12, "feet"),
  49118. name: "Front",
  49119. image: {
  49120. source: "./media/characters/raphael/front.svg",
  49121. extra: 1101/962,
  49122. bottom: 59/1160
  49123. }
  49124. },
  49125. },
  49126. [
  49127. {
  49128. name: "Normal",
  49129. height: math.unit(6 + 2/12, "feet"),
  49130. default: true
  49131. },
  49132. ]
  49133. ))
  49134. characterMakers.push(() => makeCharacter(
  49135. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49136. {
  49137. front: {
  49138. height: math.unit(6, "feet"),
  49139. weight: math.unit(150, "lb"),
  49140. name: "Front",
  49141. image: {
  49142. source: "./media/characters/victor-williams/front.svg",
  49143. extra: 1894/1825,
  49144. bottom: 67/1961
  49145. }
  49146. },
  49147. },
  49148. [
  49149. {
  49150. name: "Normal",
  49151. height: math.unit(6, "feet"),
  49152. default: true
  49153. },
  49154. ]
  49155. ))
  49156. characterMakers.push(() => makeCharacter(
  49157. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49158. {
  49159. front: {
  49160. height: math.unit(5 + 8/12, "feet"),
  49161. weight: math.unit(150, "lb"),
  49162. name: "Front",
  49163. image: {
  49164. source: "./media/characters/rachel/front.svg",
  49165. extra: 1902/1787,
  49166. bottom: 46/1948
  49167. }
  49168. },
  49169. },
  49170. [
  49171. {
  49172. name: "Base Height",
  49173. height: math.unit(5 + 8/12, "feet"),
  49174. default: true
  49175. },
  49176. {
  49177. name: "Macro",
  49178. height: math.unit(200, "feet")
  49179. },
  49180. {
  49181. name: "Mega Macro",
  49182. height: math.unit(1, "mile")
  49183. },
  49184. {
  49185. name: "Giga Macro",
  49186. height: math.unit(1500, "miles")
  49187. },
  49188. {
  49189. name: "Tera Macro",
  49190. height: math.unit(8000, "miles")
  49191. },
  49192. {
  49193. name: "Tera Macro+",
  49194. height: math.unit(2e5, "miles")
  49195. },
  49196. ]
  49197. ))
  49198. characterMakers.push(() => makeCharacter(
  49199. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49200. {
  49201. front: {
  49202. height: math.unit(6.5, "feet"),
  49203. name: "Front",
  49204. image: {
  49205. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49206. extra: 860/819,
  49207. bottom: 307/1167
  49208. }
  49209. },
  49210. back: {
  49211. height: math.unit(6.5, "feet"),
  49212. name: "Back",
  49213. image: {
  49214. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49215. extra: 880/837,
  49216. bottom: 395/1275
  49217. }
  49218. },
  49219. sleeping: {
  49220. height: math.unit(2.79, "feet"),
  49221. name: "Sleeping",
  49222. image: {
  49223. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49224. extra: 465/383,
  49225. bottom: 263/728
  49226. }
  49227. },
  49228. maw: {
  49229. height: math.unit(2.52, "feet"),
  49230. name: "Maw",
  49231. image: {
  49232. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49233. }
  49234. },
  49235. },
  49236. [
  49237. {
  49238. name: "Normal",
  49239. height: math.unit(6.5, "feet"),
  49240. default: true
  49241. },
  49242. ]
  49243. ))
  49244. characterMakers.push(() => makeCharacter(
  49245. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49246. {
  49247. front: {
  49248. height: math.unit(5, "feet"),
  49249. name: "Front",
  49250. image: {
  49251. source: "./media/characters/nova-nerium/front.svg",
  49252. extra: 1548/1392,
  49253. bottom: 374/1922
  49254. }
  49255. },
  49256. back: {
  49257. height: math.unit(5, "feet"),
  49258. name: "Back",
  49259. image: {
  49260. source: "./media/characters/nova-nerium/back.svg",
  49261. extra: 1658/1468,
  49262. bottom: 257/1915
  49263. }
  49264. },
  49265. },
  49266. [
  49267. {
  49268. name: "Normal",
  49269. height: math.unit(5, "feet"),
  49270. default: true
  49271. },
  49272. ]
  49273. ))
  49274. characterMakers.push(() => makeCharacter(
  49275. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49276. {
  49277. front: {
  49278. height: math.unit(5 + 4/12, "feet"),
  49279. name: "Front",
  49280. image: {
  49281. source: "./media/characters/ashe-pyriph/front.svg",
  49282. extra: 1935/1747,
  49283. bottom: 60/1995
  49284. }
  49285. },
  49286. },
  49287. [
  49288. {
  49289. name: "Normal",
  49290. height: math.unit(5 + 4/12, "feet"),
  49291. default: true
  49292. },
  49293. ]
  49294. ))
  49295. characterMakers.push(() => makeCharacter(
  49296. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49297. {
  49298. front: {
  49299. height: math.unit(8.7, "feet"),
  49300. name: "Front",
  49301. image: {
  49302. source: "./media/characters/flicker-wisp/front.svg",
  49303. extra: 1835/1613,
  49304. bottom: 449/2284
  49305. }
  49306. },
  49307. side: {
  49308. height: math.unit(8.7, "feet"),
  49309. name: "Side",
  49310. image: {
  49311. source: "./media/characters/flicker-wisp/side.svg",
  49312. extra: 1841/1642,
  49313. bottom: 336/2177
  49314. },
  49315. default: true
  49316. },
  49317. maw: {
  49318. height: math.unit(3.35, "feet"),
  49319. name: "Maw",
  49320. image: {
  49321. source: "./media/characters/flicker-wisp/maw.svg",
  49322. extra: 2338/1506,
  49323. bottom: 0/2338
  49324. }
  49325. },
  49326. ovipositor: {
  49327. height: math.unit(4.95, "feet"),
  49328. name: "Ovipositor",
  49329. image: {
  49330. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49331. }
  49332. },
  49333. egg: {
  49334. height: math.unit(0.385, "feet"),
  49335. weight: math.unit(2, "lb"),
  49336. name: "Egg",
  49337. image: {
  49338. source: "./media/characters/flicker-wisp/egg.svg"
  49339. }
  49340. },
  49341. },
  49342. [
  49343. {
  49344. name: "Normal",
  49345. height: math.unit(8.7, "feet"),
  49346. default: true
  49347. },
  49348. ]
  49349. ))
  49350. characterMakers.push(() => makeCharacter(
  49351. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49352. {
  49353. side: {
  49354. height: math.unit(11, "feet"),
  49355. name: "Side",
  49356. image: {
  49357. source: "./media/characters/faefnul/side.svg",
  49358. extra: 1100/1007,
  49359. bottom: 0/1100
  49360. }
  49361. },
  49362. },
  49363. [
  49364. {
  49365. name: "Normal",
  49366. height: math.unit(11, "feet"),
  49367. default: true
  49368. },
  49369. ]
  49370. ))
  49371. characterMakers.push(() => makeCharacter(
  49372. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49373. {
  49374. front: {
  49375. height: math.unit(6 + 2/12, "feet"),
  49376. name: "Front",
  49377. image: {
  49378. source: "./media/characters/shady/front.svg",
  49379. extra: 502/461,
  49380. bottom: 9/511
  49381. }
  49382. },
  49383. kneeling: {
  49384. height: math.unit(4.6, "feet"),
  49385. name: "Kneeling",
  49386. image: {
  49387. source: "./media/characters/shady/kneeling.svg",
  49388. extra: 1328/1219,
  49389. bottom: 117/1445
  49390. }
  49391. },
  49392. maw: {
  49393. height: math.unit(2, "feet"),
  49394. name: "Maw",
  49395. image: {
  49396. source: "./media/characters/shady/maw.svg"
  49397. }
  49398. },
  49399. },
  49400. [
  49401. {
  49402. name: "Nano",
  49403. height: math.unit(1, "mm")
  49404. },
  49405. {
  49406. name: "Micro",
  49407. height: math.unit(12, "mm")
  49408. },
  49409. {
  49410. name: "Tiny",
  49411. height: math.unit(3, "inches")
  49412. },
  49413. {
  49414. name: "Normal",
  49415. height: math.unit(6 + 2/12, "feet"),
  49416. default: true
  49417. },
  49418. {
  49419. name: "Big",
  49420. height: math.unit(15, "feet")
  49421. },
  49422. {
  49423. name: "Macro",
  49424. height: math.unit(150, "feet")
  49425. },
  49426. {
  49427. name: "Titanic",
  49428. height: math.unit(500, "feet")
  49429. },
  49430. ]
  49431. ))
  49432. characterMakers.push(() => makeCharacter(
  49433. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49434. {
  49435. front: {
  49436. height: math.unit(12, "feet"),
  49437. name: "Front",
  49438. image: {
  49439. source: "./media/characters/fenrir/front.svg",
  49440. extra: 968/875,
  49441. bottom: 22/990
  49442. }
  49443. },
  49444. },
  49445. [
  49446. {
  49447. name: "Big",
  49448. height: math.unit(12, "feet"),
  49449. default: true
  49450. },
  49451. ]
  49452. ))
  49453. characterMakers.push(() => makeCharacter(
  49454. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49455. {
  49456. front: {
  49457. height: math.unit(5 + 4/12, "feet"),
  49458. name: "Front",
  49459. image: {
  49460. source: "./media/characters/makar/front.svg",
  49461. extra: 1181/1112,
  49462. bottom: 78/1259
  49463. }
  49464. },
  49465. },
  49466. [
  49467. {
  49468. name: "Normal",
  49469. height: math.unit(5 + 4/12, "feet"),
  49470. default: true
  49471. },
  49472. ]
  49473. ))
  49474. characterMakers.push(() => makeCharacter(
  49475. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49476. {
  49477. front: {
  49478. height: math.unit(5 + 7/12, "feet"),
  49479. name: "Front",
  49480. image: {
  49481. source: "./media/characters/callow/front.svg",
  49482. extra: 1482/1304,
  49483. bottom: 23/1505
  49484. }
  49485. },
  49486. back: {
  49487. height: math.unit(5 + 7/12, "feet"),
  49488. name: "Back",
  49489. image: {
  49490. source: "./media/characters/callow/back.svg",
  49491. extra: 1484/1296,
  49492. bottom: 25/1509
  49493. }
  49494. },
  49495. },
  49496. [
  49497. {
  49498. name: "Micro",
  49499. height: math.unit(3, "inches"),
  49500. default: true
  49501. },
  49502. {
  49503. name: "Normal",
  49504. height: math.unit(5 + 7/12, "feet")
  49505. },
  49506. ]
  49507. ))
  49508. characterMakers.push(() => makeCharacter(
  49509. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49510. {
  49511. front: {
  49512. height: math.unit(6 + 2/12, "feet"),
  49513. name: "Front",
  49514. image: {
  49515. source: "./media/characters/natel/front.svg",
  49516. extra: 1833/1692,
  49517. bottom: 166/1999
  49518. }
  49519. },
  49520. },
  49521. [
  49522. {
  49523. name: "Normal",
  49524. height: math.unit(6 + 2/12, "feet"),
  49525. default: true
  49526. },
  49527. ]
  49528. ))
  49529. characterMakers.push(() => makeCharacter(
  49530. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49531. {
  49532. front: {
  49533. height: math.unit(1.75, "meters"),
  49534. name: "Front",
  49535. image: {
  49536. source: "./media/characters/misu/front.svg",
  49537. extra: 1690/1558,
  49538. bottom: 234/1924
  49539. }
  49540. },
  49541. back: {
  49542. height: math.unit(1.75, "meters"),
  49543. name: "Back",
  49544. image: {
  49545. source: "./media/characters/misu/back.svg",
  49546. extra: 1762/1618,
  49547. bottom: 146/1908
  49548. }
  49549. },
  49550. frontNude: {
  49551. height: math.unit(1.75, "meters"),
  49552. name: "Front (Nude)",
  49553. image: {
  49554. source: "./media/characters/misu/front-nude.svg",
  49555. extra: 1690/1558,
  49556. bottom: 234/1924
  49557. }
  49558. },
  49559. backNude: {
  49560. height: math.unit(1.75, "meters"),
  49561. name: "Back (Nude)",
  49562. image: {
  49563. source: "./media/characters/misu/back-nude.svg",
  49564. extra: 1762/1618,
  49565. bottom: 146/1908
  49566. }
  49567. },
  49568. frontErect: {
  49569. height: math.unit(1.75, "meters"),
  49570. name: "Front (Erect)",
  49571. image: {
  49572. source: "./media/characters/misu/front-erect.svg",
  49573. extra: 1690/1558,
  49574. bottom: 234/1924
  49575. }
  49576. },
  49577. maw: {
  49578. height: math.unit(0.47, "meters"),
  49579. name: "Maw",
  49580. image: {
  49581. source: "./media/characters/misu/maw.svg"
  49582. }
  49583. },
  49584. head: {
  49585. height: math.unit(0.35, "meters"),
  49586. name: "Head",
  49587. image: {
  49588. source: "./media/characters/misu/head.svg"
  49589. }
  49590. },
  49591. rear: {
  49592. height: math.unit(0.47, "meters"),
  49593. name: "Rear",
  49594. image: {
  49595. source: "./media/characters/misu/rear.svg"
  49596. }
  49597. },
  49598. },
  49599. [
  49600. {
  49601. name: "Normal",
  49602. height: math.unit(1.75, "meters")
  49603. },
  49604. {
  49605. name: "Not good for the people",
  49606. height: math.unit(42, "meters")
  49607. },
  49608. {
  49609. name: "Not good for the neighborhood",
  49610. height: math.unit(135, "meters")
  49611. },
  49612. {
  49613. name: "Bit bigger problem",
  49614. height: math.unit(380, "meters"),
  49615. default: true
  49616. },
  49617. {
  49618. name: "Not good for the city",
  49619. height: math.unit(1.5, "km")
  49620. },
  49621. {
  49622. name: "Not good for the county",
  49623. height: math.unit(5.5, "km")
  49624. },
  49625. {
  49626. name: "Not good for the state",
  49627. height: math.unit(25, "km")
  49628. },
  49629. {
  49630. name: "Not good for the country",
  49631. height: math.unit(125, "km")
  49632. },
  49633. {
  49634. name: "Not good for the continent",
  49635. height: math.unit(2100, "km")
  49636. },
  49637. {
  49638. name: "Not good for the planet",
  49639. height: math.unit(35000, "km")
  49640. },
  49641. {
  49642. name: "Just no",
  49643. height: math.unit(8.5e18, "km")
  49644. },
  49645. ]
  49646. ))
  49647. characterMakers.push(() => makeCharacter(
  49648. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49649. {
  49650. front: {
  49651. height: math.unit(6.5, "feet"),
  49652. name: "Front",
  49653. image: {
  49654. source: "./media/characters/poppy/front.svg",
  49655. extra: 1878/1812,
  49656. bottom: 43/1921
  49657. }
  49658. },
  49659. feet: {
  49660. height: math.unit(1.06, "feet"),
  49661. name: "Feet",
  49662. image: {
  49663. source: "./media/characters/poppy/feet.svg",
  49664. extra: 1083/1083,
  49665. bottom: 87/1170
  49666. }
  49667. },
  49668. },
  49669. [
  49670. {
  49671. name: "Human",
  49672. height: math.unit(6.5, "feet")
  49673. },
  49674. {
  49675. name: "Default",
  49676. height: math.unit(300, "feet"),
  49677. default: true
  49678. },
  49679. {
  49680. name: "Huge",
  49681. height: math.unit(850, "feet")
  49682. },
  49683. {
  49684. name: "Mega",
  49685. height: math.unit(8000, "feet")
  49686. },
  49687. {
  49688. name: "Giga",
  49689. height: math.unit(300, "miles")
  49690. },
  49691. ]
  49692. ))
  49693. characterMakers.push(() => makeCharacter(
  49694. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49695. {
  49696. bipedal: {
  49697. height: math.unit(7, "feet"),
  49698. name: "Bipedal",
  49699. image: {
  49700. source: "./media/characters/zener/bipedal.svg",
  49701. extra: 874/805,
  49702. bottom: 109/983
  49703. }
  49704. },
  49705. quadrupedal: {
  49706. height: math.unit(4.64, "feet"),
  49707. name: "Quadrupedal",
  49708. image: {
  49709. source: "./media/characters/zener/quadrupedal.svg",
  49710. extra: 638/507,
  49711. bottom: 190/828
  49712. }
  49713. },
  49714. cock: {
  49715. height: math.unit(18, "inches"),
  49716. name: "Cock",
  49717. image: {
  49718. source: "./media/characters/zener/cock.svg"
  49719. }
  49720. },
  49721. },
  49722. [
  49723. {
  49724. name: "Normal",
  49725. height: math.unit(7, "feet"),
  49726. default: true
  49727. },
  49728. ]
  49729. ))
  49730. characterMakers.push(() => makeCharacter(
  49731. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49732. {
  49733. nude: {
  49734. height: math.unit(5 + 6/12, "feet"),
  49735. name: "Nude",
  49736. image: {
  49737. source: "./media/characters/charlie-dog/nude.svg",
  49738. extra: 768/734,
  49739. bottom: 26/794
  49740. }
  49741. },
  49742. dressed: {
  49743. height: math.unit(5 + 6/12, "feet"),
  49744. name: "Dressed",
  49745. image: {
  49746. source: "./media/characters/charlie-dog/dressed.svg",
  49747. extra: 768/734,
  49748. bottom: 26/794
  49749. }
  49750. },
  49751. },
  49752. [
  49753. {
  49754. name: "Normal",
  49755. height: math.unit(5 + 6/12, "feet"),
  49756. default: true
  49757. },
  49758. ]
  49759. ))
  49760. characterMakers.push(() => makeCharacter(
  49761. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49762. {
  49763. front: {
  49764. height: math.unit(6 + 4/12, "feet"),
  49765. name: "Front",
  49766. image: {
  49767. source: "./media/characters/ir'istrasz/front.svg",
  49768. extra: 1014/977,
  49769. bottom: 65/1079
  49770. }
  49771. },
  49772. back: {
  49773. height: math.unit(6 + 4/12, "feet"),
  49774. name: "Back",
  49775. image: {
  49776. source: "./media/characters/ir'istrasz/back.svg",
  49777. extra: 1024/992,
  49778. bottom: 34/1058
  49779. }
  49780. },
  49781. },
  49782. [
  49783. {
  49784. name: "Normal",
  49785. height: math.unit(6 + 4/12, "feet"),
  49786. default: true
  49787. },
  49788. ]
  49789. ))
  49790. characterMakers.push(() => makeCharacter(
  49791. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49792. {
  49793. front: {
  49794. height: math.unit(5 + 8/12, "feet"),
  49795. name: "Front",
  49796. image: {
  49797. source: "./media/characters/dee-ditto/front.svg",
  49798. extra: 1874/1785,
  49799. bottom: 68/1942
  49800. }
  49801. },
  49802. back: {
  49803. height: math.unit(5 + 8/12, "feet"),
  49804. name: "Back",
  49805. image: {
  49806. source: "./media/characters/dee-ditto/back.svg",
  49807. extra: 1870/1783,
  49808. bottom: 77/1947
  49809. }
  49810. },
  49811. },
  49812. [
  49813. {
  49814. name: "Normal",
  49815. height: math.unit(5 + 8/12, "feet"),
  49816. default: true
  49817. },
  49818. ]
  49819. ))
  49820. characterMakers.push(() => makeCharacter(
  49821. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49822. {
  49823. front: {
  49824. height: math.unit(7 + 6/12, "feet"),
  49825. name: "Front",
  49826. image: {
  49827. source: "./media/characters/fey/front.svg",
  49828. extra: 995/979,
  49829. bottom: 30/1025
  49830. }
  49831. },
  49832. back: {
  49833. height: math.unit(7 + 6/12, "feet"),
  49834. name: "Back",
  49835. image: {
  49836. source: "./media/characters/fey/back.svg",
  49837. extra: 1079/1008,
  49838. bottom: 5/1084
  49839. }
  49840. },
  49841. dressed: {
  49842. height: math.unit(7 + 6/12, "feet"),
  49843. name: "Dressed",
  49844. image: {
  49845. source: "./media/characters/fey/dressed.svg",
  49846. extra: 995/979,
  49847. bottom: 30/1025
  49848. }
  49849. },
  49850. },
  49851. [
  49852. {
  49853. name: "Normal",
  49854. height: math.unit(7 + 6/12, "feet"),
  49855. default: true
  49856. },
  49857. ]
  49858. ))
  49859. characterMakers.push(() => makeCharacter(
  49860. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49861. {
  49862. standing: {
  49863. height: math.unit(17, "feet"),
  49864. name: "Standing",
  49865. image: {
  49866. source: "./media/characters/aster/standing.svg",
  49867. extra: 1798/1598,
  49868. bottom: 117/1915
  49869. }
  49870. },
  49871. },
  49872. [
  49873. {
  49874. name: "Normal",
  49875. height: math.unit(17, "feet"),
  49876. default: true
  49877. },
  49878. {
  49879. name: "Homewrecker",
  49880. height: math.unit(95, "feet")
  49881. },
  49882. {
  49883. name: "Planet Devourer",
  49884. height: math.unit(1008000, "miles")
  49885. },
  49886. ]
  49887. ))
  49888. characterMakers.push(() => makeCharacter(
  49889. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  49890. {
  49891. front: {
  49892. height: math.unit(6 + 5/12, "feet"),
  49893. weight: math.unit(265, "lb"),
  49894. name: "Front",
  49895. image: {
  49896. source: "./media/characters/devon-childs/front.svg",
  49897. extra: 1795/1721,
  49898. bottom: 41/1836
  49899. }
  49900. },
  49901. side: {
  49902. height: math.unit(6 + 5/12, "feet"),
  49903. weight: math.unit(265, "lb"),
  49904. name: "Side",
  49905. image: {
  49906. source: "./media/characters/devon-childs/side.svg",
  49907. extra: 1812/1738,
  49908. bottom: 30/1842
  49909. }
  49910. },
  49911. back: {
  49912. height: math.unit(6 + 5/12, "feet"),
  49913. weight: math.unit(265, "lb"),
  49914. name: "Back",
  49915. image: {
  49916. source: "./media/characters/devon-childs/back.svg",
  49917. extra: 1808/1735,
  49918. bottom: 23/1831
  49919. }
  49920. },
  49921. hand: {
  49922. height: math.unit(1.464, "feet"),
  49923. name: "Hand",
  49924. image: {
  49925. source: "./media/characters/devon-childs/hand.svg"
  49926. }
  49927. },
  49928. foot: {
  49929. height: math.unit(1.6, "feet"),
  49930. name: "Foot",
  49931. image: {
  49932. source: "./media/characters/devon-childs/foot.svg"
  49933. }
  49934. },
  49935. },
  49936. [
  49937. {
  49938. name: "Micro",
  49939. height: math.unit(7, "cm")
  49940. },
  49941. {
  49942. name: "Normal",
  49943. height: math.unit(6 + 5/12, "feet"),
  49944. default: true
  49945. },
  49946. {
  49947. name: "Macro",
  49948. height: math.unit(154, "feet")
  49949. },
  49950. ]
  49951. ))
  49952. characterMakers.push(() => makeCharacter(
  49953. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  49954. {
  49955. front: {
  49956. height: math.unit(6, "feet"),
  49957. weight: math.unit(180, "lb"),
  49958. name: "Front",
  49959. image: {
  49960. source: "./media/characters/lydemox-vir/front.svg",
  49961. extra: 1632/1435,
  49962. bottom: 58/1690
  49963. }
  49964. },
  49965. frontSFW: {
  49966. height: math.unit(6, "feet"),
  49967. weight: math.unit(180, "lb"),
  49968. name: "Front (SFW)",
  49969. image: {
  49970. source: "./media/characters/lydemox-vir/front-sfw.svg",
  49971. extra: 1632/1435,
  49972. bottom: 58/1690
  49973. }
  49974. },
  49975. back: {
  49976. height: math.unit(6, "feet"),
  49977. weight: math.unit(180, "lb"),
  49978. name: "Back",
  49979. image: {
  49980. source: "./media/characters/lydemox-vir/back.svg",
  49981. extra: 1593/1408,
  49982. bottom: 31/1624
  49983. }
  49984. },
  49985. paw: {
  49986. height: math.unit(1.85, "feet"),
  49987. name: "Paw",
  49988. image: {
  49989. source: "./media/characters/lydemox-vir/paw.svg"
  49990. }
  49991. },
  49992. dick: {
  49993. height: math.unit(1.8, "feet"),
  49994. name: "Dick",
  49995. image: {
  49996. source: "./media/characters/lydemox-vir/dick.svg"
  49997. }
  49998. },
  49999. },
  50000. [
  50001. {
  50002. name: "Macro",
  50003. height: math.unit(100, "feet"),
  50004. default: true
  50005. },
  50006. {
  50007. name: "Teramacro",
  50008. height: math.unit(1, "earth")
  50009. },
  50010. {
  50011. name: "Planetary",
  50012. height: math.unit(20, "earths")
  50013. },
  50014. ]
  50015. ))
  50016. characterMakers.push(() => makeCharacter(
  50017. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50018. {
  50019. front: {
  50020. height: math.unit(15 + 8/12, "feet"),
  50021. weight: math.unit(1237, "kg"),
  50022. name: "Front",
  50023. image: {
  50024. source: "./media/characters/mia/front.svg",
  50025. extra: 1573/1446,
  50026. bottom: 58/1631
  50027. }
  50028. },
  50029. },
  50030. [
  50031. {
  50032. name: "Small",
  50033. height: math.unit(9 + 5/12, "feet")
  50034. },
  50035. {
  50036. name: "Normal",
  50037. height: math.unit(15 + 8/12, "feet"),
  50038. default: true
  50039. },
  50040. ]
  50041. ))
  50042. characterMakers.push(() => makeCharacter(
  50043. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50044. {
  50045. front: {
  50046. height: math.unit(10 + 6/12, "feet"),
  50047. weight: math.unit(1.3, "tons"),
  50048. name: "Front",
  50049. image: {
  50050. source: "./media/characters/mr-graves/front.svg",
  50051. extra: 1779/1695,
  50052. bottom: 198/1977
  50053. }
  50054. },
  50055. },
  50056. [
  50057. {
  50058. name: "Normal",
  50059. height: math.unit(10 + 6 /12, "feet"),
  50060. default: true
  50061. },
  50062. ]
  50063. ))
  50064. characterMakers.push(() => makeCharacter(
  50065. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50066. {
  50067. dressedFront: {
  50068. height: math.unit(5 + 8/12, "feet"),
  50069. weight: math.unit(125, "lb"),
  50070. name: "Dressed (Front)",
  50071. image: {
  50072. source: "./media/characters/jess/dressed-front.svg",
  50073. extra: 1176/1152,
  50074. bottom: 42/1218
  50075. }
  50076. },
  50077. dressedSide: {
  50078. height: math.unit(5 + 8/12, "feet"),
  50079. weight: math.unit(125, "lb"),
  50080. name: "Dressed (Side)",
  50081. image: {
  50082. source: "./media/characters/jess/dressed-side.svg",
  50083. extra: 1204/1190,
  50084. bottom: 6/1210
  50085. }
  50086. },
  50087. nudeFront: {
  50088. height: math.unit(5 + 8/12, "feet"),
  50089. weight: math.unit(125, "lb"),
  50090. name: "Nude (Front)",
  50091. image: {
  50092. source: "./media/characters/jess/nude-front.svg",
  50093. extra: 1176/1152,
  50094. bottom: 42/1218
  50095. }
  50096. },
  50097. nudeSide: {
  50098. height: math.unit(5 + 8/12, "feet"),
  50099. weight: math.unit(125, "lb"),
  50100. name: "Nude (Side)",
  50101. image: {
  50102. source: "./media/characters/jess/nude-side.svg",
  50103. extra: 1204/1190,
  50104. bottom: 6/1210
  50105. }
  50106. },
  50107. organsFront: {
  50108. height: math.unit(2.83799342105, "feet"),
  50109. name: "Organs (Front)",
  50110. image: {
  50111. source: "./media/characters/jess/organs-front.svg"
  50112. }
  50113. },
  50114. organsSide: {
  50115. height: math.unit(2.64225290474, "feet"),
  50116. name: "Organs (Side)",
  50117. image: {
  50118. source: "./media/characters/jess/organs-side.svg"
  50119. }
  50120. },
  50121. digestiveTractFront: {
  50122. height: math.unit(2.8106580871, "feet"),
  50123. name: "Digestive Tract (Front)",
  50124. image: {
  50125. source: "./media/characters/jess/digestive-tract-front.svg"
  50126. }
  50127. },
  50128. digestiveTractSide: {
  50129. height: math.unit(2.54365045014, "feet"),
  50130. name: "Digestive Tract (Side)",
  50131. image: {
  50132. source: "./media/characters/jess/digestive-tract-side.svg"
  50133. }
  50134. },
  50135. respiratorySystemFront: {
  50136. height: math.unit(1.11196233456, "feet"),
  50137. name: "Respiratory System (Front)",
  50138. image: {
  50139. source: "./media/characters/jess/respiratory-system-front.svg"
  50140. }
  50141. },
  50142. respiratorySystemSide: {
  50143. height: math.unit(0.89327966297, "feet"),
  50144. name: "Respiratory System (Side)",
  50145. image: {
  50146. source: "./media/characters/jess/respiratory-system-side.svg"
  50147. }
  50148. },
  50149. urinaryTractFront: {
  50150. height: math.unit(1.16126356186, "feet"),
  50151. name: "Urinary Tract (Front)",
  50152. image: {
  50153. source: "./media/characters/jess/urinary-tract-front.svg"
  50154. }
  50155. },
  50156. urinaryTractSide: {
  50157. height: math.unit(1.20910039627, "feet"),
  50158. name: "Urinary Tract (Side)",
  50159. image: {
  50160. source: "./media/characters/jess/urinary-tract-side.svg"
  50161. }
  50162. },
  50163. reproductiveOrgansFront: {
  50164. height: math.unit(0.48422591566, "feet"),
  50165. name: "Reproductive Organs (Front)",
  50166. image: {
  50167. source: "./media/characters/jess/reproductive-organs-front.svg"
  50168. }
  50169. },
  50170. reproductiveOrgansSide: {
  50171. height: math.unit(0.61553314481, "feet"),
  50172. name: "Reproductive Organs (Side)",
  50173. image: {
  50174. source: "./media/characters/jess/reproductive-organs-side.svg"
  50175. }
  50176. },
  50177. breastsFront: {
  50178. height: math.unit(0.47690395121, "feet"),
  50179. name: "Breasts (Front)",
  50180. image: {
  50181. source: "./media/characters/jess/breasts-front.svg"
  50182. }
  50183. },
  50184. breastsSide: {
  50185. height: math.unit(0.30556998307, "feet"),
  50186. name: "Breasts (Side)",
  50187. image: {
  50188. source: "./media/characters/jess/breasts-side.svg"
  50189. }
  50190. },
  50191. heartFront: {
  50192. height: math.unit(0.53011022622, "feet"),
  50193. name: "Heart (Front)",
  50194. image: {
  50195. source: "./media/characters/jess/heart-front.svg"
  50196. }
  50197. },
  50198. heartSide: {
  50199. height: math.unit(0.51790695213, "feet"),
  50200. name: "Heart (Side)",
  50201. image: {
  50202. source: "./media/characters/jess/heart-side.svg"
  50203. }
  50204. },
  50205. earsAndNoseFront: {
  50206. height: math.unit(0.29385483995, "feet"),
  50207. name: "Ears and Nose (Front)",
  50208. image: {
  50209. source: "./media/characters/jess/ears-and-nose-front.svg"
  50210. }
  50211. },
  50212. earsAndNoseSide: {
  50213. height: math.unit(0.18109658741, "feet"),
  50214. name: "Ears and Nose (Side)",
  50215. image: {
  50216. source: "./media/characters/jess/ears-and-nose-side.svg"
  50217. }
  50218. },
  50219. },
  50220. [
  50221. {
  50222. name: "Normal",
  50223. height: math.unit(5 + 8/12, "feet"),
  50224. default: true
  50225. },
  50226. ]
  50227. ))
  50228. characterMakers.push(() => makeCharacter(
  50229. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50230. {
  50231. front: {
  50232. height: math.unit(6, "feet"),
  50233. weight: math.unit(6.64467e-7, "grams"),
  50234. name: "Front",
  50235. image: {
  50236. source: "./media/characters/wimpering/front.svg",
  50237. extra: 597/587,
  50238. bottom: 34/631
  50239. }
  50240. },
  50241. },
  50242. [
  50243. {
  50244. name: "Micro",
  50245. height: math.unit(0.4, "mm"),
  50246. default: true
  50247. },
  50248. ]
  50249. ))
  50250. characterMakers.push(() => makeCharacter(
  50251. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50252. {
  50253. front: {
  50254. height: math.unit(5 + 2/12, "feet"),
  50255. weight: math.unit(110, "lb"),
  50256. name: "Front",
  50257. image: {
  50258. source: "./media/characters/keltre/front.svg",
  50259. extra: 1099/1057,
  50260. bottom: 22/1121
  50261. }
  50262. },
  50263. back: {
  50264. height: math.unit(5 + 2/12, "feet"),
  50265. weight: math.unit(110, "lb"),
  50266. name: "Back",
  50267. image: {
  50268. source: "./media/characters/keltre/back.svg",
  50269. extra: 1095/1053,
  50270. bottom: 17/1112
  50271. }
  50272. },
  50273. dressed: {
  50274. height: math.unit(5 + 2/12, "feet"),
  50275. weight: math.unit(110, "lb"),
  50276. name: "Dressed",
  50277. image: {
  50278. source: "./media/characters/keltre/dressed.svg",
  50279. extra: 1099/1057,
  50280. bottom: 22/1121
  50281. }
  50282. },
  50283. winter: {
  50284. height: math.unit(5 + 2/12, "feet"),
  50285. weight: math.unit(110, "lb"),
  50286. name: "Winter",
  50287. image: {
  50288. source: "./media/characters/keltre/winter.svg",
  50289. extra: 1099/1057,
  50290. bottom: 22/1121
  50291. }
  50292. },
  50293. head: {
  50294. height: math.unit(1.61 * 0.86, "feet"),
  50295. name: "Head",
  50296. image: {
  50297. source: "./media/characters/keltre/head.svg",
  50298. extra: 534/421,
  50299. bottom: 0/534
  50300. }
  50301. },
  50302. hand: {
  50303. height: math.unit(1.3 * 0.86, "feet"),
  50304. name: "Hand",
  50305. image: {
  50306. source: "./media/characters/keltre/hand.svg"
  50307. }
  50308. },
  50309. foot: {
  50310. height: math.unit(1.8 * 0.86, "feet"),
  50311. name: "Foot",
  50312. image: {
  50313. source: "./media/characters/keltre/foot.svg"
  50314. }
  50315. },
  50316. },
  50317. [
  50318. {
  50319. name: "Fine",
  50320. height: math.unit(1, "inch")
  50321. },
  50322. {
  50323. name: "Dimnutive",
  50324. height: math.unit(4, "inches")
  50325. },
  50326. {
  50327. name: "Tiny",
  50328. height: math.unit(1, "foot")
  50329. },
  50330. {
  50331. name: "Small",
  50332. height: math.unit(3, "feet")
  50333. },
  50334. {
  50335. name: "Normal",
  50336. height: math.unit(5 + 2/12, "feet"),
  50337. default: true
  50338. },
  50339. ]
  50340. ))
  50341. characterMakers.push(() => makeCharacter(
  50342. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50343. {
  50344. front: {
  50345. height: math.unit(6 + 2/12, "feet"),
  50346. name: "Front",
  50347. image: {
  50348. source: "./media/characters/nox/front.svg",
  50349. extra: 1917/1830,
  50350. bottom: 74/1991
  50351. }
  50352. },
  50353. back: {
  50354. height: math.unit(6 + 2/12, "feet"),
  50355. name: "Back",
  50356. image: {
  50357. source: "./media/characters/nox/back.svg",
  50358. extra: 1896/1815,
  50359. bottom: 21/1917
  50360. }
  50361. },
  50362. head: {
  50363. height: math.unit(1.1, "feet"),
  50364. name: "Head",
  50365. image: {
  50366. source: "./media/characters/nox/head.svg",
  50367. extra: 874/704,
  50368. bottom: 0/874
  50369. }
  50370. },
  50371. tattoo: {
  50372. height: math.unit(0.729, "feet"),
  50373. name: "Tattoo",
  50374. image: {
  50375. source: "./media/characters/nox/tattoo.svg"
  50376. }
  50377. },
  50378. },
  50379. [
  50380. {
  50381. name: "Normal",
  50382. height: math.unit(6 + 2/12, "feet")
  50383. },
  50384. {
  50385. name: "Gigamacro",
  50386. height: math.unit(2, "earths"),
  50387. default: true
  50388. },
  50389. {
  50390. name: "Cosmic",
  50391. height: math.unit(867, "yottameters")
  50392. },
  50393. ]
  50394. ))
  50395. characterMakers.push(() => makeCharacter(
  50396. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50397. {
  50398. front: {
  50399. height: math.unit(6, "feet"),
  50400. weight: math.unit(150, "lb"),
  50401. name: "Front",
  50402. image: {
  50403. source: "./media/characters/caspian/front.svg",
  50404. extra: 1443/1359,
  50405. bottom: 0/1443
  50406. }
  50407. },
  50408. back: {
  50409. height: math.unit(6, "feet"),
  50410. weight: math.unit(150, "lb"),
  50411. name: "Back",
  50412. image: {
  50413. source: "./media/characters/caspian/back.svg",
  50414. extra: 1379/1309,
  50415. bottom: 0/1379
  50416. }
  50417. },
  50418. head: {
  50419. height: math.unit(0.9, "feet"),
  50420. name: "Head",
  50421. image: {
  50422. source: "./media/characters/caspian/head.svg",
  50423. extra: 692/492,
  50424. bottom: 0/692
  50425. }
  50426. },
  50427. headAlt: {
  50428. height: math.unit(0.95, "feet"),
  50429. name: "Head (Alt)",
  50430. image: {
  50431. source: "./media/characters/caspian/head-alt.svg",
  50432. extra: 668/508,
  50433. bottom: 0/668
  50434. }
  50435. },
  50436. hand: {
  50437. height: math.unit(0.8, "feet"),
  50438. name: "Hand",
  50439. image: {
  50440. source: "./media/characters/caspian/hand.svg"
  50441. }
  50442. },
  50443. paw: {
  50444. height: math.unit(0.95, "feet"),
  50445. name: "Paw",
  50446. image: {
  50447. source: "./media/characters/caspian/paw.svg"
  50448. }
  50449. },
  50450. },
  50451. [
  50452. {
  50453. name: "Normal",
  50454. height: math.unit(162, "feet"),
  50455. default: true
  50456. },
  50457. ]
  50458. ))
  50459. characterMakers.push(() => makeCharacter(
  50460. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50461. {
  50462. front: {
  50463. height: math.unit(6, "feet"),
  50464. name: "Front",
  50465. image: {
  50466. source: "./media/characters/myra-aisling/front.svg",
  50467. extra: 1268/1166,
  50468. bottom: 73/1341
  50469. }
  50470. },
  50471. back: {
  50472. height: math.unit(6, "feet"),
  50473. name: "Back",
  50474. image: {
  50475. source: "./media/characters/myra-aisling/back.svg",
  50476. extra: 1249/1149,
  50477. bottom: 79/1328
  50478. }
  50479. },
  50480. dressed: {
  50481. height: math.unit(6, "feet"),
  50482. name: "Dressed",
  50483. image: {
  50484. source: "./media/characters/myra-aisling/dressed.svg",
  50485. extra: 1290/1189,
  50486. bottom: 47/1337
  50487. }
  50488. },
  50489. hand: {
  50490. height: math.unit(1.1, "feet"),
  50491. name: "Hand",
  50492. image: {
  50493. source: "./media/characters/myra-aisling/hand.svg"
  50494. }
  50495. },
  50496. paw: {
  50497. height: math.unit(1.23, "feet"),
  50498. name: "Paw",
  50499. image: {
  50500. source: "./media/characters/myra-aisling/paw.svg"
  50501. }
  50502. },
  50503. },
  50504. [
  50505. {
  50506. name: "Normal",
  50507. height: math.unit(160, "feet"),
  50508. default: true
  50509. },
  50510. ]
  50511. ))
  50512. characterMakers.push(() => makeCharacter(
  50513. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50514. {
  50515. front: {
  50516. height: math.unit(6, "feet"),
  50517. name: "Front",
  50518. image: {
  50519. source: "./media/characters/tenley-sidero/front.svg",
  50520. extra: 1365/1276,
  50521. bottom: 47/1412
  50522. }
  50523. },
  50524. back: {
  50525. height: math.unit(6, "feet"),
  50526. name: "Back",
  50527. image: {
  50528. source: "./media/characters/tenley-sidero/back.svg",
  50529. extra: 1383/1283,
  50530. bottom: 35/1418
  50531. }
  50532. },
  50533. dressed: {
  50534. height: math.unit(6, "feet"),
  50535. name: "Dressed",
  50536. image: {
  50537. source: "./media/characters/tenley-sidero/dressed.svg",
  50538. extra: 1364/1275,
  50539. bottom: 42/1406
  50540. }
  50541. },
  50542. head: {
  50543. height: math.unit(1.47, "feet"),
  50544. name: "Head",
  50545. image: {
  50546. source: "./media/characters/tenley-sidero/head.svg",
  50547. extra: 610/490,
  50548. bottom: 0/610
  50549. }
  50550. },
  50551. },
  50552. [
  50553. {
  50554. name: "Normal",
  50555. height: math.unit(154, "feet"),
  50556. default: true
  50557. },
  50558. ]
  50559. ))
  50560. characterMakers.push(() => makeCharacter(
  50561. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50562. {
  50563. front: {
  50564. height: math.unit(5, "inches"),
  50565. name: "Front",
  50566. image: {
  50567. source: "./media/characters/mallory/front.svg",
  50568. extra: 1919/1678,
  50569. bottom: 29/1948
  50570. }
  50571. },
  50572. hand: {
  50573. height: math.unit(0.73, "inches"),
  50574. name: "Hand",
  50575. image: {
  50576. source: "./media/characters/mallory/hand.svg"
  50577. }
  50578. },
  50579. paw: {
  50580. height: math.unit(0.68, "inches"),
  50581. name: "Paw",
  50582. image: {
  50583. source: "./media/characters/mallory/paw.svg"
  50584. }
  50585. },
  50586. },
  50587. [
  50588. {
  50589. name: "Small",
  50590. height: math.unit(5, "inches"),
  50591. default: true
  50592. },
  50593. ]
  50594. ))
  50595. characterMakers.push(() => makeCharacter(
  50596. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50597. {
  50598. naked: {
  50599. height: math.unit(6, "feet"),
  50600. name: "Naked",
  50601. image: {
  50602. source: "./media/characters/mab/naked.svg",
  50603. extra: 1855/1757,
  50604. bottom: 208/2063
  50605. }
  50606. },
  50607. outside: {
  50608. height: math.unit(6, "feet"),
  50609. name: "Outside",
  50610. image: {
  50611. source: "./media/characters/mab/outside.svg",
  50612. extra: 1855/1757,
  50613. bottom: 208/2063
  50614. }
  50615. },
  50616. party: {
  50617. height: math.unit(6, "feet"),
  50618. name: "Party",
  50619. image: {
  50620. source: "./media/characters/mab/party.svg",
  50621. extra: 1855/1757,
  50622. bottom: 208/2063
  50623. }
  50624. },
  50625. },
  50626. [
  50627. {
  50628. name: "Normal",
  50629. height: math.unit(165, "feet"),
  50630. default: true
  50631. },
  50632. ]
  50633. ))
  50634. characterMakers.push(() => makeCharacter(
  50635. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50636. {
  50637. feral: {
  50638. height: math.unit(12, "feet"),
  50639. weight: math.unit(20000, "lb"),
  50640. name: "Side",
  50641. image: {
  50642. source: "./media/characters/winter/feral.svg",
  50643. extra: 1286/943,
  50644. bottom: 112/1398
  50645. },
  50646. form: "feral",
  50647. default: true
  50648. },
  50649. feralNsfw: {
  50650. height: math.unit(12, "feet"),
  50651. weight: math.unit(20000, "lb"),
  50652. name: "Side (NSFW)",
  50653. image: {
  50654. source: "./media/characters/winter/feral-nsfw.svg",
  50655. extra: 1286/943,
  50656. bottom: 112/1398
  50657. },
  50658. form: "feral"
  50659. },
  50660. dick: {
  50661. height: math.unit(3.79, "feet"),
  50662. name: "Dick",
  50663. image: {
  50664. source: "./media/characters/winter/dick.svg"
  50665. },
  50666. form: "feral"
  50667. },
  50668. anthro: {
  50669. height: math.unit(12, "feet"),
  50670. weight: math.unit(10, "tons"),
  50671. name: "Anthro",
  50672. image: {
  50673. source: "./media/characters/winter/anthro.svg",
  50674. extra: 1701/1553,
  50675. bottom: 64/1765
  50676. },
  50677. form: "anthro",
  50678. default: true
  50679. },
  50680. },
  50681. [
  50682. {
  50683. name: "Big",
  50684. height: math.unit(12, "feet"),
  50685. default: true,
  50686. form: "feral"
  50687. },
  50688. {
  50689. name: "Big",
  50690. height: math.unit(12, "feet"),
  50691. default: true,
  50692. form: "anthro"
  50693. },
  50694. ],
  50695. {
  50696. "feral": {
  50697. name: "Feral",
  50698. default: true
  50699. },
  50700. "anthro": {
  50701. name: "Anthro"
  50702. }
  50703. }
  50704. ))
  50705. characterMakers.push(() => makeCharacter(
  50706. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50707. {
  50708. front: {
  50709. height: math.unit(4.1, "inches"),
  50710. name: "Front",
  50711. image: {
  50712. source: "./media/characters/alto/front.svg",
  50713. extra: 736/627,
  50714. bottom: 90/826
  50715. }
  50716. },
  50717. },
  50718. [
  50719. {
  50720. name: "Normal",
  50721. height: math.unit(4.1, "inches"),
  50722. default: true
  50723. },
  50724. ]
  50725. ))
  50726. characterMakers.push(() => makeCharacter(
  50727. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50728. {
  50729. sitting: {
  50730. height: math.unit(3, "feet"),
  50731. name: "Sitting",
  50732. image: {
  50733. source: "./media/characters/ratstrid-v/sitting.svg",
  50734. extra: 355/310,
  50735. bottom: 136/491
  50736. }
  50737. },
  50738. },
  50739. [
  50740. {
  50741. name: "Normal",
  50742. height: math.unit(3, "feet"),
  50743. default: true
  50744. },
  50745. ]
  50746. ))
  50747. characterMakers.push(() => makeCharacter(
  50748. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50749. {
  50750. back: {
  50751. height: math.unit(6, "feet"),
  50752. weight: math.unit(450, "lb"),
  50753. name: "Back",
  50754. image: {
  50755. source: "./media/characters/siz/back.svg",
  50756. extra: 1449/1274,
  50757. bottom: 13/1462
  50758. }
  50759. },
  50760. },
  50761. [
  50762. {
  50763. name: "Smallest",
  50764. height: math.unit(18 + 3/12, "feet")
  50765. },
  50766. {
  50767. name: "Modest",
  50768. height: math.unit(56 + 8/12, "feet"),
  50769. default: true
  50770. },
  50771. {
  50772. name: "Largest",
  50773. height: math.unit(3590, "feet")
  50774. },
  50775. ]
  50776. ))
  50777. characterMakers.push(() => makeCharacter(
  50778. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50779. {
  50780. front: {
  50781. height: math.unit(5 + 9/12, "feet"),
  50782. weight: math.unit(150, "lb"),
  50783. name: "Front",
  50784. image: {
  50785. source: "./media/characters/ven/front.svg",
  50786. extra: 1372/1320,
  50787. bottom: 73/1445
  50788. }
  50789. },
  50790. side: {
  50791. height: math.unit(5 + 9/12, "feet"),
  50792. weight: math.unit(1150, "lb"),
  50793. name: "Side",
  50794. image: {
  50795. source: "./media/characters/ven/side.svg",
  50796. extra: 1119/1070,
  50797. bottom: 42/1161
  50798. },
  50799. default: true
  50800. },
  50801. },
  50802. [
  50803. {
  50804. name: "Normal",
  50805. height: math.unit(5 + 9/12, "feet"),
  50806. default: true
  50807. },
  50808. ]
  50809. ))
  50810. characterMakers.push(() => makeCharacter(
  50811. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50812. {
  50813. front: {
  50814. height: math.unit(12, "feet"),
  50815. weight: math.unit(1000, "kg"),
  50816. name: "Front",
  50817. image: {
  50818. source: "./media/characters/maple/front.svg",
  50819. extra: 1193/1081,
  50820. bottom: 22/1215
  50821. }
  50822. },
  50823. },
  50824. [
  50825. {
  50826. name: "Compressed",
  50827. height: math.unit(7, "feet")
  50828. },
  50829. {
  50830. name: "Normal",
  50831. height: math.unit(12, "feet"),
  50832. default: true
  50833. },
  50834. ]
  50835. ))
  50836. characterMakers.push(() => makeCharacter(
  50837. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50838. {
  50839. front: {
  50840. height: math.unit(9, "feet"),
  50841. weight: math.unit(1500, "lb"),
  50842. name: "Front",
  50843. image: {
  50844. source: "./media/characters/nora/front.svg",
  50845. extra: 1348/1286,
  50846. bottom: 218/1566
  50847. }
  50848. },
  50849. erect: {
  50850. height: math.unit(9, "feet"),
  50851. weight: math.unit(11500, "lb"),
  50852. name: "Erect",
  50853. image: {
  50854. source: "./media/characters/nora/erect.svg",
  50855. extra: 1488/1433,
  50856. bottom: 133/1621
  50857. }
  50858. },
  50859. },
  50860. [
  50861. {
  50862. name: "Normal",
  50863. height: math.unit(9, "feet"),
  50864. default: true
  50865. },
  50866. ]
  50867. ))
  50868. characterMakers.push(() => makeCharacter(
  50869. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  50870. {
  50871. front: {
  50872. height: math.unit(25, "feet"),
  50873. weight: math.unit(27500, "lb"),
  50874. name: "Front",
  50875. image: {
  50876. source: "./media/characters/north-caudin/front.svg",
  50877. extra: 1184/1082,
  50878. bottom: 23/1207
  50879. }
  50880. },
  50881. },
  50882. [
  50883. {
  50884. name: "Compressed",
  50885. height: math.unit(10, "feet")
  50886. },
  50887. {
  50888. name: "Normal",
  50889. height: math.unit(25, "feet"),
  50890. default: true
  50891. },
  50892. ]
  50893. ))
  50894. characterMakers.push(() => makeCharacter(
  50895. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  50896. {
  50897. front: {
  50898. height: math.unit(9, "feet"),
  50899. weight: math.unit(1250, "lb"),
  50900. name: "Front",
  50901. image: {
  50902. source: "./media/characters/merrian/front.svg",
  50903. extra: 2393/2304,
  50904. bottom: 40/2433
  50905. }
  50906. },
  50907. },
  50908. [
  50909. {
  50910. name: "Normal",
  50911. height: math.unit(9, "feet"),
  50912. default: true
  50913. },
  50914. ]
  50915. ))
  50916. characterMakers.push(() => makeCharacter(
  50917. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  50918. {
  50919. front: {
  50920. height: math.unit(9, "feet"),
  50921. weight: math.unit(1000, "lb"),
  50922. name: "Front",
  50923. image: {
  50924. source: "./media/characters/hazel/front.svg",
  50925. extra: 2351/2298,
  50926. bottom: 38/2389
  50927. }
  50928. },
  50929. },
  50930. [
  50931. {
  50932. name: "Normal",
  50933. height: math.unit(9, "feet"),
  50934. default: true
  50935. },
  50936. ]
  50937. ))
  50938. characterMakers.push(() => makeCharacter(
  50939. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  50940. {
  50941. front: {
  50942. height: math.unit(13, "feet"),
  50943. weight: math.unit(3200, "lb"),
  50944. name: "Front",
  50945. image: {
  50946. source: "./media/characters/emma/front.svg",
  50947. extra: 2263/2029,
  50948. bottom: 68/2331
  50949. }
  50950. },
  50951. },
  50952. [
  50953. {
  50954. name: "Normal",
  50955. height: math.unit(13, "feet"),
  50956. default: true
  50957. },
  50958. ]
  50959. ))
  50960. characterMakers.push(() => makeCharacter(
  50961. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  50962. {
  50963. front: {
  50964. height: math.unit(11 + 9/12, "feet"),
  50965. weight: math.unit(2500, "lb"),
  50966. name: "Front",
  50967. image: {
  50968. source: "./media/characters/ilumina/front.svg",
  50969. extra: 2248/2209,
  50970. bottom: 164/2412
  50971. }
  50972. },
  50973. },
  50974. [
  50975. {
  50976. name: "Normal",
  50977. height: math.unit(11 + 9/12, "feet"),
  50978. default: true
  50979. },
  50980. ]
  50981. ))
  50982. characterMakers.push(() => makeCharacter(
  50983. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  50984. {
  50985. front: {
  50986. height: math.unit(8 + 10/12, "feet"),
  50987. weight: math.unit(1350, "lb"),
  50988. name: "Front",
  50989. image: {
  50990. source: "./media/characters/moonshine/front.svg",
  50991. extra: 2395/2288,
  50992. bottom: 40/2435
  50993. }
  50994. },
  50995. },
  50996. [
  50997. {
  50998. name: "Normal",
  50999. height: math.unit(8 + 10/12, "feet"),
  51000. default: true
  51001. },
  51002. ]
  51003. ))
  51004. characterMakers.push(() => makeCharacter(
  51005. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51006. {
  51007. front: {
  51008. height: math.unit(14, "feet"),
  51009. weight: math.unit(3400, "lb"),
  51010. name: "Front",
  51011. image: {
  51012. source: "./media/characters/aletia/front.svg",
  51013. extra: 1185/1052,
  51014. bottom: 21/1206
  51015. }
  51016. },
  51017. },
  51018. [
  51019. {
  51020. name: "Compressed",
  51021. height: math.unit(8, "feet")
  51022. },
  51023. {
  51024. name: "Normal",
  51025. height: math.unit(14, "feet"),
  51026. default: true
  51027. },
  51028. ]
  51029. ))
  51030. characterMakers.push(() => makeCharacter(
  51031. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51032. {
  51033. front: {
  51034. height: math.unit(17, "feet"),
  51035. weight: math.unit(6500, "lb"),
  51036. name: "Front",
  51037. image: {
  51038. source: "./media/characters/deidra/front.svg",
  51039. extra: 1201/1081,
  51040. bottom: 16/1217
  51041. }
  51042. },
  51043. },
  51044. [
  51045. {
  51046. name: "Compressed",
  51047. height: math.unit(9 + 6/12, "feet")
  51048. },
  51049. {
  51050. name: "Normal",
  51051. height: math.unit(17, "feet"),
  51052. default: true
  51053. },
  51054. ]
  51055. ))
  51056. characterMakers.push(() => makeCharacter(
  51057. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51058. {
  51059. front: {
  51060. height: math.unit(7 + 4/12, "feet"),
  51061. weight: math.unit(280, "lb"),
  51062. name: "Front",
  51063. image: {
  51064. source: "./media/characters/freki-yrmori/front.svg",
  51065. extra: 1286/1182,
  51066. bottom: 29/1315
  51067. }
  51068. },
  51069. maw: {
  51070. height: math.unit(0.9, "feet"),
  51071. name: "Maw",
  51072. image: {
  51073. source: "./media/characters/freki-yrmori/maw.svg"
  51074. }
  51075. },
  51076. },
  51077. [
  51078. {
  51079. name: "Normal",
  51080. height: math.unit(7 + 4/12, "feet"),
  51081. default: true
  51082. },
  51083. {
  51084. name: "Macro",
  51085. height: math.unit(38.5, "meters")
  51086. },
  51087. ]
  51088. ))
  51089. characterMakers.push(() => makeCharacter(
  51090. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51091. {
  51092. side: {
  51093. height: math.unit(47.2, "meters"),
  51094. weight: math.unit(10000, "tons"),
  51095. name: "Side",
  51096. image: {
  51097. source: "./media/characters/aetherios/side.svg",
  51098. extra: 2363/642,
  51099. bottom: 221/2584
  51100. }
  51101. },
  51102. top: {
  51103. height: math.unit(240, "meters"),
  51104. weight: math.unit(10000, "tons"),
  51105. name: "Top",
  51106. image: {
  51107. source: "./media/characters/aetherios/top.svg"
  51108. }
  51109. },
  51110. bottom: {
  51111. height: math.unit(240, "meters"),
  51112. weight: math.unit(10000, "tons"),
  51113. name: "Bottom",
  51114. image: {
  51115. source: "./media/characters/aetherios/bottom.svg"
  51116. }
  51117. },
  51118. head: {
  51119. height: math.unit(38.6, "meters"),
  51120. name: "Head",
  51121. image: {
  51122. source: "./media/characters/aetherios/head.svg",
  51123. extra: 1335/1112,
  51124. bottom: 0/1335
  51125. }
  51126. },
  51127. front: {
  51128. height: math.unit(29, "meters"),
  51129. name: "Front",
  51130. image: {
  51131. source: "./media/characters/aetherios/front.svg",
  51132. extra: 1266/953,
  51133. bottom: 158/1424
  51134. }
  51135. },
  51136. maw: {
  51137. height: math.unit(16.37, "meters"),
  51138. name: "Maw",
  51139. image: {
  51140. source: "./media/characters/aetherios/maw.svg",
  51141. extra: 748/637,
  51142. bottom: 0/748
  51143. },
  51144. extraAttributes: {
  51145. preyCapacity: {
  51146. name: "Capacity",
  51147. power: 3,
  51148. type: "volume",
  51149. base: math.unit(1000, "people")
  51150. },
  51151. tongueSize: {
  51152. name: "Tongue Size",
  51153. power: 2,
  51154. type: "area",
  51155. base: math.unit(21, "m^2")
  51156. }
  51157. }
  51158. },
  51159. forepaw: {
  51160. height: math.unit(18, "meters"),
  51161. name: "Forepaw",
  51162. image: {
  51163. source: "./media/characters/aetherios/forepaw.svg"
  51164. }
  51165. },
  51166. hindpaw: {
  51167. height: math.unit(23, "meters"),
  51168. name: "Hindpaw",
  51169. image: {
  51170. source: "./media/characters/aetherios/hindpaw.svg"
  51171. }
  51172. },
  51173. genitals: {
  51174. height: math.unit(42, "meters"),
  51175. name: "Genitals",
  51176. image: {
  51177. source: "./media/characters/aetherios/genitals.svg"
  51178. }
  51179. },
  51180. },
  51181. [
  51182. {
  51183. name: "Normal",
  51184. height: math.unit(47.2, "meters"),
  51185. default: true
  51186. },
  51187. {
  51188. name: "Macro",
  51189. height: math.unit(160, "meters")
  51190. },
  51191. {
  51192. name: "Mega",
  51193. height: math.unit(1.87, "km")
  51194. },
  51195. {
  51196. name: "Giga",
  51197. height: math.unit(40000, "km")
  51198. },
  51199. {
  51200. name: "Stellar",
  51201. height: math.unit(158000000, "km")
  51202. },
  51203. {
  51204. name: "Cosmic",
  51205. height: math.unit(9.46e12, "km")
  51206. },
  51207. ]
  51208. ))
  51209. characterMakers.push(() => makeCharacter(
  51210. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51211. {
  51212. front: {
  51213. height: math.unit(5 + 4/12, "feet"),
  51214. weight: math.unit(80, "lb"),
  51215. name: "Front",
  51216. image: {
  51217. source: "./media/characters/mizu-gieeg/front.svg",
  51218. extra: 850/709,
  51219. bottom: 52/902
  51220. }
  51221. },
  51222. back: {
  51223. height: math.unit(5 + 4/12, "feet"),
  51224. weight: math.unit(80, "lb"),
  51225. name: "Back",
  51226. image: {
  51227. source: "./media/characters/mizu-gieeg/back.svg",
  51228. extra: 882/745,
  51229. bottom: 25/907
  51230. }
  51231. },
  51232. },
  51233. [
  51234. {
  51235. name: "Normal",
  51236. height: math.unit(5 + 4/12, "feet"),
  51237. default: true
  51238. },
  51239. ]
  51240. ))
  51241. characterMakers.push(() => makeCharacter(
  51242. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51243. {
  51244. front: {
  51245. height: math.unit(6, "feet"),
  51246. name: "Front",
  51247. image: {
  51248. source: "./media/characters/roselle-st-papier/front.svg",
  51249. extra: 1430/1280,
  51250. bottom: 37/1467
  51251. }
  51252. },
  51253. back: {
  51254. height: math.unit(6, "feet"),
  51255. name: "Back",
  51256. image: {
  51257. source: "./media/characters/roselle-st-papier/back.svg",
  51258. extra: 1491/1296,
  51259. bottom: 23/1514
  51260. }
  51261. },
  51262. ear: {
  51263. height: math.unit(1.26, "feet"),
  51264. name: "Ear",
  51265. image: {
  51266. source: "./media/characters/roselle-st-papier/ear.svg"
  51267. }
  51268. },
  51269. },
  51270. [
  51271. {
  51272. name: "Normal",
  51273. height: math.unit(150, "feet"),
  51274. default: true
  51275. },
  51276. ]
  51277. ))
  51278. characterMakers.push(() => makeCharacter(
  51279. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51280. {
  51281. front: {
  51282. height: math.unit(1, "inches"),
  51283. name: "Front",
  51284. image: {
  51285. source: "./media/characters/valargent/front.svg",
  51286. extra: 1825/1694,
  51287. bottom: 62/1887
  51288. }
  51289. },
  51290. back: {
  51291. height: math.unit(1, "inches"),
  51292. name: "Back",
  51293. image: {
  51294. source: "./media/characters/valargent/back.svg",
  51295. extra: 1775/1682,
  51296. bottom: 88/1863
  51297. }
  51298. },
  51299. },
  51300. [
  51301. {
  51302. name: "Micro",
  51303. height: math.unit(1, "inch"),
  51304. default: true
  51305. },
  51306. ]
  51307. ))
  51308. characterMakers.push(() => makeCharacter(
  51309. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51310. {
  51311. front: {
  51312. height: math.unit(3.4, "meters"),
  51313. name: "Front",
  51314. image: {
  51315. source: "./media/characters/zarina/front.svg",
  51316. extra: 1733/1425,
  51317. bottom: 93/1826
  51318. }
  51319. },
  51320. squatting: {
  51321. height: math.unit(2.14, "meters"),
  51322. name: "Squatting",
  51323. image: {
  51324. source: "./media/characters/zarina/squatting.svg",
  51325. extra: 1073/788,
  51326. bottom: 63/1136
  51327. }
  51328. },
  51329. back: {
  51330. height: math.unit(2.14, "meters"),
  51331. name: "Back",
  51332. image: {
  51333. source: "./media/characters/zarina/back.svg",
  51334. extra: 1128/885,
  51335. bottom: 0/1128
  51336. }
  51337. },
  51338. },
  51339. [
  51340. {
  51341. name: "Normal",
  51342. height: math.unit(3.4, "meters"),
  51343. default: true
  51344. },
  51345. {
  51346. name: "Big",
  51347. height: math.unit(5, "meters")
  51348. },
  51349. {
  51350. name: "Macro",
  51351. height: math.unit(110, "meters")
  51352. },
  51353. ]
  51354. ))
  51355. characterMakers.push(() => makeCharacter(
  51356. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51357. {
  51358. front: {
  51359. height: math.unit(7, "feet"),
  51360. name: "Front",
  51361. image: {
  51362. source: "./media/characters/ventus-astro-fox/front.svg",
  51363. extra: 1792/1623,
  51364. bottom: 28/1820
  51365. }
  51366. },
  51367. back: {
  51368. height: math.unit(7, "feet"),
  51369. name: "Back",
  51370. image: {
  51371. source: "./media/characters/ventus-astro-fox/back.svg",
  51372. extra: 1789/1620,
  51373. bottom: 31/1820
  51374. }
  51375. },
  51376. outfit: {
  51377. height: math.unit(7, "feet"),
  51378. name: "Outfit",
  51379. image: {
  51380. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51381. extra: 1054/925,
  51382. bottom: 15/1069
  51383. }
  51384. },
  51385. head: {
  51386. height: math.unit(1.12, "feet"),
  51387. name: "Head",
  51388. image: {
  51389. source: "./media/characters/ventus-astro-fox/head.svg",
  51390. extra: 866/504,
  51391. bottom: 0/866
  51392. }
  51393. },
  51394. hand: {
  51395. height: math.unit(1, "feet"),
  51396. name: "Hand",
  51397. image: {
  51398. source: "./media/characters/ventus-astro-fox/hand.svg"
  51399. }
  51400. },
  51401. paw: {
  51402. height: math.unit(1.5, "feet"),
  51403. name: "Paw",
  51404. image: {
  51405. source: "./media/characters/ventus-astro-fox/paw.svg"
  51406. }
  51407. },
  51408. },
  51409. [
  51410. {
  51411. name: "Normal",
  51412. height: math.unit(7, "feet"),
  51413. default: true
  51414. },
  51415. {
  51416. name: "Macro",
  51417. height: math.unit(200, "feet")
  51418. },
  51419. {
  51420. name: "Cosmic",
  51421. height: math.unit(3, "universes")
  51422. },
  51423. ]
  51424. ))
  51425. characterMakers.push(() => makeCharacter(
  51426. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51427. {
  51428. front: {
  51429. height: math.unit(3, "meters"),
  51430. weight: math.unit(7000, "lb"),
  51431. name: "Front",
  51432. image: {
  51433. source: "./media/characters/core-t/front.svg",
  51434. extra: 5729/4941,
  51435. bottom: 1129/6858
  51436. }
  51437. },
  51438. },
  51439. [
  51440. {
  51441. name: "Big",
  51442. height: math.unit(3, "meters"),
  51443. default: true
  51444. },
  51445. ]
  51446. ))
  51447. characterMakers.push(() => makeCharacter(
  51448. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51449. {
  51450. normal: {
  51451. height: math.unit(6 + 6/12, "feet"),
  51452. weight: math.unit(275, "lb"),
  51453. name: "Front",
  51454. image: {
  51455. source: "./media/characters/cadbunny/normal.svg",
  51456. extra: 1129/947,
  51457. bottom: 93/1222
  51458. },
  51459. default: true,
  51460. form: "normal"
  51461. },
  51462. gigantamax: {
  51463. height: math.unit(26, "feet"),
  51464. weight: math.unit(16000, "lb"),
  51465. name: "Front",
  51466. image: {
  51467. source: "./media/characters/cadbunny/gigantamax.svg",
  51468. extra: 1133/944,
  51469. bottom: 90/1223
  51470. },
  51471. default: true,
  51472. form: "gigantamax"
  51473. },
  51474. },
  51475. [
  51476. {
  51477. name: "Normal",
  51478. height: math.unit(6 + 6/12, "feet"),
  51479. default: true,
  51480. form: "normal"
  51481. },
  51482. {
  51483. name: "Small",
  51484. height: math.unit(26, "feet"),
  51485. default: true,
  51486. form: "gigantamax"
  51487. },
  51488. {
  51489. name: "Large",
  51490. height: math.unit(78, "feet"),
  51491. form: "gigantamax"
  51492. },
  51493. ],
  51494. {
  51495. "normal": {
  51496. name: "Normal",
  51497. default: true
  51498. },
  51499. "gigantamax": {
  51500. name: "Gigantamax"
  51501. }
  51502. }
  51503. ))
  51504. characterMakers.push(() => makeCharacter(
  51505. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51506. {
  51507. anthroFront: {
  51508. height: math.unit(8, "feet"),
  51509. weight: math.unit(300, "lb"),
  51510. name: "Front",
  51511. image: {
  51512. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51513. extra: 1272/1176,
  51514. bottom: 53/1325
  51515. },
  51516. form: "anthro",
  51517. default: true
  51518. },
  51519. feralSide: {
  51520. height: math.unit(4, "feet"),
  51521. weight: math.unit(250, "lb"),
  51522. name: "Side",
  51523. image: {
  51524. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51525. extra: 731/621,
  51526. bottom: 0/731
  51527. },
  51528. form: "feral",
  51529. default: true
  51530. },
  51531. },
  51532. [
  51533. {
  51534. name: "Regular",
  51535. height: math.unit(8, "feet"),
  51536. form: "anthro"
  51537. },
  51538. {
  51539. name: "Macro",
  51540. height: math.unit(250, "feet"),
  51541. form: "anthro",
  51542. default: true
  51543. },
  51544. {
  51545. name: "Regular",
  51546. height: math.unit(4, "feet"),
  51547. form: "feral"
  51548. },
  51549. {
  51550. name: "Macro",
  51551. height: math.unit(125, "feet"),
  51552. form: "feral",
  51553. default: true
  51554. },
  51555. ],
  51556. {
  51557. "anthro": {
  51558. name: "Anthro",
  51559. default: true
  51560. },
  51561. "feral": {
  51562. name: "Feral",
  51563. },
  51564. }
  51565. ))
  51566. characterMakers.push(() => makeCharacter(
  51567. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51568. {
  51569. front: {
  51570. height: math.unit(11 + 10/12, "feet"),
  51571. weight: math.unit(1587, "kg"),
  51572. name: "Front",
  51573. image: {
  51574. source: "./media/characters/maple-javira-dragon/front.svg",
  51575. extra: 1136/744,
  51576. bottom: 73/1209
  51577. }
  51578. },
  51579. side: {
  51580. height: math.unit(11 + 10/12, "feet"),
  51581. weight: math.unit(1587, "kg"),
  51582. name: "Side",
  51583. image: {
  51584. source: "./media/characters/maple-javira-dragon/side.svg",
  51585. extra: 712/505,
  51586. bottom: 17/729
  51587. }
  51588. },
  51589. head: {
  51590. height: math.unit(8.05, "feet"),
  51591. name: "Head",
  51592. image: {
  51593. source: "./media/characters/maple-javira-dragon/head.svg",
  51594. extra: 1420/1344,
  51595. bottom: 0/1420
  51596. }
  51597. },
  51598. },
  51599. [
  51600. {
  51601. name: "Normal",
  51602. height: math.unit(11 + 10/12, "feet"),
  51603. default: true
  51604. },
  51605. ]
  51606. ))
  51607. characterMakers.push(() => makeCharacter(
  51608. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51609. {
  51610. front: {
  51611. height: math.unit(117, "cm"),
  51612. weight: math.unit(50, "kg"),
  51613. name: "Front",
  51614. image: {
  51615. source: "./media/characters/sonia-wyverntail/front.svg",
  51616. extra: 708/592,
  51617. bottom: 25/733
  51618. }
  51619. },
  51620. },
  51621. [
  51622. {
  51623. name: "Normal",
  51624. height: math.unit(117, "cm"),
  51625. default: true
  51626. },
  51627. ]
  51628. ))
  51629. characterMakers.push(() => makeCharacter(
  51630. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51631. {
  51632. front: {
  51633. height: math.unit(6 + 5/12, "feet"),
  51634. name: "Front",
  51635. image: {
  51636. source: "./media/characters/micah/front.svg",
  51637. extra: 1758/1546,
  51638. bottom: 214/1972
  51639. }
  51640. },
  51641. },
  51642. [
  51643. {
  51644. name: "Normal",
  51645. height: math.unit(6 + 5/12, "feet"),
  51646. default: true
  51647. },
  51648. ]
  51649. ))
  51650. characterMakers.push(() => makeCharacter(
  51651. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51652. {
  51653. front: {
  51654. height: math.unit(1.75, "meters"),
  51655. weight: math.unit(100, "kg"),
  51656. name: "Front",
  51657. image: {
  51658. source: "./media/characters/zarya/front.svg",
  51659. extra: 741/735,
  51660. bottom: 44/785
  51661. },
  51662. extraAttributes: {
  51663. "tailLength": {
  51664. name: "Tail Length",
  51665. power: 1,
  51666. type: "length",
  51667. base: math.unit(180, "cm")
  51668. },
  51669. "pawLength": {
  51670. name: "Paw Length",
  51671. power: 1,
  51672. type: "length",
  51673. base: math.unit(31, "cm")
  51674. },
  51675. }
  51676. },
  51677. side: {
  51678. height: math.unit(1.75, "meters"),
  51679. weight: math.unit(100, "kg"),
  51680. name: "Side",
  51681. image: {
  51682. source: "./media/characters/zarya/side.svg",
  51683. extra: 776/770,
  51684. bottom: 17/793
  51685. },
  51686. extraAttributes: {
  51687. "tailLength": {
  51688. name: "Tail Length",
  51689. power: 1,
  51690. type: "length",
  51691. base: math.unit(180, "cm")
  51692. },
  51693. "pawLength": {
  51694. name: "Paw Length",
  51695. power: 1,
  51696. type: "length",
  51697. base: math.unit(31, "cm")
  51698. },
  51699. }
  51700. },
  51701. back: {
  51702. height: math.unit(1.75, "meters"),
  51703. weight: math.unit(100, "kg"),
  51704. name: "Back",
  51705. image: {
  51706. source: "./media/characters/zarya/back.svg",
  51707. extra: 741/735,
  51708. bottom: 44/785
  51709. },
  51710. extraAttributes: {
  51711. "tailLength": {
  51712. name: "Tail Length",
  51713. power: 1,
  51714. type: "length",
  51715. base: math.unit(180, "cm")
  51716. },
  51717. "pawLength": {
  51718. name: "Paw Length",
  51719. power: 1,
  51720. type: "length",
  51721. base: math.unit(31, "cm")
  51722. },
  51723. }
  51724. },
  51725. frontNoTail: {
  51726. height: math.unit(1.75, "meters"),
  51727. weight: math.unit(100, "kg"),
  51728. name: "Front (No Tail)",
  51729. image: {
  51730. source: "./media/characters/zarya/front-no-tail.svg",
  51731. extra: 741/735,
  51732. bottom: 44/785
  51733. },
  51734. extraAttributes: {
  51735. "tailLength": {
  51736. name: "Tail Length",
  51737. power: 1,
  51738. type: "length",
  51739. base: math.unit(180, "cm")
  51740. },
  51741. "pawLength": {
  51742. name: "Paw Length",
  51743. power: 1,
  51744. type: "length",
  51745. base: math.unit(31, "cm")
  51746. },
  51747. }
  51748. },
  51749. dressed: {
  51750. height: math.unit(1.75, "meters"),
  51751. weight: math.unit(100, "kg"),
  51752. name: "Dressed",
  51753. image: {
  51754. source: "./media/characters/zarya/dressed.svg",
  51755. extra: 683/672,
  51756. bottom: 79/762
  51757. },
  51758. extraAttributes: {
  51759. "tailLength": {
  51760. name: "Tail Length",
  51761. power: 1,
  51762. type: "length",
  51763. base: math.unit(180, "cm")
  51764. },
  51765. "pawLength": {
  51766. name: "Paw Length",
  51767. power: 1,
  51768. type: "length",
  51769. base: math.unit(31, "cm")
  51770. },
  51771. }
  51772. },
  51773. },
  51774. [
  51775. {
  51776. name: "Micro",
  51777. height: math.unit(5, "cm")
  51778. },
  51779. {
  51780. name: "Normal",
  51781. height: math.unit(1.75, "meters"),
  51782. default: true
  51783. },
  51784. {
  51785. name: "Macro",
  51786. height: math.unit(122, "meters")
  51787. },
  51788. ]
  51789. ))
  51790. characterMakers.push(() => makeCharacter(
  51791. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51792. {
  51793. front: {
  51794. height: math.unit(7.5, "feet"),
  51795. name: "Front",
  51796. image: {
  51797. source: "./media/characters/sven-hatisson/front.svg",
  51798. extra: 917/857,
  51799. bottom: 42/959
  51800. }
  51801. },
  51802. back: {
  51803. height: math.unit(7.5, "feet"),
  51804. name: "Back",
  51805. image: {
  51806. source: "./media/characters/sven-hatisson/back.svg",
  51807. extra: 903/856,
  51808. bottom: 15/918
  51809. }
  51810. },
  51811. },
  51812. [
  51813. {
  51814. name: "Base Height",
  51815. height: math.unit(7.5, "feet")
  51816. },
  51817. {
  51818. name: "Usual Height",
  51819. height: math.unit(13.5, "feet"),
  51820. default: true
  51821. },
  51822. {
  51823. name: "Smaller Macro",
  51824. height: math.unit(85, "feet")
  51825. },
  51826. {
  51827. name: "Moderate Macro",
  51828. height: math.unit(320, "feet")
  51829. },
  51830. {
  51831. name: "Large Macro",
  51832. height: math.unit(1000, "feet")
  51833. },
  51834. {
  51835. name: "Largest Size",
  51836. height: math.unit(2, "miles")
  51837. },
  51838. ]
  51839. ))
  51840. characterMakers.push(() => makeCharacter(
  51841. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51842. {
  51843. side: {
  51844. height: math.unit(1.8, "meters"),
  51845. weight: math.unit(275, "kg"),
  51846. name: "Side",
  51847. image: {
  51848. source: "./media/characters/terra/side.svg",
  51849. extra: 1273/1147,
  51850. bottom: 0/1273
  51851. }
  51852. },
  51853. },
  51854. [
  51855. {
  51856. name: "Normal",
  51857. height: math.unit(16.2, "meters"),
  51858. default: true
  51859. },
  51860. ]
  51861. ))
  51862. characterMakers.push(() => makeCharacter(
  51863. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  51864. {
  51865. borzoiFront: {
  51866. height: math.unit(6 + 9/12, "feet"),
  51867. name: "Front",
  51868. image: {
  51869. source: "./media/characters/rae/borzoi-front.svg",
  51870. extra: 1161/1098,
  51871. bottom: 31/1192
  51872. },
  51873. form: "borzoi",
  51874. default: true
  51875. },
  51876. werewolfFront: {
  51877. height: math.unit(8 + 7/12, "feet"),
  51878. name: "Front",
  51879. image: {
  51880. source: "./media/characters/rae/werewolf-front.svg",
  51881. extra: 1411/1334,
  51882. bottom: 127/1538
  51883. },
  51884. form: "werewolf",
  51885. default: true
  51886. },
  51887. },
  51888. [
  51889. {
  51890. name: "Normal",
  51891. height: math.unit(6 + 9/12, "feet"),
  51892. default: true,
  51893. form: "borzoi"
  51894. },
  51895. {
  51896. name: "Normal",
  51897. height: math.unit(8 + 7/12, "feet"),
  51898. default: true,
  51899. form: "werewolf"
  51900. },
  51901. ],
  51902. {
  51903. "borzoi": {
  51904. name: "Borzoi",
  51905. default: true
  51906. },
  51907. "werewolf": {
  51908. name: "Werewolf",
  51909. },
  51910. }
  51911. ))
  51912. characterMakers.push(() => makeCharacter(
  51913. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  51914. {
  51915. front: {
  51916. height: math.unit(8 + 7/12, "feet"),
  51917. weight: math.unit(482, "lb"),
  51918. name: "Front",
  51919. image: {
  51920. source: "./media/characters/kit/front.svg",
  51921. extra: 1247/1103,
  51922. bottom: 41/1288
  51923. }
  51924. },
  51925. back: {
  51926. height: math.unit(8 + 7/12, "feet"),
  51927. weight: math.unit(482, "lb"),
  51928. name: "Back",
  51929. image: {
  51930. source: "./media/characters/kit/back.svg",
  51931. extra: 1252/1123,
  51932. bottom: 21/1273
  51933. }
  51934. },
  51935. paw: {
  51936. height: math.unit(1.46, "feet"),
  51937. name: "Paw",
  51938. image: {
  51939. source: "./media/characters/kit/paw.svg"
  51940. }
  51941. },
  51942. },
  51943. [
  51944. {
  51945. name: "Normal",
  51946. height: math.unit(2.61, "meters"),
  51947. default: true
  51948. },
  51949. {
  51950. name: "\"Tall\"",
  51951. height: math.unit(8.21, "meters")
  51952. },
  51953. {
  51954. name: "Tall",
  51955. height: math.unit(19.6, "meters")
  51956. },
  51957. {
  51958. name: "Very Tall",
  51959. height: math.unit(57.91, "meters")
  51960. },
  51961. {
  51962. name: "Semi-Macro",
  51963. height: math.unit(138.64, "meters")
  51964. },
  51965. {
  51966. name: "Macro",
  51967. height: math.unit(831.99, "meters")
  51968. },
  51969. {
  51970. name: "EX-Macro",
  51971. height: math.unit(96451121, "meters")
  51972. },
  51973. {
  51974. name: "S1-Omnipotent",
  51975. height: math.unit(4.42074e+9, "meters")
  51976. },
  51977. {
  51978. name: "S2-Omnipotent",
  51979. height: math.unit(9.42074e+17, "meters")
  51980. },
  51981. {
  51982. name: "Omnipotent",
  51983. height: math.unit(4.23112e+24, "meters")
  51984. },
  51985. {
  51986. name: "Hypergod",
  51987. height: math.unit(5.05176e+27, "meters")
  51988. },
  51989. {
  51990. name: "Hypergod-EX",
  51991. height: math.unit(9.45532e+49, "meters")
  51992. },
  51993. {
  51994. name: "Hypergod-SP",
  51995. height: math.unit(9.45532e+195, "meters")
  51996. },
  51997. ]
  51998. ))
  51999. characterMakers.push(() => makeCharacter(
  52000. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52001. {
  52002. side: {
  52003. height: math.unit(0.6, "meters"),
  52004. weight: math.unit(24, "kg"),
  52005. name: "Side",
  52006. image: {
  52007. source: "./media/characters/celeste/side.svg",
  52008. extra: 810/517,
  52009. bottom: 53/863
  52010. }
  52011. },
  52012. },
  52013. [
  52014. {
  52015. name: "Velociraptor",
  52016. height: math.unit(0.6, "meters"),
  52017. default: true
  52018. },
  52019. {
  52020. name: "Utahraptor",
  52021. height: math.unit(1.8, "meters")
  52022. },
  52023. {
  52024. name: "Gallimimus",
  52025. height: math.unit(4.0, "meters")
  52026. },
  52027. {
  52028. name: "Large",
  52029. height: math.unit(20, "meters")
  52030. },
  52031. {
  52032. name: "Planetary",
  52033. height: math.unit(50, "megameters")
  52034. },
  52035. {
  52036. name: "Stellar",
  52037. height: math.unit(1.5, "gigameters")
  52038. },
  52039. {
  52040. name: "Galactic",
  52041. height: math.unit(100, "exameters")
  52042. },
  52043. ]
  52044. ))
  52045. characterMakers.push(() => makeCharacter(
  52046. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52047. {
  52048. front: {
  52049. height: math.unit(6, "feet"),
  52050. weight: math.unit(210, "lb"),
  52051. name: "Front",
  52052. image: {
  52053. source: "./media/characters/glacia/front.svg",
  52054. extra: 958/901,
  52055. bottom: 45/1003
  52056. }
  52057. },
  52058. },
  52059. [
  52060. {
  52061. name: "Macro",
  52062. height: math.unit(1000, "meters"),
  52063. default: true
  52064. },
  52065. ]
  52066. ))
  52067. characterMakers.push(() => makeCharacter(
  52068. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52069. {
  52070. front: {
  52071. height: math.unit(4, "meters"),
  52072. name: "Front",
  52073. image: {
  52074. source: "./media/characters/giri/front.svg",
  52075. extra: 966/894,
  52076. bottom: 21/987
  52077. }
  52078. },
  52079. },
  52080. [
  52081. {
  52082. name: "Normal",
  52083. height: math.unit(4, "meters"),
  52084. default: true
  52085. },
  52086. ]
  52087. ))
  52088. characterMakers.push(() => makeCharacter(
  52089. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52090. {
  52091. back: {
  52092. height: math.unit(4, "feet"),
  52093. weight: math.unit(37, "lb"),
  52094. name: "Back",
  52095. image: {
  52096. source: "./media/characters/tin/back.svg",
  52097. extra: 845/780,
  52098. bottom: 28/873
  52099. }
  52100. },
  52101. },
  52102. [
  52103. {
  52104. name: "Normal",
  52105. height: math.unit(4, "feet"),
  52106. default: true
  52107. },
  52108. ]
  52109. ))
  52110. characterMakers.push(() => makeCharacter(
  52111. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52112. {
  52113. front: {
  52114. height: math.unit(25, "feet"),
  52115. name: "Front",
  52116. image: {
  52117. source: "./media/characters/cadenza-vivace/front.svg",
  52118. extra: 1842/1578,
  52119. bottom: 30/1872
  52120. }
  52121. },
  52122. },
  52123. [
  52124. {
  52125. name: "Macro",
  52126. height: math.unit(25, "feet"),
  52127. default: true
  52128. },
  52129. ]
  52130. ))
  52131. characterMakers.push(() => makeCharacter(
  52132. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52133. {
  52134. front: {
  52135. height: math.unit(10, "feet"),
  52136. weight: math.unit(625, "kg"),
  52137. name: "Front",
  52138. image: {
  52139. source: "./media/characters/zain/front.svg",
  52140. extra: 1682/1498,
  52141. bottom: 223/1905
  52142. }
  52143. },
  52144. back: {
  52145. height: math.unit(10, "feet"),
  52146. weight: math.unit(625, "kg"),
  52147. name: "Back",
  52148. image: {
  52149. source: "./media/characters/zain/back.svg",
  52150. extra: 1814/1657,
  52151. bottom: 152/1966
  52152. }
  52153. },
  52154. head: {
  52155. height: math.unit(10, "feet"),
  52156. weight: math.unit(625, "kg"),
  52157. name: "Head",
  52158. image: {
  52159. source: "./media/characters/zain/head.svg",
  52160. extra: 1059/762,
  52161. bottom: 0/1059
  52162. }
  52163. },
  52164. },
  52165. [
  52166. {
  52167. name: "Normal",
  52168. height: math.unit(10, "feet"),
  52169. default: true
  52170. },
  52171. ]
  52172. ))
  52173. characterMakers.push(() => makeCharacter(
  52174. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52175. {
  52176. front: {
  52177. height: math.unit(6 + 5/12, "feet"),
  52178. weight: math.unit(750, "lb"),
  52179. name: "Front",
  52180. image: {
  52181. source: "./media/characters/ruchex/front.svg",
  52182. extra: 877/820,
  52183. bottom: 17/894
  52184. },
  52185. extraAttributes: {
  52186. "width": {
  52187. name: "Width",
  52188. power: 1,
  52189. type: "length",
  52190. base: math.unit(4.757, "feet")
  52191. },
  52192. }
  52193. },
  52194. },
  52195. [
  52196. {
  52197. name: "Normal",
  52198. height: math.unit(6 + 5/12, "feet"),
  52199. default: true
  52200. },
  52201. ]
  52202. ))
  52203. characterMakers.push(() => makeCharacter(
  52204. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52205. {
  52206. dressedFront: {
  52207. height: math.unit(191, "cm"),
  52208. weight: math.unit(80, "kg"),
  52209. name: "Front",
  52210. image: {
  52211. source: "./media/characters/buster/dressed-front.svg",
  52212. extra: 1022/973,
  52213. bottom: 69/1091
  52214. }
  52215. },
  52216. dressedBack: {
  52217. height: math.unit(191, "cm"),
  52218. weight: math.unit(80, "kg"),
  52219. name: "Back",
  52220. image: {
  52221. source: "./media/characters/buster/dressed-back.svg",
  52222. extra: 1018/970,
  52223. bottom: 55/1073
  52224. }
  52225. },
  52226. nudeFront: {
  52227. height: math.unit(191, "cm"),
  52228. weight: math.unit(80, "kg"),
  52229. name: "Front (Nude)",
  52230. image: {
  52231. source: "./media/characters/buster/nude-front.svg",
  52232. extra: 1022/973,
  52233. bottom: 69/1091
  52234. }
  52235. },
  52236. nudeBack: {
  52237. height: math.unit(191, "cm"),
  52238. weight: math.unit(80, "kg"),
  52239. name: "Back (Nude)",
  52240. image: {
  52241. source: "./media/characters/buster/nude-back.svg",
  52242. extra: 1018/970,
  52243. bottom: 55/1073
  52244. }
  52245. },
  52246. dick: {
  52247. height: math.unit(2.59, "feet"),
  52248. name: "Dick",
  52249. image: {
  52250. source: "./media/characters/buster/dick.svg"
  52251. }
  52252. },
  52253. ass: {
  52254. height: math.unit(1.2, "feet"),
  52255. name: "Ass",
  52256. image: {
  52257. source: "./media/characters/buster/ass.svg"
  52258. }
  52259. },
  52260. },
  52261. [
  52262. {
  52263. name: "Normal",
  52264. height: math.unit(191, "cm"),
  52265. default: true
  52266. },
  52267. ]
  52268. ))
  52269. characterMakers.push(() => makeCharacter(
  52270. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52271. {
  52272. side: {
  52273. height: math.unit(8.1, "feet"),
  52274. weight: math.unit(3500, "lb"),
  52275. name: "Side",
  52276. image: {
  52277. source: "./media/characters/sonya/side.svg",
  52278. extra: 1730/1317,
  52279. bottom: 86/1816
  52280. }
  52281. },
  52282. },
  52283. [
  52284. {
  52285. name: "Normal",
  52286. height: math.unit(8.1, "feet"),
  52287. default: true
  52288. },
  52289. ]
  52290. ))
  52291. characterMakers.push(() => makeCharacter(
  52292. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52293. {
  52294. front: {
  52295. height: math.unit(6, "feet"),
  52296. weight: math.unit(150, "lb"),
  52297. name: "Front",
  52298. image: {
  52299. source: "./media/characters/cadence-andrysiak/front.svg",
  52300. extra: 1164/1121,
  52301. bottom: 60/1224
  52302. }
  52303. },
  52304. back: {
  52305. height: math.unit(6, "feet"),
  52306. weight: math.unit(150, "lb"),
  52307. name: "Back",
  52308. image: {
  52309. source: "./media/characters/cadence-andrysiak/back.svg",
  52310. extra: 1200/1165,
  52311. bottom: 9/1209
  52312. }
  52313. },
  52314. dressed: {
  52315. height: math.unit(6, "feet"),
  52316. weight: math.unit(150, "lb"),
  52317. name: "Dressed",
  52318. image: {
  52319. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52320. extra: 1164/1121,
  52321. bottom: 60/1224
  52322. }
  52323. },
  52324. },
  52325. [
  52326. {
  52327. name: "Micro",
  52328. height: math.unit(1, "mm")
  52329. },
  52330. {
  52331. name: "Normal",
  52332. height: math.unit(6, "feet"),
  52333. default: true
  52334. },
  52335. ]
  52336. ))
  52337. characterMakers.push(() => makeCharacter(
  52338. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52339. {
  52340. front: {
  52341. height: math.unit(60, "inches"),
  52342. weight: math.unit(16, "lb"),
  52343. preyCapacity: math.unit(80, "liters"),
  52344. name: "Front",
  52345. image: {
  52346. source: "./media/characters/penny-lynx/front.svg",
  52347. extra: 1959/1769,
  52348. bottom: 49/2008
  52349. }
  52350. },
  52351. },
  52352. [
  52353. {
  52354. name: "Nokia",
  52355. height: math.unit(2, "inches")
  52356. },
  52357. {
  52358. name: "Desktop",
  52359. height: math.unit(24, "inches")
  52360. },
  52361. {
  52362. name: "TV",
  52363. height: math.unit(60, "inches")
  52364. },
  52365. {
  52366. name: "Jumbotron",
  52367. height: math.unit(12, "feet")
  52368. },
  52369. {
  52370. name: "Billboard",
  52371. height: math.unit(48, "feet"),
  52372. default: true
  52373. },
  52374. {
  52375. name: "IMAX",
  52376. height: math.unit(96, "feet")
  52377. },
  52378. {
  52379. name: "SINGULARITY",
  52380. height: math.unit(864938, "miles")
  52381. },
  52382. ]
  52383. ))
  52384. characterMakers.push(() => makeCharacter(
  52385. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52386. {
  52387. front: {
  52388. height: math.unit(5 + 4/12, "feet"),
  52389. weight: math.unit(230, "lb"),
  52390. name: "Front",
  52391. image: {
  52392. source: "./media/characters/sukebe/front.svg",
  52393. extra: 2130/2038,
  52394. bottom: 90/2220
  52395. }
  52396. },
  52397. back: {
  52398. height: math.unit(3.48, "feet"),
  52399. weight: math.unit(230, "lb"),
  52400. name: "Back",
  52401. image: {
  52402. source: "./media/characters/sukebe/back.svg",
  52403. extra: 1670/1604,
  52404. bottom: 0/1670
  52405. }
  52406. },
  52407. },
  52408. [
  52409. {
  52410. name: "Normal",
  52411. height: math.unit(5 + 4/12, "feet"),
  52412. default: true
  52413. },
  52414. ]
  52415. ))
  52416. characterMakers.push(() => makeCharacter(
  52417. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52418. {
  52419. front: {
  52420. height: math.unit(6, "feet"),
  52421. name: "Front",
  52422. image: {
  52423. source: "./media/characters/nylla/front.svg",
  52424. extra: 1868/1699,
  52425. bottom: 97/1965
  52426. }
  52427. },
  52428. back: {
  52429. height: math.unit(6, "feet"),
  52430. name: "Back",
  52431. image: {
  52432. source: "./media/characters/nylla/back.svg",
  52433. extra: 1889/1712,
  52434. bottom: 93/1982
  52435. }
  52436. },
  52437. frontNsfw: {
  52438. height: math.unit(6, "feet"),
  52439. name: "Front (NSFW)",
  52440. image: {
  52441. source: "./media/characters/nylla/front-nsfw.svg",
  52442. extra: 1868/1699,
  52443. bottom: 97/1965
  52444. },
  52445. extraAttributes: {
  52446. "dickLength": {
  52447. name: "Dick Length",
  52448. power: 1,
  52449. type: "length",
  52450. base: math.unit(1.4, "feet")
  52451. },
  52452. "cumVolume": {
  52453. name: "Cum Volume",
  52454. power: 3,
  52455. type: "volume",
  52456. base: math.unit(100, "mL")
  52457. },
  52458. }
  52459. },
  52460. backNsfw: {
  52461. height: math.unit(6, "feet"),
  52462. name: "Back (NSFW)",
  52463. image: {
  52464. source: "./media/characters/nylla/back-nsfw.svg",
  52465. extra: 1889/1712,
  52466. bottom: 93/1982
  52467. }
  52468. },
  52469. maw: {
  52470. height: math.unit(2.10, "feet"),
  52471. name: "Maw",
  52472. image: {
  52473. source: "./media/characters/nylla/maw.svg"
  52474. }
  52475. },
  52476. paws: {
  52477. height: math.unit(2.06, "feet"),
  52478. name: "Paws",
  52479. image: {
  52480. source: "./media/characters/nylla/paws.svg"
  52481. }
  52482. },
  52483. muzzle: {
  52484. height: math.unit(0.61, "feet"),
  52485. name: "Muzzle",
  52486. image: {
  52487. source: "./media/characters/nylla/muzzle.svg"
  52488. }
  52489. },
  52490. sheath: {
  52491. height: math.unit(1.305, "feet"),
  52492. name: "Sheath",
  52493. image: {
  52494. source: "./media/characters/nylla/sheath.svg"
  52495. }
  52496. },
  52497. },
  52498. [
  52499. {
  52500. name: "Micro",
  52501. height: math.unit(7.5, "inches")
  52502. },
  52503. {
  52504. name: "Normal",
  52505. height: math.unit(7, "feet"),
  52506. default: true
  52507. },
  52508. {
  52509. name: "Macro",
  52510. height: math.unit(60, "feet")
  52511. },
  52512. {
  52513. name: "Mega",
  52514. height: math.unit(200, "feet")
  52515. },
  52516. ]
  52517. ))
  52518. characterMakers.push(() => makeCharacter(
  52519. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52520. {
  52521. front: {
  52522. height: math.unit(10, "feet"),
  52523. weight: math.unit(2300, "lb"),
  52524. name: "Front",
  52525. image: {
  52526. source: "./media/characters/hunt3r/front.svg",
  52527. extra: 1909/1742,
  52528. bottom: 46/1955
  52529. }
  52530. },
  52531. },
  52532. [
  52533. {
  52534. name: "Normal",
  52535. height: math.unit(10, "feet"),
  52536. default: true
  52537. },
  52538. ]
  52539. ))
  52540. characterMakers.push(() => makeCharacter(
  52541. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52542. {
  52543. dressed: {
  52544. height: math.unit(11, "feet"),
  52545. weight: math.unit(18500, "lb"),
  52546. preyCapacity: math.unit(9, "people"),
  52547. name: "Dressed",
  52548. image: {
  52549. source: "./media/characters/cylphis/dressed.svg",
  52550. extra: 1028/1003,
  52551. bottom: 75/1103
  52552. },
  52553. },
  52554. undressed: {
  52555. height: math.unit(11, "feet"),
  52556. weight: math.unit(18500, "lb"),
  52557. preyCapacity: math.unit(9, "people"),
  52558. name: "Undressed",
  52559. image: {
  52560. source: "./media/characters/cylphis/undressed.svg",
  52561. extra: 1028/1003,
  52562. bottom: 75/1103
  52563. }
  52564. },
  52565. full: {
  52566. height: math.unit(11, "feet"),
  52567. weight: math.unit(18500 + 150*9, "lb"),
  52568. preyCapacity: math.unit(9, "people"),
  52569. name: "Full",
  52570. image: {
  52571. source: "./media/characters/cylphis/full.svg",
  52572. extra: 1028/1003,
  52573. bottom: 75/1103
  52574. }
  52575. },
  52576. },
  52577. [
  52578. {
  52579. name: "Small",
  52580. height: math.unit(8, "feet")
  52581. },
  52582. {
  52583. name: "Normal",
  52584. height: math.unit(11, "feet"),
  52585. default: true
  52586. },
  52587. ]
  52588. ))
  52589. characterMakers.push(() => makeCharacter(
  52590. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52591. {
  52592. front: {
  52593. height: math.unit(2 + 7/12, "feet"),
  52594. name: "Front",
  52595. image: {
  52596. source: "./media/characters/orishan/front.svg",
  52597. extra: 1058/1023,
  52598. bottom: 23/1081
  52599. }
  52600. },
  52601. back: {
  52602. height: math.unit(2 + 7/12, "feet"),
  52603. name: "Back",
  52604. image: {
  52605. source: "./media/characters/orishan/back.svg",
  52606. extra: 1058/1023,
  52607. bottom: 23/1081
  52608. }
  52609. },
  52610. },
  52611. [
  52612. {
  52613. name: "Micro",
  52614. height: math.unit(2, "cm")
  52615. },
  52616. {
  52617. name: "Normal",
  52618. height: math.unit(2 + 7/12, "feet"),
  52619. default: true
  52620. },
  52621. ]
  52622. ))
  52623. characterMakers.push(() => makeCharacter(
  52624. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52625. {
  52626. front: {
  52627. height: math.unit(3, "meters"),
  52628. weight: math.unit(508, "kg"),
  52629. name: "Front",
  52630. image: {
  52631. source: "./media/characters/seranis/front.svg",
  52632. extra: 1478/1454,
  52633. bottom: 41/1519
  52634. }
  52635. },
  52636. },
  52637. [
  52638. {
  52639. name: "Normal",
  52640. height: math.unit(3, "meters"),
  52641. default: true
  52642. },
  52643. {
  52644. name: "Macro",
  52645. height: math.unit(108, "meters")
  52646. },
  52647. {
  52648. name: "Megamacro",
  52649. height: math.unit(1250, "meters")
  52650. },
  52651. ]
  52652. ))
  52653. characterMakers.push(() => makeCharacter(
  52654. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52655. {
  52656. undressed: {
  52657. height: math.unit(5 + 3/12, "feet"),
  52658. name: "Undressed",
  52659. image: {
  52660. source: "./media/characters/ankou/undressed.svg",
  52661. extra: 1301/1213,
  52662. bottom: 87/1388
  52663. }
  52664. },
  52665. dressed: {
  52666. height: math.unit(5 + 3/12, "feet"),
  52667. name: "Dressed",
  52668. image: {
  52669. source: "./media/characters/ankou/dressed.svg",
  52670. extra: 1301/1213,
  52671. bottom: 87/1388
  52672. }
  52673. },
  52674. head: {
  52675. height: math.unit(1.61, "feet"),
  52676. name: "Head",
  52677. image: {
  52678. source: "./media/characters/ankou/head.svg"
  52679. }
  52680. },
  52681. },
  52682. [
  52683. {
  52684. name: "Normal",
  52685. height: math.unit(5 + 3/12, "feet"),
  52686. default: true
  52687. },
  52688. ]
  52689. ))
  52690. characterMakers.push(() => makeCharacter(
  52691. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52692. {
  52693. side: {
  52694. height: math.unit(6 + 3/12, "feet"),
  52695. weight: math.unit(200, "kg"),
  52696. name: "Side",
  52697. image: {
  52698. source: "./media/characters/juniper-skunktaur/side.svg",
  52699. extra: 1574/1229,
  52700. bottom: 38/1612
  52701. }
  52702. },
  52703. front: {
  52704. height: math.unit(6 + 3/12, "feet"),
  52705. weight: math.unit(200, "kg"),
  52706. name: "Front",
  52707. image: {
  52708. source: "./media/characters/juniper-skunktaur/front.svg",
  52709. extra: 1337/1278,
  52710. bottom: 22/1359
  52711. }
  52712. },
  52713. back: {
  52714. height: math.unit(6 + 3/12, "feet"),
  52715. weight: math.unit(200, "kg"),
  52716. name: "Back",
  52717. image: {
  52718. source: "./media/characters/juniper-skunktaur/back.svg",
  52719. extra: 1618/1273,
  52720. bottom: 13/1631
  52721. }
  52722. },
  52723. top: {
  52724. height: math.unit(2.62, "feet"),
  52725. weight: math.unit(200, "kg"),
  52726. name: "Top",
  52727. image: {
  52728. source: "./media/characters/juniper-skunktaur/top.svg"
  52729. }
  52730. },
  52731. },
  52732. [
  52733. {
  52734. name: "Normal",
  52735. height: math.unit(6 + 3/12, "feet"),
  52736. default: true
  52737. },
  52738. ]
  52739. ))
  52740. characterMakers.push(() => makeCharacter(
  52741. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52742. {
  52743. front: {
  52744. height: math.unit(20.5, "feet"),
  52745. name: "Front",
  52746. image: {
  52747. source: "./media/characters/rei/front.svg",
  52748. extra: 1349/1195,
  52749. bottom: 31/1380
  52750. }
  52751. },
  52752. back: {
  52753. height: math.unit(20.5, "feet"),
  52754. name: "Back",
  52755. image: {
  52756. source: "./media/characters/rei/back.svg",
  52757. extra: 1358/1204,
  52758. bottom: 22/1380
  52759. }
  52760. },
  52761. pawsDigi: {
  52762. height: math.unit(3.45, "feet"),
  52763. name: "Paws (Digi)",
  52764. image: {
  52765. source: "./media/characters/rei/paws-digi.svg"
  52766. }
  52767. },
  52768. pawsPlanti: {
  52769. height: math.unit(3.45, "feet"),
  52770. name: "Paws (Planti)",
  52771. image: {
  52772. source: "./media/characters/rei/paws-planti.svg"
  52773. }
  52774. },
  52775. },
  52776. [
  52777. {
  52778. name: "Normal",
  52779. height: math.unit(20.5, "feet"),
  52780. default: true
  52781. },
  52782. ]
  52783. ))
  52784. characterMakers.push(() => makeCharacter(
  52785. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52786. {
  52787. front: {
  52788. height: math.unit(5 + 11/12, "feet"),
  52789. name: "Front",
  52790. image: {
  52791. source: "./media/characters/carina/front.svg",
  52792. extra: 1720/1449,
  52793. bottom: 14/1734
  52794. }
  52795. },
  52796. back: {
  52797. height: math.unit(5 + 11/12, "feet"),
  52798. name: "Back",
  52799. image: {
  52800. source: "./media/characters/carina/back.svg",
  52801. extra: 1493/1445,
  52802. bottom: 17/1510
  52803. }
  52804. },
  52805. paw: {
  52806. height: math.unit(0.92, "feet"),
  52807. name: "Paw",
  52808. image: {
  52809. source: "./media/characters/carina/paw.svg"
  52810. }
  52811. },
  52812. },
  52813. [
  52814. {
  52815. name: "Normal",
  52816. height: math.unit(5 + 11/12, "feet"),
  52817. default: true
  52818. },
  52819. ]
  52820. ))
  52821. characterMakers.push(() => makeCharacter(
  52822. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52823. {
  52824. normal_front: {
  52825. height: math.unit(4.88, "meters"),
  52826. name: "Front",
  52827. image: {
  52828. source: "./media/characters/maya/normal-front.svg",
  52829. extra: 1222/1145,
  52830. bottom: 57/1279
  52831. },
  52832. form: "normal",
  52833. default: true
  52834. },
  52835. monstrous_front: {
  52836. height: math.unit(10, "meters"),
  52837. name: "Front",
  52838. image: {
  52839. source: "./media/characters/maya/monstrous-front.svg",
  52840. extra: 1523/1109,
  52841. bottom: 113/1636
  52842. },
  52843. form: "monstrous",
  52844. extraAttributes: {
  52845. "swallowSize": {
  52846. name: "Tailmaw Bite Size",
  52847. power: 3,
  52848. type: "volume",
  52849. base: math.unit(43000, "liters")
  52850. },
  52851. }
  52852. },
  52853. taur_front: {
  52854. height: math.unit(10, "meters"),
  52855. name: "Front",
  52856. image: {
  52857. source: "./media/characters/maya/taur-front.svg",
  52858. extra: 743/506,
  52859. bottom: 101/844
  52860. },
  52861. form: "taur",
  52862. },
  52863. },
  52864. [
  52865. {
  52866. name: "Normal",
  52867. height: math.unit(4.88, "meters"),
  52868. default: true,
  52869. form: "normal"
  52870. },
  52871. {
  52872. name: "Macro",
  52873. height: math.unit(38.1, "meters"),
  52874. form: "normal"
  52875. },
  52876. {
  52877. name: "Macro+",
  52878. height: math.unit(152.4, "meters"),
  52879. form: "normal"
  52880. },
  52881. {
  52882. name: "Macro++",
  52883. height: math.unit(16.09, "km"),
  52884. form: "normal"
  52885. },
  52886. {
  52887. name: "Mega-macro",
  52888. height: math.unit(700, "megameters"),
  52889. form: "normal"
  52890. },
  52891. {
  52892. name: "Satiated",
  52893. height: math.unit(10, "meters"),
  52894. default: true,
  52895. form: "monstrous"
  52896. },
  52897. {
  52898. name: "Hungry",
  52899. height: math.unit(75, "meters"),
  52900. form: "monstrous"
  52901. },
  52902. {
  52903. name: "Ravenous",
  52904. height: math.unit(500, "meters"),
  52905. form: "monstrous"
  52906. },
  52907. {
  52908. name: "\"Normal\"",
  52909. height: math.unit(10, "meters"),
  52910. form: "taur"
  52911. },
  52912. {
  52913. name: "Macro",
  52914. height: math.unit(50, "meters"),
  52915. form: "taur"
  52916. },
  52917. ],
  52918. {
  52919. "normal": {
  52920. name: "Normal",
  52921. default: true
  52922. },
  52923. "monstrous": {
  52924. name: "Monstrous",
  52925. },
  52926. "taur": {
  52927. name: "Taur",
  52928. },
  52929. }
  52930. ))
  52931. characterMakers.push(() => makeCharacter(
  52932. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  52933. {
  52934. front: {
  52935. height: math.unit(6 + 2/12, "feet"),
  52936. weight: math.unit(500, "lb"),
  52937. preyCapacity: math.unit(4, "people"),
  52938. name: "Front",
  52939. image: {
  52940. source: "./media/characters/yepir/front.svg"
  52941. }
  52942. },
  52943. side: {
  52944. height: math.unit(6 + 2/12, "feet"),
  52945. weight: math.unit(500, "lb"),
  52946. preyCapacity: math.unit(4, "people"),
  52947. name: "Side",
  52948. image: {
  52949. source: "./media/characters/yepir/side.svg"
  52950. }
  52951. },
  52952. paw: {
  52953. height: math.unit(1.05, "feet"),
  52954. name: "Paw",
  52955. image: {
  52956. source: "./media/characters/yepir/paw.svg"
  52957. }
  52958. },
  52959. },
  52960. [
  52961. {
  52962. name: "Normal",
  52963. height: math.unit(6 + 2/12, "feet"),
  52964. default: true
  52965. },
  52966. ]
  52967. ))
  52968. characterMakers.push(() => makeCharacter(
  52969. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  52970. {
  52971. front: {
  52972. height: math.unit(5 + 4/12, "feet"),
  52973. name: "Front",
  52974. image: {
  52975. source: "./media/characters/russec/front.svg",
  52976. extra: 1926/1626,
  52977. bottom: 72/1998
  52978. }
  52979. },
  52980. back: {
  52981. height: math.unit(5 + 4/12, "feet"),
  52982. name: "Back",
  52983. image: {
  52984. source: "./media/characters/russec/back.svg",
  52985. extra: 1910/1591,
  52986. bottom: 48/1958
  52987. }
  52988. },
  52989. },
  52990. [
  52991. {
  52992. name: "Small",
  52993. height: math.unit(5 + 4/12, "feet")
  52994. },
  52995. {
  52996. name: "Normal",
  52997. height: math.unit(72, "feet"),
  52998. default: true
  52999. },
  53000. ]
  53001. ))
  53002. characterMakers.push(() => makeCharacter(
  53003. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53004. {
  53005. side: {
  53006. height: math.unit(12, "feet"),
  53007. name: "Side",
  53008. image: {
  53009. source: "./media/characters/cianus/side.svg",
  53010. extra: 808/526,
  53011. bottom: 61/869
  53012. }
  53013. },
  53014. },
  53015. [
  53016. {
  53017. name: "Normal",
  53018. height: math.unit(12, "feet"),
  53019. default: true
  53020. },
  53021. ]
  53022. ))
  53023. characterMakers.push(() => makeCharacter(
  53024. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53025. {
  53026. front: {
  53027. height: math.unit(9 + 6/12, "feet"),
  53028. weight: math.unit(300, "lb"),
  53029. name: "Front",
  53030. image: {
  53031. source: "./media/characters/ahab/front.svg",
  53032. extra: 1897/1868,
  53033. bottom: 121/2018
  53034. }
  53035. },
  53036. frontNsfw: {
  53037. height: math.unit(9 + 6/12, "feet"),
  53038. weight: math.unit(300, "lb"),
  53039. name: "Front-nsfw",
  53040. image: {
  53041. source: "./media/characters/ahab/front-nsfw.svg",
  53042. extra: 1897/1868,
  53043. bottom: 121/2018
  53044. }
  53045. },
  53046. },
  53047. [
  53048. {
  53049. name: "Normal",
  53050. height: math.unit(9 + 6/12, "feet")
  53051. },
  53052. {
  53053. name: "Macro",
  53054. height: math.unit(657, "feet"),
  53055. default: true
  53056. },
  53057. ]
  53058. ))
  53059. characterMakers.push(() => makeCharacter(
  53060. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53061. {
  53062. front: {
  53063. height: math.unit(2.69, "meters"),
  53064. weight: math.unit(132, "kg"),
  53065. name: "Front",
  53066. image: {
  53067. source: "./media/characters/aarkus/front.svg",
  53068. extra: 1400/1231,
  53069. bottom: 34/1434
  53070. }
  53071. },
  53072. back: {
  53073. height: math.unit(2.69, "meters"),
  53074. weight: math.unit(132, "kg"),
  53075. name: "Back",
  53076. image: {
  53077. source: "./media/characters/aarkus/back.svg",
  53078. extra: 1381/1218,
  53079. bottom: 30/1411
  53080. }
  53081. },
  53082. frontNsfw: {
  53083. height: math.unit(2.69, "meters"),
  53084. weight: math.unit(132, "kg"),
  53085. name: "Front (NSFW)",
  53086. image: {
  53087. source: "./media/characters/aarkus/front-nsfw.svg",
  53088. extra: 1400/1231,
  53089. bottom: 34/1434
  53090. }
  53091. },
  53092. foot: {
  53093. height: math.unit(1.45, "feet"),
  53094. name: "Foot",
  53095. image: {
  53096. source: "./media/characters/aarkus/foot.svg"
  53097. }
  53098. },
  53099. head: {
  53100. height: math.unit(2.85, "feet"),
  53101. name: "Head",
  53102. image: {
  53103. source: "./media/characters/aarkus/head.svg"
  53104. }
  53105. },
  53106. headAlt: {
  53107. height: math.unit(3.07, "feet"),
  53108. name: "Head (Alt)",
  53109. image: {
  53110. source: "./media/characters/aarkus/head-alt.svg"
  53111. }
  53112. },
  53113. mouth: {
  53114. height: math.unit(1.25, "feet"),
  53115. name: "Mouth",
  53116. image: {
  53117. source: "./media/characters/aarkus/mouth.svg"
  53118. }
  53119. },
  53120. dick: {
  53121. height: math.unit(1.77, "feet"),
  53122. name: "Dick",
  53123. image: {
  53124. source: "./media/characters/aarkus/dick.svg"
  53125. }
  53126. },
  53127. },
  53128. [
  53129. {
  53130. name: "Normal",
  53131. height: math.unit(2.69, "meters"),
  53132. default: true
  53133. },
  53134. {
  53135. name: "Macro",
  53136. height: math.unit(269, "meters")
  53137. },
  53138. {
  53139. name: "Macro+",
  53140. height: math.unit(672.5, "meters")
  53141. },
  53142. {
  53143. name: "Megamacro",
  53144. height: math.unit(2.017, "km")
  53145. },
  53146. ]
  53147. ))
  53148. characterMakers.push(() => makeCharacter(
  53149. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53150. {
  53151. front: {
  53152. height: math.unit(23.47, "cm"),
  53153. weight: math.unit(600, "grams"),
  53154. name: "Front",
  53155. image: {
  53156. source: "./media/characters/diode/front.svg",
  53157. extra: 1778/1396,
  53158. bottom: 95/1873
  53159. }
  53160. },
  53161. side: {
  53162. height: math.unit(23.47, "cm"),
  53163. weight: math.unit(600, "grams"),
  53164. name: "Side",
  53165. image: {
  53166. source: "./media/characters/diode/side.svg",
  53167. extra: 1831/1404,
  53168. bottom: 86/1917
  53169. }
  53170. },
  53171. wings: {
  53172. height: math.unit(0.683, "feet"),
  53173. name: "Wings",
  53174. image: {
  53175. source: "./media/characters/diode/wings.svg"
  53176. }
  53177. },
  53178. },
  53179. [
  53180. {
  53181. name: "Normal",
  53182. height: math.unit(23.47, "cm"),
  53183. default: true
  53184. },
  53185. ]
  53186. ))
  53187. characterMakers.push(() => makeCharacter(
  53188. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53189. {
  53190. front: {
  53191. height: math.unit(6 + 3/12, "feet"),
  53192. weight: math.unit(250, "lb"),
  53193. name: "Front",
  53194. image: {
  53195. source: "./media/characters/reika/front.svg",
  53196. extra: 1120/1078,
  53197. bottom: 86/1206
  53198. }
  53199. },
  53200. },
  53201. [
  53202. {
  53203. name: "Normal",
  53204. height: math.unit(6 + 3/12, "feet"),
  53205. default: true
  53206. },
  53207. ]
  53208. ))
  53209. characterMakers.push(() => makeCharacter(
  53210. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53211. {
  53212. front: {
  53213. height: math.unit(16 + 8/12, "feet"),
  53214. weight: math.unit(9000, "lb"),
  53215. name: "Front",
  53216. image: {
  53217. source: "./media/characters/lokuto-takama/front.svg",
  53218. extra: 1774/1632,
  53219. bottom: 147/1921
  53220. },
  53221. extraAttributes: {
  53222. "bustWidth": {
  53223. name: "Bust Width",
  53224. power: 1,
  53225. type: "length",
  53226. base: math.unit(2.4, "meters")
  53227. },
  53228. "breastWeight": {
  53229. name: "Breast Weight",
  53230. power: 3,
  53231. type: "mass",
  53232. base: math.unit(1000, "kg")
  53233. },
  53234. }
  53235. },
  53236. },
  53237. [
  53238. {
  53239. name: "Normal",
  53240. height: math.unit(16 + 8/12, "feet"),
  53241. default: true
  53242. },
  53243. ]
  53244. ))
  53245. characterMakers.push(() => makeCharacter(
  53246. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53247. {
  53248. front: {
  53249. height: math.unit(10, "cm"),
  53250. weight: math.unit(850, "grams"),
  53251. name: "Front",
  53252. image: {
  53253. source: "./media/characters/owak-bone/front.svg",
  53254. extra: 1965/1801,
  53255. bottom: 31/1996
  53256. }
  53257. },
  53258. },
  53259. [
  53260. {
  53261. name: "Normal",
  53262. height: math.unit(10, "cm"),
  53263. default: true
  53264. },
  53265. ]
  53266. ))
  53267. characterMakers.push(() => makeCharacter(
  53268. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53269. {
  53270. front: {
  53271. height: math.unit(2 + 6/12, "feet"),
  53272. weight: math.unit(9, "lb"),
  53273. name: "Front",
  53274. image: {
  53275. source: "./media/characters/muffin/front.svg",
  53276. extra: 1220/1195,
  53277. bottom: 84/1304
  53278. }
  53279. },
  53280. },
  53281. [
  53282. {
  53283. name: "Normal",
  53284. height: math.unit(2 + 6/12, "feet"),
  53285. default: true
  53286. },
  53287. ]
  53288. ))
  53289. characterMakers.push(() => makeCharacter(
  53290. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53291. {
  53292. front: {
  53293. height: math.unit(7, "feet"),
  53294. name: "Front",
  53295. image: {
  53296. source: "./media/characters/chimera/front.svg",
  53297. extra: 1752/1614,
  53298. bottom: 68/1820
  53299. }
  53300. },
  53301. },
  53302. [
  53303. {
  53304. name: "Normal",
  53305. height: math.unit(7, "feet")
  53306. },
  53307. {
  53308. name: "Gigamacro",
  53309. height: math.unit(2.9, "gigameters"),
  53310. default: true
  53311. },
  53312. {
  53313. name: "Universal",
  53314. height: math.unit(1.56e26, "yottameters")
  53315. },
  53316. ]
  53317. ))
  53318. characterMakers.push(() => makeCharacter(
  53319. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53320. {
  53321. front: {
  53322. height: math.unit(3, "feet"),
  53323. weight: math.unit(20, "lb"),
  53324. name: "Front",
  53325. image: {
  53326. source: "./media/characters/kit-fennec-fox/front.svg",
  53327. extra: 1027/932,
  53328. bottom: 16/1043
  53329. }
  53330. },
  53331. back: {
  53332. height: math.unit(3, "feet"),
  53333. weight: math.unit(20, "lb"),
  53334. name: "Back",
  53335. image: {
  53336. source: "./media/characters/kit-fennec-fox/back.svg",
  53337. extra: 1027/932,
  53338. bottom: 16/1043
  53339. }
  53340. },
  53341. },
  53342. [
  53343. {
  53344. name: "Normal",
  53345. height: math.unit(3, "feet"),
  53346. default: true
  53347. },
  53348. ]
  53349. ))
  53350. characterMakers.push(() => makeCharacter(
  53351. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53352. {
  53353. front: {
  53354. height: math.unit(167, "cm"),
  53355. name: "Front",
  53356. image: {
  53357. source: "./media/characters/blue-otter/front.svg",
  53358. extra: 1951/1920,
  53359. bottom: 31/1982
  53360. }
  53361. },
  53362. },
  53363. [
  53364. {
  53365. name: "Otter-Sized",
  53366. height: math.unit(100, "cm")
  53367. },
  53368. {
  53369. name: "Normal",
  53370. height: math.unit(167, "cm"),
  53371. default: true
  53372. },
  53373. ]
  53374. ))
  53375. characterMakers.push(() => makeCharacter(
  53376. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53377. {
  53378. front: {
  53379. height: math.unit(4 + 4/12, "feet"),
  53380. name: "Front",
  53381. image: {
  53382. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53383. extra: 1072/1067,
  53384. bottom: 117/1189
  53385. }
  53386. },
  53387. back: {
  53388. height: math.unit(4 + 4/12, "feet"),
  53389. name: "Back",
  53390. image: {
  53391. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53392. extra: 1135/1129,
  53393. bottom: 57/1192
  53394. }
  53395. },
  53396. head: {
  53397. height: math.unit(1.77, "feet"),
  53398. name: "Head",
  53399. image: {
  53400. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53401. }
  53402. },
  53403. },
  53404. [
  53405. {
  53406. name: "Normal",
  53407. height: math.unit(4 + 4/12, "feet"),
  53408. default: true
  53409. },
  53410. ]
  53411. ))
  53412. characterMakers.push(() => makeCharacter(
  53413. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53414. {
  53415. front: {
  53416. height: math.unit(2, "inches"),
  53417. name: "Front",
  53418. image: {
  53419. source: "./media/characters/carley-hartford/front.svg",
  53420. extra: 1035/988,
  53421. bottom: 23/1058
  53422. }
  53423. },
  53424. back: {
  53425. height: math.unit(2, "inches"),
  53426. name: "Back",
  53427. image: {
  53428. source: "./media/characters/carley-hartford/back.svg",
  53429. extra: 1035/988,
  53430. bottom: 23/1058
  53431. }
  53432. },
  53433. dressed: {
  53434. height: math.unit(2, "inches"),
  53435. name: "Dressed",
  53436. image: {
  53437. source: "./media/characters/carley-hartford/dressed.svg",
  53438. extra: 651/620,
  53439. bottom: 0/651
  53440. }
  53441. },
  53442. },
  53443. [
  53444. {
  53445. name: "Micro",
  53446. height: math.unit(2, "inches"),
  53447. default: true
  53448. },
  53449. {
  53450. name: "Macro",
  53451. height: math.unit(6 + 3/12, "feet")
  53452. },
  53453. ]
  53454. ))
  53455. characterMakers.push(() => makeCharacter(
  53456. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53457. {
  53458. front: {
  53459. height: math.unit(2 + 3/12, "feet"),
  53460. weight: math.unit(15 + 7/16, "lb"),
  53461. name: "Front",
  53462. image: {
  53463. source: "./media/characters/duke/front.svg",
  53464. extra: 910/815,
  53465. bottom: 30/940
  53466. }
  53467. },
  53468. },
  53469. [
  53470. {
  53471. name: "Normal",
  53472. height: math.unit(2 + 3/12, "feet"),
  53473. default: true
  53474. },
  53475. ]
  53476. ))
  53477. characterMakers.push(() => makeCharacter(
  53478. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53479. {
  53480. front: {
  53481. height: math.unit(5 + 4/12, "feet"),
  53482. weight: math.unit(156, "lb"),
  53483. name: "Front",
  53484. image: {
  53485. source: "./media/characters/dein/front.svg",
  53486. extra: 855/815,
  53487. bottom: 48/903
  53488. }
  53489. },
  53490. side: {
  53491. height: math.unit(5 + 4/12, "feet"),
  53492. weight: math.unit(156, "lb"),
  53493. name: "side",
  53494. image: {
  53495. source: "./media/characters/dein/side.svg",
  53496. extra: 846/803,
  53497. bottom: 25/871
  53498. }
  53499. },
  53500. maw: {
  53501. height: math.unit(1.45, "feet"),
  53502. name: "Maw",
  53503. image: {
  53504. source: "./media/characters/dein/maw.svg"
  53505. }
  53506. },
  53507. },
  53508. [
  53509. {
  53510. name: "Ferret Sized",
  53511. height: math.unit(2 + 5/12, "feet")
  53512. },
  53513. {
  53514. name: "Normal",
  53515. height: math.unit(5 + 4/12, "feet"),
  53516. default: true
  53517. },
  53518. ]
  53519. ))
  53520. characterMakers.push(() => makeCharacter(
  53521. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53522. {
  53523. front: {
  53524. height: math.unit(84 + 8/12, "feet"),
  53525. weight: math.unit(942180, "lb"),
  53526. name: "Front",
  53527. image: {
  53528. source: "./media/characters/daurine-arima/front.svg",
  53529. extra: 1989/1782,
  53530. bottom: 37/2026
  53531. }
  53532. },
  53533. side: {
  53534. height: math.unit(84 + 8/12, "feet"),
  53535. weight: math.unit(942180, "lb"),
  53536. name: "Side",
  53537. image: {
  53538. source: "./media/characters/daurine-arima/side.svg",
  53539. extra: 1997/1790,
  53540. bottom: 21/2018
  53541. }
  53542. },
  53543. back: {
  53544. height: math.unit(84 + 8/12, "feet"),
  53545. weight: math.unit(942180, "lb"),
  53546. name: "Back",
  53547. image: {
  53548. source: "./media/characters/daurine-arima/back.svg",
  53549. extra: 1992/1800,
  53550. bottom: 12/2004
  53551. }
  53552. },
  53553. head: {
  53554. height: math.unit(15.5, "feet"),
  53555. name: "Head",
  53556. image: {
  53557. source: "./media/characters/daurine-arima/head.svg"
  53558. }
  53559. },
  53560. headAlt: {
  53561. height: math.unit(19.19, "feet"),
  53562. name: "Head (Alt)",
  53563. image: {
  53564. source: "./media/characters/daurine-arima/head-alt.svg"
  53565. }
  53566. },
  53567. },
  53568. [
  53569. {
  53570. name: "Minimum height",
  53571. height: math.unit(8 + 10/12, "feet")
  53572. },
  53573. {
  53574. name: "Comfort height",
  53575. height: math.unit(19 + 6 /12, "feet")
  53576. },
  53577. {
  53578. name: "\"Normal\" height",
  53579. height: math.unit(28 + 10/12, "feet")
  53580. },
  53581. {
  53582. name: "Base height",
  53583. height: math.unit(84 + 8/12, "feet"),
  53584. default: true
  53585. },
  53586. {
  53587. name: "Mini-macro",
  53588. height: math.unit(2360, "feet")
  53589. },
  53590. {
  53591. name: "Macro",
  53592. height: math.unit(10, "miles")
  53593. },
  53594. {
  53595. name: "Goddess",
  53596. height: math.unit(9.99e40, "yottameters")
  53597. },
  53598. ]
  53599. ))
  53600. characterMakers.push(() => makeCharacter(
  53601. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53602. {
  53603. front: {
  53604. height: math.unit(2.3, "meters"),
  53605. name: "Front",
  53606. image: {
  53607. source: "./media/characters/cilenomon/front.svg",
  53608. extra: 1963/1778,
  53609. bottom: 54/2017
  53610. }
  53611. },
  53612. },
  53613. [
  53614. {
  53615. name: "Normal",
  53616. height: math.unit(2.3, "meters"),
  53617. default: true
  53618. },
  53619. {
  53620. name: "Big",
  53621. height: math.unit(5, "meters")
  53622. },
  53623. {
  53624. name: "Macro",
  53625. height: math.unit(30, "meters")
  53626. },
  53627. {
  53628. name: "True",
  53629. height: math.unit(1, "universe")
  53630. },
  53631. ]
  53632. ))
  53633. characterMakers.push(() => makeCharacter(
  53634. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53635. {
  53636. front: {
  53637. height: math.unit(5, "feet"),
  53638. name: "Front",
  53639. image: {
  53640. source: "./media/characters/sen-mink/front.svg",
  53641. extra: 1727/1675,
  53642. bottom: 35/1762
  53643. }
  53644. },
  53645. },
  53646. [
  53647. {
  53648. name: "Normal",
  53649. height: math.unit(5, "feet"),
  53650. default: true
  53651. },
  53652. ]
  53653. ))
  53654. characterMakers.push(() => makeCharacter(
  53655. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53656. {
  53657. front: {
  53658. height: math.unit(5.42999, "feet"),
  53659. weight: math.unit(100, "lb"),
  53660. name: "Front",
  53661. image: {
  53662. source: "./media/characters/ophois/front.svg",
  53663. extra: 1429/1286,
  53664. bottom: 60/1489
  53665. }
  53666. },
  53667. },
  53668. [
  53669. {
  53670. name: "Normal",
  53671. height: math.unit(5.42999, "feet"),
  53672. default: true
  53673. },
  53674. ]
  53675. ))
  53676. characterMakers.push(() => makeCharacter(
  53677. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53678. {
  53679. front: {
  53680. height: math.unit(2, "meters"),
  53681. name: "Front",
  53682. image: {
  53683. source: "./media/characters/riley/front.svg",
  53684. extra: 1779/1754,
  53685. bottom: 139/1918
  53686. }
  53687. },
  53688. },
  53689. [
  53690. {
  53691. name: "Normal",
  53692. height: math.unit(2, "meters"),
  53693. default: true
  53694. },
  53695. ]
  53696. ))
  53697. characterMakers.push(() => makeCharacter(
  53698. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53699. {
  53700. front: {
  53701. height: math.unit(6 + 2/12, "feet"),
  53702. weight: math.unit(195, "lb"),
  53703. preyCapacity: math.unit(6, "people"),
  53704. name: "Front",
  53705. image: {
  53706. source: "./media/characters/shuken-flash/front.svg",
  53707. extra: 1905/1739,
  53708. bottom: 65/1970
  53709. }
  53710. },
  53711. back: {
  53712. height: math.unit(6 + 2/12, "feet"),
  53713. weight: math.unit(195, "lb"),
  53714. preyCapacity: math.unit(6, "people"),
  53715. name: "Back",
  53716. image: {
  53717. source: "./media/characters/shuken-flash/back.svg",
  53718. extra: 1912/1751,
  53719. bottom: 13/1925
  53720. }
  53721. },
  53722. },
  53723. [
  53724. {
  53725. name: "Normal",
  53726. height: math.unit(6 + 2/12, "feet"),
  53727. default: true
  53728. },
  53729. ]
  53730. ))
  53731. characterMakers.push(() => makeCharacter(
  53732. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53733. {
  53734. front: {
  53735. height: math.unit(5 + 9/12, "feet"),
  53736. weight: math.unit(150, "lb"),
  53737. name: "Front",
  53738. image: {
  53739. source: "./media/characters/plat/front.svg",
  53740. extra: 1816/1703,
  53741. bottom: 43/1859
  53742. }
  53743. },
  53744. side: {
  53745. height: math.unit(5 + 9/12, "feet"),
  53746. weight: math.unit(300, "lb"),
  53747. name: "Side",
  53748. image: {
  53749. source: "./media/characters/plat/side.svg",
  53750. extra: 1824/1699,
  53751. bottom: 18/1842
  53752. }
  53753. },
  53754. },
  53755. [
  53756. {
  53757. name: "Normal",
  53758. height: math.unit(5 + 9/12, "feet"),
  53759. default: true
  53760. },
  53761. ]
  53762. ))
  53763. characterMakers.push(() => makeCharacter(
  53764. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53765. {
  53766. front: {
  53767. height: math.unit(9, "feet"),
  53768. weight: math.unit(1800, "lb"),
  53769. name: "Front",
  53770. image: {
  53771. source: "./media/characters/elaine/front.svg",
  53772. extra: 1833/1354,
  53773. bottom: 25/1858
  53774. }
  53775. },
  53776. back: {
  53777. height: math.unit(8.8, "feet"),
  53778. weight: math.unit(1800, "lb"),
  53779. name: "Back",
  53780. image: {
  53781. source: "./media/characters/elaine/back.svg",
  53782. extra: 1641/1233,
  53783. bottom: 53/1694
  53784. }
  53785. },
  53786. },
  53787. [
  53788. {
  53789. name: "Normal",
  53790. height: math.unit(9, "feet"),
  53791. default: true
  53792. },
  53793. ]
  53794. ))
  53795. characterMakers.push(() => makeCharacter(
  53796. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53797. {
  53798. front: {
  53799. height: math.unit(17 + 9/12, "feet"),
  53800. weight: math.unit(8000, "lb"),
  53801. name: "Front",
  53802. image: {
  53803. source: "./media/characters/vera-raven/front.svg",
  53804. extra: 1457/1412,
  53805. bottom: 121/1578
  53806. }
  53807. },
  53808. side: {
  53809. height: math.unit(17 + 9/12, "feet"),
  53810. weight: math.unit(8000, "lb"),
  53811. name: "Side",
  53812. image: {
  53813. source: "./media/characters/vera-raven/side.svg",
  53814. extra: 1510/1464,
  53815. bottom: 54/1564
  53816. }
  53817. },
  53818. },
  53819. [
  53820. {
  53821. name: "Normal",
  53822. height: math.unit(17 + 9/12, "feet"),
  53823. default: true
  53824. },
  53825. ]
  53826. ))
  53827. characterMakers.push(() => makeCharacter(
  53828. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53829. {
  53830. dressed: {
  53831. height: math.unit(6 + 9/12, "feet"),
  53832. name: "Dressed",
  53833. image: {
  53834. source: "./media/characters/nakisha/dressed.svg",
  53835. extra: 1909/1757,
  53836. bottom: 48/1957
  53837. }
  53838. },
  53839. nude: {
  53840. height: math.unit(6 + 9/12, "feet"),
  53841. name: "Nude",
  53842. image: {
  53843. source: "./media/characters/nakisha/nude.svg",
  53844. extra: 1917/1765,
  53845. bottom: 34/1951
  53846. }
  53847. },
  53848. },
  53849. [
  53850. {
  53851. name: "Normal",
  53852. height: math.unit(6 + 9/12, "feet"),
  53853. default: true
  53854. },
  53855. ]
  53856. ))
  53857. characterMakers.push(() => makeCharacter(
  53858. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53859. {
  53860. front: {
  53861. height: math.unit(87, "meters"),
  53862. name: "Front",
  53863. image: {
  53864. source: "./media/characters/serafin/front.svg",
  53865. extra: 1919/1776,
  53866. bottom: 65/1984
  53867. }
  53868. },
  53869. },
  53870. [
  53871. {
  53872. name: "Normal",
  53873. height: math.unit(87, "meters"),
  53874. default: true
  53875. },
  53876. ]
  53877. ))
  53878. characterMakers.push(() => makeCharacter(
  53879. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  53880. {
  53881. front: {
  53882. height: math.unit(6, "feet"),
  53883. weight: math.unit(200, "lb"),
  53884. name: "Front",
  53885. image: {
  53886. source: "./media/characters/poptart/front.svg",
  53887. extra: 615/583,
  53888. bottom: 23/638
  53889. }
  53890. },
  53891. back: {
  53892. height: math.unit(6, "feet"),
  53893. weight: math.unit(200, "lb"),
  53894. name: "Back",
  53895. image: {
  53896. source: "./media/characters/poptart/back.svg",
  53897. extra: 617/584,
  53898. bottom: 22/639
  53899. }
  53900. },
  53901. frontNsfw: {
  53902. height: math.unit(6, "feet"),
  53903. weight: math.unit(200, "lb"),
  53904. name: "Front (NSFW)",
  53905. image: {
  53906. source: "./media/characters/poptart/front-nsfw.svg",
  53907. extra: 615/583,
  53908. bottom: 23/638
  53909. }
  53910. },
  53911. backNsfw: {
  53912. height: math.unit(6, "feet"),
  53913. weight: math.unit(200, "lb"),
  53914. name: "Back (NSFW)",
  53915. image: {
  53916. source: "./media/characters/poptart/back-nsfw.svg",
  53917. extra: 617/584,
  53918. bottom: 22/639
  53919. }
  53920. },
  53921. hand: {
  53922. height: math.unit(1.14, "feet"),
  53923. name: "Hand",
  53924. image: {
  53925. source: "./media/characters/poptart/hand.svg"
  53926. }
  53927. },
  53928. foot: {
  53929. height: math.unit(1.5, "feet"),
  53930. name: "Foot",
  53931. image: {
  53932. source: "./media/characters/poptart/foot.svg"
  53933. }
  53934. },
  53935. },
  53936. [
  53937. {
  53938. name: "Normal",
  53939. height: math.unit(6, "feet"),
  53940. default: true
  53941. },
  53942. {
  53943. name: "Grande",
  53944. height: math.unit(350, "feet")
  53945. },
  53946. {
  53947. name: "Massif",
  53948. height: math.unit(967, "feet")
  53949. },
  53950. ]
  53951. ))
  53952. characterMakers.push(() => makeCharacter(
  53953. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  53954. {
  53955. hyenaSide: {
  53956. height: math.unit(120, "cm"),
  53957. weight: math.unit(120, "lb"),
  53958. name: "Side",
  53959. image: {
  53960. source: "./media/characters/trance/hyena-side.svg",
  53961. extra: 998/904,
  53962. bottom: 76/1074
  53963. }
  53964. },
  53965. },
  53966. [
  53967. {
  53968. name: "Normal",
  53969. height: math.unit(120, "cm"),
  53970. default: true
  53971. },
  53972. {
  53973. name: "Dire",
  53974. height: math.unit(230, "cm")
  53975. },
  53976. {
  53977. name: "Macro",
  53978. height: math.unit(37, "feet")
  53979. },
  53980. ]
  53981. ))
  53982. characterMakers.push(() => makeCharacter(
  53983. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  53984. {
  53985. front: {
  53986. height: math.unit(6 + 3/12, "feet"),
  53987. name: "Front",
  53988. image: {
  53989. source: "./media/characters/michael-berretta/front.svg",
  53990. extra: 515/494,
  53991. bottom: 20/535
  53992. }
  53993. },
  53994. back: {
  53995. height: math.unit(6 + 3/12, "feet"),
  53996. name: "Back",
  53997. image: {
  53998. source: "./media/characters/michael-berretta/back.svg",
  53999. extra: 520/497,
  54000. bottom: 21/541
  54001. }
  54002. },
  54003. frontNsfw: {
  54004. height: math.unit(6 + 3/12, "feet"),
  54005. name: "Front (NSFW)",
  54006. image: {
  54007. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54008. extra: 515/494,
  54009. bottom: 20/535
  54010. }
  54011. },
  54012. dick: {
  54013. height: math.unit(1, "feet"),
  54014. name: "Dick",
  54015. image: {
  54016. source: "./media/characters/michael-berretta/dick.svg"
  54017. }
  54018. },
  54019. },
  54020. [
  54021. {
  54022. name: "Normal",
  54023. height: math.unit(6 + 3/12, "feet"),
  54024. default: true
  54025. },
  54026. {
  54027. name: "Big",
  54028. height: math.unit(12, "feet")
  54029. },
  54030. {
  54031. name: "Macro",
  54032. height: math.unit(187.5, "feet")
  54033. },
  54034. ]
  54035. ))
  54036. characterMakers.push(() => makeCharacter(
  54037. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54038. {
  54039. front: {
  54040. height: math.unit(9 + 9/12, "feet"),
  54041. weight: math.unit(1244, "lb"),
  54042. name: "Front",
  54043. image: {
  54044. source: "./media/characters/stella-edgecomb/front.svg",
  54045. extra: 1835/1706,
  54046. bottom: 49/1884
  54047. }
  54048. },
  54049. pen: {
  54050. height: math.unit(0.95, "feet"),
  54051. name: "Pen",
  54052. image: {
  54053. source: "./media/characters/stella-edgecomb/pen.svg"
  54054. }
  54055. },
  54056. },
  54057. [
  54058. {
  54059. name: "Cozy Bear",
  54060. height: math.unit(0.5, "inches")
  54061. },
  54062. {
  54063. name: "Normal",
  54064. height: math.unit(9 + 9/12, "feet"),
  54065. default: true
  54066. },
  54067. {
  54068. name: "Giga Bear",
  54069. height: math.unit(1, "mile")
  54070. },
  54071. {
  54072. name: "Great Bear",
  54073. height: math.unit(53, "miles")
  54074. },
  54075. {
  54076. name: "Goddess Bear",
  54077. height: math.unit(40000, "miles")
  54078. },
  54079. {
  54080. name: "Sun Bear",
  54081. height: math.unit(900000, "miles")
  54082. },
  54083. ]
  54084. ))
  54085. characterMakers.push(() => makeCharacter(
  54086. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54087. {
  54088. anthroFront: {
  54089. height: math.unit(556, "cm"),
  54090. weight: math.unit(2650, "kg"),
  54091. preyCapacity: math.unit(3, "people"),
  54092. name: "Front",
  54093. image: {
  54094. source: "./media/characters/ash´iika/front.svg",
  54095. extra: 710/673,
  54096. bottom: 15/725
  54097. },
  54098. form: "anthro",
  54099. default: true
  54100. },
  54101. anthroSide: {
  54102. height: math.unit(556, "cm"),
  54103. weight: math.unit(2650, "kg"),
  54104. preyCapacity: math.unit(3, "people"),
  54105. name: "Side",
  54106. image: {
  54107. source: "./media/characters/ash´iika/side.svg",
  54108. extra: 696/676,
  54109. bottom: 13/709
  54110. },
  54111. form: "anthro"
  54112. },
  54113. anthroDressed: {
  54114. height: math.unit(556, "cm"),
  54115. weight: math.unit(2650, "kg"),
  54116. preyCapacity: math.unit(3, "people"),
  54117. name: "Dressed",
  54118. image: {
  54119. source: "./media/characters/ash´iika/dressed.svg",
  54120. extra: 710/673,
  54121. bottom: 15/725
  54122. },
  54123. form: "anthro"
  54124. },
  54125. anthroHead: {
  54126. height: math.unit(3.5, "feet"),
  54127. name: "Head",
  54128. image: {
  54129. source: "./media/characters/ash´iika/head.svg",
  54130. extra: 348/291,
  54131. bottom: 45/393
  54132. },
  54133. form: "anthro"
  54134. },
  54135. feralSide: {
  54136. height: math.unit(870, "cm"),
  54137. weight: math.unit(17500, "kg"),
  54138. preyCapacity: math.unit(15, "people"),
  54139. name: "Side",
  54140. image: {
  54141. source: "./media/characters/ash´iika/feral.svg",
  54142. extra: 595/199,
  54143. bottom: 7/602
  54144. },
  54145. form: "feral",
  54146. default: true,
  54147. },
  54148. },
  54149. [
  54150. {
  54151. name: "Normal",
  54152. height: math.unit(556, "cm"),
  54153. default: true,
  54154. form: "anthro"
  54155. },
  54156. {
  54157. name: "Macro",
  54158. height: math.unit(88, "meters"),
  54159. form: "anthro"
  54160. },
  54161. {
  54162. name: "Normal",
  54163. height: math.unit(870, "cm"),
  54164. default: true,
  54165. form: "feral"
  54166. },
  54167. {
  54168. name: "Large",
  54169. height: math.unit(25, "meters"),
  54170. form: "feral"
  54171. },
  54172. ],
  54173. {
  54174. "anthro": {
  54175. name: "Anthro",
  54176. default: true
  54177. },
  54178. "feral": {
  54179. name: "Feral",
  54180. },
  54181. }
  54182. ))
  54183. characterMakers.push(() => makeCharacter(
  54184. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54185. {
  54186. front: {
  54187. height: math.unit(10, "feet"),
  54188. weight: math.unit(800, "lb"),
  54189. name: "Front",
  54190. image: {
  54191. source: "./media/characters/yen/front.svg",
  54192. extra: 443/411,
  54193. bottom: 6/449
  54194. }
  54195. },
  54196. sleeping: {
  54197. height: math.unit(10, "feet"),
  54198. weight: math.unit(800, "lb"),
  54199. name: "Sleeping",
  54200. image: {
  54201. source: "./media/characters/yen/sleeping.svg",
  54202. extra: 470/422,
  54203. bottom: 0/470
  54204. }
  54205. },
  54206. head: {
  54207. height: math.unit(2.2, "feet"),
  54208. name: "Head",
  54209. image: {
  54210. source: "./media/characters/yen/head.svg"
  54211. }
  54212. },
  54213. headAlt: {
  54214. height: math.unit(2.1, "feet"),
  54215. name: "Head (Alt)",
  54216. image: {
  54217. source: "./media/characters/yen/head-alt.svg"
  54218. }
  54219. },
  54220. },
  54221. [
  54222. {
  54223. name: "Normal",
  54224. height: math.unit(10, "feet"),
  54225. default: true
  54226. },
  54227. ]
  54228. ))
  54229. characterMakers.push(() => makeCharacter(
  54230. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54231. {
  54232. front: {
  54233. height: math.unit(12, "feet"),
  54234. name: "Front",
  54235. image: {
  54236. source: "./media/characters/citra/front.svg",
  54237. extra: 1950/1710,
  54238. bottom: 47/1997
  54239. }
  54240. },
  54241. },
  54242. [
  54243. {
  54244. name: "Normal",
  54245. height: math.unit(12, "feet"),
  54246. default: true
  54247. },
  54248. ]
  54249. ))
  54250. characterMakers.push(() => makeCharacter(
  54251. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54252. {
  54253. side: {
  54254. height: math.unit(7 + 10/12, "feet"),
  54255. name: "Side",
  54256. image: {
  54257. source: "./media/characters/sholstim/side.svg",
  54258. extra: 786/682,
  54259. bottom: 40/826
  54260. }
  54261. },
  54262. },
  54263. [
  54264. {
  54265. name: "Normal",
  54266. height: math.unit(7 + 10/12, "feet"),
  54267. default: true
  54268. },
  54269. ]
  54270. ))
  54271. characterMakers.push(() => makeCharacter(
  54272. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54273. {
  54274. front: {
  54275. height: math.unit(3.10, "meters"),
  54276. name: "Front",
  54277. image: {
  54278. source: "./media/characters/aggyn/front.svg",
  54279. extra: 1188/963,
  54280. bottom: 24/1212
  54281. }
  54282. },
  54283. },
  54284. [
  54285. {
  54286. name: "Normal",
  54287. height: math.unit(3.10, "meters"),
  54288. default: true
  54289. },
  54290. ]
  54291. ))
  54292. characterMakers.push(() => makeCharacter(
  54293. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54294. {
  54295. front: {
  54296. height: math.unit(7 + 5/12, "feet"),
  54297. weight: math.unit(687, "lb"),
  54298. name: "Front",
  54299. image: {
  54300. source: "./media/characters/alsandair-hergenroether/front.svg",
  54301. extra: 1251/1186,
  54302. bottom: 75/1326
  54303. }
  54304. },
  54305. back: {
  54306. height: math.unit(7 + 5/12, "feet"),
  54307. weight: math.unit(687, "lb"),
  54308. name: "Back",
  54309. image: {
  54310. source: "./media/characters/alsandair-hergenroether/back.svg",
  54311. extra: 1290/1229,
  54312. bottom: 17/1307
  54313. }
  54314. },
  54315. },
  54316. [
  54317. {
  54318. name: "Max Compression",
  54319. height: math.unit(7 + 5/12, "feet"),
  54320. default: true
  54321. },
  54322. {
  54323. name: "\"Normal\"",
  54324. height: math.unit(2, "universes")
  54325. },
  54326. ]
  54327. ))
  54328. characterMakers.push(() => makeCharacter(
  54329. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54330. {
  54331. front: {
  54332. height: math.unit(4 + 1/12, "feet"),
  54333. weight: math.unit(92, "lb"),
  54334. name: "Front",
  54335. image: {
  54336. source: "./media/characters/ie/front.svg",
  54337. extra: 1585/1352,
  54338. bottom: 91/1676
  54339. }
  54340. },
  54341. },
  54342. [
  54343. {
  54344. name: "Normal",
  54345. height: math.unit(4 + 1/12, "feet"),
  54346. default: true
  54347. },
  54348. ]
  54349. ))
  54350. characterMakers.push(() => makeCharacter(
  54351. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54352. {
  54353. anthro: {
  54354. height: math.unit(6, "feet"),
  54355. weight: math.unit(150, "lb"),
  54356. name: "Front",
  54357. image: {
  54358. source: "./media/characters/willow/anthro.svg",
  54359. extra: 1073/986,
  54360. bottom: 34/1107
  54361. },
  54362. form: "anthro",
  54363. default: true
  54364. },
  54365. taur: {
  54366. height: math.unit(6, "feet"),
  54367. weight: math.unit(150, "lb"),
  54368. name: "Side",
  54369. image: {
  54370. source: "./media/characters/willow/taur.svg",
  54371. extra: 647/512,
  54372. bottom: 136/783
  54373. },
  54374. form: "taur",
  54375. default: true
  54376. },
  54377. },
  54378. [
  54379. {
  54380. name: "Humanoid",
  54381. height: math.unit(2.7, "meters"),
  54382. form: "anthro"
  54383. },
  54384. {
  54385. name: "Normal",
  54386. height: math.unit(9, "meters"),
  54387. form: "anthro",
  54388. default: true
  54389. },
  54390. {
  54391. name: "Humanoid",
  54392. height: math.unit(2.1, "meters"),
  54393. form: "taur"
  54394. },
  54395. {
  54396. name: "Normal",
  54397. height: math.unit(7, "meters"),
  54398. form: "taur",
  54399. default: true
  54400. },
  54401. ],
  54402. {
  54403. "anthro": {
  54404. name: "Anthro",
  54405. default: true
  54406. },
  54407. "taur": {
  54408. name: "Taur",
  54409. },
  54410. }
  54411. ))
  54412. characterMakers.push(() => makeCharacter(
  54413. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54414. {
  54415. front: {
  54416. height: math.unit(2 + 5/12, "feet"),
  54417. name: "Front",
  54418. image: {
  54419. source: "./media/characters/kyan/front.svg",
  54420. extra: 460/334,
  54421. bottom: 23/483
  54422. },
  54423. extraAttributes: {
  54424. "toeLength": {
  54425. name: "Toe Length",
  54426. power: 1,
  54427. type: "length",
  54428. base: math.unit(7, "cm")
  54429. },
  54430. "toeclawLength": {
  54431. name: "Toeclaw Length",
  54432. power: 1,
  54433. type: "length",
  54434. base: math.unit(4.7, "cm")
  54435. },
  54436. "earHeight": {
  54437. name: "Ear Height",
  54438. power: 1,
  54439. type: "length",
  54440. base: math.unit(14.1, "cm")
  54441. },
  54442. }
  54443. },
  54444. paws: {
  54445. height: math.unit(0.45, "feet"),
  54446. name: "Paws",
  54447. image: {
  54448. source: "./media/characters/kyan/paws.svg",
  54449. extra: 581/581,
  54450. bottom: 114/695
  54451. }
  54452. },
  54453. },
  54454. [
  54455. {
  54456. name: "Normal",
  54457. height: math.unit(2 + 5/12, "feet"),
  54458. default: true
  54459. },
  54460. ]
  54461. ))
  54462. characterMakers.push(() => makeCharacter(
  54463. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54464. {
  54465. front: {
  54466. height: math.unit(2 + 2/3, "feet"),
  54467. name: "Front",
  54468. image: {
  54469. source: "./media/characters/xazzon/front.svg",
  54470. extra: 1109/984,
  54471. bottom: 42/1151
  54472. }
  54473. },
  54474. back: {
  54475. height: math.unit(2 + 2/3, "feet"),
  54476. name: "Back",
  54477. image: {
  54478. source: "./media/characters/xazzon/back.svg",
  54479. extra: 1095/971,
  54480. bottom: 23/1118
  54481. }
  54482. },
  54483. },
  54484. [
  54485. {
  54486. name: "Normal",
  54487. height: math.unit(2 + 2/3, "feet"),
  54488. default: true
  54489. },
  54490. ]
  54491. ))
  54492. characterMakers.push(() => makeCharacter(
  54493. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54494. {
  54495. dressed: {
  54496. height: math.unit(5 + 7/12, "feet"),
  54497. weight: math.unit(173, "lb"),
  54498. name: "Dressed",
  54499. image: {
  54500. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54501. extra: 3262/2862,
  54502. bottom: 188/3450
  54503. }
  54504. },
  54505. undressed: {
  54506. height: math.unit(5 + 7/12, "feet"),
  54507. weight: math.unit(173, "lb"),
  54508. name: "Undressed",
  54509. image: {
  54510. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54511. extra: 3262/2862,
  54512. bottom: 188/3450
  54513. }
  54514. },
  54515. },
  54516. [
  54517. {
  54518. name: "The void",
  54519. height: math.unit(7.29193e-34, "angstroms")
  54520. },
  54521. {
  54522. name: "Uh-Oh.",
  54523. height: math.unit(5.734e-7, "angstroms")
  54524. },
  54525. {
  54526. name: "Pico",
  54527. height: math.unit(0.876, "angstroms")
  54528. },
  54529. {
  54530. name: "Nano",
  54531. height: math.unit(0.000134200, "mm")
  54532. },
  54533. {
  54534. name: "Micro",
  54535. height: math.unit(0.0673020, "mm")
  54536. },
  54537. {
  54538. name: "Tiny",
  54539. height: math.unit(2.4, "mm")
  54540. },
  54541. {
  54542. name: "Actual Normal",
  54543. height: math.unit(3, "inches"),
  54544. default: true
  54545. },
  54546. {
  54547. name: "Normal",
  54548. height: math.unit(5 + 8/12, "feet")
  54549. },
  54550. {
  54551. name: "Giant",
  54552. height: math.unit(12, "feet")
  54553. },
  54554. {
  54555. name: "City Ruler",
  54556. height: math.unit(270, "meters")
  54557. },
  54558. {
  54559. name: "Giga",
  54560. height: math.unit(1117.6, "km")
  54561. },
  54562. {
  54563. name: "All-Powerful Queen",
  54564. height: math.unit(70.8, "gigameters")
  54565. },
  54566. {
  54567. name: "'Goddess'",
  54568. height: math.unit(600, "yottameters")
  54569. },
  54570. {
  54571. name: "Biggest!",
  54572. height: math.unit(4.23e5, "yottameters")
  54573. },
  54574. ]
  54575. ))
  54576. characterMakers.push(() => makeCharacter(
  54577. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54578. {
  54579. front: {
  54580. height: math.unit(8, "feet"),
  54581. weight: math.unit(300, "lb"),
  54582. name: "Front",
  54583. image: {
  54584. source: "./media/characters/khyla-shadowsong/front.svg",
  54585. extra: 861/798,
  54586. bottom: 32/893
  54587. }
  54588. },
  54589. side: {
  54590. height: math.unit(8, "feet"),
  54591. weight: math.unit(300, "lb"),
  54592. name: "Side",
  54593. image: {
  54594. source: "./media/characters/khyla-shadowsong/side.svg",
  54595. extra: 790/750,
  54596. bottom: 87/877
  54597. }
  54598. },
  54599. back: {
  54600. height: math.unit(8, "feet"),
  54601. weight: math.unit(300, "lb"),
  54602. name: "Back",
  54603. image: {
  54604. source: "./media/characters/khyla-shadowsong/back.svg",
  54605. extra: 855/808,
  54606. bottom: 14/869
  54607. }
  54608. },
  54609. head: {
  54610. height: math.unit(2.7, "feet"),
  54611. name: "Head",
  54612. image: {
  54613. source: "./media/characters/khyla-shadowsong/head.svg"
  54614. }
  54615. },
  54616. },
  54617. [
  54618. {
  54619. name: "Micro",
  54620. height: math.unit(6, "inches")
  54621. },
  54622. {
  54623. name: "Normal",
  54624. height: math.unit(8, "feet"),
  54625. default: true
  54626. },
  54627. ]
  54628. ))
  54629. characterMakers.push(() => makeCharacter(
  54630. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54631. {
  54632. hyperFront: {
  54633. height: math.unit(9 + 4/12, "feet"),
  54634. weight: math.unit(2000, "lb"),
  54635. name: "Front",
  54636. image: {
  54637. source: "./media/characters/tiden/hyper-front.svg",
  54638. extra: 400/382,
  54639. bottom: 6/406
  54640. },
  54641. form: "hyper",
  54642. },
  54643. regularFront: {
  54644. height: math.unit(7 + 10/12, "feet"),
  54645. weight: math.unit(470, "lb"),
  54646. name: "Front",
  54647. image: {
  54648. source: "./media/characters/tiden/regular-front.svg",
  54649. extra: 468/442,
  54650. bottom: 6/474
  54651. },
  54652. form: "regular",
  54653. },
  54654. },
  54655. [
  54656. {
  54657. name: "Normal",
  54658. height: math.unit(9 + 4/12, "feet"),
  54659. default: true,
  54660. form: "hyper"
  54661. },
  54662. {
  54663. name: "Normal",
  54664. height: math.unit(7 + 10/12, "feet"),
  54665. default: true,
  54666. form: "regular"
  54667. },
  54668. ],
  54669. {
  54670. "hyper": {
  54671. name: "Hyper",
  54672. default: true
  54673. },
  54674. "regular": {
  54675. name: "Regular",
  54676. },
  54677. }
  54678. ))
  54679. characterMakers.push(() => makeCharacter(
  54680. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54681. {
  54682. side: {
  54683. height: math.unit(6, "feet"),
  54684. weight: math.unit(150, "lb"),
  54685. name: "Side",
  54686. image: {
  54687. source: "./media/characters/jason-crowe/side.svg",
  54688. extra: 1771/766,
  54689. bottom: 219/1990
  54690. }
  54691. },
  54692. },
  54693. [
  54694. {
  54695. name: "Pocket Gryphon",
  54696. height: math.unit(6, "cm")
  54697. },
  54698. {
  54699. name: "Raven",
  54700. height: math.unit(60, "cm")
  54701. },
  54702. {
  54703. name: "Normal",
  54704. height: math.unit(1, "meter"),
  54705. default: true
  54706. },
  54707. ]
  54708. ))
  54709. characterMakers.push(() => makeCharacter(
  54710. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54711. {
  54712. front: {
  54713. height: math.unit(9 + 6/12, "feet"),
  54714. weight: math.unit(1100, "lb"),
  54715. name: "Front",
  54716. image: {
  54717. source: "./media/characters/django/front.svg",
  54718. extra: 1231/1136,
  54719. bottom: 34/1265
  54720. }
  54721. },
  54722. side: {
  54723. height: math.unit(9 + 6/12, "feet"),
  54724. weight: math.unit(1100, "lb"),
  54725. name: "Side",
  54726. image: {
  54727. source: "./media/characters/django/side.svg",
  54728. extra: 1267/1174,
  54729. bottom: 9/1276
  54730. }
  54731. },
  54732. },
  54733. [
  54734. {
  54735. name: "Normal",
  54736. height: math.unit(9 + 6/12, "feet"),
  54737. default: true
  54738. },
  54739. {
  54740. name: "Macro 1",
  54741. height: math.unit(50, "feet")
  54742. },
  54743. {
  54744. name: "Macro 2",
  54745. height: math.unit(500, "feet")
  54746. },
  54747. {
  54748. name: "Mega Macro",
  54749. height: math.unit(5300, "feet")
  54750. },
  54751. ]
  54752. ))
  54753. characterMakers.push(() => makeCharacter(
  54754. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54755. {
  54756. frontSfw: {
  54757. height: math.unit(120, "cm"),
  54758. weight: math.unit(15, "kg"),
  54759. name: "Front (SFW)",
  54760. image: {
  54761. source: "./media/characters/eri/front-sfw.svg",
  54762. extra: 1014/939,
  54763. bottom: 37/1051
  54764. },
  54765. form: "moth",
  54766. },
  54767. frontNsfw: {
  54768. height: math.unit(120, "cm"),
  54769. weight: math.unit(15, "kg"),
  54770. name: "Front (NSFW)",
  54771. image: {
  54772. source: "./media/characters/eri/front-nsfw.svg",
  54773. extra: 1014/939,
  54774. bottom: 37/1051
  54775. },
  54776. form: "moth",
  54777. default: true
  54778. },
  54779. egg: {
  54780. height: math.unit(10, "cm"),
  54781. name: "Egg",
  54782. image: {
  54783. source: "./media/characters/eri/egg.svg"
  54784. },
  54785. form: "egg",
  54786. default: true
  54787. },
  54788. },
  54789. [
  54790. {
  54791. name: "Normal",
  54792. height: math.unit(120, "cm"),
  54793. default: true,
  54794. form: "moth"
  54795. },
  54796. {
  54797. name: "Normal",
  54798. height: math.unit(10, "cm"),
  54799. default: true,
  54800. form: "egg"
  54801. },
  54802. ],
  54803. {
  54804. "moth": {
  54805. name: "Moth",
  54806. default: true
  54807. },
  54808. "egg": {
  54809. name: "Egg",
  54810. },
  54811. }
  54812. ))
  54813. characterMakers.push(() => makeCharacter(
  54814. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54815. {
  54816. front: {
  54817. height: math.unit(200, "feet"),
  54818. name: "Front",
  54819. image: {
  54820. source: "./media/characters/bishop-dowser/front.svg",
  54821. extra: 933/868,
  54822. bottom: 106/1039
  54823. }
  54824. },
  54825. },
  54826. [
  54827. {
  54828. name: "Giant",
  54829. height: math.unit(200, "feet"),
  54830. default: true
  54831. },
  54832. ]
  54833. ))
  54834. characterMakers.push(() => makeCharacter(
  54835. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54836. {
  54837. front: {
  54838. height: math.unit(2, "meters"),
  54839. preyCapacity: math.unit(3, "people"),
  54840. name: "Front",
  54841. image: {
  54842. source: "./media/characters/fryra/front.svg",
  54843. extra: 1025/948,
  54844. bottom: 30/1055
  54845. },
  54846. extraAttributes: {
  54847. "breastVolume": {
  54848. name: "Breast Volume",
  54849. power: 3,
  54850. type: "volume",
  54851. base: math.unit(8, "liters")
  54852. },
  54853. }
  54854. },
  54855. back: {
  54856. height: math.unit(2, "meters"),
  54857. preyCapacity: math.unit(3, "people"),
  54858. name: "Back",
  54859. image: {
  54860. source: "./media/characters/fryra/back.svg",
  54861. extra: 993/938,
  54862. bottom: 38/1031
  54863. },
  54864. extraAttributes: {
  54865. "breastVolume": {
  54866. name: "Breast Volume",
  54867. power: 3,
  54868. type: "volume",
  54869. base: math.unit(8, "liters")
  54870. },
  54871. }
  54872. },
  54873. head: {
  54874. height: math.unit(1.33, "feet"),
  54875. name: "Head",
  54876. image: {
  54877. source: "./media/characters/fryra/head.svg"
  54878. }
  54879. },
  54880. maw: {
  54881. height: math.unit(0.56, "feet"),
  54882. name: "Maw",
  54883. image: {
  54884. source: "./media/characters/fryra/maw.svg"
  54885. }
  54886. },
  54887. },
  54888. [
  54889. {
  54890. name: "Micro",
  54891. height: math.unit(5, "cm")
  54892. },
  54893. {
  54894. name: "Normal",
  54895. height: math.unit(2, "meters"),
  54896. default: true
  54897. },
  54898. {
  54899. name: "Small Macro",
  54900. height: math.unit(8, "meters")
  54901. },
  54902. {
  54903. name: "Macro",
  54904. height: math.unit(50, "meters")
  54905. },
  54906. {
  54907. name: "Megamacro",
  54908. height: math.unit(1, "km")
  54909. },
  54910. {
  54911. name: "Planetary",
  54912. height: math.unit(300000, "km")
  54913. },
  54914. {
  54915. name: "Universal",
  54916. height: math.unit(250, "lightyears")
  54917. },
  54918. {
  54919. name: "Fabric of Reality",
  54920. height: math.unit(1000, "multiverses")
  54921. },
  54922. ]
  54923. ))
  54924. characterMakers.push(() => makeCharacter(
  54925. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  54926. {
  54927. frontDressed: {
  54928. height: math.unit(6 + 2/12, "feet"),
  54929. name: "Front (Dressed)",
  54930. image: {
  54931. source: "./media/characters/fiera/front-dressed.svg",
  54932. extra: 1883/1793,
  54933. bottom: 70/1953
  54934. }
  54935. },
  54936. backDressed: {
  54937. height: math.unit(6 + 2/12, "feet"),
  54938. name: "Back (Dressed)",
  54939. image: {
  54940. source: "./media/characters/fiera/back-dressed.svg",
  54941. extra: 1847/1780,
  54942. bottom: 70/1917
  54943. }
  54944. },
  54945. frontNude: {
  54946. height: math.unit(6 + 2/12, "feet"),
  54947. name: "Front (Nude)",
  54948. image: {
  54949. source: "./media/characters/fiera/front-nude.svg",
  54950. extra: 1875/1785,
  54951. bottom: 66/1941
  54952. }
  54953. },
  54954. backNude: {
  54955. height: math.unit(6 + 2/12, "feet"),
  54956. name: "Back (Nude)",
  54957. image: {
  54958. source: "./media/characters/fiera/back-nude.svg",
  54959. extra: 1855/1788,
  54960. bottom: 44/1899
  54961. }
  54962. },
  54963. maw: {
  54964. height: math.unit(1.3, "feet"),
  54965. name: "Maw",
  54966. image: {
  54967. source: "./media/characters/fiera/maw.svg"
  54968. }
  54969. },
  54970. paw: {
  54971. height: math.unit(1, "feet"),
  54972. name: "Paw",
  54973. image: {
  54974. source: "./media/characters/fiera/paw.svg"
  54975. }
  54976. },
  54977. shoe: {
  54978. height: math.unit(1.05, "feet"),
  54979. name: "Shoe",
  54980. image: {
  54981. source: "./media/characters/fiera/shoe.svg"
  54982. }
  54983. },
  54984. },
  54985. [
  54986. {
  54987. name: "Normal",
  54988. height: math.unit(6 + 2/12, "feet"),
  54989. default: true
  54990. },
  54991. {
  54992. name: "Size Difference",
  54993. height: math.unit(13, "feet")
  54994. },
  54995. {
  54996. name: "Macro",
  54997. height: math.unit(60, "feet")
  54998. },
  54999. {
  55000. name: "Mega Macro",
  55001. height: math.unit(200, "feet")
  55002. },
  55003. ]
  55004. ))
  55005. characterMakers.push(() => makeCharacter(
  55006. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55007. {
  55008. back: {
  55009. height: math.unit(6, "feet"),
  55010. name: "Back",
  55011. image: {
  55012. source: "./media/characters/flare/back.svg",
  55013. extra: 1883/1765,
  55014. bottom: 32/1915
  55015. }
  55016. },
  55017. },
  55018. [
  55019. {
  55020. name: "Normal",
  55021. height: math.unit(6 + 2/12, "feet"),
  55022. default: true
  55023. },
  55024. {
  55025. name: "Size Difference",
  55026. height: math.unit(13, "feet")
  55027. },
  55028. {
  55029. name: "Macro",
  55030. height: math.unit(60, "feet")
  55031. },
  55032. {
  55033. name: "Macro 2",
  55034. height: math.unit(100, "feet")
  55035. },
  55036. {
  55037. name: "Mega Macro",
  55038. height: math.unit(200, "feet")
  55039. },
  55040. ]
  55041. ))
  55042. characterMakers.push(() => makeCharacter(
  55043. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55044. {
  55045. front: {
  55046. height: math.unit(2.2, "m"),
  55047. weight: math.unit(300, "kg"),
  55048. name: "Front",
  55049. image: {
  55050. source: "./media/characters/hanna/front.svg",
  55051. extra: 1696/1502,
  55052. bottom: 206/1902
  55053. }
  55054. },
  55055. },
  55056. [
  55057. {
  55058. name: "Humanoid",
  55059. height: math.unit(2.2, "meters")
  55060. },
  55061. {
  55062. name: "Normal",
  55063. height: math.unit(4.8, "meters"),
  55064. default: true
  55065. },
  55066. ]
  55067. ))
  55068. characterMakers.push(() => makeCharacter(
  55069. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55070. {
  55071. front: {
  55072. height: math.unit(2.8, "meters"),
  55073. name: "Front",
  55074. image: {
  55075. source: "./media/characters/argo/front.svg",
  55076. extra: 731/518,
  55077. bottom: 84/815
  55078. }
  55079. },
  55080. },
  55081. [
  55082. {
  55083. name: "Normal",
  55084. height: math.unit(3, "meters"),
  55085. default: true
  55086. },
  55087. ]
  55088. ))
  55089. characterMakers.push(() => makeCharacter(
  55090. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55091. {
  55092. side: {
  55093. height: math.unit(3.8, "meters"),
  55094. name: "Side",
  55095. image: {
  55096. source: "./media/characters/sybil/side.svg",
  55097. extra: 382/361,
  55098. bottom: 25/407
  55099. }
  55100. },
  55101. },
  55102. [
  55103. {
  55104. name: "Normal",
  55105. height: math.unit(3.8, "meters"),
  55106. default: true
  55107. },
  55108. ]
  55109. ))
  55110. characterMakers.push(() => makeCharacter(
  55111. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55112. {
  55113. side: {
  55114. height: math.unit(6, "meters"),
  55115. name: "Side",
  55116. image: {
  55117. source: "./media/characters/plum/side.svg",
  55118. extra: 858/755,
  55119. bottom: 45/903
  55120. },
  55121. form: "taur",
  55122. default: true
  55123. },
  55124. back: {
  55125. height: math.unit(6.3, "meters"),
  55126. name: "Back",
  55127. image: {
  55128. source: "./media/characters/plum/back.svg",
  55129. extra: 887/813,
  55130. bottom: 32/919
  55131. },
  55132. form: "taur",
  55133. },
  55134. feral: {
  55135. height: math.unit(5.5, "meter"),
  55136. name: "Front",
  55137. image: {
  55138. source: "./media/characters/plum/feral.svg",
  55139. extra: 568/403,
  55140. bottom: 51/619
  55141. },
  55142. form: "feral",
  55143. default: true
  55144. },
  55145. head: {
  55146. height: math.unit(1.46, "meter"),
  55147. name: "Head",
  55148. image: {
  55149. source: "./media/characters/plum/head.svg"
  55150. },
  55151. form: "taur"
  55152. },
  55153. tailTop: {
  55154. height: math.unit(5.6, "meter"),
  55155. name: "Tail (Top)",
  55156. image: {
  55157. source: "./media/characters/plum/tail-top.svg"
  55158. },
  55159. form: "taur",
  55160. },
  55161. tailBottom: {
  55162. height: math.unit(5.6, "meter"),
  55163. name: "Tail (Bottom)",
  55164. image: {
  55165. source: "./media/characters/plum/tail-bottom.svg"
  55166. },
  55167. form: "taur",
  55168. },
  55169. feralHead: {
  55170. height: math.unit(2.56549521, "meter"),
  55171. name: "Head",
  55172. image: {
  55173. source: "./media/characters/plum/head.svg"
  55174. },
  55175. form: "feral"
  55176. },
  55177. feralTailTop: {
  55178. height: math.unit(5.44728435, "meter"),
  55179. name: "Tail (Top)",
  55180. image: {
  55181. source: "./media/characters/plum/tail-top.svg"
  55182. },
  55183. form: "feral",
  55184. },
  55185. feralTailBottom: {
  55186. height: math.unit(5.44728435, "meter"),
  55187. name: "Tail (Bottom)",
  55188. image: {
  55189. source: "./media/characters/plum/tail-bottom.svg"
  55190. },
  55191. form: "feral",
  55192. },
  55193. },
  55194. [
  55195. {
  55196. name: "Normal",
  55197. height: math.unit(6, "meters"),
  55198. default: true,
  55199. form: "taur"
  55200. },
  55201. {
  55202. name: "Normal",
  55203. height: math.unit(5.5, "meters"),
  55204. default: true,
  55205. form: "feral"
  55206. },
  55207. ],
  55208. {
  55209. "taur": {
  55210. name: "Taur",
  55211. default: true
  55212. },
  55213. "feral": {
  55214. name: "Feral",
  55215. },
  55216. }
  55217. ))
  55218. characterMakers.push(() => makeCharacter(
  55219. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55220. {
  55221. front: {
  55222. height: math.unit(6, "feet"),
  55223. weight: math.unit(115, "lb"),
  55224. name: "Front",
  55225. image: {
  55226. source: "./media/characters/celeste-kitsune/front.svg",
  55227. extra: 393/366,
  55228. bottom: 7/400
  55229. }
  55230. },
  55231. side: {
  55232. height: math.unit(6, "feet"),
  55233. weight: math.unit(115, "lb"),
  55234. name: "Side",
  55235. image: {
  55236. source: "./media/characters/celeste-kitsune/side.svg",
  55237. extra: 818/765,
  55238. bottom: 40/858
  55239. }
  55240. },
  55241. },
  55242. [
  55243. {
  55244. name: "Megamacro",
  55245. height: math.unit(1500, "miles"),
  55246. default: true
  55247. },
  55248. ]
  55249. ))
  55250. characterMakers.push(() => makeCharacter(
  55251. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55252. {
  55253. front: {
  55254. height: math.unit(8, "meters"),
  55255. name: "Front",
  55256. image: {
  55257. source: "./media/characters/io/front.svg",
  55258. extra: 865/722,
  55259. bottom: 58/923
  55260. }
  55261. },
  55262. back: {
  55263. height: math.unit(8, "meters"),
  55264. name: "Back",
  55265. image: {
  55266. source: "./media/characters/io/back.svg",
  55267. extra: 920/776,
  55268. bottom: 42/962
  55269. }
  55270. },
  55271. head: {
  55272. height: math.unit(5.09, "meters"),
  55273. name: "Head",
  55274. image: {
  55275. source: "./media/characters/io/head.svg"
  55276. }
  55277. },
  55278. hand: {
  55279. height: math.unit(1.6, "meters"),
  55280. name: "Hand",
  55281. image: {
  55282. source: "./media/characters/io/hand.svg"
  55283. }
  55284. },
  55285. foot: {
  55286. height: math.unit(2.4, "meters"),
  55287. name: "Foot",
  55288. image: {
  55289. source: "./media/characters/io/foot.svg"
  55290. }
  55291. },
  55292. },
  55293. [
  55294. {
  55295. name: "Normal",
  55296. height: math.unit(8, "meters"),
  55297. default: true
  55298. },
  55299. ]
  55300. ))
  55301. characterMakers.push(() => makeCharacter(
  55302. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55303. {
  55304. side: {
  55305. height: math.unit(6 + 3/12, "feet"),
  55306. weight: math.unit(225, "lb"),
  55307. name: "Side",
  55308. image: {
  55309. source: "./media/characters/silas/side.svg",
  55310. extra: 703/653,
  55311. bottom: 23/726
  55312. },
  55313. extraAttributes: {
  55314. "pawLength": {
  55315. name: "Paw Length",
  55316. power: 1,
  55317. type: "length",
  55318. base: math.unit(12, "inches")
  55319. },
  55320. "pawWidth": {
  55321. name: "Paw Width",
  55322. power: 1,
  55323. type: "length",
  55324. base: math.unit(4.5, "inches")
  55325. },
  55326. "pawArea": {
  55327. name: "Paw Area",
  55328. power: 2,
  55329. type: "area",
  55330. base: math.unit(12 * 4.5, "inches^2")
  55331. },
  55332. }
  55333. },
  55334. },
  55335. [
  55336. {
  55337. name: "Normal",
  55338. height: math.unit(6 + 3/12, "feet"),
  55339. default: true
  55340. },
  55341. ]
  55342. ))
  55343. characterMakers.push(() => makeCharacter(
  55344. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55345. {
  55346. back: {
  55347. height: math.unit(1.6, "meters"),
  55348. weight: math.unit(150, "lb"),
  55349. name: "Back",
  55350. image: {
  55351. source: "./media/characters/zari/back.svg",
  55352. extra: 424/411,
  55353. bottom: 32/456
  55354. },
  55355. extraAttributes: {
  55356. "bladderCapacity": {
  55357. name: "Bladder Size",
  55358. power: 3,
  55359. type: "volume",
  55360. base: math.unit(500, "mL")
  55361. },
  55362. "bladderFlow": {
  55363. name: "Flow Rate",
  55364. power: 3,
  55365. type: "volume",
  55366. base: math.unit(25, "mL")
  55367. },
  55368. }
  55369. },
  55370. },
  55371. [
  55372. {
  55373. name: "Normal",
  55374. height: math.unit(1.6, "meters"),
  55375. default: true
  55376. },
  55377. ]
  55378. ))
  55379. characterMakers.push(() => makeCharacter(
  55380. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55381. {
  55382. front: {
  55383. height: math.unit(25, "feet"),
  55384. weight: math.unit(5, "tons"),
  55385. name: "Front",
  55386. image: {
  55387. source: "./media/characters/charlie-human/front.svg",
  55388. extra: 1870/1740,
  55389. bottom: 102/1972
  55390. },
  55391. extraAttributes: {
  55392. "dickLength": {
  55393. name: "Dick Length",
  55394. power: 1,
  55395. type: "length",
  55396. base: math.unit(9, "feet")
  55397. },
  55398. }
  55399. },
  55400. back: {
  55401. height: math.unit(25, "feet"),
  55402. weight: math.unit(5, "tons"),
  55403. name: "Back",
  55404. image: {
  55405. source: "./media/characters/charlie-human/back.svg",
  55406. extra: 1858/1733,
  55407. bottom: 105/1963
  55408. },
  55409. extraAttributes: {
  55410. "dickLength": {
  55411. name: "Dick Length",
  55412. power: 1,
  55413. type: "length",
  55414. base: math.unit(9, "feet")
  55415. },
  55416. }
  55417. },
  55418. },
  55419. [
  55420. {
  55421. name: "\"Normal\"",
  55422. height: math.unit(6 + 4/12, "feet")
  55423. },
  55424. {
  55425. name: "Big",
  55426. height: math.unit(25, "feet"),
  55427. default: true
  55428. },
  55429. ]
  55430. ))
  55431. characterMakers.push(() => makeCharacter(
  55432. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55433. {
  55434. front: {
  55435. height: math.unit(6 + 4/12, "feet"),
  55436. weight: math.unit(320, "lb"),
  55437. name: "Front",
  55438. image: {
  55439. source: "./media/characters/ookitsu/front.svg",
  55440. extra: 1160/976,
  55441. bottom: 38/1198
  55442. }
  55443. },
  55444. frontNsfw: {
  55445. height: math.unit(6 + 4/12, "feet"),
  55446. weight: math.unit(320, "lb"),
  55447. name: "Front (NSFW)",
  55448. image: {
  55449. source: "./media/characters/ookitsu/front-nsfw.svg",
  55450. extra: 1160/976,
  55451. bottom: 38/1198
  55452. }
  55453. },
  55454. back: {
  55455. height: math.unit(6 + 4/12, "feet"),
  55456. weight: math.unit(320, "lb"),
  55457. name: "Back",
  55458. image: {
  55459. source: "./media/characters/ookitsu/back.svg",
  55460. extra: 1030/975,
  55461. bottom: 70/1100
  55462. }
  55463. },
  55464. head: {
  55465. height: math.unit(1.79, "feet"),
  55466. name: "Head",
  55467. image: {
  55468. source: "./media/characters/ookitsu/head.svg"
  55469. }
  55470. },
  55471. hand: {
  55472. height: math.unit(0.92, "feet"),
  55473. name: "Hand",
  55474. image: {
  55475. source: "./media/characters/ookitsu/hand.svg"
  55476. }
  55477. },
  55478. tails: {
  55479. height: math.unit(3.3, "feet"),
  55480. name: "Tails",
  55481. image: {
  55482. source: "./media/characters/ookitsu/tails.svg"
  55483. }
  55484. },
  55485. dick: {
  55486. height: math.unit(1.10833, "feet"),
  55487. name: "Dick",
  55488. image: {
  55489. source: "./media/characters/ookitsu/dick.svg"
  55490. }
  55491. },
  55492. },
  55493. [
  55494. {
  55495. name: "Normal",
  55496. height: math.unit(6 + 4/12, "feet"),
  55497. default: true
  55498. },
  55499. {
  55500. name: "Macro",
  55501. height: math.unit(30, "feet")
  55502. },
  55503. ]
  55504. ))
  55505. characterMakers.push(() => makeCharacter(
  55506. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55507. {
  55508. anthroFront: {
  55509. height: math.unit(6, "feet"),
  55510. weight: math.unit(250, "lb"),
  55511. name: "Front",
  55512. image: {
  55513. source: "./media/characters/jhusky/anthro-front.svg",
  55514. extra: 474/439,
  55515. bottom: 7/481
  55516. },
  55517. form: "anthro",
  55518. default: true
  55519. },
  55520. taurSideSfw: {
  55521. height: math.unit(6 + 4/12, "feet"),
  55522. weight: math.unit(500, "lb"),
  55523. name: "Side (SFW)",
  55524. image: {
  55525. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55526. extra: 1741/1629,
  55527. bottom: 196/1937
  55528. },
  55529. form: "taur",
  55530. default: true
  55531. },
  55532. taurSideNsfw: {
  55533. height: math.unit(6 + 4/12, "feet"),
  55534. weight: math.unit(500, "lb"),
  55535. name: "Taur (NSFW)",
  55536. image: {
  55537. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55538. extra: 1741/1629,
  55539. bottom: 196/1937
  55540. },
  55541. form: "taur",
  55542. },
  55543. },
  55544. [
  55545. {
  55546. name: "Huge",
  55547. height: math.unit(500, "feet"),
  55548. form: "anthro"
  55549. },
  55550. {
  55551. name: "Macro",
  55552. height: math.unit(1000, "feet"),
  55553. default: true,
  55554. form: "anthro"
  55555. },
  55556. {
  55557. name: "Megamacro",
  55558. height: math.unit(10000, "feet"),
  55559. form: "anthro"
  55560. },
  55561. {
  55562. name: "Huge",
  55563. height: math.unit(528, "feet"),
  55564. form: "taur"
  55565. },
  55566. {
  55567. name: "Macro",
  55568. height: math.unit(1056, "feet"),
  55569. default: true,
  55570. form: "taur"
  55571. },
  55572. {
  55573. name: "Megamacro",
  55574. height: math.unit(10556, "feet"),
  55575. form: "taur"
  55576. },
  55577. ],
  55578. {
  55579. "anthro": {
  55580. name: "Anthro",
  55581. default: true
  55582. },
  55583. "taur": {
  55584. name: "Taur",
  55585. },
  55586. }
  55587. ))
  55588. characterMakers.push(() => makeCharacter(
  55589. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55590. {
  55591. front: {
  55592. height: math.unit(8, "feet"),
  55593. weight: math.unit(500, "lb"),
  55594. name: "Front",
  55595. image: {
  55596. source: "./media/characters/armail/front.svg",
  55597. extra: 1753/1669,
  55598. bottom: 155/1908
  55599. }
  55600. },
  55601. back: {
  55602. height: math.unit(8, "feet"),
  55603. weight: math.unit(500, "lb"),
  55604. name: "Back",
  55605. image: {
  55606. source: "./media/characters/armail/back.svg",
  55607. extra: 1872/1803,
  55608. bottom: 63/1935
  55609. }
  55610. },
  55611. },
  55612. [
  55613. {
  55614. name: "Micro",
  55615. height: math.unit(0.25, "feet")
  55616. },
  55617. {
  55618. name: "Normal",
  55619. height: math.unit(8, "feet"),
  55620. default: true
  55621. },
  55622. {
  55623. name: "Mini-macro",
  55624. height: math.unit(30, "feet")
  55625. },
  55626. {
  55627. name: "Macro",
  55628. height: math.unit(400, "feet")
  55629. },
  55630. {
  55631. name: "Mega-macro",
  55632. height: math.unit(6000, "feet")
  55633. },
  55634. ]
  55635. ))
  55636. characterMakers.push(() => makeCharacter(
  55637. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55638. {
  55639. front: {
  55640. height: math.unit(6 + 7/12, "feet"),
  55641. weight: math.unit(210, "lb"),
  55642. name: "Front",
  55643. image: {
  55644. source: "./media/characters/wilfred-t-buxton/front.svg",
  55645. extra: 1068/882,
  55646. bottom: 28/1096
  55647. }
  55648. },
  55649. },
  55650. [
  55651. {
  55652. name: "Normal",
  55653. height: math.unit(6 + 7/12, "feet"),
  55654. default: true
  55655. },
  55656. ]
  55657. ))
  55658. characterMakers.push(() => makeCharacter(
  55659. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55660. {
  55661. front: {
  55662. height: math.unit(5 + 2/12, "feet"),
  55663. weight: math.unit(120, "lb"),
  55664. name: "Front",
  55665. image: {
  55666. source: "./media/characters/leighton-marrow/front.svg",
  55667. extra: 441/409,
  55668. bottom: 37/478
  55669. }
  55670. },
  55671. },
  55672. [
  55673. {
  55674. name: "Normal",
  55675. height: math.unit(5 + 2/12, "feet"),
  55676. default: true
  55677. },
  55678. ]
  55679. ))
  55680. characterMakers.push(() => makeCharacter(
  55681. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55682. {
  55683. front: {
  55684. height: math.unit(4, "meters"),
  55685. weight: math.unit(1200, "kg"),
  55686. name: "Front",
  55687. image: {
  55688. source: "./media/characters/licos/front.svg",
  55689. extra: 1727/1604,
  55690. bottom: 101/1828
  55691. },
  55692. form: "anthro",
  55693. default: true
  55694. },
  55695. taur_side: {
  55696. height: math.unit(20, "meters"),
  55697. weight: math.unit(1100000, "kg"),
  55698. name: "Side",
  55699. image: {
  55700. source: "./media/characters/licos/taur.svg",
  55701. extra: 1158/1091,
  55702. bottom: 80/1238
  55703. },
  55704. form: "taur",
  55705. default: true
  55706. },
  55707. },
  55708. [
  55709. {
  55710. name: "Normal",
  55711. height: math.unit(4, "meters"),
  55712. default: true,
  55713. form: "anthro"
  55714. },
  55715. {
  55716. name: "Normal",
  55717. height: math.unit(20, "meters"),
  55718. default: true,
  55719. form: "taur"
  55720. },
  55721. ],
  55722. {
  55723. "anthro": {
  55724. name: "Anthro",
  55725. default: true
  55726. },
  55727. "taur": {
  55728. name: "Taur",
  55729. },
  55730. }
  55731. ))
  55732. characterMakers.push(() => makeCharacter(
  55733. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55734. {
  55735. front: {
  55736. height: math.unit(10 + 3/12, "feet"),
  55737. name: "Front",
  55738. image: {
  55739. source: "./media/characters/theo-monkey/front.svg",
  55740. extra: 1735/1658,
  55741. bottom: 73/1808
  55742. }
  55743. },
  55744. back: {
  55745. height: math.unit(10 + 3/12, "feet"),
  55746. name: "Back",
  55747. image: {
  55748. source: "./media/characters/theo-monkey/back.svg",
  55749. extra: 1742/1664,
  55750. bottom: 33/1775
  55751. }
  55752. },
  55753. head: {
  55754. height: math.unit(2.29, "feet"),
  55755. name: "Head",
  55756. image: {
  55757. source: "./media/characters/theo-monkey/head.svg"
  55758. }
  55759. },
  55760. handPalm: {
  55761. height: math.unit(1.73, "feet"),
  55762. name: "Hand (Palm)",
  55763. image: {
  55764. source: "./media/characters/theo-monkey/hand-palm.svg"
  55765. }
  55766. },
  55767. handBack: {
  55768. height: math.unit(1.63, "feet"),
  55769. name: "Hand (Back)",
  55770. image: {
  55771. source: "./media/characters/theo-monkey/hand-back.svg"
  55772. }
  55773. },
  55774. footSole: {
  55775. height: math.unit(2.15, "feet"),
  55776. name: "Foot (Sole)",
  55777. image: {
  55778. source: "./media/characters/theo-monkey/foot-sole.svg"
  55779. }
  55780. },
  55781. footSide: {
  55782. height: math.unit(1.6, "feet"),
  55783. name: "Foot (Side)",
  55784. image: {
  55785. source: "./media/characters/theo-monkey/foot-side.svg"
  55786. }
  55787. },
  55788. },
  55789. [
  55790. {
  55791. name: "Normal",
  55792. height: math.unit(10 + 3/12, "feet"),
  55793. default: true
  55794. },
  55795. ]
  55796. ))
  55797. characterMakers.push(() => makeCharacter(
  55798. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55799. {
  55800. front: {
  55801. height: math.unit(11, "feet"),
  55802. weight: math.unit(3000, "lb"),
  55803. preyCapacity: math.unit(10, "people"),
  55804. name: "Front",
  55805. image: {
  55806. source: "./media/characters/brook/front.svg",
  55807. extra: 909/835,
  55808. bottom: 108/1017
  55809. }
  55810. },
  55811. back: {
  55812. height: math.unit(11, "feet"),
  55813. weight: math.unit(3000, "lb"),
  55814. preyCapacity: math.unit(10, "people"),
  55815. name: "Back",
  55816. image: {
  55817. source: "./media/characters/brook/back.svg",
  55818. extra: 976/916,
  55819. bottom: 34/1010
  55820. }
  55821. },
  55822. backAlt: {
  55823. height: math.unit(11, "feet"),
  55824. weight: math.unit(3000, "lb"),
  55825. preyCapacity: math.unit(10, "people"),
  55826. name: "Back (Alt)",
  55827. image: {
  55828. source: "./media/characters/brook/back-alt.svg",
  55829. extra: 1283/1213,
  55830. bottom: 35/1318
  55831. }
  55832. },
  55833. bust: {
  55834. height: math.unit(9.0859030837, "feet"),
  55835. weight: math.unit(3000, "lb"),
  55836. preyCapacity: math.unit(10, "people"),
  55837. name: "Bust",
  55838. image: {
  55839. source: "./media/characters/brook/bust.svg",
  55840. extra: 2043/1923,
  55841. bottom: 0/2043
  55842. }
  55843. },
  55844. },
  55845. [
  55846. {
  55847. name: "Small",
  55848. height: math.unit(11, "feet"),
  55849. default: true
  55850. },
  55851. {
  55852. name: "Towering",
  55853. height: math.unit(5, "km")
  55854. },
  55855. {
  55856. name: "Enormous",
  55857. height: math.unit(25, "earths")
  55858. },
  55859. ]
  55860. ))
  55861. characterMakers.push(() => makeCharacter(
  55862. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  55863. {
  55864. front: {
  55865. height: math.unit(4, "feet"),
  55866. weight: math.unit(150, "lb"),
  55867. name: "Front",
  55868. image: {
  55869. source: "./media/characters/squishi/front.svg",
  55870. extra: 1428/1271,
  55871. bottom: 30/1458
  55872. },
  55873. extraAttributes: {
  55874. "pawSize": {
  55875. name: "Paw Size",
  55876. power: 1,
  55877. type: "length",
  55878. base: math.unit(14, "ShoeSizeMensUS"),
  55879. defaultUnit: "ShoeSizeMensUS"
  55880. },
  55881. }
  55882. },
  55883. side: {
  55884. height: math.unit(4, "feet"),
  55885. weight: math.unit(150, "lb"),
  55886. name: "Side",
  55887. image: {
  55888. source: "./media/characters/squishi/side.svg",
  55889. extra: 1428/1271,
  55890. bottom: 30/1458
  55891. },
  55892. extraAttributes: {
  55893. "pawSize": {
  55894. name: "Paw Size",
  55895. power: 1,
  55896. type: "length",
  55897. base: math.unit(14, "ShoeSizeMensUS"),
  55898. defaultUnit: "ShoeSizeMensUS"
  55899. },
  55900. }
  55901. },
  55902. back: {
  55903. height: math.unit(4, "feet"),
  55904. weight: math.unit(150, "lb"),
  55905. name: "Back",
  55906. image: {
  55907. source: "./media/characters/squishi/back.svg",
  55908. extra: 1428/1271,
  55909. bottom: 30/1458
  55910. },
  55911. extraAttributes: {
  55912. "pawSize": {
  55913. name: "Paw Size",
  55914. power: 1,
  55915. type: "length",
  55916. base: math.unit(14, "ShoeSizeMensUS"),
  55917. defaultUnit: "ShoeSizeMensUS"
  55918. },
  55919. }
  55920. },
  55921. },
  55922. [
  55923. {
  55924. name: "Normal",
  55925. height: math.unit(4, "feet"),
  55926. default: true
  55927. },
  55928. ]
  55929. ))
  55930. characterMakers.push(() => makeCharacter(
  55931. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  55932. {
  55933. front: {
  55934. height: math.unit(7 + 8/12, "feet"),
  55935. weight: math.unit(333, "lb"),
  55936. name: "Front",
  55937. image: {
  55938. source: "./media/characters/vincent-vasroc/front.svg",
  55939. extra: 1962/1860,
  55940. bottom: 41/2003
  55941. }
  55942. },
  55943. back: {
  55944. height: math.unit(7 + 8/12, "feet"),
  55945. weight: math.unit(333, "lb"),
  55946. name: "Back",
  55947. image: {
  55948. source: "./media/characters/vincent-vasroc/back.svg",
  55949. extra: 1952/1815,
  55950. bottom: 33/1985
  55951. }
  55952. },
  55953. paw: {
  55954. height: math.unit(1.24, "feet"),
  55955. name: "Paw",
  55956. image: {
  55957. source: "./media/characters/vincent-vasroc/paw.svg"
  55958. }
  55959. },
  55960. ear: {
  55961. height: math.unit(0.75, "feet"),
  55962. name: "Ear",
  55963. image: {
  55964. source: "./media/characters/vincent-vasroc/ear.svg"
  55965. }
  55966. },
  55967. },
  55968. [
  55969. {
  55970. name: "Nano",
  55971. height: math.unit(92, "micrometers")
  55972. },
  55973. {
  55974. name: "Normal",
  55975. height: math.unit(7 + 8/12, "feet"),
  55976. default: true
  55977. },
  55978. ]
  55979. ))
  55980. characterMakers.push(() => makeCharacter(
  55981. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  55982. {
  55983. frontNsfw: {
  55984. height: math.unit(40, "feet"),
  55985. weight: math.unit(58, "tons"),
  55986. name: "Front (NSFW)",
  55987. image: {
  55988. source: "./media/characters/ru-kahn/front-nsfw.svg",
  55989. extra: 1265/965,
  55990. bottom: 155/1420
  55991. }
  55992. },
  55993. frontSfw: {
  55994. height: math.unit(40, "feet"),
  55995. weight: math.unit(58, "tons"),
  55996. name: "Front (SFW)",
  55997. image: {
  55998. source: "./media/characters/ru-kahn/front-sfw.svg",
  55999. extra: 1265/965,
  56000. bottom: 80/1345
  56001. }
  56002. },
  56003. },
  56004. [
  56005. {
  56006. name: "Small",
  56007. height: math.unit(4, "feet")
  56008. },
  56009. {
  56010. name: "Normal",
  56011. height: math.unit(40, "feet"),
  56012. default: true
  56013. },
  56014. {
  56015. name: "Macro",
  56016. height: math.unit(400, "feet")
  56017. },
  56018. ]
  56019. ))
  56020. characterMakers.push(() => makeCharacter(
  56021. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56022. {
  56023. frontNude: {
  56024. height: math.unit(6 + 5/12, "feet"),
  56025. name: "Front (Nude)",
  56026. image: {
  56027. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56028. extra: 1369/1366,
  56029. bottom: 68/1437
  56030. }
  56031. },
  56032. frontDressed: {
  56033. height: math.unit(6 + 5/12, "feet"),
  56034. name: "Front (Dressed)",
  56035. image: {
  56036. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56037. extra: 1369/1366,
  56038. bottom: 68/1437
  56039. }
  56040. },
  56041. },
  56042. [
  56043. {
  56044. name: "Normal",
  56045. height: math.unit(6 + 5/12, "feet"),
  56046. default: true
  56047. },
  56048. {
  56049. name: "Maximum",
  56050. height: math.unit(1930, "feet")
  56051. },
  56052. ]
  56053. ))
  56054. characterMakers.push(() => makeCharacter(
  56055. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56056. {
  56057. front: {
  56058. height: math.unit(5 + 6/12, "feet"),
  56059. name: "Front",
  56060. image: {
  56061. source: "./media/characters/kaja/front.svg",
  56062. extra: 1874/1514,
  56063. bottom: 117/1991
  56064. }
  56065. },
  56066. },
  56067. [
  56068. {
  56069. name: "Normal",
  56070. height: math.unit(5 + 6/12, "feet"),
  56071. default: true
  56072. },
  56073. ]
  56074. ))
  56075. characterMakers.push(() => makeCharacter(
  56076. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56077. {
  56078. front: {
  56079. height: math.unit(5 + 9/12, "feet"),
  56080. weight: math.unit(200, "lb"),
  56081. name: "Front",
  56082. image: {
  56083. source: "./media/characters/mark-smith/front.svg",
  56084. extra: 1004/943,
  56085. bottom: 58/1062
  56086. }
  56087. },
  56088. back: {
  56089. height: math.unit(5 + 9/12, "feet"),
  56090. weight: math.unit(200, "lb"),
  56091. name: "Back",
  56092. image: {
  56093. source: "./media/characters/mark-smith/back.svg",
  56094. extra: 1023/953,
  56095. bottom: 24/1047
  56096. }
  56097. },
  56098. head: {
  56099. height: math.unit(1.82, "feet"),
  56100. name: "Head",
  56101. image: {
  56102. source: "./media/characters/mark-smith/head.svg"
  56103. }
  56104. },
  56105. hand: {
  56106. height: math.unit(1.4, "feet"),
  56107. name: "Hand",
  56108. image: {
  56109. source: "./media/characters/mark-smith/hand.svg"
  56110. }
  56111. },
  56112. paw: {
  56113. height: math.unit(1.69, "feet"),
  56114. name: "Paw",
  56115. image: {
  56116. source: "./media/characters/mark-smith/paw.svg"
  56117. }
  56118. },
  56119. },
  56120. [
  56121. {
  56122. name: "Micro",
  56123. height: math.unit(0.25, "inches")
  56124. },
  56125. {
  56126. name: "Normal",
  56127. height: math.unit(5 + 9/12, "feet"),
  56128. default: true
  56129. },
  56130. {
  56131. name: "Macro",
  56132. height: math.unit(500, "feet")
  56133. },
  56134. ]
  56135. ))
  56136. characterMakers.push(() => makeCharacter(
  56137. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56138. {
  56139. frontNude: {
  56140. height: math.unit(6, "feet"),
  56141. name: "Front (Nude)",
  56142. image: {
  56143. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56144. extra: 1384/1321,
  56145. bottom: 57/1441
  56146. }
  56147. },
  56148. frontDressed: {
  56149. height: math.unit(6, "feet"),
  56150. name: "Front (Dressed)",
  56151. image: {
  56152. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56153. extra: 1384/1321,
  56154. bottom: 57/1441
  56155. }
  56156. },
  56157. },
  56158. [
  56159. {
  56160. name: "Normal",
  56161. height: math.unit(6, "feet"),
  56162. default: true
  56163. },
  56164. {
  56165. name: "Maximum",
  56166. height: math.unit(1776, "feet")
  56167. },
  56168. ]
  56169. ))
  56170. characterMakers.push(() => makeCharacter(
  56171. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56172. {
  56173. front: {
  56174. height: math.unit(2 + 4/12, "feet"),
  56175. weight: math.unit(350, "lb"),
  56176. name: "Front",
  56177. image: {
  56178. source: "./media/characters/devos/front.svg",
  56179. extra: 958/852,
  56180. bottom: 143/1101
  56181. }
  56182. },
  56183. },
  56184. [
  56185. {
  56186. name: "Base",
  56187. height: math.unit(2 + 4/12, "feet"),
  56188. default: true
  56189. },
  56190. ]
  56191. ))
  56192. characterMakers.push(() => makeCharacter(
  56193. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56194. {
  56195. front: {
  56196. height: math.unit(9 + 2/12, "feet"),
  56197. name: "Front",
  56198. image: {
  56199. source: "./media/characters/hiveheart/front.svg",
  56200. extra: 394/364,
  56201. bottom: 65/459
  56202. }
  56203. },
  56204. back: {
  56205. height: math.unit(9 + 2/12, "feet"),
  56206. name: "Back",
  56207. image: {
  56208. source: "./media/characters/hiveheart/back.svg",
  56209. extra: 374/357,
  56210. bottom: 63/437
  56211. }
  56212. },
  56213. },
  56214. [
  56215. {
  56216. name: "Base",
  56217. height: math.unit(9 + 2/12, "feet"),
  56218. default: true
  56219. },
  56220. ]
  56221. ))
  56222. characterMakers.push(() => makeCharacter(
  56223. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56224. {
  56225. front: {
  56226. height: math.unit(2.5, "inches"),
  56227. weight: math.unit(0.6, "oz"),
  56228. name: "Front",
  56229. image: {
  56230. source: "./media/characters/bryn/front.svg",
  56231. extra: 1480/1205,
  56232. bottom: 27/1507
  56233. }
  56234. },
  56235. back: {
  56236. height: math.unit(2.5, "inches"),
  56237. weight: math.unit(0.6, "oz"),
  56238. name: "Back",
  56239. image: {
  56240. source: "./media/characters/bryn/back.svg",
  56241. extra: 1475/1201,
  56242. bottom: 39/1514
  56243. }
  56244. },
  56245. foot: {
  56246. height: math.unit(0.4, "inches"),
  56247. name: "Foot",
  56248. image: {
  56249. source: "./media/characters/bryn/foot.svg"
  56250. }
  56251. },
  56252. },
  56253. [
  56254. {
  56255. name: "Normal",
  56256. height: math.unit(2.5, "inches"),
  56257. default: true
  56258. },
  56259. ]
  56260. ))
  56261. characterMakers.push(() => makeCharacter(
  56262. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56263. {
  56264. side: {
  56265. height: math.unit(7, "feet"),
  56266. weight: math.unit(657, "kg"),
  56267. name: "Side",
  56268. image: {
  56269. source: "./media/characters/delta/side.svg",
  56270. extra: 781/212,
  56271. bottom: 7/788
  56272. },
  56273. extraAttributes: {
  56274. "wingspan": {
  56275. name: "Wingspan",
  56276. power: 1,
  56277. type: "length",
  56278. base: math.unit(48, "feet")
  56279. },
  56280. "length": {
  56281. name: "Length",
  56282. power: 1,
  56283. type: "length",
  56284. base: math.unit(21, "feet")
  56285. },
  56286. "pawSize": {
  56287. name: "Paw Size",
  56288. power: 2,
  56289. type: "area",
  56290. base: math.unit(1.5*1.4, "feet^2")
  56291. },
  56292. }
  56293. },
  56294. },
  56295. [
  56296. {
  56297. name: "Normal",
  56298. height: math.unit(6, "feet"),
  56299. default: true
  56300. },
  56301. ]
  56302. ))
  56303. characterMakers.push(() => makeCharacter(
  56304. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56305. {
  56306. front: {
  56307. height: math.unit(6, "feet"),
  56308. name: "Front",
  56309. image: {
  56310. source: "./media/characters/pyrow/front.svg",
  56311. extra: 513/486,
  56312. bottom: 14/527
  56313. }
  56314. },
  56315. frontWing: {
  56316. height: math.unit(6, "feet"),
  56317. name: "Front (Wing)",
  56318. image: {
  56319. source: "./media/characters/pyrow/front-wing.svg",
  56320. extra: 539/383,
  56321. bottom: 20/559
  56322. }
  56323. },
  56324. back: {
  56325. height: math.unit(6, "feet"),
  56326. name: "Back",
  56327. image: {
  56328. source: "./media/characters/pyrow/back.svg",
  56329. extra: 500/473,
  56330. bottom: 9/509
  56331. }
  56332. },
  56333. },
  56334. [
  56335. {
  56336. name: "Normal",
  56337. height: math.unit(6, "feet"),
  56338. default: true
  56339. },
  56340. ]
  56341. ))
  56342. characterMakers.push(() => makeCharacter(
  56343. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56344. {
  56345. front: {
  56346. height: math.unit(5, "meters"),
  56347. weight: math.unit(3, "tonnes"),
  56348. name: "Front",
  56349. image: {
  56350. source: "./media/characters/velikan/front.svg",
  56351. extra: 867/744,
  56352. bottom: 71/938
  56353. },
  56354. extraAttributes: {
  56355. "shoeSize": {
  56356. name: "Shoe Size",
  56357. power: 1,
  56358. type: "length",
  56359. base: math.unit(135, "ShoeSizeUK"),
  56360. defaultUnit: "ShoeSizeUK"
  56361. },
  56362. }
  56363. },
  56364. },
  56365. [
  56366. {
  56367. name: "Normal",
  56368. height: math.unit(5, "meters"),
  56369. default: true
  56370. },
  56371. {
  56372. name: "Macro",
  56373. height: math.unit(1, "km")
  56374. },
  56375. {
  56376. name: "Mega Macro",
  56377. height: math.unit(100, "km")
  56378. },
  56379. {
  56380. name: "Giga Macro",
  56381. height: math.unit(2, "megameters")
  56382. },
  56383. {
  56384. name: "Planetary",
  56385. height: math.unit(22, "megameters")
  56386. },
  56387. {
  56388. name: "Solar",
  56389. height: math.unit(8, "gigameters")
  56390. },
  56391. {
  56392. name: "Cosmic",
  56393. height: math.unit(10, "zettameters")
  56394. },
  56395. {
  56396. name: "Omni",
  56397. height: math.unit(9e260, "multiverses")
  56398. },
  56399. ]
  56400. ))
  56401. characterMakers.push(() => makeCharacter(
  56402. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56403. {
  56404. front: {
  56405. height: math.unit(4 + 3/12, "feet"),
  56406. weight: math.unit(90, "lb"),
  56407. name: "Front",
  56408. image: {
  56409. source: "./media/characters/sabiki/front.svg",
  56410. extra: 1662/1423,
  56411. bottom: 65/1727
  56412. }
  56413. },
  56414. },
  56415. [
  56416. {
  56417. name: "Normal",
  56418. height: math.unit(4 + 3/12, "feet"),
  56419. default: true
  56420. },
  56421. ]
  56422. ))
  56423. characterMakers.push(() => makeCharacter(
  56424. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56425. {
  56426. frontSfw: {
  56427. height: math.unit(2, "mm"),
  56428. name: "Front (SFW)",
  56429. image: {
  56430. source: "./media/characters/carmel/front-sfw.svg",
  56431. extra: 1131/1006,
  56432. bottom: 66/1197
  56433. }
  56434. },
  56435. frontNsfw: {
  56436. height: math.unit(2, "mm"),
  56437. name: "Front (NSFW)",
  56438. image: {
  56439. source: "./media/characters/carmel/front-nsfw.svg",
  56440. extra: 1131/1006,
  56441. bottom: 66/1197
  56442. }
  56443. },
  56444. foot: {
  56445. height: math.unit(0.3, "mm"),
  56446. name: "Foot",
  56447. image: {
  56448. source: "./media/characters/carmel/foot.svg"
  56449. }
  56450. },
  56451. tongue: {
  56452. height: math.unit(0.71, "mm"),
  56453. name: "Tongue",
  56454. image: {
  56455. source: "./media/characters/carmel/tongue.svg"
  56456. }
  56457. },
  56458. dick: {
  56459. height: math.unit(0.085, "mm"),
  56460. name: "Dick",
  56461. image: {
  56462. source: "./media/characters/carmel/dick.svg"
  56463. }
  56464. },
  56465. },
  56466. [
  56467. {
  56468. name: "Micro",
  56469. height: math.unit(2, "mm"),
  56470. default: true
  56471. },
  56472. {
  56473. name: "Normal",
  56474. height: math.unit(4 + 8/12, "feet")
  56475. },
  56476. {
  56477. name: "Mega Macro",
  56478. height: math.unit(250, "feet")
  56479. },
  56480. {
  56481. name: "BIGGER",
  56482. height: math.unit(1000, "feet")
  56483. },
  56484. {
  56485. name: "BIGGEST",
  56486. height: math.unit(2, "miles")
  56487. },
  56488. ]
  56489. ))
  56490. characterMakers.push(() => makeCharacter(
  56491. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56492. {
  56493. front: {
  56494. height: math.unit(6.5, "feet"),
  56495. weight: math.unit(198, "lb"),
  56496. name: "Front",
  56497. image: {
  56498. source: "./media/characters/tamani/anthro.svg",
  56499. extra: 930/890,
  56500. bottom: 34/964
  56501. },
  56502. form: "anthro",
  56503. default: true
  56504. },
  56505. side: {
  56506. height: math.unit(6, "feet"),
  56507. weight: math.unit(198*2, "lb"),
  56508. name: "Side",
  56509. image: {
  56510. source: "./media/characters/tamani/feral.svg",
  56511. extra: 559/519,
  56512. bottom: 43/602
  56513. },
  56514. form: "feral"
  56515. },
  56516. },
  56517. [
  56518. {
  56519. name: "Normal",
  56520. height: math.unit(6.5, "feet"),
  56521. default: true,
  56522. form: "anthro"
  56523. },
  56524. {
  56525. name: "Normal",
  56526. height: math.unit(6, "feet"),
  56527. default: true,
  56528. form: "feral"
  56529. },
  56530. ],
  56531. {
  56532. "anthro": {
  56533. name: "Anthro",
  56534. default: true
  56535. },
  56536. "feral": {
  56537. name: "Feral",
  56538. },
  56539. }
  56540. ))
  56541. characterMakers.push(() => makeCharacter(
  56542. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56543. {
  56544. front: {
  56545. height: math.unit(4 + 1/12, "feet"),
  56546. weight: math.unit(114, "lb"),
  56547. name: "Front",
  56548. image: {
  56549. source: "./media/characters/dex/front.svg",
  56550. extra: 787/680,
  56551. bottom: 18/805
  56552. }
  56553. },
  56554. side: {
  56555. height: math.unit(4 + 1/12, "feet"),
  56556. weight: math.unit(114, "lb"),
  56557. name: "Side",
  56558. image: {
  56559. source: "./media/characters/dex/side.svg",
  56560. extra: 785/680,
  56561. bottom: 12/797
  56562. }
  56563. },
  56564. back: {
  56565. height: math.unit(4 + 1/12, "feet"),
  56566. weight: math.unit(114, "lb"),
  56567. name: "Back",
  56568. image: {
  56569. source: "./media/characters/dex/back.svg",
  56570. extra: 785/681,
  56571. bottom: 17/802
  56572. }
  56573. },
  56574. loungewear: {
  56575. height: math.unit(4 + 1/12, "feet"),
  56576. weight: math.unit(114, "lb"),
  56577. name: "Loungewear",
  56578. image: {
  56579. source: "./media/characters/dex/loungewear.svg",
  56580. extra: 787/680,
  56581. bottom: 18/805
  56582. }
  56583. },
  56584. workout: {
  56585. height: math.unit(4 + 1/12, "feet"),
  56586. weight: math.unit(114, "lb"),
  56587. name: "Workout",
  56588. image: {
  56589. source: "./media/characters/dex/workout.svg",
  56590. extra: 787/680,
  56591. bottom: 18/805
  56592. }
  56593. },
  56594. schoolUniform: {
  56595. height: math.unit(4 + 1/12, "feet"),
  56596. weight: math.unit(114, "lb"),
  56597. name: "School-uniform",
  56598. image: {
  56599. source: "./media/characters/dex/school-uniform.svg",
  56600. extra: 787/680,
  56601. bottom: 18/805
  56602. }
  56603. },
  56604. maw: {
  56605. height: math.unit(0.55, "feet"),
  56606. name: "Maw",
  56607. image: {
  56608. source: "./media/characters/dex/maw.svg"
  56609. }
  56610. },
  56611. paw: {
  56612. height: math.unit(0.87, "feet"),
  56613. name: "Paw",
  56614. image: {
  56615. source: "./media/characters/dex/paw.svg"
  56616. }
  56617. },
  56618. bust: {
  56619. height: math.unit(1.67, "feet"),
  56620. name: "Bust",
  56621. image: {
  56622. source: "./media/characters/dex/bust.svg"
  56623. }
  56624. },
  56625. },
  56626. [
  56627. {
  56628. name: "Normal",
  56629. height: math.unit(4 + 1/12, "feet"),
  56630. default: true
  56631. },
  56632. ]
  56633. ))
  56634. characterMakers.push(() => makeCharacter(
  56635. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56636. {
  56637. front: {
  56638. height: math.unit(4 + 3/12, "feet"),
  56639. weight: math.unit(60, "lb"),
  56640. name: "Front",
  56641. image: {
  56642. source: "./media/characters/silke/front.svg",
  56643. extra: 1334/1122,
  56644. bottom: 21/1355
  56645. }
  56646. },
  56647. back: {
  56648. height: math.unit(4 + 3/12, "feet"),
  56649. weight: math.unit(60, "lb"),
  56650. name: "Back",
  56651. image: {
  56652. source: "./media/characters/silke/back.svg",
  56653. extra: 1328/1092,
  56654. bottom: 16/1344
  56655. }
  56656. },
  56657. dressed: {
  56658. height: math.unit(4 + 3/12, "feet"),
  56659. weight: math.unit(60, "lb"),
  56660. name: "Dressed",
  56661. image: {
  56662. source: "./media/characters/silke/dressed.svg",
  56663. extra: 1334/1122,
  56664. bottom: 43/1377
  56665. }
  56666. },
  56667. },
  56668. [
  56669. {
  56670. name: "Normal",
  56671. height: math.unit(4 + 3/12, "feet"),
  56672. default: true
  56673. },
  56674. ]
  56675. ))
  56676. characterMakers.push(() => makeCharacter(
  56677. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56678. {
  56679. front: {
  56680. height: math.unit(1.58, "meters"),
  56681. weight: math.unit(47, "kg"),
  56682. name: "Front",
  56683. image: {
  56684. source: "./media/characters/wireshark/front.svg",
  56685. extra: 883/838,
  56686. bottom: 66/949
  56687. }
  56688. },
  56689. },
  56690. [
  56691. {
  56692. name: "Normal",
  56693. height: math.unit(1.58, "meters"),
  56694. default: true
  56695. },
  56696. ]
  56697. ))
  56698. characterMakers.push(() => makeCharacter(
  56699. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56700. {
  56701. front: {
  56702. height: math.unit(6, "meters"),
  56703. weight: math.unit(15000, "kg"),
  56704. name: "Front",
  56705. image: {
  56706. source: "./media/characters/gallagher/front.svg",
  56707. extra: 532/493,
  56708. bottom: 0/532
  56709. }
  56710. },
  56711. },
  56712. [
  56713. {
  56714. name: "Normal",
  56715. height: math.unit(6, "meters"),
  56716. default: true
  56717. },
  56718. ]
  56719. ))
  56720. characterMakers.push(() => makeCharacter(
  56721. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56722. {
  56723. front: {
  56724. height: math.unit(2.4, "meters"),
  56725. weight: math.unit(270, "kg"),
  56726. name: "Front",
  56727. image: {
  56728. source: "./media/characters/alice/front.svg",
  56729. extra: 950/900,
  56730. bottom: 36/986
  56731. }
  56732. },
  56733. side: {
  56734. height: math.unit(2.4, "meters"),
  56735. weight: math.unit(270, "kg"),
  56736. name: "Side",
  56737. image: {
  56738. source: "./media/characters/alice/side.svg",
  56739. extra: 921/876,
  56740. bottom: 19/940
  56741. }
  56742. },
  56743. dressed: {
  56744. height: math.unit(2.4, "meters"),
  56745. weight: math.unit(270, "kg"),
  56746. name: "Dressed",
  56747. image: {
  56748. source: "./media/characters/alice/dressed.svg",
  56749. extra: 905/850,
  56750. bottom: 81/986
  56751. }
  56752. },
  56753. fishnet: {
  56754. height: math.unit(2.4, "meters"),
  56755. weight: math.unit(270, "kg"),
  56756. name: "Fishnet",
  56757. image: {
  56758. source: "./media/characters/alice/fishnet.svg",
  56759. extra: 905/850,
  56760. bottom: 81/986
  56761. }
  56762. },
  56763. },
  56764. [
  56765. {
  56766. name: "Normal",
  56767. height: math.unit(2.4, "meters"),
  56768. default: true
  56769. },
  56770. ]
  56771. ))
  56772. characterMakers.push(() => makeCharacter(
  56773. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56774. {
  56775. front: {
  56776. height: math.unit(175.25, "feet"),
  56777. name: "Front",
  56778. image: {
  56779. source: "./media/characters/fio/front.svg",
  56780. extra: 1883/1591,
  56781. bottom: 34/1917
  56782. }
  56783. },
  56784. },
  56785. [
  56786. {
  56787. name: "Normal",
  56788. height: math.unit(175.25, "cm"),
  56789. default: true
  56790. },
  56791. ]
  56792. ))
  56793. characterMakers.push(() => makeCharacter(
  56794. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56795. {
  56796. side: {
  56797. height: math.unit(6, "meters"),
  56798. weight: math.unit(3400, "kg"),
  56799. preyCapacity: math.unit(1700, "liters"),
  56800. name: "Side",
  56801. image: {
  56802. source: "./media/characters/hass/side.svg",
  56803. extra: 1058/997,
  56804. bottom: 177/1235
  56805. }
  56806. },
  56807. feeding: {
  56808. height: math.unit(6*0.63, "meters"),
  56809. weight: math.unit(3400, "kg"),
  56810. preyCapacity: math.unit(1700, "liters"),
  56811. name: "Feeding",
  56812. image: {
  56813. source: "./media/characters/hass/feeding.svg",
  56814. extra: 689/579,
  56815. bottom: 146/835
  56816. }
  56817. },
  56818. guts: {
  56819. height: math.unit(6, "meters"),
  56820. weight: math.unit(3400, "kg"),
  56821. name: "Guts",
  56822. image: {
  56823. source: "./media/characters/hass/guts.svg",
  56824. extra: 1223/1198,
  56825. bottom: 182/1405
  56826. }
  56827. },
  56828. dickFront: {
  56829. height: math.unit(1.4, "meters"),
  56830. name: "Dick (Front)",
  56831. image: {
  56832. source: "./media/characters/hass/dick-front.svg"
  56833. }
  56834. },
  56835. dickSide: {
  56836. height: math.unit(1.3, "meters"),
  56837. name: "Dick (Side)",
  56838. image: {
  56839. source: "./media/characters/hass/dick-side.svg"
  56840. }
  56841. },
  56842. dickBack: {
  56843. height: math.unit(1.4, "meters"),
  56844. name: "Dick (Back)",
  56845. image: {
  56846. source: "./media/characters/hass/dick-back.svg"
  56847. }
  56848. },
  56849. },
  56850. [
  56851. {
  56852. name: "Normal",
  56853. height: math.unit(6, "meters"),
  56854. default: true
  56855. },
  56856. ]
  56857. ))
  56858. characterMakers.push(() => makeCharacter(
  56859. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56860. {
  56861. front: {
  56862. height: math.unit(4, "feet"),
  56863. weight: math.unit(60, "lb"),
  56864. name: "Front",
  56865. image: {
  56866. source: "./media/characters/hickory-finnegan/front.svg",
  56867. extra: 444/411,
  56868. bottom: 10/454
  56869. }
  56870. },
  56871. side: {
  56872. height: math.unit(4, "feet"),
  56873. weight: math.unit(60, "lb"),
  56874. name: "Side",
  56875. image: {
  56876. source: "./media/characters/hickory-finnegan/side.svg",
  56877. extra: 444/411,
  56878. bottom: 10/454
  56879. }
  56880. },
  56881. back: {
  56882. height: math.unit(4, "feet"),
  56883. weight: math.unit(60, "lb"),
  56884. name: "Back",
  56885. image: {
  56886. source: "./media/characters/hickory-finnegan/back.svg",
  56887. extra: 444/411,
  56888. bottom: 10/454
  56889. }
  56890. },
  56891. },
  56892. [
  56893. {
  56894. name: "Normal",
  56895. height: math.unit(4, "feet"),
  56896. default: true
  56897. },
  56898. ]
  56899. ))
  56900. characterMakers.push(() => makeCharacter(
  56901. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  56902. {
  56903. snivy_front: {
  56904. height: math.unit(2, "feet"),
  56905. weight: math.unit(17.9, "lb"),
  56906. name: "Front",
  56907. image: {
  56908. source: "./media/characters/robin-phox/snivy-front.svg",
  56909. extra: 569/504,
  56910. bottom: 33/602
  56911. },
  56912. form: "snivy",
  56913. default: true
  56914. },
  56915. snivy_frontNsfw: {
  56916. height: math.unit(2, "feet"),
  56917. weight: math.unit(17.9, "lb"),
  56918. name: "Front (NSFW)",
  56919. image: {
  56920. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  56921. extra: 569/504,
  56922. bottom: 33/602
  56923. },
  56924. form: "snivy",
  56925. },
  56926. snivy_back: {
  56927. height: math.unit(2, "feet"),
  56928. weight: math.unit(17.9, "lb"),
  56929. name: "Back",
  56930. image: {
  56931. source: "./media/characters/robin-phox/snivy-back.svg",
  56932. extra: 577/508,
  56933. bottom: 21/598
  56934. },
  56935. form: "snivy",
  56936. },
  56937. snivy_foot: {
  56938. height: math.unit(0.68, "feet"),
  56939. name: "Foot",
  56940. image: {
  56941. source: "./media/characters/robin-phox/snivy-foot.svg"
  56942. },
  56943. form: "snivy",
  56944. },
  56945. snivy_sole: {
  56946. height: math.unit(0.68, "feet"),
  56947. name: "Sole",
  56948. image: {
  56949. source: "./media/characters/robin-phox/snivy-sole.svg"
  56950. },
  56951. form: "snivy",
  56952. },
  56953. yoshi_front: {
  56954. height: math.unit(6, "feet"),
  56955. weight: math.unit(150, "lb"),
  56956. name: "Front",
  56957. image: {
  56958. source: "./media/characters/robin-phox/yoshi-front.svg",
  56959. extra: 890/792,
  56960. bottom: 29/919
  56961. },
  56962. form: "yoshi",
  56963. default: true
  56964. },
  56965. yoshi_frontNsfw: {
  56966. height: math.unit(6, "feet"),
  56967. weight: math.unit(150, "lb"),
  56968. name: "Front (NSFW)",
  56969. image: {
  56970. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  56971. extra: 890/792,
  56972. bottom: 29/919
  56973. },
  56974. form: "yoshi",
  56975. },
  56976. yoshi_back: {
  56977. height: math.unit(6, "feet"),
  56978. weight: math.unit(150, "lb"),
  56979. name: "Back",
  56980. image: {
  56981. source: "./media/characters/robin-phox/yoshi-back.svg",
  56982. extra: 890/792,
  56983. bottom: 29/919
  56984. },
  56985. form: "yoshi",
  56986. },
  56987. yoshi_foot: {
  56988. height: math.unit(1.5, "feet"),
  56989. name: "Foot",
  56990. image: {
  56991. source: "./media/characters/robin-phox/yoshi-foot.svg"
  56992. },
  56993. form: "yoshi",
  56994. },
  56995. delphox_front: {
  56996. height: math.unit(4 + 11/12, "feet"),
  56997. weight: math.unit(86, "lb"),
  56998. name: "Front",
  56999. image: {
  57000. source: "./media/characters/robin-phox/delphox-front.svg",
  57001. extra: 1266/1069,
  57002. bottom: 32/1298
  57003. },
  57004. form: "delphox",
  57005. default: true
  57006. },
  57007. delphox_frontNsfw: {
  57008. height: math.unit(4 + 11/12, "feet"),
  57009. weight: math.unit(86, "lb"),
  57010. name: "Front (NSFW)",
  57011. image: {
  57012. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57013. extra: 1266/1069,
  57014. bottom: 32/1298
  57015. },
  57016. form: "delphox",
  57017. },
  57018. delphox_back: {
  57019. height: math.unit(4 + 11/12, "feet"),
  57020. weight: math.unit(86, "lb"),
  57021. name: "Back",
  57022. image: {
  57023. source: "./media/characters/robin-phox/delphox-back.svg",
  57024. extra: 1269/1083,
  57025. bottom: 15/1284
  57026. },
  57027. form: "delphox",
  57028. },
  57029. mienshao_front: {
  57030. height: math.unit(4 + 7/12, "feet"),
  57031. weight: math.unit(78.3, "lb"),
  57032. name: "Front",
  57033. image: {
  57034. source: "./media/characters/robin-phox/mienshao-front.svg",
  57035. extra: 1052/970,
  57036. bottom: 108/1160
  57037. },
  57038. form: "mienshao",
  57039. default: true
  57040. },
  57041. mienshao_frontNsfw: {
  57042. height: math.unit(4 + 7/12, "feet"),
  57043. weight: math.unit(78.3, "lb"),
  57044. name: "Front (NSFW)",
  57045. image: {
  57046. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57047. extra: 1052/970,
  57048. bottom: 108/1160
  57049. },
  57050. form: "mienshao",
  57051. },
  57052. mienshao_back: {
  57053. height: math.unit(4 + 7/12, "feet"),
  57054. weight: math.unit(78.3, "lb"),
  57055. name: "Back",
  57056. image: {
  57057. source: "./media/characters/robin-phox/mienshao-back.svg",
  57058. extra: 1102/982,
  57059. bottom: 32/1134
  57060. },
  57061. form: "mienshao",
  57062. },
  57063. inteleon_front: {
  57064. height: math.unit(6 + 3/12, "feet"),
  57065. weight: math.unit(99.6, "lb"),
  57066. name: "Front",
  57067. image: {
  57068. source: "./media/characters/robin-phox/inteleon-front.svg",
  57069. extra: 910/799,
  57070. bottom: 76/986
  57071. },
  57072. form: "inteleon",
  57073. default: true
  57074. },
  57075. inteleon_frontNsfw: {
  57076. height: math.unit(6 + 3/12, "feet"),
  57077. weight: math.unit(99.6, "lb"),
  57078. name: "Front (NSFW)",
  57079. image: {
  57080. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57081. extra: 910/799,
  57082. bottom: 76/986
  57083. },
  57084. form: "inteleon",
  57085. },
  57086. inteleon_back: {
  57087. height: math.unit(6 + 3/12, "feet"),
  57088. weight: math.unit(99.6, "lb"),
  57089. name: "Back",
  57090. image: {
  57091. source: "./media/characters/robin-phox/inteleon-back.svg",
  57092. extra: 907/796,
  57093. bottom: 25/932
  57094. },
  57095. form: "inteleon",
  57096. },
  57097. reshiram_front: {
  57098. height: math.unit(10 + 6/12, "feet"),
  57099. weight: math.unit(727.5, "lb"),
  57100. name: "Front",
  57101. image: {
  57102. source: "./media/characters/robin-phox/reshiram-front.svg",
  57103. extra: 1198/940,
  57104. bottom: 123/1321
  57105. },
  57106. form: "reshiram",
  57107. },
  57108. reshiram_frontNsfw: {
  57109. height: math.unit(10 + 6/12, "feet"),
  57110. weight: math.unit(727.5, "lb"),
  57111. name: "Front-nsfw",
  57112. image: {
  57113. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57114. extra: 1198/940,
  57115. bottom: 123/1321
  57116. },
  57117. form: "reshiram",
  57118. },
  57119. reshiram_back: {
  57120. height: math.unit(10 + 6/12, "feet"),
  57121. weight: math.unit(727.5, "lb"),
  57122. name: "Back",
  57123. image: {
  57124. source: "./media/characters/robin-phox/reshiram-back.svg",
  57125. extra: 1024/904,
  57126. bottom: 85/1109
  57127. },
  57128. form: "reshiram",
  57129. },
  57130. samurott_front: {
  57131. height: math.unit(8, "feet"),
  57132. weight: math.unit(208.6, "lb"),
  57133. name: "Front",
  57134. image: {
  57135. source: "./media/characters/robin-phox/samurott-front.svg",
  57136. extra: 1048/984,
  57137. bottom: 100/1148
  57138. },
  57139. form: "samurott",
  57140. },
  57141. samurott_frontNsfw: {
  57142. height: math.unit(8, "feet"),
  57143. weight: math.unit(208.6, "lb"),
  57144. name: "Front-nsfw",
  57145. image: {
  57146. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57147. extra: 1048/984,
  57148. bottom: 100/1148
  57149. },
  57150. form: "samurott",
  57151. },
  57152. samurott_back: {
  57153. height: math.unit(8, "feet"),
  57154. weight: math.unit(208.6, "lb"),
  57155. name: "Back",
  57156. image: {
  57157. source: "./media/characters/robin-phox/samurott-back.svg",
  57158. extra: 1110/1042,
  57159. bottom: 12/1122
  57160. },
  57161. form: "samurott",
  57162. },
  57163. samurott_feral: {
  57164. height: math.unit(4 + 11/12, "feet"),
  57165. weight: math.unit(208.6, "lb"),
  57166. name: "Feral",
  57167. image: {
  57168. source: "./media/characters/robin-phox/samurott-feral.svg",
  57169. extra: 766/681,
  57170. bottom: 108/874
  57171. },
  57172. form: "samurott",
  57173. },
  57174. },
  57175. [
  57176. {
  57177. name: "Normal",
  57178. height: math.unit(2, "feet"),
  57179. default: true,
  57180. form: "snivy"
  57181. },
  57182. {
  57183. name: "Normal",
  57184. height: math.unit(6, "feet"),
  57185. default: true,
  57186. form: "yoshi"
  57187. },
  57188. {
  57189. name: "Normal",
  57190. height: math.unit(4 + 11/12, "feet"),
  57191. default: true,
  57192. form: "delphox"
  57193. },
  57194. {
  57195. name: "Normal",
  57196. height: math.unit(4 + 7/12, "feet"),
  57197. default: true,
  57198. form: "mienshao"
  57199. },
  57200. {
  57201. name: "Normal",
  57202. height: math.unit(6 + 3/12, "feet"),
  57203. default: true,
  57204. form: "inteleon"
  57205. },
  57206. {
  57207. name: "Normal",
  57208. height: math.unit(10 + 6/12, "feet"),
  57209. default: true,
  57210. form: "reshiram"
  57211. },
  57212. {
  57213. name: "Normal",
  57214. height: math.unit(8, "feet"),
  57215. default: true,
  57216. form: "samurott"
  57217. },
  57218. {
  57219. name: "Macro",
  57220. height: math.unit(500, "feet"),
  57221. allForms: true
  57222. },
  57223. {
  57224. name: "Mega Macro",
  57225. height: math.unit(10, "earths"),
  57226. allForms: true
  57227. },
  57228. {
  57229. name: "Giga Macro",
  57230. height: math.unit(1, "galaxy"),
  57231. allForms: true
  57232. },
  57233. {
  57234. name: "Godly Macro",
  57235. height: math.unit(1e10, "multiverses"),
  57236. allForms: true
  57237. },
  57238. ],
  57239. {
  57240. "snivy": {
  57241. name: "Snivy",
  57242. default: true
  57243. },
  57244. "yoshi": {
  57245. name: "Yoshi",
  57246. },
  57247. "delphox": {
  57248. name: "Delphox",
  57249. },
  57250. "mienshao": {
  57251. name: "Mienshao",
  57252. },
  57253. "inteleon": {
  57254. name: "Inteleon",
  57255. },
  57256. "reshiram": {
  57257. name: "Reshiram",
  57258. },
  57259. "samurott": {
  57260. name: "Samurott",
  57261. },
  57262. }
  57263. ))
  57264. characterMakers.push(() => makeCharacter(
  57265. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57266. {
  57267. front: {
  57268. height: math.unit(4, "feet"),
  57269. name: "Front",
  57270. image: {
  57271. source: "./media/characters/ash-leung/front.svg",
  57272. extra: 1916/1792,
  57273. bottom: 50/1966
  57274. }
  57275. },
  57276. },
  57277. [
  57278. {
  57279. name: "Atomic",
  57280. height: math.unit(1, "angstrom")
  57281. },
  57282. {
  57283. name: "Microscopic",
  57284. height: math.unit(4000, "angstroms")
  57285. },
  57286. {
  57287. name: "Speck",
  57288. height: math.unit(1, "mm")
  57289. },
  57290. {
  57291. name: "Small",
  57292. height: math.unit(1, "inch")
  57293. },
  57294. {
  57295. name: "Normal",
  57296. height: math.unit(4, "feet"),
  57297. default: true
  57298. },
  57299. ]
  57300. ))
  57301. characterMakers.push(() => makeCharacter(
  57302. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57303. {
  57304. frontDressed: {
  57305. height: math.unit(2.08, "meters"),
  57306. weight: math.unit(175, "lb"),
  57307. name: "Front (Dressed)",
  57308. image: {
  57309. source: "./media/characters/carie/front-dressed.svg",
  57310. extra: 456/417,
  57311. bottom: 7/463
  57312. }
  57313. },
  57314. backDressed: {
  57315. height: math.unit(2.08, "meters"),
  57316. weight: math.unit(175, "lb"),
  57317. name: "Back (Dressed)",
  57318. image: {
  57319. source: "./media/characters/carie/back-dressed.svg",
  57320. extra: 455/414,
  57321. bottom: 11/466
  57322. }
  57323. },
  57324. front: {
  57325. height: math.unit(2, "meters"),
  57326. weight: math.unit(175, "lb"),
  57327. name: "Front",
  57328. image: {
  57329. source: "./media/characters/carie/front.svg",
  57330. extra: 438/399,
  57331. bottom: 12/450
  57332. }
  57333. },
  57334. back: {
  57335. height: math.unit(2, "meters"),
  57336. weight: math.unit(175, "lb"),
  57337. name: "Back",
  57338. image: {
  57339. source: "./media/characters/carie/back.svg",
  57340. extra: 438/397,
  57341. bottom: 7/445
  57342. }
  57343. },
  57344. },
  57345. [
  57346. {
  57347. name: "Normal",
  57348. height: math.unit(2.08, "meters"),
  57349. default: true
  57350. },
  57351. {
  57352. name: "Macro",
  57353. height: math.unit(2.08e3, "meters")
  57354. },
  57355. {
  57356. name: "Mega Macro",
  57357. height: math.unit(2.08e6, "meters")
  57358. },
  57359. {
  57360. name: "Giga Macro",
  57361. height: math.unit(2.08e9, "meters")
  57362. },
  57363. {
  57364. name: "Tera Macro",
  57365. height: math.unit(2.08e12, "meters")
  57366. },
  57367. {
  57368. name: "Peta Macro",
  57369. height: math.unit(2.08e15, "meters")
  57370. },
  57371. {
  57372. name: "Exa Macro",
  57373. height: math.unit(2.08e18, "meters")
  57374. },
  57375. {
  57376. name: "Zetta Macro",
  57377. height: math.unit(2.08e21, "meters")
  57378. },
  57379. {
  57380. name: "Yotta Macro",
  57381. height: math.unit(2.08e24, "meters")
  57382. },
  57383. ]
  57384. ))
  57385. characterMakers.push(() => makeCharacter(
  57386. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57387. {
  57388. front: {
  57389. height: math.unit(5 + 2/12, "feet"),
  57390. weight: math.unit(120, "lb"),
  57391. name: "Front",
  57392. image: {
  57393. source: "./media/characters/sai-bree/front.svg",
  57394. extra: 1843/1702,
  57395. bottom: 91/1934
  57396. }
  57397. },
  57398. back: {
  57399. height: math.unit(5 + 2/12, "feet"),
  57400. weight: math.unit(120, "lb"),
  57401. name: "Back",
  57402. image: {
  57403. source: "./media/characters/sai-bree/back.svg",
  57404. extra: 1809/1637,
  57405. bottom: 56/1865
  57406. }
  57407. },
  57408. },
  57409. [
  57410. {
  57411. name: "Normal",
  57412. height: math.unit(5 + 2/12, "feet"),
  57413. default: true
  57414. },
  57415. {
  57416. name: "Macro",
  57417. height: math.unit(500, "feet")
  57418. },
  57419. ]
  57420. ))
  57421. characterMakers.push(() => makeCharacter(
  57422. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57423. {
  57424. side: {
  57425. height: math.unit(0.77, "meters"),
  57426. weight: math.unit(120, "lb"),
  57427. name: "Side",
  57428. image: {
  57429. source: "./media/characters/davwyn/side.svg",
  57430. extra: 1557/1225,
  57431. bottom: 131/1688
  57432. }
  57433. },
  57434. front: {
  57435. height: math.unit(0.835410, "meters"),
  57436. weight: math.unit(120, "lb"),
  57437. name: "Front",
  57438. image: {
  57439. source: "./media/characters/davwyn/front.svg",
  57440. extra: 870/843,
  57441. bottom: 175/1045
  57442. }
  57443. },
  57444. },
  57445. [
  57446. {
  57447. name: "Minidrake",
  57448. height: math.unit(0.77/4, "meters")
  57449. },
  57450. {
  57451. name: "Normal",
  57452. height: math.unit(0.77, "meters"),
  57453. default: true
  57454. },
  57455. ]
  57456. ))
  57457. characterMakers.push(() => makeCharacter(
  57458. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57459. {
  57460. front: {
  57461. height: math.unit(10 + 3/12, "feet"),
  57462. weight: math.unit(2857, "lb"),
  57463. name: "Front",
  57464. image: {
  57465. source: "./media/characters/balans/front.svg",
  57466. extra: 427/402,
  57467. bottom: 26/453
  57468. }
  57469. },
  57470. side: {
  57471. height: math.unit(10 + 3/12, "feet"),
  57472. weight: math.unit(2857, "lb"),
  57473. name: "Side",
  57474. image: {
  57475. source: "./media/characters/balans/side.svg",
  57476. extra: 397/371,
  57477. bottom: 17/414
  57478. }
  57479. },
  57480. back: {
  57481. height: math.unit(10 + 3/12, "feet"),
  57482. weight: math.unit(2857, "lb"),
  57483. name: "Back",
  57484. image: {
  57485. source: "./media/characters/balans/back.svg",
  57486. extra: 408/381,
  57487. bottom: 14/422
  57488. }
  57489. },
  57490. hand: {
  57491. height: math.unit(1.15, "feet"),
  57492. name: "Hand",
  57493. image: {
  57494. source: "./media/characters/balans/hand.svg"
  57495. }
  57496. },
  57497. footRest: {
  57498. height: math.unit(3.1, "feet"),
  57499. name: "Foot (Rest)",
  57500. image: {
  57501. source: "./media/characters/balans/foot-rest.svg"
  57502. }
  57503. },
  57504. footActive: {
  57505. height: math.unit(3.5, "feet"),
  57506. name: "Foot (Active)",
  57507. image: {
  57508. source: "./media/characters/balans/foot-active.svg"
  57509. }
  57510. },
  57511. },
  57512. [
  57513. {
  57514. name: "Normal",
  57515. height: math.unit(10 + 3/12, "feet"),
  57516. default: true
  57517. },
  57518. ]
  57519. ))
  57520. characterMakers.push(() => makeCharacter(
  57521. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57522. {
  57523. side: {
  57524. height: math.unit(9, "meters"),
  57525. weight: math.unit(114, "tonnes"),
  57526. name: "Side",
  57527. image: {
  57528. source: "./media/characters/eldkveikir/side.svg",
  57529. extra: 1927/338,
  57530. bottom: 42/1969
  57531. }
  57532. },
  57533. sitting: {
  57534. height: math.unit(13.4, "meters"),
  57535. weight: math.unit(114, "tonnes"),
  57536. name: "Sitting",
  57537. image: {
  57538. source: "./media/characters/eldkveikir/sitting.svg",
  57539. extra: 1108/963,
  57540. bottom: 610/1718
  57541. }
  57542. },
  57543. maw: {
  57544. height: math.unit(8.36, "meters"),
  57545. name: "Maw",
  57546. image: {
  57547. source: "./media/characters/eldkveikir/maw.svg"
  57548. }
  57549. },
  57550. hand: {
  57551. height: math.unit(4.84, "meters"),
  57552. name: "Hand",
  57553. image: {
  57554. source: "./media/characters/eldkveikir/hand.svg"
  57555. }
  57556. },
  57557. foot: {
  57558. height: math.unit(6.9, "meters"),
  57559. name: "Foot",
  57560. image: {
  57561. source: "./media/characters/eldkveikir/foot.svg"
  57562. }
  57563. },
  57564. genitals: {
  57565. height: math.unit(9.6, "meters"),
  57566. name: "Genitals",
  57567. image: {
  57568. source: "./media/characters/eldkveikir/genitals.svg"
  57569. }
  57570. },
  57571. },
  57572. [
  57573. {
  57574. name: "Normal",
  57575. height: math.unit(9, "meters"),
  57576. default: true
  57577. },
  57578. ]
  57579. ))
  57580. characterMakers.push(() => makeCharacter(
  57581. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57582. {
  57583. front: {
  57584. height: math.unit(14, "feet"),
  57585. weight: math.unit(4100, "lb"),
  57586. name: "Front",
  57587. image: {
  57588. source: "./media/characters/arrow/front.svg",
  57589. extra: 330/318,
  57590. bottom: 56/386
  57591. }
  57592. },
  57593. },
  57594. [
  57595. {
  57596. name: "Normal",
  57597. height: math.unit(14, "feet"),
  57598. default: true
  57599. },
  57600. {
  57601. name: "Minimacro",
  57602. height: math.unit(63, "feet")
  57603. },
  57604. {
  57605. name: "Macro",
  57606. height: math.unit(630, "feet")
  57607. },
  57608. {
  57609. name: "Megamacro",
  57610. height: math.unit(12600, "feet")
  57611. },
  57612. {
  57613. name: "Gigamacro",
  57614. height: math.unit(18000, "miles")
  57615. },
  57616. ]
  57617. ))
  57618. characterMakers.push(() => makeCharacter(
  57619. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57620. {
  57621. front: {
  57622. height: math.unit(10, "feet"),
  57623. weight: math.unit(2.4, "tons"),
  57624. name: "Front",
  57625. image: {
  57626. source: "./media/characters/3yk-k0-unit/front.svg",
  57627. extra: 573/561,
  57628. bottom: 33/606
  57629. }
  57630. },
  57631. back: {
  57632. height: math.unit(10, "feet"),
  57633. weight: math.unit(2.4, "tons"),
  57634. name: "Back",
  57635. image: {
  57636. source: "./media/characters/3yk-k0-unit/back.svg",
  57637. extra: 614/573,
  57638. bottom: 32/646
  57639. }
  57640. },
  57641. maw: {
  57642. height: math.unit(2.15, "feet"),
  57643. name: "Maw",
  57644. image: {
  57645. source: "./media/characters/3yk-k0-unit/maw.svg"
  57646. }
  57647. },
  57648. },
  57649. [
  57650. {
  57651. name: "Normal",
  57652. height: math.unit(10, "feet"),
  57653. default: true
  57654. },
  57655. ]
  57656. ))
  57657. characterMakers.push(() => makeCharacter(
  57658. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57659. {
  57660. front: {
  57661. height: math.unit(8 + 8/12, "feet"),
  57662. name: "Front",
  57663. image: {
  57664. source: "./media/characters/nemo/front.svg",
  57665. extra: 1308/1217,
  57666. bottom: 57/1365
  57667. }
  57668. },
  57669. },
  57670. [
  57671. {
  57672. name: "Normal",
  57673. height: math.unit(8 + 8/12, "feet"),
  57674. default: true
  57675. },
  57676. ]
  57677. ))
  57678. characterMakers.push(() => makeCharacter(
  57679. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57680. {
  57681. front: {
  57682. height: math.unit(8, "feet"),
  57683. weight: math.unit(760, "lb"),
  57684. name: "Front",
  57685. image: {
  57686. source: "./media/characters/rexx/front.svg",
  57687. extra: 786/750,
  57688. bottom: 17/803
  57689. },
  57690. extraAttributes: {
  57691. "pawLength": {
  57692. name: "Paw Length",
  57693. power: 1,
  57694. type: "length",
  57695. base: math.unit(27, "inches")
  57696. },
  57697. }
  57698. },
  57699. },
  57700. [
  57701. {
  57702. name: "Micro",
  57703. height: math.unit(2, "inches")
  57704. },
  57705. {
  57706. name: "Normal",
  57707. height: math.unit(8, "feet"),
  57708. default: true
  57709. },
  57710. {
  57711. name: "Macro",
  57712. height: math.unit(150, "feet")
  57713. },
  57714. ]
  57715. ))
  57716. characterMakers.push(() => makeCharacter(
  57717. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57718. {
  57719. front: {
  57720. height: math.unit(18, "feet"),
  57721. weight: math.unit(1975, "lb"),
  57722. name: "Front",
  57723. image: {
  57724. source: "./media/characters/draco/front.svg",
  57725. extra: 1325/1241,
  57726. bottom: 83/1408
  57727. }
  57728. },
  57729. back: {
  57730. height: math.unit(18, "feet"),
  57731. weight: math.unit(1975, "lb"),
  57732. name: "Back",
  57733. image: {
  57734. source: "./media/characters/draco/back.svg",
  57735. extra: 1332/1250,
  57736. bottom: 43/1375
  57737. }
  57738. },
  57739. dick: {
  57740. height: math.unit(7.5, "feet"),
  57741. name: "Dick",
  57742. image: {
  57743. source: "./media/characters/draco/dick.svg"
  57744. }
  57745. },
  57746. },
  57747. [
  57748. {
  57749. name: "Normal",
  57750. height: math.unit(18, "feet"),
  57751. default: true
  57752. },
  57753. ]
  57754. ))
  57755. characterMakers.push(() => makeCharacter(
  57756. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57757. {
  57758. front: {
  57759. height: math.unit(3.2, "meters"),
  57760. name: "Front",
  57761. image: {
  57762. source: "./media/characters/harriett/front.svg",
  57763. extra: 1966/1915,
  57764. bottom: 9/1975
  57765. }
  57766. },
  57767. },
  57768. [
  57769. {
  57770. name: "Normal",
  57771. height: math.unit(3.2, "meters"),
  57772. default: true
  57773. },
  57774. ]
  57775. ))
  57776. characterMakers.push(() => makeCharacter(
  57777. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57778. {
  57779. sitting: {
  57780. height: math.unit(0.8, "meter"),
  57781. name: "Sitting",
  57782. image: {
  57783. source: "./media/characters/serpentus/sitting.svg",
  57784. extra: 293/290,
  57785. bottom: 140/433
  57786. }
  57787. },
  57788. },
  57789. [
  57790. {
  57791. name: "Normal",
  57792. height: math.unit(0.8, "meter"),
  57793. default: true
  57794. },
  57795. ]
  57796. ))
  57797. characterMakers.push(() => makeCharacter(
  57798. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57799. {
  57800. front: {
  57801. height: math.unit(5.7174385736, "feet"),
  57802. name: "Front",
  57803. image: {
  57804. source: "./media/characters/nova-polecat/front.svg",
  57805. extra: 1317/1216,
  57806. bottom: 92/1409
  57807. }
  57808. },
  57809. },
  57810. [
  57811. {
  57812. name: "Normal",
  57813. height: math.unit(5.7174385736, "feet"),
  57814. default: true
  57815. },
  57816. ]
  57817. ))
  57818. characterMakers.push(() => makeCharacter(
  57819. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57820. {
  57821. front: {
  57822. height: math.unit(5 + 4/12, "feet"),
  57823. weight: math.unit(250, "lb"),
  57824. name: "Front",
  57825. image: {
  57826. source: "./media/characters/mook/front.svg",
  57827. extra: 1088/1037,
  57828. bottom: 132/1220
  57829. }
  57830. },
  57831. back: {
  57832. height: math.unit(5 + 1/12, "feet"),
  57833. weight: math.unit(250, "lb"),
  57834. name: "Back",
  57835. image: {
  57836. source: "./media/characters/mook/back.svg",
  57837. extra: 1184/905,
  57838. bottom: 96/1280
  57839. }
  57840. },
  57841. head: {
  57842. height: math.unit(1.85, "feet"),
  57843. name: "Head",
  57844. image: {
  57845. source: "./media/characters/mook/head.svg"
  57846. }
  57847. },
  57848. hand: {
  57849. height: math.unit(1.9, "feet"),
  57850. name: "Hand",
  57851. image: {
  57852. source: "./media/characters/mook/hand.svg"
  57853. }
  57854. },
  57855. palm: {
  57856. height: math.unit(1.84, "feet"),
  57857. name: "Palm",
  57858. image: {
  57859. source: "./media/characters/mook/palm.svg"
  57860. }
  57861. },
  57862. foot: {
  57863. height: math.unit(1.44, "feet"),
  57864. name: "Foot",
  57865. image: {
  57866. source: "./media/characters/mook/foot.svg"
  57867. }
  57868. },
  57869. sole: {
  57870. height: math.unit(1.44, "feet"),
  57871. name: "Sole",
  57872. image: {
  57873. source: "./media/characters/mook/sole.svg"
  57874. }
  57875. },
  57876. },
  57877. [
  57878. {
  57879. name: "Normal",
  57880. height: math.unit(5 + 4/12, "feet"),
  57881. default: true
  57882. },
  57883. {
  57884. name: "Big",
  57885. height: math.unit(12, "feet")
  57886. },
  57887. ]
  57888. ))
  57889. characterMakers.push(() => makeCharacter(
  57890. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  57891. {
  57892. front: {
  57893. height: math.unit(6 + 10/12, "feet"),
  57894. weight: math.unit(233, "lb"),
  57895. name: "Front",
  57896. image: {
  57897. source: "./media/characters/kayla/front.svg",
  57898. extra: 1850/1775,
  57899. bottom: 65/1915
  57900. }
  57901. },
  57902. },
  57903. [
  57904. {
  57905. name: "Normal",
  57906. height: math.unit(6 + 10/12, "feet"),
  57907. default: true
  57908. },
  57909. {
  57910. name: "Amazonian",
  57911. height: math.unit(12 + 5/12, "feet")
  57912. },
  57913. {
  57914. name: "Mini Giantess",
  57915. height: math.unit(26, "feet")
  57916. },
  57917. {
  57918. name: "Giantess",
  57919. height: math.unit(200, "feet")
  57920. },
  57921. {
  57922. name: "Mega Giantess",
  57923. height: math.unit(2500, "feet")
  57924. },
  57925. {
  57926. name: "City Sized",
  57927. height: math.unit(50, "miles")
  57928. },
  57929. {
  57930. name: "Country Sized",
  57931. height: math.unit(500, "miles")
  57932. },
  57933. {
  57934. name: "Continent Sized",
  57935. height: math.unit(2500, "miles")
  57936. },
  57937. {
  57938. name: "Planet Sized",
  57939. height: math.unit(10000, "miles")
  57940. },
  57941. {
  57942. name: "Star Sized",
  57943. height: math.unit(5e6, "miles")
  57944. },
  57945. {
  57946. name: "Solar System Sized",
  57947. height: math.unit(125, "AU")
  57948. },
  57949. {
  57950. name: "Galaxy Sized",
  57951. height: math.unit(300e3, "lightyears")
  57952. },
  57953. {
  57954. name: "Universe Sized",
  57955. height: math.unit(200e9, "lightyears")
  57956. },
  57957. {
  57958. name: "Multiverse Sized",
  57959. height: math.unit(20, "exauniverses")
  57960. },
  57961. {
  57962. name: "Mother of Existence",
  57963. height: math.unit(1e6, "yottauniverses")
  57964. },
  57965. ]
  57966. ))
  57967. characterMakers.push(() => makeCharacter(
  57968. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  57969. {
  57970. side: {
  57971. height: math.unit(9.5, "meters"),
  57972. name: "Side",
  57973. image: {
  57974. source: "./media/characters/kulve-ragnarok/side.svg",
  57975. extra: 364/326,
  57976. bottom: 50/414
  57977. }
  57978. },
  57979. },
  57980. [
  57981. {
  57982. name: "Normal",
  57983. height: math.unit(9.5, "meters"),
  57984. default: true
  57985. },
  57986. ]
  57987. ))
  57988. characterMakers.push(() => makeCharacter(
  57989. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  57990. {
  57991. front: {
  57992. height: math.unit(8 + 9/12, "feet"),
  57993. name: "Front",
  57994. image: {
  57995. source: "./media/characters/atlas-goat/front.svg",
  57996. extra: 1462/1323,
  57997. bottom: 12/1474
  57998. }
  57999. },
  58000. },
  58001. [
  58002. {
  58003. name: "Normal",
  58004. height: math.unit(8 + 9/12, "feet"),
  58005. default: true
  58006. },
  58007. {
  58008. name: "Skyline",
  58009. height: math.unit(845, "feet")
  58010. },
  58011. {
  58012. name: "Orbital",
  58013. height: math.unit(93000, "miles")
  58014. },
  58015. {
  58016. name: "Constellation",
  58017. height: math.unit(27000, "lightyears")
  58018. },
  58019. ]
  58020. ))
  58021. characterMakers.push(() => makeCharacter(
  58022. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58023. {
  58024. side: {
  58025. height: math.unit(1.8, "meters"),
  58026. weight: math.unit(120, "kg"),
  58027. name: "Side",
  58028. image: {
  58029. source: "./media/characters/xie-ling/side.svg",
  58030. extra: 646/574,
  58031. bottom: 44/690
  58032. }
  58033. },
  58034. },
  58035. [
  58036. {
  58037. name: "Tiny",
  58038. height: math.unit(1.80, "meters")
  58039. },
  58040. {
  58041. name: "Small",
  58042. height: math.unit(6, "meters")
  58043. },
  58044. {
  58045. name: "Medium",
  58046. height: math.unit(15, "meters")
  58047. },
  58048. {
  58049. name: "Normal",
  58050. height: math.unit(30, "meters"),
  58051. default: true
  58052. },
  58053. {
  58054. name: "Above Normal",
  58055. height: math.unit(60, "meters")
  58056. },
  58057. {
  58058. name: "Big",
  58059. height: math.unit(220, "meters")
  58060. },
  58061. {
  58062. name: "Giant",
  58063. height: math.unit(2.2, "km")
  58064. },
  58065. {
  58066. name: "Macro",
  58067. height: math.unit(25, "km")
  58068. },
  58069. {
  58070. name: "Mega Macro",
  58071. height: math.unit(350, "km")
  58072. },
  58073. {
  58074. name: "Mega Macro+",
  58075. height: math.unit(5000, "km")
  58076. },
  58077. {
  58078. name: "Goddess",
  58079. height: math.unit(3, "multiverses")
  58080. },
  58081. ]
  58082. ))
  58083. characterMakers.push(() => makeCharacter(
  58084. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58085. {
  58086. frontSfw: {
  58087. height: math.unit(5 + 11/12, "feet"),
  58088. weight: math.unit(210, "lb"),
  58089. name: "Front",
  58090. image: {
  58091. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58092. extra: 1928/1821,
  58093. bottom: 45/1973
  58094. }
  58095. },
  58096. backSfw: {
  58097. height: math.unit(5 + 11/12, "feet"),
  58098. weight: math.unit(210, "lb"),
  58099. name: "Back",
  58100. image: {
  58101. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58102. extra: 1920/1813,
  58103. bottom: 34/1954
  58104. }
  58105. },
  58106. frontNsfw: {
  58107. height: math.unit(5 + 11/12, "feet"),
  58108. weight: math.unit(210, "lb"),
  58109. name: "Front (NSFW)",
  58110. image: {
  58111. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58112. extra: 1928/1821,
  58113. bottom: 45/1973
  58114. }
  58115. },
  58116. backNsfw: {
  58117. height: math.unit(5 + 11/12, "feet"),
  58118. weight: math.unit(210, "lb"),
  58119. name: "Back (NSFW)",
  58120. image: {
  58121. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58122. extra: 1920/1813,
  58123. bottom: 34/1954
  58124. }
  58125. },
  58126. },
  58127. [
  58128. {
  58129. name: "Normal",
  58130. height: math.unit(5 + 11/12, "feet"),
  58131. default: true
  58132. },
  58133. {
  58134. name: "Goddess",
  58135. height: math.unit(20 + 3/12, "feet")
  58136. },
  58137. {
  58138. name: "Breaker of Man",
  58139. height: math.unit(329 + 9/12, "feet")
  58140. },
  58141. {
  58142. name: "Solar Justice",
  58143. height: math.unit(0.6, "solarradii")
  58144. },
  58145. {
  58146. name: "She Who Judges",
  58147. height: math.unit(1, "universe")
  58148. },
  58149. ]
  58150. ))
  58151. characterMakers.push(() => makeCharacter(
  58152. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58153. {
  58154. casual_front: {
  58155. height: math.unit(6 + 1/12, "feet"),
  58156. weight: math.unit(190, "lb"),
  58157. preyCapacity: math.unit(1, "people"),
  58158. name: "Front",
  58159. image: {
  58160. source: "./media/characters/managarmr/casual-front.svg",
  58161. extra: 411/381,
  58162. bottom: 15/426
  58163. },
  58164. extraAttributes: {
  58165. "pawSize": {
  58166. name: "Paw Size",
  58167. power: 1,
  58168. type: "length",
  58169. base: math.unit(0.2, "meters")
  58170. },
  58171. },
  58172. form: "casual",
  58173. },
  58174. casual_back: {
  58175. height: math.unit(6 + 1/12, "feet"),
  58176. weight: math.unit(190, "lb"),
  58177. preyCapacity: math.unit(1, "people"),
  58178. name: "Back",
  58179. image: {
  58180. source: "./media/characters/managarmr/casual-back.svg",
  58181. extra: 413/383,
  58182. bottom: 13/426
  58183. },
  58184. extraAttributes: {
  58185. "pawSize": {
  58186. name: "Paw Size",
  58187. power: 1,
  58188. type: "length",
  58189. base: math.unit(0.2, "meters")
  58190. },
  58191. },
  58192. form: "casual",
  58193. },
  58194. base_front: {
  58195. height: math.unit(7, "feet"),
  58196. weight: math.unit(210, "lb"),
  58197. preyCapacity: math.unit(2, "people"),
  58198. name: "Front",
  58199. image: {
  58200. source: "./media/characters/managarmr/base-front.svg",
  58201. extra: 580/485,
  58202. bottom: 32/612
  58203. },
  58204. extraAttributes: {
  58205. "wingspan": {
  58206. name: "Wingspan",
  58207. power: 1,
  58208. type: "length",
  58209. base: math.unit(4, "meters")
  58210. },
  58211. "pawSize": {
  58212. name: "Paw Size",
  58213. power: 1,
  58214. type: "length",
  58215. base: math.unit(0.2, "meters")
  58216. },
  58217. },
  58218. form: "base",
  58219. },
  58220. "true-divine_front": {
  58221. height: math.unit(40, "feet"),
  58222. weight: math.unit(39000, "lb"),
  58223. preyCapacity: math.unit(375, "people"),
  58224. name: "Front",
  58225. image: {
  58226. source: "./media/characters/managarmr/true-divine-front.svg",
  58227. extra: 725/573,
  58228. bottom: 120/845
  58229. },
  58230. extraAttributes: {
  58231. "wingspan": {
  58232. name: "Wingspan",
  58233. power: 1,
  58234. type: "length",
  58235. base: math.unit(20, "meters")
  58236. },
  58237. "pawSize": {
  58238. name: "Paw Size",
  58239. power: 1,
  58240. type: "length",
  58241. base: math.unit(1.5, "meters")
  58242. },
  58243. },
  58244. form: "true-divine",
  58245. },
  58246. },
  58247. [
  58248. {
  58249. name: "Normal",
  58250. height: math.unit(6 + 1/12, "feet"),
  58251. form: "casual",
  58252. default: true
  58253. },
  58254. {
  58255. name: "Normal",
  58256. height: math.unit(7, "feet"),
  58257. form: "base",
  58258. default: true
  58259. },
  58260. ],
  58261. {
  58262. "casual": {
  58263. name: "Casual",
  58264. default: true
  58265. },
  58266. "base": {
  58267. name: "Base",
  58268. },
  58269. "true-divine": {
  58270. name: "True Divine",
  58271. },
  58272. }
  58273. ))
  58274. characterMakers.push(() => makeCharacter(
  58275. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58276. {
  58277. front: {
  58278. height: math.unit(1.8, "meters"),
  58279. weight: math.unit(110, "kg"),
  58280. name: "Front",
  58281. image: {
  58282. source: "./media/characters/mystra/front.svg",
  58283. extra: 529/442,
  58284. bottom: 31/560
  58285. }
  58286. },
  58287. frontLewd: {
  58288. height: math.unit(1.8, "meters"),
  58289. weight: math.unit(110, "kg"),
  58290. name: "Front (Lewd)",
  58291. image: {
  58292. source: "./media/characters/mystra/front-lewd.svg",
  58293. extra: 529/442,
  58294. bottom: 31/560
  58295. }
  58296. },
  58297. head: {
  58298. height: math.unit(1.63, "feet"),
  58299. name: "Head",
  58300. image: {
  58301. source: "./media/characters/mystra/head.svg"
  58302. }
  58303. },
  58304. paw: {
  58305. height: math.unit(1.9, "feet"),
  58306. name: "Paw",
  58307. image: {
  58308. source: "./media/characters/mystra/paw.svg"
  58309. }
  58310. },
  58311. },
  58312. [
  58313. {
  58314. name: "Incognito",
  58315. height: math.unit(2.3, "meters")
  58316. },
  58317. {
  58318. name: "Small Macro",
  58319. height: math.unit(300, "meters")
  58320. },
  58321. {
  58322. name: "Small Mega",
  58323. height: math.unit(2, "km")
  58324. },
  58325. {
  58326. name: "Mega",
  58327. height: math.unit(30, "km")
  58328. },
  58329. {
  58330. name: "Small Giga",
  58331. height: math.unit(100, "km")
  58332. },
  58333. {
  58334. name: "Giga",
  58335. height: math.unit(1000, "km"),
  58336. default: true
  58337. },
  58338. {
  58339. name: "Continental",
  58340. height: math.unit(5000, "km")
  58341. },
  58342. {
  58343. name: "Terra",
  58344. height: math.unit(20000, "km")
  58345. },
  58346. {
  58347. name: "Solar",
  58348. height: math.unit(2e6, "km")
  58349. },
  58350. {
  58351. name: "Galactic",
  58352. height: math.unit(528502, "lightyears")
  58353. },
  58354. {
  58355. name: "Universal",
  58356. height: math.unit(20, "universes")
  58357. },
  58358. ]
  58359. ))
  58360. characterMakers.push(() => makeCharacter(
  58361. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58362. {
  58363. front: {
  58364. height: math.unit(2, "meters"),
  58365. weight: math.unit(140, "kg"),
  58366. name: "Front",
  58367. image: {
  58368. source: "./media/characters/caleb/front.svg",
  58369. extra: 873/817,
  58370. bottom: 47/920
  58371. }
  58372. },
  58373. back: {
  58374. height: math.unit(2, "meters"),
  58375. weight: math.unit(140, "kg"),
  58376. name: "Back",
  58377. image: {
  58378. source: "./media/characters/caleb/back.svg",
  58379. extra: 877/828,
  58380. bottom: 24/901
  58381. }
  58382. },
  58383. snakeTail: {
  58384. height: math.unit(1.44, "feet"),
  58385. name: "Snake Tail",
  58386. image: {
  58387. source: "./media/characters/caleb/snake-tail.svg"
  58388. }
  58389. },
  58390. dick: {
  58391. height: math.unit(2.6, "feet"),
  58392. name: "Dick",
  58393. image: {
  58394. source: "./media/characters/caleb/dick.svg"
  58395. }
  58396. },
  58397. },
  58398. [
  58399. {
  58400. name: "Incognito",
  58401. height: math.unit(3, "meters")
  58402. },
  58403. {
  58404. name: "Home Size",
  58405. height: math.unit(200, "meters"),
  58406. default: true
  58407. },
  58408. {
  58409. name: "Macro",
  58410. height: math.unit(500, "meters")
  58411. },
  58412. {
  58413. name: "Big Macro",
  58414. height: math.unit(5, "km")
  58415. },
  58416. {
  58417. name: "Giga",
  58418. height: math.unit(250, "km")
  58419. },
  58420. {
  58421. name: "Giga+",
  58422. height: math.unit(5000, "km")
  58423. },
  58424. {
  58425. name: "Small Terra",
  58426. height: math.unit(35e3, "km")
  58427. },
  58428. {
  58429. name: "Terra",
  58430. height: math.unit(2e6, "km")
  58431. },
  58432. {
  58433. name: "Terra+",
  58434. height: math.unit(1.5e6, "km")
  58435. },
  58436. ]
  58437. ))
  58438. characterMakers.push(() => makeCharacter(
  58439. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58440. {
  58441. front: {
  58442. height: math.unit(2, "meters"),
  58443. weight: math.unit(120, "kg"),
  58444. name: "Front",
  58445. image: {
  58446. source: "./media/characters/gilirian/front.svg",
  58447. extra: 805/737,
  58448. bottom: 13/818
  58449. }
  58450. },
  58451. side: {
  58452. height: math.unit(2, "meters"),
  58453. weight: math.unit(120, "kg"),
  58454. name: "Side",
  58455. image: {
  58456. source: "./media/characters/gilirian/side.svg",
  58457. extra: 810/746,
  58458. bottom: 6/816
  58459. }
  58460. },
  58461. back: {
  58462. height: math.unit(2, "meters"),
  58463. weight: math.unit(120, "kg"),
  58464. name: "Back",
  58465. image: {
  58466. source: "./media/characters/gilirian/back.svg",
  58467. extra: 815/745,
  58468. bottom: 15/830
  58469. }
  58470. },
  58471. frontNsfw: {
  58472. height: math.unit(2, "meters"),
  58473. weight: math.unit(120, "kg"),
  58474. name: "Front (NSFW)",
  58475. image: {
  58476. source: "./media/characters/gilirian/front-nsfw.svg",
  58477. extra: 805/737,
  58478. bottom: 13/818
  58479. }
  58480. },
  58481. sideNsfw: {
  58482. height: math.unit(2, "meters"),
  58483. weight: math.unit(120, "kg"),
  58484. name: "Side (NSFW)",
  58485. image: {
  58486. source: "./media/characters/gilirian/side-nsfw.svg",
  58487. extra: 810/746,
  58488. bottom: 6/816
  58489. }
  58490. },
  58491. },
  58492. [
  58493. {
  58494. name: "Incognito",
  58495. height: math.unit(2, "meters"),
  58496. default: true
  58497. },
  58498. {
  58499. name: "Macro",
  58500. height: math.unit(250, "meters")
  58501. },
  58502. {
  58503. name: "Big Macro",
  58504. height: math.unit(1500, "meters")
  58505. },
  58506. {
  58507. name: "Mega",
  58508. height: math.unit(40, "km")
  58509. },
  58510. {
  58511. name: "Giga",
  58512. height: math.unit(300, "km")
  58513. },
  58514. {
  58515. name: "Extra Giga",
  58516. height: math.unit(5000, "km")
  58517. },
  58518. {
  58519. name: "Small Terra",
  58520. height: math.unit(10e3, "km")
  58521. },
  58522. {
  58523. name: "Terra",
  58524. height: math.unit(3e5, "km")
  58525. },
  58526. {
  58527. name: "Galactic",
  58528. height: math.unit(369950, "lightyears")
  58529. },
  58530. ]
  58531. ))
  58532. characterMakers.push(() => makeCharacter(
  58533. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58534. {
  58535. front: {
  58536. height: math.unit(2.5, "meters"),
  58537. weight: math.unit(230, "lb"),
  58538. name: "Front",
  58539. image: {
  58540. source: "./media/characters/tarken/front.svg",
  58541. extra: 764/720,
  58542. bottom: 49/813
  58543. }
  58544. },
  58545. back: {
  58546. height: math.unit(2.5, "meters"),
  58547. weight: math.unit(230, "lb"),
  58548. name: "Back",
  58549. image: {
  58550. source: "./media/characters/tarken/back.svg",
  58551. extra: 756/720,
  58552. bottom: 35/791
  58553. }
  58554. },
  58555. frontNsfw: {
  58556. height: math.unit(2.5, "meters"),
  58557. weight: math.unit(230, "lb"),
  58558. name: "Front (NSFW)",
  58559. image: {
  58560. source: "./media/characters/tarken/front-nsfw.svg",
  58561. extra: 764/720,
  58562. bottom: 49/813
  58563. }
  58564. },
  58565. backNsfw: {
  58566. height: math.unit(2.5, "meters"),
  58567. weight: math.unit(230, "lb"),
  58568. name: "Back (NSFW)",
  58569. image: {
  58570. source: "./media/characters/tarken/back-nsfw.svg",
  58571. extra: 756/720,
  58572. bottom: 35/791
  58573. }
  58574. },
  58575. head: {
  58576. height: math.unit(2.22, "feet"),
  58577. name: "Head",
  58578. image: {
  58579. source: "./media/characters/tarken/head.svg"
  58580. }
  58581. },
  58582. tail: {
  58583. height: math.unit(5.25, "feet"),
  58584. name: "Tail",
  58585. image: {
  58586. source: "./media/characters/tarken/tail.svg"
  58587. }
  58588. },
  58589. dick: {
  58590. height: math.unit(1.95, "feet"),
  58591. name: "Dick",
  58592. image: {
  58593. source: "./media/characters/tarken/dick.svg"
  58594. }
  58595. },
  58596. hand: {
  58597. height: math.unit(1.78, "feet"),
  58598. name: "Hand",
  58599. image: {
  58600. source: "./media/characters/tarken/hand.svg"
  58601. }
  58602. },
  58603. beam: {
  58604. height: math.unit(1.5, "feet"),
  58605. name: "Beam",
  58606. image: {
  58607. source: "./media/characters/tarken/beam.svg"
  58608. }
  58609. },
  58610. },
  58611. [
  58612. {
  58613. name: "Original Size",
  58614. height: math.unit(2.5, "meters")
  58615. },
  58616. {
  58617. name: "Macro",
  58618. height: math.unit(150, "meters"),
  58619. default: true
  58620. },
  58621. {
  58622. name: "Macro+",
  58623. height: math.unit(300, "meters")
  58624. },
  58625. {
  58626. name: "Mega",
  58627. height: math.unit(2, "km")
  58628. },
  58629. {
  58630. name: "Mega+",
  58631. height: math.unit(35, "km")
  58632. },
  58633.  {
  58634. name: "Mega++",
  58635. height: math.unit(60, "km")
  58636. },
  58637. {
  58638. name: "Giga",
  58639. height: math.unit(200, "km")
  58640. },
  58641. {
  58642. name: "Giga+",
  58643. height: math.unit(2500, "km")
  58644. },
  58645. {
  58646. name: "Giga++",
  58647. height: math.unit(6600, "km")
  58648. },
  58649. {
  58650. name: "Terra",
  58651. height: math.unit(20000, "km")
  58652. },
  58653. {
  58654. name: "Terra+",
  58655. height: math.unit(300000, "km")
  58656. },
  58657. ]
  58658. ))
  58659. characterMakers.push(() => makeCharacter(
  58660. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58661. {
  58662. magpie_dressed: {
  58663. height: math.unit(1.7, "meters"),
  58664. weight: math.unit(70, "kg"),
  58665. name: "Dressed",
  58666. image: {
  58667. source: "./media/characters/otreus/magpie-dressed.svg",
  58668. extra: 691/672,
  58669. bottom: 116/807
  58670. },
  58671. form: "magpie",
  58672. default: true
  58673. },
  58674. magpie_nude: {
  58675. height: math.unit(1.7, "meters"),
  58676. weight: math.unit(70, "kg"),
  58677. name: "Nude",
  58678. image: {
  58679. source: "./media/characters/otreus/magpie-nude.svg",
  58680. extra: 691/672,
  58681. bottom: 116/807
  58682. },
  58683. form: "magpie",
  58684. },
  58685. magpie_dressedLewd: {
  58686. height: math.unit(1.7, "meters"),
  58687. weight: math.unit(70, "kg"),
  58688. name: "Dressed (Lewd)",
  58689. image: {
  58690. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58691. extra: 691/672,
  58692. bottom: 116/807
  58693. },
  58694. form: "magpie",
  58695. },
  58696. magpie_nudeLewd: {
  58697. height: math.unit(1.7, "meters"),
  58698. weight: math.unit(70, "kg"),
  58699. name: "Nude (Lewd)",
  58700. image: {
  58701. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58702. extra: 691/672,
  58703. bottom: 116/807
  58704. },
  58705. form: "magpie",
  58706. },
  58707. magpie_leftFoot: {
  58708. height: math.unit(1.58, "feet"),
  58709. name: "Left Foot",
  58710. image: {
  58711. source: "./media/characters/otreus/magpie-left-foot.svg"
  58712. },
  58713. form: "magpie",
  58714. },
  58715. magpie_rightFoot: {
  58716. height: math.unit(1.58, "feet"),
  58717. name: "Right Foot",
  58718. image: {
  58719. source: "./media/characters/otreus/magpie-right-foot.svg"
  58720. },
  58721. form: "magpie",
  58722. },
  58723. magpie_wingspan: {
  58724. height: math.unit(2, "meters"),
  58725. weight: math.unit(70, "kg"),
  58726. name: "Wingspan",
  58727. image: {
  58728. source: "./media/characters/otreus/magpie-wingspan.svg"
  58729. },
  58730. extraAttributes: {
  58731. "wingspan": {
  58732. name: "Wingspan",
  58733. power: 1,
  58734. type: "length",
  58735. base: math.unit(3.35, "meters")
  58736. },
  58737. },
  58738. form: "magpie",
  58739. },
  58740. hippogriff_dressed: {
  58741. height: math.unit(1.7, "meters"),
  58742. weight: math.unit(70, "kg"),
  58743. name: "Dressed",
  58744. image: {
  58745. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58746. extra: 710/689,
  58747. bottom: 67/777
  58748. },
  58749. form: "hippogriff",
  58750. default: true
  58751. },
  58752. hippogriff_nude: {
  58753. height: math.unit(1.7, "meters"),
  58754. weight: math.unit(70, "kg"),
  58755. name: "Nude",
  58756. image: {
  58757. source: "./media/characters/otreus/hippogriff-nude.svg",
  58758. extra: 710/689,
  58759. bottom: 67/777
  58760. },
  58761. form: "hippogriff",
  58762. },
  58763. hippogriff_dressedLewd: {
  58764. height: math.unit(1.7, "meters"),
  58765. weight: math.unit(70, "kg"),
  58766. name: "Dressed (Lewd)",
  58767. image: {
  58768. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58769. extra: 710/689,
  58770. bottom: 67/777
  58771. },
  58772. form: "hippogriff",
  58773. },
  58774. hippogriff_nudeLewd: {
  58775. height: math.unit(1.7, "meters"),
  58776. weight: math.unit(70, "kg"),
  58777. name: "Nude (Lewd)",
  58778. image: {
  58779. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58780. extra: 710/689,
  58781. bottom: 67/777
  58782. },
  58783. form: "hippogriff",
  58784. },
  58785. },
  58786. [
  58787. {
  58788. name: "Original Size",
  58789. height: math.unit(1.7, "meters"),
  58790. allForms: true
  58791. },
  58792. {
  58793. name: "Incognito Size",
  58794. height: math.unit(2, "meters"),
  58795. allForms: true
  58796. },
  58797. {
  58798. name: "Mega",
  58799. height: math.unit(2, "km"),
  58800. allForms: true
  58801. },
  58802. {
  58803. name: "Mega+",
  58804. height: math.unit(40, "km"),
  58805. allForms: true
  58806. },
  58807. {
  58808. name: "Giga",
  58809. height: math.unit(250, "km"),
  58810. allForms: true
  58811. },
  58812. {
  58813. name: "Giga+",
  58814. height: math.unit(3000, "km"),
  58815. allForms: true
  58816. },
  58817. {
  58818. name: "Terra",
  58819. height: math.unit(20000, "km"),
  58820. allForms: true
  58821. },
  58822. {
  58823. name: "Solar (Home Size)",
  58824. height: math.unit(3e6, "km"),
  58825. allForms: true,
  58826. default: true
  58827. },
  58828. ],
  58829. {
  58830. "magpie": {
  58831. name: "Magpie",
  58832. default: true
  58833. },
  58834. "hippogriff": {
  58835. name: "Hippogriff",
  58836. },
  58837. }
  58838. ))
  58839. characterMakers.push(() => makeCharacter(
  58840. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58841. {
  58842. frontDressed: {
  58843. height: math.unit(1.8, "meters"),
  58844. weight: math.unit(90, "kg"),
  58845. name: "Front (Dressed)",
  58846. image: {
  58847. source: "./media/characters/thalia/front-dressed.svg",
  58848. extra: 478/402,
  58849. bottom: 55/533
  58850. }
  58851. },
  58852. backDressed: {
  58853. height: math.unit(1.8, "meters"),
  58854. weight: math.unit(90, "kg"),
  58855. name: "Back (Dressed)",
  58856. image: {
  58857. source: "./media/characters/thalia/back-dressed.svg",
  58858. extra: 500/424,
  58859. bottom: 15/515
  58860. }
  58861. },
  58862. frontNude: {
  58863. height: math.unit(1.8, "meters"),
  58864. weight: math.unit(90, "kg"),
  58865. name: "Front (Nude)",
  58866. image: {
  58867. source: "./media/characters/thalia/front-nude.svg",
  58868. extra: 478/402,
  58869. bottom: 55/533
  58870. }
  58871. },
  58872. backNude: {
  58873. height: math.unit(1.8, "meters"),
  58874. weight: math.unit(90, "kg"),
  58875. name: "Back (Nude)",
  58876. image: {
  58877. source: "./media/characters/thalia/back-nude.svg",
  58878. extra: 500/424,
  58879. bottom: 15/515
  58880. }
  58881. },
  58882. },
  58883. [
  58884. {
  58885. name: "Incognito",
  58886. height: math.unit(3, "meters")
  58887. },
  58888. {
  58889. name: "Macro",
  58890. height: math.unit(500, "meters")
  58891. },
  58892. {
  58893. name: "Mega",
  58894. height: math.unit(5, "km")
  58895. },
  58896. {
  58897. name: "Mega+",
  58898. height: math.unit(30, "km")
  58899. },
  58900. {
  58901. name: "Giga",
  58902. height: math.unit(350, "km")
  58903. },
  58904. {
  58905. name: "Giga+",
  58906. height: math.unit(4000, "km")
  58907. },
  58908. {
  58909. name: "Terra",
  58910. height: math.unit(35000, "km")
  58911. },
  58912. {
  58913. name: "Original Size",
  58914. height: math.unit(130000, "km")
  58915. },
  58916. {
  58917. name: "Solar (Home Size)",
  58918. height: math.unit(4e6, "km"),
  58919. default: true
  58920. },
  58921. ]
  58922. ))
  58923. characterMakers.push(() => makeCharacter(
  58924. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  58925. {
  58926. front: {
  58927. height: math.unit(1.8, "meters"),
  58928. weight: math.unit(95, "kg"),
  58929. name: "Front",
  58930. image: {
  58931. source: "./media/characters/shango/front.svg",
  58932. extra: 1925/1774,
  58933. bottom: 67/1992
  58934. }
  58935. },
  58936. back: {
  58937. height: math.unit(1.8, "meters"),
  58938. weight: math.unit(95, "kg"),
  58939. name: "Back",
  58940. image: {
  58941. source: "./media/characters/shango/back.svg",
  58942. extra: 1915/1766,
  58943. bottom: 52/1967
  58944. }
  58945. },
  58946. frontLewd: {
  58947. height: math.unit(1.8, "meters"),
  58948. weight: math.unit(95, "kg"),
  58949. name: "Front (Lewd)",
  58950. image: {
  58951. source: "./media/characters/shango/front-lewd.svg",
  58952. extra: 1925/1774,
  58953. bottom: 67/1992
  58954. }
  58955. },
  58956. backLewd: {
  58957. height: math.unit(1.8, "meters"),
  58958. weight: math.unit(95, "kg"),
  58959. name: "Back (Lewd)",
  58960. image: {
  58961. source: "./media/characters/shango/back-lewd.svg",
  58962. extra: 1915/1766,
  58963. bottom: 52/1967
  58964. }
  58965. },
  58966. maw: {
  58967. height: math.unit(1.64, "feet"),
  58968. name: "Maw",
  58969. image: {
  58970. source: "./media/characters/shango/maw.svg"
  58971. }
  58972. },
  58973. dick: {
  58974. height: math.unit(2.14, "feet"),
  58975. name: "Dick",
  58976. image: {
  58977. source: "./media/characters/shango/dick.svg"
  58978. }
  58979. },
  58980. },
  58981. [
  58982. {
  58983. name: "Incognito",
  58984. height: math.unit(1.8, "meters")
  58985. },
  58986. {
  58987. name: "Home Size",
  58988. height: math.unit(60, "meters"),
  58989. default: true
  58990. },
  58991. {
  58992. name: "Macro",
  58993. height: math.unit(450, "meters")
  58994. },
  58995. {
  58996. name: "Mega",
  58997. height: math.unit(6, "km")
  58998. },
  58999. {
  59000. name: "Mega+",
  59001. height: math.unit(35, "km")
  59002. },
  59003. {
  59004. name: "Giga",
  59005. height: math.unit(500, "km")
  59006. },
  59007. {
  59008. name: "Giga+",
  59009. height: math.unit(5000, "km")
  59010. },
  59011. {
  59012. name: "Terra",
  59013. height: math.unit(60000, "km")
  59014. },
  59015. {
  59016. name: "Terra+",
  59017. height: math.unit(400000, "km")
  59018. },
  59019. ]
  59020. ))
  59021. characterMakers.push(() => makeCharacter(
  59022. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59023. {
  59024. front: {
  59025. height: math.unit(2, "meters"),
  59026. weight: math.unit(95, "kg"),
  59027. name: "Front",
  59028. image: {
  59029. source: "./media/characters/osiris-gryphon/front.svg",
  59030. extra: 1508/1313,
  59031. bottom: 87/1595
  59032. }
  59033. },
  59034. back: {
  59035. height: math.unit(2, "meters"),
  59036. weight: math.unit(95, "kg"),
  59037. name: "Back",
  59038. image: {
  59039. source: "./media/characters/osiris-gryphon/back.svg",
  59040. extra: 1436/1309,
  59041. bottom: 64/1500
  59042. }
  59043. },
  59044. frontLewd: {
  59045. height: math.unit(2, "meters"),
  59046. weight: math.unit(95, "kg"),
  59047. name: "Front-lewd",
  59048. image: {
  59049. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59050. extra: 1508/1313,
  59051. bottom: 87/1595
  59052. }
  59053. },
  59054. wing: {
  59055. height: math.unit(6.3333, "feet"),
  59056. name: "Wing",
  59057. image: {
  59058. source: "./media/characters/osiris-gryphon/wing.svg"
  59059. }
  59060. },
  59061. },
  59062. [
  59063. {
  59064. name: "Incognito",
  59065. height: math.unit(2, "meters")
  59066. },
  59067. {
  59068. name: "Home Size",
  59069. height: math.unit(30, "meters"),
  59070. default: true
  59071. },
  59072. {
  59073. name: "Macro",
  59074. height: math.unit(100, "meters")
  59075. },
  59076. {
  59077. name: "Macro+",
  59078. height: math.unit(350, "meters")
  59079. },
  59080. {
  59081. name: "Mega",
  59082. height: math.unit(40, "km")
  59083. },
  59084. {
  59085. name: "Giga",
  59086. height: math.unit(300, "km")
  59087. },
  59088. {
  59089. name: "Giga+",
  59090. height: math.unit(2000, "km")
  59091. },
  59092. {
  59093. name: "Terra",
  59094. height: math.unit(30000, "km")
  59095. },
  59096. ]
  59097. ))
  59098. characterMakers.push(() => makeCharacter(
  59099. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59100. {
  59101. front: {
  59102. height: math.unit(2.5, "meters"),
  59103. weight: math.unit(200, "kg"),
  59104. name: "Front",
  59105. image: {
  59106. source: "./media/characters/atlas-dragon/front.svg",
  59107. extra: 745/462,
  59108. bottom: 36/781
  59109. }
  59110. },
  59111. back: {
  59112. height: math.unit(2.5, "meters"),
  59113. weight: math.unit(200, "kg"),
  59114. name: "Back",
  59115. image: {
  59116. source: "./media/characters/atlas-dragon/back.svg",
  59117. extra: 848/822,
  59118. bottom: 57/905
  59119. }
  59120. },
  59121. frontLewd: {
  59122. height: math.unit(2.5, "meters"),
  59123. weight: math.unit(200, "kg"),
  59124. name: "Front (Lewd)",
  59125. image: {
  59126. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59127. extra: 745/462,
  59128. bottom: 36/781
  59129. }
  59130. },
  59131. backLewd: {
  59132. height: math.unit(2.5, "meters"),
  59133. weight: math.unit(200, "kg"),
  59134. name: "Back (Lewd)",
  59135. image: {
  59136. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59137. extra: 848/822,
  59138. bottom: 57/905
  59139. }
  59140. },
  59141. },
  59142. [
  59143. {
  59144. name: "Incognito",
  59145. height: math.unit(2.5, "meters")
  59146. },
  59147. {
  59148. name: "Small Macro",
  59149. height: math.unit(50, "meters")
  59150. },
  59151. {
  59152. name: "Macro",
  59153. height: math.unit(350, "meters")
  59154. },
  59155. {
  59156. name: "Mega",
  59157. height: math.unit(5.5, "kilometers")
  59158. },
  59159. {
  59160. name: "Mega+",
  59161. height: math.unit(50, "km")
  59162. },
  59163. {
  59164. name: "Giga",
  59165. height: math.unit(350, "km")
  59166. },
  59167. {
  59168. name: "Giga+",
  59169. height: math.unit(2000, "km")
  59170. },
  59171. {
  59172. name: "Giga++",
  59173. height: math.unit(6500, "km")
  59174. },
  59175. {
  59176. name: "Terra",
  59177. height: math.unit(30000, "km")
  59178. },
  59179. {
  59180. name: "Terra+",
  59181. height: math.unit(250000, "km")
  59182. },
  59183. {
  59184. name: "True Size",
  59185. height: math.unit(100, "multiverses"),
  59186. default: true
  59187. },
  59188. ]
  59189. ))
  59190. characterMakers.push(() => makeCharacter(
  59191. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59192. {
  59193. front: {
  59194. height: math.unit(1.8, "m"),
  59195. weight: math.unit(120, "kg"),
  59196. name: "Front",
  59197. image: {
  59198. source: "./media/characters/chey/front.svg",
  59199. extra: 1359/1270,
  59200. bottom: 18/1377
  59201. }
  59202. },
  59203. arm: {
  59204. height: math.unit(2.05, "feet"),
  59205. name: "Arm",
  59206. image: {
  59207. source: "./media/characters/chey/arm.svg"
  59208. }
  59209. },
  59210. head: {
  59211. height: math.unit(1.89, "feet"),
  59212. name: "Head",
  59213. image: {
  59214. source: "./media/characters/chey/head.svg"
  59215. }
  59216. },
  59217. },
  59218. [
  59219. {
  59220. name: "Original Size",
  59221. height: math.unit(5, "cm")
  59222. },
  59223. {
  59224. name: "Incognito Size",
  59225. height: math.unit(2.4, "m")
  59226. },
  59227. {
  59228. name: "Home Size",
  59229. height: math.unit(200, "meters"),
  59230. default: true
  59231. },
  59232. {
  59233. name: "Mega",
  59234. height: math.unit(2, "km")
  59235. },
  59236. {
  59237. name: "Giga (Preferred Size)",
  59238. height: math.unit(2000, "km")
  59239. },
  59240. {
  59241. name: "Giga+",
  59242. height: math.unit(6000, "km")
  59243. },
  59244. {
  59245. name: "Terra",
  59246. height: math.unit(17000, "km")
  59247. },
  59248. {
  59249. name: "Terra+",
  59250. height: math.unit(75000, "km")
  59251. },
  59252. {
  59253. name: "Terra++",
  59254. height: math.unit(225000, "km")
  59255. },
  59256. ]
  59257. ))
  59258. characterMakers.push(() => makeCharacter(
  59259. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59260. {
  59261. side: {
  59262. height: math.unit(7.8, "meters"),
  59263. name: "Side",
  59264. image: {
  59265. source: "./media/characters/ragnarok/side.svg",
  59266. extra: 725/621,
  59267. bottom: 72/797
  59268. }
  59269. },
  59270. },
  59271. [
  59272. {
  59273. name: "Normal",
  59274. height: math.unit(7.8, "meters"),
  59275. default: true
  59276. },
  59277. ]
  59278. ))
  59279. characterMakers.push(() => makeCharacter(
  59280. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59281. {
  59282. hyena_front: {
  59283. height: math.unit(2.1, "meters"),
  59284. weight: math.unit(110, "kg"),
  59285. name: "Front",
  59286. image: {
  59287. source: "./media/characters/nima/hyena-front.svg",
  59288. extra: 1904/1796,
  59289. bottom: 67/1971
  59290. },
  59291. form: "hyena",
  59292. },
  59293. hyena_back: {
  59294. height: math.unit(2.1, "meters"),
  59295. weight: math.unit(110, "kg"),
  59296. name: "Back",
  59297. image: {
  59298. source: "./media/characters/nima/hyena-back.svg",
  59299. extra: 1964/1884,
  59300. bottom: 35/1999
  59301. },
  59302. form: "hyena",
  59303. },
  59304. shark_front: {
  59305. height: math.unit(1.95, "meters"),
  59306. weight: math.unit(110, "kg"),
  59307. name: "Front",
  59308. image: {
  59309. source: "./media/characters/nima/shark-front.svg",
  59310. extra: 2238/2013,
  59311. bottom: 0/223
  59312. },
  59313. form: "shark",
  59314. },
  59315. paw: {
  59316. height: math.unit(1, "feet"),
  59317. name: "Paw",
  59318. image: {
  59319. source: "./media/characters/nima/paw.svg"
  59320. }
  59321. },
  59322. circlet: {
  59323. height: math.unit(0.3, "feet"),
  59324. name: "Circlet",
  59325. image: {
  59326. source: "./media/characters/nima/circlet.svg"
  59327. }
  59328. },
  59329. necklace: {
  59330. height: math.unit(1.2, "feet"),
  59331. name: "Necklace",
  59332. image: {
  59333. source: "./media/characters/nima/necklace.svg"
  59334. }
  59335. },
  59336. bracelet: {
  59337. height: math.unit(0.51, "feet"),
  59338. name: "Bracelet",
  59339. image: {
  59340. source: "./media/characters/nima/bracelet.svg"
  59341. }
  59342. },
  59343. armband: {
  59344. height: math.unit(1.3, "feet"),
  59345. name: "Armband",
  59346. image: {
  59347. source: "./media/characters/nima/armband.svg"
  59348. }
  59349. },
  59350. },
  59351. [
  59352. {
  59353. name: "Incognito",
  59354. height: math.unit(2.1, "meters"),
  59355. allForms: true
  59356. },
  59357. {
  59358. name: "Small Macro",
  59359. height: math.unit(50, "meters"),
  59360. allForms: true
  59361. },
  59362. {
  59363. name: "Macro",
  59364. height: math.unit(200, "meters"),
  59365. allForms: true
  59366. },
  59367. {
  59368. name: "Mega",
  59369. height: math.unit(2.5, "km"),
  59370. allForms: true
  59371. },
  59372. {
  59373. name: "Mega+",
  59374. height: math.unit(30, "km"),
  59375. allForms: true
  59376. },
  59377. {
  59378. name: "Giga (Home Size)",
  59379. height: math.unit(400, "km"),
  59380. allForms: true,
  59381. default: true
  59382. },
  59383. {
  59384. name: "Giga+",
  59385. height: math.unit(2500, "km"),
  59386. allForms: true
  59387. },
  59388. {
  59389. name: "Giga++",
  59390. height: math.unit(8000, "km"),
  59391. allForms: true
  59392. },
  59393. {
  59394. name: "Terra",
  59395. height: math.unit(20000, "km"),
  59396. allForms: true
  59397. },
  59398. {
  59399. name: "Terra+",
  59400. height: math.unit(70000, "km"),
  59401. allForms: true
  59402. },
  59403. {
  59404. name: "Terra++",
  59405. height: math.unit(600000, "km"),
  59406. allForms: true
  59407. },
  59408. {
  59409. name: "Galactic",
  59410. height: math.unit(40, "galaxies"),
  59411. allForms: true
  59412. },
  59413. {
  59414. name: "Universal",
  59415. height: math.unit(40, "universes"),
  59416. allForms: true
  59417. },
  59418. ],
  59419. {
  59420. "hyena": {
  59421. name: "Hyena",
  59422. default: true
  59423. },
  59424. "shark": {
  59425. name: "Shark",
  59426. },
  59427. }
  59428. ))
  59429. characterMakers.push(() => makeCharacter(
  59430. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59431. {
  59432. anthro_front: {
  59433. height: math.unit(1.5, "meters"),
  59434. name: "Front",
  59435. image: {
  59436. source: "./media/characters/adelaide/anthro-front.svg",
  59437. extra: 860/783,
  59438. bottom: 60/920
  59439. },
  59440. form: "anthro",
  59441. default: true
  59442. },
  59443. hand: {
  59444. height: math.unit(0.65, "feet"),
  59445. name: "Hand",
  59446. image: {
  59447. source: "./media/characters/adelaide/hand.svg"
  59448. },
  59449. form: "anthro"
  59450. },
  59451. foot: {
  59452. height: math.unit(1.38 * 259 / 314, "feet"),
  59453. name: "Foot",
  59454. image: {
  59455. source: "./media/characters/adelaide/foot.svg",
  59456. extra: 259/259,
  59457. bottom: 55/314
  59458. },
  59459. form: "anthro"
  59460. },
  59461. feather: {
  59462. height: math.unit(0.85, "feet"),
  59463. name: "Feather",
  59464. image: {
  59465. source: "./media/characters/adelaide/feather.svg"
  59466. },
  59467. form: "anthro"
  59468. },
  59469. feral_side: {
  59470. height: math.unit(1, "meters"),
  59471. name: "Side",
  59472. image: {
  59473. source: "./media/characters/adelaide/feral-side.svg",
  59474. extra: 550/467,
  59475. bottom: 37/587
  59476. },
  59477. form: "feral",
  59478. default: true
  59479. },
  59480. feral_hand: {
  59481. height: math.unit(0.58, "feet"),
  59482. name: "Hand",
  59483. image: {
  59484. source: "./media/characters/adelaide/hand.svg"
  59485. },
  59486. form: "feral"
  59487. },
  59488. feral_foot: {
  59489. height: math.unit(1.2 * 259 / 314, "feet"),
  59490. name: "Foot",
  59491. image: {
  59492. source: "./media/characters/adelaide/foot.svg",
  59493. extra: 259/259,
  59494. bottom: 55/314
  59495. },
  59496. form: "feral"
  59497. },
  59498. feral_feather: {
  59499. height: math.unit(0.63, "feet"),
  59500. name: "Feather",
  59501. image: {
  59502. source: "./media/characters/adelaide/feather.svg"
  59503. },
  59504. form: "feral"
  59505. },
  59506. },
  59507. [
  59508. {
  59509. name: "Normal",
  59510. height: math.unit(1.5, "meters"),
  59511. form: "anthro",
  59512. default: true
  59513. },
  59514. {
  59515. name: "Normal",
  59516. height: math.unit(1, "meters"),
  59517. form: "feral",
  59518. default: true
  59519. },
  59520. ],
  59521. {
  59522. "anthro": {
  59523. name: "Anthro",
  59524. default: true
  59525. },
  59526. "feral": {
  59527. name: "Feral",
  59528. },
  59529. }
  59530. ))
  59531. characterMakers.push(() => makeCharacter(
  59532. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59533. {
  59534. front: {
  59535. height: math.unit(2.5, "meters"),
  59536. name: "Front",
  59537. image: {
  59538. source: "./media/characters/goa/front.svg",
  59539. extra: 1109/1013,
  59540. bottom: 150/1259
  59541. }
  59542. },
  59543. },
  59544. [
  59545. {
  59546. name: "Normal",
  59547. height: math.unit(2.5, "meters"),
  59548. default: true
  59549. },
  59550. ]
  59551. ))
  59552. characterMakers.push(() => makeCharacter(
  59553. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59554. {
  59555. front: {
  59556. height: math.unit(2, "meters"),
  59557. weight: math.unit(100, "kg"),
  59558. name: "Front",
  59559. image: {
  59560. source: "./media/characters/kiki-weavile/front.svg",
  59561. extra: 357/332,
  59562. bottom: 60/417
  59563. }
  59564. },
  59565. },
  59566. [
  59567. {
  59568. name: "Normal",
  59569. height: math.unit(2, "meters"),
  59570. default: true
  59571. },
  59572. ]
  59573. ))
  59574. characterMakers.push(() => makeCharacter(
  59575. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59576. {
  59577. side: {
  59578. height: math.unit(1.6, "meters"),
  59579. name: "Side",
  59580. image: {
  59581. source: "./media/characters/liza/side.svg",
  59582. extra: 943/915,
  59583. bottom: 72/1015
  59584. }
  59585. },
  59586. },
  59587. [
  59588. {
  59589. name: "Normal",
  59590. height: math.unit(1.6, "meters"),
  59591. default: true
  59592. },
  59593. ]
  59594. ))
  59595. characterMakers.push(() => makeCharacter(
  59596. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59597. {
  59598. side: {
  59599. height: math.unit(2.5, "meters"),
  59600. preyCapacity: math.unit(1, "people"),
  59601. name: "Side",
  59602. image: {
  59603. source: "./media/characters/persephone-sweetbreath/side.svg",
  59604. extra: 796/700,
  59605. bottom: 44/840
  59606. }
  59607. },
  59608. sideVore: {
  59609. height: math.unit(2.5, "meters"),
  59610. preyCapacity: math.unit(1, "people"),
  59611. name: "Side (Full)",
  59612. image: {
  59613. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59614. extra: 796/700,
  59615. bottom: 44/840
  59616. }
  59617. },
  59618. },
  59619. [
  59620. {
  59621. name: "Normal",
  59622. height: math.unit(2.5, "meters"),
  59623. default: true
  59624. },
  59625. ]
  59626. ))
  59627. characterMakers.push(() => makeCharacter(
  59628. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59629. {
  59630. front: {
  59631. height: math.unit(32, "meters"),
  59632. name: "Front",
  59633. image: {
  59634. source: "./media/characters/pierce/front.svg",
  59635. extra: 1695/1475,
  59636. bottom: 185/1880
  59637. }
  59638. },
  59639. side: {
  59640. height: math.unit(32, "meters"),
  59641. name: "Side",
  59642. image: {
  59643. source: "./media/characters/pierce/side.svg",
  59644. extra: 974/859,
  59645. bottom: 43/1017
  59646. }
  59647. },
  59648. frontWingless: {
  59649. height: math.unit(32, "meters"),
  59650. name: "Front (Wingless)",
  59651. image: {
  59652. source: "./media/characters/pierce/front-wingless.svg",
  59653. extra: 1695/1475,
  59654. bottom: 185/1880
  59655. }
  59656. },
  59657. sideWingless: {
  59658. height: math.unit(32, "meters"),
  59659. name: "Side (Wingless)",
  59660. image: {
  59661. source: "./media/characters/pierce/side-wingless.svg",
  59662. extra: 974/859,
  59663. bottom: 43/1017
  59664. }
  59665. },
  59666. maw: {
  59667. height: math.unit(19.3, "meters"),
  59668. name: "Maw",
  59669. image: {
  59670. source: "./media/characters/pierce/maw.svg"
  59671. }
  59672. },
  59673. },
  59674. [
  59675. {
  59676. name: "Small",
  59677. height: math.unit(8.5, "meters")
  59678. },
  59679. {
  59680. name: "Normal",
  59681. height: math.unit(32, "meters"),
  59682. default: true
  59683. },
  59684. ]
  59685. ))
  59686. characterMakers.push(() => makeCharacter(
  59687. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59688. {
  59689. front: {
  59690. height: math.unit(2.3, "meters"),
  59691. weight: math.unit(165, "kg"),
  59692. name: "Front",
  59693. image: {
  59694. source: "./media/characters/shira/front.svg",
  59695. extra: 924/919,
  59696. bottom: 17/941
  59697. },
  59698. form: "cobra",
  59699. default: true
  59700. },
  59701. back: {
  59702. height: math.unit(2.3, "meters"),
  59703. weight: math.unit(165, "kg"),
  59704. name: "Back",
  59705. image: {
  59706. source: "./media/characters/shira/back.svg",
  59707. extra: 928/922,
  59708. bottom: 18/946
  59709. },
  59710. form: "cobra"
  59711. },
  59712. frontLewd: {
  59713. height: math.unit(2.3, "meters"),
  59714. weight: math.unit(165, "kg"),
  59715. name: "Front (Lewd)",
  59716. image: {
  59717. source: "./media/characters/shira/front-lewd.svg",
  59718. extra: 924/919,
  59719. bottom: 17/941
  59720. },
  59721. form: "cobra"
  59722. },
  59723. backLewd: {
  59724. height: math.unit(2.3, "meters"),
  59725. weight: math.unit(165, "kg"),
  59726. name: "Back (Lewd)",
  59727. image: {
  59728. source: "./media/characters/shira/back-lewd.svg",
  59729. extra: 928/922,
  59730. bottom: 18/946
  59731. },
  59732. form: "cobra"
  59733. },
  59734. maw: {
  59735. height: math.unit(1.14, "feet"),
  59736. name: "Maw",
  59737. image: {
  59738. source: "./media/characters/shira/maw.svg"
  59739. },
  59740. form: "cobra"
  59741. },
  59742. magma_front: {
  59743. height: math.unit(2.3, "meters"),
  59744. weight: math.unit(165, "kg"),
  59745. name: "Front",
  59746. image: {
  59747. source: "./media/characters/shira/magma-front.svg",
  59748. extra: 1870/1693,
  59749. bottom: 24/1894
  59750. },
  59751. form: "magma",
  59752. },
  59753. magma_back: {
  59754. height: math.unit(2.3, "meters"),
  59755. weight: math.unit(165, "kg"),
  59756. name: "Back",
  59757. image: {
  59758. source: "./media/characters/shira/magma-back.svg",
  59759. extra: 1918/1756,
  59760. bottom: 46/1964
  59761. },
  59762. form: "magma",
  59763. },
  59764. },
  59765. [
  59766. {
  59767. name: "Incognito",
  59768. height: math.unit(2.3, "meters"),
  59769. allForms: true
  59770. },
  59771. {
  59772. name: "Home Size",
  59773. height: math.unit(150, "meters"),
  59774. default: true,
  59775. allForms: true
  59776. },
  59777. {
  59778. name: "Macro",
  59779. height: math.unit(2, "km"),
  59780. allForms: true
  59781. },
  59782. {
  59783. name: "Mega",
  59784. height: math.unit(30, "km"),
  59785. allForms: true
  59786. },
  59787. {
  59788. name: "Giga",
  59789. height: math.unit(450, "km"),
  59790. allForms: true
  59791. },
  59792. {
  59793. name: "Giga+",
  59794. height: math.unit(3000, "km"),
  59795. allForms: true
  59796. },
  59797. {
  59798. name: "Giga++",
  59799. height: math.unit(6000, "km"),
  59800. allForms: true
  59801. },
  59802. {
  59803. name: "Terra",
  59804. height: math.unit(80000, "km"),
  59805. allForms: true
  59806. },
  59807. {
  59808. name: "Terra+",
  59809. height: math.unit(350000, "km"),
  59810. allForms: true
  59811. },
  59812. {
  59813. name: "Solar",
  59814. height: math.unit(1e6, "km"),
  59815. allForms: true
  59816. },
  59817. ],
  59818. {
  59819. "cobra": {
  59820. name: "Cobra",
  59821. default: true
  59822. },
  59823. "magma": {
  59824. name: "Magma Dragon",
  59825. },
  59826. }
  59827. ))
  59828. characterMakers.push(() => makeCharacter(
  59829. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59830. {
  59831. front: {
  59832. height: math.unit(2, "meters"),
  59833. weight: math.unit(160, "kg"),
  59834. name: "Front",
  59835. image: {
  59836. source: "./media/characters/daxerios/front.svg",
  59837. extra: 1334/1277,
  59838. bottom: 45/1379
  59839. }
  59840. },
  59841. frontLewd: {
  59842. height: math.unit(2, "meters"),
  59843. weight: math.unit(160, "kg"),
  59844. name: "Front (Lewd)",
  59845. image: {
  59846. source: "./media/characters/daxerios/front-lewd.svg",
  59847. extra: 1334/1277,
  59848. bottom: 45/1379
  59849. }
  59850. },
  59851. dick: {
  59852. height: math.unit(2.35, "feet"),
  59853. name: "Dick",
  59854. image: {
  59855. source: "./media/characters/daxerios/dick.svg"
  59856. }
  59857. },
  59858. },
  59859. [
  59860. {
  59861. name: "\"Small\"",
  59862. height: math.unit(5, "meters")
  59863. },
  59864. {
  59865. name: "Original Size",
  59866. height: math.unit(500, "meters"),
  59867. default: true
  59868. },
  59869. {
  59870. name: "Mega",
  59871. height: math.unit(2, "km")
  59872. },
  59873. {
  59874. name: "Mega+",
  59875. height: math.unit(35, "km")
  59876. },
  59877. {
  59878. name: "Giga",
  59879. height: math.unit(250, "km")
  59880. },
  59881. {
  59882. name: "Giga+",
  59883. height: math.unit(3000, "km")
  59884. },
  59885. {
  59886. name: "Terra",
  59887. height: math.unit(25000, "km")
  59888. },
  59889. {
  59890. name: "Terra+",
  59891. height: math.unit(300000, "km")
  59892. },
  59893. {
  59894. name: "Solar",
  59895. height: math.unit(1e6, "km")
  59896. },
  59897. ]
  59898. ))
  59899. characterMakers.push(() => makeCharacter(
  59900. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  59901. {
  59902. front: {
  59903. height: math.unit(8 + 4/12, "feet"),
  59904. weight: math.unit(464, "lb"),
  59905. name: "Front",
  59906. image: {
  59907. source: "./media/characters/caveat/front.svg",
  59908. extra: 1861/1678,
  59909. bottom: 40/1901
  59910. }
  59911. },
  59912. },
  59913. [
  59914. {
  59915. name: "Normal",
  59916. height: math.unit(8 + 4/12, "feet"),
  59917. default: true
  59918. },
  59919. ]
  59920. ))
  59921. characterMakers.push(() => makeCharacter(
  59922. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  59923. {
  59924. front: {
  59925. height: math.unit(12, "feet"),
  59926. weight: math.unit(1800, "lb"),
  59927. name: "Front",
  59928. image: {
  59929. source: "./media/characters/centbair/front.svg",
  59930. extra: 781/663,
  59931. bottom: 25/806
  59932. }
  59933. },
  59934. frontNsfw: {
  59935. height: math.unit(12, "feet"),
  59936. weight: math.unit(1800, "lb"),
  59937. name: "Front (NSFW)",
  59938. image: {
  59939. source: "./media/characters/centbair/front-nsfw.svg",
  59940. extra: 781/663,
  59941. bottom: 25/806
  59942. }
  59943. },
  59944. back: {
  59945. height: math.unit(12, "feet"),
  59946. weight: math.unit(1800, "lb"),
  59947. name: "Back",
  59948. image: {
  59949. source: "./media/characters/centbair/back.svg",
  59950. extra: 808/761,
  59951. bottom: 19/827
  59952. }
  59953. },
  59954. dick: {
  59955. height: math.unit(6.5, "feet"),
  59956. name: "Dick",
  59957. image: {
  59958. source: "./media/characters/centbair/dick.svg"
  59959. }
  59960. },
  59961. slit: {
  59962. height: math.unit(3.25, "feet"),
  59963. name: "Slit",
  59964. image: {
  59965. source: "./media/characters/centbair/slit.svg"
  59966. }
  59967. },
  59968. },
  59969. [
  59970. {
  59971. name: "Normal",
  59972. height: math.unit(12, "feet"),
  59973. default: true
  59974. },
  59975. ]
  59976. ))
  59977. characterMakers.push(() => makeCharacter(
  59978. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  59979. {
  59980. front: {
  59981. height: math.unit(5 + 7/12, "feet"),
  59982. name: "Front",
  59983. image: {
  59984. source: "./media/characters/andy/front.svg",
  59985. extra: 634/588,
  59986. bottom: 36/670
  59987. },
  59988. extraAttributes: {
  59989. "pawLength": {
  59990. name: "Paw Length",
  59991. power: 1,
  59992. type: "length",
  59993. base: math.unit(1, "feet")
  59994. },
  59995. }
  59996. },
  59997. side: {
  59998. height: math.unit(5 + 7/12, "feet"),
  59999. name: "Side",
  60000. image: {
  60001. source: "./media/characters/andy/side.svg",
  60002. extra: 641/596,
  60003. bottom: 34/675
  60004. },
  60005. extraAttributes: {
  60006. "pawLength": {
  60007. name: "Paw Length",
  60008. power: 1,
  60009. type: "length",
  60010. base: math.unit(1, "feet")
  60011. },
  60012. }
  60013. },
  60014. back: {
  60015. height: math.unit(5 + 7/12, "feet"),
  60016. name: "Back",
  60017. image: {
  60018. source: "./media/characters/andy/back.svg",
  60019. extra: 618/583,
  60020. bottom: 39/657
  60021. },
  60022. extraAttributes: {
  60023. "pawLength": {
  60024. name: "Paw Length",
  60025. power: 1,
  60026. type: "length",
  60027. base: math.unit(1, "feet")
  60028. },
  60029. }
  60030. },
  60031. paw: {
  60032. height: math.unit(1.13, "feet"),
  60033. name: "Paw",
  60034. image: {
  60035. source: "./media/characters/andy/paw.svg"
  60036. }
  60037. },
  60038. },
  60039. [
  60040. {
  60041. name: "Micro",
  60042. height: math.unit(4, "inches")
  60043. },
  60044. {
  60045. name: "Normal",
  60046. height: math.unit(5 + 7/12, "feet"),
  60047. default: true
  60048. },
  60049. {
  60050. name: "Macro",
  60051. height: math.unit(390.42, "feet")
  60052. },
  60053. ]
  60054. ))
  60055. characterMakers.push(() => makeCharacter(
  60056. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60057. {
  60058. front: {
  60059. height: math.unit(7, "feet"),
  60060. weight: math.unit(250, "lb"),
  60061. name: "Front",
  60062. image: {
  60063. source: "./media/characters/vix-titan/front.svg",
  60064. extra: 460/428,
  60065. bottom: 15/475
  60066. },
  60067. extraAttributes: {
  60068. "pawWidth": {
  60069. name: "Paw Width",
  60070. power: 1,
  60071. type: "length",
  60072. base: math.unit(0.75, "feet")
  60073. },
  60074. }
  60075. },
  60076. },
  60077. [
  60078. {
  60079. name: "Normal",
  60080. height: math.unit(7, "feet"),
  60081. default: true
  60082. },
  60083. {
  60084. name: "Giant",
  60085. height: math.unit(1500, "feet")
  60086. },
  60087. {
  60088. name: "Mega",
  60089. height: math.unit(10, "miles")
  60090. },
  60091. {
  60092. name: "Giga",
  60093. height: math.unit(150, "miles")
  60094. },
  60095. {
  60096. name: "Tera",
  60097. height: math.unit(144000, "miles")
  60098. },
  60099. ]
  60100. ))
  60101. characterMakers.push(() => makeCharacter(
  60102. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60103. {
  60104. front: {
  60105. height: math.unit(6 + 2/12, "feet"),
  60106. name: "Front",
  60107. image: {
  60108. source: "./media/characters/reiku/front.svg",
  60109. extra: 1910/1757,
  60110. bottom: 103/2013
  60111. },
  60112. extraAttributes: {
  60113. "thighThickness": {
  60114. name: "Thigh Thickness",
  60115. power: 1,
  60116. type: "length",
  60117. base: math.unit(1.12, "feet")
  60118. },
  60119. "assThickness": {
  60120. name: "Ass Thickness",
  60121. power: 1,
  60122. type: "length",
  60123. base: math.unit(1.12*2, "feet")
  60124. },
  60125. }
  60126. },
  60127. side: {
  60128. height: math.unit(6 + 2/12, "feet"),
  60129. name: "Side",
  60130. image: {
  60131. source: "./media/characters/reiku/side.svg",
  60132. extra: 1846/1748,
  60133. bottom: 99/1945
  60134. },
  60135. extraAttributes: {
  60136. "thighThickness": {
  60137. name: "Thigh Thickness",
  60138. power: 1,
  60139. type: "length",
  60140. base: math.unit(1.12, "feet")
  60141. },
  60142. "assThickness": {
  60143. name: "Ass Thickness",
  60144. power: 1,
  60145. type: "length",
  60146. base: math.unit(1.12*2, "feet")
  60147. },
  60148. }
  60149. },
  60150. back: {
  60151. height: math.unit(6 + 2/12, "feet"),
  60152. name: "Back",
  60153. image: {
  60154. source: "./media/characters/reiku/back.svg",
  60155. extra: 1941/1786,
  60156. bottom: 34/1975
  60157. },
  60158. extraAttributes: {
  60159. "thighThickness": {
  60160. name: "Thigh Thickness",
  60161. power: 1,
  60162. type: "length",
  60163. base: math.unit(1.12, "feet")
  60164. },
  60165. "assThickness": {
  60166. name: "Ass Thickness",
  60167. power: 1,
  60168. type: "length",
  60169. base: math.unit(1.12*2, "feet")
  60170. },
  60171. }
  60172. },
  60173. head: {
  60174. height: math.unit(1.8, "feet"),
  60175. name: "Head",
  60176. image: {
  60177. source: "./media/characters/reiku/head.svg"
  60178. }
  60179. },
  60180. tailTop: {
  60181. height: math.unit(8.4, "feet"),
  60182. name: "Tail (Top)",
  60183. image: {
  60184. source: "./media/characters/reiku/tail-top.svg"
  60185. }
  60186. },
  60187. tailBottom: {
  60188. height: math.unit(8.4, "feet"),
  60189. name: "Tail (Bottom)",
  60190. image: {
  60191. source: "./media/characters/reiku/tail-bottom.svg"
  60192. }
  60193. },
  60194. foot: {
  60195. height: math.unit(2.6, "feet"),
  60196. name: "Foot",
  60197. image: {
  60198. source: "./media/characters/reiku/foot.svg"
  60199. }
  60200. },
  60201. footCurled: {
  60202. height: math.unit(2.3, "feet"),
  60203. name: "Foot (Curled)",
  60204. image: {
  60205. source: "./media/characters/reiku/foot-curled.svg"
  60206. }
  60207. },
  60208. footSide: {
  60209. height: math.unit(1.26, "feet"),
  60210. name: "Foot (Side)",
  60211. image: {
  60212. source: "./media/characters/reiku/foot-side.svg"
  60213. }
  60214. },
  60215. },
  60216. [
  60217. {
  60218. name: "Normal",
  60219. height: math.unit(6 + 2/12, "feet"),
  60220. default: true
  60221. },
  60222. ]
  60223. ))
  60224. characterMakers.push(() => makeCharacter(
  60225. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60226. {
  60227. front: {
  60228. height: math.unit(7, "feet"),
  60229. weight: math.unit(500, "kg"),
  60230. name: "Front",
  60231. image: {
  60232. source: "./media/characters/cialda/front.svg",
  60233. extra: 912/745,
  60234. bottom: 55/967
  60235. }
  60236. },
  60237. },
  60238. [
  60239. {
  60240. name: "Normal",
  60241. height: math.unit(7, "feet"),
  60242. default: true
  60243. },
  60244. ]
  60245. ))
  60246. characterMakers.push(() => makeCharacter(
  60247. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60248. {
  60249. side: {
  60250. height: math.unit(6, "feet"),
  60251. weight: math.unit(600, "lb"),
  60252. preyCapacity: math.unit(25, "liters"),
  60253. name: "Side",
  60254. image: {
  60255. source: "./media/characters/darkkin/side.svg",
  60256. extra: 1597/1447,
  60257. bottom: 101/1698
  60258. }
  60259. },
  60260. },
  60261. [
  60262. {
  60263. name: "Canon Height",
  60264. height: math.unit(568, "feet"),
  60265. default: true
  60266. },
  60267. ]
  60268. ))
  60269. characterMakers.push(() => makeCharacter(
  60270. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60271. {
  60272. front: {
  60273. height: math.unit(6, "feet"),
  60274. weight: math.unit(1500, "lb"),
  60275. preyCapacity: math.unit(3, "people"),
  60276. name: "Front",
  60277. image: {
  60278. source: "./media/characters/livnia/front.svg",
  60279. extra: 934/932,
  60280. bottom: 83/1017
  60281. }
  60282. },
  60283. back: {
  60284. height: math.unit(6, "feet"),
  60285. weight: math.unit(1500, "lb"),
  60286. preyCapacity: math.unit(3, "people"),
  60287. name: "Back",
  60288. image: {
  60289. source: "./media/characters/livnia/back.svg",
  60290. extra: 916/915,
  60291. bottom: 58/974
  60292. }
  60293. },
  60294. head: {
  60295. height: math.unit(1.53, "feet"),
  60296. name: "Head",
  60297. image: {
  60298. source: "./media/characters/livnia/head.svg"
  60299. }
  60300. },
  60301. maw: {
  60302. height: math.unit(0.78, "feet"),
  60303. name: "Maw",
  60304. image: {
  60305. source: "./media/characters/livnia/maw.svg"
  60306. }
  60307. },
  60308. genitals: {
  60309. height: math.unit(0.35, "feet"),
  60310. name: "Genitals",
  60311. image: {
  60312. source: "./media/characters/livnia/genitals.svg"
  60313. }
  60314. },
  60315. },
  60316. [
  60317. {
  60318. name: "Normal",
  60319. height: math.unit(1000, "feet"),
  60320. default: true
  60321. },
  60322. ]
  60323. ))
  60324. characterMakers.push(() => makeCharacter(
  60325. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60326. {
  60327. front: {
  60328. height: math.unit(4, "feet"),
  60329. weight: math.unit(73, "lb"),
  60330. name: "Front",
  60331. image: {
  60332. source: "./media/characters/hayaku/front.svg",
  60333. extra: 1011/888,
  60334. bottom: 33/1044
  60335. }
  60336. },
  60337. back: {
  60338. height: math.unit(4, "feet"),
  60339. weight: math.unit(73, "lb"),
  60340. name: "Back",
  60341. image: {
  60342. source: "./media/characters/hayaku/back.svg",
  60343. extra: 1040/930,
  60344. bottom: 20/1060
  60345. }
  60346. },
  60347. },
  60348. [
  60349. {
  60350. name: "Normal",
  60351. height: math.unit(4, "feet"),
  60352. default: true
  60353. },
  60354. ]
  60355. ))
  60356. characterMakers.push(() => makeCharacter(
  60357. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60358. {
  60359. front: {
  60360. height: math.unit(6 + 7/12, "feet"),
  60361. weight: math.unit(300, "lb"),
  60362. name: "Front",
  60363. image: {
  60364. source: "./media/characters/athena-bryzant/front.svg",
  60365. extra: 870/835,
  60366. bottom: 33/903
  60367. }
  60368. },
  60369. back: {
  60370. height: math.unit(6 + 7/12, "feet"),
  60371. weight: math.unit(300, "lb"),
  60372. name: "Back",
  60373. image: {
  60374. source: "./media/characters/athena-bryzant/back.svg",
  60375. extra: 858/823,
  60376. bottom: 30/888
  60377. }
  60378. },
  60379. head: {
  60380. height: math.unit(2.38, "feet"),
  60381. name: "Head",
  60382. image: {
  60383. source: "./media/characters/athena-bryzant/head.svg"
  60384. }
  60385. },
  60386. wings: {
  60387. height: math.unit(2.85, "feet"),
  60388. name: "Wings",
  60389. image: {
  60390. source: "./media/characters/athena-bryzant/wings.svg"
  60391. }
  60392. },
  60393. },
  60394. [
  60395. {
  60396. name: "Normal",
  60397. height: math.unit(6 + 7/12, "feet"),
  60398. default: true
  60399. },
  60400. {
  60401. name: "Big",
  60402. height: math.unit(8, "feet")
  60403. },
  60404. {
  60405. name: "Very Big",
  60406. height: math.unit(11, "feet")
  60407. },
  60408. ]
  60409. ))
  60410. characterMakers.push(() => makeCharacter(
  60411. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60412. {
  60413. side: {
  60414. height: math.unit(3, "meters"),
  60415. weight: math.unit(7500, "kg"),
  60416. preyCapacity: math.unit(1e12, "people"),
  60417. name: "Side",
  60418. image: {
  60419. source: "./media/characters/zel-kesh/side.svg",
  60420. extra: 910/407,
  60421. bottom: 147/1057
  60422. }
  60423. },
  60424. },
  60425. [
  60426. {
  60427. name: "Normal",
  60428. height: math.unit(3, "meters"),
  60429. default: true
  60430. },
  60431. ]
  60432. ))
  60433. characterMakers.push(() => makeCharacter(
  60434. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60435. {
  60436. front: {
  60437. height: math.unit(2, "meters"),
  60438. weight: math.unit(95, "kg"),
  60439. name: "Front",
  60440. image: {
  60441. source: "./media/characters/kane-fox/front.svg",
  60442. extra: 945/888,
  60443. bottom: 27/972
  60444. }
  60445. },
  60446. back: {
  60447. height: math.unit(2, "meters"),
  60448. weight: math.unit(95, "kg"),
  60449. name: "Back",
  60450. image: {
  60451. source: "./media/characters/kane-fox/back.svg",
  60452. extra: 959/914,
  60453. bottom: 15/974
  60454. }
  60455. },
  60456. frontLewd: {
  60457. height: math.unit(2, "meters"),
  60458. weight: math.unit(95, "kg"),
  60459. name: "Front (Lewd)",
  60460. image: {
  60461. source: "./media/characters/kane-fox/front-lewd.svg",
  60462. extra: 945/888,
  60463. bottom: 27/972
  60464. }
  60465. },
  60466. },
  60467. [
  60468. {
  60469. name: "Home Size",
  60470. height: math.unit(2, "meters"),
  60471. default: true
  60472. },
  60473. {
  60474. name: "Macro",
  60475. height: math.unit(200, "meters")
  60476. },
  60477. {
  60478. name: "Small Mega",
  60479. height: math.unit(3, "km")
  60480. },
  60481. {
  60482. name: "Mega",
  60483. height: math.unit(50, "km")
  60484. },
  60485. {
  60486. name: "Giga",
  60487. height: math.unit(200, "km")
  60488. },
  60489. {
  60490. name: "Giga+",
  60491. height: math.unit(2500, "km")
  60492. },
  60493. {
  60494. name: "Terra",
  60495. height: math.unit(70000, "km")
  60496. },
  60497. {
  60498. name: "Terra+",
  60499. height: math.unit(150000, "km")
  60500. },
  60501. {
  60502. name: "Terra++",
  60503. height: math.unit(400000, "km")
  60504. },
  60505. ]
  60506. ))
  60507. characterMakers.push(() => makeCharacter(
  60508. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60509. {
  60510. otter_front: {
  60511. height: math.unit(1.8, "meters"),
  60512. weight: math.unit(90, "kg"),
  60513. name: "Front",
  60514. image: {
  60515. source: "./media/characters/ayranus/otter-front.svg",
  60516. extra: 468/452,
  60517. bottom: 43/511
  60518. },
  60519. form: "otter",
  60520. },
  60521. otter_frontLewd: {
  60522. height: math.unit(1.8, "meters"),
  60523. weight: math.unit(90, "kg"),
  60524. name: "Front (Lewd)",
  60525. image: {
  60526. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60527. extra: 468/452,
  60528. bottom: 43/511
  60529. },
  60530. form: "otter",
  60531. },
  60532. lionbat_front: {
  60533. height: math.unit(1.8, "meters"),
  60534. weight: math.unit(90, "kg"),
  60535. name: "Front (Lewd)",
  60536. image: {
  60537. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60538. extra: 797/740,
  60539. bottom: 78/875
  60540. },
  60541. form: "lionbat",
  60542. },
  60543. paw: {
  60544. height: math.unit(1.5, "feet"),
  60545. name: "Paw",
  60546. image: {
  60547. source: "./media/characters/ayranus/paw.svg"
  60548. },
  60549. },
  60550. },
  60551. [
  60552. {
  60553. name: "Incognito",
  60554. height: math.unit(1.8, "meters"),
  60555. allForms: true
  60556. },
  60557. {
  60558. name: "Macro",
  60559. height: math.unit(60, "meters"),
  60560. allForms: true
  60561. },
  60562. {
  60563. name: "Macro+",
  60564. height: math.unit(200, "meters"),
  60565. allForms: true
  60566. },
  60567. {
  60568. name: "Mega",
  60569. height: math.unit(35, "km"),
  60570. allForms: true
  60571. },
  60572. {
  60573. name: "Giga",
  60574. height: math.unit(220, "km"),
  60575. allForms: true
  60576. },
  60577. {
  60578. name: "Giga+",
  60579. height: math.unit(1500, "km"),
  60580. allForms: true
  60581. },
  60582. {
  60583. name: "Terra",
  60584. height: math.unit(13000, "km"),
  60585. allForms: true
  60586. },
  60587. {
  60588. name: "Terra+",
  60589. height: math.unit(500000, "km"),
  60590. allForms: true
  60591. },
  60592. {
  60593. name: "Galactic",
  60594. height: math.unit(486080, "parsecs"),
  60595. default: true,
  60596. allForms: true
  60597. },
  60598. ],
  60599. {
  60600. "otter": {
  60601. name: "Otter",
  60602. default: true
  60603. },
  60604. "lionbat": {
  60605. name: "Lionbat",
  60606. },
  60607. }
  60608. ))
  60609. characterMakers.push(() => makeCharacter(
  60610. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60611. {
  60612. front: {
  60613. height: math.unit(7 + 4/12, "feet"),
  60614. weight: math.unit(400, "lb"),
  60615. name: "Front",
  60616. image: {
  60617. source: "./media/characters/proxy/front.svg",
  60618. extra: 1605/1542,
  60619. bottom: 55/1660
  60620. }
  60621. },
  60622. side: {
  60623. height: math.unit(7 + 4/12, "feet"),
  60624. weight: math.unit(400, "lb"),
  60625. name: "Side",
  60626. image: {
  60627. source: "./media/characters/proxy/side.svg",
  60628. extra: 794/759,
  60629. bottom: 6/800
  60630. }
  60631. },
  60632. hand: {
  60633. height: math.unit(1.54, "feet"),
  60634. name: "Hand",
  60635. image: {
  60636. source: "./media/characters/proxy/hand.svg"
  60637. }
  60638. },
  60639. paw: {
  60640. height: math.unit(1.53, "feet"),
  60641. name: "Paw",
  60642. image: {
  60643. source: "./media/characters/proxy/paw.svg"
  60644. }
  60645. },
  60646. maw: {
  60647. height: math.unit(1.9, "feet"),
  60648. name: "Maw",
  60649. image: {
  60650. source: "./media/characters/proxy/maw.svg"
  60651. }
  60652. },
  60653. },
  60654. [
  60655. {
  60656. name: "Normal",
  60657. height: math.unit(7 + 4/12, "feet"),
  60658. default: true
  60659. },
  60660. ]
  60661. ))
  60662. characterMakers.push(() => makeCharacter(
  60663. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60664. {
  60665. front: {
  60666. height: math.unit(4, "meters"),
  60667. name: "Front",
  60668. image: {
  60669. source: "./media/characters/crocozilla/front.svg",
  60670. extra: 1790/1742,
  60671. bottom: 78/1868
  60672. }
  60673. },
  60674. },
  60675. [
  60676. {
  60677. name: "Normal",
  60678. height: math.unit(4, "meters"),
  60679. default: true
  60680. },
  60681. ]
  60682. ))
  60683. characterMakers.push(() => makeCharacter(
  60684. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60685. {
  60686. front: {
  60687. height: math.unit(1.8, "meters"),
  60688. weight: math.unit(120, "kg"),
  60689. name: "Front",
  60690. image: {
  60691. source: "./media/characters/kurz/front.svg",
  60692. extra: 1960/1824,
  60693. bottom: 41/2001
  60694. }
  60695. },
  60696. back: {
  60697. height: math.unit(1.8, "meters"),
  60698. weight: math.unit(120, "kg"),
  60699. name: "Back",
  60700. image: {
  60701. source: "./media/characters/kurz/back.svg",
  60702. extra: 1906/1787,
  60703. bottom: 60/1966
  60704. }
  60705. },
  60706. frontLewd: {
  60707. height: math.unit(1.8, "meters"),
  60708. weight: math.unit(120, "kg"),
  60709. name: "Front (Lewd)",
  60710. image: {
  60711. source: "./media/characters/kurz/front-lewd.svg",
  60712. extra: 1960/1824,
  60713. bottom: 41/2001
  60714. }
  60715. },
  60716. maw: {
  60717. height: math.unit(0.69, "meters"),
  60718. name: "Maw",
  60719. image: {
  60720. source: "./media/characters/kurz/maw.svg"
  60721. }
  60722. },
  60723. },
  60724. [
  60725. {
  60726. name: "Original Size",
  60727. height: math.unit(1.8, "meters")
  60728. },
  60729. {
  60730. name: "Incognito Size",
  60731. height: math.unit(2.4, "meters"),
  60732. default: true
  60733. },
  60734. {
  60735. name: "Macro",
  60736. height: math.unit(30, "meters")
  60737. },
  60738. {
  60739. name: "Macro+",
  60740. height: math.unit(250, "meters")
  60741. },
  60742. {
  60743. name: "Mega",
  60744. height: math.unit(2, "km")
  60745. },
  60746. {
  60747. name: "Mega+",
  60748. height: math.unit(35, "km")
  60749. },
  60750. {
  60751. name: "Mega++",
  60752. height: math.unit(75, "km")
  60753. },
  60754. {
  60755. name: "Giga",
  60756. height: math.unit(250, "km")
  60757. },
  60758. {
  60759. name: "Terra",
  60760. height: math.unit(15000, "km")
  60761. },
  60762. {
  60763. name: "Terra+",
  60764. height: math.unit(2250000, "km")
  60765. },
  60766. ]
  60767. ))
  60768. characterMakers.push(() => makeCharacter(
  60769. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60770. {
  60771. front: {
  60772. height: math.unit(16 + 3/12, "feet"),
  60773. weight: math.unit(3575, "lb"),
  60774. name: "Front",
  60775. image: {
  60776. source: "./media/characters/nikita/front.svg",
  60777. extra: 1064/955,
  60778. bottom: 47/1111
  60779. }
  60780. },
  60781. },
  60782. [
  60783. {
  60784. name: "Normal",
  60785. height: math.unit(16 + 3/12, "feet"),
  60786. default: true
  60787. },
  60788. {
  60789. name: "Big",
  60790. height: math.unit(21, "feet")
  60791. },
  60792. {
  60793. name: "Biggest",
  60794. height: math.unit(50, "feet")
  60795. },
  60796. ]
  60797. ))
  60798. characterMakers.push(() => makeCharacter(
  60799. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60800. {
  60801. front: {
  60802. height: math.unit(1.92, "m"),
  60803. weight: math.unit(76, "kg"),
  60804. name: "Front",
  60805. image: {
  60806. source: "./media/characters/kyara/front.svg",
  60807. extra: 1550/1438,
  60808. bottom: 139/1689
  60809. }
  60810. },
  60811. back: {
  60812. height: math.unit(1.92, "m"),
  60813. weight: math.unit(76, "kg"),
  60814. name: "Back",
  60815. image: {
  60816. source: "./media/characters/kyara/back.svg",
  60817. extra: 1523/1427,
  60818. bottom: 83/1606
  60819. }
  60820. },
  60821. head: {
  60822. height: math.unit(1.22, "feet"),
  60823. name: "Head",
  60824. image: {
  60825. source: "./media/characters/kyara/head.svg"
  60826. }
  60827. },
  60828. maw: {
  60829. height: math.unit(0.73, "feet"),
  60830. name: "Maw",
  60831. image: {
  60832. source: "./media/characters/kyara/maw.svg"
  60833. }
  60834. },
  60835. paws: {
  60836. height: math.unit(0.95, "feet"),
  60837. name: "Paws",
  60838. image: {
  60839. source: "./media/characters/kyara/paws.svg"
  60840. }
  60841. },
  60842. },
  60843. [
  60844. {
  60845. name: "Normal",
  60846. height: math.unit(1.92, "meters"),
  60847. default: true
  60848. },
  60849. {
  60850. name: "Mini Macro",
  60851. height: math.unit(192, "meters")
  60852. },
  60853. {
  60854. name: "Macro",
  60855. height: math.unit(480, "meters")
  60856. },
  60857. {
  60858. name: "Mega Macro",
  60859. height: math.unit(1440, "meters")
  60860. },
  60861. ]
  60862. ))
  60863. characterMakers.push(() => makeCharacter(
  60864. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  60865. {
  60866. front: {
  60867. height: math.unit(6, "feet"),
  60868. weight: math.unit(160, "lbs"),
  60869. preyCapacity: math.unit(0.05, "people"),
  60870. name: "Front",
  60871. image: {
  60872. source: "./media/characters/layla-amari/front.svg",
  60873. extra: 1922/1723,
  60874. bottom: 90/2012
  60875. }
  60876. },
  60877. back: {
  60878. height: math.unit(6, "feet"),
  60879. weight: math.unit(160, "lbs"),
  60880. preyCapacity: math.unit(0.05, "people"),
  60881. name: "Back",
  60882. image: {
  60883. source: "./media/characters/layla-amari/back.svg",
  60884. extra: 1917/1718,
  60885. bottom: 50/1967
  60886. }
  60887. },
  60888. frontDressed: {
  60889. height: math.unit(6, "feet"),
  60890. weight: math.unit(160, "lbs"),
  60891. preyCapacity: math.unit(0.05, "people"),
  60892. name: "Front (Dressed)",
  60893. image: {
  60894. source: "./media/characters/layla-amari/front-dressed.svg",
  60895. extra: 1922/1723,
  60896. bottom: 90/2012
  60897. }
  60898. },
  60899. face: {
  60900. height: math.unit(0.93, "feet"),
  60901. name: "Face",
  60902. image: {
  60903. source: "./media/characters/layla-amari/face.svg"
  60904. }
  60905. },
  60906. hand: {
  60907. height: math.unit(0.66 , "feet"),
  60908. name: "Hand",
  60909. image: {
  60910. source: "./media/characters/layla-amari/hand.svg"
  60911. }
  60912. },
  60913. foot: {
  60914. height: math.unit(1, "feet"),
  60915. name: "Foot",
  60916. image: {
  60917. source: "./media/characters/layla-amari/foot.svg"
  60918. }
  60919. },
  60920. necklace: {
  60921. height: math.unit(0.32, "feet"),
  60922. name: "Necklace",
  60923. image: {
  60924. source: "./media/characters/layla-amari/necklace.svg"
  60925. }
  60926. },
  60927. nipple: {
  60928. height: math.unit(0.2, "feet"),
  60929. name: "Nipple",
  60930. image: {
  60931. source: "./media/characters/layla-amari/nipple.svg"
  60932. }
  60933. },
  60934. slit: {
  60935. height: math.unit(0.26, "feet"),
  60936. name: "Slit",
  60937. image: {
  60938. source: "./media/characters/layla-amari/slit.svg"
  60939. }
  60940. },
  60941. },
  60942. [
  60943. {
  60944. name: "Natural",
  60945. height: math.unit(825, "feet"),
  60946. default: true
  60947. },
  60948. {
  60949. name: "Enhanced",
  60950. height: math.unit(8250, "feet")
  60951. },
  60952. {
  60953. name: "Apparent Size",
  60954. height: math.unit(9.04363e+8, "meters")
  60955. },
  60956. ]
  60957. ))
  60958. characterMakers.push(() => makeCharacter(
  60959. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  60960. {
  60961. front: {
  60962. height: math.unit(1.3, "meters"),
  60963. name: "Front",
  60964. image: {
  60965. source: "./media/characters/percy/front.svg",
  60966. extra: 1444/1289,
  60967. bottom: 54/1498
  60968. }
  60969. },
  60970. },
  60971. [
  60972. {
  60973. name: "Normal",
  60974. height: math.unit(1.3, "meters"),
  60975. default: true
  60976. },
  60977. ]
  60978. ))
  60979. characterMakers.push(() => makeCharacter(
  60980. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  60981. {
  60982. side: {
  60983. height: math.unit(10, "meters"),
  60984. name: "Side",
  60985. image: {
  60986. source: "./media/characters/grev/side.svg",
  60987. extra: 653/266,
  60988. bottom: 77/730
  60989. }
  60990. },
  60991. head: {
  60992. height: math.unit(16.2, "m"),
  60993. name: "Head",
  60994. image: {
  60995. source: "./media/characters/grev/head.svg"
  60996. }
  60997. },
  60998. dick: {
  60999. height: math.unit(2.8135932034, "m"),
  61000. name: "Dick",
  61001. image: {
  61002. source: "./media/characters/grev/dick.svg"
  61003. }
  61004. },
  61005. },
  61006. [
  61007. {
  61008. name: "Friend-Sized",
  61009. height: math.unit(80, "cm")
  61010. },
  61011. {
  61012. name: "Normal",
  61013. height: math.unit(10, "meters"),
  61014. default: true
  61015. },
  61016. {
  61017. name: "Macro",
  61018. height: math.unit(200, "meters")
  61019. },
  61020. ]
  61021. ))
  61022. characterMakers.push(() => makeCharacter(
  61023. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61024. {
  61025. front: {
  61026. height: math.unit(19.75, "feet"),
  61027. weight: math.unit(20000, "lb"),
  61028. name: "Front",
  61029. image: {
  61030. source: "./media/characters/azuuca/front.svg",
  61031. extra: 1593/1511,
  61032. bottom: 55/1648
  61033. }
  61034. },
  61035. },
  61036. [
  61037. {
  61038. name: "Normal",
  61039. height: math.unit(19.75, "feet"),
  61040. default: true
  61041. },
  61042. ]
  61043. ))
  61044. characterMakers.push(() => makeCharacter(
  61045. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61046. {
  61047. front: {
  61048. height: math.unit(15, "feet"),
  61049. weight: math.unit(1500, "lb"),
  61050. name: "Front",
  61051. image: {
  61052. source: "./media/characters/valuria/front.svg",
  61053. extra: 1588/1486,
  61054. bottom: 31/1619
  61055. }
  61056. },
  61057. },
  61058. [
  61059. {
  61060. name: "Normal",
  61061. height: math.unit(15, "feet"),
  61062. default: true
  61063. },
  61064. {
  61065. name: "Small",
  61066. height: math.unit(500, "feet")
  61067. },
  61068. {
  61069. name: "Macro",
  61070. height: math.unit(4000, "feet")
  61071. },
  61072. {
  61073. name: "Mega Macro",
  61074. height: math.unit(2000, "miles")
  61075. },
  61076. {
  61077. name: "Giga Macro",
  61078. height: math.unit(3e6, "miles")
  61079. },
  61080. ]
  61081. ))
  61082. characterMakers.push(() => makeCharacter(
  61083. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61084. {
  61085. front: {
  61086. height: math.unit(3500, "solarradii"),
  61087. name: "Front",
  61088. image: {
  61089. source: "./media/characters/terigaia/front.svg",
  61090. extra: 1531/1451,
  61091. bottom: 98/1629
  61092. }
  61093. },
  61094. },
  61095. [
  61096. {
  61097. name: "Normal",
  61098. height: math.unit(3500, "solarradii"),
  61099. default: true
  61100. },
  61101. ]
  61102. ))
  61103. characterMakers.push(() => makeCharacter(
  61104. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61105. {
  61106. front: {
  61107. height: math.unit(9.34, "feet"),
  61108. weight: math.unit(600, "lb"),
  61109. name: "Front",
  61110. image: {
  61111. source: "./media/characters/blair-blaziken/front.svg",
  61112. extra: 1557/1462,
  61113. bottom: 55/1612
  61114. }
  61115. },
  61116. },
  61117. [
  61118. {
  61119. name: "Normal",
  61120. height: math.unit(9.34, "feet"),
  61121. default: true
  61122. },
  61123. ]
  61124. ))
  61125. characterMakers.push(() => makeCharacter(
  61126. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61127. {
  61128. pistrogre_front: {
  61129. height: math.unit(10, "feet"),
  61130. weight: math.unit(10, "tons"),
  61131. name: "Front",
  61132. image: {
  61133. source: "./media/characters/braxia/pistrogre-front.svg",
  61134. extra: 1531/1334,
  61135. bottom: 114/1645
  61136. },
  61137. form: "pistrogre",
  61138. default: true
  61139. },
  61140. human_front: {
  61141. height: math.unit(10, "feet"),
  61142. weight: math.unit(10, "tons"),
  61143. name: "Front",
  61144. image: {
  61145. source: "./media/characters/braxia/human-front.svg",
  61146. extra: 1574/1501,
  61147. bottom: 37/1611
  61148. },
  61149. form: "human",
  61150. default: true
  61151. },
  61152. },
  61153. [
  61154. {
  61155. name: "Normal",
  61156. height: math.unit(10, "feet"),
  61157. default: true,
  61158. allForms: true
  61159. },
  61160. {
  61161. name: "Macro",
  61162. height: math.unit(1000, "feet"),
  61163. allForms: true
  61164. },
  61165. {
  61166. name: "Mega Macro",
  61167. height: math.unit(100, "miles"),
  61168. allForms: true
  61169. },
  61170. {
  61171. name: "Cosmic",
  61172. height: math.unit(1000000, "lightyears"),
  61173. allForms: true
  61174. },
  61175. {
  61176. name: "ϐѮԆԬӁꭍϞԢ",
  61177. height: math.unit(1000, "multiverses"),
  61178. allForms: true
  61179. },
  61180. ],
  61181. {
  61182. "pistrogre": {
  61183. name: "Pistrogre",
  61184. default: true
  61185. },
  61186. "human": {
  61187. name: "Human",
  61188. },
  61189. }
  61190. ))
  61191. characterMakers.push(() => makeCharacter(
  61192. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61193. {
  61194. front: {
  61195. height: math.unit(6 + 1/12, "feet"),
  61196. weight: math.unit(280, "lb"),
  61197. name: "Front",
  61198. image: {
  61199. source: "./media/characters/kiriga-yato/front.svg",
  61200. extra: 445/394,
  61201. bottom: 11/456
  61202. }
  61203. },
  61204. },
  61205. [
  61206. {
  61207. name: "Descended",
  61208. height: math.unit(3, "feet")
  61209. },
  61210. {
  61211. name: "Average",
  61212. height: math.unit(6 + 1/12, "feet"),
  61213. default: true
  61214. },
  61215. {
  61216. name: "Ascended",
  61217. height: math.unit(9 + 2/12, "feet")
  61218. },
  61219. ]
  61220. ))
  61221. characterMakers.push(() => makeCharacter(
  61222. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61223. {
  61224. front: {
  61225. height: math.unit(6, "feet"),
  61226. weight: math.unit(150, "lb"),
  61227. name: "Front",
  61228. image: {
  61229. source: "./media/characters/kylie/front.svg",
  61230. extra: 1114/1046,
  61231. bottom: 65/1179
  61232. },
  61233. extraAttributes: {
  61234. "hoofSize": {
  61235. name: "Hoof Size",
  61236. power: 2,
  61237. type: "area",
  61238. base: math.unit(0.034, "m^2")
  61239. },
  61240. "footSize": {
  61241. name: "Foot Size",
  61242. power: 2,
  61243. type: "area",
  61244. base: math.unit(0.75, "m^2")
  61245. },
  61246. }
  61247. },
  61248. side: {
  61249. height: math.unit(6, "feet"),
  61250. weight: math.unit(150, "lb"),
  61251. name: "Side",
  61252. image: {
  61253. source: "./media/characters/kylie/side.svg",
  61254. extra: 1178/1110,
  61255. bottom: 21/1199
  61256. },
  61257. extraAttributes: {
  61258. "hoofSize": {
  61259. name: "Hoof Size",
  61260. power: 2,
  61261. type: "area",
  61262. base: math.unit(0.034, "m^2")
  61263. },
  61264. "footSize": {
  61265. name: "Foot Size",
  61266. power: 2,
  61267. type: "area",
  61268. base: math.unit(0.75, "m^2")
  61269. },
  61270. }
  61271. },
  61272. back: {
  61273. height: math.unit(6, "feet"),
  61274. weight: math.unit(150, "lb"),
  61275. name: "Back",
  61276. image: {
  61277. source: "./media/characters/kylie/back.svg",
  61278. extra: 1115/1047,
  61279. bottom: 66/1181
  61280. },
  61281. extraAttributes: {
  61282. "hoofSize": {
  61283. name: "Hoof Size",
  61284. power: 2,
  61285. type: "area",
  61286. base: math.unit(0.034, "m^2")
  61287. },
  61288. "footSize": {
  61289. name: "Foot Size",
  61290. power: 2,
  61291. type: "area",
  61292. base: math.unit(0.75, "m^2")
  61293. },
  61294. }
  61295. },
  61296. head: {
  61297. height: math.unit(1.85, "feet"),
  61298. name: "Head",
  61299. image: {
  61300. source: "./media/characters/kylie/head.svg"
  61301. }
  61302. },
  61303. },
  61304. [
  61305. {
  61306. name: "Normal",
  61307. height: math.unit(90, "meters"),
  61308. default: true
  61309. },
  61310. ]
  61311. ))
  61312. characterMakers.push(() => makeCharacter(
  61313. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61314. {
  61315. front: {
  61316. height: math.unit(245, "feet"),
  61317. weight: math.unit(400000, "lb"),
  61318. name: "Front",
  61319. image: {
  61320. source: "./media/characters/sabado/front.svg",
  61321. extra: 1309/1164,
  61322. bottom: 29/1338
  61323. }
  61324. },
  61325. },
  61326. [
  61327. {
  61328. name: "Normal",
  61329. height: math.unit(245, "feet"),
  61330. default: true
  61331. },
  61332. ]
  61333. ))
  61334. characterMakers.push(() => makeCharacter(
  61335. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61336. {
  61337. shark_front: {
  61338. height: math.unit(2, "meters"),
  61339. weight: math.unit(200, "kg"),
  61340. name: "Front",
  61341. image: {
  61342. source: "./media/characters/zechal/shark-front.svg",
  61343. extra: 969/925,
  61344. bottom: 74/1043
  61345. },
  61346. form: "shark",
  61347. },
  61348. shark_back: {
  61349. height: math.unit(2, "meters"),
  61350. weight: math.unit(200, "kg"),
  61351. name: "Back",
  61352. image: {
  61353. source: "./media/characters/zechal/shark-back.svg",
  61354. extra: 994/949,
  61355. bottom: 176/1170
  61356. },
  61357. form: "shark",
  61358. },
  61359. shark_frontLewd: {
  61360. height: math.unit(2, "meters"),
  61361. weight: math.unit(200, "kg"),
  61362. name: "Front (Lewd)",
  61363. image: {
  61364. source: "./media/characters/zechal/shark-front-lewd.svg",
  61365. extra: 969/925,
  61366. bottom: 74/1043
  61367. },
  61368. form: "shark",
  61369. },
  61370. shark_side: {
  61371. height: math.unit(1.56, "meters"),
  61372. weight: math.unit(200, "kg"),
  61373. name: "Side",
  61374. image: {
  61375. source: "./media/characters/zechal/shark-side.svg"
  61376. },
  61377. form: "shark",
  61378. },
  61379. dragon_front: {
  61380. height: math.unit(2, "meters"),
  61381. weight: math.unit(200, "kg"),
  61382. name: "Front",
  61383. image: {
  61384. source: "./media/characters/zechal/dragon-front.svg",
  61385. extra: 1041/925,
  61386. bottom: 74/1115
  61387. },
  61388. form: "dragon",
  61389. },
  61390. dragon_back: {
  61391. height: math.unit(2, "meters"),
  61392. weight: math.unit(200, "kg"),
  61393. name: "Back",
  61394. image: {
  61395. source: "./media/characters/zechal/dragon-back.svg",
  61396. extra: 1061/949,
  61397. bottom: 176/1237
  61398. },
  61399. form: "dragon",
  61400. },
  61401. dragon_frontLewd: {
  61402. height: math.unit(2, "meters"),
  61403. weight: math.unit(200, "kg"),
  61404. name: "Front (Lewd)",
  61405. image: {
  61406. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61407. extra: 1041/925,
  61408. bottom: 74/1115
  61409. },
  61410. form: "dragon",
  61411. },
  61412. dragon_side: {
  61413. height: math.unit(1.56, "meters"),
  61414. weight: math.unit(200, "kg"),
  61415. name: "Side",
  61416. image: {
  61417. source: "./media/characters/zechal/dragon-side.svg"
  61418. },
  61419. form: "dragon",
  61420. },
  61421. foot: {
  61422. height: math.unit(0.5, "meters"),
  61423. name: "Foot",
  61424. image: {
  61425. source: "./media/characters/zechal/foot.svg"
  61426. }
  61427. },
  61428. sheathFront: {
  61429. height: math.unit(0.45, "meters"),
  61430. name: "Sheath (Front)",
  61431. image: {
  61432. source: "./media/characters/zechal/sheath-front.svg"
  61433. }
  61434. },
  61435. sheathSide: {
  61436. height: math.unit(0.45, "meters"),
  61437. name: "Sheath (Side)",
  61438. image: {
  61439. source: "./media/characters/zechal/sheath-side.svg"
  61440. }
  61441. },
  61442. },
  61443. [
  61444. {
  61445. name: "Incognito",
  61446. height: math.unit(2, "meters"),
  61447. allForms: true
  61448. },
  61449. {
  61450. name: "Small Rampage",
  61451. height: math.unit(25, "meters"),
  61452. allForms: true
  61453. },
  61454. {
  61455. name: "Home Size",
  61456. height: math.unit(250, "meters"),
  61457. allForms: true,
  61458. default: true
  61459. },
  61460. {
  61461. name: "Macro+",
  61462. height: math.unit(700, "meters"),
  61463. allForms: true
  61464. },
  61465. {
  61466. name: "Small Mega",
  61467. height: math.unit(3, "km"),
  61468. allForms: true
  61469. },
  61470. {
  61471. name: "Mega",
  61472. height: math.unit(15, "km"),
  61473. allForms: true
  61474. },
  61475. {
  61476. name: "Giga",
  61477. height: math.unit(300, "km"),
  61478. allForms: true
  61479. },
  61480. {
  61481. name: "Giga+",
  61482. height: math.unit(1750, "km"),
  61483. allForms: true
  61484. },
  61485. {
  61486. name: "Continental",
  61487. height: math.unit(5000, "km"),
  61488. allForms: true
  61489. },
  61490. {
  61491. name: "Terra",
  61492. height: math.unit(20000, "km"),
  61493. allForms: true
  61494. },
  61495. {
  61496. name: "Terra+",
  61497. height: math.unit(300000, "km"),
  61498. allForms: true
  61499. },
  61500. {
  61501. name: "Solar",
  61502. height: math.unit(40000000, "km"),
  61503. allForms: true
  61504. },
  61505. {
  61506. name: "Galactic",
  61507. height: math.unit(810133, "parsecs"),
  61508. allForms: true
  61509. },
  61510. {
  61511. name: "Universal",
  61512. height: math.unit(25, "universes"),
  61513. allForms: true
  61514. },
  61515. ],
  61516. {
  61517. "shark": {
  61518. name: "Shark",
  61519. default: true
  61520. },
  61521. "dragon": {
  61522. name: "Dragon",
  61523. },
  61524. }
  61525. ))
  61526. characterMakers.push(() => makeCharacter(
  61527. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61528. {
  61529. front: {
  61530. height: math.unit(2.2, "meters"),
  61531. weight: math.unit(150, "kg"),
  61532. name: "Front",
  61533. image: {
  61534. source: "./media/characters/sergis/front.svg",
  61535. extra: 1314/1312,
  61536. bottom: 112/1426
  61537. }
  61538. },
  61539. back: {
  61540. height: math.unit(2.2, "meters"),
  61541. weight: math.unit(150, "kg"),
  61542. name: "Back",
  61543. image: {
  61544. source: "./media/characters/sergis/back.svg",
  61545. extra: 1335/1333,
  61546. bottom: 19/1354
  61547. }
  61548. },
  61549. frontLewd: {
  61550. height: math.unit(2.2, "meters"),
  61551. weight: math.unit(150, "kg"),
  61552. name: "Front (Lewd)",
  61553. image: {
  61554. source: "./media/characters/sergis/front-lewd.svg",
  61555. extra: 1314/1312,
  61556. bottom: 112/1426
  61557. }
  61558. },
  61559. frontDressed: {
  61560. height: math.unit(2.2, "meters"),
  61561. weight: math.unit(150, "kg"),
  61562. name: "Front (Dressed)",
  61563. image: {
  61564. source: "./media/characters/sergis/front-dressed.svg",
  61565. extra: 1330/1328,
  61566. bottom: 95/1425
  61567. }
  61568. },
  61569. frontDressedLewd: {
  61570. height: math.unit(2.2, "meters"),
  61571. weight: math.unit(150, "kg"),
  61572. name: "Front (Dressed, Lewd)",
  61573. image: {
  61574. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61575. extra: 1330/1328,
  61576. bottom: 95/1425
  61577. }
  61578. },
  61579. maw: {
  61580. height: math.unit(0.48, "meters"),
  61581. name: "Maw",
  61582. image: {
  61583. source: "./media/characters/sergis/maw.svg"
  61584. }
  61585. },
  61586. sheath: {
  61587. height: math.unit(0.38, "meters"),
  61588. name: "Sheath",
  61589. image: {
  61590. source: "./media/characters/sergis/sheath.svg"
  61591. }
  61592. },
  61593. },
  61594. [
  61595. {
  61596. name: "Incognito Size",
  61597. height: math.unit(2.2, "meters")
  61598. },
  61599. {
  61600. name: "Small Macro",
  61601. height: math.unit(40, "meters")
  61602. },
  61603. {
  61604. name: "Macro",
  61605. height: math.unit(150, "meters")
  61606. },
  61607. {
  61608. name: "Macro+",
  61609. height: math.unit(300, "meters")
  61610. },
  61611. {
  61612. name: "Mega",
  61613. height: math.unit(2.5, "km")
  61614. },
  61615. {
  61616. name: "Mega+",
  61617. height: math.unit(30, "km")
  61618. },
  61619. {
  61620. name: "Home Size",
  61621. height: math.unit(300, "km"),
  61622. default: true
  61623. },
  61624. {
  61625. name: "Giga+",
  61626. height: math.unit(1000, "km")
  61627. },
  61628. {
  61629. name: "Giga++",
  61630. height: math.unit(6000, "km")
  61631. },
  61632. {
  61633. name: "Terra",
  61634. height: math.unit(70000, "km")
  61635. },
  61636. {
  61637. name: "Terra+",
  61638. height: math.unit(200000, "km")
  61639. },
  61640. {
  61641. name: "Galactic",
  61642. height: math.unit(634200, "lightyears")
  61643. },
  61644. ]
  61645. ))
  61646. characterMakers.push(() => makeCharacter(
  61647. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61648. {
  61649. standard: {
  61650. height: math.unit(1 + 5/12, "feet"),
  61651. name: "Standard",
  61652. image: {
  61653. source: "./media/characters/spade/standard.svg",
  61654. extra: 1794/1703,
  61655. bottom: 115/1909
  61656. }
  61657. },
  61658. disguised: {
  61659. height: math.unit(1 + 5/12, "feet"),
  61660. name: "Disguised",
  61661. image: {
  61662. source: "./media/characters/spade/disguised.svg",
  61663. extra: 1794/1700,
  61664. bottom: 98/1892
  61665. }
  61666. },
  61667. },
  61668. [
  61669. {
  61670. name: "Normal",
  61671. height: math.unit(1 + 5/12, "feet"),
  61672. default: true
  61673. },
  61674. ]
  61675. ))
  61676. characterMakers.push(() => makeCharacter(
  61677. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61678. {
  61679. frontNsfw: {
  61680. height: math.unit(5, "meters"),
  61681. weight: math.unit(2000, "kg"),
  61682. preyCapacity: math.unit(5, "people"),
  61683. name: "Front (NSFW)",
  61684. image: {
  61685. source: "./media/characters/zeanlain/front-nsfw.svg",
  61686. extra: 1087/938,
  61687. bottom: 93/1180
  61688. },
  61689. extraAttributes: {
  61690. "wingspan": {
  61691. name: "Wingspan",
  61692. power: 1,
  61693. type: "length",
  61694. base: math.unit(10, "meters")
  61695. },
  61696. "footSize": {
  61697. name: "Foot Size",
  61698. power: 1,
  61699. type: "length",
  61700. base: math.unit(0.68, "meters")
  61701. },
  61702. "cockLength": {
  61703. name: "Cock Length",
  61704. power: 1,
  61705. type: "length",
  61706. base: math.unit(1.69, "meters")
  61707. },
  61708. "ballVolume": {
  61709. name: "Ball Volume",
  61710. power: 3,
  61711. type: "volume",
  61712. base: math.unit(0.028, "m^3")
  61713. },
  61714. }
  61715. },
  61716. front: {
  61717. height: math.unit(5, "meters"),
  61718. weight: math.unit(2000, "kg"),
  61719. preyCapacity: math.unit(3, "people"),
  61720. name: "Front",
  61721. image: {
  61722. source: "./media/characters/zeanlain/front.svg",
  61723. extra: 1087/938,
  61724. bottom: 93/1180
  61725. },
  61726. extraAttributes: {
  61727. "wingspan": {
  61728. name: "Wingspan",
  61729. power: 1,
  61730. type: "length",
  61731. base: math.unit(10, "meters")
  61732. },
  61733. "footSize": {
  61734. name: "Foot Size",
  61735. power: 1,
  61736. type: "length",
  61737. base: math.unit(0.68, "meters")
  61738. },
  61739. }
  61740. },
  61741. },
  61742. [
  61743. {
  61744. name: "Normal",
  61745. height: math.unit(5, "meters"),
  61746. default: true
  61747. },
  61748. ]
  61749. ))
  61750. characterMakers.push(() => makeCharacter(
  61751. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61752. {
  61753. front: {
  61754. height: math.unit(10, "meters"),
  61755. weight: math.unit(250000, "kg"),
  61756. name: "Front",
  61757. image: {
  61758. source: "./media/characters/airamis/front.svg",
  61759. extra: 865/835,
  61760. bottom: 13/878
  61761. }
  61762. },
  61763. },
  61764. [
  61765. {
  61766. name: "Normal",
  61767. height: math.unit(10, "meters"),
  61768. default: true
  61769. },
  61770. ]
  61771. ))
  61772. //characters
  61773. function makeCharacters() {
  61774. const results = [];
  61775. characterMakers.forEach(character => {
  61776. results.push(character());
  61777. });
  61778. return results;
  61779. }