less copy protection, more size visualization
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
 
 
 

66003 líneas
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", "humanoid"]
  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. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. "saltwater-crocodile": {
  2367. name: "Saltwater Crocodile",
  2368. parents: ["crocodile"]
  2369. },
  2370. "eastern-grey-kangaroo": {
  2371. name: "Eastern Grey Kangaroo",
  2372. parents: ["kangaroo"]
  2373. },
  2374. "latenivenatrix": {
  2375. name: "Latenivenatrix",
  2376. parents: ["troodontidae"]
  2377. },
  2378. "troodontidae": {
  2379. name: "Troodontidae",
  2380. parents: ["theropod", "avian"]
  2381. },
  2382. "duck": {
  2383. name: "Duck",
  2384. parents: ["waterfowl"]
  2385. },
  2386. "waterfowl": {
  2387. name: "Waterfowl",
  2388. parents: ["avian"]
  2389. },
  2390. "earless-monitor-lizard": {
  2391. name: "Earless Monitor Lizard",
  2392. parents: ["monitor-lizard"]
  2393. },
  2394. "aerosynth": {
  2395. name: "Aerosynth",
  2396. parents: ["aeromorph", "synth"]
  2397. },
  2398. "phenx": {
  2399. name: "Phenx",
  2400. parents: ["uragi"]
  2401. },
  2402. "uragi": {
  2403. name: "Uragi",
  2404. parents: ["avian", "bear"]
  2405. },
  2406. "driger": {
  2407. name: "Driger",
  2408. parents: ["dragon", "tiger"]
  2409. },
  2410. "homestuck-troll": {
  2411. name: "Troll (Homestuck)",
  2412. parents: ["humanoid"]
  2413. },
  2414. "riolu": {
  2415. name: "Riolu",
  2416. parents: ["pokemon"]
  2417. },
  2418. "king-cheetah": {
  2419. name: "King Cheetah",
  2420. parents: ["cheetah"]
  2421. },
  2422. }
  2423. //species
  2424. function getSpeciesInfo(speciesList) {
  2425. let result = new Set();
  2426. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2427. result.add(entry)
  2428. });
  2429. return Array.from(result);
  2430. };
  2431. function getSpeciesInfoHelper(species) {
  2432. if (!speciesData[species]) {
  2433. console.warn(species + " doesn't exist");
  2434. return [];
  2435. }
  2436. if (speciesData[species].parents) {
  2437. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2438. } else {
  2439. return [species];
  2440. }
  2441. }
  2442. characterMakers.push(() => makeCharacter(
  2443. {
  2444. name: "Fen",
  2445. species: ["crux"],
  2446. description: {
  2447. title: "Bio",
  2448. text: "Very furry. Sheds on everything."
  2449. },
  2450. tags: [
  2451. "anthro",
  2452. "goo"
  2453. ]
  2454. },
  2455. {
  2456. front: {
  2457. height: math.unit(12, "feet"),
  2458. weight: math.unit(2400, "lb"),
  2459. preyCapacity: math.unit(1, "people"),
  2460. name: "Front",
  2461. image: {
  2462. source: "./media/characters/fen/front.svg",
  2463. extra: 1804/1562,
  2464. bottom: 205/2009
  2465. },
  2466. extraAttributes: {
  2467. pawSize: {
  2468. name: "Paw Size",
  2469. power: 2,
  2470. type: "area",
  2471. base: math.unit(0.35, "m^2")
  2472. }
  2473. }
  2474. },
  2475. diving: {
  2476. height: math.unit(4.9, "meters"),
  2477. weight: math.unit(2400, "lb"),
  2478. name: "Diving",
  2479. image: {
  2480. source: "./media/characters/fen/diving.svg"
  2481. }
  2482. },
  2483. sleeby: {
  2484. height: math.unit(3.45, "meters"),
  2485. weight: math.unit(2400, "lb"),
  2486. name: "Sleeby",
  2487. image: {
  2488. source: "./media/characters/fen/sleeby.svg"
  2489. }
  2490. },
  2491. goo: {
  2492. height: math.unit(12, "feet"),
  2493. weight: math.unit(3600, "lb"),
  2494. volume: math.unit(1000, "liters"),
  2495. preyCapacity: math.unit(6, "people"),
  2496. name: "Goo",
  2497. image: {
  2498. source: "./media/characters/fen/goo.svg",
  2499. extra: 1307/1071,
  2500. bottom: 134/1441
  2501. }
  2502. },
  2503. horror: {
  2504. height: math.unit(13.6, "feet"),
  2505. weight: math.unit(2400, "lb"),
  2506. preyCapacity: math.unit(1, "people"),
  2507. name: "Horror",
  2508. image: {
  2509. source: "./media/characters/fen/horror.svg",
  2510. extra: 893/797,
  2511. bottom: 0/893
  2512. }
  2513. },
  2514. gooNsfw: {
  2515. height: math.unit(12, "feet"),
  2516. weight: math.unit(3750, "lb"),
  2517. volume: math.unit(1000, "liters"),
  2518. preyCapacity: math.unit(6, "people"),
  2519. name: "Goo (NSFW)",
  2520. image: {
  2521. source: "./media/characters/fen/goo-nsfw.svg",
  2522. extra: 1875/1734,
  2523. bottom: 122/1997
  2524. }
  2525. },
  2526. maw: {
  2527. height: math.unit(5.03, "feet"),
  2528. name: "Maw",
  2529. image: {
  2530. source: "./media/characters/fen/maw.svg"
  2531. }
  2532. },
  2533. gooCeiling: {
  2534. height: math.unit(6.6, "feet"),
  2535. weight: math.unit(3000, "lb"),
  2536. volume: math.unit(1000, "liters"),
  2537. preyCapacity: math.unit(6, "people"),
  2538. name: "Maw (Goo)",
  2539. image: {
  2540. source: "./media/characters/fen/goo-maw.svg"
  2541. }
  2542. },
  2543. paw: {
  2544. height: math.unit(3.77, "feet"),
  2545. name: "Paw",
  2546. image: {
  2547. source: "./media/characters/fen/paw.svg"
  2548. },
  2549. extraAttributes: {
  2550. "toeSize": {
  2551. name: "Toe Size",
  2552. power: 2,
  2553. type: "area",
  2554. base: math.unit(0.02875, "m^2")
  2555. },
  2556. "pawSize": {
  2557. name: "Paw Size",
  2558. power: 2,
  2559. type: "area",
  2560. base: math.unit(0.378, "m^2")
  2561. },
  2562. }
  2563. },
  2564. tail: {
  2565. height: math.unit(12.1, "feet"),
  2566. name: "Tail",
  2567. image: {
  2568. source: "./media/characters/fen/tail.svg"
  2569. }
  2570. },
  2571. tailFull: {
  2572. height: math.unit(12.1, "feet"),
  2573. name: "Full Tail",
  2574. image: {
  2575. source: "./media/characters/fen/tail-full.svg"
  2576. }
  2577. },
  2578. back: {
  2579. height: math.unit(12, "feet"),
  2580. weight: math.unit(2400, "lb"),
  2581. name: "Back",
  2582. image: {
  2583. source: "./media/characters/fen/back.svg",
  2584. },
  2585. info: {
  2586. description: {
  2587. mode: "append",
  2588. text: "\n\nHe is not currently looking at you."
  2589. }
  2590. }
  2591. },
  2592. full: {
  2593. height: math.unit(1.85, "meter"),
  2594. weight: math.unit(3200, "lb"),
  2595. preyCapacity: math.unit(3, "people"),
  2596. name: "Full",
  2597. image: {
  2598. source: "./media/characters/fen/full.svg",
  2599. extra: 1133/859,
  2600. bottom: 145/1278
  2601. },
  2602. info: {
  2603. description: {
  2604. mode: "append",
  2605. text: "\n\nMunch."
  2606. }
  2607. }
  2608. },
  2609. gooLounging: {
  2610. height: math.unit(4.53, "feet"),
  2611. weight: math.unit(3000, "lb"),
  2612. preyCapacity: math.unit(6, "people"),
  2613. name: "Goo (Lounging)",
  2614. image: {
  2615. source: "./media/characters/fen/goo-lounging.svg",
  2616. bottom: 116 / 613
  2617. }
  2618. },
  2619. lounging: {
  2620. height: math.unit(10.52, "feet"),
  2621. weight: math.unit(2400, "lb"),
  2622. name: "Lounging",
  2623. image: {
  2624. source: "./media/characters/fen/lounging.svg"
  2625. }
  2626. },
  2627. },
  2628. [
  2629. {
  2630. name: "Small",
  2631. height: math.unit(2.2428, "meter")
  2632. },
  2633. {
  2634. name: "Normal",
  2635. height: math.unit(12, "feet"),
  2636. default: true,
  2637. },
  2638. {
  2639. name: "Big",
  2640. height: math.unit(20, "feet")
  2641. },
  2642. {
  2643. name: "Minimacro",
  2644. height: math.unit(40, "feet"),
  2645. info: {
  2646. description: {
  2647. mode: "append",
  2648. text: "\n\nTOO DAMN BIG"
  2649. }
  2650. }
  2651. },
  2652. {
  2653. name: "Macro",
  2654. height: math.unit(100, "feet"),
  2655. info: {
  2656. description: {
  2657. mode: "append",
  2658. text: "\n\nTOO DAMN BIG"
  2659. }
  2660. }
  2661. },
  2662. {
  2663. name: "Megamacro",
  2664. height: math.unit(2, "miles")
  2665. },
  2666. {
  2667. name: "Gigamacro",
  2668. height: math.unit(10, "earths")
  2669. },
  2670. ]
  2671. ))
  2672. characterMakers.push(() => makeCharacter(
  2673. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2674. {
  2675. front: {
  2676. height: math.unit(183, "cm"),
  2677. weight: math.unit(80, "kg"),
  2678. name: "Front",
  2679. image: {
  2680. source: "./media/characters/sofia-fluttertail/front.svg",
  2681. bottom: 0.01,
  2682. extra: 2154 / 2081
  2683. }
  2684. },
  2685. frontAlt: {
  2686. height: math.unit(183, "cm"),
  2687. weight: math.unit(80, "kg"),
  2688. name: "Front (alt)",
  2689. image: {
  2690. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2691. }
  2692. },
  2693. back: {
  2694. height: math.unit(183, "cm"),
  2695. weight: math.unit(80, "kg"),
  2696. name: "Back",
  2697. image: {
  2698. source: "./media/characters/sofia-fluttertail/back.svg"
  2699. }
  2700. },
  2701. kneeling: {
  2702. height: math.unit(125, "cm"),
  2703. weight: math.unit(80, "kg"),
  2704. name: "Kneeling",
  2705. image: {
  2706. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2707. extra: 1033 / 977,
  2708. bottom: 23.7 / 1057
  2709. }
  2710. },
  2711. maw: {
  2712. height: math.unit(183 / 5, "cm"),
  2713. name: "Maw",
  2714. image: {
  2715. source: "./media/characters/sofia-fluttertail/maw.svg"
  2716. }
  2717. },
  2718. mawcloseup: {
  2719. height: math.unit(183 / 5 * 0.41, "cm"),
  2720. name: "Maw (Closeup)",
  2721. image: {
  2722. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2723. }
  2724. },
  2725. paws: {
  2726. height: math.unit(1.17, "feet"),
  2727. name: "Paws",
  2728. image: {
  2729. source: "./media/characters/sofia-fluttertail/paws.svg",
  2730. extra: 851 / 851,
  2731. bottom: 17 / 868
  2732. }
  2733. },
  2734. },
  2735. [
  2736. {
  2737. name: "Normal",
  2738. height: math.unit(1.83, "meter")
  2739. },
  2740. {
  2741. name: "Size Thief",
  2742. height: math.unit(18, "feet")
  2743. },
  2744. {
  2745. name: "50 Foot Collie",
  2746. height: math.unit(50, "feet")
  2747. },
  2748. {
  2749. name: "Macro",
  2750. height: math.unit(96, "feet"),
  2751. default: true
  2752. },
  2753. {
  2754. name: "Megamerger",
  2755. height: math.unit(650, "feet")
  2756. },
  2757. ]
  2758. ))
  2759. characterMakers.push(() => makeCharacter(
  2760. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2761. {
  2762. front: {
  2763. height: math.unit(7, "feet"),
  2764. weight: math.unit(100, "kg"),
  2765. name: "Front",
  2766. image: {
  2767. source: "./media/characters/march/front.svg",
  2768. extra: 1992/1851,
  2769. bottom: 39/2031
  2770. }
  2771. },
  2772. foot: {
  2773. height: math.unit(0.9, "feet"),
  2774. name: "Foot",
  2775. image: {
  2776. source: "./media/characters/march/foot.svg"
  2777. }
  2778. },
  2779. },
  2780. [
  2781. {
  2782. name: "Normal",
  2783. height: math.unit(7.9, "feet")
  2784. },
  2785. {
  2786. name: "Macro",
  2787. height: math.unit(220, "meters")
  2788. },
  2789. {
  2790. name: "Megamacro",
  2791. height: math.unit(2.98, "km"),
  2792. default: true
  2793. },
  2794. {
  2795. name: "Gigamacro",
  2796. height: math.unit(15963, "km")
  2797. },
  2798. {
  2799. name: "Teramacro",
  2800. height: math.unit(2980000000, "km")
  2801. },
  2802. {
  2803. name: "Examacro",
  2804. height: math.unit(250, "parsecs")
  2805. },
  2806. ]
  2807. ))
  2808. characterMakers.push(() => makeCharacter(
  2809. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2810. {
  2811. front: {
  2812. height: math.unit(6, "feet"),
  2813. weight: math.unit(60, "kg"),
  2814. name: "Front",
  2815. image: {
  2816. source: "./media/characters/noir/front.svg",
  2817. extra: 1,
  2818. bottom: 0.032
  2819. }
  2820. },
  2821. },
  2822. [
  2823. {
  2824. name: "Normal",
  2825. height: math.unit(6.6, "feet")
  2826. },
  2827. {
  2828. name: "Macro",
  2829. height: math.unit(500, "feet")
  2830. },
  2831. {
  2832. name: "Megamacro",
  2833. height: math.unit(2.5, "km"),
  2834. default: true
  2835. },
  2836. {
  2837. name: "Gigamacro",
  2838. height: math.unit(22500, "km")
  2839. },
  2840. {
  2841. name: "Teramacro",
  2842. height: math.unit(2500000000, "km")
  2843. },
  2844. {
  2845. name: "Examacro",
  2846. height: math.unit(200, "parsecs")
  2847. },
  2848. ]
  2849. ))
  2850. characterMakers.push(() => makeCharacter(
  2851. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2852. {
  2853. front: {
  2854. height: math.unit(7, "feet"),
  2855. weight: math.unit(100, "kg"),
  2856. name: "Front",
  2857. image: {
  2858. source: "./media/characters/okuri/front.svg",
  2859. extra: 739/665,
  2860. bottom: 39/778
  2861. }
  2862. },
  2863. back: {
  2864. height: math.unit(7, "feet"),
  2865. weight: math.unit(100, "kg"),
  2866. name: "Back",
  2867. image: {
  2868. source: "./media/characters/okuri/back.svg",
  2869. extra: 734/653,
  2870. bottom: 13/747
  2871. }
  2872. },
  2873. sitting: {
  2874. height: math.unit(2.95, "feet"),
  2875. weight: math.unit(100, "kg"),
  2876. name: "Sitting",
  2877. image: {
  2878. source: "./media/characters/okuri/sitting.svg",
  2879. extra: 370/318,
  2880. bottom: 99/469
  2881. }
  2882. },
  2883. },
  2884. [
  2885. {
  2886. name: "Smallest",
  2887. height: math.unit(5 + 2/12, "feet")
  2888. },
  2889. {
  2890. name: "Smaller",
  2891. height: math.unit(300, "feet")
  2892. },
  2893. {
  2894. name: "Small",
  2895. height: math.unit(1000, "feet")
  2896. },
  2897. {
  2898. name: "Macro",
  2899. height: math.unit(1, "mile")
  2900. },
  2901. {
  2902. name: "Mega Macro (Small)",
  2903. height: math.unit(20, "km")
  2904. },
  2905. {
  2906. name: "Mega Macro (Large)",
  2907. height: math.unit(600, "km")
  2908. },
  2909. {
  2910. name: "Giga Macro",
  2911. height: math.unit(10000, "km")
  2912. },
  2913. {
  2914. name: "Normal",
  2915. height: math.unit(577560, "km"),
  2916. default: true
  2917. },
  2918. {
  2919. name: "Large",
  2920. height: math.unit(4, "galaxies")
  2921. },
  2922. {
  2923. name: "Largest",
  2924. height: math.unit(15, "multiverses")
  2925. },
  2926. ]
  2927. ))
  2928. characterMakers.push(() => makeCharacter(
  2929. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2930. {
  2931. front: {
  2932. height: math.unit(7, "feet"),
  2933. weight: math.unit(100, "kg"),
  2934. name: "Front",
  2935. image: {
  2936. source: "./media/characters/manny/front.svg",
  2937. extra: 1,
  2938. bottom: 0.06
  2939. }
  2940. },
  2941. back: {
  2942. height: math.unit(7, "feet"),
  2943. weight: math.unit(100, "kg"),
  2944. name: "Back",
  2945. image: {
  2946. source: "./media/characters/manny/back.svg",
  2947. extra: 1,
  2948. bottom: 0.014
  2949. }
  2950. },
  2951. },
  2952. [
  2953. {
  2954. name: "Normal",
  2955. height: math.unit(7, "feet"),
  2956. },
  2957. {
  2958. name: "Macro",
  2959. height: math.unit(78, "feet"),
  2960. default: true
  2961. },
  2962. {
  2963. name: "Macro+",
  2964. height: math.unit(300, "meters")
  2965. },
  2966. {
  2967. name: "Macro++",
  2968. height: math.unit(2400, "meters")
  2969. },
  2970. {
  2971. name: "Megamacro",
  2972. height: math.unit(5167, "meters")
  2973. },
  2974. {
  2975. name: "Gigamacro",
  2976. height: math.unit(41769, "miles")
  2977. },
  2978. ]
  2979. ))
  2980. characterMakers.push(() => makeCharacter(
  2981. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2982. {
  2983. front: {
  2984. height: math.unit(7, "feet"),
  2985. weight: math.unit(100, "kg"),
  2986. name: "Front",
  2987. image: {
  2988. source: "./media/characters/adake/front-1.svg"
  2989. }
  2990. },
  2991. frontAlt: {
  2992. height: math.unit(7, "feet"),
  2993. weight: math.unit(100, "kg"),
  2994. name: "Front (Alt)",
  2995. image: {
  2996. source: "./media/characters/adake/front-2.svg",
  2997. extra: 1,
  2998. bottom: 0.01
  2999. }
  3000. },
  3001. back: {
  3002. height: math.unit(7, "feet"),
  3003. weight: math.unit(100, "kg"),
  3004. name: "Back",
  3005. image: {
  3006. source: "./media/characters/adake/back.svg",
  3007. }
  3008. },
  3009. kneel: {
  3010. height: math.unit(5.385, "feet"),
  3011. weight: math.unit(100, "kg"),
  3012. name: "Kneeling",
  3013. image: {
  3014. source: "./media/characters/adake/kneel.svg",
  3015. bottom: 0.052
  3016. }
  3017. },
  3018. },
  3019. [
  3020. {
  3021. name: "Normal",
  3022. height: math.unit(7, "feet"),
  3023. },
  3024. {
  3025. name: "Macro",
  3026. height: math.unit(78, "feet"),
  3027. default: true
  3028. },
  3029. {
  3030. name: "Macro+",
  3031. height: math.unit(300, "meters")
  3032. },
  3033. {
  3034. name: "Macro++",
  3035. height: math.unit(2400, "meters")
  3036. },
  3037. {
  3038. name: "Megamacro",
  3039. height: math.unit(5167, "meters")
  3040. },
  3041. {
  3042. name: "Gigamacro",
  3043. height: math.unit(41769, "miles")
  3044. },
  3045. ]
  3046. ))
  3047. characterMakers.push(() => makeCharacter(
  3048. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  3049. {
  3050. front: {
  3051. height: math.unit(1.65, "meters"),
  3052. weight: math.unit(50, "kg"),
  3053. name: "Front",
  3054. image: {
  3055. source: "./media/characters/elijah/front.svg",
  3056. extra: 858 / 830,
  3057. bottom: 95.5 / 953.8559
  3058. }
  3059. },
  3060. back: {
  3061. height: math.unit(1.65, "meters"),
  3062. weight: math.unit(50, "kg"),
  3063. name: "Back",
  3064. image: {
  3065. source: "./media/characters/elijah/back.svg",
  3066. extra: 895 / 850,
  3067. bottom: 5.3 / 897.956
  3068. }
  3069. },
  3070. frontNsfw: {
  3071. height: math.unit(1.65, "meters"),
  3072. weight: math.unit(50, "kg"),
  3073. name: "Front (NSFW)",
  3074. image: {
  3075. source: "./media/characters/elijah/front-nsfw.svg",
  3076. extra: 858 / 830,
  3077. bottom: 95.5 / 953.8559
  3078. }
  3079. },
  3080. backNsfw: {
  3081. height: math.unit(1.65, "meters"),
  3082. weight: math.unit(50, "kg"),
  3083. name: "Back (NSFW)",
  3084. image: {
  3085. source: "./media/characters/elijah/back-nsfw.svg",
  3086. extra: 895 / 850,
  3087. bottom: 5.3 / 897.956
  3088. }
  3089. },
  3090. dick: {
  3091. height: math.unit(1, "feet"),
  3092. name: "Dick",
  3093. image: {
  3094. source: "./media/characters/elijah/dick.svg"
  3095. }
  3096. },
  3097. beakOpen: {
  3098. height: math.unit(1.25, "feet"),
  3099. name: "Beak (Open)",
  3100. image: {
  3101. source: "./media/characters/elijah/beak-open.svg"
  3102. }
  3103. },
  3104. beakShut: {
  3105. height: math.unit(1.25, "feet"),
  3106. name: "Beak (Shut)",
  3107. image: {
  3108. source: "./media/characters/elijah/beak-shut.svg"
  3109. }
  3110. },
  3111. footFlexing: {
  3112. height: math.unit(1.61, "feet"),
  3113. name: "Foot (Flexing)",
  3114. image: {
  3115. source: "./media/characters/elijah/foot-flexing.svg"
  3116. }
  3117. },
  3118. footStepping: {
  3119. height: math.unit(1.44, "feet"),
  3120. name: "Foot (Stepping)",
  3121. image: {
  3122. source: "./media/characters/elijah/foot-stepping.svg"
  3123. }
  3124. },
  3125. plantigradeLeg: {
  3126. height: math.unit(2.34, "feet"),
  3127. name: "Plantigrade Leg",
  3128. image: {
  3129. source: "./media/characters/elijah/plantigrade-leg.svg"
  3130. }
  3131. },
  3132. plantigradeFootLeft: {
  3133. height: math.unit(0.9, "feet"),
  3134. name: "Plantigrade Foot (Left)",
  3135. image: {
  3136. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3137. }
  3138. },
  3139. plantigradeFootRight: {
  3140. height: math.unit(0.9, "feet"),
  3141. name: "Plantigrade Foot (Right)",
  3142. image: {
  3143. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3144. }
  3145. },
  3146. },
  3147. [
  3148. {
  3149. name: "Normal",
  3150. height: math.unit(1.65, "meters")
  3151. },
  3152. {
  3153. name: "Macro",
  3154. height: math.unit(55, "meters"),
  3155. default: true
  3156. },
  3157. {
  3158. name: "Macro+",
  3159. height: math.unit(105, "meters")
  3160. },
  3161. ]
  3162. ))
  3163. characterMakers.push(() => makeCharacter(
  3164. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3165. {
  3166. front: {
  3167. height: math.unit(7 + 2/12, "feet"),
  3168. weight: math.unit(320, "kg"),
  3169. preyCapacity: math.unit(0.276549935, "people"),
  3170. name: "Front",
  3171. image: {
  3172. source: "./media/characters/rai/front.svg",
  3173. extra: 1802/1696,
  3174. bottom: 68/1870
  3175. },
  3176. form: "anthro",
  3177. default: true
  3178. },
  3179. frontDressed: {
  3180. height: math.unit(7 + 2/12, "feet"),
  3181. weight: math.unit(320, "kg"),
  3182. preyCapacity: math.unit(0.276549935, "people"),
  3183. name: "Front (Dressed)",
  3184. image: {
  3185. source: "./media/characters/rai/front-dressed.svg",
  3186. extra: 1802/1696,
  3187. bottom: 68/1870
  3188. },
  3189. form: "anthro"
  3190. },
  3191. side: {
  3192. height: math.unit(7 + 2/12, "feet"),
  3193. weight: math.unit(320, "kg"),
  3194. preyCapacity: math.unit(0.276549935, "people"),
  3195. name: "Side",
  3196. image: {
  3197. source: "./media/characters/rai/side.svg",
  3198. extra: 1789/1710,
  3199. bottom: 115/1904
  3200. },
  3201. form: "anthro"
  3202. },
  3203. back: {
  3204. height: math.unit(7 + 2/12, "feet"),
  3205. weight: math.unit(320, "kg"),
  3206. preyCapacity: math.unit(0.276549935, "people"),
  3207. name: "Back",
  3208. image: {
  3209. source: "./media/characters/rai/back.svg",
  3210. extra: 1770/1707,
  3211. bottom: 28/1798
  3212. },
  3213. form: "anthro"
  3214. },
  3215. feral: {
  3216. height: math.unit(9.5, "feet"),
  3217. weight: math.unit(640, "kg"),
  3218. preyCapacity: math.unit(4, "people"),
  3219. name: "Feral",
  3220. image: {
  3221. source: "./media/characters/rai/feral.svg",
  3222. extra: 945/553,
  3223. bottom: 176/1121
  3224. },
  3225. form: "feral",
  3226. default: true
  3227. },
  3228. dragon: {
  3229. height: math.unit(23, "feet"),
  3230. weight: math.unit(50000, "lb"),
  3231. name: "Dragon",
  3232. image: {
  3233. source: "./media/characters/rai/dragon.svg",
  3234. extra: 2498 / 2030,
  3235. bottom: 85.2 / 2584
  3236. },
  3237. form: "dragon",
  3238. default: true
  3239. },
  3240. maw: {
  3241. height: math.unit(1.69, "feet"),
  3242. name: "Maw",
  3243. image: {
  3244. source: "./media/characters/rai/maw.svg"
  3245. },
  3246. form: "anthro"
  3247. },
  3248. },
  3249. [
  3250. {
  3251. name: "Normal",
  3252. height: math.unit(7 + 2/12, "feet"),
  3253. form: "anthro"
  3254. },
  3255. {
  3256. name: "Big",
  3257. height: math.unit(11, "feet"),
  3258. form: "anthro"
  3259. },
  3260. {
  3261. name: "Minimacro",
  3262. height: math.unit(77, "feet"),
  3263. form: "anthro"
  3264. },
  3265. {
  3266. name: "Macro",
  3267. height: math.unit(302, "feet"),
  3268. default: true,
  3269. form: "anthro"
  3270. },
  3271. {
  3272. name: "Normal",
  3273. height: math.unit(9.5, "feet"),
  3274. form: "feral",
  3275. default: true
  3276. },
  3277. {
  3278. name: "Normal",
  3279. height: math.unit(23, "feet"),
  3280. form: "dragon",
  3281. default: true
  3282. }
  3283. ],
  3284. {
  3285. "anthro": {
  3286. name: "Anthro",
  3287. default: true
  3288. },
  3289. "feral": {
  3290. name: "Feral",
  3291. },
  3292. "dragon": {
  3293. name: "Dragon",
  3294. },
  3295. }
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3299. {
  3300. frontDressed: {
  3301. height: math.unit(216, "feet"),
  3302. weight: math.unit(7000000, "lb"),
  3303. preyCapacity: math.unit(1321, "people"),
  3304. name: "Front (Dressed)",
  3305. image: {
  3306. source: "./media/characters/jazzy/front-dressed.svg",
  3307. extra: 2738 / 2651,
  3308. bottom: 41.8 / 2786
  3309. }
  3310. },
  3311. backDressed: {
  3312. height: math.unit(216, "feet"),
  3313. weight: math.unit(7000000, "lb"),
  3314. preyCapacity: math.unit(1321, "people"),
  3315. name: "Back (Dressed)",
  3316. image: {
  3317. source: "./media/characters/jazzy/back-dressed.svg",
  3318. extra: 2775 / 2673,
  3319. bottom: 36.8 / 2817
  3320. }
  3321. },
  3322. front: {
  3323. height: math.unit(216, "feet"),
  3324. weight: math.unit(7000000, "lb"),
  3325. preyCapacity: math.unit(1321, "people"),
  3326. name: "Front",
  3327. image: {
  3328. source: "./media/characters/jazzy/front.svg",
  3329. extra: 2738 / 2651,
  3330. bottom: 41.8 / 2786
  3331. }
  3332. },
  3333. back: {
  3334. height: math.unit(216, "feet"),
  3335. weight: math.unit(7000000, "lb"),
  3336. preyCapacity: math.unit(1321, "people"),
  3337. name: "Back",
  3338. image: {
  3339. source: "./media/characters/jazzy/back.svg",
  3340. extra: 2775 / 2673,
  3341. bottom: 36.8 / 2817
  3342. }
  3343. },
  3344. maw: {
  3345. height: math.unit(20, "feet"),
  3346. name: "Maw",
  3347. image: {
  3348. source: "./media/characters/jazzy/maw.svg"
  3349. }
  3350. },
  3351. paws: {
  3352. height: math.unit(27.5, "feet"),
  3353. name: "Paws",
  3354. image: {
  3355. source: "./media/characters/jazzy/paws.svg"
  3356. }
  3357. },
  3358. eye: {
  3359. height: math.unit(4.4, "feet"),
  3360. name: "Eye",
  3361. image: {
  3362. source: "./media/characters/jazzy/eye.svg"
  3363. }
  3364. },
  3365. droneOffense: {
  3366. height: math.unit(9.5, "inches"),
  3367. name: "Drone (Offense)",
  3368. image: {
  3369. source: "./media/characters/jazzy/drone-offense.svg"
  3370. }
  3371. },
  3372. droneRecon: {
  3373. height: math.unit(9.5, "inches"),
  3374. name: "Drone (Recon)",
  3375. image: {
  3376. source: "./media/characters/jazzy/drone-recon.svg"
  3377. }
  3378. },
  3379. droneDefense: {
  3380. height: math.unit(9.5, "inches"),
  3381. name: "Drone (Defense)",
  3382. image: {
  3383. source: "./media/characters/jazzy/drone-defense.svg"
  3384. }
  3385. },
  3386. },
  3387. [
  3388. {
  3389. name: "Macro",
  3390. height: math.unit(216, "feet"),
  3391. default: true
  3392. },
  3393. ]
  3394. ))
  3395. characterMakers.push(() => makeCharacter(
  3396. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3397. {
  3398. front: {
  3399. height: math.unit(9 + 6/12, "feet"),
  3400. weight: math.unit(700, "lb"),
  3401. name: "Front",
  3402. image: {
  3403. source: "./media/characters/flamm/front.svg",
  3404. extra: 1736/1596,
  3405. bottom: 93/1829
  3406. }
  3407. },
  3408. buff: {
  3409. height: math.unit(9 + 6/12, "feet"),
  3410. weight: math.unit(950, "lb"),
  3411. name: "Buff",
  3412. image: {
  3413. source: "./media/characters/flamm/buff.svg",
  3414. extra: 3018/2874,
  3415. bottom: 221/3239
  3416. }
  3417. },
  3418. },
  3419. [
  3420. {
  3421. name: "Normal",
  3422. height: math.unit(9.5, "feet")
  3423. },
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(200, "feet"),
  3427. default: true
  3428. },
  3429. ]
  3430. ))
  3431. characterMakers.push(() => makeCharacter(
  3432. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3433. {
  3434. front: {
  3435. height: math.unit(5 + 3/12, "feet"),
  3436. weight: math.unit(60, "kg"),
  3437. name: "Front",
  3438. image: {
  3439. source: "./media/characters/zephiro/front.svg",
  3440. extra: 1873/1761,
  3441. bottom: 147/2020
  3442. }
  3443. },
  3444. side: {
  3445. height: math.unit(5 + 3/12, "feet"),
  3446. weight: math.unit(60, "kg"),
  3447. name: "Side",
  3448. image: {
  3449. source: "./media/characters/zephiro/side.svg",
  3450. extra: 1929/1827,
  3451. bottom: 65/1994
  3452. }
  3453. },
  3454. back: {
  3455. height: math.unit(5 + 3/12, "feet"),
  3456. weight: math.unit(60, "kg"),
  3457. name: "Back",
  3458. image: {
  3459. source: "./media/characters/zephiro/back.svg",
  3460. extra: 1926/1816,
  3461. bottom: 41/1967
  3462. }
  3463. },
  3464. hand: {
  3465. height: math.unit(0.68, "feet"),
  3466. name: "Hand",
  3467. image: {
  3468. source: "./media/characters/zephiro/hand.svg"
  3469. }
  3470. },
  3471. paw: {
  3472. height: math.unit(1, "feet"),
  3473. name: "Paw",
  3474. image: {
  3475. source: "./media/characters/zephiro/paw.svg"
  3476. }
  3477. },
  3478. beans: {
  3479. height: math.unit(0.93, "feet"),
  3480. name: "Beans",
  3481. image: {
  3482. source: "./media/characters/zephiro/beans.svg"
  3483. }
  3484. },
  3485. },
  3486. [
  3487. {
  3488. name: "Micro",
  3489. height: math.unit(3, "inches")
  3490. },
  3491. {
  3492. name: "Normal",
  3493. height: math.unit(5 + 3 / 12, "feet"),
  3494. default: true
  3495. },
  3496. {
  3497. name: "Macro",
  3498. height: math.unit(118, "feet")
  3499. },
  3500. ]
  3501. ))
  3502. characterMakers.push(() => makeCharacter(
  3503. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3504. {
  3505. front: {
  3506. height: math.unit(5, "feet"),
  3507. weight: math.unit(90, "kg"),
  3508. preyCapacity: math.unit(14, "people"),
  3509. name: "Front",
  3510. image: {
  3511. source: "./media/characters/fory/front.svg",
  3512. extra: 2862 / 2674,
  3513. bottom: 180 / 3043.8
  3514. },
  3515. form: "weaselbun",
  3516. default: true,
  3517. extraAttributes: {
  3518. "pawSize": {
  3519. name: "Paw Size",
  3520. power: 2,
  3521. type: "area",
  3522. base: math.unit(0.1596, "m^2")
  3523. },
  3524. "pawLength": {
  3525. name: "Paw Length",
  3526. power: 1,
  3527. type: "length",
  3528. base: math.unit(0.7, "m")
  3529. }
  3530. }
  3531. },
  3532. back: {
  3533. height: math.unit(5, "feet"),
  3534. weight: math.unit(90, "kg"),
  3535. preyCapacity: math.unit(14, "people"),
  3536. name: "Back",
  3537. image: {
  3538. source: "./media/characters/fory/back.svg",
  3539. extra: 1790/1672,
  3540. bottom: 84/1874
  3541. },
  3542. form: "weaselbun",
  3543. extraAttributes: {
  3544. "pawSize": {
  3545. name: "Paw Size",
  3546. power: 2,
  3547. type: "area",
  3548. base: math.unit(0.1596, "m^2")
  3549. },
  3550. "pawLength": {
  3551. name: "Paw Length",
  3552. power: 1,
  3553. type: "length",
  3554. base: math.unit(0.7, "m")
  3555. }
  3556. }
  3557. },
  3558. paw: {
  3559. height: math.unit(2.14, "feet"),
  3560. name: "Paw",
  3561. image: {
  3562. source: "./media/characters/fory/paw.svg"
  3563. },
  3564. form: "weaselbun",
  3565. extraAttributes: {
  3566. "pawSize": {
  3567. name: "Paw Size",
  3568. power: 2,
  3569. type: "area",
  3570. base: math.unit(0.1596, "m^2")
  3571. },
  3572. "pawLength": {
  3573. name: "Paw Length",
  3574. power: 1,
  3575. type: "length",
  3576. base: math.unit(0.48, "m")
  3577. }
  3578. }
  3579. },
  3580. bunBack: {
  3581. height: math.unit(3, "feet"),
  3582. weight: math.unit(20, "kg"),
  3583. preyCapacity: math.unit(3, "people"),
  3584. name: "Back",
  3585. image: {
  3586. source: "./media/characters/fory/bun-back.svg",
  3587. extra: 1749/1564,
  3588. bottom: 246/1995
  3589. },
  3590. form: "bun",
  3591. default: true,
  3592. extraAttributes: {
  3593. "pawSize": {
  3594. name: "Paw Size",
  3595. power: 2,
  3596. type: "area",
  3597. base: math.unit(0.072, "m^2")
  3598. },
  3599. "pawLength": {
  3600. name: "Paw Length",
  3601. power: 1,
  3602. type: "length",
  3603. base: math.unit(0.45, "m")
  3604. }
  3605. }
  3606. },
  3607. },
  3608. [
  3609. {
  3610. name: "Normal",
  3611. height: math.unit(5, "feet"),
  3612. form: "weaselbun"
  3613. },
  3614. {
  3615. name: "Macro",
  3616. height: math.unit(50, "feet"),
  3617. default: true,
  3618. form: "weaselbun"
  3619. },
  3620. {
  3621. name: "Megamacro",
  3622. height: math.unit(10, "miles"),
  3623. form: "weaselbun"
  3624. },
  3625. {
  3626. name: "Gigamacro",
  3627. height: math.unit(5, "earths"),
  3628. form: "weaselbun"
  3629. },
  3630. {
  3631. name: "Normal",
  3632. height: math.unit(3, "feet"),
  3633. default: true,
  3634. form: "bun"
  3635. },
  3636. {
  3637. name: "Fun-Size",
  3638. height: math.unit(12, "feet"),
  3639. form: "bun"
  3640. },
  3641. {
  3642. name: "Macro",
  3643. height: math.unit(100, "feet"),
  3644. form: "bun"
  3645. },
  3646. {
  3647. name: "Planetary",
  3648. height: math.unit(3, "earths"),
  3649. form: "bun"
  3650. },
  3651. ],
  3652. {
  3653. "weaselbun": {
  3654. name: "Weaselbun",
  3655. default: true
  3656. },
  3657. "bun": {
  3658. name: "Bun",
  3659. },
  3660. }
  3661. ))
  3662. characterMakers.push(() => makeCharacter(
  3663. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3664. {
  3665. front: {
  3666. height: math.unit(7, "feet"),
  3667. weight: math.unit(90, "kg"),
  3668. name: "Front",
  3669. image: {
  3670. source: "./media/characters/kurrikage/front.svg",
  3671. extra: 1845/1733,
  3672. bottom: 119/1964
  3673. }
  3674. },
  3675. back: {
  3676. height: math.unit(7, "feet"),
  3677. weight: math.unit(90, "kg"),
  3678. name: "Back",
  3679. image: {
  3680. source: "./media/characters/kurrikage/back.svg",
  3681. extra: 1790/1677,
  3682. bottom: 61/1851
  3683. }
  3684. },
  3685. dressed: {
  3686. height: math.unit(7, "feet"),
  3687. weight: math.unit(90, "kg"),
  3688. name: "Dressed",
  3689. image: {
  3690. source: "./media/characters/kurrikage/dressed.svg",
  3691. extra: 1845/1733,
  3692. bottom: 119/1964
  3693. }
  3694. },
  3695. foot: {
  3696. height: math.unit(1.5, "feet"),
  3697. name: "Foot",
  3698. image: {
  3699. source: "./media/characters/kurrikage/foot.svg"
  3700. }
  3701. },
  3702. staff: {
  3703. height: math.unit(6.7, "feet"),
  3704. name: "Staff",
  3705. image: {
  3706. source: "./media/characters/kurrikage/staff.svg"
  3707. }
  3708. },
  3709. peek: {
  3710. height: math.unit(1.05, "feet"),
  3711. name: "Peeking",
  3712. image: {
  3713. source: "./media/characters/kurrikage/peek.svg",
  3714. bottom: 0.08
  3715. }
  3716. },
  3717. },
  3718. [
  3719. {
  3720. name: "Normal",
  3721. height: math.unit(12, "feet"),
  3722. default: true
  3723. },
  3724. {
  3725. name: "Big",
  3726. height: math.unit(20, "feet")
  3727. },
  3728. {
  3729. name: "Macro",
  3730. height: math.unit(500, "feet")
  3731. },
  3732. {
  3733. name: "Megamacro",
  3734. height: math.unit(20, "miles")
  3735. },
  3736. ]
  3737. ))
  3738. characterMakers.push(() => makeCharacter(
  3739. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3740. {
  3741. front: {
  3742. height: math.unit(6, "feet"),
  3743. weight: math.unit(75, "kg"),
  3744. name: "Front",
  3745. image: {
  3746. source: "./media/characters/shingo/front.svg",
  3747. extra: 1900/1825,
  3748. bottom: 82/1982
  3749. }
  3750. },
  3751. side: {
  3752. height: math.unit(6, "feet"),
  3753. weight: math.unit(75, "kg"),
  3754. name: "Side",
  3755. image: {
  3756. source: "./media/characters/shingo/side.svg",
  3757. extra: 1930/1865,
  3758. bottom: 16/1946
  3759. }
  3760. },
  3761. back: {
  3762. height: math.unit(6, "feet"),
  3763. weight: math.unit(75, "kg"),
  3764. name: "Back",
  3765. image: {
  3766. source: "./media/characters/shingo/back.svg",
  3767. extra: 1922/1852,
  3768. bottom: 16/1938
  3769. }
  3770. },
  3771. frontDressed: {
  3772. height: math.unit(6, "feet"),
  3773. weight: math.unit(150, "lb"),
  3774. name: "Front-dressed",
  3775. image: {
  3776. source: "./media/characters/shingo/front-dressed.svg",
  3777. extra: 1900/1825,
  3778. bottom: 82/1982
  3779. }
  3780. },
  3781. paw: {
  3782. height: math.unit(1.29, "feet"),
  3783. name: "Paw",
  3784. image: {
  3785. source: "./media/characters/shingo/paw.svg"
  3786. }
  3787. },
  3788. hand: {
  3789. height: math.unit(1.07, "feet"),
  3790. name: "Hand",
  3791. image: {
  3792. source: "./media/characters/shingo/hand.svg"
  3793. }
  3794. },
  3795. frontAlt: {
  3796. height: math.unit(6, "feet"),
  3797. weight: math.unit(75, "kg"),
  3798. name: "Front (Alt)",
  3799. image: {
  3800. source: "./media/characters/shingo/front-alt.svg",
  3801. extra: 3511 / 3338,
  3802. bottom: 0.005
  3803. }
  3804. },
  3805. frontAlt2: {
  3806. height: math.unit(6, "feet"),
  3807. weight: math.unit(75, "kg"),
  3808. name: "Front (Alt 2)",
  3809. image: {
  3810. source: "./media/characters/shingo/front-alt-2.svg",
  3811. extra: 706/681,
  3812. bottom: 11/717
  3813. }
  3814. },
  3815. pawAlt: {
  3816. height: math.unit(1, "feet"),
  3817. name: "Paw (Alt)",
  3818. image: {
  3819. source: "./media/characters/shingo/paw-alt.svg"
  3820. }
  3821. },
  3822. },
  3823. [
  3824. {
  3825. name: "Micro",
  3826. height: math.unit(4, "inches")
  3827. },
  3828. {
  3829. name: "Normal",
  3830. height: math.unit(6, "feet"),
  3831. default: true
  3832. },
  3833. {
  3834. name: "Macro",
  3835. height: math.unit(108, "feet")
  3836. },
  3837. {
  3838. name: "Macro+",
  3839. height: math.unit(1500, "feet")
  3840. },
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3845. {
  3846. side: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(75, "kg"),
  3849. name: "Side",
  3850. image: {
  3851. source: "./media/characters/aigey/side.svg"
  3852. }
  3853. },
  3854. },
  3855. [
  3856. {
  3857. name: "Macro",
  3858. height: math.unit(200, "feet"),
  3859. default: true
  3860. },
  3861. {
  3862. name: "Megamacro",
  3863. height: math.unit(100, "miles")
  3864. },
  3865. ]
  3866. )
  3867. )
  3868. characterMakers.push(() => makeCharacter(
  3869. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3870. {
  3871. front: {
  3872. height: math.unit(13, "feet"),
  3873. weight: math.unit(1036.80, "kg"),
  3874. name: "Front",
  3875. image: {
  3876. source: "./media/characters/natasha/front.svg",
  3877. extra: 1301/1210,
  3878. bottom: 39/1340
  3879. }
  3880. },
  3881. back: {
  3882. height: math.unit(13, "feet"),
  3883. weight: math.unit(1036.80, "kg"),
  3884. name: "Back",
  3885. image: {
  3886. source: "./media/characters/natasha/back.svg",
  3887. extra: 1342/1252,
  3888. bottom: 20/1362
  3889. }
  3890. },
  3891. head: {
  3892. height: math.unit(3.48, "feet"),
  3893. name: "Head",
  3894. image: {
  3895. source: "./media/characters/natasha/head.svg"
  3896. }
  3897. },
  3898. jaws: {
  3899. height: math.unit(3.52, "feet"),
  3900. name: "Jaws",
  3901. image: {
  3902. source: "./media/characters/natasha/jaws.svg"
  3903. }
  3904. },
  3905. paws: {
  3906. height: math.unit(2.7, "feet"),
  3907. name: "Paws",
  3908. image: {
  3909. source: "./media/characters/natasha/paws.svg"
  3910. }
  3911. },
  3912. collar: {
  3913. height: math.unit(0.89, "feet"),
  3914. name: "Collar",
  3915. image: {
  3916. source: "./media/characters/natasha/collar.svg"
  3917. }
  3918. },
  3919. gauge: {
  3920. height: math.unit(0.36, "feet"),
  3921. name: "Gauge",
  3922. image: {
  3923. source: "./media/characters/natasha/gauge.svg"
  3924. }
  3925. },
  3926. },
  3927. [
  3928. {
  3929. name: "Shortstack",
  3930. height: math.unit(3, "feet")
  3931. },
  3932. {
  3933. name: "Normal",
  3934. height: math.unit(13, "feet"),
  3935. default: true
  3936. },
  3937. {
  3938. name: "Macro",
  3939. height: math.unit(100, "feet")
  3940. },
  3941. {
  3942. name: "Macro+",
  3943. height: math.unit(260, "feet")
  3944. },
  3945. {
  3946. name: "Macro++",
  3947. height: math.unit(1, "mile")
  3948. },
  3949. ]
  3950. ))
  3951. characterMakers.push(() => makeCharacter(
  3952. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3953. {
  3954. front: {
  3955. height: math.unit(6, "feet"),
  3956. weight: math.unit(75, "kg"),
  3957. name: "Front",
  3958. image: {
  3959. source: "./media/characters/malik/front.svg",
  3960. extra: 1750/1561,
  3961. bottom: 80/1830
  3962. },
  3963. extraAttributes: {
  3964. "toeSize": {
  3965. name: "Toe Size",
  3966. power: 2,
  3967. type: "area",
  3968. base: math.unit(0.0159, "m^2")
  3969. },
  3970. "pawSize": {
  3971. name: "Paw Size",
  3972. power: 2,
  3973. type: "area",
  3974. base: math.unit(0.09834, "m^2")
  3975. },
  3976. }
  3977. },
  3978. side: {
  3979. height: math.unit(6, "feet"),
  3980. weight: math.unit(75, "kg"),
  3981. name: "Side",
  3982. image: {
  3983. source: "./media/characters/malik/side.svg",
  3984. extra: 1802/1685,
  3985. bottom: 42/1844
  3986. },
  3987. extraAttributes: {
  3988. "toeSize": {
  3989. name: "Toe Size",
  3990. power: 2,
  3991. type: "area",
  3992. base: math.unit(0.0159, "m^2")
  3993. },
  3994. "pawSize": {
  3995. name: "Paw Size",
  3996. power: 2,
  3997. type: "area",
  3998. base: math.unit(0.09834, "m^2")
  3999. },
  4000. }
  4001. },
  4002. back: {
  4003. height: math.unit(6, "feet"),
  4004. weight: math.unit(75, "kg"),
  4005. name: "Back",
  4006. image: {
  4007. source: "./media/characters/malik/back.svg",
  4008. extra: 1803/1607,
  4009. bottom: 33/1836
  4010. },
  4011. extraAttributes: {
  4012. "toeSize": {
  4013. name: "Toe Size",
  4014. power: 2,
  4015. type: "area",
  4016. base: math.unit(0.0159, "m^2")
  4017. },
  4018. "pawSize": {
  4019. name: "Paw Size",
  4020. power: 2,
  4021. type: "area",
  4022. base: math.unit(0.09834, "m^2")
  4023. },
  4024. }
  4025. },
  4026. },
  4027. [
  4028. {
  4029. name: "Macro",
  4030. height: math.unit(156, "feet"),
  4031. default: true
  4032. },
  4033. {
  4034. name: "Macro+",
  4035. height: math.unit(1188, "feet")
  4036. },
  4037. ]
  4038. ))
  4039. characterMakers.push(() => makeCharacter(
  4040. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4041. {
  4042. front: {
  4043. height: math.unit(6, "feet"),
  4044. weight: math.unit(75, "kg"),
  4045. name: "Front",
  4046. image: {
  4047. source: "./media/characters/sefer/front.svg",
  4048. extra: 848 / 659,
  4049. bottom: 28.3 / 876.442
  4050. }
  4051. },
  4052. back: {
  4053. height: math.unit(6, "feet"),
  4054. weight: math.unit(75, "kg"),
  4055. name: "Back",
  4056. image: {
  4057. source: "./media/characters/sefer/back.svg",
  4058. extra: 864 / 695,
  4059. bottom: 10 / 871
  4060. }
  4061. },
  4062. frontDressed: {
  4063. height: math.unit(6, "feet"),
  4064. weight: math.unit(75, "kg"),
  4065. name: "Dressed",
  4066. image: {
  4067. source: "./media/characters/sefer/dressed.svg",
  4068. extra: 839 / 653,
  4069. bottom: 37.6 / 878
  4070. }
  4071. },
  4072. },
  4073. [
  4074. {
  4075. name: "Normal",
  4076. height: math.unit(6, "feet"),
  4077. default: true
  4078. },
  4079. {
  4080. name: "Big",
  4081. height: math.unit(8, "meters")
  4082. },
  4083. ]
  4084. ))
  4085. characterMakers.push(() => makeCharacter(
  4086. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4087. {
  4088. body: {
  4089. height: math.unit(2.2428, "meter"),
  4090. weight: math.unit(124.738, "kg"),
  4091. name: "Body",
  4092. image: {
  4093. extra: 1225 / 1050,
  4094. source: "./media/characters/north/front.svg"
  4095. }
  4096. }
  4097. },
  4098. [
  4099. {
  4100. name: "Micro",
  4101. height: math.unit(4, "inches")
  4102. },
  4103. {
  4104. name: "Macro",
  4105. height: math.unit(63, "meters")
  4106. },
  4107. {
  4108. name: "Megamacro",
  4109. height: math.unit(101, "miles"),
  4110. default: true
  4111. }
  4112. ]
  4113. ))
  4114. characterMakers.push(() => makeCharacter(
  4115. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4116. {
  4117. angled: {
  4118. height: math.unit(4, "meter"),
  4119. weight: math.unit(150, "kg"),
  4120. name: "Angled",
  4121. image: {
  4122. source: "./media/characters/talan/angled-sfw.svg",
  4123. bottom: 29 / 3734
  4124. }
  4125. },
  4126. angledNsfw: {
  4127. height: math.unit(4, "meter"),
  4128. weight: math.unit(150, "kg"),
  4129. name: "Angled (NSFW)",
  4130. image: {
  4131. source: "./media/characters/talan/angled-nsfw.svg",
  4132. bottom: 29 / 3734
  4133. }
  4134. },
  4135. frontNsfw: {
  4136. height: math.unit(4, "meter"),
  4137. weight: math.unit(150, "kg"),
  4138. name: "Front (NSFW)",
  4139. image: {
  4140. source: "./media/characters/talan/front-nsfw.svg",
  4141. bottom: 29 / 3734
  4142. }
  4143. },
  4144. sideNsfw: {
  4145. height: math.unit(4, "meter"),
  4146. weight: math.unit(150, "kg"),
  4147. name: "Side (NSFW)",
  4148. image: {
  4149. source: "./media/characters/talan/side-nsfw.svg",
  4150. bottom: 29 / 3734
  4151. }
  4152. },
  4153. back: {
  4154. height: math.unit(4, "meter"),
  4155. weight: math.unit(150, "kg"),
  4156. name: "Back",
  4157. image: {
  4158. source: "./media/characters/talan/back.svg"
  4159. }
  4160. },
  4161. dickBottom: {
  4162. height: math.unit(0.621, "meter"),
  4163. name: "Dick (Bottom)",
  4164. image: {
  4165. source: "./media/characters/talan/dick-bottom.svg"
  4166. }
  4167. },
  4168. dickTop: {
  4169. height: math.unit(0.621, "meter"),
  4170. name: "Dick (Top)",
  4171. image: {
  4172. source: "./media/characters/talan/dick-top.svg"
  4173. }
  4174. },
  4175. dickSide: {
  4176. height: math.unit(0.305, "meter"),
  4177. name: "Dick (Side)",
  4178. image: {
  4179. source: "./media/characters/talan/dick-side.svg"
  4180. }
  4181. },
  4182. dickFront: {
  4183. height: math.unit(0.305, "meter"),
  4184. name: "Dick (Front)",
  4185. image: {
  4186. source: "./media/characters/talan/dick-front.svg"
  4187. }
  4188. },
  4189. },
  4190. [
  4191. {
  4192. name: "Normal",
  4193. height: math.unit(4, "meters")
  4194. },
  4195. {
  4196. name: "Macro",
  4197. height: math.unit(100, "meters")
  4198. },
  4199. {
  4200. name: "Megamacro",
  4201. height: math.unit(2, "miles"),
  4202. default: true
  4203. },
  4204. {
  4205. name: "Gigamacro",
  4206. height: math.unit(5000, "miles")
  4207. },
  4208. {
  4209. name: "Teramacro",
  4210. height: math.unit(100, "parsecs")
  4211. }
  4212. ]
  4213. ))
  4214. characterMakers.push(() => makeCharacter(
  4215. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4216. {
  4217. front: {
  4218. height: math.unit(2, "meter"),
  4219. weight: math.unit(90, "kg"),
  4220. name: "Front",
  4221. image: {
  4222. source: "./media/characters/gael'rathus/front.svg"
  4223. }
  4224. },
  4225. frontAlt: {
  4226. height: math.unit(2, "meter"),
  4227. weight: math.unit(90, "kg"),
  4228. name: "Front (alt)",
  4229. image: {
  4230. source: "./media/characters/gael'rathus/front-alt.svg"
  4231. }
  4232. },
  4233. frontAlt2: {
  4234. height: math.unit(2, "meter"),
  4235. weight: math.unit(90, "kg"),
  4236. name: "Front (alt 2)",
  4237. image: {
  4238. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4239. }
  4240. }
  4241. },
  4242. [
  4243. {
  4244. name: "Normal",
  4245. height: math.unit(9, "feet"),
  4246. default: true
  4247. },
  4248. {
  4249. name: "Large",
  4250. height: math.unit(25, "feet")
  4251. },
  4252. {
  4253. name: "Macro",
  4254. height: math.unit(0.25, "miles")
  4255. },
  4256. {
  4257. name: "Megamacro",
  4258. height: math.unit(10, "miles")
  4259. }
  4260. ]
  4261. ))
  4262. characterMakers.push(() => makeCharacter(
  4263. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4264. {
  4265. side: {
  4266. height: math.unit(2, "meter"),
  4267. weight: math.unit(140, "kg"),
  4268. name: "Side",
  4269. image: {
  4270. source: "./media/characters/sosha/side.svg",
  4271. extra: 1170/1006,
  4272. bottom: 94/1264
  4273. }
  4274. },
  4275. maw: {
  4276. height: math.unit(2.87, "feet"),
  4277. name: "Maw",
  4278. image: {
  4279. source: "./media/characters/sosha/maw.svg",
  4280. extra: 966/865,
  4281. bottom: 0/966
  4282. }
  4283. },
  4284. cooch: {
  4285. height: math.unit(5.6, "feet"),
  4286. name: "Cooch",
  4287. image: {
  4288. source: "./media/characters/sosha/cooch.svg"
  4289. }
  4290. },
  4291. },
  4292. [
  4293. {
  4294. name: "Normal",
  4295. height: math.unit(12, "feet"),
  4296. default: true
  4297. }
  4298. ]
  4299. ))
  4300. characterMakers.push(() => makeCharacter(
  4301. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4302. {
  4303. side: {
  4304. height: math.unit(5 + 5 / 12, "feet"),
  4305. weight: math.unit(170, "kg"),
  4306. name: "Side",
  4307. image: {
  4308. source: "./media/characters/runnola/side.svg",
  4309. extra: 741 / 448,
  4310. bottom: 0.05
  4311. }
  4312. },
  4313. },
  4314. [
  4315. {
  4316. name: "Small",
  4317. height: math.unit(3, "feet")
  4318. },
  4319. {
  4320. name: "Normal",
  4321. height: math.unit(5 + 5 / 12, "feet"),
  4322. default: true
  4323. },
  4324. {
  4325. name: "Big",
  4326. height: math.unit(10, "feet")
  4327. },
  4328. ]
  4329. ))
  4330. characterMakers.push(() => makeCharacter(
  4331. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4332. {
  4333. front: {
  4334. height: math.unit(2, "meter"),
  4335. weight: math.unit(50, "kg"),
  4336. name: "Front",
  4337. image: {
  4338. source: "./media/characters/kurribird/front.svg",
  4339. bottom: 0.015
  4340. }
  4341. },
  4342. frontAlt: {
  4343. height: math.unit(1.5, "meter"),
  4344. weight: math.unit(50, "kg"),
  4345. name: "Front (Alt)",
  4346. image: {
  4347. source: "./media/characters/kurribird/front-alt.svg",
  4348. extra: 1.45
  4349. }
  4350. },
  4351. },
  4352. [
  4353. {
  4354. name: "Normal",
  4355. height: math.unit(7, "feet")
  4356. },
  4357. {
  4358. name: "Big",
  4359. height: math.unit(12, "feet"),
  4360. default: true
  4361. },
  4362. {
  4363. name: "Macro",
  4364. height: math.unit(1500, "feet")
  4365. },
  4366. {
  4367. name: "Megamacro",
  4368. height: math.unit(2, "miles")
  4369. }
  4370. ]
  4371. ))
  4372. characterMakers.push(() => makeCharacter(
  4373. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4374. {
  4375. front: {
  4376. height: math.unit(2, "meter"),
  4377. weight: math.unit(80, "kg"),
  4378. name: "Front",
  4379. image: {
  4380. source: "./media/characters/elbial/front.svg",
  4381. extra: 1643 / 1556,
  4382. bottom: 60.2 / 1696
  4383. }
  4384. },
  4385. side: {
  4386. height: math.unit(2, "meter"),
  4387. weight: math.unit(80, "kg"),
  4388. name: "Side",
  4389. image: {
  4390. source: "./media/characters/elbial/side.svg",
  4391. extra: 1601/1528,
  4392. bottom: 97/1698
  4393. }
  4394. },
  4395. back: {
  4396. height: math.unit(2, "meter"),
  4397. weight: math.unit(80, "kg"),
  4398. name: "Back",
  4399. image: {
  4400. source: "./media/characters/elbial/back.svg",
  4401. extra: 1653/1569,
  4402. bottom: 20/1673
  4403. }
  4404. },
  4405. frontDressed: {
  4406. height: math.unit(2, "meter"),
  4407. weight: math.unit(80, "kg"),
  4408. name: "Front (Dressed)",
  4409. image: {
  4410. source: "./media/characters/elbial/front-dressed.svg",
  4411. extra: 1638/1569,
  4412. bottom: 70/1708
  4413. }
  4414. },
  4415. genitals: {
  4416. height: math.unit(2 / 3.367, "meter"),
  4417. name: "Genitals",
  4418. image: {
  4419. source: "./media/characters/elbial/genitals.svg"
  4420. }
  4421. },
  4422. },
  4423. [
  4424. {
  4425. name: "Large",
  4426. height: math.unit(100, "feet")
  4427. },
  4428. {
  4429. name: "Macro",
  4430. height: math.unit(500, "feet"),
  4431. default: true
  4432. },
  4433. {
  4434. name: "Megamacro",
  4435. height: math.unit(10, "miles")
  4436. },
  4437. {
  4438. name: "Gigamacro",
  4439. height: math.unit(25000, "miles")
  4440. },
  4441. {
  4442. name: "Full-Size",
  4443. height: math.unit(8000000, "gigaparsecs")
  4444. }
  4445. ]
  4446. ))
  4447. characterMakers.push(() => makeCharacter(
  4448. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4449. {
  4450. front: {
  4451. height: math.unit(2, "meter"),
  4452. weight: math.unit(60, "kg"),
  4453. name: "Front",
  4454. image: {
  4455. source: "./media/characters/noah/front.svg",
  4456. extra: 1383/1313,
  4457. bottom: 104/1487
  4458. }
  4459. },
  4460. hand: {
  4461. height: math.unit(0.6, "feet"),
  4462. name: "Hand",
  4463. image: {
  4464. source: "./media/characters/noah/hand.svg"
  4465. }
  4466. },
  4467. talons: {
  4468. height: math.unit(1.385, "feet"),
  4469. name: "Talons",
  4470. image: {
  4471. source: "./media/characters/noah/talons.svg"
  4472. }
  4473. },
  4474. beak: {
  4475. height: math.unit(0.43, "feet"),
  4476. name: "Beak",
  4477. image: {
  4478. source: "./media/characters/noah/beak.svg"
  4479. }
  4480. },
  4481. collar: {
  4482. height: math.unit(0.88, "feet"),
  4483. name: "Collar",
  4484. image: {
  4485. source: "./media/characters/noah/collar.svg"
  4486. }
  4487. },
  4488. eyeNarrow: {
  4489. height: math.unit(0.18, "feet"),
  4490. name: "Eye (Narrow)",
  4491. image: {
  4492. source: "./media/characters/noah/eye-narrow.svg"
  4493. }
  4494. },
  4495. eyeNormal: {
  4496. height: math.unit(0.18, "feet"),
  4497. name: "Eye (Normal)",
  4498. image: {
  4499. source: "./media/characters/noah/eye-normal.svg"
  4500. }
  4501. },
  4502. eyeWide: {
  4503. height: math.unit(0.18, "feet"),
  4504. name: "Eye (Wide)",
  4505. image: {
  4506. source: "./media/characters/noah/eye-wide.svg"
  4507. }
  4508. },
  4509. ear: {
  4510. height: math.unit(0.64, "feet"),
  4511. name: "Ear",
  4512. image: {
  4513. source: "./media/characters/noah/ear.svg"
  4514. }
  4515. },
  4516. },
  4517. [
  4518. {
  4519. name: "Large",
  4520. height: math.unit(50, "feet")
  4521. },
  4522. {
  4523. name: "Macro",
  4524. height: math.unit(750, "feet"),
  4525. default: true
  4526. },
  4527. {
  4528. name: "Megamacro",
  4529. height: math.unit(50, "miles")
  4530. },
  4531. {
  4532. name: "Gigamacro",
  4533. height: math.unit(100000, "miles")
  4534. },
  4535. {
  4536. name: "Full-Size",
  4537. height: math.unit(3000000000, "miles")
  4538. }
  4539. ]
  4540. ))
  4541. characterMakers.push(() => makeCharacter(
  4542. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4543. {
  4544. front: {
  4545. height: math.unit(2, "meter"),
  4546. weight: math.unit(80, "kg"),
  4547. name: "Front",
  4548. image: {
  4549. source: "./media/characters/natalya/front.svg"
  4550. }
  4551. },
  4552. back: {
  4553. height: math.unit(2, "meter"),
  4554. weight: math.unit(80, "kg"),
  4555. name: "Back",
  4556. image: {
  4557. source: "./media/characters/natalya/back.svg"
  4558. }
  4559. }
  4560. },
  4561. [
  4562. {
  4563. name: "Normal",
  4564. height: math.unit(150, "feet"),
  4565. default: true
  4566. },
  4567. {
  4568. name: "Megamacro",
  4569. height: math.unit(5, "miles")
  4570. },
  4571. {
  4572. name: "Full-Size",
  4573. height: math.unit(600, "kiloparsecs")
  4574. }
  4575. ]
  4576. ))
  4577. characterMakers.push(() => makeCharacter(
  4578. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4579. {
  4580. front: {
  4581. height: math.unit(2, "meter"),
  4582. weight: math.unit(50, "kg"),
  4583. name: "Front",
  4584. image: {
  4585. source: "./media/characters/erestrebah/front.svg",
  4586. extra: 1262/1162,
  4587. bottom: 96/1358
  4588. }
  4589. },
  4590. back: {
  4591. height: math.unit(2, "meter"),
  4592. weight: math.unit(50, "kg"),
  4593. name: "Back",
  4594. image: {
  4595. source: "./media/characters/erestrebah/back.svg",
  4596. extra: 1257/1139,
  4597. bottom: 13/1270
  4598. }
  4599. },
  4600. wing: {
  4601. height: math.unit(2, "meter"),
  4602. weight: math.unit(50, "kg"),
  4603. name: "Wing",
  4604. image: {
  4605. source: "./media/characters/erestrebah/wing.svg",
  4606. extra: 1262/1162,
  4607. bottom: 96/1358
  4608. }
  4609. },
  4610. mouth: {
  4611. height: math.unit(0.39, "feet"),
  4612. name: "Mouth",
  4613. image: {
  4614. source: "./media/characters/erestrebah/mouth.svg"
  4615. }
  4616. }
  4617. },
  4618. [
  4619. {
  4620. name: "Normal",
  4621. height: math.unit(10, "feet")
  4622. },
  4623. {
  4624. name: "Large",
  4625. height: math.unit(50, "feet"),
  4626. default: true
  4627. },
  4628. {
  4629. name: "Macro",
  4630. height: math.unit(300, "feet")
  4631. },
  4632. {
  4633. name: "Macro+",
  4634. height: math.unit(750, "feet")
  4635. },
  4636. {
  4637. name: "Megamacro",
  4638. height: math.unit(3, "miles")
  4639. }
  4640. ]
  4641. ))
  4642. characterMakers.push(() => makeCharacter(
  4643. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4644. {
  4645. front: {
  4646. height: math.unit(2, "meter"),
  4647. weight: math.unit(80, "kg"),
  4648. name: "Front",
  4649. image: {
  4650. source: "./media/characters/jennifer/front.svg",
  4651. bottom: 0.11,
  4652. extra: 1.16
  4653. }
  4654. },
  4655. frontAlt: {
  4656. height: math.unit(2, "meter"),
  4657. weight: math.unit(80, "kg"),
  4658. name: "Front (Alt)",
  4659. image: {
  4660. source: "./media/characters/jennifer/front-alt.svg"
  4661. }
  4662. }
  4663. },
  4664. [
  4665. {
  4666. name: "Canon Height",
  4667. height: math.unit(120, "feet"),
  4668. default: true
  4669. },
  4670. {
  4671. name: "Macro+",
  4672. height: math.unit(300, "feet")
  4673. },
  4674. {
  4675. name: "Megamacro",
  4676. height: math.unit(20000, "feet")
  4677. }
  4678. ]
  4679. ))
  4680. characterMakers.push(() => makeCharacter(
  4681. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4682. {
  4683. front: {
  4684. height: math.unit(2, "meter"),
  4685. weight: math.unit(50, "kg"),
  4686. name: "Front",
  4687. image: {
  4688. source: "./media/characters/kalista/front.svg",
  4689. extra: 1314/1145,
  4690. bottom: 101/1415
  4691. }
  4692. },
  4693. back: {
  4694. height: math.unit(2, "meter"),
  4695. weight: math.unit(50, "kg"),
  4696. name: "Back",
  4697. image: {
  4698. source: "./media/characters/kalista/back.svg",
  4699. extra: 1366 / 1156,
  4700. bottom: 33.9 / 1362.78
  4701. }
  4702. }
  4703. },
  4704. [
  4705. {
  4706. name: "Uncomfortably Small",
  4707. height: math.unit(10, "feet")
  4708. },
  4709. {
  4710. name: "Small",
  4711. height: math.unit(30, "feet")
  4712. },
  4713. {
  4714. name: "Macro",
  4715. height: math.unit(100, "feet"),
  4716. default: true
  4717. },
  4718. {
  4719. name: "Macro+",
  4720. height: math.unit(2000, "feet")
  4721. },
  4722. {
  4723. name: "True Form",
  4724. height: math.unit(8924, "miles")
  4725. }
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4730. {
  4731. front: {
  4732. height: math.unit(2, "meter"),
  4733. weight: math.unit(120, "kg"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/ggv/front.svg"
  4737. }
  4738. },
  4739. side: {
  4740. height: math.unit(2, "meter"),
  4741. weight: math.unit(120, "kg"),
  4742. name: "Side",
  4743. image: {
  4744. source: "./media/characters/ggv/side.svg"
  4745. }
  4746. }
  4747. },
  4748. [
  4749. {
  4750. name: "Extremely Puny",
  4751. height: math.unit(9 + 5 / 12, "feet")
  4752. },
  4753. {
  4754. name: "Horribly Small",
  4755. height: math.unit(47.7, "miles"),
  4756. default: true
  4757. },
  4758. {
  4759. name: "Reasonably Sized",
  4760. height: math.unit(25000, "parsecs")
  4761. },
  4762. {
  4763. name: "Slightly Uncompressed",
  4764. height: math.unit(7.77e31, "parsecs")
  4765. },
  4766. {
  4767. name: "Omniversal",
  4768. height: math.unit(1e300, "meters")
  4769. },
  4770. ]
  4771. ))
  4772. characterMakers.push(() => makeCharacter(
  4773. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4774. {
  4775. front: {
  4776. height: math.unit(2, "meter"),
  4777. weight: math.unit(75, "lb"),
  4778. name: "Front",
  4779. image: {
  4780. source: "./media/characters/napalm/front.svg"
  4781. }
  4782. },
  4783. back: {
  4784. height: math.unit(2, "meter"),
  4785. weight: math.unit(75, "lb"),
  4786. name: "Back",
  4787. image: {
  4788. source: "./media/characters/napalm/back.svg"
  4789. }
  4790. }
  4791. },
  4792. [
  4793. {
  4794. name: "Standard",
  4795. height: math.unit(55, "feet"),
  4796. default: true
  4797. }
  4798. ]
  4799. ))
  4800. characterMakers.push(() => makeCharacter(
  4801. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4802. {
  4803. front: {
  4804. height: math.unit(7 + 5 / 6, "feet"),
  4805. weight: math.unit(325, "lb"),
  4806. name: "Front",
  4807. image: {
  4808. source: "./media/characters/asana/front.svg",
  4809. extra: 1133 / 1060,
  4810. bottom: 15.2 / 1148.6
  4811. }
  4812. },
  4813. back: {
  4814. height: math.unit(7 + 5 / 6, "feet"),
  4815. weight: math.unit(325, "lb"),
  4816. name: "Back",
  4817. image: {
  4818. source: "./media/characters/asana/back.svg",
  4819. extra: 1114 / 1043,
  4820. bottom: 5 / 1120
  4821. }
  4822. },
  4823. dressedDark: {
  4824. height: math.unit(7 + 5 / 6, "feet"),
  4825. weight: math.unit(325, "lb"),
  4826. name: "Dressed (Dark)",
  4827. image: {
  4828. source: "./media/characters/asana/dressed-dark.svg",
  4829. extra: 1133 / 1060,
  4830. bottom: 15.2 / 1148.6
  4831. }
  4832. },
  4833. dressedLight: {
  4834. height: math.unit(7 + 5 / 6, "feet"),
  4835. weight: math.unit(325, "lb"),
  4836. name: "Dressed (Light)",
  4837. image: {
  4838. source: "./media/characters/asana/dressed-light.svg",
  4839. extra: 1133 / 1060,
  4840. bottom: 15.2 / 1148.6
  4841. }
  4842. },
  4843. },
  4844. [
  4845. {
  4846. name: "Standard",
  4847. height: math.unit(7 + 5 / 6, "feet"),
  4848. default: true
  4849. },
  4850. {
  4851. name: "Large",
  4852. height: math.unit(10, "meters")
  4853. },
  4854. {
  4855. name: "Macro",
  4856. height: math.unit(2500, "meters")
  4857. },
  4858. {
  4859. name: "Megamacro",
  4860. height: math.unit(5e6, "meters")
  4861. },
  4862. {
  4863. name: "Examacro",
  4864. height: math.unit(5e12, "lightyears")
  4865. },
  4866. {
  4867. name: "Max Size",
  4868. height: math.unit(1e31, "lightyears")
  4869. }
  4870. ]
  4871. ))
  4872. characterMakers.push(() => makeCharacter(
  4873. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4874. {
  4875. front: {
  4876. height: math.unit(2, "meter"),
  4877. weight: math.unit(60, "kg"),
  4878. name: "Front",
  4879. image: {
  4880. source: "./media/characters/ebony/front.svg",
  4881. bottom: 0.03,
  4882. extra: 1045 / 810 + 0.03
  4883. }
  4884. },
  4885. side: {
  4886. height: math.unit(2, "meter"),
  4887. weight: math.unit(60, "kg"),
  4888. name: "Side",
  4889. image: {
  4890. source: "./media/characters/ebony/side.svg",
  4891. bottom: 0.03,
  4892. extra: 1045 / 810 + 0.03
  4893. }
  4894. },
  4895. back: {
  4896. height: math.unit(2, "meter"),
  4897. weight: math.unit(60, "kg"),
  4898. name: "Back",
  4899. image: {
  4900. source: "./media/characters/ebony/back.svg",
  4901. bottom: 0.01,
  4902. extra: 1045 / 810 + 0.01
  4903. }
  4904. },
  4905. },
  4906. [
  4907. // TODO check why I did this lol
  4908. {
  4909. name: "Standard",
  4910. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4911. default: true
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(200, "feet")
  4916. },
  4917. {
  4918. name: "Gigamacro",
  4919. height: math.unit(13000, "km")
  4920. }
  4921. ]
  4922. ))
  4923. characterMakers.push(() => makeCharacter(
  4924. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4925. {
  4926. front: {
  4927. height: math.unit(6, "feet"),
  4928. weight: math.unit(175, "lb"),
  4929. name: "Front",
  4930. image: {
  4931. source: "./media/characters/mountain/front.svg",
  4932. extra: 972 / 955,
  4933. bottom: 64 / 1036.6
  4934. }
  4935. },
  4936. back: {
  4937. height: math.unit(6, "feet"),
  4938. weight: math.unit(175, "lb"),
  4939. name: "Back",
  4940. image: {
  4941. source: "./media/characters/mountain/back.svg",
  4942. extra: 970 / 950,
  4943. bottom: 28.25 / 999
  4944. }
  4945. },
  4946. },
  4947. [
  4948. {
  4949. name: "Large",
  4950. height: math.unit(20, "meters")
  4951. },
  4952. {
  4953. name: "Macro",
  4954. height: math.unit(300, "meters")
  4955. },
  4956. {
  4957. name: "Gigamacro",
  4958. height: math.unit(10000, "km"),
  4959. default: true
  4960. },
  4961. {
  4962. name: "Examacro",
  4963. height: math.unit(10e9, "lightyears")
  4964. }
  4965. ]
  4966. ))
  4967. characterMakers.push(() => makeCharacter(
  4968. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4969. {
  4970. front: {
  4971. height: math.unit(8, "feet"),
  4972. weight: math.unit(500, "lb"),
  4973. name: "Front",
  4974. image: {
  4975. source: "./media/characters/rick/front.svg"
  4976. }
  4977. }
  4978. },
  4979. [
  4980. {
  4981. name: "Normal",
  4982. height: math.unit(8, "feet"),
  4983. default: true
  4984. },
  4985. {
  4986. name: "Macro",
  4987. height: math.unit(5, "km")
  4988. }
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(8, "feet"),
  4996. weight: math.unit(120, "lb"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/ona/front.svg"
  5000. }
  5001. },
  5002. frontAlt: {
  5003. height: math.unit(8, "feet"),
  5004. weight: math.unit(120, "lb"),
  5005. name: "Front (Alt)",
  5006. image: {
  5007. source: "./media/characters/ona/front-alt.svg"
  5008. }
  5009. },
  5010. back: {
  5011. height: math.unit(8, "feet"),
  5012. weight: math.unit(120, "lb"),
  5013. name: "Back",
  5014. image: {
  5015. source: "./media/characters/ona/back.svg"
  5016. }
  5017. },
  5018. foot: {
  5019. height: math.unit(1.1, "feet"),
  5020. name: "Foot",
  5021. image: {
  5022. source: "./media/characters/ona/foot.svg"
  5023. }
  5024. }
  5025. },
  5026. [
  5027. {
  5028. name: "Megamacro",
  5029. height: math.unit(70, "km"),
  5030. default: true
  5031. },
  5032. {
  5033. name: "Gigamacro",
  5034. height: math.unit(681818, "miles")
  5035. },
  5036. {
  5037. name: "Examacro",
  5038. height: math.unit(3800000, "lightyears")
  5039. },
  5040. ]
  5041. ))
  5042. characterMakers.push(() => makeCharacter(
  5043. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5044. {
  5045. front: {
  5046. height: math.unit(12, "feet"),
  5047. weight: math.unit(3000, "lb"),
  5048. name: "Front",
  5049. image: {
  5050. source: "./media/characters/mech/front.svg",
  5051. extra: 2900 / 2770,
  5052. bottom: 110 / 3010
  5053. }
  5054. },
  5055. back: {
  5056. height: math.unit(12, "feet"),
  5057. weight: math.unit(3000, "lb"),
  5058. name: "Back",
  5059. image: {
  5060. source: "./media/characters/mech/back.svg",
  5061. extra: 3011 / 2890,
  5062. bottom: 94 / 3105
  5063. }
  5064. },
  5065. maw: {
  5066. height: math.unit(3.07, "feet"),
  5067. name: "Maw",
  5068. image: {
  5069. source: "./media/characters/mech/maw.svg"
  5070. }
  5071. },
  5072. head: {
  5073. height: math.unit(3.07, "feet"),
  5074. name: "Head",
  5075. image: {
  5076. source: "./media/characters/mech/head.svg"
  5077. }
  5078. },
  5079. dick: {
  5080. height: math.unit(1.43, "feet"),
  5081. name: "Dick",
  5082. image: {
  5083. source: "./media/characters/mech/dick.svg"
  5084. }
  5085. },
  5086. },
  5087. [
  5088. {
  5089. name: "Normal",
  5090. height: math.unit(12, "feet")
  5091. },
  5092. {
  5093. name: "Macro",
  5094. height: math.unit(300, "feet"),
  5095. default: true
  5096. },
  5097. {
  5098. name: "Macro+",
  5099. height: math.unit(1500, "feet")
  5100. },
  5101. ]
  5102. ))
  5103. characterMakers.push(() => makeCharacter(
  5104. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5105. {
  5106. front: {
  5107. height: math.unit(1.3, "meter"),
  5108. weight: math.unit(30, "kg"),
  5109. name: "Front",
  5110. image: {
  5111. source: "./media/characters/gregory/front.svg",
  5112. }
  5113. }
  5114. },
  5115. [
  5116. {
  5117. name: "Normal",
  5118. height: math.unit(1.3, "meter"),
  5119. default: true
  5120. },
  5121. {
  5122. name: "Macro",
  5123. height: math.unit(20, "meter")
  5124. }
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5129. {
  5130. front: {
  5131. height: math.unit(2.8, "meter"),
  5132. weight: math.unit(200, "kg"),
  5133. name: "Front",
  5134. image: {
  5135. source: "./media/characters/elory/front.svg",
  5136. }
  5137. }
  5138. },
  5139. [
  5140. {
  5141. name: "Normal",
  5142. height: math.unit(2.8, "meter"),
  5143. default: true
  5144. },
  5145. {
  5146. name: "Macro",
  5147. height: math.unit(38, "meter")
  5148. }
  5149. ]
  5150. ))
  5151. characterMakers.push(() => makeCharacter(
  5152. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5153. {
  5154. front: {
  5155. height: math.unit(470, "feet"),
  5156. weight: math.unit(924, "tons"),
  5157. name: "Front",
  5158. image: {
  5159. source: "./media/characters/angelpatamon/front.svg",
  5160. }
  5161. }
  5162. },
  5163. [
  5164. {
  5165. name: "Normal",
  5166. height: math.unit(470, "feet"),
  5167. default: true
  5168. },
  5169. {
  5170. name: "Deity Size I",
  5171. height: math.unit(28651.2, "km")
  5172. },
  5173. {
  5174. name: "Deity Size II",
  5175. height: math.unit(171907.2, "km")
  5176. }
  5177. ]
  5178. ))
  5179. characterMakers.push(() => makeCharacter(
  5180. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5181. {
  5182. side: {
  5183. height: math.unit(7.2, "meter"),
  5184. weight: math.unit(8.2, "tons"),
  5185. name: "Side",
  5186. image: {
  5187. source: "./media/characters/cryae/side.svg",
  5188. extra: 3500 / 1500
  5189. }
  5190. }
  5191. },
  5192. [
  5193. {
  5194. name: "Normal",
  5195. height: math.unit(7.2, "meter"),
  5196. default: true
  5197. }
  5198. ]
  5199. ))
  5200. characterMakers.push(() => makeCharacter(
  5201. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5202. {
  5203. front: {
  5204. height: math.unit(6, "feet"),
  5205. weight: math.unit(175, "lb"),
  5206. name: "Front",
  5207. image: {
  5208. source: "./media/characters/xera/front.svg",
  5209. extra: 2377 / 1972,
  5210. bottom: 75.5 / 2452
  5211. }
  5212. },
  5213. side: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(175, "lb"),
  5216. name: "Side",
  5217. image: {
  5218. source: "./media/characters/xera/side.svg",
  5219. extra: 2345 / 2019,
  5220. bottom: 39.7 / 2384
  5221. }
  5222. },
  5223. back: {
  5224. height: math.unit(6, "feet"),
  5225. weight: math.unit(175, "lb"),
  5226. name: "Back",
  5227. image: {
  5228. source: "./media/characters/xera/back.svg",
  5229. extra: 2095 / 1984,
  5230. bottom: 67 / 2166
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Small",
  5237. height: math.unit(10, "feet")
  5238. },
  5239. {
  5240. name: "Macro",
  5241. height: math.unit(500, "meters"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Macro+",
  5246. height: math.unit(10, "km")
  5247. },
  5248. {
  5249. name: "Gigamacro",
  5250. height: math.unit(25000, "km")
  5251. },
  5252. {
  5253. name: "Teramacro",
  5254. height: math.unit(3e6, "km")
  5255. }
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5260. {
  5261. front: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(175, "lb"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/nebula/front.svg",
  5267. extra: 2566 / 2362,
  5268. bottom: 81 / 2644
  5269. }
  5270. }
  5271. },
  5272. [
  5273. {
  5274. name: "Small",
  5275. height: math.unit(4.5, "meters")
  5276. },
  5277. {
  5278. name: "Macro",
  5279. height: math.unit(1500, "meters"),
  5280. default: true
  5281. },
  5282. {
  5283. name: "Megamacro",
  5284. height: math.unit(150, "km")
  5285. },
  5286. {
  5287. name: "Gigamacro",
  5288. height: math.unit(27000, "km")
  5289. }
  5290. ]
  5291. ))
  5292. characterMakers.push(() => makeCharacter(
  5293. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5294. {
  5295. front: {
  5296. height: math.unit(6, "feet"),
  5297. weight: math.unit(225, "lb"),
  5298. name: "Front",
  5299. image: {
  5300. source: "./media/characters/abysgar/front.svg",
  5301. extra: 1739/1614,
  5302. bottom: 71/1810
  5303. }
  5304. },
  5305. frontNsfw: {
  5306. height: math.unit(6, "feet"),
  5307. weight: math.unit(225, "lb"),
  5308. name: "Front (NSFW)",
  5309. image: {
  5310. source: "./media/characters/abysgar/front-nsfw.svg",
  5311. extra: 1739/1614,
  5312. bottom: 71/1810
  5313. }
  5314. },
  5315. back: {
  5316. height: math.unit(4.6, "feet"),
  5317. weight: math.unit(225, "lb"),
  5318. name: "Back",
  5319. image: {
  5320. source: "./media/characters/abysgar/back.svg",
  5321. extra: 1384/1327,
  5322. bottom: 0/1384
  5323. }
  5324. },
  5325. head: {
  5326. height: math.unit(1.25, "feet"),
  5327. name: "Head",
  5328. image: {
  5329. source: "./media/characters/abysgar/head.svg",
  5330. extra: 669/569,
  5331. bottom: 0/669
  5332. }
  5333. },
  5334. },
  5335. [
  5336. {
  5337. name: "Small",
  5338. height: math.unit(4.5, "meters")
  5339. },
  5340. {
  5341. name: "Macro",
  5342. height: math.unit(1250, "meters"),
  5343. default: true
  5344. },
  5345. {
  5346. name: "Megamacro",
  5347. height: math.unit(125, "km")
  5348. },
  5349. {
  5350. name: "Gigamacro",
  5351. height: math.unit(26000, "km")
  5352. }
  5353. ]
  5354. ))
  5355. characterMakers.push(() => makeCharacter(
  5356. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5357. {
  5358. front: {
  5359. height: math.unit(6, "feet"),
  5360. weight: math.unit(180, "lb"),
  5361. name: "Front",
  5362. image: {
  5363. source: "./media/characters/yakuz/front.svg"
  5364. }
  5365. }
  5366. },
  5367. [
  5368. {
  5369. name: "Small",
  5370. height: math.unit(5, "meters")
  5371. },
  5372. {
  5373. name: "Macro",
  5374. height: math.unit(1500, "meters"),
  5375. default: true
  5376. },
  5377. {
  5378. name: "Megamacro",
  5379. height: math.unit(200, "km")
  5380. },
  5381. {
  5382. name: "Gigamacro",
  5383. height: math.unit(100000, "km")
  5384. }
  5385. ]
  5386. ))
  5387. characterMakers.push(() => makeCharacter(
  5388. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5389. {
  5390. front: {
  5391. height: math.unit(6, "feet"),
  5392. weight: math.unit(175, "lb"),
  5393. name: "Front",
  5394. image: {
  5395. source: "./media/characters/mirova/front.svg",
  5396. extra: 3334 / 3071,
  5397. bottom: 42 / 3375.6
  5398. }
  5399. }
  5400. },
  5401. [
  5402. {
  5403. name: "Small",
  5404. height: math.unit(5, "meters")
  5405. },
  5406. {
  5407. name: "Macro",
  5408. height: math.unit(900, "meters"),
  5409. default: true
  5410. },
  5411. {
  5412. name: "Megamacro",
  5413. height: math.unit(135, "km")
  5414. },
  5415. {
  5416. name: "Gigamacro",
  5417. height: math.unit(20000, "km")
  5418. }
  5419. ]
  5420. ))
  5421. characterMakers.push(() => makeCharacter(
  5422. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5423. {
  5424. side: {
  5425. height: math.unit(28.35, "feet"),
  5426. weight: math.unit(99.75, "tons"),
  5427. name: "Side",
  5428. image: {
  5429. source: "./media/characters/asana-mech/side.svg",
  5430. extra: 923 / 699,
  5431. bottom: 50 / 975
  5432. }
  5433. },
  5434. chaingun: {
  5435. height: math.unit(7, "feet"),
  5436. weight: math.unit(2400, "lb"),
  5437. name: "Chaingun",
  5438. image: {
  5439. source: "./media/characters/asana-mech/chaingun.svg"
  5440. }
  5441. },
  5442. laser: {
  5443. height: math.unit(7.12, "feet"),
  5444. weight: math.unit(2000, "lb"),
  5445. name: "Laser",
  5446. image: {
  5447. source: "./media/characters/asana-mech/laser.svg"
  5448. }
  5449. },
  5450. },
  5451. [
  5452. {
  5453. name: "Normal",
  5454. height: math.unit(28.35, "feet"),
  5455. default: true
  5456. },
  5457. {
  5458. name: "Macro",
  5459. height: math.unit(2500, "feet")
  5460. },
  5461. {
  5462. name: "Megamacro",
  5463. height: math.unit(25, "miles")
  5464. },
  5465. {
  5466. name: "Examacro",
  5467. height: math.unit(6e8, "lightyears")
  5468. },
  5469. ]
  5470. ))
  5471. characterMakers.push(() => makeCharacter(
  5472. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5473. {
  5474. front: {
  5475. height: math.unit(5, "meters"),
  5476. weight: math.unit(1000, "kg"),
  5477. name: "Front",
  5478. image: {
  5479. source: "./media/characters/asche/front.svg",
  5480. extra: 1258 / 1190,
  5481. bottom: 47 / 1305
  5482. }
  5483. },
  5484. frontUnderwear: {
  5485. height: math.unit(5, "meters"),
  5486. weight: math.unit(1000, "kg"),
  5487. name: "Front (Underwear)",
  5488. image: {
  5489. source: "./media/characters/asche/front-underwear.svg",
  5490. extra: 1258 / 1190,
  5491. bottom: 47 / 1305
  5492. }
  5493. },
  5494. frontDressed: {
  5495. height: math.unit(5, "meters"),
  5496. weight: math.unit(1000, "kg"),
  5497. name: "Front (Dressed)",
  5498. image: {
  5499. source: "./media/characters/asche/front-dressed.svg",
  5500. extra: 1258 / 1190,
  5501. bottom: 47 / 1305
  5502. }
  5503. },
  5504. frontArmor: {
  5505. height: math.unit(5, "meters"),
  5506. weight: math.unit(1000, "kg"),
  5507. name: "Front (Armored)",
  5508. image: {
  5509. source: "./media/characters/asche/front-armored.svg",
  5510. extra: 1374 / 1308,
  5511. bottom: 23 / 1397
  5512. }
  5513. },
  5514. mp724: {
  5515. height: math.unit(0.96, "meters"),
  5516. weight: math.unit(38, "kg"),
  5517. name: "H&K MP724",
  5518. image: {
  5519. source: "./media/characters/asche/h&k-mp724.svg"
  5520. }
  5521. },
  5522. side: {
  5523. height: math.unit(5, "meters"),
  5524. weight: math.unit(1000, "kg"),
  5525. name: "Side",
  5526. image: {
  5527. source: "./media/characters/asche/side.svg",
  5528. extra: 1717 / 1609,
  5529. bottom: 0.005
  5530. }
  5531. },
  5532. back: {
  5533. height: math.unit(5, "meters"),
  5534. weight: math.unit(1000, "kg"),
  5535. name: "Back",
  5536. image: {
  5537. source: "./media/characters/asche/back.svg",
  5538. extra: 1570 / 1501
  5539. }
  5540. },
  5541. },
  5542. [
  5543. {
  5544. name: "DEFCON 5",
  5545. height: math.unit(5, "meters")
  5546. },
  5547. {
  5548. name: "DEFCON 4",
  5549. height: math.unit(500, "meters"),
  5550. default: true
  5551. },
  5552. {
  5553. name: "DEFCON 3",
  5554. height: math.unit(5, "km")
  5555. },
  5556. {
  5557. name: "DEFCON 2",
  5558. height: math.unit(500, "km")
  5559. },
  5560. {
  5561. name: "DEFCON 1",
  5562. height: math.unit(500000, "km")
  5563. },
  5564. {
  5565. name: "DEFCON 0",
  5566. height: math.unit(3, "gigaparsecs")
  5567. },
  5568. ]
  5569. ))
  5570. characterMakers.push(() => makeCharacter(
  5571. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5572. {
  5573. front: {
  5574. height: math.unit(7, "feet"),
  5575. weight: math.unit(92.7, "kg"),
  5576. name: "Front",
  5577. image: {
  5578. source: "./media/characters/gale/front.svg",
  5579. extra: 977/919,
  5580. bottom: 105/1082
  5581. }
  5582. },
  5583. side: {
  5584. height: math.unit(6.7, "feet"),
  5585. weight: math.unit(92.7, "kg"),
  5586. name: "Side",
  5587. image: {
  5588. source: "./media/characters/gale/side.svg",
  5589. extra: 978/922,
  5590. bottom: 140/1118
  5591. }
  5592. },
  5593. back: {
  5594. height: math.unit(7, "feet"),
  5595. weight: math.unit(92.7, "kg"),
  5596. name: "Back",
  5597. image: {
  5598. source: "./media/characters/gale/back.svg",
  5599. extra: 966/920,
  5600. bottom: 61/1027
  5601. }
  5602. },
  5603. maw: {
  5604. height: math.unit(2.23, "feet"),
  5605. name: "Maw",
  5606. image: {
  5607. source: "./media/characters/gale/maw.svg"
  5608. }
  5609. },
  5610. foot: {
  5611. height: math.unit(2.1, "feet"),
  5612. name: "Foot",
  5613. image: {
  5614. source: "./media/characters/gale/foot.svg"
  5615. }
  5616. },
  5617. },
  5618. [
  5619. {
  5620. name: "Normal",
  5621. height: math.unit(7, "feet")
  5622. },
  5623. {
  5624. name: "Macro",
  5625. height: math.unit(150, "feet"),
  5626. default: true
  5627. },
  5628. {
  5629. name: "Macro+",
  5630. height: math.unit(300, "feet")
  5631. },
  5632. ]
  5633. ))
  5634. characterMakers.push(() => makeCharacter(
  5635. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5636. {
  5637. front: {
  5638. height: math.unit(5 + 10/12, "feet"),
  5639. weight: math.unit(67, "kg"),
  5640. name: "Front",
  5641. image: {
  5642. source: "./media/characters/draylen/front.svg",
  5643. extra: 832/777,
  5644. bottom: 85/917
  5645. }
  5646. }
  5647. },
  5648. [
  5649. {
  5650. name: "Normal",
  5651. height: math.unit(5 + 10/12, "feet")
  5652. },
  5653. {
  5654. name: "Macro",
  5655. height: math.unit(150, "feet"),
  5656. default: true
  5657. }
  5658. ]
  5659. ))
  5660. characterMakers.push(() => makeCharacter(
  5661. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5662. {
  5663. front: {
  5664. height: math.unit(7 + 9 / 12, "feet"),
  5665. weight: math.unit(379, "lbs"),
  5666. name: "Front",
  5667. image: {
  5668. source: "./media/characters/chez/front.svg"
  5669. }
  5670. },
  5671. side: {
  5672. height: math.unit(7 + 9 / 12, "feet"),
  5673. weight: math.unit(379, "lbs"),
  5674. name: "Side",
  5675. image: {
  5676. source: "./media/characters/chez/side.svg"
  5677. }
  5678. }
  5679. },
  5680. [
  5681. {
  5682. name: "Normal",
  5683. height: math.unit(7 + 9 / 12, "feet"),
  5684. default: true
  5685. },
  5686. {
  5687. name: "God King",
  5688. height: math.unit(9750000, "meters")
  5689. }
  5690. ]
  5691. ))
  5692. characterMakers.push(() => makeCharacter(
  5693. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5694. {
  5695. front: {
  5696. height: math.unit(6, "feet"),
  5697. weight: math.unit(275, "lbs"),
  5698. name: "Front",
  5699. image: {
  5700. source: "./media/characters/kaylum/front.svg",
  5701. bottom: 0.01,
  5702. extra: 1166 / 1031
  5703. }
  5704. },
  5705. frontWingless: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(275, "lbs"),
  5708. name: "Front (Wingless)",
  5709. image: {
  5710. source: "./media/characters/kaylum/front-wingless.svg",
  5711. bottom: 0.01,
  5712. extra: 1117 / 1031
  5713. }
  5714. }
  5715. },
  5716. [
  5717. {
  5718. name: "Normal",
  5719. height: math.unit(3.05, "meters")
  5720. },
  5721. {
  5722. name: "Master",
  5723. height: math.unit(5.5, "meters")
  5724. },
  5725. {
  5726. name: "Rampage",
  5727. height: math.unit(19, "meters")
  5728. },
  5729. {
  5730. name: "Macro Lite",
  5731. height: math.unit(37, "meters")
  5732. },
  5733. {
  5734. name: "Hyper Predator",
  5735. height: math.unit(61, "meters")
  5736. },
  5737. {
  5738. name: "Macro",
  5739. height: math.unit(138, "meters"),
  5740. default: true
  5741. }
  5742. ]
  5743. ))
  5744. characterMakers.push(() => makeCharacter(
  5745. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5746. {
  5747. front: {
  5748. height: math.unit(5 + 5 / 12, "feet"),
  5749. weight: math.unit(120, "lbs"),
  5750. name: "Front",
  5751. image: {
  5752. source: "./media/characters/geta/front.svg",
  5753. extra: 1003/933,
  5754. bottom: 21/1024
  5755. }
  5756. },
  5757. paw: {
  5758. height: math.unit(0.35, "feet"),
  5759. name: "Paw",
  5760. image: {
  5761. source: "./media/characters/geta/paw.svg"
  5762. }
  5763. },
  5764. },
  5765. [
  5766. {
  5767. name: "Micro",
  5768. height: math.unit(3, "inches"),
  5769. default: true
  5770. },
  5771. {
  5772. name: "Normal",
  5773. height: math.unit(5 + 5 / 12, "feet")
  5774. }
  5775. ]
  5776. ))
  5777. characterMakers.push(() => makeCharacter(
  5778. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5779. {
  5780. front: {
  5781. height: math.unit(6, "feet"),
  5782. weight: math.unit(300, "lbs"),
  5783. name: "Front",
  5784. image: {
  5785. source: "./media/characters/tyrnn/front.svg"
  5786. }
  5787. }
  5788. },
  5789. [
  5790. {
  5791. name: "Main Height",
  5792. height: math.unit(355, "feet"),
  5793. default: true
  5794. },
  5795. {
  5796. name: "Fave. Height",
  5797. height: math.unit(2400, "feet")
  5798. }
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5803. {
  5804. front: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(300, "lbs"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/appledectomy/front.svg"
  5810. }
  5811. }
  5812. },
  5813. [
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(2500, "feet")
  5817. },
  5818. {
  5819. name: "Megamacro",
  5820. height: math.unit(50, "miles"),
  5821. default: true
  5822. },
  5823. {
  5824. name: "Gigamacro",
  5825. height: math.unit(5000, "miles")
  5826. },
  5827. {
  5828. name: "Teramacro",
  5829. height: math.unit(250000, "miles")
  5830. },
  5831. ]
  5832. ))
  5833. characterMakers.push(() => makeCharacter(
  5834. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5835. {
  5836. front: {
  5837. height: math.unit(6, "feet"),
  5838. weight: math.unit(200, "lbs"),
  5839. name: "Front",
  5840. image: {
  5841. source: "./media/characters/vulpes/front.svg",
  5842. extra: 573 / 543,
  5843. bottom: 0.033
  5844. }
  5845. },
  5846. side: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(200, "lbs"),
  5849. name: "Side",
  5850. image: {
  5851. source: "./media/characters/vulpes/side.svg",
  5852. extra: 577 / 549,
  5853. bottom: 11 / 588
  5854. }
  5855. },
  5856. back: {
  5857. height: math.unit(6, "feet"),
  5858. weight: math.unit(200, "lbs"),
  5859. name: "Back",
  5860. image: {
  5861. source: "./media/characters/vulpes/back.svg",
  5862. extra: 573 / 549,
  5863. bottom: 20 / 593
  5864. }
  5865. },
  5866. feet: {
  5867. height: math.unit(1.276, "feet"),
  5868. name: "Feet",
  5869. image: {
  5870. source: "./media/characters/vulpes/feet.svg"
  5871. }
  5872. },
  5873. maw: {
  5874. height: math.unit(1.18, "feet"),
  5875. name: "Maw",
  5876. image: {
  5877. source: "./media/characters/vulpes/maw.svg"
  5878. }
  5879. },
  5880. },
  5881. [
  5882. {
  5883. name: "Micro",
  5884. height: math.unit(2, "inches")
  5885. },
  5886. {
  5887. name: "Normal",
  5888. height: math.unit(6.3, "feet")
  5889. },
  5890. {
  5891. name: "Macro",
  5892. height: math.unit(850, "feet")
  5893. },
  5894. {
  5895. name: "Megamacro",
  5896. height: math.unit(7500, "feet"),
  5897. default: true
  5898. },
  5899. {
  5900. name: "Gigamacro",
  5901. height: math.unit(570000, "miles")
  5902. }
  5903. ]
  5904. ))
  5905. characterMakers.push(() => makeCharacter(
  5906. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5907. {
  5908. front: {
  5909. height: math.unit(6, "feet"),
  5910. weight: math.unit(210, "lbs"),
  5911. name: "Front",
  5912. image: {
  5913. source: "./media/characters/rain-fallen/front.svg"
  5914. }
  5915. },
  5916. side: {
  5917. height: math.unit(6, "feet"),
  5918. weight: math.unit(210, "lbs"),
  5919. name: "Side",
  5920. image: {
  5921. source: "./media/characters/rain-fallen/side.svg"
  5922. }
  5923. },
  5924. back: {
  5925. height: math.unit(6, "feet"),
  5926. weight: math.unit(210, "lbs"),
  5927. name: "Back",
  5928. image: {
  5929. source: "./media/characters/rain-fallen/back.svg"
  5930. }
  5931. },
  5932. feral: {
  5933. height: math.unit(9, "feet"),
  5934. weight: math.unit(700, "lbs"),
  5935. name: "Feral",
  5936. image: {
  5937. source: "./media/characters/rain-fallen/feral.svg"
  5938. }
  5939. },
  5940. },
  5941. [
  5942. {
  5943. name: "Meddling with Mortals",
  5944. height: math.unit(8 + 8/12, "feet")
  5945. },
  5946. {
  5947. name: "Normal",
  5948. height: math.unit(5, "meter")
  5949. },
  5950. {
  5951. name: "Macro",
  5952. height: math.unit(150, "meter"),
  5953. default: true
  5954. },
  5955. {
  5956. name: "Megamacro",
  5957. height: math.unit(278e6, "meter")
  5958. },
  5959. {
  5960. name: "Gigamacro",
  5961. height: math.unit(2e9, "meter")
  5962. },
  5963. {
  5964. name: "Teramacro",
  5965. height: math.unit(8e12, "meter")
  5966. },
  5967. {
  5968. name: "Devourer",
  5969. height: math.unit(14, "zettameters")
  5970. },
  5971. {
  5972. name: "Scarlet King",
  5973. height: math.unit(18, "yottameters")
  5974. },
  5975. {
  5976. name: "Void",
  5977. height: math.unit(1e88, "yottameters")
  5978. }
  5979. ]
  5980. ))
  5981. characterMakers.push(() => makeCharacter(
  5982. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5983. {
  5984. standing: {
  5985. height: math.unit(6, "feet"),
  5986. weight: math.unit(180, "lbs"),
  5987. name: "Standing",
  5988. image: {
  5989. source: "./media/characters/zaakira/standing.svg",
  5990. extra: 1599/1504,
  5991. bottom: 39/1638
  5992. }
  5993. },
  5994. laying: {
  5995. height: math.unit(3.3, "feet"),
  5996. weight: math.unit(180, "lbs"),
  5997. name: "Laying",
  5998. image: {
  5999. source: "./media/characters/zaakira/laying.svg"
  6000. }
  6001. },
  6002. },
  6003. [
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(12, "feet")
  6007. },
  6008. {
  6009. name: "Macro",
  6010. height: math.unit(279, "feet"),
  6011. default: true
  6012. }
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  6017. {
  6018. femSfw: {
  6019. height: math.unit(8, "feet"),
  6020. weight: math.unit(350, "lb"),
  6021. name: "Fem",
  6022. image: {
  6023. source: "./media/characters/sigvald/fem-sfw.svg",
  6024. extra: 182 / 164,
  6025. bottom: 8.7 / 190.5
  6026. }
  6027. },
  6028. femNsfw: {
  6029. height: math.unit(8, "feet"),
  6030. weight: math.unit(350, "lb"),
  6031. name: "Fem (NSFW)",
  6032. image: {
  6033. source: "./media/characters/sigvald/fem-nsfw.svg",
  6034. extra: 182 / 164,
  6035. bottom: 8.7 / 190.5
  6036. }
  6037. },
  6038. maleNsfw: {
  6039. height: math.unit(8, "feet"),
  6040. weight: math.unit(350, "lb"),
  6041. name: "Male (NSFW)",
  6042. image: {
  6043. source: "./media/characters/sigvald/male-nsfw.svg",
  6044. extra: 182 / 164,
  6045. bottom: 8.7 / 190.5
  6046. }
  6047. },
  6048. hermNsfw: {
  6049. height: math.unit(8, "feet"),
  6050. weight: math.unit(350, "lb"),
  6051. name: "Herm (NSFW)",
  6052. image: {
  6053. source: "./media/characters/sigvald/herm-nsfw.svg",
  6054. extra: 182 / 164,
  6055. bottom: 8.7 / 190.5
  6056. }
  6057. },
  6058. dick: {
  6059. height: math.unit(2.36, "feet"),
  6060. name: "Dick",
  6061. image: {
  6062. source: "./media/characters/sigvald/dick.svg"
  6063. }
  6064. },
  6065. eye: {
  6066. height: math.unit(0.31, "feet"),
  6067. name: "Eye",
  6068. image: {
  6069. source: "./media/characters/sigvald/eye.svg"
  6070. }
  6071. },
  6072. mouth: {
  6073. height: math.unit(0.92, "feet"),
  6074. name: "Mouth",
  6075. image: {
  6076. source: "./media/characters/sigvald/mouth.svg"
  6077. }
  6078. },
  6079. paws: {
  6080. height: math.unit(2.2, "feet"),
  6081. name: "Paws",
  6082. image: {
  6083. source: "./media/characters/sigvald/paws.svg"
  6084. }
  6085. }
  6086. },
  6087. [
  6088. {
  6089. name: "Normal",
  6090. height: math.unit(8, "feet")
  6091. },
  6092. {
  6093. name: "Large",
  6094. height: math.unit(12, "feet")
  6095. },
  6096. {
  6097. name: "Larger",
  6098. height: math.unit(20, "feet")
  6099. },
  6100. {
  6101. name: "Macro",
  6102. height: math.unit(150, "feet")
  6103. },
  6104. {
  6105. name: "Macro+",
  6106. height: math.unit(200, "feet"),
  6107. default: true
  6108. },
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6113. {
  6114. side: {
  6115. height: math.unit(12, "feet"),
  6116. weight: math.unit(2000, "kg"),
  6117. name: "Side",
  6118. image: {
  6119. source: "./media/characters/scott/side.svg",
  6120. extra: 754 / 724,
  6121. bottom: 0.069
  6122. }
  6123. },
  6124. upright: {
  6125. height: math.unit(12, "feet"),
  6126. weight: math.unit(2000, "kg"),
  6127. name: "Upright",
  6128. image: {
  6129. source: "./media/characters/scott/upright.svg",
  6130. extra: 3881 / 3722,
  6131. bottom: 0.05
  6132. }
  6133. },
  6134. },
  6135. [
  6136. {
  6137. name: "Normal",
  6138. height: math.unit(12, "feet"),
  6139. default: true
  6140. },
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6145. {
  6146. side: {
  6147. height: math.unit(8, "meters"),
  6148. weight: math.unit(84755, "lbs"),
  6149. name: "Side",
  6150. image: {
  6151. source: "./media/characters/tobias/side.svg",
  6152. extra: 1474 / 1096,
  6153. bottom: 38.9 / 1513.1235
  6154. }
  6155. },
  6156. maw: {
  6157. height: math.unit(2.3, "meters"),
  6158. name: "Maw",
  6159. image: {
  6160. source: "./media/characters/tobias/maw.svg"
  6161. }
  6162. },
  6163. burp: {
  6164. height: math.unit(2.85, "meters"),
  6165. name: "Burp",
  6166. image: {
  6167. source: "./media/characters/tobias/burp.svg"
  6168. }
  6169. },
  6170. },
  6171. [
  6172. {
  6173. name: "Normal",
  6174. height: math.unit(8, "meters"),
  6175. default: true
  6176. },
  6177. ]
  6178. ))
  6179. characterMakers.push(() => makeCharacter(
  6180. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6181. {
  6182. front: {
  6183. height: math.unit(5.5, "feet"),
  6184. weight: math.unit(400, "lbs"),
  6185. name: "Front",
  6186. image: {
  6187. source: "./media/characters/kieran/front.svg",
  6188. extra: 2694 / 2364,
  6189. bottom: 217 / 2908
  6190. }
  6191. },
  6192. side: {
  6193. height: math.unit(5.5, "feet"),
  6194. weight: math.unit(400, "lbs"),
  6195. name: "Side",
  6196. image: {
  6197. source: "./media/characters/kieran/side.svg",
  6198. extra: 875 / 777,
  6199. bottom: 84.6 / 959
  6200. }
  6201. },
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(5.5, "feet"),
  6207. default: true
  6208. },
  6209. ]
  6210. ))
  6211. characterMakers.push(() => makeCharacter(
  6212. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6213. {
  6214. side: {
  6215. height: math.unit(2, "meters"),
  6216. weight: math.unit(70, "kg"),
  6217. name: "Side",
  6218. image: {
  6219. source: "./media/characters/sanya/side.svg",
  6220. bottom: 0.02,
  6221. extra: 1.02
  6222. }
  6223. },
  6224. },
  6225. [
  6226. {
  6227. name: "Small",
  6228. height: math.unit(2, "meters")
  6229. },
  6230. {
  6231. name: "Normal",
  6232. height: math.unit(3, "meters")
  6233. },
  6234. {
  6235. name: "Macro",
  6236. height: math.unit(16, "meters"),
  6237. default: true
  6238. },
  6239. ]
  6240. ))
  6241. characterMakers.push(() => makeCharacter(
  6242. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6243. {
  6244. front: {
  6245. height: math.unit(2, "meters"),
  6246. weight: math.unit(120, "kg"),
  6247. name: "Front",
  6248. image: {
  6249. source: "./media/characters/miranda/front.svg",
  6250. extra: 195 / 185,
  6251. bottom: 10.9 / 206.5
  6252. }
  6253. },
  6254. back: {
  6255. height: math.unit(2, "meters"),
  6256. weight: math.unit(120, "kg"),
  6257. name: "Back",
  6258. image: {
  6259. source: "./media/characters/miranda/back.svg",
  6260. extra: 201 / 193,
  6261. bottom: 2.3 / 203.7
  6262. }
  6263. },
  6264. },
  6265. [
  6266. {
  6267. name: "Normal",
  6268. height: math.unit(10, "feet"),
  6269. default: true
  6270. }
  6271. ]
  6272. ))
  6273. characterMakers.push(() => makeCharacter(
  6274. { name: "James", species: ["deer"], tags: ["anthro"] },
  6275. {
  6276. side: {
  6277. height: math.unit(2, "meters"),
  6278. weight: math.unit(100, "kg"),
  6279. name: "Front",
  6280. image: {
  6281. source: "./media/characters/james/front.svg",
  6282. extra: 10 / 8.5
  6283. }
  6284. },
  6285. },
  6286. [
  6287. {
  6288. name: "Normal",
  6289. height: math.unit(8.5, "feet"),
  6290. default: true
  6291. }
  6292. ]
  6293. ))
  6294. characterMakers.push(() => makeCharacter(
  6295. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6296. {
  6297. side: {
  6298. height: math.unit(9.5, "feet"),
  6299. weight: math.unit(2500, "lbs"),
  6300. name: "Side",
  6301. image: {
  6302. source: "./media/characters/heather/side.svg"
  6303. }
  6304. },
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(9.5, "feet"),
  6310. default: true
  6311. }
  6312. ]
  6313. ))
  6314. characterMakers.push(() => makeCharacter(
  6315. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6316. {
  6317. side: {
  6318. height: math.unit(6.5, "feet"),
  6319. weight: math.unit(400, "lbs"),
  6320. name: "Side",
  6321. image: {
  6322. source: "./media/characters/lukas/side.svg",
  6323. extra: 7.25 / 6.5
  6324. }
  6325. },
  6326. },
  6327. [
  6328. {
  6329. name: "Normal",
  6330. height: math.unit(6.5, "feet"),
  6331. default: true
  6332. }
  6333. ]
  6334. ))
  6335. characterMakers.push(() => makeCharacter(
  6336. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6337. {
  6338. side: {
  6339. height: math.unit(5, "feet"),
  6340. weight: math.unit(3000, "lbs"),
  6341. name: "Side",
  6342. image: {
  6343. source: "./media/characters/louise/side.svg"
  6344. }
  6345. },
  6346. },
  6347. [
  6348. {
  6349. name: "Normal",
  6350. height: math.unit(5, "feet"),
  6351. default: true
  6352. }
  6353. ]
  6354. ))
  6355. characterMakers.push(() => makeCharacter(
  6356. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6357. {
  6358. side: {
  6359. height: math.unit(6, "feet"),
  6360. weight: math.unit(150, "lbs"),
  6361. name: "Side",
  6362. image: {
  6363. source: "./media/characters/ramona/side.svg",
  6364. extra: 871/854,
  6365. bottom: 41/912
  6366. }
  6367. },
  6368. },
  6369. [
  6370. {
  6371. name: "Normal",
  6372. height: math.unit(6 + 4/12, "feet")
  6373. },
  6374. {
  6375. name: "Minimacro",
  6376. height: math.unit(5.3, "meters"),
  6377. default: true
  6378. },
  6379. {
  6380. name: "Macro",
  6381. height: math.unit(20, "stories")
  6382. },
  6383. {
  6384. name: "Macro+",
  6385. height: math.unit(50, "stories")
  6386. },
  6387. ]
  6388. ))
  6389. characterMakers.push(() => makeCharacter(
  6390. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6391. {
  6392. standing: {
  6393. height: math.unit(5.75, "feet"),
  6394. weight: math.unit(160, "lbs"),
  6395. name: "Standing",
  6396. image: {
  6397. source: "./media/characters/deerpuff/standing.svg",
  6398. extra: 682 / 624
  6399. }
  6400. },
  6401. sitting: {
  6402. height: math.unit(5.75 / 1.79, "feet"),
  6403. weight: math.unit(160, "lbs"),
  6404. name: "Sitting",
  6405. image: {
  6406. source: "./media/characters/deerpuff/sitting.svg",
  6407. bottom: 44 / 400,
  6408. extra: 1
  6409. }
  6410. },
  6411. taurLaying: {
  6412. height: math.unit(6, "feet"),
  6413. weight: math.unit(400, "lbs"),
  6414. name: "Taur (Laying)",
  6415. image: {
  6416. source: "./media/characters/deerpuff/taur-laying.svg"
  6417. }
  6418. },
  6419. },
  6420. [
  6421. {
  6422. name: "Puffball",
  6423. height: math.unit(6, "inches")
  6424. },
  6425. {
  6426. name: "Normalpuff",
  6427. height: math.unit(5.75, "feet")
  6428. },
  6429. {
  6430. name: "Macropuff",
  6431. height: math.unit(1500, "feet"),
  6432. default: true
  6433. },
  6434. {
  6435. name: "Megapuff",
  6436. height: math.unit(500, "miles")
  6437. },
  6438. {
  6439. name: "Gigapuff",
  6440. height: math.unit(250000, "miles")
  6441. },
  6442. {
  6443. name: "Omegapuff",
  6444. height: math.unit(1000, "lightyears")
  6445. },
  6446. ]
  6447. ))
  6448. characterMakers.push(() => makeCharacter(
  6449. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6450. {
  6451. stomping: {
  6452. height: math.unit(6, "feet"),
  6453. weight: math.unit(170, "lbs"),
  6454. name: "Stomping",
  6455. image: {
  6456. source: "./media/characters/vivian/stomping.svg"
  6457. }
  6458. },
  6459. sitting: {
  6460. height: math.unit(6 / 1.75, "feet"),
  6461. weight: math.unit(170, "lbs"),
  6462. name: "Sitting",
  6463. image: {
  6464. source: "./media/characters/vivian/sitting.svg",
  6465. bottom: 1 / 6.4,
  6466. extra: 1,
  6467. }
  6468. },
  6469. },
  6470. [
  6471. {
  6472. name: "Normal",
  6473. height: math.unit(7, "feet"),
  6474. default: true
  6475. },
  6476. {
  6477. name: "Macro",
  6478. height: math.unit(10, "stories")
  6479. },
  6480. {
  6481. name: "Macro+",
  6482. height: math.unit(30, "stories")
  6483. },
  6484. {
  6485. name: "Megamacro",
  6486. height: math.unit(10, "miles")
  6487. },
  6488. {
  6489. name: "Megamacro+",
  6490. height: math.unit(2750000, "meters")
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(6, "feet"),
  6499. weight: math.unit(160, "lbs"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/prince/front.svg",
  6503. extra: 1938/1682,
  6504. bottom: 45/1983
  6505. }
  6506. },
  6507. back: {
  6508. height: math.unit(6, "feet"),
  6509. weight: math.unit(160, "lbs"),
  6510. name: "Back",
  6511. image: {
  6512. source: "./media/characters/prince/back.svg",
  6513. extra: 1955/1726,
  6514. bottom: 6/1961
  6515. }
  6516. },
  6517. },
  6518. [
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(7.75, "feet"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Not cute",
  6526. height: math.unit(17, "feet")
  6527. },
  6528. {
  6529. name: "I said NOT",
  6530. height: math.unit(91, "feet")
  6531. },
  6532. {
  6533. name: "Please stop",
  6534. height: math.unit(560, "feet")
  6535. },
  6536. {
  6537. name: "What have you done",
  6538. height: math.unit(2200, "feet")
  6539. },
  6540. {
  6541. name: "Deer God",
  6542. height: math.unit(3.6, "miles")
  6543. },
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6548. {
  6549. standing: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(300, "lbs"),
  6552. name: "Standing",
  6553. image: {
  6554. source: "./media/characters/psymon/standing.svg",
  6555. extra: 1888 / 1810,
  6556. bottom: 0.05
  6557. }
  6558. },
  6559. slithering: {
  6560. height: math.unit(6, "feet"),
  6561. weight: math.unit(300, "lbs"),
  6562. name: "Slithering",
  6563. image: {
  6564. source: "./media/characters/psymon/slithering.svg",
  6565. extra: 1330 / 1224
  6566. }
  6567. },
  6568. slitheringAlt: {
  6569. height: math.unit(6, "feet"),
  6570. weight: math.unit(300, "lbs"),
  6571. name: "Slithering (Alt)",
  6572. image: {
  6573. source: "./media/characters/psymon/slithering-alt.svg",
  6574. extra: 1330 / 1224
  6575. }
  6576. },
  6577. },
  6578. [
  6579. {
  6580. name: "Normal",
  6581. height: math.unit(11.25, "feet"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Large",
  6586. height: math.unit(27, "feet")
  6587. },
  6588. {
  6589. name: "Giant",
  6590. height: math.unit(87, "feet")
  6591. },
  6592. {
  6593. name: "Macro",
  6594. height: math.unit(365, "feet")
  6595. },
  6596. {
  6597. name: "Megamacro",
  6598. height: math.unit(3, "miles")
  6599. },
  6600. {
  6601. name: "World Serpent",
  6602. height: math.unit(8000, "miles")
  6603. },
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6608. {
  6609. front: {
  6610. height: math.unit(6, "feet"),
  6611. weight: math.unit(180, "lbs"),
  6612. name: "Front",
  6613. image: {
  6614. source: "./media/characters/daimos/front.svg",
  6615. extra: 4160 / 3897,
  6616. bottom: 0.021
  6617. }
  6618. }
  6619. },
  6620. [
  6621. {
  6622. name: "Normal",
  6623. height: math.unit(8, "feet"),
  6624. default: true
  6625. },
  6626. {
  6627. name: "Big Dog",
  6628. height: math.unit(22, "feet")
  6629. },
  6630. {
  6631. name: "Macro",
  6632. height: math.unit(127, "feet")
  6633. },
  6634. {
  6635. name: "Megamacro",
  6636. height: math.unit(3600, "feet")
  6637. },
  6638. ]
  6639. ))
  6640. characterMakers.push(() => makeCharacter(
  6641. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6642. {
  6643. side: {
  6644. height: math.unit(6, "feet"),
  6645. weight: math.unit(180, "lbs"),
  6646. name: "Side",
  6647. image: {
  6648. source: "./media/characters/blake/side.svg",
  6649. extra: 1212 / 1120,
  6650. bottom: 0.05
  6651. }
  6652. },
  6653. crouched: {
  6654. height: math.unit(6 * 0.57, "feet"),
  6655. weight: math.unit(180, "lbs"),
  6656. name: "Crouched",
  6657. image: {
  6658. source: "./media/characters/blake/crouched.svg",
  6659. extra: 840 / 587,
  6660. bottom: 0.04
  6661. }
  6662. },
  6663. bent: {
  6664. height: math.unit(6 * 0.75, "feet"),
  6665. weight: math.unit(180, "lbs"),
  6666. name: "Bent",
  6667. image: {
  6668. source: "./media/characters/blake/bent.svg",
  6669. extra: 592 / 544,
  6670. bottom: 0.035
  6671. }
  6672. },
  6673. },
  6674. [
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(8 + 1 / 6, "feet"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Big Backside",
  6682. height: math.unit(37, "feet")
  6683. },
  6684. {
  6685. name: "Subway Shredder",
  6686. height: math.unit(72, "feet")
  6687. },
  6688. {
  6689. name: "City Carver",
  6690. height: math.unit(1675, "feet")
  6691. },
  6692. {
  6693. name: "Tectonic Tweaker",
  6694. height: math.unit(2300, "miles")
  6695. },
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6700. {
  6701. front: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(180, "lbs"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/guisetto/front.svg",
  6707. extra: 856 / 817,
  6708. bottom: 0.06
  6709. }
  6710. },
  6711. airborne: {
  6712. height: math.unit(6, "feet"),
  6713. weight: math.unit(180, "lbs"),
  6714. name: "Airborne",
  6715. image: {
  6716. source: "./media/characters/guisetto/airborne.svg",
  6717. extra: 584 / 525
  6718. }
  6719. },
  6720. },
  6721. [
  6722. {
  6723. name: "Normal",
  6724. height: math.unit(10 + 11 / 12, "feet"),
  6725. default: true
  6726. },
  6727. {
  6728. name: "Large",
  6729. height: math.unit(35, "feet")
  6730. },
  6731. {
  6732. name: "Macro",
  6733. height: math.unit(475, "feet")
  6734. },
  6735. ]
  6736. ))
  6737. characterMakers.push(() => makeCharacter(
  6738. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6739. {
  6740. front: {
  6741. height: math.unit(6, "feet"),
  6742. weight: math.unit(180, "lbs"),
  6743. name: "Front",
  6744. image: {
  6745. source: "./media/characters/luxor/front.svg",
  6746. extra: 2940 / 2152
  6747. }
  6748. },
  6749. back: {
  6750. height: math.unit(6, "feet"),
  6751. weight: math.unit(180, "lbs"),
  6752. name: "Back",
  6753. image: {
  6754. source: "./media/characters/luxor/back.svg",
  6755. extra: 1083 / 960
  6756. }
  6757. },
  6758. },
  6759. [
  6760. {
  6761. name: "Normal",
  6762. height: math.unit(5 + 5 / 6, "feet"),
  6763. default: true
  6764. },
  6765. {
  6766. name: "Lamp",
  6767. height: math.unit(50, "feet")
  6768. },
  6769. {
  6770. name: "Lämp",
  6771. height: math.unit(300, "feet")
  6772. },
  6773. {
  6774. name: "The sun is a lamp",
  6775. height: math.unit(250000, "miles")
  6776. },
  6777. ]
  6778. ))
  6779. characterMakers.push(() => makeCharacter(
  6780. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6781. {
  6782. front: {
  6783. height: math.unit(6, "feet"),
  6784. weight: math.unit(50, "lbs"),
  6785. name: "Front",
  6786. image: {
  6787. source: "./media/characters/huoyan/front.svg"
  6788. }
  6789. },
  6790. side: {
  6791. height: math.unit(6, "feet"),
  6792. weight: math.unit(180, "lbs"),
  6793. name: "Side",
  6794. image: {
  6795. source: "./media/characters/huoyan/side.svg"
  6796. }
  6797. },
  6798. },
  6799. [
  6800. {
  6801. name: "Chef",
  6802. height: math.unit(9, "feet")
  6803. },
  6804. {
  6805. name: "Normal",
  6806. height: math.unit(65, "feet"),
  6807. default: true
  6808. },
  6809. {
  6810. name: "Macro",
  6811. height: math.unit(780, "feet")
  6812. },
  6813. {
  6814. name: "Flaming Mountain",
  6815. height: math.unit(4.8, "miles")
  6816. },
  6817. {
  6818. name: "Celestial",
  6819. height: math.unit(765000, "miles")
  6820. },
  6821. ]
  6822. ))
  6823. characterMakers.push(() => makeCharacter(
  6824. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6825. {
  6826. front: {
  6827. height: math.unit(5 + 3 / 4, "feet"),
  6828. weight: math.unit(120, "lbs"),
  6829. name: "Front",
  6830. image: {
  6831. source: "./media/characters/tails/front.svg"
  6832. }
  6833. }
  6834. },
  6835. [
  6836. {
  6837. name: "Normal",
  6838. height: math.unit(5 + 3 / 4, "feet"),
  6839. default: true
  6840. }
  6841. ]
  6842. ))
  6843. characterMakers.push(() => makeCharacter(
  6844. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6845. {
  6846. front: {
  6847. height: math.unit(4, "feet"),
  6848. weight: math.unit(50, "lbs"),
  6849. name: "Front",
  6850. image: {
  6851. source: "./media/characters/rainy/front.svg"
  6852. }
  6853. }
  6854. },
  6855. [
  6856. {
  6857. name: "Macro",
  6858. height: math.unit(800, "feet"),
  6859. default: true
  6860. }
  6861. ]
  6862. ))
  6863. characterMakers.push(() => makeCharacter(
  6864. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6865. {
  6866. front: {
  6867. height: math.unit(6, "feet"),
  6868. weight: math.unit(150, "lbs"),
  6869. name: "Front",
  6870. image: {
  6871. source: "./media/characters/rainier/front.svg"
  6872. }
  6873. }
  6874. },
  6875. [
  6876. {
  6877. name: "Micro",
  6878. height: math.unit(2, "mm"),
  6879. default: true
  6880. }
  6881. ]
  6882. ))
  6883. characterMakers.push(() => makeCharacter(
  6884. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6885. {
  6886. front: {
  6887. height: math.unit(8 + 4/12, "feet"),
  6888. weight: math.unit(450, "kilograms"),
  6889. name: "Front",
  6890. image: {
  6891. source: "./media/characters/andy-renard/front.svg",
  6892. extra: 862/809,
  6893. bottom: 85/947
  6894. },
  6895. extraAttributes: {
  6896. "pawSize": {
  6897. name: "Paw Size",
  6898. power: 2,
  6899. type: "area",
  6900. base: math.unit(0.45*0.3, "meters^2")
  6901. },
  6902. "handSize": {
  6903. name: "Hand Size",
  6904. power: 2,
  6905. type: "area",
  6906. base: math.unit(0.4 * 0.3, "meters^2")
  6907. },
  6908. "cockSize": {
  6909. name: "Cock Length",
  6910. power: 1,
  6911. type: "length",
  6912. base: math.unit(0.75, "meters")
  6913. },
  6914. "ballDiameter": {
  6915. name: "Ball Diameter",
  6916. power: 1,
  6917. type: "length",
  6918. base: math.unit(0.3, "meters")
  6919. },
  6920. "ballVolume": {
  6921. name: "Ball Volume",
  6922. power: 3,
  6923. type: "volume",
  6924. base: math.unit(0.01413716694, "meters^3")
  6925. },
  6926. }
  6927. },
  6928. back: {
  6929. height: math.unit(8 + 4/12, "feet"),
  6930. weight: math.unit(450, "kilograms"),
  6931. name: "Back",
  6932. image: {
  6933. source: "./media/characters/andy-renard/back.svg",
  6934. extra: 1112/1033,
  6935. bottom: 64/1176
  6936. },
  6937. extraAttributes: {
  6938. "pawSize": {
  6939. name: "Paw Size",
  6940. power: 2,
  6941. type: "area",
  6942. base: math.unit(0.45*0.3, "meters^2")
  6943. },
  6944. "handSize": {
  6945. name: "Hand Size",
  6946. power: 2,
  6947. type: "area",
  6948. base: math.unit(0.4 * 0.3, "meters^2")
  6949. },
  6950. "cockSize": {
  6951. name: "Cock Length",
  6952. power: 1,
  6953. type: "length",
  6954. base: math.unit(0.75, "meters")
  6955. },
  6956. "ballDiameter": {
  6957. name: "Ball Diameter",
  6958. power: 1,
  6959. type: "length",
  6960. base: math.unit(0.3, "meters")
  6961. },
  6962. "ballVolume": {
  6963. name: "Ball Volume",
  6964. power: 3,
  6965. type: "volume",
  6966. base: math.unit(0.01413716694, "meters^3")
  6967. },
  6968. }
  6969. },
  6970. },
  6971. [
  6972. {
  6973. name: "Tall",
  6974. height: math.unit(6 + 8/12, "feet")
  6975. },
  6976. {
  6977. name: "Very Tall",
  6978. height: math.unit(8 + 4/12, "feet")
  6979. },
  6980. {
  6981. name: "Mini Macro",
  6982. height: math.unit(15, "feet"),
  6983. default: true
  6984. },
  6985. {
  6986. name: "Giant",
  6987. height: math.unit(50, "feet")
  6988. },
  6989. {
  6990. name: "Nice",
  6991. height: math.unit(69, "feet")
  6992. },
  6993. {
  6994. name: "Macro",
  6995. height: math.unit(100, "feet")
  6996. },
  6997. {
  6998. name: "Enormous",
  6999. height: math.unit(500, "feet")
  7000. },
  7001. {
  7002. name: "Gargantuan",
  7003. height: math.unit(1000, "feet")
  7004. },
  7005. {
  7006. name: "Mega",
  7007. height: math.unit(1, "mile")
  7008. },
  7009. {
  7010. name: "Giga",
  7011. height: math.unit(50, "miles")
  7012. },
  7013. {
  7014. name: "Tera",
  7015. height: math.unit(1000, "miles")
  7016. },
  7017. {
  7018. name: "Cosmic",
  7019. height: math.unit(1.5, "galaxies")
  7020. },
  7021. {
  7022. name: "God",
  7023. height: math.unit(1.5, "universes")
  7024. },
  7025. {
  7026. name: "Chief Execute God",
  7027. height: math.unit(1.5, "multiverses")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(6, "feet"),
  7036. weight: math.unit(210, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/cimmaron/front-sfw.svg",
  7040. extra: 701 / 676,
  7041. bottom: 0.046
  7042. }
  7043. },
  7044. back: {
  7045. height: math.unit(6, "feet"),
  7046. weight: math.unit(210, "lbs"),
  7047. name: "Back",
  7048. image: {
  7049. source: "./media/characters/cimmaron/back-sfw.svg",
  7050. extra: 701 / 676,
  7051. bottom: 0.046
  7052. }
  7053. },
  7054. frontNsfw: {
  7055. height: math.unit(6, "feet"),
  7056. weight: math.unit(210, "lbs"),
  7057. name: "Front (NSFW)",
  7058. image: {
  7059. source: "./media/characters/cimmaron/front-nsfw.svg",
  7060. extra: 701 / 676,
  7061. bottom: 0.046
  7062. }
  7063. },
  7064. backNsfw: {
  7065. height: math.unit(6, "feet"),
  7066. weight: math.unit(210, "lbs"),
  7067. name: "Back (NSFW)",
  7068. image: {
  7069. source: "./media/characters/cimmaron/back-nsfw.svg",
  7070. extra: 701 / 676,
  7071. bottom: 0.046
  7072. }
  7073. },
  7074. dick: {
  7075. height: math.unit(1.714, "feet"),
  7076. name: "Dick",
  7077. image: {
  7078. source: "./media/characters/cimmaron/dick.svg"
  7079. }
  7080. },
  7081. },
  7082. [
  7083. {
  7084. name: "Normal",
  7085. height: math.unit(6, "feet"),
  7086. default: true
  7087. },
  7088. {
  7089. name: "Macro Mayor",
  7090. height: math.unit(350, "meters")
  7091. },
  7092. ]
  7093. ))
  7094. characterMakers.push(() => makeCharacter(
  7095. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  7096. {
  7097. front: {
  7098. height: math.unit(6, "feet"),
  7099. weight: math.unit(200, "lbs"),
  7100. name: "Front",
  7101. image: {
  7102. source: "./media/characters/akari/front.svg",
  7103. extra: 962 / 901,
  7104. bottom: 0.04
  7105. }
  7106. }
  7107. },
  7108. [
  7109. {
  7110. name: "Micro",
  7111. height: math.unit(5, "inches"),
  7112. default: true
  7113. },
  7114. {
  7115. name: "Normal",
  7116. height: math.unit(7, "feet")
  7117. },
  7118. ]
  7119. ))
  7120. characterMakers.push(() => makeCharacter(
  7121. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7122. {
  7123. front: {
  7124. height: math.unit(6, "feet"),
  7125. weight: math.unit(140, "lbs"),
  7126. name: "Front",
  7127. image: {
  7128. source: "./media/characters/cynosura/front.svg",
  7129. extra: 437/410,
  7130. bottom: 9/446
  7131. }
  7132. },
  7133. back: {
  7134. height: math.unit(6, "feet"),
  7135. weight: math.unit(140, "lbs"),
  7136. name: "Back",
  7137. image: {
  7138. source: "./media/characters/cynosura/back.svg",
  7139. extra: 1304/1160,
  7140. bottom: 71/1375
  7141. }
  7142. },
  7143. },
  7144. [
  7145. {
  7146. name: "Micro",
  7147. height: math.unit(4, "inches")
  7148. },
  7149. {
  7150. name: "Normal",
  7151. height: math.unit(5.75, "feet"),
  7152. default: true
  7153. },
  7154. {
  7155. name: "Tall",
  7156. height: math.unit(10, "feet")
  7157. },
  7158. {
  7159. name: "Big",
  7160. height: math.unit(20, "feet")
  7161. },
  7162. {
  7163. name: "Macro",
  7164. height: math.unit(50, "feet")
  7165. },
  7166. ]
  7167. ))
  7168. characterMakers.push(() => makeCharacter(
  7169. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7170. {
  7171. front: {
  7172. height: math.unit(13 + 2/12, "feet"),
  7173. weight: math.unit(800, "kg"),
  7174. name: "Front",
  7175. image: {
  7176. source: "./media/characters/gin/front.svg",
  7177. extra: 1312/1191,
  7178. bottom: 45/1357
  7179. }
  7180. },
  7181. mouth: {
  7182. height: math.unit(2.39 * 1.8, "feet"),
  7183. name: "Mouth",
  7184. image: {
  7185. source: "./media/characters/gin/mouth.svg"
  7186. }
  7187. },
  7188. hand: {
  7189. height: math.unit(1.57 * 2.19, "feet"),
  7190. name: "Hand",
  7191. image: {
  7192. source: "./media/characters/gin/hand.svg"
  7193. }
  7194. },
  7195. foot: {
  7196. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7197. name: "Foot",
  7198. image: {
  7199. source: "./media/characters/gin/foot.svg"
  7200. }
  7201. },
  7202. sole: {
  7203. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7204. name: "Sole",
  7205. image: {
  7206. source: "./media/characters/gin/sole.svg"
  7207. }
  7208. },
  7209. },
  7210. [
  7211. {
  7212. name: "Very Small",
  7213. height: math.unit(13 + 2 / 12, "feet")
  7214. },
  7215. {
  7216. name: "Micro",
  7217. height: math.unit(600, "miles")
  7218. },
  7219. {
  7220. name: "Regular",
  7221. height: math.unit(20, "earths"),
  7222. default: true
  7223. },
  7224. {
  7225. name: "Macro",
  7226. height: math.unit(2.2, "solarradii")
  7227. },
  7228. {
  7229. name: "Teramacro",
  7230. height: math.unit(1.2, "galaxies")
  7231. },
  7232. {
  7233. name: "Omegamacro",
  7234. height: math.unit(200, "universes")
  7235. },
  7236. ]
  7237. ))
  7238. characterMakers.push(() => makeCharacter(
  7239. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7240. {
  7241. front: {
  7242. height: math.unit(6 + 1 / 6, "feet"),
  7243. weight: math.unit(178, "lbs"),
  7244. name: "Front",
  7245. image: {
  7246. source: "./media/characters/guy/front.svg"
  7247. }
  7248. }
  7249. },
  7250. [
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(6 + 1 / 6, "feet"),
  7254. default: true
  7255. },
  7256. {
  7257. name: "Large",
  7258. height: math.unit(25 + 7 / 12, "feet")
  7259. },
  7260. {
  7261. name: "Macro",
  7262. height: math.unit(60 + 9 / 12, "feet")
  7263. },
  7264. {
  7265. name: "Macro+",
  7266. height: math.unit(246, "feet")
  7267. },
  7268. {
  7269. name: "Macro++",
  7270. height: math.unit(878, "feet")
  7271. }
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(9, "feet"),
  7279. weight: math.unit(800, "lbs"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/tiberius/front.svg",
  7283. extra: 2295 / 2071
  7284. }
  7285. },
  7286. back: {
  7287. height: math.unit(9, "feet"),
  7288. weight: math.unit(800, "lbs"),
  7289. name: "Back",
  7290. image: {
  7291. source: "./media/characters/tiberius/back.svg",
  7292. extra: 2373 / 2160
  7293. }
  7294. },
  7295. },
  7296. [
  7297. {
  7298. name: "Normal",
  7299. height: math.unit(9, "feet"),
  7300. default: true
  7301. }
  7302. ]
  7303. ))
  7304. characterMakers.push(() => makeCharacter(
  7305. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7306. {
  7307. front: {
  7308. height: math.unit(6, "feet"),
  7309. weight: math.unit(600, "lbs"),
  7310. name: "Front",
  7311. image: {
  7312. source: "./media/characters/surgo/front.svg",
  7313. extra: 3591 / 2227
  7314. }
  7315. },
  7316. back: {
  7317. height: math.unit(6, "feet"),
  7318. weight: math.unit(600, "lbs"),
  7319. name: "Back",
  7320. image: {
  7321. source: "./media/characters/surgo/back.svg",
  7322. extra: 3557 / 2228
  7323. }
  7324. },
  7325. laying: {
  7326. height: math.unit(6 * 0.85, "feet"),
  7327. weight: math.unit(600, "lbs"),
  7328. name: "Laying",
  7329. image: {
  7330. source: "./media/characters/surgo/laying.svg"
  7331. }
  7332. },
  7333. },
  7334. [
  7335. {
  7336. name: "Normal",
  7337. height: math.unit(6, "feet"),
  7338. default: true
  7339. }
  7340. ]
  7341. ))
  7342. characterMakers.push(() => makeCharacter(
  7343. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7344. {
  7345. side: {
  7346. height: math.unit(6, "feet"),
  7347. weight: math.unit(150, "lbs"),
  7348. name: "Side",
  7349. image: {
  7350. source: "./media/characters/cibus/side.svg",
  7351. extra: 800 / 400
  7352. }
  7353. },
  7354. },
  7355. [
  7356. {
  7357. name: "Normal",
  7358. height: math.unit(6, "feet"),
  7359. default: true
  7360. }
  7361. ]
  7362. ))
  7363. characterMakers.push(() => makeCharacter(
  7364. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7365. {
  7366. front: {
  7367. height: math.unit(6, "feet"),
  7368. weight: math.unit(240, "lbs"),
  7369. name: "Front",
  7370. image: {
  7371. source: "./media/characters/nibbles/front.svg"
  7372. }
  7373. },
  7374. side: {
  7375. height: math.unit(6, "feet"),
  7376. weight: math.unit(240, "lbs"),
  7377. name: "Side",
  7378. image: {
  7379. source: "./media/characters/nibbles/side.svg"
  7380. }
  7381. },
  7382. },
  7383. [
  7384. {
  7385. name: "Normal",
  7386. height: math.unit(9, "feet"),
  7387. default: true
  7388. }
  7389. ]
  7390. ))
  7391. characterMakers.push(() => makeCharacter(
  7392. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7393. {
  7394. side: {
  7395. height: math.unit(5 + 1 / 6, "feet"),
  7396. weight: math.unit(130, "lbs"),
  7397. name: "Side",
  7398. image: {
  7399. source: "./media/characters/rikky/side.svg",
  7400. extra: 851 / 801
  7401. }
  7402. },
  7403. },
  7404. [
  7405. {
  7406. name: "Normal",
  7407. height: math.unit(5 + 1 / 6, "feet")
  7408. },
  7409. {
  7410. name: "Macro",
  7411. height: math.unit(152, "feet"),
  7412. default: true
  7413. },
  7414. {
  7415. name: "Megamacro",
  7416. height: math.unit(7, "miles")
  7417. }
  7418. ]
  7419. ))
  7420. characterMakers.push(() => makeCharacter(
  7421. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7422. {
  7423. side: {
  7424. height: math.unit(370, "cm"),
  7425. weight: math.unit(350, "lbs"),
  7426. name: "Side",
  7427. image: {
  7428. source: "./media/characters/malfressa/side.svg"
  7429. }
  7430. },
  7431. walking: {
  7432. height: math.unit(370, "cm"),
  7433. weight: math.unit(350, "lbs"),
  7434. name: "Walking",
  7435. image: {
  7436. source: "./media/characters/malfressa/walking.svg"
  7437. }
  7438. },
  7439. feral: {
  7440. height: math.unit(2500, "cm"),
  7441. weight: math.unit(100000, "lbs"),
  7442. name: "Feral",
  7443. image: {
  7444. source: "./media/characters/malfressa/feral.svg",
  7445. extra: 2108 / 837,
  7446. bottom: 0.02
  7447. }
  7448. },
  7449. },
  7450. [
  7451. {
  7452. name: "Normal",
  7453. height: math.unit(370, "cm")
  7454. },
  7455. {
  7456. name: "Macro",
  7457. height: math.unit(300, "meters"),
  7458. default: true
  7459. }
  7460. ]
  7461. ))
  7462. characterMakers.push(() => makeCharacter(
  7463. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7464. {
  7465. front: {
  7466. height: math.unit(6, "feet"),
  7467. weight: math.unit(60, "kg"),
  7468. name: "Front",
  7469. image: {
  7470. source: "./media/characters/jaro/front.svg",
  7471. extra: 845/817,
  7472. bottom: 45/890
  7473. }
  7474. },
  7475. back: {
  7476. height: math.unit(6, "feet"),
  7477. weight: math.unit(60, "kg"),
  7478. name: "Back",
  7479. image: {
  7480. source: "./media/characters/jaro/back.svg",
  7481. extra: 847/817,
  7482. bottom: 34/881
  7483. }
  7484. },
  7485. },
  7486. [
  7487. {
  7488. name: "Micro",
  7489. height: math.unit(7, "inches")
  7490. },
  7491. {
  7492. name: "Normal",
  7493. height: math.unit(5.5, "feet"),
  7494. default: true
  7495. },
  7496. {
  7497. name: "Minimacro",
  7498. height: math.unit(20, "feet")
  7499. },
  7500. {
  7501. name: "Macro",
  7502. height: math.unit(200, "meters")
  7503. }
  7504. ]
  7505. ))
  7506. characterMakers.push(() => makeCharacter(
  7507. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7508. {
  7509. front: {
  7510. height: math.unit(6, "feet"),
  7511. weight: math.unit(195, "lb"),
  7512. name: "Front",
  7513. image: {
  7514. source: "./media/characters/rogue/front.svg"
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Macro",
  7521. height: math.unit(90, "feet"),
  7522. default: true
  7523. },
  7524. ]
  7525. ))
  7526. characterMakers.push(() => makeCharacter(
  7527. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7528. {
  7529. standing: {
  7530. height: math.unit(5 + 8 / 12, "feet"),
  7531. weight: math.unit(140, "lb"),
  7532. name: "Standing",
  7533. image: {
  7534. source: "./media/characters/piper/standing.svg",
  7535. extra: 1440/1284,
  7536. bottom: 66/1506
  7537. }
  7538. },
  7539. running: {
  7540. height: math.unit(5 + 8 / 12, "feet"),
  7541. weight: math.unit(140, "lb"),
  7542. name: "Running",
  7543. image: {
  7544. source: "./media/characters/piper/running.svg",
  7545. extra: 3948/3655,
  7546. bottom: 0/3948
  7547. }
  7548. },
  7549. sole: {
  7550. height: math.unit(0.81, "feet"),
  7551. weight: math.unit(2, "kg"),
  7552. name: "Sole",
  7553. image: {
  7554. source: "./media/characters/piper/sole.svg"
  7555. }
  7556. },
  7557. nipple: {
  7558. height: math.unit(0.25, "feet"),
  7559. weight: math.unit(1.5, "lb"),
  7560. name: "Nipple",
  7561. image: {
  7562. source: "./media/characters/piper/nipple.svg"
  7563. }
  7564. },
  7565. head: {
  7566. height: math.unit(1.1, "feet"),
  7567. name: "Head",
  7568. image: {
  7569. source: "./media/characters/piper/head.svg"
  7570. }
  7571. },
  7572. },
  7573. [
  7574. {
  7575. name: "Micro",
  7576. height: math.unit(2, "inches")
  7577. },
  7578. {
  7579. name: "Normal",
  7580. height: math.unit(5 + 8 / 12, "feet")
  7581. },
  7582. {
  7583. name: "Macro",
  7584. height: math.unit(250, "feet"),
  7585. default: true
  7586. },
  7587. {
  7588. name: "Megamacro",
  7589. height: math.unit(7, "miles")
  7590. },
  7591. ]
  7592. ))
  7593. characterMakers.push(() => makeCharacter(
  7594. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7595. {
  7596. front: {
  7597. height: math.unit(6, "feet"),
  7598. weight: math.unit(220, "lb"),
  7599. name: "Front",
  7600. image: {
  7601. source: "./media/characters/gemini/front.svg"
  7602. }
  7603. },
  7604. back: {
  7605. height: math.unit(6, "feet"),
  7606. weight: math.unit(220, "lb"),
  7607. name: "Back",
  7608. image: {
  7609. source: "./media/characters/gemini/back.svg"
  7610. }
  7611. },
  7612. kneeling: {
  7613. height: math.unit(6 / 1.5, "feet"),
  7614. weight: math.unit(220, "lb"),
  7615. name: "Kneeling",
  7616. image: {
  7617. source: "./media/characters/gemini/kneeling.svg",
  7618. bottom: 0.02
  7619. }
  7620. },
  7621. },
  7622. [
  7623. {
  7624. name: "Macro",
  7625. height: math.unit(300, "meters"),
  7626. default: true
  7627. },
  7628. {
  7629. name: "Megamacro",
  7630. height: math.unit(6900, "meters")
  7631. },
  7632. ]
  7633. ))
  7634. characterMakers.push(() => makeCharacter(
  7635. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7636. {
  7637. anthro: {
  7638. height: math.unit(2.35, "meters"),
  7639. weight: math.unit(73, "kg"),
  7640. name: "Anthro",
  7641. image: {
  7642. source: "./media/characters/alicia/anthro.svg",
  7643. extra: 2571 / 2385,
  7644. bottom: 75 / 2648
  7645. }
  7646. },
  7647. paw: {
  7648. height: math.unit(1.32, "feet"),
  7649. name: "Paw",
  7650. image: {
  7651. source: "./media/characters/alicia/paw.svg"
  7652. }
  7653. },
  7654. feral: {
  7655. height: math.unit(1.69, "meters"),
  7656. weight: math.unit(73, "kg"),
  7657. name: "Feral",
  7658. image: {
  7659. source: "./media/characters/alicia/feral.svg",
  7660. extra: 2123 / 1715,
  7661. bottom: 222 / 2349
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(2.35, "meters")
  7669. },
  7670. {
  7671. name: "Macro",
  7672. height: math.unit(60, "meters"),
  7673. default: true
  7674. },
  7675. {
  7676. name: "Megamacro",
  7677. height: math.unit(10000, "kilometers")
  7678. },
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(7, "feet"),
  7686. weight: math.unit(250, "lbs"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/archy/front.svg"
  7690. }
  7691. }
  7692. },
  7693. [
  7694. {
  7695. name: "Micro",
  7696. height: math.unit(1, "inch")
  7697. },
  7698. {
  7699. name: "Shorty",
  7700. height: math.unit(5, "feet")
  7701. },
  7702. {
  7703. name: "Normal",
  7704. height: math.unit(7, "feet")
  7705. },
  7706. {
  7707. name: "Macro",
  7708. height: math.unit(600, "meters"),
  7709. default: true
  7710. },
  7711. {
  7712. name: "Megamacro",
  7713. height: math.unit(1, "mile")
  7714. },
  7715. ]
  7716. ))
  7717. characterMakers.push(() => makeCharacter(
  7718. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7719. {
  7720. front: {
  7721. height: math.unit(1.65, "meters"),
  7722. weight: math.unit(74, "kg"),
  7723. name: "Front",
  7724. image: {
  7725. source: "./media/characters/berri/front.svg",
  7726. extra: 857 / 837,
  7727. bottom: 18 / 877
  7728. }
  7729. },
  7730. bum: {
  7731. height: math.unit(1.46, "feet"),
  7732. name: "Bum",
  7733. image: {
  7734. source: "./media/characters/berri/bum.svg"
  7735. }
  7736. },
  7737. mouth: {
  7738. height: math.unit(0.44, "feet"),
  7739. name: "Mouth",
  7740. image: {
  7741. source: "./media/characters/berri/mouth.svg"
  7742. }
  7743. },
  7744. paw: {
  7745. height: math.unit(0.826, "feet"),
  7746. name: "Paw",
  7747. image: {
  7748. source: "./media/characters/berri/paw.svg"
  7749. }
  7750. },
  7751. },
  7752. [
  7753. {
  7754. name: "Normal",
  7755. height: math.unit(1.65, "meters")
  7756. },
  7757. {
  7758. name: "Macro",
  7759. height: math.unit(60, "m"),
  7760. default: true
  7761. },
  7762. {
  7763. name: "Megamacro",
  7764. height: math.unit(9.213, "km")
  7765. },
  7766. {
  7767. name: "Planet Eater",
  7768. height: math.unit(489, "megameters")
  7769. },
  7770. {
  7771. name: "Teramacro",
  7772. height: math.unit(2471635000000, "meters")
  7773. },
  7774. {
  7775. name: "Examacro",
  7776. height: math.unit(8.0624e+26, "meters")
  7777. }
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(1.72, "meters"),
  7785. weight: math.unit(68, "kg"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/lexi/front.svg"
  7789. }
  7790. }
  7791. },
  7792. [
  7793. {
  7794. name: "Very Smol",
  7795. height: math.unit(10, "mm")
  7796. },
  7797. {
  7798. name: "Micro",
  7799. height: math.unit(6.8, "cm"),
  7800. default: true
  7801. },
  7802. {
  7803. name: "Normal",
  7804. height: math.unit(1.72, "m")
  7805. }
  7806. ]
  7807. ))
  7808. characterMakers.push(() => makeCharacter(
  7809. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7810. {
  7811. front: {
  7812. height: math.unit(1.69, "meters"),
  7813. weight: math.unit(68, "kg"),
  7814. name: "Front",
  7815. image: {
  7816. source: "./media/characters/martin/front.svg",
  7817. extra: 596 / 581
  7818. }
  7819. }
  7820. },
  7821. [
  7822. {
  7823. name: "Micro",
  7824. height: math.unit(6.85, "cm"),
  7825. default: true
  7826. },
  7827. {
  7828. name: "Normal",
  7829. height: math.unit(1.69, "m")
  7830. }
  7831. ]
  7832. ))
  7833. characterMakers.push(() => makeCharacter(
  7834. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7835. {
  7836. front: {
  7837. height: math.unit(1.69, "meters"),
  7838. weight: math.unit(68, "kg"),
  7839. name: "Front",
  7840. image: {
  7841. source: "./media/characters/juno/front.svg"
  7842. }
  7843. }
  7844. },
  7845. [
  7846. {
  7847. name: "Micro",
  7848. height: math.unit(7, "cm")
  7849. },
  7850. {
  7851. name: "Normal",
  7852. height: math.unit(1.89, "m")
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(353, "meters"),
  7857. default: true
  7858. }
  7859. ]
  7860. ))
  7861. characterMakers.push(() => makeCharacter(
  7862. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7863. {
  7864. front: {
  7865. height: math.unit(1.93, "meters"),
  7866. weight: math.unit(83, "kg"),
  7867. name: "Front",
  7868. image: {
  7869. source: "./media/characters/samantha/front.svg"
  7870. }
  7871. },
  7872. frontClothed: {
  7873. height: math.unit(1.93, "meters"),
  7874. weight: math.unit(83, "kg"),
  7875. name: "Front (Clothed)",
  7876. image: {
  7877. source: "./media/characters/samantha/front-clothed.svg"
  7878. }
  7879. },
  7880. back: {
  7881. height: math.unit(1.93, "meters"),
  7882. weight: math.unit(83, "kg"),
  7883. name: "Back",
  7884. image: {
  7885. source: "./media/characters/samantha/back.svg"
  7886. }
  7887. },
  7888. },
  7889. [
  7890. {
  7891. name: "Normal",
  7892. height: math.unit(1.93, "m")
  7893. },
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(74, "meters"),
  7897. default: true
  7898. },
  7899. {
  7900. name: "Macro+",
  7901. height: math.unit(223, "meters"),
  7902. },
  7903. {
  7904. name: "Megamacro",
  7905. height: math.unit(8381, "meters"),
  7906. },
  7907. {
  7908. name: "Megamacro+",
  7909. height: math.unit(12000, "kilometers")
  7910. },
  7911. ]
  7912. ))
  7913. characterMakers.push(() => makeCharacter(
  7914. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7915. {
  7916. front: {
  7917. height: math.unit(1.92, "meters"),
  7918. weight: math.unit(80, "kg"),
  7919. name: "Front",
  7920. image: {
  7921. source: "./media/characters/dr-clay/front.svg"
  7922. }
  7923. },
  7924. frontClothed: {
  7925. height: math.unit(1.92, "meters"),
  7926. weight: math.unit(80, "kg"),
  7927. name: "Front (Clothed)",
  7928. image: {
  7929. source: "./media/characters/dr-clay/front-clothed.svg"
  7930. }
  7931. }
  7932. },
  7933. [
  7934. {
  7935. name: "Normal",
  7936. height: math.unit(1.92, "m")
  7937. },
  7938. {
  7939. name: "Macro",
  7940. height: math.unit(214, "meters"),
  7941. default: true
  7942. },
  7943. {
  7944. name: "Macro+",
  7945. height: math.unit(12.237, "meters"),
  7946. },
  7947. {
  7948. name: "Megamacro",
  7949. height: math.unit(557, "megameters"),
  7950. },
  7951. {
  7952. name: "Unimaginable",
  7953. height: math.unit(120e9, "lightyears")
  7954. },
  7955. ]
  7956. ))
  7957. characterMakers.push(() => makeCharacter(
  7958. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7959. {
  7960. front: {
  7961. height: math.unit(2, "meters"),
  7962. weight: math.unit(80, "kg"),
  7963. name: "Front",
  7964. image: {
  7965. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7966. }
  7967. }
  7968. },
  7969. [
  7970. {
  7971. name: "Teramacro",
  7972. height: math.unit(500000, "lightyears"),
  7973. default: true
  7974. },
  7975. ]
  7976. ))
  7977. characterMakers.push(() => makeCharacter(
  7978. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7979. {
  7980. crux: {
  7981. height: math.unit(2, "meters"),
  7982. weight: math.unit(150, "kg"),
  7983. name: "Crux",
  7984. image: {
  7985. source: "./media/characters/vemus/crux.svg",
  7986. extra: 1074/936,
  7987. bottom: 23/1097
  7988. }
  7989. },
  7990. skunkTanuki: {
  7991. height: math.unit(2, "meters"),
  7992. weight: math.unit(150, "kg"),
  7993. name: "Skunk-Tanuki",
  7994. image: {
  7995. source: "./media/characters/vemus/skunk-tanuki.svg",
  7996. extra: 926/893,
  7997. bottom: 20/946
  7998. }
  7999. },
  8000. },
  8001. [
  8002. {
  8003. name: "Normal",
  8004. height: math.unit(4, "meters"),
  8005. default: true
  8006. },
  8007. {
  8008. name: "Big",
  8009. height: math.unit(8, "meters")
  8010. },
  8011. {
  8012. name: "Macro",
  8013. height: math.unit(100, "meters")
  8014. },
  8015. {
  8016. name: "Macro+",
  8017. height: math.unit(1500, "meters")
  8018. },
  8019. {
  8020. name: "Stellar",
  8021. height: math.unit(14e8, "meters")
  8022. },
  8023. ]
  8024. ))
  8025. characterMakers.push(() => makeCharacter(
  8026. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  8027. {
  8028. front: {
  8029. height: math.unit(2, "meters"),
  8030. weight: math.unit(70, "kg"),
  8031. name: "Front",
  8032. image: {
  8033. source: "./media/characters/beherit/front.svg",
  8034. extra: 1234/1109,
  8035. bottom: 55/1289
  8036. }
  8037. }
  8038. },
  8039. [
  8040. {
  8041. name: "Normal",
  8042. height: math.unit(6, "feet")
  8043. },
  8044. {
  8045. name: "Lorg",
  8046. height: math.unit(25, "feet"),
  8047. default: true
  8048. },
  8049. {
  8050. name: "Lorger",
  8051. height: math.unit(75, "feet")
  8052. },
  8053. {
  8054. name: "Macro",
  8055. height: math.unit(200, "meters")
  8056. },
  8057. ]
  8058. ))
  8059. characterMakers.push(() => makeCharacter(
  8060. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  8061. {
  8062. front: {
  8063. height: math.unit(2, "meters"),
  8064. weight: math.unit(150, "kg"),
  8065. name: "Front",
  8066. image: {
  8067. source: "./media/characters/everett/front.svg",
  8068. extra: 1017/866,
  8069. bottom: 86/1103
  8070. }
  8071. },
  8072. paw: {
  8073. height: math.unit(2 / 3.6, "meters"),
  8074. name: "Paw",
  8075. image: {
  8076. source: "./media/characters/everett/paw.svg"
  8077. }
  8078. },
  8079. },
  8080. [
  8081. {
  8082. name: "Normal",
  8083. height: math.unit(15, "feet"),
  8084. default: true
  8085. },
  8086. {
  8087. name: "Lorg",
  8088. height: math.unit(70, "feet"),
  8089. default: true
  8090. },
  8091. {
  8092. name: "Lorger",
  8093. height: math.unit(250, "feet")
  8094. },
  8095. {
  8096. name: "Macro",
  8097. height: math.unit(500, "meters")
  8098. },
  8099. ]
  8100. ))
  8101. characterMakers.push(() => makeCharacter(
  8102. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  8103. {
  8104. front: {
  8105. height: math.unit(2, "meters"),
  8106. weight: math.unit(86, "kg"),
  8107. name: "Front",
  8108. image: {
  8109. source: "./media/characters/rose/front.svg",
  8110. extra: 1785/1636,
  8111. bottom: 30/1815
  8112. },
  8113. form: "liom",
  8114. default: true
  8115. },
  8116. frontSporty: {
  8117. height: math.unit(2, "meters"),
  8118. weight: math.unit(86, "kg"),
  8119. name: "Front (Sporty)",
  8120. image: {
  8121. source: "./media/characters/rose/front-sporty.svg",
  8122. extra: 350/335,
  8123. bottom: 10/360
  8124. },
  8125. form: "liom"
  8126. },
  8127. frontAlt: {
  8128. height: math.unit(1.6, "meters"),
  8129. weight: math.unit(86, "kg"),
  8130. name: "Front (Alt)",
  8131. image: {
  8132. source: "./media/characters/rose/front-alt.svg",
  8133. extra: 299/283,
  8134. bottom: 3/302
  8135. },
  8136. form: "liom"
  8137. },
  8138. plush: {
  8139. height: math.unit(2, "meters"),
  8140. weight: math.unit(86/3, "kg"),
  8141. name: "Plush",
  8142. image: {
  8143. source: "./media/characters/rose/plush.svg",
  8144. extra: 361/337,
  8145. bottom: 11/372
  8146. },
  8147. form: "plush",
  8148. default: true
  8149. },
  8150. faeStanding: {
  8151. height: math.unit(10, "cm"),
  8152. weight: math.unit(10, "grams"),
  8153. name: "Standing",
  8154. image: {
  8155. source: "./media/characters/rose/fae-standing.svg",
  8156. extra: 1189/1060,
  8157. bottom: 27/1216
  8158. },
  8159. form: "fae",
  8160. default: true
  8161. },
  8162. faeSitting: {
  8163. height: math.unit(5, "cm"),
  8164. weight: math.unit(10, "grams"),
  8165. name: "Sitting",
  8166. image: {
  8167. source: "./media/characters/rose/fae-sitting.svg",
  8168. extra: 737/577,
  8169. bottom: 356/1093
  8170. },
  8171. form: "fae"
  8172. },
  8173. faePaw: {
  8174. height: math.unit(1.35, "cm"),
  8175. name: "Paw",
  8176. image: {
  8177. source: "./media/characters/rose/fae-paw.svg"
  8178. },
  8179. form: "fae"
  8180. },
  8181. },
  8182. [
  8183. {
  8184. name: "True Micro",
  8185. height: math.unit(9, "cm"),
  8186. form: "liom"
  8187. },
  8188. {
  8189. name: "Micro",
  8190. height: math.unit(16, "cm"),
  8191. form: "liom"
  8192. },
  8193. {
  8194. name: "Normal",
  8195. height: math.unit(1.85, "meters"),
  8196. default: true,
  8197. form: "liom"
  8198. },
  8199. {
  8200. name: "Mini-Macro",
  8201. height: math.unit(5, "meters"),
  8202. form: "liom"
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(15, "meters"),
  8207. form: "liom"
  8208. },
  8209. {
  8210. name: "True Macro",
  8211. height: math.unit(40, "meters"),
  8212. form: "liom"
  8213. },
  8214. {
  8215. name: "City Scale",
  8216. height: math.unit(1, "km"),
  8217. form: "liom"
  8218. },
  8219. {
  8220. name: "Plushie",
  8221. height: math.unit(9, "cm"),
  8222. form: "plush",
  8223. default: true
  8224. },
  8225. {
  8226. name: "Fae",
  8227. height: math.unit(10, "cm"),
  8228. form: "fae",
  8229. default: true
  8230. },
  8231. ],
  8232. {
  8233. "liom": {
  8234. name: "Liom"
  8235. },
  8236. "plush": {
  8237. name: "Plush"
  8238. },
  8239. "fae": {
  8240. name: "Fae Fox",
  8241. default: true
  8242. }
  8243. }
  8244. ))
  8245. characterMakers.push(() => makeCharacter(
  8246. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8247. {
  8248. front: {
  8249. height: math.unit(2, "meters"),
  8250. weight: math.unit(350, "lbs"),
  8251. name: "Front",
  8252. image: {
  8253. source: "./media/characters/regal/front.svg"
  8254. }
  8255. },
  8256. back: {
  8257. height: math.unit(2, "meters"),
  8258. weight: math.unit(350, "lbs"),
  8259. name: "Back",
  8260. image: {
  8261. source: "./media/characters/regal/back.svg"
  8262. }
  8263. },
  8264. },
  8265. [
  8266. {
  8267. name: "Macro",
  8268. height: math.unit(350, "feet"),
  8269. default: true
  8270. }
  8271. ]
  8272. ))
  8273. characterMakers.push(() => makeCharacter(
  8274. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8275. {
  8276. standing: {
  8277. height: math.unit(4 + 11/12, "feet"),
  8278. weight: math.unit(100, "lb"),
  8279. name: "Standing",
  8280. image: {
  8281. source: "./media/characters/opal/standing.svg",
  8282. extra: 1588/1513,
  8283. bottom: 23/1611
  8284. }
  8285. },
  8286. sitting: {
  8287. height: math.unit(2.3, "feet"),
  8288. weight: math.unit(100, "lb"),
  8289. name: "Sitting",
  8290. image: {
  8291. source: "./media/characters/opal/sitting.svg",
  8292. extra: 1031/892,
  8293. bottom: 142/1173
  8294. }
  8295. },
  8296. hand: {
  8297. height: math.unit(0.59, "feet"),
  8298. name: "Hand",
  8299. image: {
  8300. source: "./media/characters/opal/hand.svg"
  8301. }
  8302. },
  8303. foot: {
  8304. height: math.unit(0.61, "feet"),
  8305. name: "Foot",
  8306. image: {
  8307. source: "./media/characters/opal/foot.svg"
  8308. }
  8309. },
  8310. },
  8311. [
  8312. {
  8313. name: "Small",
  8314. height: math.unit(4 + 11 / 12, "feet")
  8315. },
  8316. {
  8317. name: "Normal",
  8318. height: math.unit(20, "feet"),
  8319. default: true
  8320. },
  8321. {
  8322. name: "Macro",
  8323. height: math.unit(120, "feet")
  8324. },
  8325. {
  8326. name: "Megamacro",
  8327. height: math.unit(80, "miles")
  8328. },
  8329. {
  8330. name: "True Size",
  8331. height: math.unit(100000, "lightyears")
  8332. },
  8333. ]
  8334. ))
  8335. characterMakers.push(() => makeCharacter(
  8336. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8337. {
  8338. front: {
  8339. height: math.unit(6, "feet"),
  8340. weight: math.unit(200, "lbs"),
  8341. name: "Front",
  8342. image: {
  8343. source: "./media/characters/vector-wuff/front.svg"
  8344. }
  8345. }
  8346. },
  8347. [
  8348. {
  8349. name: "Normal",
  8350. height: math.unit(2.8, "meters")
  8351. },
  8352. {
  8353. name: "Macro",
  8354. height: math.unit(450, "meters"),
  8355. default: true
  8356. },
  8357. {
  8358. name: "Megamacro",
  8359. height: math.unit(15, "kilometers")
  8360. }
  8361. ]
  8362. ))
  8363. characterMakers.push(() => makeCharacter(
  8364. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8365. {
  8366. front: {
  8367. height: math.unit(6, "feet"),
  8368. weight: math.unit(256, "lbs"),
  8369. name: "Front",
  8370. image: {
  8371. source: "./media/characters/dannik/front.svg"
  8372. }
  8373. }
  8374. },
  8375. [
  8376. {
  8377. name: "Macro",
  8378. height: math.unit(69.57, "meters"),
  8379. default: true
  8380. },
  8381. ]
  8382. ))
  8383. characterMakers.push(() => makeCharacter(
  8384. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8385. {
  8386. front: {
  8387. height: math.unit(6, "feet"),
  8388. weight: math.unit(120, "lbs"),
  8389. name: "Front",
  8390. image: {
  8391. source: "./media/characters/azura-saharah/front.svg"
  8392. }
  8393. },
  8394. back: {
  8395. height: math.unit(6, "feet"),
  8396. weight: math.unit(120, "lbs"),
  8397. name: "Back",
  8398. image: {
  8399. source: "./media/characters/azura-saharah/back.svg"
  8400. }
  8401. },
  8402. },
  8403. [
  8404. {
  8405. name: "Macro",
  8406. height: math.unit(100, "feet"),
  8407. default: true
  8408. },
  8409. ]
  8410. ))
  8411. characterMakers.push(() => makeCharacter(
  8412. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8413. {
  8414. side: {
  8415. height: math.unit(5 + 4 / 12, "feet"),
  8416. weight: math.unit(163, "lbs"),
  8417. name: "Side",
  8418. image: {
  8419. source: "./media/characters/kennedy/side.svg"
  8420. }
  8421. }
  8422. },
  8423. [
  8424. {
  8425. name: "Standard Doggo",
  8426. height: math.unit(5 + 4 / 12, "feet")
  8427. },
  8428. {
  8429. name: "Big Doggo",
  8430. height: math.unit(25 + 3 / 12, "feet"),
  8431. default: true
  8432. },
  8433. ]
  8434. ))
  8435. characterMakers.push(() => makeCharacter(
  8436. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8437. {
  8438. front: {
  8439. height: math.unit(5 + 5/12, "feet"),
  8440. weight: math.unit(100, "lbs"),
  8441. name: "Front",
  8442. image: {
  8443. source: "./media/characters/odios-de-lunar/front.svg",
  8444. extra: 1468/1323,
  8445. bottom: 22/1490
  8446. }
  8447. }
  8448. },
  8449. [
  8450. {
  8451. name: "Micro",
  8452. height: math.unit(3, "inches")
  8453. },
  8454. {
  8455. name: "Normal",
  8456. height: math.unit(5.5, "feet"),
  8457. default: true
  8458. },
  8459. {
  8460. name: "Macro",
  8461. height: math.unit(100, "feet")
  8462. },
  8463. ]
  8464. ))
  8465. characterMakers.push(() => makeCharacter(
  8466. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8467. {
  8468. back: {
  8469. height: math.unit(6, "feet"),
  8470. weight: math.unit(220, "lbs"),
  8471. name: "Back",
  8472. image: {
  8473. source: "./media/characters/mandake/back.svg"
  8474. }
  8475. }
  8476. },
  8477. [
  8478. {
  8479. name: "Normal",
  8480. height: math.unit(7, "feet"),
  8481. default: true
  8482. },
  8483. {
  8484. name: "Macro",
  8485. height: math.unit(78, "feet")
  8486. },
  8487. {
  8488. name: "Macro+",
  8489. height: math.unit(300, "meters")
  8490. },
  8491. {
  8492. name: "Macro++",
  8493. height: math.unit(2400, "feet")
  8494. },
  8495. {
  8496. name: "Megamacro",
  8497. height: math.unit(5167, "meters")
  8498. },
  8499. {
  8500. name: "Gigamacro",
  8501. height: math.unit(41769, "miles")
  8502. },
  8503. ]
  8504. ))
  8505. characterMakers.push(() => makeCharacter(
  8506. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8507. {
  8508. front: {
  8509. height: math.unit(6, "feet"),
  8510. weight: math.unit(120, "lbs"),
  8511. name: "Front",
  8512. image: {
  8513. source: "./media/characters/yozey/front.svg"
  8514. }
  8515. },
  8516. frontAlt: {
  8517. height: math.unit(6, "feet"),
  8518. weight: math.unit(120, "lbs"),
  8519. name: "Front (Alt)",
  8520. image: {
  8521. source: "./media/characters/yozey/front-alt.svg"
  8522. }
  8523. },
  8524. side: {
  8525. height: math.unit(6, "feet"),
  8526. weight: math.unit(120, "lbs"),
  8527. name: "Side",
  8528. image: {
  8529. source: "./media/characters/yozey/side.svg"
  8530. }
  8531. },
  8532. },
  8533. [
  8534. {
  8535. name: "Micro",
  8536. height: math.unit(3, "inches"),
  8537. default: true
  8538. },
  8539. {
  8540. name: "Normal",
  8541. height: math.unit(6, "feet")
  8542. }
  8543. ]
  8544. ))
  8545. characterMakers.push(() => makeCharacter(
  8546. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8547. {
  8548. front: {
  8549. height: math.unit(6, "feet"),
  8550. weight: math.unit(103, "lbs"),
  8551. name: "Front",
  8552. image: {
  8553. source: "./media/characters/valeska-voss/front.svg"
  8554. }
  8555. }
  8556. },
  8557. [
  8558. {
  8559. name: "Mini-Sized Sub",
  8560. height: math.unit(3.1, "inches")
  8561. },
  8562. {
  8563. name: "Mid-Sized Sub",
  8564. height: math.unit(6.2, "inches")
  8565. },
  8566. {
  8567. name: "Full-Sized Sub",
  8568. height: math.unit(9.3, "inches")
  8569. },
  8570. {
  8571. name: "Normal",
  8572. height: math.unit(5 + 2 / 12, "foot"),
  8573. default: true
  8574. },
  8575. ]
  8576. ))
  8577. characterMakers.push(() => makeCharacter(
  8578. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8579. {
  8580. front: {
  8581. height: math.unit(6, "feet"),
  8582. weight: math.unit(160, "lbs"),
  8583. name: "Front",
  8584. image: {
  8585. source: "./media/characters/gene-zeta/front.svg",
  8586. extra: 3006 / 2826,
  8587. bottom: 182 / 3188
  8588. }
  8589. }
  8590. },
  8591. [
  8592. {
  8593. name: "Micro",
  8594. height: math.unit(6, "inches")
  8595. },
  8596. {
  8597. name: "Normal",
  8598. height: math.unit(5 + 11 / 12, "foot"),
  8599. default: true
  8600. },
  8601. {
  8602. name: "Macro",
  8603. height: math.unit(140, "feet")
  8604. },
  8605. {
  8606. name: "Supercharged",
  8607. height: math.unit(2500, "feet")
  8608. },
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8613. {
  8614. front: {
  8615. height: math.unit(6, "feet"),
  8616. weight: math.unit(350, "lbs"),
  8617. name: "Front",
  8618. image: {
  8619. source: "./media/characters/razinox/front.svg",
  8620. extra: 1686 / 1548,
  8621. bottom: 28.2 / 1868
  8622. }
  8623. },
  8624. back: {
  8625. height: math.unit(6, "feet"),
  8626. weight: math.unit(350, "lbs"),
  8627. name: "Back",
  8628. image: {
  8629. source: "./media/characters/razinox/back.svg",
  8630. extra: 1660 / 1590,
  8631. bottom: 15 / 1665
  8632. }
  8633. },
  8634. },
  8635. [
  8636. {
  8637. name: "Normal",
  8638. height: math.unit(10 + 8 / 12, "foot")
  8639. },
  8640. {
  8641. name: "Minimacro",
  8642. height: math.unit(15, "foot")
  8643. },
  8644. {
  8645. name: "Macro",
  8646. height: math.unit(60, "foot"),
  8647. default: true
  8648. },
  8649. {
  8650. name: "Megamacro",
  8651. height: math.unit(5, "miles")
  8652. },
  8653. {
  8654. name: "Gigamacro",
  8655. height: math.unit(6000, "miles")
  8656. },
  8657. ]
  8658. ))
  8659. characterMakers.push(() => makeCharacter(
  8660. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8661. {
  8662. front: {
  8663. height: math.unit(6, "feet"),
  8664. weight: math.unit(150, "lbs"),
  8665. name: "Front",
  8666. image: {
  8667. source: "./media/characters/cobalt/front.svg"
  8668. }
  8669. }
  8670. },
  8671. [
  8672. {
  8673. name: "Normal",
  8674. height: math.unit(8 + 1 / 12, "foot")
  8675. },
  8676. {
  8677. name: "Macro",
  8678. height: math.unit(111, "foot"),
  8679. default: true
  8680. },
  8681. {
  8682. name: "Supracosmic",
  8683. height: math.unit(1e42, "feet")
  8684. },
  8685. ]
  8686. ))
  8687. characterMakers.push(() => makeCharacter(
  8688. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8689. {
  8690. front: {
  8691. height: math.unit(5, "inches"),
  8692. name: "Front",
  8693. image: {
  8694. source: "./media/characters/amanda/front.svg",
  8695. extra: 926/791,
  8696. bottom: 38/964
  8697. }
  8698. },
  8699. back: {
  8700. height: math.unit(5, "inches"),
  8701. name: "Back",
  8702. image: {
  8703. source: "./media/characters/amanda/back.svg",
  8704. extra: 909/805,
  8705. bottom: 43/952
  8706. }
  8707. },
  8708. },
  8709. [
  8710. {
  8711. name: "Micro",
  8712. height: math.unit(5, "inches"),
  8713. default: true
  8714. },
  8715. ]
  8716. ))
  8717. characterMakers.push(() => makeCharacter(
  8718. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8719. {
  8720. front: {
  8721. height: math.unit(2.75, "meters"),
  8722. weight: math.unit(1200, "lb"),
  8723. name: "Front",
  8724. image: {
  8725. source: "./media/characters/teal/front.svg",
  8726. extra: 2463 / 2320,
  8727. bottom: 166 / 2629
  8728. }
  8729. },
  8730. back: {
  8731. height: math.unit(2.75, "meters"),
  8732. weight: math.unit(1200, "lb"),
  8733. name: "Back",
  8734. image: {
  8735. source: "./media/characters/teal/back.svg",
  8736. extra: 2580 / 2489,
  8737. bottom: 151 / 2731
  8738. }
  8739. },
  8740. sitting: {
  8741. height: math.unit(1.9, "meters"),
  8742. weight: math.unit(1200, "lb"),
  8743. name: "Sitting",
  8744. image: {
  8745. source: "./media/characters/teal/sitting.svg",
  8746. extra: 623 / 590,
  8747. bottom: 121 / 744
  8748. }
  8749. },
  8750. standing: {
  8751. height: math.unit(2.75, "meters"),
  8752. weight: math.unit(1200, "lb"),
  8753. name: "Standing",
  8754. image: {
  8755. source: "./media/characters/teal/standing.svg",
  8756. extra: 923 / 893,
  8757. bottom: 60 / 983
  8758. }
  8759. },
  8760. stretching: {
  8761. height: math.unit(3.65, "meters"),
  8762. weight: math.unit(1200, "lb"),
  8763. name: "Stretching",
  8764. image: {
  8765. source: "./media/characters/teal/stretching.svg",
  8766. extra: 1276 / 1244,
  8767. bottom: 0 / 1276
  8768. }
  8769. },
  8770. legged: {
  8771. height: math.unit(1.3, "meters"),
  8772. weight: math.unit(100, "lb"),
  8773. name: "Legged",
  8774. image: {
  8775. source: "./media/characters/teal/legged.svg",
  8776. extra: 462 / 437,
  8777. bottom: 24 / 486
  8778. }
  8779. },
  8780. naga: {
  8781. height: math.unit(5.4, "meters"),
  8782. weight: math.unit(4000, "lb"),
  8783. name: "Naga",
  8784. image: {
  8785. source: "./media/characters/teal/naga.svg",
  8786. extra: 1902 / 1858,
  8787. bottom: 0 / 1902
  8788. }
  8789. },
  8790. hand: {
  8791. height: math.unit(0.52, "meters"),
  8792. name: "Hand",
  8793. image: {
  8794. source: "./media/characters/teal/hand.svg"
  8795. }
  8796. },
  8797. maw: {
  8798. height: math.unit(0.43, "meters"),
  8799. name: "Maw",
  8800. image: {
  8801. source: "./media/characters/teal/maw.svg"
  8802. }
  8803. },
  8804. slit: {
  8805. height: math.unit(0.25, "meters"),
  8806. name: "Slit",
  8807. image: {
  8808. source: "./media/characters/teal/slit.svg"
  8809. }
  8810. },
  8811. },
  8812. [
  8813. {
  8814. name: "Normal",
  8815. height: math.unit(2.75, "meters"),
  8816. default: true
  8817. },
  8818. {
  8819. name: "Macro",
  8820. height: math.unit(300, "feet")
  8821. },
  8822. {
  8823. name: "Macro+",
  8824. height: math.unit(2000, "feet")
  8825. },
  8826. ]
  8827. ))
  8828. characterMakers.push(() => makeCharacter(
  8829. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8830. {
  8831. frontCat: {
  8832. height: math.unit(6, "feet"),
  8833. weight: math.unit(180, "lbs"),
  8834. name: "Front (Cat)",
  8835. image: {
  8836. source: "./media/characters/ravin-amulet/front-cat.svg"
  8837. }
  8838. },
  8839. frontCatAlt: {
  8840. height: math.unit(6, "feet"),
  8841. weight: math.unit(180, "lbs"),
  8842. name: "Front (Alt, Cat)",
  8843. image: {
  8844. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8845. }
  8846. },
  8847. frontWerewolf: {
  8848. height: math.unit(6 * 1.2, "feet"),
  8849. weight: math.unit(225, "lbs"),
  8850. name: "Front (Werewolf)",
  8851. image: {
  8852. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8853. }
  8854. },
  8855. backWerewolf: {
  8856. height: math.unit(6 * 1.2, "feet"),
  8857. weight: math.unit(225, "lbs"),
  8858. name: "Back (Werewolf)",
  8859. image: {
  8860. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8861. }
  8862. },
  8863. },
  8864. [
  8865. {
  8866. name: "Nano",
  8867. height: math.unit(1, "micrometer")
  8868. },
  8869. {
  8870. name: "Micro",
  8871. height: math.unit(1, "inch")
  8872. },
  8873. {
  8874. name: "Normal",
  8875. height: math.unit(6, "feet"),
  8876. default: true
  8877. },
  8878. {
  8879. name: "Macro",
  8880. height: math.unit(60, "feet")
  8881. }
  8882. ]
  8883. ))
  8884. characterMakers.push(() => makeCharacter(
  8885. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8886. {
  8887. front: {
  8888. height: math.unit(6, "feet"),
  8889. weight: math.unit(165, "lbs"),
  8890. name: "Front",
  8891. image: {
  8892. source: "./media/characters/fluoresce/front.svg"
  8893. }
  8894. }
  8895. },
  8896. [
  8897. {
  8898. name: "Micro",
  8899. height: math.unit(6, "cm")
  8900. },
  8901. {
  8902. name: "Normal",
  8903. height: math.unit(5 + 7 / 12, "feet"),
  8904. default: true
  8905. },
  8906. {
  8907. name: "Macro",
  8908. height: math.unit(56, "feet")
  8909. },
  8910. {
  8911. name: "Megamacro",
  8912. height: math.unit(1.9, "miles")
  8913. },
  8914. ]
  8915. ))
  8916. characterMakers.push(() => makeCharacter(
  8917. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8918. {
  8919. front: {
  8920. height: math.unit(9 + 6 / 12, "feet"),
  8921. weight: math.unit(523, "lbs"),
  8922. name: "Side",
  8923. image: {
  8924. source: "./media/characters/aurora/side.svg",
  8925. extra: 474/393,
  8926. bottom: 5/479
  8927. }
  8928. }
  8929. },
  8930. [
  8931. {
  8932. name: "Normal",
  8933. height: math.unit(9 + 6 / 12, "feet")
  8934. },
  8935. {
  8936. name: "Macro",
  8937. height: math.unit(96, "feet"),
  8938. default: true
  8939. },
  8940. {
  8941. name: "Macro+",
  8942. height: math.unit(243, "feet")
  8943. },
  8944. ]
  8945. ))
  8946. characterMakers.push(() => makeCharacter(
  8947. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8948. {
  8949. front: {
  8950. height: math.unit(194, "cm"),
  8951. weight: math.unit(90, "kg"),
  8952. name: "Front",
  8953. image: {
  8954. source: "./media/characters/ranek/front.svg",
  8955. extra: 1862/1791,
  8956. bottom: 80/1942
  8957. }
  8958. },
  8959. back: {
  8960. height: math.unit(194, "cm"),
  8961. weight: math.unit(90, "kg"),
  8962. name: "Back",
  8963. image: {
  8964. source: "./media/characters/ranek/back.svg",
  8965. extra: 1853/1787,
  8966. bottom: 74/1927
  8967. }
  8968. },
  8969. feral: {
  8970. height: math.unit(30, "cm"),
  8971. weight: math.unit(1.6, "lbs"),
  8972. name: "Feral",
  8973. image: {
  8974. source: "./media/characters/ranek/feral.svg",
  8975. extra: 990/631,
  8976. bottom: 29/1019
  8977. }
  8978. },
  8979. },
  8980. [
  8981. {
  8982. name: "Normal",
  8983. height: math.unit(194, "cm"),
  8984. default: true
  8985. },
  8986. {
  8987. name: "Macro",
  8988. height: math.unit(100, "meters")
  8989. },
  8990. ]
  8991. ))
  8992. characterMakers.push(() => makeCharacter(
  8993. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8994. {
  8995. front: {
  8996. height: math.unit(5 + 6 / 12, "feet"),
  8997. weight: math.unit(153, "lbs"),
  8998. name: "Front",
  8999. image: {
  9000. source: "./media/characters/andrew-cooper/front.svg"
  9001. }
  9002. },
  9003. },
  9004. [
  9005. {
  9006. name: "Nano",
  9007. height: math.unit(1, "mm")
  9008. },
  9009. {
  9010. name: "Micro",
  9011. height: math.unit(2, "inches")
  9012. },
  9013. {
  9014. name: "Normal",
  9015. height: math.unit(5 + 6 / 12, "feet"),
  9016. default: true
  9017. }
  9018. ]
  9019. ))
  9020. characterMakers.push(() => makeCharacter(
  9021. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  9022. {
  9023. front: {
  9024. height: math.unit(6, "feet"),
  9025. weight: math.unit(180, "lbs"),
  9026. name: "Front",
  9027. image: {
  9028. source: "./media/characters/akane-sato/front.svg",
  9029. extra: 1219 / 1140
  9030. }
  9031. },
  9032. back: {
  9033. height: math.unit(6, "feet"),
  9034. weight: math.unit(180, "lbs"),
  9035. name: "Back",
  9036. image: {
  9037. source: "./media/characters/akane-sato/back.svg",
  9038. extra: 1219 / 1170
  9039. }
  9040. },
  9041. },
  9042. [
  9043. {
  9044. name: "Normal",
  9045. height: math.unit(2.5, "meters")
  9046. },
  9047. {
  9048. name: "Macro",
  9049. height: math.unit(250, "meters"),
  9050. default: true
  9051. },
  9052. {
  9053. name: "Megamacro",
  9054. height: math.unit(25, "km")
  9055. },
  9056. ]
  9057. ))
  9058. characterMakers.push(() => makeCharacter(
  9059. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  9060. {
  9061. front: {
  9062. height: math.unit(6, "feet"),
  9063. weight: math.unit(65, "kg"),
  9064. name: "Front",
  9065. image: {
  9066. source: "./media/characters/rook/front.svg",
  9067. extra: 960 / 950
  9068. }
  9069. }
  9070. },
  9071. [
  9072. {
  9073. name: "Normal",
  9074. height: math.unit(8.8, "feet")
  9075. },
  9076. {
  9077. name: "Macro",
  9078. height: math.unit(88, "feet"),
  9079. default: true
  9080. },
  9081. {
  9082. name: "Megamacro",
  9083. height: math.unit(8, "miles")
  9084. },
  9085. ]
  9086. ))
  9087. characterMakers.push(() => makeCharacter(
  9088. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  9089. {
  9090. front: {
  9091. height: math.unit(12 + 2 / 12, "feet"),
  9092. weight: math.unit(808, "lbs"),
  9093. name: "Front",
  9094. image: {
  9095. source: "./media/characters/prodigy/front.svg"
  9096. }
  9097. }
  9098. },
  9099. [
  9100. {
  9101. name: "Normal",
  9102. height: math.unit(12 + 2 / 12, "feet"),
  9103. default: true
  9104. },
  9105. {
  9106. name: "Macro",
  9107. height: math.unit(143, "feet")
  9108. },
  9109. {
  9110. name: "Macro+",
  9111. height: math.unit(400, "feet")
  9112. },
  9113. ]
  9114. ))
  9115. characterMakers.push(() => makeCharacter(
  9116. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9117. {
  9118. front: {
  9119. height: math.unit(6, "feet"),
  9120. weight: math.unit(225, "lbs"),
  9121. name: "Front",
  9122. image: {
  9123. source: "./media/characters/daniel/front.svg"
  9124. }
  9125. },
  9126. leaning: {
  9127. height: math.unit(6, "feet"),
  9128. weight: math.unit(225, "lbs"),
  9129. name: "Leaning",
  9130. image: {
  9131. source: "./media/characters/daniel/leaning.svg"
  9132. }
  9133. },
  9134. },
  9135. [
  9136. {
  9137. name: "Macro",
  9138. height: math.unit(1000, "feet"),
  9139. default: true
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(6, "feet"),
  9148. weight: math.unit(88, "lbs"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/chiros/front.svg",
  9152. extra: 306 / 226
  9153. }
  9154. },
  9155. side: {
  9156. height: math.unit(6, "feet"),
  9157. weight: math.unit(88, "lbs"),
  9158. name: "Side",
  9159. image: {
  9160. source: "./media/characters/chiros/side.svg",
  9161. extra: 306 / 226
  9162. }
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(6, "cm"),
  9169. default: true
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9175. {
  9176. front: {
  9177. height: math.unit(6, "feet"),
  9178. weight: math.unit(100, "lbs"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/selka/front.svg",
  9182. extra: 947 / 887
  9183. }
  9184. }
  9185. },
  9186. [
  9187. {
  9188. name: "Normal",
  9189. height: math.unit(5, "cm"),
  9190. default: true
  9191. },
  9192. ]
  9193. ))
  9194. characterMakers.push(() => makeCharacter(
  9195. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9196. {
  9197. front: {
  9198. height: math.unit(8 + 3 / 12, "feet"),
  9199. weight: math.unit(424, "lbs"),
  9200. name: "Front",
  9201. image: {
  9202. source: "./media/characters/verin/front.svg",
  9203. extra: 1845 / 1550
  9204. }
  9205. },
  9206. frontArmored: {
  9207. height: math.unit(8 + 3 / 12, "feet"),
  9208. weight: math.unit(424, "lbs"),
  9209. name: "Front (Armored)",
  9210. image: {
  9211. source: "./media/characters/verin/front-armor.svg",
  9212. extra: 1845 / 1550,
  9213. bottom: 0.01
  9214. }
  9215. },
  9216. back: {
  9217. height: math.unit(8 + 3 / 12, "feet"),
  9218. weight: math.unit(424, "lbs"),
  9219. name: "Back",
  9220. image: {
  9221. source: "./media/characters/verin/back.svg",
  9222. bottom: 0.1,
  9223. extra: 1
  9224. }
  9225. },
  9226. foot: {
  9227. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9228. name: "Foot",
  9229. image: {
  9230. source: "./media/characters/verin/foot.svg"
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(8 + 3 / 12, "feet")
  9238. },
  9239. {
  9240. name: "Minimacro",
  9241. height: math.unit(21, "feet"),
  9242. default: true
  9243. },
  9244. {
  9245. name: "Macro",
  9246. height: math.unit(626, "feet")
  9247. },
  9248. ]
  9249. ))
  9250. characterMakers.push(() => makeCharacter(
  9251. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9252. {
  9253. front: {
  9254. height: math.unit(2.718, "meters"),
  9255. weight: math.unit(150, "lbs"),
  9256. name: "Front",
  9257. image: {
  9258. source: "./media/characters/sovrim-terraquian/front.svg",
  9259. extra: 1752/1689,
  9260. bottom: 36/1788
  9261. }
  9262. },
  9263. back: {
  9264. height: math.unit(2.718, "meters"),
  9265. weight: math.unit(150, "lbs"),
  9266. name: "Back",
  9267. image: {
  9268. source: "./media/characters/sovrim-terraquian/back.svg",
  9269. extra: 1698/1657,
  9270. bottom: 58/1756
  9271. }
  9272. },
  9273. tongue: {
  9274. height: math.unit(2.865, "feet"),
  9275. name: "Tongue",
  9276. image: {
  9277. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9278. }
  9279. },
  9280. hand: {
  9281. height: math.unit(1.61, "feet"),
  9282. name: "Hand",
  9283. image: {
  9284. source: "./media/characters/sovrim-terraquian/hand.svg"
  9285. }
  9286. },
  9287. foot: {
  9288. height: math.unit(1.05, "feet"),
  9289. name: "Foot",
  9290. image: {
  9291. source: "./media/characters/sovrim-terraquian/foot.svg"
  9292. }
  9293. },
  9294. footAlt: {
  9295. height: math.unit(0.88, "feet"),
  9296. name: "Foot (Alt)",
  9297. image: {
  9298. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Micro",
  9305. height: math.unit(2, "inches")
  9306. },
  9307. {
  9308. name: "Small",
  9309. height: math.unit(1, "meter")
  9310. },
  9311. {
  9312. name: "Normal",
  9313. height: math.unit(Math.E, "meters"),
  9314. default: true
  9315. },
  9316. {
  9317. name: "Macro",
  9318. height: math.unit(20, "meters")
  9319. },
  9320. {
  9321. name: "Macro+",
  9322. height: math.unit(400, "meters")
  9323. },
  9324. ]
  9325. ))
  9326. characterMakers.push(() => makeCharacter(
  9327. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9328. {
  9329. front: {
  9330. height: math.unit(7, "feet"),
  9331. weight: math.unit(489, "lbs"),
  9332. name: "Front",
  9333. image: {
  9334. source: "./media/characters/reece-silvermane/front.svg",
  9335. bottom: 0.02,
  9336. extra: 1
  9337. }
  9338. },
  9339. },
  9340. [
  9341. {
  9342. name: "Macro",
  9343. height: math.unit(1.5, "miles"),
  9344. default: true
  9345. },
  9346. ]
  9347. ))
  9348. characterMakers.push(() => makeCharacter(
  9349. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9350. {
  9351. front: {
  9352. height: math.unit(6, "feet"),
  9353. weight: math.unit(78, "kg"),
  9354. name: "Front",
  9355. image: {
  9356. source: "./media/characters/kane/front.svg",
  9357. extra: 978 / 899
  9358. }
  9359. },
  9360. back: {
  9361. height: math.unit(6, "feet"),
  9362. weight: math.unit(78, "kg"),
  9363. name: "Back",
  9364. image: {
  9365. source: "./media/characters/kane/back.svg",
  9366. extra: 1966/1800,
  9367. bottom: 0/1966
  9368. }
  9369. },
  9370. head: {
  9371. height: math.unit(1.4, "feet"),
  9372. name: "Head",
  9373. image: {
  9374. source: "./media/characters/kane/head.svg"
  9375. }
  9376. },
  9377. },
  9378. [
  9379. {
  9380. name: "Normal",
  9381. height: math.unit(2.1, "m"),
  9382. },
  9383. {
  9384. name: "Macro",
  9385. height: math.unit(1, "km"),
  9386. default: true
  9387. },
  9388. ]
  9389. ))
  9390. characterMakers.push(() => makeCharacter(
  9391. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9392. {
  9393. front: {
  9394. height: math.unit(6, "feet"),
  9395. weight: math.unit(200, "kg"),
  9396. name: "Front",
  9397. image: {
  9398. source: "./media/characters/tegon/front.svg",
  9399. bottom: 0.01,
  9400. extra: 1
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Micro",
  9407. height: math.unit(1, "inch")
  9408. },
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(6 + 3 / 12, "feet"),
  9412. default: true
  9413. },
  9414. {
  9415. name: "Macro",
  9416. height: math.unit(300, "feet")
  9417. },
  9418. {
  9419. name: "Megamacro",
  9420. height: math.unit(69, "miles")
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9426. {
  9427. side: {
  9428. height: math.unit(6, "feet"),
  9429. weight: math.unit(2304, "lbs"),
  9430. name: "Side",
  9431. image: {
  9432. source: "./media/characters/arcturax/side.svg",
  9433. extra: 790 / 376,
  9434. bottom: 0.01
  9435. }
  9436. },
  9437. },
  9438. [
  9439. {
  9440. name: "Micro",
  9441. height: math.unit(2, "inch")
  9442. },
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(6, "feet")
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(39, "feet"),
  9450. default: true
  9451. },
  9452. {
  9453. name: "Megamacro",
  9454. height: math.unit(7, "miles")
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(50, "lbs"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/sentri/front.svg",
  9467. extra: 1750 / 1570,
  9468. bottom: 0.025
  9469. }
  9470. },
  9471. frontAlt: {
  9472. height: math.unit(6, "feet"),
  9473. weight: math.unit(50, "lbs"),
  9474. name: "Front (Alt)",
  9475. image: {
  9476. source: "./media/characters/sentri/front-alt.svg",
  9477. extra: 1750 / 1570,
  9478. bottom: 0.025
  9479. }
  9480. },
  9481. },
  9482. [
  9483. {
  9484. name: "Normal",
  9485. height: math.unit(15, "feet"),
  9486. default: true
  9487. },
  9488. {
  9489. name: "Macro",
  9490. height: math.unit(2500, "feet")
  9491. }
  9492. ]
  9493. ))
  9494. characterMakers.push(() => makeCharacter(
  9495. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9496. {
  9497. front: {
  9498. height: math.unit(5 + 8 / 12, "feet"),
  9499. weight: math.unit(130, "lbs"),
  9500. name: "Front",
  9501. image: {
  9502. source: "./media/characters/corvin/front.svg",
  9503. extra: 1803 / 1629
  9504. }
  9505. },
  9506. frontShirt: {
  9507. height: math.unit(5 + 8 / 12, "feet"),
  9508. weight: math.unit(130, "lbs"),
  9509. name: "Front (Shirt)",
  9510. image: {
  9511. source: "./media/characters/corvin/front-shirt.svg",
  9512. extra: 1803 / 1629
  9513. }
  9514. },
  9515. frontPoncho: {
  9516. height: math.unit(5 + 8 / 12, "feet"),
  9517. weight: math.unit(130, "lbs"),
  9518. name: "Front (Poncho)",
  9519. image: {
  9520. source: "./media/characters/corvin/front-poncho.svg",
  9521. extra: 1803 / 1629
  9522. }
  9523. },
  9524. side: {
  9525. height: math.unit(5 + 8 / 12, "feet"),
  9526. weight: math.unit(130, "lbs"),
  9527. name: "Side",
  9528. image: {
  9529. source: "./media/characters/corvin/side.svg",
  9530. extra: 1012 / 945
  9531. }
  9532. },
  9533. back: {
  9534. height: math.unit(5 + 8 / 12, "feet"),
  9535. weight: math.unit(130, "lbs"),
  9536. name: "Back",
  9537. image: {
  9538. source: "./media/characters/corvin/back.svg",
  9539. extra: 1803 / 1629
  9540. }
  9541. },
  9542. },
  9543. [
  9544. {
  9545. name: "Micro",
  9546. height: math.unit(3, "inches")
  9547. },
  9548. {
  9549. name: "Normal",
  9550. height: math.unit(5 + 8 / 12, "feet")
  9551. },
  9552. {
  9553. name: "Macro",
  9554. height: math.unit(300, "feet"),
  9555. default: true
  9556. },
  9557. {
  9558. name: "Megamacro",
  9559. height: math.unit(500, "miles")
  9560. }
  9561. ]
  9562. ))
  9563. characterMakers.push(() => makeCharacter(
  9564. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9565. {
  9566. front: {
  9567. height: math.unit(6, "feet"),
  9568. weight: math.unit(135, "lbs"),
  9569. name: "Front",
  9570. image: {
  9571. source: "./media/characters/q/front.svg",
  9572. extra: 854 / 752,
  9573. bottom: 0.005
  9574. }
  9575. },
  9576. back: {
  9577. height: math.unit(6, "feet"),
  9578. weight: math.unit(130, "lbs"),
  9579. name: "Back",
  9580. image: {
  9581. source: "./media/characters/q/back.svg",
  9582. extra: 854 / 752
  9583. }
  9584. },
  9585. },
  9586. [
  9587. {
  9588. name: "Macro",
  9589. height: math.unit(90, "feet"),
  9590. default: true
  9591. },
  9592. {
  9593. name: "Extra Macro",
  9594. height: math.unit(300, "feet"),
  9595. },
  9596. {
  9597. name: "BIG WALF",
  9598. height: math.unit(750, "feet"),
  9599. },
  9600. ]
  9601. ))
  9602. characterMakers.push(() => makeCharacter(
  9603. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9604. {
  9605. front: {
  9606. height: math.unit(3, "feet"),
  9607. weight: math.unit(28, "lbs"),
  9608. name: "Front",
  9609. image: {
  9610. source: "./media/characters/citrine/front.svg"
  9611. }
  9612. }
  9613. },
  9614. [
  9615. {
  9616. name: "Normal",
  9617. height: math.unit(3, "feet"),
  9618. default: true
  9619. }
  9620. ]
  9621. ))
  9622. characterMakers.push(() => makeCharacter(
  9623. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9624. {
  9625. front: {
  9626. height: math.unit(14, "feet"),
  9627. weight: math.unit(1450, "kg"),
  9628. preyCapacity: math.unit(15, "people"),
  9629. name: "Front",
  9630. image: {
  9631. source: "./media/characters/aura-starwind/front.svg",
  9632. extra: 1440/1327,
  9633. bottom: 11/1451
  9634. }
  9635. },
  9636. side: {
  9637. height: math.unit(14, "feet"),
  9638. weight: math.unit(1450, "kg"),
  9639. preyCapacity: math.unit(15, "people"),
  9640. name: "Side",
  9641. image: {
  9642. source: "./media/characters/aura-starwind/side.svg",
  9643. extra: 1654 / 1497
  9644. }
  9645. },
  9646. taur: {
  9647. height: math.unit(18, "feet"),
  9648. weight: math.unit(5500, "kg"),
  9649. preyCapacity: math.unit(50, "people"),
  9650. name: "Taur",
  9651. image: {
  9652. source: "./media/characters/aura-starwind/taur.svg",
  9653. extra: 1760 / 1650
  9654. }
  9655. },
  9656. feral: {
  9657. height: math.unit(46, "feet"),
  9658. weight: math.unit(25000, "kg"),
  9659. preyCapacity: math.unit(120, "people"),
  9660. name: "Feral",
  9661. image: {
  9662. source: "./media/characters/aura-starwind/feral.svg"
  9663. }
  9664. },
  9665. },
  9666. [
  9667. {
  9668. name: "Normal",
  9669. height: math.unit(14, "feet"),
  9670. default: true
  9671. },
  9672. {
  9673. name: "Macro",
  9674. height: math.unit(50, "meters")
  9675. },
  9676. {
  9677. name: "Megamacro",
  9678. height: math.unit(5000, "meters")
  9679. },
  9680. {
  9681. name: "Gigamacro",
  9682. height: math.unit(100000, "kilometers")
  9683. },
  9684. ]
  9685. ))
  9686. characterMakers.push(() => makeCharacter(
  9687. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9688. {
  9689. front: {
  9690. height: math.unit(2 + 7 / 12, "feet"),
  9691. weight: math.unit(32, "lbs"),
  9692. name: "Front",
  9693. image: {
  9694. source: "./media/characters/rivet/front.svg",
  9695. extra: 1716 / 1658,
  9696. bottom: 0.03
  9697. }
  9698. },
  9699. foot: {
  9700. height: math.unit(0.551, "feet"),
  9701. name: "Rivet's Foot",
  9702. image: {
  9703. source: "./media/characters/rivet/foot.svg"
  9704. },
  9705. rename: true
  9706. }
  9707. },
  9708. [
  9709. {
  9710. name: "Micro",
  9711. height: math.unit(1.5, "inches"),
  9712. },
  9713. {
  9714. name: "Normal",
  9715. height: math.unit(2 + 7 / 12, "feet"),
  9716. default: true
  9717. },
  9718. {
  9719. name: "Macro",
  9720. height: math.unit(85, "feet")
  9721. },
  9722. {
  9723. name: "Megamacro",
  9724. height: math.unit(2.2, "km")
  9725. }
  9726. ]
  9727. ))
  9728. characterMakers.push(() => makeCharacter(
  9729. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9730. {
  9731. front: {
  9732. height: math.unit(5 + 9 / 12, "feet"),
  9733. weight: math.unit(150, "lbs"),
  9734. name: "Front",
  9735. image: {
  9736. source: "./media/characters/coffee/front.svg",
  9737. extra: 946/880,
  9738. bottom: 66/1012
  9739. }
  9740. },
  9741. foot: {
  9742. height: math.unit(1.29, "feet"),
  9743. name: "Foot",
  9744. image: {
  9745. source: "./media/characters/coffee/foot.svg"
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Micro",
  9752. height: math.unit(2, "inches"),
  9753. },
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(5 + 9 / 12, "feet"),
  9757. default: true
  9758. },
  9759. {
  9760. name: "Macro",
  9761. height: math.unit(800, "feet")
  9762. },
  9763. {
  9764. name: "Megamacro",
  9765. height: math.unit(25, "miles")
  9766. }
  9767. ]
  9768. ))
  9769. characterMakers.push(() => makeCharacter(
  9770. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9771. {
  9772. front: {
  9773. height: math.unit(6, "feet"),
  9774. weight: math.unit(200, "lbs"),
  9775. name: "Front",
  9776. image: {
  9777. source: "./media/characters/chari-gal/front.svg",
  9778. extra: 735/649,
  9779. bottom: 55/790
  9780. },
  9781. form: "normal",
  9782. default: true
  9783. },
  9784. back: {
  9785. height: math.unit(6, "feet"),
  9786. weight: math.unit(200, "lb"),
  9787. name: "Back",
  9788. image: {
  9789. source: "./media/characters/chari-gal/back.svg",
  9790. extra: 762/666,
  9791. bottom: 31/793
  9792. },
  9793. form: "normal"
  9794. },
  9795. mouth: {
  9796. height: math.unit(1.35, "feet"),
  9797. name: "Mouth",
  9798. image: {
  9799. source: "./media/characters/chari-gal/mouth.svg"
  9800. },
  9801. form: "normal"
  9802. },
  9803. gigantamax: {
  9804. height: math.unit(6 * 16, "feet"),
  9805. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9806. name: "Gigantamax",
  9807. image: {
  9808. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9809. extra: 1507/1149,
  9810. bottom: 254/1761
  9811. },
  9812. form: "gigantamax",
  9813. default: true
  9814. },
  9815. },
  9816. [
  9817. {
  9818. name: "Normal",
  9819. height: math.unit(5 + 7 / 12, "feet"),
  9820. form: "normal",
  9821. },
  9822. {
  9823. name: "Macro",
  9824. height: math.unit(200, "feet"),
  9825. default: true,
  9826. form: "normal"
  9827. },
  9828. {
  9829. name: "Normal",
  9830. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9831. form: "gigantamax",
  9832. },
  9833. {
  9834. name: "Macro",
  9835. height: math.unit(16 * 200, "feet"),
  9836. default: true,
  9837. form: "gigantamax"
  9838. },
  9839. ],
  9840. {
  9841. "normal": {
  9842. name: "Normal",
  9843. default: true
  9844. },
  9845. "gigantamax": {
  9846. name: "Gigantamax",
  9847. },
  9848. }
  9849. ))
  9850. characterMakers.push(() => makeCharacter(
  9851. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9852. {
  9853. front: {
  9854. height: math.unit(6, "feet"),
  9855. weight: math.unit(150, "lbs"),
  9856. name: "Front",
  9857. image: {
  9858. source: "./media/characters/nova/front.svg",
  9859. extra: 5000 / 4722,
  9860. bottom: 0.02
  9861. }
  9862. }
  9863. },
  9864. [
  9865. {
  9866. name: "Micro-",
  9867. height: math.unit(0.8, "inches")
  9868. },
  9869. {
  9870. name: "Micro",
  9871. height: math.unit(2, "inches"),
  9872. default: true
  9873. },
  9874. ]
  9875. ))
  9876. characterMakers.push(() => makeCharacter(
  9877. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9878. {
  9879. koboldFront: {
  9880. height: math.unit(3 + 1 / 12, "feet"),
  9881. weight: math.unit(21.7, "lbs"),
  9882. name: "Front",
  9883. image: {
  9884. source: "./media/characters/argent/kobold-front.svg",
  9885. extra: 1471 / 1331,
  9886. bottom: 100.8 / 1575.5
  9887. },
  9888. form: "kobold",
  9889. default: true
  9890. },
  9891. dragonFront: {
  9892. height: math.unit(75, "inches"),
  9893. name: "Front",
  9894. image: {
  9895. source: "./media/characters/argent/dragon-front.svg",
  9896. extra: 1389/1248,
  9897. bottom: 54/1443
  9898. },
  9899. form: "dragon",
  9900. },
  9901. dragonBack: {
  9902. height: math.unit(75, "inches"),
  9903. name: "Back",
  9904. image: {
  9905. source: "./media/characters/argent/dragon-back.svg",
  9906. extra: 1399/1271,
  9907. bottom: 23/1422
  9908. },
  9909. form: "dragon",
  9910. },
  9911. dragonDressed: {
  9912. height: math.unit(75, "inches"),
  9913. name: "Dressed",
  9914. image: {
  9915. source: "./media/characters/argent/dragon-dressed.svg",
  9916. extra: 1350/1215,
  9917. bottom: 26/1376
  9918. },
  9919. form: "dragon"
  9920. },
  9921. dragonHead: {
  9922. height: math.unit(23.5, "inches"),
  9923. name: "Head",
  9924. image: {
  9925. source: "./media/characters/argent/dragon-head.svg"
  9926. },
  9927. form: "dragon",
  9928. },
  9929. },
  9930. [
  9931. {
  9932. name: "Micro",
  9933. height: math.unit(2, "inches"),
  9934. form: "kobold",
  9935. },
  9936. {
  9937. name: "Normal",
  9938. height: math.unit(3 + 1 / 12, "feet"),
  9939. form: "kobold",
  9940. default: true
  9941. },
  9942. {
  9943. name: "Macro",
  9944. height: math.unit(120, "feet"),
  9945. form: "kobold",
  9946. },
  9947. {
  9948. name: "Speck",
  9949. height: math.unit(1, "mm"),
  9950. form: "dragon",
  9951. },
  9952. {
  9953. name: "Tiny",
  9954. height: math.unit(1, "cm"),
  9955. form: "dragon",
  9956. },
  9957. {
  9958. name: "Micro",
  9959. height: math.unit(5, "cm"),
  9960. form: "dragon",
  9961. },
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(75, "inches"),
  9965. form: "dragon",
  9966. default: true
  9967. },
  9968. {
  9969. name: "Extra Tall",
  9970. height: math.unit(9, "feet"),
  9971. form: "dragon",
  9972. },
  9973. {
  9974. name: "Inconvenient",
  9975. height: math.unit(5, "meters"),
  9976. form: "dragon",
  9977. },
  9978. {
  9979. name: "Macro",
  9980. height: math.unit(70, "meters"),
  9981. form: "dragon",
  9982. },
  9983. {
  9984. name: "Macro+",
  9985. height: math.unit(250, "meters"),
  9986. form: "dragon",
  9987. },
  9988. {
  9989. name: "Megamacro",
  9990. height: math.unit(20, "km"),
  9991. form: "dragon",
  9992. },
  9993. {
  9994. name: "Mountainous",
  9995. height: math.unit(100, "km"),
  9996. form: "dragon",
  9997. },
  9998. {
  9999. name: "Continental",
  10000. height: math.unit(2, "megameters"),
  10001. form: "dragon",
  10002. },
  10003. {
  10004. name: "Too Big",
  10005. height: math.unit(900, "megameters"),
  10006. form: "dragon",
  10007. },
  10008. ],
  10009. {
  10010. "kobold": {
  10011. name: "Kobold",
  10012. default: true
  10013. },
  10014. "dragon": {
  10015. name: "Dragon",
  10016. },
  10017. }
  10018. ))
  10019. characterMakers.push(() => makeCharacter(
  10020. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  10021. {
  10022. lamp: {
  10023. height: math.unit(7 * 1559 / 989, "feet"),
  10024. name: "Magic Lamp",
  10025. image: {
  10026. source: "./media/characters/mira-al-cul/lamp.svg",
  10027. extra: 1617 / 1559
  10028. }
  10029. },
  10030. front: {
  10031. height: math.unit(7, "feet"),
  10032. name: "Front",
  10033. image: {
  10034. source: "./media/characters/mira-al-cul/front.svg",
  10035. extra: 1044 / 990
  10036. }
  10037. },
  10038. },
  10039. [
  10040. {
  10041. name: "Heavily Restricted",
  10042. height: math.unit(7 * 1559 / 989, "feet")
  10043. },
  10044. {
  10045. name: "Freshly Freed",
  10046. height: math.unit(50 * 1559 / 989, "feet")
  10047. },
  10048. {
  10049. name: "World Encompassing",
  10050. height: math.unit(10000 * 1559 / 989, "miles")
  10051. },
  10052. {
  10053. name: "Galactic",
  10054. height: math.unit(1.433 * 1559 / 989, "zettameters")
  10055. },
  10056. {
  10057. name: "Palmed Universe",
  10058. height: math.unit(6000 * 1559 / 989, "yottameters"),
  10059. default: true
  10060. },
  10061. {
  10062. name: "Multiversal Matriarch",
  10063. height: math.unit(8.87e10, "yottameters")
  10064. },
  10065. {
  10066. name: "Void Mother",
  10067. height: math.unit(3.14e110, "yottaparsecs")
  10068. },
  10069. {
  10070. name: "Toying with Transcendence",
  10071. height: math.unit(1e307, "meters")
  10072. },
  10073. ]
  10074. ))
  10075. characterMakers.push(() => makeCharacter(
  10076. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  10077. {
  10078. front: {
  10079. height: math.unit(17 + 1 / 12, "feet"),
  10080. weight: math.unit(476.2 * 5, "lbs"),
  10081. name: "Front",
  10082. image: {
  10083. source: "./media/characters/kuro-shi-uchū/front.svg",
  10084. extra: 2329 / 1835,
  10085. bottom: 0.02
  10086. }
  10087. },
  10088. },
  10089. [
  10090. {
  10091. name: "Micro",
  10092. height: math.unit(2, "inches")
  10093. },
  10094. {
  10095. name: "Normal",
  10096. height: math.unit(12, "meters")
  10097. },
  10098. {
  10099. name: "Planetary",
  10100. height: math.unit(0.00929, "AU"),
  10101. default: true
  10102. },
  10103. {
  10104. name: "Universal",
  10105. height: math.unit(20, "gigaparsecs")
  10106. },
  10107. ]
  10108. ))
  10109. characterMakers.push(() => makeCharacter(
  10110. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  10111. {
  10112. front: {
  10113. height: math.unit(5 + 2 / 12, "feet"),
  10114. weight: math.unit(120, "lbs"),
  10115. name: "Front",
  10116. image: {
  10117. source: "./media/characters/katherine/front.svg",
  10118. extra: 2075 / 1969
  10119. }
  10120. },
  10121. dress: {
  10122. height: math.unit(5 + 2 / 12, "feet"),
  10123. weight: math.unit(120, "lbs"),
  10124. name: "Dress",
  10125. image: {
  10126. source: "./media/characters/katherine/dress.svg",
  10127. extra: 2258 / 2064
  10128. }
  10129. },
  10130. },
  10131. [
  10132. {
  10133. name: "Micro",
  10134. height: math.unit(1, "inches"),
  10135. default: true
  10136. },
  10137. {
  10138. name: "Normal",
  10139. height: math.unit(5 + 2 / 12, "feet")
  10140. },
  10141. {
  10142. name: "Macro",
  10143. height: math.unit(100, "meters")
  10144. },
  10145. {
  10146. name: "Megamacro",
  10147. height: math.unit(80, "miles")
  10148. },
  10149. ]
  10150. ))
  10151. characterMakers.push(() => makeCharacter(
  10152. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10153. {
  10154. front: {
  10155. height: math.unit(7 + 8 / 12, "feet"),
  10156. weight: math.unit(250, "lbs"),
  10157. name: "Front",
  10158. image: {
  10159. source: "./media/characters/yevis/front.svg",
  10160. extra: 1938 / 1755
  10161. }
  10162. }
  10163. },
  10164. [
  10165. {
  10166. name: "Mortal",
  10167. height: math.unit(7 + 8 / 12, "feet")
  10168. },
  10169. {
  10170. name: "Battle",
  10171. height: math.unit(25 + 11 / 12, "feet")
  10172. },
  10173. {
  10174. name: "Wrath",
  10175. height: math.unit(1654 + 11 / 12, "feet")
  10176. },
  10177. {
  10178. name: "Planet Destroyer",
  10179. height: math.unit(12000, "miles")
  10180. },
  10181. {
  10182. name: "Galaxy Conqueror",
  10183. height: math.unit(1.45, "zettameters"),
  10184. default: true
  10185. },
  10186. {
  10187. name: "Universal War",
  10188. height: math.unit(184, "gigaparsecs")
  10189. },
  10190. {
  10191. name: "Eternity War",
  10192. height: math.unit(1.98e55, "yottaparsecs")
  10193. },
  10194. ]
  10195. ))
  10196. characterMakers.push(() => makeCharacter(
  10197. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10198. {
  10199. front: {
  10200. height: math.unit(5 + 8 / 12, "feet"),
  10201. weight: math.unit(63, "kg"),
  10202. name: "Front",
  10203. image: {
  10204. source: "./media/characters/xavier/front.svg",
  10205. extra: 944 / 883
  10206. }
  10207. },
  10208. frontStretch: {
  10209. height: math.unit(5 + 8 / 12, "feet"),
  10210. weight: math.unit(63, "kg"),
  10211. name: "Stretching",
  10212. image: {
  10213. source: "./media/characters/xavier/front-stretch.svg",
  10214. extra: 962 / 820
  10215. }
  10216. },
  10217. },
  10218. [
  10219. {
  10220. name: "Normal",
  10221. height: math.unit(5 + 8 / 12, "feet")
  10222. },
  10223. {
  10224. name: "Macro",
  10225. height: math.unit(100, "meters"),
  10226. default: true
  10227. },
  10228. {
  10229. name: "McLargeHuge",
  10230. height: math.unit(10, "miles")
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(5 + 5 / 12, "feet"),
  10239. weight: math.unit(150, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/joshii/front.svg",
  10243. extra: 765 / 653,
  10244. bottom: 51 / 816
  10245. }
  10246. },
  10247. foot: {
  10248. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10249. name: "Foot",
  10250. image: {
  10251. source: "./media/characters/joshii/foot.svg"
  10252. }
  10253. },
  10254. },
  10255. [
  10256. {
  10257. name: "Micro",
  10258. height: math.unit(2, "inches")
  10259. },
  10260. {
  10261. name: "Normal",
  10262. height: math.unit(5 + 5 / 12, "feet")
  10263. },
  10264. {
  10265. name: "Macro",
  10266. height: math.unit(785, "feet"),
  10267. default: true
  10268. },
  10269. {
  10270. name: "Megamacro",
  10271. height: math.unit(24.5, "miles")
  10272. },
  10273. ]
  10274. ))
  10275. characterMakers.push(() => makeCharacter(
  10276. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10277. {
  10278. front: {
  10279. height: math.unit(6, "feet"),
  10280. weight: math.unit(150, "lb"),
  10281. name: "Front",
  10282. image: {
  10283. source: "./media/characters/goddess-elizabeth/front.svg",
  10284. extra: 1800 / 1525,
  10285. bottom: 0.005
  10286. }
  10287. },
  10288. foot: {
  10289. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10290. name: "Foot",
  10291. image: {
  10292. source: "./media/characters/goddess-elizabeth/foot.svg"
  10293. }
  10294. },
  10295. mouth: {
  10296. height: math.unit(6, "feet"),
  10297. name: "Mouth",
  10298. image: {
  10299. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10300. }
  10301. },
  10302. },
  10303. [
  10304. {
  10305. name: "Micro",
  10306. height: math.unit(12, "feet")
  10307. },
  10308. {
  10309. name: "Normal",
  10310. height: math.unit(80, "miles"),
  10311. default: true
  10312. },
  10313. {
  10314. name: "Macro",
  10315. height: math.unit(15000, "parsecs")
  10316. },
  10317. ]
  10318. ))
  10319. characterMakers.push(() => makeCharacter(
  10320. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10321. {
  10322. front: {
  10323. height: math.unit(5 + 9 / 12, "feet"),
  10324. weight: math.unit(144, "lb"),
  10325. name: "Front",
  10326. image: {
  10327. source: "./media/characters/kara/front.svg"
  10328. }
  10329. },
  10330. feet: {
  10331. height: math.unit(6 / 6.765, "feet"),
  10332. name: "Kara's Feet",
  10333. rename: true,
  10334. image: {
  10335. source: "./media/characters/kara/feet.svg"
  10336. }
  10337. },
  10338. },
  10339. [
  10340. {
  10341. name: "Normal",
  10342. height: math.unit(5 + 9 / 12, "feet")
  10343. },
  10344. {
  10345. name: "Macro",
  10346. height: math.unit(174, "feet"),
  10347. default: true
  10348. },
  10349. ]
  10350. ))
  10351. characterMakers.push(() => makeCharacter(
  10352. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10353. {
  10354. front: {
  10355. height: math.unit(18, "feet"),
  10356. weight: math.unit(4050, "lb"),
  10357. name: "Front",
  10358. image: {
  10359. source: "./media/characters/tyrone/front.svg",
  10360. extra: 2405 / 2270,
  10361. bottom: 182 / 2587
  10362. }
  10363. },
  10364. },
  10365. [
  10366. {
  10367. name: "Normal",
  10368. height: math.unit(18, "feet"),
  10369. default: true
  10370. },
  10371. {
  10372. name: "Macro",
  10373. height: math.unit(300, "feet")
  10374. },
  10375. {
  10376. name: "Megamacro",
  10377. height: math.unit(15, "km")
  10378. },
  10379. {
  10380. name: "Gigamacro",
  10381. height: math.unit(500, "km")
  10382. },
  10383. {
  10384. name: "Teramacro",
  10385. height: math.unit(0.5, "gigameters")
  10386. },
  10387. {
  10388. name: "Omnimacro",
  10389. height: math.unit(1e252, "yottauniverse")
  10390. },
  10391. ]
  10392. ))
  10393. characterMakers.push(() => makeCharacter(
  10394. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10395. {
  10396. front: {
  10397. height: math.unit(7 + 8 / 12, "feet"),
  10398. weight: math.unit(120, "lb"),
  10399. name: "Front",
  10400. image: {
  10401. source: "./media/characters/danny/front.svg",
  10402. extra: 1490 / 1350
  10403. }
  10404. },
  10405. back: {
  10406. height: math.unit(7 + 8 / 12, "feet"),
  10407. weight: math.unit(120, "lb"),
  10408. name: "Back",
  10409. image: {
  10410. source: "./media/characters/danny/back.svg",
  10411. extra: 1490 / 1350
  10412. }
  10413. },
  10414. },
  10415. [
  10416. {
  10417. name: "Normal",
  10418. height: math.unit(7 + 8 / 12, "feet"),
  10419. default: true
  10420. },
  10421. ]
  10422. ))
  10423. characterMakers.push(() => makeCharacter(
  10424. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10425. {
  10426. front: {
  10427. height: math.unit(3.5, "inches"),
  10428. weight: math.unit(19, "grams"),
  10429. name: "Front",
  10430. image: {
  10431. source: "./media/characters/mallow/front.svg",
  10432. extra: 471 / 431
  10433. }
  10434. },
  10435. back: {
  10436. height: math.unit(3.5, "inches"),
  10437. weight: math.unit(19, "grams"),
  10438. name: "Back",
  10439. image: {
  10440. source: "./media/characters/mallow/back.svg",
  10441. extra: 471 / 431
  10442. }
  10443. },
  10444. },
  10445. [
  10446. {
  10447. name: "Normal",
  10448. height: math.unit(3.5, "inches"),
  10449. default: true
  10450. },
  10451. ]
  10452. ))
  10453. characterMakers.push(() => makeCharacter(
  10454. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10455. {
  10456. front: {
  10457. height: math.unit(9, "feet"),
  10458. weight: math.unit(230, "kg"),
  10459. name: "Front",
  10460. image: {
  10461. source: "./media/characters/starry-aqua/front.svg"
  10462. }
  10463. },
  10464. back: {
  10465. height: math.unit(9, "feet"),
  10466. weight: math.unit(230, "kg"),
  10467. name: "Back",
  10468. image: {
  10469. source: "./media/characters/starry-aqua/back.svg"
  10470. }
  10471. },
  10472. hand: {
  10473. height: math.unit(9 * 0.1168, "feet"),
  10474. name: "Hand",
  10475. image: {
  10476. source: "./media/characters/starry-aqua/hand.svg"
  10477. }
  10478. },
  10479. foot: {
  10480. height: math.unit(9 * 0.18, "feet"),
  10481. name: "Foot",
  10482. image: {
  10483. source: "./media/characters/starry-aqua/foot.svg"
  10484. }
  10485. }
  10486. },
  10487. [
  10488. {
  10489. name: "Micro",
  10490. height: math.unit(3, "inches")
  10491. },
  10492. {
  10493. name: "Normal",
  10494. height: math.unit(9, "feet")
  10495. },
  10496. {
  10497. name: "Macro",
  10498. height: math.unit(300, "feet"),
  10499. default: true
  10500. },
  10501. {
  10502. name: "Megamacro",
  10503. height: math.unit(3200, "feet")
  10504. }
  10505. ]
  10506. ))
  10507. characterMakers.push(() => makeCharacter(
  10508. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10509. {
  10510. front: {
  10511. height: math.unit(15, "feet"),
  10512. weight: math.unit(5026, "lb"),
  10513. name: "Front",
  10514. image: {
  10515. source: "./media/characters/luka-towers/front.svg",
  10516. extra: 1269/1133,
  10517. bottom: 51/1320
  10518. }
  10519. },
  10520. },
  10521. [
  10522. {
  10523. name: "Normal",
  10524. height: math.unit(15, "feet"),
  10525. default: true
  10526. },
  10527. {
  10528. name: "Minimacro",
  10529. height: math.unit(25, "feet")
  10530. },
  10531. {
  10532. name: "Macro",
  10533. height: math.unit(320, "feet")
  10534. },
  10535. {
  10536. name: "Megamacro",
  10537. height: math.unit(35000, "feet")
  10538. },
  10539. {
  10540. name: "Gigamacro",
  10541. height: math.unit(4000, "miles")
  10542. },
  10543. {
  10544. name: "Teramacro",
  10545. height: math.unit(15000, "miles")
  10546. },
  10547. ]
  10548. ))
  10549. characterMakers.push(() => makeCharacter(
  10550. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10551. {
  10552. front: {
  10553. height: math.unit(6, "feet"),
  10554. weight: math.unit(150, "lb"),
  10555. name: "Front",
  10556. image: {
  10557. source: "./media/characters/natalie-nightring/front.svg",
  10558. extra: 1,
  10559. bottom: 0.06
  10560. }
  10561. },
  10562. },
  10563. [
  10564. {
  10565. name: "Uh Oh",
  10566. height: math.unit(0.1, "mm")
  10567. },
  10568. {
  10569. name: "Small",
  10570. height: math.unit(3, "inches")
  10571. },
  10572. {
  10573. name: "Human Scale",
  10574. height: math.unit(6, "feet")
  10575. },
  10576. {
  10577. name: "Librarian",
  10578. height: math.unit(50, "feet"),
  10579. default: true
  10580. },
  10581. {
  10582. name: "Immense",
  10583. height: math.unit(200, "miles")
  10584. },
  10585. ]
  10586. ))
  10587. characterMakers.push(() => makeCharacter(
  10588. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10589. {
  10590. front: {
  10591. height: math.unit(6, "feet"),
  10592. weight: math.unit(180, "lbs"),
  10593. name: "Front",
  10594. image: {
  10595. source: "./media/characters/danni-rosie/front.svg",
  10596. extra: 1260 / 1128,
  10597. bottom: 0.022
  10598. }
  10599. },
  10600. },
  10601. [
  10602. {
  10603. name: "Micro",
  10604. height: math.unit(2, "inches"),
  10605. default: true
  10606. },
  10607. ]
  10608. ))
  10609. characterMakers.push(() => makeCharacter(
  10610. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10611. {
  10612. front: {
  10613. height: math.unit(5 + 9 / 12, "feet"),
  10614. weight: math.unit(220, "lb"),
  10615. name: "Front",
  10616. image: {
  10617. source: "./media/characters/samantha-kruse/front.svg",
  10618. extra: (985 / 935),
  10619. bottom: 0.03
  10620. }
  10621. },
  10622. frontUndressed: {
  10623. height: math.unit(5 + 9 / 12, "feet"),
  10624. weight: math.unit(220, "lb"),
  10625. name: "Front (Undressed)",
  10626. image: {
  10627. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10628. extra: (973 / 923),
  10629. bottom: 0.025
  10630. }
  10631. },
  10632. fat: {
  10633. height: math.unit(5 + 9 / 12, "feet"),
  10634. weight: math.unit(900, "lb"),
  10635. name: "Front (Fat)",
  10636. image: {
  10637. source: "./media/characters/samantha-kruse/fat.svg",
  10638. extra: 2688 / 2561
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Normal",
  10645. height: math.unit(5 + 9 / 12, "feet"),
  10646. default: true
  10647. }
  10648. ]
  10649. ))
  10650. characterMakers.push(() => makeCharacter(
  10651. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10652. {
  10653. back: {
  10654. height: math.unit(5 + 4 / 12, "feet"),
  10655. weight: math.unit(4963, "lb"),
  10656. name: "Back",
  10657. image: {
  10658. source: "./media/characters/amelia-rosie/back.svg",
  10659. extra: 1113 / 963,
  10660. bottom: 0.01
  10661. }
  10662. },
  10663. },
  10664. [
  10665. {
  10666. name: "Level 0",
  10667. height: math.unit(5 + 4 / 12, "feet")
  10668. },
  10669. {
  10670. name: "Level 1",
  10671. height: math.unit(164597, "feet"),
  10672. default: true
  10673. },
  10674. {
  10675. name: "Level 2",
  10676. height: math.unit(956243, "miles")
  10677. },
  10678. {
  10679. name: "Level 3",
  10680. height: math.unit(29421709423, "miles")
  10681. },
  10682. {
  10683. name: "Level 4",
  10684. height: math.unit(154, "lightyears")
  10685. },
  10686. {
  10687. name: "Level 5",
  10688. height: math.unit(4738272, "lightyears")
  10689. },
  10690. {
  10691. name: "Level 6",
  10692. height: math.unit(145787152896, "lightyears")
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10698. {
  10699. front: {
  10700. height: math.unit(5 + 11 / 12, "feet"),
  10701. weight: math.unit(65, "kg"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/rook-kitara/front.svg",
  10705. extra: 1347 / 1274,
  10706. bottom: 0.005
  10707. }
  10708. },
  10709. },
  10710. [
  10711. {
  10712. name: "Totally Unfair",
  10713. height: math.unit(1.8, "mm")
  10714. },
  10715. {
  10716. name: "Lap Rookie",
  10717. height: math.unit(1.4, "feet")
  10718. },
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(5 + 11 / 12, "feet"),
  10722. default: true
  10723. },
  10724. {
  10725. name: "How Did This Happen",
  10726. height: math.unit(80, "miles")
  10727. }
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10732. {
  10733. front: {
  10734. height: math.unit(7, "feet"),
  10735. weight: math.unit(300, "lb"),
  10736. name: "Front",
  10737. image: {
  10738. source: "./media/characters/pisces/front.svg",
  10739. extra: 2255 / 2115,
  10740. bottom: 0.03
  10741. }
  10742. },
  10743. back: {
  10744. height: math.unit(7, "feet"),
  10745. weight: math.unit(300, "lb"),
  10746. name: "Back",
  10747. image: {
  10748. source: "./media/characters/pisces/back.svg",
  10749. extra: 2146 / 2055,
  10750. bottom: 0.04
  10751. }
  10752. },
  10753. },
  10754. [
  10755. {
  10756. name: "Normal",
  10757. height: math.unit(7, "feet"),
  10758. default: true
  10759. },
  10760. {
  10761. name: "Swimming Pool",
  10762. height: math.unit(12.2, "meters")
  10763. },
  10764. {
  10765. name: "Olympic Swimming Pool",
  10766. height: math.unit(56.3, "meters")
  10767. },
  10768. {
  10769. name: "Lake Superior",
  10770. height: math.unit(93900, "meters")
  10771. },
  10772. {
  10773. name: "Mediterranean Sea",
  10774. height: math.unit(644457, "meters")
  10775. },
  10776. {
  10777. name: "World's Oceans",
  10778. height: math.unit(4567491, "meters")
  10779. },
  10780. ]
  10781. ))
  10782. characterMakers.push(() => makeCharacter(
  10783. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10784. {
  10785. front: {
  10786. height: math.unit(2.3, "meters"),
  10787. weight: math.unit(120, "kg"),
  10788. name: "Front",
  10789. image: {
  10790. source: "./media/characters/zelas/front.svg"
  10791. }
  10792. },
  10793. side: {
  10794. height: math.unit(2.3, "meters"),
  10795. weight: math.unit(120, "kg"),
  10796. name: "Side",
  10797. image: {
  10798. source: "./media/characters/zelas/side.svg"
  10799. }
  10800. },
  10801. back: {
  10802. height: math.unit(2.3, "meters"),
  10803. weight: math.unit(120, "kg"),
  10804. name: "Back",
  10805. image: {
  10806. source: "./media/characters/zelas/back.svg"
  10807. }
  10808. },
  10809. foot: {
  10810. height: math.unit(1.116, "feet"),
  10811. name: "Foot",
  10812. image: {
  10813. source: "./media/characters/zelas/foot.svg"
  10814. }
  10815. },
  10816. },
  10817. [
  10818. {
  10819. name: "Normal",
  10820. height: math.unit(2.3, "meters")
  10821. },
  10822. {
  10823. name: "Macro",
  10824. height: math.unit(30, "meters"),
  10825. default: true
  10826. },
  10827. ]
  10828. ))
  10829. characterMakers.push(() => makeCharacter(
  10830. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10831. {
  10832. front: {
  10833. height: math.unit(1, "inch"),
  10834. weight: math.unit(0.21, "grams"),
  10835. name: "Front",
  10836. image: {
  10837. source: "./media/characters/talbot/front.svg",
  10838. extra: 594 / 544
  10839. }
  10840. },
  10841. },
  10842. [
  10843. {
  10844. name: "Micro",
  10845. height: math.unit(1, "inch"),
  10846. default: true
  10847. },
  10848. ]
  10849. ))
  10850. characterMakers.push(() => makeCharacter(
  10851. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10852. {
  10853. front: {
  10854. height: math.unit(3 + 3 / 12, "feet"),
  10855. weight: math.unit(51.8, "lb"),
  10856. name: "Front",
  10857. image: {
  10858. source: "./media/characters/fliss/front.svg",
  10859. extra: 840 / 640
  10860. }
  10861. },
  10862. },
  10863. [
  10864. {
  10865. name: "Teeny Tiny",
  10866. height: math.unit(1, "mm")
  10867. },
  10868. {
  10869. name: "Small",
  10870. height: math.unit(1, "inch"),
  10871. default: true
  10872. },
  10873. {
  10874. name: "Standard Sylveon",
  10875. height: math.unit(3 + 3 / 12, "feet")
  10876. },
  10877. {
  10878. name: "Large Nuisance",
  10879. height: math.unit(33, "feet")
  10880. },
  10881. {
  10882. name: "City Filler",
  10883. height: math.unit(3000, "feet")
  10884. },
  10885. {
  10886. name: "New Horizon",
  10887. height: math.unit(6000, "miles")
  10888. },
  10889. ]
  10890. ))
  10891. characterMakers.push(() => makeCharacter(
  10892. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10893. {
  10894. front: {
  10895. height: math.unit(5, "cm"),
  10896. weight: math.unit(1.94, "g"),
  10897. name: "Front",
  10898. image: {
  10899. source: "./media/characters/fleta/front.svg",
  10900. extra: 835 / 803
  10901. }
  10902. },
  10903. back: {
  10904. height: math.unit(5, "cm"),
  10905. weight: math.unit(1.94, "g"),
  10906. name: "Back",
  10907. image: {
  10908. source: "./media/characters/fleta/back.svg",
  10909. extra: 835 / 803
  10910. }
  10911. },
  10912. },
  10913. [
  10914. {
  10915. name: "Micro",
  10916. height: math.unit(5, "cm"),
  10917. default: true
  10918. },
  10919. ]
  10920. ))
  10921. characterMakers.push(() => makeCharacter(
  10922. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10923. {
  10924. front: {
  10925. height: math.unit(6, "feet"),
  10926. weight: math.unit(225, "lb"),
  10927. name: "Front",
  10928. image: {
  10929. source: "./media/characters/dominic/front.svg",
  10930. extra: 1770 / 1620,
  10931. bottom: 0.025
  10932. }
  10933. },
  10934. back: {
  10935. height: math.unit(6, "feet"),
  10936. weight: math.unit(225, "lb"),
  10937. name: "Back",
  10938. image: {
  10939. source: "./media/characters/dominic/back.svg",
  10940. extra: 1745 / 1620,
  10941. bottom: 0.065
  10942. }
  10943. },
  10944. },
  10945. [
  10946. {
  10947. name: "Nano",
  10948. height: math.unit(0.1, "mm")
  10949. },
  10950. {
  10951. name: "Micro-",
  10952. height: math.unit(1, "mm")
  10953. },
  10954. {
  10955. name: "Micro",
  10956. height: math.unit(4, "inches")
  10957. },
  10958. {
  10959. name: "Normal",
  10960. height: math.unit(6 + 4 / 12, "feet"),
  10961. default: true
  10962. },
  10963. {
  10964. name: "Macro",
  10965. height: math.unit(115, "feet")
  10966. },
  10967. {
  10968. name: "Macro+",
  10969. height: math.unit(955, "feet")
  10970. },
  10971. {
  10972. name: "Megamacro",
  10973. height: math.unit(8990, "feet")
  10974. },
  10975. {
  10976. name: "Gigmacro",
  10977. height: math.unit(9310, "miles")
  10978. },
  10979. {
  10980. name: "Teramacro",
  10981. height: math.unit(1567005010, "miles")
  10982. },
  10983. {
  10984. name: "Examacro",
  10985. height: math.unit(1425, "parsecs")
  10986. },
  10987. ]
  10988. ))
  10989. characterMakers.push(() => makeCharacter(
  10990. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10991. {
  10992. front: {
  10993. height: math.unit(400, "feet"),
  10994. weight: math.unit(44444444, "lb"),
  10995. name: "Front",
  10996. image: {
  10997. source: "./media/characters/major-colonel/front.svg"
  10998. }
  10999. },
  11000. back: {
  11001. height: math.unit(400, "feet"),
  11002. weight: math.unit(44444444, "lb"),
  11003. name: "Back",
  11004. image: {
  11005. source: "./media/characters/major-colonel/back.svg"
  11006. }
  11007. },
  11008. },
  11009. [
  11010. {
  11011. name: "Macro",
  11012. height: math.unit(400, "feet"),
  11013. default: true
  11014. },
  11015. ]
  11016. ))
  11017. characterMakers.push(() => makeCharacter(
  11018. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  11019. {
  11020. catFront: {
  11021. height: math.unit(6, "feet"),
  11022. weight: math.unit(120, "lb"),
  11023. name: "Front (Cat Side)",
  11024. image: {
  11025. source: "./media/characters/axel-lycan/cat-front.svg",
  11026. extra: 430 / 402,
  11027. bottom: 43 / 472.35
  11028. }
  11029. },
  11030. catBack: {
  11031. height: math.unit(6, "feet"),
  11032. weight: math.unit(120, "lb"),
  11033. name: "Back (Cat Side)",
  11034. image: {
  11035. source: "./media/characters/axel-lycan/cat-back.svg",
  11036. extra: 447 / 419,
  11037. bottom: 23.3 / 469
  11038. }
  11039. },
  11040. wolfFront: {
  11041. height: math.unit(6, "feet"),
  11042. weight: math.unit(120, "lb"),
  11043. name: "Front (Wolf Side)",
  11044. image: {
  11045. source: "./media/characters/axel-lycan/wolf-front.svg",
  11046. extra: 485 / 456,
  11047. bottom: 19 / 504
  11048. }
  11049. },
  11050. wolfBack: {
  11051. height: math.unit(6, "feet"),
  11052. weight: math.unit(120, "lb"),
  11053. name: "Back (Wolf Side)",
  11054. image: {
  11055. source: "./media/characters/axel-lycan/wolf-back.svg",
  11056. extra: 475 / 438,
  11057. bottom: 39.2 / 514
  11058. }
  11059. },
  11060. },
  11061. [
  11062. {
  11063. name: "Macro",
  11064. height: math.unit(1, "km"),
  11065. default: true
  11066. },
  11067. ]
  11068. ))
  11069. characterMakers.push(() => makeCharacter(
  11070. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  11071. {
  11072. front: {
  11073. height: math.unit(5 + 9 / 12, "feet"),
  11074. weight: math.unit(175, "lb"),
  11075. name: "Front",
  11076. image: {
  11077. source: "./media/characters/vanrel-hyena/front.svg",
  11078. extra: 1086 / 1010,
  11079. bottom: 0.04
  11080. }
  11081. },
  11082. },
  11083. [
  11084. {
  11085. name: "Normal",
  11086. height: math.unit(5 + 9 / 12, "feet"),
  11087. default: true
  11088. },
  11089. ]
  11090. ))
  11091. characterMakers.push(() => makeCharacter(
  11092. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  11093. {
  11094. front: {
  11095. height: math.unit(6, "feet"),
  11096. weight: math.unit(103, "lb"),
  11097. name: "Front",
  11098. image: {
  11099. source: "./media/characters/abbott-absol/front.svg",
  11100. extra: 765/694,
  11101. bottom: 47/812
  11102. }
  11103. },
  11104. },
  11105. [
  11106. {
  11107. name: "Megamicro",
  11108. height: math.unit(0.1, "mm")
  11109. },
  11110. {
  11111. name: "Micro",
  11112. height: math.unit(1, "inch")
  11113. },
  11114. {
  11115. name: "Normal",
  11116. height: math.unit(6, "feet"),
  11117. default: true
  11118. },
  11119. ]
  11120. ))
  11121. characterMakers.push(() => makeCharacter(
  11122. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11123. {
  11124. front: {
  11125. height: math.unit(6, "feet"),
  11126. weight: math.unit(264, "lb"),
  11127. name: "Front",
  11128. image: {
  11129. source: "./media/characters/hector/front.svg",
  11130. extra: 2280 / 2130,
  11131. bottom: 0.07
  11132. }
  11133. },
  11134. },
  11135. [
  11136. {
  11137. name: "Normal",
  11138. height: math.unit(12.25, "foot"),
  11139. default: true
  11140. },
  11141. {
  11142. name: "Macro",
  11143. height: math.unit(160, "feet")
  11144. },
  11145. ]
  11146. ))
  11147. characterMakers.push(() => makeCharacter(
  11148. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11149. {
  11150. front: {
  11151. height: math.unit(6, "feet"),
  11152. weight: math.unit(150, "lb"),
  11153. name: "Front",
  11154. image: {
  11155. source: "./media/characters/sal/front.svg",
  11156. extra: 1846 / 1699,
  11157. bottom: 0.04
  11158. }
  11159. },
  11160. },
  11161. [
  11162. {
  11163. name: "Megamacro",
  11164. height: math.unit(10, "miles"),
  11165. default: true
  11166. },
  11167. ]
  11168. ))
  11169. characterMakers.push(() => makeCharacter(
  11170. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11171. {
  11172. front: {
  11173. height: math.unit(3, "meters"),
  11174. weight: math.unit(450, "kg"),
  11175. name: "front",
  11176. image: {
  11177. source: "./media/characters/ranger/front.svg",
  11178. extra: 2401 / 2243,
  11179. bottom: 0.05
  11180. }
  11181. },
  11182. },
  11183. [
  11184. {
  11185. name: "Normal",
  11186. height: math.unit(3, "meters"),
  11187. default: true
  11188. },
  11189. ]
  11190. ))
  11191. characterMakers.push(() => makeCharacter(
  11192. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11193. {
  11194. front: {
  11195. height: math.unit(14, "feet"),
  11196. weight: math.unit(800, "kg"),
  11197. name: "Front",
  11198. image: {
  11199. source: "./media/characters/theresa/front.svg",
  11200. extra: 3575 / 3346,
  11201. bottom: 0.03
  11202. }
  11203. },
  11204. },
  11205. [
  11206. {
  11207. name: "Normal",
  11208. height: math.unit(14, "feet"),
  11209. default: true
  11210. },
  11211. ]
  11212. ))
  11213. characterMakers.push(() => makeCharacter(
  11214. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11215. {
  11216. front: {
  11217. height: math.unit(6, "feet"),
  11218. weight: math.unit(3, "kg"),
  11219. name: "Front",
  11220. image: {
  11221. source: "./media/characters/ine/front.svg",
  11222. extra: 678 / 539,
  11223. bottom: 0.023
  11224. }
  11225. },
  11226. },
  11227. [
  11228. {
  11229. name: "Normal",
  11230. height: math.unit(2.265, "feet"),
  11231. default: true
  11232. },
  11233. ]
  11234. ))
  11235. characterMakers.push(() => makeCharacter(
  11236. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11237. {
  11238. front: {
  11239. height: math.unit(5, "feet"),
  11240. weight: math.unit(30, "kg"),
  11241. name: "Front",
  11242. image: {
  11243. source: "./media/characters/vial/front.svg",
  11244. extra: 1365 / 1277,
  11245. bottom: 0.04
  11246. }
  11247. },
  11248. },
  11249. [
  11250. {
  11251. name: "Normal",
  11252. height: math.unit(5, "feet"),
  11253. default: true
  11254. },
  11255. ]
  11256. ))
  11257. characterMakers.push(() => makeCharacter(
  11258. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11259. {
  11260. side: {
  11261. height: math.unit(3.4, "meters"),
  11262. weight: math.unit(1000, "lb"),
  11263. name: "Side",
  11264. image: {
  11265. source: "./media/characters/rovoska/side.svg",
  11266. extra: 4403 / 1515
  11267. }
  11268. },
  11269. },
  11270. [
  11271. {
  11272. name: "Normal",
  11273. height: math.unit(3.4, "meters"),
  11274. default: true
  11275. },
  11276. ]
  11277. ))
  11278. characterMakers.push(() => makeCharacter(
  11279. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11280. {
  11281. front: {
  11282. height: math.unit(8, "feet"),
  11283. weight: math.unit(315, "lb"),
  11284. name: "Front",
  11285. image: {
  11286. source: "./media/characters/gunner-rotthbauer/front.svg"
  11287. }
  11288. },
  11289. back: {
  11290. height: math.unit(8, "feet"),
  11291. weight: math.unit(315, "lb"),
  11292. name: "Back",
  11293. image: {
  11294. source: "./media/characters/gunner-rotthbauer/back.svg"
  11295. }
  11296. },
  11297. },
  11298. [
  11299. {
  11300. name: "Micro",
  11301. height: math.unit(3.5, "inches")
  11302. },
  11303. {
  11304. name: "Normal",
  11305. height: math.unit(8, "feet"),
  11306. default: true
  11307. },
  11308. {
  11309. name: "Macro",
  11310. height: math.unit(250, "feet")
  11311. },
  11312. {
  11313. name: "Megamacro",
  11314. height: math.unit(1, "AU")
  11315. },
  11316. ]
  11317. ))
  11318. characterMakers.push(() => makeCharacter(
  11319. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11320. {
  11321. front: {
  11322. height: math.unit(5 + 5 / 12, "feet"),
  11323. weight: math.unit(140, "lb"),
  11324. name: "Front",
  11325. image: {
  11326. source: "./media/characters/allatia/front.svg",
  11327. extra: 1227 / 1180,
  11328. bottom: 0.027
  11329. }
  11330. },
  11331. },
  11332. [
  11333. {
  11334. name: "Normal",
  11335. height: math.unit(5 + 5 / 12, "feet")
  11336. },
  11337. {
  11338. name: "Macro",
  11339. height: math.unit(250, "feet"),
  11340. default: true
  11341. },
  11342. {
  11343. name: "Megamacro",
  11344. height: math.unit(8, "miles")
  11345. }
  11346. ]
  11347. ))
  11348. characterMakers.push(() => makeCharacter(
  11349. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11350. {
  11351. front: {
  11352. height: math.unit(6, "feet"),
  11353. weight: math.unit(120, "lb"),
  11354. name: "Front",
  11355. image: {
  11356. source: "./media/characters/tene/front.svg",
  11357. extra: 814/750,
  11358. bottom: 36/850
  11359. }
  11360. },
  11361. stomping: {
  11362. height: math.unit(2.025, "meters"),
  11363. weight: math.unit(120, "lb"),
  11364. name: "Stomping",
  11365. image: {
  11366. source: "./media/characters/tene/stomping.svg",
  11367. extra: 885/821,
  11368. bottom: 15/900
  11369. }
  11370. },
  11371. sitting: {
  11372. height: math.unit(1, "meter"),
  11373. weight: math.unit(120, "lb"),
  11374. name: "Sitting",
  11375. image: {
  11376. source: "./media/characters/tene/sitting.svg",
  11377. extra: 396/366,
  11378. bottom: 79/475
  11379. }
  11380. },
  11381. smiling: {
  11382. height: math.unit(1.2, "feet"),
  11383. name: "Smiling",
  11384. image: {
  11385. source: "./media/characters/tene/smiling.svg",
  11386. extra: 1364/1071,
  11387. bottom: 0/1364
  11388. }
  11389. },
  11390. smug: {
  11391. height: math.unit(1.3, "feet"),
  11392. name: "Smug",
  11393. image: {
  11394. source: "./media/characters/tene/smug.svg",
  11395. extra: 1323/1082,
  11396. bottom: 0/1323
  11397. }
  11398. },
  11399. feral: {
  11400. height: math.unit(3.9, "feet"),
  11401. weight: math.unit(250, "lb"),
  11402. name: "Feral",
  11403. image: {
  11404. source: "./media/characters/tene/feral.svg",
  11405. extra: 717 / 458,
  11406. bottom: 0.179
  11407. }
  11408. },
  11409. },
  11410. [
  11411. {
  11412. name: "Normal",
  11413. height: math.unit(6, "feet")
  11414. },
  11415. {
  11416. name: "Macro",
  11417. height: math.unit(300, "feet"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Megamacro",
  11422. height: math.unit(5, "miles")
  11423. },
  11424. ]
  11425. ))
  11426. characterMakers.push(() => makeCharacter(
  11427. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11428. {
  11429. side: {
  11430. height: math.unit(6, "feet"),
  11431. name: "Side",
  11432. image: {
  11433. source: "./media/characters/evander/side.svg",
  11434. extra: 877 / 477
  11435. }
  11436. },
  11437. },
  11438. [
  11439. {
  11440. name: "Normal",
  11441. height: math.unit(0.83, "meters"),
  11442. default: true
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(12, "feet"),
  11451. weight: math.unit(1000, "lb"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11455. extra: 1762 / 1611
  11456. }
  11457. },
  11458. back: {
  11459. height: math.unit(12, "feet"),
  11460. weight: math.unit(1000, "lb"),
  11461. name: "Back",
  11462. image: {
  11463. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11464. extra: 1762 / 1611
  11465. }
  11466. },
  11467. },
  11468. [
  11469. {
  11470. name: "Normal",
  11471. height: math.unit(12, "feet"),
  11472. default: true
  11473. },
  11474. {
  11475. name: "Kaiju",
  11476. height: math.unit(150, "feet")
  11477. },
  11478. ]
  11479. ))
  11480. characterMakers.push(() => makeCharacter(
  11481. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11482. {
  11483. front: {
  11484. height: math.unit(6, "feet"),
  11485. weight: math.unit(150, "lb"),
  11486. name: "Front",
  11487. image: {
  11488. source: "./media/characters/zero-alurus/front.svg"
  11489. }
  11490. },
  11491. back: {
  11492. height: math.unit(6, "feet"),
  11493. weight: math.unit(150, "lb"),
  11494. name: "Back",
  11495. image: {
  11496. source: "./media/characters/zero-alurus/back.svg"
  11497. }
  11498. },
  11499. },
  11500. [
  11501. {
  11502. name: "Normal",
  11503. height: math.unit(5 + 10 / 12, "feet")
  11504. },
  11505. {
  11506. name: "Macro",
  11507. height: math.unit(60, "feet"),
  11508. default: true
  11509. },
  11510. {
  11511. name: "Macro+",
  11512. height: math.unit(450, "feet")
  11513. },
  11514. ]
  11515. ))
  11516. characterMakers.push(() => makeCharacter(
  11517. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11518. {
  11519. front: {
  11520. height: math.unit(6, "feet"),
  11521. weight: math.unit(200, "lb"),
  11522. name: "Front",
  11523. image: {
  11524. source: "./media/characters/mega-shi/front.svg",
  11525. extra: 1279 / 1250,
  11526. bottom: 0.02
  11527. }
  11528. },
  11529. back: {
  11530. height: math.unit(6, "feet"),
  11531. weight: math.unit(200, "lb"),
  11532. name: "Back",
  11533. image: {
  11534. source: "./media/characters/mega-shi/back.svg",
  11535. extra: 1279 / 1250,
  11536. bottom: 0.02
  11537. }
  11538. },
  11539. },
  11540. [
  11541. {
  11542. name: "Micro",
  11543. height: math.unit(16 + 6 / 12, "feet")
  11544. },
  11545. {
  11546. name: "Third Dimension",
  11547. height: math.unit(40, "meters")
  11548. },
  11549. {
  11550. name: "Normal",
  11551. height: math.unit(660, "feet"),
  11552. default: true
  11553. },
  11554. {
  11555. name: "Megamacro",
  11556. height: math.unit(10, "miles")
  11557. },
  11558. {
  11559. name: "Planetary Launch",
  11560. height: math.unit(500, "miles")
  11561. },
  11562. {
  11563. name: "Interstellar",
  11564. height: math.unit(1e9, "miles")
  11565. },
  11566. {
  11567. name: "Leaving the Universe",
  11568. height: math.unit(1, "gigaparsec")
  11569. },
  11570. {
  11571. name: "Travelling Universes",
  11572. height: math.unit(30e15, "parsecs")
  11573. },
  11574. ]
  11575. ))
  11576. characterMakers.push(() => makeCharacter(
  11577. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11578. {
  11579. front: {
  11580. height: math.unit(5 + 4/12, "feet"),
  11581. weight: math.unit(120, "lb"),
  11582. name: "Front",
  11583. image: {
  11584. source: "./media/characters/odyssey/front.svg",
  11585. extra: 1747/1571,
  11586. bottom: 47/1794
  11587. }
  11588. },
  11589. side: {
  11590. height: math.unit(5.1, "feet"),
  11591. weight: math.unit(120, "lb"),
  11592. name: "Side",
  11593. image: {
  11594. source: "./media/characters/odyssey/side.svg",
  11595. extra: 1847/1619,
  11596. bottom: 47/1894
  11597. }
  11598. },
  11599. lounging: {
  11600. height: math.unit(1.464, "feet"),
  11601. weight: math.unit(120, "lb"),
  11602. name: "Lounging",
  11603. image: {
  11604. source: "./media/characters/odyssey/lounging.svg",
  11605. extra: 1235/837,
  11606. bottom: 551/1786
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Normal",
  11613. height: math.unit(5 + 4 / 12, "feet")
  11614. },
  11615. {
  11616. name: "Macro",
  11617. height: math.unit(1, "km")
  11618. },
  11619. {
  11620. name: "Megamacro",
  11621. height: math.unit(3000, "km")
  11622. },
  11623. {
  11624. name: "Gigamacro",
  11625. height: math.unit(1, "AU"),
  11626. default: true
  11627. },
  11628. {
  11629. name: "Omniversal",
  11630. height: math.unit(100e14, "lightyears")
  11631. },
  11632. ]
  11633. ))
  11634. characterMakers.push(() => makeCharacter(
  11635. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11636. {
  11637. front: {
  11638. height: math.unit(5 + 10/12, "feet"),
  11639. name: "Front",
  11640. image: {
  11641. source: "./media/characters/mekuto/front.svg",
  11642. extra: 875/835,
  11643. bottom: 46/921
  11644. }
  11645. },
  11646. },
  11647. [
  11648. {
  11649. name: "Minimicro",
  11650. height: math.unit(0.2, "inches")
  11651. },
  11652. {
  11653. name: "Micro",
  11654. height: math.unit(1.5, "inches")
  11655. },
  11656. {
  11657. name: "Normal",
  11658. height: math.unit(5 + 10 / 12, "feet"),
  11659. default: true
  11660. },
  11661. {
  11662. name: "Minimacro",
  11663. height: math.unit(17 + 9 / 12, "feet")
  11664. },
  11665. {
  11666. name: "Macro",
  11667. height: math.unit(177.5, "feet")
  11668. },
  11669. {
  11670. name: "Megamacro",
  11671. height: math.unit(152, "miles")
  11672. },
  11673. ]
  11674. ))
  11675. characterMakers.push(() => makeCharacter(
  11676. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11677. {
  11678. front: {
  11679. height: math.unit(6.5, "inches"),
  11680. weight: math.unit(13, "oz"),
  11681. name: "Front",
  11682. image: {
  11683. source: "./media/characters/dafydd-tomos/front.svg",
  11684. extra: 2990 / 2603,
  11685. bottom: 0.03
  11686. }
  11687. },
  11688. },
  11689. [
  11690. {
  11691. name: "Micro",
  11692. height: math.unit(6.5, "inches"),
  11693. default: true
  11694. },
  11695. ]
  11696. ))
  11697. characterMakers.push(() => makeCharacter(
  11698. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11699. {
  11700. front: {
  11701. height: math.unit(6, "feet"),
  11702. weight: math.unit(150, "lb"),
  11703. name: "Front",
  11704. image: {
  11705. source: "./media/characters/splinter/front.svg",
  11706. extra: 2990 / 2882,
  11707. bottom: 0.04
  11708. }
  11709. },
  11710. back: {
  11711. height: math.unit(6, "feet"),
  11712. weight: math.unit(150, "lb"),
  11713. name: "Back",
  11714. image: {
  11715. source: "./media/characters/splinter/back.svg",
  11716. extra: 2990 / 2882,
  11717. bottom: 0.04
  11718. }
  11719. },
  11720. },
  11721. [
  11722. {
  11723. name: "Normal",
  11724. height: math.unit(6, "feet")
  11725. },
  11726. {
  11727. name: "Macro",
  11728. height: math.unit(230, "meters"),
  11729. default: true
  11730. },
  11731. ]
  11732. ))
  11733. characterMakers.push(() => makeCharacter(
  11734. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11735. {
  11736. front: {
  11737. height: math.unit(4 + 10 / 12, "feet"),
  11738. weight: math.unit(480, "lb"),
  11739. name: "Front",
  11740. image: {
  11741. source: "./media/characters/snow-gabumon/front.svg",
  11742. extra: 1140 / 963,
  11743. bottom: 0.058
  11744. }
  11745. },
  11746. back: {
  11747. height: math.unit(4 + 10 / 12, "feet"),
  11748. weight: math.unit(480, "lb"),
  11749. name: "Back",
  11750. image: {
  11751. source: "./media/characters/snow-gabumon/back.svg",
  11752. extra: 1115 / 962,
  11753. bottom: 0.041
  11754. }
  11755. },
  11756. frontUndresed: {
  11757. height: math.unit(4 + 10 / 12, "feet"),
  11758. weight: math.unit(480, "lb"),
  11759. name: "Front (Undressed)",
  11760. image: {
  11761. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11762. extra: 1061 / 960,
  11763. bottom: 0.045
  11764. }
  11765. },
  11766. },
  11767. [
  11768. {
  11769. name: "Micro",
  11770. height: math.unit(1, "inch")
  11771. },
  11772. {
  11773. name: "Normal",
  11774. height: math.unit(4 + 10 / 12, "feet"),
  11775. default: true
  11776. },
  11777. {
  11778. name: "Macro",
  11779. height: math.unit(200, "feet")
  11780. },
  11781. {
  11782. name: "Megamacro",
  11783. height: math.unit(120, "miles")
  11784. },
  11785. {
  11786. name: "Gigamacro",
  11787. height: math.unit(9800, "miles")
  11788. },
  11789. ]
  11790. ))
  11791. characterMakers.push(() => makeCharacter(
  11792. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11793. {
  11794. front: {
  11795. height: math.unit(1.7, "meters"),
  11796. weight: math.unit(140, "lb"),
  11797. name: "Front",
  11798. image: {
  11799. source: "./media/characters/moody/front.svg",
  11800. extra: 3226 / 3007,
  11801. bottom: 0.087
  11802. }
  11803. },
  11804. },
  11805. [
  11806. {
  11807. name: "Micro",
  11808. height: math.unit(1, "mm")
  11809. },
  11810. {
  11811. name: "Normal",
  11812. height: math.unit(1.7, "meters"),
  11813. default: true
  11814. },
  11815. {
  11816. name: "Macro",
  11817. height: math.unit(80, "meters")
  11818. },
  11819. {
  11820. name: "Macro+",
  11821. height: math.unit(500, "meters")
  11822. },
  11823. ]
  11824. ))
  11825. characterMakers.push(() => makeCharacter(
  11826. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11827. {
  11828. front: {
  11829. height: math.unit(6, "feet"),
  11830. weight: math.unit(150, "lb"),
  11831. name: "Front",
  11832. image: {
  11833. source: "./media/characters/zyas/front.svg",
  11834. extra: 1180 / 1120,
  11835. bottom: 0.045
  11836. }
  11837. },
  11838. },
  11839. [
  11840. {
  11841. name: "Normal",
  11842. height: math.unit(10, "feet"),
  11843. default: true
  11844. },
  11845. {
  11846. name: "Macro",
  11847. height: math.unit(500, "feet")
  11848. },
  11849. {
  11850. name: "Megamacro",
  11851. height: math.unit(5, "miles")
  11852. },
  11853. {
  11854. name: "Teramacro",
  11855. height: math.unit(150000, "miles")
  11856. },
  11857. ]
  11858. ))
  11859. characterMakers.push(() => makeCharacter(
  11860. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11861. {
  11862. front: {
  11863. height: math.unit(6, "feet"),
  11864. weight: math.unit(150, "lb"),
  11865. name: "Front",
  11866. image: {
  11867. source: "./media/characters/cuon/front.svg",
  11868. extra: 1390 / 1320,
  11869. bottom: 0.008
  11870. }
  11871. },
  11872. },
  11873. [
  11874. {
  11875. name: "Micro",
  11876. height: math.unit(3, "inches")
  11877. },
  11878. {
  11879. name: "Normal",
  11880. height: math.unit(18 + 9 / 12, "feet"),
  11881. default: true
  11882. },
  11883. {
  11884. name: "Macro",
  11885. height: math.unit(360, "feet")
  11886. },
  11887. {
  11888. name: "Megamacro",
  11889. height: math.unit(360, "miles")
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(2.4, "meters"),
  11898. weight: math.unit(70, "kg"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/nyanuxk/front.svg",
  11902. extra: 1172 / 1084,
  11903. bottom: 0.065
  11904. }
  11905. },
  11906. side: {
  11907. height: math.unit(2.4, "meters"),
  11908. weight: math.unit(70, "kg"),
  11909. name: "Side",
  11910. image: {
  11911. source: "./media/characters/nyanuxk/side.svg",
  11912. extra: 1190 / 1132,
  11913. bottom: 0.007
  11914. }
  11915. },
  11916. back: {
  11917. height: math.unit(2.4, "meters"),
  11918. weight: math.unit(70, "kg"),
  11919. name: "Back",
  11920. image: {
  11921. source: "./media/characters/nyanuxk/back.svg",
  11922. extra: 1200 / 1141,
  11923. bottom: 0.015
  11924. }
  11925. },
  11926. foot: {
  11927. height: math.unit(0.52, "meters"),
  11928. name: "Foot",
  11929. image: {
  11930. source: "./media/characters/nyanuxk/foot.svg"
  11931. }
  11932. },
  11933. },
  11934. [
  11935. {
  11936. name: "Micro",
  11937. height: math.unit(2, "cm")
  11938. },
  11939. {
  11940. name: "Normal",
  11941. height: math.unit(2.4, "meters"),
  11942. default: true
  11943. },
  11944. {
  11945. name: "Smaller Macro",
  11946. height: math.unit(120, "meters")
  11947. },
  11948. {
  11949. name: "Bigger Macro",
  11950. height: math.unit(1.2, "km")
  11951. },
  11952. {
  11953. name: "Megamacro",
  11954. height: math.unit(15, "kilometers")
  11955. },
  11956. {
  11957. name: "Gigamacro",
  11958. height: math.unit(2000, "km")
  11959. },
  11960. {
  11961. name: "Teramacro",
  11962. height: math.unit(500000, "km")
  11963. },
  11964. ]
  11965. ))
  11966. characterMakers.push(() => makeCharacter(
  11967. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11968. {
  11969. side: {
  11970. height: math.unit(6, "feet"),
  11971. name: "Side",
  11972. image: {
  11973. source: "./media/characters/ailbhe/side.svg",
  11974. extra: 757 / 464,
  11975. bottom: 0.041
  11976. }
  11977. },
  11978. },
  11979. [
  11980. {
  11981. name: "Normal",
  11982. height: math.unit(1.07, "meters"),
  11983. default: true
  11984. },
  11985. ]
  11986. ))
  11987. characterMakers.push(() => makeCharacter(
  11988. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11989. {
  11990. front: {
  11991. height: math.unit(6, "feet"),
  11992. weight: math.unit(120, "kg"),
  11993. name: "Front",
  11994. image: {
  11995. source: "./media/characters/zevulfius/front.svg",
  11996. extra: 965 / 903
  11997. }
  11998. },
  11999. side: {
  12000. height: math.unit(6, "feet"),
  12001. weight: math.unit(120, "kg"),
  12002. name: "Side",
  12003. image: {
  12004. source: "./media/characters/zevulfius/side.svg",
  12005. extra: 939 / 900
  12006. }
  12007. },
  12008. back: {
  12009. height: math.unit(6, "feet"),
  12010. weight: math.unit(120, "kg"),
  12011. name: "Back",
  12012. image: {
  12013. source: "./media/characters/zevulfius/back.svg",
  12014. extra: 918 / 854,
  12015. bottom: 0.005
  12016. }
  12017. },
  12018. foot: {
  12019. height: math.unit(6 / 3.72, "feet"),
  12020. name: "Foot",
  12021. image: {
  12022. source: "./media/characters/zevulfius/foot.svg"
  12023. }
  12024. },
  12025. },
  12026. [
  12027. {
  12028. name: "Macro",
  12029. height: math.unit(750, "meters")
  12030. },
  12031. {
  12032. name: "Megamacro",
  12033. height: math.unit(20, "km"),
  12034. default: true
  12035. },
  12036. {
  12037. name: "Gigamacro",
  12038. height: math.unit(2000, "km")
  12039. },
  12040. {
  12041. name: "Teramacro",
  12042. height: math.unit(250000, "km")
  12043. },
  12044. ]
  12045. ))
  12046. characterMakers.push(() => makeCharacter(
  12047. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  12048. {
  12049. front: {
  12050. height: math.unit(100, "feet"),
  12051. weight: math.unit(350, "kg"),
  12052. name: "Front",
  12053. image: {
  12054. source: "./media/characters/rikes/front.svg",
  12055. extra: 1565 / 1483,
  12056. bottom: 0.017
  12057. }
  12058. },
  12059. },
  12060. [
  12061. {
  12062. name: "Macro",
  12063. height: math.unit(100, "feet"),
  12064. default: true
  12065. },
  12066. ]
  12067. ))
  12068. characterMakers.push(() => makeCharacter(
  12069. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  12070. {
  12071. front: {
  12072. height: math.unit(8, "feet"),
  12073. weight: math.unit(356, "lb"),
  12074. name: "Front",
  12075. image: {
  12076. source: "./media/characters/adam-silver-mane/front.svg",
  12077. extra: 1036/937,
  12078. bottom: 63/1099
  12079. }
  12080. },
  12081. side: {
  12082. height: math.unit(8, "feet"),
  12083. weight: math.unit(356, "lb"),
  12084. name: "Side",
  12085. image: {
  12086. source: "./media/characters/adam-silver-mane/side.svg",
  12087. extra: 997/901,
  12088. bottom: 59/1056
  12089. }
  12090. },
  12091. frontNsfw: {
  12092. height: math.unit(8, "feet"),
  12093. weight: math.unit(356, "lb"),
  12094. name: "Front (NSFW)",
  12095. image: {
  12096. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  12097. extra: 1036/937,
  12098. bottom: 63/1099
  12099. }
  12100. },
  12101. sideNsfw: {
  12102. height: math.unit(8, "feet"),
  12103. weight: math.unit(356, "lb"),
  12104. name: "Side (NSFW)",
  12105. image: {
  12106. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  12107. extra: 997/901,
  12108. bottom: 59/1056
  12109. }
  12110. },
  12111. dick: {
  12112. height: math.unit(2.1, "feet"),
  12113. name: "Dick",
  12114. image: {
  12115. source: "./media/characters/adam-silver-mane/dick.svg"
  12116. }
  12117. },
  12118. taur: {
  12119. height: math.unit(16, "feet"),
  12120. weight: math.unit(1500, "kg"),
  12121. name: "Taur",
  12122. image: {
  12123. source: "./media/characters/adam-silver-mane/taur.svg",
  12124. extra: 1713 / 1571,
  12125. bottom: 0.01
  12126. }
  12127. },
  12128. },
  12129. [
  12130. {
  12131. name: "Normal",
  12132. height: math.unit(8, "feet")
  12133. },
  12134. {
  12135. name: "Minimacro",
  12136. height: math.unit(80, "feet")
  12137. },
  12138. {
  12139. name: "MDA",
  12140. height: math.unit(80, "meters")
  12141. },
  12142. {
  12143. name: "Macro",
  12144. height: math.unit(800, "feet"),
  12145. default: true
  12146. },
  12147. {
  12148. name: "Megamacro",
  12149. height: math.unit(8000, "feet")
  12150. },
  12151. {
  12152. name: "Gigamacro",
  12153. height: math.unit(800, "miles")
  12154. },
  12155. {
  12156. name: "Teramacro",
  12157. height: math.unit(80000, "miles")
  12158. },
  12159. {
  12160. name: "Celestial",
  12161. height: math.unit(8e6, "miles")
  12162. },
  12163. {
  12164. name: "Star Dragon",
  12165. height: math.unit(800000, "parsecs")
  12166. },
  12167. {
  12168. name: "Godly",
  12169. height: math.unit(800, "teraparsecs")
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12175. {
  12176. front: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(150, "lb"),
  12179. name: "Front",
  12180. image: {
  12181. source: "./media/characters/ky'owin/front.svg",
  12182. extra: 3862/3053,
  12183. bottom: 74/3936
  12184. }
  12185. },
  12186. },
  12187. [
  12188. {
  12189. name: "Normal",
  12190. height: math.unit(6 + 8 / 12, "feet")
  12191. },
  12192. {
  12193. name: "Large",
  12194. height: math.unit(68, "feet")
  12195. },
  12196. {
  12197. name: "Macro",
  12198. height: math.unit(132, "feet")
  12199. },
  12200. {
  12201. name: "Macro+",
  12202. height: math.unit(340, "feet")
  12203. },
  12204. {
  12205. name: "Macro++",
  12206. height: math.unit(680, "feet"),
  12207. default: true
  12208. },
  12209. {
  12210. name: "Megamacro",
  12211. height: math.unit(1, "mile")
  12212. },
  12213. {
  12214. name: "Megamacro+",
  12215. height: math.unit(10, "miles")
  12216. },
  12217. ]
  12218. ))
  12219. characterMakers.push(() => makeCharacter(
  12220. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12221. {
  12222. front: {
  12223. height: math.unit(4, "feet"),
  12224. weight: math.unit(50, "lb"),
  12225. name: "Front",
  12226. image: {
  12227. source: "./media/characters/mal/front.svg",
  12228. extra: 785 / 724,
  12229. bottom: 0.07
  12230. }
  12231. },
  12232. },
  12233. [
  12234. {
  12235. name: "Micro",
  12236. height: math.unit(4, "inches")
  12237. },
  12238. {
  12239. name: "Normal",
  12240. height: math.unit(4, "feet"),
  12241. default: true
  12242. },
  12243. {
  12244. name: "Macro",
  12245. height: math.unit(200, "feet")
  12246. },
  12247. ]
  12248. ))
  12249. characterMakers.push(() => makeCharacter(
  12250. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12251. {
  12252. front: {
  12253. height: math.unit(6, "feet"),
  12254. weight: math.unit(150, "lb"),
  12255. name: "Front",
  12256. image: {
  12257. source: "./media/characters/jordan-deware/front.svg",
  12258. extra: 1191 / 1012
  12259. }
  12260. },
  12261. },
  12262. [
  12263. {
  12264. name: "Nano",
  12265. height: math.unit(0.01, "mm")
  12266. },
  12267. {
  12268. name: "Minimicro",
  12269. height: math.unit(1, "mm")
  12270. },
  12271. {
  12272. name: "Micro",
  12273. height: math.unit(0.5, "inches")
  12274. },
  12275. {
  12276. name: "Normal",
  12277. height: math.unit(4, "feet"),
  12278. default: true
  12279. },
  12280. {
  12281. name: "Minimacro",
  12282. height: math.unit(40, "meters")
  12283. },
  12284. {
  12285. name: "Small Macro",
  12286. height: math.unit(400, "meters")
  12287. },
  12288. {
  12289. name: "Macro",
  12290. height: math.unit(4, "miles")
  12291. },
  12292. {
  12293. name: "Megamacro",
  12294. height: math.unit(40, "miles")
  12295. },
  12296. {
  12297. name: "Megamacro+",
  12298. height: math.unit(400, "miles")
  12299. },
  12300. {
  12301. name: "Gigamacro",
  12302. height: math.unit(400000, "miles")
  12303. },
  12304. ]
  12305. ))
  12306. characterMakers.push(() => makeCharacter(
  12307. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12308. {
  12309. side: {
  12310. height: math.unit(6, "feet"),
  12311. weight: math.unit(150, "lb"),
  12312. name: "Side",
  12313. image: {
  12314. source: "./media/characters/kimiko/side.svg",
  12315. extra: 600 / 358
  12316. }
  12317. },
  12318. },
  12319. [
  12320. {
  12321. name: "Normal",
  12322. height: math.unit(15, "feet"),
  12323. default: true
  12324. },
  12325. {
  12326. name: "Macro",
  12327. height: math.unit(220, "feet")
  12328. },
  12329. {
  12330. name: "Macro+",
  12331. height: math.unit(1450, "feet")
  12332. },
  12333. {
  12334. name: "Megamacro",
  12335. height: math.unit(11500, "feet")
  12336. },
  12337. {
  12338. name: "Gigamacro",
  12339. height: math.unit(9500, "miles")
  12340. },
  12341. {
  12342. name: "Teramacro",
  12343. height: math.unit(2208005005, "miles")
  12344. },
  12345. {
  12346. name: "Examacro",
  12347. height: math.unit(2750, "parsecs")
  12348. },
  12349. {
  12350. name: "Zettamacro",
  12351. height: math.unit(101500, "parsecs")
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12357. {
  12358. front: {
  12359. height: math.unit(6, "feet"),
  12360. weight: math.unit(70, "kg"),
  12361. name: "Front",
  12362. image: {
  12363. source: "./media/characters/andrew-sleepy/front.svg"
  12364. }
  12365. },
  12366. side: {
  12367. height: math.unit(6, "feet"),
  12368. weight: math.unit(70, "kg"),
  12369. name: "Side",
  12370. image: {
  12371. source: "./media/characters/andrew-sleepy/side.svg"
  12372. }
  12373. },
  12374. },
  12375. [
  12376. {
  12377. name: "Micro",
  12378. height: math.unit(1, "mm"),
  12379. default: true
  12380. },
  12381. ]
  12382. ))
  12383. characterMakers.push(() => makeCharacter(
  12384. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12385. {
  12386. front: {
  12387. height: math.unit(6, "feet"),
  12388. weight: math.unit(150, "lb"),
  12389. name: "Front",
  12390. image: {
  12391. source: "./media/characters/judio/front.svg",
  12392. extra: 1258 / 1110
  12393. }
  12394. },
  12395. },
  12396. [
  12397. {
  12398. name: "Normal",
  12399. height: math.unit(5 + 6 / 12, "feet")
  12400. },
  12401. {
  12402. name: "Macro",
  12403. height: math.unit(1000, "feet"),
  12404. default: true
  12405. },
  12406. {
  12407. name: "Megamacro",
  12408. height: math.unit(10, "miles")
  12409. },
  12410. ]
  12411. ))
  12412. characterMakers.push(() => makeCharacter(
  12413. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12414. {
  12415. frontDressed: {
  12416. height: math.unit(6, "feet"),
  12417. weight: math.unit(68, "kg"),
  12418. name: "Front (Dressed)",
  12419. image: {
  12420. source: "./media/characters/nomaxice/front-dressed.svg",
  12421. extra: 1137/824,
  12422. bottom: 74/1211
  12423. }
  12424. },
  12425. frontShorts: {
  12426. height: math.unit(6, "feet"),
  12427. weight: math.unit(68, "kg"),
  12428. name: "Front (Shorts)",
  12429. image: {
  12430. source: "./media/characters/nomaxice/front-shorts.svg",
  12431. extra: 1137/824,
  12432. bottom: 74/1211
  12433. }
  12434. },
  12435. back: {
  12436. height: math.unit(6, "feet"),
  12437. weight: math.unit(68, "kg"),
  12438. name: "Back",
  12439. image: {
  12440. source: "./media/characters/nomaxice/back.svg",
  12441. extra: 822/786,
  12442. bottom: 39/861
  12443. }
  12444. },
  12445. hand: {
  12446. height: math.unit(0.565, "feet"),
  12447. name: "Hand",
  12448. image: {
  12449. source: "./media/characters/nomaxice/hand.svg"
  12450. }
  12451. },
  12452. foot: {
  12453. height: math.unit(1, "feet"),
  12454. name: "Foot",
  12455. image: {
  12456. source: "./media/characters/nomaxice/foot.svg"
  12457. }
  12458. },
  12459. },
  12460. [
  12461. {
  12462. name: "Micro",
  12463. height: math.unit(8, "cm")
  12464. },
  12465. {
  12466. name: "Norm",
  12467. height: math.unit(1.82, "m")
  12468. },
  12469. {
  12470. name: "Norm+",
  12471. height: math.unit(8.8, "feet"),
  12472. default: true
  12473. },
  12474. {
  12475. name: "Big",
  12476. height: math.unit(8, "meters")
  12477. },
  12478. {
  12479. name: "Macro",
  12480. height: math.unit(18, "meters")
  12481. },
  12482. {
  12483. name: "Macro+",
  12484. height: math.unit(88, "meters")
  12485. },
  12486. ]
  12487. ))
  12488. characterMakers.push(() => makeCharacter(
  12489. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12490. {
  12491. front: {
  12492. height: math.unit(12, "feet"),
  12493. weight: math.unit(1.5, "tons"),
  12494. name: "Front",
  12495. image: {
  12496. source: "./media/characters/dydros/front.svg",
  12497. extra: 863 / 800,
  12498. bottom: 0.015
  12499. }
  12500. },
  12501. back: {
  12502. height: math.unit(12, "feet"),
  12503. weight: math.unit(1.5, "tons"),
  12504. name: "Back",
  12505. image: {
  12506. source: "./media/characters/dydros/back.svg",
  12507. extra: 900 / 843,
  12508. bottom: 0.005
  12509. }
  12510. },
  12511. },
  12512. [
  12513. {
  12514. name: "Normal",
  12515. height: math.unit(12, "feet"),
  12516. default: true
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(100, "kg"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/riggi/front.svg",
  12529. extra: 5787 / 5303
  12530. }
  12531. },
  12532. hyper: {
  12533. height: math.unit(6 * 5 / 3, "feet"),
  12534. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12535. name: "Hyper",
  12536. image: {
  12537. source: "./media/characters/riggi/hyper.svg",
  12538. extra: 3595 / 3485
  12539. }
  12540. },
  12541. },
  12542. [
  12543. {
  12544. name: "Small Macro",
  12545. height: math.unit(50, "feet")
  12546. },
  12547. {
  12548. name: "Default",
  12549. height: math.unit(200, "feet"),
  12550. default: true
  12551. },
  12552. {
  12553. name: "Loom",
  12554. height: math.unit(10000, "feet")
  12555. },
  12556. {
  12557. name: "Cruising Altitude",
  12558. height: math.unit(30000, "feet")
  12559. },
  12560. {
  12561. name: "Megamacro",
  12562. height: math.unit(100, "miles")
  12563. },
  12564. {
  12565. name: "Continent Sized",
  12566. height: math.unit(2800, "miles")
  12567. },
  12568. {
  12569. name: "Earth Sized",
  12570. height: math.unit(8000, "miles")
  12571. },
  12572. ]
  12573. ))
  12574. characterMakers.push(() => makeCharacter(
  12575. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12576. {
  12577. front: {
  12578. height: math.unit(6, "feet"),
  12579. weight: math.unit(250, "lb"),
  12580. name: "Front",
  12581. image: {
  12582. source: "./media/characters/alexi/front.svg",
  12583. extra: 3483 / 3291,
  12584. bottom: 0.04
  12585. }
  12586. },
  12587. back: {
  12588. height: math.unit(6, "feet"),
  12589. weight: math.unit(250, "lb"),
  12590. name: "Back",
  12591. image: {
  12592. source: "./media/characters/alexi/back.svg",
  12593. extra: 3533 / 3356,
  12594. bottom: 0.021
  12595. }
  12596. },
  12597. frontTransforming: {
  12598. height: math.unit(8.58, "feet"),
  12599. weight: math.unit(1300, "lb"),
  12600. name: "Transforming",
  12601. image: {
  12602. source: "./media/characters/alexi/front-transforming.svg",
  12603. extra: 437 / 409,
  12604. bottom: 19 / 458.66
  12605. }
  12606. },
  12607. frontTransformed: {
  12608. height: math.unit(12.5, "feet"),
  12609. weight: math.unit(4000, "lb"),
  12610. name: "Transformed",
  12611. image: {
  12612. source: "./media/characters/alexi/front-transformed.svg",
  12613. extra: 639 / 614,
  12614. bottom: 30.55 / 671
  12615. }
  12616. },
  12617. },
  12618. [
  12619. {
  12620. name: "Normal",
  12621. height: math.unit(14, "feet"),
  12622. default: true
  12623. },
  12624. {
  12625. name: "Minimacro",
  12626. height: math.unit(30, "meters")
  12627. },
  12628. {
  12629. name: "Macro",
  12630. height: math.unit(500, "meters")
  12631. },
  12632. {
  12633. name: "Megamacro",
  12634. height: math.unit(9000, "km")
  12635. },
  12636. {
  12637. name: "Teramacro",
  12638. height: math.unit(384000, "km")
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(150, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/kayroo/front.svg",
  12651. extra: 1153 / 1038,
  12652. bottom: 0.06
  12653. }
  12654. },
  12655. foot: {
  12656. height: math.unit(6, "feet"),
  12657. weight: math.unit(150, "lb"),
  12658. name: "Foot",
  12659. image: {
  12660. source: "./media/characters/kayroo/foot.svg"
  12661. }
  12662. },
  12663. },
  12664. [
  12665. {
  12666. name: "Normal",
  12667. height: math.unit(8, "feet"),
  12668. default: true
  12669. },
  12670. {
  12671. name: "Minimacro",
  12672. height: math.unit(250, "feet")
  12673. },
  12674. {
  12675. name: "Macro",
  12676. height: math.unit(2800, "feet")
  12677. },
  12678. {
  12679. name: "Megamacro",
  12680. height: math.unit(5200, "feet")
  12681. },
  12682. {
  12683. name: "Gigamacro",
  12684. height: math.unit(27000, "feet")
  12685. },
  12686. {
  12687. name: "Omega",
  12688. height: math.unit(45000, "feet")
  12689. },
  12690. ]
  12691. ))
  12692. characterMakers.push(() => makeCharacter(
  12693. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12694. {
  12695. front: {
  12696. height: math.unit(18, "feet"),
  12697. weight: math.unit(5800, "lb"),
  12698. name: "Front",
  12699. image: {
  12700. source: "./media/characters/rhys/front.svg",
  12701. extra: 3386 / 3090,
  12702. bottom: 0.07
  12703. }
  12704. },
  12705. },
  12706. [
  12707. {
  12708. name: "Normal",
  12709. height: math.unit(18, "feet"),
  12710. default: true
  12711. },
  12712. {
  12713. name: "Working Size",
  12714. height: math.unit(200, "feet")
  12715. },
  12716. {
  12717. name: "Demolition Size",
  12718. height: math.unit(2000, "feet")
  12719. },
  12720. {
  12721. name: "Maximum Licensed Size",
  12722. height: math.unit(5, "miles")
  12723. },
  12724. {
  12725. name: "Maximum Observed Size",
  12726. height: math.unit(10, "yottameters")
  12727. },
  12728. ]
  12729. ))
  12730. characterMakers.push(() => makeCharacter(
  12731. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12732. {
  12733. front: {
  12734. height: math.unit(6, "feet"),
  12735. weight: math.unit(250, "lb"),
  12736. name: "Front",
  12737. image: {
  12738. source: "./media/characters/toto/front.svg",
  12739. extra: 527 / 479,
  12740. bottom: 0.05
  12741. }
  12742. },
  12743. },
  12744. [
  12745. {
  12746. name: "Micro",
  12747. height: math.unit(3, "feet")
  12748. },
  12749. {
  12750. name: "Normal",
  12751. height: math.unit(10, "feet")
  12752. },
  12753. {
  12754. name: "Macro",
  12755. height: math.unit(150, "feet"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Megamacro",
  12760. height: math.unit(1200, "feet")
  12761. },
  12762. ]
  12763. ))
  12764. characterMakers.push(() => makeCharacter(
  12765. { name: "King", species: ["lion"], tags: ["anthro"] },
  12766. {
  12767. back: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(150, "lb"),
  12770. name: "Back",
  12771. image: {
  12772. source: "./media/characters/king/back.svg"
  12773. }
  12774. },
  12775. },
  12776. [
  12777. {
  12778. name: "Micro",
  12779. height: math.unit(2, "inches")
  12780. },
  12781. {
  12782. name: "Normal",
  12783. height: math.unit(8, "feet")
  12784. },
  12785. {
  12786. name: "Macro",
  12787. height: math.unit(200, "feet"),
  12788. default: true
  12789. },
  12790. {
  12791. name: "Megamacro",
  12792. height: math.unit(50, "miles")
  12793. },
  12794. ]
  12795. ))
  12796. characterMakers.push(() => makeCharacter(
  12797. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12798. {
  12799. front: {
  12800. height: math.unit(11, "feet"),
  12801. weight: math.unit(1400, "lb"),
  12802. name: "Front",
  12803. image: {
  12804. source: "./media/characters/cordite/front.svg",
  12805. extra: 1919/1827,
  12806. bottom: 40/1959
  12807. }
  12808. },
  12809. side: {
  12810. height: math.unit(11, "feet"),
  12811. weight: math.unit(1400, "lb"),
  12812. name: "Side",
  12813. image: {
  12814. source: "./media/characters/cordite/side.svg",
  12815. extra: 1908/1793,
  12816. bottom: 38/1946
  12817. }
  12818. },
  12819. back: {
  12820. height: math.unit(11, "feet"),
  12821. weight: math.unit(1400, "lb"),
  12822. name: "Back",
  12823. image: {
  12824. source: "./media/characters/cordite/back.svg",
  12825. extra: 1938/1837,
  12826. bottom: 10/1948
  12827. }
  12828. },
  12829. feral: {
  12830. height: math.unit(2, "feet"),
  12831. weight: math.unit(90, "lb"),
  12832. name: "Feral",
  12833. image: {
  12834. source: "./media/characters/cordite/feral.svg",
  12835. extra: 1260 / 755,
  12836. bottom: 0.05
  12837. }
  12838. },
  12839. },
  12840. [
  12841. {
  12842. name: "Normal",
  12843. height: math.unit(11, "feet"),
  12844. default: true
  12845. },
  12846. ]
  12847. ))
  12848. characterMakers.push(() => makeCharacter(
  12849. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12850. {
  12851. front: {
  12852. height: math.unit(6, "feet"),
  12853. weight: math.unit(150, "lb"),
  12854. name: "Front",
  12855. image: {
  12856. source: "./media/characters/pianostrong/front.svg",
  12857. extra: 6577 / 6254,
  12858. bottom: 0.02
  12859. }
  12860. },
  12861. side: {
  12862. height: math.unit(6, "feet"),
  12863. weight: math.unit(150, "lb"),
  12864. name: "Side",
  12865. image: {
  12866. source: "./media/characters/pianostrong/side.svg",
  12867. extra: 6106 / 5730
  12868. }
  12869. },
  12870. back: {
  12871. height: math.unit(6, "feet"),
  12872. weight: math.unit(150, "lb"),
  12873. name: "Back",
  12874. image: {
  12875. source: "./media/characters/pianostrong/back.svg",
  12876. extra: 6085 / 5733,
  12877. bottom: 0.01
  12878. }
  12879. },
  12880. },
  12881. [
  12882. {
  12883. name: "Macro",
  12884. height: math.unit(100, "feet")
  12885. },
  12886. {
  12887. name: "Macro+",
  12888. height: math.unit(300, "feet"),
  12889. default: true
  12890. },
  12891. {
  12892. name: "Macro++",
  12893. height: math.unit(1000, "feet")
  12894. },
  12895. ]
  12896. ))
  12897. characterMakers.push(() => makeCharacter(
  12898. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12899. {
  12900. front: {
  12901. height: math.unit(6, "feet"),
  12902. weight: math.unit(150, "lb"),
  12903. name: "Front",
  12904. image: {
  12905. source: "./media/characters/kona/front.svg",
  12906. extra: 2960 / 2629,
  12907. bottom: 0.005
  12908. }
  12909. },
  12910. },
  12911. [
  12912. {
  12913. name: "Normal",
  12914. height: math.unit(11 + 8 / 12, "feet")
  12915. },
  12916. {
  12917. name: "Macro",
  12918. height: math.unit(850, "feet"),
  12919. default: true
  12920. },
  12921. {
  12922. name: "Macro+",
  12923. height: math.unit(1.5, "km"),
  12924. default: true
  12925. },
  12926. {
  12927. name: "Megamacro",
  12928. height: math.unit(80, "miles")
  12929. },
  12930. {
  12931. name: "Gigamacro",
  12932. height: math.unit(3500, "miles")
  12933. },
  12934. ]
  12935. ))
  12936. characterMakers.push(() => makeCharacter(
  12937. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12938. {
  12939. side: {
  12940. height: math.unit(1.9, "meters"),
  12941. weight: math.unit(326, "kg"),
  12942. name: "Side",
  12943. image: {
  12944. source: "./media/characters/levi/side.svg",
  12945. extra: 1704 / 1334,
  12946. bottom: 0.02
  12947. }
  12948. },
  12949. },
  12950. [
  12951. {
  12952. name: "Normal",
  12953. height: math.unit(1.9, "meters"),
  12954. default: true
  12955. },
  12956. {
  12957. name: "Macro",
  12958. height: math.unit(20, "meters")
  12959. },
  12960. {
  12961. name: "Macro+",
  12962. height: math.unit(200, "meters")
  12963. },
  12964. {
  12965. name: "Megamacro",
  12966. height: math.unit(2, "km")
  12967. },
  12968. {
  12969. name: "Megamacro+",
  12970. height: math.unit(20, "km")
  12971. },
  12972. {
  12973. name: "Gigamacro",
  12974. height: math.unit(2500, "km")
  12975. },
  12976. {
  12977. name: "Gigamacro+",
  12978. height: math.unit(120000, "km")
  12979. },
  12980. {
  12981. name: "Teramacro",
  12982. height: math.unit(7.77e6, "km")
  12983. },
  12984. ]
  12985. ))
  12986. characterMakers.push(() => makeCharacter(
  12987. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12988. {
  12989. front: {
  12990. height: math.unit(6 + 4/12, "feet"),
  12991. weight: math.unit(190, "lb"),
  12992. name: "Front",
  12993. image: {
  12994. source: "./media/characters/bmc/front.svg",
  12995. extra: 1626/1472,
  12996. bottom: 79/1705
  12997. }
  12998. },
  12999. back: {
  13000. height: math.unit(6 + 4/12, "feet"),
  13001. weight: math.unit(190, "lb"),
  13002. name: "Back",
  13003. image: {
  13004. source: "./media/characters/bmc/back.svg",
  13005. extra: 1640/1479,
  13006. bottom: 45/1685
  13007. }
  13008. },
  13009. frontArmor: {
  13010. height: math.unit(6 + 4/12, "feet"),
  13011. weight: math.unit(190, "lb"),
  13012. name: "Front-armor",
  13013. image: {
  13014. source: "./media/characters/bmc/front-armor.svg",
  13015. extra: 1538/1468,
  13016. bottom: 79/1617
  13017. }
  13018. },
  13019. },
  13020. [
  13021. {
  13022. name: "Human-sized",
  13023. height: math.unit(6 + 4 / 12, "feet")
  13024. },
  13025. {
  13026. name: "Interactive Size",
  13027. height: math.unit(25, "feet")
  13028. },
  13029. {
  13030. name: "Small",
  13031. height: math.unit(250, "feet")
  13032. },
  13033. {
  13034. name: "Normal",
  13035. height: math.unit(1250, "feet"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Good Day",
  13040. height: math.unit(88, "miles")
  13041. },
  13042. {
  13043. name: "Largest Measured Size",
  13044. height: math.unit(105.960, "galaxies")
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  13050. {
  13051. front: {
  13052. height: math.unit(20, "feet"),
  13053. weight: math.unit(2016, "kg"),
  13054. name: "Front",
  13055. image: {
  13056. source: "./media/characters/sven-the-kaiju/front.svg",
  13057. extra: 1277/1250,
  13058. bottom: 35/1312
  13059. }
  13060. },
  13061. mouth: {
  13062. height: math.unit(1.85, "feet"),
  13063. name: "Mouth",
  13064. image: {
  13065. source: "./media/characters/sven-the-kaiju/mouth.svg"
  13066. }
  13067. },
  13068. },
  13069. [
  13070. {
  13071. name: "Fairy",
  13072. height: math.unit(6, "inches")
  13073. },
  13074. {
  13075. name: "Normal",
  13076. height: math.unit(20, "feet"),
  13077. default: true
  13078. },
  13079. {
  13080. name: "Rampage",
  13081. height: math.unit(200, "feet")
  13082. },
  13083. {
  13084. name: "Archfey Forest Guardian",
  13085. height: math.unit(1, "mile")
  13086. },
  13087. ]
  13088. ))
  13089. characterMakers.push(() => makeCharacter(
  13090. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  13091. {
  13092. front: {
  13093. height: math.unit(4, "meters"),
  13094. weight: math.unit(2, "tons"),
  13095. name: "Front",
  13096. image: {
  13097. source: "./media/characters/marik/front.svg",
  13098. extra: 1057 / 1003,
  13099. bottom: 0.08
  13100. }
  13101. },
  13102. },
  13103. [
  13104. {
  13105. name: "Normal",
  13106. height: math.unit(4, "meters"),
  13107. default: true
  13108. },
  13109. {
  13110. name: "Macro",
  13111. height: math.unit(20, "meters")
  13112. },
  13113. {
  13114. name: "Megamacro",
  13115. height: math.unit(50, "km")
  13116. },
  13117. {
  13118. name: "Gigamacro",
  13119. height: math.unit(100, "km")
  13120. },
  13121. {
  13122. name: "Alpha Macro",
  13123. height: math.unit(7.88e7, "yottameters")
  13124. },
  13125. ]
  13126. ))
  13127. characterMakers.push(() => makeCharacter(
  13128. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13129. {
  13130. front: {
  13131. height: math.unit(6, "feet"),
  13132. weight: math.unit(110, "lb"),
  13133. name: "Front",
  13134. image: {
  13135. source: "./media/characters/mel/front.svg",
  13136. extra: 736 / 617,
  13137. bottom: 0.017
  13138. }
  13139. },
  13140. },
  13141. [
  13142. {
  13143. name: "Pico",
  13144. height: math.unit(3, "pm")
  13145. },
  13146. {
  13147. name: "Nano",
  13148. height: math.unit(3, "nm")
  13149. },
  13150. {
  13151. name: "Micro",
  13152. height: math.unit(0.3, "mm"),
  13153. default: true
  13154. },
  13155. {
  13156. name: "Micro+",
  13157. height: math.unit(3, "mm")
  13158. },
  13159. {
  13160. name: "Normal",
  13161. height: math.unit(5 + 10.5 / 12, "feet")
  13162. },
  13163. ]
  13164. ))
  13165. characterMakers.push(() => makeCharacter(
  13166. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13167. {
  13168. kaiju: {
  13169. height: math.unit(1.75, "meters"),
  13170. weight: math.unit(55, "kg"),
  13171. name: "Kaiju",
  13172. image: {
  13173. source: "./media/characters/lykonous/kaiju.svg",
  13174. extra: 1055 / 946,
  13175. bottom: 0.135
  13176. }
  13177. },
  13178. },
  13179. [
  13180. {
  13181. name: "Normal",
  13182. height: math.unit(2.5, "meters"),
  13183. default: true
  13184. },
  13185. {
  13186. name: "Kaiju Dragon",
  13187. height: math.unit(60, "meters")
  13188. },
  13189. {
  13190. name: "Mega Kaiju",
  13191. height: math.unit(120, "km")
  13192. },
  13193. {
  13194. name: "Giga Kaiju",
  13195. height: math.unit(200, "megameters")
  13196. },
  13197. {
  13198. name: "Terra Kaiju",
  13199. height: math.unit(400, "gigameters")
  13200. },
  13201. {
  13202. name: "Kaiju Dragon God",
  13203. height: math.unit(13000, "exaparsecs")
  13204. },
  13205. ]
  13206. ))
  13207. characterMakers.push(() => makeCharacter(
  13208. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13209. {
  13210. front: {
  13211. height: math.unit(6, "feet"),
  13212. weight: math.unit(150, "lb"),
  13213. name: "Front",
  13214. image: {
  13215. source: "./media/characters/blü/front.svg",
  13216. extra: 1883 / 1564,
  13217. bottom: 0.031
  13218. }
  13219. },
  13220. },
  13221. [
  13222. {
  13223. name: "Normal",
  13224. height: math.unit(13, "feet"),
  13225. default: true
  13226. },
  13227. {
  13228. name: "Big Boi",
  13229. height: math.unit(150, "meters")
  13230. },
  13231. {
  13232. name: "Mini Stomper",
  13233. height: math.unit(300, "meters")
  13234. },
  13235. {
  13236. name: "Macro",
  13237. height: math.unit(1000, "meters")
  13238. },
  13239. {
  13240. name: "Megamacro",
  13241. height: math.unit(11000, "meters")
  13242. },
  13243. {
  13244. name: "Gigamacro",
  13245. height: math.unit(11000, "km")
  13246. },
  13247. {
  13248. name: "Teramacro",
  13249. height: math.unit(420000, "km")
  13250. },
  13251. {
  13252. name: "Examacro",
  13253. height: math.unit(120, "parsecs")
  13254. },
  13255. {
  13256. name: "God Tho",
  13257. height: math.unit(98000000000, "parsecs")
  13258. },
  13259. ]
  13260. ))
  13261. characterMakers.push(() => makeCharacter(
  13262. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13263. {
  13264. taurFront: {
  13265. height: math.unit(6, "feet"),
  13266. weight: math.unit(200, "lb"),
  13267. name: "Taur (Front)",
  13268. image: {
  13269. source: "./media/characters/scales/taur-front.svg",
  13270. extra: 1,
  13271. bottom: 0.05
  13272. }
  13273. },
  13274. taurBack: {
  13275. height: math.unit(6, "feet"),
  13276. weight: math.unit(200, "lb"),
  13277. name: "Taur (Back)",
  13278. image: {
  13279. source: "./media/characters/scales/taur-back.svg",
  13280. extra: 1,
  13281. bottom: 0.08
  13282. }
  13283. },
  13284. anthro: {
  13285. height: math.unit(6 * 7 / 12, "feet"),
  13286. weight: math.unit(100, "lb"),
  13287. name: "Anthro",
  13288. image: {
  13289. source: "./media/characters/scales/anthro.svg",
  13290. extra: 1,
  13291. bottom: 0.06
  13292. }
  13293. },
  13294. },
  13295. [
  13296. {
  13297. name: "Normal",
  13298. height: math.unit(12, "feet"),
  13299. default: true
  13300. },
  13301. ]
  13302. ))
  13303. characterMakers.push(() => makeCharacter(
  13304. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13305. {
  13306. front: {
  13307. height: math.unit(6, "feet"),
  13308. weight: math.unit(150, "lb"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/koragos/front.svg",
  13312. extra: 841 / 794,
  13313. bottom: 0.035
  13314. }
  13315. },
  13316. back: {
  13317. height: math.unit(6, "feet"),
  13318. weight: math.unit(150, "lb"),
  13319. name: "Back",
  13320. image: {
  13321. source: "./media/characters/koragos/back.svg",
  13322. extra: 841 / 810,
  13323. bottom: 0.022
  13324. }
  13325. },
  13326. },
  13327. [
  13328. {
  13329. name: "Normal",
  13330. height: math.unit(6 + 11 / 12, "feet"),
  13331. default: true
  13332. },
  13333. {
  13334. name: "Macro",
  13335. height: math.unit(490, "feet")
  13336. },
  13337. {
  13338. name: "Megamacro",
  13339. height: math.unit(10, "miles")
  13340. },
  13341. {
  13342. name: "Gigamacro",
  13343. height: math.unit(50, "miles")
  13344. },
  13345. ]
  13346. ))
  13347. characterMakers.push(() => makeCharacter(
  13348. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13349. {
  13350. front: {
  13351. height: math.unit(6, "feet"),
  13352. weight: math.unit(250, "lb"),
  13353. name: "Front",
  13354. image: {
  13355. source: "./media/characters/xylrem/front.svg",
  13356. extra: 3323 / 3050,
  13357. bottom: 0.065
  13358. }
  13359. },
  13360. },
  13361. [
  13362. {
  13363. name: "Micro",
  13364. height: math.unit(4, "feet")
  13365. },
  13366. {
  13367. name: "Normal",
  13368. height: math.unit(16, "feet"),
  13369. default: true
  13370. },
  13371. {
  13372. name: "Macro",
  13373. height: math.unit(2720, "feet")
  13374. },
  13375. {
  13376. name: "Megamacro",
  13377. height: math.unit(25000, "miles")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(8, "feet"),
  13386. weight: math.unit(250, "kg"),
  13387. name: "Front",
  13388. image: {
  13389. source: "./media/characters/ikideru/front.svg",
  13390. extra: 930 / 870,
  13391. bottom: 0.087
  13392. }
  13393. },
  13394. back: {
  13395. height: math.unit(8, "feet"),
  13396. weight: math.unit(250, "kg"),
  13397. name: "Back",
  13398. image: {
  13399. source: "./media/characters/ikideru/back.svg",
  13400. extra: 919 / 852,
  13401. bottom: 0.055
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Rare",
  13408. height: math.unit(8, "feet"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Playful Loom",
  13413. height: math.unit(80, "feet")
  13414. },
  13415. {
  13416. name: "City Leaner",
  13417. height: math.unit(230, "feet")
  13418. },
  13419. {
  13420. name: "Megamacro",
  13421. height: math.unit(2500, "feet")
  13422. },
  13423. {
  13424. name: "Gigamacro",
  13425. height: math.unit(26400, "feet")
  13426. },
  13427. {
  13428. name: "Tectonic Shifter",
  13429. height: math.unit(1.7, "megameters")
  13430. },
  13431. {
  13432. name: "Planet Carer",
  13433. height: math.unit(21, "megameters")
  13434. },
  13435. {
  13436. name: "God",
  13437. height: math.unit(11157.22, "parsecs")
  13438. },
  13439. ]
  13440. ))
  13441. characterMakers.push(() => makeCharacter(
  13442. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13443. {
  13444. front: {
  13445. height: math.unit(6, "feet"),
  13446. weight: math.unit(120, "lb"),
  13447. name: "Front",
  13448. image: {
  13449. source: "./media/characters/neo/front.svg"
  13450. }
  13451. },
  13452. },
  13453. [
  13454. {
  13455. name: "Micro",
  13456. height: math.unit(2, "inches"),
  13457. default: true
  13458. },
  13459. {
  13460. name: "Human Size",
  13461. height: math.unit(5 + 8 / 12, "feet")
  13462. },
  13463. ]
  13464. ))
  13465. characterMakers.push(() => makeCharacter(
  13466. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13467. {
  13468. front: {
  13469. height: math.unit(13 + 10 / 12, "feet"),
  13470. weight: math.unit(5320, "lb"),
  13471. name: "Front",
  13472. image: {
  13473. source: "./media/characters/chauncey-chantz/front.svg",
  13474. extra: 1587 / 1435,
  13475. bottom: 0.02
  13476. }
  13477. },
  13478. },
  13479. [
  13480. {
  13481. name: "Normal",
  13482. height: math.unit(13 + 10 / 12, "feet"),
  13483. default: true
  13484. },
  13485. {
  13486. name: "Macro",
  13487. height: math.unit(45, "feet")
  13488. },
  13489. {
  13490. name: "Megamacro",
  13491. height: math.unit(250, "miles")
  13492. },
  13493. {
  13494. name: "Planetary",
  13495. height: math.unit(10000, "miles")
  13496. },
  13497. {
  13498. name: "Galactic",
  13499. height: math.unit(40000, "parsecs")
  13500. },
  13501. {
  13502. name: "Universal",
  13503. height: math.unit(1, "yottameter")
  13504. },
  13505. ]
  13506. ))
  13507. characterMakers.push(() => makeCharacter(
  13508. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13509. {
  13510. front: {
  13511. height: math.unit(6, "feet"),
  13512. weight: math.unit(150, "lb"),
  13513. name: "Front",
  13514. image: {
  13515. source: "./media/characters/epifox/front.svg",
  13516. extra: 1,
  13517. bottom: 0.075
  13518. }
  13519. },
  13520. },
  13521. [
  13522. {
  13523. name: "Micro",
  13524. height: math.unit(6, "inches")
  13525. },
  13526. {
  13527. name: "Normal",
  13528. height: math.unit(12, "feet"),
  13529. default: true
  13530. },
  13531. {
  13532. name: "Macro",
  13533. height: math.unit(3810, "feet")
  13534. },
  13535. {
  13536. name: "Megamacro",
  13537. height: math.unit(500, "miles")
  13538. },
  13539. ]
  13540. ))
  13541. characterMakers.push(() => makeCharacter(
  13542. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13543. {
  13544. front: {
  13545. height: math.unit(1.8796, "m"),
  13546. weight: math.unit(230, "lb"),
  13547. name: "Front",
  13548. image: {
  13549. source: "./media/characters/colin-t/front.svg",
  13550. extra: 1272 / 1193,
  13551. bottom: 0.07
  13552. }
  13553. },
  13554. },
  13555. [
  13556. {
  13557. name: "Micro",
  13558. height: math.unit(0.571, "meters")
  13559. },
  13560. {
  13561. name: "Normal",
  13562. height: math.unit(1.8796, "meters"),
  13563. default: true
  13564. },
  13565. {
  13566. name: "Tall",
  13567. height: math.unit(4, "meters")
  13568. },
  13569. {
  13570. name: "Macro",
  13571. height: math.unit(67.241, "meters")
  13572. },
  13573. {
  13574. name: "Megamacro",
  13575. height: math.unit(371.856, "meters")
  13576. },
  13577. {
  13578. name: "Planetary",
  13579. height: math.unit(12631.5689, "km")
  13580. },
  13581. ]
  13582. ))
  13583. characterMakers.push(() => makeCharacter(
  13584. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13585. {
  13586. front: {
  13587. height: math.unit(1.85, "meters"),
  13588. weight: math.unit(80, "kg"),
  13589. name: "Front",
  13590. image: {
  13591. source: "./media/characters/matvei/front.svg",
  13592. extra: 456/447,
  13593. bottom: 8/464
  13594. }
  13595. },
  13596. back: {
  13597. height: math.unit(1.85, "meters"),
  13598. weight: math.unit(80, "kg"),
  13599. name: "Back",
  13600. image: {
  13601. source: "./media/characters/matvei/back.svg",
  13602. extra: 434/427,
  13603. bottom: 11/445
  13604. }
  13605. },
  13606. },
  13607. [
  13608. {
  13609. name: "Normal",
  13610. height: math.unit(1.85, "meters"),
  13611. default: true
  13612. },
  13613. ]
  13614. ))
  13615. characterMakers.push(() => makeCharacter(
  13616. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13617. {
  13618. front: {
  13619. height: math.unit(5 + 9 / 12, "feet"),
  13620. weight: math.unit(70, "lb"),
  13621. name: "Front",
  13622. image: {
  13623. source: "./media/characters/quincy/front.svg",
  13624. extra: 3041 / 2751
  13625. }
  13626. },
  13627. back: {
  13628. height: math.unit(5 + 9 / 12, "feet"),
  13629. weight: math.unit(70, "lb"),
  13630. name: "Back",
  13631. image: {
  13632. source: "./media/characters/quincy/back.svg",
  13633. extra: 3041 / 2751
  13634. }
  13635. },
  13636. flying: {
  13637. height: math.unit(5 + 4 / 12, "feet"),
  13638. weight: math.unit(70, "lb"),
  13639. name: "Flying",
  13640. image: {
  13641. source: "./media/characters/quincy/flying.svg",
  13642. extra: 1044 / 930
  13643. }
  13644. },
  13645. },
  13646. [
  13647. {
  13648. name: "Micro",
  13649. height: math.unit(3, "cm")
  13650. },
  13651. {
  13652. name: "Normal",
  13653. height: math.unit(5 + 9 / 12, "feet")
  13654. },
  13655. {
  13656. name: "Macro",
  13657. height: math.unit(200, "meters"),
  13658. default: true
  13659. },
  13660. {
  13661. name: "Megamacro",
  13662. height: math.unit(1000, "meters")
  13663. },
  13664. ]
  13665. ))
  13666. characterMakers.push(() => makeCharacter(
  13667. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13668. {
  13669. front: {
  13670. height: math.unit(3 + 11/12, "feet"),
  13671. weight: math.unit(50, "lb"),
  13672. name: "Front",
  13673. image: {
  13674. source: "./media/characters/vanrel/front.svg",
  13675. extra: 1104/949,
  13676. bottom: 52/1156
  13677. }
  13678. },
  13679. back: {
  13680. height: math.unit(3 + 11/12, "feet"),
  13681. weight: math.unit(50, "lb"),
  13682. name: "Back",
  13683. image: {
  13684. source: "./media/characters/vanrel/back.svg",
  13685. extra: 1119/976,
  13686. bottom: 37/1156
  13687. }
  13688. },
  13689. tome: {
  13690. height: math.unit(1.35, "feet"),
  13691. weight: math.unit(10, "lb"),
  13692. name: "Vanrel's Tome",
  13693. rename: true,
  13694. image: {
  13695. source: "./media/characters/vanrel/tome.svg"
  13696. }
  13697. },
  13698. beans: {
  13699. height: math.unit(0.89, "feet"),
  13700. name: "Beans",
  13701. image: {
  13702. source: "./media/characters/vanrel/beans.svg"
  13703. }
  13704. },
  13705. },
  13706. [
  13707. {
  13708. name: "Normal",
  13709. height: math.unit(3 + 11/12, "feet"),
  13710. default: true
  13711. },
  13712. ]
  13713. ))
  13714. characterMakers.push(() => makeCharacter(
  13715. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13716. {
  13717. front: {
  13718. height: math.unit(7 + 5 / 12, "feet"),
  13719. name: "Front",
  13720. image: {
  13721. source: "./media/characters/kuiper-vanrel/front.svg",
  13722. extra: 1219/1169,
  13723. bottom: 69/1288
  13724. }
  13725. },
  13726. back: {
  13727. height: math.unit(7 + 5 / 12, "feet"),
  13728. name: "Back",
  13729. image: {
  13730. source: "./media/characters/kuiper-vanrel/back.svg",
  13731. extra: 1236/1193,
  13732. bottom: 27/1263
  13733. }
  13734. },
  13735. foot: {
  13736. height: math.unit(0.55, "meters"),
  13737. name: "Foot",
  13738. image: {
  13739. source: "./media/characters/kuiper-vanrel/foot.svg",
  13740. }
  13741. },
  13742. battle: {
  13743. height: math.unit(6.824, "feet"),
  13744. name: "Battle",
  13745. image: {
  13746. source: "./media/characters/kuiper-vanrel/battle.svg",
  13747. extra: 1466 / 1327,
  13748. bottom: 29 / 1492.5
  13749. }
  13750. },
  13751. meerkui: {
  13752. height: math.unit(18, "inches"),
  13753. name: "Meerkui",
  13754. image: {
  13755. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13756. extra: 1354/1289,
  13757. bottom: 69/1423
  13758. }
  13759. },
  13760. },
  13761. [
  13762. {
  13763. name: "Normal",
  13764. height: math.unit(7 + 5 / 12, "feet"),
  13765. default: true
  13766. },
  13767. ]
  13768. ))
  13769. characterMakers.push(() => makeCharacter(
  13770. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13771. {
  13772. front: {
  13773. height: math.unit(8 + 5 / 12, "feet"),
  13774. name: "Front",
  13775. image: {
  13776. source: "./media/characters/keset-vanrel/front.svg",
  13777. extra: 1231/1148,
  13778. bottom: 82/1313
  13779. }
  13780. },
  13781. back: {
  13782. height: math.unit(8 + 5 / 12, "feet"),
  13783. name: "Back",
  13784. image: {
  13785. source: "./media/characters/keset-vanrel/back.svg",
  13786. extra: 1240/1174,
  13787. bottom: 33/1273
  13788. }
  13789. },
  13790. hand: {
  13791. height: math.unit(0.6, "meters"),
  13792. name: "Hand",
  13793. image: {
  13794. source: "./media/characters/keset-vanrel/hand.svg"
  13795. }
  13796. },
  13797. foot: {
  13798. height: math.unit(0.94978, "meters"),
  13799. name: "Foot",
  13800. image: {
  13801. source: "./media/characters/keset-vanrel/foot.svg"
  13802. }
  13803. },
  13804. battle: {
  13805. height: math.unit(7.408, "feet"),
  13806. name: "Battle",
  13807. image: {
  13808. source: "./media/characters/keset-vanrel/battle.svg",
  13809. extra: 1890 / 1386,
  13810. bottom: 73.28 / 1970
  13811. }
  13812. },
  13813. },
  13814. [
  13815. {
  13816. name: "Normal",
  13817. height: math.unit(8 + 5 / 12, "feet"),
  13818. default: true
  13819. },
  13820. ]
  13821. ))
  13822. characterMakers.push(() => makeCharacter(
  13823. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13824. {
  13825. front: {
  13826. height: math.unit(6, "feet"),
  13827. weight: math.unit(150, "lb"),
  13828. name: "Front",
  13829. image: {
  13830. source: "./media/characters/neos/front.svg",
  13831. extra: 1696 / 992,
  13832. bottom: 0.14
  13833. }
  13834. },
  13835. },
  13836. [
  13837. {
  13838. name: "Normal",
  13839. height: math.unit(54, "cm"),
  13840. default: true
  13841. },
  13842. {
  13843. name: "Macro",
  13844. height: math.unit(100, "m")
  13845. },
  13846. {
  13847. name: "Megamacro",
  13848. height: math.unit(10, "km")
  13849. },
  13850. {
  13851. name: "Megamacro+",
  13852. height: math.unit(100, "km")
  13853. },
  13854. {
  13855. name: "Gigamacro",
  13856. height: math.unit(100, "Mm")
  13857. },
  13858. {
  13859. name: "Teramacro",
  13860. height: math.unit(100, "Gm")
  13861. },
  13862. {
  13863. name: "Examacro",
  13864. height: math.unit(100, "Em")
  13865. },
  13866. {
  13867. name: "Godly",
  13868. height: math.unit(10000, "Ym")
  13869. },
  13870. {
  13871. name: "Beyond Godly",
  13872. height: math.unit(25, "multiverses")
  13873. },
  13874. ]
  13875. ))
  13876. characterMakers.push(() => makeCharacter(
  13877. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13878. {
  13879. fluide_tame: {
  13880. height: math.unit(5, "feet"),
  13881. name: "Tame",
  13882. image: {
  13883. source: "./media/characters/sammy-mouse/fluide-tame.svg",
  13884. extra: 1655/1574,
  13885. bottom: 231/1886
  13886. },
  13887. form: "fluide",
  13888. default: true
  13889. },
  13890. fluide_nude: {
  13891. height: math.unit(5, "feet"),
  13892. name: "Nude",
  13893. image: {
  13894. source: "./media/characters/sammy-mouse/fluide-nude.svg",
  13895. extra: 1655/1574,
  13896. bottom: 231/1886
  13897. },
  13898. form: "fluide",
  13899. },
  13900. male_tame: {
  13901. height: math.unit(5, "feet"),
  13902. name: "Tame",
  13903. image: {
  13904. source: "./media/characters/sammy-mouse/male-tame.svg",
  13905. extra: 1655/1574,
  13906. bottom: 231/1886
  13907. },
  13908. form: "male",
  13909. default: true
  13910. },
  13911. male_nude: {
  13912. height: math.unit(5, "feet"),
  13913. name: "Nude",
  13914. image: {
  13915. source: "./media/characters/sammy-mouse/male-nude.svg",
  13916. extra: 1655/1574,
  13917. bottom: 231/1886
  13918. },
  13919. form: "male",
  13920. },
  13921. female_nude: {
  13922. height: math.unit(5, "feet"),
  13923. name: "Nude",
  13924. image: {
  13925. source: "./media/characters/sammy-mouse/female-nude.svg",
  13926. extra: 1655/1574,
  13927. bottom: 231/1886
  13928. },
  13929. form: "female",
  13930. default: true
  13931. },
  13932. mouth: {
  13933. height: math.unit(0.32, "feet"),
  13934. name: "Mouth",
  13935. image: {
  13936. source: "./media/characters/sammy-mouse/mouth.svg"
  13937. },
  13938. allForms: true
  13939. },
  13940. paw: {
  13941. height: math.unit(0.42, "feet"),
  13942. name: "Paw",
  13943. image: {
  13944. source: "./media/characters/sammy-mouse/paw.svg"
  13945. },
  13946. allForms: true
  13947. },
  13948. },
  13949. [
  13950. {
  13951. name: "Micro",
  13952. height: math.unit(5, "inches"),
  13953. allForms: true
  13954. },
  13955. {
  13956. name: "Normal",
  13957. height: math.unit(5, "feet"),
  13958. default: true,
  13959. allForms: true
  13960. },
  13961. {
  13962. name: "Macro",
  13963. height: math.unit(60, "feet"),
  13964. allForms: true
  13965. },
  13966. ],
  13967. {
  13968. "fluide": {
  13969. name: "Fluide",
  13970. default: true
  13971. },
  13972. "male": {
  13973. name: "Male",
  13974. },
  13975. "female": {
  13976. name: "Female",
  13977. },
  13978. }
  13979. ))
  13980. characterMakers.push(() => makeCharacter(
  13981. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13982. {
  13983. front: {
  13984. height: math.unit(4, "feet"),
  13985. weight: math.unit(50, "lb"),
  13986. name: "Front",
  13987. image: {
  13988. source: "./media/characters/kole/front.svg",
  13989. extra: 1423 / 1303,
  13990. bottom: 0.025
  13991. }
  13992. },
  13993. back: {
  13994. height: math.unit(4, "feet"),
  13995. weight: math.unit(50, "lb"),
  13996. name: "Back",
  13997. image: {
  13998. source: "./media/characters/kole/back.svg",
  13999. extra: 1426 / 1280,
  14000. bottom: 0.02
  14001. }
  14002. },
  14003. },
  14004. [
  14005. {
  14006. name: "Normal",
  14007. height: math.unit(4, "feet"),
  14008. default: true
  14009. },
  14010. ]
  14011. ))
  14012. characterMakers.push(() => makeCharacter(
  14013. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  14014. {
  14015. front: {
  14016. height: math.unit(2.5, "feet"),
  14017. weight: math.unit(32, "lb"),
  14018. name: "Front",
  14019. image: {
  14020. source: "./media/characters/rufran/front.svg",
  14021. extra: 1313/885,
  14022. bottom: 94/1407
  14023. }
  14024. },
  14025. side: {
  14026. height: math.unit(2.5, "feet"),
  14027. weight: math.unit(32, "lb"),
  14028. name: "Side",
  14029. image: {
  14030. source: "./media/characters/rufran/side.svg",
  14031. extra: 1109/852,
  14032. bottom: 118/1227
  14033. }
  14034. },
  14035. back: {
  14036. height: math.unit(2.5, "feet"),
  14037. weight: math.unit(32, "lb"),
  14038. name: "Back",
  14039. image: {
  14040. source: "./media/characters/rufran/back.svg",
  14041. extra: 1280/878,
  14042. bottom: 131/1411
  14043. }
  14044. },
  14045. mouth: {
  14046. height: math.unit(1.13, "feet"),
  14047. name: "Mouth",
  14048. image: {
  14049. source: "./media/characters/rufran/mouth.svg"
  14050. }
  14051. },
  14052. foot: {
  14053. height: math.unit(1.33, "feet"),
  14054. name: "Foot",
  14055. image: {
  14056. source: "./media/characters/rufran/foot.svg"
  14057. }
  14058. },
  14059. koboldFront: {
  14060. height: math.unit(2 + 6 / 12, "feet"),
  14061. weight: math.unit(20, "lb"),
  14062. name: "Front (Kobold)",
  14063. image: {
  14064. source: "./media/characters/rufran/kobold-front.svg",
  14065. extra: 2041 / 1839,
  14066. bottom: 0.055
  14067. }
  14068. },
  14069. koboldBack: {
  14070. height: math.unit(2 + 6 / 12, "feet"),
  14071. weight: math.unit(20, "lb"),
  14072. name: "Back (Kobold)",
  14073. image: {
  14074. source: "./media/characters/rufran/kobold-back.svg",
  14075. extra: 2054 / 1839,
  14076. bottom: 0.01
  14077. }
  14078. },
  14079. koboldHand: {
  14080. height: math.unit(0.2166, "meters"),
  14081. name: "Hand (Kobold)",
  14082. image: {
  14083. source: "./media/characters/rufran/kobold-hand.svg"
  14084. }
  14085. },
  14086. koboldFoot: {
  14087. height: math.unit(0.185, "meters"),
  14088. name: "Foot (Kobold)",
  14089. image: {
  14090. source: "./media/characters/rufran/kobold-foot.svg"
  14091. }
  14092. },
  14093. },
  14094. [
  14095. {
  14096. name: "Micro",
  14097. height: math.unit(1, "inch")
  14098. },
  14099. {
  14100. name: "Normal",
  14101. height: math.unit(2 + 6 / 12, "feet"),
  14102. default: true
  14103. },
  14104. {
  14105. name: "Big",
  14106. height: math.unit(60, "feet")
  14107. },
  14108. {
  14109. name: "Macro",
  14110. height: math.unit(325, "feet")
  14111. },
  14112. ]
  14113. ))
  14114. characterMakers.push(() => makeCharacter(
  14115. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  14116. {
  14117. front: {
  14118. height: math.unit(0.3, "meters"),
  14119. weight: math.unit(3.5, "kg"),
  14120. name: "Front",
  14121. image: {
  14122. source: "./media/characters/chip/front.svg",
  14123. extra: 748 / 674
  14124. }
  14125. },
  14126. },
  14127. [
  14128. {
  14129. name: "Micro",
  14130. height: math.unit(1, "inch"),
  14131. default: true
  14132. },
  14133. ]
  14134. ))
  14135. characterMakers.push(() => makeCharacter(
  14136. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  14137. {
  14138. side: {
  14139. height: math.unit(2.3, "meters"),
  14140. weight: math.unit(3500, "lb"),
  14141. name: "Side",
  14142. image: {
  14143. source: "./media/characters/torvid/side.svg",
  14144. extra: 1972 / 722,
  14145. bottom: 0.035
  14146. }
  14147. },
  14148. },
  14149. [
  14150. {
  14151. name: "Normal",
  14152. height: math.unit(2.3, "meters"),
  14153. default: true
  14154. },
  14155. ]
  14156. ))
  14157. characterMakers.push(() => makeCharacter(
  14158. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  14159. {
  14160. front: {
  14161. height: math.unit(2, "meters"),
  14162. weight: math.unit(150.5, "kg"),
  14163. name: "Front",
  14164. image: {
  14165. source: "./media/characters/susan/front.svg",
  14166. extra: 693 / 635,
  14167. bottom: 0.05
  14168. }
  14169. },
  14170. },
  14171. [
  14172. {
  14173. name: "Megamacro",
  14174. height: math.unit(505, "miles"),
  14175. default: true
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14181. {
  14182. front: {
  14183. height: math.unit(6, "feet"),
  14184. weight: math.unit(150, "lb"),
  14185. name: "Front",
  14186. image: {
  14187. source: "./media/characters/raindrops/front.svg",
  14188. extra: 2655 / 2461,
  14189. bottom: 49 / 2705
  14190. }
  14191. },
  14192. back: {
  14193. height: math.unit(6, "feet"),
  14194. weight: math.unit(150, "lb"),
  14195. name: "Back",
  14196. image: {
  14197. source: "./media/characters/raindrops/back.svg",
  14198. extra: 2574 / 2400,
  14199. bottom: 65 / 2634
  14200. }
  14201. },
  14202. },
  14203. [
  14204. {
  14205. name: "Micro",
  14206. height: math.unit(6, "inches")
  14207. },
  14208. {
  14209. name: "Normal",
  14210. height: math.unit(6 + 2 / 12, "feet")
  14211. },
  14212. {
  14213. name: "Macro",
  14214. height: math.unit(131, "feet"),
  14215. default: true
  14216. },
  14217. {
  14218. name: "Megamacro",
  14219. height: math.unit(15, "miles")
  14220. },
  14221. {
  14222. name: "Gigamacro",
  14223. height: math.unit(4000, "miles")
  14224. },
  14225. {
  14226. name: "Teramacro",
  14227. height: math.unit(315000, "miles")
  14228. },
  14229. ]
  14230. ))
  14231. characterMakers.push(() => makeCharacter(
  14232. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14233. {
  14234. front: {
  14235. height: math.unit(2.794, "meters"),
  14236. weight: math.unit(325, "kg"),
  14237. name: "Front",
  14238. image: {
  14239. source: "./media/characters/tezwa/front.svg",
  14240. extra: 2083 / 1906,
  14241. bottom: 0.031
  14242. }
  14243. },
  14244. foot: {
  14245. height: math.unit(0.687, "meters"),
  14246. name: "Foot",
  14247. image: {
  14248. source: "./media/characters/tezwa/foot.svg"
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Normal",
  14255. height: math.unit(9 + 2 / 12, "feet"),
  14256. default: true
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(58, "feet"),
  14265. weight: math.unit(89000, "lb"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/typhus/front.svg",
  14269. extra: 816 / 800,
  14270. bottom: 0.065
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Macro",
  14277. height: math.unit(58, "feet"),
  14278. default: true
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14284. {
  14285. front: {
  14286. height: math.unit(12, "feet"),
  14287. weight: math.unit(6, "tonnes"),
  14288. name: "Front",
  14289. image: {
  14290. source: "./media/characters/lyra-von-wulf/front.svg",
  14291. extra: 1,
  14292. bottom: 0.10
  14293. }
  14294. },
  14295. frontMecha: {
  14296. height: math.unit(12, "feet"),
  14297. weight: math.unit(12, "tonnes"),
  14298. name: "Front (Mecha)",
  14299. image: {
  14300. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14301. extra: 1,
  14302. bottom: 0.042
  14303. }
  14304. },
  14305. maw: {
  14306. height: math.unit(2.2, "feet"),
  14307. name: "Maw",
  14308. image: {
  14309. source: "./media/characters/lyra-von-wulf/maw.svg"
  14310. }
  14311. },
  14312. },
  14313. [
  14314. {
  14315. name: "Normal",
  14316. height: math.unit(12, "feet"),
  14317. default: true
  14318. },
  14319. {
  14320. name: "Classic",
  14321. height: math.unit(50, "feet")
  14322. },
  14323. {
  14324. name: "Macro",
  14325. height: math.unit(500, "feet")
  14326. },
  14327. {
  14328. name: "Megamacro",
  14329. height: math.unit(1, "mile")
  14330. },
  14331. {
  14332. name: "Gigamacro",
  14333. height: math.unit(400, "miles")
  14334. },
  14335. {
  14336. name: "Teramacro",
  14337. height: math.unit(22000, "miles")
  14338. },
  14339. {
  14340. name: "Solarmacro",
  14341. height: math.unit(8600000, "miles")
  14342. },
  14343. {
  14344. name: "Galactic",
  14345. height: math.unit(1057000, "lightyears")
  14346. },
  14347. ]
  14348. ))
  14349. characterMakers.push(() => makeCharacter(
  14350. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14351. {
  14352. front: {
  14353. height: math.unit(6 + 10 / 12, "feet"),
  14354. weight: math.unit(150, "lb"),
  14355. name: "Front",
  14356. image: {
  14357. source: "./media/characters/dixon/front.svg",
  14358. extra: 3361 / 3209,
  14359. bottom: 0.01
  14360. }
  14361. },
  14362. },
  14363. [
  14364. {
  14365. name: "Normal",
  14366. height: math.unit(6 + 10 / 12, "feet"),
  14367. default: true
  14368. },
  14369. {
  14370. name: "Big",
  14371. height: math.unit(12, "meters")
  14372. },
  14373. {
  14374. name: "Macro",
  14375. height: math.unit(500, "meters")
  14376. },
  14377. {
  14378. name: "Megamacro",
  14379. height: math.unit(2, "km")
  14380. },
  14381. ]
  14382. ))
  14383. characterMakers.push(() => makeCharacter(
  14384. { name: "Kauko", species: ["wolf", "king-cheetah"], tags: ["anthro"] },
  14385. {
  14386. kingCheetah_front: {
  14387. height: math.unit(1.85, "meters"),
  14388. weight: math.unit(68, "kg"),
  14389. name: "Front",
  14390. image: {
  14391. source: "./media/characters/kauko/king-cheetah-front.svg",
  14392. extra: 1007/972,
  14393. bottom: 35/1042
  14394. },
  14395. form: "king-cheetah",
  14396. default: true
  14397. },
  14398. kingCheetah_back: {
  14399. height: math.unit(1.85, "meters"),
  14400. weight: math.unit(68, "kg"),
  14401. name: "Back",
  14402. image: {
  14403. source: "./media/characters/kauko/king-cheetah-back.svg",
  14404. extra: 1015/980,
  14405. bottom: 11/1026
  14406. },
  14407. form: "king-cheetah",
  14408. },
  14409. kingCheetah_hand: {
  14410. height: math.unit(0.23, "meters"),
  14411. name: "Hand",
  14412. image: {
  14413. source: "./media/characters/kauko/king-cheetah-hand.svg"
  14414. },
  14415. form: "king-cheetah",
  14416. },
  14417. kingCheetah_paw: {
  14418. height: math.unit(0.38, "meters"),
  14419. name: "Paw",
  14420. image: {
  14421. source: "./media/characters/kauko/king-cheetah-paw.svg"
  14422. },
  14423. form: "king-cheetah",
  14424. },
  14425. kingCheetah_nape: {
  14426. height: math.unit(0.23, "meters"),
  14427. name: "Nape",
  14428. image: {
  14429. source: "./media/characters/kauko/king-cheetah-nape.svg"
  14430. },
  14431. form: "king-cheetah",
  14432. },
  14433. wolf_front: {
  14434. height: math.unit(1.88, "meters"),
  14435. weight: math.unit(74, "kg"),
  14436. name: "Front",
  14437. image: {
  14438. source: "./media/characters/kauko/wolf-front.svg",
  14439. extra: 952/908,
  14440. bottom: 64/1016
  14441. },
  14442. form: "wolf",
  14443. default: true
  14444. },
  14445. wolf_dressed: {
  14446. height: math.unit(1.88, "meters"),
  14447. weight: math.unit(74, "kg"),
  14448. name: "Dressed",
  14449. image: {
  14450. source: "./media/characters/kauko/wolf-dressed.svg",
  14451. extra: 963/916,
  14452. bottom: 101/1064
  14453. },
  14454. form: "wolf",
  14455. },
  14456. wolf_hand: {
  14457. height: math.unit(0.3, "meters"),
  14458. name: "Hand",
  14459. image: {
  14460. source: "./media/characters/kauko/wolf-hand.svg"
  14461. },
  14462. form: "wolf",
  14463. },
  14464. wolf_paw: {
  14465. height: math.unit(0.407, "meters"),
  14466. name: "Paw",
  14467. image: {
  14468. source: "./media/characters/kauko/wolf-paw.svg"
  14469. },
  14470. form: "wolf",
  14471. },
  14472. wolf_nape: {
  14473. height: math.unit(0.25, "meters"),
  14474. name: "Nape",
  14475. image: {
  14476. source: "./media/characters/kauko/wolf-nape.svg"
  14477. },
  14478. form: "wolf",
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(1.85, "m"),
  14485. default: true,
  14486. form: "king-cheetah"
  14487. },
  14488. {
  14489. name: "Normal",
  14490. height: math.unit(1.88, "m"),
  14491. default: true,
  14492. form: "wolf"
  14493. },
  14494. ],
  14495. {
  14496. "king-cheetah": {
  14497. name: "King Cheetah",
  14498. default: true
  14499. },
  14500. "wolf": {
  14501. name: "Wolf",
  14502. },
  14503. }
  14504. ))
  14505. characterMakers.push(() => makeCharacter(
  14506. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14507. {
  14508. frontSfw: {
  14509. height: math.unit(5, "meters"),
  14510. weight: math.unit(4250, "lb"),
  14511. name: "Front",
  14512. image: {
  14513. source: "./media/characters/varg/front-sfw.svg",
  14514. extra: 1103/1010,
  14515. bottom: 50/1153
  14516. },
  14517. form: "anthro",
  14518. default: true
  14519. },
  14520. backSfw: {
  14521. height: math.unit(5, "meters"),
  14522. weight: math.unit(4250, "lb"),
  14523. name: "Back",
  14524. image: {
  14525. source: "./media/characters/varg/back-sfw.svg",
  14526. extra: 1038/1022,
  14527. bottom: 36/1074
  14528. },
  14529. form: "anthro"
  14530. },
  14531. frontNsfw: {
  14532. height: math.unit(5, "meters"),
  14533. weight: math.unit(4250, "lb"),
  14534. name: "Front (NSFW)",
  14535. image: {
  14536. source: "./media/characters/varg/front-nsfw.svg",
  14537. extra: 1103/1010,
  14538. bottom: 50/1153
  14539. },
  14540. form: "anthro"
  14541. },
  14542. sheath: {
  14543. height: math.unit(3.8, "feet"),
  14544. weight: math.unit(90, "kilograms"),
  14545. name: "Sheath",
  14546. image: {
  14547. source: "./media/characters/varg/sheath.svg"
  14548. },
  14549. form: "anthro"
  14550. },
  14551. dick: {
  14552. height: math.unit(4.6, "feet"),
  14553. weight: math.unit(451, "kilograms"),
  14554. name: "Dick",
  14555. image: {
  14556. source: "./media/characters/varg/dick.svg"
  14557. },
  14558. form: "anthro"
  14559. },
  14560. feralSfw: {
  14561. height: math.unit(5, "meters"),
  14562. weight: math.unit(100000, "lb"),
  14563. name: "Side",
  14564. image: {
  14565. source: "./media/characters/varg/feral-sfw.svg",
  14566. extra: 1065/511,
  14567. bottom: 211/1276
  14568. },
  14569. form: "feral",
  14570. default: true
  14571. },
  14572. feralNsfw: {
  14573. height: math.unit(5, "meters"),
  14574. weight: math.unit(100000, "lb"),
  14575. name: "Side (NSFW)",
  14576. image: {
  14577. source: "./media/characters/varg/feral-nsfw.svg",
  14578. extra: 1065/511,
  14579. bottom: 211/1276
  14580. },
  14581. form: "feral",
  14582. },
  14583. feralSheath: {
  14584. height: math.unit(9.8, "feet"),
  14585. weight: math.unit(2000, "kilograms"),
  14586. name: "Sheath",
  14587. image: {
  14588. source: "./media/characters/varg/sheath.svg"
  14589. },
  14590. form: "feral"
  14591. },
  14592. feralDick: {
  14593. height: math.unit(13.11, "feet"),
  14594. weight: math.unit(10440, "kilograms"),
  14595. name: "Dick",
  14596. image: {
  14597. source: "./media/characters/varg/dick.svg"
  14598. },
  14599. form: "feral"
  14600. },
  14601. },
  14602. [
  14603. {
  14604. name: "Normal",
  14605. height: math.unit(5, "meters"),
  14606. form: "anthro"
  14607. },
  14608. {
  14609. name: "Macro",
  14610. height: math.unit(200, "meters"),
  14611. form: "anthro"
  14612. },
  14613. {
  14614. name: "Megamacro",
  14615. height: math.unit(20, "kilometers"),
  14616. form: "anthro"
  14617. },
  14618. {
  14619. name: "True Size",
  14620. height: math.unit(211, "km"),
  14621. form: "anthro",
  14622. default: true
  14623. },
  14624. {
  14625. name: "Gigamacro",
  14626. height: math.unit(1000, "km"),
  14627. form: "anthro"
  14628. },
  14629. {
  14630. name: "Gigamacro+",
  14631. height: math.unit(8000, "km"),
  14632. form: "anthro"
  14633. },
  14634. {
  14635. name: "Teramacro",
  14636. height: math.unit(1000000, "km"),
  14637. form: "anthro"
  14638. },
  14639. {
  14640. name: "Normal",
  14641. height: math.unit(5, "meters"),
  14642. form: "feral"
  14643. },
  14644. {
  14645. name: "Macro",
  14646. height: math.unit(200, "meters"),
  14647. form: "feral"
  14648. },
  14649. {
  14650. name: "Megamacro",
  14651. height: math.unit(20, "kilometers"),
  14652. form: "feral"
  14653. },
  14654. {
  14655. name: "True Size",
  14656. height: math.unit(211, "km"),
  14657. form: "feral",
  14658. default: true
  14659. },
  14660. {
  14661. name: "Gigamacro",
  14662. height: math.unit(1000, "km"),
  14663. form: "feral"
  14664. },
  14665. {
  14666. name: "Gigamacro+",
  14667. height: math.unit(8000, "km"),
  14668. form: "feral"
  14669. },
  14670. {
  14671. name: "Teramacro",
  14672. height: math.unit(1000000, "km"),
  14673. form: "feral"
  14674. },
  14675. ],
  14676. {
  14677. "anthro": {
  14678. name: "Anthro",
  14679. default: true
  14680. },
  14681. "feral": {
  14682. name: "Feral",
  14683. },
  14684. }
  14685. ))
  14686. characterMakers.push(() => makeCharacter(
  14687. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14688. {
  14689. front: {
  14690. height: math.unit(7 + 7 / 12, "feet"),
  14691. weight: math.unit(267, "lb"),
  14692. name: "Front",
  14693. image: {
  14694. source: "./media/characters/dayza/front.svg",
  14695. extra: 1262 / 1200,
  14696. bottom: 0.035
  14697. }
  14698. },
  14699. side: {
  14700. height: math.unit(7 + 7 / 12, "feet"),
  14701. weight: math.unit(267, "lb"),
  14702. name: "Side",
  14703. image: {
  14704. source: "./media/characters/dayza/side.svg",
  14705. extra: 1295 / 1245,
  14706. bottom: 0.05
  14707. }
  14708. },
  14709. back: {
  14710. height: math.unit(7 + 7 / 12, "feet"),
  14711. weight: math.unit(267, "lb"),
  14712. name: "Back",
  14713. image: {
  14714. source: "./media/characters/dayza/back.svg",
  14715. extra: 1241 / 1170
  14716. }
  14717. },
  14718. },
  14719. [
  14720. {
  14721. name: "Normal",
  14722. height: math.unit(7 + 7 / 12, "feet"),
  14723. default: true
  14724. },
  14725. {
  14726. name: "Macro",
  14727. height: math.unit(155, "feet")
  14728. },
  14729. ]
  14730. ))
  14731. characterMakers.push(() => makeCharacter(
  14732. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14733. {
  14734. front: {
  14735. height: math.unit(6 + 5 / 12, "feet"),
  14736. weight: math.unit(160, "lb"),
  14737. name: "Front",
  14738. image: {
  14739. source: "./media/characters/xanthos/front.svg",
  14740. extra: 1,
  14741. bottom: 0.04
  14742. }
  14743. },
  14744. back: {
  14745. height: math.unit(6 + 5 / 12, "feet"),
  14746. weight: math.unit(160, "lb"),
  14747. name: "Back",
  14748. image: {
  14749. source: "./media/characters/xanthos/back.svg",
  14750. extra: 1,
  14751. bottom: 0.03
  14752. }
  14753. },
  14754. hand: {
  14755. height: math.unit(0.928, "feet"),
  14756. name: "Hand",
  14757. image: {
  14758. source: "./media/characters/xanthos/hand.svg"
  14759. }
  14760. },
  14761. foot: {
  14762. height: math.unit(1.286, "feet"),
  14763. name: "Foot",
  14764. image: {
  14765. source: "./media/characters/xanthos/foot.svg"
  14766. }
  14767. },
  14768. },
  14769. [
  14770. {
  14771. name: "Normal",
  14772. height: math.unit(6 + 5 / 12, "feet"),
  14773. default: true
  14774. },
  14775. {
  14776. name: "Normal+",
  14777. height: math.unit(6, "meters")
  14778. },
  14779. {
  14780. name: "Macro",
  14781. height: math.unit(40, "feet")
  14782. },
  14783. {
  14784. name: "Macro+",
  14785. height: math.unit(200, "meters")
  14786. },
  14787. {
  14788. name: "Megamacro",
  14789. height: math.unit(20, "km")
  14790. },
  14791. {
  14792. name: "Megamacro+",
  14793. height: math.unit(100, "km")
  14794. },
  14795. {
  14796. name: "Gigamacro",
  14797. height: math.unit(200, "megameters")
  14798. },
  14799. {
  14800. name: "Gigamacro+",
  14801. height: math.unit(1.5, "gigameters")
  14802. },
  14803. ]
  14804. ))
  14805. characterMakers.push(() => makeCharacter(
  14806. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14807. {
  14808. front: {
  14809. height: math.unit(6 + 3 / 12, "feet"),
  14810. weight: math.unit(215, "lb"),
  14811. name: "Front",
  14812. image: {
  14813. source: "./media/characters/grynn/front.svg",
  14814. extra: 4627 / 4209,
  14815. bottom: 0.047
  14816. }
  14817. },
  14818. },
  14819. [
  14820. {
  14821. name: "Micro",
  14822. height: math.unit(6, "inches")
  14823. },
  14824. {
  14825. name: "Normal",
  14826. height: math.unit(6 + 3 / 12, "feet"),
  14827. default: true
  14828. },
  14829. {
  14830. name: "Big",
  14831. height: math.unit(104, "feet")
  14832. },
  14833. {
  14834. name: "Macro",
  14835. height: math.unit(944, "feet")
  14836. },
  14837. {
  14838. name: "Macro+",
  14839. height: math.unit(9480, "feet")
  14840. },
  14841. {
  14842. name: "Megamacro",
  14843. height: math.unit(78752, "feet")
  14844. },
  14845. {
  14846. name: "Megamacro+",
  14847. height: math.unit(630128, "feet")
  14848. },
  14849. {
  14850. name: "Megamacro++",
  14851. height: math.unit(3150695, "feet")
  14852. },
  14853. ]
  14854. ))
  14855. characterMakers.push(() => makeCharacter(
  14856. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14857. {
  14858. front: {
  14859. height: math.unit(7 + 5 / 12, "feet"),
  14860. weight: math.unit(450, "lb"),
  14861. name: "Front",
  14862. image: {
  14863. source: "./media/characters/mocha-aura/front.svg",
  14864. extra: 1907 / 1817,
  14865. bottom: 0.04
  14866. }
  14867. },
  14868. back: {
  14869. height: math.unit(7 + 5 / 12, "feet"),
  14870. weight: math.unit(450, "lb"),
  14871. name: "Back",
  14872. image: {
  14873. source: "./media/characters/mocha-aura/back.svg",
  14874. extra: 1900 / 1825,
  14875. bottom: 0.045
  14876. }
  14877. },
  14878. },
  14879. [
  14880. {
  14881. name: "Nano",
  14882. height: math.unit(1, "nm")
  14883. },
  14884. {
  14885. name: "Megamicro",
  14886. height: math.unit(1, "mm")
  14887. },
  14888. {
  14889. name: "Micro",
  14890. height: math.unit(3, "inches")
  14891. },
  14892. {
  14893. name: "Normal",
  14894. height: math.unit(7 + 5 / 12, "feet"),
  14895. default: true
  14896. },
  14897. {
  14898. name: "Macro",
  14899. height: math.unit(30, "feet")
  14900. },
  14901. {
  14902. name: "Megamacro",
  14903. height: math.unit(3500, "feet")
  14904. },
  14905. {
  14906. name: "Teramacro",
  14907. height: math.unit(500000, "miles")
  14908. },
  14909. {
  14910. name: "Petamacro",
  14911. height: math.unit(50000000000000000, "parsecs")
  14912. },
  14913. ]
  14914. ))
  14915. characterMakers.push(() => makeCharacter(
  14916. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14917. {
  14918. front: {
  14919. height: math.unit(6, "feet"),
  14920. weight: math.unit(150, "lb"),
  14921. name: "Front",
  14922. image: {
  14923. source: "./media/characters/ilisha-devya/front.svg",
  14924. extra: 1053/1049,
  14925. bottom: 270/1323
  14926. }
  14927. },
  14928. back: {
  14929. height: math.unit(6, "feet"),
  14930. weight: math.unit(150, "lb"),
  14931. name: "Back",
  14932. image: {
  14933. source: "./media/characters/ilisha-devya/back.svg",
  14934. extra: 1131/1128,
  14935. bottom: 39/1170
  14936. }
  14937. },
  14938. },
  14939. [
  14940. {
  14941. name: "Macro",
  14942. height: math.unit(500, "feet"),
  14943. default: true
  14944. },
  14945. {
  14946. name: "Megamacro",
  14947. height: math.unit(10, "miles")
  14948. },
  14949. {
  14950. name: "Gigamacro",
  14951. height: math.unit(100000, "miles")
  14952. },
  14953. {
  14954. name: "Examacro",
  14955. height: math.unit(1e9, "lightyears")
  14956. },
  14957. {
  14958. name: "Omniversal",
  14959. height: math.unit(1e33, "lightyears")
  14960. },
  14961. {
  14962. name: "Beyond Infinite",
  14963. height: math.unit(1e100, "lightyears")
  14964. },
  14965. ]
  14966. ))
  14967. characterMakers.push(() => makeCharacter(
  14968. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14969. {
  14970. Side: {
  14971. height: math.unit(6, "feet"),
  14972. weight: math.unit(150, "lb"),
  14973. name: "Side",
  14974. image: {
  14975. source: "./media/characters/mira/side.svg",
  14976. extra: 900 / 799,
  14977. bottom: 0.02
  14978. }
  14979. },
  14980. },
  14981. [
  14982. {
  14983. name: "Human Size",
  14984. height: math.unit(6, "feet")
  14985. },
  14986. {
  14987. name: "Macro",
  14988. height: math.unit(100, "feet"),
  14989. default: true
  14990. },
  14991. {
  14992. name: "Megamacro",
  14993. height: math.unit(10, "miles")
  14994. },
  14995. {
  14996. name: "Gigamacro",
  14997. height: math.unit(25000, "miles")
  14998. },
  14999. {
  15000. name: "Teramacro",
  15001. height: math.unit(300, "AU")
  15002. },
  15003. {
  15004. name: "Full Size",
  15005. height: math.unit(4.5e10, "lightyears")
  15006. },
  15007. ]
  15008. ))
  15009. characterMakers.push(() => makeCharacter(
  15010. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  15011. {
  15012. front: {
  15013. height: math.unit(6, "feet"),
  15014. weight: math.unit(150, "lb"),
  15015. name: "Front",
  15016. image: {
  15017. source: "./media/characters/holly/front.svg",
  15018. extra: 639 / 606
  15019. }
  15020. },
  15021. back: {
  15022. height: math.unit(6, "feet"),
  15023. weight: math.unit(150, "lb"),
  15024. name: "Back",
  15025. image: {
  15026. source: "./media/characters/holly/back.svg",
  15027. extra: 623 / 598
  15028. }
  15029. },
  15030. frontWorking: {
  15031. height: math.unit(6, "feet"),
  15032. weight: math.unit(150, "lb"),
  15033. name: "Front (Working)",
  15034. image: {
  15035. source: "./media/characters/holly/front-working.svg",
  15036. extra: 607 / 577,
  15037. bottom: 0.048
  15038. }
  15039. },
  15040. },
  15041. [
  15042. {
  15043. name: "Normal",
  15044. height: math.unit(12 + 3 / 12, "feet"),
  15045. default: true
  15046. },
  15047. ]
  15048. ))
  15049. characterMakers.push(() => makeCharacter(
  15050. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  15051. {
  15052. front: {
  15053. height: math.unit(6, "feet"),
  15054. weight: math.unit(150, "lb"),
  15055. name: "Front",
  15056. image: {
  15057. source: "./media/characters/porter/front.svg",
  15058. extra: 1,
  15059. bottom: 0.01
  15060. }
  15061. },
  15062. frontRobes: {
  15063. height: math.unit(6, "feet"),
  15064. weight: math.unit(150, "lb"),
  15065. name: "Front (Robes)",
  15066. image: {
  15067. source: "./media/characters/porter/front-robes.svg",
  15068. extra: 1.01,
  15069. bottom: 0.01
  15070. }
  15071. },
  15072. },
  15073. [
  15074. {
  15075. name: "Normal",
  15076. height: math.unit(11 + 9 / 12, "feet"),
  15077. default: true
  15078. },
  15079. ]
  15080. ))
  15081. characterMakers.push(() => makeCharacter(
  15082. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  15083. {
  15084. legendary: {
  15085. height: math.unit(6, "feet"),
  15086. weight: math.unit(150, "lb"),
  15087. name: "Legendary",
  15088. image: {
  15089. source: "./media/characters/lucy/legendary.svg",
  15090. extra: 1355 / 1100,
  15091. bottom: 0.045
  15092. }
  15093. },
  15094. },
  15095. [
  15096. {
  15097. name: "Legendary",
  15098. height: math.unit(86882 * 2, "miles"),
  15099. default: true
  15100. },
  15101. ]
  15102. ))
  15103. characterMakers.push(() => makeCharacter(
  15104. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  15105. {
  15106. front: {
  15107. height: math.unit(6, "feet"),
  15108. weight: math.unit(150, "lb"),
  15109. name: "Front",
  15110. image: {
  15111. source: "./media/characters/drusilla/front.svg",
  15112. extra: 678 / 635,
  15113. bottom: 0.03
  15114. }
  15115. },
  15116. back: {
  15117. height: math.unit(6, "feet"),
  15118. weight: math.unit(150, "lb"),
  15119. name: "Back",
  15120. image: {
  15121. source: "./media/characters/drusilla/back.svg",
  15122. extra: 678 / 635,
  15123. bottom: 0.005
  15124. }
  15125. },
  15126. },
  15127. [
  15128. {
  15129. name: "Macro",
  15130. height: math.unit(100, "feet")
  15131. },
  15132. {
  15133. name: "Canon Height",
  15134. height: math.unit(2000, "feet"),
  15135. default: true
  15136. },
  15137. ]
  15138. ))
  15139. characterMakers.push(() => makeCharacter(
  15140. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  15141. {
  15142. front: {
  15143. height: math.unit(6, "feet"),
  15144. weight: math.unit(180, "lb"),
  15145. name: "Front",
  15146. image: {
  15147. source: "./media/characters/renard-thatch/front.svg",
  15148. extra: 2411 / 2275,
  15149. bottom: 0.01
  15150. }
  15151. },
  15152. frontPosing: {
  15153. height: math.unit(6, "feet"),
  15154. weight: math.unit(180, "lb"),
  15155. name: "Front (Posing)",
  15156. image: {
  15157. source: "./media/characters/renard-thatch/front-posing.svg",
  15158. extra: 2381 / 2261,
  15159. bottom: 0.01
  15160. }
  15161. },
  15162. back: {
  15163. height: math.unit(6, "feet"),
  15164. weight: math.unit(180, "lb"),
  15165. name: "Back",
  15166. image: {
  15167. source: "./media/characters/renard-thatch/back.svg",
  15168. extra: 2428 / 2288
  15169. }
  15170. },
  15171. },
  15172. [
  15173. {
  15174. name: "Micro",
  15175. height: math.unit(3, "inches")
  15176. },
  15177. {
  15178. name: "Default",
  15179. height: math.unit(6, "feet"),
  15180. default: true
  15181. },
  15182. {
  15183. name: "Macro",
  15184. height: math.unit(75, "feet")
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(1450, "feet"),
  15193. weight: math.unit(1.21e6, "tons"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/sekvra/front.svg",
  15197. extra: 1193/1190,
  15198. bottom: 78/1271
  15199. }
  15200. },
  15201. side: {
  15202. height: math.unit(1450, "feet"),
  15203. weight: math.unit(1.21e6, "tons"),
  15204. name: "Side",
  15205. image: {
  15206. source: "./media/characters/sekvra/side.svg",
  15207. extra: 1193/1190,
  15208. bottom: 52/1245
  15209. }
  15210. },
  15211. back: {
  15212. height: math.unit(1450, "feet"),
  15213. weight: math.unit(1.21e6, "tons"),
  15214. name: "Back",
  15215. image: {
  15216. source: "./media/characters/sekvra/back.svg",
  15217. extra: 1219/1216,
  15218. bottom: 21/1240
  15219. }
  15220. },
  15221. frontClothed: {
  15222. height: math.unit(1450, "feet"),
  15223. weight: math.unit(1.21e6, "tons"),
  15224. name: "Front (Clothed)",
  15225. image: {
  15226. source: "./media/characters/sekvra/front-clothed.svg",
  15227. extra: 1192/1189,
  15228. bottom: 79/1271
  15229. }
  15230. },
  15231. },
  15232. [
  15233. {
  15234. name: "Macro",
  15235. height: math.unit(1450, "feet"),
  15236. default: true
  15237. },
  15238. {
  15239. name: "Megamacro",
  15240. height: math.unit(15000, "feet")
  15241. },
  15242. ]
  15243. ))
  15244. characterMakers.push(() => makeCharacter(
  15245. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  15246. {
  15247. front: {
  15248. height: math.unit(6, "feet"),
  15249. weight: math.unit(150, "lb"),
  15250. name: "Front",
  15251. image: {
  15252. source: "./media/characters/carmine/front.svg",
  15253. extra: 1557/1538,
  15254. bottom: 68/1625
  15255. }
  15256. },
  15257. frontArmor: {
  15258. height: math.unit(6, "feet"),
  15259. weight: math.unit(150, "lb"),
  15260. name: "Front (Armor)",
  15261. image: {
  15262. source: "./media/characters/carmine/front-armor.svg",
  15263. extra: 1549/1530,
  15264. bottom: 82/1631
  15265. }
  15266. },
  15267. mouth: {
  15268. height: math.unit(0.55, "feet"),
  15269. name: "Mouth",
  15270. image: {
  15271. source: "./media/characters/carmine/mouth.svg"
  15272. }
  15273. },
  15274. hand: {
  15275. height: math.unit(1.05, "feet"),
  15276. name: "Hand",
  15277. image: {
  15278. source: "./media/characters/carmine/hand.svg"
  15279. }
  15280. },
  15281. foot: {
  15282. height: math.unit(0.6, "feet"),
  15283. name: "Foot",
  15284. image: {
  15285. source: "./media/characters/carmine/foot.svg"
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Large",
  15292. height: math.unit(1, "mile")
  15293. },
  15294. {
  15295. name: "Huge",
  15296. height: math.unit(40, "miles"),
  15297. default: true
  15298. },
  15299. {
  15300. name: "Colossal",
  15301. height: math.unit(2500, "miles")
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(6, "feet"),
  15310. weight: math.unit(150, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/elyssia/front.svg",
  15314. extra: 2201 / 2035,
  15315. bottom: 0.05
  15316. }
  15317. },
  15318. frontClothed: {
  15319. height: math.unit(6, "feet"),
  15320. weight: math.unit(150, "lb"),
  15321. name: "Front (Clothed)",
  15322. image: {
  15323. source: "./media/characters/elyssia/front-clothed.svg",
  15324. extra: 2201 / 2035,
  15325. bottom: 0.05
  15326. }
  15327. },
  15328. back: {
  15329. height: math.unit(6, "feet"),
  15330. weight: math.unit(150, "lb"),
  15331. name: "Back",
  15332. image: {
  15333. source: "./media/characters/elyssia/back.svg",
  15334. extra: 2201 / 2035,
  15335. bottom: 0.013
  15336. }
  15337. },
  15338. },
  15339. [
  15340. {
  15341. name: "Smaller",
  15342. height: math.unit(150, "feet")
  15343. },
  15344. {
  15345. name: "Standard",
  15346. height: math.unit(1400, "feet"),
  15347. default: true
  15348. },
  15349. {
  15350. name: "Distracted",
  15351. height: math.unit(15000, "feet")
  15352. },
  15353. ]
  15354. ))
  15355. characterMakers.push(() => makeCharacter(
  15356. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15357. {
  15358. front: {
  15359. height: math.unit(7 + 4/12, "feet"),
  15360. weight: math.unit(690, "lb"),
  15361. name: "Front",
  15362. image: {
  15363. source: "./media/characters/geno-maxwell/front.svg",
  15364. extra: 984/856,
  15365. bottom: 87/1071
  15366. }
  15367. },
  15368. back: {
  15369. height: math.unit(7 + 4/12, "feet"),
  15370. weight: math.unit(690, "lb"),
  15371. name: "Back",
  15372. image: {
  15373. source: "./media/characters/geno-maxwell/back.svg",
  15374. extra: 981/854,
  15375. bottom: 57/1038
  15376. }
  15377. },
  15378. frontCostume: {
  15379. height: math.unit(7 + 4/12, "feet"),
  15380. weight: math.unit(690, "lb"),
  15381. name: "Front (Costume)",
  15382. image: {
  15383. source: "./media/characters/geno-maxwell/front-costume.svg",
  15384. extra: 984/856,
  15385. bottom: 87/1071
  15386. }
  15387. },
  15388. backcostume: {
  15389. height: math.unit(7 + 4/12, "feet"),
  15390. weight: math.unit(690, "lb"),
  15391. name: "Back (Costume)",
  15392. image: {
  15393. source: "./media/characters/geno-maxwell/back-costume.svg",
  15394. extra: 981/854,
  15395. bottom: 57/1038
  15396. }
  15397. },
  15398. },
  15399. [
  15400. {
  15401. name: "Micro",
  15402. height: math.unit(3, "inches")
  15403. },
  15404. {
  15405. name: "Normal",
  15406. height: math.unit(7 + 4 / 12, "feet"),
  15407. default: true
  15408. },
  15409. {
  15410. name: "Macro",
  15411. height: math.unit(220, "feet")
  15412. },
  15413. {
  15414. name: "Megamacro",
  15415. height: math.unit(11, "miles")
  15416. },
  15417. ]
  15418. ))
  15419. characterMakers.push(() => makeCharacter(
  15420. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15421. {
  15422. front: {
  15423. height: math.unit(7 + 4/12, "feet"),
  15424. weight: math.unit(750, "lb"),
  15425. name: "Front",
  15426. image: {
  15427. source: "./media/characters/regena-maxwell/front.svg",
  15428. extra: 984/856,
  15429. bottom: 87/1071
  15430. }
  15431. },
  15432. back: {
  15433. height: math.unit(7 + 4/12, "feet"),
  15434. weight: math.unit(750, "lb"),
  15435. name: "Back",
  15436. image: {
  15437. source: "./media/characters/regena-maxwell/back.svg",
  15438. extra: 981/854,
  15439. bottom: 57/1038
  15440. }
  15441. },
  15442. frontCostume: {
  15443. height: math.unit(7 + 4/12, "feet"),
  15444. weight: math.unit(750, "lb"),
  15445. name: "Front (Costume)",
  15446. image: {
  15447. source: "./media/characters/regena-maxwell/front-costume.svg",
  15448. extra: 984/856,
  15449. bottom: 87/1071
  15450. }
  15451. },
  15452. backcostume: {
  15453. height: math.unit(7 + 4/12, "feet"),
  15454. weight: math.unit(750, "lb"),
  15455. name: "Back (Costume)",
  15456. image: {
  15457. source: "./media/characters/regena-maxwell/back-costume.svg",
  15458. extra: 981/854,
  15459. bottom: 57/1038
  15460. }
  15461. },
  15462. },
  15463. [
  15464. {
  15465. name: "Normal",
  15466. height: math.unit(7 + 4 / 12, "feet"),
  15467. default: true
  15468. },
  15469. {
  15470. name: "Macro",
  15471. height: math.unit(220, "feet")
  15472. },
  15473. {
  15474. name: "Megamacro",
  15475. height: math.unit(11, "miles")
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(150, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15488. extra: 860 / 690,
  15489. bottom: 0.03
  15490. }
  15491. },
  15492. },
  15493. [
  15494. {
  15495. name: "Normal",
  15496. height: math.unit(1.7, "meters"),
  15497. default: true
  15498. },
  15499. ]
  15500. ))
  15501. characterMakers.push(() => makeCharacter(
  15502. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15503. {
  15504. front: {
  15505. height: math.unit(6, "feet"),
  15506. weight: math.unit(150, "lb"),
  15507. name: "Front",
  15508. image: {
  15509. source: "./media/characters/quilly/front.svg",
  15510. extra: 890 / 776
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Gigamacro",
  15517. height: math.unit(404090, "miles"),
  15518. default: true
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15524. {
  15525. front: {
  15526. height: math.unit(7 + 8 / 12, "feet"),
  15527. weight: math.unit(350, "lb"),
  15528. name: "Front",
  15529. image: {
  15530. source: "./media/characters/tempest/front.svg",
  15531. extra: 1175 / 1086,
  15532. bottom: 0.02
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(7 + 8 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15546. {
  15547. side: {
  15548. height: math.unit(4 + 5 / 12, "feet"),
  15549. weight: math.unit(80, "lb"),
  15550. name: "Side",
  15551. image: {
  15552. source: "./media/characters/rodger/side.svg",
  15553. extra: 1235 / 1118
  15554. }
  15555. },
  15556. },
  15557. [
  15558. {
  15559. name: "Micro",
  15560. height: math.unit(1, "inch")
  15561. },
  15562. {
  15563. name: "Normal",
  15564. height: math.unit(4 + 5 / 12, "feet"),
  15565. default: true
  15566. },
  15567. {
  15568. name: "Macro",
  15569. height: math.unit(120, "feet")
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15575. {
  15576. front: {
  15577. height: math.unit(6, "feet"),
  15578. weight: math.unit(150, "lb"),
  15579. name: "Front",
  15580. image: {
  15581. source: "./media/characters/danyel/front.svg",
  15582. extra: 1185 / 1123,
  15583. bottom: 0.05
  15584. }
  15585. },
  15586. },
  15587. [
  15588. {
  15589. name: "Shrunken",
  15590. height: math.unit(0.5, "mm")
  15591. },
  15592. {
  15593. name: "Micro",
  15594. height: math.unit(1, "mm"),
  15595. default: true
  15596. },
  15597. {
  15598. name: "Upsized",
  15599. height: math.unit(5 + 5 / 12, "feet")
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15605. {
  15606. front: {
  15607. height: math.unit(5 + 6 / 12, "feet"),
  15608. weight: math.unit(200, "lb"),
  15609. name: "Front",
  15610. image: {
  15611. source: "./media/characters/vivian-bijoux/front.svg",
  15612. extra: 1217/1209,
  15613. bottom: 76/1293
  15614. }
  15615. },
  15616. back: {
  15617. height: math.unit(5 + 6 / 12, "feet"),
  15618. weight: math.unit(200, "lb"),
  15619. name: "Back",
  15620. image: {
  15621. source: "./media/characters/vivian-bijoux/back.svg",
  15622. extra: 1214/1208,
  15623. bottom: 51/1265
  15624. }
  15625. },
  15626. dressed: {
  15627. height: math.unit(5 + 6 / 12, "feet"),
  15628. weight: math.unit(200, "lb"),
  15629. name: "Dressed",
  15630. image: {
  15631. source: "./media/characters/vivian-bijoux/dressed.svg",
  15632. extra: 1217/1209,
  15633. bottom: 76/1293
  15634. }
  15635. },
  15636. },
  15637. [
  15638. {
  15639. name: "Normal",
  15640. height: math.unit(5 + 6 / 12, "feet"),
  15641. default: true
  15642. },
  15643. {
  15644. name: "Bad Dream",
  15645. height: math.unit(500, "feet")
  15646. },
  15647. {
  15648. name: "Nightmare",
  15649. height: math.unit(500, "miles")
  15650. },
  15651. ]
  15652. ))
  15653. characterMakers.push(() => makeCharacter(
  15654. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15655. {
  15656. front: {
  15657. height: math.unit(6 + 1 / 12, "feet"),
  15658. weight: math.unit(260, "lb"),
  15659. name: "Front",
  15660. image: {
  15661. source: "./media/characters/zeta/front.svg",
  15662. extra: 1968 / 1889,
  15663. bottom: 0.06
  15664. }
  15665. },
  15666. back: {
  15667. height: math.unit(6 + 1 / 12, "feet"),
  15668. weight: math.unit(260, "lb"),
  15669. name: "Back",
  15670. image: {
  15671. source: "./media/characters/zeta/back.svg",
  15672. extra: 1944 / 1858,
  15673. bottom: 0.03
  15674. }
  15675. },
  15676. hand: {
  15677. height: math.unit(1.112, "feet"),
  15678. name: "Hand",
  15679. image: {
  15680. source: "./media/characters/zeta/hand.svg"
  15681. }
  15682. },
  15683. foot: {
  15684. height: math.unit(1.48, "feet"),
  15685. name: "Foot",
  15686. image: {
  15687. source: "./media/characters/zeta/foot.svg"
  15688. }
  15689. },
  15690. },
  15691. [
  15692. {
  15693. name: "Micro",
  15694. height: math.unit(6, "inches")
  15695. },
  15696. {
  15697. name: "Normal",
  15698. height: math.unit(6 + 1 / 12, "feet"),
  15699. default: true
  15700. },
  15701. {
  15702. name: "Macro",
  15703. height: math.unit(20, "feet")
  15704. },
  15705. ]
  15706. ))
  15707. characterMakers.push(() => makeCharacter(
  15708. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15709. {
  15710. front: {
  15711. height: math.unit(6, "feet"),
  15712. weight: math.unit(150, "lb"),
  15713. name: "Front",
  15714. image: {
  15715. source: "./media/characters/jamie-larsen/front.svg",
  15716. extra: 962 / 933,
  15717. bottom: 0.02
  15718. }
  15719. },
  15720. back: {
  15721. height: math.unit(6, "feet"),
  15722. weight: math.unit(150, "lb"),
  15723. name: "Back",
  15724. image: {
  15725. source: "./media/characters/jamie-larsen/back.svg",
  15726. extra: 997 / 946
  15727. }
  15728. },
  15729. },
  15730. [
  15731. {
  15732. name: "Macro",
  15733. height: math.unit(28 + 7 / 12, "feet"),
  15734. default: true
  15735. },
  15736. {
  15737. name: "Macro+",
  15738. height: math.unit(180, "feet")
  15739. },
  15740. {
  15741. name: "Megamacro",
  15742. height: math.unit(10, "miles")
  15743. },
  15744. {
  15745. name: "Gigamacro",
  15746. height: math.unit(200000, "miles")
  15747. },
  15748. ]
  15749. ))
  15750. characterMakers.push(() => makeCharacter(
  15751. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15752. {
  15753. front: {
  15754. height: math.unit(6, "feet"),
  15755. weight: math.unit(120, "lb"),
  15756. name: "Front",
  15757. image: {
  15758. source: "./media/characters/vance/front.svg",
  15759. extra: 1980 / 1890,
  15760. bottom: 0.09
  15761. }
  15762. },
  15763. back: {
  15764. height: math.unit(6, "feet"),
  15765. weight: math.unit(120, "lb"),
  15766. name: "Back",
  15767. image: {
  15768. source: "./media/characters/vance/back.svg",
  15769. extra: 2081 / 1994,
  15770. bottom: 0.014
  15771. }
  15772. },
  15773. hand: {
  15774. height: math.unit(0.88, "feet"),
  15775. name: "Hand",
  15776. image: {
  15777. source: "./media/characters/vance/hand.svg"
  15778. }
  15779. },
  15780. foot: {
  15781. height: math.unit(0.64, "feet"),
  15782. name: "Foot",
  15783. image: {
  15784. source: "./media/characters/vance/foot.svg"
  15785. }
  15786. },
  15787. },
  15788. [
  15789. {
  15790. name: "Small",
  15791. height: math.unit(90, "feet"),
  15792. default: true
  15793. },
  15794. {
  15795. name: "Macro",
  15796. height: math.unit(100, "meters")
  15797. },
  15798. {
  15799. name: "Megamacro",
  15800. height: math.unit(15, "miles")
  15801. },
  15802. ]
  15803. ))
  15804. characterMakers.push(() => makeCharacter(
  15805. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15806. {
  15807. front: {
  15808. height: math.unit(6, "feet"),
  15809. weight: math.unit(180, "lb"),
  15810. name: "Front",
  15811. image: {
  15812. source: "./media/characters/xochitl/front.svg",
  15813. extra: 2297 / 2261,
  15814. bottom: 0.065
  15815. }
  15816. },
  15817. back: {
  15818. height: math.unit(6, "feet"),
  15819. weight: math.unit(180, "lb"),
  15820. name: "Back",
  15821. image: {
  15822. source: "./media/characters/xochitl/back.svg",
  15823. extra: 2386 / 2354,
  15824. bottom: 0.01
  15825. }
  15826. },
  15827. foot: {
  15828. height: math.unit(6 / 5 * 1.15, "feet"),
  15829. weight: math.unit(150, "lb"),
  15830. name: "Foot",
  15831. image: {
  15832. source: "./media/characters/xochitl/foot.svg"
  15833. }
  15834. },
  15835. },
  15836. [
  15837. {
  15838. name: "Macro",
  15839. height: math.unit(80, "feet")
  15840. },
  15841. {
  15842. name: "Macro+",
  15843. height: math.unit(400, "feet"),
  15844. default: true
  15845. },
  15846. {
  15847. name: "Gigamacro",
  15848. height: math.unit(80000, "miles")
  15849. },
  15850. {
  15851. name: "Gigamacro+",
  15852. height: math.unit(400000, "miles")
  15853. },
  15854. {
  15855. name: "Teramacro",
  15856. height: math.unit(300, "AU")
  15857. },
  15858. ]
  15859. ))
  15860. characterMakers.push(() => makeCharacter(
  15861. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15862. {
  15863. front: {
  15864. height: math.unit(6, "feet"),
  15865. weight: math.unit(150, "lb"),
  15866. name: "Front",
  15867. image: {
  15868. source: "./media/characters/vincent/front.svg",
  15869. extra: 1130 / 1080,
  15870. bottom: 0.055
  15871. }
  15872. },
  15873. beak: {
  15874. height: math.unit(6 * 0.1, "feet"),
  15875. name: "Beak",
  15876. image: {
  15877. source: "./media/characters/vincent/beak.svg"
  15878. }
  15879. },
  15880. hand: {
  15881. height: math.unit(6 * 0.85, "feet"),
  15882. weight: math.unit(150, "lb"),
  15883. name: "Hand",
  15884. image: {
  15885. source: "./media/characters/vincent/hand.svg"
  15886. }
  15887. },
  15888. foot: {
  15889. height: math.unit(6 * 0.19, "feet"),
  15890. weight: math.unit(150, "lb"),
  15891. name: "Foot",
  15892. image: {
  15893. source: "./media/characters/vincent/foot.svg"
  15894. }
  15895. },
  15896. },
  15897. [
  15898. {
  15899. name: "Base",
  15900. height: math.unit(6 + 5 / 12, "feet"),
  15901. default: true
  15902. },
  15903. {
  15904. name: "Macro",
  15905. height: math.unit(300, "feet")
  15906. },
  15907. {
  15908. name: "Megamacro",
  15909. height: math.unit(2, "miles")
  15910. },
  15911. {
  15912. name: "Gigamacro",
  15913. height: math.unit(1000, "miles")
  15914. },
  15915. ]
  15916. ))
  15917. characterMakers.push(() => makeCharacter(
  15918. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15919. {
  15920. front: {
  15921. height: math.unit(2, "meters"),
  15922. weight: math.unit(500, "kg"),
  15923. name: "Front",
  15924. image: {
  15925. source: "./media/characters/coatl/front.svg",
  15926. extra: 3948 / 3500,
  15927. bottom: 0.082
  15928. }
  15929. },
  15930. },
  15931. [
  15932. {
  15933. name: "Normal",
  15934. height: math.unit(4, "meters")
  15935. },
  15936. {
  15937. name: "Macro",
  15938. height: math.unit(100, "meters"),
  15939. default: true
  15940. },
  15941. {
  15942. name: "Macro+",
  15943. height: math.unit(300, "meters")
  15944. },
  15945. {
  15946. name: "Megamacro",
  15947. height: math.unit(3, "gigameters")
  15948. },
  15949. {
  15950. name: "Megamacro+",
  15951. height: math.unit(300, "terameters")
  15952. },
  15953. {
  15954. name: "Megamacro++",
  15955. height: math.unit(3, "lightyears")
  15956. },
  15957. ]
  15958. ))
  15959. characterMakers.push(() => makeCharacter(
  15960. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15961. {
  15962. front: {
  15963. height: math.unit(6, "feet"),
  15964. weight: math.unit(50, "kg"),
  15965. name: "front",
  15966. image: {
  15967. source: "./media/characters/shiroryu/front.svg",
  15968. extra: 1990 / 1935
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Mortal Mingling",
  15975. height: math.unit(3, "meters")
  15976. },
  15977. {
  15978. name: "Kaiju-ish",
  15979. height: math.unit(250, "meters")
  15980. },
  15981. {
  15982. name: "Somewhat Godly",
  15983. height: math.unit(400, "km"),
  15984. default: true
  15985. },
  15986. {
  15987. name: "Planetary",
  15988. height: math.unit(300, "megameters")
  15989. },
  15990. {
  15991. name: "Galaxy-dwarfing",
  15992. height: math.unit(450, "kiloparsecs")
  15993. },
  15994. {
  15995. name: "Universe Eater",
  15996. height: math.unit(150, "gigaparsecs")
  15997. },
  15998. {
  15999. name: "Almost Immeasurable",
  16000. height: math.unit(1.3e266, "yottaparsecs")
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(6, "feet"),
  16009. weight: math.unit(150, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/umeko/front.svg",
  16013. extra: 1,
  16014. bottom: 0.019
  16015. }
  16016. },
  16017. frontArmored: {
  16018. height: math.unit(6, "feet"),
  16019. weight: math.unit(150, "lb"),
  16020. name: "Front (Armored)",
  16021. image: {
  16022. source: "./media/characters/umeko/front-armored.svg",
  16023. extra: 1,
  16024. bottom: 0.021
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Macro",
  16031. height: math.unit(220, "feet"),
  16032. default: true
  16033. },
  16034. {
  16035. name: "Guardian Dragon",
  16036. height: math.unit(50, "miles")
  16037. },
  16038. {
  16039. name: "Cosmic",
  16040. height: math.unit(800000, "miles")
  16041. },
  16042. ]
  16043. ))
  16044. characterMakers.push(() => makeCharacter(
  16045. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  16046. {
  16047. front: {
  16048. height: math.unit(6, "feet"),
  16049. weight: math.unit(150, "lb"),
  16050. name: "Front",
  16051. image: {
  16052. source: "./media/characters/cassidy/front.svg",
  16053. extra: 810/808,
  16054. bottom: 41/851
  16055. }
  16056. },
  16057. },
  16058. [
  16059. {
  16060. name: "Canon Height",
  16061. height: math.unit(120, "feet"),
  16062. default: true
  16063. },
  16064. {
  16065. name: "Macro+",
  16066. height: math.unit(400, "feet")
  16067. },
  16068. {
  16069. name: "Macro++",
  16070. height: math.unit(4000, "feet")
  16071. },
  16072. {
  16073. name: "Megamacro",
  16074. height: math.unit(3, "miles")
  16075. },
  16076. ]
  16077. ))
  16078. characterMakers.push(() => makeCharacter(
  16079. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  16080. {
  16081. front: {
  16082. height: math.unit(6, "feet"),
  16083. weight: math.unit(150, "lb"),
  16084. name: "Front",
  16085. image: {
  16086. source: "./media/characters/isaac/front.svg",
  16087. extra: 896 / 815,
  16088. bottom: 0.11
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Human Size",
  16095. height: math.unit(8, "feet"),
  16096. default: true
  16097. },
  16098. {
  16099. name: "Macro",
  16100. height: math.unit(400, "feet")
  16101. },
  16102. {
  16103. name: "Megamacro",
  16104. height: math.unit(50, "miles")
  16105. },
  16106. {
  16107. name: "Canon Height",
  16108. height: math.unit(200, "AU")
  16109. },
  16110. ]
  16111. ))
  16112. characterMakers.push(() => makeCharacter(
  16113. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  16114. {
  16115. front: {
  16116. height: math.unit(6, "feet"),
  16117. weight: math.unit(72, "kg"),
  16118. name: "Front",
  16119. image: {
  16120. source: "./media/characters/sleekit/front.svg",
  16121. extra: 4693 / 4487,
  16122. bottom: 0.012
  16123. }
  16124. },
  16125. },
  16126. [
  16127. {
  16128. name: "Minimum Height",
  16129. height: math.unit(10, "meters")
  16130. },
  16131. {
  16132. name: "Smaller",
  16133. height: math.unit(25, "meters")
  16134. },
  16135. {
  16136. name: "Larger",
  16137. height: math.unit(38, "meters"),
  16138. default: true
  16139. },
  16140. {
  16141. name: "Maximum height",
  16142. height: math.unit(100, "meters")
  16143. },
  16144. ]
  16145. ))
  16146. characterMakers.push(() => makeCharacter(
  16147. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  16148. {
  16149. front: {
  16150. height: math.unit(6, "feet"),
  16151. weight: math.unit(150, "lb"),
  16152. name: "Front",
  16153. image: {
  16154. source: "./media/characters/nillia/front.svg",
  16155. extra: 719/665,
  16156. bottom: 6/725
  16157. }
  16158. },
  16159. back: {
  16160. height: math.unit(6, "feet"),
  16161. weight: math.unit(150, "lb"),
  16162. name: "Back",
  16163. image: {
  16164. source: "./media/characters/nillia/back.svg",
  16165. extra: 705/651,
  16166. bottom: 5/710
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Canon Height",
  16173. height: math.unit(489, "feet"),
  16174. default: true
  16175. }
  16176. ]
  16177. ))
  16178. characterMakers.push(() => makeCharacter(
  16179. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  16180. {
  16181. front: {
  16182. height: math.unit(6, "feet"),
  16183. weight: math.unit(150, "lb"),
  16184. name: "Front",
  16185. image: {
  16186. source: "./media/characters/mesmyriza/front.svg",
  16187. extra: 1541/1291,
  16188. bottom: 87/1628
  16189. }
  16190. },
  16191. foot: {
  16192. height: math.unit(6 / (250 / 35), "feet"),
  16193. name: "Foot",
  16194. image: {
  16195. source: "./media/characters/mesmyriza/foot.svg"
  16196. }
  16197. },
  16198. },
  16199. [
  16200. {
  16201. name: "Macro",
  16202. height: math.unit(457, "meters"),
  16203. default: true
  16204. },
  16205. {
  16206. name: "Megamacro",
  16207. height: math.unit(8, "megameters")
  16208. },
  16209. ]
  16210. ))
  16211. characterMakers.push(() => makeCharacter(
  16212. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  16213. {
  16214. front: {
  16215. height: math.unit(6, "feet"),
  16216. weight: math.unit(250, "lb"),
  16217. name: "Front",
  16218. image: {
  16219. source: "./media/characters/saudade/front.svg",
  16220. extra: 1172 / 1139,
  16221. bottom: 0.035
  16222. }
  16223. },
  16224. },
  16225. [
  16226. {
  16227. name: "Micro",
  16228. height: math.unit(3, "inches")
  16229. },
  16230. {
  16231. name: "Normal",
  16232. height: math.unit(6, "feet"),
  16233. default: true
  16234. },
  16235. {
  16236. name: "Macro",
  16237. height: math.unit(50, "feet")
  16238. },
  16239. {
  16240. name: "Megamacro",
  16241. height: math.unit(2800, "feet")
  16242. },
  16243. ]
  16244. ))
  16245. characterMakers.push(() => makeCharacter(
  16246. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  16247. {
  16248. front: {
  16249. height: math.unit(5 + 4 / 12, "feet"),
  16250. weight: math.unit(100, "lb"),
  16251. name: "Front",
  16252. image: {
  16253. source: "./media/characters/keireer/front.svg",
  16254. extra: 716 / 666,
  16255. bottom: 0.05
  16256. }
  16257. },
  16258. },
  16259. [
  16260. {
  16261. name: "Normal",
  16262. height: math.unit(5 + 4 / 12, "feet"),
  16263. default: true
  16264. },
  16265. ]
  16266. ))
  16267. characterMakers.push(() => makeCharacter(
  16268. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  16269. {
  16270. front: {
  16271. height: math.unit(5.5, "feet"),
  16272. weight: math.unit(90, "kg"),
  16273. name: "Front",
  16274. image: {
  16275. source: "./media/characters/mirja/front.svg",
  16276. extra: 1452/1262,
  16277. bottom: 67/1519
  16278. }
  16279. },
  16280. frontDressed: {
  16281. height: math.unit(5.5, "feet"),
  16282. weight: math.unit(90, "lb"),
  16283. name: "Front (Dressed)",
  16284. image: {
  16285. source: "./media/characters/mirja/dressed.svg",
  16286. extra: 1452/1262,
  16287. bottom: 67/1519
  16288. }
  16289. },
  16290. back: {
  16291. height: math.unit(6, "feet"),
  16292. weight: math.unit(90, "lb"),
  16293. name: "Back",
  16294. image: {
  16295. source: "./media/characters/mirja/back.svg",
  16296. extra: 1892/1795,
  16297. bottom: 48/1940
  16298. }
  16299. },
  16300. maw: {
  16301. height: math.unit(1.312, "feet"),
  16302. name: "Maw",
  16303. image: {
  16304. source: "./media/characters/mirja/maw.svg"
  16305. }
  16306. },
  16307. paw: {
  16308. height: math.unit(1.15, "feet"),
  16309. name: "Paw",
  16310. image: {
  16311. source: "./media/characters/mirja/paw.svg"
  16312. }
  16313. },
  16314. },
  16315. [
  16316. {
  16317. name: "\"Incognito\"",
  16318. height: math.unit(3, "meters")
  16319. },
  16320. {
  16321. name: "Strolling Size",
  16322. height: math.unit(15, "km")
  16323. },
  16324. {
  16325. name: "Larger Strolling Size",
  16326. height: math.unit(400, "km")
  16327. },
  16328. {
  16329. name: "Preferred Size",
  16330. height: math.unit(5000, "km"),
  16331. default: true
  16332. },
  16333. {
  16334. name: "True Size",
  16335. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16336. },
  16337. ]
  16338. ))
  16339. characterMakers.push(() => makeCharacter(
  16340. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16341. {
  16342. front: {
  16343. height: math.unit(15, "feet"),
  16344. weight: math.unit(880, "kg"),
  16345. name: "Front",
  16346. image: {
  16347. source: "./media/characters/nightraver/front.svg",
  16348. extra: 2444 / 2160,
  16349. bottom: 0.027
  16350. }
  16351. },
  16352. back: {
  16353. height: math.unit(15, "feet"),
  16354. weight: math.unit(880, "kg"),
  16355. name: "Back",
  16356. image: {
  16357. source: "./media/characters/nightraver/back.svg",
  16358. extra: 2309 / 2180,
  16359. bottom: 0.005
  16360. }
  16361. },
  16362. sole: {
  16363. height: math.unit(2.878, "feet"),
  16364. name: "Sole",
  16365. image: {
  16366. source: "./media/characters/nightraver/sole.svg"
  16367. }
  16368. },
  16369. foot: {
  16370. height: math.unit(2.285, "feet"),
  16371. name: "Foot",
  16372. image: {
  16373. source: "./media/characters/nightraver/foot.svg"
  16374. }
  16375. },
  16376. maw: {
  16377. height: math.unit(2.67, "feet"),
  16378. name: "Maw",
  16379. image: {
  16380. source: "./media/characters/nightraver/maw.svg"
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Micro",
  16387. height: math.unit(1, "cm")
  16388. },
  16389. {
  16390. name: "Normal",
  16391. height: math.unit(15, "feet"),
  16392. default: true
  16393. },
  16394. {
  16395. name: "Macro",
  16396. height: math.unit(300, "feet")
  16397. },
  16398. {
  16399. name: "Megamacro",
  16400. height: math.unit(300, "miles")
  16401. },
  16402. {
  16403. name: "Gigamacro",
  16404. height: math.unit(10000, "miles")
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16410. {
  16411. side: {
  16412. height: math.unit(2, "inches"),
  16413. weight: math.unit(5, "grams"),
  16414. name: "Side",
  16415. image: {
  16416. source: "./media/characters/arc/side.svg"
  16417. }
  16418. },
  16419. },
  16420. [
  16421. {
  16422. name: "Micro",
  16423. height: math.unit(2, "inches"),
  16424. default: true
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(1.1938, "meters"),
  16433. weight: math.unit(54, "kg"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/nebula-shahar/front.svg",
  16437. extra: 1642 / 1436,
  16438. bottom: 0.06
  16439. }
  16440. },
  16441. },
  16442. [
  16443. {
  16444. name: "Megamicro",
  16445. height: math.unit(0.3, "mm")
  16446. },
  16447. {
  16448. name: "Micro",
  16449. height: math.unit(3, "cm")
  16450. },
  16451. {
  16452. name: "Normal",
  16453. height: math.unit(138, "cm"),
  16454. default: true
  16455. },
  16456. {
  16457. name: "Macro",
  16458. height: math.unit(30, "m")
  16459. },
  16460. ]
  16461. ))
  16462. characterMakers.push(() => makeCharacter(
  16463. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16464. {
  16465. front: {
  16466. height: math.unit(5.24, "feet"),
  16467. weight: math.unit(150, "lb"),
  16468. name: "Front",
  16469. image: {
  16470. source: "./media/characters/shayla/front.svg",
  16471. extra: 1512 / 1414,
  16472. bottom: 0.01
  16473. }
  16474. },
  16475. back: {
  16476. height: math.unit(5.24, "feet"),
  16477. weight: math.unit(150, "lb"),
  16478. name: "Back",
  16479. image: {
  16480. source: "./media/characters/shayla/back.svg",
  16481. extra: 1512 / 1414
  16482. }
  16483. },
  16484. hand: {
  16485. height: math.unit(0.7781496062992126, "feet"),
  16486. name: "Hand",
  16487. image: {
  16488. source: "./media/characters/shayla/hand.svg"
  16489. }
  16490. },
  16491. foot: {
  16492. height: math.unit(1.4206036745406823, "feet"),
  16493. name: "Foot",
  16494. image: {
  16495. source: "./media/characters/shayla/foot.svg"
  16496. }
  16497. },
  16498. },
  16499. [
  16500. {
  16501. name: "Micro",
  16502. height: math.unit(0.32, "feet")
  16503. },
  16504. {
  16505. name: "Normal",
  16506. height: math.unit(5.24, "feet"),
  16507. default: true
  16508. },
  16509. {
  16510. name: "Macro",
  16511. height: math.unit(492.12, "feet")
  16512. },
  16513. {
  16514. name: "Megamacro",
  16515. height: math.unit(186.41, "miles")
  16516. },
  16517. ]
  16518. ))
  16519. characterMakers.push(() => makeCharacter(
  16520. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16521. {
  16522. front: {
  16523. height: math.unit(2.2, "m"),
  16524. weight: math.unit(120, "kg"),
  16525. name: "Front",
  16526. image: {
  16527. source: "./media/characters/pia-jr/front.svg",
  16528. extra: 1000 / 970,
  16529. bottom: 0.035
  16530. }
  16531. },
  16532. hand: {
  16533. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16534. name: "Hand",
  16535. image: {
  16536. source: "./media/characters/pia-jr/hand.svg"
  16537. }
  16538. },
  16539. paw: {
  16540. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16541. name: "Paw",
  16542. image: {
  16543. source: "./media/characters/pia-jr/paw.svg"
  16544. }
  16545. },
  16546. },
  16547. [
  16548. {
  16549. name: "Micro",
  16550. height: math.unit(1.2, "cm")
  16551. },
  16552. {
  16553. name: "Normal",
  16554. height: math.unit(2.2, "m"),
  16555. default: true
  16556. },
  16557. {
  16558. name: "Macro",
  16559. height: math.unit(180, "m")
  16560. },
  16561. {
  16562. name: "Megamacro",
  16563. height: math.unit(420, "km")
  16564. },
  16565. ]
  16566. ))
  16567. characterMakers.push(() => makeCharacter(
  16568. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16569. {
  16570. front: {
  16571. height: math.unit(2, "m"),
  16572. weight: math.unit(115, "kg"),
  16573. name: "Front",
  16574. image: {
  16575. source: "./media/characters/pia-sr/front.svg",
  16576. extra: 760 / 730,
  16577. bottom: 0.015
  16578. }
  16579. },
  16580. back: {
  16581. height: math.unit(2, "m"),
  16582. weight: math.unit(115, "kg"),
  16583. name: "Back",
  16584. image: {
  16585. source: "./media/characters/pia-sr/back.svg",
  16586. extra: 760 / 730,
  16587. bottom: 0.01
  16588. }
  16589. },
  16590. hand: {
  16591. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16592. name: "Hand",
  16593. image: {
  16594. source: "./media/characters/pia-sr/hand.svg"
  16595. }
  16596. },
  16597. foot: {
  16598. height: math.unit(1.83, "feet"),
  16599. name: "Foot",
  16600. image: {
  16601. source: "./media/characters/pia-sr/foot.svg"
  16602. }
  16603. },
  16604. },
  16605. [
  16606. {
  16607. name: "Micro",
  16608. height: math.unit(88, "mm")
  16609. },
  16610. {
  16611. name: "Normal",
  16612. height: math.unit(2, "m"),
  16613. default: true
  16614. },
  16615. {
  16616. name: "Macro",
  16617. height: math.unit(200, "m")
  16618. },
  16619. {
  16620. name: "Megamacro",
  16621. height: math.unit(420, "km")
  16622. },
  16623. ]
  16624. ))
  16625. characterMakers.push(() => makeCharacter(
  16626. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16627. {
  16628. front: {
  16629. height: math.unit(8 + 2 / 12, "feet"),
  16630. weight: math.unit(300, "lb"),
  16631. name: "Front",
  16632. image: {
  16633. source: "./media/characters/kibibyte/front.svg",
  16634. extra: 2221 / 2098,
  16635. bottom: 0.04
  16636. }
  16637. },
  16638. },
  16639. [
  16640. {
  16641. name: "Normal",
  16642. height: math.unit(8 + 2 / 12, "feet"),
  16643. default: true
  16644. },
  16645. {
  16646. name: "Socialable Macro",
  16647. height: math.unit(50, "feet")
  16648. },
  16649. {
  16650. name: "Macro",
  16651. height: math.unit(300, "feet")
  16652. },
  16653. {
  16654. name: "Megamacro",
  16655. height: math.unit(500, "miles")
  16656. },
  16657. ]
  16658. ))
  16659. characterMakers.push(() => makeCharacter(
  16660. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16661. {
  16662. front: {
  16663. height: math.unit(6, "feet"),
  16664. weight: math.unit(150, "lb"),
  16665. name: "Front",
  16666. image: {
  16667. source: "./media/characters/felix/front.svg",
  16668. extra: 762 / 722,
  16669. bottom: 0.02
  16670. }
  16671. },
  16672. frontClothed: {
  16673. height: math.unit(6, "feet"),
  16674. weight: math.unit(150, "lb"),
  16675. name: "Front (Clothed)",
  16676. image: {
  16677. source: "./media/characters/felix/front-clothed.svg",
  16678. extra: 762 / 722,
  16679. bottom: 0.02
  16680. }
  16681. },
  16682. },
  16683. [
  16684. {
  16685. name: "Normal",
  16686. height: math.unit(6 + 8 / 12, "feet"),
  16687. default: true
  16688. },
  16689. {
  16690. name: "Macro",
  16691. height: math.unit(2600, "feet")
  16692. },
  16693. {
  16694. name: "Megamacro",
  16695. height: math.unit(450, "miles")
  16696. },
  16697. ]
  16698. ))
  16699. characterMakers.push(() => makeCharacter(
  16700. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16701. {
  16702. front: {
  16703. height: math.unit(6 + 1 / 12, "feet"),
  16704. weight: math.unit(250, "lb"),
  16705. name: "Front",
  16706. image: {
  16707. source: "./media/characters/tobo/front.svg",
  16708. extra: 608 / 586,
  16709. bottom: 0.023
  16710. }
  16711. },
  16712. back: {
  16713. height: math.unit(6 + 1 / 12, "feet"),
  16714. weight: math.unit(250, "lb"),
  16715. name: "Back",
  16716. image: {
  16717. source: "./media/characters/tobo/back.svg",
  16718. extra: 608 / 586
  16719. }
  16720. },
  16721. },
  16722. [
  16723. {
  16724. name: "Nano",
  16725. height: math.unit(2, "nm")
  16726. },
  16727. {
  16728. name: "Megamicro",
  16729. height: math.unit(0.1, "mm")
  16730. },
  16731. {
  16732. name: "Micro",
  16733. height: math.unit(1, "inch"),
  16734. default: true
  16735. },
  16736. {
  16737. name: "Human-sized",
  16738. height: math.unit(6 + 1 / 12, "feet")
  16739. },
  16740. {
  16741. name: "Macro",
  16742. height: math.unit(250, "feet")
  16743. },
  16744. {
  16745. name: "Megamacro",
  16746. height: math.unit(75, "miles")
  16747. },
  16748. {
  16749. name: "Texas-sized",
  16750. height: math.unit(750, "miles")
  16751. },
  16752. {
  16753. name: "Teramacro",
  16754. height: math.unit(50000, "miles")
  16755. },
  16756. ]
  16757. ))
  16758. characterMakers.push(() => makeCharacter(
  16759. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16760. {
  16761. front: {
  16762. height: math.unit(6, "feet"),
  16763. weight: math.unit(269, "lb"),
  16764. name: "Front",
  16765. image: {
  16766. source: "./media/characters/danny-kapowsky/front.svg",
  16767. extra: 766 / 736,
  16768. bottom: 0.044
  16769. }
  16770. },
  16771. back: {
  16772. height: math.unit(6, "feet"),
  16773. weight: math.unit(269, "lb"),
  16774. name: "Back",
  16775. image: {
  16776. source: "./media/characters/danny-kapowsky/back.svg",
  16777. extra: 797 / 760,
  16778. bottom: 0.025
  16779. }
  16780. },
  16781. },
  16782. [
  16783. {
  16784. name: "Macro",
  16785. height: math.unit(150, "feet"),
  16786. default: true
  16787. },
  16788. {
  16789. name: "Macro+",
  16790. height: math.unit(200, "feet")
  16791. },
  16792. {
  16793. name: "Macro++",
  16794. height: math.unit(300, "feet")
  16795. },
  16796. {
  16797. name: "Macro+++",
  16798. height: math.unit(400, "feet")
  16799. },
  16800. ]
  16801. ))
  16802. characterMakers.push(() => makeCharacter(
  16803. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16804. {
  16805. side: {
  16806. height: math.unit(6, "feet"),
  16807. weight: math.unit(170, "lb"),
  16808. name: "Side",
  16809. image: {
  16810. source: "./media/characters/finn/side.svg",
  16811. extra: 1953 / 1807,
  16812. bottom: 0.057
  16813. }
  16814. },
  16815. },
  16816. [
  16817. {
  16818. name: "Megamacro",
  16819. height: math.unit(14445, "feet"),
  16820. default: true
  16821. },
  16822. ]
  16823. ))
  16824. characterMakers.push(() => makeCharacter(
  16825. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16826. {
  16827. front: {
  16828. height: math.unit(5 + 6 / 12, "feet"),
  16829. weight: math.unit(125, "lb"),
  16830. name: "Front",
  16831. image: {
  16832. source: "./media/characters/roy/front.svg",
  16833. extra: 1,
  16834. bottom: 0.11
  16835. }
  16836. },
  16837. },
  16838. [
  16839. {
  16840. name: "Micro",
  16841. height: math.unit(3, "inches"),
  16842. default: true
  16843. },
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(5 + 6 / 12, "feet")
  16847. },
  16848. {
  16849. name: "Lesser Macro",
  16850. height: math.unit(60, "feet")
  16851. },
  16852. {
  16853. name: "Greater Macro",
  16854. height: math.unit(120, "feet")
  16855. },
  16856. ]
  16857. ))
  16858. characterMakers.push(() => makeCharacter(
  16859. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16860. {
  16861. front: {
  16862. height: math.unit(6, "feet"),
  16863. weight: math.unit(100, "lb"),
  16864. name: "Front",
  16865. image: {
  16866. source: "./media/characters/aevsivs/front.svg",
  16867. extra: 1,
  16868. bottom: 0.03
  16869. }
  16870. },
  16871. back: {
  16872. height: math.unit(6, "feet"),
  16873. weight: math.unit(100, "lb"),
  16874. name: "Back",
  16875. image: {
  16876. source: "./media/characters/aevsivs/back.svg"
  16877. }
  16878. },
  16879. },
  16880. [
  16881. {
  16882. name: "Micro",
  16883. height: math.unit(2, "inches"),
  16884. default: true
  16885. },
  16886. {
  16887. name: "Normal",
  16888. height: math.unit(5, "feet")
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16894. {
  16895. front: {
  16896. height: math.unit(5 + 7 / 12, "feet"),
  16897. weight: math.unit(159, "lb"),
  16898. name: "Front",
  16899. image: {
  16900. source: "./media/characters/hildegard/front.svg",
  16901. extra: 289 / 269,
  16902. bottom: 7.63 / 297.8
  16903. }
  16904. },
  16905. back: {
  16906. height: math.unit(5 + 7 / 12, "feet"),
  16907. weight: math.unit(159, "lb"),
  16908. name: "Back",
  16909. image: {
  16910. source: "./media/characters/hildegard/back.svg",
  16911. extra: 280 / 260,
  16912. bottom: 2.3 / 282
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(5 + 7 / 12, "feet"),
  16920. default: true
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16926. {
  16927. bernard: {
  16928. height: math.unit(2 + 7 / 12, "feet"),
  16929. weight: math.unit(66, "lb"),
  16930. name: "Bernard",
  16931. rename: true,
  16932. image: {
  16933. source: "./media/characters/bernard-wilder/bernard.svg",
  16934. extra: 192 / 128,
  16935. bottom: 0.05
  16936. }
  16937. },
  16938. wilder: {
  16939. height: math.unit(5 + 8 / 12, "feet"),
  16940. weight: math.unit(143, "lb"),
  16941. name: "Wilder",
  16942. rename: true,
  16943. image: {
  16944. source: "./media/characters/bernard-wilder/wilder.svg",
  16945. extra: 361 / 312,
  16946. bottom: 0.02
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Normal",
  16953. height: math.unit(2 + 7 / 12, "feet"),
  16954. default: true
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16960. {
  16961. anthro: {
  16962. height: math.unit(6 + 1 / 12, "feet"),
  16963. weight: math.unit(155, "lb"),
  16964. name: "Anthro",
  16965. image: {
  16966. source: "./media/characters/hearth/anthro.svg",
  16967. extra: 1178/1136,
  16968. bottom: 28/1206
  16969. }
  16970. },
  16971. feral: {
  16972. height: math.unit(3.78, "feet"),
  16973. weight: math.unit(35, "kg"),
  16974. name: "Feral",
  16975. image: {
  16976. source: "./media/characters/hearth/feral.svg",
  16977. extra: 153 / 135,
  16978. bottom: 0.03
  16979. }
  16980. },
  16981. },
  16982. [
  16983. {
  16984. name: "Normal",
  16985. height: math.unit(6 + 1 / 12, "feet"),
  16986. default: true
  16987. },
  16988. ]
  16989. ))
  16990. characterMakers.push(() => makeCharacter(
  16991. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16992. {
  16993. front: {
  16994. height: math.unit(6, "feet"),
  16995. weight: math.unit(182, "lb"),
  16996. name: "Front",
  16997. image: {
  16998. source: "./media/characters/ingrid/front.svg",
  16999. extra: 294 / 268,
  17000. bottom: 0.027
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(6, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  17014. {
  17015. eevee: {
  17016. height: math.unit(2 + 10 / 12, "feet"),
  17017. weight: math.unit(86, "lb"),
  17018. name: "Malgam",
  17019. image: {
  17020. source: "./media/characters/malgam/eevee.svg",
  17021. extra: 952/784,
  17022. bottom: 38/990
  17023. }
  17024. },
  17025. sylveon: {
  17026. height: math.unit(4, "feet"),
  17027. weight: math.unit(101, "lb"),
  17028. name: "Future Malgam",
  17029. rename: true,
  17030. image: {
  17031. source: "./media/characters/malgam/sylveon.svg",
  17032. extra: 371 / 325,
  17033. bottom: 0.015
  17034. }
  17035. },
  17036. gigantamax: {
  17037. height: math.unit(50, "feet"),
  17038. name: "Gigantamax Malgam",
  17039. rename: true,
  17040. image: {
  17041. source: "./media/characters/malgam/gigantamax.svg"
  17042. }
  17043. },
  17044. },
  17045. [
  17046. {
  17047. name: "Normal",
  17048. height: math.unit(2 + 10 / 12, "feet"),
  17049. default: true
  17050. },
  17051. ]
  17052. ))
  17053. characterMakers.push(() => makeCharacter(
  17054. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  17055. {
  17056. front: {
  17057. height: math.unit(5 + 11 / 12, "feet"),
  17058. weight: math.unit(188, "lb"),
  17059. name: "Front",
  17060. image: {
  17061. source: "./media/characters/fleur/front.svg",
  17062. extra: 309 / 283,
  17063. bottom: 0.007
  17064. }
  17065. },
  17066. },
  17067. [
  17068. {
  17069. name: "Normal",
  17070. height: math.unit(5 + 11 / 12, "feet"),
  17071. default: true
  17072. },
  17073. ]
  17074. ))
  17075. characterMakers.push(() => makeCharacter(
  17076. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  17077. {
  17078. front: {
  17079. height: math.unit(5 + 4 / 12, "feet"),
  17080. weight: math.unit(122, "lb"),
  17081. name: "Front",
  17082. image: {
  17083. source: "./media/characters/jude/front.svg",
  17084. extra: 288 / 273,
  17085. bottom: 0.03
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Normal",
  17092. height: math.unit(5 + 4 / 12, "feet"),
  17093. default: true
  17094. },
  17095. ]
  17096. ))
  17097. characterMakers.push(() => makeCharacter(
  17098. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  17099. {
  17100. front: {
  17101. height: math.unit(5 + 11 / 12, "feet"),
  17102. weight: math.unit(190, "lb"),
  17103. name: "Front",
  17104. image: {
  17105. source: "./media/characters/seara/front.svg",
  17106. extra: 1,
  17107. bottom: 0.05
  17108. }
  17109. },
  17110. },
  17111. [
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(5 + 11 / 12, "feet"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(16 + 5 / 12, "feet"),
  17124. weight: math.unit(524, "lb"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/caspian-lugia/front.svg",
  17128. extra: 1,
  17129. bottom: 0.04
  17130. }
  17131. },
  17132. },
  17133. [
  17134. {
  17135. name: "Normal",
  17136. height: math.unit(16 + 5 / 12, "feet"),
  17137. default: true
  17138. },
  17139. ]
  17140. ))
  17141. characterMakers.push(() => makeCharacter(
  17142. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  17143. {
  17144. front: {
  17145. height: math.unit(5 + 7 / 12, "feet"),
  17146. weight: math.unit(170, "lb"),
  17147. name: "Front",
  17148. image: {
  17149. source: "./media/characters/mika/front.svg",
  17150. extra: 1,
  17151. bottom: 0.016
  17152. }
  17153. },
  17154. },
  17155. [
  17156. {
  17157. name: "Normal",
  17158. height: math.unit(5 + 7 / 12, "feet"),
  17159. default: true
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  17165. {
  17166. front: {
  17167. height: math.unit(6 + 2 / 12, "feet"),
  17168. weight: math.unit(268, "lb"),
  17169. name: "Front",
  17170. image: {
  17171. source: "./media/characters/sol/front.svg",
  17172. extra: 247 / 231,
  17173. bottom: 0.05
  17174. }
  17175. },
  17176. },
  17177. [
  17178. {
  17179. name: "Normal",
  17180. height: math.unit(6 + 2 / 12, "feet"),
  17181. default: true
  17182. },
  17183. ]
  17184. ))
  17185. characterMakers.push(() => makeCharacter(
  17186. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  17187. {
  17188. buizel: {
  17189. height: math.unit(2 + 5 / 12, "feet"),
  17190. weight: math.unit(87, "lb"),
  17191. name: "Front",
  17192. image: {
  17193. source: "./media/characters/umiko/buizel.svg",
  17194. extra: 172 / 157,
  17195. bottom: 0.01
  17196. },
  17197. form: "buizel",
  17198. default: true
  17199. },
  17200. floatzel: {
  17201. height: math.unit(5 + 9 / 12, "feet"),
  17202. weight: math.unit(250, "lb"),
  17203. name: "Front",
  17204. image: {
  17205. source: "./media/characters/umiko/floatzel.svg",
  17206. extra: 1076/1006,
  17207. bottom: 15/1091
  17208. },
  17209. form: "floatzel",
  17210. default: true
  17211. },
  17212. },
  17213. [
  17214. {
  17215. name: "Normal",
  17216. height: math.unit(2 + 5 / 12, "feet"),
  17217. form: "buizel",
  17218. default: true
  17219. },
  17220. {
  17221. name: "Normal",
  17222. height: math.unit(5 + 9 / 12, "feet"),
  17223. form: "floatzel",
  17224. default: true
  17225. },
  17226. ],
  17227. {
  17228. "buizel": {
  17229. name: "Buizel"
  17230. },
  17231. "floatzel": {
  17232. name: "Floatzel",
  17233. default: true
  17234. }
  17235. }
  17236. ))
  17237. characterMakers.push(() => makeCharacter(
  17238. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  17239. {
  17240. front: {
  17241. height: math.unit(6 + 2 / 12, "feet"),
  17242. weight: math.unit(146, "lb"),
  17243. name: "Front",
  17244. image: {
  17245. source: "./media/characters/iliac/front.svg",
  17246. extra: 389 / 365,
  17247. bottom: 0.035
  17248. }
  17249. },
  17250. },
  17251. [
  17252. {
  17253. name: "Normal",
  17254. height: math.unit(6 + 2 / 12, "feet"),
  17255. default: true
  17256. },
  17257. ]
  17258. ))
  17259. characterMakers.push(() => makeCharacter(
  17260. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  17261. {
  17262. front: {
  17263. height: math.unit(6, "feet"),
  17264. weight: math.unit(170, "lb"),
  17265. name: "Front",
  17266. image: {
  17267. source: "./media/characters/topaz/front.svg",
  17268. extra: 317 / 303,
  17269. bottom: 0.055
  17270. }
  17271. },
  17272. },
  17273. [
  17274. {
  17275. name: "Normal",
  17276. height: math.unit(6, "feet"),
  17277. default: true
  17278. },
  17279. ]
  17280. ))
  17281. characterMakers.push(() => makeCharacter(
  17282. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17283. {
  17284. front: {
  17285. height: math.unit(5 + 11 / 12, "feet"),
  17286. weight: math.unit(144, "lb"),
  17287. name: "Front",
  17288. image: {
  17289. source: "./media/characters/gabriel/front.svg",
  17290. extra: 285 / 262,
  17291. bottom: 0.004
  17292. }
  17293. },
  17294. },
  17295. [
  17296. {
  17297. name: "Normal",
  17298. height: math.unit(5 + 11 / 12, "feet"),
  17299. default: true
  17300. },
  17301. ]
  17302. ))
  17303. characterMakers.push(() => makeCharacter(
  17304. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17305. {
  17306. side: {
  17307. height: math.unit(6 + 5 / 12, "feet"),
  17308. weight: math.unit(300, "lb"),
  17309. name: "Side",
  17310. image: {
  17311. source: "./media/characters/tempest-suicune/side.svg",
  17312. extra: 195 / 154,
  17313. bottom: 0.04
  17314. }
  17315. },
  17316. },
  17317. [
  17318. {
  17319. name: "Normal",
  17320. height: math.unit(6 + 5 / 12, "feet"),
  17321. default: true
  17322. },
  17323. ]
  17324. ))
  17325. characterMakers.push(() => makeCharacter(
  17326. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17327. {
  17328. front: {
  17329. height: math.unit(7 + 2 / 12, "feet"),
  17330. weight: math.unit(322, "lb"),
  17331. name: "Front",
  17332. image: {
  17333. source: "./media/characters/vulcan/front.svg",
  17334. extra: 154 / 147,
  17335. bottom: 0.04
  17336. }
  17337. },
  17338. },
  17339. [
  17340. {
  17341. name: "Normal",
  17342. height: math.unit(7 + 2 / 12, "feet"),
  17343. default: true
  17344. },
  17345. ]
  17346. ))
  17347. characterMakers.push(() => makeCharacter(
  17348. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17349. {
  17350. front: {
  17351. height: math.unit(5 + 10 / 12, "feet"),
  17352. weight: math.unit(264, "lb"),
  17353. name: "Front",
  17354. image: {
  17355. source: "./media/characters/gault/front.svg",
  17356. extra: 161 / 140,
  17357. bottom: 0.028
  17358. }
  17359. },
  17360. },
  17361. [
  17362. {
  17363. name: "Normal",
  17364. height: math.unit(5 + 10 / 12, "feet"),
  17365. default: true
  17366. },
  17367. ]
  17368. ))
  17369. characterMakers.push(() => makeCharacter(
  17370. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17371. {
  17372. front: {
  17373. height: math.unit(6, "feet"),
  17374. weight: math.unit(150, "lb"),
  17375. name: "Front",
  17376. image: {
  17377. source: "./media/characters/shard/front.svg",
  17378. extra: 273 / 238,
  17379. bottom: 0.02
  17380. }
  17381. },
  17382. },
  17383. [
  17384. {
  17385. name: "Normal",
  17386. height: math.unit(3 + 6 / 12, "feet"),
  17387. default: true
  17388. },
  17389. ]
  17390. ))
  17391. characterMakers.push(() => makeCharacter(
  17392. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17393. {
  17394. front: {
  17395. height: math.unit(5 + 11 / 12, "feet"),
  17396. weight: math.unit(146, "lb"),
  17397. name: "Front",
  17398. image: {
  17399. source: "./media/characters/ashe/front.svg",
  17400. extra: 400 / 373,
  17401. bottom: 0.01
  17402. }
  17403. },
  17404. },
  17405. [
  17406. {
  17407. name: "Normal",
  17408. height: math.unit(5 + 11 / 12, "feet"),
  17409. default: true
  17410. },
  17411. ]
  17412. ))
  17413. characterMakers.push(() => makeCharacter(
  17414. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17415. {
  17416. front: {
  17417. height: math.unit(5 + 5 / 12, "feet"),
  17418. weight: math.unit(135, "lb"),
  17419. name: "Front",
  17420. image: {
  17421. source: "./media/characters/beatrix/front.svg",
  17422. extra: 392 / 379,
  17423. bottom: 0.01
  17424. }
  17425. },
  17426. },
  17427. [
  17428. {
  17429. name: "Normal",
  17430. height: math.unit(6, "feet"),
  17431. default: true
  17432. },
  17433. ]
  17434. ))
  17435. characterMakers.push(() => makeCharacter(
  17436. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17437. {
  17438. front: {
  17439. height: math.unit(6 + 2/12, "feet"),
  17440. weight: math.unit(135, "lb"),
  17441. name: "Front",
  17442. image: {
  17443. source: "./media/characters/ignatius/front.svg",
  17444. extra: 1380/1259,
  17445. bottom: 27/1407
  17446. }
  17447. },
  17448. },
  17449. [
  17450. {
  17451. name: "Normal",
  17452. height: math.unit(6 + 2/12, "feet"),
  17453. default: true
  17454. },
  17455. ]
  17456. ))
  17457. characterMakers.push(() => makeCharacter(
  17458. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17459. {
  17460. front: {
  17461. height: math.unit(6 + 2 / 12, "feet"),
  17462. weight: math.unit(138, "lb"),
  17463. name: "Front",
  17464. image: {
  17465. source: "./media/characters/mei-li/front.svg",
  17466. extra: 237 / 229,
  17467. bottom: 0.03
  17468. }
  17469. },
  17470. },
  17471. [
  17472. {
  17473. name: "Normal",
  17474. height: math.unit(6 + 2 / 12, "feet"),
  17475. default: true
  17476. },
  17477. ]
  17478. ))
  17479. characterMakers.push(() => makeCharacter(
  17480. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17481. {
  17482. front: {
  17483. height: math.unit(2 + 4 / 12, "feet"),
  17484. weight: math.unit(62, "lb"),
  17485. name: "Front",
  17486. image: {
  17487. source: "./media/characters/puru/front.svg",
  17488. extra: 206 / 149,
  17489. bottom: 0.06
  17490. }
  17491. },
  17492. },
  17493. [
  17494. {
  17495. name: "Normal",
  17496. height: math.unit(2 + 4 / 12, "feet"),
  17497. default: true
  17498. },
  17499. ]
  17500. ))
  17501. characterMakers.push(() => makeCharacter(
  17502. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17503. {
  17504. anthro: {
  17505. height: math.unit(5 + 8/12, "feet"),
  17506. weight: math.unit(200, "lb"),
  17507. energyNeed: math.unit(2000, "kcal"),
  17508. name: "Anthro",
  17509. image: {
  17510. source: "./media/characters/kee/anthro.svg",
  17511. extra: 3251/3184,
  17512. bottom: 250/3501
  17513. }
  17514. },
  17515. taur: {
  17516. height: math.unit(11, "feet"),
  17517. weight: math.unit(500, "lb"),
  17518. energyNeed: math.unit(5000, "kcal"),
  17519. name: "Taur",
  17520. image: {
  17521. source: "./media/characters/kee/taur.svg",
  17522. extra: 1362/1320,
  17523. bottom: 83/1445
  17524. }
  17525. },
  17526. },
  17527. [
  17528. {
  17529. name: "Normal",
  17530. height: math.unit(5 + 8/12, "feet"),
  17531. default: true
  17532. },
  17533. {
  17534. name: "Macro",
  17535. height: math.unit(35, "feet")
  17536. },
  17537. ]
  17538. ))
  17539. characterMakers.push(() => makeCharacter(
  17540. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17541. {
  17542. anthro: {
  17543. height: math.unit(7, "feet"),
  17544. weight: math.unit(190, "lb"),
  17545. name: "Anthro",
  17546. image: {
  17547. source: "./media/characters/cobalt-dracha/anthro.svg",
  17548. extra: 231 / 225,
  17549. bottom: 0.04
  17550. }
  17551. },
  17552. feral: {
  17553. height: math.unit(9 + 7 / 12, "feet"),
  17554. weight: math.unit(294, "lb"),
  17555. name: "Feral",
  17556. image: {
  17557. source: "./media/characters/cobalt-dracha/feral.svg",
  17558. extra: 692 / 633,
  17559. bottom: 0.05
  17560. }
  17561. },
  17562. },
  17563. [
  17564. {
  17565. name: "Normal",
  17566. height: math.unit(7, "feet"),
  17567. default: true
  17568. },
  17569. ]
  17570. ))
  17571. characterMakers.push(() => makeCharacter(
  17572. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17573. {
  17574. fallen: {
  17575. height: math.unit(11 + 8 / 12, "feet"),
  17576. weight: math.unit(485, "lb"),
  17577. name: "Java (Fallen)",
  17578. rename: true,
  17579. image: {
  17580. source: "./media/characters/java/fallen.svg",
  17581. extra: 226 / 208,
  17582. bottom: 0.005
  17583. }
  17584. },
  17585. godkin: {
  17586. height: math.unit(10 + 6 / 12, "feet"),
  17587. weight: math.unit(328, "lb"),
  17588. name: "Java (Godkin)",
  17589. rename: true,
  17590. image: {
  17591. source: "./media/characters/java/godkin.svg",
  17592. extra: 1104/1068,
  17593. bottom: 36/1140
  17594. }
  17595. },
  17596. },
  17597. [
  17598. {
  17599. name: "Normal",
  17600. height: math.unit(11 + 8 / 12, "feet"),
  17601. default: true
  17602. },
  17603. ]
  17604. ))
  17605. characterMakers.push(() => makeCharacter(
  17606. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17607. {
  17608. front: {
  17609. height: math.unit(5 + 9 / 12, "feet"),
  17610. weight: math.unit(170, "lb"),
  17611. name: "Front",
  17612. image: {
  17613. source: "./media/characters/purna/front.svg",
  17614. extra: 239 / 229,
  17615. bottom: 0.01
  17616. }
  17617. },
  17618. },
  17619. [
  17620. {
  17621. name: "Normal",
  17622. height: math.unit(5 + 9 / 12, "feet"),
  17623. default: true
  17624. },
  17625. ]
  17626. ))
  17627. characterMakers.push(() => makeCharacter(
  17628. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17629. {
  17630. front: {
  17631. height: math.unit(5 + 9 / 12, "feet"),
  17632. weight: math.unit(142, "lb"),
  17633. name: "Front",
  17634. image: {
  17635. source: "./media/characters/kuva/front.svg",
  17636. extra: 281 / 271,
  17637. bottom: 0.006
  17638. }
  17639. },
  17640. },
  17641. [
  17642. {
  17643. name: "Normal",
  17644. height: math.unit(5 + 9 / 12, "feet"),
  17645. default: true
  17646. },
  17647. ]
  17648. ))
  17649. characterMakers.push(() => makeCharacter(
  17650. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17651. {
  17652. anthro: {
  17653. height: math.unit(9 + 2 / 12, "feet"),
  17654. weight: math.unit(270, "lb"),
  17655. name: "Anthro",
  17656. image: {
  17657. source: "./media/characters/embra/anthro.svg",
  17658. extra: 200 / 187,
  17659. bottom: 0.02
  17660. }
  17661. },
  17662. feral: {
  17663. height: math.unit(18 + 8 / 12, "feet"),
  17664. weight: math.unit(576, "lb"),
  17665. name: "Feral",
  17666. image: {
  17667. source: "./media/characters/embra/feral.svg",
  17668. extra: 152 / 137,
  17669. bottom: 0.037
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(9 + 2 / 12, "feet"),
  17677. default: true
  17678. },
  17679. ]
  17680. ))
  17681. characterMakers.push(() => makeCharacter(
  17682. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17683. {
  17684. anthro: {
  17685. height: math.unit(10 + 9 / 12, "feet"),
  17686. weight: math.unit(224, "lb"),
  17687. name: "Anthro",
  17688. image: {
  17689. source: "./media/characters/grottos/anthro.svg",
  17690. extra: 350 / 332,
  17691. bottom: 0.045
  17692. }
  17693. },
  17694. feral: {
  17695. height: math.unit(20 + 7 / 12, "feet"),
  17696. weight: math.unit(629, "lb"),
  17697. name: "Feral",
  17698. image: {
  17699. source: "./media/characters/grottos/feral.svg",
  17700. extra: 207 / 190,
  17701. bottom: 0.05
  17702. }
  17703. },
  17704. },
  17705. [
  17706. {
  17707. name: "Normal",
  17708. height: math.unit(10 + 9 / 12, "feet"),
  17709. default: true
  17710. },
  17711. ]
  17712. ))
  17713. characterMakers.push(() => makeCharacter(
  17714. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17715. {
  17716. anthro: {
  17717. height: math.unit(9 + 6 / 12, "feet"),
  17718. weight: math.unit(298, "lb"),
  17719. name: "Anthro",
  17720. image: {
  17721. source: "./media/characters/frifna/anthro.svg",
  17722. extra: 282 / 269,
  17723. bottom: 0.015
  17724. }
  17725. },
  17726. feral: {
  17727. height: math.unit(16 + 2 / 12, "feet"),
  17728. weight: math.unit(624, "lb"),
  17729. name: "Feral",
  17730. image: {
  17731. source: "./media/characters/frifna/feral.svg"
  17732. }
  17733. },
  17734. },
  17735. [
  17736. {
  17737. name: "Normal",
  17738. height: math.unit(9 + 6 / 12, "feet"),
  17739. default: true
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(6 + 2 / 12, "feet"),
  17748. weight: math.unit(168, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/elise/front.svg",
  17752. extra: 276 / 271
  17753. }
  17754. },
  17755. },
  17756. [
  17757. {
  17758. name: "Normal",
  17759. height: math.unit(6 + 2 / 12, "feet"),
  17760. default: true
  17761. },
  17762. ]
  17763. ))
  17764. characterMakers.push(() => makeCharacter(
  17765. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17766. {
  17767. front: {
  17768. height: math.unit(5 + 10 / 12, "feet"),
  17769. weight: math.unit(210, "lb"),
  17770. name: "Front",
  17771. image: {
  17772. source: "./media/characters/glade/front.svg",
  17773. extra: 258 / 247,
  17774. bottom: 0.008
  17775. }
  17776. },
  17777. },
  17778. [
  17779. {
  17780. name: "Normal",
  17781. height: math.unit(5 + 10 / 12, "feet"),
  17782. default: true
  17783. },
  17784. ]
  17785. ))
  17786. characterMakers.push(() => makeCharacter(
  17787. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17788. {
  17789. front: {
  17790. height: math.unit(5 + 10 / 12, "feet"),
  17791. weight: math.unit(129, "lb"),
  17792. name: "Front",
  17793. image: {
  17794. source: "./media/characters/rina/front.svg",
  17795. extra: 266 / 255,
  17796. bottom: 0.005
  17797. }
  17798. },
  17799. },
  17800. [
  17801. {
  17802. name: "Normal",
  17803. height: math.unit(5 + 10 / 12, "feet"),
  17804. default: true
  17805. },
  17806. ]
  17807. ))
  17808. characterMakers.push(() => makeCharacter(
  17809. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17810. {
  17811. front: {
  17812. height: math.unit(6 + 1 / 12, "feet"),
  17813. weight: math.unit(192, "lb"),
  17814. name: "Front",
  17815. image: {
  17816. source: "./media/characters/veronica/front.svg",
  17817. extra: 319 / 309,
  17818. bottom: 0.005
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(6 + 1 / 12, "feet"),
  17826. default: true
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(9 + 3 / 12, "feet"),
  17835. weight: math.unit(1100, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/braxton/front.svg",
  17839. extra: 1057 / 984,
  17840. bottom: 0.05
  17841. }
  17842. },
  17843. },
  17844. [
  17845. {
  17846. name: "Normal",
  17847. height: math.unit(9 + 3 / 12, "feet")
  17848. },
  17849. {
  17850. name: "Giant",
  17851. height: math.unit(300, "feet"),
  17852. default: true
  17853. },
  17854. {
  17855. name: "Macro",
  17856. height: math.unit(700, "feet")
  17857. },
  17858. {
  17859. name: "Megamacro",
  17860. height: math.unit(6000, "feet")
  17861. },
  17862. ]
  17863. ))
  17864. characterMakers.push(() => makeCharacter(
  17865. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17866. {
  17867. front: {
  17868. height: math.unit(6 + 7 / 12, "feet"),
  17869. weight: math.unit(150, "lb"),
  17870. name: "Front",
  17871. image: {
  17872. source: "./media/characters/blue-feyonics/front.svg",
  17873. extra: 1403 / 1306,
  17874. bottom: 0.047
  17875. }
  17876. },
  17877. },
  17878. [
  17879. {
  17880. name: "Normal",
  17881. height: math.unit(6 + 7 / 12, "feet"),
  17882. default: true
  17883. },
  17884. ]
  17885. ))
  17886. characterMakers.push(() => makeCharacter(
  17887. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17888. {
  17889. front: {
  17890. height: math.unit(1.8, "meters"),
  17891. weight: math.unit(60, "kg"),
  17892. name: "Front",
  17893. image: {
  17894. source: "./media/characters/maxwell/front.svg",
  17895. extra: 2060 / 1873
  17896. }
  17897. },
  17898. },
  17899. [
  17900. {
  17901. name: "Micro",
  17902. height: math.unit(1, "mm")
  17903. },
  17904. {
  17905. name: "Normal",
  17906. height: math.unit(1.8, "meter"),
  17907. default: true
  17908. },
  17909. {
  17910. name: "Macro",
  17911. height: math.unit(30, "meters")
  17912. },
  17913. {
  17914. name: "Megamacro",
  17915. height: math.unit(10, "km")
  17916. },
  17917. ]
  17918. ))
  17919. characterMakers.push(() => makeCharacter(
  17920. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17921. {
  17922. front: {
  17923. height: math.unit(6, "feet"),
  17924. weight: math.unit(150, "lb"),
  17925. name: "Front",
  17926. image: {
  17927. source: "./media/characters/jack/front.svg",
  17928. extra: 1754 / 1640,
  17929. bottom: 0.01
  17930. }
  17931. },
  17932. },
  17933. [
  17934. {
  17935. name: "Normal",
  17936. height: math.unit(80000, "feet"),
  17937. default: true
  17938. },
  17939. {
  17940. name: "Max size",
  17941. height: math.unit(10, "lightyears")
  17942. },
  17943. ]
  17944. ))
  17945. characterMakers.push(() => makeCharacter(
  17946. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17947. {
  17948. urban: {
  17949. height: math.unit(5, "feet"),
  17950. weight: math.unit(240, "lb"),
  17951. name: "Urban",
  17952. image: {
  17953. source: "./media/characters/cafat/urban.svg",
  17954. extra: 1223/1126,
  17955. bottom: 205/1428
  17956. }
  17957. },
  17958. summer: {
  17959. height: math.unit(5, "feet"),
  17960. weight: math.unit(240, "lb"),
  17961. name: "Summer",
  17962. image: {
  17963. source: "./media/characters/cafat/summer.svg",
  17964. extra: 1223/1126,
  17965. bottom: 205/1428
  17966. }
  17967. },
  17968. winter: {
  17969. height: math.unit(5, "feet"),
  17970. weight: math.unit(240, "lb"),
  17971. name: "Winter",
  17972. image: {
  17973. source: "./media/characters/cafat/winter.svg",
  17974. extra: 1223/1126,
  17975. bottom: 205/1428
  17976. }
  17977. },
  17978. lingerie: {
  17979. height: math.unit(5, "feet"),
  17980. weight: math.unit(240, "lb"),
  17981. name: "Lingerie",
  17982. image: {
  17983. source: "./media/characters/cafat/lingerie.svg",
  17984. extra: 1223/1126,
  17985. bottom: 205/1428
  17986. }
  17987. },
  17988. upright: {
  17989. height: math.unit(6.3, "feet"),
  17990. weight: math.unit(240, "lb"),
  17991. name: "Upright",
  17992. image: {
  17993. source: "./media/characters/cafat/upright.svg",
  17994. bottom: 0.01
  17995. }
  17996. },
  17997. uprightFull: {
  17998. height: math.unit(6.3, "feet"),
  17999. weight: math.unit(240, "lb"),
  18000. name: "Upright (Full)",
  18001. image: {
  18002. source: "./media/characters/cafat/upright-full.svg",
  18003. bottom: 0.01
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Small",
  18010. height: math.unit(5, "feet"),
  18011. default: true
  18012. },
  18013. {
  18014. name: "Large",
  18015. height: math.unit(13, "feet")
  18016. },
  18017. ]
  18018. ))
  18019. characterMakers.push(() => makeCharacter(
  18020. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  18021. {
  18022. front: {
  18023. height: math.unit(6, "feet"),
  18024. weight: math.unit(150, "lb"),
  18025. name: "Front",
  18026. image: {
  18027. source: "./media/characters/verin-raharra/front.svg",
  18028. extra: 5019 / 4835,
  18029. bottom: 0.023
  18030. }
  18031. },
  18032. },
  18033. [
  18034. {
  18035. name: "Normal",
  18036. height: math.unit(7 + 5 / 12, "feet"),
  18037. default: true
  18038. },
  18039. {
  18040. name: "Upsized",
  18041. height: math.unit(20, "feet")
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(7, "feet"),
  18050. weight: math.unit(230, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/nakata/front.svg",
  18054. extra: 1.005,
  18055. bottom: 0.01
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(7, "feet"),
  18063. default: true
  18064. },
  18065. {
  18066. name: "Big",
  18067. height: math.unit(14, "feet")
  18068. },
  18069. {
  18070. name: "Macro",
  18071. height: math.unit(400, "feet")
  18072. },
  18073. ]
  18074. ))
  18075. characterMakers.push(() => makeCharacter(
  18076. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  18077. {
  18078. front: {
  18079. height: math.unit(4.91, "feet"),
  18080. weight: math.unit(100, "lb"),
  18081. name: "Front",
  18082. image: {
  18083. source: "./media/characters/lily/front.svg",
  18084. extra: 1585 / 1415,
  18085. bottom: 0.02
  18086. }
  18087. },
  18088. },
  18089. [
  18090. {
  18091. name: "Normal",
  18092. height: math.unit(4.91, "feet"),
  18093. default: true
  18094. },
  18095. ]
  18096. ))
  18097. characterMakers.push(() => makeCharacter(
  18098. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  18099. {
  18100. laying: {
  18101. height: math.unit(4 + 4 / 12, "feet"),
  18102. weight: math.unit(600, "lb"),
  18103. name: "Laying",
  18104. image: {
  18105. source: "./media/characters/sheila/laying.svg",
  18106. extra: 1333 / 1265,
  18107. bottom: 0.16
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Normal",
  18114. height: math.unit(4 + 4 / 12, "feet"),
  18115. default: true
  18116. },
  18117. ]
  18118. ))
  18119. characterMakers.push(() => makeCharacter(
  18120. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  18121. {
  18122. front: {
  18123. height: math.unit(6, "feet"),
  18124. weight: math.unit(190, "lb"),
  18125. name: "Front",
  18126. image: {
  18127. source: "./media/characters/sax/front.svg",
  18128. extra: 1187 / 973,
  18129. bottom: 0.042
  18130. }
  18131. },
  18132. },
  18133. [
  18134. {
  18135. name: "Micro",
  18136. height: math.unit(4, "inches"),
  18137. default: true
  18138. },
  18139. ]
  18140. ))
  18141. characterMakers.push(() => makeCharacter(
  18142. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  18143. {
  18144. front: {
  18145. height: math.unit(6, "feet"),
  18146. weight: math.unit(150, "lb"),
  18147. name: "Front",
  18148. image: {
  18149. source: "./media/characters/pandora/front.svg",
  18150. extra: 2720 / 2556,
  18151. bottom: 0.015
  18152. }
  18153. },
  18154. back: {
  18155. height: math.unit(6, "feet"),
  18156. weight: math.unit(150, "lb"),
  18157. name: "Back",
  18158. image: {
  18159. source: "./media/characters/pandora/back.svg",
  18160. extra: 2720 / 2556,
  18161. bottom: 0.01
  18162. }
  18163. },
  18164. beans: {
  18165. height: math.unit(6 / 8, "feet"),
  18166. name: "Beans",
  18167. image: {
  18168. source: "./media/characters/pandora/beans.svg"
  18169. }
  18170. },
  18171. collar: {
  18172. height: math.unit(0.31, "feet"),
  18173. name: "Collar",
  18174. image: {
  18175. source: "./media/characters/pandora/collar.svg"
  18176. }
  18177. },
  18178. skirt: {
  18179. height: math.unit(6, "feet"),
  18180. weight: math.unit(150, "lb"),
  18181. name: "Skirt",
  18182. image: {
  18183. source: "./media/characters/pandora/skirt.svg",
  18184. extra: 1622 / 1525,
  18185. bottom: 0.015
  18186. }
  18187. },
  18188. hoodie: {
  18189. height: math.unit(6, "feet"),
  18190. weight: math.unit(150, "lb"),
  18191. name: "Hoodie",
  18192. image: {
  18193. source: "./media/characters/pandora/hoodie.svg",
  18194. extra: 1622 / 1525,
  18195. bottom: 0.015
  18196. }
  18197. },
  18198. casual: {
  18199. height: math.unit(6, "feet"),
  18200. weight: math.unit(150, "lb"),
  18201. name: "Casual",
  18202. image: {
  18203. source: "./media/characters/pandora/casual.svg",
  18204. extra: 1622 / 1525,
  18205. bottom: 0.015
  18206. }
  18207. },
  18208. },
  18209. [
  18210. {
  18211. name: "Normal",
  18212. height: math.unit(6, "feet")
  18213. },
  18214. {
  18215. name: "Big Steppy",
  18216. height: math.unit(1, "km"),
  18217. default: true
  18218. },
  18219. {
  18220. name: "Galactic Steppy",
  18221. height: math.unit(2, "gigameters")
  18222. },
  18223. ]
  18224. ))
  18225. characterMakers.push(() => makeCharacter(
  18226. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  18227. {
  18228. side: {
  18229. height: math.unit(10, "feet"),
  18230. weight: math.unit(800, "kg"),
  18231. name: "Side",
  18232. image: {
  18233. source: "./media/characters/venio-darcony/side.svg",
  18234. extra: 1373 / 1003,
  18235. bottom: 0.037
  18236. }
  18237. },
  18238. front: {
  18239. height: math.unit(19, "feet"),
  18240. weight: math.unit(800, "kg"),
  18241. name: "Front",
  18242. image: {
  18243. source: "./media/characters/venio-darcony/front.svg"
  18244. }
  18245. },
  18246. back: {
  18247. height: math.unit(19, "feet"),
  18248. weight: math.unit(800, "kg"),
  18249. name: "Back",
  18250. image: {
  18251. source: "./media/characters/venio-darcony/back.svg"
  18252. }
  18253. },
  18254. sideNsfw: {
  18255. height: math.unit(10, "feet"),
  18256. weight: math.unit(800, "kg"),
  18257. name: "Side (NSFW)",
  18258. image: {
  18259. source: "./media/characters/venio-darcony/side-nsfw.svg",
  18260. extra: 1373 / 1003,
  18261. bottom: 0.037
  18262. }
  18263. },
  18264. frontNsfw: {
  18265. height: math.unit(19, "feet"),
  18266. weight: math.unit(800, "kg"),
  18267. name: "Front (NSFW)",
  18268. image: {
  18269. source: "./media/characters/venio-darcony/front-nsfw.svg"
  18270. }
  18271. },
  18272. backNsfw: {
  18273. height: math.unit(19, "feet"),
  18274. weight: math.unit(800, "kg"),
  18275. name: "Back (NSFW)",
  18276. image: {
  18277. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18278. }
  18279. },
  18280. sideArmored: {
  18281. height: math.unit(10, "feet"),
  18282. weight: math.unit(800, "kg"),
  18283. name: "Side (Armored)",
  18284. image: {
  18285. source: "./media/characters/venio-darcony/side-armored.svg",
  18286. extra: 1373 / 1003,
  18287. bottom: 0.037
  18288. }
  18289. },
  18290. frontArmored: {
  18291. height: math.unit(19, "feet"),
  18292. weight: math.unit(900, "kg"),
  18293. name: "Front (Armored)",
  18294. image: {
  18295. source: "./media/characters/venio-darcony/front-armored.svg"
  18296. }
  18297. },
  18298. backArmored: {
  18299. height: math.unit(19, "feet"),
  18300. weight: math.unit(900, "kg"),
  18301. name: "Back (Armored)",
  18302. image: {
  18303. source: "./media/characters/venio-darcony/back-armored.svg"
  18304. }
  18305. },
  18306. sword: {
  18307. height: math.unit(10, "feet"),
  18308. weight: math.unit(50, "lb"),
  18309. name: "Sword",
  18310. image: {
  18311. source: "./media/characters/venio-darcony/sword.svg"
  18312. }
  18313. },
  18314. },
  18315. [
  18316. {
  18317. name: "Normal",
  18318. height: math.unit(10, "feet")
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(130, "feet"),
  18323. default: true
  18324. },
  18325. {
  18326. name: "Macro+",
  18327. height: math.unit(240, "feet")
  18328. },
  18329. ]
  18330. ))
  18331. characterMakers.push(() => makeCharacter(
  18332. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18333. {
  18334. front: {
  18335. height: math.unit(6, "feet"),
  18336. weight: math.unit(150, "lb"),
  18337. name: "Front",
  18338. image: {
  18339. source: "./media/characters/veski/front.svg",
  18340. extra: 1299 / 1225,
  18341. bottom: 0.04
  18342. }
  18343. },
  18344. back: {
  18345. height: math.unit(6, "feet"),
  18346. weight: math.unit(150, "lb"),
  18347. name: "Back",
  18348. image: {
  18349. source: "./media/characters/veski/back.svg",
  18350. extra: 1299 / 1225,
  18351. bottom: 0.008
  18352. }
  18353. },
  18354. maw: {
  18355. height: math.unit(1.5 * 1.21, "feet"),
  18356. name: "Maw",
  18357. image: {
  18358. source: "./media/characters/veski/maw.svg"
  18359. }
  18360. },
  18361. },
  18362. [
  18363. {
  18364. name: "Macro",
  18365. height: math.unit(2, "km"),
  18366. default: true
  18367. },
  18368. ]
  18369. ))
  18370. characterMakers.push(() => makeCharacter(
  18371. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18372. {
  18373. front: {
  18374. height: math.unit(5 + 7 / 12, "feet"),
  18375. name: "Front",
  18376. image: {
  18377. source: "./media/characters/isabelle/front.svg",
  18378. extra: 2130 / 1976,
  18379. bottom: 0.05
  18380. }
  18381. },
  18382. },
  18383. [
  18384. {
  18385. name: "Supermicro",
  18386. height: math.unit(10, "micrometers")
  18387. },
  18388. {
  18389. name: "Micro",
  18390. height: math.unit(1, "inch")
  18391. },
  18392. {
  18393. name: "Tiny",
  18394. height: math.unit(5, "inches")
  18395. },
  18396. {
  18397. name: "Standard",
  18398. height: math.unit(5 + 7 / 12, "inches")
  18399. },
  18400. {
  18401. name: "Macro",
  18402. height: math.unit(80, "meters"),
  18403. default: true
  18404. },
  18405. {
  18406. name: "Megamacro",
  18407. height: math.unit(250, "meters")
  18408. },
  18409. {
  18410. name: "Gigamacro",
  18411. height: math.unit(5, "km")
  18412. },
  18413. {
  18414. name: "Cosmic",
  18415. height: math.unit(2.5e6, "miles")
  18416. },
  18417. ]
  18418. ))
  18419. characterMakers.push(() => makeCharacter(
  18420. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18421. {
  18422. front: {
  18423. height: math.unit(6, "feet"),
  18424. weight: math.unit(150, "lb"),
  18425. name: "Front",
  18426. image: {
  18427. source: "./media/characters/hanzo/front.svg",
  18428. extra: 374 / 344,
  18429. bottom: 0.02
  18430. }
  18431. },
  18432. },
  18433. [
  18434. {
  18435. name: "Normal",
  18436. height: math.unit(8, "feet"),
  18437. default: true
  18438. },
  18439. ]
  18440. ))
  18441. characterMakers.push(() => makeCharacter(
  18442. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18443. {
  18444. front: {
  18445. height: math.unit(7, "feet"),
  18446. weight: math.unit(130, "lb"),
  18447. name: "Front",
  18448. image: {
  18449. source: "./media/characters/anna/front.svg",
  18450. extra: 169 / 145,
  18451. bottom: 0.06
  18452. }
  18453. },
  18454. full: {
  18455. height: math.unit(4.96, "feet"),
  18456. weight: math.unit(220, "lb"),
  18457. name: "Full",
  18458. image: {
  18459. source: "./media/characters/anna/full.svg",
  18460. extra: 138 / 114,
  18461. bottom: 0.15
  18462. }
  18463. },
  18464. tongue: {
  18465. height: math.unit(2.53, "feet"),
  18466. name: "Tongue",
  18467. image: {
  18468. source: "./media/characters/anna/tongue.svg"
  18469. }
  18470. },
  18471. },
  18472. [
  18473. {
  18474. name: "Normal",
  18475. height: math.unit(7, "feet"),
  18476. default: true
  18477. },
  18478. ]
  18479. ))
  18480. characterMakers.push(() => makeCharacter(
  18481. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18482. {
  18483. front: {
  18484. height: math.unit(7, "feet"),
  18485. weight: math.unit(150, "lb"),
  18486. name: "Front",
  18487. image: {
  18488. source: "./media/characters/ian-corvid/front.svg",
  18489. extra: 150 / 142,
  18490. bottom: 0.02
  18491. }
  18492. },
  18493. back: {
  18494. height: math.unit(7, "feet"),
  18495. weight: math.unit(150, "lb"),
  18496. name: "Back",
  18497. image: {
  18498. source: "./media/characters/ian-corvid/back.svg",
  18499. extra: 150 / 143,
  18500. bottom: 0.01
  18501. }
  18502. },
  18503. stomping: {
  18504. height: math.unit(7, "feet"),
  18505. weight: math.unit(150, "lb"),
  18506. name: "Stomping",
  18507. image: {
  18508. source: "./media/characters/ian-corvid/stomping.svg",
  18509. extra: 76 / 72
  18510. }
  18511. },
  18512. sitting: {
  18513. height: math.unit(7 / 1.8, "feet"),
  18514. weight: math.unit(150, "lb"),
  18515. name: "Sitting",
  18516. image: {
  18517. source: "./media/characters/ian-corvid/sitting.svg",
  18518. extra: 1400 / 1269,
  18519. bottom: 0.15
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Tiny Microw",
  18526. height: math.unit(1, "inch")
  18527. },
  18528. {
  18529. name: "Microw",
  18530. height: math.unit(6, "inches")
  18531. },
  18532. {
  18533. name: "Crow",
  18534. height: math.unit(7 + 1 / 12, "feet"),
  18535. default: true
  18536. },
  18537. {
  18538. name: "Macrow",
  18539. height: math.unit(176, "feet")
  18540. },
  18541. ]
  18542. ))
  18543. characterMakers.push(() => makeCharacter(
  18544. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18545. {
  18546. front: {
  18547. height: math.unit(5 + 7 / 12, "feet"),
  18548. weight: math.unit(147, "lb"),
  18549. name: "Front",
  18550. image: {
  18551. source: "./media/characters/natalie-kellon/front.svg",
  18552. extra: 1214 / 1141,
  18553. bottom: 0.02
  18554. }
  18555. },
  18556. },
  18557. [
  18558. {
  18559. name: "Micro",
  18560. height: math.unit(1 / 16, "inch")
  18561. },
  18562. {
  18563. name: "Tiny",
  18564. height: math.unit(4, "inches")
  18565. },
  18566. {
  18567. name: "Normal",
  18568. height: math.unit(5 + 7 / 12, "feet"),
  18569. default: true
  18570. },
  18571. {
  18572. name: "Amazon",
  18573. height: math.unit(12, "feet")
  18574. },
  18575. {
  18576. name: "Giantess",
  18577. height: math.unit(160, "meters")
  18578. },
  18579. {
  18580. name: "Titaness",
  18581. height: math.unit(800, "meters")
  18582. },
  18583. ]
  18584. ))
  18585. characterMakers.push(() => makeCharacter(
  18586. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18587. {
  18588. front: {
  18589. height: math.unit(6, "feet"),
  18590. weight: math.unit(150, "lb"),
  18591. name: "Front",
  18592. image: {
  18593. source: "./media/characters/alluria/front.svg",
  18594. extra: 806 / 738,
  18595. bottom: 0.01
  18596. }
  18597. },
  18598. side: {
  18599. height: math.unit(6, "feet"),
  18600. weight: math.unit(150, "lb"),
  18601. name: "Side",
  18602. image: {
  18603. source: "./media/characters/alluria/side.svg",
  18604. extra: 800 / 750,
  18605. }
  18606. },
  18607. back: {
  18608. height: math.unit(6, "feet"),
  18609. weight: math.unit(150, "lb"),
  18610. name: "Back",
  18611. image: {
  18612. source: "./media/characters/alluria/back.svg",
  18613. extra: 806 / 738,
  18614. }
  18615. },
  18616. frontMaid: {
  18617. height: math.unit(6, "feet"),
  18618. weight: math.unit(150, "lb"),
  18619. name: "Front (Maid)",
  18620. image: {
  18621. source: "./media/characters/alluria/front-maid.svg",
  18622. extra: 806 / 738,
  18623. bottom: 0.01
  18624. }
  18625. },
  18626. sideMaid: {
  18627. height: math.unit(6, "feet"),
  18628. weight: math.unit(150, "lb"),
  18629. name: "Side (Maid)",
  18630. image: {
  18631. source: "./media/characters/alluria/side-maid.svg",
  18632. extra: 800 / 750,
  18633. bottom: 0.005
  18634. }
  18635. },
  18636. backMaid: {
  18637. height: math.unit(6, "feet"),
  18638. weight: math.unit(150, "lb"),
  18639. name: "Back (Maid)",
  18640. image: {
  18641. source: "./media/characters/alluria/back-maid.svg",
  18642. extra: 806 / 738,
  18643. }
  18644. },
  18645. },
  18646. [
  18647. {
  18648. name: "Micro",
  18649. height: math.unit(6, "inches"),
  18650. default: true
  18651. },
  18652. ]
  18653. ))
  18654. characterMakers.push(() => makeCharacter(
  18655. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18656. {
  18657. front: {
  18658. height: math.unit(6, "feet"),
  18659. weight: math.unit(150, "lb"),
  18660. name: "Front",
  18661. image: {
  18662. source: "./media/characters/kyle/front.svg",
  18663. extra: 1069 / 962,
  18664. bottom: 77.228 / 1727.45
  18665. }
  18666. },
  18667. },
  18668. [
  18669. {
  18670. name: "Macro",
  18671. height: math.unit(150, "feet"),
  18672. default: true
  18673. },
  18674. ]
  18675. ))
  18676. characterMakers.push(() => makeCharacter(
  18677. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18678. {
  18679. front: {
  18680. height: math.unit(6, "feet"),
  18681. weight: math.unit(300, "lb"),
  18682. name: "Front",
  18683. image: {
  18684. source: "./media/characters/duncan/front.svg",
  18685. extra: 1650 / 1482,
  18686. bottom: 0.05
  18687. }
  18688. },
  18689. },
  18690. [
  18691. {
  18692. name: "Macro",
  18693. height: math.unit(100, "feet"),
  18694. default: true
  18695. },
  18696. ]
  18697. ))
  18698. characterMakers.push(() => makeCharacter(
  18699. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18700. {
  18701. front: {
  18702. height: math.unit(5 + 4 / 12, "feet"),
  18703. weight: math.unit(220, "lb"),
  18704. name: "Front",
  18705. image: {
  18706. source: "./media/characters/memory/front.svg",
  18707. extra: 3641 / 3545,
  18708. bottom: 0.03
  18709. }
  18710. },
  18711. back: {
  18712. height: math.unit(5 + 4 / 12, "feet"),
  18713. weight: math.unit(220, "lb"),
  18714. name: "Back",
  18715. image: {
  18716. source: "./media/characters/memory/back.svg",
  18717. extra: 3641 / 3545,
  18718. bottom: 0.025
  18719. }
  18720. },
  18721. frontSkirt: {
  18722. height: math.unit(5 + 4 / 12, "feet"),
  18723. weight: math.unit(220, "lb"),
  18724. name: "Front (Skirt)",
  18725. image: {
  18726. source: "./media/characters/memory/front-skirt.svg",
  18727. extra: 3641 / 3545,
  18728. bottom: 0.03
  18729. }
  18730. },
  18731. frontDress: {
  18732. height: math.unit(5 + 4 / 12, "feet"),
  18733. weight: math.unit(220, "lb"),
  18734. name: "Front (Dress)",
  18735. image: {
  18736. source: "./media/characters/memory/front-dress.svg",
  18737. extra: 3641 / 3545,
  18738. bottom: 0.03
  18739. }
  18740. },
  18741. },
  18742. [
  18743. {
  18744. name: "Micro",
  18745. height: math.unit(6, "inches"),
  18746. default: true
  18747. },
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(5 + 4 / 12, "feet")
  18751. },
  18752. ]
  18753. ))
  18754. characterMakers.push(() => makeCharacter(
  18755. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18756. {
  18757. front: {
  18758. height: math.unit(4 + 11 / 12, "feet"),
  18759. weight: math.unit(100, "lb"),
  18760. name: "Front",
  18761. image: {
  18762. source: "./media/characters/luno/front.svg",
  18763. extra: 1535 / 1487,
  18764. bottom: 0.03
  18765. }
  18766. },
  18767. },
  18768. [
  18769. {
  18770. name: "Micro",
  18771. height: math.unit(3, "inches")
  18772. },
  18773. {
  18774. name: "Normal",
  18775. height: math.unit(4 + 11 / 12, "feet"),
  18776. default: true
  18777. },
  18778. {
  18779. name: "Macro",
  18780. height: math.unit(300, "feet")
  18781. },
  18782. {
  18783. name: "Megamacro",
  18784. height: math.unit(700, "miles")
  18785. },
  18786. ]
  18787. ))
  18788. characterMakers.push(() => makeCharacter(
  18789. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18790. {
  18791. front: {
  18792. height: math.unit(6 + 2 / 12, "feet"),
  18793. weight: math.unit(170, "lb"),
  18794. name: "Front",
  18795. image: {
  18796. source: "./media/characters/jamesy/front.svg",
  18797. extra: 440 / 382,
  18798. bottom: 0.005
  18799. }
  18800. },
  18801. },
  18802. [
  18803. {
  18804. name: "Micro",
  18805. height: math.unit(3, "inches")
  18806. },
  18807. {
  18808. name: "Normal",
  18809. height: math.unit(6 + 2 / 12, "feet"),
  18810. default: true
  18811. },
  18812. {
  18813. name: "Macro",
  18814. height: math.unit(300, "feet")
  18815. },
  18816. {
  18817. name: "Megamacro",
  18818. height: math.unit(700, "miles")
  18819. },
  18820. ]
  18821. ))
  18822. characterMakers.push(() => makeCharacter(
  18823. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18824. {
  18825. front: {
  18826. height: math.unit(6, "feet"),
  18827. weight: math.unit(160, "lb"),
  18828. name: "Front",
  18829. image: {
  18830. source: "./media/characters/mark/front.svg",
  18831. extra: 3300 / 3100,
  18832. bottom: 136.42 / 3440.47
  18833. }
  18834. },
  18835. },
  18836. [
  18837. {
  18838. name: "Macro",
  18839. height: math.unit(120, "meters")
  18840. },
  18841. {
  18842. name: "Bigger Macro",
  18843. height: math.unit(350, "meters")
  18844. },
  18845. {
  18846. name: "Megamacro",
  18847. height: math.unit(8, "km"),
  18848. default: true
  18849. },
  18850. {
  18851. name: "Continental",
  18852. height: math.unit(4550, "km")
  18853. },
  18854. {
  18855. name: "Planetary",
  18856. height: math.unit(65000, "km")
  18857. },
  18858. ]
  18859. ))
  18860. characterMakers.push(() => makeCharacter(
  18861. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18862. {
  18863. front: {
  18864. height: math.unit(6, "feet"),
  18865. weight: math.unit(400, "lb"),
  18866. name: "Front",
  18867. image: {
  18868. source: "./media/characters/mac/front.svg",
  18869. extra: 1048 / 987.7,
  18870. bottom: 60 / 1107.6,
  18871. }
  18872. },
  18873. },
  18874. [
  18875. {
  18876. name: "Macro",
  18877. height: math.unit(500, "feet"),
  18878. default: true
  18879. },
  18880. ]
  18881. ))
  18882. characterMakers.push(() => makeCharacter(
  18883. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18884. {
  18885. front: {
  18886. height: math.unit(5 + 2 / 12, "feet"),
  18887. weight: math.unit(190, "lb"),
  18888. name: "Front",
  18889. image: {
  18890. source: "./media/characters/bari/front.svg",
  18891. extra: 3156 / 2880,
  18892. bottom: 0.03
  18893. }
  18894. },
  18895. back: {
  18896. height: math.unit(5 + 2 / 12, "feet"),
  18897. weight: math.unit(190, "lb"),
  18898. name: "Back",
  18899. image: {
  18900. source: "./media/characters/bari/back.svg",
  18901. extra: 3260 / 2834,
  18902. bottom: 0.025
  18903. }
  18904. },
  18905. frontPlush: {
  18906. height: math.unit(5 + 2 / 12, "feet"),
  18907. weight: math.unit(190, "lb"),
  18908. name: "Front (Plush)",
  18909. image: {
  18910. source: "./media/characters/bari/front-plush.svg",
  18911. extra: 1112 / 1061,
  18912. bottom: 0.002
  18913. }
  18914. },
  18915. },
  18916. [
  18917. {
  18918. name: "Micro",
  18919. height: math.unit(3, "inches")
  18920. },
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(5 + 2 / 12, "feet"),
  18924. default: true
  18925. },
  18926. {
  18927. name: "Macro",
  18928. height: math.unit(20, "feet")
  18929. },
  18930. ]
  18931. ))
  18932. characterMakers.push(() => makeCharacter(
  18933. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18934. {
  18935. front: {
  18936. height: math.unit(6 + 1 / 12, "feet"),
  18937. weight: math.unit(275, "lb"),
  18938. name: "Front",
  18939. image: {
  18940. source: "./media/characters/hunter-misha-raven/front.svg"
  18941. }
  18942. },
  18943. },
  18944. [
  18945. {
  18946. name: "Mortal",
  18947. height: math.unit(6 + 1 / 12, "feet")
  18948. },
  18949. {
  18950. name: "Divine",
  18951. height: math.unit(1.12134e34, "parsecs"),
  18952. default: true
  18953. },
  18954. ]
  18955. ))
  18956. characterMakers.push(() => makeCharacter(
  18957. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18958. {
  18959. front: {
  18960. height: math.unit(6 + 3 / 12, "feet"),
  18961. weight: math.unit(220, "lb"),
  18962. name: "Front",
  18963. image: {
  18964. source: "./media/characters/max-calore/front.svg",
  18965. extra: 1700 / 1648,
  18966. bottom: 0.01
  18967. }
  18968. },
  18969. back: {
  18970. height: math.unit(6 + 3 / 12, "feet"),
  18971. weight: math.unit(220, "lb"),
  18972. name: "Back",
  18973. image: {
  18974. source: "./media/characters/max-calore/back.svg",
  18975. extra: 1700 / 1648,
  18976. bottom: 0.01
  18977. }
  18978. },
  18979. },
  18980. [
  18981. {
  18982. name: "Normal",
  18983. height: math.unit(6 + 3 / 12, "feet"),
  18984. default: true
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18990. {
  18991. side: {
  18992. height: math.unit(2 + 8 / 12, "feet"),
  18993. weight: math.unit(99, "lb"),
  18994. name: "Side",
  18995. image: {
  18996. source: "./media/characters/aspen/side.svg",
  18997. extra: 152 / 138,
  18998. bottom: 0.032
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(2 + 8 / 12, "feet"),
  19006. default: true
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  19012. {
  19013. side: {
  19014. height: math.unit(3 + 2 / 12, "feet"),
  19015. weight: math.unit(224, "lb"),
  19016. name: "Side",
  19017. image: {
  19018. source: "./media/characters/sheila-feral-wolf/side.svg",
  19019. extra: 179 / 166,
  19020. bottom: 0.03
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(3 + 2 / 12, "feet"),
  19028. default: true
  19029. },
  19030. ]
  19031. ))
  19032. characterMakers.push(() => makeCharacter(
  19033. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  19034. {
  19035. side: {
  19036. height: math.unit(1 + 9 / 12, "feet"),
  19037. weight: math.unit(38, "lb"),
  19038. name: "Side",
  19039. image: {
  19040. source: "./media/characters/michelle/side.svg",
  19041. extra: 147 / 136.7,
  19042. bottom: 0.03
  19043. }
  19044. },
  19045. },
  19046. [
  19047. {
  19048. name: "Normal",
  19049. height: math.unit(1 + 9 / 12, "feet"),
  19050. default: true
  19051. },
  19052. ]
  19053. ))
  19054. characterMakers.push(() => makeCharacter(
  19055. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  19056. {
  19057. front: {
  19058. height: math.unit(1.54, "feet"),
  19059. weight: math.unit(50, "lb"),
  19060. name: "Front",
  19061. image: {
  19062. source: "./media/characters/nino/front.svg"
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(1.54, "feet"),
  19070. default: true
  19071. },
  19072. ]
  19073. ))
  19074. characterMakers.push(() => makeCharacter(
  19075. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  19076. {
  19077. front: {
  19078. height: math.unit(1.49, "feet"),
  19079. weight: math.unit(45, "lb"),
  19080. name: "Front",
  19081. image: {
  19082. source: "./media/characters/viola/front.svg"
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(1.49, "feet"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(6 + 5 / 12, "feet"),
  19099. weight: math.unit(580, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/atlas/front.svg",
  19103. extra: 298.5 / 290,
  19104. bottom: 0.015
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(6 + 5 / 12, "feet"),
  19112. default: true
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Davy", species: ["cat"], tags: ["feral"] },
  19118. {
  19119. side: {
  19120. height: math.unit(15.6, "inches"),
  19121. weight: math.unit(10, "lb"),
  19122. name: "Side",
  19123. image: {
  19124. source: "./media/characters/davy/side.svg",
  19125. extra: 200 / 170,
  19126. bottom: 0.01
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Normal",
  19133. height: math.unit(15.6, "inches"),
  19134. default: true
  19135. },
  19136. ]
  19137. ))
  19138. characterMakers.push(() => makeCharacter(
  19139. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  19140. {
  19141. side: {
  19142. height: math.unit(4 + 8 / 12, "feet"),
  19143. weight: math.unit(166, "lb"),
  19144. name: "Side",
  19145. image: {
  19146. source: "./media/characters/fiona/side.svg",
  19147. extra: 232 / 220,
  19148. bottom: 0.03
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(4 + 8 / 12, "feet"),
  19156. default: true
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  19162. {
  19163. front: {
  19164. height: math.unit(26, "inches"),
  19165. weight: math.unit(35, "lb"),
  19166. name: "Front",
  19167. image: {
  19168. source: "./media/characters/lyla/front.svg",
  19169. bottom: 0.1
  19170. }
  19171. },
  19172. },
  19173. [
  19174. {
  19175. name: "Normal",
  19176. height: math.unit(3, "feet"),
  19177. default: true
  19178. },
  19179. ]
  19180. ))
  19181. characterMakers.push(() => makeCharacter(
  19182. { name: "Perseus", species: ["monitor-lizard", "deity"], tags: ["feral"] },
  19183. {
  19184. side: {
  19185. height: math.unit(1.8, "feet"),
  19186. weight: math.unit(44, "lb"),
  19187. name: "Side",
  19188. image: {
  19189. source: "./media/characters/perseus/side.svg",
  19190. bottom: 0.21
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(1.8, "feet"),
  19198. default: true
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  19204. {
  19205. side: {
  19206. height: math.unit(4 + 2 / 12, "feet"),
  19207. weight: math.unit(20, "lb"),
  19208. name: "Side",
  19209. image: {
  19210. source: "./media/characters/remus/side.svg"
  19211. }
  19212. },
  19213. },
  19214. [
  19215. {
  19216. name: "Normal",
  19217. height: math.unit(4 + 2 / 12, "feet"),
  19218. default: true
  19219. },
  19220. ]
  19221. ))
  19222. characterMakers.push(() => makeCharacter(
  19223. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  19224. {
  19225. front: {
  19226. height: math.unit(4 + 11 / 12, "feet"),
  19227. weight: math.unit(114, "lb"),
  19228. name: "Front",
  19229. image: {
  19230. source: "./media/characters/raf/front.svg",
  19231. extra: 1504/1339,
  19232. bottom: 26/1530
  19233. }
  19234. },
  19235. side: {
  19236. height: math.unit(4 + 11 / 12, "feet"),
  19237. weight: math.unit(114, "lb"),
  19238. name: "Side",
  19239. image: {
  19240. source: "./media/characters/raf/side.svg",
  19241. extra: 1466/1316,
  19242. bottom: 29/1495
  19243. }
  19244. },
  19245. paw: {
  19246. height: math.unit(1.45, "feet"),
  19247. name: "Paw",
  19248. image: {
  19249. source: "./media/characters/raf/paw.svg"
  19250. },
  19251. extraAttributes: {
  19252. "toeSize": {
  19253. name: "Toe Size",
  19254. power: 2,
  19255. type: "area",
  19256. base: math.unit(0.004, "m^2")
  19257. },
  19258. "padSize": {
  19259. name: "Pad Size",
  19260. power: 2,
  19261. type: "area",
  19262. base: math.unit(0.04, "m^2")
  19263. },
  19264. "footSize": {
  19265. name: "Foot Size",
  19266. power: 2,
  19267. type: "area",
  19268. base: math.unit(0.08, "m^2")
  19269. },
  19270. }
  19271. },
  19272. },
  19273. [
  19274. {
  19275. name: "Micro",
  19276. height: math.unit(2, "inches")
  19277. },
  19278. {
  19279. name: "Normal",
  19280. height: math.unit(4 + 11 / 12, "feet"),
  19281. default: true
  19282. },
  19283. {
  19284. name: "Macro",
  19285. height: math.unit(70, "feet")
  19286. },
  19287. ]
  19288. ))
  19289. characterMakers.push(() => makeCharacter(
  19290. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19291. {
  19292. front: {
  19293. height: math.unit(1.5, "meters"),
  19294. weight: math.unit(68, "kg"),
  19295. name: "Front",
  19296. image: {
  19297. source: "./media/characters/liam-einarr/front.svg",
  19298. extra: 2822 / 2666
  19299. }
  19300. },
  19301. back: {
  19302. height: math.unit(1.5, "meters"),
  19303. weight: math.unit(68, "kg"),
  19304. name: "Back",
  19305. image: {
  19306. source: "./media/characters/liam-einarr/back.svg",
  19307. extra: 2822 / 2666,
  19308. bottom: 0.015
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(1.5, "meters"),
  19316. default: true
  19317. },
  19318. {
  19319. name: "Macro",
  19320. height: math.unit(150, "meters")
  19321. },
  19322. {
  19323. name: "Megamacro",
  19324. height: math.unit(35, "km")
  19325. },
  19326. ]
  19327. ))
  19328. characterMakers.push(() => makeCharacter(
  19329. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19330. {
  19331. front: {
  19332. height: math.unit(6, "feet"),
  19333. weight: math.unit(75, "kg"),
  19334. name: "Front",
  19335. image: {
  19336. source: "./media/characters/linda/front.svg",
  19337. extra: 930 / 874,
  19338. bottom: 0.004
  19339. }
  19340. },
  19341. },
  19342. [
  19343. {
  19344. name: "Normal",
  19345. height: math.unit(6, "feet"),
  19346. default: true
  19347. },
  19348. ]
  19349. ))
  19350. characterMakers.push(() => makeCharacter(
  19351. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19352. {
  19353. front: {
  19354. height: math.unit(6 + 8 / 12, "feet"),
  19355. weight: math.unit(220, "lb"),
  19356. name: "Front",
  19357. image: {
  19358. source: "./media/characters/caylex/front.svg",
  19359. extra: 821 / 772,
  19360. bottom: 0.07
  19361. }
  19362. },
  19363. back: {
  19364. height: math.unit(6 + 8 / 12, "feet"),
  19365. weight: math.unit(220, "lb"),
  19366. name: "Back",
  19367. image: {
  19368. source: "./media/characters/caylex/back.svg",
  19369. extra: 821 / 772,
  19370. bottom: 0.022
  19371. }
  19372. },
  19373. hand: {
  19374. height: math.unit(1.25, "feet"),
  19375. name: "Hand",
  19376. image: {
  19377. source: "./media/characters/caylex/hand.svg"
  19378. }
  19379. },
  19380. foot: {
  19381. height: math.unit(1.6, "feet"),
  19382. name: "Foot",
  19383. image: {
  19384. source: "./media/characters/caylex/foot.svg"
  19385. }
  19386. },
  19387. armored: {
  19388. height: math.unit(6 + 8 / 12, "feet"),
  19389. weight: math.unit(250, "lb"),
  19390. name: "Armored",
  19391. image: {
  19392. source: "./media/characters/caylex/armored.svg",
  19393. extra: 1420 / 1310,
  19394. bottom: 0.045
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(6 + 8 / 12, "feet"),
  19402. default: true
  19403. },
  19404. {
  19405. name: "Normal+",
  19406. height: math.unit(12, "feet")
  19407. },
  19408. ]
  19409. ))
  19410. characterMakers.push(() => makeCharacter(
  19411. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19412. {
  19413. front: {
  19414. height: math.unit(7 + 6 / 12, "feet"),
  19415. weight: math.unit(288, "lb"),
  19416. name: "Front",
  19417. image: {
  19418. source: "./media/characters/alana/front.svg",
  19419. extra: 679 / 653,
  19420. bottom: 22.5 / 701
  19421. }
  19422. },
  19423. },
  19424. [
  19425. {
  19426. name: "Normal",
  19427. height: math.unit(7 + 6 / 12, "feet")
  19428. },
  19429. {
  19430. name: "Large",
  19431. height: math.unit(50, "feet")
  19432. },
  19433. {
  19434. name: "Macro",
  19435. height: math.unit(100, "feet"),
  19436. default: true
  19437. },
  19438. {
  19439. name: "Macro+",
  19440. height: math.unit(200, "feet")
  19441. },
  19442. ]
  19443. ))
  19444. characterMakers.push(() => makeCharacter(
  19445. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19446. {
  19447. front: {
  19448. height: math.unit(6 + 1 / 12, "feet"),
  19449. weight: math.unit(210, "lb"),
  19450. name: "Front",
  19451. image: {
  19452. source: "./media/characters/hasani/front.svg",
  19453. extra: 244 / 232,
  19454. bottom: 0.01
  19455. }
  19456. },
  19457. back: {
  19458. height: math.unit(6 + 1 / 12, "feet"),
  19459. weight: math.unit(210, "lb"),
  19460. name: "Back",
  19461. image: {
  19462. source: "./media/characters/hasani/back.svg",
  19463. extra: 244 / 232,
  19464. bottom: 0.01
  19465. }
  19466. },
  19467. },
  19468. [
  19469. {
  19470. name: "Normal",
  19471. height: math.unit(6 + 1 / 12, "feet")
  19472. },
  19473. {
  19474. name: "Macro",
  19475. height: math.unit(175, "feet"),
  19476. default: true
  19477. },
  19478. ]
  19479. ))
  19480. characterMakers.push(() => makeCharacter(
  19481. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19482. {
  19483. front: {
  19484. height: math.unit(1.82, "meters"),
  19485. weight: math.unit(140, "lb"),
  19486. name: "Front",
  19487. image: {
  19488. source: "./media/characters/nita/front.svg",
  19489. extra: 2473 / 2363,
  19490. bottom: 0.01
  19491. }
  19492. },
  19493. },
  19494. [
  19495. {
  19496. name: "Normal",
  19497. height: math.unit(1.82, "m")
  19498. },
  19499. {
  19500. name: "Macro",
  19501. height: math.unit(300, "m")
  19502. },
  19503. {
  19504. name: "Mistake Canon",
  19505. height: math.unit(0.5, "miles"),
  19506. default: true
  19507. },
  19508. {
  19509. name: "Big Mistake",
  19510. height: math.unit(13, "miles")
  19511. },
  19512. {
  19513. name: "Playing God",
  19514. height: math.unit(2450, "miles")
  19515. },
  19516. ]
  19517. ))
  19518. characterMakers.push(() => makeCharacter(
  19519. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19520. {
  19521. front: {
  19522. height: math.unit(4, "feet"),
  19523. weight: math.unit(120, "lb"),
  19524. name: "Front",
  19525. image: {
  19526. source: "./media/characters/shiriko/front.svg",
  19527. extra: 970/934,
  19528. bottom: 5/975
  19529. }
  19530. },
  19531. },
  19532. [
  19533. {
  19534. name: "Normal",
  19535. height: math.unit(4, "feet"),
  19536. default: true
  19537. },
  19538. ]
  19539. ))
  19540. characterMakers.push(() => makeCharacter(
  19541. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19542. {
  19543. front: {
  19544. height: math.unit(6, "feet"),
  19545. name: "front",
  19546. image: {
  19547. source: "./media/characters/deja/front.svg",
  19548. extra: 926 / 840,
  19549. bottom: 0.07
  19550. }
  19551. },
  19552. },
  19553. [
  19554. {
  19555. name: "Planck Length",
  19556. height: math.unit(1.6e-35, "meters")
  19557. },
  19558. {
  19559. name: "Normal",
  19560. height: math.unit(30.48, "meters"),
  19561. default: true
  19562. },
  19563. {
  19564. name: "Universal",
  19565. height: math.unit(8.8e26, "meters")
  19566. },
  19567. ]
  19568. ))
  19569. characterMakers.push(() => makeCharacter(
  19570. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19571. {
  19572. side: {
  19573. height: math.unit(8, "feet"),
  19574. weight: math.unit(6300, "lb"),
  19575. name: "Side",
  19576. image: {
  19577. source: "./media/characters/anima/side.svg",
  19578. bottom: 0.035
  19579. }
  19580. },
  19581. },
  19582. [
  19583. {
  19584. name: "Normal",
  19585. height: math.unit(8, "feet"),
  19586. default: true
  19587. },
  19588. ]
  19589. ))
  19590. characterMakers.push(() => makeCharacter(
  19591. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19592. {
  19593. front: {
  19594. height: math.unit(8, "feet"),
  19595. weight: math.unit(350, "lb"),
  19596. name: "Front",
  19597. image: {
  19598. source: "./media/characters/bianca/front.svg",
  19599. extra: 234 / 225,
  19600. bottom: 0.03
  19601. }
  19602. },
  19603. },
  19604. [
  19605. {
  19606. name: "Normal",
  19607. height: math.unit(8, "feet"),
  19608. default: true
  19609. },
  19610. ]
  19611. ))
  19612. characterMakers.push(() => makeCharacter(
  19613. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19614. {
  19615. front: {
  19616. height: math.unit(11 + 5/12, "feet"),
  19617. weight: math.unit(1200, "lb"),
  19618. name: "Front",
  19619. image: {
  19620. source: "./media/characters/adinia/front.svg",
  19621. extra: 1767/1641,
  19622. bottom: 44/1811
  19623. },
  19624. extraAttributes: {
  19625. "energyIntake": {
  19626. name: "Energy Intake",
  19627. power: 3,
  19628. type: "energy",
  19629. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19630. },
  19631. }
  19632. },
  19633. back: {
  19634. height: math.unit(11 + 5/12, "feet"),
  19635. weight: math.unit(1200, "lb"),
  19636. name: "Back",
  19637. image: {
  19638. source: "./media/characters/adinia/back.svg",
  19639. extra: 1834/1684,
  19640. bottom: 14/1848
  19641. },
  19642. extraAttributes: {
  19643. "energyIntake": {
  19644. name: "Energy Intake",
  19645. power: 3,
  19646. type: "energy",
  19647. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19648. },
  19649. }
  19650. },
  19651. maw: {
  19652. height: math.unit(3.79, "feet"),
  19653. name: "Maw",
  19654. image: {
  19655. source: "./media/characters/adinia/maw.svg"
  19656. }
  19657. },
  19658. rump: {
  19659. height: math.unit(4.6, "feet"),
  19660. name: "Rump",
  19661. image: {
  19662. source: "./media/characters/adinia/rump.svg"
  19663. }
  19664. },
  19665. },
  19666. [
  19667. {
  19668. name: "Normal",
  19669. height: math.unit(11 + 5 / 12, "feet"),
  19670. default: true
  19671. },
  19672. ]
  19673. ))
  19674. characterMakers.push(() => makeCharacter(
  19675. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19676. {
  19677. front: {
  19678. height: math.unit(3, "meters"),
  19679. weight: math.unit(200, "kg"),
  19680. name: "Front",
  19681. image: {
  19682. source: "./media/characters/lykasa/front.svg",
  19683. extra: 1076 / 976,
  19684. bottom: 0.06
  19685. }
  19686. },
  19687. },
  19688. [
  19689. {
  19690. name: "Normal",
  19691. height: math.unit(3, "meters")
  19692. },
  19693. {
  19694. name: "Kaiju",
  19695. height: math.unit(120, "meters"),
  19696. default: true
  19697. },
  19698. {
  19699. name: "Mega Kaiju",
  19700. height: math.unit(240, "km")
  19701. },
  19702. {
  19703. name: "Giga Kaiju",
  19704. height: math.unit(400, "megameters")
  19705. },
  19706. {
  19707. name: "Tera Kaiju",
  19708. height: math.unit(800, "gigameters")
  19709. },
  19710. {
  19711. name: "Kaiju Dragon Goddess",
  19712. height: math.unit(26, "zettaparsecs")
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19718. {
  19719. side: {
  19720. height: math.unit(283 / 124 * 6, "feet"),
  19721. weight: math.unit(35000, "lb"),
  19722. name: "Side",
  19723. image: {
  19724. source: "./media/characters/malfaren/side.svg",
  19725. extra: 1310/529,
  19726. bottom: 24/1334
  19727. }
  19728. },
  19729. front: {
  19730. height: math.unit(22.36, "feet"),
  19731. weight: math.unit(35000, "lb"),
  19732. name: "Front",
  19733. image: {
  19734. source: "./media/characters/malfaren/front.svg",
  19735. extra: 1237/1115,
  19736. bottom: 32/1269
  19737. }
  19738. },
  19739. maw: {
  19740. height: math.unit(6.9, "feet"),
  19741. name: "Maw",
  19742. image: {
  19743. source: "./media/characters/malfaren/maw.svg"
  19744. }
  19745. },
  19746. dick: {
  19747. height: math.unit(6.19, "feet"),
  19748. name: "Dick",
  19749. image: {
  19750. source: "./media/characters/malfaren/dick.svg"
  19751. }
  19752. },
  19753. eye: {
  19754. height: math.unit(0.69, "feet"),
  19755. name: "Eye",
  19756. image: {
  19757. source: "./media/characters/malfaren/eye.svg"
  19758. }
  19759. },
  19760. },
  19761. [
  19762. {
  19763. name: "Big",
  19764. height: math.unit(283 / 162 * 6, "feet"),
  19765. },
  19766. {
  19767. name: "Bigger",
  19768. height: math.unit(283 / 124 * 6, "feet")
  19769. },
  19770. {
  19771. name: "Massive",
  19772. height: math.unit(283 / 92 * 6, "feet"),
  19773. default: true
  19774. },
  19775. {
  19776. name: "👀💦",
  19777. height: math.unit(283 / 73 * 6, "feet"),
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19783. {
  19784. front: {
  19785. height: math.unit(1.7, "m"),
  19786. weight: math.unit(70, "kg"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/kernel/front.svg",
  19790. extra: 1960/1821,
  19791. bottom: 17/1977
  19792. }
  19793. },
  19794. },
  19795. [
  19796. {
  19797. name: "Nano",
  19798. height: math.unit(17, "micrometers")
  19799. },
  19800. {
  19801. name: "Micro",
  19802. height: math.unit(1.7, "mm")
  19803. },
  19804. {
  19805. name: "Small",
  19806. height: math.unit(1.7, "cm")
  19807. },
  19808. {
  19809. name: "Normal",
  19810. height: math.unit(1.7, "m"),
  19811. default: true
  19812. },
  19813. ]
  19814. ))
  19815. characterMakers.push(() => makeCharacter(
  19816. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19817. {
  19818. front: {
  19819. height: math.unit(1.75, "meters"),
  19820. weight: math.unit(65, "kg"),
  19821. name: "Front",
  19822. image: {
  19823. source: "./media/characters/jayne-folest/front.svg",
  19824. extra: 2115 / 2007,
  19825. bottom: 0.02
  19826. }
  19827. },
  19828. back: {
  19829. height: math.unit(1.75, "meters"),
  19830. weight: math.unit(65, "kg"),
  19831. name: "Back",
  19832. image: {
  19833. source: "./media/characters/jayne-folest/back.svg",
  19834. extra: 2115 / 2007,
  19835. bottom: 0.005
  19836. }
  19837. },
  19838. frontClothed: {
  19839. height: math.unit(1.75, "meters"),
  19840. weight: math.unit(65, "kg"),
  19841. name: "Front (Clothed)",
  19842. image: {
  19843. source: "./media/characters/jayne-folest/front-clothed.svg",
  19844. extra: 2115 / 2007,
  19845. bottom: 0.035
  19846. }
  19847. },
  19848. hand: {
  19849. height: math.unit(1 / 1.260, "feet"),
  19850. name: "Hand",
  19851. image: {
  19852. source: "./media/characters/jayne-folest/hand.svg"
  19853. }
  19854. },
  19855. foot: {
  19856. height: math.unit(1 / 0.918, "feet"),
  19857. name: "Foot",
  19858. image: {
  19859. source: "./media/characters/jayne-folest/foot.svg"
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Micro",
  19866. height: math.unit(4, "cm")
  19867. },
  19868. {
  19869. name: "Normal",
  19870. height: math.unit(1.75, "meters")
  19871. },
  19872. {
  19873. name: "Macro",
  19874. height: math.unit(47.5, "meters"),
  19875. default: true
  19876. },
  19877. ]
  19878. ))
  19879. characterMakers.push(() => makeCharacter(
  19880. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19881. {
  19882. front: {
  19883. height: math.unit(180, "cm"),
  19884. weight: math.unit(70, "kg"),
  19885. name: "Front",
  19886. image: {
  19887. source: "./media/characters/algier/front.svg",
  19888. extra: 596 / 572,
  19889. bottom: 0.04
  19890. }
  19891. },
  19892. back: {
  19893. height: math.unit(180, "cm"),
  19894. weight: math.unit(70, "kg"),
  19895. name: "Back",
  19896. image: {
  19897. source: "./media/characters/algier/back.svg",
  19898. extra: 596 / 572,
  19899. bottom: 0.025
  19900. }
  19901. },
  19902. frontdressed: {
  19903. height: math.unit(180, "cm"),
  19904. weight: math.unit(150, "kg"),
  19905. name: "Front-dressed",
  19906. image: {
  19907. source: "./media/characters/algier/front-dressed.svg",
  19908. extra: 596 / 572,
  19909. bottom: 0.038
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Micro",
  19916. height: math.unit(5, "cm")
  19917. },
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(180, "cm"),
  19921. default: true
  19922. },
  19923. {
  19924. name: "Macro",
  19925. height: math.unit(64, "m")
  19926. },
  19927. ]
  19928. ))
  19929. characterMakers.push(() => makeCharacter(
  19930. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19931. {
  19932. upright: {
  19933. height: math.unit(7, "feet"),
  19934. weight: math.unit(300, "lb"),
  19935. name: "Upright",
  19936. image: {
  19937. source: "./media/characters/pretzel/upright.svg",
  19938. extra: 534 / 522,
  19939. bottom: 0.065
  19940. }
  19941. },
  19942. sprawling: {
  19943. height: math.unit(3.75, "feet"),
  19944. weight: math.unit(300, "lb"),
  19945. name: "Sprawling",
  19946. image: {
  19947. source: "./media/characters/pretzel/sprawling.svg",
  19948. extra: 314 / 281,
  19949. bottom: 0.1
  19950. }
  19951. },
  19952. tongue: {
  19953. height: math.unit(2, "feet"),
  19954. name: "Tongue",
  19955. image: {
  19956. source: "./media/characters/pretzel/tongue.svg"
  19957. }
  19958. },
  19959. },
  19960. [
  19961. {
  19962. name: "Normal",
  19963. height: math.unit(7, "feet"),
  19964. default: true
  19965. },
  19966. {
  19967. name: "Oversized",
  19968. height: math.unit(15, "feet")
  19969. },
  19970. {
  19971. name: "Huge",
  19972. height: math.unit(30, "feet")
  19973. },
  19974. {
  19975. name: "Macro",
  19976. height: math.unit(250, "feet")
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19982. {
  19983. sideFront: {
  19984. height: math.unit(5 + 2 / 12, "feet"),
  19985. weight: math.unit(120, "lb"),
  19986. name: "Front Side",
  19987. image: {
  19988. source: "./media/characters/roxi/side-front.svg",
  19989. extra: 2924 / 2717,
  19990. bottom: 0.08
  19991. }
  19992. },
  19993. sideBack: {
  19994. height: math.unit(5 + 2 / 12, "feet"),
  19995. weight: math.unit(120, "lb"),
  19996. name: "Back Side",
  19997. image: {
  19998. source: "./media/characters/roxi/side-back.svg",
  19999. extra: 2904 / 2693,
  20000. bottom: 0.06
  20001. }
  20002. },
  20003. front: {
  20004. height: math.unit(5 + 2 / 12, "feet"),
  20005. weight: math.unit(120, "lb"),
  20006. name: "Front",
  20007. image: {
  20008. source: "./media/characters/roxi/front.svg",
  20009. extra: 2028 / 1907,
  20010. bottom: 0.01
  20011. }
  20012. },
  20013. frontAlt: {
  20014. height: math.unit(5 + 2 / 12, "feet"),
  20015. weight: math.unit(120, "lb"),
  20016. name: "Front (Alt)",
  20017. image: {
  20018. source: "./media/characters/roxi/front-alt.svg",
  20019. extra: 1828 / 1798,
  20020. bottom: 0.01
  20021. }
  20022. },
  20023. sitting: {
  20024. height: math.unit(2.8, "feet"),
  20025. weight: math.unit(120, "lb"),
  20026. name: "Sitting",
  20027. image: {
  20028. source: "./media/characters/roxi/sitting.svg",
  20029. extra: 2660 / 2462,
  20030. bottom: 0.1
  20031. }
  20032. },
  20033. },
  20034. [
  20035. {
  20036. name: "Normal",
  20037. height: math.unit(5 + 2 / 12, "feet"),
  20038. default: true
  20039. },
  20040. ]
  20041. ))
  20042. characterMakers.push(() => makeCharacter(
  20043. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  20044. {
  20045. side: {
  20046. height: math.unit(55, "feet"),
  20047. weight: math.unit(153, "tons"),
  20048. name: "Side",
  20049. image: {
  20050. source: "./media/characters/shadow/side.svg",
  20051. extra: 701 / 628,
  20052. bottom: 0.02
  20053. }
  20054. },
  20055. flying: {
  20056. height: math.unit(145, "feet"),
  20057. weight: math.unit(153, "tons"),
  20058. name: "Flying",
  20059. image: {
  20060. source: "./media/characters/shadow/flying.svg"
  20061. }
  20062. },
  20063. },
  20064. [
  20065. {
  20066. name: "Normal",
  20067. height: math.unit(55, "feet"),
  20068. default: true
  20069. },
  20070. ]
  20071. ))
  20072. characterMakers.push(() => makeCharacter(
  20073. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  20074. {
  20075. front: {
  20076. height: math.unit(6, "feet"),
  20077. weight: math.unit(200, "lb"),
  20078. name: "Front",
  20079. image: {
  20080. source: "./media/characters/marcie/front.svg",
  20081. extra: 960 / 876,
  20082. bottom: 58 / 1017.87
  20083. }
  20084. },
  20085. },
  20086. [
  20087. {
  20088. name: "Macro",
  20089. height: math.unit(1, "mile"),
  20090. default: true
  20091. },
  20092. ]
  20093. ))
  20094. characterMakers.push(() => makeCharacter(
  20095. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  20096. {
  20097. front: {
  20098. height: math.unit(7, "feet"),
  20099. weight: math.unit(200, "lb"),
  20100. name: "Front",
  20101. image: {
  20102. source: "./media/characters/kachina/front.svg",
  20103. extra: 1290.68 / 1119,
  20104. bottom: 36.5 / 1327.18
  20105. }
  20106. },
  20107. },
  20108. [
  20109. {
  20110. name: "Normal",
  20111. height: math.unit(7, "feet"),
  20112. default: true
  20113. },
  20114. ]
  20115. ))
  20116. characterMakers.push(() => makeCharacter(
  20117. { name: "Kash", species: ["canine"], tags: ["feral"] },
  20118. {
  20119. looking: {
  20120. height: math.unit(2, "meters"),
  20121. weight: math.unit(300, "kg"),
  20122. name: "Looking",
  20123. image: {
  20124. source: "./media/characters/kash/looking.svg",
  20125. extra: 474 / 344,
  20126. bottom: 0.03
  20127. }
  20128. },
  20129. side: {
  20130. height: math.unit(2, "meters"),
  20131. weight: math.unit(300, "kg"),
  20132. name: "Side",
  20133. image: {
  20134. source: "./media/characters/kash/side.svg",
  20135. extra: 302 / 251,
  20136. bottom: 0.03
  20137. }
  20138. },
  20139. front: {
  20140. height: math.unit(2, "meters"),
  20141. weight: math.unit(300, "kg"),
  20142. name: "Front",
  20143. image: {
  20144. source: "./media/characters/kash/front.svg",
  20145. extra: 495 / 360,
  20146. bottom: 0.015
  20147. }
  20148. },
  20149. },
  20150. [
  20151. {
  20152. name: "Normal",
  20153. height: math.unit(2, "meters"),
  20154. default: true
  20155. },
  20156. {
  20157. name: "Big",
  20158. height: math.unit(3, "meters")
  20159. },
  20160. {
  20161. name: "Large",
  20162. height: math.unit(5, "meters")
  20163. },
  20164. ]
  20165. ))
  20166. characterMakers.push(() => makeCharacter(
  20167. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  20168. {
  20169. feeding: {
  20170. height: math.unit(6.7, "feet"),
  20171. weight: math.unit(350, "lb"),
  20172. name: "Feeding",
  20173. image: {
  20174. source: "./media/characters/lalim/feeding.svg",
  20175. }
  20176. },
  20177. },
  20178. [
  20179. {
  20180. name: "Normal",
  20181. height: math.unit(6.7, "feet"),
  20182. default: true
  20183. },
  20184. ]
  20185. ))
  20186. characterMakers.push(() => makeCharacter(
  20187. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  20188. {
  20189. front: {
  20190. height: math.unit(9.5, "feet"),
  20191. weight: math.unit(600, "lb"),
  20192. name: "Front",
  20193. image: {
  20194. source: "./media/characters/de'vout/front.svg",
  20195. extra: 1443 / 1328,
  20196. bottom: 0.025
  20197. }
  20198. },
  20199. back: {
  20200. height: math.unit(9.5, "feet"),
  20201. weight: math.unit(600, "lb"),
  20202. name: "Back",
  20203. image: {
  20204. source: "./media/characters/de'vout/back.svg",
  20205. extra: 1443 / 1328
  20206. }
  20207. },
  20208. frontDressed: {
  20209. height: math.unit(9.5, "feet"),
  20210. weight: math.unit(600, "lb"),
  20211. name: "Front (Dressed",
  20212. image: {
  20213. source: "./media/characters/de'vout/front-dressed.svg",
  20214. extra: 1443 / 1328,
  20215. bottom: 0.025
  20216. }
  20217. },
  20218. backDressed: {
  20219. height: math.unit(9.5, "feet"),
  20220. weight: math.unit(600, "lb"),
  20221. name: "Back (Dressed",
  20222. image: {
  20223. source: "./media/characters/de'vout/back-dressed.svg",
  20224. extra: 1443 / 1328
  20225. }
  20226. },
  20227. },
  20228. [
  20229. {
  20230. name: "Normal",
  20231. height: math.unit(9.5, "feet"),
  20232. default: true
  20233. },
  20234. ]
  20235. ))
  20236. characterMakers.push(() => makeCharacter(
  20237. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  20238. {
  20239. front: {
  20240. height: math.unit(8, "feet"),
  20241. weight: math.unit(225, "lb"),
  20242. name: "Front",
  20243. image: {
  20244. source: "./media/characters/talana/front.svg",
  20245. extra: 1410 / 1300,
  20246. bottom: 0.015
  20247. }
  20248. },
  20249. frontDressed: {
  20250. height: math.unit(8, "feet"),
  20251. weight: math.unit(225, "lb"),
  20252. name: "Front (Dressed",
  20253. image: {
  20254. source: "./media/characters/talana/front-dressed.svg",
  20255. extra: 1410 / 1300,
  20256. bottom: 0.015
  20257. }
  20258. },
  20259. },
  20260. [
  20261. {
  20262. name: "Normal",
  20263. height: math.unit(8, "feet"),
  20264. default: true
  20265. },
  20266. ]
  20267. ))
  20268. characterMakers.push(() => makeCharacter(
  20269. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  20270. {
  20271. side: {
  20272. height: math.unit(7.2, "feet"),
  20273. weight: math.unit(150, "lb"),
  20274. name: "Side",
  20275. image: {
  20276. source: "./media/characters/xeauvok/side.svg",
  20277. extra: 1975 / 1523,
  20278. bottom: 0.07
  20279. }
  20280. },
  20281. },
  20282. [
  20283. {
  20284. name: "Normal",
  20285. height: math.unit(7.2, "feet"),
  20286. default: true
  20287. },
  20288. ]
  20289. ))
  20290. characterMakers.push(() => makeCharacter(
  20291. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20292. {
  20293. side: {
  20294. height: math.unit(4, "meters"),
  20295. weight: math.unit(2200, "kg"),
  20296. name: "Side",
  20297. image: {
  20298. source: "./media/characters/zara/side.svg",
  20299. extra: 765/744,
  20300. bottom: 156/921
  20301. }
  20302. },
  20303. },
  20304. [
  20305. {
  20306. name: "Normal",
  20307. height: math.unit(4, "meters"),
  20308. default: true
  20309. },
  20310. ]
  20311. ))
  20312. characterMakers.push(() => makeCharacter(
  20313. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20314. {
  20315. side: {
  20316. height: math.unit(6, "feet"),
  20317. weight: math.unit(150, "lb"),
  20318. name: "Side",
  20319. image: {
  20320. source: "./media/characters/richard-dragon/side.svg",
  20321. extra: 845 / 340,
  20322. bottom: 0.017
  20323. }
  20324. },
  20325. maw: {
  20326. height: math.unit(2.97, "feet"),
  20327. name: "Maw",
  20328. image: {
  20329. source: "./media/characters/richard-dragon/maw.svg"
  20330. }
  20331. },
  20332. },
  20333. [
  20334. ]
  20335. ))
  20336. characterMakers.push(() => makeCharacter(
  20337. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20338. {
  20339. front: {
  20340. height: math.unit(4, "feet"),
  20341. weight: math.unit(100, "lb"),
  20342. name: "Front",
  20343. image: {
  20344. source: "./media/characters/richard-smeargle/front.svg",
  20345. extra: 2952 / 2820,
  20346. bottom: 0.028
  20347. }
  20348. },
  20349. },
  20350. [
  20351. {
  20352. name: "Normal",
  20353. height: math.unit(4, "feet"),
  20354. default: true
  20355. },
  20356. {
  20357. name: "Dynamax",
  20358. height: math.unit(20, "meters")
  20359. },
  20360. ]
  20361. ))
  20362. characterMakers.push(() => makeCharacter(
  20363. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20364. {
  20365. front: {
  20366. height: math.unit(6, "feet"),
  20367. weight: math.unit(110, "lb"),
  20368. name: "Front",
  20369. image: {
  20370. source: "./media/characters/klay/front.svg",
  20371. extra: 962 / 883,
  20372. bottom: 0.04
  20373. }
  20374. },
  20375. back: {
  20376. height: math.unit(6, "feet"),
  20377. weight: math.unit(110, "lb"),
  20378. name: "Back",
  20379. image: {
  20380. source: "./media/characters/klay/back.svg",
  20381. extra: 962 / 883
  20382. }
  20383. },
  20384. beans: {
  20385. height: math.unit(1.15, "feet"),
  20386. name: "Beans",
  20387. image: {
  20388. source: "./media/characters/klay/beans.svg"
  20389. }
  20390. },
  20391. },
  20392. [
  20393. {
  20394. name: "Micro",
  20395. height: math.unit(6, "inches")
  20396. },
  20397. {
  20398. name: "Mini",
  20399. height: math.unit(3, "feet")
  20400. },
  20401. {
  20402. name: "Normal",
  20403. height: math.unit(6, "feet"),
  20404. default: true
  20405. },
  20406. {
  20407. name: "Big",
  20408. height: math.unit(25, "feet")
  20409. },
  20410. {
  20411. name: "Macro",
  20412. height: math.unit(100, "feet")
  20413. },
  20414. {
  20415. name: "Megamacro",
  20416. height: math.unit(400, "feet")
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20422. {
  20423. front: {
  20424. height: math.unit(6, "feet"),
  20425. weight: math.unit(160, "lb"),
  20426. name: "Front",
  20427. image: {
  20428. source: "./media/characters/marcus/front.svg",
  20429. extra: 734 / 676,
  20430. bottom: 0.03
  20431. }
  20432. },
  20433. },
  20434. [
  20435. {
  20436. name: "Little",
  20437. height: math.unit(6, "feet")
  20438. },
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(110, "feet"),
  20442. default: true
  20443. },
  20444. {
  20445. name: "Macro",
  20446. height: math.unit(250, "feet")
  20447. },
  20448. {
  20449. name: "Megamacro",
  20450. height: math.unit(1000, "feet")
  20451. },
  20452. ]
  20453. ))
  20454. characterMakers.push(() => makeCharacter(
  20455. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20456. {
  20457. front: {
  20458. height: math.unit(7, "feet"),
  20459. weight: math.unit(275, "lb"),
  20460. name: "Front",
  20461. image: {
  20462. source: "./media/characters/claude-delroute/front.svg",
  20463. extra: 902/827,
  20464. bottom: 26/928
  20465. }
  20466. },
  20467. side: {
  20468. height: math.unit(7, "feet"),
  20469. weight: math.unit(275, "lb"),
  20470. name: "Side",
  20471. image: {
  20472. source: "./media/characters/claude-delroute/side.svg",
  20473. extra: 908/853,
  20474. bottom: 16/924
  20475. }
  20476. },
  20477. back: {
  20478. height: math.unit(7, "feet"),
  20479. weight: math.unit(275, "lb"),
  20480. name: "Back",
  20481. image: {
  20482. source: "./media/characters/claude-delroute/back.svg",
  20483. extra: 911/829,
  20484. bottom: 18/929
  20485. }
  20486. },
  20487. maw: {
  20488. height: math.unit(0.6407, "meters"),
  20489. name: "Maw",
  20490. image: {
  20491. source: "./media/characters/claude-delroute/maw.svg"
  20492. }
  20493. },
  20494. },
  20495. [
  20496. {
  20497. name: "Normal",
  20498. height: math.unit(7, "feet"),
  20499. default: true
  20500. },
  20501. {
  20502. name: "Lorge",
  20503. height: math.unit(20, "feet")
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20509. {
  20510. front: {
  20511. height: math.unit(8 + 4 / 12, "feet"),
  20512. weight: math.unit(600, "lb"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/dragonien/front.svg",
  20516. extra: 100 / 94,
  20517. bottom: 3.3 / 103.3445
  20518. }
  20519. },
  20520. back: {
  20521. height: math.unit(8 + 4 / 12, "feet"),
  20522. weight: math.unit(600, "lb"),
  20523. name: "Back",
  20524. image: {
  20525. source: "./media/characters/dragonien/back.svg",
  20526. extra: 776 / 746,
  20527. bottom: 6.4 / 782.0616
  20528. }
  20529. },
  20530. foot: {
  20531. height: math.unit(1.54, "feet"),
  20532. name: "Foot",
  20533. image: {
  20534. source: "./media/characters/dragonien/foot.svg",
  20535. }
  20536. },
  20537. },
  20538. [
  20539. {
  20540. name: "Normal",
  20541. height: math.unit(8 + 4 / 12, "feet"),
  20542. default: true
  20543. },
  20544. {
  20545. name: "Macro",
  20546. height: math.unit(200, "feet")
  20547. },
  20548. {
  20549. name: "Megamacro",
  20550. height: math.unit(1, "mile")
  20551. },
  20552. {
  20553. name: "Gigamacro",
  20554. height: math.unit(1000, "miles")
  20555. },
  20556. ]
  20557. ))
  20558. characterMakers.push(() => makeCharacter(
  20559. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20560. {
  20561. front: {
  20562. height: math.unit(5 + 2 / 12, "feet"),
  20563. weight: math.unit(110, "lb"),
  20564. name: "Front",
  20565. image: {
  20566. source: "./media/characters/desta/front.svg",
  20567. extra: 767 / 726,
  20568. bottom: 11.7 / 779
  20569. }
  20570. },
  20571. back: {
  20572. height: math.unit(5 + 2 / 12, "feet"),
  20573. weight: math.unit(110, "lb"),
  20574. name: "Back",
  20575. image: {
  20576. source: "./media/characters/desta/back.svg",
  20577. extra: 777 / 728,
  20578. bottom: 6 / 784
  20579. }
  20580. },
  20581. frontAlt: {
  20582. height: math.unit(5 + 2 / 12, "feet"),
  20583. weight: math.unit(110, "lb"),
  20584. name: "Front",
  20585. image: {
  20586. source: "./media/characters/desta/front-alt.svg",
  20587. extra: 1482 / 1417
  20588. }
  20589. },
  20590. side: {
  20591. height: math.unit(5 + 2 / 12, "feet"),
  20592. weight: math.unit(110, "lb"),
  20593. name: "Side",
  20594. image: {
  20595. source: "./media/characters/desta/side.svg",
  20596. extra: 2579 / 2491,
  20597. bottom: 0.053
  20598. }
  20599. },
  20600. },
  20601. [
  20602. {
  20603. name: "Micro",
  20604. height: math.unit(6, "inches")
  20605. },
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(5 + 2 / 12, "feet"),
  20609. default: true
  20610. },
  20611. {
  20612. name: "Macro",
  20613. height: math.unit(62, "feet")
  20614. },
  20615. {
  20616. name: "Megamacro",
  20617. height: math.unit(1800, "feet")
  20618. },
  20619. ]
  20620. ))
  20621. characterMakers.push(() => makeCharacter(
  20622. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20623. {
  20624. front: {
  20625. height: math.unit(10, "feet"),
  20626. weight: math.unit(700, "lb"),
  20627. name: "Front",
  20628. image: {
  20629. source: "./media/characters/storm-alystar/front.svg",
  20630. extra: 2112 / 1898,
  20631. bottom: 0.034
  20632. }
  20633. },
  20634. },
  20635. [
  20636. {
  20637. name: "Micro",
  20638. height: math.unit(3.5, "inches")
  20639. },
  20640. {
  20641. name: "Normal",
  20642. height: math.unit(10, "feet"),
  20643. default: true
  20644. },
  20645. {
  20646. name: "Macro",
  20647. height: math.unit(400, "feet")
  20648. },
  20649. {
  20650. name: "Deific",
  20651. height: math.unit(60, "miles")
  20652. },
  20653. ]
  20654. ))
  20655. characterMakers.push(() => makeCharacter(
  20656. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20657. {
  20658. front: {
  20659. height: math.unit(2.35, "meters"),
  20660. weight: math.unit(119, "kg"),
  20661. name: "Front",
  20662. image: {
  20663. source: "./media/characters/ilia/front.svg",
  20664. extra: 1285 / 1255,
  20665. bottom: 0.06
  20666. }
  20667. },
  20668. },
  20669. [
  20670. {
  20671. name: "Normal",
  20672. height: math.unit(2.35, "meters")
  20673. },
  20674. {
  20675. name: "Macro",
  20676. height: math.unit(140, "meters"),
  20677. default: true
  20678. },
  20679. {
  20680. name: "Megamacro",
  20681. height: math.unit(100, "miles")
  20682. },
  20683. ]
  20684. ))
  20685. characterMakers.push(() => makeCharacter(
  20686. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20687. {
  20688. front: {
  20689. height: math.unit(6 + 5 / 12, "feet"),
  20690. weight: math.unit(190, "lb"),
  20691. name: "Front",
  20692. image: {
  20693. source: "./media/characters/kingdead/front.svg",
  20694. extra: 1228 / 1177
  20695. }
  20696. },
  20697. },
  20698. [
  20699. {
  20700. name: "Micro",
  20701. height: math.unit(7, "inches")
  20702. },
  20703. {
  20704. name: "Normal",
  20705. height: math.unit(6 + 5 / 12, "feet")
  20706. },
  20707. {
  20708. name: "Macro",
  20709. height: math.unit(150, "feet"),
  20710. default: true
  20711. },
  20712. {
  20713. name: "Megamacro",
  20714. height: math.unit(200, "miles")
  20715. },
  20716. ]
  20717. ))
  20718. characterMakers.push(() => makeCharacter(
  20719. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20720. {
  20721. front: {
  20722. height: math.unit(8, "feet"),
  20723. weight: math.unit(600, "lb"),
  20724. name: "Front",
  20725. image: {
  20726. source: "./media/characters/kyrehx/front.svg",
  20727. extra: 1195 / 1095,
  20728. bottom: 0.034
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Micro",
  20735. height: math.unit(2, "inches")
  20736. },
  20737. {
  20738. name: "Normal",
  20739. height: math.unit(8, "feet"),
  20740. default: true
  20741. },
  20742. {
  20743. name: "Macro",
  20744. height: math.unit(255, "feet")
  20745. },
  20746. ]
  20747. ))
  20748. characterMakers.push(() => makeCharacter(
  20749. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20750. {
  20751. front: {
  20752. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20753. weight: math.unit(184, "lb"),
  20754. name: "Front",
  20755. image: {
  20756. source: "./media/characters/xang/front.svg",
  20757. extra: 845 / 755
  20758. }
  20759. },
  20760. },
  20761. [
  20762. {
  20763. name: "Normal",
  20764. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20765. default: true
  20766. },
  20767. {
  20768. name: "Macro",
  20769. height: math.unit(0.935 * 146, "feet")
  20770. },
  20771. {
  20772. name: "Megamacro",
  20773. height: math.unit(0.935 * 3, "miles")
  20774. },
  20775. ]
  20776. ))
  20777. characterMakers.push(() => makeCharacter(
  20778. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20779. {
  20780. frontDressed: {
  20781. height: math.unit(5 + 7 / 12, "feet"),
  20782. weight: math.unit(140, "lb"),
  20783. name: "Front (Dressed)",
  20784. image: {
  20785. source: "./media/characters/doc-weardno/front-dressed.svg",
  20786. extra: 263 / 234
  20787. }
  20788. },
  20789. backDressed: {
  20790. height: math.unit(5 + 7 / 12, "feet"),
  20791. weight: math.unit(140, "lb"),
  20792. name: "Back (Dressed)",
  20793. image: {
  20794. source: "./media/characters/doc-weardno/back-dressed.svg",
  20795. extra: 266 / 238
  20796. }
  20797. },
  20798. front: {
  20799. height: math.unit(5 + 7 / 12, "feet"),
  20800. weight: math.unit(140, "lb"),
  20801. name: "Front",
  20802. image: {
  20803. source: "./media/characters/doc-weardno/front.svg",
  20804. extra: 254 / 233
  20805. }
  20806. },
  20807. },
  20808. [
  20809. {
  20810. name: "Micro",
  20811. height: math.unit(3, "inches")
  20812. },
  20813. {
  20814. name: "Normal",
  20815. height: math.unit(5 + 7 / 12, "feet"),
  20816. default: true
  20817. },
  20818. {
  20819. name: "Macro",
  20820. height: math.unit(25, "feet")
  20821. },
  20822. {
  20823. name: "Megamacro",
  20824. height: math.unit(2, "miles")
  20825. },
  20826. ]
  20827. ))
  20828. characterMakers.push(() => makeCharacter(
  20829. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20830. {
  20831. front: {
  20832. height: math.unit(6 + 2 / 12, "feet"),
  20833. weight: math.unit(153, "lb"),
  20834. name: "Front",
  20835. image: {
  20836. source: "./media/characters/seth-whilst/front.svg",
  20837. bottom: 0.07
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Micro",
  20844. height: math.unit(5, "inches")
  20845. },
  20846. {
  20847. name: "Normal",
  20848. height: math.unit(6 + 2 / 12, "feet"),
  20849. default: true
  20850. },
  20851. ]
  20852. ))
  20853. characterMakers.push(() => makeCharacter(
  20854. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20855. {
  20856. front: {
  20857. height: math.unit(3, "inches"),
  20858. weight: math.unit(8, "grams"),
  20859. name: "Front",
  20860. image: {
  20861. source: "./media/characters/pocket-jabari/front.svg",
  20862. extra: 1024 / 974,
  20863. bottom: 0.039
  20864. }
  20865. },
  20866. },
  20867. [
  20868. {
  20869. name: "Minimicro",
  20870. height: math.unit(8, "mm")
  20871. },
  20872. {
  20873. name: "Micro",
  20874. height: math.unit(3, "inches"),
  20875. default: true
  20876. },
  20877. {
  20878. name: "Normal",
  20879. height: math.unit(3, "feet")
  20880. },
  20881. ]
  20882. ))
  20883. characterMakers.push(() => makeCharacter(
  20884. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20885. {
  20886. frontDressed: {
  20887. height: math.unit(15, "feet"),
  20888. weight: math.unit(3280, "lb"),
  20889. name: "Front (Dressed)",
  20890. image: {
  20891. source: "./media/characters/sapphy/front-dressed.svg",
  20892. extra: 1951/1654,
  20893. bottom: 194/2145
  20894. },
  20895. form: "anthro",
  20896. default: true
  20897. },
  20898. backDressed: {
  20899. height: math.unit(15, "feet"),
  20900. weight: math.unit(3280, "lb"),
  20901. name: "Back (Dressed)",
  20902. image: {
  20903. source: "./media/characters/sapphy/back-dressed.svg",
  20904. extra: 2058/1918,
  20905. bottom: 125/2183
  20906. },
  20907. form: "anthro"
  20908. },
  20909. frontNude: {
  20910. height: math.unit(15, "feet"),
  20911. weight: math.unit(3280, "lb"),
  20912. name: "Front (Nude)",
  20913. image: {
  20914. source: "./media/characters/sapphy/front-nude.svg",
  20915. extra: 1951/1654,
  20916. bottom: 194/2145
  20917. },
  20918. form: "anthro"
  20919. },
  20920. backNude: {
  20921. height: math.unit(15, "feet"),
  20922. weight: math.unit(3280, "lb"),
  20923. name: "Back (Nude)",
  20924. image: {
  20925. source: "./media/characters/sapphy/back-nude.svg",
  20926. extra: 2058/1918,
  20927. bottom: 125/2183
  20928. },
  20929. form: "anthro"
  20930. },
  20931. full: {
  20932. height: math.unit(15, "feet"),
  20933. weight: math.unit(3280, "lb"),
  20934. name: "Full",
  20935. image: {
  20936. source: "./media/characters/sapphy/full.svg",
  20937. extra: 1396/1317,
  20938. bottom: 44/1440
  20939. },
  20940. form: "anthro"
  20941. },
  20942. dick: {
  20943. height: math.unit(3.8, "feet"),
  20944. name: "Dick",
  20945. image: {
  20946. source: "./media/characters/sapphy/dick.svg"
  20947. },
  20948. form: "anthro"
  20949. },
  20950. feral: {
  20951. height: math.unit(35, "feet"),
  20952. weight: math.unit(160, "tons"),
  20953. name: "Feral",
  20954. image: {
  20955. source: "./media/characters/sapphy/feral.svg",
  20956. extra: 1050/573,
  20957. bottom: 60/1110
  20958. },
  20959. form: "feral",
  20960. default: true
  20961. },
  20962. },
  20963. [
  20964. {
  20965. name: "Normal",
  20966. height: math.unit(15, "feet"),
  20967. form: "anthro"
  20968. },
  20969. {
  20970. name: "Casual Macro",
  20971. height: math.unit(120, "feet"),
  20972. form: "anthro"
  20973. },
  20974. {
  20975. name: "Macro",
  20976. height: math.unit(2150, "feet"),
  20977. default: true,
  20978. form: "anthro"
  20979. },
  20980. {
  20981. name: "Megamacro",
  20982. height: math.unit(8, "miles"),
  20983. form: "anthro"
  20984. },
  20985. {
  20986. name: "Galaxy Mom",
  20987. height: math.unit(6, "megalightyears"),
  20988. form: "anthro"
  20989. },
  20990. {
  20991. name: "Normal",
  20992. height: math.unit(35, "feet"),
  20993. form: "feral",
  20994. default: true
  20995. },
  20996. {
  20997. name: "Macro",
  20998. height: math.unit(300, "feet"),
  20999. form: "feral"
  21000. },
  21001. {
  21002. name: "Galaxy Mom",
  21003. height: math.unit(10, "megalightyears"),
  21004. form: "feral"
  21005. },
  21006. ],
  21007. {
  21008. "anthro": {
  21009. name: "Anthro",
  21010. default: true
  21011. },
  21012. "feral": {
  21013. name: "Feral"
  21014. }
  21015. }
  21016. ))
  21017. characterMakers.push(() => makeCharacter(
  21018. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  21019. {
  21020. hyenaFront: {
  21021. height: math.unit(6, "feet"),
  21022. weight: math.unit(190, "lb"),
  21023. name: "Front",
  21024. image: {
  21025. source: "./media/characters/kiro/hyena-front.svg",
  21026. extra: 927/839,
  21027. bottom: 91/1018
  21028. },
  21029. form: "hyena",
  21030. default: true
  21031. },
  21032. front: {
  21033. height: math.unit(6, "feet"),
  21034. weight: math.unit(170, "lb"),
  21035. name: "Front",
  21036. image: {
  21037. source: "./media/characters/kiro/front.svg",
  21038. extra: 1064 / 1012,
  21039. bottom: 0.052
  21040. },
  21041. form: "folf",
  21042. default: true
  21043. },
  21044. },
  21045. [
  21046. {
  21047. name: "Micro",
  21048. height: math.unit(6, "inches"),
  21049. form: "folf"
  21050. },
  21051. {
  21052. name: "Normal",
  21053. height: math.unit(6, "feet"),
  21054. form: "folf",
  21055. default: true
  21056. },
  21057. {
  21058. name: "Macro",
  21059. height: math.unit(72, "feet"),
  21060. form: "folf"
  21061. },
  21062. {
  21063. name: "Micro",
  21064. height: math.unit(6, "inches"),
  21065. form: "hyena"
  21066. },
  21067. {
  21068. name: "Normal",
  21069. height: math.unit(6, "feet"),
  21070. form: "hyena",
  21071. default: true
  21072. },
  21073. {
  21074. name: "Macro",
  21075. height: math.unit(72, "feet"),
  21076. form: "hyena"
  21077. },
  21078. ],
  21079. {
  21080. "hyena": {
  21081. name: "Hyena",
  21082. default: true
  21083. },
  21084. "folf": {
  21085. name: "Folf",
  21086. },
  21087. }
  21088. ))
  21089. characterMakers.push(() => makeCharacter(
  21090. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  21091. {
  21092. front: {
  21093. height: math.unit(5 + 9 / 12, "feet"),
  21094. weight: math.unit(175, "lb"),
  21095. name: "Front",
  21096. image: {
  21097. source: "./media/characters/irishfox/front.svg",
  21098. extra: 1912 / 1680,
  21099. bottom: 0.02
  21100. }
  21101. },
  21102. },
  21103. [
  21104. {
  21105. name: "Nano",
  21106. height: math.unit(1, "mm")
  21107. },
  21108. {
  21109. name: "Micro",
  21110. height: math.unit(2, "inches")
  21111. },
  21112. {
  21113. name: "Normal",
  21114. height: math.unit(5 + 9 / 12, "feet"),
  21115. default: true
  21116. },
  21117. {
  21118. name: "Macro",
  21119. height: math.unit(45, "feet")
  21120. },
  21121. ]
  21122. ))
  21123. characterMakers.push(() => makeCharacter(
  21124. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  21125. {
  21126. front: {
  21127. height: math.unit(6 + 1 / 12, "feet"),
  21128. weight: math.unit(75, "lb"),
  21129. name: "Front",
  21130. image: {
  21131. source: "./media/characters/aronai-sieyes/front.svg",
  21132. extra: 1532/1450,
  21133. bottom: 42/1574
  21134. }
  21135. },
  21136. side: {
  21137. height: math.unit(6 + 1 / 12, "feet"),
  21138. weight: math.unit(75, "lb"),
  21139. name: "Side",
  21140. image: {
  21141. source: "./media/characters/aronai-sieyes/side.svg",
  21142. extra: 1422/1365,
  21143. bottom: 148/1570
  21144. }
  21145. },
  21146. back: {
  21147. height: math.unit(6 + 1 / 12, "feet"),
  21148. weight: math.unit(75, "lb"),
  21149. name: "Back",
  21150. image: {
  21151. source: "./media/characters/aronai-sieyes/back.svg",
  21152. extra: 1526/1464,
  21153. bottom: 51/1577
  21154. }
  21155. },
  21156. dressed: {
  21157. height: math.unit(6 + 1 / 12, "feet"),
  21158. weight: math.unit(75, "lb"),
  21159. name: "Dressed",
  21160. image: {
  21161. source: "./media/characters/aronai-sieyes/dressed.svg",
  21162. extra: 1559/1483,
  21163. bottom: 39/1598
  21164. }
  21165. },
  21166. slit: {
  21167. height: math.unit(1.3, "feet"),
  21168. name: "Slit",
  21169. image: {
  21170. source: "./media/characters/aronai-sieyes/slit.svg"
  21171. }
  21172. },
  21173. slitSpread: {
  21174. height: math.unit(0.9, "feet"),
  21175. name: "Slit (Spread)",
  21176. image: {
  21177. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  21178. }
  21179. },
  21180. rump: {
  21181. height: math.unit(1.3, "feet"),
  21182. name: "Rump",
  21183. image: {
  21184. source: "./media/characters/aronai-sieyes/rump.svg"
  21185. }
  21186. },
  21187. maw: {
  21188. height: math.unit(1.25, "feet"),
  21189. name: "Maw",
  21190. image: {
  21191. source: "./media/characters/aronai-sieyes/maw.svg"
  21192. }
  21193. },
  21194. feral: {
  21195. height: math.unit(18, "feet"),
  21196. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  21197. name: "Feral",
  21198. image: {
  21199. source: "./media/characters/aronai-sieyes/feral.svg",
  21200. extra: 1530 / 1240,
  21201. bottom: 0.035
  21202. }
  21203. },
  21204. },
  21205. [
  21206. {
  21207. name: "Micro",
  21208. height: math.unit(2, "inches")
  21209. },
  21210. {
  21211. name: "Normal",
  21212. height: math.unit(6 + 1 / 12, "feet"),
  21213. default: true
  21214. }
  21215. ]
  21216. ))
  21217. characterMakers.push(() => makeCharacter(
  21218. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  21219. {
  21220. front: {
  21221. height: math.unit(12, "feet"),
  21222. weight: math.unit(410, "kg"),
  21223. name: "Front",
  21224. image: {
  21225. source: "./media/characters/xuna/front.svg",
  21226. extra: 2184 / 1980
  21227. }
  21228. },
  21229. side: {
  21230. height: math.unit(12, "feet"),
  21231. weight: math.unit(410, "kg"),
  21232. name: "Side",
  21233. image: {
  21234. source: "./media/characters/xuna/side.svg",
  21235. extra: 2184 / 1980
  21236. }
  21237. },
  21238. back: {
  21239. height: math.unit(12, "feet"),
  21240. weight: math.unit(410, "kg"),
  21241. name: "Back",
  21242. image: {
  21243. source: "./media/characters/xuna/back.svg",
  21244. extra: 2184 / 1980
  21245. }
  21246. },
  21247. },
  21248. [
  21249. {
  21250. name: "Nano glow",
  21251. height: math.unit(10, "nm")
  21252. },
  21253. {
  21254. name: "Micro floof",
  21255. height: math.unit(0.3, "m")
  21256. },
  21257. {
  21258. name: "Huggable softy boi",
  21259. height: math.unit(3.6576, "m"),
  21260. default: true
  21261. },
  21262. {
  21263. name: "Admirable floof",
  21264. height: math.unit(80, "meters")
  21265. },
  21266. {
  21267. name: "Gentle macro",
  21268. height: math.unit(300, "meters")
  21269. },
  21270. {
  21271. name: "Very careful floof",
  21272. height: math.unit(3200, "meters")
  21273. },
  21274. {
  21275. name: "The mega floof",
  21276. height: math.unit(36000, "meters")
  21277. },
  21278. {
  21279. name: "Giga-fur-Wicker",
  21280. height: math.unit(4800000, "meters")
  21281. },
  21282. {
  21283. name: "Licky world",
  21284. height: math.unit(20000000, "meters")
  21285. },
  21286. {
  21287. name: "Floofy cyan sun",
  21288. height: math.unit(1500000000, "meters")
  21289. },
  21290. {
  21291. name: "Milky Wicker",
  21292. height: math.unit(1000000000000000000000, "meters")
  21293. },
  21294. {
  21295. name: "The observing Wicker",
  21296. height: math.unit(999999999999999999999999999, "meters")
  21297. },
  21298. ]
  21299. ))
  21300. characterMakers.push(() => makeCharacter(
  21301. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21302. {
  21303. front: {
  21304. height: math.unit(5 + 9 / 12, "feet"),
  21305. weight: math.unit(150, "lb"),
  21306. name: "Front",
  21307. image: {
  21308. source: "./media/characters/arokha-sieyes/front.svg",
  21309. extra: 1425 / 1284,
  21310. bottom: 0.05
  21311. }
  21312. },
  21313. },
  21314. [
  21315. {
  21316. name: "Normal",
  21317. height: math.unit(5 + 9 / 12, "feet")
  21318. },
  21319. {
  21320. name: "Macro",
  21321. height: math.unit(30, "meters"),
  21322. default: true
  21323. },
  21324. ]
  21325. ))
  21326. characterMakers.push(() => makeCharacter(
  21327. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21328. {
  21329. front: {
  21330. height: math.unit(6, "feet"),
  21331. weight: math.unit(180, "lb"),
  21332. name: "Front",
  21333. image: {
  21334. source: "./media/characters/arokh-sieyes/front.svg",
  21335. extra: 1830 / 1769,
  21336. bottom: 0.01
  21337. }
  21338. },
  21339. },
  21340. [
  21341. {
  21342. name: "Normal",
  21343. height: math.unit(6, "feet")
  21344. },
  21345. {
  21346. name: "Macro",
  21347. height: math.unit(30, "meters"),
  21348. default: true
  21349. },
  21350. ]
  21351. ))
  21352. characterMakers.push(() => makeCharacter(
  21353. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21354. {
  21355. side: {
  21356. height: math.unit(13 + 1 / 12, "feet"),
  21357. weight: math.unit(8.5, "tonnes"),
  21358. preyCapacity: math.unit(36, "people"),
  21359. name: "Side",
  21360. image: {
  21361. source: "./media/characters/goldeneye/side.svg",
  21362. extra: 1139/741,
  21363. bottom: 98/1237
  21364. }
  21365. },
  21366. front: {
  21367. height: math.unit(5.1, "feet"),
  21368. weight: math.unit(8.5, "tonnes"),
  21369. preyCapacity: math.unit(36, "people"),
  21370. name: "Front",
  21371. image: {
  21372. source: "./media/characters/goldeneye/front.svg",
  21373. extra: 635/365,
  21374. bottom: 598/1233
  21375. }
  21376. },
  21377. maw: {
  21378. height: math.unit(6.6, "feet"),
  21379. name: "Maw",
  21380. image: {
  21381. source: "./media/characters/goldeneye/maw.svg"
  21382. }
  21383. },
  21384. headFront: {
  21385. height: math.unit(8, "feet"),
  21386. name: "Head (Front)",
  21387. image: {
  21388. source: "./media/characters/goldeneye/head-front.svg"
  21389. }
  21390. },
  21391. headSide: {
  21392. height: math.unit(6, "feet"),
  21393. name: "Head (Side)",
  21394. image: {
  21395. source: "./media/characters/goldeneye/head-side.svg"
  21396. }
  21397. },
  21398. headBack: {
  21399. height: math.unit(8, "feet"),
  21400. name: "Head (Back)",
  21401. image: {
  21402. source: "./media/characters/goldeneye/head-back.svg"
  21403. }
  21404. },
  21405. paw: {
  21406. height: math.unit(3.4, "feet"),
  21407. name: "Paw",
  21408. image: {
  21409. source: "./media/characters/goldeneye/paw.svg"
  21410. }
  21411. },
  21412. toering: {
  21413. height: math.unit(0.45, "feet"),
  21414. name: "Toering",
  21415. image: {
  21416. source: "./media/characters/goldeneye/toering.svg"
  21417. }
  21418. },
  21419. eyes: {
  21420. height: math.unit(0.5, "feet"),
  21421. name: "Eyes",
  21422. image: {
  21423. source: "./media/characters/goldeneye/eyes.svg"
  21424. }
  21425. },
  21426. },
  21427. [
  21428. {
  21429. name: "Normal",
  21430. height: math.unit(13 + 1 / 12, "feet"),
  21431. default: true
  21432. },
  21433. ]
  21434. ))
  21435. characterMakers.push(() => makeCharacter(
  21436. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21437. {
  21438. front: {
  21439. height: math.unit(6 + 1 / 12, "feet"),
  21440. weight: math.unit(210, "lb"),
  21441. name: "Front",
  21442. image: {
  21443. source: "./media/characters/leonardo-lycheborne/front.svg",
  21444. extra: 776/723,
  21445. bottom: 34/810
  21446. }
  21447. },
  21448. side: {
  21449. height: math.unit(6 + 1 / 12, "feet"),
  21450. weight: math.unit(210, "lb"),
  21451. name: "Side",
  21452. image: {
  21453. source: "./media/characters/leonardo-lycheborne/side.svg",
  21454. extra: 780/728,
  21455. bottom: 12/792
  21456. }
  21457. },
  21458. back: {
  21459. height: math.unit(6 + 1 / 12, "feet"),
  21460. weight: math.unit(210, "lb"),
  21461. name: "Back",
  21462. image: {
  21463. source: "./media/characters/leonardo-lycheborne/back.svg",
  21464. extra: 775/721,
  21465. bottom: 17/792
  21466. }
  21467. },
  21468. hand: {
  21469. height: math.unit(1.08, "feet"),
  21470. name: "Hand",
  21471. image: {
  21472. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21473. }
  21474. },
  21475. foot: {
  21476. height: math.unit(1.32, "feet"),
  21477. name: "Foot",
  21478. image: {
  21479. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21480. }
  21481. },
  21482. maw: {
  21483. height: math.unit(1, "feet"),
  21484. name: "Maw",
  21485. image: {
  21486. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21487. }
  21488. },
  21489. were: {
  21490. height: math.unit(20, "feet"),
  21491. weight: math.unit(7800, "lb"),
  21492. name: "Were",
  21493. image: {
  21494. source: "./media/characters/leonardo-lycheborne/were.svg",
  21495. extra: 1224/1165,
  21496. bottom: 72/1296
  21497. }
  21498. },
  21499. feral: {
  21500. height: math.unit(7.5, "feet"),
  21501. weight: math.unit(600, "lb"),
  21502. name: "Feral",
  21503. image: {
  21504. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21505. extra: 797/702,
  21506. bottom: 139/936
  21507. }
  21508. },
  21509. taur: {
  21510. height: math.unit(11, "feet"),
  21511. weight: math.unit(3300, "lb"),
  21512. name: "Taur",
  21513. image: {
  21514. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21515. extra: 1271/1197,
  21516. bottom: 47/1318
  21517. }
  21518. },
  21519. barghest: {
  21520. height: math.unit(11, "feet"),
  21521. weight: math.unit(1300, "lb"),
  21522. name: "Barghest",
  21523. image: {
  21524. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21525. extra: 1291/1204,
  21526. bottom: 37/1328
  21527. }
  21528. },
  21529. dick: {
  21530. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21531. name: "Dick",
  21532. image: {
  21533. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21534. }
  21535. },
  21536. dickWere: {
  21537. height: math.unit((20) / 3.8, "feet"),
  21538. name: "Dick (Were)",
  21539. image: {
  21540. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21541. }
  21542. },
  21543. },
  21544. [
  21545. {
  21546. name: "Normal",
  21547. height: math.unit(6 + 1 / 12, "feet"),
  21548. default: true
  21549. },
  21550. ]
  21551. ))
  21552. characterMakers.push(() => makeCharacter(
  21553. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21554. {
  21555. front: {
  21556. height: math.unit(10, "feet"),
  21557. weight: math.unit(350, "lb"),
  21558. name: "Front",
  21559. image: {
  21560. source: "./media/characters/jet/front.svg",
  21561. extra: 2050 / 1980,
  21562. bottom: 0.013
  21563. }
  21564. },
  21565. back: {
  21566. height: math.unit(10, "feet"),
  21567. weight: math.unit(350, "lb"),
  21568. name: "Back",
  21569. image: {
  21570. source: "./media/characters/jet/back.svg",
  21571. extra: 2050 / 1980,
  21572. bottom: 0.013
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Micro",
  21579. height: math.unit(6, "inches")
  21580. },
  21581. {
  21582. name: "Normal",
  21583. height: math.unit(10, "feet"),
  21584. default: true
  21585. },
  21586. {
  21587. name: "Macro",
  21588. height: math.unit(100, "feet")
  21589. },
  21590. ]
  21591. ))
  21592. characterMakers.push(() => makeCharacter(
  21593. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21594. {
  21595. front: {
  21596. height: math.unit(15, "feet"),
  21597. weight: math.unit(2800, "lb"),
  21598. name: "Front",
  21599. image: {
  21600. source: "./media/characters/tanarath/front.svg",
  21601. extra: 2392 / 2220,
  21602. bottom: 0.03
  21603. }
  21604. },
  21605. back: {
  21606. height: math.unit(15, "feet"),
  21607. weight: math.unit(2800, "lb"),
  21608. name: "Back",
  21609. image: {
  21610. source: "./media/characters/tanarath/back.svg",
  21611. extra: 2392 / 2220,
  21612. bottom: 0.03
  21613. }
  21614. },
  21615. },
  21616. [
  21617. {
  21618. name: "Normal",
  21619. height: math.unit(15, "feet"),
  21620. default: true
  21621. },
  21622. ]
  21623. ))
  21624. characterMakers.push(() => makeCharacter(
  21625. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21626. {
  21627. front: {
  21628. height: math.unit(7 + 1 / 12, "feet"),
  21629. weight: math.unit(175, "lb"),
  21630. name: "Front",
  21631. image: {
  21632. source: "./media/characters/patty-cattybatty/front.svg",
  21633. extra: 908 / 874,
  21634. bottom: 0.025
  21635. }
  21636. },
  21637. },
  21638. [
  21639. {
  21640. name: "Micro",
  21641. height: math.unit(1, "inch")
  21642. },
  21643. {
  21644. name: "Normal",
  21645. height: math.unit(7 + 1 / 12, "feet")
  21646. },
  21647. {
  21648. name: "Mini Macro",
  21649. height: math.unit(155, "feet")
  21650. },
  21651. {
  21652. name: "Macro",
  21653. height: math.unit(1077, "feet")
  21654. },
  21655. {
  21656. name: "Mega Macro",
  21657. height: math.unit(47650, "feet"),
  21658. default: true
  21659. },
  21660. {
  21661. name: "Giga Macro",
  21662. height: math.unit(440, "miles")
  21663. },
  21664. {
  21665. name: "Tera Macro",
  21666. height: math.unit(8700, "miles")
  21667. },
  21668. {
  21669. name: "Planetary Macro",
  21670. height: math.unit(32700, "miles")
  21671. },
  21672. {
  21673. name: "Solar Macro",
  21674. height: math.unit(550000, "miles")
  21675. },
  21676. {
  21677. name: "Celestial Macro",
  21678. height: math.unit(2.5, "AU")
  21679. },
  21680. ]
  21681. ))
  21682. characterMakers.push(() => makeCharacter(
  21683. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21684. {
  21685. front: {
  21686. height: math.unit(4 + 5 / 12, "feet"),
  21687. weight: math.unit(90, "lb"),
  21688. name: "Front",
  21689. image: {
  21690. source: "./media/characters/cappu/front.svg",
  21691. extra: 1247 / 1152,
  21692. bottom: 0.012
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Normal",
  21699. height: math.unit(4 + 5 / 12, "feet"),
  21700. default: true
  21701. },
  21702. ]
  21703. ))
  21704. characterMakers.push(() => makeCharacter(
  21705. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21706. {
  21707. frontDressed: {
  21708. height: math.unit(70, "cm"),
  21709. weight: math.unit(6, "kg"),
  21710. name: "Front (Dressed)",
  21711. image: {
  21712. source: "./media/characters/sebi/front-dressed.svg",
  21713. extra: 713.5 / 686.5,
  21714. bottom: 0.003
  21715. }
  21716. },
  21717. front: {
  21718. height: math.unit(70, "cm"),
  21719. weight: math.unit(5, "kg"),
  21720. name: "Front",
  21721. image: {
  21722. source: "./media/characters/sebi/front.svg",
  21723. extra: 713.5 / 686.5,
  21724. bottom: 0.003
  21725. }
  21726. }
  21727. },
  21728. [
  21729. {
  21730. name: "Normal",
  21731. height: math.unit(70, "cm"),
  21732. default: true
  21733. },
  21734. {
  21735. name: "Macro",
  21736. height: math.unit(8, "meters")
  21737. },
  21738. ]
  21739. ))
  21740. characterMakers.push(() => makeCharacter(
  21741. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21742. {
  21743. front: {
  21744. height: math.unit(6, "feet"),
  21745. weight: math.unit(150, "lb"),
  21746. name: "Front",
  21747. image: {
  21748. source: "./media/characters/typhek/front.svg",
  21749. extra: 1948 / 1929,
  21750. bottom: 0.025
  21751. }
  21752. },
  21753. side: {
  21754. height: math.unit(6, "feet"),
  21755. weight: math.unit(150, "lb"),
  21756. name: "Side",
  21757. image: {
  21758. source: "./media/characters/typhek/side.svg",
  21759. extra: 2034 / 2010,
  21760. bottom: 0.003
  21761. }
  21762. },
  21763. back: {
  21764. height: math.unit(6, "feet"),
  21765. weight: math.unit(150, "lb"),
  21766. name: "Back",
  21767. image: {
  21768. source: "./media/characters/typhek/back.svg",
  21769. extra: 2005 / 1978,
  21770. bottom: 0.004
  21771. }
  21772. },
  21773. palm: {
  21774. height: math.unit(1.2, "feet"),
  21775. name: "Palm",
  21776. image: {
  21777. source: "./media/characters/typhek/palm.svg"
  21778. }
  21779. },
  21780. fist: {
  21781. height: math.unit(1.1, "feet"),
  21782. name: "Fist",
  21783. image: {
  21784. source: "./media/characters/typhek/fist.svg"
  21785. }
  21786. },
  21787. foot: {
  21788. height: math.unit(1.57, "feet"),
  21789. name: "Foot",
  21790. image: {
  21791. source: "./media/characters/typhek/foot.svg"
  21792. }
  21793. },
  21794. sole: {
  21795. height: math.unit(2.05, "feet"),
  21796. name: "Sole",
  21797. image: {
  21798. source: "./media/characters/typhek/sole.svg"
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Macro",
  21805. height: math.unit(40, "stories"),
  21806. default: true
  21807. },
  21808. {
  21809. name: "Megamacro",
  21810. height: math.unit(1, "mile")
  21811. },
  21812. {
  21813. name: "Gigamacro",
  21814. height: math.unit(4000, "solarradii")
  21815. },
  21816. {
  21817. name: "Universal",
  21818. height: math.unit(1.1, "universes")
  21819. }
  21820. ]
  21821. ))
  21822. characterMakers.push(() => makeCharacter(
  21823. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21824. {
  21825. side: {
  21826. height: math.unit(5 + 7 / 12, "feet"),
  21827. weight: math.unit(150, "lb"),
  21828. name: "Side",
  21829. image: {
  21830. source: "./media/characters/kassy/side.svg",
  21831. extra: 1280 / 1225,
  21832. bottom: 0.002
  21833. }
  21834. },
  21835. front: {
  21836. height: math.unit(5 + 7 / 12, "feet"),
  21837. weight: math.unit(150, "lb"),
  21838. name: "Front",
  21839. image: {
  21840. source: "./media/characters/kassy/front.svg",
  21841. extra: 1280 / 1225,
  21842. bottom: 0.025
  21843. }
  21844. },
  21845. back: {
  21846. height: math.unit(5 + 7 / 12, "feet"),
  21847. weight: math.unit(150, "lb"),
  21848. name: "Back",
  21849. image: {
  21850. source: "./media/characters/kassy/back.svg",
  21851. extra: 1280 / 1225,
  21852. bottom: 0.002
  21853. }
  21854. },
  21855. foot: {
  21856. height: math.unit(1.266, "feet"),
  21857. name: "Foot",
  21858. image: {
  21859. source: "./media/characters/kassy/foot.svg"
  21860. }
  21861. },
  21862. },
  21863. [
  21864. {
  21865. name: "Normal",
  21866. height: math.unit(5 + 7 / 12, "feet")
  21867. },
  21868. {
  21869. name: "Macro",
  21870. height: math.unit(137, "feet"),
  21871. default: true
  21872. },
  21873. {
  21874. name: "Megamacro",
  21875. height: math.unit(1, "mile")
  21876. },
  21877. ]
  21878. ))
  21879. characterMakers.push(() => makeCharacter(
  21880. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21881. {
  21882. front: {
  21883. height: math.unit(6 + 1 / 12, "feet"),
  21884. weight: math.unit(200, "lb"),
  21885. name: "Front",
  21886. image: {
  21887. source: "./media/characters/neil/front.svg",
  21888. extra: 1326 / 1250,
  21889. bottom: 0.023
  21890. }
  21891. },
  21892. },
  21893. [
  21894. {
  21895. name: "Normal",
  21896. height: math.unit(6 + 1 / 12, "feet"),
  21897. default: true
  21898. },
  21899. {
  21900. name: "Macro",
  21901. height: math.unit(200, "feet")
  21902. },
  21903. ]
  21904. ))
  21905. characterMakers.push(() => makeCharacter(
  21906. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21907. {
  21908. front: {
  21909. height: math.unit(5 + 9 / 12, "feet"),
  21910. weight: math.unit(190, "lb"),
  21911. name: "Front",
  21912. image: {
  21913. source: "./media/characters/atticus/front.svg",
  21914. extra: 2934 / 2785,
  21915. bottom: 0.025
  21916. }
  21917. },
  21918. },
  21919. [
  21920. {
  21921. name: "Normal",
  21922. height: math.unit(5 + 9 / 12, "feet"),
  21923. default: true
  21924. },
  21925. {
  21926. name: "Macro",
  21927. height: math.unit(180, "feet")
  21928. },
  21929. ]
  21930. ))
  21931. characterMakers.push(() => makeCharacter(
  21932. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21933. {
  21934. side: {
  21935. height: math.unit(9, "feet"),
  21936. weight: math.unit(650, "lb"),
  21937. name: "Side",
  21938. image: {
  21939. source: "./media/characters/milo/side.svg",
  21940. extra: 2644 / 2310,
  21941. bottom: 0.032
  21942. }
  21943. },
  21944. },
  21945. [
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(9, "feet"),
  21949. default: true
  21950. },
  21951. {
  21952. name: "Macro",
  21953. height: math.unit(300, "feet")
  21954. },
  21955. ]
  21956. ))
  21957. characterMakers.push(() => makeCharacter(
  21958. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21959. {
  21960. side: {
  21961. height: math.unit(8, "meters"),
  21962. weight: math.unit(90000, "kg"),
  21963. name: "Side",
  21964. image: {
  21965. source: "./media/characters/ijzer/side.svg",
  21966. extra: 2756 / 1600,
  21967. bottom: 0.01
  21968. }
  21969. },
  21970. },
  21971. [
  21972. {
  21973. name: "Small",
  21974. height: math.unit(3, "meters")
  21975. },
  21976. {
  21977. name: "Normal",
  21978. height: math.unit(8, "meters"),
  21979. default: true
  21980. },
  21981. {
  21982. name: "Normal+",
  21983. height: math.unit(10, "meters")
  21984. },
  21985. {
  21986. name: "Bigger",
  21987. height: math.unit(24, "meters")
  21988. },
  21989. {
  21990. name: "Huge",
  21991. height: math.unit(80, "meters")
  21992. },
  21993. ]
  21994. ))
  21995. characterMakers.push(() => makeCharacter(
  21996. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21997. {
  21998. front: {
  21999. height: math.unit(6 + 2 / 12, "feet"),
  22000. weight: math.unit(153, "lb"),
  22001. name: "Front",
  22002. image: {
  22003. source: "./media/characters/luca-cervicum/front.svg",
  22004. extra: 370 / 327,
  22005. bottom: 0.015
  22006. }
  22007. },
  22008. back: {
  22009. height: math.unit(6 + 2 / 12, "feet"),
  22010. weight: math.unit(153, "lb"),
  22011. name: "Back",
  22012. image: {
  22013. source: "./media/characters/luca-cervicum/back.svg",
  22014. extra: 367 / 333,
  22015. bottom: 0.005
  22016. }
  22017. },
  22018. frontGear: {
  22019. height: math.unit(6 + 2 / 12, "feet"),
  22020. weight: math.unit(173, "lb"),
  22021. name: "Front (Gear)",
  22022. image: {
  22023. source: "./media/characters/luca-cervicum/front-gear.svg",
  22024. extra: 377 / 333,
  22025. bottom: 0.006
  22026. }
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Normal",
  22032. height: math.unit(6 + 2 / 12, "feet"),
  22033. default: true
  22034. },
  22035. ]
  22036. ))
  22037. characterMakers.push(() => makeCharacter(
  22038. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  22039. {
  22040. front: {
  22041. height: math.unit(6 + 1 / 12, "feet"),
  22042. weight: math.unit(304, "lb"),
  22043. name: "Front",
  22044. image: {
  22045. source: "./media/characters/oliver/front.svg",
  22046. extra: 157 / 143,
  22047. bottom: 0.08
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Normal",
  22054. height: math.unit(6 + 1 / 12, "feet"),
  22055. default: true
  22056. },
  22057. ]
  22058. ))
  22059. characterMakers.push(() => makeCharacter(
  22060. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  22061. {
  22062. front: {
  22063. height: math.unit(5 + 7 / 12, "feet"),
  22064. weight: math.unit(140, "lb"),
  22065. name: "Front",
  22066. image: {
  22067. source: "./media/characters/shane/front.svg",
  22068. extra: 304 / 289,
  22069. bottom: 0.005
  22070. }
  22071. },
  22072. },
  22073. [
  22074. {
  22075. name: "Normal",
  22076. height: math.unit(5 + 7 / 12, "feet"),
  22077. default: true
  22078. },
  22079. ]
  22080. ))
  22081. characterMakers.push(() => makeCharacter(
  22082. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  22083. {
  22084. front: {
  22085. height: math.unit(5 + 9 / 12, "feet"),
  22086. weight: math.unit(178, "lb"),
  22087. name: "Front",
  22088. image: {
  22089. source: "./media/characters/shin/front.svg",
  22090. extra: 159 / 151,
  22091. bottom: 0.015
  22092. }
  22093. },
  22094. },
  22095. [
  22096. {
  22097. name: "Normal",
  22098. height: math.unit(5 + 9 / 12, "feet"),
  22099. default: true
  22100. },
  22101. ]
  22102. ))
  22103. characterMakers.push(() => makeCharacter(
  22104. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  22105. {
  22106. front: {
  22107. height: math.unit(5 + 10 / 12, "feet"),
  22108. weight: math.unit(168, "lb"),
  22109. name: "Front",
  22110. image: {
  22111. source: "./media/characters/xerxes/front.svg",
  22112. extra: 282 / 260,
  22113. bottom: 0.045
  22114. }
  22115. },
  22116. },
  22117. [
  22118. {
  22119. name: "Normal",
  22120. height: math.unit(5 + 10 / 12, "feet"),
  22121. default: true
  22122. },
  22123. ]
  22124. ))
  22125. characterMakers.push(() => makeCharacter(
  22126. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  22127. {
  22128. front: {
  22129. height: math.unit(6 + 7 / 12, "feet"),
  22130. weight: math.unit(208, "lb"),
  22131. name: "Front",
  22132. image: {
  22133. source: "./media/characters/chaska/front.svg",
  22134. extra: 332 / 319,
  22135. bottom: 0.015
  22136. }
  22137. },
  22138. },
  22139. [
  22140. {
  22141. name: "Normal",
  22142. height: math.unit(6 + 7 / 12, "feet"),
  22143. default: true
  22144. },
  22145. ]
  22146. ))
  22147. characterMakers.push(() => makeCharacter(
  22148. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  22149. {
  22150. front: {
  22151. height: math.unit(5 + 8 / 12, "feet"),
  22152. weight: math.unit(208, "lb"),
  22153. name: "Front",
  22154. image: {
  22155. source: "./media/characters/enuk/front.svg",
  22156. extra: 437 / 406,
  22157. bottom: 0.02
  22158. }
  22159. },
  22160. },
  22161. [
  22162. {
  22163. name: "Normal",
  22164. height: math.unit(5 + 8 / 12, "feet"),
  22165. default: true
  22166. },
  22167. ]
  22168. ))
  22169. characterMakers.push(() => makeCharacter(
  22170. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  22171. {
  22172. front: {
  22173. height: math.unit(5 + 10 / 12, "feet"),
  22174. weight: math.unit(252, "lb"),
  22175. name: "Front",
  22176. image: {
  22177. source: "./media/characters/bruun/front.svg",
  22178. extra: 197 / 187,
  22179. bottom: 0.012
  22180. }
  22181. },
  22182. },
  22183. [
  22184. {
  22185. name: "Normal",
  22186. height: math.unit(5 + 10 / 12, "feet"),
  22187. default: true
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  22193. {
  22194. front: {
  22195. height: math.unit(6 + 10 / 12, "feet"),
  22196. weight: math.unit(255, "lb"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/alexeev/front.svg",
  22200. extra: 213 / 200,
  22201. bottom: 0.05
  22202. }
  22203. },
  22204. },
  22205. [
  22206. {
  22207. name: "Normal",
  22208. height: math.unit(6 + 10 / 12, "feet"),
  22209. default: true
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(2 + 8 / 12, "feet"),
  22218. weight: math.unit(22, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/evelyn/front.svg",
  22222. extra: 208 / 180
  22223. }
  22224. },
  22225. },
  22226. [
  22227. {
  22228. name: "Normal",
  22229. height: math.unit(2 + 8 / 12, "feet"),
  22230. default: true
  22231. },
  22232. ]
  22233. ))
  22234. characterMakers.push(() => makeCharacter(
  22235. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  22236. {
  22237. front: {
  22238. height: math.unit(5 + 9 / 12, "feet"),
  22239. weight: math.unit(139, "lb"),
  22240. name: "Front",
  22241. image: {
  22242. source: "./media/characters/inca/front.svg",
  22243. extra: 294 / 291,
  22244. bottom: 0.03
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Normal",
  22251. height: math.unit(5 + 9 / 12, "feet"),
  22252. default: true
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(6 + 3 / 12, "feet"),
  22261. weight: math.unit(185, "lb"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/mera/front.svg",
  22265. extra: 291 / 277,
  22266. bottom: 0.03
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Normal",
  22273. height: math.unit(6 + 3 / 12, "feet"),
  22274. default: true
  22275. },
  22276. ]
  22277. ))
  22278. characterMakers.push(() => makeCharacter(
  22279. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22280. {
  22281. front: {
  22282. height: math.unit(6 + 7 / 12, "feet"),
  22283. weight: math.unit(160, "lb"),
  22284. name: "Front",
  22285. image: {
  22286. source: "./media/characters/ceres/front.svg",
  22287. extra: 1023 / 950,
  22288. bottom: 0.027
  22289. }
  22290. },
  22291. back: {
  22292. height: math.unit(6 + 7 / 12, "feet"),
  22293. weight: math.unit(160, "lb"),
  22294. name: "Back",
  22295. image: {
  22296. source: "./media/characters/ceres/back.svg",
  22297. extra: 1023 / 950
  22298. }
  22299. },
  22300. },
  22301. [
  22302. {
  22303. name: "Normal",
  22304. height: math.unit(6 + 7 / 12, "feet"),
  22305. default: true
  22306. },
  22307. ]
  22308. ))
  22309. characterMakers.push(() => makeCharacter(
  22310. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22311. {
  22312. front: {
  22313. height: math.unit(5 + 10 / 12, "feet"),
  22314. weight: math.unit(150, "lb"),
  22315. name: "Front",
  22316. image: {
  22317. source: "./media/characters/kris/front.svg",
  22318. extra: 885 / 803,
  22319. bottom: 0.03
  22320. }
  22321. },
  22322. },
  22323. [
  22324. {
  22325. name: "Normal",
  22326. height: math.unit(5 + 10 / 12, "feet"),
  22327. default: true
  22328. },
  22329. ]
  22330. ))
  22331. characterMakers.push(() => makeCharacter(
  22332. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22333. {
  22334. dragon_front: {
  22335. height: math.unit(5, "feet"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/taluthus/dragon-front.svg",
  22339. extra: 1203/1098,
  22340. bottom: 46/1249
  22341. },
  22342. form: "dragon",
  22343. default: true
  22344. },
  22345. dragon_maw: {
  22346. height: math.unit(2.35, "feet"),
  22347. name: "Maw",
  22348. image: {
  22349. source: "./media/characters/taluthus/dragon-maw.svg"
  22350. },
  22351. form: "dragon",
  22352. },
  22353. kitsune_front: {
  22354. height: math.unit(7, "feet"),
  22355. name: "Front",
  22356. image: {
  22357. source: "./media/characters/taluthus/kitsune-front.svg",
  22358. extra: 900/841,
  22359. bottom: 65/965
  22360. },
  22361. form: "kitsune",
  22362. default: true
  22363. },
  22364. },
  22365. [
  22366. {
  22367. name: "Normal",
  22368. height: math.unit(5, "feet"),
  22369. form: "dragon",
  22370. default: true,
  22371. },
  22372. {
  22373. name: "Normal",
  22374. height: math.unit(7, "feet"),
  22375. form: "kitsune",
  22376. default: true
  22377. },
  22378. {
  22379. name: "Macro",
  22380. height: math.unit(300, "feet"),
  22381. allForms: true
  22382. },
  22383. ],
  22384. {
  22385. "dragon": {
  22386. name: "Dragon",
  22387. default: true
  22388. },
  22389. "kitsune": {
  22390. name: "Kitsune",
  22391. },
  22392. }
  22393. ))
  22394. characterMakers.push(() => makeCharacter(
  22395. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22396. {
  22397. front: {
  22398. height: math.unit(5 + 9 / 12, "feet"),
  22399. weight: math.unit(145, "lb"),
  22400. name: "Front",
  22401. image: {
  22402. source: "./media/characters/dawn/front.svg",
  22403. extra: 2094 / 2016,
  22404. bottom: 0.025
  22405. }
  22406. },
  22407. back: {
  22408. height: math.unit(5 + 9 / 12, "feet"),
  22409. weight: math.unit(160, "lb"),
  22410. name: "Back",
  22411. image: {
  22412. source: "./media/characters/dawn/back.svg",
  22413. extra: 2112 / 2080,
  22414. bottom: 0.005
  22415. }
  22416. },
  22417. },
  22418. [
  22419. {
  22420. name: "Normal",
  22421. height: math.unit(6 + 7 / 12, "feet"),
  22422. default: true
  22423. },
  22424. ]
  22425. ))
  22426. characterMakers.push(() => makeCharacter(
  22427. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22428. {
  22429. anthro: {
  22430. height: math.unit(8 + 3 / 12, "feet"),
  22431. weight: math.unit(450, "lb"),
  22432. name: "Anthro",
  22433. image: {
  22434. source: "./media/characters/arador/anthro.svg",
  22435. extra: 1835 / 1718,
  22436. bottom: 0.025
  22437. }
  22438. },
  22439. feral: {
  22440. height: math.unit(4, "feet"),
  22441. weight: math.unit(200, "lb"),
  22442. name: "Feral",
  22443. image: {
  22444. source: "./media/characters/arador/feral.svg",
  22445. extra: 1683 / 1514,
  22446. bottom: 0.07
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Normal",
  22453. height: math.unit(8 + 3 / 12, "feet")
  22454. },
  22455. {
  22456. name: "Macro",
  22457. height: math.unit(82.5, "feet"),
  22458. default: true
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22464. {
  22465. front: {
  22466. height: math.unit(5 + 10 / 12, "feet"),
  22467. weight: math.unit(125, "lb"),
  22468. name: "Front",
  22469. image: {
  22470. source: "./media/characters/dharsi/front.svg",
  22471. extra: 716 / 630,
  22472. bottom: 0.035
  22473. }
  22474. },
  22475. },
  22476. [
  22477. {
  22478. name: "Nano",
  22479. height: math.unit(100, "nm")
  22480. },
  22481. {
  22482. name: "Micro",
  22483. height: math.unit(2, "inches")
  22484. },
  22485. {
  22486. name: "Normal",
  22487. height: math.unit(5 + 10 / 12, "feet"),
  22488. default: true
  22489. },
  22490. {
  22491. name: "Macro",
  22492. height: math.unit(1000, "feet")
  22493. },
  22494. {
  22495. name: "Megamacro",
  22496. height: math.unit(10, "miles")
  22497. },
  22498. {
  22499. name: "Gigamacro",
  22500. height: math.unit(3000, "miles")
  22501. },
  22502. {
  22503. name: "Teramacro",
  22504. height: math.unit(500000, "miles")
  22505. },
  22506. {
  22507. name: "Teramacro+",
  22508. height: math.unit(30, "galaxies")
  22509. },
  22510. ]
  22511. ))
  22512. characterMakers.push(() => makeCharacter(
  22513. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22514. {
  22515. front: {
  22516. height: math.unit(6, "feet"),
  22517. weight: math.unit(150, "lb"),
  22518. name: "Front",
  22519. image: {
  22520. source: "./media/characters/deathy/front.svg",
  22521. extra: 1552 / 1463,
  22522. bottom: 0.025
  22523. }
  22524. },
  22525. side: {
  22526. height: math.unit(6, "feet"),
  22527. weight: math.unit(150, "lb"),
  22528. name: "Side",
  22529. image: {
  22530. source: "./media/characters/deathy/side.svg",
  22531. extra: 1604 / 1455,
  22532. bottom: 0.025
  22533. }
  22534. },
  22535. back: {
  22536. height: math.unit(6, "feet"),
  22537. weight: math.unit(150, "lb"),
  22538. name: "Back",
  22539. image: {
  22540. source: "./media/characters/deathy/back.svg",
  22541. extra: 1580 / 1463,
  22542. bottom: 0.005
  22543. }
  22544. },
  22545. },
  22546. [
  22547. {
  22548. name: "Micro",
  22549. height: math.unit(5, "millimeters")
  22550. },
  22551. {
  22552. name: "Normal",
  22553. height: math.unit(6 + 5 / 12, "feet"),
  22554. default: true
  22555. },
  22556. ]
  22557. ))
  22558. characterMakers.push(() => makeCharacter(
  22559. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22560. {
  22561. front: {
  22562. height: math.unit(16, "feet"),
  22563. weight: math.unit(4000, "lb"),
  22564. name: "Front",
  22565. image: {
  22566. source: "./media/characters/juniper/front.svg",
  22567. bottom: 0.04
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Normal",
  22574. height: math.unit(16, "feet"),
  22575. default: true
  22576. },
  22577. ]
  22578. ))
  22579. characterMakers.push(() => makeCharacter(
  22580. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22581. {
  22582. front: {
  22583. height: math.unit(6, "feet"),
  22584. weight: math.unit(150, "lb"),
  22585. name: "Front",
  22586. image: {
  22587. source: "./media/characters/hipster/front.svg",
  22588. extra: 1312 / 1209,
  22589. bottom: 0.025
  22590. }
  22591. },
  22592. back: {
  22593. height: math.unit(6, "feet"),
  22594. weight: math.unit(150, "lb"),
  22595. name: "Back",
  22596. image: {
  22597. source: "./media/characters/hipster/back.svg",
  22598. extra: 1281 / 1196,
  22599. bottom: 0.01
  22600. }
  22601. },
  22602. },
  22603. [
  22604. {
  22605. name: "Micro",
  22606. height: math.unit(1, "mm")
  22607. },
  22608. {
  22609. name: "Normal",
  22610. height: math.unit(4, "inches"),
  22611. default: true
  22612. },
  22613. {
  22614. name: "Macro",
  22615. height: math.unit(500, "feet")
  22616. },
  22617. {
  22618. name: "Megamacro",
  22619. height: math.unit(1000, "miles")
  22620. },
  22621. ]
  22622. ))
  22623. characterMakers.push(() => makeCharacter(
  22624. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22625. {
  22626. front: {
  22627. height: math.unit(6, "feet"),
  22628. weight: math.unit(150, "lb"),
  22629. name: "Front",
  22630. image: {
  22631. source: "./media/characters/tendirmuldr/front.svg",
  22632. extra: 1878 / 1772,
  22633. bottom: 0.015
  22634. }
  22635. },
  22636. },
  22637. [
  22638. {
  22639. name: "Megamacro",
  22640. height: math.unit(1500, "miles"),
  22641. default: true
  22642. },
  22643. ]
  22644. ))
  22645. characterMakers.push(() => makeCharacter(
  22646. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22647. {
  22648. front: {
  22649. height: math.unit(14, "feet"),
  22650. weight: math.unit(12000, "lb"),
  22651. name: "Front",
  22652. image: {
  22653. source: "./media/characters/mort/front.svg",
  22654. extra: 365 / 318,
  22655. bottom: 0.01
  22656. }
  22657. },
  22658. side: {
  22659. height: math.unit(14, "feet"),
  22660. weight: math.unit(12000, "lb"),
  22661. name: "Side",
  22662. image: {
  22663. source: "./media/characters/mort/side.svg",
  22664. extra: 365 / 318,
  22665. bottom: 0.052
  22666. },
  22667. default: true
  22668. },
  22669. back: {
  22670. height: math.unit(14, "feet"),
  22671. weight: math.unit(12000, "lb"),
  22672. name: "Back",
  22673. image: {
  22674. source: "./media/characters/mort/back.svg",
  22675. extra: 371 / 332,
  22676. bottom: 0.18
  22677. }
  22678. },
  22679. },
  22680. [
  22681. {
  22682. name: "Normal",
  22683. height: math.unit(14, "feet"),
  22684. default: true
  22685. },
  22686. ]
  22687. ))
  22688. characterMakers.push(() => makeCharacter(
  22689. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22690. {
  22691. front: {
  22692. height: math.unit(8, "feet"),
  22693. weight: math.unit(1, "ton"),
  22694. name: "Front",
  22695. image: {
  22696. source: "./media/characters/lycoa/front.svg",
  22697. extra: 1836/1728,
  22698. bottom: 81/1917
  22699. }
  22700. },
  22701. back: {
  22702. height: math.unit(8, "feet"),
  22703. weight: math.unit(1, "ton"),
  22704. name: "Back",
  22705. image: {
  22706. source: "./media/characters/lycoa/back.svg",
  22707. extra: 1785/1720,
  22708. bottom: 91/1876
  22709. }
  22710. },
  22711. head: {
  22712. height: math.unit(1.6243, "feet"),
  22713. name: "Head",
  22714. image: {
  22715. source: "./media/characters/lycoa/head.svg",
  22716. extra: 1011/782,
  22717. bottom: 0/1011
  22718. }
  22719. },
  22720. tailmaw: {
  22721. height: math.unit(1.9, "feet"),
  22722. name: "Tailmaw",
  22723. image: {
  22724. source: "./media/characters/lycoa/tailmaw.svg"
  22725. }
  22726. },
  22727. tentacles: {
  22728. height: math.unit(2.1, "feet"),
  22729. name: "Tentacles",
  22730. image: {
  22731. source: "./media/characters/lycoa/tentacles.svg"
  22732. }
  22733. },
  22734. dick: {
  22735. height: math.unit(1.73, "feet"),
  22736. name: "Dick",
  22737. image: {
  22738. source: "./media/characters/lycoa/dick.svg"
  22739. }
  22740. },
  22741. },
  22742. [
  22743. {
  22744. name: "Normal",
  22745. height: math.unit(8, "feet"),
  22746. default: true
  22747. },
  22748. {
  22749. name: "Macro",
  22750. height: math.unit(30, "feet")
  22751. },
  22752. ]
  22753. ))
  22754. characterMakers.push(() => makeCharacter(
  22755. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22756. {
  22757. front: {
  22758. height: math.unit(4 + 2 / 12, "feet"),
  22759. weight: math.unit(70, "lb"),
  22760. name: "Front",
  22761. image: {
  22762. source: "./media/characters/naldara/front.svg",
  22763. extra: 1664/1387,
  22764. bottom: 81/1745
  22765. },
  22766. form: "anthro",
  22767. default: true
  22768. },
  22769. naga: {
  22770. height: math.unit(20, "feet"),
  22771. weight: math.unit(15000, "kg"),
  22772. name: "Front",
  22773. image: {
  22774. source: "./media/characters/naldara/naga.svg",
  22775. extra: 1590/1396,
  22776. bottom: 285/1875
  22777. },
  22778. form: "naga",
  22779. default: true
  22780. },
  22781. },
  22782. [
  22783. {
  22784. name: "Normal",
  22785. height: math.unit(4 + 2 / 12, "feet"),
  22786. form: "anthro",
  22787. default: true
  22788. },
  22789. {
  22790. name: "Normal",
  22791. height: math.unit(20, "feet"),
  22792. form: "naga",
  22793. default: true
  22794. },
  22795. ],
  22796. {
  22797. "anthro": {
  22798. name: "Anthro",
  22799. default: true
  22800. },
  22801. "naga": {
  22802. name: "Naga"
  22803. }
  22804. }
  22805. ))
  22806. characterMakers.push(() => makeCharacter(
  22807. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22808. {
  22809. front: {
  22810. height: math.unit(13 + 7 / 12, "feet"),
  22811. weight: math.unit(1500, "lb"),
  22812. name: "Front",
  22813. image: {
  22814. source: "./media/characters/briar/front.svg",
  22815. extra: 1223/1157,
  22816. bottom: 123/1346
  22817. }
  22818. },
  22819. },
  22820. [
  22821. {
  22822. name: "Normal",
  22823. height: math.unit(13 + 7 / 12, "feet"),
  22824. default: true
  22825. },
  22826. ]
  22827. ))
  22828. characterMakers.push(() => makeCharacter(
  22829. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22830. {
  22831. side: {
  22832. height: math.unit(16, "feet"),
  22833. weight: math.unit(500, "lb"),
  22834. name: "Side",
  22835. image: {
  22836. source: "./media/characters/vanguard/side.svg",
  22837. extra: 1022/914,
  22838. bottom: 30/1052
  22839. }
  22840. },
  22841. sideAlt: {
  22842. height: math.unit(10, "feet"),
  22843. weight: math.unit(500, "lb"),
  22844. name: "Side (Alt)",
  22845. image: {
  22846. source: "./media/characters/vanguard/side-alt.svg",
  22847. extra: 502 / 425,
  22848. bottom: 0.087
  22849. }
  22850. },
  22851. },
  22852. [
  22853. {
  22854. name: "Normal",
  22855. height: math.unit(17.71, "feet"),
  22856. default: true
  22857. },
  22858. ]
  22859. ))
  22860. characterMakers.push(() => makeCharacter(
  22861. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22862. {
  22863. front: {
  22864. height: math.unit(7.5, "feet"),
  22865. weight: math.unit(2, "lb"),
  22866. name: "Front",
  22867. image: {
  22868. source: "./media/characters/artemis/work-safe-front.svg",
  22869. extra: 1192 / 1075,
  22870. bottom: 0.07
  22871. },
  22872. form: "work-safe",
  22873. default: true
  22874. },
  22875. frontNsfw: {
  22876. height: math.unit(7.5, "feet"),
  22877. weight: math.unit(2, "lb"),
  22878. name: "Front",
  22879. image: {
  22880. source: "./media/characters/artemis/calibrating-front.svg",
  22881. extra: 1192 / 1075,
  22882. bottom: 0.07
  22883. },
  22884. form: "calibrating",
  22885. default: true
  22886. },
  22887. frontNsfwer: {
  22888. height: math.unit(7.5, "feet"),
  22889. weight: math.unit(2, "lb"),
  22890. name: "Front",
  22891. image: {
  22892. source: "./media/characters/artemis/oversize-load-front.svg",
  22893. extra: 1192 / 1075,
  22894. bottom: 0.07
  22895. },
  22896. form: "oversize-load",
  22897. default: true
  22898. },
  22899. side: {
  22900. height: math.unit(7.5, "feet"),
  22901. weight: math.unit(2, "lb"),
  22902. name: "Side",
  22903. image: {
  22904. source: "./media/characters/artemis/work-safe-side.svg",
  22905. extra: 1192 / 1075,
  22906. bottom: 0.07
  22907. },
  22908. form: "work-safe"
  22909. },
  22910. sideNsfw: {
  22911. height: math.unit(7.5, "feet"),
  22912. weight: math.unit(2, "lb"),
  22913. name: "Side",
  22914. image: {
  22915. source: "./media/characters/artemis/calibrating-side.svg",
  22916. extra: 1192 / 1075,
  22917. bottom: 0.07
  22918. },
  22919. form: "calibrating"
  22920. },
  22921. sideNsfwer: {
  22922. height: math.unit(7.5, "feet"),
  22923. weight: math.unit(2, "lb"),
  22924. name: "Side",
  22925. image: {
  22926. source: "./media/characters/artemis/oversize-load-side.svg",
  22927. extra: 1192 / 1075,
  22928. bottom: 0.07
  22929. },
  22930. form: "oversize-load"
  22931. },
  22932. maw: {
  22933. height: math.unit(1.1, "feet"),
  22934. name: "Maw",
  22935. image: {
  22936. source: "./media/characters/artemis/maw.svg"
  22937. },
  22938. form: "work-safe"
  22939. },
  22940. stomach: {
  22941. height: math.unit(0.95, "feet"),
  22942. name: "Stomach",
  22943. image: {
  22944. source: "./media/characters/artemis/stomach.svg"
  22945. },
  22946. form: "work-safe"
  22947. },
  22948. dickCanine: {
  22949. height: math.unit(1, "feet"),
  22950. name: "Dick (Canine)",
  22951. image: {
  22952. source: "./media/characters/artemis/dick-canine.svg"
  22953. },
  22954. form: "calibrating"
  22955. },
  22956. dickEquine: {
  22957. height: math.unit(0.85, "feet"),
  22958. name: "Dick (Equine)",
  22959. image: {
  22960. source: "./media/characters/artemis/dick-equine.svg"
  22961. },
  22962. form: "calibrating"
  22963. },
  22964. dickExotic: {
  22965. height: math.unit(0.85, "feet"),
  22966. name: "Dick (Exotic)",
  22967. image: {
  22968. source: "./media/characters/artemis/dick-exotic.svg"
  22969. },
  22970. form: "calibrating"
  22971. },
  22972. dickCanineBigger: {
  22973. height: math.unit(1 * 1.33, "feet"),
  22974. name: "Dick (Canine)",
  22975. image: {
  22976. source: "./media/characters/artemis/dick-canine.svg"
  22977. },
  22978. form: "oversize-load"
  22979. },
  22980. dickEquineBigger: {
  22981. height: math.unit(0.85 * 1.33, "feet"),
  22982. name: "Dick (Equine)",
  22983. image: {
  22984. source: "./media/characters/artemis/dick-equine.svg"
  22985. },
  22986. form: "oversize-load"
  22987. },
  22988. dickExoticBigger: {
  22989. height: math.unit(0.85 * 1.33, "feet"),
  22990. name: "Dick (Exotic)",
  22991. image: {
  22992. source: "./media/characters/artemis/dick-exotic.svg"
  22993. },
  22994. form: "oversize-load"
  22995. },
  22996. },
  22997. [
  22998. {
  22999. name: "Normal",
  23000. height: math.unit(7.5, "feet"),
  23001. form: "work-safe",
  23002. default: true
  23003. },
  23004. {
  23005. name: "Normal",
  23006. height: math.unit(7.5, "feet"),
  23007. form: "calibrating",
  23008. default: true
  23009. },
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(7.5, "feet"),
  23013. form: "oversize-load",
  23014. default: true
  23015. },
  23016. {
  23017. name: "Enlarged",
  23018. height: math.unit(12, "feet"),
  23019. form: "work-safe",
  23020. },
  23021. {
  23022. name: "Enlarged",
  23023. height: math.unit(12, "feet"),
  23024. form: "calibrating",
  23025. },
  23026. {
  23027. name: "Enlarged",
  23028. height: math.unit(12, "feet"),
  23029. form: "oversize-load",
  23030. },
  23031. ],
  23032. {
  23033. "work-safe": {
  23034. name: "Work-Safe",
  23035. default: true
  23036. },
  23037. "calibrating": {
  23038. name: "Calibrating"
  23039. },
  23040. "oversize-load": {
  23041. name: "Oversize Load"
  23042. }
  23043. }
  23044. ))
  23045. characterMakers.push(() => makeCharacter(
  23046. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  23047. {
  23048. front: {
  23049. height: math.unit(5 + 3 / 12, "feet"),
  23050. weight: math.unit(160, "lb"),
  23051. name: "Front",
  23052. image: {
  23053. source: "./media/characters/kira/front.svg",
  23054. extra: 906 / 786,
  23055. bottom: 0.01
  23056. }
  23057. },
  23058. back: {
  23059. height: math.unit(5 + 3 / 12, "feet"),
  23060. weight: math.unit(160, "lb"),
  23061. name: "Back",
  23062. image: {
  23063. source: "./media/characters/kira/back.svg",
  23064. extra: 882 / 757,
  23065. bottom: 0.005
  23066. }
  23067. },
  23068. frontDressed: {
  23069. height: math.unit(5 + 3 / 12, "feet"),
  23070. weight: math.unit(160, "lb"),
  23071. name: "Front (Dressed)",
  23072. image: {
  23073. source: "./media/characters/kira/front-dressed.svg",
  23074. extra: 906 / 786,
  23075. bottom: 0.01
  23076. }
  23077. },
  23078. beans: {
  23079. height: math.unit(0.92, "feet"),
  23080. name: "Beans",
  23081. image: {
  23082. source: "./media/characters/kira/beans.svg"
  23083. }
  23084. },
  23085. },
  23086. [
  23087. {
  23088. name: "Normal",
  23089. height: math.unit(5 + 3 / 12, "feet"),
  23090. default: true
  23091. },
  23092. ]
  23093. ))
  23094. characterMakers.push(() => makeCharacter(
  23095. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  23096. {
  23097. front: {
  23098. height: math.unit(5 + 4 / 12, "feet"),
  23099. weight: math.unit(145, "lb"),
  23100. name: "Front",
  23101. image: {
  23102. source: "./media/characters/scramble/front.svg",
  23103. extra: 763 / 727,
  23104. bottom: 0.05
  23105. }
  23106. },
  23107. back: {
  23108. height: math.unit(5 + 4 / 12, "feet"),
  23109. weight: math.unit(145, "lb"),
  23110. name: "Back",
  23111. image: {
  23112. source: "./media/characters/scramble/back.svg",
  23113. extra: 826 / 737,
  23114. bottom: 0.002
  23115. }
  23116. },
  23117. },
  23118. [
  23119. {
  23120. name: "Normal",
  23121. height: math.unit(5 + 4 / 12, "feet"),
  23122. default: true
  23123. },
  23124. ]
  23125. ))
  23126. characterMakers.push(() => makeCharacter(
  23127. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  23128. {
  23129. side: {
  23130. height: math.unit(6 + 2 / 12, "feet"),
  23131. weight: math.unit(190, "lb"),
  23132. name: "Side",
  23133. image: {
  23134. source: "./media/characters/biscuit/side.svg",
  23135. extra: 858 / 791,
  23136. bottom: 0.044
  23137. }
  23138. },
  23139. },
  23140. [
  23141. {
  23142. name: "Normal",
  23143. height: math.unit(6 + 2 / 12, "feet"),
  23144. default: true
  23145. },
  23146. ]
  23147. ))
  23148. characterMakers.push(() => makeCharacter(
  23149. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  23150. {
  23151. front: {
  23152. height: math.unit(5 + 2 / 12, "feet"),
  23153. weight: math.unit(120, "lb"),
  23154. name: "Front",
  23155. image: {
  23156. source: "./media/characters/poffin/front.svg",
  23157. extra: 786 / 680,
  23158. bottom: 0.005
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Normal",
  23165. height: math.unit(5 + 2 / 12, "feet"),
  23166. default: true
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  23172. {
  23173. front: {
  23174. height: math.unit(6 + 3 / 12, "feet"),
  23175. weight: math.unit(519, "lb"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/dhari/front.svg",
  23179. extra: 1048 / 946,
  23180. bottom: 0.015
  23181. }
  23182. },
  23183. back: {
  23184. height: math.unit(6 + 3 / 12, "feet"),
  23185. weight: math.unit(519, "lb"),
  23186. name: "Back",
  23187. image: {
  23188. source: "./media/characters/dhari/back.svg",
  23189. extra: 1048 / 931,
  23190. bottom: 0.005
  23191. }
  23192. },
  23193. frontDressed: {
  23194. height: math.unit(6 + 3 / 12, "feet"),
  23195. weight: math.unit(519, "lb"),
  23196. name: "Front (Dressed)",
  23197. image: {
  23198. source: "./media/characters/dhari/front-dressed.svg",
  23199. extra: 1713 / 1546,
  23200. bottom: 0.02
  23201. }
  23202. },
  23203. backDressed: {
  23204. height: math.unit(6 + 3 / 12, "feet"),
  23205. weight: math.unit(519, "lb"),
  23206. name: "Back (Dressed)",
  23207. image: {
  23208. source: "./media/characters/dhari/back-dressed.svg",
  23209. extra: 1699 / 1537,
  23210. bottom: 0.01
  23211. }
  23212. },
  23213. maw: {
  23214. height: math.unit(0.95, "feet"),
  23215. name: "Maw",
  23216. image: {
  23217. source: "./media/characters/dhari/maw.svg"
  23218. }
  23219. },
  23220. wereFront: {
  23221. height: math.unit(12 + 8 / 12, "feet"),
  23222. weight: math.unit(4000, "lb"),
  23223. name: "Front (Were)",
  23224. image: {
  23225. source: "./media/characters/dhari/were-front.svg",
  23226. extra: 1065 / 969,
  23227. bottom: 0.015
  23228. }
  23229. },
  23230. wereBack: {
  23231. height: math.unit(12 + 8 / 12, "feet"),
  23232. weight: math.unit(4000, "lb"),
  23233. name: "Back (Were)",
  23234. image: {
  23235. source: "./media/characters/dhari/were-back.svg",
  23236. extra: 1065 / 969,
  23237. bottom: 0.012
  23238. }
  23239. },
  23240. wereMaw: {
  23241. height: math.unit(0.625, "meters"),
  23242. name: "Maw (Were)",
  23243. image: {
  23244. source: "./media/characters/dhari/were-maw.svg"
  23245. }
  23246. },
  23247. },
  23248. [
  23249. {
  23250. name: "Normal",
  23251. height: math.unit(6 + 3 / 12, "feet"),
  23252. default: true
  23253. },
  23254. ]
  23255. ))
  23256. characterMakers.push(() => makeCharacter(
  23257. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  23258. {
  23259. anthro: {
  23260. height: math.unit(5 + 7 / 12, "feet"),
  23261. weight: math.unit(175, "lb"),
  23262. name: "Anthro",
  23263. image: {
  23264. source: "./media/characters/rena-dyne/anthro.svg",
  23265. extra: 1849 / 1785,
  23266. bottom: 0.005
  23267. }
  23268. },
  23269. taur: {
  23270. height: math.unit(15 + 6 / 12, "feet"),
  23271. weight: math.unit(8000, "lb"),
  23272. name: "Taur",
  23273. image: {
  23274. source: "./media/characters/rena-dyne/taur.svg",
  23275. extra: 2315 / 2234,
  23276. bottom: 0.033
  23277. }
  23278. },
  23279. },
  23280. [
  23281. {
  23282. name: "Normal",
  23283. height: math.unit(5 + 7 / 12, "feet"),
  23284. default: true
  23285. },
  23286. ]
  23287. ))
  23288. characterMakers.push(() => makeCharacter(
  23289. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23290. {
  23291. front: {
  23292. height: math.unit(8, "feet"),
  23293. weight: math.unit(600, "lb"),
  23294. name: "Front",
  23295. image: {
  23296. source: "./media/characters/weremeep/front.svg",
  23297. extra: 970/849,
  23298. bottom: 7/977
  23299. }
  23300. },
  23301. },
  23302. [
  23303. {
  23304. name: "Normal",
  23305. height: math.unit(8, "feet"),
  23306. default: true
  23307. },
  23308. {
  23309. name: "Lorg",
  23310. height: math.unit(12, "feet")
  23311. },
  23312. {
  23313. name: "Oh Lawd She Comin'",
  23314. height: math.unit(20, "feet")
  23315. },
  23316. ]
  23317. ))
  23318. characterMakers.push(() => makeCharacter(
  23319. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23320. {
  23321. front: {
  23322. height: math.unit(4, "feet"),
  23323. weight: math.unit(90, "lb"),
  23324. name: "Front",
  23325. image: {
  23326. source: "./media/characters/reza/front.svg",
  23327. extra: 1183 / 1111,
  23328. bottom: 0.017
  23329. }
  23330. },
  23331. back: {
  23332. height: math.unit(4, "feet"),
  23333. weight: math.unit(90, "lb"),
  23334. name: "Back",
  23335. image: {
  23336. source: "./media/characters/reza/back.svg",
  23337. extra: 1183 / 1111,
  23338. bottom: 0.01
  23339. }
  23340. },
  23341. drake: {
  23342. height: math.unit(30, "feet"),
  23343. weight: math.unit(246960, "lb"),
  23344. name: "Drake",
  23345. image: {
  23346. source: "./media/characters/reza/drake.svg",
  23347. extra: 2350 / 2024,
  23348. bottom: 60.7 / 2403
  23349. }
  23350. },
  23351. },
  23352. [
  23353. {
  23354. name: "Normal",
  23355. height: math.unit(4, "feet"),
  23356. default: true
  23357. },
  23358. ]
  23359. ))
  23360. characterMakers.push(() => makeCharacter(
  23361. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23362. {
  23363. side: {
  23364. height: math.unit(15, "feet"),
  23365. weight: math.unit(14, "tons"),
  23366. name: "Side",
  23367. image: {
  23368. source: "./media/characters/athea/side.svg",
  23369. extra: 960 / 540,
  23370. bottom: 0.003
  23371. }
  23372. },
  23373. sitting: {
  23374. height: math.unit(6 * 2.85, "feet"),
  23375. weight: math.unit(14, "tons"),
  23376. name: "Sitting",
  23377. image: {
  23378. source: "./media/characters/athea/sitting.svg",
  23379. extra: 621 / 581,
  23380. bottom: 0.075
  23381. }
  23382. },
  23383. maw: {
  23384. height: math.unit(7.59498031496063, "feet"),
  23385. name: "Maw",
  23386. image: {
  23387. source: "./media/characters/athea/maw.svg"
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Lap Cat",
  23394. height: math.unit(2.5, "feet")
  23395. },
  23396. {
  23397. name: "Minimacro",
  23398. height: math.unit(15, "feet"),
  23399. default: true
  23400. },
  23401. {
  23402. name: "Macro",
  23403. height: math.unit(120, "feet")
  23404. },
  23405. {
  23406. name: "Macro+",
  23407. height: math.unit(640, "feet")
  23408. },
  23409. {
  23410. name: "Colossus",
  23411. height: math.unit(2.2, "miles")
  23412. },
  23413. ]
  23414. ))
  23415. characterMakers.push(() => makeCharacter(
  23416. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23417. {
  23418. front: {
  23419. height: math.unit(8 + 8 / 12, "feet"),
  23420. weight: math.unit(130, "kg"),
  23421. name: "Front",
  23422. image: {
  23423. source: "./media/characters/seroko/front.svg",
  23424. extra: 1385 / 1280,
  23425. bottom: 0.025
  23426. }
  23427. },
  23428. back: {
  23429. height: math.unit(8 + 8 / 12, "feet"),
  23430. weight: math.unit(130, "kg"),
  23431. name: "Back",
  23432. image: {
  23433. source: "./media/characters/seroko/back.svg",
  23434. extra: 1369 / 1238,
  23435. bottom: 0.018
  23436. }
  23437. },
  23438. frontDressed: {
  23439. height: math.unit(8 + 8 / 12, "feet"),
  23440. weight: math.unit(130, "kg"),
  23441. name: "Front (Dressed)",
  23442. image: {
  23443. source: "./media/characters/seroko/front-dressed.svg",
  23444. extra: 1366 / 1275,
  23445. bottom: 0.03
  23446. }
  23447. },
  23448. },
  23449. [
  23450. {
  23451. name: "Normal",
  23452. height: math.unit(8 + 8 / 12, "feet"),
  23453. default: true
  23454. },
  23455. ]
  23456. ))
  23457. characterMakers.push(() => makeCharacter(
  23458. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23459. {
  23460. front: {
  23461. height: math.unit(5.5, "feet"),
  23462. weight: math.unit(160, "lb"),
  23463. name: "Front",
  23464. image: {
  23465. source: "./media/characters/quatzi/front.svg",
  23466. extra: 2346 / 2242,
  23467. bottom: 0.015
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Normal",
  23474. height: math.unit(5.5, "feet"),
  23475. default: true
  23476. },
  23477. {
  23478. name: "Big",
  23479. height: math.unit(7.7, "feet")
  23480. },
  23481. ]
  23482. ))
  23483. characterMakers.push(() => makeCharacter(
  23484. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23485. {
  23486. front: {
  23487. height: math.unit(5 + 11 / 12, "feet"),
  23488. weight: math.unit(180, "lb"),
  23489. name: "Front",
  23490. image: {
  23491. source: "./media/characters/sen/front.svg",
  23492. extra: 1321 / 1254,
  23493. bottom: 0.015
  23494. }
  23495. },
  23496. side: {
  23497. height: math.unit(5 + 11 / 12, "feet"),
  23498. weight: math.unit(180, "lb"),
  23499. name: "Side",
  23500. image: {
  23501. source: "./media/characters/sen/side.svg",
  23502. extra: 1321 / 1254,
  23503. bottom: 0.007
  23504. }
  23505. },
  23506. back: {
  23507. height: math.unit(5 + 11 / 12, "feet"),
  23508. weight: math.unit(180, "lb"),
  23509. name: "Back",
  23510. image: {
  23511. source: "./media/characters/sen/back.svg",
  23512. extra: 1321 / 1254
  23513. }
  23514. },
  23515. },
  23516. [
  23517. {
  23518. name: "Normal",
  23519. height: math.unit(5 + 11 / 12, "feet"),
  23520. default: true
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23526. {
  23527. front: {
  23528. height: math.unit(166.6, "cm"),
  23529. weight: math.unit(66.6, "kg"),
  23530. name: "Front",
  23531. image: {
  23532. source: "./media/characters/fruity/front.svg",
  23533. extra: 1510 / 1386,
  23534. bottom: 0.04
  23535. }
  23536. },
  23537. back: {
  23538. height: math.unit(166.6, "cm"),
  23539. weight: math.unit(66.6, "lb"),
  23540. name: "Back",
  23541. image: {
  23542. source: "./media/characters/fruity/back.svg",
  23543. extra: 1563 / 1435,
  23544. bottom: 0.005
  23545. }
  23546. },
  23547. },
  23548. [
  23549. {
  23550. name: "Normal",
  23551. height: math.unit(166.6, "cm"),
  23552. default: true
  23553. },
  23554. {
  23555. name: "Demonic",
  23556. height: math.unit(166.6, "feet")
  23557. },
  23558. ]
  23559. ))
  23560. characterMakers.push(() => makeCharacter(
  23561. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23562. {
  23563. side: {
  23564. height: math.unit(10, "feet"),
  23565. weight: math.unit(500, "lb"),
  23566. name: "Side",
  23567. image: {
  23568. source: "./media/characters/zost/side.svg",
  23569. extra: 2870/2533,
  23570. bottom: 252/3122
  23571. }
  23572. },
  23573. mawFront: {
  23574. height: math.unit(1.08, "meters"),
  23575. name: "Maw (Front)",
  23576. image: {
  23577. source: "./media/characters/zost/maw-front.svg"
  23578. }
  23579. },
  23580. mawSide: {
  23581. height: math.unit(2.66, "feet"),
  23582. name: "Maw (Side)",
  23583. image: {
  23584. source: "./media/characters/zost/maw-side.svg"
  23585. }
  23586. },
  23587. wingspan: {
  23588. height: math.unit(7.4, "feet"),
  23589. name: "Wingspan",
  23590. image: {
  23591. source: "./media/characters/zost/wingspan.svg"
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Normal",
  23598. height: math.unit(10, "feet"),
  23599. default: true
  23600. },
  23601. ]
  23602. ))
  23603. characterMakers.push(() => makeCharacter(
  23604. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23605. {
  23606. front: {
  23607. height: math.unit(5 + 4 / 12, "feet"),
  23608. weight: math.unit(120, "lb"),
  23609. name: "Front",
  23610. image: {
  23611. source: "./media/characters/luci/front.svg",
  23612. extra: 1985 / 1884,
  23613. bottom: 0.04
  23614. }
  23615. },
  23616. back: {
  23617. height: math.unit(5 + 4 / 12, "feet"),
  23618. weight: math.unit(120, "lb"),
  23619. name: "Back",
  23620. image: {
  23621. source: "./media/characters/luci/back.svg",
  23622. extra: 1892 / 1791,
  23623. bottom: 0.002
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Normal",
  23630. height: math.unit(5 + 4 / 12, "feet"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(1500, "feet"),
  23640. weight: math.unit(3.8e6, "tons"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/2th/front.svg",
  23644. extra: 3489 / 3350,
  23645. bottom: 0.1
  23646. }
  23647. },
  23648. foot: {
  23649. height: math.unit(461, "feet"),
  23650. name: "Foot",
  23651. image: {
  23652. source: "./media/characters/2th/foot.svg"
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "\"Micro\"",
  23659. height: math.unit(15 + 7 / 12, "feet")
  23660. },
  23661. {
  23662. name: "Normal",
  23663. height: math.unit(1500, "feet"),
  23664. default: true
  23665. },
  23666. {
  23667. name: "Macro",
  23668. height: math.unit(5000, "feet")
  23669. },
  23670. {
  23671. name: "Megamacro",
  23672. height: math.unit(15, "miles")
  23673. },
  23674. {
  23675. name: "Gigamacro",
  23676. height: math.unit(4000, "miles")
  23677. },
  23678. {
  23679. name: "Galactic",
  23680. height: math.unit(50, "AU")
  23681. },
  23682. ]
  23683. ))
  23684. characterMakers.push(() => makeCharacter(
  23685. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23686. {
  23687. front: {
  23688. height: math.unit(5 + 6 / 12, "feet"),
  23689. weight: math.unit(220, "lb"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/amethyst/front.svg",
  23693. extra: 2078 / 2040,
  23694. bottom: 0.045
  23695. }
  23696. },
  23697. back: {
  23698. height: math.unit(5 + 6 / 12, "feet"),
  23699. weight: math.unit(220, "lb"),
  23700. name: "Back",
  23701. image: {
  23702. source: "./media/characters/amethyst/back.svg",
  23703. extra: 2021 / 1989,
  23704. bottom: 0.02
  23705. }
  23706. },
  23707. },
  23708. [
  23709. {
  23710. name: "Normal",
  23711. height: math.unit(5 + 6 / 12, "feet"),
  23712. default: true
  23713. },
  23714. ]
  23715. ))
  23716. characterMakers.push(() => makeCharacter(
  23717. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23718. {
  23719. front: {
  23720. height: math.unit(4 + 11 / 12, "feet"),
  23721. weight: math.unit(120, "lb"),
  23722. name: "Front",
  23723. image: {
  23724. source: "./media/characters/yumi-akiyama/front.svg",
  23725. extra: 2638/2432,
  23726. bottom: 70/2708
  23727. }
  23728. },
  23729. back: {
  23730. height: math.unit(4 + 11 / 12, "feet"),
  23731. weight: math.unit(120, "lb"),
  23732. name: "Back",
  23733. image: {
  23734. source: "./media/characters/yumi-akiyama/back.svg",
  23735. extra: 2502/2397,
  23736. bottom: 80/2582
  23737. }
  23738. },
  23739. casual: {
  23740. height: math.unit(4 + 11 / 12, "feet"),
  23741. weight: math.unit(120, "lb"),
  23742. name: "Casual",
  23743. image: {
  23744. source: "./media/characters/yumi-akiyama/casual.svg",
  23745. extra: 958/887,
  23746. bottom: 41/999
  23747. }
  23748. },
  23749. jammies: {
  23750. height: math.unit(4 + 11 / 12, "feet"),
  23751. weight: math.unit(120, "lb"),
  23752. name: "Jammies",
  23753. image: {
  23754. source: "./media/characters/yumi-akiyama/jammies.svg",
  23755. extra: 958/894,
  23756. bottom: 37/995
  23757. }
  23758. },
  23759. warmWeather: {
  23760. height: math.unit(4 + 11 / 12, "feet"),
  23761. weight: math.unit(120, "lb"),
  23762. name: "Warm Weather",
  23763. image: {
  23764. source: "./media/characters/yumi-akiyama/warm-weather.svg",
  23765. extra: 929/865,
  23766. bottom: 76/1005
  23767. }
  23768. },
  23769. mouth: {
  23770. height: math.unit(0.35, "feet"),
  23771. name: "Mouth",
  23772. image: {
  23773. source: "./media/characters/yumi-akiyama/mouth.svg"
  23774. }
  23775. },
  23776. paws: {
  23777. height: math.unit(1.05, "feet"),
  23778. name: "Paws",
  23779. image: {
  23780. source: "./media/characters/yumi-akiyama/paws.svg"
  23781. }
  23782. },
  23783. cockRing: {
  23784. height: math.unit(0.225, "feet"),
  23785. name: "Cock Ring",
  23786. image: {
  23787. source: "./media/characters/yumi-akiyama/cock-ring.svg"
  23788. }
  23789. },
  23790. },
  23791. [
  23792. {
  23793. name: "Galactic",
  23794. height: math.unit(50, "galaxies"),
  23795. default: true
  23796. },
  23797. {
  23798. name: "Universal",
  23799. height: math.unit(100, "universes")
  23800. },
  23801. ]
  23802. ))
  23803. characterMakers.push(() => makeCharacter(
  23804. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23805. {
  23806. front: {
  23807. height: math.unit(8, "feet"),
  23808. weight: math.unit(500, "lb"),
  23809. name: "Front",
  23810. image: {
  23811. source: "./media/characters/rifter-yrmori/front.svg",
  23812. extra: 1180 / 1125,
  23813. bottom: 0.02
  23814. }
  23815. },
  23816. back: {
  23817. height: math.unit(8, "feet"),
  23818. weight: math.unit(500, "lb"),
  23819. name: "Back",
  23820. image: {
  23821. source: "./media/characters/rifter-yrmori/back.svg",
  23822. extra: 1190 / 1145,
  23823. bottom: 0.001
  23824. }
  23825. },
  23826. wings: {
  23827. height: math.unit(7.75, "feet"),
  23828. weight: math.unit(500, "lb"),
  23829. name: "Wings",
  23830. image: {
  23831. source: "./media/characters/rifter-yrmori/wings.svg",
  23832. extra: 1357 / 1285
  23833. }
  23834. },
  23835. maw: {
  23836. height: math.unit(0.8, "feet"),
  23837. name: "Maw",
  23838. image: {
  23839. source: "./media/characters/rifter-yrmori/maw.svg"
  23840. }
  23841. },
  23842. mawfront: {
  23843. height: math.unit(1.45, "feet"),
  23844. name: "Maw (Front)",
  23845. image: {
  23846. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23847. }
  23848. },
  23849. },
  23850. [
  23851. {
  23852. name: "Normal",
  23853. height: math.unit(8, "feet"),
  23854. default: true
  23855. },
  23856. {
  23857. name: "Macro",
  23858. height: math.unit(42, "meters")
  23859. },
  23860. ]
  23861. ))
  23862. characterMakers.push(() => makeCharacter(
  23863. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23864. {
  23865. were: {
  23866. height: math.unit(25 + 6 / 12, "feet"),
  23867. weight: math.unit(10000, "lb"),
  23868. name: "Were",
  23869. image: {
  23870. source: "./media/characters/tahajin/were.svg",
  23871. extra: 801 / 770,
  23872. bottom: 0.042
  23873. }
  23874. },
  23875. aquatic: {
  23876. height: math.unit(6 + 4 / 12, "feet"),
  23877. weight: math.unit(160, "lb"),
  23878. name: "Aquatic",
  23879. image: {
  23880. source: "./media/characters/tahajin/aquatic.svg",
  23881. extra: 572 / 542,
  23882. bottom: 0.04
  23883. }
  23884. },
  23885. chow: {
  23886. height: math.unit(8 + 11 / 12, "feet"),
  23887. weight: math.unit(450, "lb"),
  23888. name: "Chow",
  23889. image: {
  23890. source: "./media/characters/tahajin/chow.svg",
  23891. extra: 660 / 640,
  23892. bottom: 0.015
  23893. }
  23894. },
  23895. demiNaga: {
  23896. height: math.unit(6 + 8 / 12, "feet"),
  23897. weight: math.unit(300, "lb"),
  23898. name: "Demi Naga",
  23899. image: {
  23900. source: "./media/characters/tahajin/demi-naga.svg",
  23901. extra: 643 / 615,
  23902. bottom: 0.1
  23903. }
  23904. },
  23905. data: {
  23906. height: math.unit(5, "inches"),
  23907. weight: math.unit(0.1, "lb"),
  23908. name: "Data",
  23909. image: {
  23910. source: "./media/characters/tahajin/data.svg"
  23911. }
  23912. },
  23913. fluu: {
  23914. height: math.unit(5 + 7 / 12, "feet"),
  23915. weight: math.unit(140, "lb"),
  23916. name: "Fluu",
  23917. image: {
  23918. source: "./media/characters/tahajin/fluu.svg",
  23919. extra: 628 / 592,
  23920. bottom: 0.02
  23921. }
  23922. },
  23923. starWarrior: {
  23924. height: math.unit(4 + 5 / 12, "feet"),
  23925. weight: math.unit(50, "lb"),
  23926. name: "Star Warrior",
  23927. image: {
  23928. source: "./media/characters/tahajin/star-warrior.svg"
  23929. }
  23930. },
  23931. },
  23932. [
  23933. {
  23934. name: "Normal",
  23935. height: math.unit(25 + 6 / 12, "feet"),
  23936. default: true
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23942. {
  23943. front: {
  23944. height: math.unit(8, "feet"),
  23945. weight: math.unit(350, "lb"),
  23946. name: "Front",
  23947. image: {
  23948. source: "./media/characters/gabira/front.svg",
  23949. extra: 1261/1154,
  23950. bottom: 51/1312
  23951. }
  23952. },
  23953. back: {
  23954. height: math.unit(8, "feet"),
  23955. weight: math.unit(350, "lb"),
  23956. name: "Back",
  23957. image: {
  23958. source: "./media/characters/gabira/back.svg",
  23959. extra: 1265/1163,
  23960. bottom: 46/1311
  23961. }
  23962. },
  23963. head: {
  23964. height: math.unit(2.85, "feet"),
  23965. name: "Head",
  23966. image: {
  23967. source: "./media/characters/gabira/head.svg"
  23968. }
  23969. },
  23970. },
  23971. [
  23972. {
  23973. name: "Normal",
  23974. height: math.unit(8, "feet"),
  23975. default: true
  23976. },
  23977. ]
  23978. ))
  23979. characterMakers.push(() => makeCharacter(
  23980. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23981. {
  23982. front: {
  23983. height: math.unit(5 + 3 / 12, "feet"),
  23984. weight: math.unit(137, "lb"),
  23985. name: "Front",
  23986. image: {
  23987. source: "./media/characters/sasha-katraine/front.svg",
  23988. extra: 1745/1694,
  23989. bottom: 37/1782
  23990. }
  23991. },
  23992. back: {
  23993. height: math.unit(5 + 3 / 12, "feet"),
  23994. weight: math.unit(137, "lb"),
  23995. name: "Back",
  23996. image: {
  23997. source: "./media/characters/sasha-katraine/back.svg",
  23998. extra: 1776/1699,
  23999. bottom: 26/1802
  24000. }
  24001. },
  24002. },
  24003. [
  24004. {
  24005. name: "Micro",
  24006. height: math.unit(5, "inches")
  24007. },
  24008. {
  24009. name: "Normal",
  24010. height: math.unit(5 + 3 / 12, "feet"),
  24011. default: true
  24012. },
  24013. ]
  24014. ))
  24015. characterMakers.push(() => makeCharacter(
  24016. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  24017. {
  24018. side: {
  24019. height: math.unit(4, "inches"),
  24020. weight: math.unit(200, "grams"),
  24021. name: "Side",
  24022. image: {
  24023. source: "./media/characters/der/side.svg",
  24024. extra: 719 / 400,
  24025. bottom: 30.6 / 749.9187
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Micro",
  24032. height: math.unit(4, "inches"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  24039. {
  24040. side: {
  24041. height: math.unit(30, "meters"),
  24042. weight: math.unit(700, "tonnes"),
  24043. name: "Side",
  24044. image: {
  24045. source: "./media/characters/fixerdragon/side.svg",
  24046. extra: (1293.0514 - 116.03) / 1106.86,
  24047. bottom: 116.03 / 1293.0514
  24048. }
  24049. },
  24050. },
  24051. [
  24052. {
  24053. name: "Planck",
  24054. height: math.unit(1.6e-35, "meters")
  24055. },
  24056. {
  24057. name: "Micro",
  24058. height: math.unit(0.4, "meters")
  24059. },
  24060. {
  24061. name: "Normal",
  24062. height: math.unit(30, "meters"),
  24063. default: true
  24064. },
  24065. {
  24066. name: "Megamacro",
  24067. height: math.unit(1.2, "megameters")
  24068. },
  24069. {
  24070. name: "Teramacro",
  24071. height: math.unit(130, "terameters")
  24072. },
  24073. {
  24074. name: "Yottamacro",
  24075. height: math.unit(6200, "yottameters")
  24076. },
  24077. ]
  24078. ));
  24079. characterMakers.push(() => makeCharacter(
  24080. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  24081. {
  24082. front: {
  24083. height: math.unit(8, "feet"),
  24084. weight: math.unit(250, "lb"),
  24085. name: "Front",
  24086. image: {
  24087. source: "./media/characters/kite/front.svg",
  24088. extra: 2796 / 2659,
  24089. bottom: 0.002
  24090. }
  24091. },
  24092. },
  24093. [
  24094. {
  24095. name: "Normal",
  24096. height: math.unit(8, "feet"),
  24097. default: true
  24098. },
  24099. {
  24100. name: "Macro",
  24101. height: math.unit(360, "feet")
  24102. },
  24103. {
  24104. name: "Megamacro",
  24105. height: math.unit(1500, "feet")
  24106. },
  24107. ]
  24108. ))
  24109. characterMakers.push(() => makeCharacter(
  24110. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  24111. {
  24112. anthro_front: {
  24113. height: math.unit(5 + 11/12, "feet"),
  24114. weight: math.unit(170, "lb"),
  24115. name: "Front",
  24116. image: {
  24117. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  24118. extra: 1735/1585,
  24119. bottom: 96/1831
  24120. },
  24121. form: "anthro",
  24122. default: true
  24123. },
  24124. anthro_back: {
  24125. height: math.unit(5 + 11/12, "feet"),
  24126. weight: math.unit(170, "lb"),
  24127. name: "Back",
  24128. image: {
  24129. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  24130. extra: 1749/1607,
  24131. bottom: 28/1777
  24132. },
  24133. form: "anthro"
  24134. },
  24135. anthro_male: {
  24136. height: math.unit(5 + 11/12, "feet"),
  24137. weight: math.unit(170, "lb"),
  24138. name: "Male",
  24139. image: {
  24140. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  24141. extra: 1855/1713,
  24142. bottom: 63/1918
  24143. },
  24144. form: "anthro"
  24145. },
  24146. taur_front: {
  24147. height: math.unit(5 + 7/12, "feet"),
  24148. weight: math.unit(170, "lb"),
  24149. name: "Front",
  24150. image: {
  24151. source: "./media/characters/poojawa-vynar/taur-front.svg",
  24152. extra: 1151/1059,
  24153. bottom: 356/1507
  24154. },
  24155. form: "taur",
  24156. default: true
  24157. },
  24158. anthro_frontDressed: {
  24159. height: math.unit(5 + 11/12, "feet"),
  24160. weight: math.unit(170, "lb"),
  24161. name: "Front (Dressed)",
  24162. image: {
  24163. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  24164. extra: 1735/1585,
  24165. bottom: 96/1831
  24166. },
  24167. form: "anthro"
  24168. },
  24169. anthro_backDressed: {
  24170. height: math.unit(5 + 11/12, "feet"),
  24171. weight: math.unit(170, "lb"),
  24172. name: "Back (Dressed)",
  24173. image: {
  24174. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  24175. extra: 1749/1607,
  24176. bottom: 28/1777
  24177. },
  24178. form: "anthro"
  24179. },
  24180. anthro_maleDressed: {
  24181. height: math.unit(5 + 11/12, "feet"),
  24182. weight: math.unit(170, "lb"),
  24183. name: "Male (Dressed)",
  24184. image: {
  24185. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  24186. extra: 1855/1713,
  24187. bottom: 63/1918
  24188. },
  24189. form: "anthro"
  24190. },
  24191. taur_frontDressed: {
  24192. height: math.unit(5 + 7/12, "feet"),
  24193. weight: math.unit(170, "lb"),
  24194. name: "Front (Dressed)",
  24195. image: {
  24196. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  24197. extra: 1151/1059,
  24198. bottom: 356/1507
  24199. },
  24200. form: "taur"
  24201. },
  24202. maw: {
  24203. height: math.unit(1.46, "feet"),
  24204. name: "Maw",
  24205. image: {
  24206. source: "./media/characters/poojawa-vynar/maw.svg"
  24207. },
  24208. allForms: true
  24209. },
  24210. head: {
  24211. height: math.unit(2.34, "feet"),
  24212. name: "Head",
  24213. image: {
  24214. source: "./media/characters/poojawa-vynar/head.svg"
  24215. },
  24216. allForms: true
  24217. },
  24218. leftPaw: {
  24219. height: math.unit(1.72, "feet"),
  24220. name: "Left Paw",
  24221. image: {
  24222. source: "./media/characters/poojawa-vynar/paw-left.svg"
  24223. },
  24224. allForms: true
  24225. },
  24226. rightPaw: {
  24227. height: math.unit(1.61, "feet"),
  24228. name: "Right Paw",
  24229. image: {
  24230. source: "./media/characters/poojawa-vynar/paw-right.svg"
  24231. },
  24232. allForms: true
  24233. },
  24234. toering: {
  24235. height: math.unit(2.9, "inches"),
  24236. name: "Toering",
  24237. image: {
  24238. source: "./media/characters/poojawa-vynar/toering.svg"
  24239. },
  24240. allForms: true
  24241. },
  24242. shaft: {
  24243. height: math.unit(0.625, "feet"),
  24244. name: "Shaft",
  24245. image: {
  24246. source: "./media/characters/poojawa-vynar/shaft.svg"
  24247. },
  24248. allForms: true
  24249. },
  24250. spade: {
  24251. height: math.unit(0.42, "feet"),
  24252. name: "Spade",
  24253. image: {
  24254. source: "./media/characters/poojawa-vynar/spade.svg"
  24255. },
  24256. allForms: true
  24257. },
  24258. },
  24259. [
  24260. {
  24261. name: "Shortstack",
  24262. height: math.unit(4, "feet"),
  24263. form: "anthro"
  24264. },
  24265. {
  24266. name: "Normal",
  24267. height: math.unit(5 + 11 / 12, "feet"),
  24268. form: "anthro",
  24269. default: true
  24270. },
  24271. {
  24272. name: "Tauric",
  24273. height: math.unit(4, "meters"),
  24274. form: "taur",
  24275. default: true
  24276. },
  24277. ],
  24278. {
  24279. "anthro": {
  24280. name: "Anthro",
  24281. default: true
  24282. },
  24283. "taur": {
  24284. name: "Taur",
  24285. },
  24286. }
  24287. ))
  24288. characterMakers.push(() => makeCharacter(
  24289. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  24290. {
  24291. front: {
  24292. height: math.unit(293, "meters"),
  24293. weight: math.unit(70400, "tons"),
  24294. name: "Front",
  24295. image: {
  24296. source: "./media/characters/violette/front.svg",
  24297. extra: 1227 / 1180,
  24298. bottom: 0.005
  24299. }
  24300. },
  24301. back: {
  24302. height: math.unit(293, "meters"),
  24303. weight: math.unit(70400, "tons"),
  24304. name: "Back",
  24305. image: {
  24306. source: "./media/characters/violette/back.svg",
  24307. extra: 1227 / 1180,
  24308. bottom: 0.005
  24309. }
  24310. },
  24311. },
  24312. [
  24313. {
  24314. name: "Macro",
  24315. height: math.unit(293, "meters"),
  24316. default: true
  24317. },
  24318. ]
  24319. ))
  24320. characterMakers.push(() => makeCharacter(
  24321. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24322. {
  24323. front: {
  24324. height: math.unit(1050, "feet"),
  24325. weight: math.unit(200000, "tons"),
  24326. name: "Front",
  24327. image: {
  24328. source: "./media/characters/alessandra/front.svg",
  24329. extra: 960 / 912,
  24330. bottom: 0.06
  24331. }
  24332. },
  24333. },
  24334. [
  24335. {
  24336. name: "Macro",
  24337. height: math.unit(1050, "feet")
  24338. },
  24339. {
  24340. name: "Macro+",
  24341. height: math.unit(900, "meters"),
  24342. default: true
  24343. },
  24344. ]
  24345. ))
  24346. characterMakers.push(() => makeCharacter(
  24347. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24348. {
  24349. front: {
  24350. height: math.unit(5, "feet"),
  24351. weight: math.unit(187, "lb"),
  24352. name: "Front",
  24353. image: {
  24354. source: "./media/characters/person/front.svg",
  24355. extra: 3087 / 2945,
  24356. bottom: 91 / 3181
  24357. }
  24358. },
  24359. },
  24360. [
  24361. {
  24362. name: "Micro",
  24363. height: math.unit(3, "inches")
  24364. },
  24365. {
  24366. name: "Normal",
  24367. height: math.unit(5, "feet"),
  24368. default: true
  24369. },
  24370. {
  24371. name: "Macro",
  24372. height: math.unit(90, "feet")
  24373. },
  24374. {
  24375. name: "Max Size",
  24376. height: math.unit(280, "feet")
  24377. },
  24378. ]
  24379. ))
  24380. characterMakers.push(() => makeCharacter(
  24381. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24382. {
  24383. front: {
  24384. height: math.unit(4.5, "meters"),
  24385. weight: math.unit(3200, "lb"),
  24386. name: "Front",
  24387. image: {
  24388. source: "./media/characters/ty/front.svg",
  24389. extra: 1038 / 960,
  24390. bottom: 31.156 / 1068
  24391. }
  24392. },
  24393. back: {
  24394. height: math.unit(4.5, "meters"),
  24395. weight: math.unit(3200, "lb"),
  24396. name: "Back",
  24397. image: {
  24398. source: "./media/characters/ty/back.svg",
  24399. extra: 1044 / 966,
  24400. bottom: 7.48 / 1049
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "Normal",
  24407. height: math.unit(4.5, "meters"),
  24408. default: true
  24409. },
  24410. ]
  24411. ))
  24412. characterMakers.push(() => makeCharacter(
  24413. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24414. {
  24415. front: {
  24416. height: math.unit(5 + 4 / 12, "feet"),
  24417. weight: math.unit(115, "lb"),
  24418. name: "Front",
  24419. image: {
  24420. source: "./media/characters/rocky/front.svg",
  24421. extra: 1012 / 975,
  24422. bottom: 54 / 1066
  24423. }
  24424. },
  24425. },
  24426. [
  24427. {
  24428. name: "Normal",
  24429. height: math.unit(5 + 4 / 12, "feet"),
  24430. default: true
  24431. },
  24432. ]
  24433. ))
  24434. characterMakers.push(() => makeCharacter(
  24435. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24436. {
  24437. upright: {
  24438. height: math.unit(6, "meters"),
  24439. weight: math.unit(4000, "kg"),
  24440. name: "Upright",
  24441. image: {
  24442. source: "./media/characters/ruin/upright.svg",
  24443. extra: 668 / 661,
  24444. bottom: 42 / 799.8396
  24445. }
  24446. },
  24447. },
  24448. [
  24449. {
  24450. name: "Normal",
  24451. height: math.unit(6, "meters"),
  24452. default: true
  24453. },
  24454. ]
  24455. ))
  24456. characterMakers.push(() => makeCharacter(
  24457. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24458. {
  24459. front: {
  24460. height: math.unit(5, "feet"),
  24461. weight: math.unit(106, "lb"),
  24462. name: "Front",
  24463. image: {
  24464. source: "./media/characters/robin/front.svg",
  24465. extra: 862 / 799,
  24466. bottom: 42.4 / 914.8856
  24467. }
  24468. },
  24469. },
  24470. [
  24471. {
  24472. name: "Normal",
  24473. height: math.unit(5, "feet"),
  24474. default: true
  24475. },
  24476. ]
  24477. ))
  24478. characterMakers.push(() => makeCharacter(
  24479. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24480. {
  24481. side: {
  24482. height: math.unit(3, "feet"),
  24483. weight: math.unit(225, "lb"),
  24484. name: "Side",
  24485. image: {
  24486. source: "./media/characters/saian/side.svg",
  24487. extra: 566 / 356,
  24488. bottom: 79.7 / 643
  24489. }
  24490. },
  24491. maw: {
  24492. height: math.unit(2.85, "feet"),
  24493. name: "Maw",
  24494. image: {
  24495. source: "./media/characters/saian/maw.svg"
  24496. }
  24497. },
  24498. },
  24499. [
  24500. {
  24501. name: "Normal",
  24502. height: math.unit(3, "feet"),
  24503. default: true
  24504. },
  24505. ]
  24506. ))
  24507. characterMakers.push(() => makeCharacter(
  24508. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24509. {
  24510. side: {
  24511. height: math.unit(8, "feet"),
  24512. weight: math.unit(300, "lb"),
  24513. name: "Side",
  24514. image: {
  24515. source: "./media/characters/equus-silvermane/side.svg",
  24516. extra: 2176 / 2050,
  24517. bottom: 65.7 / 2245
  24518. }
  24519. },
  24520. front: {
  24521. height: math.unit(8, "feet"),
  24522. weight: math.unit(300, "lb"),
  24523. name: "Front",
  24524. image: {
  24525. source: "./media/characters/equus-silvermane/front.svg",
  24526. extra: 4633 / 4400,
  24527. bottom: 71.3 / 4706.915
  24528. }
  24529. },
  24530. sideStepping: {
  24531. height: math.unit(8, "feet"),
  24532. weight: math.unit(300, "lb"),
  24533. name: "Side (Stepping)",
  24534. image: {
  24535. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24536. extra: 1968 / 1860,
  24537. bottom: 16.4 / 1989
  24538. }
  24539. },
  24540. },
  24541. [
  24542. {
  24543. name: "Normal",
  24544. height: math.unit(8, "feet")
  24545. },
  24546. {
  24547. name: "Minimacro",
  24548. height: math.unit(75, "feet"),
  24549. default: true
  24550. },
  24551. {
  24552. name: "Macro",
  24553. height: math.unit(150, "feet")
  24554. },
  24555. {
  24556. name: "Macro+",
  24557. height: math.unit(1000, "feet")
  24558. },
  24559. {
  24560. name: "Megamacro",
  24561. height: math.unit(1, "mile")
  24562. },
  24563. ]
  24564. ))
  24565. characterMakers.push(() => makeCharacter(
  24566. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24567. {
  24568. side: {
  24569. height: math.unit(20, "feet"),
  24570. weight: math.unit(30000, "kg"),
  24571. name: "Side",
  24572. image: {
  24573. source: "./media/characters/windar/side.svg",
  24574. extra: 1491 / 1248,
  24575. bottom: 82.56 / 1568
  24576. }
  24577. },
  24578. },
  24579. [
  24580. {
  24581. name: "Normal",
  24582. height: math.unit(20, "feet"),
  24583. default: true
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24589. {
  24590. side: {
  24591. height: math.unit(15.66, "feet"),
  24592. weight: math.unit(150, "lb"),
  24593. name: "Side",
  24594. image: {
  24595. source: "./media/characters/melody/side.svg",
  24596. extra: 1097 / 944,
  24597. bottom: 11.8 / 1109
  24598. }
  24599. },
  24600. sideOutfit: {
  24601. height: math.unit(15.66, "feet"),
  24602. weight: math.unit(150, "lb"),
  24603. name: "Side (Outfit)",
  24604. image: {
  24605. source: "./media/characters/melody/side-outfit.svg",
  24606. extra: 1097 / 944,
  24607. bottom: 11.8 / 1109
  24608. }
  24609. },
  24610. },
  24611. [
  24612. {
  24613. name: "Normal",
  24614. height: math.unit(15.66, "feet"),
  24615. default: true
  24616. },
  24617. ]
  24618. ))
  24619. characterMakers.push(() => makeCharacter(
  24620. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24621. {
  24622. armoredFront: {
  24623. height: math.unit(8, "feet"),
  24624. weight: math.unit(325, "lb"),
  24625. name: "Front",
  24626. image: {
  24627. source: "./media/characters/windera/armored-front.svg",
  24628. extra: 1830/1598,
  24629. bottom: 151/1981
  24630. },
  24631. form: "armored",
  24632. default: true
  24633. },
  24634. macroFront: {
  24635. height: math.unit(70, "feet"),
  24636. weight: math.unit(315453, "lb"),
  24637. name: "Front",
  24638. image: {
  24639. source: "./media/characters/windera/macro-front.svg",
  24640. extra: 963/883,
  24641. bottom: 23/986
  24642. },
  24643. form: "macro",
  24644. default: true
  24645. },
  24646. },
  24647. [
  24648. {
  24649. name: "Normal",
  24650. height: math.unit(8, "feet"),
  24651. default: true,
  24652. form: "armored"
  24653. },
  24654. {
  24655. name: "Normal",
  24656. height: math.unit(70, "feet"),
  24657. default: true,
  24658. form: "macro"
  24659. },
  24660. ],
  24661. {
  24662. "armored": {
  24663. name: "Armored",
  24664. default: true
  24665. },
  24666. "macro": {
  24667. name: "Macro",
  24668. },
  24669. }
  24670. ))
  24671. characterMakers.push(() => makeCharacter(
  24672. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24673. {
  24674. front: {
  24675. height: math.unit(28.75, "feet"),
  24676. weight: math.unit(2000, "kg"),
  24677. name: "Front",
  24678. image: {
  24679. source: "./media/characters/sonear/front.svg",
  24680. extra: 1041.1 / 964.9,
  24681. bottom: 53.7 / 1096.6
  24682. }
  24683. },
  24684. },
  24685. [
  24686. {
  24687. name: "Normal",
  24688. height: math.unit(28.75, "feet"),
  24689. default: true
  24690. },
  24691. ]
  24692. ))
  24693. characterMakers.push(() => makeCharacter(
  24694. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24695. {
  24696. side: {
  24697. height: math.unit(25.5, "feet"),
  24698. weight: math.unit(23000, "kg"),
  24699. name: "Side",
  24700. image: {
  24701. source: "./media/characters/kanara/side.svg"
  24702. }
  24703. },
  24704. },
  24705. [
  24706. {
  24707. name: "Normal",
  24708. height: math.unit(25.5, "feet"),
  24709. default: true
  24710. },
  24711. ]
  24712. ))
  24713. characterMakers.push(() => makeCharacter(
  24714. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24715. {
  24716. side: {
  24717. height: math.unit(10, "feet"),
  24718. weight: math.unit(1000, "kg"),
  24719. name: "Side",
  24720. image: {
  24721. source: "./media/characters/ereus/side.svg",
  24722. extra: 1157 / 959,
  24723. bottom: 153 / 1312.5
  24724. }
  24725. },
  24726. },
  24727. [
  24728. {
  24729. name: "Normal",
  24730. height: math.unit(10, "feet"),
  24731. default: true
  24732. },
  24733. ]
  24734. ))
  24735. characterMakers.push(() => makeCharacter(
  24736. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24737. {
  24738. side: {
  24739. height: math.unit(4.5, "feet"),
  24740. weight: math.unit(500, "lb"),
  24741. name: "Side",
  24742. image: {
  24743. source: "./media/characters/e-ter/side.svg",
  24744. extra: 1550 / 1248,
  24745. bottom: 146 / 1694
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Normal",
  24752. height: math.unit(4.5, "feet"),
  24753. default: true
  24754. },
  24755. ]
  24756. ))
  24757. characterMakers.push(() => makeCharacter(
  24758. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24759. {
  24760. side: {
  24761. height: math.unit(9.7, "feet"),
  24762. weight: math.unit(4000, "kg"),
  24763. name: "Side",
  24764. image: {
  24765. source: "./media/characters/yamie/side.svg"
  24766. }
  24767. },
  24768. },
  24769. [
  24770. {
  24771. name: "Normal",
  24772. height: math.unit(9.7, "feet"),
  24773. default: true
  24774. },
  24775. ]
  24776. ))
  24777. characterMakers.push(() => makeCharacter(
  24778. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24779. {
  24780. front: {
  24781. height: math.unit(50, "feet"),
  24782. weight: math.unit(50000, "kg"),
  24783. name: "Front",
  24784. image: {
  24785. source: "./media/characters/anders/front.svg",
  24786. extra: 570 / 539,
  24787. bottom: 14.7 / 586.7
  24788. }
  24789. },
  24790. },
  24791. [
  24792. {
  24793. name: "Large",
  24794. height: math.unit(50, "feet")
  24795. },
  24796. {
  24797. name: "Macro",
  24798. height: math.unit(2000, "feet"),
  24799. default: true
  24800. },
  24801. {
  24802. name: "Megamacro",
  24803. height: math.unit(12, "miles")
  24804. },
  24805. ]
  24806. ))
  24807. characterMakers.push(() => makeCharacter(
  24808. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24809. {
  24810. front: {
  24811. height: math.unit(7 + 2 / 12, "feet"),
  24812. weight: math.unit(300, "lb"),
  24813. name: "Front",
  24814. image: {
  24815. source: "./media/characters/reban/front.svg",
  24816. extra: 1287/1212,
  24817. bottom: 148/1435
  24818. }
  24819. },
  24820. head: {
  24821. height: math.unit(1.95, "feet"),
  24822. name: "Head",
  24823. image: {
  24824. source: "./media/characters/reban/head.svg"
  24825. }
  24826. },
  24827. maw: {
  24828. height: math.unit(0.95, "feet"),
  24829. name: "Maw",
  24830. image: {
  24831. source: "./media/characters/reban/maw.svg"
  24832. }
  24833. },
  24834. foot: {
  24835. height: math.unit(1.65, "feet"),
  24836. name: "Foot",
  24837. image: {
  24838. source: "./media/characters/reban/foot.svg"
  24839. }
  24840. },
  24841. dick: {
  24842. height: math.unit(7 / 5, "feet"),
  24843. name: "Dick",
  24844. image: {
  24845. source: "./media/characters/reban/dick.svg"
  24846. }
  24847. },
  24848. },
  24849. [
  24850. {
  24851. name: "Natural Height",
  24852. height: math.unit(7 + 2 / 12, "feet")
  24853. },
  24854. {
  24855. name: "Macro",
  24856. height: math.unit(500, "feet"),
  24857. default: true
  24858. },
  24859. {
  24860. name: "Canon Height",
  24861. height: math.unit(50, "AU")
  24862. },
  24863. ]
  24864. ))
  24865. characterMakers.push(() => makeCharacter(
  24866. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24867. {
  24868. front: {
  24869. height: math.unit(6, "feet"),
  24870. weight: math.unit(150, "lb"),
  24871. name: "Front",
  24872. image: {
  24873. source: "./media/characters/terrance-keayes/front.svg",
  24874. extra: 1.005,
  24875. bottom: 151 / 1615
  24876. }
  24877. },
  24878. side: {
  24879. height: math.unit(6, "feet"),
  24880. weight: math.unit(150, "lb"),
  24881. name: "Side",
  24882. image: {
  24883. source: "./media/characters/terrance-keayes/side.svg",
  24884. extra: 1.005,
  24885. bottom: 129.4 / 1544
  24886. }
  24887. },
  24888. back: {
  24889. height: math.unit(6, "feet"),
  24890. weight: math.unit(150, "lb"),
  24891. name: "Back",
  24892. image: {
  24893. source: "./media/characters/terrance-keayes/back.svg",
  24894. extra: 1.005,
  24895. bottom: 58.4 / 1557.3
  24896. }
  24897. },
  24898. dick: {
  24899. height: math.unit(6 * 0.208, "feet"),
  24900. name: "Dick",
  24901. image: {
  24902. source: "./media/characters/terrance-keayes/dick.svg"
  24903. }
  24904. },
  24905. },
  24906. [
  24907. {
  24908. name: "Canon Height",
  24909. height: math.unit(35, "miles"),
  24910. default: true
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24916. {
  24917. front: {
  24918. height: math.unit(6, "feet"),
  24919. weight: math.unit(150, "lb"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/ofelia/front.svg",
  24923. extra: 1130/1117,
  24924. bottom: 91/1221
  24925. }
  24926. },
  24927. back: {
  24928. height: math.unit(6, "feet"),
  24929. weight: math.unit(150, "lb"),
  24930. name: "Back",
  24931. image: {
  24932. source: "./media/characters/ofelia/back.svg",
  24933. extra: 1172/1159,
  24934. bottom: 28/1200
  24935. }
  24936. },
  24937. maw: {
  24938. height: math.unit(1, "feet"),
  24939. name: "Maw",
  24940. image: {
  24941. source: "./media/characters/ofelia/maw.svg"
  24942. }
  24943. },
  24944. foot: {
  24945. height: math.unit(1.949, "feet"),
  24946. name: "Foot",
  24947. image: {
  24948. source: "./media/characters/ofelia/foot.svg"
  24949. }
  24950. },
  24951. },
  24952. [
  24953. {
  24954. name: "Canon Height",
  24955. height: math.unit(2000, "miles"),
  24956. default: true
  24957. },
  24958. ]
  24959. ))
  24960. characterMakers.push(() => makeCharacter(
  24961. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24962. {
  24963. front: {
  24964. height: math.unit(6, "feet"),
  24965. weight: math.unit(150, "lb"),
  24966. name: "Front",
  24967. image: {
  24968. source: "./media/characters/samuel/front.svg",
  24969. extra: 265 / 258,
  24970. bottom: 2 / 266.1566
  24971. }
  24972. },
  24973. },
  24974. [
  24975. {
  24976. name: "Macro",
  24977. height: math.unit(100, "feet"),
  24978. default: true
  24979. },
  24980. {
  24981. name: "Full Size",
  24982. height: math.unit(1000, "miles")
  24983. },
  24984. ]
  24985. ))
  24986. characterMakers.push(() => makeCharacter(
  24987. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24988. {
  24989. front: {
  24990. height: math.unit(6, "feet"),
  24991. weight: math.unit(300, "lb"),
  24992. name: "Front",
  24993. image: {
  24994. source: "./media/characters/beishir-kiel/front.svg",
  24995. extra: 569 / 547,
  24996. bottom: 41.9 / 609
  24997. }
  24998. },
  24999. maw: {
  25000. height: math.unit(6 * 0.202, "feet"),
  25001. name: "Maw",
  25002. image: {
  25003. source: "./media/characters/beishir-kiel/maw.svg"
  25004. }
  25005. },
  25006. },
  25007. [
  25008. {
  25009. name: "Macro",
  25010. height: math.unit(300, "feet"),
  25011. default: true
  25012. },
  25013. ]
  25014. ))
  25015. characterMakers.push(() => makeCharacter(
  25016. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  25017. {
  25018. front: {
  25019. height: math.unit(5 + 7/12, "feet"),
  25020. weight: math.unit(120, "lb"),
  25021. name: "Front",
  25022. image: {
  25023. source: "./media/characters/logan-grey/front.svg",
  25024. extra: 1836/1738,
  25025. bottom: 108/1944
  25026. }
  25027. },
  25028. back: {
  25029. height: math.unit(5 + 7/12, "feet"),
  25030. weight: math.unit(120, "lb"),
  25031. name: "Back",
  25032. image: {
  25033. source: "./media/characters/logan-grey/back.svg",
  25034. extra: 1880/1794,
  25035. bottom: 24/1904
  25036. }
  25037. },
  25038. frontSfw: {
  25039. height: math.unit(5 + 7/12, "feet"),
  25040. weight: math.unit(120, "lb"),
  25041. name: "Front (SFW)",
  25042. image: {
  25043. source: "./media/characters/logan-grey/front-sfw.svg",
  25044. extra: 1836/1738,
  25045. bottom: 108/1944
  25046. }
  25047. },
  25048. backSfw: {
  25049. height: math.unit(5 + 7/12, "feet"),
  25050. weight: math.unit(120, "lb"),
  25051. name: "Back (SFW)",
  25052. image: {
  25053. source: "./media/characters/logan-grey/back-sfw.svg",
  25054. extra: 1880/1794,
  25055. bottom: 24/1904
  25056. }
  25057. },
  25058. hands: {
  25059. height: math.unit(0.84, "feet"),
  25060. name: "Hands",
  25061. image: {
  25062. source: "./media/characters/logan-grey/hands.svg"
  25063. }
  25064. },
  25065. paws: {
  25066. height: math.unit(0.72, "feet"),
  25067. name: "Paws",
  25068. image: {
  25069. source: "./media/characters/logan-grey/paws.svg"
  25070. }
  25071. },
  25072. cock: {
  25073. height: math.unit(1.45, "feet"),
  25074. name: "Cock",
  25075. image: {
  25076. source: "./media/characters/logan-grey/cock.svg"
  25077. }
  25078. },
  25079. cockAlt: {
  25080. height: math.unit(1.437, "feet"),
  25081. name: "Cock (alt)",
  25082. image: {
  25083. source: "./media/characters/logan-grey/cock-alt.svg"
  25084. }
  25085. },
  25086. },
  25087. [
  25088. {
  25089. name: "Normal",
  25090. height: math.unit(5 + 8 / 12, "feet")
  25091. },
  25092. {
  25093. name: "The 500 Foot Femboy",
  25094. height: math.unit(500, "feet"),
  25095. default: true
  25096. },
  25097. {
  25098. name: "Megmacro",
  25099. height: math.unit(20, "miles")
  25100. },
  25101. ]
  25102. ))
  25103. characterMakers.push(() => makeCharacter(
  25104. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  25105. {
  25106. front: {
  25107. height: math.unit(8 + 2 / 12, "feet"),
  25108. weight: math.unit(275, "lb"),
  25109. name: "Front",
  25110. image: {
  25111. source: "./media/characters/draganta/front.svg",
  25112. extra: 1177 / 1135,
  25113. bottom: 33.46 / 1212.1
  25114. }
  25115. },
  25116. },
  25117. [
  25118. {
  25119. name: "Normal",
  25120. height: math.unit(8 + 6 / 12, "feet"),
  25121. default: true
  25122. },
  25123. {
  25124. name: "Macro",
  25125. height: math.unit(150, "feet")
  25126. },
  25127. {
  25128. name: "Megamacro",
  25129. height: math.unit(1000, "miles")
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(1.72, "m"),
  25138. weight: math.unit(80, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/voski/front.svg",
  25142. extra: 2076.22 / 2022.4,
  25143. bottom: 102.7 / 2177.3866
  25144. }
  25145. },
  25146. frontFlaccid: {
  25147. height: math.unit(1.72, "m"),
  25148. weight: math.unit(80, "lb"),
  25149. name: "Front (Flaccid)",
  25150. image: {
  25151. source: "./media/characters/voski/front-flaccid.svg",
  25152. extra: 2076.22 / 2022.4,
  25153. bottom: 102.7 / 2177.3866
  25154. }
  25155. },
  25156. frontErect: {
  25157. height: math.unit(1.72, "m"),
  25158. weight: math.unit(80, "lb"),
  25159. name: "Front (Erect)",
  25160. image: {
  25161. source: "./media/characters/voski/front-erect.svg",
  25162. extra: 2076.22 / 2022.4,
  25163. bottom: 102.7 / 2177.3866
  25164. }
  25165. },
  25166. back: {
  25167. height: math.unit(1.72, "m"),
  25168. weight: math.unit(80, "lb"),
  25169. name: "Back",
  25170. image: {
  25171. source: "./media/characters/voski/back.svg",
  25172. extra: 2104 / 2051,
  25173. bottom: 10.45 / 2113.63
  25174. }
  25175. },
  25176. },
  25177. [
  25178. {
  25179. name: "Normal",
  25180. height: math.unit(1.72, "m")
  25181. },
  25182. {
  25183. name: "Macro",
  25184. height: math.unit(55, "m"),
  25185. default: true
  25186. },
  25187. {
  25188. name: "Macro+",
  25189. height: math.unit(300, "m")
  25190. },
  25191. {
  25192. name: "Macro++",
  25193. height: math.unit(700, "m")
  25194. },
  25195. {
  25196. name: "Macro+++",
  25197. height: math.unit(4500, "m")
  25198. },
  25199. {
  25200. name: "Macro++++",
  25201. height: math.unit(45, "km")
  25202. },
  25203. {
  25204. name: "Macro+++++",
  25205. height: math.unit(1220, "km")
  25206. },
  25207. ]
  25208. ))
  25209. characterMakers.push(() => makeCharacter(
  25210. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  25211. {
  25212. front: {
  25213. height: math.unit(2.3, "m"),
  25214. weight: math.unit(304, "kg"),
  25215. name: "Front",
  25216. image: {
  25217. source: "./media/characters/icowom-lee/front.svg",
  25218. extra: 985 / 955,
  25219. bottom: 25.4 / 1012
  25220. }
  25221. },
  25222. fronttentacles: {
  25223. height: math.unit(2.3, "m"),
  25224. weight: math.unit(304, "kg"),
  25225. name: "Front-tentacles",
  25226. image: {
  25227. source: "./media/characters/icowom-lee/front-tentacles.svg",
  25228. extra: 985 / 955,
  25229. bottom: 25.4 / 1012
  25230. }
  25231. },
  25232. back: {
  25233. height: math.unit(2.3, "m"),
  25234. weight: math.unit(304, "kg"),
  25235. name: "Back",
  25236. image: {
  25237. source: "./media/characters/icowom-lee/back.svg",
  25238. extra: 975 / 954,
  25239. bottom: 9.5 / 985
  25240. }
  25241. },
  25242. backtentacles: {
  25243. height: math.unit(2.3, "m"),
  25244. weight: math.unit(304, "kg"),
  25245. name: "Back-tentacles",
  25246. image: {
  25247. source: "./media/characters/icowom-lee/back-tentacles.svg",
  25248. extra: 975 / 954,
  25249. bottom: 9.5 / 985
  25250. }
  25251. },
  25252. frontDressed: {
  25253. height: math.unit(2.3, "m"),
  25254. weight: math.unit(304, "kg"),
  25255. name: "Front (Dressed)",
  25256. image: {
  25257. source: "./media/characters/icowom-lee/front-dressed.svg",
  25258. extra: 3076 / 2933,
  25259. bottom: 51.4 / 3125.1889
  25260. }
  25261. },
  25262. rump: {
  25263. height: math.unit(0.776, "meters"),
  25264. name: "Rump",
  25265. image: {
  25266. source: "./media/characters/icowom-lee/rump.svg"
  25267. }
  25268. },
  25269. genitals: {
  25270. height: math.unit(0.78, "meters"),
  25271. name: "Genitals",
  25272. image: {
  25273. source: "./media/characters/icowom-lee/genitals.svg"
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "Normal",
  25280. height: math.unit(2.3, "meters"),
  25281. default: true
  25282. },
  25283. {
  25284. name: "Macro",
  25285. height: math.unit(94, "meters"),
  25286. default: true
  25287. },
  25288. ]
  25289. ))
  25290. characterMakers.push(() => makeCharacter(
  25291. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  25292. {
  25293. front: {
  25294. height: math.unit(22, "meters"),
  25295. weight: math.unit(21000, "kg"),
  25296. name: "Front",
  25297. image: {
  25298. source: "./media/characters/shock-diamond/front.svg",
  25299. extra: 2204 / 2053,
  25300. bottom: 65 / 2239.47
  25301. }
  25302. },
  25303. frontNude: {
  25304. height: math.unit(22, "meters"),
  25305. weight: math.unit(21000, "kg"),
  25306. name: "Front (Nude)",
  25307. image: {
  25308. source: "./media/characters/shock-diamond/front-nude.svg",
  25309. extra: 2514 / 2285,
  25310. bottom: 13 / 2527.56
  25311. }
  25312. },
  25313. },
  25314. [
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(3, "meters")
  25318. },
  25319. {
  25320. name: "Macro",
  25321. height: math.unit(22, "meters"),
  25322. default: true
  25323. },
  25324. ]
  25325. ))
  25326. characterMakers.push(() => makeCharacter(
  25327. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25328. {
  25329. front: {
  25330. height: math.unit(5 + 4/12, "feet"),
  25331. weight: math.unit(125, "lb"),
  25332. name: "Front",
  25333. image: {
  25334. source: "./media/characters/rory/front.svg",
  25335. extra: 1790/1681,
  25336. bottom: 66/1856
  25337. },
  25338. form: "normal",
  25339. default: true
  25340. },
  25341. back: {
  25342. height: math.unit(5 + 4/12, "feet"),
  25343. weight: math.unit(125, "lb"),
  25344. name: "Back",
  25345. image: {
  25346. source: "./media/characters/rory/back.svg",
  25347. extra: 1805/1690,
  25348. bottom: 56/1861
  25349. },
  25350. form: "normal"
  25351. },
  25352. frontDressed: {
  25353. height: math.unit(5 + 4/12, "feet"),
  25354. weight: math.unit(125, "lb"),
  25355. name: "Front (Dressed)",
  25356. image: {
  25357. source: "./media/characters/rory/front-dressed.svg",
  25358. extra: 1790/1681,
  25359. bottom: 66/1856
  25360. },
  25361. form: "normal"
  25362. },
  25363. backDressed: {
  25364. height: math.unit(5 + 4/12, "feet"),
  25365. weight: math.unit(125, "lb"),
  25366. name: "Back (Dressed)",
  25367. image: {
  25368. source: "./media/characters/rory/back-dressed.svg",
  25369. extra: 1805/1690,
  25370. bottom: 56/1861
  25371. },
  25372. form: "normal"
  25373. },
  25374. frontNsfw: {
  25375. height: math.unit(5 + 4/12, "feet"),
  25376. weight: math.unit(125, "lb"),
  25377. name: "Front (NSFW)",
  25378. image: {
  25379. source: "./media/characters/rory/front-nsfw.svg",
  25380. extra: 1790/1681,
  25381. bottom: 66/1856
  25382. },
  25383. form: "normal"
  25384. },
  25385. backNsfw: {
  25386. height: math.unit(5 + 4/12, "feet"),
  25387. weight: math.unit(125, "lb"),
  25388. name: "Back (NSFW)",
  25389. image: {
  25390. source: "./media/characters/rory/back-nsfw.svg",
  25391. extra: 1805/1690,
  25392. bottom: 56/1861
  25393. },
  25394. form: "normal"
  25395. },
  25396. dick: {
  25397. height: math.unit(0.8, "feet"),
  25398. name: "Dick",
  25399. image: {
  25400. source: "./media/characters/rory/dick.svg"
  25401. },
  25402. form: "normal"
  25403. },
  25404. thicc_front: {
  25405. height: math.unit(5 + 4/12, "feet"),
  25406. weight: math.unit(195, "lb"),
  25407. name: "Front",
  25408. image: {
  25409. source: "./media/characters/rory/thicc-front.svg",
  25410. extra: 1220/1100,
  25411. bottom: 103/1323
  25412. },
  25413. form: "thicc",
  25414. default: true
  25415. },
  25416. thicc_back: {
  25417. height: math.unit(5 + 4/12, "feet"),
  25418. weight: math.unit(195, "lb"),
  25419. name: "Back",
  25420. image: {
  25421. source: "./media/characters/rory/thicc-back.svg",
  25422. extra: 1166/1086,
  25423. bottom: 35/1201
  25424. },
  25425. form: "thicc"
  25426. },
  25427. },
  25428. [
  25429. {
  25430. name: "Micro",
  25431. height: math.unit(3, "inches"),
  25432. allForms: true
  25433. },
  25434. {
  25435. name: "Normal",
  25436. height: math.unit(5 + 4/12, "feet"),
  25437. allForms: true,
  25438. default: true
  25439. },
  25440. {
  25441. name: "Macro",
  25442. height: math.unit(90, "feet"),
  25443. allForms: true
  25444. },
  25445. {
  25446. name: "Supercharged",
  25447. height: math.unit(270, "feet"),
  25448. allForms: true
  25449. },
  25450. ],
  25451. {
  25452. "normal": {
  25453. name: "Normal",
  25454. default: true
  25455. },
  25456. "thicc": {
  25457. name: "Thicc",
  25458. },
  25459. }
  25460. ))
  25461. characterMakers.push(() => makeCharacter(
  25462. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25463. {
  25464. front: {
  25465. height: math.unit(5 + 9 / 12, "feet"),
  25466. weight: math.unit(190, "lb"),
  25467. name: "Front",
  25468. image: {
  25469. source: "./media/characters/sprisk/front.svg",
  25470. extra: 1225 / 1180,
  25471. bottom: 42.7 / 1266.4
  25472. }
  25473. },
  25474. frontNsfw: {
  25475. height: math.unit(5 + 9 / 12, "feet"),
  25476. weight: math.unit(190, "lb"),
  25477. name: "Front (NSFW)",
  25478. image: {
  25479. source: "./media/characters/sprisk/front-nsfw.svg",
  25480. extra: 1225 / 1180,
  25481. bottom: 42.7 / 1266.4
  25482. }
  25483. },
  25484. back: {
  25485. height: math.unit(5 + 9 / 12, "feet"),
  25486. weight: math.unit(190, "lb"),
  25487. name: "Back",
  25488. image: {
  25489. source: "./media/characters/sprisk/back.svg",
  25490. extra: 1247 / 1200,
  25491. bottom: 5.6 / 1253.04
  25492. }
  25493. },
  25494. },
  25495. [
  25496. {
  25497. name: "Tiny",
  25498. height: math.unit(2, "inches")
  25499. },
  25500. {
  25501. name: "Normal",
  25502. height: math.unit(5 + 9 / 12, "feet"),
  25503. default: true
  25504. },
  25505. {
  25506. name: "Mini Macro",
  25507. height: math.unit(18, "feet")
  25508. },
  25509. {
  25510. name: "Macro",
  25511. height: math.unit(100, "feet")
  25512. },
  25513. {
  25514. name: "MACRO",
  25515. height: math.unit(50, "miles")
  25516. },
  25517. {
  25518. name: "M A C R O",
  25519. height: math.unit(300, "miles")
  25520. },
  25521. ]
  25522. ))
  25523. characterMakers.push(() => makeCharacter(
  25524. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25525. {
  25526. side: {
  25527. height: math.unit(15.6, "meters"),
  25528. weight: math.unit(700000, "kg"),
  25529. name: "Side",
  25530. image: {
  25531. source: "./media/characters/bunsen/side.svg",
  25532. extra: 1644 / 358
  25533. }
  25534. },
  25535. foot: {
  25536. height: math.unit(1.611 * 1644 / 358, "meter"),
  25537. name: "Foot",
  25538. image: {
  25539. source: "./media/characters/bunsen/foot.svg"
  25540. }
  25541. },
  25542. },
  25543. [
  25544. {
  25545. name: "Small",
  25546. height: math.unit(10, "feet")
  25547. },
  25548. {
  25549. name: "Normal",
  25550. height: math.unit(15.6, "meters"),
  25551. default: true
  25552. },
  25553. ]
  25554. ))
  25555. characterMakers.push(() => makeCharacter(
  25556. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25557. {
  25558. front: {
  25559. height: math.unit(4 + 11 / 12, "feet"),
  25560. weight: math.unit(140, "lb"),
  25561. name: "Front",
  25562. image: {
  25563. source: "./media/characters/sesh/front.svg",
  25564. extra: 3420 / 3231,
  25565. bottom: 72 / 3949.5
  25566. }
  25567. },
  25568. },
  25569. [
  25570. {
  25571. name: "Normal",
  25572. height: math.unit(4 + 11 / 12, "feet")
  25573. },
  25574. {
  25575. name: "Grown",
  25576. height: math.unit(15, "feet"),
  25577. default: true
  25578. },
  25579. {
  25580. name: "Macro",
  25581. height: math.unit(1500, "feet")
  25582. },
  25583. {
  25584. name: "Megamacro",
  25585. height: math.unit(30, "miles")
  25586. },
  25587. {
  25588. name: "Continental",
  25589. height: math.unit(3000, "miles")
  25590. },
  25591. {
  25592. name: "Gravity Mass",
  25593. height: math.unit(300000, "miles")
  25594. },
  25595. {
  25596. name: "Planet Buster",
  25597. height: math.unit(30000000, "miles")
  25598. },
  25599. {
  25600. name: "Big",
  25601. height: math.unit(3000000000, "miles")
  25602. },
  25603. ]
  25604. ))
  25605. characterMakers.push(() => makeCharacter(
  25606. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25607. {
  25608. front: {
  25609. height: math.unit(9, "feet"),
  25610. weight: math.unit(350, "lb"),
  25611. name: "Front",
  25612. image: {
  25613. source: "./media/characters/pepper/front.svg",
  25614. extra: 1448 / 1312,
  25615. bottom: 9.4 / 1457.88
  25616. }
  25617. },
  25618. back: {
  25619. height: math.unit(9, "feet"),
  25620. weight: math.unit(350, "lb"),
  25621. name: "Back",
  25622. image: {
  25623. source: "./media/characters/pepper/back.svg",
  25624. extra: 1423 / 1300,
  25625. bottom: 4.6 / 1429
  25626. }
  25627. },
  25628. maw: {
  25629. height: math.unit(0.932, "feet"),
  25630. name: "Maw",
  25631. image: {
  25632. source: "./media/characters/pepper/maw.svg"
  25633. }
  25634. },
  25635. },
  25636. [
  25637. {
  25638. name: "Normal",
  25639. height: math.unit(9, "feet"),
  25640. default: true
  25641. },
  25642. ]
  25643. ))
  25644. characterMakers.push(() => makeCharacter(
  25645. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25646. {
  25647. front: {
  25648. height: math.unit(6, "feet"),
  25649. weight: math.unit(150, "lb"),
  25650. name: "Front",
  25651. image: {
  25652. source: "./media/characters/maelstrom/front.svg",
  25653. extra: 2100 / 1883,
  25654. bottom: 94 / 2196.7
  25655. }
  25656. },
  25657. },
  25658. [
  25659. {
  25660. name: "Less Kaiju",
  25661. height: math.unit(200, "feet")
  25662. },
  25663. {
  25664. name: "Kaiju",
  25665. height: math.unit(400, "feet"),
  25666. default: true
  25667. },
  25668. {
  25669. name: "Kaiju-er",
  25670. height: math.unit(600, "feet")
  25671. },
  25672. ]
  25673. ))
  25674. characterMakers.push(() => makeCharacter(
  25675. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25676. {
  25677. front: {
  25678. height: math.unit(6 + 5 / 12, "feet"),
  25679. weight: math.unit(180, "lb"),
  25680. name: "Front",
  25681. image: {
  25682. source: "./media/characters/lexir/front.svg",
  25683. extra: 180 / 172,
  25684. bottom: 12 / 192
  25685. }
  25686. },
  25687. back: {
  25688. height: math.unit(6 + 5 / 12, "feet"),
  25689. weight: math.unit(180, "lb"),
  25690. name: "Back",
  25691. image: {
  25692. source: "./media/characters/lexir/back.svg",
  25693. extra: 1273/1201,
  25694. bottom: 39/1312
  25695. }
  25696. },
  25697. },
  25698. [
  25699. {
  25700. name: "Very Smal",
  25701. height: math.unit(1, "nm")
  25702. },
  25703. {
  25704. name: "Normal",
  25705. height: math.unit(6 + 5 / 12, "feet"),
  25706. default: true
  25707. },
  25708. {
  25709. name: "Macro",
  25710. height: math.unit(1, "mile")
  25711. },
  25712. {
  25713. name: "Megamacro",
  25714. height: math.unit(50, "miles")
  25715. },
  25716. ]
  25717. ))
  25718. characterMakers.push(() => makeCharacter(
  25719. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25720. {
  25721. front: {
  25722. height: math.unit(1.5, "meters"),
  25723. weight: math.unit(100, "lb"),
  25724. name: "Front",
  25725. image: {
  25726. source: "./media/characters/maksio/front.svg",
  25727. extra: 1549 / 1531,
  25728. bottom: 123.7 / 1674.5429
  25729. }
  25730. },
  25731. back: {
  25732. height: math.unit(1.5, "meters"),
  25733. weight: math.unit(100, "lb"),
  25734. name: "Back",
  25735. image: {
  25736. source: "./media/characters/maksio/back.svg",
  25737. extra: 1541 / 1509,
  25738. bottom: 97 / 1639
  25739. }
  25740. },
  25741. hand: {
  25742. height: math.unit(0.621, "feet"),
  25743. name: "Hand",
  25744. image: {
  25745. source: "./media/characters/maksio/hand.svg"
  25746. }
  25747. },
  25748. foot: {
  25749. height: math.unit(1.611, "feet"),
  25750. name: "Foot",
  25751. image: {
  25752. source: "./media/characters/maksio/foot.svg"
  25753. }
  25754. },
  25755. },
  25756. [
  25757. {
  25758. name: "Shrunken",
  25759. height: math.unit(10, "cm")
  25760. },
  25761. {
  25762. name: "Normal",
  25763. height: math.unit(150, "cm"),
  25764. default: true
  25765. },
  25766. ]
  25767. ))
  25768. characterMakers.push(() => makeCharacter(
  25769. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25770. {
  25771. front: {
  25772. height: math.unit(100, "feet"),
  25773. name: "Front",
  25774. image: {
  25775. source: "./media/characters/erza-bear/front.svg",
  25776. extra: 2449 / 2390,
  25777. bottom: 46 / 2494
  25778. }
  25779. },
  25780. back: {
  25781. height: math.unit(100, "feet"),
  25782. name: "Back",
  25783. image: {
  25784. source: "./media/characters/erza-bear/back.svg",
  25785. extra: 2489 / 2430,
  25786. bottom: 85.4 / 2480
  25787. }
  25788. },
  25789. tail: {
  25790. height: math.unit(42, "feet"),
  25791. name: "Tail",
  25792. image: {
  25793. source: "./media/characters/erza-bear/tail.svg"
  25794. }
  25795. },
  25796. tongue: {
  25797. height: math.unit(8, "feet"),
  25798. name: "Tongue",
  25799. image: {
  25800. source: "./media/characters/erza-bear/tongue.svg"
  25801. }
  25802. },
  25803. dick: {
  25804. height: math.unit(10.5, "feet"),
  25805. name: "Dick",
  25806. image: {
  25807. source: "./media/characters/erza-bear/dick.svg"
  25808. }
  25809. },
  25810. dickVertical: {
  25811. height: math.unit(16.9, "feet"),
  25812. name: "Dick (Vertical)",
  25813. image: {
  25814. source: "./media/characters/erza-bear/dick-vertical.svg"
  25815. }
  25816. },
  25817. },
  25818. [
  25819. {
  25820. name: "Macro",
  25821. height: math.unit(100, "feet"),
  25822. default: true
  25823. },
  25824. ]
  25825. ))
  25826. characterMakers.push(() => makeCharacter(
  25827. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25828. {
  25829. front: {
  25830. height: math.unit(172, "cm"),
  25831. weight: math.unit(73, "kg"),
  25832. name: "Front",
  25833. image: {
  25834. source: "./media/characters/violet-flor/front.svg",
  25835. extra: 1474/1379,
  25836. bottom: 113/1587
  25837. }
  25838. },
  25839. back: {
  25840. height: math.unit(180, "cm"),
  25841. weight: math.unit(73, "kg"),
  25842. name: "Back",
  25843. image: {
  25844. source: "./media/characters/violet-flor/back.svg",
  25845. extra: 1660/1567,
  25846. bottom: 49/1709
  25847. }
  25848. },
  25849. },
  25850. [
  25851. {
  25852. name: "Normal",
  25853. height: math.unit(172, "cm"),
  25854. default: true
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25860. {
  25861. front: {
  25862. height: math.unit(6, "feet"),
  25863. weight: math.unit(220, "lb"),
  25864. name: "Front",
  25865. image: {
  25866. source: "./media/characters/lynn-rhea/front.svg",
  25867. extra: 310 / 273
  25868. }
  25869. },
  25870. back: {
  25871. height: math.unit(6, "feet"),
  25872. weight: math.unit(220, "lb"),
  25873. name: "Back",
  25874. image: {
  25875. source: "./media/characters/lynn-rhea/back.svg",
  25876. extra: 310 / 273
  25877. }
  25878. },
  25879. dicks: {
  25880. height: math.unit(0.9, "feet"),
  25881. name: "Dicks",
  25882. image: {
  25883. source: "./media/characters/lynn-rhea/dicks.svg"
  25884. }
  25885. },
  25886. slit: {
  25887. height: math.unit(0.4, "feet"),
  25888. name: "Slit",
  25889. image: {
  25890. source: "./media/characters/lynn-rhea/slit.svg"
  25891. }
  25892. },
  25893. },
  25894. [
  25895. {
  25896. name: "Micro",
  25897. height: math.unit(1, "inch")
  25898. },
  25899. {
  25900. name: "Macro",
  25901. height: math.unit(60, "feet"),
  25902. default: true
  25903. },
  25904. {
  25905. name: "Megamacro",
  25906. height: math.unit(2, "miles")
  25907. },
  25908. {
  25909. name: "Gigamacro",
  25910. height: math.unit(3, "earths")
  25911. },
  25912. {
  25913. name: "Galactic",
  25914. height: math.unit(0.8, "galaxies")
  25915. },
  25916. ]
  25917. ))
  25918. characterMakers.push(() => makeCharacter(
  25919. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25920. {
  25921. front: {
  25922. height: math.unit(1600, "feet"),
  25923. weight: math.unit(85758785169, "kg"),
  25924. name: "Front",
  25925. image: {
  25926. source: "./media/characters/valathos/front.svg",
  25927. extra: 1451 / 1339
  25928. }
  25929. },
  25930. },
  25931. [
  25932. {
  25933. name: "Macro",
  25934. height: math.unit(1600, "feet"),
  25935. default: true
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(7 + 5 / 12, "feet"),
  25944. weight: math.unit(300, "lb"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/azula/front.svg",
  25948. extra: 3208 / 2880,
  25949. bottom: 80.2 / 3277
  25950. }
  25951. },
  25952. back: {
  25953. height: math.unit(7 + 5 / 12, "feet"),
  25954. weight: math.unit(300, "lb"),
  25955. name: "Back",
  25956. image: {
  25957. source: "./media/characters/azula/back.svg",
  25958. extra: 3169 / 2822,
  25959. bottom: 150.6 / 3321
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Normal",
  25966. height: math.unit(7 + 5 / 12, "feet"),
  25967. default: true
  25968. },
  25969. {
  25970. name: "Big",
  25971. height: math.unit(20, "feet")
  25972. },
  25973. ]
  25974. ))
  25975. characterMakers.push(() => makeCharacter(
  25976. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25977. {
  25978. front: {
  25979. height: math.unit(5 + 1 / 12, "feet"),
  25980. weight: math.unit(110, "lb"),
  25981. name: "Front",
  25982. image: {
  25983. source: "./media/characters/rupert/front.svg",
  25984. extra: 1549 / 1495,
  25985. bottom: 54.2 / 1604.4
  25986. }
  25987. },
  25988. },
  25989. [
  25990. {
  25991. name: "Normal",
  25992. height: math.unit(5 + 1 / 12, "feet"),
  25993. default: true
  25994. },
  25995. ]
  25996. ))
  25997. characterMakers.push(() => makeCharacter(
  25998. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25999. {
  26000. front: {
  26001. height: math.unit(8 + 4 / 12, "feet"),
  26002. weight: math.unit(350, "lb"),
  26003. name: "Front",
  26004. image: {
  26005. source: "./media/characters/sheera-castellar/front.svg",
  26006. extra: 1957 / 1894,
  26007. bottom: 26.97 / 1975.017
  26008. }
  26009. },
  26010. side: {
  26011. height: math.unit(8 + 4 / 12, "feet"),
  26012. weight: math.unit(350, "lb"),
  26013. name: "Side",
  26014. image: {
  26015. source: "./media/characters/sheera-castellar/side.svg",
  26016. extra: 1957 / 1894
  26017. }
  26018. },
  26019. back: {
  26020. height: math.unit(8 + 4 / 12, "feet"),
  26021. weight: math.unit(350, "lb"),
  26022. name: "Back",
  26023. image: {
  26024. source: "./media/characters/sheera-castellar/back.svg",
  26025. extra: 1957 / 1894
  26026. }
  26027. },
  26028. angled: {
  26029. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  26030. weight: math.unit(350, "lb"),
  26031. name: "Angled",
  26032. image: {
  26033. source: "./media/characters/sheera-castellar/angled.svg",
  26034. extra: 1807 / 1707,
  26035. bottom: 68 / 1875
  26036. }
  26037. },
  26038. genitals: {
  26039. height: math.unit(2.2, "feet"),
  26040. name: "Genitals",
  26041. image: {
  26042. source: "./media/characters/sheera-castellar/genitals.svg"
  26043. }
  26044. },
  26045. taur: {
  26046. height: math.unit(10 + 6/12, "feet"),
  26047. name: "Taur",
  26048. image: {
  26049. source: "./media/characters/sheera-castellar/taur.svg",
  26050. extra: 2017/1909,
  26051. bottom: 185/2202
  26052. }
  26053. },
  26054. },
  26055. [
  26056. {
  26057. name: "Normal",
  26058. height: math.unit(8 + 4 / 12, "feet")
  26059. },
  26060. {
  26061. name: "Macro",
  26062. height: math.unit(150, "feet"),
  26063. default: true
  26064. },
  26065. {
  26066. name: "Macro+",
  26067. height: math.unit(800, "feet")
  26068. },
  26069. ]
  26070. ))
  26071. characterMakers.push(() => makeCharacter(
  26072. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  26073. {
  26074. front: {
  26075. height: math.unit(6, "feet"),
  26076. weight: math.unit(150, "lb"),
  26077. name: "Front",
  26078. image: {
  26079. source: "./media/characters/jaipur/front.svg",
  26080. extra: 3860 / 3731,
  26081. bottom: 287 / 4140
  26082. }
  26083. },
  26084. back: {
  26085. height: math.unit(6, "feet"),
  26086. weight: math.unit(150, "lb"),
  26087. name: "Back",
  26088. image: {
  26089. source: "./media/characters/jaipur/back.svg",
  26090. extra: 1637/1561,
  26091. bottom: 154/1791
  26092. }
  26093. },
  26094. },
  26095. [
  26096. {
  26097. name: "Normal",
  26098. height: math.unit(1.85, "meters"),
  26099. default: true
  26100. },
  26101. {
  26102. name: "Macro",
  26103. height: math.unit(150, "meters")
  26104. },
  26105. {
  26106. name: "Macro+",
  26107. height: math.unit(0.5, "miles")
  26108. },
  26109. {
  26110. name: "Macro++",
  26111. height: math.unit(2.5, "miles")
  26112. },
  26113. {
  26114. name: "Macro+++",
  26115. height: math.unit(12, "miles")
  26116. },
  26117. {
  26118. name: "Macro++++",
  26119. height: math.unit(120, "miles")
  26120. },
  26121. {
  26122. name: "Macro+++++",
  26123. height: math.unit(1200, "miles")
  26124. },
  26125. ]
  26126. ))
  26127. characterMakers.push(() => makeCharacter(
  26128. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  26129. {
  26130. front: {
  26131. height: math.unit(6, "feet"),
  26132. weight: math.unit(150, "lb"),
  26133. name: "Front",
  26134. image: {
  26135. source: "./media/characters/sheila-wolf/front.svg",
  26136. extra: 1931 / 1808,
  26137. bottom: 29.5 / 1960
  26138. }
  26139. },
  26140. dick: {
  26141. height: math.unit(1.464, "feet"),
  26142. name: "Dick",
  26143. image: {
  26144. source: "./media/characters/sheila-wolf/dick.svg"
  26145. }
  26146. },
  26147. muzzle: {
  26148. height: math.unit(0.513, "feet"),
  26149. name: "Muzzle",
  26150. image: {
  26151. source: "./media/characters/sheila-wolf/muzzle.svg"
  26152. }
  26153. },
  26154. },
  26155. [
  26156. {
  26157. name: "Macro",
  26158. height: math.unit(70, "feet"),
  26159. default: true
  26160. },
  26161. ]
  26162. ))
  26163. characterMakers.push(() => makeCharacter(
  26164. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  26165. {
  26166. front: {
  26167. height: math.unit(32, "meters"),
  26168. weight: math.unit(300000, "kg"),
  26169. name: "Front",
  26170. image: {
  26171. source: "./media/characters/almor/front.svg",
  26172. extra: 1408 / 1322,
  26173. bottom: 94.6 / 1506.5
  26174. }
  26175. },
  26176. },
  26177. [
  26178. {
  26179. name: "Macro",
  26180. height: math.unit(32, "meters"),
  26181. default: true
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  26187. {
  26188. front: {
  26189. height: math.unit(7, "feet"),
  26190. weight: math.unit(200, "lb"),
  26191. name: "Front",
  26192. image: {
  26193. source: "./media/characters/silver/front.svg",
  26194. extra: 472.1 / 450.5,
  26195. bottom: 26.5 / 499.424
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Normal",
  26202. height: math.unit(7, "feet"),
  26203. default: true
  26204. },
  26205. {
  26206. name: "Macro",
  26207. height: math.unit(800, "feet")
  26208. },
  26209. {
  26210. name: "Megamacro",
  26211. height: math.unit(250, "miles")
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  26217. {
  26218. front: {
  26219. height: math.unit(6, "feet"),
  26220. weight: math.unit(150, "lb"),
  26221. name: "Front",
  26222. image: {
  26223. source: "./media/characters/pliskin/front.svg",
  26224. extra: 1469 / 1359,
  26225. bottom: 70 / 1540
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Micro",
  26232. height: math.unit(3, "inches")
  26233. },
  26234. {
  26235. name: "Normal",
  26236. height: math.unit(5 + 11 / 12, "feet"),
  26237. default: true
  26238. },
  26239. {
  26240. name: "Macro",
  26241. height: math.unit(120, "feet")
  26242. },
  26243. ]
  26244. ))
  26245. characterMakers.push(() => makeCharacter(
  26246. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  26247. {
  26248. front: {
  26249. height: math.unit(6, "feet"),
  26250. weight: math.unit(150, "lb"),
  26251. name: "Front",
  26252. image: {
  26253. source: "./media/characters/sammy/front.svg",
  26254. extra: 1193 / 1089,
  26255. bottom: 30.5 / 1226
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Macro",
  26262. height: math.unit(1700, "feet"),
  26263. default: true
  26264. },
  26265. {
  26266. name: "Examacro",
  26267. height: math.unit(2.5e9, "lightyears")
  26268. },
  26269. ]
  26270. ))
  26271. characterMakers.push(() => makeCharacter(
  26272. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  26273. {
  26274. front: {
  26275. height: math.unit(21, "meters"),
  26276. weight: math.unit(12, "tonnes"),
  26277. name: "Front",
  26278. image: {
  26279. source: "./media/characters/kuru/front.svg",
  26280. extra: 4301 / 3785,
  26281. bottom: 371.3 / 4691
  26282. }
  26283. },
  26284. },
  26285. [
  26286. {
  26287. name: "Macro",
  26288. height: math.unit(21, "meters"),
  26289. default: true
  26290. },
  26291. ]
  26292. ))
  26293. characterMakers.push(() => makeCharacter(
  26294. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  26295. {
  26296. front: {
  26297. height: math.unit(23, "meters"),
  26298. weight: math.unit(12.2, "tonnes"),
  26299. name: "Front",
  26300. image: {
  26301. source: "./media/characters/rakka/front.svg",
  26302. extra: 4670 / 4169,
  26303. bottom: 301 / 4968.7
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Macro",
  26310. height: math.unit(23, "meters"),
  26311. default: true
  26312. },
  26313. ]
  26314. ))
  26315. characterMakers.push(() => makeCharacter(
  26316. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  26317. {
  26318. front: {
  26319. height: math.unit(6, "feet"),
  26320. weight: math.unit(150, "lb"),
  26321. name: "Front",
  26322. image: {
  26323. source: "./media/characters/rhys-feline/front.svg",
  26324. extra: 2488 / 2308,
  26325. bottom: 35.67 / 2519.19
  26326. }
  26327. },
  26328. },
  26329. [
  26330. {
  26331. name: "Really Small",
  26332. height: math.unit(1, "nm")
  26333. },
  26334. {
  26335. name: "Micro",
  26336. height: math.unit(4, "inches")
  26337. },
  26338. {
  26339. name: "Normal",
  26340. height: math.unit(4 + 10 / 12, "feet"),
  26341. default: true
  26342. },
  26343. {
  26344. name: "Macro",
  26345. height: math.unit(100, "feet")
  26346. },
  26347. {
  26348. name: "Megamacto",
  26349. height: math.unit(50, "miles")
  26350. },
  26351. ]
  26352. ))
  26353. characterMakers.push(() => makeCharacter(
  26354. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26355. {
  26356. side: {
  26357. height: math.unit(30, "feet"),
  26358. weight: math.unit(35000, "kg"),
  26359. name: "Side",
  26360. image: {
  26361. source: "./media/characters/alydar/side.svg",
  26362. extra: 234 / 222,
  26363. bottom: 6.5 / 241
  26364. }
  26365. },
  26366. front: {
  26367. height: math.unit(30, "feet"),
  26368. weight: math.unit(35000, "kg"),
  26369. name: "Front",
  26370. image: {
  26371. source: "./media/characters/alydar/front.svg",
  26372. extra: 223.37 / 210.2,
  26373. bottom: 22.3 / 246.76
  26374. }
  26375. },
  26376. top: {
  26377. height: math.unit(64.54, "feet"),
  26378. weight: math.unit(35000, "kg"),
  26379. name: "Top",
  26380. image: {
  26381. source: "./media/characters/alydar/top.svg"
  26382. }
  26383. },
  26384. anthro: {
  26385. height: math.unit(30, "feet"),
  26386. weight: math.unit(9000, "kg"),
  26387. name: "Anthro",
  26388. image: {
  26389. source: "./media/characters/alydar/anthro.svg",
  26390. extra: 432 / 421,
  26391. bottom: 7.18 / 440
  26392. }
  26393. },
  26394. maw: {
  26395. height: math.unit(11.693, "feet"),
  26396. name: "Maw",
  26397. image: {
  26398. source: "./media/characters/alydar/maw.svg"
  26399. }
  26400. },
  26401. head: {
  26402. height: math.unit(11.693, "feet"),
  26403. name: "Head",
  26404. image: {
  26405. source: "./media/characters/alydar/head.svg"
  26406. }
  26407. },
  26408. headAlt: {
  26409. height: math.unit(12.861, "feet"),
  26410. name: "Head (Alt)",
  26411. image: {
  26412. source: "./media/characters/alydar/head-alt.svg"
  26413. }
  26414. },
  26415. wing: {
  26416. height: math.unit(20.712, "feet"),
  26417. name: "Wing",
  26418. image: {
  26419. source: "./media/characters/alydar/wing.svg"
  26420. }
  26421. },
  26422. wingFeather: {
  26423. height: math.unit(9.662, "feet"),
  26424. name: "Wing Feather",
  26425. image: {
  26426. source: "./media/characters/alydar/wing-feather.svg"
  26427. }
  26428. },
  26429. countourFeather: {
  26430. height: math.unit(4.154, "feet"),
  26431. name: "Contour Feather",
  26432. image: {
  26433. source: "./media/characters/alydar/contour-feather.svg"
  26434. }
  26435. },
  26436. },
  26437. [
  26438. {
  26439. name: "Diplomatic",
  26440. height: math.unit(13, "feet"),
  26441. default: true
  26442. },
  26443. {
  26444. name: "Small",
  26445. height: math.unit(30, "feet")
  26446. },
  26447. {
  26448. name: "Normal",
  26449. height: math.unit(95, "feet"),
  26450. default: true
  26451. },
  26452. {
  26453. name: "Large",
  26454. height: math.unit(285, "feet")
  26455. },
  26456. {
  26457. name: "Incomprehensible",
  26458. height: math.unit(450, "megameters")
  26459. },
  26460. ]
  26461. ))
  26462. characterMakers.push(() => makeCharacter(
  26463. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26464. {
  26465. side: {
  26466. height: math.unit(11, "feet"),
  26467. weight: math.unit(1750, "kg"),
  26468. name: "Side",
  26469. image: {
  26470. source: "./media/characters/selicia/side.svg",
  26471. extra: 440 / 396,
  26472. bottom: 24.8 / 465.979
  26473. }
  26474. },
  26475. maw: {
  26476. height: math.unit(4.665, "feet"),
  26477. name: "Maw",
  26478. image: {
  26479. source: "./media/characters/selicia/maw.svg"
  26480. }
  26481. },
  26482. },
  26483. [
  26484. {
  26485. name: "Normal",
  26486. height: math.unit(11, "feet"),
  26487. default: true
  26488. },
  26489. ]
  26490. ))
  26491. characterMakers.push(() => makeCharacter(
  26492. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26493. {
  26494. side: {
  26495. height: math.unit(2 + 6 / 12, "feet"),
  26496. weight: math.unit(30, "lb"),
  26497. name: "Side",
  26498. image: {
  26499. source: "./media/characters/layla/side.svg",
  26500. extra: 244 / 188,
  26501. bottom: 18.2 / 262.1
  26502. }
  26503. },
  26504. back: {
  26505. height: math.unit(2 + 6 / 12, "feet"),
  26506. weight: math.unit(30, "lb"),
  26507. name: "Back",
  26508. image: {
  26509. source: "./media/characters/layla/back.svg",
  26510. extra: 308 / 241.5,
  26511. bottom: 8.9 / 316.8
  26512. }
  26513. },
  26514. cumming: {
  26515. height: math.unit(2 + 6 / 12, "feet"),
  26516. weight: math.unit(30, "lb"),
  26517. name: "Cumming",
  26518. image: {
  26519. source: "./media/characters/layla/cumming.svg",
  26520. extra: 342 / 279,
  26521. bottom: 595 / 938
  26522. }
  26523. },
  26524. dickFlaccid: {
  26525. height: math.unit(2.595, "feet"),
  26526. name: "Flaccid Genitals",
  26527. image: {
  26528. source: "./media/characters/layla/dick-flaccid.svg"
  26529. }
  26530. },
  26531. dickErect: {
  26532. height: math.unit(2.359, "feet"),
  26533. name: "Erect Genitals",
  26534. image: {
  26535. source: "./media/characters/layla/dick-erect.svg"
  26536. }
  26537. },
  26538. dragon: {
  26539. height: math.unit(40, "feet"),
  26540. name: "Dragon",
  26541. image: {
  26542. source: "./media/characters/layla/dragon.svg",
  26543. extra: 610/535,
  26544. bottom: 367/977
  26545. }
  26546. },
  26547. taur: {
  26548. height: math.unit(30, "feet"),
  26549. name: "Taur",
  26550. image: {
  26551. source: "./media/characters/layla/taur.svg",
  26552. extra: 1268/1199,
  26553. bottom: 112/1380
  26554. }
  26555. },
  26556. },
  26557. [
  26558. {
  26559. name: "Micro",
  26560. height: math.unit(1, "inch")
  26561. },
  26562. {
  26563. name: "Small",
  26564. height: math.unit(1, "foot")
  26565. },
  26566. {
  26567. name: "Normal",
  26568. height: math.unit(2 + 6 / 12, "feet"),
  26569. default: true
  26570. },
  26571. {
  26572. name: "Macro",
  26573. height: math.unit(200, "feet")
  26574. },
  26575. {
  26576. name: "Megamacro",
  26577. height: math.unit(1000, "miles")
  26578. },
  26579. {
  26580. name: "Planetary",
  26581. height: math.unit(8000, "miles")
  26582. },
  26583. {
  26584. name: "True Layla",
  26585. height: math.unit(200000 * 7, "multiverses")
  26586. },
  26587. ]
  26588. ))
  26589. characterMakers.push(() => makeCharacter(
  26590. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26591. {
  26592. back: {
  26593. height: math.unit(10.5, "feet"),
  26594. weight: math.unit(800, "lb"),
  26595. name: "Back",
  26596. image: {
  26597. source: "./media/characters/knox/back.svg",
  26598. extra: 1486 / 1089,
  26599. bottom: 107 / 1601.4
  26600. }
  26601. },
  26602. side: {
  26603. height: math.unit(10.5, "feet"),
  26604. weight: math.unit(800, "lb"),
  26605. name: "Side",
  26606. image: {
  26607. source: "./media/characters/knox/side.svg",
  26608. extra: 244 / 218,
  26609. bottom: 14 / 260
  26610. }
  26611. },
  26612. },
  26613. [
  26614. {
  26615. name: "Compact",
  26616. height: math.unit(10.5, "feet"),
  26617. default: true
  26618. },
  26619. {
  26620. name: "Dynamax",
  26621. height: math.unit(210, "feet")
  26622. },
  26623. {
  26624. name: "Full Macro",
  26625. height: math.unit(850, "feet")
  26626. },
  26627. ]
  26628. ))
  26629. characterMakers.push(() => makeCharacter(
  26630. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26631. {
  26632. front: {
  26633. height: math.unit(28, "feet"),
  26634. weight: math.unit(10500, "lb"),
  26635. name: "Front",
  26636. image: {
  26637. source: "./media/characters/kayda/front.svg",
  26638. extra: 1536 / 1428,
  26639. bottom: 68.7 / 1603
  26640. }
  26641. },
  26642. back: {
  26643. height: math.unit(28, "feet"),
  26644. weight: math.unit(10500, "lb"),
  26645. name: "Back",
  26646. image: {
  26647. source: "./media/characters/kayda/back.svg",
  26648. extra: 1557 / 1464,
  26649. bottom: 39.5 / 1597.49
  26650. }
  26651. },
  26652. dick: {
  26653. height: math.unit(3.858, "feet"),
  26654. name: "Dick",
  26655. image: {
  26656. source: "./media/characters/kayda/dick.svg"
  26657. }
  26658. },
  26659. },
  26660. [
  26661. {
  26662. name: "Macro",
  26663. height: math.unit(28, "feet"),
  26664. default: true
  26665. },
  26666. ]
  26667. ))
  26668. characterMakers.push(() => makeCharacter(
  26669. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26670. {
  26671. front: {
  26672. height: math.unit(10 + 11 / 12, "feet"),
  26673. weight: math.unit(1400, "lb"),
  26674. name: "Front",
  26675. image: {
  26676. source: "./media/characters/brian/front.svg",
  26677. extra: 737 / 692,
  26678. bottom: 55.4 / 785
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(10 + 11 / 12, "feet"),
  26686. default: true
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26692. {
  26693. front: {
  26694. height: math.unit(5 + 8 / 12, "feet"),
  26695. weight: math.unit(140, "lb"),
  26696. name: "Front",
  26697. image: {
  26698. source: "./media/characters/khemri/front.svg",
  26699. extra: 4780 / 4059,
  26700. bottom: 80.1 / 4859.25
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Micro",
  26707. height: math.unit(6, "inches")
  26708. },
  26709. {
  26710. name: "Normal",
  26711. height: math.unit(5 + 8 / 12, "feet"),
  26712. default: true
  26713. },
  26714. ]
  26715. ))
  26716. characterMakers.push(() => makeCharacter(
  26717. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26718. {
  26719. front: {
  26720. height: math.unit(13, "feet"),
  26721. weight: math.unit(1700, "lb"),
  26722. name: "Front",
  26723. image: {
  26724. source: "./media/characters/felix-braveheart/front.svg",
  26725. extra: 1222 / 1157,
  26726. bottom: 53.2 / 1280
  26727. }
  26728. },
  26729. back: {
  26730. height: math.unit(13, "feet"),
  26731. weight: math.unit(1700, "lb"),
  26732. name: "Back",
  26733. image: {
  26734. source: "./media/characters/felix-braveheart/back.svg",
  26735. extra: 1277 / 1203,
  26736. bottom: 50.2 / 1327
  26737. }
  26738. },
  26739. feral: {
  26740. height: math.unit(6, "feet"),
  26741. weight: math.unit(400, "lb"),
  26742. name: "Feral",
  26743. image: {
  26744. source: "./media/characters/felix-braveheart/feral.svg",
  26745. extra: 682 / 625,
  26746. bottom: 6.9 / 688
  26747. }
  26748. },
  26749. },
  26750. [
  26751. {
  26752. name: "Normal",
  26753. height: math.unit(13, "feet"),
  26754. default: true
  26755. },
  26756. ]
  26757. ))
  26758. characterMakers.push(() => makeCharacter(
  26759. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26760. {
  26761. side: {
  26762. height: math.unit(5 + 11 / 12, "feet"),
  26763. weight: math.unit(1400, "lb"),
  26764. name: "Side",
  26765. image: {
  26766. source: "./media/characters/shadow-blade/side.svg",
  26767. extra: 1726 / 1267,
  26768. bottom: 58.4 / 1785
  26769. }
  26770. },
  26771. },
  26772. [
  26773. {
  26774. name: "Normal",
  26775. height: math.unit(5 + 11 / 12, "feet"),
  26776. default: true
  26777. },
  26778. ]
  26779. ))
  26780. characterMakers.push(() => makeCharacter(
  26781. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26782. {
  26783. front: {
  26784. height: math.unit(1 + 6 / 12, "feet"),
  26785. weight: math.unit(25, "lb"),
  26786. name: "Front",
  26787. image: {
  26788. source: "./media/characters/karla-halldor/front.svg",
  26789. extra: 1459 / 1383,
  26790. bottom: 12 / 1472
  26791. }
  26792. },
  26793. },
  26794. [
  26795. {
  26796. name: "Normal",
  26797. height: math.unit(1 + 6 / 12, "feet"),
  26798. default: true
  26799. },
  26800. ]
  26801. ))
  26802. characterMakers.push(() => makeCharacter(
  26803. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26804. {
  26805. front: {
  26806. height: math.unit(6 + 2 / 12, "feet"),
  26807. weight: math.unit(160, "lb"),
  26808. name: "Front",
  26809. image: {
  26810. source: "./media/characters/ariam/front.svg",
  26811. extra: 1073/976,
  26812. bottom: 52/1125
  26813. }
  26814. },
  26815. back: {
  26816. height: math.unit(6 + 2/12, "feet"),
  26817. weight: math.unit(160, "lb"),
  26818. name: "Back",
  26819. image: {
  26820. source: "./media/characters/ariam/back.svg",
  26821. extra: 1103/1023,
  26822. bottom: 9/1112
  26823. }
  26824. },
  26825. dressed: {
  26826. height: math.unit(6 + 2/12, "feet"),
  26827. weight: math.unit(160, "lb"),
  26828. name: "Dressed",
  26829. image: {
  26830. source: "./media/characters/ariam/dressed.svg",
  26831. extra: 1099/1009,
  26832. bottom: 25/1124
  26833. }
  26834. },
  26835. squatting: {
  26836. height: math.unit(4.1, "feet"),
  26837. weight: math.unit(160, "lb"),
  26838. name: "Squatting",
  26839. image: {
  26840. source: "./media/characters/ariam/squatting.svg",
  26841. extra: 2617 / 2112,
  26842. bottom: 61.2 / 2681,
  26843. }
  26844. },
  26845. },
  26846. [
  26847. {
  26848. name: "Normal",
  26849. height: math.unit(6 + 2 / 12, "feet"),
  26850. default: true
  26851. },
  26852. {
  26853. name: "Normal+",
  26854. height: math.unit(4, "meters")
  26855. },
  26856. {
  26857. name: "Macro",
  26858. height: math.unit(50, "meters")
  26859. },
  26860. {
  26861. name: "Macro+",
  26862. height: math.unit(100, "meters")
  26863. },
  26864. {
  26865. name: "Megamacro",
  26866. height: math.unit(20, "km")
  26867. },
  26868. {
  26869. name: "Caretaker",
  26870. height: math.unit(444, "megameters")
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26876. {
  26877. front: {
  26878. height: math.unit(1.67, "meters"),
  26879. weight: math.unit(140, "lb"),
  26880. name: "Front",
  26881. image: {
  26882. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26883. extra: 438 / 410,
  26884. bottom: 0.75 / 439
  26885. }
  26886. },
  26887. },
  26888. [
  26889. {
  26890. name: "Shrunken",
  26891. height: math.unit(7.6, "cm")
  26892. },
  26893. {
  26894. name: "Human Scale",
  26895. height: math.unit(1.67, "meters")
  26896. },
  26897. {
  26898. name: "Wolxi Scale",
  26899. height: math.unit(36.7, "meters"),
  26900. default: true
  26901. },
  26902. ]
  26903. ))
  26904. characterMakers.push(() => makeCharacter(
  26905. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26906. {
  26907. front: {
  26908. height: math.unit(1.73, "meters"),
  26909. weight: math.unit(240, "lb"),
  26910. name: "Front",
  26911. image: {
  26912. source: "./media/characters/izue-two-mothers/front.svg",
  26913. extra: 469 / 437,
  26914. bottom: 1.24 / 470.6
  26915. }
  26916. },
  26917. },
  26918. [
  26919. {
  26920. name: "Shrunken",
  26921. height: math.unit(7.86, "cm")
  26922. },
  26923. {
  26924. name: "Human Scale",
  26925. height: math.unit(1.73, "meters")
  26926. },
  26927. {
  26928. name: "Wolxi Scale",
  26929. height: math.unit(38, "meters"),
  26930. default: true
  26931. },
  26932. ]
  26933. ))
  26934. characterMakers.push(() => makeCharacter(
  26935. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26936. {
  26937. front: {
  26938. height: math.unit(1.55, "meters"),
  26939. weight: math.unit(120, "lb"),
  26940. name: "Front",
  26941. image: {
  26942. source: "./media/characters/teeku-love-shack/front.svg",
  26943. extra: 387 / 362,
  26944. bottom: 1.51 / 388
  26945. }
  26946. },
  26947. },
  26948. [
  26949. {
  26950. name: "Shrunken",
  26951. height: math.unit(7, "cm")
  26952. },
  26953. {
  26954. name: "Human Scale",
  26955. height: math.unit(1.55, "meters")
  26956. },
  26957. {
  26958. name: "Wolxi Scale",
  26959. height: math.unit(34.1, "meters"),
  26960. default: true
  26961. },
  26962. ]
  26963. ))
  26964. characterMakers.push(() => makeCharacter(
  26965. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26966. {
  26967. front: {
  26968. height: math.unit(1.83, "meters"),
  26969. weight: math.unit(135, "lb"),
  26970. name: "Front",
  26971. image: {
  26972. source: "./media/characters/dejma-the-red/front.svg",
  26973. extra: 480 / 458,
  26974. bottom: 1.8 / 482
  26975. }
  26976. },
  26977. },
  26978. [
  26979. {
  26980. name: "Shrunken",
  26981. height: math.unit(8.3, "cm")
  26982. },
  26983. {
  26984. name: "Human Scale",
  26985. height: math.unit(1.83, "meters")
  26986. },
  26987. {
  26988. name: "Wolxi Scale",
  26989. height: math.unit(40, "meters"),
  26990. default: true
  26991. },
  26992. ]
  26993. ))
  26994. characterMakers.push(() => makeCharacter(
  26995. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26996. {
  26997. front: {
  26998. height: math.unit(1.78, "meters"),
  26999. weight: math.unit(65, "kg"),
  27000. name: "Front",
  27001. image: {
  27002. source: "./media/characters/aki/front.svg",
  27003. extra: 452 / 415
  27004. }
  27005. },
  27006. frontNsfw: {
  27007. height: math.unit(1.78, "meters"),
  27008. weight: math.unit(65, "kg"),
  27009. name: "Front (NSFW)",
  27010. image: {
  27011. source: "./media/characters/aki/front-nsfw.svg",
  27012. extra: 452 / 415
  27013. }
  27014. },
  27015. back: {
  27016. height: math.unit(1.78, "meters"),
  27017. weight: math.unit(65, "kg"),
  27018. name: "Back",
  27019. image: {
  27020. source: "./media/characters/aki/back.svg",
  27021. extra: 452 / 415
  27022. }
  27023. },
  27024. rump: {
  27025. height: math.unit(2.05, "feet"),
  27026. name: "Rump",
  27027. image: {
  27028. source: "./media/characters/aki/rump.svg"
  27029. }
  27030. },
  27031. dick: {
  27032. height: math.unit(0.95, "feet"),
  27033. name: "Dick",
  27034. image: {
  27035. source: "./media/characters/aki/dick.svg"
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Micro",
  27042. height: math.unit(15, "cm")
  27043. },
  27044. {
  27045. name: "Normal",
  27046. height: math.unit(178, "cm"),
  27047. default: true
  27048. },
  27049. {
  27050. name: "Macro",
  27051. height: math.unit(214, "m")
  27052. },
  27053. {
  27054. name: "Macro+",
  27055. height: math.unit(534, "m")
  27056. },
  27057. ]
  27058. ))
  27059. characterMakers.push(() => makeCharacter(
  27060. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  27061. {
  27062. front: {
  27063. height: math.unit(5 + 5 / 12, "feet"),
  27064. weight: math.unit(120, "lb"),
  27065. name: "Front",
  27066. image: {
  27067. source: "./media/characters/ari/front.svg",
  27068. extra: 1550/1471,
  27069. bottom: 39/1589
  27070. }
  27071. },
  27072. },
  27073. [
  27074. {
  27075. name: "Normal",
  27076. height: math.unit(5 + 5 / 12, "feet")
  27077. },
  27078. {
  27079. name: "Macro",
  27080. height: math.unit(100, "feet"),
  27081. default: true
  27082. },
  27083. {
  27084. name: "Megamacro",
  27085. height: math.unit(100, "miles")
  27086. },
  27087. {
  27088. name: "Gigamacro",
  27089. height: math.unit(80000, "miles")
  27090. },
  27091. ]
  27092. ))
  27093. characterMakers.push(() => makeCharacter(
  27094. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  27095. {
  27096. side: {
  27097. height: math.unit(9, "feet"),
  27098. weight: math.unit(400, "kg"),
  27099. name: "Side",
  27100. image: {
  27101. source: "./media/characters/bolt/side.svg",
  27102. extra: 1126 / 896,
  27103. bottom: 60 / 1187.3,
  27104. }
  27105. },
  27106. },
  27107. [
  27108. {
  27109. name: "Micro",
  27110. height: math.unit(5, "inches")
  27111. },
  27112. {
  27113. name: "Normal",
  27114. height: math.unit(9, "feet"),
  27115. default: true
  27116. },
  27117. {
  27118. name: "Macro",
  27119. height: math.unit(700, "feet")
  27120. },
  27121. {
  27122. name: "Max Size",
  27123. height: math.unit(1.52e22, "yottameters")
  27124. },
  27125. ]
  27126. ))
  27127. characterMakers.push(() => makeCharacter(
  27128. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  27129. {
  27130. front: {
  27131. height: math.unit(4.3, "meters"),
  27132. weight: math.unit(3, "tons"),
  27133. name: "Front",
  27134. image: {
  27135. source: "./media/characters/draekon-sylviar/front.svg",
  27136. extra: 2072/1512,
  27137. bottom: 74/2146
  27138. }
  27139. },
  27140. back: {
  27141. height: math.unit(4.3, "meters"),
  27142. weight: math.unit(3, "tons"),
  27143. name: "Back",
  27144. image: {
  27145. source: "./media/characters/draekon-sylviar/back.svg",
  27146. extra: 1639/1483,
  27147. bottom: 41/1680
  27148. }
  27149. },
  27150. feral: {
  27151. height: math.unit(1.15, "meters"),
  27152. weight: math.unit(3, "tons"),
  27153. name: "Feral",
  27154. image: {
  27155. source: "./media/characters/draekon-sylviar/feral.svg",
  27156. extra: 1033/395,
  27157. bottom: 130/1163
  27158. }
  27159. },
  27160. maw: {
  27161. height: math.unit(1.3, "meters"),
  27162. name: "Maw",
  27163. image: {
  27164. source: "./media/characters/draekon-sylviar/maw.svg"
  27165. }
  27166. },
  27167. mawSeparated: {
  27168. height: math.unit(1.53, "meters"),
  27169. name: "Separated Maw",
  27170. image: {
  27171. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  27172. }
  27173. },
  27174. tail: {
  27175. height: math.unit(1.15, "meters"),
  27176. name: "Tail",
  27177. image: {
  27178. source: "./media/characters/draekon-sylviar/tail.svg"
  27179. }
  27180. },
  27181. tailDick: {
  27182. height: math.unit(1.15, "meters"),
  27183. name: "Tail (Dick)",
  27184. image: {
  27185. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  27186. }
  27187. },
  27188. tailDickSeparated: {
  27189. height: math.unit(1.19, "meters"),
  27190. name: "Tail (Separated Dick)",
  27191. image: {
  27192. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  27193. }
  27194. },
  27195. slit: {
  27196. height: math.unit(1, "meters"),
  27197. name: "Slit",
  27198. image: {
  27199. source: "./media/characters/draekon-sylviar/slit.svg"
  27200. }
  27201. },
  27202. dick: {
  27203. height: math.unit(1.15, "meters"),
  27204. name: "Dick",
  27205. image: {
  27206. source: "./media/characters/draekon-sylviar/dick.svg"
  27207. }
  27208. },
  27209. dickSeparated: {
  27210. height: math.unit(1.1, "meters"),
  27211. name: "Separated Dick",
  27212. image: {
  27213. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  27214. }
  27215. },
  27216. sheath: {
  27217. height: math.unit(1.15, "meters"),
  27218. name: "Sheath",
  27219. image: {
  27220. source: "./media/characters/draekon-sylviar/sheath.svg"
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Small",
  27227. height: math.unit(4.53 / 2, "meters"),
  27228. default: true
  27229. },
  27230. {
  27231. name: "Normal",
  27232. height: math.unit(4.53, "meters"),
  27233. default: true
  27234. },
  27235. {
  27236. name: "Large",
  27237. height: math.unit(4.53 * 2, "meters"),
  27238. },
  27239. ]
  27240. ))
  27241. characterMakers.push(() => makeCharacter(
  27242. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  27243. {
  27244. front: {
  27245. height: math.unit(6 + 2 / 12, "feet"),
  27246. weight: math.unit(180, "lb"),
  27247. name: "Front",
  27248. image: {
  27249. source: "./media/characters/brawler/front.svg",
  27250. extra: 3301 / 3027,
  27251. bottom: 138 / 3439
  27252. }
  27253. },
  27254. },
  27255. [
  27256. {
  27257. name: "Normal",
  27258. height: math.unit(6 + 2 / 12, "feet"),
  27259. default: true
  27260. },
  27261. ]
  27262. ))
  27263. characterMakers.push(() => makeCharacter(
  27264. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  27265. {
  27266. front: {
  27267. height: math.unit(11, "feet"),
  27268. weight: math.unit(1000, "lb"),
  27269. name: "Front",
  27270. image: {
  27271. source: "./media/characters/alex/front.svg",
  27272. bottom: 44.5 / 620
  27273. }
  27274. },
  27275. },
  27276. [
  27277. {
  27278. name: "Micro",
  27279. height: math.unit(5, "inches")
  27280. },
  27281. {
  27282. name: "Normal",
  27283. height: math.unit(11, "feet"),
  27284. default: true
  27285. },
  27286. {
  27287. name: "Macro",
  27288. height: math.unit(9.5e9, "feet")
  27289. },
  27290. {
  27291. name: "Max Size",
  27292. height: math.unit(1.4e283, "yottameters")
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  27298. {
  27299. female: {
  27300. height: math.unit(29.9, "m"),
  27301. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  27302. name: "Female",
  27303. image: {
  27304. source: "./media/characters/zenari/female.svg",
  27305. extra: 3281.6 / 3217,
  27306. bottom: 72.2 / 3353
  27307. }
  27308. },
  27309. male: {
  27310. height: math.unit(27.7, "m"),
  27311. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  27312. name: "Male",
  27313. image: {
  27314. source: "./media/characters/zenari/male.svg",
  27315. extra: 3008 / 2991,
  27316. bottom: 54.6 / 3069
  27317. }
  27318. },
  27319. },
  27320. [
  27321. {
  27322. name: "Macro",
  27323. height: math.unit(29.7, "meters"),
  27324. default: true
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27330. {
  27331. female: {
  27332. height: math.unit(23.8, "m"),
  27333. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27334. name: "Female",
  27335. image: {
  27336. source: "./media/characters/mactarian/female.svg",
  27337. extra: 2662 / 2569,
  27338. bottom: 73 / 2736
  27339. }
  27340. },
  27341. male: {
  27342. height: math.unit(23.8, "m"),
  27343. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27344. name: "Male",
  27345. image: {
  27346. source: "./media/characters/mactarian/male.svg",
  27347. extra: 2673 / 2600,
  27348. bottom: 76 / 2750
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Macro",
  27355. height: math.unit(23.8, "meters"),
  27356. default: true
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27362. {
  27363. female: {
  27364. height: math.unit(19.3, "m"),
  27365. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27366. name: "Female",
  27367. image: {
  27368. source: "./media/characters/umok/female.svg",
  27369. extra: 2186 / 2078,
  27370. bottom: 87 / 2277
  27371. }
  27372. },
  27373. male: {
  27374. height: math.unit(19.5, "m"),
  27375. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27376. name: "Male",
  27377. image: {
  27378. source: "./media/characters/umok/male.svg",
  27379. extra: 2233 / 2140,
  27380. bottom: 24.4 / 2258
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Macro",
  27387. height: math.unit(19.3, "meters"),
  27388. default: true
  27389. },
  27390. ]
  27391. ))
  27392. characterMakers.push(() => makeCharacter(
  27393. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27394. {
  27395. female: {
  27396. height: math.unit(26.15, "m"),
  27397. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27398. name: "Female",
  27399. image: {
  27400. source: "./media/characters/joraxian/female.svg",
  27401. extra: 2912 / 2824,
  27402. bottom: 36 / 2956
  27403. }
  27404. },
  27405. male: {
  27406. height: math.unit(25.4, "m"),
  27407. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27408. name: "Male",
  27409. image: {
  27410. source: "./media/characters/joraxian/male.svg",
  27411. extra: 2877 / 2721,
  27412. bottom: 82 / 2967
  27413. }
  27414. },
  27415. },
  27416. [
  27417. {
  27418. name: "Macro",
  27419. height: math.unit(26.15, "meters"),
  27420. default: true
  27421. },
  27422. ]
  27423. ))
  27424. characterMakers.push(() => makeCharacter(
  27425. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27426. {
  27427. female: {
  27428. height: math.unit(21.6, "m"),
  27429. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27430. name: "Female",
  27431. image: {
  27432. source: "./media/characters/sthara/female.svg",
  27433. extra: 2516 / 2347,
  27434. bottom: 21.5 / 2537
  27435. }
  27436. },
  27437. male: {
  27438. height: math.unit(24, "m"),
  27439. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27440. name: "Male",
  27441. image: {
  27442. source: "./media/characters/sthara/male.svg",
  27443. extra: 2732 / 2607,
  27444. bottom: 23 / 2732
  27445. }
  27446. },
  27447. },
  27448. [
  27449. {
  27450. name: "Macro",
  27451. height: math.unit(21.6, "meters"),
  27452. default: true
  27453. },
  27454. ]
  27455. ))
  27456. characterMakers.push(() => makeCharacter(
  27457. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27458. {
  27459. front: {
  27460. height: math.unit(6 + 4 / 12, "feet"),
  27461. weight: math.unit(175, "lb"),
  27462. name: "Front",
  27463. image: {
  27464. source: "./media/characters/luka-bryzant/front.svg",
  27465. extra: 311 / 289,
  27466. bottom: 4 / 315
  27467. }
  27468. },
  27469. back: {
  27470. height: math.unit(6 + 4 / 12, "feet"),
  27471. weight: math.unit(175, "lb"),
  27472. name: "Back",
  27473. image: {
  27474. source: "./media/characters/luka-bryzant/back.svg",
  27475. extra: 311 / 289,
  27476. bottom: 3.8 / 313.7
  27477. }
  27478. },
  27479. },
  27480. [
  27481. {
  27482. name: "Micro",
  27483. height: math.unit(10, "inches")
  27484. },
  27485. {
  27486. name: "Normal",
  27487. height: math.unit(6 + 4 / 12, "feet"),
  27488. default: true
  27489. },
  27490. {
  27491. name: "Large",
  27492. height: math.unit(12, "feet")
  27493. },
  27494. ]
  27495. ))
  27496. characterMakers.push(() => makeCharacter(
  27497. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27498. {
  27499. front: {
  27500. height: math.unit(5 + 7 / 12, "feet"),
  27501. weight: math.unit(185, "lb"),
  27502. name: "Front",
  27503. image: {
  27504. source: "./media/characters/aman-aquila/front.svg",
  27505. extra: 1013 / 976,
  27506. bottom: 45.6 / 1057
  27507. }
  27508. },
  27509. side: {
  27510. height: math.unit(5 + 7 / 12, "feet"),
  27511. weight: math.unit(185, "lb"),
  27512. name: "Side",
  27513. image: {
  27514. source: "./media/characters/aman-aquila/side.svg",
  27515. extra: 1054 / 1011,
  27516. bottom: 15 / 1070
  27517. }
  27518. },
  27519. back: {
  27520. height: math.unit(5 + 7 / 12, "feet"),
  27521. weight: math.unit(185, "lb"),
  27522. name: "Back",
  27523. image: {
  27524. source: "./media/characters/aman-aquila/back.svg",
  27525. extra: 1026 / 970,
  27526. bottom: 12 / 1039
  27527. }
  27528. },
  27529. head: {
  27530. height: math.unit(1.211, "feet"),
  27531. name: "Head",
  27532. image: {
  27533. source: "./media/characters/aman-aquila/head.svg",
  27534. }
  27535. },
  27536. },
  27537. [
  27538. {
  27539. name: "Minimicro",
  27540. height: math.unit(0.057, "inches")
  27541. },
  27542. {
  27543. name: "Micro",
  27544. height: math.unit(7, "inches")
  27545. },
  27546. {
  27547. name: "Mini",
  27548. height: math.unit(3 + 7 / 12, "feet")
  27549. },
  27550. {
  27551. name: "Normal",
  27552. height: math.unit(5 + 7 / 12, "feet"),
  27553. default: true
  27554. },
  27555. {
  27556. name: "Macro",
  27557. height: math.unit(157 + 7 / 12, "feet")
  27558. },
  27559. {
  27560. name: "Megamacro",
  27561. height: math.unit(1557 + 7 / 12, "feet")
  27562. },
  27563. {
  27564. name: "Gigamacro",
  27565. height: math.unit(15557 + 7 / 12, "feet")
  27566. },
  27567. ]
  27568. ))
  27569. characterMakers.push(() => makeCharacter(
  27570. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27571. {
  27572. front: {
  27573. height: math.unit(3 + 2 / 12, "inches"),
  27574. weight: math.unit(0.3, "ounces"),
  27575. name: "Front",
  27576. image: {
  27577. source: "./media/characters/hiphae/front.svg",
  27578. extra: 1931 / 1683,
  27579. bottom: 24 / 1955
  27580. }
  27581. },
  27582. },
  27583. [
  27584. {
  27585. name: "Normal",
  27586. height: math.unit(3 + 1 / 2, "inches"),
  27587. default: true
  27588. },
  27589. ]
  27590. ))
  27591. characterMakers.push(() => makeCharacter(
  27592. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27593. {
  27594. front: {
  27595. height: math.unit(5 + 10 / 12, "feet"),
  27596. weight: math.unit(165, "lb"),
  27597. name: "Front",
  27598. image: {
  27599. source: "./media/characters/nicky/front.svg",
  27600. extra: 3144 / 2886,
  27601. bottom: 45.6 / 3192
  27602. }
  27603. },
  27604. back: {
  27605. height: math.unit(5 + 10 / 12, "feet"),
  27606. weight: math.unit(165, "lb"),
  27607. name: "Back",
  27608. image: {
  27609. source: "./media/characters/nicky/back.svg",
  27610. extra: 3055 / 2804,
  27611. bottom: 28.4 / 3087
  27612. }
  27613. },
  27614. frontclothed: {
  27615. height: math.unit(5 + 10 / 12, "feet"),
  27616. weight: math.unit(165, "lb"),
  27617. name: "Front-clothed",
  27618. image: {
  27619. source: "./media/characters/nicky/front-clothed.svg",
  27620. extra: 3184.9 / 2926.9,
  27621. bottom: 86.5 / 3239.9
  27622. }
  27623. },
  27624. foot: {
  27625. height: math.unit(1.16, "feet"),
  27626. name: "Foot",
  27627. image: {
  27628. source: "./media/characters/nicky/foot.svg"
  27629. }
  27630. },
  27631. feet: {
  27632. height: math.unit(1.34, "feet"),
  27633. name: "Feet",
  27634. image: {
  27635. source: "./media/characters/nicky/feet.svg"
  27636. }
  27637. },
  27638. maw: {
  27639. height: math.unit(0.9, "feet"),
  27640. name: "Maw",
  27641. image: {
  27642. source: "./media/characters/nicky/maw.svg"
  27643. }
  27644. },
  27645. },
  27646. [
  27647. {
  27648. name: "Normal",
  27649. height: math.unit(5 + 10 / 12, "feet"),
  27650. default: true
  27651. },
  27652. {
  27653. name: "Macro",
  27654. height: math.unit(60, "feet")
  27655. },
  27656. {
  27657. name: "Megamacro",
  27658. height: math.unit(1, "mile")
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27664. {
  27665. side: {
  27666. height: math.unit(10, "feet"),
  27667. weight: math.unit(600, "lb"),
  27668. name: "Side",
  27669. image: {
  27670. source: "./media/characters/blair/side.svg",
  27671. bottom: 16.6 / 475,
  27672. extra: 458 / 431
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Micro",
  27679. height: math.unit(8, "inches")
  27680. },
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(10, "feet"),
  27684. default: true
  27685. },
  27686. {
  27687. name: "Macro",
  27688. height: math.unit(180, "feet")
  27689. },
  27690. ]
  27691. ))
  27692. characterMakers.push(() => makeCharacter(
  27693. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27694. {
  27695. front: {
  27696. height: math.unit(5 + 4 / 12, "feet"),
  27697. weight: math.unit(125, "lb"),
  27698. name: "Front",
  27699. image: {
  27700. source: "./media/characters/fisher/front.svg",
  27701. extra: 444 / 390,
  27702. bottom: 2 / 444.8
  27703. }
  27704. },
  27705. },
  27706. [
  27707. {
  27708. name: "Micro",
  27709. height: math.unit(4, "inches")
  27710. },
  27711. {
  27712. name: "Normal",
  27713. height: math.unit(5 + 4 / 12, "feet"),
  27714. default: true
  27715. },
  27716. {
  27717. name: "Macro",
  27718. height: math.unit(100, "feet")
  27719. },
  27720. ]
  27721. ))
  27722. characterMakers.push(() => makeCharacter(
  27723. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27724. {
  27725. front: {
  27726. height: math.unit(6.71, "feet"),
  27727. weight: math.unit(200, "lb"),
  27728. preyCapacity: math.unit(1000000, "people"),
  27729. name: "Front",
  27730. image: {
  27731. source: "./media/characters/gliss/front.svg",
  27732. extra: 2347 / 2231,
  27733. bottom: 113 / 2462
  27734. }
  27735. },
  27736. hammerspaceSize: {
  27737. height: math.unit(6.71 * 717, "feet"),
  27738. weight: math.unit(200, "lb"),
  27739. preyCapacity: math.unit(1000000, "people"),
  27740. name: "Hammerspace Size",
  27741. image: {
  27742. source: "./media/characters/gliss/front.svg",
  27743. extra: 2347 / 2231,
  27744. bottom: 113 / 2462
  27745. }
  27746. },
  27747. },
  27748. [
  27749. {
  27750. name: "Normal",
  27751. height: math.unit(6.71, "feet"),
  27752. default: true
  27753. },
  27754. ]
  27755. ))
  27756. characterMakers.push(() => makeCharacter(
  27757. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27758. {
  27759. side: {
  27760. height: math.unit(1.44, "m"),
  27761. weight: math.unit(80, "kg"),
  27762. name: "Side",
  27763. image: {
  27764. source: "./media/characters/dune-anderson/side.svg",
  27765. bottom: 49 / 1426
  27766. }
  27767. },
  27768. },
  27769. [
  27770. {
  27771. name: "Wolf-sized",
  27772. height: math.unit(1.44, "meters")
  27773. },
  27774. {
  27775. name: "Normal",
  27776. height: math.unit(5.05, "meters"),
  27777. default: true
  27778. },
  27779. {
  27780. name: "Big",
  27781. height: math.unit(14.4, "meters")
  27782. },
  27783. {
  27784. name: "Huge",
  27785. height: math.unit(144, "meters")
  27786. },
  27787. ]
  27788. ))
  27789. characterMakers.push(() => makeCharacter(
  27790. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27791. {
  27792. front: {
  27793. height: math.unit(6, "feet"),
  27794. weight: math.unit(220, "lb"),
  27795. name: "Front",
  27796. image: {
  27797. source: "./media/characters/hind/front.svg",
  27798. extra: 1912/1787,
  27799. bottom: 52/1964
  27800. }
  27801. },
  27802. back: {
  27803. height: math.unit(6, "feet"),
  27804. weight: math.unit(220, "lb"),
  27805. name: "Back",
  27806. image: {
  27807. source: "./media/characters/hind/back.svg",
  27808. extra: 1901/1794,
  27809. bottom: 26/1927
  27810. }
  27811. },
  27812. },
  27813. [
  27814. {
  27815. name: "Normal",
  27816. height: math.unit(6, "feet"),
  27817. default: true
  27818. },
  27819. ]
  27820. ))
  27821. characterMakers.push(() => makeCharacter(
  27822. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27823. {
  27824. front: {
  27825. height: math.unit(2.1, "meters"),
  27826. weight: math.unit(150, "lb"),
  27827. name: "Front",
  27828. image: {
  27829. source: "./media/characters/tharquench-sizestealer/front.svg",
  27830. extra: 1605/1470,
  27831. bottom: 36/1641
  27832. }
  27833. },
  27834. frontAlt: {
  27835. height: math.unit(2.1, "meters"),
  27836. weight: math.unit(150, "lb"),
  27837. name: "Front (Alt)",
  27838. image: {
  27839. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27840. extra: 2318 / 2063,
  27841. bottom: 93.4 / 2410
  27842. }
  27843. },
  27844. },
  27845. [
  27846. {
  27847. name: "Nano",
  27848. height: math.unit(1, "mm")
  27849. },
  27850. {
  27851. name: "Micro",
  27852. height: math.unit(1, "cm")
  27853. },
  27854. {
  27855. name: "Normal",
  27856. height: math.unit(2.1, "meters"),
  27857. default: true
  27858. },
  27859. ]
  27860. ))
  27861. characterMakers.push(() => makeCharacter(
  27862. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27863. {
  27864. front: {
  27865. height: math.unit(7 + 5 / 12, "feet"),
  27866. weight: math.unit(357, "lb"),
  27867. name: "Front",
  27868. image: {
  27869. source: "./media/characters/solex-draconov/front.svg",
  27870. extra: 1993 / 1865,
  27871. bottom: 117 / 2111
  27872. }
  27873. },
  27874. },
  27875. [
  27876. {
  27877. name: "Natural Height",
  27878. height: math.unit(7 + 5 / 12, "feet"),
  27879. default: true
  27880. },
  27881. {
  27882. name: "Macro",
  27883. height: math.unit(350, "feet")
  27884. },
  27885. {
  27886. name: "Macro+",
  27887. height: math.unit(1000, "feet")
  27888. },
  27889. {
  27890. name: "Megamacro",
  27891. height: math.unit(20, "km")
  27892. },
  27893. {
  27894. name: "Megamacro+",
  27895. height: math.unit(1000, "km")
  27896. },
  27897. {
  27898. name: "Gigamacro",
  27899. height: math.unit(2.5, "Gm")
  27900. },
  27901. {
  27902. name: "Teramacro",
  27903. height: math.unit(15, "Tm")
  27904. },
  27905. {
  27906. name: "Galactic",
  27907. height: math.unit(30, "Zm")
  27908. },
  27909. {
  27910. name: "Universal",
  27911. height: math.unit(21000, "Ym")
  27912. },
  27913. {
  27914. name: "Omniversal",
  27915. height: math.unit(9.861e50, "Ym")
  27916. },
  27917. {
  27918. name: "Existential",
  27919. height: math.unit(1e300, "meters")
  27920. },
  27921. ]
  27922. ))
  27923. characterMakers.push(() => makeCharacter(
  27924. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27925. {
  27926. side: {
  27927. height: math.unit(25, "feet"),
  27928. weight: math.unit(90000, "lb"),
  27929. name: "Side",
  27930. image: {
  27931. source: "./media/characters/mandarax/side.svg",
  27932. extra: 614 / 332,
  27933. bottom: 55 / 630
  27934. }
  27935. },
  27936. lounging: {
  27937. height: math.unit(15.4, "feet"),
  27938. weight: math.unit(90000, "lb"),
  27939. name: "Lounging",
  27940. image: {
  27941. source: "./media/characters/mandarax/lounging.svg",
  27942. extra: 817/609,
  27943. bottom: 685/1502
  27944. }
  27945. },
  27946. head: {
  27947. height: math.unit(11.4, "feet"),
  27948. name: "Head",
  27949. image: {
  27950. source: "./media/characters/mandarax/head.svg"
  27951. }
  27952. },
  27953. belly: {
  27954. height: math.unit(33, "feet"),
  27955. name: "Belly",
  27956. preyCapacity: math.unit(500, "people"),
  27957. image: {
  27958. source: "./media/characters/mandarax/belly.svg"
  27959. }
  27960. },
  27961. dick: {
  27962. height: math.unit(8.46, "feet"),
  27963. name: "Dick",
  27964. image: {
  27965. source: "./media/characters/mandarax/dick.svg"
  27966. }
  27967. },
  27968. top: {
  27969. height: math.unit(28, "meters"),
  27970. name: "Top",
  27971. image: {
  27972. source: "./media/characters/mandarax/top.svg"
  27973. }
  27974. },
  27975. },
  27976. [
  27977. {
  27978. name: "Normal",
  27979. height: math.unit(25, "feet"),
  27980. default: true
  27981. },
  27982. ]
  27983. ))
  27984. characterMakers.push(() => makeCharacter(
  27985. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27986. {
  27987. front: {
  27988. height: math.unit(5, "feet"),
  27989. weight: math.unit(90, "lb"),
  27990. name: "Front",
  27991. image: {
  27992. source: "./media/characters/pixil/front.svg",
  27993. extra: 2000 / 1618,
  27994. bottom: 12.3 / 2011
  27995. }
  27996. },
  27997. },
  27998. [
  27999. {
  28000. name: "Normal",
  28001. height: math.unit(5, "feet"),
  28002. default: true
  28003. },
  28004. {
  28005. name: "Megamacro",
  28006. height: math.unit(10, "miles"),
  28007. },
  28008. ]
  28009. ))
  28010. characterMakers.push(() => makeCharacter(
  28011. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  28012. {
  28013. front: {
  28014. height: math.unit(7 + 2 / 12, "feet"),
  28015. weight: math.unit(200, "lb"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/angel/front.svg",
  28019. extra: 1946/1840,
  28020. bottom: 30/1976
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(7 + 2 / 12, "feet"),
  28028. default: true
  28029. },
  28030. {
  28031. name: "Macro",
  28032. height: math.unit(1000, "feet")
  28033. },
  28034. {
  28035. name: "Megamacro",
  28036. height: math.unit(2, "miles")
  28037. },
  28038. {
  28039. name: "Gigamacro",
  28040. height: math.unit(20, "earths")
  28041. },
  28042. ]
  28043. ))
  28044. characterMakers.push(() => makeCharacter(
  28045. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  28046. {
  28047. front: {
  28048. height: math.unit(5, "feet"),
  28049. weight: math.unit(180, "lb"),
  28050. name: "Front",
  28051. image: {
  28052. source: "./media/characters/mekana/front.svg",
  28053. extra: 1671 / 1605,
  28054. bottom: 3.5 / 1691
  28055. }
  28056. },
  28057. side: {
  28058. height: math.unit(5, "feet"),
  28059. weight: math.unit(180, "lb"),
  28060. name: "Side",
  28061. image: {
  28062. source: "./media/characters/mekana/side.svg",
  28063. extra: 1671 / 1605,
  28064. bottom: 3.5 / 1691
  28065. }
  28066. },
  28067. back: {
  28068. height: math.unit(5, "feet"),
  28069. weight: math.unit(180, "lb"),
  28070. name: "Back",
  28071. image: {
  28072. source: "./media/characters/mekana/back.svg",
  28073. extra: 1671 / 1605,
  28074. bottom: 3.5 / 1691
  28075. }
  28076. },
  28077. },
  28078. [
  28079. {
  28080. name: "Normal",
  28081. height: math.unit(5, "feet"),
  28082. default: true
  28083. },
  28084. ]
  28085. ))
  28086. characterMakers.push(() => makeCharacter(
  28087. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  28088. {
  28089. front: {
  28090. height: math.unit(4 + 6 / 12, "feet"),
  28091. weight: math.unit(80, "lb"),
  28092. name: "Front",
  28093. image: {
  28094. source: "./media/characters/pixie/front.svg",
  28095. extra: 1924 / 1825,
  28096. bottom: 22.4 / 1946
  28097. }
  28098. },
  28099. },
  28100. [
  28101. {
  28102. name: "Normal",
  28103. height: math.unit(4 + 6 / 12, "feet"),
  28104. default: true
  28105. },
  28106. {
  28107. name: "Macro",
  28108. height: math.unit(40, "feet")
  28109. },
  28110. ]
  28111. ))
  28112. characterMakers.push(() => makeCharacter(
  28113. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  28114. {
  28115. front: {
  28116. height: math.unit(2.1, "meters"),
  28117. weight: math.unit(200, "lb"),
  28118. name: "Front",
  28119. image: {
  28120. source: "./media/characters/the-lascivious/front.svg",
  28121. extra: 1 / 0.893,
  28122. bottom: 3.5 / 573.7
  28123. }
  28124. },
  28125. },
  28126. [
  28127. {
  28128. name: "Human Scale",
  28129. height: math.unit(2.1, "meters")
  28130. },
  28131. {
  28132. name: "Wolxi Scale",
  28133. height: math.unit(46.2, "m"),
  28134. default: true
  28135. },
  28136. {
  28137. name: "Boinker of Buildings",
  28138. height: math.unit(10, "km")
  28139. },
  28140. {
  28141. name: "Shagger of Skyscrapers",
  28142. height: math.unit(40, "km")
  28143. },
  28144. {
  28145. name: "Banger of Boroughs",
  28146. height: math.unit(4000, "km")
  28147. },
  28148. {
  28149. name: "Screwer of States",
  28150. height: math.unit(100000, "km")
  28151. },
  28152. {
  28153. name: "Pounder of Planets",
  28154. height: math.unit(2000000, "km")
  28155. },
  28156. ]
  28157. ))
  28158. characterMakers.push(() => makeCharacter(
  28159. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  28160. {
  28161. front: {
  28162. height: math.unit(6, "feet"),
  28163. weight: math.unit(150, "lb"),
  28164. name: "Front",
  28165. image: {
  28166. source: "./media/characters/aj/front.svg",
  28167. extra: 2039 / 1562,
  28168. bottom: 40 / 2079
  28169. }
  28170. },
  28171. },
  28172. [
  28173. {
  28174. name: "Normal",
  28175. height: math.unit(11 + 6 / 12, "feet"),
  28176. default: true
  28177. },
  28178. {
  28179. name: "Megamacro",
  28180. height: math.unit(60, "megameters")
  28181. },
  28182. ]
  28183. ))
  28184. characterMakers.push(() => makeCharacter(
  28185. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  28186. {
  28187. side: {
  28188. height: math.unit(31 + 8 / 12, "feet"),
  28189. weight: math.unit(75000, "kg"),
  28190. name: "Side",
  28191. image: {
  28192. source: "./media/characters/koros/side.svg",
  28193. extra: 1442 / 1297,
  28194. bottom: 122.7 / 1562
  28195. }
  28196. },
  28197. dicksKingsCrown: {
  28198. height: math.unit(6, "feet"),
  28199. name: "Dicks (King's Crown)",
  28200. image: {
  28201. source: "./media/characters/koros/dicks-kings-crown.svg"
  28202. }
  28203. },
  28204. dicksTailSet: {
  28205. height: math.unit(3, "feet"),
  28206. name: "Dicks (Tail Set)",
  28207. image: {
  28208. source: "./media/characters/koros/dicks-tail-set.svg"
  28209. }
  28210. },
  28211. dickCumming: {
  28212. height: math.unit(7.98, "feet"),
  28213. name: "Dick (Cumming)",
  28214. image: {
  28215. source: "./media/characters/koros/dick-cumming.svg"
  28216. }
  28217. },
  28218. dicksBack: {
  28219. height: math.unit(5.9, "feet"),
  28220. name: "Dicks (Back)",
  28221. image: {
  28222. source: "./media/characters/koros/dicks-back.svg"
  28223. }
  28224. },
  28225. dicksFront: {
  28226. height: math.unit(3.72, "feet"),
  28227. name: "Dicks (Front)",
  28228. image: {
  28229. source: "./media/characters/koros/dicks-front.svg"
  28230. }
  28231. },
  28232. dicksPeeking: {
  28233. height: math.unit(3.0, "feet"),
  28234. name: "Dicks (Peeking)",
  28235. image: {
  28236. source: "./media/characters/koros/dicks-peeking.svg"
  28237. }
  28238. },
  28239. eye: {
  28240. height: math.unit(1.7, "feet"),
  28241. name: "Eye",
  28242. image: {
  28243. source: "./media/characters/koros/eye.svg"
  28244. }
  28245. },
  28246. headFront: {
  28247. height: math.unit(11.69, "feet"),
  28248. name: "Head (Front)",
  28249. image: {
  28250. source: "./media/characters/koros/head-front.svg"
  28251. }
  28252. },
  28253. headSide: {
  28254. height: math.unit(14, "feet"),
  28255. name: "Head (Side)",
  28256. image: {
  28257. source: "./media/characters/koros/head-side.svg"
  28258. }
  28259. },
  28260. leg: {
  28261. height: math.unit(17, "feet"),
  28262. name: "Leg",
  28263. image: {
  28264. source: "./media/characters/koros/leg.svg"
  28265. }
  28266. },
  28267. mawSide: {
  28268. height: math.unit(12.8, "feet"),
  28269. name: "Maw (Side)",
  28270. image: {
  28271. source: "./media/characters/koros/maw-side.svg"
  28272. }
  28273. },
  28274. mawSpitting: {
  28275. height: math.unit(17, "feet"),
  28276. name: "Maw (Spitting)",
  28277. image: {
  28278. source: "./media/characters/koros/maw-spitting.svg"
  28279. }
  28280. },
  28281. slit: {
  28282. height: math.unit(2.8, "feet"),
  28283. name: "Slit",
  28284. image: {
  28285. source: "./media/characters/koros/slit.svg"
  28286. }
  28287. },
  28288. stomach: {
  28289. height: math.unit(6.8, "feet"),
  28290. preyCapacity: math.unit(20, "people"),
  28291. name: "Stomach",
  28292. image: {
  28293. source: "./media/characters/koros/stomach.svg"
  28294. }
  28295. },
  28296. wingspanBottom: {
  28297. height: math.unit(114, "feet"),
  28298. name: "Wingspan (Bottom)",
  28299. image: {
  28300. source: "./media/characters/koros/wingspan-bottom.svg"
  28301. }
  28302. },
  28303. wingspanTop: {
  28304. height: math.unit(104, "feet"),
  28305. name: "Wingspan (Top)",
  28306. image: {
  28307. source: "./media/characters/koros/wingspan-top.svg"
  28308. }
  28309. },
  28310. },
  28311. [
  28312. {
  28313. name: "Normal",
  28314. height: math.unit(31 + 8 / 12, "feet"),
  28315. default: true
  28316. },
  28317. ]
  28318. ))
  28319. characterMakers.push(() => makeCharacter(
  28320. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28321. {
  28322. front: {
  28323. height: math.unit(18 + 5 / 12, "feet"),
  28324. weight: math.unit(3750, "kg"),
  28325. name: "Front",
  28326. image: {
  28327. source: "./media/characters/vexx/front.svg",
  28328. extra: 426 / 396,
  28329. bottom: 31.5 / 458
  28330. }
  28331. },
  28332. maw: {
  28333. height: math.unit(6, "feet"),
  28334. name: "Maw",
  28335. image: {
  28336. source: "./media/characters/vexx/maw.svg"
  28337. }
  28338. },
  28339. },
  28340. [
  28341. {
  28342. name: "Normal",
  28343. height: math.unit(18 + 5 / 12, "feet"),
  28344. default: true
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(17 + 6 / 12, "feet"),
  28353. weight: math.unit(150, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/baadra/front.svg",
  28357. extra: 1694/1553,
  28358. bottom: 179/1873
  28359. }
  28360. },
  28361. frontAlt: {
  28362. height: math.unit(17 + 6 / 12, "feet"),
  28363. weight: math.unit(150, "lb"),
  28364. name: "Front (Alt)",
  28365. image: {
  28366. source: "./media/characters/baadra/front-alt.svg",
  28367. extra: 3137 / 2890,
  28368. bottom: 168.4 / 3305
  28369. }
  28370. },
  28371. back: {
  28372. height: math.unit(17 + 6 / 12, "feet"),
  28373. weight: math.unit(150, "lb"),
  28374. name: "Back",
  28375. image: {
  28376. source: "./media/characters/baadra/back.svg",
  28377. extra: 3142 / 2890,
  28378. bottom: 220 / 3371
  28379. }
  28380. },
  28381. head: {
  28382. height: math.unit(5.45, "feet"),
  28383. name: "Head",
  28384. image: {
  28385. source: "./media/characters/baadra/head.svg"
  28386. }
  28387. },
  28388. headAngry: {
  28389. height: math.unit(4.95, "feet"),
  28390. name: "Head (Angry)",
  28391. image: {
  28392. source: "./media/characters/baadra/head-angry.svg"
  28393. }
  28394. },
  28395. headOpen: {
  28396. height: math.unit(6, "feet"),
  28397. name: "Head (Open)",
  28398. image: {
  28399. source: "./media/characters/baadra/head-open.svg"
  28400. }
  28401. },
  28402. },
  28403. [
  28404. {
  28405. name: "Normal",
  28406. height: math.unit(17 + 6 / 12, "feet"),
  28407. default: true
  28408. },
  28409. ]
  28410. ))
  28411. characterMakers.push(() => makeCharacter(
  28412. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28413. {
  28414. front: {
  28415. height: math.unit(7 + 3 / 12, "feet"),
  28416. weight: math.unit(180, "lb"),
  28417. name: "Front",
  28418. image: {
  28419. source: "./media/characters/juri/front.svg",
  28420. extra: 1401 / 1237,
  28421. bottom: 18.5 / 1418
  28422. }
  28423. },
  28424. side: {
  28425. height: math.unit(7 + 3 / 12, "feet"),
  28426. weight: math.unit(180, "lb"),
  28427. name: "Side",
  28428. image: {
  28429. source: "./media/characters/juri/side.svg",
  28430. extra: 1424 / 1242,
  28431. bottom: 18.5 / 1447
  28432. }
  28433. },
  28434. sitting: {
  28435. height: math.unit(6, "feet"),
  28436. weight: math.unit(180, "lb"),
  28437. name: "Sitting",
  28438. image: {
  28439. source: "./media/characters/juri/sitting.svg",
  28440. extra: 1270 / 1143,
  28441. bottom: 100 / 1343
  28442. }
  28443. },
  28444. back: {
  28445. height: math.unit(7 + 3 / 12, "feet"),
  28446. weight: math.unit(180, "lb"),
  28447. name: "Back",
  28448. image: {
  28449. source: "./media/characters/juri/back.svg",
  28450. extra: 1377 / 1240,
  28451. bottom: 23.7 / 1405
  28452. }
  28453. },
  28454. maw: {
  28455. height: math.unit(2.8, "feet"),
  28456. name: "Maw",
  28457. image: {
  28458. source: "./media/characters/juri/maw.svg"
  28459. }
  28460. },
  28461. stomach: {
  28462. height: math.unit(0.89, "feet"),
  28463. preyCapacity: math.unit(4, "liters"),
  28464. name: "Stomach",
  28465. image: {
  28466. source: "./media/characters/juri/stomach.svg"
  28467. }
  28468. },
  28469. },
  28470. [
  28471. {
  28472. name: "Normal",
  28473. height: math.unit(7 + 3 / 12, "feet"),
  28474. default: true
  28475. },
  28476. ]
  28477. ))
  28478. characterMakers.push(() => makeCharacter(
  28479. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28480. {
  28481. fox: {
  28482. height: math.unit(5 + 6 / 12, "feet"),
  28483. weight: math.unit(140, "lb"),
  28484. name: "Fox",
  28485. image: {
  28486. source: "./media/characters/maxene-sita/fox.svg",
  28487. extra: 146 / 138,
  28488. bottom: 2.1 / 148.19
  28489. }
  28490. },
  28491. foxLaying: {
  28492. height: math.unit(1.70, "feet"),
  28493. weight: math.unit(140, "lb"),
  28494. name: "Fox (Laying)",
  28495. image: {
  28496. source: "./media/characters/maxene-sita/fox-laying.svg",
  28497. extra: 910 / 572,
  28498. bottom: 71 / 981
  28499. }
  28500. },
  28501. kitsune: {
  28502. height: math.unit(10, "feet"),
  28503. weight: math.unit(800, "lb"),
  28504. name: "Kitsune",
  28505. image: {
  28506. source: "./media/characters/maxene-sita/kitsune.svg",
  28507. extra: 185 / 176,
  28508. bottom: 4.7 / 189.9
  28509. }
  28510. },
  28511. hellhound: {
  28512. height: math.unit(10, "feet"),
  28513. weight: math.unit(700, "lb"),
  28514. name: "Hellhound",
  28515. image: {
  28516. source: "./media/characters/maxene-sita/hellhound.svg",
  28517. extra: 1600 / 1545,
  28518. bottom: 81 / 1681
  28519. }
  28520. },
  28521. },
  28522. [
  28523. {
  28524. name: "Normal",
  28525. height: math.unit(5 + 6 / 12, "feet"),
  28526. default: true
  28527. },
  28528. ]
  28529. ))
  28530. characterMakers.push(() => makeCharacter(
  28531. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28532. {
  28533. front: {
  28534. height: math.unit(3 + 4 / 12, "feet"),
  28535. weight: math.unit(70, "lb"),
  28536. name: "Front",
  28537. image: {
  28538. source: "./media/characters/maia/front.svg",
  28539. extra: 227 / 219.5,
  28540. bottom: 40 / 267
  28541. }
  28542. },
  28543. back: {
  28544. height: math.unit(3 + 4 / 12, "feet"),
  28545. weight: math.unit(70, "lb"),
  28546. name: "Back",
  28547. image: {
  28548. source: "./media/characters/maia/back.svg",
  28549. extra: 237 / 225
  28550. }
  28551. },
  28552. },
  28553. [
  28554. {
  28555. name: "Normal",
  28556. height: math.unit(3 + 4 / 12, "feet"),
  28557. default: true
  28558. },
  28559. ]
  28560. ))
  28561. characterMakers.push(() => makeCharacter(
  28562. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28563. {
  28564. front: {
  28565. height: math.unit(5 + 10 / 12, "feet"),
  28566. weight: math.unit(197, "lb"),
  28567. name: "Front",
  28568. image: {
  28569. source: "./media/characters/jabaro/front.svg",
  28570. extra: 225 / 216,
  28571. bottom: 5.06 / 230
  28572. }
  28573. },
  28574. back: {
  28575. height: math.unit(5 + 10 / 12, "feet"),
  28576. weight: math.unit(197, "lb"),
  28577. name: "Back",
  28578. image: {
  28579. source: "./media/characters/jabaro/back.svg",
  28580. extra: 225 / 219,
  28581. bottom: 1.9 / 227
  28582. }
  28583. },
  28584. },
  28585. [
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(5 + 10 / 12, "feet"),
  28589. default: true
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(5 + 8 / 12, "feet"),
  28598. weight: math.unit(139, "lb"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/risa/front.svg",
  28602. extra: 270 / 260,
  28603. bottom: 11.2 / 282
  28604. }
  28605. },
  28606. back: {
  28607. height: math.unit(5 + 8 / 12, "feet"),
  28608. weight: math.unit(139, "lb"),
  28609. name: "Back",
  28610. image: {
  28611. source: "./media/characters/risa/back.svg",
  28612. extra: 264 / 255,
  28613. bottom: 4 / 268
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Normal",
  28620. height: math.unit(5 + 8 / 12, "feet"),
  28621. default: true
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28627. {
  28628. front: {
  28629. height: math.unit(2 + 11 / 12, "feet"),
  28630. weight: math.unit(30, "lb"),
  28631. name: "Front",
  28632. image: {
  28633. source: "./media/characters/weatley/front.svg",
  28634. bottom: 10.7 / 414,
  28635. extra: 403.5 / 362
  28636. }
  28637. },
  28638. back: {
  28639. height: math.unit(2 + 11 / 12, "feet"),
  28640. weight: math.unit(30, "lb"),
  28641. name: "Back",
  28642. image: {
  28643. source: "./media/characters/weatley/back.svg",
  28644. bottom: 10.7 / 414,
  28645. extra: 403.5 / 362
  28646. }
  28647. },
  28648. },
  28649. [
  28650. {
  28651. name: "Normal",
  28652. height: math.unit(2 + 11 / 12, "feet"),
  28653. default: true
  28654. },
  28655. ]
  28656. ))
  28657. characterMakers.push(() => makeCharacter(
  28658. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28659. {
  28660. front: {
  28661. height: math.unit(5 + 2 / 12, "feet"),
  28662. weight: math.unit(50, "kg"),
  28663. name: "Front",
  28664. image: {
  28665. source: "./media/characters/mercury-crescent/front.svg",
  28666. extra: 1088 / 1033,
  28667. bottom: 18.9 / 1109
  28668. }
  28669. },
  28670. },
  28671. [
  28672. {
  28673. name: "Normal",
  28674. height: math.unit(5 + 2 / 12, "feet"),
  28675. default: true
  28676. },
  28677. ]
  28678. ))
  28679. characterMakers.push(() => makeCharacter(
  28680. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28681. {
  28682. front: {
  28683. height: math.unit(2, "feet"),
  28684. weight: math.unit(15, "kg"),
  28685. name: "Front",
  28686. image: {
  28687. source: "./media/characters/diamond-jones/front.svg",
  28688. extra: 727/723,
  28689. bottom: 46/773
  28690. }
  28691. },
  28692. },
  28693. [
  28694. {
  28695. name: "Normal",
  28696. height: math.unit(2, "feet"),
  28697. default: true
  28698. },
  28699. ]
  28700. ))
  28701. characterMakers.push(() => makeCharacter(
  28702. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28703. {
  28704. front: {
  28705. height: math.unit(3, "feet"),
  28706. weight: math.unit(30, "kg"),
  28707. name: "Front",
  28708. image: {
  28709. source: "./media/characters/sweet-bit/front.svg",
  28710. extra: 675 / 567,
  28711. bottom: 27.7 / 703
  28712. }
  28713. },
  28714. },
  28715. [
  28716. {
  28717. name: "Normal",
  28718. height: math.unit(3, "feet"),
  28719. default: true
  28720. },
  28721. ]
  28722. ))
  28723. characterMakers.push(() => makeCharacter(
  28724. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28725. {
  28726. side: {
  28727. height: math.unit(9.178, "feet"),
  28728. weight: math.unit(500, "lb"),
  28729. name: "Side",
  28730. image: {
  28731. source: "./media/characters/umbrazen/side.svg",
  28732. extra: 1730 / 1473,
  28733. bottom: 34.6 / 1765
  28734. }
  28735. },
  28736. },
  28737. [
  28738. {
  28739. name: "Normal",
  28740. height: math.unit(9.178, "feet"),
  28741. default: true
  28742. },
  28743. ]
  28744. ))
  28745. characterMakers.push(() => makeCharacter(
  28746. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28747. {
  28748. front: {
  28749. height: math.unit(10, "feet"),
  28750. weight: math.unit(750, "lb"),
  28751. name: "Front",
  28752. image: {
  28753. source: "./media/characters/arlist/front.svg",
  28754. extra: 961 / 778,
  28755. bottom: 6.2 / 986
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Normal",
  28762. height: math.unit(10, "feet"),
  28763. default: true
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28769. {
  28770. front: {
  28771. height: math.unit(5 + 1 / 12, "feet"),
  28772. weight: math.unit(110, "lb"),
  28773. name: "Front",
  28774. image: {
  28775. source: "./media/characters/aradel/front.svg",
  28776. extra: 324 / 303,
  28777. bottom: 3.6 / 329.4
  28778. }
  28779. },
  28780. },
  28781. [
  28782. {
  28783. name: "Normal",
  28784. height: math.unit(5 + 1 / 12, "feet"),
  28785. default: true
  28786. },
  28787. ]
  28788. ))
  28789. characterMakers.push(() => makeCharacter(
  28790. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28791. {
  28792. dressed: {
  28793. height: math.unit(3 + 8 / 12, "feet"),
  28794. weight: math.unit(50, "lb"),
  28795. name: "Dressed",
  28796. image: {
  28797. source: "./media/characters/serryn/dressed.svg",
  28798. extra: 1792 / 1656,
  28799. bottom: 43.5 / 1840
  28800. }
  28801. },
  28802. nude: {
  28803. height: math.unit(3 + 8 / 12, "feet"),
  28804. weight: math.unit(50, "lb"),
  28805. name: "Nude",
  28806. image: {
  28807. source: "./media/characters/serryn/nude.svg",
  28808. extra: 1792 / 1656,
  28809. bottom: 43.5 / 1840
  28810. }
  28811. },
  28812. },
  28813. [
  28814. {
  28815. name: "Normal",
  28816. height: math.unit(3 + 8 / 12, "feet"),
  28817. default: true
  28818. },
  28819. ]
  28820. ))
  28821. characterMakers.push(() => makeCharacter(
  28822. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28823. {
  28824. front: {
  28825. height: math.unit(7 + 10 / 12, "feet"),
  28826. weight: math.unit(255, "lb"),
  28827. name: "Front",
  28828. image: {
  28829. source: "./media/characters/xavier-thyme/front.svg",
  28830. extra: 3733 / 3642,
  28831. bottom: 131 / 3869
  28832. }
  28833. },
  28834. frontRaven: {
  28835. height: math.unit(7 + 10 / 12, "feet"),
  28836. weight: math.unit(255, "lb"),
  28837. name: "Front (Raven)",
  28838. image: {
  28839. source: "./media/characters/xavier-thyme/front-raven.svg",
  28840. extra: 4385 / 3642,
  28841. bottom: 131 / 4517
  28842. }
  28843. },
  28844. },
  28845. [
  28846. {
  28847. name: "Normal",
  28848. height: math.unit(7 + 10 / 12, "feet"),
  28849. default: true
  28850. },
  28851. ]
  28852. ))
  28853. characterMakers.push(() => makeCharacter(
  28854. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28855. {
  28856. front: {
  28857. height: math.unit(1.6, "m"),
  28858. weight: math.unit(50, "kg"),
  28859. name: "Front",
  28860. image: {
  28861. source: "./media/characters/kiki/front.svg",
  28862. extra: 4682 / 3610,
  28863. bottom: 115 / 4777
  28864. }
  28865. },
  28866. },
  28867. [
  28868. {
  28869. name: "Normal",
  28870. height: math.unit(1.6, "meters"),
  28871. default: true
  28872. },
  28873. ]
  28874. ))
  28875. characterMakers.push(() => makeCharacter(
  28876. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28877. {
  28878. front: {
  28879. height: math.unit(50, "m"),
  28880. weight: math.unit(500, "tonnes"),
  28881. name: "Front",
  28882. image: {
  28883. source: "./media/characters/ryoko/front.svg",
  28884. extra: 4632 / 3926,
  28885. bottom: 193 / 4823
  28886. }
  28887. },
  28888. },
  28889. [
  28890. {
  28891. name: "Normal",
  28892. height: math.unit(50, "meters"),
  28893. default: true
  28894. },
  28895. ]
  28896. ))
  28897. characterMakers.push(() => makeCharacter(
  28898. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28899. {
  28900. front: {
  28901. height: math.unit(30, "m"),
  28902. weight: math.unit(22, "tonnes"),
  28903. name: "Front",
  28904. image: {
  28905. source: "./media/characters/elio/front.svg",
  28906. extra: 4582 / 3720,
  28907. bottom: 236 / 4828
  28908. }
  28909. },
  28910. },
  28911. [
  28912. {
  28913. name: "Normal",
  28914. height: math.unit(30, "meters"),
  28915. default: true
  28916. },
  28917. ]
  28918. ))
  28919. characterMakers.push(() => makeCharacter(
  28920. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28921. {
  28922. front: {
  28923. height: math.unit(6 + 3 / 12, "feet"),
  28924. weight: math.unit(120, "lb"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/azura/front.svg",
  28928. extra: 1149 / 1135,
  28929. bottom: 45 / 1194
  28930. }
  28931. },
  28932. frontClothed: {
  28933. height: math.unit(6 + 3 / 12, "feet"),
  28934. weight: math.unit(120, "lb"),
  28935. name: "Front (Clothed)",
  28936. image: {
  28937. source: "./media/characters/azura/front-clothed.svg",
  28938. extra: 1149 / 1135,
  28939. bottom: 45 / 1194
  28940. }
  28941. },
  28942. },
  28943. [
  28944. {
  28945. name: "Normal",
  28946. height: math.unit(6 + 3 / 12, "feet"),
  28947. default: true
  28948. },
  28949. {
  28950. name: "Macro",
  28951. height: math.unit(20 + 6 / 12, "feet")
  28952. },
  28953. {
  28954. name: "Megamacro",
  28955. height: math.unit(12, "miles")
  28956. },
  28957. {
  28958. name: "Gigamacro",
  28959. height: math.unit(10000, "miles")
  28960. },
  28961. {
  28962. name: "Teramacro",
  28963. height: math.unit(900000, "miles")
  28964. },
  28965. ]
  28966. ))
  28967. characterMakers.push(() => makeCharacter(
  28968. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28969. {
  28970. front: {
  28971. height: math.unit(12, "feet"),
  28972. weight: math.unit(1, "ton"),
  28973. capacity: math.unit(660000, "gallons"),
  28974. name: "Front",
  28975. image: {
  28976. source: "./media/characters/zeus/front.svg",
  28977. extra: 5005 / 4717,
  28978. bottom: 363 / 5388
  28979. }
  28980. },
  28981. },
  28982. [
  28983. {
  28984. name: "Normal",
  28985. height: math.unit(12, "feet")
  28986. },
  28987. {
  28988. name: "Preferred Size",
  28989. height: math.unit(0.5, "miles"),
  28990. default: true
  28991. },
  28992. {
  28993. name: "Giga Horse",
  28994. height: math.unit(300, "miles")
  28995. },
  28996. {
  28997. name: "Riding Planets",
  28998. height: math.unit(30, "megameters")
  28999. },
  29000. {
  29001. name: "Cosmic Giant",
  29002. height: math.unit(3, "zettameters")
  29003. },
  29004. {
  29005. name: "Breeding God",
  29006. height: math.unit(9.92e22, "yottameters")
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "Fang", species: ["monster"], tags: ["feral"] },
  29012. {
  29013. side: {
  29014. height: math.unit(9, "feet"),
  29015. weight: math.unit(1500, "kg"),
  29016. name: "Side",
  29017. image: {
  29018. source: "./media/characters/fang/side.svg",
  29019. extra: 924 / 866,
  29020. bottom: 47.5 / 972.3
  29021. }
  29022. },
  29023. },
  29024. [
  29025. {
  29026. name: "Normal",
  29027. height: math.unit(9, "feet"),
  29028. default: true
  29029. },
  29030. {
  29031. name: "Macro",
  29032. height: math.unit(75 + 6 / 12, "feet")
  29033. },
  29034. {
  29035. name: "Teramacro",
  29036. height: math.unit(50000, "miles")
  29037. },
  29038. ]
  29039. ))
  29040. characterMakers.push(() => makeCharacter(
  29041. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  29042. {
  29043. front: {
  29044. height: math.unit(10, "feet"),
  29045. weight: math.unit(2, "tons"),
  29046. name: "Front",
  29047. image: {
  29048. source: "./media/characters/rekhit/front.svg",
  29049. extra: 2796 / 2590,
  29050. bottom: 225 / 3022
  29051. }
  29052. },
  29053. },
  29054. [
  29055. {
  29056. name: "Normal",
  29057. height: math.unit(10, "feet"),
  29058. default: true
  29059. },
  29060. {
  29061. name: "Macro",
  29062. height: math.unit(500, "feet")
  29063. },
  29064. ]
  29065. ))
  29066. characterMakers.push(() => makeCharacter(
  29067. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  29068. {
  29069. front: {
  29070. height: math.unit(7 + 6.451 / 12, "feet"),
  29071. weight: math.unit(310, "lb"),
  29072. name: "Front",
  29073. image: {
  29074. source: "./media/characters/dahlia-verrick/front.svg",
  29075. extra: 1488 / 1365,
  29076. bottom: 6.2 / 1495
  29077. }
  29078. },
  29079. back: {
  29080. height: math.unit(7 + 6.451 / 12, "feet"),
  29081. weight: math.unit(310, "lb"),
  29082. name: "Back",
  29083. image: {
  29084. source: "./media/characters/dahlia-verrick/back.svg",
  29085. extra: 1472 / 1351,
  29086. bottom: 5.28 / 1477
  29087. }
  29088. },
  29089. frontBusiness: {
  29090. height: math.unit(7 + 6.451 / 12, "feet"),
  29091. weight: math.unit(200, "lb"),
  29092. name: "Front (Business)",
  29093. image: {
  29094. source: "./media/characters/dahlia-verrick/front-business.svg",
  29095. extra: 1478 / 1381,
  29096. bottom: 5.5 / 1484
  29097. }
  29098. },
  29099. frontCasual: {
  29100. height: math.unit(7 + 6.451 / 12, "feet"),
  29101. weight: math.unit(200, "lb"),
  29102. name: "Front (Casual)",
  29103. image: {
  29104. source: "./media/characters/dahlia-verrick/front-casual.svg",
  29105. extra: 1478 / 1381,
  29106. bottom: 5.5 / 1484
  29107. }
  29108. },
  29109. },
  29110. [
  29111. {
  29112. name: "Travel-Sized",
  29113. height: math.unit(7.45, "inches")
  29114. },
  29115. {
  29116. name: "Normal",
  29117. height: math.unit(7 + 6.451 / 12, "feet"),
  29118. default: true
  29119. },
  29120. {
  29121. name: "Hitting the Town",
  29122. height: math.unit(37 + 8 / 12, "feet")
  29123. },
  29124. {
  29125. name: "Stomp in the Suburbs",
  29126. height: math.unit(964 + 9.728 / 12, "feet")
  29127. },
  29128. {
  29129. name: "Sit on the City",
  29130. height: math.unit(61747 + 10.592 / 12, "feet")
  29131. },
  29132. {
  29133. name: "Glomp the Globe",
  29134. height: math.unit(252919327 + 4.832 / 12, "feet")
  29135. },
  29136. ]
  29137. ))
  29138. characterMakers.push(() => makeCharacter(
  29139. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  29140. {
  29141. front: {
  29142. height: math.unit(6 + 4 / 12, "feet"),
  29143. weight: math.unit(320, "lb"),
  29144. name: "Front",
  29145. image: {
  29146. source: "./media/characters/balina-mahigan/front.svg",
  29147. extra: 447 / 428,
  29148. bottom: 18 / 466
  29149. }
  29150. },
  29151. back: {
  29152. height: math.unit(6 + 4 / 12, "feet"),
  29153. weight: math.unit(320, "lb"),
  29154. name: "Back",
  29155. image: {
  29156. source: "./media/characters/balina-mahigan/back.svg",
  29157. extra: 445 / 428,
  29158. bottom: 4.07 / 448
  29159. }
  29160. },
  29161. arm: {
  29162. height: math.unit(1.88, "feet"),
  29163. name: "Arm",
  29164. image: {
  29165. source: "./media/characters/balina-mahigan/arm.svg"
  29166. }
  29167. },
  29168. backPort: {
  29169. height: math.unit(0.685, "feet"),
  29170. name: "Back Port",
  29171. image: {
  29172. source: "./media/characters/balina-mahigan/back-port.svg"
  29173. }
  29174. },
  29175. hoofpaw: {
  29176. height: math.unit(1.41, "feet"),
  29177. name: "Hoofpaw",
  29178. image: {
  29179. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  29180. }
  29181. },
  29182. leftHandBack: {
  29183. height: math.unit(0.938, "feet"),
  29184. name: "Left Hand (Back)",
  29185. image: {
  29186. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  29187. }
  29188. },
  29189. leftHandFront: {
  29190. height: math.unit(0.938, "feet"),
  29191. name: "Left Hand (Front)",
  29192. image: {
  29193. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  29194. }
  29195. },
  29196. rightHandBack: {
  29197. height: math.unit(0.95, "feet"),
  29198. name: "Right Hand (Back)",
  29199. image: {
  29200. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  29201. }
  29202. },
  29203. rightHandFront: {
  29204. height: math.unit(0.95, "feet"),
  29205. name: "Right Hand (Front)",
  29206. image: {
  29207. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  29208. }
  29209. },
  29210. },
  29211. [
  29212. {
  29213. name: "Normal",
  29214. height: math.unit(6 + 4 / 12, "feet"),
  29215. default: true
  29216. },
  29217. ]
  29218. ))
  29219. characterMakers.push(() => makeCharacter(
  29220. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  29221. {
  29222. front: {
  29223. height: math.unit(6, "feet"),
  29224. weight: math.unit(320, "lb"),
  29225. name: "Front",
  29226. image: {
  29227. source: "./media/characters/balina-mejeri/front.svg",
  29228. extra: 517 / 488,
  29229. bottom: 44.2 / 561
  29230. }
  29231. },
  29232. },
  29233. [
  29234. {
  29235. name: "Normal",
  29236. height: math.unit(6 + 4 / 12, "feet")
  29237. },
  29238. {
  29239. name: "Business",
  29240. height: math.unit(155, "feet"),
  29241. default: true
  29242. },
  29243. ]
  29244. ))
  29245. characterMakers.push(() => makeCharacter(
  29246. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  29247. {
  29248. kneeling: {
  29249. height: math.unit(6 + 4 / 12, "feet"),
  29250. weight: math.unit(300 * 20, "lb"),
  29251. name: "Kneeling",
  29252. image: {
  29253. source: "./media/characters/balbarian/kneeling.svg",
  29254. extra: 922 / 862,
  29255. bottom: 42.4 / 965
  29256. }
  29257. },
  29258. },
  29259. [
  29260. {
  29261. name: "Normal",
  29262. height: math.unit(6 + 4 / 12, "feet")
  29263. },
  29264. {
  29265. name: "Treasured",
  29266. height: math.unit(18 + 9 / 12, "feet"),
  29267. default: true
  29268. },
  29269. {
  29270. name: "Macro",
  29271. height: math.unit(900, "feet")
  29272. },
  29273. ]
  29274. ))
  29275. characterMakers.push(() => makeCharacter(
  29276. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  29277. {
  29278. front: {
  29279. height: math.unit(6 + 4 / 12, "feet"),
  29280. weight: math.unit(325, "lb"),
  29281. name: "Front",
  29282. image: {
  29283. source: "./media/characters/balina-amarini/front.svg",
  29284. extra: 415 / 403,
  29285. bottom: 19 / 433.4
  29286. }
  29287. },
  29288. back: {
  29289. height: math.unit(6 + 4 / 12, "feet"),
  29290. weight: math.unit(325, "lb"),
  29291. name: "Back",
  29292. image: {
  29293. source: "./media/characters/balina-amarini/back.svg",
  29294. extra: 415 / 403,
  29295. bottom: 13.5 / 432
  29296. }
  29297. },
  29298. overdrive: {
  29299. height: math.unit(6 + 4 / 12, "feet"),
  29300. weight: math.unit(400, "lb"),
  29301. name: "Overdrive",
  29302. image: {
  29303. source: "./media/characters/balina-amarini/overdrive.svg",
  29304. extra: 269 / 259,
  29305. bottom: 12 / 282
  29306. }
  29307. },
  29308. },
  29309. [
  29310. {
  29311. name: "Boom",
  29312. height: math.unit(9 + 10 / 12, "feet"),
  29313. default: true
  29314. },
  29315. {
  29316. name: "Macro",
  29317. height: math.unit(280, "feet")
  29318. },
  29319. ]
  29320. ))
  29321. characterMakers.push(() => makeCharacter(
  29322. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29323. {
  29324. goddess: {
  29325. height: math.unit(600, "feet"),
  29326. weight: math.unit(2000000, "tons"),
  29327. name: "Goddess",
  29328. image: {
  29329. source: "./media/characters/lady-kubwa/goddess.svg",
  29330. extra: 1240.5 / 1223,
  29331. bottom: 22 / 1263
  29332. }
  29333. },
  29334. goddesser: {
  29335. height: math.unit(900, "feet"),
  29336. weight: math.unit(20000000, "lb"),
  29337. name: "Goddess-er",
  29338. image: {
  29339. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29340. extra: 899 / 888,
  29341. bottom: 12.6 / 912
  29342. }
  29343. },
  29344. },
  29345. [
  29346. {
  29347. name: "Macro",
  29348. height: math.unit(600, "feet"),
  29349. default: true
  29350. },
  29351. {
  29352. name: "Megamacro",
  29353. height: math.unit(250, "miles")
  29354. },
  29355. ]
  29356. ))
  29357. characterMakers.push(() => makeCharacter(
  29358. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29359. {
  29360. front: {
  29361. height: math.unit(7 + 7 / 12, "feet"),
  29362. weight: math.unit(250, "lb"),
  29363. name: "Front",
  29364. image: {
  29365. source: "./media/characters/tala-grovehorn/front.svg",
  29366. extra: 2636 / 2525,
  29367. bottom: 147 / 2781
  29368. }
  29369. },
  29370. back: {
  29371. height: math.unit(7 + 7 / 12, "feet"),
  29372. weight: math.unit(250, "lb"),
  29373. name: "Back",
  29374. image: {
  29375. source: "./media/characters/tala-grovehorn/back.svg",
  29376. extra: 2635 / 2539,
  29377. bottom: 100 / 2732.8
  29378. }
  29379. },
  29380. mouth: {
  29381. height: math.unit(1.15, "feet"),
  29382. name: "Mouth",
  29383. image: {
  29384. source: "./media/characters/tala-grovehorn/mouth.svg"
  29385. }
  29386. },
  29387. dick: {
  29388. height: math.unit(2.36, "feet"),
  29389. name: "Dick",
  29390. image: {
  29391. source: "./media/characters/tala-grovehorn/dick.svg"
  29392. }
  29393. },
  29394. slit: {
  29395. height: math.unit(0.61, "feet"),
  29396. name: "Slit",
  29397. image: {
  29398. source: "./media/characters/tala-grovehorn/slit.svg"
  29399. }
  29400. },
  29401. },
  29402. [
  29403. ]
  29404. ))
  29405. characterMakers.push(() => makeCharacter(
  29406. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29407. {
  29408. front: {
  29409. height: math.unit(7 + 7 / 12, "feet"),
  29410. weight: math.unit(225, "lb"),
  29411. name: "Front",
  29412. image: {
  29413. source: "./media/characters/epona/front.svg",
  29414. extra: 2445 / 2290,
  29415. bottom: 251 / 2696
  29416. }
  29417. },
  29418. back: {
  29419. height: math.unit(7 + 7 / 12, "feet"),
  29420. weight: math.unit(225, "lb"),
  29421. name: "Back",
  29422. image: {
  29423. source: "./media/characters/epona/back.svg",
  29424. extra: 2546 / 2408,
  29425. bottom: 44 / 2589
  29426. }
  29427. },
  29428. genitals: {
  29429. height: math.unit(1.5, "feet"),
  29430. name: "Genitals",
  29431. image: {
  29432. source: "./media/characters/epona/genitals.svg"
  29433. }
  29434. },
  29435. },
  29436. [
  29437. {
  29438. name: "Normal",
  29439. height: math.unit(7 + 7 / 12, "feet"),
  29440. default: true
  29441. },
  29442. ]
  29443. ))
  29444. characterMakers.push(() => makeCharacter(
  29445. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29446. {
  29447. front: {
  29448. height: math.unit(7, "feet"),
  29449. weight: math.unit(518, "lb"),
  29450. name: "Front",
  29451. image: {
  29452. source: "./media/characters/avia-bloodbourn/front.svg",
  29453. extra: 1466 / 1350,
  29454. bottom: 65 / 1527
  29455. }
  29456. },
  29457. },
  29458. [
  29459. ]
  29460. ))
  29461. characterMakers.push(() => makeCharacter(
  29462. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29463. {
  29464. front: {
  29465. height: math.unit(9.35, "feet"),
  29466. weight: math.unit(600, "lb"),
  29467. name: "Front",
  29468. image: {
  29469. source: "./media/characters/amera/front.svg",
  29470. extra: 891 / 818,
  29471. bottom: 30 / 922.7
  29472. }
  29473. },
  29474. back: {
  29475. height: math.unit(9.35, "feet"),
  29476. weight: math.unit(600, "lb"),
  29477. name: "Back",
  29478. image: {
  29479. source: "./media/characters/amera/back.svg",
  29480. extra: 876 / 824,
  29481. bottom: 6.8 / 884
  29482. }
  29483. },
  29484. dick: {
  29485. height: math.unit(2.14, "feet"),
  29486. name: "Dick",
  29487. image: {
  29488. source: "./media/characters/amera/dick.svg"
  29489. }
  29490. },
  29491. },
  29492. [
  29493. {
  29494. name: "Normal",
  29495. height: math.unit(9.35, "feet"),
  29496. default: true
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29502. {
  29503. kneeling: {
  29504. height: math.unit(3 + 4 / 12, "feet"),
  29505. weight: math.unit(90, "lb"),
  29506. name: "Kneeling",
  29507. image: {
  29508. source: "./media/characters/rosewen/kneeling.svg",
  29509. extra: 1835 / 1571,
  29510. bottom: 27.7 / 1862
  29511. }
  29512. },
  29513. },
  29514. [
  29515. {
  29516. name: "Normal",
  29517. height: math.unit(3 + 4 / 12, "feet"),
  29518. default: true
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(5 + 10 / 12, "feet"),
  29527. weight: math.unit(200, "lb"),
  29528. name: "Front",
  29529. image: {
  29530. source: "./media/characters/sabah/front.svg",
  29531. extra: 849 / 763,
  29532. bottom: 33.9 / 881
  29533. }
  29534. },
  29535. },
  29536. [
  29537. {
  29538. name: "Normal",
  29539. height: math.unit(5 + 10 / 12, "feet"),
  29540. default: true
  29541. },
  29542. ]
  29543. ))
  29544. characterMakers.push(() => makeCharacter(
  29545. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29546. {
  29547. front: {
  29548. height: math.unit(3 + 5 / 12, "feet"),
  29549. weight: math.unit(40, "kg"),
  29550. name: "Front",
  29551. image: {
  29552. source: "./media/characters/purple-flame/front.svg",
  29553. extra: 1577 / 1412,
  29554. bottom: 97 / 1694
  29555. }
  29556. },
  29557. frontDressed: {
  29558. height: math.unit(3 + 5 / 12, "feet"),
  29559. weight: math.unit(40, "kg"),
  29560. name: "Front (Dressed)",
  29561. image: {
  29562. source: "./media/characters/purple-flame/front-dressed.svg",
  29563. extra: 1577 / 1412,
  29564. bottom: 97 / 1694
  29565. }
  29566. },
  29567. headphones: {
  29568. height: math.unit(0.85, "feet"),
  29569. name: "Headphones",
  29570. image: {
  29571. source: "./media/characters/purple-flame/headphones.svg"
  29572. }
  29573. },
  29574. },
  29575. [
  29576. {
  29577. name: "Really Small",
  29578. height: math.unit(5, "cm")
  29579. },
  29580. {
  29581. name: "Micro",
  29582. height: math.unit(1 + 5 / 12, "feet")
  29583. },
  29584. {
  29585. name: "Normal",
  29586. height: math.unit(3 + 5 / 12, "feet"),
  29587. default: true
  29588. },
  29589. {
  29590. name: "Minimacro",
  29591. height: math.unit(125, "feet")
  29592. },
  29593. {
  29594. name: "Macro",
  29595. height: math.unit(0.5, "miles")
  29596. },
  29597. {
  29598. name: "Megamacro",
  29599. height: math.unit(50, "miles")
  29600. },
  29601. {
  29602. name: "Gigantic",
  29603. height: math.unit(750, "miles")
  29604. },
  29605. {
  29606. name: "Planetary",
  29607. height: math.unit(15000, "miles")
  29608. },
  29609. ]
  29610. ))
  29611. characterMakers.push(() => makeCharacter(
  29612. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29613. {
  29614. front: {
  29615. height: math.unit(14, "feet"),
  29616. weight: math.unit(959, "lb"),
  29617. name: "Front",
  29618. image: {
  29619. source: "./media/characters/arsenal/front.svg",
  29620. extra: 2357 / 2157,
  29621. bottom: 93 / 2458
  29622. }
  29623. },
  29624. },
  29625. [
  29626. {
  29627. name: "Normal",
  29628. height: math.unit(14, "feet"),
  29629. default: true
  29630. },
  29631. ]
  29632. ))
  29633. characterMakers.push(() => makeCharacter(
  29634. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29635. {
  29636. front: {
  29637. height: math.unit(6, "feet"),
  29638. weight: math.unit(150, "lb"),
  29639. name: "Front",
  29640. image: {
  29641. source: "./media/characters/adira/front.svg",
  29642. extra: 1078 / 1029,
  29643. bottom: 87 / 1166
  29644. }
  29645. },
  29646. },
  29647. [
  29648. {
  29649. name: "Micro",
  29650. height: math.unit(4, "inches"),
  29651. default: true
  29652. },
  29653. {
  29654. name: "Macro",
  29655. height: math.unit(50, "feet")
  29656. },
  29657. ]
  29658. ))
  29659. characterMakers.push(() => makeCharacter(
  29660. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29661. {
  29662. front: {
  29663. height: math.unit(16, "feet"),
  29664. weight: math.unit(1000, "lb"),
  29665. name: "Front",
  29666. image: {
  29667. source: "./media/characters/grim/front.svg",
  29668. extra: 622 / 614,
  29669. bottom: 18.1 / 642
  29670. }
  29671. },
  29672. back: {
  29673. height: math.unit(16, "feet"),
  29674. weight: math.unit(1000, "lb"),
  29675. name: "Back",
  29676. image: {
  29677. source: "./media/characters/grim/back.svg",
  29678. extra: 610.6 / 602,
  29679. bottom: 40.8 / 652
  29680. }
  29681. },
  29682. hunched: {
  29683. height: math.unit(9.75, "feet"),
  29684. weight: math.unit(1000, "lb"),
  29685. name: "Hunched",
  29686. image: {
  29687. source: "./media/characters/grim/hunched.svg",
  29688. extra: 304 / 297,
  29689. bottom: 35.4 / 394
  29690. }
  29691. },
  29692. },
  29693. [
  29694. {
  29695. name: "Normal",
  29696. height: math.unit(16, "feet"),
  29697. default: true
  29698. },
  29699. ]
  29700. ))
  29701. characterMakers.push(() => makeCharacter(
  29702. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29703. {
  29704. front: {
  29705. height: math.unit(2.3, "meters"),
  29706. weight: math.unit(300, "lb"),
  29707. name: "Front",
  29708. image: {
  29709. source: "./media/characters/sinja/front-sfw.svg",
  29710. extra: 1393 / 1294,
  29711. bottom: 70 / 1463
  29712. }
  29713. },
  29714. frontNsfw: {
  29715. height: math.unit(2.3, "meters"),
  29716. weight: math.unit(300, "lb"),
  29717. name: "Front (NSFW)",
  29718. image: {
  29719. source: "./media/characters/sinja/front-nsfw.svg",
  29720. extra: 1393 / 1294,
  29721. bottom: 70 / 1463
  29722. }
  29723. },
  29724. back: {
  29725. height: math.unit(2.3, "meters"),
  29726. weight: math.unit(300, "lb"),
  29727. name: "Back",
  29728. image: {
  29729. source: "./media/characters/sinja/back.svg",
  29730. extra: 1393 / 1294,
  29731. bottom: 70 / 1463
  29732. }
  29733. },
  29734. head: {
  29735. height: math.unit(1.771, "feet"),
  29736. name: "Head",
  29737. image: {
  29738. source: "./media/characters/sinja/head.svg"
  29739. }
  29740. },
  29741. slit: {
  29742. height: math.unit(0.8, "feet"),
  29743. name: "Slit",
  29744. image: {
  29745. source: "./media/characters/sinja/slit.svg"
  29746. }
  29747. },
  29748. },
  29749. [
  29750. {
  29751. name: "Normal",
  29752. height: math.unit(2.3, "meters")
  29753. },
  29754. {
  29755. name: "Macro",
  29756. height: math.unit(91, "meters"),
  29757. default: true
  29758. },
  29759. {
  29760. name: "Megamacro",
  29761. height: math.unit(91440, "meters")
  29762. },
  29763. {
  29764. name: "Gigamacro",
  29765. height: math.unit(60960000, "meters")
  29766. },
  29767. {
  29768. name: "Teramacro",
  29769. height: math.unit(9144000000, "meters")
  29770. },
  29771. ]
  29772. ))
  29773. characterMakers.push(() => makeCharacter(
  29774. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29775. {
  29776. front: {
  29777. height: math.unit(1.7, "meters"),
  29778. weight: math.unit(130, "lb"),
  29779. name: "Front",
  29780. image: {
  29781. source: "./media/characters/kyu/front.svg",
  29782. extra: 415 / 395,
  29783. bottom: 5 / 420
  29784. }
  29785. },
  29786. head: {
  29787. height: math.unit(1.75, "feet"),
  29788. name: "Head",
  29789. image: {
  29790. source: "./media/characters/kyu/head.svg"
  29791. }
  29792. },
  29793. foot: {
  29794. height: math.unit(0.81, "feet"),
  29795. name: "Foot",
  29796. image: {
  29797. source: "./media/characters/kyu/foot.svg"
  29798. }
  29799. },
  29800. },
  29801. [
  29802. {
  29803. name: "Normal",
  29804. height: math.unit(1.7, "meters")
  29805. },
  29806. {
  29807. name: "Macro",
  29808. height: math.unit(131, "feet"),
  29809. default: true
  29810. },
  29811. {
  29812. name: "Megamacro",
  29813. height: math.unit(91440, "meters")
  29814. },
  29815. {
  29816. name: "Gigamacro",
  29817. height: math.unit(60960000, "meters")
  29818. },
  29819. {
  29820. name: "Teramacro",
  29821. height: math.unit(9144000000, "meters")
  29822. },
  29823. ]
  29824. ))
  29825. characterMakers.push(() => makeCharacter(
  29826. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29827. {
  29828. front: {
  29829. height: math.unit(7 + 1 / 12, "feet"),
  29830. weight: math.unit(250, "lb"),
  29831. name: "Front",
  29832. image: {
  29833. source: "./media/characters/joey/front.svg",
  29834. extra: 1791 / 1537,
  29835. bottom: 28 / 1816
  29836. }
  29837. },
  29838. },
  29839. [
  29840. {
  29841. name: "Micro",
  29842. height: math.unit(3, "inches")
  29843. },
  29844. {
  29845. name: "Normal",
  29846. height: math.unit(7 + 1 / 12, "feet"),
  29847. default: true
  29848. },
  29849. ]
  29850. ))
  29851. characterMakers.push(() => makeCharacter(
  29852. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29853. {
  29854. front: {
  29855. height: math.unit(165, "cm"),
  29856. weight: math.unit(140, "lb"),
  29857. name: "Front",
  29858. image: {
  29859. source: "./media/characters/sam-evans/front.svg",
  29860. extra: 3417 / 3230,
  29861. bottom: 41.3 / 3417
  29862. }
  29863. },
  29864. frontSixTails: {
  29865. height: math.unit(165, "cm"),
  29866. weight: math.unit(140, "lb"),
  29867. name: "Front-six-tails",
  29868. image: {
  29869. source: "./media/characters/sam-evans/front-six-tails.svg",
  29870. extra: 3417 / 3230,
  29871. bottom: 41.3 / 3417
  29872. }
  29873. },
  29874. back: {
  29875. height: math.unit(165, "cm"),
  29876. weight: math.unit(140, "lb"),
  29877. name: "Back",
  29878. image: {
  29879. source: "./media/characters/sam-evans/back.svg",
  29880. extra: 3227 / 3032,
  29881. bottom: 6.8 / 3234
  29882. }
  29883. },
  29884. face: {
  29885. height: math.unit(0.68, "feet"),
  29886. name: "Face",
  29887. image: {
  29888. source: "./media/characters/sam-evans/face.svg"
  29889. }
  29890. },
  29891. },
  29892. [
  29893. {
  29894. name: "Normal",
  29895. height: math.unit(165, "cm"),
  29896. default: true
  29897. },
  29898. {
  29899. name: "Macro",
  29900. height: math.unit(100, "meters")
  29901. },
  29902. {
  29903. name: "Macro+",
  29904. height: math.unit(800, "meters")
  29905. },
  29906. {
  29907. name: "Macro++",
  29908. height: math.unit(3, "km")
  29909. },
  29910. {
  29911. name: "Macro+++",
  29912. height: math.unit(30, "km")
  29913. },
  29914. ]
  29915. ))
  29916. characterMakers.push(() => makeCharacter(
  29917. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29918. {
  29919. front: {
  29920. height: math.unit(10, "feet"),
  29921. weight: math.unit(750, "lb"),
  29922. name: "Front",
  29923. image: {
  29924. source: "./media/characters/juliet-a/front.svg",
  29925. extra: 1766 / 1720,
  29926. bottom: 43 / 1809
  29927. }
  29928. },
  29929. back: {
  29930. height: math.unit(10, "feet"),
  29931. weight: math.unit(750, "lb"),
  29932. name: "Back",
  29933. image: {
  29934. source: "./media/characters/juliet-a/back.svg",
  29935. extra: 1781 / 1734,
  29936. bottom: 35 / 1810,
  29937. }
  29938. },
  29939. },
  29940. [
  29941. {
  29942. name: "Normal",
  29943. height: math.unit(10, "feet"),
  29944. default: true
  29945. },
  29946. {
  29947. name: "Dragon Form",
  29948. height: math.unit(250, "feet")
  29949. },
  29950. {
  29951. name: "Macro",
  29952. height: math.unit(1000, "feet")
  29953. },
  29954. {
  29955. name: "Megamacro",
  29956. height: math.unit(10000, "feet")
  29957. }
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29962. {
  29963. regular: {
  29964. height: math.unit(7 + 3 / 12, "feet"),
  29965. weight: math.unit(260, "lb"),
  29966. name: "Regular",
  29967. image: {
  29968. source: "./media/characters/wild/regular.svg",
  29969. extra: 97.45 / 92,
  29970. bottom: 6.8 / 104.3
  29971. }
  29972. },
  29973. biggums: {
  29974. height: math.unit(8 + 6 / 12, "feet"),
  29975. weight: math.unit(425, "lb"),
  29976. name: "Biggums",
  29977. image: {
  29978. source: "./media/characters/wild/biggums.svg",
  29979. extra: 97.45 / 92,
  29980. bottom: 7.5 / 132.34
  29981. }
  29982. },
  29983. mawRegular: {
  29984. height: math.unit(1.24, "feet"),
  29985. name: "Maw (Regular)",
  29986. image: {
  29987. source: "./media/characters/wild/maw.svg"
  29988. }
  29989. },
  29990. mawBiggums: {
  29991. height: math.unit(1.47, "feet"),
  29992. name: "Maw (Biggums)",
  29993. image: {
  29994. source: "./media/characters/wild/maw.svg"
  29995. }
  29996. },
  29997. },
  29998. [
  29999. {
  30000. name: "Normal",
  30001. height: math.unit(7 + 3 / 12, "feet"),
  30002. default: true
  30003. },
  30004. ]
  30005. ))
  30006. characterMakers.push(() => makeCharacter(
  30007. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  30008. {
  30009. front: {
  30010. height: math.unit(2.5, "meters"),
  30011. weight: math.unit(200, "kg"),
  30012. name: "Front",
  30013. image: {
  30014. source: "./media/characters/vidar/front.svg",
  30015. extra: 2994 / 2795,
  30016. bottom: 56 / 3061
  30017. }
  30018. },
  30019. back: {
  30020. height: math.unit(2.5, "meters"),
  30021. weight: math.unit(200, "kg"),
  30022. name: "Back",
  30023. image: {
  30024. source: "./media/characters/vidar/back.svg",
  30025. extra: 3131 / 2928,
  30026. bottom: 13.5 / 3141.5
  30027. }
  30028. },
  30029. feral: {
  30030. height: math.unit(2.5, "meters"),
  30031. weight: math.unit(2000, "kg"),
  30032. name: "Feral",
  30033. image: {
  30034. source: "./media/characters/vidar/feral.svg",
  30035. extra: 2790 / 1765,
  30036. bottom: 6 / 2796
  30037. }
  30038. },
  30039. },
  30040. [
  30041. {
  30042. name: "Normal",
  30043. height: math.unit(2.5, "meters"),
  30044. default: true
  30045. },
  30046. {
  30047. name: "Macro",
  30048. height: math.unit(100, "meters")
  30049. },
  30050. ]
  30051. ))
  30052. characterMakers.push(() => makeCharacter(
  30053. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  30054. {
  30055. front: {
  30056. height: math.unit(5 + 9 / 12, "feet"),
  30057. weight: math.unit(120, "lb"),
  30058. name: "Front",
  30059. image: {
  30060. source: "./media/characters/ash/front.svg",
  30061. extra: 2189 / 1961,
  30062. bottom: 5.2 / 2194
  30063. }
  30064. },
  30065. },
  30066. [
  30067. {
  30068. name: "Normal",
  30069. height: math.unit(5 + 9 / 12, "feet"),
  30070. default: true
  30071. },
  30072. ]
  30073. ))
  30074. characterMakers.push(() => makeCharacter(
  30075. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  30076. {
  30077. front: {
  30078. height: math.unit(9, "feet"),
  30079. weight: math.unit(10000, "lb"),
  30080. name: "Front",
  30081. image: {
  30082. source: "./media/characters/gygabite/front.svg",
  30083. bottom: 31.7 / 537.8,
  30084. extra: 505 / 370
  30085. }
  30086. },
  30087. },
  30088. [
  30089. {
  30090. name: "Normal",
  30091. height: math.unit(9, "feet"),
  30092. default: true
  30093. },
  30094. ]
  30095. ))
  30096. characterMakers.push(() => makeCharacter(
  30097. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  30098. {
  30099. front: {
  30100. height: math.unit(12, "feet"),
  30101. weight: math.unit(4000, "lb"),
  30102. name: "Front",
  30103. image: {
  30104. source: "./media/characters/p0tat0/front.svg",
  30105. extra: 1065 / 921,
  30106. bottom: 55.7 / 1121.25
  30107. }
  30108. },
  30109. },
  30110. [
  30111. {
  30112. name: "Normal",
  30113. height: math.unit(12, "feet"),
  30114. default: true
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  30120. {
  30121. side: {
  30122. height: math.unit(6.5, "feet"),
  30123. weight: math.unit(800, "lb"),
  30124. name: "Side",
  30125. image: {
  30126. source: "./media/characters/dusk/side.svg",
  30127. extra: 615 / 373,
  30128. bottom: 53 / 664
  30129. }
  30130. },
  30131. sitting: {
  30132. height: math.unit(7, "feet"),
  30133. weight: math.unit(800, "lb"),
  30134. name: "Sitting",
  30135. image: {
  30136. source: "./media/characters/dusk/sitting.svg",
  30137. extra: 753 / 425,
  30138. bottom: 33 / 774
  30139. }
  30140. },
  30141. head: {
  30142. height: math.unit(6.1, "feet"),
  30143. name: "Head",
  30144. image: {
  30145. source: "./media/characters/dusk/head.svg"
  30146. }
  30147. },
  30148. },
  30149. [
  30150. {
  30151. name: "Normal",
  30152. height: math.unit(7, "feet"),
  30153. default: true
  30154. },
  30155. ]
  30156. ))
  30157. characterMakers.push(() => makeCharacter(
  30158. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  30159. {
  30160. front: {
  30161. height: math.unit(15, "feet"),
  30162. weight: math.unit(7000, "lb"),
  30163. name: "Front",
  30164. image: {
  30165. source: "./media/characters/jay-direwolf/front.svg",
  30166. extra: 1810 / 1732,
  30167. bottom: 66 / 1892
  30168. }
  30169. },
  30170. },
  30171. [
  30172. {
  30173. name: "Normal",
  30174. height: math.unit(15, "feet"),
  30175. default: true
  30176. },
  30177. ]
  30178. ))
  30179. characterMakers.push(() => makeCharacter(
  30180. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  30181. {
  30182. front: {
  30183. height: math.unit(4 + 9 / 12, "feet"),
  30184. weight: math.unit(130, "lb"),
  30185. name: "Front",
  30186. image: {
  30187. source: "./media/characters/anchovie/front.svg",
  30188. extra: 382 / 350,
  30189. bottom: 25 / 409
  30190. }
  30191. },
  30192. back: {
  30193. height: math.unit(4 + 9 / 12, "feet"),
  30194. weight: math.unit(130, "lb"),
  30195. name: "Back",
  30196. image: {
  30197. source: "./media/characters/anchovie/back.svg",
  30198. extra: 385 / 352,
  30199. bottom: 16.6 / 402
  30200. }
  30201. },
  30202. frontDressed: {
  30203. height: math.unit(4 + 9 / 12, "feet"),
  30204. weight: math.unit(130, "lb"),
  30205. name: "Front (Dressed)",
  30206. image: {
  30207. source: "./media/characters/anchovie/front-dressed.svg",
  30208. extra: 382 / 350,
  30209. bottom: 25 / 409
  30210. }
  30211. },
  30212. backDressed: {
  30213. height: math.unit(4 + 9 / 12, "feet"),
  30214. weight: math.unit(130, "lb"),
  30215. name: "Back (Dressed)",
  30216. image: {
  30217. source: "./media/characters/anchovie/back-dressed.svg",
  30218. extra: 385 / 352,
  30219. bottom: 16.6 / 402
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Micro",
  30226. height: math.unit(6.4, "inches")
  30227. },
  30228. {
  30229. name: "Normal",
  30230. height: math.unit(4 + 9 / 12, "feet"),
  30231. default: true
  30232. },
  30233. ]
  30234. ))
  30235. characterMakers.push(() => makeCharacter(
  30236. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  30237. {
  30238. front: {
  30239. height: math.unit(2, "meters"),
  30240. weight: math.unit(180, "lb"),
  30241. name: "Front",
  30242. image: {
  30243. source: "./media/characters/acidrenamon/front.svg",
  30244. extra: 987 / 890,
  30245. bottom: 22.8 / 1009
  30246. }
  30247. },
  30248. back: {
  30249. height: math.unit(2, "meters"),
  30250. weight: math.unit(180, "lb"),
  30251. name: "Back",
  30252. image: {
  30253. source: "./media/characters/acidrenamon/back.svg",
  30254. extra: 983 / 891,
  30255. bottom: 8.4 / 992
  30256. }
  30257. },
  30258. head: {
  30259. height: math.unit(1.92, "feet"),
  30260. name: "Head",
  30261. image: {
  30262. source: "./media/characters/acidrenamon/head.svg"
  30263. }
  30264. },
  30265. rump: {
  30266. height: math.unit(1.72, "feet"),
  30267. name: "Rump",
  30268. image: {
  30269. source: "./media/characters/acidrenamon/rump.svg"
  30270. }
  30271. },
  30272. tail: {
  30273. height: math.unit(4.2, "feet"),
  30274. name: "Tail",
  30275. image: {
  30276. source: "./media/characters/acidrenamon/tail.svg"
  30277. }
  30278. },
  30279. },
  30280. [
  30281. {
  30282. name: "Normal",
  30283. height: math.unit(2, "meters"),
  30284. default: true
  30285. },
  30286. {
  30287. name: "Minimacro",
  30288. height: math.unit(7, "meters")
  30289. },
  30290. {
  30291. name: "Macro",
  30292. height: math.unit(200, "meters")
  30293. },
  30294. {
  30295. name: "Gigamacro",
  30296. height: math.unit(0.2, "earths")
  30297. },
  30298. ]
  30299. ))
  30300. characterMakers.push(() => makeCharacter(
  30301. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30302. {
  30303. front: {
  30304. height: math.unit(152, "feet"),
  30305. name: "Front",
  30306. image: {
  30307. source: "./media/characters/kenzie-lee/front.svg",
  30308. extra: 1869/1774,
  30309. bottom: 128/1997
  30310. }
  30311. },
  30312. side: {
  30313. height: math.unit(86, "feet"),
  30314. name: "Side",
  30315. image: {
  30316. source: "./media/characters/kenzie-lee/side.svg",
  30317. extra: 930/815,
  30318. bottom: 177/1107
  30319. }
  30320. },
  30321. paw: {
  30322. height: math.unit(15, "feet"),
  30323. name: "Paw",
  30324. image: {
  30325. source: "./media/characters/kenzie-lee/paw.svg"
  30326. }
  30327. },
  30328. },
  30329. [
  30330. {
  30331. name: "Kenzie Flea",
  30332. height: math.unit(2, "mm"),
  30333. default: true
  30334. },
  30335. {
  30336. name: "Micro",
  30337. height: math.unit(2, "inches")
  30338. },
  30339. {
  30340. name: "Normal",
  30341. height: math.unit(152, "feet")
  30342. },
  30343. {
  30344. name: "Megamacro",
  30345. height: math.unit(7, "miles")
  30346. },
  30347. {
  30348. name: "Gigamacro",
  30349. height: math.unit(8000, "miles")
  30350. },
  30351. ]
  30352. ))
  30353. characterMakers.push(() => makeCharacter(
  30354. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30355. {
  30356. front: {
  30357. height: math.unit(6, "feet"),
  30358. name: "Front",
  30359. image: {
  30360. source: "./media/characters/withers/front.svg",
  30361. extra: 1935/1760,
  30362. bottom: 72/2007
  30363. }
  30364. },
  30365. back: {
  30366. height: math.unit(6, "feet"),
  30367. name: "Back",
  30368. image: {
  30369. source: "./media/characters/withers/back.svg",
  30370. extra: 1944/1792,
  30371. bottom: 12/1956
  30372. }
  30373. },
  30374. dressed: {
  30375. height: math.unit(6, "feet"),
  30376. name: "Dressed",
  30377. image: {
  30378. source: "./media/characters/withers/dressed.svg",
  30379. extra: 1937/1765,
  30380. bottom: 73/2010
  30381. }
  30382. },
  30383. phase1: {
  30384. height: math.unit(1.1, "feet"),
  30385. name: "Phase 1",
  30386. image: {
  30387. source: "./media/characters/withers/phase-1.svg",
  30388. extra: 1885/1232,
  30389. bottom: 0/1885
  30390. }
  30391. },
  30392. phase2: {
  30393. height: math.unit(1.05, "feet"),
  30394. name: "Phase 2",
  30395. image: {
  30396. source: "./media/characters/withers/phase-2.svg",
  30397. extra: 1792/1090,
  30398. bottom: 0/1792
  30399. }
  30400. },
  30401. partyWipe: {
  30402. height: math.unit(1.1, "feet"),
  30403. name: "Party Wipe",
  30404. image: {
  30405. source: "./media/characters/withers/party-wipe.svg",
  30406. extra: 1864/1207,
  30407. bottom: 0/1864
  30408. }
  30409. },
  30410. },
  30411. [
  30412. {
  30413. name: "Macro",
  30414. height: math.unit(167, "feet"),
  30415. default: true
  30416. },
  30417. {
  30418. name: "Megamacro",
  30419. height: math.unit(15, "miles")
  30420. }
  30421. ]
  30422. ))
  30423. characterMakers.push(() => makeCharacter(
  30424. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30425. {
  30426. front: {
  30427. height: math.unit(6 + 7 / 12, "feet"),
  30428. weight: math.unit(250, "lb"),
  30429. name: "Front",
  30430. image: {
  30431. source: "./media/characters/nemoskii/front.svg",
  30432. extra: 2270 / 1734,
  30433. bottom: 86 / 2354
  30434. }
  30435. },
  30436. back: {
  30437. height: math.unit(6 + 7 / 12, "feet"),
  30438. weight: math.unit(250, "lb"),
  30439. name: "Back",
  30440. image: {
  30441. source: "./media/characters/nemoskii/back.svg",
  30442. extra: 1845 / 1788,
  30443. bottom: 10.5 / 1852
  30444. }
  30445. },
  30446. head: {
  30447. height: math.unit(1.31, "feet"),
  30448. name: "Head",
  30449. image: {
  30450. source: "./media/characters/nemoskii/head.svg"
  30451. }
  30452. },
  30453. },
  30454. [
  30455. {
  30456. name: "Micro",
  30457. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30458. },
  30459. {
  30460. name: "Normal",
  30461. height: math.unit(6 + 7 / 12, "feet"),
  30462. default: true
  30463. },
  30464. {
  30465. name: "Macro",
  30466. height: math.unit((6 + 7 / 12) * 150, "feet")
  30467. },
  30468. {
  30469. name: "Macro+",
  30470. height: math.unit((6 + 7 / 12) * 500, "feet")
  30471. },
  30472. {
  30473. name: "Megamacro",
  30474. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30475. },
  30476. ]
  30477. ))
  30478. characterMakers.push(() => makeCharacter(
  30479. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30480. {
  30481. front: {
  30482. height: math.unit(1, "mile"),
  30483. weight: math.unit(265261.9, "lb"),
  30484. name: "Front",
  30485. image: {
  30486. source: "./media/characters/shui/front.svg",
  30487. extra: 1633 / 1564,
  30488. bottom: 91.5 / 1726
  30489. }
  30490. },
  30491. },
  30492. [
  30493. {
  30494. name: "Macro",
  30495. height: math.unit(1, "mile"),
  30496. default: true
  30497. },
  30498. ]
  30499. ))
  30500. characterMakers.push(() => makeCharacter(
  30501. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30502. {
  30503. front: {
  30504. height: math.unit(12 + 6 / 12, "feet"),
  30505. weight: math.unit(1342, "lb"),
  30506. name: "Front",
  30507. image: {
  30508. source: "./media/characters/arokh-takakura/front.svg",
  30509. extra: 1089 / 1043,
  30510. bottom: 77.4 / 1176.7
  30511. }
  30512. },
  30513. back: {
  30514. height: math.unit(12 + 6 / 12, "feet"),
  30515. weight: math.unit(1342, "lb"),
  30516. name: "Back",
  30517. image: {
  30518. source: "./media/characters/arokh-takakura/back.svg",
  30519. extra: 1046 / 1019,
  30520. bottom: 102 / 1150
  30521. }
  30522. },
  30523. },
  30524. [
  30525. {
  30526. name: "Big",
  30527. height: math.unit(12 + 6 / 12, "feet"),
  30528. default: true
  30529. },
  30530. ]
  30531. ))
  30532. characterMakers.push(() => makeCharacter(
  30533. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30534. {
  30535. front: {
  30536. height: math.unit(5 + 6 / 12, "feet"),
  30537. weight: math.unit(150, "lb"),
  30538. name: "Front",
  30539. image: {
  30540. source: "./media/characters/theo/front.svg",
  30541. extra: 1184 / 1131,
  30542. bottom: 7.4 / 1191
  30543. }
  30544. },
  30545. },
  30546. [
  30547. {
  30548. name: "Micro",
  30549. height: math.unit(5, "inches")
  30550. },
  30551. {
  30552. name: "Normal",
  30553. height: math.unit(5 + 6 / 12, "feet"),
  30554. default: true
  30555. },
  30556. ]
  30557. ))
  30558. characterMakers.push(() => makeCharacter(
  30559. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30560. {
  30561. front: {
  30562. height: math.unit(5 + 9 / 12, "feet"),
  30563. weight: math.unit(130, "lb"),
  30564. name: "Front",
  30565. image: {
  30566. source: "./media/characters/cecelia-swift/front.svg",
  30567. extra: 502 / 484,
  30568. bottom: 23 / 523
  30569. }
  30570. },
  30571. back: {
  30572. height: math.unit(5 + 9 / 12, "feet"),
  30573. weight: math.unit(130, "lb"),
  30574. name: "Back",
  30575. image: {
  30576. source: "./media/characters/cecelia-swift/back.svg",
  30577. extra: 499 / 485,
  30578. bottom: 12 / 511
  30579. }
  30580. },
  30581. head: {
  30582. height: math.unit(0.90, "feet"),
  30583. name: "Head",
  30584. image: {
  30585. source: "./media/characters/cecelia-swift/head.svg"
  30586. }
  30587. },
  30588. rump: {
  30589. height: math.unit(1.75, "feet"),
  30590. name: "Rump",
  30591. image: {
  30592. source: "./media/characters/cecelia-swift/rump.svg"
  30593. }
  30594. },
  30595. },
  30596. [
  30597. {
  30598. name: "Normal",
  30599. height: math.unit(5 + 9 / 12, "feet"),
  30600. default: true
  30601. },
  30602. {
  30603. name: "Big",
  30604. height: math.unit(50, "feet")
  30605. },
  30606. {
  30607. name: "Macro",
  30608. height: math.unit(100, "feet")
  30609. },
  30610. {
  30611. name: "Macro+",
  30612. height: math.unit(500, "feet")
  30613. },
  30614. {
  30615. name: "Macro++",
  30616. height: math.unit(1000, "feet")
  30617. },
  30618. ]
  30619. ))
  30620. characterMakers.push(() => makeCharacter(
  30621. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30622. {
  30623. front: {
  30624. height: math.unit(6, "feet"),
  30625. weight: math.unit(150, "lb"),
  30626. name: "Front",
  30627. image: {
  30628. source: "./media/characters/kaunan/front.svg",
  30629. extra: 2890 / 2523,
  30630. bottom: 49 / 2939
  30631. }
  30632. },
  30633. },
  30634. [
  30635. {
  30636. name: "Macro",
  30637. height: math.unit(150, "feet"),
  30638. default: true
  30639. },
  30640. ]
  30641. ))
  30642. characterMakers.push(() => makeCharacter(
  30643. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30644. {
  30645. dressed: {
  30646. height: math.unit(175, "cm"),
  30647. weight: math.unit(60, "kg"),
  30648. name: "Dressed",
  30649. image: {
  30650. source: "./media/characters/fei/dressed.svg",
  30651. extra: 1402/1278,
  30652. bottom: 27/1429
  30653. }
  30654. },
  30655. nude: {
  30656. height: math.unit(175, "cm"),
  30657. weight: math.unit(60, "kg"),
  30658. name: "Nude",
  30659. image: {
  30660. source: "./media/characters/fei/nude.svg",
  30661. extra: 1402/1278,
  30662. bottom: 27/1429
  30663. }
  30664. },
  30665. heels: {
  30666. height: math.unit(0.466, "feet"),
  30667. name: "Heels",
  30668. image: {
  30669. source: "./media/characters/fei/heels.svg",
  30670. extra: 156/152,
  30671. bottom: 28/184
  30672. }
  30673. },
  30674. },
  30675. [
  30676. {
  30677. name: "Mortal",
  30678. height: math.unit(175, "cm")
  30679. },
  30680. {
  30681. name: "Normal",
  30682. height: math.unit(3500, "m")
  30683. },
  30684. {
  30685. name: "Stroll",
  30686. height: math.unit(18.4, "km"),
  30687. default: true
  30688. },
  30689. {
  30690. name: "Showoff",
  30691. height: math.unit(175, "km")
  30692. },
  30693. ]
  30694. ))
  30695. characterMakers.push(() => makeCharacter(
  30696. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30697. {
  30698. front: {
  30699. height: math.unit(7, "feet"),
  30700. weight: math.unit(1000, "kg"),
  30701. name: "Front",
  30702. image: {
  30703. source: "./media/characters/edrax/front.svg",
  30704. extra: 2838 / 2550,
  30705. bottom: 130 / 2968
  30706. }
  30707. },
  30708. },
  30709. [
  30710. {
  30711. name: "Small",
  30712. height: math.unit(7, "feet")
  30713. },
  30714. {
  30715. name: "Normal",
  30716. height: math.unit(1500, "meters")
  30717. },
  30718. {
  30719. name: "Mega",
  30720. height: math.unit(12000000, "km"),
  30721. default: true
  30722. },
  30723. {
  30724. name: "Megamacro",
  30725. height: math.unit(10600000, "lightyears")
  30726. },
  30727. {
  30728. name: "Hypermacro",
  30729. height: math.unit(256, "yottameters")
  30730. },
  30731. ]
  30732. ))
  30733. characterMakers.push(() => makeCharacter(
  30734. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30735. {
  30736. front: {
  30737. height: math.unit(10, "feet"),
  30738. weight: math.unit(750, "lb"),
  30739. name: "Front",
  30740. image: {
  30741. source: "./media/characters/clove/front.svg",
  30742. extra: 1918/1751,
  30743. bottom: 52/1970
  30744. }
  30745. },
  30746. back: {
  30747. height: math.unit(10, "feet"),
  30748. weight: math.unit(750, "lb"),
  30749. name: "Back",
  30750. image: {
  30751. source: "./media/characters/clove/back.svg",
  30752. extra: 1912/1747,
  30753. bottom: 50/1962
  30754. }
  30755. },
  30756. },
  30757. [
  30758. {
  30759. name: "Normal",
  30760. height: math.unit(10, "feet"),
  30761. default: true
  30762. },
  30763. ]
  30764. ))
  30765. characterMakers.push(() => makeCharacter(
  30766. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30767. {
  30768. front: {
  30769. height: math.unit(4, "feet"),
  30770. weight: math.unit(50, "lb"),
  30771. name: "Front",
  30772. image: {
  30773. source: "./media/characters/alex-rabbit/front.svg",
  30774. extra: 507 / 458,
  30775. bottom: 18.5 / 527
  30776. }
  30777. },
  30778. back: {
  30779. height: math.unit(4, "feet"),
  30780. weight: math.unit(50, "lb"),
  30781. name: "Back",
  30782. image: {
  30783. source: "./media/characters/alex-rabbit/back.svg",
  30784. extra: 502 / 460,
  30785. bottom: 18.9 / 521
  30786. }
  30787. },
  30788. },
  30789. [
  30790. {
  30791. name: "Normal",
  30792. height: math.unit(4, "feet"),
  30793. default: true
  30794. },
  30795. ]
  30796. ))
  30797. characterMakers.push(() => makeCharacter(
  30798. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30799. {
  30800. front: {
  30801. height: math.unit(1 + 3 / 12, "feet"),
  30802. weight: math.unit(80, "lb"),
  30803. name: "Front",
  30804. image: {
  30805. source: "./media/characters/zander-rose/front.svg",
  30806. extra: 916 / 797,
  30807. bottom: 17 / 933
  30808. }
  30809. },
  30810. back: {
  30811. height: math.unit(1 + 3 / 12, "feet"),
  30812. weight: math.unit(80, "lb"),
  30813. name: "Back",
  30814. image: {
  30815. source: "./media/characters/zander-rose/back.svg",
  30816. extra: 903 / 779,
  30817. bottom: 31 / 934
  30818. }
  30819. },
  30820. },
  30821. [
  30822. {
  30823. name: "Normal",
  30824. height: math.unit(1 + 3 / 12, "feet"),
  30825. default: true
  30826. },
  30827. ]
  30828. ))
  30829. characterMakers.push(() => makeCharacter(
  30830. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30831. {
  30832. anthro: {
  30833. height: math.unit(6, "feet"),
  30834. weight: math.unit(150, "lb"),
  30835. name: "Anthro",
  30836. image: {
  30837. source: "./media/characters/razz/anthro.svg",
  30838. extra: 1437 / 1343,
  30839. bottom: 48 / 1485
  30840. }
  30841. },
  30842. feral: {
  30843. height: math.unit(6, "feet"),
  30844. weight: math.unit(150, "lb"),
  30845. name: "Feral",
  30846. image: {
  30847. source: "./media/characters/razz/feral.svg",
  30848. extra: 2569 / 1385,
  30849. bottom: 95 / 2664
  30850. }
  30851. },
  30852. },
  30853. [
  30854. {
  30855. name: "Normal",
  30856. height: math.unit(6, "feet"),
  30857. default: true
  30858. },
  30859. ]
  30860. ))
  30861. characterMakers.push(() => makeCharacter(
  30862. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30863. {
  30864. front: {
  30865. height: math.unit(9 + 4 / 12, "feet"),
  30866. weight: math.unit(500, "lb"),
  30867. name: "Front",
  30868. image: {
  30869. source: "./media/characters/morrigan/front.svg",
  30870. extra: 2707 / 2579,
  30871. bottom: 156 / 2863
  30872. }
  30873. },
  30874. },
  30875. [
  30876. {
  30877. name: "Normal",
  30878. height: math.unit(9 + 4 / 12, "feet"),
  30879. default: true
  30880. },
  30881. ]
  30882. ))
  30883. characterMakers.push(() => makeCharacter(
  30884. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30885. {
  30886. front: {
  30887. height: math.unit(5, "stories"),
  30888. weight: math.unit(4000, "lb"),
  30889. name: "Front",
  30890. image: {
  30891. source: "./media/characters/jenene/front.svg",
  30892. extra: 1780 / 1710,
  30893. bottom: 57 / 1837
  30894. }
  30895. },
  30896. },
  30897. [
  30898. {
  30899. name: "Normal",
  30900. height: math.unit(5, "stories"),
  30901. default: true
  30902. },
  30903. ]
  30904. ))
  30905. characterMakers.push(() => makeCharacter(
  30906. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30907. {
  30908. taurSfw: {
  30909. height: math.unit(10, "meters"),
  30910. weight: math.unit(17500, "kg"),
  30911. name: "Taur",
  30912. image: {
  30913. source: "./media/characters/faey/taur-sfw.svg",
  30914. extra: 1200 / 968,
  30915. bottom: 41 / 1241
  30916. }
  30917. },
  30918. chestmaw: {
  30919. height: math.unit(2.01, "meters"),
  30920. name: "Chestmaw",
  30921. image: {
  30922. source: "./media/characters/faey/chestmaw.svg"
  30923. }
  30924. },
  30925. foot: {
  30926. height: math.unit(2.43, "meters"),
  30927. name: "Foot",
  30928. image: {
  30929. source: "./media/characters/faey/foot.svg"
  30930. }
  30931. },
  30932. jaws: {
  30933. height: math.unit(1.66, "meters"),
  30934. name: "Jaws",
  30935. image: {
  30936. source: "./media/characters/faey/jaws.svg"
  30937. }
  30938. },
  30939. tongues: {
  30940. height: math.unit(2.01, "meters"),
  30941. name: "Tongues",
  30942. image: {
  30943. source: "./media/characters/faey/tongues.svg"
  30944. }
  30945. },
  30946. },
  30947. [
  30948. {
  30949. name: "Small",
  30950. height: math.unit(10, "meters"),
  30951. default: true
  30952. },
  30953. {
  30954. name: "Big",
  30955. height: math.unit(500000, "km")
  30956. },
  30957. ]
  30958. ))
  30959. characterMakers.push(() => makeCharacter(
  30960. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30961. {
  30962. front: {
  30963. height: math.unit(7, "feet"),
  30964. weight: math.unit(275, "lb"),
  30965. name: "Front",
  30966. image: {
  30967. source: "./media/characters/roku/front.svg",
  30968. extra: 903 / 878,
  30969. bottom: 37 / 940
  30970. }
  30971. },
  30972. },
  30973. [
  30974. {
  30975. name: "Normal",
  30976. height: math.unit(7, "feet"),
  30977. default: true
  30978. },
  30979. {
  30980. name: "Macro",
  30981. height: math.unit(500, "feet")
  30982. },
  30983. {
  30984. name: "Megamacro",
  30985. height: math.unit(200, "miles")
  30986. },
  30987. ]
  30988. ))
  30989. characterMakers.push(() => makeCharacter(
  30990. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30991. {
  30992. front: {
  30993. height: math.unit(6 + 2 / 12, "feet"),
  30994. weight: math.unit(150, "lb"),
  30995. name: "Front",
  30996. image: {
  30997. source: "./media/characters/lira/front.svg",
  30998. extra: 1727 / 1605,
  30999. bottom: 26 / 1753
  31000. }
  31001. },
  31002. back: {
  31003. height: math.unit(6 + 2 / 12, "feet"),
  31004. weight: math.unit(150, "lb"),
  31005. name: "Back",
  31006. image: {
  31007. source: "./media/characters/lira/back.svg",
  31008. extra: 1713/1621,
  31009. bottom: 20/1733
  31010. }
  31011. },
  31012. hand: {
  31013. height: math.unit(0.75, "feet"),
  31014. name: "Hand",
  31015. image: {
  31016. source: "./media/characters/lira/hand.svg"
  31017. }
  31018. },
  31019. maw: {
  31020. height: math.unit(0.65, "feet"),
  31021. name: "Maw",
  31022. image: {
  31023. source: "./media/characters/lira/maw.svg"
  31024. }
  31025. },
  31026. pawDigi: {
  31027. height: math.unit(1.6, "feet"),
  31028. name: "Paw Digi",
  31029. image: {
  31030. source: "./media/characters/lira/paw-digi.svg"
  31031. }
  31032. },
  31033. pawPlanti: {
  31034. height: math.unit(1.4, "feet"),
  31035. name: "Paw Planti",
  31036. image: {
  31037. source: "./media/characters/lira/paw-planti.svg"
  31038. }
  31039. },
  31040. },
  31041. [
  31042. {
  31043. name: "Normal",
  31044. height: math.unit(6 + 2 / 12, "feet"),
  31045. default: true
  31046. },
  31047. {
  31048. name: "Macro",
  31049. height: math.unit(100, "feet")
  31050. },
  31051. {
  31052. name: "Macro²",
  31053. height: math.unit(1600, "feet")
  31054. },
  31055. {
  31056. name: "Planetary",
  31057. height: math.unit(20, "earths")
  31058. },
  31059. ]
  31060. ))
  31061. characterMakers.push(() => makeCharacter(
  31062. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  31063. {
  31064. front: {
  31065. height: math.unit(6, "feet"),
  31066. weight: math.unit(150, "lb"),
  31067. name: "Front",
  31068. image: {
  31069. source: "./media/characters/hadjet/front.svg",
  31070. extra: 1480 / 1346,
  31071. bottom: 26 / 1506
  31072. }
  31073. },
  31074. frontNsfw: {
  31075. height: math.unit(6, "feet"),
  31076. weight: math.unit(150, "lb"),
  31077. name: "Front (NSFW)",
  31078. image: {
  31079. source: "./media/characters/hadjet/front-nsfw.svg",
  31080. extra: 1440 / 1358,
  31081. bottom: 52 / 1492
  31082. }
  31083. },
  31084. },
  31085. [
  31086. {
  31087. name: "Macro",
  31088. height: math.unit(10, "stories"),
  31089. default: true
  31090. },
  31091. {
  31092. name: "Megamacro",
  31093. height: math.unit(1.5, "miles")
  31094. },
  31095. {
  31096. name: "Megamacro+",
  31097. height: math.unit(5, "miles")
  31098. },
  31099. ]
  31100. ))
  31101. characterMakers.push(() => makeCharacter(
  31102. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  31103. {
  31104. side: {
  31105. height: math.unit(106, "feet"),
  31106. weight: math.unit(500, "tonnes"),
  31107. name: "Side",
  31108. image: {
  31109. source: "./media/characters/kodran/side.svg",
  31110. extra: 553 / 480,
  31111. bottom: 33 / 586
  31112. }
  31113. },
  31114. front: {
  31115. height: math.unit(132, "feet"),
  31116. weight: math.unit(500, "tonnes"),
  31117. name: "Front",
  31118. image: {
  31119. source: "./media/characters/kodran/front.svg",
  31120. extra: 667 / 643,
  31121. bottom: 42 / 709
  31122. }
  31123. },
  31124. flying: {
  31125. height: math.unit(350, "feet"),
  31126. weight: math.unit(500, "tonnes"),
  31127. name: "Flying",
  31128. image: {
  31129. source: "./media/characters/kodran/flying.svg"
  31130. }
  31131. },
  31132. foot: {
  31133. height: math.unit(33, "feet"),
  31134. name: "Foot",
  31135. image: {
  31136. source: "./media/characters/kodran/foot.svg"
  31137. }
  31138. },
  31139. footFront: {
  31140. height: math.unit(19, "feet"),
  31141. name: "Foot (Front)",
  31142. image: {
  31143. source: "./media/characters/kodran/foot-front.svg",
  31144. extra: 261 / 261,
  31145. bottom: 91 / 352
  31146. }
  31147. },
  31148. headFront: {
  31149. height: math.unit(53, "feet"),
  31150. name: "Head (Front)",
  31151. image: {
  31152. source: "./media/characters/kodran/head-front.svg"
  31153. }
  31154. },
  31155. headSide: {
  31156. height: math.unit(65, "feet"),
  31157. name: "Head (Side)",
  31158. image: {
  31159. source: "./media/characters/kodran/head-side.svg"
  31160. }
  31161. },
  31162. throat: {
  31163. height: math.unit(79, "feet"),
  31164. name: "Throat",
  31165. image: {
  31166. source: "./media/characters/kodran/throat.svg"
  31167. }
  31168. },
  31169. },
  31170. [
  31171. {
  31172. name: "Large",
  31173. height: math.unit(106, "feet"),
  31174. default: true
  31175. },
  31176. ]
  31177. ))
  31178. characterMakers.push(() => makeCharacter(
  31179. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  31180. {
  31181. side: {
  31182. height: math.unit(11, "feet"),
  31183. weight: math.unit(150, "lb"),
  31184. name: "Side",
  31185. image: {
  31186. source: "./media/characters/pyxaron/side.svg",
  31187. extra: 305 / 195,
  31188. bottom: 17 / 322
  31189. }
  31190. },
  31191. },
  31192. [
  31193. {
  31194. name: "Normal",
  31195. height: math.unit(11, "feet"),
  31196. default: true
  31197. },
  31198. ]
  31199. ))
  31200. characterMakers.push(() => makeCharacter(
  31201. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  31202. {
  31203. front: {
  31204. height: math.unit(6, "feet"),
  31205. weight: math.unit(150, "lb"),
  31206. name: "Front",
  31207. image: {
  31208. source: "./media/characters/meep/front.svg",
  31209. extra: 88 / 80,
  31210. bottom: 6 / 94
  31211. }
  31212. },
  31213. },
  31214. [
  31215. {
  31216. name: "Fun Sized",
  31217. height: math.unit(2, "inches"),
  31218. default: true
  31219. },
  31220. {
  31221. name: "Friend Sized",
  31222. height: math.unit(8, "inches")
  31223. },
  31224. ]
  31225. ))
  31226. characterMakers.push(() => makeCharacter(
  31227. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  31228. {
  31229. front: {
  31230. height: math.unit(15, "feet"),
  31231. weight: math.unit(2500, "lb"),
  31232. name: "Front",
  31233. image: {
  31234. source: "./media/characters/holly-rabbit/front.svg",
  31235. extra: 1433 / 1233,
  31236. bottom: 125 / 1558
  31237. }
  31238. },
  31239. dick: {
  31240. height: math.unit(4.6, "feet"),
  31241. name: "Dick",
  31242. image: {
  31243. source: "./media/characters/holly-rabbit/dick.svg"
  31244. }
  31245. },
  31246. },
  31247. [
  31248. {
  31249. name: "Normal",
  31250. height: math.unit(15, "feet"),
  31251. default: true
  31252. },
  31253. {
  31254. name: "Macro",
  31255. height: math.unit(250, "feet")
  31256. },
  31257. {
  31258. name: "Macro+",
  31259. height: math.unit(2500, "feet")
  31260. },
  31261. ]
  31262. ))
  31263. characterMakers.push(() => makeCharacter(
  31264. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  31265. {
  31266. front: {
  31267. height: math.unit(3.02, "meters"),
  31268. weight: math.unit(500, "kg"),
  31269. name: "Front",
  31270. image: {
  31271. source: "./media/characters/drena/front.svg",
  31272. extra: 282 / 243,
  31273. bottom: 8 / 290
  31274. }
  31275. },
  31276. side: {
  31277. height: math.unit(3.02, "meters"),
  31278. weight: math.unit(500, "kg"),
  31279. name: "Side",
  31280. image: {
  31281. source: "./media/characters/drena/side.svg",
  31282. extra: 280 / 245,
  31283. bottom: 10 / 290
  31284. }
  31285. },
  31286. back: {
  31287. height: math.unit(3.02, "meters"),
  31288. weight: math.unit(500, "kg"),
  31289. name: "Back",
  31290. image: {
  31291. source: "./media/characters/drena/back.svg",
  31292. extra: 278 / 243,
  31293. bottom: 2 / 280
  31294. }
  31295. },
  31296. foot: {
  31297. height: math.unit(0.75, "meters"),
  31298. name: "Foot",
  31299. image: {
  31300. source: "./media/characters/drena/foot.svg"
  31301. }
  31302. },
  31303. maw: {
  31304. height: math.unit(0.82, "meters"),
  31305. name: "Maw",
  31306. image: {
  31307. source: "./media/characters/drena/maw.svg"
  31308. }
  31309. },
  31310. eating: {
  31311. height: math.unit(0.75, "meters"),
  31312. name: "Eating",
  31313. image: {
  31314. source: "./media/characters/drena/eating.svg"
  31315. }
  31316. },
  31317. rump: {
  31318. height: math.unit(0.93, "meters"),
  31319. name: "Rump",
  31320. image: {
  31321. source: "./media/characters/drena/rump.svg"
  31322. }
  31323. },
  31324. },
  31325. [
  31326. {
  31327. name: "Normal",
  31328. height: math.unit(3.02, "meters"),
  31329. default: true
  31330. },
  31331. ]
  31332. ))
  31333. characterMakers.push(() => makeCharacter(
  31334. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31335. {
  31336. front: {
  31337. height: math.unit(6 + 4 / 12, "feet"),
  31338. weight: math.unit(250, "lb"),
  31339. name: "Front",
  31340. image: {
  31341. source: "./media/characters/remmyzilla/front.svg",
  31342. extra: 4033 / 3588,
  31343. bottom: 123 / 4156
  31344. }
  31345. },
  31346. back: {
  31347. height: math.unit(6 + 4 / 12, "feet"),
  31348. weight: math.unit(250, "lb"),
  31349. name: "Back",
  31350. image: {
  31351. source: "./media/characters/remmyzilla/back.svg",
  31352. extra: 1696/1602,
  31353. bottom: 63/1759
  31354. }
  31355. },
  31356. paw: {
  31357. height: math.unit(1.73, "feet"),
  31358. name: "Paw",
  31359. image: {
  31360. source: "./media/characters/remmyzilla/paw.svg"
  31361. },
  31362. extraAttributes: {
  31363. "toeSize": {
  31364. name: "Toe Size",
  31365. power: 2,
  31366. type: "area",
  31367. base: math.unit(0.0035, "m^2")
  31368. },
  31369. "padSize": {
  31370. name: "Pad Size",
  31371. power: 2,
  31372. type: "area",
  31373. base: math.unit(0.015, "m^2")
  31374. },
  31375. "pawsize": {
  31376. name: "Paw Size",
  31377. power: 2,
  31378. type: "area",
  31379. base: math.unit(0.072, "m^2")
  31380. },
  31381. }
  31382. },
  31383. maw: {
  31384. height: math.unit(1.73, "feet"),
  31385. name: "Maw",
  31386. image: {
  31387. source: "./media/characters/remmyzilla/maw.svg"
  31388. }
  31389. },
  31390. },
  31391. [
  31392. {
  31393. name: "Normal",
  31394. height: math.unit(6 + 4 / 12, "feet")
  31395. },
  31396. {
  31397. name: "Minimacro",
  31398. height: math.unit(12 + 8 / 12, "feet")
  31399. },
  31400. {
  31401. name: "Normal",
  31402. height: math.unit(640, "feet"),
  31403. default: true
  31404. },
  31405. {
  31406. name: "Megamacro",
  31407. height: math.unit(6400, "feet")
  31408. },
  31409. {
  31410. name: "Gigamacro",
  31411. height: math.unit(64000, "miles")
  31412. },
  31413. ]
  31414. ))
  31415. characterMakers.push(() => makeCharacter(
  31416. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31417. {
  31418. front: {
  31419. height: math.unit(2.5, "meters"),
  31420. weight: math.unit(300, "lb"),
  31421. name: "Front",
  31422. image: {
  31423. source: "./media/characters/lawrence/front.svg",
  31424. extra: 357 / 335,
  31425. bottom: 30 / 387
  31426. }
  31427. },
  31428. back: {
  31429. height: math.unit(2.5, "meters"),
  31430. weight: math.unit(300, "lb"),
  31431. name: "Back",
  31432. image: {
  31433. source: "./media/characters/lawrence/back.svg",
  31434. extra: 357 / 338,
  31435. bottom: 16 / 373
  31436. }
  31437. },
  31438. head: {
  31439. height: math.unit(0.9, "meter"),
  31440. name: "Head",
  31441. image: {
  31442. source: "./media/characters/lawrence/head.svg"
  31443. }
  31444. },
  31445. maw: {
  31446. height: math.unit(0.7, "meter"),
  31447. name: "Maw",
  31448. image: {
  31449. source: "./media/characters/lawrence/maw.svg"
  31450. }
  31451. },
  31452. footBottom: {
  31453. height: math.unit(0.5, "meter"),
  31454. name: "Foot (Bottom)",
  31455. image: {
  31456. source: "./media/characters/lawrence/foot-bottom.svg"
  31457. }
  31458. },
  31459. footTop: {
  31460. height: math.unit(0.5, "meter"),
  31461. name: "Foot (Top)",
  31462. image: {
  31463. source: "./media/characters/lawrence/foot-top.svg"
  31464. }
  31465. },
  31466. },
  31467. [
  31468. {
  31469. name: "Normal",
  31470. height: math.unit(2.5, "meters"),
  31471. default: true
  31472. },
  31473. {
  31474. name: "Macro",
  31475. height: math.unit(95, "meters")
  31476. },
  31477. {
  31478. name: "Megamacro",
  31479. height: math.unit(150, "km")
  31480. },
  31481. ]
  31482. ))
  31483. characterMakers.push(() => makeCharacter(
  31484. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31485. {
  31486. front: {
  31487. height: math.unit(4.2, "meters"),
  31488. preyCapacity: math.unit(50, "m^3"),
  31489. weight: math.unit(30, "tonnes"),
  31490. name: "Front",
  31491. image: {
  31492. source: "./media/characters/sydney/front.svg",
  31493. extra: 1177/1129,
  31494. bottom: 197/1374
  31495. },
  31496. extraAttributes: {
  31497. "length": {
  31498. name: "Length",
  31499. power: 1,
  31500. type: "length",
  31501. base: math.unit(21, "meters")
  31502. },
  31503. }
  31504. },
  31505. },
  31506. [
  31507. {
  31508. name: "Normal",
  31509. height: math.unit(4.2, "meters"),
  31510. default: true
  31511. },
  31512. ]
  31513. ))
  31514. characterMakers.push(() => makeCharacter(
  31515. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31516. {
  31517. back: {
  31518. height: math.unit(201, "feet"),
  31519. name: "Back",
  31520. image: {
  31521. source: "./media/characters/jessica/back.svg",
  31522. extra: 273 / 259,
  31523. bottom: 7 / 280
  31524. }
  31525. },
  31526. },
  31527. [
  31528. {
  31529. name: "Normal",
  31530. height: math.unit(201, "feet"),
  31531. default: true
  31532. },
  31533. {
  31534. name: "Megamacro",
  31535. height: math.unit(8, "miles")
  31536. },
  31537. ]
  31538. ))
  31539. characterMakers.push(() => makeCharacter(
  31540. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31541. {
  31542. side: {
  31543. height: math.unit(5.6, "m"),
  31544. weight: math.unit(8000, "kg"),
  31545. name: "Side",
  31546. image: {
  31547. source: "./media/characters/victoria/side.svg",
  31548. extra: 1542/1229,
  31549. bottom: 124/1666
  31550. }
  31551. },
  31552. maw: {
  31553. height: math.unit(7.14, "feet"),
  31554. name: "Maw",
  31555. image: {
  31556. source: "./media/characters/victoria/maw.svg"
  31557. }
  31558. },
  31559. },
  31560. [
  31561. {
  31562. name: "Normal",
  31563. height: math.unit(5.6, "m"),
  31564. default: true
  31565. },
  31566. ]
  31567. ))
  31568. characterMakers.push(() => makeCharacter(
  31569. { name: "Cat", species: ["cat", "nickit", "lucario", "riolu", "lopunny", "dog", "pikachu"], tags: ["anthro", "feral", "taur"] },
  31570. {
  31571. front: {
  31572. height: math.unit(5 + 6 / 12, "feet"),
  31573. name: "Front",
  31574. image: {
  31575. source: "./media/characters/cat/cat-front.svg",
  31576. extra: 1422/1262,
  31577. bottom: 61/1483
  31578. },
  31579. form: "cat",
  31580. default: true
  31581. },
  31582. back: {
  31583. height: math.unit(5 + 6 / 12, "feet"),
  31584. name: "Back",
  31585. image: {
  31586. source: "./media/characters/cat/cat-back.svg",
  31587. extra: 1466/1301,
  31588. bottom: 19/1485
  31589. },
  31590. form: "cat"
  31591. },
  31592. taur: {
  31593. height: math.unit(7, "feet"),
  31594. name: "Side",
  31595. image: {
  31596. source: "./media/characters/cat/taur-side.svg",
  31597. extra: 1389/1233,
  31598. bottom: 83/1472
  31599. },
  31600. form: "taur",
  31601. default: true
  31602. },
  31603. lucarioFront: {
  31604. height: math.unit(4, "feet"),
  31605. name: "Front",
  31606. image: {
  31607. source: "./media/characters/cat/lucario-front.svg",
  31608. extra: 1149/1019,
  31609. bottom: 84/1233
  31610. },
  31611. form: "lucario",
  31612. default: true
  31613. },
  31614. lucarioBack: {
  31615. height: math.unit(4, "feet"),
  31616. name: "Back",
  31617. image: {
  31618. source: "./media/characters/cat/lucario-back.svg",
  31619. extra: 1190/1059,
  31620. bottom: 33/1223
  31621. },
  31622. form: "lucario"
  31623. },
  31624. riolu_front: {
  31625. height: math.unit(2 + 4/12, "feet"),
  31626. name: "Front",
  31627. image: {
  31628. source: "./media/characters/cat/riolu-front.svg",
  31629. extra: 1104/956,
  31630. bottom: 70/1174
  31631. },
  31632. form: "riolu",
  31633. default: true
  31634. },
  31635. nickit: {
  31636. height: math.unit(2, "feet"),
  31637. name: "Side",
  31638. image: {
  31639. source: "./media/characters/cat/nickit-side.svg",
  31640. extra: 1087/852,
  31641. bottom: 67/1154
  31642. },
  31643. form: "nickit",
  31644. default: true
  31645. },
  31646. lopunnyFront: {
  31647. height: math.unit(5, "feet"),
  31648. name: "Front",
  31649. image: {
  31650. source: "./media/characters/cat/lopunny-front.svg",
  31651. extra: 1217/1078,
  31652. bottom: 23/1240
  31653. },
  31654. form: "lopunny",
  31655. default: true
  31656. },
  31657. lopunnyBack: {
  31658. height: math.unit(5, "feet"),
  31659. name: "Back",
  31660. image: {
  31661. source: "./media/characters/cat/lopunny-back.svg",
  31662. extra: 1205/1057,
  31663. bottom: 33/1238
  31664. },
  31665. form: "lopunny"
  31666. },
  31667. dog_front: {
  31668. height: math.unit(5 + 9/12, "feet"),
  31669. name: "Front",
  31670. image: {
  31671. source: "./media/characters/cat/dog-front.svg",
  31672. extra: 1403/1309,
  31673. bottom: 31/1434
  31674. },
  31675. form: "dog",
  31676. default: true
  31677. },
  31678. dog_back: {
  31679. height: math.unit(5 + 9/12, "feet"),
  31680. name: "Back",
  31681. image: {
  31682. source: "./media/characters/cat/dog-back.svg",
  31683. extra: 1393/1297,
  31684. bottom: 38/1431
  31685. },
  31686. form: "dog",
  31687. },
  31688. pikachu_front: {
  31689. height: math.unit(2.64, "feet"),
  31690. name: "Front",
  31691. image: {
  31692. source: "./media/characters/cat/pikachu-front.svg",
  31693. extra: 1224/958,
  31694. bottom: 34/1258
  31695. },
  31696. form: "pikachu",
  31697. default: true
  31698. },
  31699. pikachu_back: {
  31700. height: math.unit(2.64, "feet"),
  31701. name: "Back",
  31702. image: {
  31703. source: "./media/characters/cat/pikachu-back.svg",
  31704. extra: 1228/958,
  31705. bottom: 16/1244
  31706. },
  31707. form: "pikachu",
  31708. },
  31709. gigachuFront: {
  31710. height: math.unit(75, "feet"),
  31711. name: "Front",
  31712. image: {
  31713. source: "./media/characters/cat/gigachu-front.svg",
  31714. extra: 1239/1027,
  31715. bottom: 32/1271
  31716. },
  31717. form: "gigachu",
  31718. default: true
  31719. },
  31720. gigachuBack: {
  31721. height: math.unit(75, "feet"),
  31722. name: "Back",
  31723. image: {
  31724. source: "./media/characters/cat/gigachu-back.svg",
  31725. extra: 1229/1030,
  31726. bottom: 9/1238
  31727. },
  31728. form: "gigachu"
  31729. },
  31730. },
  31731. [
  31732. {
  31733. name: "Really small",
  31734. height: math.unit(1, "nm"),
  31735. allForms: true
  31736. },
  31737. {
  31738. name: "Micro",
  31739. height: math.unit(5, "inches"),
  31740. allForms: true
  31741. },
  31742. {
  31743. name: "Normal",
  31744. height: math.unit(5 + 6 / 12, "feet"),
  31745. default: true,
  31746. form: "cat"
  31747. },
  31748. {
  31749. name: "Normal",
  31750. height: math.unit(7, "feet"),
  31751. default: true,
  31752. form: "taur"
  31753. },
  31754. {
  31755. name: "Normal",
  31756. height: math.unit(4, "feet"),
  31757. default: true,
  31758. form: "lucario"
  31759. },
  31760. {
  31761. name: "Normal",
  31762. height: math.unit(2, "feet"),
  31763. default: true,
  31764. form: "nickit"
  31765. },
  31766. {
  31767. name: "Normal",
  31768. height: math.unit(5, "feet"),
  31769. default: true,
  31770. form: "lopunny"
  31771. },
  31772. {
  31773. name: "Normal",
  31774. height: math.unit(2 + 4/12, "feet"),
  31775. default: true,
  31776. form: "riolu"
  31777. },
  31778. {
  31779. name: "Normal",
  31780. height: math.unit(5 + 6 / 12, "feet"),
  31781. default: true,
  31782. form: "dog"
  31783. },
  31784. {
  31785. name: "Macro",
  31786. height: math.unit(50, "feet"),
  31787. allForms: true
  31788. },
  31789. {
  31790. name: "Normal",
  31791. height: math.unit(2.64, "feet"),
  31792. default: true,
  31793. form: "pikachu"
  31794. },
  31795. {
  31796. name: "Dynamax",
  31797. height: math.unit(75, "feet"),
  31798. form: "gigachu",
  31799. default: true
  31800. },
  31801. {
  31802. name: "Macro+",
  31803. height: math.unit(150, "feet"),
  31804. allForms: true
  31805. },
  31806. {
  31807. name: "Megamacro",
  31808. height: math.unit(100, "miles"),
  31809. allForms: true
  31810. },
  31811. ],
  31812. {
  31813. "cat": {
  31814. name: "Cat",
  31815. default: true
  31816. },
  31817. "taur": {
  31818. name: "Taur",
  31819. },
  31820. "lucario": {
  31821. name: "Lucario",
  31822. },
  31823. "riolu": {
  31824. name: "Riolu",
  31825. },
  31826. "nickit": {
  31827. name: "Nickit",
  31828. },
  31829. "lopunny": {
  31830. name: "Lopunny",
  31831. },
  31832. "dog": {
  31833. name: "Dog",
  31834. },
  31835. "pikachu": {
  31836. name: "Pikachu",
  31837. },
  31838. "gigachu": {
  31839. name: "Gigachu",
  31840. ignoreAllFormSizes: true
  31841. }
  31842. }
  31843. ))
  31844. characterMakers.push(() => makeCharacter(
  31845. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31846. {
  31847. front: {
  31848. height: math.unit(63.4, "meters"),
  31849. weight: math.unit(3.28349e+6, "kilograms"),
  31850. name: "Front",
  31851. image: {
  31852. source: "./media/characters/kirina-violet/front.svg",
  31853. extra: 2812 / 2725,
  31854. bottom: 0 / 2812
  31855. }
  31856. },
  31857. back: {
  31858. height: math.unit(63.4, "meters"),
  31859. weight: math.unit(3.28349e+6, "kilograms"),
  31860. name: "Back",
  31861. image: {
  31862. source: "./media/characters/kirina-violet/back.svg",
  31863. extra: 2812 / 2725,
  31864. bottom: 0 / 2812
  31865. }
  31866. },
  31867. mouth: {
  31868. height: math.unit(4.35, "meters"),
  31869. name: "Mouth",
  31870. image: {
  31871. source: "./media/characters/kirina-violet/mouth.svg"
  31872. }
  31873. },
  31874. paw: {
  31875. height: math.unit(5.6, "meters"),
  31876. name: "Paw",
  31877. image: {
  31878. source: "./media/characters/kirina-violet/paw.svg"
  31879. }
  31880. },
  31881. tail: {
  31882. height: math.unit(18, "meters"),
  31883. name: "Tail",
  31884. image: {
  31885. source: "./media/characters/kirina-violet/tail.svg"
  31886. }
  31887. },
  31888. },
  31889. [
  31890. {
  31891. name: "Macro",
  31892. height: math.unit(63.4, "meters"),
  31893. default: true
  31894. },
  31895. ]
  31896. ))
  31897. characterMakers.push(() => makeCharacter(
  31898. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31899. {
  31900. front: {
  31901. height: math.unit(6, "feet"),
  31902. weight: math.unit(150, "lb"),
  31903. name: "Front",
  31904. image: {
  31905. source: "./media/characters/sfaiyan/front.svg",
  31906. extra: 999 / 978,
  31907. bottom: 5 / 1004
  31908. }
  31909. },
  31910. },
  31911. [
  31912. {
  31913. name: "Normal",
  31914. height: math.unit(1.82, "meters")
  31915. },
  31916. {
  31917. name: "Giant",
  31918. height: math.unit(2.27, "km"),
  31919. default: true
  31920. },
  31921. ]
  31922. ))
  31923. characterMakers.push(() => makeCharacter(
  31924. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31925. {
  31926. front: {
  31927. height: math.unit(179, "cm"),
  31928. weight: math.unit(100, "kg"),
  31929. name: "Front",
  31930. image: {
  31931. source: "./media/characters/raunehkeli/front.svg",
  31932. extra: 1934 / 1926,
  31933. bottom: 0 / 1934
  31934. }
  31935. },
  31936. },
  31937. [
  31938. {
  31939. name: "Normal",
  31940. height: math.unit(179, "cm")
  31941. },
  31942. {
  31943. name: "Maximum",
  31944. height: math.unit(575, "meters"),
  31945. default: true
  31946. },
  31947. ]
  31948. ))
  31949. characterMakers.push(() => makeCharacter(
  31950. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31951. {
  31952. front: {
  31953. height: math.unit(6, "feet"),
  31954. weight: math.unit(150, "lb"),
  31955. name: "Front",
  31956. image: {
  31957. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31958. extra: 2625 / 2518,
  31959. bottom: 60 / 2685
  31960. }
  31961. },
  31962. },
  31963. [
  31964. {
  31965. name: "Normal",
  31966. height: math.unit(6 + 2 / 12, "feet")
  31967. },
  31968. {
  31969. name: "Macro",
  31970. height: math.unit(1180, "feet"),
  31971. default: true
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31977. {
  31978. front: {
  31979. height: math.unit(5 + 6 / 12, "feet"),
  31980. weight: math.unit(108, "lb"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/lilith-zott/front.svg",
  31984. extra: 2510 / 2238,
  31985. bottom: 100 / 2610
  31986. }
  31987. },
  31988. frontDressed: {
  31989. height: math.unit(5 + 6 / 12, "feet"),
  31990. weight: math.unit(108, "lb"),
  31991. name: "Front (Dressed)",
  31992. image: {
  31993. source: "./media/characters/lilith-zott/front-dressed.svg",
  31994. extra: 2510 / 2238,
  31995. bottom: 100 / 2610
  31996. }
  31997. },
  31998. },
  31999. [
  32000. {
  32001. name: "Normal",
  32002. height: math.unit(5 + 6 / 12, "feet")
  32003. },
  32004. {
  32005. name: "Macro",
  32006. height: math.unit(1030, "feet"),
  32007. default: true
  32008. },
  32009. ]
  32010. ))
  32011. characterMakers.push(() => makeCharacter(
  32012. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  32013. {
  32014. front: {
  32015. height: math.unit(6, "feet"),
  32016. weight: math.unit(150, "lb"),
  32017. name: "Front",
  32018. image: {
  32019. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  32020. extra: 2567 / 2435,
  32021. bottom: 39 / 2606
  32022. }
  32023. },
  32024. frontSuper: {
  32025. height: math.unit(6, "feet"),
  32026. name: "Front (Super)",
  32027. image: {
  32028. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  32029. extra: 2567 / 2435,
  32030. bottom: 39 / 2606
  32031. }
  32032. },
  32033. },
  32034. [
  32035. {
  32036. name: "Normal",
  32037. height: math.unit(5 + 10 / 12, "feet")
  32038. },
  32039. {
  32040. name: "Macro",
  32041. height: math.unit(1100, "feet"),
  32042. default: true
  32043. },
  32044. ]
  32045. ))
  32046. characterMakers.push(() => makeCharacter(
  32047. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  32048. {
  32049. front: {
  32050. height: math.unit(100, "miles"),
  32051. name: "Front",
  32052. image: {
  32053. source: "./media/characters/sona/front.svg",
  32054. extra: 2433 / 2201,
  32055. bottom: 53 / 2486
  32056. }
  32057. },
  32058. foot: {
  32059. height: math.unit(16.1, "miles"),
  32060. name: "Foot",
  32061. image: {
  32062. source: "./media/characters/sona/foot.svg"
  32063. }
  32064. },
  32065. },
  32066. [
  32067. {
  32068. name: "Macro",
  32069. height: math.unit(100, "miles"),
  32070. default: true
  32071. },
  32072. ]
  32073. ))
  32074. characterMakers.push(() => makeCharacter(
  32075. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  32076. {
  32077. front: {
  32078. height: math.unit(6, "feet"),
  32079. weight: math.unit(150, "lb"),
  32080. name: "Front",
  32081. image: {
  32082. source: "./media/characters/bailey/front.svg",
  32083. extra: 1778 / 1724,
  32084. bottom: 30 / 1808
  32085. }
  32086. },
  32087. },
  32088. [
  32089. {
  32090. name: "Micro",
  32091. height: math.unit(4, "inches")
  32092. },
  32093. {
  32094. name: "Normal",
  32095. height: math.unit(5 + 5 / 12, "feet"),
  32096. default: true
  32097. },
  32098. {
  32099. name: "Macro",
  32100. height: math.unit(250, "feet")
  32101. },
  32102. {
  32103. name: "Megamacro",
  32104. height: math.unit(100, "miles")
  32105. },
  32106. ]
  32107. ))
  32108. characterMakers.push(() => makeCharacter(
  32109. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  32110. {
  32111. front: {
  32112. height: math.unit(5 + 2 / 12, "feet"),
  32113. weight: math.unit(120, "lb"),
  32114. name: "Front",
  32115. image: {
  32116. source: "./media/characters/snaps/front.svg",
  32117. extra: 2370 / 2177,
  32118. bottom: 48 / 2418
  32119. }
  32120. },
  32121. back: {
  32122. height: math.unit(5 + 2 / 12, "feet"),
  32123. weight: math.unit(120, "lb"),
  32124. name: "Back",
  32125. image: {
  32126. source: "./media/characters/snaps/back.svg",
  32127. extra: 2408 / 2258,
  32128. bottom: 15 / 2423
  32129. }
  32130. },
  32131. },
  32132. [
  32133. {
  32134. name: "Micro",
  32135. height: math.unit(9, "inches")
  32136. },
  32137. {
  32138. name: "Normal",
  32139. height: math.unit(5 + 2 / 12, "feet"),
  32140. default: true
  32141. },
  32142. {
  32143. name: "Mini Macro",
  32144. height: math.unit(10, "feet")
  32145. },
  32146. ]
  32147. ))
  32148. characterMakers.push(() => makeCharacter(
  32149. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  32150. {
  32151. front: {
  32152. height: math.unit(1.8, "meters"),
  32153. weight: math.unit(85, "kg"),
  32154. name: "Front",
  32155. image: {
  32156. source: "./media/characters/azteck/front.svg",
  32157. extra: 2815 / 2625,
  32158. bottom: 89 / 2904
  32159. }
  32160. },
  32161. back: {
  32162. height: math.unit(1.8, "meters"),
  32163. weight: math.unit(85, "kg"),
  32164. name: "Back",
  32165. image: {
  32166. source: "./media/characters/azteck/back.svg",
  32167. extra: 2856 / 2648,
  32168. bottom: 85 / 2941
  32169. }
  32170. },
  32171. frontDressed: {
  32172. height: math.unit(1.8, "meters"),
  32173. weight: math.unit(85, "kg"),
  32174. name: "Front (Dressed)",
  32175. image: {
  32176. source: "./media/characters/azteck/front-dressed.svg",
  32177. extra: 2147 / 2003,
  32178. bottom: 68 / 2215
  32179. }
  32180. },
  32181. head: {
  32182. height: math.unit(0.47, "meters"),
  32183. weight: math.unit(85, "kg"),
  32184. name: "Head",
  32185. image: {
  32186. source: "./media/characters/azteck/head.svg"
  32187. }
  32188. },
  32189. },
  32190. [
  32191. {
  32192. name: "Bite sized",
  32193. height: math.unit(16, "cm")
  32194. },
  32195. {
  32196. name: "Normal",
  32197. height: math.unit(1.8, "meters"),
  32198. default: true
  32199. },
  32200. ]
  32201. ))
  32202. characterMakers.push(() => makeCharacter(
  32203. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  32204. {
  32205. front: {
  32206. height: math.unit(6, "feet"),
  32207. weight: math.unit(150, "lb"),
  32208. name: "Front",
  32209. image: {
  32210. source: "./media/characters/pidge/front.svg",
  32211. extra: 1936/1820,
  32212. bottom: 0/1936
  32213. }
  32214. },
  32215. back: {
  32216. height: math.unit(6, "feet"),
  32217. weight: math.unit(150, "lb"),
  32218. name: "Back",
  32219. image: {
  32220. source: "./media/characters/pidge/back.svg",
  32221. extra: 1938/1843,
  32222. bottom: 0/1938
  32223. }
  32224. },
  32225. casual: {
  32226. height: math.unit(6, "feet"),
  32227. weight: math.unit(150, "lb"),
  32228. name: "Casual",
  32229. image: {
  32230. source: "./media/characters/pidge/casual.svg",
  32231. extra: 1936/1820,
  32232. bottom: 0/1936
  32233. }
  32234. },
  32235. tech: {
  32236. height: math.unit(6, "feet"),
  32237. weight: math.unit(150, "lb"),
  32238. name: "Tech",
  32239. image: {
  32240. source: "./media/characters/pidge/tech.svg",
  32241. extra: 1802/1682,
  32242. bottom: 0/1802
  32243. }
  32244. },
  32245. head: {
  32246. height: math.unit(1.61, "feet"),
  32247. name: "Head",
  32248. image: {
  32249. source: "./media/characters/pidge/head.svg"
  32250. }
  32251. },
  32252. collar: {
  32253. height: math.unit(0.82, "feet"),
  32254. name: "Collar",
  32255. image: {
  32256. source: "./media/characters/pidge/collar.svg"
  32257. }
  32258. },
  32259. },
  32260. [
  32261. {
  32262. name: "Macro",
  32263. height: math.unit(2, "mile"),
  32264. default: true
  32265. },
  32266. {
  32267. name: "PUPPY",
  32268. height: math.unit(20, "miles")
  32269. },
  32270. ]
  32271. ))
  32272. characterMakers.push(() => makeCharacter(
  32273. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  32274. {
  32275. front: {
  32276. height: math.unit(6, "feet"),
  32277. weight: math.unit(150, "lb"),
  32278. name: "Front",
  32279. image: {
  32280. source: "./media/characters/en/front.svg",
  32281. extra: 1697 / 1563,
  32282. bottom: 103 / 1800
  32283. }
  32284. },
  32285. back: {
  32286. height: math.unit(6, "feet"),
  32287. weight: math.unit(150, "lb"),
  32288. name: "Back",
  32289. image: {
  32290. source: "./media/characters/en/back.svg",
  32291. extra: 1700 / 1570,
  32292. bottom: 51 / 1751
  32293. }
  32294. },
  32295. frontDressed: {
  32296. height: math.unit(6, "feet"),
  32297. weight: math.unit(150, "lb"),
  32298. name: "Front (Dressed)",
  32299. image: {
  32300. source: "./media/characters/en/front-dressed.svg",
  32301. extra: 1697 / 1563,
  32302. bottom: 103 / 1800
  32303. }
  32304. },
  32305. backDressed: {
  32306. height: math.unit(6, "feet"),
  32307. weight: math.unit(150, "lb"),
  32308. name: "Back (Dressed)",
  32309. image: {
  32310. source: "./media/characters/en/back-dressed.svg",
  32311. extra: 1700 / 1570,
  32312. bottom: 51 / 1751
  32313. }
  32314. },
  32315. },
  32316. [
  32317. {
  32318. name: "Macro",
  32319. height: math.unit(210, "feet"),
  32320. default: true
  32321. },
  32322. ]
  32323. ))
  32324. characterMakers.push(() => makeCharacter(
  32325. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  32326. {
  32327. front: {
  32328. height: math.unit(6, "feet"),
  32329. weight: math.unit(150, "lb"),
  32330. name: "Front",
  32331. image: {
  32332. source: "./media/characters/haze-orris/front.svg",
  32333. extra: 3975 / 3525,
  32334. bottom: 137 / 4112
  32335. }
  32336. },
  32337. },
  32338. [
  32339. {
  32340. name: "Micro",
  32341. height: math.unit(150, "mm"),
  32342. default: true
  32343. },
  32344. ]
  32345. ))
  32346. characterMakers.push(() => makeCharacter(
  32347. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  32348. {
  32349. front: {
  32350. height: math.unit(6, "feet"),
  32351. weight: math.unit(150, "lb"),
  32352. name: "Front",
  32353. image: {
  32354. source: "./media/characters/casselene-yaro/front.svg",
  32355. extra: 4721 / 4541,
  32356. bottom: 82 / 4803
  32357. }
  32358. },
  32359. back: {
  32360. height: math.unit(6, "feet"),
  32361. weight: math.unit(150, "lb"),
  32362. name: "Back",
  32363. image: {
  32364. source: "./media/characters/casselene-yaro/back.svg",
  32365. extra: 4569 / 4377,
  32366. bottom: 69 / 4638
  32367. }
  32368. },
  32369. dressed: {
  32370. height: math.unit(6, "feet"),
  32371. weight: math.unit(150, "lb"),
  32372. name: "Dressed",
  32373. image: {
  32374. source: "./media/characters/casselene-yaro/dressed.svg",
  32375. extra: 4721 / 4541,
  32376. bottom: 82 / 4803
  32377. }
  32378. },
  32379. maw: {
  32380. height: math.unit(1, "feet"),
  32381. name: "Maw",
  32382. image: {
  32383. source: "./media/characters/casselene-yaro/maw.svg"
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Macro",
  32390. height: math.unit(190, "feet"),
  32391. default: true
  32392. },
  32393. ]
  32394. ))
  32395. characterMakers.push(() => makeCharacter(
  32396. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32397. {
  32398. front: {
  32399. height: math.unit(10, "feet"),
  32400. weight: math.unit(15015, "lb"),
  32401. name: "Front",
  32402. image: {
  32403. source: "./media/characters/platine/front.svg",
  32404. extra: 1741/1650,
  32405. bottom: 84/1825
  32406. }
  32407. },
  32408. side: {
  32409. height: math.unit(10, "feet"),
  32410. weight: math.unit(15015, "lb"),
  32411. name: "Side",
  32412. image: {
  32413. source: "./media/characters/platine/side.svg",
  32414. extra: 1790/1705,
  32415. bottom: 29/1819
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Normal",
  32422. height: math.unit(10, "feet"),
  32423. default: true
  32424. },
  32425. {
  32426. name: "Macro",
  32427. height: math.unit(100, "feet")
  32428. },
  32429. {
  32430. name: "Megamacro",
  32431. height: math.unit(1000, "feet")
  32432. },
  32433. ]
  32434. ))
  32435. characterMakers.push(() => makeCharacter(
  32436. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32437. {
  32438. front: {
  32439. height: math.unit(15 + 5 / 12, "feet"),
  32440. weight: math.unit(4600, "lb"),
  32441. name: "Front",
  32442. image: {
  32443. source: "./media/characters/neapolitan-ananassa/front.svg",
  32444. extra: 2903 / 2736,
  32445. bottom: 0 / 2903
  32446. }
  32447. },
  32448. side: {
  32449. height: math.unit(15 + 5 / 12, "feet"),
  32450. weight: math.unit(4600, "lb"),
  32451. name: "Side",
  32452. image: {
  32453. source: "./media/characters/neapolitan-ananassa/side.svg",
  32454. extra: 2925 / 2719,
  32455. bottom: 0 / 2925
  32456. }
  32457. },
  32458. back: {
  32459. height: math.unit(15 + 5 / 12, "feet"),
  32460. weight: math.unit(4600, "lb"),
  32461. name: "Back",
  32462. image: {
  32463. source: "./media/characters/neapolitan-ananassa/back.svg",
  32464. extra: 2903 / 2736,
  32465. bottom: 0 / 2903
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Normal",
  32472. height: math.unit(15 + 5 / 12, "feet"),
  32473. default: true
  32474. },
  32475. {
  32476. name: "Post-Millenium",
  32477. height: math.unit(35 + 5 / 12, "feet")
  32478. },
  32479. {
  32480. name: "Post-Era",
  32481. height: math.unit(450 + 5 / 12, "feet")
  32482. },
  32483. ]
  32484. ))
  32485. characterMakers.push(() => makeCharacter(
  32486. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32487. {
  32488. front: {
  32489. height: math.unit(300, "meters"),
  32490. weight: math.unit(125000, "tonnes"),
  32491. name: "Front",
  32492. image: {
  32493. source: "./media/characters/pazuzu/front.svg",
  32494. extra: 877 / 794,
  32495. bottom: 47 / 924
  32496. }
  32497. },
  32498. },
  32499. [
  32500. {
  32501. name: "Macro",
  32502. height: math.unit(300, "meters"),
  32503. default: true
  32504. },
  32505. ]
  32506. ))
  32507. characterMakers.push(() => makeCharacter(
  32508. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32509. {
  32510. side: {
  32511. height: math.unit(10 + 7 / 12, "feet"),
  32512. weight: math.unit(2.5, "tons"),
  32513. name: "Side",
  32514. image: {
  32515. source: "./media/characters/aasha/side.svg",
  32516. extra: 1345 / 1245,
  32517. bottom: 111 / 1456
  32518. }
  32519. },
  32520. back: {
  32521. height: math.unit(10 + 7 / 12, "feet"),
  32522. weight: math.unit(2.5, "tons"),
  32523. name: "Back",
  32524. image: {
  32525. source: "./media/characters/aasha/back.svg",
  32526. extra: 1133 / 1057,
  32527. bottom: 257 / 1390
  32528. }
  32529. },
  32530. },
  32531. [
  32532. {
  32533. name: "Normal",
  32534. height: math.unit(10 + 7 / 12, "feet"),
  32535. default: true
  32536. },
  32537. ]
  32538. ))
  32539. characterMakers.push(() => makeCharacter(
  32540. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32541. {
  32542. front: {
  32543. height: math.unit(6 + 3 / 12, "feet"),
  32544. name: "Front",
  32545. image: {
  32546. source: "./media/characters/nevan/front.svg",
  32547. extra: 704 / 704,
  32548. bottom: 28 / 732
  32549. }
  32550. },
  32551. back: {
  32552. height: math.unit(6 + 3 / 12, "feet"),
  32553. name: "Back",
  32554. image: {
  32555. source: "./media/characters/nevan/back.svg",
  32556. extra: 714 / 714,
  32557. bottom: 21 / 735
  32558. }
  32559. },
  32560. frontFlaccid: {
  32561. height: math.unit(6 + 3 / 12, "feet"),
  32562. name: "Front (Flaccid)",
  32563. image: {
  32564. source: "./media/characters/nevan/front-flaccid.svg",
  32565. extra: 704 / 704,
  32566. bottom: 28 / 732
  32567. }
  32568. },
  32569. frontErect: {
  32570. height: math.unit(6 + 3 / 12, "feet"),
  32571. name: "Front (Erect)",
  32572. image: {
  32573. source: "./media/characters/nevan/front-erect.svg",
  32574. extra: 704 / 704,
  32575. bottom: 28 / 732
  32576. }
  32577. },
  32578. backFlaccid: {
  32579. height: math.unit(6 + 3 / 12, "feet"),
  32580. name: "Back (Flaccid)",
  32581. image: {
  32582. source: "./media/characters/nevan/back-flaccid.svg",
  32583. extra: 714 / 714,
  32584. bottom: 21 / 735
  32585. }
  32586. },
  32587. },
  32588. [
  32589. {
  32590. name: "Normal",
  32591. height: math.unit(6 + 3 / 12, "feet"),
  32592. default: true
  32593. },
  32594. ]
  32595. ))
  32596. characterMakers.push(() => makeCharacter(
  32597. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32598. {
  32599. front: {
  32600. height: math.unit(4, "feet"),
  32601. name: "Front",
  32602. image: {
  32603. source: "./media/characters/arhan/front.svg",
  32604. extra: 3368 / 3133,
  32605. bottom: 0 / 3368
  32606. }
  32607. },
  32608. side: {
  32609. height: math.unit(4, "feet"),
  32610. name: "Side",
  32611. image: {
  32612. source: "./media/characters/arhan/side.svg",
  32613. extra: 3347 / 3105,
  32614. bottom: 0 / 3347
  32615. }
  32616. },
  32617. tongue: {
  32618. height: math.unit(1.42, "feet"),
  32619. name: "Tongue",
  32620. image: {
  32621. source: "./media/characters/arhan/tongue.svg"
  32622. }
  32623. },
  32624. head: {
  32625. height: math.unit(0.85, "feet"),
  32626. name: "Head",
  32627. image: {
  32628. source: "./media/characters/arhan/head.svg"
  32629. }
  32630. },
  32631. },
  32632. [
  32633. {
  32634. name: "Normal",
  32635. height: math.unit(4, "feet"),
  32636. default: true
  32637. },
  32638. ]
  32639. ))
  32640. characterMakers.push(() => makeCharacter(
  32641. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32642. {
  32643. front: {
  32644. height: math.unit(5 + 7.5 / 12, "feet"),
  32645. weight: math.unit(120, "lb"),
  32646. name: "Front",
  32647. image: {
  32648. source: "./media/characters/digi-duncan/front.svg",
  32649. extra: 330 / 326,
  32650. bottom: 16 / 346
  32651. }
  32652. },
  32653. side: {
  32654. height: math.unit(5 + 7.5 / 12, "feet"),
  32655. weight: math.unit(120, "lb"),
  32656. name: "Side",
  32657. image: {
  32658. source: "./media/characters/digi-duncan/side.svg",
  32659. extra: 341 / 337,
  32660. bottom: 1 / 342
  32661. }
  32662. },
  32663. back: {
  32664. height: math.unit(5 + 7.5 / 12, "feet"),
  32665. weight: math.unit(120, "lb"),
  32666. name: "Back",
  32667. image: {
  32668. source: "./media/characters/digi-duncan/back.svg",
  32669. extra: 330 / 326,
  32670. bottom: 12 / 342
  32671. }
  32672. },
  32673. },
  32674. [
  32675. {
  32676. name: "Speck",
  32677. height: math.unit(0.25, "mm")
  32678. },
  32679. {
  32680. name: "Micro",
  32681. height: math.unit(5, "mm")
  32682. },
  32683. {
  32684. name: "Tiny",
  32685. height: math.unit(0.5, "inches"),
  32686. default: true
  32687. },
  32688. {
  32689. name: "Human",
  32690. height: math.unit(5 + 7.5 / 12, "feet")
  32691. },
  32692. {
  32693. name: "Minigiant",
  32694. height: math.unit(8 + 5.25, "feet")
  32695. },
  32696. {
  32697. name: "Giant",
  32698. height: math.unit(2000, "feet")
  32699. },
  32700. {
  32701. name: "Mega",
  32702. height: math.unit(371.1, "miles")
  32703. },
  32704. ]
  32705. ))
  32706. characterMakers.push(() => makeCharacter(
  32707. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32708. {
  32709. front: {
  32710. height: math.unit(2, "meters"),
  32711. weight: math.unit(350, "kg"),
  32712. name: "Front",
  32713. image: {
  32714. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32715. extra: 898 / 838,
  32716. bottom: 9 / 907
  32717. }
  32718. },
  32719. },
  32720. [
  32721. {
  32722. name: "Micro",
  32723. height: math.unit(8, "meters")
  32724. },
  32725. {
  32726. name: "Normal",
  32727. height: math.unit(50, "meters"),
  32728. default: true
  32729. },
  32730. {
  32731. name: "Macro",
  32732. height: math.unit(500, "meters")
  32733. },
  32734. ]
  32735. ))
  32736. characterMakers.push(() => makeCharacter(
  32737. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32738. {
  32739. front: {
  32740. height: math.unit(6 + 6 / 12, "feet"),
  32741. name: "Front",
  32742. image: {
  32743. source: "./media/characters/khardesh/front.svg",
  32744. extra: 1788/1596,
  32745. bottom: 66/1854
  32746. }
  32747. },
  32748. back: {
  32749. height: math.unit(6 + 6 / 12, "feet"),
  32750. name: "Back",
  32751. image: {
  32752. source: "./media/characters/khardesh/back.svg",
  32753. extra: 1781/1584,
  32754. bottom: 68/1849
  32755. }
  32756. },
  32757. },
  32758. [
  32759. {
  32760. name: "Normal",
  32761. height: math.unit(6 + 6 / 12, "feet"),
  32762. default: true
  32763. },
  32764. {
  32765. name: "Normal+",
  32766. height: math.unit(4, "meters")
  32767. },
  32768. {
  32769. name: "Macro",
  32770. height: math.unit(50, "meters")
  32771. },
  32772. {
  32773. name: "Macro+",
  32774. height: math.unit(100, "meters")
  32775. },
  32776. {
  32777. name: "Megamacro",
  32778. height: math.unit(20, "km")
  32779. },
  32780. ]
  32781. ))
  32782. characterMakers.push(() => makeCharacter(
  32783. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32784. {
  32785. front: {
  32786. height: math.unit(6, "feet"),
  32787. weight: math.unit(150, "lb"),
  32788. name: "Front",
  32789. image: {
  32790. source: "./media/characters/kosho/front.svg",
  32791. extra: 1847 / 1847,
  32792. bottom: 86 / 1933
  32793. }
  32794. },
  32795. },
  32796. [
  32797. {
  32798. name: "Second-stage micro",
  32799. height: math.unit(0.5, "inches")
  32800. },
  32801. {
  32802. name: "First-stage micro",
  32803. height: math.unit(6, "inches")
  32804. },
  32805. {
  32806. name: "Normal",
  32807. height: math.unit(6, "feet"),
  32808. default: true
  32809. },
  32810. {
  32811. name: "First-stage macro",
  32812. height: math.unit(72, "feet")
  32813. },
  32814. {
  32815. name: "Second-stage macro",
  32816. height: math.unit(864, "feet")
  32817. },
  32818. ]
  32819. ))
  32820. characterMakers.push(() => makeCharacter(
  32821. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32822. {
  32823. normal: {
  32824. height: math.unit(4 + 6 / 12, "feet"),
  32825. name: "Normal",
  32826. image: {
  32827. source: "./media/characters/hydra/normal.svg",
  32828. extra: 2833 / 2634,
  32829. bottom: 68 / 2901
  32830. }
  32831. },
  32832. smol: {
  32833. height: math.unit(0.705, "inches"),
  32834. name: "Smol",
  32835. image: {
  32836. source: "./media/characters/hydra/smol.svg",
  32837. extra: 2715 / 2540,
  32838. bottom: 0 / 2715
  32839. }
  32840. },
  32841. },
  32842. [
  32843. {
  32844. name: "Normal",
  32845. height: math.unit(4 + 6 / 12, "feet"),
  32846. default: true
  32847. }
  32848. ]
  32849. ))
  32850. characterMakers.push(() => makeCharacter(
  32851. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32852. {
  32853. front: {
  32854. height: math.unit(0.6, "cm"),
  32855. name: "Front",
  32856. image: {
  32857. source: "./media/characters/daz/front.svg",
  32858. extra: 1682 / 1164,
  32859. bottom: 42 / 1724
  32860. }
  32861. },
  32862. },
  32863. [
  32864. {
  32865. name: "Normal",
  32866. height: math.unit(0.6, "cm"),
  32867. default: true
  32868. },
  32869. ]
  32870. ))
  32871. characterMakers.push(() => makeCharacter(
  32872. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32873. {
  32874. front: {
  32875. height: math.unit(6, "feet"),
  32876. weight: math.unit(235, "lb"),
  32877. name: "Front",
  32878. image: {
  32879. source: "./media/characters/theo-pangolin/front.svg",
  32880. extra: 1996 / 1969,
  32881. bottom: 115 / 2111
  32882. }
  32883. },
  32884. back: {
  32885. height: math.unit(6, "feet"),
  32886. weight: math.unit(235, "lb"),
  32887. name: "Back",
  32888. image: {
  32889. source: "./media/characters/theo-pangolin/back.svg",
  32890. extra: 1979 / 1979,
  32891. bottom: 40 / 2019
  32892. }
  32893. },
  32894. feral: {
  32895. height: math.unit(2, "feet"),
  32896. weight: math.unit(30, "lb"),
  32897. name: "Feral",
  32898. image: {
  32899. source: "./media/characters/theo-pangolin/feral.svg",
  32900. extra: 803 / 791,
  32901. bottom: 181 / 984
  32902. }
  32903. },
  32904. footFive: {
  32905. height: math.unit(1.43, "feet"),
  32906. name: "Foot (Five Toes)",
  32907. image: {
  32908. source: "./media/characters/theo-pangolin/foot-five.svg"
  32909. }
  32910. },
  32911. footFour: {
  32912. height: math.unit(1.43, "feet"),
  32913. name: "Foot (Four Toes)",
  32914. image: {
  32915. source: "./media/characters/theo-pangolin/foot-four.svg"
  32916. }
  32917. },
  32918. handFour: {
  32919. height: math.unit(0.81, "feet"),
  32920. name: "Hand (Four Fingers)",
  32921. image: {
  32922. source: "./media/characters/theo-pangolin/hand-four.svg"
  32923. }
  32924. },
  32925. handThree: {
  32926. height: math.unit(0.81, "feet"),
  32927. name: "Hand (Three Fingers)",
  32928. image: {
  32929. source: "./media/characters/theo-pangolin/hand-three.svg"
  32930. }
  32931. },
  32932. headFront: {
  32933. height: math.unit(1.37, "feet"),
  32934. name: "Head (Front)",
  32935. image: {
  32936. source: "./media/characters/theo-pangolin/head-front.svg"
  32937. }
  32938. },
  32939. headSide: {
  32940. height: math.unit(1.43, "feet"),
  32941. name: "Head (Side)",
  32942. image: {
  32943. source: "./media/characters/theo-pangolin/head-side.svg"
  32944. }
  32945. },
  32946. tongue: {
  32947. height: math.unit(2.29, "feet"),
  32948. name: "Tongue",
  32949. image: {
  32950. source: "./media/characters/theo-pangolin/tongue.svg"
  32951. }
  32952. },
  32953. },
  32954. [
  32955. {
  32956. name: "Normal",
  32957. height: math.unit(6, "feet")
  32958. },
  32959. {
  32960. name: "Macro",
  32961. height: math.unit(400, "feet"),
  32962. default: true
  32963. },
  32964. ]
  32965. ))
  32966. characterMakers.push(() => makeCharacter(
  32967. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32968. {
  32969. front: {
  32970. height: math.unit(6, "inches"),
  32971. weight: math.unit(0.036, "kg"),
  32972. name: "Front",
  32973. image: {
  32974. source: "./media/characters/renée/front.svg",
  32975. extra: 900 / 886,
  32976. bottom: 8 / 908
  32977. }
  32978. },
  32979. },
  32980. [
  32981. {
  32982. name: "Nano",
  32983. height: math.unit(1, "nm")
  32984. },
  32985. {
  32986. name: "Micro",
  32987. height: math.unit(1, "mm")
  32988. },
  32989. {
  32990. name: "Normal",
  32991. height: math.unit(6, "inches")
  32992. },
  32993. {
  32994. name: "Macro",
  32995. height: math.unit(2000, "feet"),
  32996. default: true
  32997. },
  32998. {
  32999. name: "Megamacro",
  33000. height: math.unit(2, "km")
  33001. },
  33002. {
  33003. name: "Gigamacro",
  33004. height: math.unit(2000, "km")
  33005. },
  33006. {
  33007. name: "Teramacro",
  33008. height: math.unit(250000, "km")
  33009. },
  33010. ]
  33011. ))
  33012. characterMakers.push(() => makeCharacter(
  33013. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  33014. {
  33015. front: {
  33016. height: math.unit(4, "meters"),
  33017. weight: math.unit(150, "kg"),
  33018. name: "Front",
  33019. image: {
  33020. source: "./media/characters/caledvwlch/front.svg",
  33021. extra: 1757/1537,
  33022. bottom: 31/1788
  33023. }
  33024. },
  33025. side: {
  33026. height: math.unit(4, "meters"),
  33027. weight: math.unit(150, "kg"),
  33028. name: "Side",
  33029. image: {
  33030. source: "./media/characters/caledvwlch/side.svg",
  33031. extra: 1605 / 1536,
  33032. bottom: 31 / 1636
  33033. }
  33034. },
  33035. back: {
  33036. height: math.unit(4, "meters"),
  33037. weight: math.unit(150, "kg"),
  33038. name: "Back",
  33039. image: {
  33040. source: "./media/characters/caledvwlch/back.svg",
  33041. extra: 1635 / 1565,
  33042. bottom: 27 / 1662
  33043. }
  33044. },
  33045. },
  33046. [
  33047. {
  33048. name: "\"Incognito\"",
  33049. height: math.unit(4, "meters")
  33050. },
  33051. {
  33052. name: "Small rampage",
  33053. height: math.unit(600, "meters")
  33054. },
  33055. {
  33056. name: "Mega",
  33057. height: math.unit(30, "km")
  33058. },
  33059. {
  33060. name: "Home-size",
  33061. height: math.unit(50, "km"),
  33062. default: true
  33063. },
  33064. {
  33065. name: "Giga",
  33066. height: math.unit(300, "km")
  33067. },
  33068. {
  33069. name: "Lounging",
  33070. height: math.unit(11000, "km")
  33071. },
  33072. {
  33073. name: "Planet snacking",
  33074. height: math.unit(2000000, "km")
  33075. },
  33076. ]
  33077. ))
  33078. characterMakers.push(() => makeCharacter(
  33079. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  33080. {
  33081. front: {
  33082. height: math.unit(6, "feet"),
  33083. weight: math.unit(215, "lb"),
  33084. name: "Front",
  33085. image: {
  33086. source: "./media/characters/sapphire-svell/front.svg",
  33087. extra: 495 / 455,
  33088. bottom: 20 / 515
  33089. }
  33090. },
  33091. back: {
  33092. height: math.unit(6, "feet"),
  33093. weight: math.unit(216, "lb"),
  33094. name: "Back",
  33095. image: {
  33096. source: "./media/characters/sapphire-svell/back.svg",
  33097. extra: 497 / 477,
  33098. bottom: 7 / 504
  33099. }
  33100. },
  33101. maw: {
  33102. height: math.unit(1.57, "feet"),
  33103. name: "Maw",
  33104. image: {
  33105. source: "./media/characters/sapphire-svell/maw.svg"
  33106. }
  33107. },
  33108. foot: {
  33109. height: math.unit(1.07, "feet"),
  33110. name: "Foot",
  33111. image: {
  33112. source: "./media/characters/sapphire-svell/foot.svg"
  33113. }
  33114. },
  33115. toering: {
  33116. height: math.unit(1.7, "inch"),
  33117. name: "Toering",
  33118. image: {
  33119. source: "./media/characters/sapphire-svell/toering.svg"
  33120. }
  33121. },
  33122. },
  33123. [
  33124. {
  33125. name: "Normal",
  33126. height: math.unit(300, "feet"),
  33127. default: true
  33128. },
  33129. {
  33130. name: "Augmented",
  33131. height: math.unit(1250, "feet")
  33132. },
  33133. {
  33134. name: "Unleashed",
  33135. height: math.unit(3000, "feet")
  33136. },
  33137. ]
  33138. ))
  33139. characterMakers.push(() => makeCharacter(
  33140. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  33141. {
  33142. side: {
  33143. height: math.unit(2 + 3 / 12, "feet"),
  33144. weight: math.unit(110, "lb"),
  33145. name: "Side",
  33146. image: {
  33147. source: "./media/characters/glitch-flux/side.svg",
  33148. extra: 997 / 805,
  33149. bottom: 20 / 1017
  33150. }
  33151. },
  33152. },
  33153. [
  33154. {
  33155. name: "Normal",
  33156. height: math.unit(2 + 3 / 12, "feet"),
  33157. default: true
  33158. },
  33159. ]
  33160. ))
  33161. characterMakers.push(() => makeCharacter(
  33162. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  33163. {
  33164. front: {
  33165. height: math.unit(4, "meters"),
  33166. name: "Front",
  33167. image: {
  33168. source: "./media/characters/mid/front.svg",
  33169. extra: 507 / 476,
  33170. bottom: 17 / 524
  33171. }
  33172. },
  33173. back: {
  33174. height: math.unit(4, "meters"),
  33175. name: "Back",
  33176. image: {
  33177. source: "./media/characters/mid/back.svg",
  33178. extra: 519 / 487,
  33179. bottom: 7 / 526
  33180. }
  33181. },
  33182. stuck: {
  33183. height: math.unit(2.2, "meters"),
  33184. name: "Stuck",
  33185. image: {
  33186. source: "./media/characters/mid/stuck.svg",
  33187. extra: 1951 / 1869,
  33188. bottom: 88 / 2039
  33189. }
  33190. }
  33191. },
  33192. [
  33193. {
  33194. name: "Normal",
  33195. height: math.unit(4, "meters"),
  33196. default: true
  33197. },
  33198. {
  33199. name: "Big",
  33200. height: math.unit(10, "meters")
  33201. },
  33202. {
  33203. name: "Macro",
  33204. height: math.unit(800, "meters")
  33205. },
  33206. {
  33207. name: "Megamacro",
  33208. height: math.unit(100, "km")
  33209. },
  33210. {
  33211. name: "Overgrown",
  33212. height: math.unit(1, "parsec")
  33213. },
  33214. ]
  33215. ))
  33216. characterMakers.push(() => makeCharacter(
  33217. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  33218. {
  33219. front: {
  33220. height: math.unit(2.5, "meters"),
  33221. weight: math.unit(225, "kg"),
  33222. name: "Front",
  33223. image: {
  33224. source: "./media/characters/iris/front.svg",
  33225. extra: 3348 / 3251,
  33226. bottom: 205 / 3553
  33227. }
  33228. },
  33229. maw: {
  33230. height: math.unit(0.56, "meter"),
  33231. name: "Maw",
  33232. image: {
  33233. source: "./media/characters/iris/maw.svg"
  33234. }
  33235. },
  33236. },
  33237. [
  33238. {
  33239. name: "Mewter cat",
  33240. height: math.unit(1.2, "meters")
  33241. },
  33242. {
  33243. name: "Normal",
  33244. height: math.unit(2.5, "meters"),
  33245. default: true
  33246. },
  33247. {
  33248. name: "Minimacro",
  33249. height: math.unit(18, "feet")
  33250. },
  33251. {
  33252. name: "Macro",
  33253. height: math.unit(140, "feet")
  33254. },
  33255. {
  33256. name: "Macro+",
  33257. height: math.unit(180, "meters")
  33258. },
  33259. {
  33260. name: "Megamacro",
  33261. height: math.unit(2746, "meters")
  33262. },
  33263. ]
  33264. ))
  33265. characterMakers.push(() => makeCharacter(
  33266. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  33267. {
  33268. front: {
  33269. height: math.unit(6, "feet"),
  33270. weight: math.unit(135, "lb"),
  33271. name: "Front",
  33272. image: {
  33273. source: "./media/characters/axel/front.svg",
  33274. extra: 908 / 908,
  33275. bottom: 58 / 966
  33276. }
  33277. },
  33278. side: {
  33279. height: math.unit(6, "feet"),
  33280. weight: math.unit(135, "lb"),
  33281. name: "Side",
  33282. image: {
  33283. source: "./media/characters/axel/side.svg",
  33284. extra: 958 / 958,
  33285. bottom: 11 / 969
  33286. }
  33287. },
  33288. back: {
  33289. height: math.unit(6, "feet"),
  33290. weight: math.unit(135, "lb"),
  33291. name: "Back",
  33292. image: {
  33293. source: "./media/characters/axel/back.svg",
  33294. extra: 887 / 887,
  33295. bottom: 34 / 921
  33296. }
  33297. },
  33298. head: {
  33299. height: math.unit(1.07, "feet"),
  33300. name: "Head",
  33301. image: {
  33302. source: "./media/characters/axel/head.svg"
  33303. }
  33304. },
  33305. beak: {
  33306. height: math.unit(1.4, "feet"),
  33307. name: "Beak",
  33308. image: {
  33309. source: "./media/characters/axel/beak.svg"
  33310. }
  33311. },
  33312. beakSide: {
  33313. height: math.unit(1.4, "feet"),
  33314. name: "Beak Side",
  33315. image: {
  33316. source: "./media/characters/axel/beak-side.svg"
  33317. }
  33318. },
  33319. sheath: {
  33320. height: math.unit(0.5, "feet"),
  33321. name: "Sheath",
  33322. image: {
  33323. source: "./media/characters/axel/sheath.svg"
  33324. }
  33325. },
  33326. dick: {
  33327. height: math.unit(0.98, "feet"),
  33328. name: "Dick",
  33329. image: {
  33330. source: "./media/characters/axel/dick.svg"
  33331. }
  33332. },
  33333. },
  33334. [
  33335. {
  33336. name: "Macro",
  33337. height: math.unit(68, "meters"),
  33338. default: true
  33339. },
  33340. ]
  33341. ))
  33342. characterMakers.push(() => makeCharacter(
  33343. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  33344. {
  33345. front: {
  33346. height: math.unit(3.5, "meters"),
  33347. weight: math.unit(1200, "kg"),
  33348. name: "Front",
  33349. image: {
  33350. source: "./media/characters/joanna/front.svg",
  33351. extra: 1596 / 1488,
  33352. bottom: 29 / 1625
  33353. }
  33354. },
  33355. back: {
  33356. height: math.unit(3.5, "meters"),
  33357. weight: math.unit(1200, "kg"),
  33358. name: "Back",
  33359. image: {
  33360. source: "./media/characters/joanna/back.svg",
  33361. extra: 1594 / 1495,
  33362. bottom: 26 / 1620
  33363. }
  33364. },
  33365. frontShorts: {
  33366. height: math.unit(3.5, "meters"),
  33367. weight: math.unit(1200, "kg"),
  33368. name: "Front (Shorts)",
  33369. image: {
  33370. source: "./media/characters/joanna/front-shorts.svg",
  33371. extra: 1596 / 1488,
  33372. bottom: 29 / 1625
  33373. }
  33374. },
  33375. frontBiker: {
  33376. height: math.unit(3.5, "meters"),
  33377. weight: math.unit(1200, "kg"),
  33378. name: "Front (Biker)",
  33379. image: {
  33380. source: "./media/characters/joanna/front-biker.svg",
  33381. extra: 1596 / 1488,
  33382. bottom: 29 / 1625
  33383. }
  33384. },
  33385. backBiker: {
  33386. height: math.unit(3.5, "meters"),
  33387. weight: math.unit(1200, "kg"),
  33388. name: "Back (Biker)",
  33389. image: {
  33390. source: "./media/characters/joanna/back-biker.svg",
  33391. extra: 1594 / 1495,
  33392. bottom: 88 / 1682
  33393. }
  33394. },
  33395. bikeLeft: {
  33396. height: math.unit(2.4, "meters"),
  33397. weight: math.unit(1600, "kg"),
  33398. name: "Bike (Left)",
  33399. image: {
  33400. source: "./media/characters/joanna/bike-left.svg",
  33401. extra: 720 / 720,
  33402. bottom: 8 / 728
  33403. }
  33404. },
  33405. bikeRight: {
  33406. height: math.unit(2.4, "meters"),
  33407. weight: math.unit(1600, "kg"),
  33408. name: "Bike (Right)",
  33409. image: {
  33410. source: "./media/characters/joanna/bike-right.svg",
  33411. extra: 720 / 720,
  33412. bottom: 8 / 728
  33413. }
  33414. },
  33415. },
  33416. [
  33417. {
  33418. name: "Incognito",
  33419. height: math.unit(3.5, "meters")
  33420. },
  33421. {
  33422. name: "Casual Big",
  33423. height: math.unit(200, "meters")
  33424. },
  33425. {
  33426. name: "Macro",
  33427. height: math.unit(600, "meters")
  33428. },
  33429. {
  33430. name: "Original",
  33431. height: math.unit(20, "km"),
  33432. default: true
  33433. },
  33434. {
  33435. name: "Giga",
  33436. height: math.unit(400, "km")
  33437. },
  33438. {
  33439. name: "Lounging",
  33440. height: math.unit(1500, "km")
  33441. },
  33442. {
  33443. name: "Planetary",
  33444. height: math.unit(200000, "km")
  33445. },
  33446. ]
  33447. ))
  33448. characterMakers.push(() => makeCharacter(
  33449. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33450. {
  33451. front: {
  33452. height: math.unit(6, "feet"),
  33453. weight: math.unit(150, "lb"),
  33454. name: "Front",
  33455. image: {
  33456. source: "./media/characters/hugo-sigil/front.svg",
  33457. extra: 522 / 500,
  33458. bottom: 2 / 524
  33459. }
  33460. },
  33461. back: {
  33462. height: math.unit(6, "feet"),
  33463. weight: math.unit(150, "lb"),
  33464. name: "Back",
  33465. image: {
  33466. source: "./media/characters/hugo-sigil/back.svg",
  33467. extra: 519 / 495,
  33468. bottom: 5 / 524
  33469. }
  33470. },
  33471. maw: {
  33472. height: math.unit(1.4, "feet"),
  33473. weight: math.unit(150, "lb"),
  33474. name: "Maw",
  33475. image: {
  33476. source: "./media/characters/hugo-sigil/maw.svg"
  33477. }
  33478. },
  33479. feet: {
  33480. height: math.unit(1.56, "feet"),
  33481. weight: math.unit(150, "lb"),
  33482. name: "Feet",
  33483. image: {
  33484. source: "./media/characters/hugo-sigil/feet.svg",
  33485. extra: 177 / 177,
  33486. bottom: 12 / 189
  33487. }
  33488. },
  33489. },
  33490. [
  33491. {
  33492. name: "Normal",
  33493. height: math.unit(6, "feet")
  33494. },
  33495. {
  33496. name: "Macro",
  33497. height: math.unit(200, "feet"),
  33498. default: true
  33499. },
  33500. ]
  33501. ))
  33502. characterMakers.push(() => makeCharacter(
  33503. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33504. {
  33505. front: {
  33506. height: math.unit(6, "feet"),
  33507. weight: math.unit(150, "lb"),
  33508. name: "Front",
  33509. image: {
  33510. source: "./media/characters/peri/front.svg",
  33511. extra: 2354 / 2233,
  33512. bottom: 49 / 2403
  33513. }
  33514. },
  33515. },
  33516. [
  33517. {
  33518. name: "Really Small",
  33519. height: math.unit(1, "nm")
  33520. },
  33521. {
  33522. name: "Micro",
  33523. height: math.unit(4, "inches")
  33524. },
  33525. {
  33526. name: "Normal",
  33527. height: math.unit(7, "inches"),
  33528. default: true
  33529. },
  33530. {
  33531. name: "Macro",
  33532. height: math.unit(400, "feet")
  33533. },
  33534. {
  33535. name: "Megamacro",
  33536. height: math.unit(100, "miles")
  33537. },
  33538. ]
  33539. ))
  33540. characterMakers.push(() => makeCharacter(
  33541. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33542. {
  33543. frontSlim: {
  33544. height: math.unit(7, "feet"),
  33545. name: "Front (Slim)",
  33546. image: {
  33547. source: "./media/characters/issilora/front-slim.svg",
  33548. extra: 529 / 449,
  33549. bottom: 53 / 582
  33550. }
  33551. },
  33552. sideSlim: {
  33553. height: math.unit(7, "feet"),
  33554. name: "Side (Slim)",
  33555. image: {
  33556. source: "./media/characters/issilora/side-slim.svg",
  33557. extra: 570 / 480,
  33558. bottom: 30 / 600
  33559. }
  33560. },
  33561. backSlim: {
  33562. height: math.unit(7, "feet"),
  33563. name: "Back (Slim)",
  33564. image: {
  33565. source: "./media/characters/issilora/back-slim.svg",
  33566. extra: 537 / 455,
  33567. bottom: 46 / 583
  33568. }
  33569. },
  33570. frontBuff: {
  33571. height: math.unit(7, "feet"),
  33572. name: "Front (Buff)",
  33573. image: {
  33574. source: "./media/characters/issilora/front-buff.svg",
  33575. extra: 2310 / 2035,
  33576. bottom: 335 / 2645
  33577. }
  33578. },
  33579. head: {
  33580. height: math.unit(1.94, "feet"),
  33581. name: "Head",
  33582. image: {
  33583. source: "./media/characters/issilora/head.svg"
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Minimum",
  33590. height: math.unit(7, "feet")
  33591. },
  33592. {
  33593. name: "Comfortable",
  33594. height: math.unit(17, "feet")
  33595. },
  33596. {
  33597. name: "Fun Size",
  33598. height: math.unit(47, "feet")
  33599. },
  33600. {
  33601. name: "Natural Macro",
  33602. height: math.unit(137, "feet"),
  33603. default: true
  33604. },
  33605. {
  33606. name: "Maximum Kaiju",
  33607. height: math.unit(397, "feet")
  33608. },
  33609. ]
  33610. ))
  33611. characterMakers.push(() => makeCharacter(
  33612. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33613. {
  33614. front: {
  33615. height: math.unit(50 + 9/12, "feet"),
  33616. weight: math.unit(32.8, "tons"),
  33617. name: "Front",
  33618. image: {
  33619. source: "./media/characters/irb'iiritaahn/front.svg",
  33620. extra: 1878/1826,
  33621. bottom: 326/2204
  33622. }
  33623. },
  33624. back: {
  33625. height: math.unit(50 + 9/12, "feet"),
  33626. weight: math.unit(32.8, "tons"),
  33627. name: "Back",
  33628. image: {
  33629. source: "./media/characters/irb'iiritaahn/back.svg",
  33630. extra: 2052/2018,
  33631. bottom: 152/2204
  33632. }
  33633. },
  33634. head: {
  33635. height: math.unit(12.86, "feet"),
  33636. name: "Head",
  33637. image: {
  33638. source: "./media/characters/irb'iiritaahn/head.svg"
  33639. }
  33640. },
  33641. maw: {
  33642. height: math.unit(9.66, "feet"),
  33643. name: "Maw",
  33644. image: {
  33645. source: "./media/characters/irb'iiritaahn/maw.svg"
  33646. }
  33647. },
  33648. frontDick: {
  33649. height: math.unit(8.78461, "feet"),
  33650. name: "Front Dick",
  33651. image: {
  33652. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33653. }
  33654. },
  33655. rearDick: {
  33656. height: math.unit(8.78461, "feet"),
  33657. name: "Rear Dick",
  33658. image: {
  33659. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33660. }
  33661. },
  33662. rearDickUnfolded: {
  33663. height: math.unit(8.78, "feet"),
  33664. name: "Rear Dick (Unfolded)",
  33665. image: {
  33666. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33667. }
  33668. },
  33669. wings: {
  33670. height: math.unit(43, "feet"),
  33671. name: "Wings",
  33672. image: {
  33673. source: "./media/characters/irb'iiritaahn/wings.svg"
  33674. }
  33675. },
  33676. },
  33677. [
  33678. {
  33679. name: "Macro",
  33680. height: math.unit(50 + 9/12, "feet"),
  33681. default: true
  33682. },
  33683. ]
  33684. ))
  33685. characterMakers.push(() => makeCharacter(
  33686. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33687. {
  33688. front: {
  33689. height: math.unit(205, "cm"),
  33690. weight: math.unit(102, "kg"),
  33691. name: "Front",
  33692. image: {
  33693. source: "./media/characters/irbisgreif/front.svg",
  33694. extra: 785/706,
  33695. bottom: 13/798
  33696. }
  33697. },
  33698. back: {
  33699. height: math.unit(205, "cm"),
  33700. weight: math.unit(102, "kg"),
  33701. name: "Back",
  33702. image: {
  33703. source: "./media/characters/irbisgreif/back.svg",
  33704. extra: 713/701,
  33705. bottom: 26/739
  33706. }
  33707. },
  33708. frontDressed: {
  33709. height: math.unit(216, "cm"),
  33710. weight: math.unit(102, "kg"),
  33711. name: "Front-dressed",
  33712. image: {
  33713. source: "./media/characters/irbisgreif/front-dressed.svg",
  33714. extra: 902/776,
  33715. bottom: 14/916
  33716. }
  33717. },
  33718. sideDressed: {
  33719. height: math.unit(195, "cm"),
  33720. weight: math.unit(102, "kg"),
  33721. name: "Side-dressed",
  33722. image: {
  33723. source: "./media/characters/irbisgreif/side-dressed.svg",
  33724. extra: 788/688,
  33725. bottom: 21/809
  33726. }
  33727. },
  33728. backDressed: {
  33729. height: math.unit(216, "cm"),
  33730. weight: math.unit(102, "kg"),
  33731. name: "Back-dressed",
  33732. image: {
  33733. source: "./media/characters/irbisgreif/back-dressed.svg",
  33734. extra: 901/783,
  33735. bottom: 10/911
  33736. }
  33737. },
  33738. dick: {
  33739. height: math.unit(0.49, "feet"),
  33740. name: "Dick",
  33741. image: {
  33742. source: "./media/characters/irbisgreif/dick.svg"
  33743. }
  33744. },
  33745. wingTop: {
  33746. height: math.unit(1.93 , "feet"),
  33747. name: "Wing-top",
  33748. image: {
  33749. source: "./media/characters/irbisgreif/wing-top.svg"
  33750. }
  33751. },
  33752. wingBottom: {
  33753. height: math.unit(1.93 , "feet"),
  33754. name: "Wing-bottom",
  33755. image: {
  33756. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33757. }
  33758. },
  33759. },
  33760. [
  33761. {
  33762. name: "Normal",
  33763. height: math.unit(216, "cm"),
  33764. default: true
  33765. },
  33766. ]
  33767. ))
  33768. characterMakers.push(() => makeCharacter(
  33769. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33770. {
  33771. front: {
  33772. height: math.unit(6, "feet"),
  33773. weight: math.unit(150, "lb"),
  33774. name: "Front",
  33775. image: {
  33776. source: "./media/characters/pride/front.svg",
  33777. extra: 1299/1230,
  33778. bottom: 18/1317
  33779. }
  33780. },
  33781. },
  33782. [
  33783. {
  33784. name: "Normal",
  33785. height: math.unit(7, "feet")
  33786. },
  33787. {
  33788. name: "Mini-macro",
  33789. height: math.unit(11, "feet")
  33790. },
  33791. {
  33792. name: "Macro",
  33793. height: math.unit(15, "meters"),
  33794. default: true
  33795. },
  33796. {
  33797. name: "Macro+",
  33798. height: math.unit(40, "meters")
  33799. },
  33800. ]
  33801. ))
  33802. characterMakers.push(() => makeCharacter(
  33803. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33804. {
  33805. front: {
  33806. height: math.unit(4 + 2 / 12, "feet"),
  33807. weight: math.unit(95, "lb"),
  33808. name: "Front",
  33809. image: {
  33810. source: "./media/characters/vaelophis-nyx/front.svg",
  33811. extra: 2532/2330,
  33812. bottom: 0/2532
  33813. }
  33814. },
  33815. back: {
  33816. height: math.unit(4 + 2 / 12, "feet"),
  33817. weight: math.unit(95, "lb"),
  33818. name: "Back",
  33819. image: {
  33820. source: "./media/characters/vaelophis-nyx/back.svg",
  33821. extra: 2484/2361,
  33822. bottom: 0/2484
  33823. }
  33824. },
  33825. feralSide: {
  33826. height: math.unit(2 + 1/12, "feet"),
  33827. weight: math.unit(20, "lb"),
  33828. name: "Feral (Side)",
  33829. image: {
  33830. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33831. extra: 1721/1581,
  33832. bottom: 70/1791
  33833. }
  33834. },
  33835. feralLazing: {
  33836. height: math.unit(1.08, "feet"),
  33837. weight: math.unit(20, "lb"),
  33838. name: "Feral (Lazing)",
  33839. image: {
  33840. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33841. extra: 822/822,
  33842. bottom: 248/1070
  33843. }
  33844. },
  33845. ear: {
  33846. height: math.unit(0.416, "feet"),
  33847. name: "Ear",
  33848. image: {
  33849. source: "./media/characters/vaelophis-nyx/ear.svg"
  33850. }
  33851. },
  33852. eye: {
  33853. height: math.unit(0.0748, "feet"),
  33854. name: "Eye",
  33855. image: {
  33856. source: "./media/characters/vaelophis-nyx/eye.svg"
  33857. }
  33858. },
  33859. mouth: {
  33860. height: math.unit(0.378, "feet"),
  33861. name: "Mouth",
  33862. image: {
  33863. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33864. }
  33865. },
  33866. spade: {
  33867. height: math.unit(0.55, "feet"),
  33868. name: "Spade",
  33869. image: {
  33870. source: "./media/characters/vaelophis-nyx/spade.svg"
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Normal",
  33877. height: math.unit(4 + 2/12, "feet"),
  33878. default: true
  33879. },
  33880. ]
  33881. ))
  33882. characterMakers.push(() => makeCharacter(
  33883. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33884. {
  33885. front: {
  33886. height: math.unit(7, "feet"),
  33887. weight: math.unit(231, "lb"),
  33888. name: "Front",
  33889. image: {
  33890. source: "./media/characters/flux/front.svg",
  33891. extra: 919/871,
  33892. bottom: 0/919
  33893. }
  33894. },
  33895. back: {
  33896. height: math.unit(7, "feet"),
  33897. weight: math.unit(231, "lb"),
  33898. name: "Back",
  33899. image: {
  33900. source: "./media/characters/flux/back.svg",
  33901. extra: 1040/992,
  33902. bottom: 0/1040
  33903. }
  33904. },
  33905. frontDressed: {
  33906. height: math.unit(7, "feet"),
  33907. weight: math.unit(231, "lb"),
  33908. name: "Front (Dressed)",
  33909. image: {
  33910. source: "./media/characters/flux/front-dressed.svg",
  33911. extra: 919/871,
  33912. bottom: 0/919
  33913. }
  33914. },
  33915. feralSide: {
  33916. height: math.unit(5, "feet"),
  33917. weight: math.unit(150, "lb"),
  33918. name: "Feral (Side)",
  33919. image: {
  33920. source: "./media/characters/flux/feral-side.svg",
  33921. extra: 598/528,
  33922. bottom: 28/626
  33923. }
  33924. },
  33925. head: {
  33926. height: math.unit(1.585, "feet"),
  33927. name: "Head",
  33928. image: {
  33929. source: "./media/characters/flux/head.svg"
  33930. }
  33931. },
  33932. headSide: {
  33933. height: math.unit(1.74, "feet"),
  33934. name: "Head (Side)",
  33935. image: {
  33936. source: "./media/characters/flux/head-side.svg"
  33937. }
  33938. },
  33939. headSideFire: {
  33940. height: math.unit(1.76, "feet"),
  33941. name: "Head (Side, Fire)",
  33942. image: {
  33943. source: "./media/characters/flux/head-side-fire.svg"
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "Normal",
  33950. height: math.unit(7, "feet"),
  33951. default: true
  33952. },
  33953. ]
  33954. ))
  33955. characterMakers.push(() => makeCharacter(
  33956. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33957. {
  33958. front: {
  33959. height: math.unit(9, "feet"),
  33960. weight: math.unit(1012, "lb"),
  33961. name: "Front",
  33962. image: {
  33963. source: "./media/characters/ulfra-lupae/front.svg",
  33964. extra: 1083/1011,
  33965. bottom: 67/1150
  33966. }
  33967. },
  33968. },
  33969. [
  33970. {
  33971. name: "Micro",
  33972. height: math.unit(6, "inches")
  33973. },
  33974. {
  33975. name: "Socializing",
  33976. height: math.unit(6 + 5/12, "feet")
  33977. },
  33978. {
  33979. name: "Normal",
  33980. height: math.unit(9, "feet"),
  33981. default: true
  33982. },
  33983. {
  33984. name: "Macro",
  33985. height: math.unit(150, "feet")
  33986. },
  33987. ]
  33988. ))
  33989. characterMakers.push(() => makeCharacter(
  33990. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33991. {
  33992. front: {
  33993. height: math.unit(5 + 2/12, "feet"),
  33994. weight: math.unit(120, "lb"),
  33995. name: "Front",
  33996. image: {
  33997. source: "./media/characters/timber/front.svg",
  33998. extra: 2814/2705,
  33999. bottom: 181/2995
  34000. }
  34001. },
  34002. },
  34003. [
  34004. {
  34005. name: "Normal",
  34006. height: math.unit(5 + 2/12, "feet"),
  34007. default: true
  34008. },
  34009. ]
  34010. ))
  34011. characterMakers.push(() => makeCharacter(
  34012. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  34013. {
  34014. front: {
  34015. height: math.unit(9, "feet"),
  34016. name: "Front",
  34017. image: {
  34018. source: "./media/characters/nicki/front.svg",
  34019. extra: 1240/990,
  34020. bottom: 45/1285
  34021. },
  34022. form: "anthro",
  34023. default: true
  34024. },
  34025. side: {
  34026. height: math.unit(9, "feet"),
  34027. name: "Side",
  34028. image: {
  34029. source: "./media/characters/nicki/side.svg",
  34030. extra: 1047/973,
  34031. bottom: 61/1108
  34032. },
  34033. form: "anthro"
  34034. },
  34035. back: {
  34036. height: math.unit(9, "feet"),
  34037. name: "Back",
  34038. image: {
  34039. source: "./media/characters/nicki/back.svg",
  34040. extra: 1006/965,
  34041. bottom: 39/1045
  34042. },
  34043. form: "anthro"
  34044. },
  34045. taur: {
  34046. height: math.unit(15, "feet"),
  34047. name: "Taur",
  34048. image: {
  34049. source: "./media/characters/nicki/taur.svg",
  34050. extra: 1592/1347,
  34051. bottom: 0/1592
  34052. },
  34053. form: "taur",
  34054. default: true
  34055. },
  34056. },
  34057. [
  34058. {
  34059. name: "Normal",
  34060. height: math.unit(9, "feet"),
  34061. form: "anthro",
  34062. default: true
  34063. },
  34064. {
  34065. name: "Normal",
  34066. height: math.unit(15, "feet"),
  34067. form: "taur",
  34068. default: true
  34069. }
  34070. ],
  34071. {
  34072. "anthro": {
  34073. name: "Anthro",
  34074. default: true
  34075. },
  34076. "taur": {
  34077. name: "Taur"
  34078. }
  34079. }
  34080. ))
  34081. characterMakers.push(() => makeCharacter(
  34082. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  34083. {
  34084. front: {
  34085. height: math.unit(7 + 10/12, "feet"),
  34086. weight: math.unit(3.5, "tons"),
  34087. name: "Front",
  34088. image: {
  34089. source: "./media/characters/lee/front.svg",
  34090. extra: 1773/1615,
  34091. bottom: 86/1859
  34092. }
  34093. },
  34094. hand: {
  34095. height: math.unit(1.78, "feet"),
  34096. name: "Hand",
  34097. image: {
  34098. source: "./media/characters/lee/hand.svg"
  34099. }
  34100. },
  34101. maw: {
  34102. height: math.unit(1.18, "feet"),
  34103. name: "Maw",
  34104. image: {
  34105. source: "./media/characters/lee/maw.svg"
  34106. }
  34107. },
  34108. },
  34109. [
  34110. {
  34111. name: "Normal",
  34112. height: math.unit(7 + 10/12, "feet"),
  34113. default: true
  34114. },
  34115. ]
  34116. ))
  34117. characterMakers.push(() => makeCharacter(
  34118. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  34119. {
  34120. front: {
  34121. height: math.unit(9, "feet"),
  34122. name: "Front",
  34123. image: {
  34124. source: "./media/characters/guti/front.svg",
  34125. extra: 4551/4355,
  34126. bottom: 123/4674
  34127. }
  34128. },
  34129. tongue: {
  34130. height: math.unit(1, "feet"),
  34131. name: "Tongue",
  34132. image: {
  34133. source: "./media/characters/guti/tongue.svg"
  34134. }
  34135. },
  34136. paw: {
  34137. height: math.unit(1.18, "feet"),
  34138. name: "Paw",
  34139. image: {
  34140. source: "./media/characters/guti/paw.svg"
  34141. }
  34142. },
  34143. },
  34144. [
  34145. {
  34146. name: "Normal",
  34147. height: math.unit(9, "feet"),
  34148. default: true
  34149. },
  34150. ]
  34151. ))
  34152. characterMakers.push(() => makeCharacter(
  34153. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  34154. {
  34155. side: {
  34156. height: math.unit(5, "meters"),
  34157. name: "Side",
  34158. image: {
  34159. source: "./media/characters/vesper/side.svg",
  34160. extra: 1605/1518,
  34161. bottom: 0/1605
  34162. }
  34163. },
  34164. },
  34165. [
  34166. {
  34167. name: "Small",
  34168. height: math.unit(5, "meters")
  34169. },
  34170. {
  34171. name: "Sage",
  34172. height: math.unit(100, "meters"),
  34173. default: true
  34174. },
  34175. {
  34176. name: "Fun Size",
  34177. height: math.unit(600, "meters")
  34178. },
  34179. {
  34180. name: "Goddess",
  34181. height: math.unit(20000, "km")
  34182. },
  34183. {
  34184. name: "Maximum",
  34185. height: math.unit(5, "galaxies")
  34186. },
  34187. ]
  34188. ))
  34189. characterMakers.push(() => makeCharacter(
  34190. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  34191. {
  34192. front: {
  34193. height: math.unit(6 + 3/12, "feet"),
  34194. weight: math.unit(190, "lb"),
  34195. name: "Front",
  34196. image: {
  34197. source: "./media/characters/gawain/front.svg",
  34198. extra: 2222/2139,
  34199. bottom: 90/2312
  34200. }
  34201. },
  34202. back: {
  34203. height: math.unit(6 + 3/12, "feet"),
  34204. weight: math.unit(190, "lb"),
  34205. name: "Back",
  34206. image: {
  34207. source: "./media/characters/gawain/back.svg",
  34208. extra: 2199/2111,
  34209. bottom: 73/2272
  34210. }
  34211. },
  34212. },
  34213. [
  34214. {
  34215. name: "Normal",
  34216. height: math.unit(6 + 3/12, "feet"),
  34217. default: true
  34218. },
  34219. ]
  34220. ))
  34221. characterMakers.push(() => makeCharacter(
  34222. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  34223. {
  34224. side: {
  34225. height: math.unit(3.5, "meters"),
  34226. weight: math.unit(16000, "lb"),
  34227. name: "Side",
  34228. image: {
  34229. source: "./media/characters/dascalti/side.svg",
  34230. extra: 392/273,
  34231. bottom: 47/439
  34232. }
  34233. },
  34234. breath: {
  34235. height: math.unit(7.4, "feet"),
  34236. name: "Breath",
  34237. image: {
  34238. source: "./media/characters/dascalti/breath.svg"
  34239. }
  34240. },
  34241. fed: {
  34242. height: math.unit(3.6, "meters"),
  34243. weight: math.unit(16000, "lb"),
  34244. name: "Fed",
  34245. image: {
  34246. source: "./media/characters/dascalti/fed.svg",
  34247. extra: 1419/820,
  34248. bottom: 95/1514
  34249. }
  34250. },
  34251. },
  34252. [
  34253. {
  34254. name: "Normal",
  34255. height: math.unit(3.5, "meters"),
  34256. default: true
  34257. },
  34258. ]
  34259. ))
  34260. characterMakers.push(() => makeCharacter(
  34261. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  34262. {
  34263. front: {
  34264. height: math.unit(3 + 5/12, "feet"),
  34265. name: "Front",
  34266. image: {
  34267. source: "./media/characters/mauve/front.svg",
  34268. extra: 1126/1033,
  34269. bottom: 65/1191
  34270. }
  34271. },
  34272. side: {
  34273. height: math.unit(3 + 5/12, "feet"),
  34274. name: "Side",
  34275. image: {
  34276. source: "./media/characters/mauve/side.svg",
  34277. extra: 1089/1001,
  34278. bottom: 29/1118
  34279. }
  34280. },
  34281. back: {
  34282. height: math.unit(3 + 5/12, "feet"),
  34283. name: "Back",
  34284. image: {
  34285. source: "./media/characters/mauve/back.svg",
  34286. extra: 1173/1053,
  34287. bottom: 109/1282
  34288. }
  34289. },
  34290. },
  34291. [
  34292. {
  34293. name: "Normal",
  34294. height: math.unit(3 + 5/12, "feet"),
  34295. default: true
  34296. },
  34297. ]
  34298. ))
  34299. characterMakers.push(() => makeCharacter(
  34300. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  34301. {
  34302. front: {
  34303. height: math.unit(6 + 3/12, "feet"),
  34304. weight: math.unit(430, "lb"),
  34305. name: "Front",
  34306. image: {
  34307. source: "./media/characters/carlos/front.svg",
  34308. extra: 1964/1913,
  34309. bottom: 70/2034
  34310. }
  34311. },
  34312. },
  34313. [
  34314. {
  34315. name: "Normal",
  34316. height: math.unit(6 + 3/12, "feet"),
  34317. default: true
  34318. },
  34319. ]
  34320. ))
  34321. characterMakers.push(() => makeCharacter(
  34322. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  34323. {
  34324. back: {
  34325. height: math.unit(5 + 10/12, "feet"),
  34326. weight: math.unit(200, "lb"),
  34327. name: "Back",
  34328. image: {
  34329. source: "./media/characters/jax/back.svg",
  34330. extra: 764/739,
  34331. bottom: 25/789
  34332. }
  34333. },
  34334. },
  34335. [
  34336. {
  34337. name: "Normal",
  34338. height: math.unit(5 + 10/12, "feet"),
  34339. default: true
  34340. },
  34341. ]
  34342. ))
  34343. characterMakers.push(() => makeCharacter(
  34344. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  34345. {
  34346. front: {
  34347. height: math.unit(8, "feet"),
  34348. weight: math.unit(250, "lb"),
  34349. name: "Front",
  34350. image: {
  34351. source: "./media/characters/eikthynir/front.svg",
  34352. extra: 1332/1166,
  34353. bottom: 82/1414
  34354. }
  34355. },
  34356. back: {
  34357. height: math.unit(8, "feet"),
  34358. weight: math.unit(250, "lb"),
  34359. name: "Back",
  34360. image: {
  34361. source: "./media/characters/eikthynir/back.svg",
  34362. extra: 1342/1190,
  34363. bottom: 19/1361
  34364. }
  34365. },
  34366. dick: {
  34367. height: math.unit(2.35, "feet"),
  34368. name: "Dick",
  34369. image: {
  34370. source: "./media/characters/eikthynir/dick.svg"
  34371. }
  34372. },
  34373. },
  34374. [
  34375. {
  34376. name: "Normal",
  34377. height: math.unit(8, "feet"),
  34378. default: true
  34379. },
  34380. ]
  34381. ))
  34382. characterMakers.push(() => makeCharacter(
  34383. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34384. {
  34385. front: {
  34386. height: math.unit(99, "meters"),
  34387. weight: math.unit(13000, "tons"),
  34388. name: "Front",
  34389. image: {
  34390. source: "./media/characters/zlmos/front.svg",
  34391. extra: 2202/1992,
  34392. bottom: 315/2517
  34393. }
  34394. },
  34395. },
  34396. [
  34397. {
  34398. name: "Macro",
  34399. height: math.unit(99, "meters"),
  34400. default: true
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(6 + 5/12, "feet"),
  34409. name: "Front",
  34410. image: {
  34411. source: "./media/characters/purri/front.svg",
  34412. extra: 1698/1610,
  34413. bottom: 32/1730
  34414. }
  34415. },
  34416. frontAlt: {
  34417. height: math.unit(6 + 5/12, "feet"),
  34418. name: "Front (Alt)",
  34419. image: {
  34420. source: "./media/characters/purri/front-alt.svg",
  34421. extra: 450/420,
  34422. bottom: 26/476
  34423. }
  34424. },
  34425. boots: {
  34426. height: math.unit(5.5, "feet"),
  34427. name: "Boots",
  34428. image: {
  34429. source: "./media/characters/purri/boots.svg",
  34430. extra: 905/853,
  34431. bottom: 18/923
  34432. },
  34433. extraAttributes: {
  34434. "shoeSize": {
  34435. name: "Shoe Size",
  34436. power: 1,
  34437. type: "length",
  34438. base: math.unit(12, "ShoeSizeMensUS")
  34439. },
  34440. "platformHeight": {
  34441. name: "Platform Height",
  34442. power: 1,
  34443. type: "length",
  34444. base: math.unit(2, "inches")
  34445. },
  34446. }
  34447. },
  34448. lying: {
  34449. height: math.unit(2, "feet"),
  34450. name: "Lying",
  34451. image: {
  34452. source: "./media/characters/purri/lying.svg",
  34453. extra: 940/843,
  34454. bottom: 146/1086
  34455. }
  34456. },
  34457. devious: {
  34458. height: math.unit(1.77, "feet"),
  34459. name: "Devious",
  34460. image: {
  34461. source: "./media/characters/purri/devious.svg",
  34462. extra: 1440/1155,
  34463. bottom: 147/1587
  34464. }
  34465. },
  34466. bean: {
  34467. height: math.unit(1.94, "feet"),
  34468. name: "Bean",
  34469. image: {
  34470. source: "./media/characters/purri/bean.svg"
  34471. }
  34472. },
  34473. },
  34474. [
  34475. {
  34476. name: "Micro",
  34477. height: math.unit(1, "mm")
  34478. },
  34479. {
  34480. name: "Normal",
  34481. height: math.unit(6 + 5/12, "feet"),
  34482. default: true
  34483. },
  34484. {
  34485. name: "Macro :3c",
  34486. height: math.unit(2, "miles")
  34487. },
  34488. ]
  34489. ))
  34490. characterMakers.push(() => makeCharacter(
  34491. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34492. {
  34493. front: {
  34494. height: math.unit(6 + 2/12, "feet"),
  34495. weight: math.unit(250, "lb"),
  34496. name: "Front",
  34497. image: {
  34498. source: "./media/characters/moonlight/front.svg",
  34499. extra: 1044/908,
  34500. bottom: 56/1100
  34501. }
  34502. },
  34503. feral: {
  34504. height: math.unit(3 + 1/12, "feet"),
  34505. weight: math.unit(50, "kg"),
  34506. name: "Feral",
  34507. image: {
  34508. source: "./media/characters/moonlight/feral.svg",
  34509. extra: 3705/2791,
  34510. bottom: 145/3850
  34511. }
  34512. },
  34513. paw: {
  34514. height: math.unit(1, "feet"),
  34515. name: "Paw",
  34516. image: {
  34517. source: "./media/characters/moonlight/paw.svg"
  34518. }
  34519. },
  34520. paws: {
  34521. height: math.unit(0.98, "feet"),
  34522. name: "Paws",
  34523. image: {
  34524. source: "./media/characters/moonlight/paws.svg",
  34525. extra: 939/939,
  34526. bottom: 50/989
  34527. }
  34528. },
  34529. mouth: {
  34530. height: math.unit(0.48, "feet"),
  34531. name: "Mouth",
  34532. image: {
  34533. source: "./media/characters/moonlight/mouth.svg"
  34534. }
  34535. },
  34536. dick: {
  34537. height: math.unit(1.46, "feet"),
  34538. name: "Dick",
  34539. image: {
  34540. source: "./media/characters/moonlight/dick.svg"
  34541. }
  34542. },
  34543. },
  34544. [
  34545. {
  34546. name: "Normal",
  34547. height: math.unit(6 + 2/12, "feet"),
  34548. default: true
  34549. },
  34550. {
  34551. name: "Macro",
  34552. height: math.unit(300, "feet")
  34553. },
  34554. {
  34555. name: "Macro+",
  34556. height: math.unit(1, "mile")
  34557. },
  34558. {
  34559. name: "Mt. Moon",
  34560. height: math.unit(5, "miles")
  34561. },
  34562. {
  34563. name: "Megamacro",
  34564. height: math.unit(15, "miles")
  34565. },
  34566. ]
  34567. ))
  34568. characterMakers.push(() => makeCharacter(
  34569. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34570. {
  34571. back: {
  34572. height: math.unit(6, "feet"),
  34573. weight: math.unit(150, "lb"),
  34574. name: "Back",
  34575. image: {
  34576. source: "./media/characters/sylen/back.svg",
  34577. extra: 1335/1273,
  34578. bottom: 107/1442
  34579. }
  34580. },
  34581. },
  34582. [
  34583. {
  34584. name: "Normal",
  34585. height: math.unit(5 + 5/12, "feet")
  34586. },
  34587. {
  34588. name: "Megamacro",
  34589. height: math.unit(3, "miles"),
  34590. default: true
  34591. },
  34592. ]
  34593. ))
  34594. characterMakers.push(() => makeCharacter(
  34595. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34596. {
  34597. front: {
  34598. height: math.unit(6, "feet"),
  34599. weight: math.unit(190, "lb"),
  34600. name: "Front",
  34601. image: {
  34602. source: "./media/characters/huttser/front.svg",
  34603. extra: 1152/1058,
  34604. bottom: 23/1175
  34605. }
  34606. },
  34607. side: {
  34608. height: math.unit(6, "feet"),
  34609. weight: math.unit(190, "lb"),
  34610. name: "Side",
  34611. image: {
  34612. source: "./media/characters/huttser/side.svg",
  34613. extra: 1174/1065,
  34614. bottom: 18/1192
  34615. }
  34616. },
  34617. back: {
  34618. height: math.unit(6, "feet"),
  34619. weight: math.unit(190, "lb"),
  34620. name: "Back",
  34621. image: {
  34622. source: "./media/characters/huttser/back.svg",
  34623. extra: 1158/1056,
  34624. bottom: 12/1170
  34625. }
  34626. },
  34627. },
  34628. [
  34629. ]
  34630. ))
  34631. characterMakers.push(() => makeCharacter(
  34632. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34633. {
  34634. side: {
  34635. height: math.unit(12 + 9/12, "feet"),
  34636. weight: math.unit(15000, "lb"),
  34637. name: "Side",
  34638. image: {
  34639. source: "./media/characters/faan/side.svg",
  34640. extra: 2747/2697,
  34641. bottom: 0/2747
  34642. }
  34643. },
  34644. front: {
  34645. height: math.unit(12 + 9/12, "feet"),
  34646. weight: math.unit(15000, "lb"),
  34647. name: "Front",
  34648. image: {
  34649. source: "./media/characters/faan/front.svg",
  34650. extra: 607/571,
  34651. bottom: 24/631
  34652. }
  34653. },
  34654. head: {
  34655. height: math.unit(2.85, "feet"),
  34656. name: "Head",
  34657. image: {
  34658. source: "./media/characters/faan/head.svg"
  34659. }
  34660. },
  34661. headAlt: {
  34662. height: math.unit(3.13, "feet"),
  34663. name: "Head-alt",
  34664. image: {
  34665. source: "./media/characters/faan/head-alt.svg"
  34666. }
  34667. },
  34668. },
  34669. [
  34670. {
  34671. name: "Normal",
  34672. height: math.unit(12 + 9/12, "feet"),
  34673. default: true
  34674. },
  34675. ]
  34676. ))
  34677. characterMakers.push(() => makeCharacter(
  34678. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34679. {
  34680. front: {
  34681. height: math.unit(6, "feet"),
  34682. weight: math.unit(300, "lb"),
  34683. name: "Front",
  34684. image: {
  34685. source: "./media/characters/tanio/front.svg",
  34686. extra: 711/673,
  34687. bottom: 25/736
  34688. }
  34689. },
  34690. },
  34691. [
  34692. {
  34693. name: "Normal",
  34694. height: math.unit(6, "feet"),
  34695. default: true
  34696. },
  34697. ]
  34698. ))
  34699. characterMakers.push(() => makeCharacter(
  34700. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34701. {
  34702. front: {
  34703. height: math.unit(3, "inches"),
  34704. name: "Front",
  34705. image: {
  34706. source: "./media/characters/noboru/front.svg",
  34707. extra: 1039/932,
  34708. bottom: 18/1057
  34709. }
  34710. },
  34711. },
  34712. [
  34713. {
  34714. name: "Micro",
  34715. height: math.unit(3, "inches"),
  34716. default: true
  34717. },
  34718. ]
  34719. ))
  34720. characterMakers.push(() => makeCharacter(
  34721. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34722. {
  34723. front: {
  34724. height: math.unit(1.85, "meters"),
  34725. weight: math.unit(80, "kg"),
  34726. name: "Front",
  34727. image: {
  34728. source: "./media/characters/daniel-barrett/front.svg",
  34729. extra: 355/337,
  34730. bottom: 9/364
  34731. }
  34732. },
  34733. },
  34734. [
  34735. {
  34736. name: "Pico",
  34737. height: math.unit(0.0433, "mm")
  34738. },
  34739. {
  34740. name: "Nano",
  34741. height: math.unit(1.5, "mm")
  34742. },
  34743. {
  34744. name: "Micro",
  34745. height: math.unit(5.3, "cm"),
  34746. default: true
  34747. },
  34748. {
  34749. name: "Normal",
  34750. height: math.unit(1.85, "meters")
  34751. },
  34752. {
  34753. name: "Macro",
  34754. height: math.unit(64.7, "meters")
  34755. },
  34756. {
  34757. name: "Megamacro",
  34758. height: math.unit(2.26, "km")
  34759. },
  34760. {
  34761. name: "Gigamacro",
  34762. height: math.unit(79, "km")
  34763. },
  34764. {
  34765. name: "Teramacro",
  34766. height: math.unit(2765, "km")
  34767. },
  34768. {
  34769. name: "Petamacro",
  34770. height: math.unit(96678, "km")
  34771. },
  34772. ]
  34773. ))
  34774. characterMakers.push(() => makeCharacter(
  34775. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34776. {
  34777. front: {
  34778. height: math.unit(30, "meters"),
  34779. weight: math.unit(400, "tons"),
  34780. name: "Front",
  34781. image: {
  34782. source: "./media/characters/zeel/front.svg",
  34783. extra: 2599/2599,
  34784. bottom: 226/2825
  34785. }
  34786. },
  34787. },
  34788. [
  34789. {
  34790. name: "Macro",
  34791. height: math.unit(30, "meters"),
  34792. default: true
  34793. },
  34794. ]
  34795. ))
  34796. characterMakers.push(() => makeCharacter(
  34797. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34798. {
  34799. front: {
  34800. height: math.unit(6 + 7/12, "feet"),
  34801. weight: math.unit(210, "lb"),
  34802. name: "Front",
  34803. image: {
  34804. source: "./media/characters/tarn/front.svg",
  34805. extra: 3517/3220,
  34806. bottom: 91/3608
  34807. }
  34808. },
  34809. back: {
  34810. height: math.unit(6 + 7/12, "feet"),
  34811. weight: math.unit(210, "lb"),
  34812. name: "Back",
  34813. image: {
  34814. source: "./media/characters/tarn/back.svg",
  34815. extra: 3566/3241,
  34816. bottom: 34/3600
  34817. }
  34818. },
  34819. dick: {
  34820. height: math.unit(1.65, "feet"),
  34821. name: "Dick",
  34822. image: {
  34823. source: "./media/characters/tarn/dick.svg"
  34824. }
  34825. },
  34826. paw: {
  34827. height: math.unit(1.80, "feet"),
  34828. name: "Paw",
  34829. image: {
  34830. source: "./media/characters/tarn/paw.svg"
  34831. }
  34832. },
  34833. tongue: {
  34834. height: math.unit(0.97, "feet"),
  34835. name: "Tongue",
  34836. image: {
  34837. source: "./media/characters/tarn/tongue.svg"
  34838. }
  34839. },
  34840. },
  34841. [
  34842. {
  34843. name: "Micro",
  34844. height: math.unit(4, "inches")
  34845. },
  34846. {
  34847. name: "Normal",
  34848. height: math.unit(6 + 7/12, "feet"),
  34849. default: true
  34850. },
  34851. {
  34852. name: "Macro",
  34853. height: math.unit(300, "feet")
  34854. },
  34855. ]
  34856. ))
  34857. characterMakers.push(() => makeCharacter(
  34858. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34859. {
  34860. front: {
  34861. height: math.unit(5 + 7/12, "feet"),
  34862. weight: math.unit(80, "kg"),
  34863. name: "Front",
  34864. image: {
  34865. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34866. extra: 3023/2865,
  34867. bottom: 33/3056
  34868. }
  34869. },
  34870. back: {
  34871. height: math.unit(5 + 7/12, "feet"),
  34872. weight: math.unit(80, "kg"),
  34873. name: "Back",
  34874. image: {
  34875. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34876. extra: 3020/2886,
  34877. bottom: 30/3050
  34878. }
  34879. },
  34880. dick: {
  34881. height: math.unit(0.98, "feet"),
  34882. name: "Dick",
  34883. image: {
  34884. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34885. }
  34886. },
  34887. anatomy: {
  34888. height: math.unit(2.86, "feet"),
  34889. name: "Anatomy",
  34890. image: {
  34891. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34892. }
  34893. },
  34894. },
  34895. [
  34896. {
  34897. name: "Really Small",
  34898. height: math.unit(2, "inches")
  34899. },
  34900. {
  34901. name: "Micro",
  34902. height: math.unit(5.583, "inches")
  34903. },
  34904. {
  34905. name: "Normal",
  34906. height: math.unit(5 + 7/12, "feet"),
  34907. default: true
  34908. },
  34909. {
  34910. name: "Macro",
  34911. height: math.unit(67, "feet")
  34912. },
  34913. {
  34914. name: "Megamacro",
  34915. height: math.unit(134, "feet")
  34916. },
  34917. ]
  34918. ))
  34919. characterMakers.push(() => makeCharacter(
  34920. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34921. {
  34922. front: {
  34923. height: math.unit(9, "feet"),
  34924. weight: math.unit(120, "lb"),
  34925. name: "Front",
  34926. image: {
  34927. source: "./media/characters/sally/front.svg",
  34928. extra: 1506/1349,
  34929. bottom: 66/1572
  34930. }
  34931. },
  34932. },
  34933. [
  34934. {
  34935. name: "Normal",
  34936. height: math.unit(9, "feet"),
  34937. default: true
  34938. },
  34939. ]
  34940. ))
  34941. characterMakers.push(() => makeCharacter(
  34942. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34943. {
  34944. front: {
  34945. height: math.unit(8, "feet"),
  34946. weight: math.unit(900, "lb"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/owen/front.svg",
  34950. extra: 1761/1657,
  34951. bottom: 74/1835
  34952. }
  34953. },
  34954. side: {
  34955. height: math.unit(8, "feet"),
  34956. weight: math.unit(900, "lb"),
  34957. name: "Side",
  34958. image: {
  34959. source: "./media/characters/owen/side.svg",
  34960. extra: 1797/1734,
  34961. bottom: 30/1827
  34962. }
  34963. },
  34964. back: {
  34965. height: math.unit(8, "feet"),
  34966. weight: math.unit(900, "lb"),
  34967. name: "Back",
  34968. image: {
  34969. source: "./media/characters/owen/back.svg",
  34970. extra: 1796/1706,
  34971. bottom: 59/1855
  34972. }
  34973. },
  34974. maw: {
  34975. height: math.unit(1.76, "feet"),
  34976. name: "Maw",
  34977. image: {
  34978. source: "./media/characters/owen/maw.svg"
  34979. }
  34980. },
  34981. },
  34982. [
  34983. {
  34984. name: "Normal",
  34985. height: math.unit(8, "feet"),
  34986. default: true
  34987. },
  34988. ]
  34989. ))
  34990. characterMakers.push(() => makeCharacter(
  34991. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34992. {
  34993. front: {
  34994. height: math.unit(4, "feet"),
  34995. weight: math.unit(400, "lb"),
  34996. name: "Front",
  34997. image: {
  34998. source: "./media/characters/ryth/front.svg",
  34999. extra: 1920/1748,
  35000. bottom: 42/1962
  35001. }
  35002. },
  35003. back: {
  35004. height: math.unit(4, "feet"),
  35005. weight: math.unit(400, "lb"),
  35006. name: "Back",
  35007. image: {
  35008. source: "./media/characters/ryth/back.svg",
  35009. extra: 1897/1690,
  35010. bottom: 89/1986
  35011. }
  35012. },
  35013. mouth: {
  35014. height: math.unit(1.39, "feet"),
  35015. name: "Mouth",
  35016. image: {
  35017. source: "./media/characters/ryth/mouth.svg"
  35018. }
  35019. },
  35020. tailmaw: {
  35021. height: math.unit(1.23, "feet"),
  35022. name: "Tailmaw",
  35023. image: {
  35024. source: "./media/characters/ryth/tailmaw.svg"
  35025. }
  35026. },
  35027. goia: {
  35028. height: math.unit(4, "meters"),
  35029. weight: math.unit(10800, "lb"),
  35030. name: "Goia",
  35031. image: {
  35032. source: "./media/characters/ryth/goia.svg",
  35033. extra: 745/640,
  35034. bottom: 107/852
  35035. }
  35036. },
  35037. goiaFront: {
  35038. height: math.unit(4, "meters"),
  35039. weight: math.unit(10800, "lb"),
  35040. name: "Goia (Front)",
  35041. image: {
  35042. source: "./media/characters/ryth/goia-front.svg",
  35043. extra: 750/586,
  35044. bottom: 114/864
  35045. }
  35046. },
  35047. goiaMaw: {
  35048. height: math.unit(5.55, "feet"),
  35049. name: "Goia Maw",
  35050. image: {
  35051. source: "./media/characters/ryth/goia-maw.svg"
  35052. }
  35053. },
  35054. goiaForepaw: {
  35055. height: math.unit(3.5, "feet"),
  35056. name: "Goia Forepaw",
  35057. image: {
  35058. source: "./media/characters/ryth/goia-forepaw.svg"
  35059. }
  35060. },
  35061. goiaHindpaw: {
  35062. height: math.unit(5.55, "feet"),
  35063. name: "Goia Hindpaw",
  35064. image: {
  35065. source: "./media/characters/ryth/goia-hindpaw.svg"
  35066. }
  35067. },
  35068. },
  35069. [
  35070. {
  35071. name: "Normal",
  35072. height: math.unit(4, "feet"),
  35073. default: true
  35074. },
  35075. ]
  35076. ))
  35077. characterMakers.push(() => makeCharacter(
  35078. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  35079. {
  35080. front: {
  35081. height: math.unit(7, "feet"),
  35082. weight: math.unit(180, "lb"),
  35083. name: "Front",
  35084. image: {
  35085. source: "./media/characters/necrolance/front.svg",
  35086. extra: 1062/947,
  35087. bottom: 41/1103
  35088. }
  35089. },
  35090. back: {
  35091. height: math.unit(7, "feet"),
  35092. weight: math.unit(180, "lb"),
  35093. name: "Back",
  35094. image: {
  35095. source: "./media/characters/necrolance/back.svg",
  35096. extra: 1045/984,
  35097. bottom: 14/1059
  35098. }
  35099. },
  35100. wing: {
  35101. height: math.unit(2.67, "feet"),
  35102. name: "Wing",
  35103. image: {
  35104. source: "./media/characters/necrolance/wing.svg"
  35105. }
  35106. },
  35107. },
  35108. [
  35109. {
  35110. name: "Normal",
  35111. height: math.unit(7, "feet"),
  35112. default: true
  35113. },
  35114. ]
  35115. ))
  35116. characterMakers.push(() => makeCharacter(
  35117. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  35118. {
  35119. front: {
  35120. height: math.unit(76, "meters"),
  35121. weight: math.unit(30000, "tons"),
  35122. name: "Front",
  35123. image: {
  35124. source: "./media/characters/tyler/front.svg",
  35125. extra: 1640/1640,
  35126. bottom: 114/1754
  35127. }
  35128. },
  35129. },
  35130. [
  35131. {
  35132. name: "Macro",
  35133. height: math.unit(76, "meters"),
  35134. default: true
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  35140. {
  35141. front: {
  35142. height: math.unit(4 + 11/12, "feet"),
  35143. weight: math.unit(132, "lb"),
  35144. name: "Front",
  35145. image: {
  35146. source: "./media/characters/icey/front.svg",
  35147. extra: 2750/2550,
  35148. bottom: 33/2783
  35149. }
  35150. },
  35151. back: {
  35152. height: math.unit(4 + 11/12, "feet"),
  35153. weight: math.unit(132, "lb"),
  35154. name: "Back",
  35155. image: {
  35156. source: "./media/characters/icey/back.svg",
  35157. extra: 2624/2481,
  35158. bottom: 35/2659
  35159. }
  35160. },
  35161. },
  35162. [
  35163. {
  35164. name: "Normal",
  35165. height: math.unit(4 + 11/12, "feet"),
  35166. default: true
  35167. },
  35168. ]
  35169. ))
  35170. characterMakers.push(() => makeCharacter(
  35171. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  35172. {
  35173. front: {
  35174. height: math.unit(100, "feet"),
  35175. weight: math.unit(0, "lb"),
  35176. name: "Front",
  35177. image: {
  35178. source: "./media/characters/smile/front.svg",
  35179. extra: 2983/2912,
  35180. bottom: 162/3145
  35181. }
  35182. },
  35183. back: {
  35184. height: math.unit(100, "feet"),
  35185. weight: math.unit(0, "lb"),
  35186. name: "Back",
  35187. image: {
  35188. source: "./media/characters/smile/back.svg",
  35189. extra: 3143/3031,
  35190. bottom: 91/3234
  35191. }
  35192. },
  35193. head: {
  35194. height: math.unit(26.3, "feet"),
  35195. weight: math.unit(0, "lb"),
  35196. name: "Head",
  35197. image: {
  35198. source: "./media/characters/smile/head.svg"
  35199. }
  35200. },
  35201. collar: {
  35202. height: math.unit(5.3, "feet"),
  35203. weight: math.unit(0, "lb"),
  35204. name: "Collar",
  35205. image: {
  35206. source: "./media/characters/smile/collar.svg"
  35207. }
  35208. },
  35209. },
  35210. [
  35211. {
  35212. name: "Macro",
  35213. height: math.unit(100, "feet"),
  35214. default: true
  35215. },
  35216. ]
  35217. ))
  35218. characterMakers.push(() => makeCharacter(
  35219. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  35220. {
  35221. dragon: {
  35222. height: math.unit(26, "feet"),
  35223. weight: math.unit(36, "tons"),
  35224. name: "Dragon",
  35225. image: {
  35226. source: "./media/characters/arimphae/dragon.svg",
  35227. extra: 1574/983,
  35228. bottom: 357/1931
  35229. }
  35230. },
  35231. drake: {
  35232. height: math.unit(9, "feet"),
  35233. weight: math.unit(1.5, "tons"),
  35234. name: "Drake",
  35235. image: {
  35236. source: "./media/characters/arimphae/drake.svg",
  35237. extra: 1120/925,
  35238. bottom: 435/1555
  35239. }
  35240. },
  35241. },
  35242. [
  35243. {
  35244. name: "Small",
  35245. height: math.unit(26*5/9, "feet")
  35246. },
  35247. {
  35248. name: "Normal",
  35249. height: math.unit(26, "feet"),
  35250. default: true
  35251. },
  35252. ]
  35253. ))
  35254. characterMakers.push(() => makeCharacter(
  35255. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  35256. {
  35257. front: {
  35258. height: math.unit(8 + 9/12, "feet"),
  35259. name: "Front",
  35260. image: {
  35261. source: "./media/characters/xander/front.svg",
  35262. extra: 1237/974,
  35263. bottom: 94/1331
  35264. }
  35265. },
  35266. },
  35267. [
  35268. {
  35269. name: "Normal",
  35270. height: math.unit(8 + 9/12, "feet"),
  35271. default: true
  35272. },
  35273. {
  35274. name: "Gaze Grabber",
  35275. height: math.unit(13 + 8/12, "feet")
  35276. },
  35277. {
  35278. name: "Jaw Dropper",
  35279. height: math.unit(27, "feet")
  35280. },
  35281. {
  35282. name: "Show Stopper",
  35283. height: math.unit(136, "feet")
  35284. },
  35285. {
  35286. name: "Superstar",
  35287. height: math.unit(1.9e6, "miles")
  35288. },
  35289. ]
  35290. ))
  35291. characterMakers.push(() => makeCharacter(
  35292. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  35293. {
  35294. side: {
  35295. height: math.unit(2100, "feet"),
  35296. name: "Side",
  35297. image: {
  35298. source: "./media/characters/osiris/side.svg",
  35299. extra: 1105/939,
  35300. bottom: 167/1272
  35301. }
  35302. },
  35303. },
  35304. [
  35305. {
  35306. name: "Macro",
  35307. height: math.unit(2100, "feet"),
  35308. default: true
  35309. },
  35310. ]
  35311. ))
  35312. characterMakers.push(() => makeCharacter(
  35313. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  35314. {
  35315. front: {
  35316. height: math.unit(6 + 8/12, "feet"),
  35317. weight: math.unit(225, "lb"),
  35318. name: "Front",
  35319. image: {
  35320. source: "./media/characters/rhys-londe/front.svg",
  35321. extra: 2258/2141,
  35322. bottom: 188/2446
  35323. }
  35324. },
  35325. back: {
  35326. height: math.unit(6 + 8/12, "feet"),
  35327. weight: math.unit(225, "lb"),
  35328. name: "Back",
  35329. image: {
  35330. source: "./media/characters/rhys-londe/back.svg",
  35331. extra: 2237/2137,
  35332. bottom: 63/2300
  35333. }
  35334. },
  35335. frontNsfw: {
  35336. height: math.unit(6 + 8/12, "feet"),
  35337. weight: math.unit(225, "lb"),
  35338. name: "Front (NSFW)",
  35339. image: {
  35340. source: "./media/characters/rhys-londe/front-nsfw.svg",
  35341. extra: 2258/2141,
  35342. bottom: 188/2446
  35343. }
  35344. },
  35345. backNsfw: {
  35346. height: math.unit(6 + 8/12, "feet"),
  35347. weight: math.unit(225, "lb"),
  35348. name: "Back (NSFW)",
  35349. image: {
  35350. source: "./media/characters/rhys-londe/back-nsfw.svg",
  35351. extra: 2237/2137,
  35352. bottom: 63/2300
  35353. }
  35354. },
  35355. dick: {
  35356. height: math.unit(30, "inches"),
  35357. name: "Dick",
  35358. image: {
  35359. source: "./media/characters/rhys-londe/dick.svg"
  35360. }
  35361. },
  35362. maw: {
  35363. height: math.unit(1.6, "feet"),
  35364. name: "Maw",
  35365. image: {
  35366. source: "./media/characters/rhys-londe/maw.svg"
  35367. }
  35368. },
  35369. },
  35370. [
  35371. {
  35372. name: "Normal",
  35373. height: math.unit(6 + 8/12, "feet"),
  35374. default: true
  35375. },
  35376. ]
  35377. ))
  35378. characterMakers.push(() => makeCharacter(
  35379. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35380. {
  35381. front: {
  35382. height: math.unit(3 + 10/12, "feet"),
  35383. weight: math.unit(90, "lb"),
  35384. name: "Front",
  35385. image: {
  35386. source: "./media/characters/taivas-ensim/front.svg",
  35387. extra: 1327/1216,
  35388. bottom: 96/1423
  35389. }
  35390. },
  35391. back: {
  35392. height: math.unit(3 + 10/12, "feet"),
  35393. weight: math.unit(90, "lb"),
  35394. name: "Back",
  35395. image: {
  35396. source: "./media/characters/taivas-ensim/back.svg",
  35397. extra: 1355/1247,
  35398. bottom: 11/1366
  35399. }
  35400. },
  35401. frontNsfw: {
  35402. height: math.unit(3 + 10/12, "feet"),
  35403. weight: math.unit(90, "lb"),
  35404. name: "Front (NSFW)",
  35405. image: {
  35406. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35407. extra: 1327/1216,
  35408. bottom: 96/1423
  35409. }
  35410. },
  35411. backNsfw: {
  35412. height: math.unit(3 + 10/12, "feet"),
  35413. weight: math.unit(90, "lb"),
  35414. name: "Back (NSFW)",
  35415. image: {
  35416. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35417. extra: 1355/1247,
  35418. bottom: 11/1366
  35419. }
  35420. },
  35421. },
  35422. [
  35423. {
  35424. name: "Normal",
  35425. height: math.unit(3 + 10/12, "feet"),
  35426. default: true
  35427. },
  35428. ]
  35429. ))
  35430. characterMakers.push(() => makeCharacter(
  35431. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35432. {
  35433. front: {
  35434. height: math.unit(9 + 6/12, "feet"),
  35435. weight: math.unit(940, "lb"),
  35436. name: "Front",
  35437. image: {
  35438. source: "./media/characters/byliss/front.svg",
  35439. extra: 1327/1290,
  35440. bottom: 82/1409
  35441. }
  35442. },
  35443. back: {
  35444. height: math.unit(9 + 6/12, "feet"),
  35445. weight: math.unit(940, "lb"),
  35446. name: "Back",
  35447. image: {
  35448. source: "./media/characters/byliss/back.svg",
  35449. extra: 1376/1349,
  35450. bottom: 9/1385
  35451. }
  35452. },
  35453. frontNsfw: {
  35454. height: math.unit(9 + 6/12, "feet"),
  35455. weight: math.unit(940, "lb"),
  35456. name: "Front (NSFW)",
  35457. image: {
  35458. source: "./media/characters/byliss/front-nsfw.svg",
  35459. extra: 1327/1290,
  35460. bottom: 82/1409
  35461. }
  35462. },
  35463. backNsfw: {
  35464. height: math.unit(9 + 6/12, "feet"),
  35465. weight: math.unit(940, "lb"),
  35466. name: "Back (NSFW)",
  35467. image: {
  35468. source: "./media/characters/byliss/back-nsfw.svg",
  35469. extra: 1376/1349,
  35470. bottom: 9/1385
  35471. }
  35472. },
  35473. },
  35474. [
  35475. {
  35476. name: "Normal",
  35477. height: math.unit(9 + 6/12, "feet"),
  35478. default: true
  35479. },
  35480. ]
  35481. ))
  35482. characterMakers.push(() => makeCharacter(
  35483. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35484. {
  35485. front: {
  35486. height: math.unit(5 + 2/12, "feet"),
  35487. weight: math.unit(200, "lb"),
  35488. name: "Front",
  35489. image: {
  35490. source: "./media/characters/noraly/front.svg",
  35491. extra: 4985/4773,
  35492. bottom: 150/5135
  35493. }
  35494. },
  35495. full: {
  35496. height: math.unit(5 + 2/12, "feet"),
  35497. weight: math.unit(164, "lb"),
  35498. name: "Full",
  35499. image: {
  35500. source: "./media/characters/noraly/full.svg",
  35501. extra: 1114/1059,
  35502. bottom: 35/1149
  35503. }
  35504. },
  35505. fuller: {
  35506. height: math.unit(5 + 2/12, "feet"),
  35507. weight: math.unit(230, "lb"),
  35508. name: "Fuller",
  35509. image: {
  35510. source: "./media/characters/noraly/fuller.svg",
  35511. extra: 1114/1059,
  35512. bottom: 35/1149
  35513. }
  35514. },
  35515. fullest: {
  35516. height: math.unit(5 + 2/12, "feet"),
  35517. weight: math.unit(300, "lb"),
  35518. name: "Fullest",
  35519. image: {
  35520. source: "./media/characters/noraly/fullest.svg",
  35521. extra: 1114/1059,
  35522. bottom: 35/1149
  35523. }
  35524. },
  35525. },
  35526. [
  35527. {
  35528. name: "Normal",
  35529. height: math.unit(5 + 2/12, "feet"),
  35530. default: true
  35531. },
  35532. ]
  35533. ))
  35534. characterMakers.push(() => makeCharacter(
  35535. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35536. {
  35537. front: {
  35538. height: math.unit(5 + 2/12, "feet"),
  35539. weight: math.unit(210, "lb"),
  35540. name: "Front",
  35541. image: {
  35542. source: "./media/characters/pera/front.svg",
  35543. extra: 1560/1531,
  35544. bottom: 165/1725
  35545. }
  35546. },
  35547. back: {
  35548. height: math.unit(5 + 2/12, "feet"),
  35549. weight: math.unit(210, "lb"),
  35550. name: "Back",
  35551. image: {
  35552. source: "./media/characters/pera/back.svg",
  35553. extra: 1523/1493,
  35554. bottom: 152/1675
  35555. }
  35556. },
  35557. dick: {
  35558. height: math.unit(2.4, "feet"),
  35559. name: "Dick",
  35560. image: {
  35561. source: "./media/characters/pera/dick.svg"
  35562. }
  35563. },
  35564. },
  35565. [
  35566. {
  35567. name: "Normal",
  35568. height: math.unit(5 + 2/12, "feet"),
  35569. default: true
  35570. },
  35571. ]
  35572. ))
  35573. characterMakers.push(() => makeCharacter(
  35574. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35575. {
  35576. front: {
  35577. height: math.unit(12, "feet"),
  35578. weight: math.unit(3200, "lb"),
  35579. name: "Front",
  35580. image: {
  35581. source: "./media/characters/julian/front.svg",
  35582. extra: 2962/2701,
  35583. bottom: 184/3146
  35584. }
  35585. },
  35586. maw: {
  35587. height: math.unit(5.35, "feet"),
  35588. name: "Maw",
  35589. image: {
  35590. source: "./media/characters/julian/maw.svg"
  35591. }
  35592. },
  35593. paw: {
  35594. height: math.unit(3.07, "feet"),
  35595. name: "Paw",
  35596. image: {
  35597. source: "./media/characters/julian/paw.svg"
  35598. }
  35599. },
  35600. },
  35601. [
  35602. {
  35603. name: "Default",
  35604. height: math.unit(12, "feet"),
  35605. default: true
  35606. },
  35607. {
  35608. name: "Big",
  35609. height: math.unit(50, "feet")
  35610. },
  35611. {
  35612. name: "Really Big",
  35613. height: math.unit(1, "mile")
  35614. },
  35615. {
  35616. name: "Extremely Big",
  35617. height: math.unit(100, "miles")
  35618. },
  35619. {
  35620. name: "Planet Hugger",
  35621. height: math.unit(200, "megameters")
  35622. },
  35623. {
  35624. name: "Unreasonably Big",
  35625. height: math.unit(1e300, "meters")
  35626. },
  35627. ]
  35628. ))
  35629. characterMakers.push(() => makeCharacter(
  35630. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35631. {
  35632. solgooleo: {
  35633. height: math.unit(4, "meters"),
  35634. weight: math.unit(6000*1.5, "kg"),
  35635. volume: math.unit(6000, "liters"),
  35636. name: "Solgooleo",
  35637. image: {
  35638. source: "./media/characters/pi/solgooleo.svg",
  35639. extra: 388/331,
  35640. bottom: 29/417
  35641. }
  35642. },
  35643. },
  35644. [
  35645. {
  35646. name: "Normal",
  35647. height: math.unit(4, "meters"),
  35648. default: true
  35649. },
  35650. ]
  35651. ))
  35652. characterMakers.push(() => makeCharacter(
  35653. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35654. {
  35655. front: {
  35656. height: math.unit(8, "feet"),
  35657. weight: math.unit(4, "tons"),
  35658. name: "Front",
  35659. image: {
  35660. source: "./media/characters/shaun/front.svg",
  35661. extra: 503/495,
  35662. bottom: 20/523
  35663. }
  35664. },
  35665. back: {
  35666. height: math.unit(8, "feet"),
  35667. weight: math.unit(4, "tons"),
  35668. name: "Back",
  35669. image: {
  35670. source: "./media/characters/shaun/back.svg",
  35671. extra: 487/480,
  35672. bottom: 20/507
  35673. }
  35674. },
  35675. },
  35676. [
  35677. {
  35678. name: "Lorg",
  35679. height: math.unit(8, "feet"),
  35680. default: true
  35681. },
  35682. ]
  35683. ))
  35684. characterMakers.push(() => makeCharacter(
  35685. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35686. {
  35687. frontAnthro: {
  35688. height: math.unit(7, "feet"),
  35689. name: "Front",
  35690. image: {
  35691. source: "./media/characters/sini/front-anthro.svg",
  35692. extra: 726/678,
  35693. bottom: 35/761
  35694. },
  35695. form: "anthro",
  35696. default: true
  35697. },
  35698. backAnthro: {
  35699. height: math.unit(7, "feet"),
  35700. name: "Back",
  35701. image: {
  35702. source: "./media/characters/sini/back-anthro.svg",
  35703. extra: 743/701,
  35704. bottom: 12/755
  35705. },
  35706. form: "anthro",
  35707. },
  35708. frontAnthroNsfw: {
  35709. height: math.unit(7, "feet"),
  35710. name: "Front (NSFW)",
  35711. image: {
  35712. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35713. extra: 726/678,
  35714. bottom: 35/761
  35715. },
  35716. form: "anthro"
  35717. },
  35718. backAnthroNsfw: {
  35719. height: math.unit(7, "feet"),
  35720. name: "Back (NSFW)",
  35721. image: {
  35722. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35723. extra: 743/701,
  35724. bottom: 12/755
  35725. },
  35726. form: "anthro",
  35727. },
  35728. mawAnthro: {
  35729. height: math.unit(2.14, "feet"),
  35730. name: "Maw",
  35731. image: {
  35732. source: "./media/characters/sini/maw-anthro.svg"
  35733. },
  35734. form: "anthro"
  35735. },
  35736. dick: {
  35737. height: math.unit(1.45, "feet"),
  35738. name: "Dick",
  35739. image: {
  35740. source: "./media/characters/sini/dick-anthro.svg"
  35741. },
  35742. form: "anthro"
  35743. },
  35744. feral: {
  35745. height: math.unit(16, "feet"),
  35746. name: "Feral",
  35747. image: {
  35748. source: "./media/characters/sini/feral.svg",
  35749. extra: 814/605,
  35750. bottom: 11/825
  35751. },
  35752. form: "feral",
  35753. default: true
  35754. },
  35755. feralNsfw: {
  35756. height: math.unit(16, "feet"),
  35757. name: "Feral (NSFW)",
  35758. image: {
  35759. source: "./media/characters/sini/feral-nsfw.svg",
  35760. extra: 814/605,
  35761. bottom: 11/825
  35762. },
  35763. form: "feral"
  35764. },
  35765. mawFeral: {
  35766. height: math.unit(5.66, "feet"),
  35767. name: "Maw",
  35768. image: {
  35769. source: "./media/characters/sini/maw-feral.svg"
  35770. },
  35771. form: "feral",
  35772. },
  35773. pawFeral: {
  35774. height: math.unit(5.17, "feet"),
  35775. name: "Paw",
  35776. image: {
  35777. source: "./media/characters/sini/paw-feral.svg"
  35778. },
  35779. form: "feral",
  35780. },
  35781. rumpFeral: {
  35782. height: math.unit(13.11, "feet"),
  35783. name: "Rump",
  35784. image: {
  35785. source: "./media/characters/sini/rump-feral.svg"
  35786. },
  35787. form: "feral",
  35788. },
  35789. dickFeral: {
  35790. height: math.unit(1, "feet"),
  35791. name: "Dick",
  35792. image: {
  35793. source: "./media/characters/sini/dick-feral.svg"
  35794. },
  35795. form: "feral",
  35796. },
  35797. eyeFeral: {
  35798. height: math.unit(1.23, "feet"),
  35799. name: "Eye",
  35800. image: {
  35801. source: "./media/characters/sini/eye-feral.svg"
  35802. },
  35803. form: "feral",
  35804. },
  35805. },
  35806. [
  35807. {
  35808. name: "Normal",
  35809. height: math.unit(7, "feet"),
  35810. default: true,
  35811. form: "anthro"
  35812. },
  35813. {
  35814. name: "Normal",
  35815. height: math.unit(16, "feet"),
  35816. default: true,
  35817. form: "feral"
  35818. },
  35819. ],
  35820. {
  35821. "anthro": {
  35822. name: "Anthro",
  35823. default: true
  35824. },
  35825. "feral": {
  35826. name: "Feral",
  35827. }
  35828. }
  35829. ))
  35830. characterMakers.push(() => makeCharacter(
  35831. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35832. {
  35833. side: {
  35834. height: math.unit(47.2, "meters"),
  35835. weight: math.unit(10000, "tons"),
  35836. name: "Side",
  35837. image: {
  35838. source: "./media/characters/raylldo/side.svg",
  35839. extra: 2363/642,
  35840. bottom: 221/2584
  35841. }
  35842. },
  35843. top: {
  35844. height: math.unit(240, "meters"),
  35845. weight: math.unit(10000, "tons"),
  35846. name: "Top",
  35847. image: {
  35848. source: "./media/characters/raylldo/top.svg"
  35849. }
  35850. },
  35851. bottom: {
  35852. height: math.unit(240, "meters"),
  35853. weight: math.unit(10000, "tons"),
  35854. name: "Bottom",
  35855. image: {
  35856. source: "./media/characters/raylldo/bottom.svg"
  35857. }
  35858. },
  35859. head: {
  35860. height: math.unit(38.6, "meters"),
  35861. name: "Head",
  35862. image: {
  35863. source: "./media/characters/raylldo/head.svg",
  35864. extra: 1335/1112,
  35865. bottom: 0/1335
  35866. }
  35867. },
  35868. maw: {
  35869. height: math.unit(16.37, "meters"),
  35870. name: "Maw",
  35871. image: {
  35872. source: "./media/characters/raylldo/maw.svg",
  35873. extra: 883/660,
  35874. bottom: 0/883
  35875. },
  35876. extraAttributes: {
  35877. preyCapacity: {
  35878. name: "Capacity",
  35879. power: 3,
  35880. type: "volume",
  35881. base: math.unit(1000, "people")
  35882. },
  35883. tongueSize: {
  35884. name: "Tongue Size",
  35885. power: 2,
  35886. type: "area",
  35887. base: math.unit(21, "m^2")
  35888. }
  35889. }
  35890. },
  35891. forepaw: {
  35892. height: math.unit(18, "meters"),
  35893. name: "Forepaw",
  35894. image: {
  35895. source: "./media/characters/raylldo/forepaw.svg"
  35896. }
  35897. },
  35898. hindpaw: {
  35899. height: math.unit(23, "meters"),
  35900. name: "Hindpaw",
  35901. image: {
  35902. source: "./media/characters/raylldo/hindpaw.svg"
  35903. }
  35904. },
  35905. genitals: {
  35906. height: math.unit(42, "meters"),
  35907. name: "Genitals",
  35908. image: {
  35909. source: "./media/characters/raylldo/genitals.svg"
  35910. }
  35911. },
  35912. },
  35913. [
  35914. {
  35915. name: "Normal",
  35916. height: math.unit(47.2, "meters"),
  35917. default: true
  35918. },
  35919. ]
  35920. ))
  35921. characterMakers.push(() => makeCharacter(
  35922. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35923. {
  35924. anthroFront: {
  35925. height: math.unit(9, "feet"),
  35926. weight: math.unit(600, "lb"),
  35927. name: "Anthro (Front)",
  35928. image: {
  35929. source: "./media/characters/glint/anthro-front.svg",
  35930. extra: 1097/1018,
  35931. bottom: 28/1125
  35932. }
  35933. },
  35934. anthroBack: {
  35935. height: math.unit(9, "feet"),
  35936. weight: math.unit(600, "lb"),
  35937. name: "Anthro (Back)",
  35938. image: {
  35939. source: "./media/characters/glint/anthro-back.svg",
  35940. extra: 1154/997,
  35941. bottom: 36/1190
  35942. }
  35943. },
  35944. feral: {
  35945. height: math.unit(11, "feet"),
  35946. weight: math.unit(50000, "lb"),
  35947. name: "Feral",
  35948. image: {
  35949. source: "./media/characters/glint/feral.svg",
  35950. extra: 3035/1585,
  35951. bottom: 1169/4204
  35952. }
  35953. },
  35954. dickAnthro: {
  35955. height: math.unit(0.7, "meters"),
  35956. name: "Dick (Anthro)",
  35957. image: {
  35958. source: "./media/characters/glint/dick-anthro.svg"
  35959. }
  35960. },
  35961. dickFeral: {
  35962. height: math.unit(2.65, "meters"),
  35963. name: "Dick (Feral)",
  35964. image: {
  35965. source: "./media/characters/glint/dick-feral.svg"
  35966. }
  35967. },
  35968. slitHidden: {
  35969. height: math.unit(5.85, "meters"),
  35970. name: "Slit (Hidden)",
  35971. image: {
  35972. source: "./media/characters/glint/slit-hidden.svg"
  35973. }
  35974. },
  35975. slitErect: {
  35976. height: math.unit(5.85, "meters"),
  35977. name: "Slit (Erect)",
  35978. image: {
  35979. source: "./media/characters/glint/slit-erect.svg"
  35980. }
  35981. },
  35982. mawAnthro: {
  35983. height: math.unit(0.63, "meters"),
  35984. name: "Maw (Anthro)",
  35985. image: {
  35986. source: "./media/characters/glint/maw.svg"
  35987. }
  35988. },
  35989. mawFeral: {
  35990. height: math.unit(2.89, "meters"),
  35991. name: "Maw (Feral)",
  35992. image: {
  35993. source: "./media/characters/glint/maw.svg"
  35994. }
  35995. },
  35996. },
  35997. [
  35998. {
  35999. name: "Normal",
  36000. height: math.unit(9, "feet"),
  36001. default: true
  36002. },
  36003. ]
  36004. ))
  36005. characterMakers.push(() => makeCharacter(
  36006. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  36007. {
  36008. side: {
  36009. height: math.unit(15, "feet"),
  36010. weight: math.unit(5000, "kg"),
  36011. name: "Side",
  36012. image: {
  36013. source: "./media/characters/kairne/side.svg",
  36014. extra: 979/811,
  36015. bottom: 13/992
  36016. }
  36017. },
  36018. front: {
  36019. height: math.unit(15, "feet"),
  36020. weight: math.unit(5000, "kg"),
  36021. name: "Front",
  36022. image: {
  36023. source: "./media/characters/kairne/front.svg",
  36024. extra: 908/814,
  36025. bottom: 26/934
  36026. }
  36027. },
  36028. sideNsfw: {
  36029. height: math.unit(15, "feet"),
  36030. weight: math.unit(5000, "kg"),
  36031. name: "Side (NSFW)",
  36032. image: {
  36033. source: "./media/characters/kairne/side-nsfw.svg",
  36034. extra: 979/811,
  36035. bottom: 13/992
  36036. }
  36037. },
  36038. frontNsfw: {
  36039. height: math.unit(15, "feet"),
  36040. weight: math.unit(5000, "kg"),
  36041. name: "Front (NSFW)",
  36042. image: {
  36043. source: "./media/characters/kairne/front-nsfw.svg",
  36044. extra: 908/814,
  36045. bottom: 26/934
  36046. }
  36047. },
  36048. dickCaged: {
  36049. height: math.unit(0.65, "meters"),
  36050. name: "Dick-caged",
  36051. image: {
  36052. source: "./media/characters/kairne/dick-caged.svg"
  36053. }
  36054. },
  36055. dick: {
  36056. height: math.unit(0.79, "meters"),
  36057. name: "Dick",
  36058. image: {
  36059. source: "./media/characters/kairne/dick.svg"
  36060. }
  36061. },
  36062. genitals: {
  36063. height: math.unit(1.29, "meters"),
  36064. name: "Genitals",
  36065. image: {
  36066. source: "./media/characters/kairne/genitals.svg"
  36067. }
  36068. },
  36069. maw: {
  36070. height: math.unit(1.73, "meters"),
  36071. name: "Maw",
  36072. image: {
  36073. source: "./media/characters/kairne/maw.svg"
  36074. }
  36075. },
  36076. },
  36077. [
  36078. {
  36079. name: "Normal",
  36080. height: math.unit(15, "feet"),
  36081. default: true
  36082. },
  36083. ]
  36084. ))
  36085. characterMakers.push(() => makeCharacter(
  36086. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  36087. {
  36088. front: {
  36089. height: math.unit(5 + 8/12, "feet"),
  36090. weight: math.unit(139, "lb"),
  36091. name: "Front",
  36092. image: {
  36093. source: "./media/characters/biscuit-jackal/front.svg",
  36094. extra: 2106/1961,
  36095. bottom: 58/2164
  36096. }
  36097. },
  36098. back: {
  36099. height: math.unit(5 + 8/12, "feet"),
  36100. weight: math.unit(139, "lb"),
  36101. name: "Back",
  36102. image: {
  36103. source: "./media/characters/biscuit-jackal/back.svg",
  36104. extra: 2132/1976,
  36105. bottom: 57/2189
  36106. }
  36107. },
  36108. werejackal: {
  36109. height: math.unit(6 + 3/12, "feet"),
  36110. weight: math.unit(188, "lb"),
  36111. name: "Werejackal",
  36112. image: {
  36113. source: "./media/characters/biscuit-jackal/werejackal.svg",
  36114. extra: 2373/2178,
  36115. bottom: 53/2426
  36116. }
  36117. },
  36118. },
  36119. [
  36120. {
  36121. name: "Normal",
  36122. height: math.unit(5 + 8/12, "feet"),
  36123. default: true
  36124. },
  36125. ]
  36126. ))
  36127. characterMakers.push(() => makeCharacter(
  36128. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  36129. {
  36130. front: {
  36131. height: math.unit(140, "cm"),
  36132. weight: math.unit(45, "kg"),
  36133. name: "Front",
  36134. image: {
  36135. source: "./media/characters/tayra-white/front.svg",
  36136. extra: 2229/2192,
  36137. bottom: 75/2304
  36138. }
  36139. },
  36140. },
  36141. [
  36142. {
  36143. name: "Normal",
  36144. height: math.unit(140, "cm"),
  36145. default: true
  36146. },
  36147. ]
  36148. ))
  36149. characterMakers.push(() => makeCharacter(
  36150. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  36151. {
  36152. front: {
  36153. height: math.unit(4 + 5/12, "feet"),
  36154. name: "Front",
  36155. image: {
  36156. source: "./media/characters/scoop/front.svg",
  36157. extra: 1257/1136,
  36158. bottom: 69/1326
  36159. }
  36160. },
  36161. back: {
  36162. height: math.unit(4 + 5/12, "feet"),
  36163. name: "Back",
  36164. image: {
  36165. source: "./media/characters/scoop/back.svg",
  36166. extra: 1321/1152,
  36167. bottom: 32/1353
  36168. }
  36169. },
  36170. maw: {
  36171. height: math.unit(0.68, "feet"),
  36172. name: "Maw",
  36173. image: {
  36174. source: "./media/characters/scoop/maw.svg"
  36175. }
  36176. },
  36177. },
  36178. [
  36179. {
  36180. name: "Really Small",
  36181. height: math.unit(1, "mm")
  36182. },
  36183. {
  36184. name: "Micro",
  36185. height: math.unit(1, "inch")
  36186. },
  36187. {
  36188. name: "Normal",
  36189. height: math.unit(4 + 5/12, "feet"),
  36190. default: true
  36191. },
  36192. {
  36193. name: "Macro",
  36194. height: math.unit(200, "feet")
  36195. },
  36196. {
  36197. name: "Megamacro",
  36198. height: math.unit(3240, "feet")
  36199. },
  36200. {
  36201. name: "Teramacro",
  36202. height: math.unit(2500, "miles")
  36203. },
  36204. ]
  36205. ))
  36206. characterMakers.push(() => makeCharacter(
  36207. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  36208. {
  36209. front: {
  36210. height: math.unit(15 + 7/12, "feet"),
  36211. weight: math.unit(1150, "tons"),
  36212. name: "Front",
  36213. image: {
  36214. source: "./media/characters/saphinara/front.svg",
  36215. extra: 1837/1643,
  36216. bottom: 84/1921
  36217. },
  36218. form: "normal",
  36219. default: true
  36220. },
  36221. side: {
  36222. height: math.unit(15 + 7/12, "feet"),
  36223. weight: math.unit(1150, "tons"),
  36224. name: "Side",
  36225. image: {
  36226. source: "./media/characters/saphinara/side.svg",
  36227. extra: 605/547,
  36228. bottom: 6/611
  36229. },
  36230. form: "normal"
  36231. },
  36232. back: {
  36233. height: math.unit(15 + 7/12, "feet"),
  36234. weight: math.unit(1150, "tons"),
  36235. name: "Back",
  36236. image: {
  36237. source: "./media/characters/saphinara/back.svg",
  36238. extra: 591/531,
  36239. bottom: 13/604
  36240. },
  36241. form: "normal"
  36242. },
  36243. frontTail: {
  36244. height: math.unit(15 + 7/12, "feet"),
  36245. weight: math.unit(1150, "tons"),
  36246. name: "Front (Full Tail)",
  36247. image: {
  36248. source: "./media/characters/saphinara/front-tail.svg",
  36249. extra: 2256/1630,
  36250. bottom: 261/2517
  36251. },
  36252. form: "normal"
  36253. },
  36254. insides: {
  36255. height: math.unit(11.92, "feet"),
  36256. name: "Insides",
  36257. image: {
  36258. source: "./media/characters/saphinara/insides.svg"
  36259. },
  36260. form: "normal"
  36261. },
  36262. head: {
  36263. height: math.unit(4.17, "feet"),
  36264. name: "Head",
  36265. image: {
  36266. source: "./media/characters/saphinara/head.svg"
  36267. },
  36268. form: "normal"
  36269. },
  36270. tongue: {
  36271. height: math.unit(4.60, "feet"),
  36272. name: "Tongue",
  36273. image: {
  36274. source: "./media/characters/saphinara/tongue.svg"
  36275. },
  36276. form: "normal"
  36277. },
  36278. headEnraged: {
  36279. height: math.unit(5.55, "feet"),
  36280. name: "Head (Enraged)",
  36281. image: {
  36282. source: "./media/characters/saphinara/head-enraged.svg"
  36283. },
  36284. form: "normal"
  36285. },
  36286. wings: {
  36287. height: math.unit(11.95, "feet"),
  36288. name: "Wings",
  36289. image: {
  36290. source: "./media/characters/saphinara/wings.svg"
  36291. },
  36292. form: "normal"
  36293. },
  36294. feathers: {
  36295. height: math.unit(8.92, "feet"),
  36296. name: "Feathers",
  36297. image: {
  36298. source: "./media/characters/saphinara/feathers.svg"
  36299. },
  36300. form: "normal"
  36301. },
  36302. shackles: {
  36303. height: math.unit(2, "feet"),
  36304. name: "Shackles",
  36305. image: {
  36306. source: "./media/characters/saphinara/shackles.svg"
  36307. },
  36308. form: "normal"
  36309. },
  36310. eyes: {
  36311. height: math.unit(1.331, "feet"),
  36312. name: "Eyes",
  36313. image: {
  36314. source: "./media/characters/saphinara/eyes.svg"
  36315. },
  36316. form: "normal"
  36317. },
  36318. eyesEnraged: {
  36319. height: math.unit(1.331, "feet"),
  36320. name: "Eyes (Enraged)",
  36321. image: {
  36322. source: "./media/characters/saphinara/eyes-enraged.svg"
  36323. },
  36324. form: "normal"
  36325. },
  36326. trueFormSide: {
  36327. height: math.unit(200, "feet"),
  36328. weight: math.unit(1e7, "tons"),
  36329. name: "Side",
  36330. image: {
  36331. source: "./media/characters/saphinara/true-form-side.svg",
  36332. extra: 1399/770,
  36333. bottom: 97/1496
  36334. },
  36335. form: "true-form",
  36336. default: true
  36337. },
  36338. trueFormMaw: {
  36339. height: math.unit(71.5, "feet"),
  36340. name: "Maw",
  36341. image: {
  36342. source: "./media/characters/saphinara/true-form-maw.svg",
  36343. extra: 2302/1453,
  36344. bottom: 0/2302
  36345. },
  36346. form: "true-form"
  36347. },
  36348. meowberusSide: {
  36349. height: math.unit(75, "feet"),
  36350. weight: math.unit(180000, "kg"),
  36351. preyCapacity: math.unit(50000, "people"),
  36352. name: "Side",
  36353. image: {
  36354. source: "./media/characters/saphinara/meowberus-side.svg",
  36355. extra: 1400/711,
  36356. bottom: 126/1526
  36357. },
  36358. form: "meowberus",
  36359. extraAttributes: {
  36360. "pawArea": {
  36361. name: "Paw Size",
  36362. power: 2,
  36363. type: "area",
  36364. base: math.unit(35, "m^2")
  36365. }
  36366. }
  36367. },
  36368. },
  36369. [
  36370. {
  36371. name: "Normal",
  36372. height: math.unit(15 + 7/12, "feet"),
  36373. default: true,
  36374. form: "normal"
  36375. },
  36376. {
  36377. name: "Angry",
  36378. height: math.unit(30 + 6/12, "feet"),
  36379. form: "normal"
  36380. },
  36381. {
  36382. name: "Enraged",
  36383. height: math.unit(102 + 1/12, "feet"),
  36384. form: "normal"
  36385. },
  36386. {
  36387. name: "True",
  36388. height: math.unit(200, "feet"),
  36389. default: true,
  36390. form: "true-form"
  36391. },
  36392. {
  36393. name: "Normal",
  36394. height: math.unit(75, "feet"),
  36395. default: true,
  36396. form: "meowberus"
  36397. },
  36398. ],
  36399. {
  36400. "normal": {
  36401. name: "Normal",
  36402. default: true
  36403. },
  36404. "true-form": {
  36405. name: "True Form"
  36406. },
  36407. "meowberus": {
  36408. name: "Meowberus",
  36409. },
  36410. }
  36411. ))
  36412. characterMakers.push(() => makeCharacter(
  36413. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36414. {
  36415. front: {
  36416. height: math.unit(6 + 8/12, "feet"),
  36417. weight: math.unit(300, "lb"),
  36418. name: "Front",
  36419. image: {
  36420. source: "./media/characters/jrain/front.svg",
  36421. extra: 3039/2865,
  36422. bottom: 399/3438
  36423. }
  36424. },
  36425. back: {
  36426. height: math.unit(6 + 8/12, "feet"),
  36427. weight: math.unit(300, "lb"),
  36428. name: "Back",
  36429. image: {
  36430. source: "./media/characters/jrain/back.svg",
  36431. extra: 3089/2938,
  36432. bottom: 172/3261
  36433. }
  36434. },
  36435. head: {
  36436. height: math.unit(2.14, "feet"),
  36437. name: "Head",
  36438. image: {
  36439. source: "./media/characters/jrain/head.svg"
  36440. }
  36441. },
  36442. maw: {
  36443. height: math.unit(1.77, "feet"),
  36444. name: "Maw",
  36445. image: {
  36446. source: "./media/characters/jrain/maw.svg"
  36447. }
  36448. },
  36449. leftHand: {
  36450. height: math.unit(1.1, "feet"),
  36451. name: "Left Hand",
  36452. image: {
  36453. source: "./media/characters/jrain/left-hand.svg"
  36454. }
  36455. },
  36456. rightHand: {
  36457. height: math.unit(1.1, "feet"),
  36458. name: "Right Hand",
  36459. image: {
  36460. source: "./media/characters/jrain/right-hand.svg"
  36461. }
  36462. },
  36463. eye: {
  36464. height: math.unit(0.35, "feet"),
  36465. name: "Eye",
  36466. image: {
  36467. source: "./media/characters/jrain/eye.svg"
  36468. }
  36469. },
  36470. },
  36471. [
  36472. {
  36473. name: "Normal",
  36474. height: math.unit(6 + 8/12, "feet"),
  36475. default: true
  36476. },
  36477. {
  36478. name: "Casually Large",
  36479. height: math.unit(25, "feet")
  36480. },
  36481. {
  36482. name: "Giant",
  36483. height: math.unit(100, "feet")
  36484. },
  36485. {
  36486. name: "Kaiju",
  36487. height: math.unit(300, "feet")
  36488. },
  36489. ]
  36490. ))
  36491. characterMakers.push(() => makeCharacter(
  36492. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36493. {
  36494. dragon: {
  36495. height: math.unit(5, "meters"),
  36496. name: "Dragon",
  36497. image: {
  36498. source: "./media/characters/sabrina/dragon.svg",
  36499. extra: 3670 / 2365,
  36500. bottom: 333 / 4003
  36501. }
  36502. },
  36503. gryphon: {
  36504. height: math.unit(3, "meters"),
  36505. name: "Gryphon",
  36506. image: {
  36507. source: "./media/characters/sabrina/gryphon.svg",
  36508. extra: 1576 / 945,
  36509. bottom: 71 / 1647
  36510. }
  36511. },
  36512. snake: {
  36513. height: math.unit(12, "meters"),
  36514. name: "Snake",
  36515. image: {
  36516. source: "./media/characters/sabrina/snake.svg",
  36517. extra: 1758 / 1320,
  36518. bottom: 186 / 1944
  36519. }
  36520. },
  36521. collar: {
  36522. height: math.unit(1.86, "meters"),
  36523. name: "Collar",
  36524. image: {
  36525. source: "./media/characters/sabrina/collar.svg"
  36526. }
  36527. },
  36528. eye: {
  36529. height: math.unit(0.53, "meters"),
  36530. name: "Eye",
  36531. image: {
  36532. source: "./media/characters/sabrina/eye.svg"
  36533. }
  36534. },
  36535. foot: {
  36536. height: math.unit(1.86, "meters"),
  36537. name: "Foot",
  36538. image: {
  36539. source: "./media/characters/sabrina/foot.svg"
  36540. }
  36541. },
  36542. hand: {
  36543. height: math.unit(1.32, "meters"),
  36544. name: "Hand",
  36545. image: {
  36546. source: "./media/characters/sabrina/hand.svg"
  36547. }
  36548. },
  36549. head: {
  36550. height: math.unit(2.44, "meters"),
  36551. name: "Head",
  36552. image: {
  36553. source: "./media/characters/sabrina/head.svg"
  36554. }
  36555. },
  36556. headAngry: {
  36557. height: math.unit(2.44, "meters"),
  36558. name: "Head (Angry))",
  36559. image: {
  36560. source: "./media/characters/sabrina/head-angry.svg"
  36561. }
  36562. },
  36563. maw: {
  36564. height: math.unit(1.65, "meters"),
  36565. name: "Maw",
  36566. image: {
  36567. source: "./media/characters/sabrina/maw.svg"
  36568. }
  36569. },
  36570. spikes: {
  36571. height: math.unit(1.69, "meters"),
  36572. name: "Spikes",
  36573. image: {
  36574. source: "./media/characters/sabrina/spikes.svg"
  36575. }
  36576. },
  36577. stomach: {
  36578. height: math.unit(1.15, "meters"),
  36579. name: "Stomach",
  36580. image: {
  36581. source: "./media/characters/sabrina/stomach.svg"
  36582. }
  36583. },
  36584. tongue: {
  36585. height: math.unit(1.27, "meters"),
  36586. name: "Tongue",
  36587. image: {
  36588. source: "./media/characters/sabrina/tongue.svg"
  36589. }
  36590. },
  36591. wingDorsal: {
  36592. height: math.unit(4.85, "meters"),
  36593. name: "Wing (Dorsal)",
  36594. image: {
  36595. source: "./media/characters/sabrina/wing-dorsal.svg"
  36596. }
  36597. },
  36598. wingVentral: {
  36599. height: math.unit(4.85, "meters"),
  36600. name: "Wing (Ventral)",
  36601. image: {
  36602. source: "./media/characters/sabrina/wing-ventral.svg"
  36603. }
  36604. },
  36605. },
  36606. [
  36607. {
  36608. name: "Normal",
  36609. height: math.unit(5, "meters"),
  36610. default: true
  36611. },
  36612. ]
  36613. ))
  36614. characterMakers.push(() => makeCharacter(
  36615. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36616. {
  36617. frontMaid: {
  36618. height: math.unit(5 + 5/12, "feet"),
  36619. weight: math.unit(130, "lb"),
  36620. name: "Front (Maid)",
  36621. image: {
  36622. source: "./media/characters/midnight-tales/front-maid.svg",
  36623. extra: 489/454,
  36624. bottom: 61/550
  36625. }
  36626. },
  36627. frontFormal: {
  36628. height: math.unit(5 + 5/12, "feet"),
  36629. weight: math.unit(130, "lb"),
  36630. name: "Front (Formal)",
  36631. image: {
  36632. source: "./media/characters/midnight-tales/front-formal.svg",
  36633. extra: 489/454,
  36634. bottom: 61/550
  36635. }
  36636. },
  36637. back: {
  36638. height: math.unit(5 + 5/12, "feet"),
  36639. weight: math.unit(130, "lb"),
  36640. name: "Back",
  36641. image: {
  36642. source: "./media/characters/midnight-tales/back.svg",
  36643. extra: 498/456,
  36644. bottom: 33/531
  36645. }
  36646. },
  36647. frontBeast: {
  36648. height: math.unit(40, "feet"),
  36649. weight: math.unit(64000, "lb"),
  36650. name: "Front (Beast)",
  36651. image: {
  36652. source: "./media/characters/midnight-tales/front-beast.svg",
  36653. extra: 927/860,
  36654. bottom: 53/980
  36655. }
  36656. },
  36657. backBeast: {
  36658. height: math.unit(40, "feet"),
  36659. weight: math.unit(64000, "lb"),
  36660. name: "Back (Beast)",
  36661. image: {
  36662. source: "./media/characters/midnight-tales/back-beast.svg",
  36663. extra: 929/855,
  36664. bottom: 16/945
  36665. }
  36666. },
  36667. footBeast: {
  36668. height: math.unit(6.7, "feet"),
  36669. name: "Foot (Beast)",
  36670. image: {
  36671. source: "./media/characters/midnight-tales/foot-beast.svg"
  36672. }
  36673. },
  36674. headBeast: {
  36675. height: math.unit(8, "feet"),
  36676. name: "Head (Beast)",
  36677. image: {
  36678. source: "./media/characters/midnight-tales/head-beast.svg"
  36679. }
  36680. },
  36681. },
  36682. [
  36683. {
  36684. name: "Normal",
  36685. height: math.unit(5 + 5 / 12, "feet"),
  36686. default: true
  36687. },
  36688. {
  36689. name: "Macro",
  36690. height: math.unit(25, "feet")
  36691. },
  36692. ]
  36693. ))
  36694. characterMakers.push(() => makeCharacter(
  36695. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36696. {
  36697. front: {
  36698. height: math.unit(5 + 10/12, "feet"),
  36699. name: "Front",
  36700. image: {
  36701. source: "./media/characters/argon/front.svg",
  36702. extra: 2009/1935,
  36703. bottom: 118/2127
  36704. }
  36705. },
  36706. back: {
  36707. height: math.unit(5 + 10/12, "feet"),
  36708. name: "Back",
  36709. image: {
  36710. source: "./media/characters/argon/back.svg",
  36711. extra: 2047/1992,
  36712. bottom: 20/2067
  36713. }
  36714. },
  36715. frontDressed: {
  36716. height: math.unit(5 + 10/12, "feet"),
  36717. name: "Front (Dressed)",
  36718. image: {
  36719. source: "./media/characters/argon/front-dressed.svg",
  36720. extra: 2009/1935,
  36721. bottom: 118/2127
  36722. }
  36723. },
  36724. },
  36725. [
  36726. {
  36727. name: "Normal",
  36728. height: math.unit(5 + 10/12, "feet"),
  36729. default: true
  36730. },
  36731. ]
  36732. ))
  36733. characterMakers.push(() => makeCharacter(
  36734. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36735. {
  36736. front: {
  36737. height: math.unit(8 + 6/12, "feet"),
  36738. weight: math.unit(1150, "lb"),
  36739. name: "Front",
  36740. image: {
  36741. source: "./media/characters/kichi/front.svg",
  36742. extra: 1267/1164,
  36743. bottom: 61/1328
  36744. }
  36745. },
  36746. back: {
  36747. height: math.unit(8 + 6/12, "feet"),
  36748. weight: math.unit(1150, "lb"),
  36749. name: "Back",
  36750. image: {
  36751. source: "./media/characters/kichi/back.svg",
  36752. extra: 1273/1166,
  36753. bottom: 33/1306
  36754. }
  36755. },
  36756. },
  36757. [
  36758. {
  36759. name: "Normal",
  36760. height: math.unit(8 + 6/12, "feet"),
  36761. default: true
  36762. },
  36763. ]
  36764. ))
  36765. characterMakers.push(() => makeCharacter(
  36766. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36767. {
  36768. front: {
  36769. height: math.unit(6, "feet"),
  36770. weight: math.unit(210, "lb"),
  36771. name: "Front",
  36772. image: {
  36773. source: "./media/characters/manetel-greyscale/front.svg",
  36774. extra: 350/312,
  36775. bottom: 8/358
  36776. }
  36777. },
  36778. },
  36779. [
  36780. {
  36781. name: "Micro",
  36782. height: math.unit(2, "inches")
  36783. },
  36784. {
  36785. name: "Normal",
  36786. height: math.unit(6, "feet"),
  36787. default: true
  36788. },
  36789. {
  36790. name: "Minimacro",
  36791. height: math.unit(17, "feet")
  36792. },
  36793. {
  36794. name: "Macro",
  36795. height: math.unit(117, "feet")
  36796. },
  36797. ]
  36798. ))
  36799. characterMakers.push(() => makeCharacter(
  36800. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36801. {
  36802. side: {
  36803. height: math.unit(5 + 1/12, "feet"),
  36804. weight: math.unit(418, "lb"),
  36805. name: "Side",
  36806. image: {
  36807. source: "./media/characters/softpurr/side.svg",
  36808. extra: 1993/1945,
  36809. bottom: 134/2127
  36810. }
  36811. },
  36812. front: {
  36813. height: math.unit(5 + 1/12, "feet"),
  36814. weight: math.unit(418, "lb"),
  36815. name: "Front",
  36816. image: {
  36817. source: "./media/characters/softpurr/front.svg",
  36818. extra: 1950/1856,
  36819. bottom: 174/2124
  36820. }
  36821. },
  36822. paw: {
  36823. height: math.unit(1, "feet"),
  36824. name: "Paw",
  36825. image: {
  36826. source: "./media/characters/softpurr/paw.svg"
  36827. }
  36828. },
  36829. },
  36830. [
  36831. {
  36832. name: "Normal",
  36833. height: math.unit(5 + 1/12, "feet"),
  36834. default: true
  36835. },
  36836. ]
  36837. ))
  36838. characterMakers.push(() => makeCharacter(
  36839. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36840. {
  36841. front: {
  36842. height: math.unit(260, "meters"),
  36843. name: "Front",
  36844. image: {
  36845. source: "./media/characters/anahita/front.svg",
  36846. extra: 665/635,
  36847. bottom: 89/754
  36848. }
  36849. },
  36850. },
  36851. [
  36852. {
  36853. name: "Macro",
  36854. height: math.unit(260, "meters"),
  36855. default: true
  36856. },
  36857. ]
  36858. ))
  36859. characterMakers.push(() => makeCharacter(
  36860. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36861. {
  36862. front: {
  36863. height: math.unit(4 + 10/12, "feet"),
  36864. weight: math.unit(160, "lb"),
  36865. name: "Front",
  36866. image: {
  36867. source: "./media/characters/chip-mouse/front.svg",
  36868. extra: 3528/3408,
  36869. bottom: 0/3528
  36870. }
  36871. },
  36872. frontNsfw: {
  36873. height: math.unit(4 + 10/12, "feet"),
  36874. weight: math.unit(160, "lb"),
  36875. name: "Front (NSFW)",
  36876. image: {
  36877. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36878. extra: 3528/3408,
  36879. bottom: 0/3528
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Normal",
  36886. height: math.unit(4 + 10/12, "feet"),
  36887. default: true
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36893. {
  36894. side: {
  36895. height: math.unit(10, "feet"),
  36896. weight: math.unit(14000, "lb"),
  36897. name: "Side",
  36898. image: {
  36899. source: "./media/characters/kremm/side.svg",
  36900. extra: 1390/1053,
  36901. bottom: 90/1480
  36902. }
  36903. },
  36904. gut: {
  36905. height: math.unit(5.8, "feet"),
  36906. name: "Gut",
  36907. image: {
  36908. source: "./media/characters/kremm/gut.svg"
  36909. }
  36910. },
  36911. ass: {
  36912. height: math.unit(6.1, "feet"),
  36913. name: "Ass",
  36914. image: {
  36915. source: "./media/characters/kremm/ass.svg"
  36916. }
  36917. },
  36918. jaws: {
  36919. height: math.unit(2.2, "feet"),
  36920. name: "Jaws",
  36921. image: {
  36922. source: "./media/characters/kremm/jaws.svg"
  36923. }
  36924. },
  36925. dick: {
  36926. height: math.unit(4.26, "feet"),
  36927. name: "Dick",
  36928. image: {
  36929. source: "./media/characters/kremm/dick.svg"
  36930. }
  36931. },
  36932. },
  36933. [
  36934. {
  36935. name: "Normal",
  36936. height: math.unit(10, "feet"),
  36937. default: true
  36938. },
  36939. ]
  36940. ))
  36941. characterMakers.push(() => makeCharacter(
  36942. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36943. {
  36944. front: {
  36945. height: math.unit(30, "stories"),
  36946. name: "Front",
  36947. image: {
  36948. source: "./media/characters/kai/front.svg",
  36949. extra: 1892/1718,
  36950. bottom: 162/2054
  36951. }
  36952. },
  36953. },
  36954. [
  36955. {
  36956. name: "Macro",
  36957. height: math.unit(30, "stories"),
  36958. default: true
  36959. },
  36960. ]
  36961. ))
  36962. characterMakers.push(() => makeCharacter(
  36963. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36964. {
  36965. front: {
  36966. height: math.unit(6 + 4/12, "feet"),
  36967. weight: math.unit(145, "lb"),
  36968. name: "Front",
  36969. image: {
  36970. source: "./media/characters/sykes/front.svg",
  36971. extra: 1321 / 1187,
  36972. bottom: 66 / 1387
  36973. }
  36974. },
  36975. back: {
  36976. height: math.unit(6 + 4/12, "feet"),
  36977. weight: math.unit(145, "lb"),
  36978. name: "Back",
  36979. image: {
  36980. source: "./media/characters/sykes/back.svg",
  36981. extra: 1326/1181,
  36982. bottom: 31/1357
  36983. }
  36984. },
  36985. traditionalOutfit: {
  36986. height: math.unit(6 + 4/12, "feet"),
  36987. weight: math.unit(145, "lb"),
  36988. name: "Traditional Outfit",
  36989. image: {
  36990. source: "./media/characters/sykes/traditional-outfit.svg",
  36991. extra: 1321 / 1187,
  36992. bottom: 66 / 1387
  36993. }
  36994. },
  36995. adventureOutfit: {
  36996. height: math.unit(6 + 4/12, "feet"),
  36997. weight: math.unit(145, "lb"),
  36998. name: "Adventure Outfit",
  36999. image: {
  37000. source: "./media/characters/sykes/adventure-outfit.svg",
  37001. extra: 1321 / 1187,
  37002. bottom: 66 / 1387
  37003. }
  37004. },
  37005. handLeft: {
  37006. height: math.unit(0.9, "feet"),
  37007. name: "Hand (Left)",
  37008. image: {
  37009. source: "./media/characters/sykes/hand-left.svg"
  37010. }
  37011. },
  37012. handRight: {
  37013. height: math.unit(0.839, "feet"),
  37014. name: "Hand (Right)",
  37015. image: {
  37016. source: "./media/characters/sykes/hand-right.svg"
  37017. }
  37018. },
  37019. leftFoot: {
  37020. height: math.unit(1.2, "feet"),
  37021. name: "Foot (Left)",
  37022. image: {
  37023. source: "./media/characters/sykes/foot-left.svg"
  37024. }
  37025. },
  37026. rightFoot: {
  37027. height: math.unit(1.2, "feet"),
  37028. name: "Foot (Right)",
  37029. image: {
  37030. source: "./media/characters/sykes/foot-right.svg"
  37031. }
  37032. },
  37033. maw: {
  37034. height: math.unit(1.93, "feet"),
  37035. name: "Maw",
  37036. image: {
  37037. source: "./media/characters/sykes/maw.svg"
  37038. }
  37039. },
  37040. teeth: {
  37041. height: math.unit(0.51, "feet"),
  37042. name: "Teeth",
  37043. image: {
  37044. source: "./media/characters/sykes/teeth.svg"
  37045. }
  37046. },
  37047. tongue: {
  37048. height: math.unit(2.13, "feet"),
  37049. name: "Tongue",
  37050. image: {
  37051. source: "./media/characters/sykes/tongue.svg"
  37052. }
  37053. },
  37054. uvula: {
  37055. height: math.unit(0.16, "feet"),
  37056. name: "Uvula",
  37057. image: {
  37058. source: "./media/characters/sykes/uvula.svg"
  37059. }
  37060. },
  37061. collar: {
  37062. height: math.unit(0.287, "feet"),
  37063. name: "Collar",
  37064. image: {
  37065. source: "./media/characters/sykes/collar.svg"
  37066. }
  37067. },
  37068. tail: {
  37069. height: math.unit(3.8, "feet"),
  37070. name: "Tail",
  37071. image: {
  37072. source: "./media/characters/sykes/tail.svg"
  37073. }
  37074. },
  37075. },
  37076. [
  37077. {
  37078. name: "Shrunken",
  37079. height: math.unit(5, "inches")
  37080. },
  37081. {
  37082. name: "Normal",
  37083. height: math.unit(6 + 4 / 12, "feet"),
  37084. default: true
  37085. },
  37086. {
  37087. name: "Big",
  37088. height: math.unit(15, "feet")
  37089. },
  37090. ]
  37091. ))
  37092. characterMakers.push(() => makeCharacter(
  37093. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  37094. {
  37095. front: {
  37096. height: math.unit(5 + 8/12, "feet"),
  37097. weight: math.unit(190, "lb"),
  37098. name: "Front",
  37099. image: {
  37100. source: "./media/characters/oven-otter/front.svg",
  37101. extra: 1809/1740,
  37102. bottom: 181/1990
  37103. }
  37104. },
  37105. back: {
  37106. height: math.unit(5 + 8/12, "feet"),
  37107. weight: math.unit(190, "lb"),
  37108. name: "Back",
  37109. image: {
  37110. source: "./media/characters/oven-otter/back.svg",
  37111. extra: 1709/1635,
  37112. bottom: 118/1827
  37113. }
  37114. },
  37115. hand: {
  37116. height: math.unit(1.07, "feet"),
  37117. name: "Hand",
  37118. image: {
  37119. source: "./media/characters/oven-otter/hand.svg"
  37120. }
  37121. },
  37122. beans: {
  37123. height: math.unit(1.74, "feet"),
  37124. name: "Beans",
  37125. image: {
  37126. source: "./media/characters/oven-otter/beans.svg"
  37127. }
  37128. },
  37129. },
  37130. [
  37131. {
  37132. name: "Micro",
  37133. height: math.unit(0.5, "inches")
  37134. },
  37135. {
  37136. name: "Normal",
  37137. height: math.unit(5 + 8/12, "feet"),
  37138. default: true
  37139. },
  37140. {
  37141. name: "Macro",
  37142. height: math.unit(250, "feet")
  37143. },
  37144. {
  37145. name: "Really High",
  37146. height: math.unit(420, "feet")
  37147. },
  37148. ]
  37149. ))
  37150. characterMakers.push(() => makeCharacter(
  37151. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  37152. {
  37153. front: {
  37154. height: math.unit(5, "meters"),
  37155. weight: math.unit(292000000000000, "kg"),
  37156. name: "Front",
  37157. image: {
  37158. source: "./media/characters/devourer/front.svg",
  37159. extra: 1800/1733,
  37160. bottom: 211/2011
  37161. }
  37162. },
  37163. maw: {
  37164. height: math.unit(1.1, "meter"),
  37165. name: "Maw",
  37166. image: {
  37167. source: "./media/characters/devourer/maw.svg"
  37168. }
  37169. },
  37170. },
  37171. [
  37172. {
  37173. name: "Small",
  37174. height: math.unit(3, "meters")
  37175. },
  37176. {
  37177. name: "Large",
  37178. height: math.unit(5, "meters"),
  37179. default: true
  37180. },
  37181. ]
  37182. ))
  37183. characterMakers.push(() => makeCharacter(
  37184. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  37185. {
  37186. front: {
  37187. height: math.unit(6, "feet"),
  37188. weight: math.unit(400, "lb"),
  37189. name: "Front",
  37190. image: {
  37191. source: "./media/characters/ellarby/front.svg",
  37192. extra: 1909/1763,
  37193. bottom: 80/1989
  37194. }
  37195. },
  37196. back: {
  37197. height: math.unit(6, "feet"),
  37198. weight: math.unit(400, "lb"),
  37199. name: "Back",
  37200. image: {
  37201. source: "./media/characters/ellarby/back.svg",
  37202. extra: 1914/1784,
  37203. bottom: 172/2086
  37204. }
  37205. },
  37206. },
  37207. [
  37208. {
  37209. name: "Mischief",
  37210. height: math.unit(18, "inches")
  37211. },
  37212. {
  37213. name: "Trouble",
  37214. height: math.unit(12, "feet")
  37215. },
  37216. {
  37217. name: "Havoc",
  37218. height: math.unit(200, "feet"),
  37219. default: true
  37220. },
  37221. {
  37222. name: "Pandemonium",
  37223. height: math.unit(1, "mile")
  37224. },
  37225. {
  37226. name: "Catastrophe",
  37227. height: math.unit(100, "miles")
  37228. },
  37229. ]
  37230. ))
  37231. characterMakers.push(() => makeCharacter(
  37232. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  37233. {
  37234. front: {
  37235. height: math.unit(4.7, "meters"),
  37236. weight: math.unit(6500, "kg"),
  37237. name: "Front",
  37238. image: {
  37239. source: "./media/characters/vex/front.svg",
  37240. extra: 1288/1140,
  37241. bottom: 100/1388
  37242. }
  37243. },
  37244. },
  37245. [
  37246. {
  37247. name: "Normal",
  37248. height: math.unit(4.7, "meters"),
  37249. default: true
  37250. },
  37251. ]
  37252. ))
  37253. characterMakers.push(() => makeCharacter(
  37254. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  37255. {
  37256. normal: {
  37257. height: math.unit(6, "feet"),
  37258. weight: math.unit(350, "lb"),
  37259. name: "Normal",
  37260. image: {
  37261. source: "./media/characters/teshy/normal.svg",
  37262. extra: 1795/1735,
  37263. bottom: 16/1811
  37264. }
  37265. },
  37266. monsterFront: {
  37267. height: math.unit(12, "feet"),
  37268. weight: math.unit(4700, "lb"),
  37269. name: "Monster (Front)",
  37270. image: {
  37271. source: "./media/characters/teshy/monster-front.svg",
  37272. extra: 2042/2034,
  37273. bottom: 128/2170
  37274. }
  37275. },
  37276. monsterSide: {
  37277. height: math.unit(12, "feet"),
  37278. weight: math.unit(4700, "lb"),
  37279. name: "Monster (Side)",
  37280. image: {
  37281. source: "./media/characters/teshy/monster-side.svg",
  37282. extra: 2067/2056,
  37283. bottom: 70/2137
  37284. }
  37285. },
  37286. monsterBack: {
  37287. height: math.unit(12, "feet"),
  37288. weight: math.unit(4700, "lb"),
  37289. name: "Monster (Back)",
  37290. image: {
  37291. source: "./media/characters/teshy/monster-back.svg",
  37292. extra: 1921/1914,
  37293. bottom: 171/2092
  37294. }
  37295. },
  37296. },
  37297. [
  37298. {
  37299. name: "Normal",
  37300. height: math.unit(6, "feet"),
  37301. default: true
  37302. },
  37303. ]
  37304. ))
  37305. characterMakers.push(() => makeCharacter(
  37306. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  37307. {
  37308. front: {
  37309. height: math.unit(6, "feet"),
  37310. name: "Front",
  37311. image: {
  37312. source: "./media/characters/ramey/front.svg",
  37313. extra: 790/787,
  37314. bottom: 27/817
  37315. }
  37316. },
  37317. },
  37318. [
  37319. {
  37320. name: "Normal",
  37321. height: math.unit(6, "feet"),
  37322. default: true
  37323. },
  37324. ]
  37325. ))
  37326. characterMakers.push(() => makeCharacter(
  37327. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  37328. {
  37329. front: {
  37330. height: math.unit(5 + 5/12, "feet"),
  37331. weight: math.unit(120, "lb"),
  37332. name: "Front",
  37333. image: {
  37334. source: "./media/characters/phirae/front.svg",
  37335. extra: 2491/2436,
  37336. bottom: 38/2529
  37337. }
  37338. },
  37339. },
  37340. [
  37341. {
  37342. name: "Normal",
  37343. height: math.unit(5 + 5/12, "feet"),
  37344. default: true
  37345. },
  37346. ]
  37347. ))
  37348. characterMakers.push(() => makeCharacter(
  37349. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  37350. {
  37351. front: {
  37352. height: math.unit(5 + 3/12, "feet"),
  37353. name: "Front",
  37354. image: {
  37355. source: "./media/characters/stagglas/front.svg",
  37356. extra: 962/882,
  37357. bottom: 53/1015
  37358. }
  37359. },
  37360. feral: {
  37361. height: math.unit(335, "cm"),
  37362. name: "Feral",
  37363. image: {
  37364. source: "./media/characters/stagglas/feral.svg",
  37365. extra: 1732/1090,
  37366. bottom: 48/1780
  37367. }
  37368. },
  37369. },
  37370. [
  37371. {
  37372. name: "Normal",
  37373. height: math.unit(5 + 3/12, "feet"),
  37374. default: true
  37375. },
  37376. ]
  37377. ))
  37378. characterMakers.push(() => makeCharacter(
  37379. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37380. {
  37381. front: {
  37382. height: math.unit(5 + 4/12, "feet"),
  37383. weight: math.unit(145, "lb"),
  37384. name: "Front",
  37385. image: {
  37386. source: "./media/characters/starra/front.svg",
  37387. extra: 1790/1691,
  37388. bottom: 91/1881
  37389. }
  37390. },
  37391. },
  37392. [
  37393. {
  37394. name: "Normal",
  37395. height: math.unit(5 + 4/12, "feet"),
  37396. default: true
  37397. },
  37398. ]
  37399. ))
  37400. characterMakers.push(() => makeCharacter(
  37401. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37402. {
  37403. front: {
  37404. height: math.unit(3.5, "meters"),
  37405. name: "Front",
  37406. image: {
  37407. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37408. extra: 1248/972,
  37409. bottom: 38/1286
  37410. }
  37411. },
  37412. },
  37413. [
  37414. {
  37415. name: "Normal",
  37416. height: math.unit(3.5, "meters"),
  37417. default: true
  37418. },
  37419. ]
  37420. ))
  37421. characterMakers.push(() => makeCharacter(
  37422. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37423. {
  37424. side: {
  37425. height: math.unit(8 + 2/12, "feet"),
  37426. weight: math.unit(1240, "lb"),
  37427. name: "Side",
  37428. image: {
  37429. source: "./media/characters/mika-valentine/side.svg",
  37430. extra: 2670/2501,
  37431. bottom: 250/2920
  37432. }
  37433. },
  37434. },
  37435. [
  37436. {
  37437. name: "Normal",
  37438. height: math.unit(8 + 2/12, "feet"),
  37439. default: true
  37440. },
  37441. ]
  37442. ))
  37443. characterMakers.push(() => makeCharacter(
  37444. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37445. {
  37446. front: {
  37447. height: math.unit(7 + 2/12, "feet"),
  37448. name: "Front",
  37449. image: {
  37450. source: "./media/characters/xoltol/front.svg",
  37451. extra: 2212/2124,
  37452. bottom: 84/2296
  37453. }
  37454. },
  37455. side: {
  37456. height: math.unit(7 + 2/12, "feet"),
  37457. name: "Side",
  37458. image: {
  37459. source: "./media/characters/xoltol/side.svg",
  37460. extra: 2273/2197,
  37461. bottom: 26/2299
  37462. }
  37463. },
  37464. hand: {
  37465. height: math.unit(2.5, "feet"),
  37466. name: "Hand",
  37467. image: {
  37468. source: "./media/characters/xoltol/hand.svg"
  37469. }
  37470. },
  37471. },
  37472. [
  37473. {
  37474. name: "Small-ish",
  37475. height: math.unit(5 + 11/12, "feet")
  37476. },
  37477. {
  37478. name: "Normal",
  37479. height: math.unit(7 + 2/12, "feet")
  37480. },
  37481. {
  37482. name: "\"Macro\"",
  37483. height: math.unit(14 + 9/12, "feet"),
  37484. default: true
  37485. },
  37486. {
  37487. name: "Alternate Height",
  37488. height: math.unit(20, "feet")
  37489. },
  37490. {
  37491. name: "Actually Macro",
  37492. height: math.unit(100, "feet")
  37493. },
  37494. ]
  37495. ))
  37496. characterMakers.push(() => makeCharacter(
  37497. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37498. {
  37499. front: {
  37500. height: math.unit(5 + 2/12, "feet"),
  37501. weight: math.unit(75, "kg"),
  37502. name: "Front",
  37503. image: {
  37504. source: "./media/characters/kotetsu-redwood/front.svg",
  37505. extra: 1053/942,
  37506. bottom: 60/1113
  37507. }
  37508. },
  37509. },
  37510. [
  37511. {
  37512. name: "Normal",
  37513. height: math.unit(5 + 2/12, "feet"),
  37514. default: true
  37515. },
  37516. ]
  37517. ))
  37518. characterMakers.push(() => makeCharacter(
  37519. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37520. {
  37521. front: {
  37522. height: math.unit(2.4, "meters"),
  37523. weight: math.unit(125, "kg"),
  37524. name: "Front",
  37525. image: {
  37526. source: "./media/characters/lilith/front.svg",
  37527. extra: 1590/1513,
  37528. bottom: 203/1793
  37529. }
  37530. },
  37531. },
  37532. [
  37533. {
  37534. name: "Humanoid",
  37535. height: math.unit(2.4, "meters")
  37536. },
  37537. {
  37538. name: "Normal",
  37539. height: math.unit(6, "meters"),
  37540. default: true
  37541. },
  37542. {
  37543. name: "Largest",
  37544. height: math.unit(55, "meters")
  37545. },
  37546. ]
  37547. ))
  37548. characterMakers.push(() => makeCharacter(
  37549. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37550. {
  37551. front: {
  37552. height: math.unit(8 + 4/12, "feet"),
  37553. weight: math.unit(535, "lb"),
  37554. name: "Front",
  37555. image: {
  37556. source: "./media/characters/beh'kah-bolger/front.svg",
  37557. extra: 1660/1603,
  37558. bottom: 37/1697
  37559. }
  37560. },
  37561. },
  37562. [
  37563. {
  37564. name: "Normal",
  37565. height: math.unit(8 + 4/12, "feet"),
  37566. default: true
  37567. },
  37568. {
  37569. name: "Kaiju",
  37570. height: math.unit(250, "feet")
  37571. },
  37572. {
  37573. name: "Still Growing",
  37574. height: math.unit(10, "miles")
  37575. },
  37576. {
  37577. name: "Continental",
  37578. height: math.unit(5000, "miles")
  37579. },
  37580. {
  37581. name: "Final Form",
  37582. height: math.unit(2500000, "miles")
  37583. },
  37584. ]
  37585. ))
  37586. characterMakers.push(() => makeCharacter(
  37587. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37588. {
  37589. front: {
  37590. height: math.unit(7 + 2/12, "feet"),
  37591. weight: math.unit(230, "kg"),
  37592. name: "Front",
  37593. image: {
  37594. source: "./media/characters/tatyana-milewska/front.svg",
  37595. extra: 1199/1150,
  37596. bottom: 86/1285
  37597. }
  37598. },
  37599. },
  37600. [
  37601. {
  37602. name: "Normal",
  37603. height: math.unit(7 + 2/12, "feet"),
  37604. default: true
  37605. },
  37606. {
  37607. name: "Big",
  37608. height: math.unit(12, "feet")
  37609. },
  37610. {
  37611. name: "Minimacro",
  37612. height: math.unit(20, "feet")
  37613. },
  37614. {
  37615. name: "Macro",
  37616. height: math.unit(120, "feet")
  37617. },
  37618. ]
  37619. ))
  37620. characterMakers.push(() => makeCharacter(
  37621. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37622. {
  37623. front: {
  37624. height: math.unit(7 + 8/12, "feet"),
  37625. weight: math.unit(152, "kg"),
  37626. name: "Front",
  37627. image: {
  37628. source: "./media/characters/helen-arri/front.svg",
  37629. extra: 440/423,
  37630. bottom: 14/454
  37631. }
  37632. },
  37633. back: {
  37634. height: math.unit(7 + 8/12, "feet"),
  37635. weight: math.unit(152, "kg"),
  37636. name: "Back",
  37637. image: {
  37638. source: "./media/characters/helen-arri/back.svg",
  37639. extra: 443/426,
  37640. bottom: 8/451
  37641. }
  37642. },
  37643. },
  37644. [
  37645. {
  37646. name: "Normal",
  37647. height: math.unit(7 + 8/12, "feet"),
  37648. default: true
  37649. },
  37650. {
  37651. name: "Big",
  37652. height: math.unit(14, "feet")
  37653. },
  37654. {
  37655. name: "Minimacro",
  37656. height: math.unit(24, "feet")
  37657. },
  37658. {
  37659. name: "Macro",
  37660. height: math.unit(140, "feet")
  37661. },
  37662. ]
  37663. ))
  37664. characterMakers.push(() => makeCharacter(
  37665. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37666. {
  37667. front: {
  37668. height: math.unit(6, "meters"),
  37669. name: "Front",
  37670. image: {
  37671. source: "./media/characters/ehanu-rehu/front.svg",
  37672. extra: 1800/1800,
  37673. bottom: 59/1859
  37674. }
  37675. },
  37676. },
  37677. [
  37678. {
  37679. name: "Normal",
  37680. height: math.unit(6, "meters"),
  37681. default: true
  37682. },
  37683. ]
  37684. ))
  37685. characterMakers.push(() => makeCharacter(
  37686. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37687. {
  37688. front: {
  37689. height: math.unit(7 + 3/12, "feet"),
  37690. name: "Front",
  37691. image: {
  37692. source: "./media/characters/renholder/front.svg",
  37693. extra: 3096/2960,
  37694. bottom: 250/3346
  37695. }
  37696. },
  37697. },
  37698. [
  37699. {
  37700. name: "Normal Bat",
  37701. height: math.unit(7 + 3/12, "feet"),
  37702. default: true
  37703. },
  37704. {
  37705. name: "Slightly Tall Bat",
  37706. height: math.unit(100, "feet")
  37707. },
  37708. {
  37709. name: "Big Bat",
  37710. height: math.unit(1000, "feet")
  37711. },
  37712. {
  37713. name: "City-Sized Bat",
  37714. height: math.unit(200000, "feet")
  37715. },
  37716. {
  37717. name: "Bigger Bat",
  37718. height: math.unit(10000, "miles")
  37719. },
  37720. {
  37721. name: "Solar Sized Bat",
  37722. height: math.unit(100, "AU")
  37723. },
  37724. {
  37725. name: "Galactic Bat",
  37726. height: math.unit(200000, "lightyears")
  37727. },
  37728. {
  37729. name: "Universally Known Bat",
  37730. height: math.unit(1, "universe")
  37731. },
  37732. ]
  37733. ))
  37734. characterMakers.push(() => makeCharacter(
  37735. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37736. {
  37737. front: {
  37738. height: math.unit(6 + 11/12, "feet"),
  37739. weight: math.unit(250, "lb"),
  37740. name: "Front",
  37741. image: {
  37742. source: "./media/characters/cookiecat/front.svg",
  37743. extra: 893/827,
  37744. bottom: 14/907
  37745. }
  37746. },
  37747. },
  37748. [
  37749. {
  37750. name: "Micro",
  37751. height: math.unit(3, "inches")
  37752. },
  37753. {
  37754. name: "Normal",
  37755. height: math.unit(6 + 11/12, "feet"),
  37756. default: true
  37757. },
  37758. {
  37759. name: "Macro",
  37760. height: math.unit(100, "feet")
  37761. },
  37762. {
  37763. name: "Macro+",
  37764. height: math.unit(404, "feet")
  37765. },
  37766. {
  37767. name: "Megamacro",
  37768. height: math.unit(165, "miles")
  37769. },
  37770. {
  37771. name: "Planetary",
  37772. height: math.unit(4600, "miles")
  37773. },
  37774. ]
  37775. ))
  37776. characterMakers.push(() => makeCharacter(
  37777. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37778. {
  37779. front: {
  37780. height: math.unit(10 + 3/12, "feet"),
  37781. weight: math.unit(1500, "lb"),
  37782. name: "Front",
  37783. image: {
  37784. source: "./media/characters/tux-kusanagi/front.svg",
  37785. extra: 944/840,
  37786. bottom: 39/983
  37787. }
  37788. },
  37789. back: {
  37790. height: math.unit(10 + 3/12, "feet"),
  37791. weight: math.unit(1500, "lb"),
  37792. name: "Back",
  37793. image: {
  37794. source: "./media/characters/tux-kusanagi/back.svg",
  37795. extra: 941/842,
  37796. bottom: 28/969
  37797. }
  37798. },
  37799. rump: {
  37800. height: math.unit(5.25, "feet"),
  37801. name: "Rump",
  37802. image: {
  37803. source: "./media/characters/tux-kusanagi/rump.svg"
  37804. }
  37805. },
  37806. beak: {
  37807. height: math.unit(1.54, "feet"),
  37808. name: "Beak",
  37809. image: {
  37810. source: "./media/characters/tux-kusanagi/beak.svg"
  37811. }
  37812. },
  37813. },
  37814. [
  37815. {
  37816. name: "Normal",
  37817. height: math.unit(10 + 3/12, "feet"),
  37818. default: true
  37819. },
  37820. ]
  37821. ))
  37822. characterMakers.push(() => makeCharacter(
  37823. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37824. {
  37825. front: {
  37826. height: math.unit(58, "feet"),
  37827. weight: math.unit(200, "tons"),
  37828. name: "Front",
  37829. image: {
  37830. source: "./media/characters/uzarmazari/front.svg",
  37831. extra: 1575/1455,
  37832. bottom: 152/1727
  37833. }
  37834. },
  37835. back: {
  37836. height: math.unit(58, "feet"),
  37837. weight: math.unit(200, "tons"),
  37838. name: "Back",
  37839. image: {
  37840. source: "./media/characters/uzarmazari/back.svg",
  37841. extra: 1585/1510,
  37842. bottom: 157/1742
  37843. }
  37844. },
  37845. head: {
  37846. height: math.unit(26, "feet"),
  37847. name: "Head",
  37848. image: {
  37849. source: "./media/characters/uzarmazari/head.svg"
  37850. }
  37851. },
  37852. },
  37853. [
  37854. {
  37855. name: "Normal",
  37856. height: math.unit(58, "feet"),
  37857. default: true
  37858. },
  37859. ]
  37860. ))
  37861. characterMakers.push(() => makeCharacter(
  37862. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37863. {
  37864. side: {
  37865. height: math.unit(15, "feet"),
  37866. name: "Side",
  37867. image: {
  37868. source: "./media/characters/akitu/side.svg",
  37869. extra: 1421/1321,
  37870. bottom: 157/1578
  37871. }
  37872. },
  37873. front: {
  37874. height: math.unit(15, "feet"),
  37875. name: "Front",
  37876. image: {
  37877. source: "./media/characters/akitu/front.svg",
  37878. extra: 1435/1326,
  37879. bottom: 232/1667
  37880. }
  37881. },
  37882. },
  37883. [
  37884. {
  37885. name: "Normal",
  37886. height: math.unit(15, "feet"),
  37887. default: true
  37888. },
  37889. ]
  37890. ))
  37891. characterMakers.push(() => makeCharacter(
  37892. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37893. {
  37894. front: {
  37895. height: math.unit(10 + 8/12, "feet"),
  37896. name: "Front",
  37897. image: {
  37898. source: "./media/characters/azalie-croixland/front.svg",
  37899. extra: 1972/1856,
  37900. bottom: 31/2003
  37901. }
  37902. },
  37903. },
  37904. [
  37905. {
  37906. name: "Original Height",
  37907. height: math.unit(5 + 4/12, "feet")
  37908. },
  37909. {
  37910. name: "Normal Height",
  37911. height: math.unit(10 + 8/12, "feet"),
  37912. default: true
  37913. },
  37914. ]
  37915. ))
  37916. characterMakers.push(() => makeCharacter(
  37917. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37918. {
  37919. side: {
  37920. height: math.unit(7 + 1/12, "feet"),
  37921. weight: math.unit(245, "lb"),
  37922. name: "Side",
  37923. image: {
  37924. source: "./media/characters/kavus-kazian/side.svg",
  37925. extra: 349/342,
  37926. bottom: 15/364
  37927. }
  37928. },
  37929. },
  37930. [
  37931. {
  37932. name: "Normal",
  37933. height: math.unit(7 + 1/12, "feet"),
  37934. default: true
  37935. },
  37936. ]
  37937. ))
  37938. characterMakers.push(() => makeCharacter(
  37939. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37940. {
  37941. normalFront: {
  37942. height: math.unit(5 + 11/12, "feet"),
  37943. name: "Front",
  37944. image: {
  37945. source: "./media/characters/moonlight-rose/normal-front.svg",
  37946. extra: 1980/1825,
  37947. bottom: 18/1998
  37948. },
  37949. form: "normal",
  37950. default: true
  37951. },
  37952. normalBack: {
  37953. height: math.unit(5 + 11/12, "feet"),
  37954. name: "Back",
  37955. image: {
  37956. source: "./media/characters/moonlight-rose/normal-back.svg",
  37957. extra: 2010/1839,
  37958. bottom: 10/2020
  37959. },
  37960. form: "normal"
  37961. },
  37962. demonFront: {
  37963. height: math.unit(1.5, "earths"),
  37964. name: "Front",
  37965. image: {
  37966. source: "./media/characters/moonlight-rose/demon.svg",
  37967. extra: 1400/1294,
  37968. bottom: 45/1445
  37969. },
  37970. form: "demon",
  37971. default: true
  37972. },
  37973. terraFront: {
  37974. height: math.unit(1.5, "earths"),
  37975. name: "Front",
  37976. image: {
  37977. source: "./media/characters/moonlight-rose/terra.svg"
  37978. },
  37979. form: "terra",
  37980. default: true
  37981. },
  37982. jupiterFront: {
  37983. height: math.unit(69911*2, "km"),
  37984. name: "Front",
  37985. image: {
  37986. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37987. extra: 1367/1286,
  37988. bottom: 55/1422
  37989. },
  37990. form: "jupiter",
  37991. default: true
  37992. },
  37993. neptuneFront: {
  37994. height: math.unit(24622*2, "feet"),
  37995. name: "Front",
  37996. image: {
  37997. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37998. extra: 1851/1712,
  37999. bottom: 0/1851
  38000. },
  38001. form: "neptune",
  38002. default: true
  38003. },
  38004. },
  38005. [
  38006. {
  38007. name: "\"Natural\" Height",
  38008. height: math.unit(5 + 11/12, "feet"),
  38009. form: "normal"
  38010. },
  38011. {
  38012. name: "Smallest comfortable size",
  38013. height: math.unit(40, "meters"),
  38014. form: "normal"
  38015. },
  38016. {
  38017. name: "Common size",
  38018. height: math.unit(50, "km"),
  38019. form: "normal",
  38020. default: true
  38021. },
  38022. {
  38023. name: "Normal",
  38024. height: math.unit(1.5, "earths"),
  38025. form: "demon",
  38026. default: true
  38027. },
  38028. {
  38029. name: "Universal",
  38030. height: math.unit(15, "universes"),
  38031. form: "demon"
  38032. },
  38033. {
  38034. name: "Earth",
  38035. height: math.unit(1.5, "earths"),
  38036. form: "terra",
  38037. default: true
  38038. },
  38039. {
  38040. name: "Super Earth",
  38041. height: math.unit(67.5, "earths"),
  38042. form: "terra"
  38043. },
  38044. {
  38045. name: "Doesn't fit in a solar system...",
  38046. height: math.unit(1, "galaxy"),
  38047. form: "terra"
  38048. },
  38049. {
  38050. name: "Saturn",
  38051. height: math.unit(58232*2, "km"),
  38052. form: "jupiter"
  38053. },
  38054. {
  38055. name: "Jupiter",
  38056. height: math.unit(69911*2, "km"),
  38057. form: "jupiter",
  38058. default: true
  38059. },
  38060. {
  38061. name: "HD 100546 b",
  38062. height: math.unit(482938, "km"),
  38063. form: "jupiter"
  38064. },
  38065. {
  38066. name: "Enceladus",
  38067. height: math.unit(513*2, "km"),
  38068. form: "neptune"
  38069. },
  38070. {
  38071. name: "Europe",
  38072. height: math.unit(1560*2, "km"),
  38073. form: "neptune"
  38074. },
  38075. {
  38076. name: "Neptune",
  38077. height: math.unit(24622*2, "km"),
  38078. form: "neptune",
  38079. default: true
  38080. },
  38081. {
  38082. name: "CoRoT-9b",
  38083. height: math.unit(75067*2, "km"),
  38084. form: "neptune"
  38085. },
  38086. ],
  38087. {
  38088. "normal": {
  38089. name: "Normal",
  38090. default: true
  38091. },
  38092. "demon": {
  38093. name: "Demon"
  38094. },
  38095. "terra": {
  38096. name: "Terra"
  38097. },
  38098. "jupiter": {
  38099. name: "Jupiter"
  38100. },
  38101. "neptune": {
  38102. name: "Neptune"
  38103. }
  38104. }
  38105. ))
  38106. characterMakers.push(() => makeCharacter(
  38107. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  38108. {
  38109. front: {
  38110. height: math.unit(16, "feet"),
  38111. weight: math.unit(610, "kg"),
  38112. name: "Front",
  38113. image: {
  38114. source: "./media/characters/huckle/front.svg",
  38115. extra: 1731/1625,
  38116. bottom: 33/1764
  38117. }
  38118. },
  38119. back: {
  38120. height: math.unit(16, "feet"),
  38121. weight: math.unit(610, "kg"),
  38122. name: "Back",
  38123. image: {
  38124. source: "./media/characters/huckle/back.svg",
  38125. extra: 1738/1651,
  38126. bottom: 37/1775
  38127. }
  38128. },
  38129. laughing: {
  38130. height: math.unit(3.75, "feet"),
  38131. name: "Laughing",
  38132. image: {
  38133. source: "./media/characters/huckle/laughing.svg"
  38134. }
  38135. },
  38136. angry: {
  38137. height: math.unit(4.15, "feet"),
  38138. name: "Angry",
  38139. image: {
  38140. source: "./media/characters/huckle/angry.svg"
  38141. }
  38142. },
  38143. },
  38144. [
  38145. {
  38146. name: "Normal",
  38147. height: math.unit(16, "feet"),
  38148. default: true
  38149. },
  38150. {
  38151. name: "Mini Macro",
  38152. height: math.unit(463, "feet")
  38153. },
  38154. {
  38155. name: "Macro",
  38156. height: math.unit(1680, "meters")
  38157. },
  38158. {
  38159. name: "Mega Macro",
  38160. height: math.unit(175, "km")
  38161. },
  38162. {
  38163. name: "Terra Macro",
  38164. height: math.unit(32, "gigameters")
  38165. },
  38166. {
  38167. name: "Multiverse+",
  38168. height: math.unit(2.56e23, "yottameters")
  38169. },
  38170. ]
  38171. ))
  38172. characterMakers.push(() => makeCharacter(
  38173. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  38174. {
  38175. front: {
  38176. height: math.unit(6 + 9/12, "feet"),
  38177. weight: math.unit(280, "lb"),
  38178. name: "Front",
  38179. image: {
  38180. source: "./media/characters/candy/front.svg",
  38181. extra: 234/217,
  38182. bottom: 11/245
  38183. }
  38184. },
  38185. },
  38186. [
  38187. {
  38188. name: "Really Small",
  38189. height: math.unit(0.1, "nm")
  38190. },
  38191. {
  38192. name: "Micro",
  38193. height: math.unit(2, "inches")
  38194. },
  38195. {
  38196. name: "Normal",
  38197. height: math.unit(6 + 9/12, "feet"),
  38198. default: true
  38199. },
  38200. {
  38201. name: "Small Macro",
  38202. height: math.unit(69, "feet")
  38203. },
  38204. {
  38205. name: "Macro",
  38206. height: math.unit(160, "feet")
  38207. },
  38208. {
  38209. name: "Megamacro",
  38210. height: math.unit(22000, "miles")
  38211. },
  38212. {
  38213. name: "Gigamacro",
  38214. height: math.unit(50000, "miles")
  38215. },
  38216. ]
  38217. ))
  38218. characterMakers.push(() => makeCharacter(
  38219. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  38220. {
  38221. front: {
  38222. height: math.unit(4, "feet"),
  38223. weight: math.unit(90, "lb"),
  38224. name: "Front",
  38225. image: {
  38226. source: "./media/characters/joey-mcdonald/front.svg",
  38227. extra: 1059/852,
  38228. bottom: 33/1092
  38229. }
  38230. },
  38231. back: {
  38232. height: math.unit(4, "feet"),
  38233. weight: math.unit(90, "lb"),
  38234. name: "Back",
  38235. image: {
  38236. source: "./media/characters/joey-mcdonald/back.svg",
  38237. extra: 1077/879,
  38238. bottom: 5/1082
  38239. }
  38240. },
  38241. frontKobold: {
  38242. height: math.unit(4, "feet"),
  38243. weight: math.unit(100, "lb"),
  38244. name: "Front-kobold",
  38245. image: {
  38246. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  38247. extra: 1480/1367,
  38248. bottom: 0/1480
  38249. }
  38250. },
  38251. backKobold: {
  38252. height: math.unit(4, "feet"),
  38253. weight: math.unit(100, "lb"),
  38254. name: "Back-kobold",
  38255. image: {
  38256. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  38257. extra: 1449/1361,
  38258. bottom: 0/1449
  38259. }
  38260. },
  38261. },
  38262. [
  38263. {
  38264. name: "Normal",
  38265. height: math.unit(4, "feet"),
  38266. default: true
  38267. },
  38268. ]
  38269. ))
  38270. characterMakers.push(() => makeCharacter(
  38271. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  38272. {
  38273. front: {
  38274. height: math.unit(12 + 6/12, "feet"),
  38275. name: "Front",
  38276. image: {
  38277. source: "./media/characters/kass-lockheed/front.svg",
  38278. extra: 354/343,
  38279. bottom: 9/363
  38280. }
  38281. },
  38282. back: {
  38283. height: math.unit(12 + 6/12, "feet"),
  38284. name: "Back",
  38285. image: {
  38286. source: "./media/characters/kass-lockheed/back.svg",
  38287. extra: 364/352,
  38288. bottom: 3/367
  38289. }
  38290. },
  38291. dick: {
  38292. height: math.unit(3.12, "feet"),
  38293. name: "Dick",
  38294. image: {
  38295. source: "./media/characters/kass-lockheed/dick.svg"
  38296. }
  38297. },
  38298. head: {
  38299. height: math.unit(2.6, "feet"),
  38300. name: "Head",
  38301. image: {
  38302. source: "./media/characters/kass-lockheed/head.svg"
  38303. }
  38304. },
  38305. bleh: {
  38306. height: math.unit(2.85, "feet"),
  38307. name: "Bleh",
  38308. image: {
  38309. source: "./media/characters/kass-lockheed/bleh.svg"
  38310. }
  38311. },
  38312. smug: {
  38313. height: math.unit(2.85, "feet"),
  38314. name: "Smug",
  38315. image: {
  38316. source: "./media/characters/kass-lockheed/smug.svg"
  38317. }
  38318. },
  38319. },
  38320. [
  38321. {
  38322. name: "Normal",
  38323. height: math.unit(12 + 6/12, "feet"),
  38324. default: true
  38325. },
  38326. ]
  38327. ))
  38328. characterMakers.push(() => makeCharacter(
  38329. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  38330. {
  38331. front: {
  38332. height: math.unit(6 + 2/12, "feet"),
  38333. name: "Front",
  38334. image: {
  38335. source: "./media/characters/taylor/front.svg",
  38336. extra: 639/495,
  38337. bottom: 12/651
  38338. }
  38339. },
  38340. },
  38341. [
  38342. {
  38343. name: "Normal",
  38344. height: math.unit(6 + 2/12, "feet"),
  38345. default: true
  38346. },
  38347. {
  38348. name: "Big",
  38349. height: math.unit(15, "feet")
  38350. },
  38351. {
  38352. name: "Lorg",
  38353. height: math.unit(80, "feet")
  38354. },
  38355. {
  38356. name: "Too Lorg",
  38357. height: math.unit(120, "feet")
  38358. },
  38359. ]
  38360. ))
  38361. characterMakers.push(() => makeCharacter(
  38362. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  38363. {
  38364. front: {
  38365. height: math.unit(15, "feet"),
  38366. name: "Front",
  38367. image: {
  38368. source: "./media/characters/kaizer/front.svg",
  38369. extra: 1612/1436,
  38370. bottom: 43/1655
  38371. }
  38372. },
  38373. },
  38374. [
  38375. {
  38376. name: "Normal",
  38377. height: math.unit(15, "feet"),
  38378. default: true
  38379. },
  38380. ]
  38381. ))
  38382. characterMakers.push(() => makeCharacter(
  38383. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38384. {
  38385. front: {
  38386. height: math.unit(2, "feet"),
  38387. weight: math.unit(30, "lb"),
  38388. name: "Front",
  38389. image: {
  38390. source: "./media/characters/sandy/front.svg",
  38391. extra: 1439/1307,
  38392. bottom: 194/1633
  38393. }
  38394. },
  38395. },
  38396. [
  38397. {
  38398. name: "Normal",
  38399. height: math.unit(2, "feet"),
  38400. default: true
  38401. },
  38402. ]
  38403. ))
  38404. characterMakers.push(() => makeCharacter(
  38405. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38406. {
  38407. front: {
  38408. height: math.unit(3, "feet"),
  38409. name: "Front",
  38410. image: {
  38411. source: "./media/characters/mellvi/front.svg",
  38412. extra: 1831/1630,
  38413. bottom: 58/1889
  38414. }
  38415. },
  38416. },
  38417. [
  38418. {
  38419. name: "Normal",
  38420. height: math.unit(3, "feet"),
  38421. default: true
  38422. },
  38423. ]
  38424. ))
  38425. characterMakers.push(() => makeCharacter(
  38426. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38427. {
  38428. front: {
  38429. height: math.unit(5 + 11/12, "feet"),
  38430. weight: math.unit(200, "lb"),
  38431. name: "Front",
  38432. image: {
  38433. source: "./media/characters/shirou/front.svg",
  38434. extra: 2491/2383,
  38435. bottom: 189/2680
  38436. }
  38437. },
  38438. back: {
  38439. height: math.unit(5 + 11/12, "feet"),
  38440. weight: math.unit(200, "lb"),
  38441. name: "Back",
  38442. image: {
  38443. source: "./media/characters/shirou/back.svg",
  38444. extra: 2554/2450,
  38445. bottom: 76/2630
  38446. }
  38447. },
  38448. },
  38449. [
  38450. {
  38451. name: "Normal",
  38452. height: math.unit(5 + 11/12, "feet"),
  38453. default: true
  38454. },
  38455. ]
  38456. ))
  38457. characterMakers.push(() => makeCharacter(
  38458. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38459. {
  38460. front: {
  38461. height: math.unit(6 + 3/12, "feet"),
  38462. weight: math.unit(177, "lb"),
  38463. name: "Front",
  38464. image: {
  38465. source: "./media/characters/noryu/front.svg",
  38466. extra: 973/885,
  38467. bottom: 10/983
  38468. }
  38469. },
  38470. },
  38471. [
  38472. {
  38473. name: "Normal",
  38474. height: math.unit(6 + 3/12, "feet"),
  38475. default: true
  38476. },
  38477. ]
  38478. ))
  38479. characterMakers.push(() => makeCharacter(
  38480. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38481. {
  38482. front: {
  38483. height: math.unit(5 + 6/12, "feet"),
  38484. weight: math.unit(170, "lb"),
  38485. name: "Front",
  38486. image: {
  38487. source: "./media/characters/mevolas-rubenido/front.svg",
  38488. extra: 2109/1901,
  38489. bottom: 96/2205
  38490. }
  38491. },
  38492. },
  38493. [
  38494. {
  38495. name: "Normal",
  38496. height: math.unit(5 + 6/12, "feet"),
  38497. default: true
  38498. },
  38499. ]
  38500. ))
  38501. characterMakers.push(() => makeCharacter(
  38502. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38503. {
  38504. front: {
  38505. height: math.unit(100, "feet"),
  38506. name: "Front",
  38507. image: {
  38508. source: "./media/characters/dee/front.svg",
  38509. extra: 2153/2036,
  38510. bottom: 59/2212
  38511. }
  38512. },
  38513. back: {
  38514. height: math.unit(100, "feet"),
  38515. name: "Back",
  38516. image: {
  38517. source: "./media/characters/dee/back.svg",
  38518. extra: 2183/2058,
  38519. bottom: 75/2258
  38520. }
  38521. },
  38522. foot: {
  38523. height: math.unit(19.43, "feet"),
  38524. name: "Foot",
  38525. image: {
  38526. source: "./media/characters/dee/foot.svg"
  38527. }
  38528. },
  38529. hoof: {
  38530. height: math.unit(20.6, "feet"),
  38531. name: "Hoof",
  38532. image: {
  38533. source: "./media/characters/dee/hoof.svg"
  38534. }
  38535. },
  38536. },
  38537. [
  38538. {
  38539. name: "Macro",
  38540. height: math.unit(100, "feet"),
  38541. default: true
  38542. },
  38543. ]
  38544. ))
  38545. characterMakers.push(() => makeCharacter(
  38546. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38547. {
  38548. front: {
  38549. height: math.unit(5 + 6/12, "feet"),
  38550. name: "Front",
  38551. image: {
  38552. source: "./media/characters/teh/front.svg",
  38553. extra: 1002/847,
  38554. bottom: 62/1064
  38555. }
  38556. },
  38557. },
  38558. [
  38559. {
  38560. name: "Normal",
  38561. height: math.unit(5 + 6/12, "feet"),
  38562. default: true
  38563. },
  38564. ]
  38565. ))
  38566. characterMakers.push(() => makeCharacter(
  38567. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38568. {
  38569. side: {
  38570. height: math.unit(6 + 1/12, "feet"),
  38571. weight: math.unit(204, "lb"),
  38572. name: "Side",
  38573. image: {
  38574. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38575. extra: 974/775,
  38576. bottom: 169/1143
  38577. }
  38578. },
  38579. sitting: {
  38580. height: math.unit(6 + 2/12, "feet"),
  38581. weight: math.unit(204, "lb"),
  38582. name: "Sitting",
  38583. image: {
  38584. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38585. extra: 1175/964,
  38586. bottom: 378/1553
  38587. }
  38588. },
  38589. },
  38590. [
  38591. {
  38592. name: "Normal",
  38593. height: math.unit(6 + 1/12, "feet"),
  38594. default: true
  38595. },
  38596. ]
  38597. ))
  38598. characterMakers.push(() => makeCharacter(
  38599. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38600. {
  38601. front: {
  38602. height: math.unit(6, "inches"),
  38603. name: "Front",
  38604. image: {
  38605. source: "./media/characters/tululi/front.svg",
  38606. extra: 1997/1876,
  38607. bottom: 20/2017
  38608. }
  38609. },
  38610. },
  38611. [
  38612. {
  38613. name: "Normal",
  38614. height: math.unit(6, "inches"),
  38615. default: true
  38616. },
  38617. ]
  38618. ))
  38619. characterMakers.push(() => makeCharacter(
  38620. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38621. {
  38622. front: {
  38623. height: math.unit(4 + 1/12, "feet"),
  38624. name: "Front",
  38625. image: {
  38626. source: "./media/characters/star/front.svg",
  38627. extra: 1493/1189,
  38628. bottom: 48/1541
  38629. }
  38630. },
  38631. },
  38632. [
  38633. {
  38634. name: "Normal",
  38635. height: math.unit(4 + 1/12, "feet"),
  38636. default: true
  38637. },
  38638. ]
  38639. ))
  38640. characterMakers.push(() => makeCharacter(
  38641. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38642. {
  38643. front: {
  38644. height: math.unit(6 + 3/12, "feet"),
  38645. name: "Front",
  38646. image: {
  38647. source: "./media/characters/comet/front.svg",
  38648. extra: 1681/1462,
  38649. bottom: 26/1707
  38650. }
  38651. },
  38652. },
  38653. [
  38654. {
  38655. name: "Normal",
  38656. height: math.unit(6 + 3/12, "feet"),
  38657. default: true
  38658. },
  38659. ]
  38660. ))
  38661. characterMakers.push(() => makeCharacter(
  38662. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38663. {
  38664. front: {
  38665. height: math.unit(950, "feet"),
  38666. name: "Front",
  38667. image: {
  38668. source: "./media/characters/vortex/front.svg",
  38669. extra: 1497/1434,
  38670. bottom: 56/1553
  38671. }
  38672. },
  38673. maw: {
  38674. height: math.unit(285, "feet"),
  38675. name: "Maw",
  38676. image: {
  38677. source: "./media/characters/vortex/maw.svg"
  38678. }
  38679. },
  38680. },
  38681. [
  38682. {
  38683. name: "Macro",
  38684. height: math.unit(950, "feet"),
  38685. default: true
  38686. },
  38687. ]
  38688. ))
  38689. characterMakers.push(() => makeCharacter(
  38690. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38691. {
  38692. front: {
  38693. height: math.unit(600, "feet"),
  38694. weight: math.unit(0.02, "grams"),
  38695. name: "Front",
  38696. image: {
  38697. source: "./media/characters/doodle/front.svg",
  38698. extra: 1578/1413,
  38699. bottom: 37/1615
  38700. }
  38701. },
  38702. },
  38703. [
  38704. {
  38705. name: "Macro",
  38706. height: math.unit(600, "feet"),
  38707. default: true
  38708. },
  38709. ]
  38710. ))
  38711. characterMakers.push(() => makeCharacter(
  38712. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38713. {
  38714. front: {
  38715. height: math.unit(6 + 6/12, "feet"),
  38716. name: "Front",
  38717. image: {
  38718. source: "./media/characters/jai/front.svg",
  38719. extra: 1645/1534,
  38720. bottom: 115/1760
  38721. }
  38722. },
  38723. },
  38724. [
  38725. {
  38726. name: "Normal",
  38727. height: math.unit(6 + 6/12, "feet"),
  38728. default: true
  38729. },
  38730. ]
  38731. ))
  38732. characterMakers.push(() => makeCharacter(
  38733. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38734. {
  38735. front: {
  38736. height: math.unit(6 + 8/12, "feet"),
  38737. name: "Front",
  38738. image: {
  38739. source: "./media/characters/pixel/front.svg",
  38740. extra: 1900/1735,
  38741. bottom: 63/1963
  38742. }
  38743. },
  38744. },
  38745. [
  38746. {
  38747. name: "Normal",
  38748. height: math.unit(6 + 8/12, "feet"),
  38749. default: true
  38750. },
  38751. ]
  38752. ))
  38753. characterMakers.push(() => makeCharacter(
  38754. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38755. {
  38756. back: {
  38757. height: math.unit(4 + 1/12, "feet"),
  38758. weight: math.unit(75, "lb"),
  38759. name: "Back",
  38760. image: {
  38761. source: "./media/characters/rhett/back.svg",
  38762. extra: 930/878,
  38763. bottom: 25/955
  38764. }
  38765. },
  38766. front: {
  38767. height: math.unit(4 + 1/12, "feet"),
  38768. weight: math.unit(75, "lb"),
  38769. name: "Front",
  38770. image: {
  38771. source: "./media/characters/rhett/front.svg",
  38772. extra: 1682/1586,
  38773. bottom: 92/1774
  38774. }
  38775. },
  38776. },
  38777. [
  38778. {
  38779. name: "Micro",
  38780. height: math.unit(8, "inches")
  38781. },
  38782. {
  38783. name: "Tiny",
  38784. height: math.unit(2, "feet")
  38785. },
  38786. {
  38787. name: "Normal",
  38788. height: math.unit(4 + 1/12, "feet"),
  38789. default: true
  38790. },
  38791. ]
  38792. ))
  38793. characterMakers.push(() => makeCharacter(
  38794. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38795. {
  38796. front: {
  38797. height: math.unit(3 + 3/12, "feet"),
  38798. name: "Front",
  38799. image: {
  38800. source: "./media/characters/penny/front.svg",
  38801. extra: 1406/1311,
  38802. bottom: 26/1432
  38803. }
  38804. },
  38805. },
  38806. [
  38807. {
  38808. name: "Normal",
  38809. height: math.unit(3 + 3/12, "feet"),
  38810. default: true
  38811. },
  38812. ]
  38813. ))
  38814. characterMakers.push(() => makeCharacter(
  38815. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38816. {
  38817. front: {
  38818. height: math.unit(4 + 11/12, "feet"),
  38819. name: "Front",
  38820. image: {
  38821. source: "./media/characters/monty/front.svg",
  38822. extra: 1479/1209,
  38823. bottom: 0/1479
  38824. }
  38825. },
  38826. },
  38827. [
  38828. {
  38829. name: "Normal",
  38830. height: math.unit(4 + 11/12, "feet"),
  38831. default: true
  38832. },
  38833. ]
  38834. ))
  38835. characterMakers.push(() => makeCharacter(
  38836. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38837. {
  38838. front: {
  38839. height: math.unit(8 + 4/12, "feet"),
  38840. name: "Front",
  38841. image: {
  38842. source: "./media/characters/sterling/front.svg",
  38843. extra: 1420/1236,
  38844. bottom: 27/1447
  38845. }
  38846. },
  38847. },
  38848. [
  38849. {
  38850. name: "Normal",
  38851. height: math.unit(8 + 4/12, "feet"),
  38852. default: true
  38853. },
  38854. ]
  38855. ))
  38856. characterMakers.push(() => makeCharacter(
  38857. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38858. {
  38859. front: {
  38860. height: math.unit(15, "feet"),
  38861. name: "Front",
  38862. image: {
  38863. source: "./media/characters/marble/front.svg",
  38864. extra: 973/937,
  38865. bottom: 32/1005
  38866. }
  38867. },
  38868. },
  38869. [
  38870. {
  38871. name: "Normal",
  38872. height: math.unit(15, "feet"),
  38873. default: true
  38874. },
  38875. ]
  38876. ))
  38877. characterMakers.push(() => makeCharacter(
  38878. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38879. {
  38880. front: {
  38881. height: math.unit(3, "inches"),
  38882. name: "Front",
  38883. image: {
  38884. source: "./media/characters/powder/front.svg",
  38885. extra: 1504/1334,
  38886. bottom: 518/2022
  38887. }
  38888. },
  38889. },
  38890. [
  38891. {
  38892. name: "Normal",
  38893. height: math.unit(3, "inches"),
  38894. default: true
  38895. },
  38896. ]
  38897. ))
  38898. characterMakers.push(() => makeCharacter(
  38899. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38900. {
  38901. front: {
  38902. height: math.unit(4 + 5/12, "feet"),
  38903. name: "Front",
  38904. image: {
  38905. source: "./media/characters/joey-raccoon/front.svg",
  38906. extra: 1273/1197,
  38907. bottom: 0/1273
  38908. }
  38909. },
  38910. },
  38911. [
  38912. {
  38913. name: "Normal",
  38914. height: math.unit(4 + 5/12, "feet"),
  38915. default: true
  38916. },
  38917. ]
  38918. ))
  38919. characterMakers.push(() => makeCharacter(
  38920. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38921. {
  38922. front: {
  38923. height: math.unit(8 + 4/12, "feet"),
  38924. name: "Front",
  38925. image: {
  38926. source: "./media/characters/vick/front.svg",
  38927. extra: 2187/2118,
  38928. bottom: 47/2234
  38929. }
  38930. },
  38931. },
  38932. [
  38933. {
  38934. name: "Normal",
  38935. height: math.unit(8 + 4/12, "feet"),
  38936. default: true
  38937. },
  38938. ]
  38939. ))
  38940. characterMakers.push(() => makeCharacter(
  38941. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38942. {
  38943. front: {
  38944. height: math.unit(5 + 5/12, "feet"),
  38945. name: "Front",
  38946. image: {
  38947. source: "./media/characters/mitsy/front.svg",
  38948. extra: 1842/1695,
  38949. bottom: 0/1842
  38950. }
  38951. },
  38952. },
  38953. [
  38954. {
  38955. name: "Normal",
  38956. height: math.unit(5 + 5/12, "feet"),
  38957. default: true
  38958. },
  38959. ]
  38960. ))
  38961. characterMakers.push(() => makeCharacter(
  38962. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38963. {
  38964. front: {
  38965. height: math.unit(6 + 3/12, "feet"),
  38966. name: "Front",
  38967. image: {
  38968. source: "./media/characters/silvy/front.svg",
  38969. extra: 1995/1836,
  38970. bottom: 225/2220
  38971. }
  38972. },
  38973. },
  38974. [
  38975. {
  38976. name: "Normal",
  38977. height: math.unit(6 + 3/12, "feet"),
  38978. default: true
  38979. },
  38980. ]
  38981. ))
  38982. characterMakers.push(() => makeCharacter(
  38983. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38984. {
  38985. front: {
  38986. height: math.unit(3 + 8/12, "feet"),
  38987. name: "Front",
  38988. image: {
  38989. source: "./media/characters/rodney/front.svg",
  38990. extra: 1956/1747,
  38991. bottom: 31/1987
  38992. }
  38993. },
  38994. frontDressed: {
  38995. height: math.unit(2.9, "feet"),
  38996. name: "Front (Dressed)",
  38997. image: {
  38998. source: "./media/characters/rodney/front-dressed.svg",
  38999. extra: 1382/1241,
  39000. bottom: 385/1767
  39001. }
  39002. },
  39003. },
  39004. [
  39005. {
  39006. name: "Normal",
  39007. height: math.unit(3 + 8/12, "feet"),
  39008. default: true
  39009. },
  39010. ]
  39011. ))
  39012. characterMakers.push(() => makeCharacter(
  39013. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  39014. {
  39015. front: {
  39016. height: math.unit(5 + 9/12, "feet"),
  39017. weight: math.unit(194, "lbs"),
  39018. name: "Front",
  39019. image: {
  39020. source: "./media/characters/zakail-sudekai/front.svg",
  39021. extra: 2696/2533,
  39022. bottom: 248/2944
  39023. }
  39024. },
  39025. maw: {
  39026. height: math.unit(1.35, "feet"),
  39027. name: "Maw",
  39028. image: {
  39029. source: "./media/characters/zakail-sudekai/maw.svg"
  39030. }
  39031. },
  39032. },
  39033. [
  39034. {
  39035. name: "Normal",
  39036. height: math.unit(5 + 9/12, "feet"),
  39037. default: true
  39038. },
  39039. ]
  39040. ))
  39041. characterMakers.push(() => makeCharacter(
  39042. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  39043. {
  39044. front: {
  39045. height: math.unit(8 + 4/12, "feet"),
  39046. weight: math.unit(1200, "lb"),
  39047. name: "Front",
  39048. image: {
  39049. source: "./media/characters/eleanor/front.svg",
  39050. extra: 1226/1192,
  39051. bottom: 52/1278
  39052. }
  39053. },
  39054. back: {
  39055. height: math.unit(8 + 4/12, "feet"),
  39056. weight: math.unit(1200, "lb"),
  39057. name: "Back",
  39058. image: {
  39059. source: "./media/characters/eleanor/back.svg",
  39060. extra: 1242/1184,
  39061. bottom: 60/1302
  39062. }
  39063. },
  39064. head: {
  39065. height: math.unit(2.62, "feet"),
  39066. name: "Head",
  39067. image: {
  39068. source: "./media/characters/eleanor/head.svg"
  39069. }
  39070. },
  39071. },
  39072. [
  39073. {
  39074. name: "Normal",
  39075. height: math.unit(8 + 4/12, "feet"),
  39076. default: true
  39077. },
  39078. ]
  39079. ))
  39080. characterMakers.push(() => makeCharacter(
  39081. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  39082. {
  39083. front: {
  39084. height: math.unit(8 + 4/12, "feet"),
  39085. weight: math.unit(750, "lb"),
  39086. name: "Front",
  39087. image: {
  39088. source: "./media/characters/tanya/front.svg",
  39089. extra: 1749/1615,
  39090. bottom: 33/1782
  39091. }
  39092. },
  39093. },
  39094. [
  39095. {
  39096. name: "Normal",
  39097. height: math.unit(8 + 4/12, "feet"),
  39098. default: true
  39099. },
  39100. ]
  39101. ))
  39102. characterMakers.push(() => makeCharacter(
  39103. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  39104. {
  39105. front: {
  39106. height: math.unit(5, "feet"),
  39107. weight: math.unit(225, "lb"),
  39108. name: "Front",
  39109. image: {
  39110. source: "./media/characters/cindy/front.svg",
  39111. extra: 1320/1250,
  39112. bottom: 42/1362
  39113. }
  39114. },
  39115. frontDressed: {
  39116. height: math.unit(5, "feet"),
  39117. weight: math.unit(225, "lb"),
  39118. name: "Front (Dressed)",
  39119. image: {
  39120. source: "./media/characters/cindy/front-dressed.svg",
  39121. extra: 1320/1250,
  39122. bottom: 42/1362
  39123. }
  39124. },
  39125. back: {
  39126. height: math.unit(5, "feet"),
  39127. weight: math.unit(225, "lb"),
  39128. name: "Back",
  39129. image: {
  39130. source: "./media/characters/cindy/back.svg",
  39131. extra: 1384/1346,
  39132. bottom: 14/1398
  39133. }
  39134. },
  39135. },
  39136. [
  39137. {
  39138. name: "Normal",
  39139. height: math.unit(5, "feet"),
  39140. default: true
  39141. },
  39142. ]
  39143. ))
  39144. characterMakers.push(() => makeCharacter(
  39145. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  39146. {
  39147. front: {
  39148. height: math.unit(6 + 9/12, "feet"),
  39149. weight: math.unit(440, "lb"),
  39150. name: "Front",
  39151. image: {
  39152. source: "./media/characters/wilbur-owen/front.svg",
  39153. extra: 1575/1448,
  39154. bottom: 72/1647
  39155. }
  39156. },
  39157. back: {
  39158. height: math.unit(6 + 9/12, "feet"),
  39159. weight: math.unit(440, "lb"),
  39160. name: "Back",
  39161. image: {
  39162. source: "./media/characters/wilbur-owen/back.svg",
  39163. extra: 1578/1445,
  39164. bottom: 36/1614
  39165. }
  39166. },
  39167. },
  39168. [
  39169. {
  39170. name: "Normal",
  39171. height: math.unit(6 + 9/12, "feet"),
  39172. default: true
  39173. },
  39174. ]
  39175. ))
  39176. characterMakers.push(() => makeCharacter(
  39177. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  39178. {
  39179. front: {
  39180. height: math.unit(6 + 5/12, "feet"),
  39181. weight: math.unit(650, "lb"),
  39182. name: "Front",
  39183. image: {
  39184. source: "./media/characters/keegan/front.svg",
  39185. extra: 2387/2198,
  39186. bottom: 33/2420
  39187. }
  39188. },
  39189. side: {
  39190. height: math.unit(6 + 5/12, "feet"),
  39191. weight: math.unit(650, "lb"),
  39192. name: "Side",
  39193. image: {
  39194. source: "./media/characters/keegan/side.svg",
  39195. extra: 2390/2202,
  39196. bottom: 47/2437
  39197. }
  39198. },
  39199. back: {
  39200. height: math.unit(6 + 5/12, "feet"),
  39201. weight: math.unit(650, "lb"),
  39202. name: "Back",
  39203. image: {
  39204. source: "./media/characters/keegan/back.svg",
  39205. extra: 2418/2268,
  39206. bottom: 15/2433
  39207. }
  39208. },
  39209. frontSfw: {
  39210. height: math.unit(6 + 5/12, "feet"),
  39211. weight: math.unit(650, "lb"),
  39212. name: "Front (SFW)",
  39213. image: {
  39214. source: "./media/characters/keegan/front-sfw.svg",
  39215. extra: 2387/2198,
  39216. bottom: 33/2420
  39217. }
  39218. },
  39219. beans: {
  39220. height: math.unit(1.85, "feet"),
  39221. name: "Beans",
  39222. image: {
  39223. source: "./media/characters/keegan/beans.svg"
  39224. }
  39225. },
  39226. },
  39227. [
  39228. {
  39229. name: "Normal",
  39230. height: math.unit(6 + 5/12, "feet"),
  39231. default: true
  39232. },
  39233. ]
  39234. ))
  39235. characterMakers.push(() => makeCharacter(
  39236. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  39237. {
  39238. front: {
  39239. height: math.unit(9, "feet"),
  39240. name: "Front",
  39241. image: {
  39242. source: "./media/characters/colton/front.svg",
  39243. extra: 1589/1326,
  39244. bottom: 139/1728
  39245. }
  39246. },
  39247. },
  39248. [
  39249. {
  39250. name: "Normal",
  39251. height: math.unit(9, "feet"),
  39252. default: true
  39253. },
  39254. ]
  39255. ))
  39256. characterMakers.push(() => makeCharacter(
  39257. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  39258. {
  39259. front: {
  39260. height: math.unit(2 + 9/12, "feet"),
  39261. name: "Front",
  39262. image: {
  39263. source: "./media/characters/bora/front.svg",
  39264. extra: 1265/1250,
  39265. bottom: 24/1289
  39266. }
  39267. },
  39268. },
  39269. [
  39270. {
  39271. name: "Normal",
  39272. height: math.unit(2 + 9/12, "feet"),
  39273. default: true
  39274. },
  39275. ]
  39276. ))
  39277. characterMakers.push(() => makeCharacter(
  39278. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  39279. {
  39280. front: {
  39281. height: math.unit(8, "feet"),
  39282. name: "Front",
  39283. image: {
  39284. source: "./media/characters/myu-myu/front.svg",
  39285. extra: 1949/1857,
  39286. bottom: 90/2039
  39287. }
  39288. },
  39289. },
  39290. [
  39291. {
  39292. name: "Normal",
  39293. height: math.unit(8, "feet"),
  39294. default: true
  39295. },
  39296. {
  39297. name: "Big",
  39298. height: math.unit(15, "feet")
  39299. },
  39300. {
  39301. name: "BIG",
  39302. height: math.unit(25, "feet")
  39303. },
  39304. ]
  39305. ))
  39306. characterMakers.push(() => makeCharacter(
  39307. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  39308. {
  39309. side: {
  39310. height: math.unit(7 + 5/12, "feet"),
  39311. weight: math.unit(2800, "lb"),
  39312. name: "Side",
  39313. image: {
  39314. source: "./media/characters/haloren/side.svg",
  39315. extra: 1793/409,
  39316. bottom: 59/1852
  39317. }
  39318. },
  39319. frontPaw: {
  39320. height: math.unit(2.36, "feet"),
  39321. name: "Front paw",
  39322. image: {
  39323. source: "./media/characters/haloren/front-paw.svg"
  39324. }
  39325. },
  39326. hindPaw: {
  39327. height: math.unit(3.18, "feet"),
  39328. name: "Hind paw",
  39329. image: {
  39330. source: "./media/characters/haloren/hind-paw.svg"
  39331. }
  39332. },
  39333. maw: {
  39334. height: math.unit(5.05, "feet"),
  39335. name: "Maw",
  39336. image: {
  39337. source: "./media/characters/haloren/maw.svg"
  39338. }
  39339. },
  39340. dick: {
  39341. height: math.unit(2.90, "feet"),
  39342. name: "Dick",
  39343. image: {
  39344. source: "./media/characters/haloren/dick.svg"
  39345. }
  39346. },
  39347. },
  39348. [
  39349. {
  39350. name: "Normal",
  39351. height: math.unit(7 + 5/12, "feet"),
  39352. default: true
  39353. },
  39354. {
  39355. name: "Enhanced",
  39356. height: math.unit(14 + 3/12, "feet")
  39357. },
  39358. ]
  39359. ))
  39360. characterMakers.push(() => makeCharacter(
  39361. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  39362. {
  39363. front: {
  39364. height: math.unit(171, "cm"),
  39365. name: "Front",
  39366. image: {
  39367. source: "./media/characters/kimmy/front.svg",
  39368. extra: 1491/1435,
  39369. bottom: 53/1544
  39370. }
  39371. },
  39372. },
  39373. [
  39374. {
  39375. name: "Small",
  39376. height: math.unit(9, "cm")
  39377. },
  39378. {
  39379. name: "Normal",
  39380. height: math.unit(171, "cm"),
  39381. default: true
  39382. },
  39383. ]
  39384. ))
  39385. characterMakers.push(() => makeCharacter(
  39386. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39387. {
  39388. front: {
  39389. height: math.unit(8, "feet"),
  39390. weight: math.unit(300, "lb"),
  39391. name: "Front",
  39392. image: {
  39393. source: "./media/characters/galeboomer/front.svg",
  39394. extra: 4651/4415,
  39395. bottom: 162/4813
  39396. }
  39397. },
  39398. back: {
  39399. height: math.unit(8, "feet"),
  39400. weight: math.unit(300, "lb"),
  39401. name: "Back",
  39402. image: {
  39403. source: "./media/characters/galeboomer/back.svg",
  39404. extra: 4544/4314,
  39405. bottom: 16/4560
  39406. }
  39407. },
  39408. frontAlt: {
  39409. height: math.unit(8, "feet"),
  39410. weight: math.unit(300, "lb"),
  39411. name: "Front (Alt)",
  39412. image: {
  39413. source: "./media/characters/galeboomer/front-alt.svg",
  39414. extra: 4458/4228,
  39415. bottom: 68/4526
  39416. }
  39417. },
  39418. maw: {
  39419. height: math.unit(1.2, "feet"),
  39420. name: "Maw",
  39421. image: {
  39422. source: "./media/characters/galeboomer/maw.svg"
  39423. }
  39424. },
  39425. },
  39426. [
  39427. {
  39428. name: "Normal",
  39429. height: math.unit(8, "feet"),
  39430. default: true
  39431. },
  39432. ]
  39433. ))
  39434. characterMakers.push(() => makeCharacter(
  39435. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39436. {
  39437. front: {
  39438. height: math.unit(5 + 9/12, "feet"),
  39439. weight: math.unit(120, "lb"),
  39440. name: "Front",
  39441. image: {
  39442. source: "./media/characters/chyr/front.svg",
  39443. extra: 1323/1254,
  39444. bottom: 63/1386
  39445. }
  39446. },
  39447. back: {
  39448. height: math.unit(5 + 9/12, "feet"),
  39449. weight: math.unit(120, "lb"),
  39450. name: "Back",
  39451. image: {
  39452. source: "./media/characters/chyr/back.svg",
  39453. extra: 1323/1252,
  39454. bottom: 48/1371
  39455. }
  39456. },
  39457. },
  39458. [
  39459. {
  39460. name: "Normal",
  39461. height: math.unit(5 + 9/12, "feet"),
  39462. default: true
  39463. },
  39464. ]
  39465. ))
  39466. characterMakers.push(() => makeCharacter(
  39467. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39468. {
  39469. front: {
  39470. height: math.unit(7, "feet"),
  39471. weight: math.unit(310, "lb"),
  39472. name: "Front",
  39473. image: {
  39474. source: "./media/characters/solarus/front.svg",
  39475. extra: 2415/2021,
  39476. bottom: 103/2518
  39477. }
  39478. },
  39479. back: {
  39480. height: math.unit(7, "feet"),
  39481. weight: math.unit(310, "lb"),
  39482. name: "Back",
  39483. image: {
  39484. source: "./media/characters/solarus/back.svg",
  39485. extra: 2463/2089,
  39486. bottom: 79/2542
  39487. }
  39488. },
  39489. },
  39490. [
  39491. {
  39492. name: "Normal",
  39493. height: math.unit(7, "feet"),
  39494. default: true
  39495. },
  39496. ]
  39497. ))
  39498. characterMakers.push(() => makeCharacter(
  39499. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39500. {
  39501. front: {
  39502. height: math.unit(16, "feet"),
  39503. name: "Front",
  39504. image: {
  39505. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39506. extra: 1844/1780,
  39507. bottom: 58/1902
  39508. }
  39509. },
  39510. winterCoat: {
  39511. height: math.unit(16, "feet"),
  39512. name: "Winter Coat",
  39513. image: {
  39514. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39515. extra: 1807/1775,
  39516. bottom: 69/1876
  39517. }
  39518. },
  39519. },
  39520. [
  39521. {
  39522. name: "Normal",
  39523. height: math.unit(16, "feet"),
  39524. default: true
  39525. },
  39526. {
  39527. name: "Chicago Size",
  39528. height: math.unit(560, "feet")
  39529. },
  39530. ]
  39531. ))
  39532. characterMakers.push(() => makeCharacter(
  39533. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39534. {
  39535. front: {
  39536. height: math.unit(11 + 6/12, "feet"),
  39537. weight: math.unit(1366, "lb"),
  39538. name: "Front",
  39539. image: {
  39540. source: "./media/characters/lexor/front.svg",
  39541. extra: 1560/1481,
  39542. bottom: 211/1771
  39543. }
  39544. },
  39545. back: {
  39546. height: math.unit(11 + 6/12, "feet"),
  39547. weight: math.unit(1366, "lb"),
  39548. name: "Back",
  39549. image: {
  39550. source: "./media/characters/lexor/back.svg",
  39551. extra: 1614/1533,
  39552. bottom: 76/1690
  39553. }
  39554. },
  39555. maw: {
  39556. height: math.unit(3, "feet"),
  39557. name: "Maw",
  39558. image: {
  39559. source: "./media/characters/lexor/maw.svg"
  39560. }
  39561. },
  39562. dick: {
  39563. height: math.unit(2.59, "feet"),
  39564. name: "Dick",
  39565. image: {
  39566. source: "./media/characters/lexor/dick.svg"
  39567. }
  39568. },
  39569. },
  39570. [
  39571. {
  39572. name: "Normal",
  39573. height: math.unit(11 + 6/12, "feet"),
  39574. default: true
  39575. },
  39576. ]
  39577. ))
  39578. characterMakers.push(() => makeCharacter(
  39579. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39580. {
  39581. front: {
  39582. height: math.unit(5 + 8/12, "feet"),
  39583. name: "Front",
  39584. image: {
  39585. source: "./media/characters/magnum/front.svg",
  39586. extra: 942/855,
  39587. bottom: 26/968
  39588. }
  39589. },
  39590. },
  39591. [
  39592. {
  39593. name: "Normal",
  39594. height: math.unit(5 + 8/12, "feet"),
  39595. default: true
  39596. },
  39597. ]
  39598. ))
  39599. characterMakers.push(() => makeCharacter(
  39600. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39601. {
  39602. front: {
  39603. height: math.unit(18 + 4/12, "feet"),
  39604. weight: math.unit(1500, "kg"),
  39605. name: "Front",
  39606. image: {
  39607. source: "./media/characters/solas-sharpsman/front.svg",
  39608. extra: 1698/1589,
  39609. bottom: 0/1698
  39610. }
  39611. },
  39612. },
  39613. [
  39614. {
  39615. name: "Normal",
  39616. height: math.unit(18 + 4/12, "feet"),
  39617. default: true
  39618. },
  39619. ]
  39620. ))
  39621. characterMakers.push(() => makeCharacter(
  39622. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39623. {
  39624. front: {
  39625. height: math.unit(5 + 5/12, "feet"),
  39626. weight: math.unit(180, "lb"),
  39627. name: "Front",
  39628. image: {
  39629. source: "./media/characters/october/front.svg",
  39630. extra: 1800/1650,
  39631. bottom: 0/1800
  39632. }
  39633. },
  39634. frontNsfw: {
  39635. height: math.unit(5 + 5/12, "feet"),
  39636. weight: math.unit(180, "lb"),
  39637. name: "Front (NSFW)",
  39638. image: {
  39639. source: "./media/characters/october/front-nsfw.svg",
  39640. extra: 1392/1307,
  39641. bottom: 42/1434
  39642. }
  39643. },
  39644. },
  39645. [
  39646. {
  39647. name: "Normal",
  39648. height: math.unit(5 + 5/12, "feet"),
  39649. default: true
  39650. },
  39651. ]
  39652. ))
  39653. characterMakers.push(() => makeCharacter(
  39654. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39655. {
  39656. front: {
  39657. height: math.unit(8 + 6/12, "feet"),
  39658. name: "Front",
  39659. image: {
  39660. source: "./media/characters/essynkardi/front.svg",
  39661. extra: 1541/1457,
  39662. bottom: 47/1588
  39663. }
  39664. },
  39665. },
  39666. [
  39667. {
  39668. name: "Normal",
  39669. height: math.unit(8 + 6/12, "feet"),
  39670. default: true
  39671. },
  39672. ]
  39673. ))
  39674. characterMakers.push(() => makeCharacter(
  39675. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39676. {
  39677. front: {
  39678. height: math.unit(6 + 6/12, "feet"),
  39679. weight: math.unit(7, "lb"),
  39680. name: "Front",
  39681. image: {
  39682. source: "./media/characters/icky/front.svg",
  39683. extra: 813/782,
  39684. bottom: 66/879
  39685. }
  39686. },
  39687. back: {
  39688. height: math.unit(6 + 6/12, "feet"),
  39689. weight: math.unit(7, "lb"),
  39690. name: "Back",
  39691. image: {
  39692. source: "./media/characters/icky/back.svg",
  39693. extra: 754/735,
  39694. bottom: 56/810
  39695. }
  39696. },
  39697. },
  39698. [
  39699. {
  39700. name: "Normal",
  39701. height: math.unit(6 + 6/12, "feet"),
  39702. default: true
  39703. },
  39704. ]
  39705. ))
  39706. characterMakers.push(() => makeCharacter(
  39707. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39708. {
  39709. front: {
  39710. height: math.unit(15, "feet"),
  39711. name: "Front",
  39712. image: {
  39713. source: "./media/characters/rojas/front.svg",
  39714. extra: 1462/1408,
  39715. bottom: 95/1557
  39716. }
  39717. },
  39718. back: {
  39719. height: math.unit(15, "feet"),
  39720. name: "Back",
  39721. image: {
  39722. source: "./media/characters/rojas/back.svg",
  39723. extra: 1023/954,
  39724. bottom: 28/1051
  39725. }
  39726. },
  39727. },
  39728. [
  39729. {
  39730. name: "Normal",
  39731. height: math.unit(15, "feet"),
  39732. default: true
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39738. {
  39739. frontHuman: {
  39740. height: math.unit(5 + 7/12, "feet"),
  39741. name: "Front (Human)",
  39742. image: {
  39743. source: "./media/characters/alek-dryagan/front-human.svg",
  39744. extra: 1687/1667,
  39745. bottom: 69/1756
  39746. }
  39747. },
  39748. backHuman: {
  39749. height: math.unit(5 + 7/12, "feet"),
  39750. name: "Back (Human)",
  39751. image: {
  39752. source: "./media/characters/alek-dryagan/back-human.svg",
  39753. extra: 1670/1649,
  39754. bottom: 65/1735
  39755. }
  39756. },
  39757. frontDemi: {
  39758. height: math.unit(65, "feet"),
  39759. name: "Front (Demi)",
  39760. image: {
  39761. source: "./media/characters/alek-dryagan/front-demi.svg",
  39762. extra: 1669/1642,
  39763. bottom: 49/1718
  39764. }
  39765. },
  39766. backDemi: {
  39767. height: math.unit(65, "feet"),
  39768. name: "Back (Demi)",
  39769. image: {
  39770. source: "./media/characters/alek-dryagan/back-demi.svg",
  39771. extra: 1658/1637,
  39772. bottom: 40/1698
  39773. }
  39774. },
  39775. mawHuman: {
  39776. height: math.unit(0.3, "feet"),
  39777. name: "Maw (Human)",
  39778. image: {
  39779. source: "./media/characters/alek-dryagan/maw-human.svg"
  39780. }
  39781. },
  39782. mawDemi: {
  39783. height: math.unit(3.8, "feet"),
  39784. name: "Maw (Demi)",
  39785. image: {
  39786. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39787. }
  39788. },
  39789. },
  39790. [
  39791. {
  39792. name: "Normal",
  39793. height: math.unit(5 + 7/12, "feet"),
  39794. default: true
  39795. },
  39796. ]
  39797. ))
  39798. characterMakers.push(() => makeCharacter(
  39799. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39800. {
  39801. frontHuman: {
  39802. height: math.unit(5 + 2/12, "feet"),
  39803. name: "Front (Human)",
  39804. image: {
  39805. source: "./media/characters/gen/front-human.svg",
  39806. extra: 1627/1538,
  39807. bottom: 71/1698
  39808. }
  39809. },
  39810. backHuman: {
  39811. height: math.unit(5 + 2/12, "feet"),
  39812. name: "Back (Human)",
  39813. image: {
  39814. source: "./media/characters/gen/back-human.svg",
  39815. extra: 1638/1548,
  39816. bottom: 69/1707
  39817. }
  39818. },
  39819. frontDemi: {
  39820. height: math.unit(5 + 2/12, "feet"),
  39821. name: "Front (Demi)",
  39822. image: {
  39823. source: "./media/characters/gen/front-demi.svg",
  39824. extra: 1627/1538,
  39825. bottom: 71/1698
  39826. }
  39827. },
  39828. backDemi: {
  39829. height: math.unit(5 + 2/12, "feet"),
  39830. name: "Back (Demi)",
  39831. image: {
  39832. source: "./media/characters/gen/back-demi.svg",
  39833. extra: 1638/1548,
  39834. bottom: 69/1707
  39835. }
  39836. },
  39837. },
  39838. [
  39839. {
  39840. name: "Normal",
  39841. height: math.unit(5 + 2/12, "feet"),
  39842. default: true
  39843. },
  39844. ]
  39845. ))
  39846. characterMakers.push(() => makeCharacter(
  39847. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39848. {
  39849. frontImp: {
  39850. height: math.unit(1 + 11/12, "feet"),
  39851. name: "Front (Imp)",
  39852. image: {
  39853. source: "./media/characters/max-kobold/front-imp.svg",
  39854. extra: 1238/1134,
  39855. bottom: 81/1319
  39856. }
  39857. },
  39858. backImp: {
  39859. height: math.unit(1 + 11/12, "feet"),
  39860. name: "Back (Imp)",
  39861. image: {
  39862. source: "./media/characters/max-kobold/back-imp.svg",
  39863. extra: 1334/1175,
  39864. bottom: 34/1368
  39865. }
  39866. },
  39867. frontDemi: {
  39868. height: math.unit(5 + 9/12, "feet"),
  39869. name: "Front (Demi)",
  39870. image: {
  39871. source: "./media/characters/max-kobold/front-demi.svg",
  39872. extra: 1715/1685,
  39873. bottom: 54/1769
  39874. }
  39875. },
  39876. backDemi: {
  39877. height: math.unit(5 + 9/12, "feet"),
  39878. name: "Back (Demi)",
  39879. image: {
  39880. source: "./media/characters/max-kobold/back-demi.svg",
  39881. extra: 1752/1729,
  39882. bottom: 41/1793
  39883. }
  39884. },
  39885. handImp: {
  39886. height: math.unit(0.45, "feet"),
  39887. name: "Hand (Imp)",
  39888. image: {
  39889. source: "./media/characters/max-kobold/hand.svg"
  39890. }
  39891. },
  39892. pawImp: {
  39893. height: math.unit(0.46, "feet"),
  39894. name: "Paw (Imp)",
  39895. image: {
  39896. source: "./media/characters/max-kobold/paw.svg"
  39897. }
  39898. },
  39899. handDemi: {
  39900. height: math.unit(0.80, "feet"),
  39901. name: "Hand (Demi)",
  39902. image: {
  39903. source: "./media/characters/max-kobold/hand.svg"
  39904. }
  39905. },
  39906. pawDemi: {
  39907. height: math.unit(1.1, "feet"),
  39908. name: "Paw (Demi)",
  39909. image: {
  39910. source: "./media/characters/max-kobold/paw.svg"
  39911. }
  39912. },
  39913. headImp: {
  39914. height: math.unit(1.33, "feet"),
  39915. name: "Head (Imp)",
  39916. image: {
  39917. source: "./media/characters/max-kobold/head-imp.svg"
  39918. }
  39919. },
  39920. mawImp: {
  39921. height: math.unit(0.75, "feet"),
  39922. name: "Maw (Imp)",
  39923. image: {
  39924. source: "./media/characters/max-kobold/maw-imp.svg"
  39925. }
  39926. },
  39927. mawDemi: {
  39928. height: math.unit(0.42, "feet"),
  39929. name: "Maw (Demi)",
  39930. image: {
  39931. source: "./media/characters/max-kobold/maw-demi.svg"
  39932. }
  39933. },
  39934. },
  39935. [
  39936. {
  39937. name: "Normal",
  39938. height: math.unit(1 + 11/12, "feet"),
  39939. default: true
  39940. },
  39941. ]
  39942. ))
  39943. characterMakers.push(() => makeCharacter(
  39944. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39945. {
  39946. front: {
  39947. height: math.unit(7 + 5/12, "feet"),
  39948. name: "Front",
  39949. image: {
  39950. source: "./media/characters/carbon/front.svg",
  39951. extra: 1754/1689,
  39952. bottom: 65/1819
  39953. }
  39954. },
  39955. back: {
  39956. height: math.unit(7 + 5/12, "feet"),
  39957. name: "Back",
  39958. image: {
  39959. source: "./media/characters/carbon/back.svg",
  39960. extra: 1762/1695,
  39961. bottom: 24/1786
  39962. }
  39963. },
  39964. frontGigantamax: {
  39965. height: math.unit(150, "feet"),
  39966. name: "Front (Gigantamax)",
  39967. image: {
  39968. source: "./media/characters/carbon/front-gigantamax.svg",
  39969. extra: 1826/1669,
  39970. bottom: 59/1885
  39971. }
  39972. },
  39973. backGigantamax: {
  39974. height: math.unit(150, "feet"),
  39975. name: "Back (Gigantamax)",
  39976. image: {
  39977. source: "./media/characters/carbon/back-gigantamax.svg",
  39978. extra: 1796/1653,
  39979. bottom: 53/1849
  39980. }
  39981. },
  39982. maw: {
  39983. height: math.unit(0.48, "feet"),
  39984. name: "Maw",
  39985. image: {
  39986. source: "./media/characters/carbon/maw.svg"
  39987. }
  39988. },
  39989. mawGigantamax: {
  39990. height: math.unit(7.5, "feet"),
  39991. name: "Maw (Gigantamax)",
  39992. image: {
  39993. source: "./media/characters/carbon/maw-gigantamax.svg"
  39994. }
  39995. },
  39996. },
  39997. [
  39998. {
  39999. name: "Normal",
  40000. height: math.unit(7 + 5/12, "feet"),
  40001. default: true
  40002. },
  40003. ]
  40004. ))
  40005. characterMakers.push(() => makeCharacter(
  40006. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  40007. {
  40008. front: {
  40009. height: math.unit(6, "feet"),
  40010. name: "Front",
  40011. image: {
  40012. source: "./media/characters/maverick/front.svg",
  40013. extra: 1672/1661,
  40014. bottom: 85/1757
  40015. }
  40016. },
  40017. back: {
  40018. height: math.unit(6, "feet"),
  40019. name: "Back",
  40020. image: {
  40021. source: "./media/characters/maverick/back.svg",
  40022. extra: 1642/1631,
  40023. bottom: 38/1680
  40024. }
  40025. },
  40026. },
  40027. [
  40028. {
  40029. name: "Normal",
  40030. height: math.unit(6, "feet"),
  40031. default: true
  40032. },
  40033. ]
  40034. ))
  40035. characterMakers.push(() => makeCharacter(
  40036. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  40037. {
  40038. front: {
  40039. height: math.unit(15, "feet"),
  40040. weight: math.unit(615, "lb"),
  40041. name: "Front",
  40042. image: {
  40043. source: "./media/characters/grockle/front.svg",
  40044. extra: 1535/1427,
  40045. bottom: 56/1591
  40046. }
  40047. },
  40048. },
  40049. [
  40050. {
  40051. name: "Normal",
  40052. height: math.unit(15, "feet"),
  40053. default: true
  40054. },
  40055. {
  40056. name: "Large",
  40057. height: math.unit(150, "feet")
  40058. },
  40059. {
  40060. name: "Macro",
  40061. height: math.unit(1876, "feet")
  40062. },
  40063. {
  40064. name: "Mega Macro",
  40065. height: math.unit(121940, "feet")
  40066. },
  40067. {
  40068. name: "Giga Macro",
  40069. height: math.unit(750, "km")
  40070. },
  40071. {
  40072. name: "Tera Macro",
  40073. height: math.unit(750000, "km")
  40074. },
  40075. {
  40076. name: "Galactic",
  40077. height: math.unit(1.4e5, "km")
  40078. },
  40079. {
  40080. name: "Godlike",
  40081. height: math.unit(9.8e280, "galaxies")
  40082. },
  40083. ]
  40084. ))
  40085. characterMakers.push(() => makeCharacter(
  40086. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  40087. {
  40088. front: {
  40089. height: math.unit(11, "meters"),
  40090. weight: math.unit(20, "tonnes"),
  40091. name: "Front",
  40092. image: {
  40093. source: "./media/characters/alistair/front.svg",
  40094. extra: 1265/1009,
  40095. bottom: 93/1358
  40096. }
  40097. },
  40098. },
  40099. [
  40100. {
  40101. name: "Normal",
  40102. height: math.unit(11, "meters"),
  40103. default: true
  40104. },
  40105. ]
  40106. ))
  40107. characterMakers.push(() => makeCharacter(
  40108. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  40109. {
  40110. front: {
  40111. height: math.unit(5 + 8/12, "feet"),
  40112. name: "Front",
  40113. image: {
  40114. source: "./media/characters/haruka/front.svg",
  40115. extra: 2012/1952,
  40116. bottom: 0/2012
  40117. }
  40118. },
  40119. },
  40120. [
  40121. {
  40122. name: "Normal",
  40123. height: math.unit(5 + 8/12, "feet"),
  40124. default: true
  40125. },
  40126. ]
  40127. ))
  40128. characterMakers.push(() => makeCharacter(
  40129. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  40130. {
  40131. back: {
  40132. height: math.unit(9, "feet"),
  40133. name: "Back",
  40134. image: {
  40135. source: "./media/characters/vivian-sylveon/back.svg",
  40136. extra: 1853/1714,
  40137. bottom: 0/1853
  40138. }
  40139. },
  40140. hyper: {
  40141. height: math.unit(5.58, "feet"),
  40142. name: "Hyper",
  40143. preyCapacity: math.unit(2.80616218797, "m^3"),
  40144. image: {
  40145. source: "./media/characters/vivian-sylveon/hyper.svg",
  40146. extra: 999/676,
  40147. bottom: 697/1696
  40148. },
  40149. },
  40150. paw: {
  40151. height: math.unit(1.8, "feet"),
  40152. name: "Paw",
  40153. image: {
  40154. source: "./media/characters/vivian-sylveon/paw.svg"
  40155. }
  40156. },
  40157. danger: {
  40158. height: math.unit(7.5, "feet"),
  40159. name: "DANGER",
  40160. image: {
  40161. source: "./media/characters/vivian-sylveon/danger.svg"
  40162. }
  40163. },
  40164. },
  40165. [
  40166. {
  40167. name: "Normal",
  40168. height: math.unit(9, "feet"),
  40169. default: true
  40170. },
  40171. {
  40172. name: "Macro",
  40173. height: math.unit(500, "feet")
  40174. },
  40175. {
  40176. name: "Megamacro",
  40177. height: math.unit(600, "miles")
  40178. },
  40179. {
  40180. name: "Gigamacro",
  40181. height: math.unit(30000, "miles")
  40182. },
  40183. ]
  40184. ))
  40185. characterMakers.push(() => makeCharacter(
  40186. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  40187. {
  40188. anthro: {
  40189. height: math.unit(5 + 10/12, "feet"),
  40190. weight: math.unit(100, "lb"),
  40191. name: "Anthro",
  40192. image: {
  40193. source: "./media/characters/daiki/anthro.svg",
  40194. extra: 1115/1027,
  40195. bottom: 69/1184
  40196. }
  40197. },
  40198. feral: {
  40199. height: math.unit(200, "feet"),
  40200. name: "Feral",
  40201. image: {
  40202. source: "./media/characters/daiki/feral.svg",
  40203. extra: 1256/313,
  40204. bottom: 39/1295
  40205. }
  40206. },
  40207. feralHead: {
  40208. height: math.unit(171, "feet"),
  40209. name: "Feral Head",
  40210. image: {
  40211. source: "./media/characters/daiki/feral-head.svg"
  40212. }
  40213. },
  40214. manaDragon: {
  40215. height: math.unit(170, "meters"),
  40216. name: "Mana-dragon",
  40217. image: {
  40218. source: "./media/characters/daiki/mana-dragon.svg",
  40219. extra: 763/420,
  40220. bottom: 97/860
  40221. }
  40222. },
  40223. },
  40224. [
  40225. {
  40226. name: "Normal",
  40227. height: math.unit(5 + 10/12, "feet"),
  40228. default: true
  40229. },
  40230. ]
  40231. ))
  40232. characterMakers.push(() => makeCharacter(
  40233. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  40234. {
  40235. fullyEquippedFront: {
  40236. height: math.unit(3 + 1/12, "feet"),
  40237. weight: math.unit(24, "lb"),
  40238. name: "Fully Equipped (Front)",
  40239. image: {
  40240. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  40241. extra: 687/605,
  40242. bottom: 18/705
  40243. }
  40244. },
  40245. fullyEquippedBack: {
  40246. height: math.unit(3 + 1/12, "feet"),
  40247. weight: math.unit(24, "lb"),
  40248. name: "Fully Equipped (Back)",
  40249. image: {
  40250. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  40251. extra: 689/590,
  40252. bottom: 18/707
  40253. }
  40254. },
  40255. dailyWear: {
  40256. height: math.unit(3 + 1/12, "feet"),
  40257. weight: math.unit(24, "lb"),
  40258. name: "Daily Wear",
  40259. image: {
  40260. source: "./media/characters/tea-spot/daily-wear.svg",
  40261. extra: 701/620,
  40262. bottom: 21/722
  40263. }
  40264. },
  40265. maidWork: {
  40266. height: math.unit(3 + 1/12, "feet"),
  40267. weight: math.unit(24, "lb"),
  40268. name: "Maid Work",
  40269. image: {
  40270. source: "./media/characters/tea-spot/maid-work.svg",
  40271. extra: 693/609,
  40272. bottom: 15/708
  40273. }
  40274. },
  40275. },
  40276. [
  40277. {
  40278. name: "Normal",
  40279. height: math.unit(3 + 1/12, "feet"),
  40280. default: true
  40281. },
  40282. ]
  40283. ))
  40284. characterMakers.push(() => makeCharacter(
  40285. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  40286. {
  40287. front: {
  40288. height: math.unit(175, "cm"),
  40289. weight: math.unit(75, "kg"),
  40290. name: "Front",
  40291. image: {
  40292. source: "./media/characters/chee/front.svg",
  40293. extra: 1796/1740,
  40294. bottom: 40/1836
  40295. }
  40296. },
  40297. },
  40298. [
  40299. {
  40300. name: "Micro-Micro",
  40301. height: math.unit(1, "nm")
  40302. },
  40303. {
  40304. name: "Micro-erst",
  40305. height: math.unit(1, "micrometer")
  40306. },
  40307. {
  40308. name: "Micro-er",
  40309. height: math.unit(1, "cm")
  40310. },
  40311. {
  40312. name: "Normal",
  40313. height: math.unit(175, "cm"),
  40314. default: true
  40315. },
  40316. {
  40317. name: "Macro",
  40318. height: math.unit(100, "m")
  40319. },
  40320. {
  40321. name: "Macro-er",
  40322. height: math.unit(1, "km")
  40323. },
  40324. {
  40325. name: "Macro-erst",
  40326. height: math.unit(10, "km")
  40327. },
  40328. {
  40329. name: "Macro-Macro",
  40330. height: math.unit(100, "km")
  40331. },
  40332. ]
  40333. ))
  40334. characterMakers.push(() => makeCharacter(
  40335. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  40336. {
  40337. front: {
  40338. height: math.unit(11 + 9/12, "feet"),
  40339. weight: math.unit(935, "lb"),
  40340. name: "Front",
  40341. image: {
  40342. source: "./media/characters/kingsley/front.svg",
  40343. extra: 1803/1674,
  40344. bottom: 127/1930
  40345. }
  40346. },
  40347. frontNude: {
  40348. height: math.unit(11 + 9/12, "feet"),
  40349. weight: math.unit(935, "lb"),
  40350. name: "Front (Nude)",
  40351. image: {
  40352. source: "./media/characters/kingsley/front-nude.svg",
  40353. extra: 1803/1674,
  40354. bottom: 127/1930
  40355. }
  40356. },
  40357. },
  40358. [
  40359. {
  40360. name: "Normal",
  40361. height: math.unit(11 + 9/12, "feet"),
  40362. default: true
  40363. },
  40364. ]
  40365. ))
  40366. characterMakers.push(() => makeCharacter(
  40367. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  40368. {
  40369. side: {
  40370. height: math.unit(9, "feet"),
  40371. name: "Side",
  40372. image: {
  40373. source: "./media/characters/rymel/side.svg",
  40374. extra: 792/469,
  40375. bottom: 121/913
  40376. }
  40377. },
  40378. maw: {
  40379. height: math.unit(2.4, "meters"),
  40380. name: "Maw",
  40381. image: {
  40382. source: "./media/characters/rymel/maw.svg"
  40383. }
  40384. },
  40385. },
  40386. [
  40387. {
  40388. name: "House Drake",
  40389. height: math.unit(2, "feet")
  40390. },
  40391. {
  40392. name: "Reduced",
  40393. height: math.unit(4.5, "feet")
  40394. },
  40395. {
  40396. name: "Normal",
  40397. height: math.unit(9, "feet"),
  40398. default: true
  40399. },
  40400. ]
  40401. ))
  40402. characterMakers.push(() => makeCharacter(
  40403. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40404. {
  40405. front: {
  40406. height: math.unit(1.74, "meters"),
  40407. weight: math.unit(55, "kg"),
  40408. name: "Front",
  40409. image: {
  40410. source: "./media/characters/rubus/front.svg",
  40411. extra: 1894/1742,
  40412. bottom: 44/1938
  40413. }
  40414. },
  40415. },
  40416. [
  40417. {
  40418. name: "Normal",
  40419. height: math.unit(1.74, "meters"),
  40420. default: true
  40421. },
  40422. ]
  40423. ))
  40424. characterMakers.push(() => makeCharacter(
  40425. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40426. {
  40427. front: {
  40428. height: math.unit(5 + 2/12, "feet"),
  40429. weight: math.unit(112, "lb"),
  40430. name: "Front",
  40431. image: {
  40432. source: "./media/characters/cassie-kingston/front.svg",
  40433. extra: 1438/1390,
  40434. bottom: 47/1485
  40435. }
  40436. },
  40437. },
  40438. [
  40439. {
  40440. name: "Normal",
  40441. height: math.unit(5 + 2/12, "feet"),
  40442. default: true
  40443. },
  40444. {
  40445. name: "Macro",
  40446. height: math.unit(128, "feet")
  40447. },
  40448. {
  40449. name: "Megamacro",
  40450. height: math.unit(2.56, "miles")
  40451. },
  40452. ]
  40453. ))
  40454. characterMakers.push(() => makeCharacter(
  40455. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40456. {
  40457. front: {
  40458. height: math.unit(7, "feet"),
  40459. name: "Front",
  40460. image: {
  40461. source: "./media/characters/fox/front.svg",
  40462. extra: 1798/1703,
  40463. bottom: 55/1853
  40464. }
  40465. },
  40466. back: {
  40467. height: math.unit(7, "feet"),
  40468. name: "Back",
  40469. image: {
  40470. source: "./media/characters/fox/back.svg",
  40471. extra: 1748/1649,
  40472. bottom: 32/1780
  40473. }
  40474. },
  40475. head: {
  40476. height: math.unit(1.95, "feet"),
  40477. name: "Head",
  40478. image: {
  40479. source: "./media/characters/fox/head.svg"
  40480. }
  40481. },
  40482. dick: {
  40483. height: math.unit(1.33, "feet"),
  40484. name: "Dick",
  40485. image: {
  40486. source: "./media/characters/fox/dick.svg"
  40487. }
  40488. },
  40489. foot: {
  40490. height: math.unit(1, "feet"),
  40491. name: "Foot",
  40492. image: {
  40493. source: "./media/characters/fox/foot.svg"
  40494. }
  40495. },
  40496. paw: {
  40497. height: math.unit(0.92, "feet"),
  40498. name: "Paw",
  40499. image: {
  40500. source: "./media/characters/fox/paw.svg"
  40501. }
  40502. },
  40503. },
  40504. [
  40505. {
  40506. name: "Small",
  40507. height: math.unit(3, "inches")
  40508. },
  40509. {
  40510. name: "\"Realistic\"",
  40511. height: math.unit(7, "feet")
  40512. },
  40513. {
  40514. name: "Normal",
  40515. height: math.unit(150, "feet"),
  40516. default: true
  40517. },
  40518. {
  40519. name: "BIG",
  40520. height: math.unit(1200, "feet")
  40521. },
  40522. {
  40523. name: "👀",
  40524. height: math.unit(5, "miles")
  40525. },
  40526. {
  40527. name: "👀👀👀",
  40528. height: math.unit(64, "miles")
  40529. },
  40530. ]
  40531. ))
  40532. characterMakers.push(() => makeCharacter(
  40533. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40534. {
  40535. front: {
  40536. height: math.unit(625, "feet"),
  40537. name: "Front",
  40538. image: {
  40539. source: "./media/characters/asonja-rossa/front.svg",
  40540. extra: 1833/1686,
  40541. bottom: 24/1857
  40542. }
  40543. },
  40544. back: {
  40545. height: math.unit(625, "feet"),
  40546. name: "Back",
  40547. image: {
  40548. source: "./media/characters/asonja-rossa/back.svg",
  40549. extra: 1852/1753,
  40550. bottom: 26/1878
  40551. }
  40552. },
  40553. },
  40554. [
  40555. {
  40556. name: "Macro",
  40557. height: math.unit(625, "feet"),
  40558. default: true
  40559. },
  40560. ]
  40561. ))
  40562. characterMakers.push(() => makeCharacter(
  40563. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40564. {
  40565. side: {
  40566. height: math.unit(8, "feet"),
  40567. name: "Side",
  40568. image: {
  40569. source: "./media/characters/rezukii/side.svg",
  40570. extra: 979/542,
  40571. bottom: 87/1066
  40572. }
  40573. },
  40574. sitting: {
  40575. height: math.unit(14.6, "feet"),
  40576. name: "Sitting",
  40577. image: {
  40578. source: "./media/characters/rezukii/sitting.svg",
  40579. extra: 1023/813,
  40580. bottom: 45/1068
  40581. }
  40582. },
  40583. },
  40584. [
  40585. {
  40586. name: "Tiny",
  40587. height: math.unit(2, "feet")
  40588. },
  40589. {
  40590. name: "Smol",
  40591. height: math.unit(4, "feet")
  40592. },
  40593. {
  40594. name: "Normal",
  40595. height: math.unit(8, "feet"),
  40596. default: true
  40597. },
  40598. {
  40599. name: "Big",
  40600. height: math.unit(12, "feet")
  40601. },
  40602. {
  40603. name: "Macro",
  40604. height: math.unit(30, "feet")
  40605. },
  40606. ]
  40607. ))
  40608. characterMakers.push(() => makeCharacter(
  40609. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40610. {
  40611. front: {
  40612. height: math.unit(14, "feet"),
  40613. weight: math.unit(9.5, "tonnes"),
  40614. name: "Front",
  40615. image: {
  40616. source: "./media/characters/dawnheart/front.svg",
  40617. extra: 2792/2675,
  40618. bottom: 64/2856
  40619. }
  40620. },
  40621. },
  40622. [
  40623. {
  40624. name: "Normal",
  40625. height: math.unit(14, "feet"),
  40626. default: true
  40627. },
  40628. ]
  40629. ))
  40630. characterMakers.push(() => makeCharacter(
  40631. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40632. {
  40633. front: {
  40634. height: math.unit(1.7, "m"),
  40635. name: "Front",
  40636. image: {
  40637. source: "./media/characters/gladi/front.svg",
  40638. extra: 1460/1362,
  40639. bottom: 19/1479
  40640. }
  40641. },
  40642. back: {
  40643. height: math.unit(1.7, "m"),
  40644. name: "Back",
  40645. image: {
  40646. source: "./media/characters/gladi/back.svg",
  40647. extra: 1459/1357,
  40648. bottom: 12/1471
  40649. }
  40650. },
  40651. feral: {
  40652. height: math.unit(2.05, "m"),
  40653. name: "Feral",
  40654. image: {
  40655. source: "./media/characters/gladi/feral.svg",
  40656. extra: 821/557,
  40657. bottom: 91/912
  40658. }
  40659. },
  40660. },
  40661. [
  40662. {
  40663. name: "Shortest",
  40664. height: math.unit(70, "cm")
  40665. },
  40666. {
  40667. name: "Normal",
  40668. height: math.unit(1.7, "m")
  40669. },
  40670. {
  40671. name: "Macro",
  40672. height: math.unit(10, "m"),
  40673. default: true
  40674. },
  40675. {
  40676. name: "Tallest",
  40677. height: math.unit(200, "m")
  40678. },
  40679. ]
  40680. ))
  40681. characterMakers.push(() => makeCharacter(
  40682. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40683. {
  40684. front: {
  40685. height: math.unit(5 + 7/12, "feet"),
  40686. weight: math.unit(2, "tons"),
  40687. name: "Front",
  40688. image: {
  40689. source: "./media/characters/erdno/front.svg",
  40690. extra: 1234/1129,
  40691. bottom: 35/1269
  40692. }
  40693. },
  40694. angled: {
  40695. height: math.unit(5 + 7/12, "feet"),
  40696. weight: math.unit(2, "tons"),
  40697. name: "Angled",
  40698. image: {
  40699. source: "./media/characters/erdno/angled.svg",
  40700. extra: 1185/1139,
  40701. bottom: 36/1221
  40702. }
  40703. },
  40704. side: {
  40705. height: math.unit(5 + 7/12, "feet"),
  40706. weight: math.unit(2, "tons"),
  40707. name: "Side",
  40708. image: {
  40709. source: "./media/characters/erdno/side.svg",
  40710. extra: 1191/1144,
  40711. bottom: 40/1231
  40712. }
  40713. },
  40714. back: {
  40715. height: math.unit(5 + 7/12, "feet"),
  40716. weight: math.unit(2, "tons"),
  40717. name: "Back",
  40718. image: {
  40719. source: "./media/characters/erdno/back.svg",
  40720. extra: 1202/1146,
  40721. bottom: 17/1219
  40722. }
  40723. },
  40724. frontNsfw: {
  40725. height: math.unit(5 + 7/12, "feet"),
  40726. weight: math.unit(2, "tons"),
  40727. name: "Front (NSFW)",
  40728. image: {
  40729. source: "./media/characters/erdno/front-nsfw.svg",
  40730. extra: 1234/1129,
  40731. bottom: 35/1269
  40732. }
  40733. },
  40734. angledNsfw: {
  40735. height: math.unit(5 + 7/12, "feet"),
  40736. weight: math.unit(2, "tons"),
  40737. name: "Angled (NSFW)",
  40738. image: {
  40739. source: "./media/characters/erdno/angled-nsfw.svg",
  40740. extra: 1185/1139,
  40741. bottom: 36/1221
  40742. }
  40743. },
  40744. sideNsfw: {
  40745. height: math.unit(5 + 7/12, "feet"),
  40746. weight: math.unit(2, "tons"),
  40747. name: "Side (NSFW)",
  40748. image: {
  40749. source: "./media/characters/erdno/side-nsfw.svg",
  40750. extra: 1191/1144,
  40751. bottom: 40/1231
  40752. }
  40753. },
  40754. backNsfw: {
  40755. height: math.unit(5 + 7/12, "feet"),
  40756. weight: math.unit(2, "tons"),
  40757. name: "Back (NSFW)",
  40758. image: {
  40759. source: "./media/characters/erdno/back-nsfw.svg",
  40760. extra: 1202/1146,
  40761. bottom: 17/1219
  40762. }
  40763. },
  40764. frontHyper: {
  40765. height: math.unit(5 + 7/12, "feet"),
  40766. weight: math.unit(2, "tons"),
  40767. name: "Front (Hyper)",
  40768. image: {
  40769. source: "./media/characters/erdno/front-hyper.svg",
  40770. extra: 1298/1136,
  40771. bottom: 35/1333
  40772. }
  40773. },
  40774. },
  40775. [
  40776. {
  40777. name: "Normal",
  40778. height: math.unit(5 + 7/12, "feet"),
  40779. default: true
  40780. },
  40781. {
  40782. name: "Big",
  40783. height: math.unit(5.7, "meters")
  40784. },
  40785. {
  40786. name: "Macro",
  40787. height: math.unit(5.7, "kilometers")
  40788. },
  40789. {
  40790. name: "Megamacro",
  40791. height: math.unit(5.7, "earths")
  40792. },
  40793. ]
  40794. ))
  40795. characterMakers.push(() => makeCharacter(
  40796. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40797. {
  40798. front: {
  40799. height: math.unit(5 + 10/12, "feet"),
  40800. weight: math.unit(150, "lb"),
  40801. name: "Front",
  40802. image: {
  40803. source: "./media/characters/jamie/front.svg",
  40804. extra: 1908/1768,
  40805. bottom: 19/1927
  40806. }
  40807. },
  40808. },
  40809. [
  40810. {
  40811. name: "Minimum",
  40812. height: math.unit(2, "cm")
  40813. },
  40814. {
  40815. name: "Micro",
  40816. height: math.unit(3, "inches")
  40817. },
  40818. {
  40819. name: "Normal",
  40820. height: math.unit(5 + 10/12, "feet"),
  40821. default: true
  40822. },
  40823. {
  40824. name: "Macro",
  40825. height: math.unit(150, "feet")
  40826. },
  40827. {
  40828. name: "Megamacro",
  40829. height: math.unit(10000, "m")
  40830. },
  40831. ]
  40832. ))
  40833. characterMakers.push(() => makeCharacter(
  40834. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40835. {
  40836. front: {
  40837. height: math.unit(2, "meters"),
  40838. weight: math.unit(100, "kg"),
  40839. name: "Front",
  40840. image: {
  40841. source: "./media/characters/shiron/front.svg",
  40842. extra: 2103/1985,
  40843. bottom: 98/2201
  40844. }
  40845. },
  40846. back: {
  40847. height: math.unit(2, "meters"),
  40848. weight: math.unit(100, "kg"),
  40849. name: "Back",
  40850. image: {
  40851. source: "./media/characters/shiron/back.svg",
  40852. extra: 2110/2015,
  40853. bottom: 89/2199
  40854. }
  40855. },
  40856. hand: {
  40857. height: math.unit(0.96, "feet"),
  40858. name: "Hand",
  40859. image: {
  40860. source: "./media/characters/shiron/hand.svg"
  40861. }
  40862. },
  40863. foot: {
  40864. height: math.unit(1.464, "feet"),
  40865. name: "Foot",
  40866. image: {
  40867. source: "./media/characters/shiron/foot.svg"
  40868. }
  40869. },
  40870. },
  40871. [
  40872. {
  40873. name: "Normal",
  40874. height: math.unit(2, "meters")
  40875. },
  40876. {
  40877. name: "Macro",
  40878. height: math.unit(500, "meters"),
  40879. default: true
  40880. },
  40881. {
  40882. name: "Megamacro",
  40883. height: math.unit(20, "km")
  40884. },
  40885. ]
  40886. ))
  40887. characterMakers.push(() => makeCharacter(
  40888. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40889. {
  40890. front: {
  40891. height: math.unit(6, "feet"),
  40892. name: "Front",
  40893. image: {
  40894. source: "./media/characters/sam/front.svg",
  40895. extra: 849/826,
  40896. bottom: 19/868
  40897. }
  40898. },
  40899. },
  40900. [
  40901. {
  40902. name: "Normal",
  40903. height: math.unit(6, "feet"),
  40904. default: true
  40905. },
  40906. ]
  40907. ))
  40908. characterMakers.push(() => makeCharacter(
  40909. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40910. {
  40911. front: {
  40912. height: math.unit(8 + 4/12, "feet"),
  40913. weight: math.unit(122, "kg"),
  40914. name: "Front",
  40915. image: {
  40916. source: "./media/characters/namori-kurogawa/front.svg",
  40917. extra: 1894/1576,
  40918. bottom: 34/1928
  40919. }
  40920. },
  40921. },
  40922. [
  40923. {
  40924. name: "Normal",
  40925. height: math.unit(8 + 4/12, "feet"),
  40926. default: true
  40927. },
  40928. ]
  40929. ))
  40930. characterMakers.push(() => makeCharacter(
  40931. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40932. {
  40933. front: {
  40934. height: math.unit(9, "feet"),
  40935. weight: math.unit(621, "lb"),
  40936. name: "Front",
  40937. image: {
  40938. source: "./media/characters/unmru/front.svg",
  40939. extra: 1853/1747,
  40940. bottom: 73/1926
  40941. }
  40942. },
  40943. side: {
  40944. height: math.unit(9, "feet"),
  40945. weight: math.unit(621, "lb"),
  40946. name: "Side",
  40947. image: {
  40948. source: "./media/characters/unmru/side.svg",
  40949. extra: 1781/1671,
  40950. bottom: 127/1908
  40951. }
  40952. },
  40953. back: {
  40954. height: math.unit(9, "feet"),
  40955. weight: math.unit(621, "lb"),
  40956. name: "Back",
  40957. image: {
  40958. source: "./media/characters/unmru/back.svg",
  40959. extra: 1894/1765,
  40960. bottom: 75/1969
  40961. }
  40962. },
  40963. dick: {
  40964. height: math.unit(3, "feet"),
  40965. weight: math.unit(35, "lb"),
  40966. name: "Dick",
  40967. image: {
  40968. source: "./media/characters/unmru/dick.svg"
  40969. }
  40970. },
  40971. },
  40972. [
  40973. {
  40974. name: "Normal",
  40975. height: math.unit(9, "feet")
  40976. },
  40977. {
  40978. name: "Natural",
  40979. height: math.unit(27, "feet"),
  40980. default: true
  40981. },
  40982. {
  40983. name: "Giant",
  40984. height: math.unit(90, "feet")
  40985. },
  40986. {
  40987. name: "Kaiju",
  40988. height: math.unit(270, "feet")
  40989. },
  40990. {
  40991. name: "Macro",
  40992. height: math.unit(900, "feet")
  40993. },
  40994. {
  40995. name: "Macro+",
  40996. height: math.unit(2700, "feet")
  40997. },
  40998. {
  40999. name: "Megamacro",
  41000. height: math.unit(9000, "feet")
  41001. },
  41002. {
  41003. name: "City-Crushing",
  41004. height: math.unit(27000, "feet")
  41005. },
  41006. {
  41007. name: "Mountain-Mashing",
  41008. height: math.unit(90000, "feet")
  41009. },
  41010. {
  41011. name: "Earth-Eclipsing",
  41012. height: math.unit(2.7e8, "feet")
  41013. },
  41014. {
  41015. name: "Sol-Swallowing",
  41016. height: math.unit(9e10, "feet")
  41017. },
  41018. {
  41019. name: "Majoris-Munching",
  41020. height: math.unit(2.7e13, "feet")
  41021. },
  41022. ]
  41023. ))
  41024. characterMakers.push(() => makeCharacter(
  41025. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  41026. {
  41027. front: {
  41028. height: math.unit(1, "inch"),
  41029. name: "Front",
  41030. image: {
  41031. source: "./media/characters/squeaks-mouse/front.svg",
  41032. extra: 352/308,
  41033. bottom: 25/377
  41034. }
  41035. },
  41036. },
  41037. [
  41038. {
  41039. name: "Micro",
  41040. height: math.unit(1, "inch"),
  41041. default: true
  41042. },
  41043. ]
  41044. ))
  41045. characterMakers.push(() => makeCharacter(
  41046. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  41047. {
  41048. side: {
  41049. height: math.unit(35, "feet"),
  41050. name: "Side",
  41051. image: {
  41052. source: "./media/characters/sayko/side.svg",
  41053. extra: 1697/1021,
  41054. bottom: 82/1779
  41055. }
  41056. },
  41057. head: {
  41058. height: math.unit(16, "feet"),
  41059. name: "Head",
  41060. image: {
  41061. source: "./media/characters/sayko/head.svg"
  41062. }
  41063. },
  41064. forepaw: {
  41065. height: math.unit(7.85, "feet"),
  41066. name: "Forepaw",
  41067. image: {
  41068. source: "./media/characters/sayko/forepaw.svg"
  41069. }
  41070. },
  41071. hindpaw: {
  41072. height: math.unit(8.8, "feet"),
  41073. name: "Hindpaw",
  41074. image: {
  41075. source: "./media/characters/sayko/hindpaw.svg"
  41076. }
  41077. },
  41078. },
  41079. [
  41080. {
  41081. name: "Normal",
  41082. height: math.unit(35, "feet"),
  41083. default: true
  41084. },
  41085. {
  41086. name: "Colossus",
  41087. height: math.unit(100, "meters")
  41088. },
  41089. {
  41090. name: "\"Small\" Deity",
  41091. height: math.unit(1, "km")
  41092. },
  41093. {
  41094. name: "\"Large\" Deity",
  41095. height: math.unit(15, "km")
  41096. },
  41097. ]
  41098. ))
  41099. characterMakers.push(() => makeCharacter(
  41100. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  41101. {
  41102. front: {
  41103. height: math.unit(6, "feet"),
  41104. weight: math.unit(250, "lb"),
  41105. name: "Front",
  41106. image: {
  41107. source: "./media/characters/mukiro/front.svg",
  41108. extra: 1368/1310,
  41109. bottom: 34/1402
  41110. }
  41111. },
  41112. },
  41113. [
  41114. {
  41115. name: "Normal",
  41116. height: math.unit(6, "feet"),
  41117. default: true
  41118. },
  41119. ]
  41120. ))
  41121. characterMakers.push(() => makeCharacter(
  41122. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  41123. {
  41124. front: {
  41125. height: math.unit(12 + 4/12, "feet"),
  41126. name: "Front",
  41127. image: {
  41128. source: "./media/characters/zeph-the-tiger-god/front.svg",
  41129. extra: 1346/1311,
  41130. bottom: 65/1411
  41131. }
  41132. },
  41133. },
  41134. [
  41135. {
  41136. name: "Base",
  41137. height: math.unit(12 + 4/12, "feet"),
  41138. default: true
  41139. },
  41140. {
  41141. name: "Macro",
  41142. height: math.unit(150, "feet")
  41143. },
  41144. {
  41145. name: "Mega",
  41146. height: math.unit(2, "miles")
  41147. },
  41148. {
  41149. name: "Demi God",
  41150. height: math.unit(4, "AU")
  41151. },
  41152. {
  41153. name: "God Size",
  41154. height: math.unit(1, "universe")
  41155. },
  41156. ]
  41157. ))
  41158. characterMakers.push(() => makeCharacter(
  41159. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  41160. {
  41161. front: {
  41162. height: math.unit(3 + 3/12, "feet"),
  41163. weight: math.unit(88, "lb"),
  41164. name: "Front",
  41165. image: {
  41166. source: "./media/characters/trey/front.svg",
  41167. extra: 1815/1509,
  41168. bottom: 60/1875
  41169. }
  41170. },
  41171. },
  41172. [
  41173. {
  41174. name: "Normal",
  41175. height: math.unit(3 + 3/12, "feet"),
  41176. default: true
  41177. },
  41178. ]
  41179. ))
  41180. characterMakers.push(() => makeCharacter(
  41181. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  41182. {
  41183. front: {
  41184. height: math.unit(4, "meters"),
  41185. name: "Front",
  41186. image: {
  41187. source: "./media/characters/adelonda/front.svg",
  41188. extra: 1077/982,
  41189. bottom: 39/1116
  41190. }
  41191. },
  41192. back: {
  41193. height: math.unit(4, "meters"),
  41194. name: "Back",
  41195. image: {
  41196. source: "./media/characters/adelonda/back.svg",
  41197. extra: 1105/1003,
  41198. bottom: 25/1130
  41199. }
  41200. },
  41201. feral: {
  41202. height: math.unit(40/1.5, "meters"),
  41203. name: "Feral",
  41204. image: {
  41205. source: "./media/characters/adelonda/feral.svg",
  41206. extra: 597/271,
  41207. bottom: 387/984
  41208. }
  41209. },
  41210. },
  41211. [
  41212. {
  41213. name: "Normal",
  41214. height: math.unit(4, "meters"),
  41215. default: true
  41216. },
  41217. ]
  41218. ))
  41219. characterMakers.push(() => makeCharacter(
  41220. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  41221. {
  41222. front: {
  41223. height: math.unit(8 + 4/12, "feet"),
  41224. weight: math.unit(670, "lb"),
  41225. name: "Front",
  41226. image: {
  41227. source: "./media/characters/acadiel/front.svg",
  41228. extra: 1901/1595,
  41229. bottom: 142/2043
  41230. }
  41231. },
  41232. },
  41233. [
  41234. {
  41235. name: "Normal",
  41236. height: math.unit(8 + 4/12, "feet"),
  41237. default: true
  41238. },
  41239. {
  41240. name: "Macro",
  41241. height: math.unit(200, "feet")
  41242. },
  41243. ]
  41244. ))
  41245. characterMakers.push(() => makeCharacter(
  41246. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  41247. {
  41248. front: {
  41249. height: math.unit(6 + 2/12, "feet"),
  41250. weight: math.unit(185, "lb"),
  41251. name: "Front",
  41252. image: {
  41253. source: "./media/characters/kayne-ein/front.svg",
  41254. extra: 1780/1560,
  41255. bottom: 81/1861
  41256. }
  41257. },
  41258. },
  41259. [
  41260. {
  41261. name: "Normal",
  41262. height: math.unit(6 + 2/12, "feet"),
  41263. default: true
  41264. },
  41265. {
  41266. name: "Transformation Stage",
  41267. height: math.unit(15, "feet")
  41268. },
  41269. {
  41270. name: "Macro",
  41271. height: math.unit(150, "feet")
  41272. },
  41273. {
  41274. name: "Earth's Shadow",
  41275. height: math.unit(6200, "miles")
  41276. },
  41277. {
  41278. name: "Universal Demon",
  41279. height: math.unit(28e9, "parsecs")
  41280. },
  41281. {
  41282. name: "Multiverse God",
  41283. height: math.unit(3, "multiverses")
  41284. },
  41285. ]
  41286. ))
  41287. characterMakers.push(() => makeCharacter(
  41288. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  41289. {
  41290. front: {
  41291. height: math.unit(5 + 5/12, "feet"),
  41292. name: "Front",
  41293. image: {
  41294. source: "./media/characters/fawn/front.svg",
  41295. extra: 1873/1731,
  41296. bottom: 95/1968
  41297. }
  41298. },
  41299. back: {
  41300. height: math.unit(5 + 5/12, "feet"),
  41301. name: "Back",
  41302. image: {
  41303. source: "./media/characters/fawn/back.svg",
  41304. extra: 1813/1700,
  41305. bottom: 14/1827
  41306. }
  41307. },
  41308. hoof: {
  41309. height: math.unit(1.45, "feet"),
  41310. name: "Hoof",
  41311. image: {
  41312. source: "./media/characters/fawn/hoof.svg"
  41313. }
  41314. },
  41315. },
  41316. [
  41317. {
  41318. name: "Normal",
  41319. height: math.unit(5 + 5/12, "feet"),
  41320. default: true
  41321. },
  41322. ]
  41323. ))
  41324. characterMakers.push(() => makeCharacter(
  41325. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  41326. {
  41327. front: {
  41328. height: math.unit(2 + 5/12, "feet"),
  41329. name: "Front",
  41330. image: {
  41331. source: "./media/characters/orion/front.svg",
  41332. extra: 1366/1304,
  41333. bottom: 43/1409
  41334. }
  41335. },
  41336. paw: {
  41337. height: math.unit(0.52, "feet"),
  41338. name: "Paw",
  41339. image: {
  41340. source: "./media/characters/orion/paw.svg"
  41341. }
  41342. },
  41343. },
  41344. [
  41345. {
  41346. name: "Normal",
  41347. height: math.unit(2 + 5/12, "feet"),
  41348. default: true
  41349. },
  41350. ]
  41351. ))
  41352. characterMakers.push(() => makeCharacter(
  41353. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  41354. {
  41355. front: {
  41356. height: math.unit(5 + 10/12, "feet"),
  41357. name: "Front",
  41358. image: {
  41359. source: "./media/characters/vera/front.svg",
  41360. extra: 1680/1575,
  41361. bottom: 49/1729
  41362. }
  41363. },
  41364. back: {
  41365. height: math.unit(5 + 10/12, "feet"),
  41366. name: "Back",
  41367. image: {
  41368. source: "./media/characters/vera/back.svg",
  41369. extra: 1700/1588,
  41370. bottom: 18/1718
  41371. }
  41372. },
  41373. arcanine: {
  41374. height: math.unit(6 + 8/12, "feet"),
  41375. name: "Arcanine",
  41376. image: {
  41377. source: "./media/characters/vera/arcanine.svg",
  41378. extra: 1590/1511,
  41379. bottom: 71/1661
  41380. }
  41381. },
  41382. maw: {
  41383. height: math.unit(0.82, "feet"),
  41384. name: "Maw",
  41385. image: {
  41386. source: "./media/characters/vera/maw.svg"
  41387. }
  41388. },
  41389. mawArcanine: {
  41390. height: math.unit(0.97, "feet"),
  41391. name: "Maw (Arcanine)",
  41392. image: {
  41393. source: "./media/characters/vera/maw-arcanine.svg"
  41394. }
  41395. },
  41396. paw: {
  41397. height: math.unit(0.75, "feet"),
  41398. name: "Paw",
  41399. image: {
  41400. source: "./media/characters/vera/paw.svg"
  41401. }
  41402. },
  41403. pawprint: {
  41404. height: math.unit(0.52, "feet"),
  41405. name: "Pawprint",
  41406. image: {
  41407. source: "./media/characters/vera/pawprint.svg"
  41408. }
  41409. },
  41410. },
  41411. [
  41412. {
  41413. name: "Normal",
  41414. height: math.unit(5 + 10/12, "feet"),
  41415. default: true
  41416. },
  41417. {
  41418. name: "Macro",
  41419. height: math.unit(75, "feet")
  41420. },
  41421. ]
  41422. ))
  41423. characterMakers.push(() => makeCharacter(
  41424. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41425. {
  41426. front: {
  41427. height: math.unit(4, "feet"),
  41428. weight: math.unit(40, "lb"),
  41429. name: "Front",
  41430. image: {
  41431. source: "./media/characters/orvan-rabbit/front.svg",
  41432. extra: 1896/1642,
  41433. bottom: 29/1925
  41434. }
  41435. },
  41436. },
  41437. [
  41438. {
  41439. name: "Normal",
  41440. height: math.unit(4, "feet"),
  41441. default: true
  41442. },
  41443. ]
  41444. ))
  41445. characterMakers.push(() => makeCharacter(
  41446. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41447. {
  41448. front: {
  41449. height: math.unit(6, "feet"),
  41450. weight: math.unit(168, "lb"),
  41451. name: "Front",
  41452. image: {
  41453. source: "./media/characters/lisa/front.svg",
  41454. extra: 2065/1867,
  41455. bottom: 46/2111
  41456. }
  41457. },
  41458. back: {
  41459. height: math.unit(6, "feet"),
  41460. weight: math.unit(168, "lb"),
  41461. name: "Back",
  41462. image: {
  41463. source: "./media/characters/lisa/back.svg",
  41464. extra: 1982/1838,
  41465. bottom: 29/2011
  41466. }
  41467. },
  41468. maw: {
  41469. height: math.unit(0.81, "feet"),
  41470. name: "Maw",
  41471. image: {
  41472. source: "./media/characters/lisa/maw.svg"
  41473. }
  41474. },
  41475. paw: {
  41476. height: math.unit(0.9, "feet"),
  41477. name: "Paw",
  41478. image: {
  41479. source: "./media/characters/lisa/paw.svg"
  41480. }
  41481. },
  41482. caribousune: {
  41483. height: math.unit(7 + 2/12, "feet"),
  41484. weight: math.unit(268, "lb"),
  41485. name: "Caribousune",
  41486. image: {
  41487. source: "./media/characters/lisa/caribousune.svg",
  41488. extra: 1843/1633,
  41489. bottom: 29/1872
  41490. }
  41491. },
  41492. frontCaribousune: {
  41493. height: math.unit(7 + 2/12, "feet"),
  41494. weight: math.unit(268, "lb"),
  41495. name: "Front (Caribousune)",
  41496. image: {
  41497. source: "./media/characters/lisa/front-caribousune.svg",
  41498. extra: 1818/1638,
  41499. bottom: 52/1870
  41500. }
  41501. },
  41502. sideCaribousune: {
  41503. height: math.unit(7 + 2/12, "feet"),
  41504. weight: math.unit(268, "lb"),
  41505. name: "Side (Caribousune)",
  41506. image: {
  41507. source: "./media/characters/lisa/side-caribousune.svg",
  41508. extra: 1851/1635,
  41509. bottom: 16/1867
  41510. }
  41511. },
  41512. backCaribousune: {
  41513. height: math.unit(7 + 2/12, "feet"),
  41514. weight: math.unit(268, "lb"),
  41515. name: "Back (Caribousune)",
  41516. image: {
  41517. source: "./media/characters/lisa/back-caribousune.svg",
  41518. extra: 1801/1604,
  41519. bottom: 44/1845
  41520. }
  41521. },
  41522. caribou: {
  41523. height: math.unit(7 + 2/12, "feet"),
  41524. weight: math.unit(268, "lb"),
  41525. name: "Caribou",
  41526. image: {
  41527. source: "./media/characters/lisa/caribou.svg",
  41528. extra: 1843/1633,
  41529. bottom: 29/1872
  41530. }
  41531. },
  41532. frontCaribou: {
  41533. height: math.unit(7 + 2/12, "feet"),
  41534. weight: math.unit(268, "lb"),
  41535. name: "Front (Caribou)",
  41536. image: {
  41537. source: "./media/characters/lisa/front-caribou.svg",
  41538. extra: 1818/1638,
  41539. bottom: 52/1870
  41540. }
  41541. },
  41542. sideCaribou: {
  41543. height: math.unit(7 + 2/12, "feet"),
  41544. weight: math.unit(268, "lb"),
  41545. name: "Side (Caribou)",
  41546. image: {
  41547. source: "./media/characters/lisa/side-caribou.svg",
  41548. extra: 1851/1635,
  41549. bottom: 16/1867
  41550. }
  41551. },
  41552. backCaribou: {
  41553. height: math.unit(7 + 2/12, "feet"),
  41554. weight: math.unit(268, "lb"),
  41555. name: "Back (Caribou)",
  41556. image: {
  41557. source: "./media/characters/lisa/back-caribou.svg",
  41558. extra: 1801/1604,
  41559. bottom: 44/1845
  41560. }
  41561. },
  41562. mawCaribou: {
  41563. height: math.unit(1.45, "feet"),
  41564. name: "Maw (Caribou)",
  41565. image: {
  41566. source: "./media/characters/lisa/maw-caribou.svg"
  41567. }
  41568. },
  41569. mawCaribousune: {
  41570. height: math.unit(1.45, "feet"),
  41571. name: "Maw (Caribousune)",
  41572. image: {
  41573. source: "./media/characters/lisa/maw-caribousune.svg"
  41574. }
  41575. },
  41576. pawCaribousune: {
  41577. height: math.unit(1.61, "feet"),
  41578. name: "Paw (Caribou)",
  41579. image: {
  41580. source: "./media/characters/lisa/paw-caribousune.svg"
  41581. }
  41582. },
  41583. },
  41584. [
  41585. {
  41586. name: "Normal",
  41587. height: math.unit(6, "feet")
  41588. },
  41589. {
  41590. name: "God Size",
  41591. height: math.unit(72, "feet"),
  41592. default: true
  41593. },
  41594. {
  41595. name: "Towering",
  41596. height: math.unit(288, "feet")
  41597. },
  41598. {
  41599. name: "City Size",
  41600. height: math.unit(48384, "feet")
  41601. },
  41602. {
  41603. name: "Continental",
  41604. height: math.unit(4200, "miles")
  41605. },
  41606. {
  41607. name: "Planet Eater",
  41608. height: math.unit(42, "earths")
  41609. },
  41610. {
  41611. name: "Star Swallower",
  41612. height: math.unit(42, "solarradii")
  41613. },
  41614. {
  41615. name: "System Swallower",
  41616. height: math.unit(84000, "AU")
  41617. },
  41618. {
  41619. name: "Galaxy Gobbler",
  41620. height: math.unit(42, "galaxies")
  41621. },
  41622. {
  41623. name: "Universe Devourer",
  41624. height: math.unit(42, "universes")
  41625. },
  41626. {
  41627. name: "Multiverse Muncher",
  41628. height: math.unit(42, "multiverses")
  41629. },
  41630. ]
  41631. ))
  41632. characterMakers.push(() => makeCharacter(
  41633. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41634. {
  41635. front: {
  41636. height: math.unit(36, "feet"),
  41637. name: "Front",
  41638. image: {
  41639. source: "./media/characters/shadow-rat/front.svg",
  41640. extra: 1845/1758,
  41641. bottom: 83/1928
  41642. }
  41643. },
  41644. },
  41645. [
  41646. {
  41647. name: "Macro",
  41648. height: math.unit(36, "feet"),
  41649. default: true
  41650. },
  41651. ]
  41652. ))
  41653. characterMakers.push(() => makeCharacter(
  41654. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41655. {
  41656. side: {
  41657. height: math.unit(8, "feet"),
  41658. weight: math.unit(2630, "lb"),
  41659. name: "Side",
  41660. image: {
  41661. source: "./media/characters/torallia/side.svg",
  41662. extra: 2164/2021,
  41663. bottom: 371/2535
  41664. }
  41665. },
  41666. },
  41667. [
  41668. {
  41669. name: "Mortal Interaction",
  41670. height: math.unit(8, "feet")
  41671. },
  41672. {
  41673. name: "Natural",
  41674. height: math.unit(24, "feet"),
  41675. default: true
  41676. },
  41677. {
  41678. name: "Giant",
  41679. height: math.unit(80, "feet")
  41680. },
  41681. {
  41682. name: "Kaiju",
  41683. height: math.unit(240, "feet")
  41684. },
  41685. {
  41686. name: "Macro",
  41687. height: math.unit(800, "feet")
  41688. },
  41689. {
  41690. name: "Macro+",
  41691. height: math.unit(2400, "feet")
  41692. },
  41693. {
  41694. name: "Macro++",
  41695. height: math.unit(8000, "feet")
  41696. },
  41697. {
  41698. name: "City-Crushing",
  41699. height: math.unit(24000, "feet")
  41700. },
  41701. {
  41702. name: "Mountain-Mashing",
  41703. height: math.unit(80000, "feet")
  41704. },
  41705. {
  41706. name: "District Demolisher",
  41707. height: math.unit(240000, "feet")
  41708. },
  41709. {
  41710. name: "Tri-County Terror",
  41711. height: math.unit(800000, "feet")
  41712. },
  41713. {
  41714. name: "State Smasher",
  41715. height: math.unit(2.4e6, "feet")
  41716. },
  41717. {
  41718. name: "Nation Nemesis",
  41719. height: math.unit(8e6, "feet")
  41720. },
  41721. {
  41722. name: "Continent Cracker",
  41723. height: math.unit(2.4e7, "feet")
  41724. },
  41725. {
  41726. name: "Planet-Pillaging",
  41727. height: math.unit(8e7, "feet")
  41728. },
  41729. {
  41730. name: "Earth-Eclipsing",
  41731. height: math.unit(2.4e8, "feet")
  41732. },
  41733. {
  41734. name: "Jovian-Jostling",
  41735. height: math.unit(8e8, "feet")
  41736. },
  41737. {
  41738. name: "Gas Giant Gulper",
  41739. height: math.unit(2.4e9, "feet")
  41740. },
  41741. {
  41742. name: "Astral Annihilator",
  41743. height: math.unit(8e9, "feet")
  41744. },
  41745. {
  41746. name: "Celestial Conqueror",
  41747. height: math.unit(2.4e10, "feet")
  41748. },
  41749. {
  41750. name: "Sol-Swallowing",
  41751. height: math.unit(8e10, "feet")
  41752. },
  41753. {
  41754. name: "Hunter of the Heavens",
  41755. height: math.unit(2.4e13, "feet")
  41756. },
  41757. ]
  41758. ))
  41759. characterMakers.push(() => makeCharacter(
  41760. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41761. {
  41762. front: {
  41763. height: math.unit(10, "feet"),
  41764. weight: math.unit(844, "kilograms"),
  41765. name: "Front",
  41766. image: {
  41767. source: "./media/characters/rebecca-pawlson/front.svg",
  41768. extra: 1196/1099,
  41769. bottom: 81/1277
  41770. },
  41771. extraAttributes: {
  41772. "pawSize": {
  41773. name: "Paw Size",
  41774. power: 2,
  41775. type: "area",
  41776. base: math.unit(0.2 * 0.375, "meters^2")
  41777. },
  41778. "handSize": {
  41779. name: "Hand Size",
  41780. power: 2,
  41781. type: "area",
  41782. base: math.unit(0.2 * 0.35, "meters^2")
  41783. },
  41784. "breastDiameter": {
  41785. name: "Breast Diameter",
  41786. power: 1,
  41787. type: "length",
  41788. base: math.unit(0.5, "meters")
  41789. },
  41790. "breastVolume": {
  41791. name: "Breast Volume",
  41792. power: 3,
  41793. type: "volume",
  41794. base: math.unit(0.065, "m^3")
  41795. },
  41796. "breastMass": {
  41797. name: "Breast Mass",
  41798. power: 3,
  41799. type: "mass",
  41800. base: math.unit(65, "kg")
  41801. },
  41802. "nippleDiameter": {
  41803. name: "Nipple Diameter",
  41804. power: 1,
  41805. type: "length",
  41806. base: math.unit(0.1, "meters")
  41807. },
  41808. }
  41809. },
  41810. back: {
  41811. height: math.unit(10, "feet"),
  41812. weight: math.unit(844, "kilograms"),
  41813. name: "Back",
  41814. image: {
  41815. source: "./media/characters/rebecca-pawlson/back.svg",
  41816. extra: 879/776,
  41817. bottom: 43/922
  41818. },
  41819. extraAttributes: {
  41820. "pawSize": {
  41821. name: "Paw Size",
  41822. power: 2,
  41823. type: "area",
  41824. base: math.unit(0.2 * 0.375, "meters^2")
  41825. },
  41826. "handSize": {
  41827. name: "Hand Size",
  41828. power: 2,
  41829. type: "area",
  41830. base: math.unit(0.2 * 0.35, "meters^2")
  41831. },
  41832. "breastDiameter": {
  41833. name: "Breast Diameter",
  41834. power: 1,
  41835. type: "length",
  41836. base: math.unit(0.5, "meters")
  41837. },
  41838. "breastVolume": {
  41839. name: "Breast Volume",
  41840. power: 3,
  41841. type: "volume",
  41842. base: math.unit(0.065, "m^3")
  41843. },
  41844. "breastMass": {
  41845. name: "Breast Mass",
  41846. power: 3,
  41847. type: "mass",
  41848. base: math.unit(65, "kg")
  41849. },
  41850. "nippleDiameter": {
  41851. name: "Nipple Diameter",
  41852. power: 1,
  41853. type: "length",
  41854. base: math.unit(0.1, "meters")
  41855. },
  41856. }
  41857. },
  41858. },
  41859. [
  41860. {
  41861. name: "Normal",
  41862. height: math.unit(6 + 8/12, "feet")
  41863. },
  41864. {
  41865. name: "Mini Macro",
  41866. height: math.unit(10, "feet"),
  41867. default: true
  41868. },
  41869. {
  41870. name: "Macro",
  41871. height: math.unit(100, "feet")
  41872. },
  41873. {
  41874. name: "Mega Macro",
  41875. height: math.unit(2500, "feet")
  41876. },
  41877. {
  41878. name: "Giga Macro",
  41879. height: math.unit(50, "miles")
  41880. },
  41881. ]
  41882. ))
  41883. characterMakers.push(() => makeCharacter(
  41884. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41885. {
  41886. front: {
  41887. height: math.unit(7 + 6/12, "feet"),
  41888. weight: math.unit(600, "lb"),
  41889. name: "Front",
  41890. image: {
  41891. source: "./media/characters/moxie-nova/front.svg",
  41892. extra: 1734/1652,
  41893. bottom: 41/1775
  41894. }
  41895. },
  41896. },
  41897. [
  41898. {
  41899. name: "Normal",
  41900. height: math.unit(7 + 6/12, "feet"),
  41901. default: true
  41902. },
  41903. ]
  41904. ))
  41905. characterMakers.push(() => makeCharacter(
  41906. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41907. {
  41908. goat: {
  41909. height: math.unit(4, "feet"),
  41910. weight: math.unit(180, "lb"),
  41911. name: "Goat",
  41912. image: {
  41913. source: "./media/characters/tiffany/goat.svg",
  41914. extra: 1845/1595,
  41915. bottom: 106/1951
  41916. }
  41917. },
  41918. front: {
  41919. height: math.unit(5, "feet"),
  41920. weight: math.unit(150, "lb"),
  41921. name: "Foxcoon",
  41922. image: {
  41923. source: "./media/characters/tiffany/foxcoon.svg",
  41924. extra: 1941/1845,
  41925. bottom: 58/1999
  41926. }
  41927. },
  41928. },
  41929. [
  41930. {
  41931. name: "Normal",
  41932. height: math.unit(5, "feet"),
  41933. default: true
  41934. },
  41935. ]
  41936. ))
  41937. characterMakers.push(() => makeCharacter(
  41938. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41939. {
  41940. front: {
  41941. height: math.unit(8, "feet"),
  41942. weight: math.unit(300, "lb"),
  41943. name: "Front",
  41944. image: {
  41945. source: "./media/characters/raxinath/front.svg",
  41946. extra: 1407/1309,
  41947. bottom: 39/1446
  41948. }
  41949. },
  41950. back: {
  41951. height: math.unit(8, "feet"),
  41952. weight: math.unit(300, "lb"),
  41953. name: "Back",
  41954. image: {
  41955. source: "./media/characters/raxinath/back.svg",
  41956. extra: 1405/1315,
  41957. bottom: 9/1414
  41958. }
  41959. },
  41960. },
  41961. [
  41962. {
  41963. name: "Speck",
  41964. height: math.unit(0.5, "nm")
  41965. },
  41966. {
  41967. name: "Micro",
  41968. height: math.unit(3, "inches")
  41969. },
  41970. {
  41971. name: "Kobold",
  41972. height: math.unit(3, "feet")
  41973. },
  41974. {
  41975. name: "Normal",
  41976. height: math.unit(8, "feet"),
  41977. default: true
  41978. },
  41979. {
  41980. name: "Giant",
  41981. height: math.unit(50, "feet")
  41982. },
  41983. {
  41984. name: "Macro",
  41985. height: math.unit(1000, "feet")
  41986. },
  41987. {
  41988. name: "Megamacro",
  41989. height: math.unit(1, "mile")
  41990. },
  41991. ]
  41992. ))
  41993. characterMakers.push(() => makeCharacter(
  41994. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41995. {
  41996. front: {
  41997. height: math.unit(10, "feet"),
  41998. weight: math.unit(1442, "lb"),
  41999. name: "Front",
  42000. image: {
  42001. source: "./media/characters/mal-dragon/front.svg",
  42002. extra: 1515/1444,
  42003. bottom: 113/1628
  42004. }
  42005. },
  42006. back: {
  42007. height: math.unit(10, "feet"),
  42008. weight: math.unit(1442, "lb"),
  42009. name: "Back",
  42010. image: {
  42011. source: "./media/characters/mal-dragon/back.svg",
  42012. extra: 1527/1434,
  42013. bottom: 25/1552
  42014. }
  42015. },
  42016. },
  42017. [
  42018. {
  42019. name: "Mortal Interaction",
  42020. height: math.unit(10, "feet"),
  42021. default: true
  42022. },
  42023. {
  42024. name: "Large",
  42025. height: math.unit(30, "feet")
  42026. },
  42027. {
  42028. name: "Kaiju",
  42029. height: math.unit(300, "feet")
  42030. },
  42031. {
  42032. name: "Megamacro",
  42033. height: math.unit(10000, "feet")
  42034. },
  42035. {
  42036. name: "Continent Cracker",
  42037. height: math.unit(30000000, "feet")
  42038. },
  42039. {
  42040. name: "Sol-Swallowing",
  42041. height: math.unit(1e11, "feet")
  42042. },
  42043. {
  42044. name: "Light Universal",
  42045. height: math.unit(5, "universes")
  42046. },
  42047. {
  42048. name: "Universe Atoms",
  42049. height: math.unit(1.829e9, "universes")
  42050. },
  42051. {
  42052. name: "Light Multiversal",
  42053. height: math.unit(5, "multiverses")
  42054. },
  42055. {
  42056. name: "Multiverse Atoms",
  42057. height: math.unit(1.829e9, "multiverses")
  42058. },
  42059. {
  42060. name: "Fabric of Time",
  42061. height: math.unit(1e262, "multiverses")
  42062. },
  42063. ]
  42064. ))
  42065. characterMakers.push(() => makeCharacter(
  42066. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  42067. {
  42068. front: {
  42069. height: math.unit(9, "feet"),
  42070. weight: math.unit(1050, "lb"),
  42071. name: "Front",
  42072. image: {
  42073. source: "./media/characters/tabitha/front.svg",
  42074. extra: 2083/1994,
  42075. bottom: 68/2151
  42076. }
  42077. },
  42078. },
  42079. [
  42080. {
  42081. name: "Baseline",
  42082. height: math.unit(9, "feet"),
  42083. default: true
  42084. },
  42085. {
  42086. name: "Giant",
  42087. height: math.unit(90, "feet")
  42088. },
  42089. {
  42090. name: "Macro",
  42091. height: math.unit(900, "feet")
  42092. },
  42093. {
  42094. name: "Megamacro",
  42095. height: math.unit(9000, "feet")
  42096. },
  42097. {
  42098. name: "City-Crushing",
  42099. height: math.unit(27000, "feet")
  42100. },
  42101. {
  42102. name: "Mountain-Mashing",
  42103. height: math.unit(90000, "feet")
  42104. },
  42105. {
  42106. name: "Nation Nemesis",
  42107. height: math.unit(9e6, "feet")
  42108. },
  42109. {
  42110. name: "Continent Cracker",
  42111. height: math.unit(27e6, "feet")
  42112. },
  42113. {
  42114. name: "Earth-Eclipsing",
  42115. height: math.unit(2.7e8, "feet")
  42116. },
  42117. {
  42118. name: "Gas Giant Gulper",
  42119. height: math.unit(2.7e9, "feet")
  42120. },
  42121. {
  42122. name: "Sol-Swallowing",
  42123. height: math.unit(9e10, "feet")
  42124. },
  42125. {
  42126. name: "Galaxy Gulper",
  42127. height: math.unit(9, "galaxies")
  42128. },
  42129. {
  42130. name: "Cosmos Churner",
  42131. height: math.unit(9, "universes")
  42132. },
  42133. ]
  42134. ))
  42135. characterMakers.push(() => makeCharacter(
  42136. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  42137. {
  42138. front: {
  42139. height: math.unit(160, "cm"),
  42140. weight: math.unit(55, "kg"),
  42141. name: "Front",
  42142. image: {
  42143. source: "./media/characters/tow/front.svg",
  42144. extra: 1751/1722,
  42145. bottom: 74/1825
  42146. }
  42147. },
  42148. },
  42149. [
  42150. {
  42151. name: "Norm",
  42152. height: math.unit(160, "cm")
  42153. },
  42154. {
  42155. name: "Casual",
  42156. height: math.unit(3200, "m"),
  42157. default: true
  42158. },
  42159. {
  42160. name: "Show-Off",
  42161. height: math.unit(160, "km")
  42162. },
  42163. ]
  42164. ))
  42165. characterMakers.push(() => makeCharacter(
  42166. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  42167. {
  42168. front: {
  42169. height: math.unit(7 + 11/12, "feet"),
  42170. weight: math.unit(342.8, "lb"),
  42171. name: "Front",
  42172. image: {
  42173. source: "./media/characters/vivian-orca-dragon/front.svg",
  42174. extra: 1890/1865,
  42175. bottom: 28/1918
  42176. }
  42177. },
  42178. },
  42179. [
  42180. {
  42181. name: "Micro",
  42182. height: math.unit(5, "inches")
  42183. },
  42184. {
  42185. name: "Normal",
  42186. height: math.unit(7 + 11/12, "feet"),
  42187. default: true
  42188. },
  42189. {
  42190. name: "Macro",
  42191. height: math.unit(395 + 7/12, "feet")
  42192. },
  42193. ]
  42194. ))
  42195. characterMakers.push(() => makeCharacter(
  42196. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  42197. {
  42198. side: {
  42199. height: math.unit(10, "feet"),
  42200. weight: math.unit(1442, "lb"),
  42201. name: "Side",
  42202. image: {
  42203. source: "./media/characters/lotherakon/side.svg",
  42204. extra: 1604/1497,
  42205. bottom: 89/1693
  42206. }
  42207. },
  42208. },
  42209. [
  42210. {
  42211. name: "Mortal Interaction",
  42212. height: math.unit(10, "feet")
  42213. },
  42214. {
  42215. name: "Large",
  42216. height: math.unit(30, "feet"),
  42217. default: true
  42218. },
  42219. {
  42220. name: "Giant",
  42221. height: math.unit(100, "feet")
  42222. },
  42223. {
  42224. name: "Kaiju",
  42225. height: math.unit(300, "feet")
  42226. },
  42227. {
  42228. name: "Macro",
  42229. height: math.unit(1000, "feet")
  42230. },
  42231. {
  42232. name: "Macro+",
  42233. height: math.unit(3000, "feet")
  42234. },
  42235. {
  42236. name: "Megamacro",
  42237. height: math.unit(10000, "feet")
  42238. },
  42239. {
  42240. name: "City-Crushing",
  42241. height: math.unit(30000, "feet")
  42242. },
  42243. {
  42244. name: "Continent Cracker",
  42245. height: math.unit(30e6, "feet")
  42246. },
  42247. {
  42248. name: "Earth Eclipsing",
  42249. height: math.unit(3e8, "feet")
  42250. },
  42251. {
  42252. name: "Gas Giant Gulper",
  42253. height: math.unit(3e9, "feet")
  42254. },
  42255. {
  42256. name: "Sol-Swallowing",
  42257. height: math.unit(1e11, "feet")
  42258. },
  42259. {
  42260. name: "System Swallower",
  42261. height: math.unit(3e14, "feet")
  42262. },
  42263. {
  42264. name: "Galaxy Gulper",
  42265. height: math.unit(10, "galaxies")
  42266. },
  42267. {
  42268. name: "Light Universal",
  42269. height: math.unit(5, "universes")
  42270. },
  42271. {
  42272. name: "Universe Palm",
  42273. height: math.unit(20, "universes")
  42274. },
  42275. {
  42276. name: "Light Multiversal",
  42277. height: math.unit(5, "multiverses")
  42278. },
  42279. {
  42280. name: "Multiverse Palm",
  42281. height: math.unit(20, "multiverses")
  42282. },
  42283. {
  42284. name: "Inferno Incarnate",
  42285. height: math.unit(1e7, "multiverses")
  42286. },
  42287. ]
  42288. ))
  42289. characterMakers.push(() => makeCharacter(
  42290. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  42291. {
  42292. front: {
  42293. height: math.unit(8, "feet"),
  42294. weight: math.unit(1200, "lb"),
  42295. name: "Front",
  42296. image: {
  42297. source: "./media/characters/malithee/front.svg",
  42298. extra: 1675/1640,
  42299. bottom: 162/1837
  42300. }
  42301. },
  42302. },
  42303. [
  42304. {
  42305. name: "Mortal Interaction",
  42306. height: math.unit(8, "feet"),
  42307. default: true
  42308. },
  42309. {
  42310. name: "Large",
  42311. height: math.unit(24, "feet")
  42312. },
  42313. {
  42314. name: "Kaiju",
  42315. height: math.unit(240, "feet")
  42316. },
  42317. {
  42318. name: "Megamacro",
  42319. height: math.unit(8000, "feet")
  42320. },
  42321. {
  42322. name: "Continent Cracker",
  42323. height: math.unit(24e6, "feet")
  42324. },
  42325. {
  42326. name: "Earth-Eclipsing",
  42327. height: math.unit(2.4e8, "feet")
  42328. },
  42329. {
  42330. name: "Sol-Swallowing",
  42331. height: math.unit(8e10, "feet")
  42332. },
  42333. {
  42334. name: "Galaxy Gulper",
  42335. height: math.unit(8, "galaxies")
  42336. },
  42337. {
  42338. name: "Light Universal",
  42339. height: math.unit(4, "universes")
  42340. },
  42341. {
  42342. name: "Universe Atoms",
  42343. height: math.unit(1.829e9, "universes")
  42344. },
  42345. {
  42346. name: "Light Multiversal",
  42347. height: math.unit(4, "multiverses")
  42348. },
  42349. {
  42350. name: "Multiverse Atoms",
  42351. height: math.unit(1.829e9, "multiverses")
  42352. },
  42353. {
  42354. name: "Nigh-Omnipresence",
  42355. height: math.unit(8e261, "multiverses")
  42356. },
  42357. ]
  42358. ))
  42359. characterMakers.push(() => makeCharacter(
  42360. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  42361. {
  42362. front: {
  42363. height: math.unit(10, "feet"),
  42364. weight: math.unit(1500, "lb"),
  42365. name: "Front",
  42366. image: {
  42367. source: "./media/characters/miles-thestia/front.svg",
  42368. extra: 1812/1727,
  42369. bottom: 86/1898
  42370. }
  42371. },
  42372. back: {
  42373. height: math.unit(10, "feet"),
  42374. weight: math.unit(1500, "lb"),
  42375. name: "Back",
  42376. image: {
  42377. source: "./media/characters/miles-thestia/back.svg",
  42378. extra: 1799/1690,
  42379. bottom: 47/1846
  42380. }
  42381. },
  42382. frontNsfw: {
  42383. height: math.unit(10, "feet"),
  42384. weight: math.unit(1500, "lb"),
  42385. name: "Front (NSFW)",
  42386. image: {
  42387. source: "./media/characters/miles-thestia/front-nsfw.svg",
  42388. extra: 1812/1727,
  42389. bottom: 86/1898
  42390. }
  42391. },
  42392. },
  42393. [
  42394. {
  42395. name: "Mini-Macro",
  42396. height: math.unit(10, "feet"),
  42397. default: true
  42398. },
  42399. ]
  42400. ))
  42401. characterMakers.push(() => makeCharacter(
  42402. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  42403. {
  42404. front: {
  42405. height: math.unit(25, "feet"),
  42406. name: "Front",
  42407. image: {
  42408. source: "./media/characters/titan-s-wulf/front.svg",
  42409. extra: 1560/1484,
  42410. bottom: 76/1636
  42411. }
  42412. },
  42413. },
  42414. [
  42415. {
  42416. name: "Smallest",
  42417. height: math.unit(25, "feet"),
  42418. default: true
  42419. },
  42420. {
  42421. name: "Normal",
  42422. height: math.unit(200, "feet")
  42423. },
  42424. {
  42425. name: "Macro",
  42426. height: math.unit(200000, "feet")
  42427. },
  42428. {
  42429. name: "Multiversal Original",
  42430. height: math.unit(10000, "multiverses")
  42431. },
  42432. ]
  42433. ))
  42434. characterMakers.push(() => makeCharacter(
  42435. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  42436. {
  42437. front: {
  42438. height: math.unit(8, "feet"),
  42439. weight: math.unit(553, "lb"),
  42440. name: "Front",
  42441. image: {
  42442. source: "./media/characters/tawendeh/front.svg",
  42443. extra: 2365/2268,
  42444. bottom: 83/2448
  42445. }
  42446. },
  42447. frontClothed: {
  42448. height: math.unit(8, "feet"),
  42449. weight: math.unit(553, "lb"),
  42450. name: "Front (Clothed)",
  42451. image: {
  42452. source: "./media/characters/tawendeh/front-clothed.svg",
  42453. extra: 2365/2268,
  42454. bottom: 83/2448
  42455. }
  42456. },
  42457. back: {
  42458. height: math.unit(8, "feet"),
  42459. weight: math.unit(553, "lb"),
  42460. name: "Back",
  42461. image: {
  42462. source: "./media/characters/tawendeh/back.svg",
  42463. extra: 2397/2294,
  42464. bottom: 42/2439
  42465. }
  42466. },
  42467. },
  42468. [
  42469. {
  42470. name: "Mortal Interaction",
  42471. height: math.unit(8, "feet"),
  42472. default: true
  42473. },
  42474. {
  42475. name: "Giant",
  42476. height: math.unit(80, "feet")
  42477. },
  42478. {
  42479. name: "Macro",
  42480. height: math.unit(800, "feet")
  42481. },
  42482. {
  42483. name: "Megamacro",
  42484. height: math.unit(8000, "feet")
  42485. },
  42486. {
  42487. name: "City-Crushing",
  42488. height: math.unit(24000, "feet")
  42489. },
  42490. {
  42491. name: "Mountain-Mashing",
  42492. height: math.unit(80000, "feet")
  42493. },
  42494. {
  42495. name: "Nation Nemesis",
  42496. height: math.unit(8e6, "feet")
  42497. },
  42498. {
  42499. name: "Continent Cracker",
  42500. height: math.unit(24e6, "feet")
  42501. },
  42502. {
  42503. name: "Earth-Eclipsing",
  42504. height: math.unit(2.4e8, "feet")
  42505. },
  42506. {
  42507. name: "Gas Giant Gulper",
  42508. height: math.unit(2.4e9, "feet")
  42509. },
  42510. {
  42511. name: "Sol-Swallowing",
  42512. height: math.unit(8e10, "feet")
  42513. },
  42514. {
  42515. name: "Galaxy Gulper",
  42516. height: math.unit(8, "galaxies")
  42517. },
  42518. {
  42519. name: "Cosmos Churner",
  42520. height: math.unit(8, "universes")
  42521. },
  42522. {
  42523. name: "Omnipotent Otter",
  42524. height: math.unit(80, "universes")
  42525. },
  42526. ]
  42527. ))
  42528. characterMakers.push(() => makeCharacter(
  42529. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42530. {
  42531. front: {
  42532. height: math.unit(2.6, "meters"),
  42533. weight: math.unit(900, "kg"),
  42534. name: "Front",
  42535. image: {
  42536. source: "./media/characters/neesha/front.svg",
  42537. extra: 1803/1653,
  42538. bottom: 128/1931
  42539. }
  42540. },
  42541. },
  42542. [
  42543. {
  42544. name: "Normal",
  42545. height: math.unit(2.6, "meters"),
  42546. default: true
  42547. },
  42548. {
  42549. name: "Macro",
  42550. height: math.unit(50, "meters")
  42551. },
  42552. ]
  42553. ))
  42554. characterMakers.push(() => makeCharacter(
  42555. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42556. {
  42557. front: {
  42558. height: math.unit(5, "feet"),
  42559. weight: math.unit(185, "lb"),
  42560. name: "Front",
  42561. image: {
  42562. source: "./media/characters/kyera/front.svg",
  42563. extra: 1875/1790,
  42564. bottom: 96/1971
  42565. }
  42566. },
  42567. },
  42568. [
  42569. {
  42570. name: "Normal",
  42571. height: math.unit(5, "feet"),
  42572. default: true
  42573. },
  42574. ]
  42575. ))
  42576. characterMakers.push(() => makeCharacter(
  42577. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42578. {
  42579. front: {
  42580. height: math.unit(7 + 6/12, "feet"),
  42581. weight: math.unit(540, "lb"),
  42582. name: "Front",
  42583. image: {
  42584. source: "./media/characters/yuko/front.svg",
  42585. extra: 1282/1222,
  42586. bottom: 101/1383
  42587. }
  42588. },
  42589. frontClothed: {
  42590. height: math.unit(7 + 6/12, "feet"),
  42591. weight: math.unit(540, "lb"),
  42592. name: "Front (Clothed)",
  42593. image: {
  42594. source: "./media/characters/yuko/front-clothed.svg",
  42595. extra: 1282/1222,
  42596. bottom: 101/1383
  42597. }
  42598. },
  42599. },
  42600. [
  42601. {
  42602. name: "Normal",
  42603. height: math.unit(7 + 6/12, "feet"),
  42604. default: true
  42605. },
  42606. {
  42607. name: "Macro",
  42608. height: math.unit(26 + 9/12, "feet")
  42609. },
  42610. {
  42611. name: "Megamacro",
  42612. height: math.unit(300, "feet")
  42613. },
  42614. {
  42615. name: "Gigamacro",
  42616. height: math.unit(5000, "feet")
  42617. },
  42618. {
  42619. name: "Planetary",
  42620. height: math.unit(10000, "miles")
  42621. },
  42622. ]
  42623. ))
  42624. characterMakers.push(() => makeCharacter(
  42625. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42626. {
  42627. front: {
  42628. height: math.unit(8 + 2/12, "feet"),
  42629. weight: math.unit(600, "lb"),
  42630. name: "Front",
  42631. image: {
  42632. source: "./media/characters/deam-nitrel/front.svg",
  42633. extra: 1308/1234,
  42634. bottom: 125/1433
  42635. }
  42636. },
  42637. },
  42638. [
  42639. {
  42640. name: "Normal",
  42641. height: math.unit(8 + 2/12, "feet"),
  42642. default: true
  42643. },
  42644. ]
  42645. ))
  42646. characterMakers.push(() => makeCharacter(
  42647. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42648. {
  42649. front: {
  42650. height: math.unit(6.1, "feet"),
  42651. weight: math.unit(180, "lb"),
  42652. name: "Front",
  42653. image: {
  42654. source: "./media/characters/skyress/front.svg",
  42655. extra: 1045/915,
  42656. bottom: 28/1073
  42657. }
  42658. },
  42659. maw: {
  42660. height: math.unit(1, "feet"),
  42661. name: "Maw",
  42662. image: {
  42663. source: "./media/characters/skyress/maw.svg"
  42664. }
  42665. },
  42666. },
  42667. [
  42668. {
  42669. name: "Normal",
  42670. height: math.unit(6.1, "feet"),
  42671. default: true
  42672. },
  42673. {
  42674. name: "Macro",
  42675. height: math.unit(200, "feet")
  42676. },
  42677. ]
  42678. ))
  42679. characterMakers.push(() => makeCharacter(
  42680. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42681. {
  42682. front: {
  42683. height: math.unit(4 + 2/12, "feet"),
  42684. weight: math.unit(40, "kg"),
  42685. name: "Front",
  42686. image: {
  42687. source: "./media/characters/amethyst-jones/front.svg",
  42688. extra: 1220/1150,
  42689. bottom: 101/1321
  42690. }
  42691. },
  42692. },
  42693. [
  42694. {
  42695. name: "Normal",
  42696. height: math.unit(4 + 2/12, "feet"),
  42697. default: true
  42698. },
  42699. ]
  42700. ))
  42701. characterMakers.push(() => makeCharacter(
  42702. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42703. {
  42704. front: {
  42705. height: math.unit(1.7, "m"),
  42706. weight: math.unit(135, "lb"),
  42707. name: "Front",
  42708. image: {
  42709. source: "./media/characters/jade/front.svg",
  42710. extra: 1818/1767,
  42711. bottom: 32/1850
  42712. }
  42713. },
  42714. back: {
  42715. height: math.unit(1.7, "m"),
  42716. weight: math.unit(135, "lb"),
  42717. name: "Back",
  42718. image: {
  42719. source: "./media/characters/jade/back.svg",
  42720. extra: 1869/1809,
  42721. bottom: 35/1904
  42722. }
  42723. },
  42724. hand: {
  42725. height: math.unit(0.24, "m"),
  42726. name: "Hand",
  42727. image: {
  42728. source: "./media/characters/jade/hand.svg"
  42729. }
  42730. },
  42731. foot: {
  42732. height: math.unit(0.263, "m"),
  42733. name: "Foot",
  42734. image: {
  42735. source: "./media/characters/jade/foot.svg"
  42736. }
  42737. },
  42738. dick: {
  42739. height: math.unit(0.47, "m"),
  42740. name: "Dick",
  42741. image: {
  42742. source: "./media/characters/jade/dick.svg"
  42743. }
  42744. },
  42745. },
  42746. [
  42747. {
  42748. name: "Micro",
  42749. height: math.unit(22, "cm")
  42750. },
  42751. {
  42752. name: "Normal",
  42753. height: math.unit(1.7, "m"),
  42754. default: true
  42755. },
  42756. {
  42757. name: "Macro",
  42758. height: math.unit(152, "m")
  42759. },
  42760. ]
  42761. ))
  42762. characterMakers.push(() => makeCharacter(
  42763. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42764. {
  42765. front: {
  42766. height: math.unit(100, "miles"),
  42767. weight: math.unit(20000, "tons"),
  42768. name: "Front",
  42769. image: {
  42770. source: "./media/characters/cookie/front.svg",
  42771. extra: 1125/1070,
  42772. bottom: 30/1155
  42773. }
  42774. },
  42775. },
  42776. [
  42777. {
  42778. name: "Big",
  42779. height: math.unit(50, "feet")
  42780. },
  42781. {
  42782. name: "Macro",
  42783. height: math.unit(100, "miles"),
  42784. default: true
  42785. },
  42786. {
  42787. name: "Megamacro",
  42788. height: math.unit(90000, "miles")
  42789. },
  42790. ]
  42791. ))
  42792. characterMakers.push(() => makeCharacter(
  42793. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42794. {
  42795. front: {
  42796. height: math.unit(6, "feet"),
  42797. weight: math.unit(145, "lb"),
  42798. name: "Front",
  42799. image: {
  42800. source: "./media/characters/farzian/front.svg",
  42801. extra: 1902/1693,
  42802. bottom: 108/2010
  42803. }
  42804. },
  42805. },
  42806. [
  42807. {
  42808. name: "Macro",
  42809. height: math.unit(500, "feet"),
  42810. default: true
  42811. },
  42812. ]
  42813. ))
  42814. characterMakers.push(() => makeCharacter(
  42815. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42816. {
  42817. front: {
  42818. height: math.unit(3 + 6/12, "feet"),
  42819. weight: math.unit(50, "lb"),
  42820. name: "Front",
  42821. image: {
  42822. source: "./media/characters/kimberly-tilson/front.svg",
  42823. extra: 1400/1322,
  42824. bottom: 36/1436
  42825. }
  42826. },
  42827. back: {
  42828. height: math.unit(3 + 6/12, "feet"),
  42829. weight: math.unit(50, "lb"),
  42830. name: "Back",
  42831. image: {
  42832. source: "./media/characters/kimberly-tilson/back.svg",
  42833. extra: 1370/1307,
  42834. bottom: 20/1390
  42835. }
  42836. },
  42837. },
  42838. [
  42839. {
  42840. name: "Normal",
  42841. height: math.unit(3 + 6/12, "feet"),
  42842. default: true
  42843. },
  42844. ]
  42845. ))
  42846. characterMakers.push(() => makeCharacter(
  42847. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42848. {
  42849. front: {
  42850. height: math.unit(350, "meters"),
  42851. weight: math.unit(7.57059e+8, "lb"),
  42852. name: "Front",
  42853. image: {
  42854. source: "./media/characters/harthos/front.svg",
  42855. extra: 455/446,
  42856. bottom: 15/470
  42857. },
  42858. form: "peacekeeper",
  42859. default: true
  42860. },
  42861. allusus_front: {
  42862. height: math.unit(270, "meters"),
  42863. weight: math.unit(3.47550e+8, "lb"),
  42864. name: "Front",
  42865. image: {
  42866. source: "./media/characters/harthos/allusus-front.svg",
  42867. extra: 455/446,
  42868. bottom: 15/470
  42869. },
  42870. form: "allusus",
  42871. },
  42872. },
  42873. [
  42874. {
  42875. name: "Macro",
  42876. height: math.unit(350, "meters"),
  42877. default: true,
  42878. form: "peacekeeper"
  42879. },
  42880. {
  42881. name: "Macro",
  42882. height: math.unit(270, "meters"),
  42883. default: true,
  42884. form: "allusus"
  42885. },
  42886. ],
  42887. {
  42888. "peacekeeper": {
  42889. name: "Peacekeeper",
  42890. default: true
  42891. },
  42892. "allusus": {
  42893. name: "Allusus",
  42894. },
  42895. }
  42896. ))
  42897. characterMakers.push(() => makeCharacter(
  42898. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42899. {
  42900. front: {
  42901. height: math.unit(15, "feet"),
  42902. name: "Front",
  42903. image: {
  42904. source: "./media/characters/hypatia/front.svg",
  42905. extra: 1653/1591,
  42906. bottom: 79/1732
  42907. }
  42908. },
  42909. },
  42910. [
  42911. {
  42912. name: "Normal",
  42913. height: math.unit(15, "feet")
  42914. },
  42915. {
  42916. name: "Small",
  42917. height: math.unit(300, "feet")
  42918. },
  42919. {
  42920. name: "Macro",
  42921. height: math.unit(2500, "feet"),
  42922. default: true
  42923. },
  42924. {
  42925. name: "Mega Macro",
  42926. height: math.unit(1500, "miles")
  42927. },
  42928. {
  42929. name: "Giga Macro",
  42930. height: math.unit(1.5e6, "miles")
  42931. },
  42932. ]
  42933. ))
  42934. characterMakers.push(() => makeCharacter(
  42935. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42936. {
  42937. front: {
  42938. height: math.unit(6, "feet"),
  42939. weight: math.unit(200, "lb"),
  42940. name: "Front",
  42941. image: {
  42942. source: "./media/characters/wulver/front.svg",
  42943. extra: 1724/1632,
  42944. bottom: 130/1854
  42945. }
  42946. },
  42947. frontNsfw: {
  42948. height: math.unit(6, "feet"),
  42949. weight: math.unit(200, "lb"),
  42950. name: "Front (NSFW)",
  42951. image: {
  42952. source: "./media/characters/wulver/front-nsfw.svg",
  42953. extra: 1724/1632,
  42954. bottom: 130/1854
  42955. }
  42956. },
  42957. },
  42958. [
  42959. {
  42960. name: "Human-Sized",
  42961. height: math.unit(6, "feet")
  42962. },
  42963. {
  42964. name: "Normal",
  42965. height: math.unit(4, "meters"),
  42966. default: true
  42967. },
  42968. {
  42969. name: "Large",
  42970. height: math.unit(6, "m")
  42971. },
  42972. ]
  42973. ))
  42974. characterMakers.push(() => makeCharacter(
  42975. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42976. {
  42977. front: {
  42978. height: math.unit(7, "feet"),
  42979. name: "Front",
  42980. image: {
  42981. source: "./media/characters/maru/front.svg",
  42982. extra: 1595/1570,
  42983. bottom: 0/1595
  42984. }
  42985. },
  42986. },
  42987. [
  42988. {
  42989. name: "Normal",
  42990. height: math.unit(7, "feet"),
  42991. default: true
  42992. },
  42993. {
  42994. name: "Macro",
  42995. height: math.unit(700, "feet")
  42996. },
  42997. {
  42998. name: "Mega Macro",
  42999. height: math.unit(25, "miles")
  43000. },
  43001. ]
  43002. ))
  43003. characterMakers.push(() => makeCharacter(
  43004. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  43005. {
  43006. front: {
  43007. height: math.unit(6, "feet"),
  43008. weight: math.unit(170, "lb"),
  43009. name: "Front",
  43010. image: {
  43011. source: "./media/characters/xenon/front.svg",
  43012. extra: 1376/1305,
  43013. bottom: 56/1432
  43014. }
  43015. },
  43016. back: {
  43017. height: math.unit(6, "feet"),
  43018. weight: math.unit(170, "lb"),
  43019. name: "Back",
  43020. image: {
  43021. source: "./media/characters/xenon/back.svg",
  43022. extra: 1328/1259,
  43023. bottom: 95/1423
  43024. }
  43025. },
  43026. maw: {
  43027. height: math.unit(0.52, "feet"),
  43028. name: "Maw",
  43029. image: {
  43030. source: "./media/characters/xenon/maw.svg"
  43031. }
  43032. },
  43033. handLeft: {
  43034. height: math.unit(0.82 * 169 / 153, "feet"),
  43035. name: "Hand (Left)",
  43036. image: {
  43037. source: "./media/characters/xenon/hand-left.svg"
  43038. }
  43039. },
  43040. handRight: {
  43041. height: math.unit(0.82, "feet"),
  43042. name: "Hand (Right)",
  43043. image: {
  43044. source: "./media/characters/xenon/hand-right.svg"
  43045. }
  43046. },
  43047. footLeft: {
  43048. height: math.unit(1.13, "feet"),
  43049. name: "Foot (Left)",
  43050. image: {
  43051. source: "./media/characters/xenon/foot-left.svg"
  43052. }
  43053. },
  43054. footRight: {
  43055. height: math.unit(1.13 * 194 / 196, "feet"),
  43056. name: "Foot (Right)",
  43057. image: {
  43058. source: "./media/characters/xenon/foot-right.svg"
  43059. }
  43060. },
  43061. },
  43062. [
  43063. {
  43064. name: "Micro",
  43065. height: math.unit(0.8, "inches")
  43066. },
  43067. {
  43068. name: "Normal",
  43069. height: math.unit(6, "feet")
  43070. },
  43071. {
  43072. name: "Macro",
  43073. height: math.unit(50, "feet"),
  43074. default: true
  43075. },
  43076. {
  43077. name: "Macro+",
  43078. height: math.unit(250, "feet")
  43079. },
  43080. {
  43081. name: "Megamacro",
  43082. height: math.unit(1500, "feet")
  43083. },
  43084. ]
  43085. ))
  43086. characterMakers.push(() => makeCharacter(
  43087. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  43088. {
  43089. front: {
  43090. height: math.unit(7 + 5/12, "feet"),
  43091. name: "Front",
  43092. image: {
  43093. source: "./media/characters/zane/front.svg",
  43094. extra: 1260/1203,
  43095. bottom: 94/1354
  43096. }
  43097. },
  43098. back: {
  43099. height: math.unit(5.05, "feet"),
  43100. name: "Back",
  43101. image: {
  43102. source: "./media/characters/zane/back.svg",
  43103. extra: 893/829,
  43104. bottom: 30/923
  43105. }
  43106. },
  43107. werewolf: {
  43108. height: math.unit(11, "feet"),
  43109. name: "Werewolf",
  43110. image: {
  43111. source: "./media/characters/zane/werewolf.svg",
  43112. extra: 1383/1323,
  43113. bottom: 89/1472
  43114. }
  43115. },
  43116. foot: {
  43117. height: math.unit(1.46, "feet"),
  43118. name: "Foot",
  43119. image: {
  43120. source: "./media/characters/zane/foot.svg"
  43121. }
  43122. },
  43123. footFront: {
  43124. height: math.unit(0.784, "feet"),
  43125. name: "Foot (Front)",
  43126. image: {
  43127. source: "./media/characters/zane/foot-front.svg"
  43128. }
  43129. },
  43130. dick: {
  43131. height: math.unit(1.95, "feet"),
  43132. name: "Dick",
  43133. image: {
  43134. source: "./media/characters/zane/dick.svg"
  43135. }
  43136. },
  43137. dickWerewolf: {
  43138. height: math.unit(3.77, "feet"),
  43139. name: "Dick (Werewolf)",
  43140. image: {
  43141. source: "./media/characters/zane/dick.svg"
  43142. }
  43143. },
  43144. },
  43145. [
  43146. {
  43147. name: "Normal",
  43148. height: math.unit(7 + 5/12, "feet"),
  43149. default: true
  43150. },
  43151. ]
  43152. ))
  43153. characterMakers.push(() => makeCharacter(
  43154. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  43155. {
  43156. front: {
  43157. height: math.unit(6 + 2/12, "feet"),
  43158. weight: math.unit(284, "lb"),
  43159. name: "Front",
  43160. image: {
  43161. source: "./media/characters/benni-desparque/front.svg",
  43162. extra: 878/729,
  43163. bottom: 58/936
  43164. }
  43165. },
  43166. back: {
  43167. height: math.unit(6 + 2/12, "feet"),
  43168. weight: math.unit(284, "lb"),
  43169. name: "Back",
  43170. image: {
  43171. source: "./media/characters/benni-desparque/back.svg",
  43172. extra: 901/756,
  43173. bottom: 51/952
  43174. }
  43175. },
  43176. dressed: {
  43177. height: math.unit(6 + 2/12 + 0.5/12, "feet"),
  43178. weight: math.unit(284, "lb"),
  43179. name: "Dressed",
  43180. image: {
  43181. source: "./media/characters/benni-desparque/dressed.svg",
  43182. extra: 1514/1276,
  43183. bottom: 65/1579
  43184. }
  43185. },
  43186. hand: {
  43187. height: math.unit(1.28, "feet"),
  43188. name: "Hand",
  43189. image: {
  43190. source: "./media/characters/benni-desparque/hand.svg"
  43191. }
  43192. },
  43193. foot: {
  43194. height: math.unit(1.53, "feet"),
  43195. name: "Foot",
  43196. image: {
  43197. source: "./media/characters/benni-desparque/foot.svg"
  43198. }
  43199. },
  43200. aiControlUnit: {
  43201. height: math.unit(0.175, "feet"),
  43202. name: "AI Control Unit",
  43203. image: {
  43204. source: "./media/characters/benni-desparque/ai-control-unit.svg"
  43205. }
  43206. },
  43207. },
  43208. [
  43209. {
  43210. name: "Civilian",
  43211. height: math.unit(6 + 2/12, "feet")
  43212. },
  43213. {
  43214. name: "Normal",
  43215. height: math.unit(98, "feet"),
  43216. default: true
  43217. },
  43218. {
  43219. name: "Kaiju Fighter",
  43220. height: math.unit(268, "feet")
  43221. },
  43222. ]
  43223. ))
  43224. characterMakers.push(() => makeCharacter(
  43225. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  43226. {
  43227. front: {
  43228. height: math.unit(5, "feet"),
  43229. weight: math.unit(105, "lb"),
  43230. name: "Front",
  43231. image: {
  43232. source: "./media/characters/maxine/front.svg",
  43233. extra: 1386/1250,
  43234. bottom: 71/1457
  43235. }
  43236. },
  43237. },
  43238. [
  43239. {
  43240. name: "Normal",
  43241. height: math.unit(5, "feet"),
  43242. default: true
  43243. },
  43244. ]
  43245. ))
  43246. characterMakers.push(() => makeCharacter(
  43247. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  43248. {
  43249. front: {
  43250. height: math.unit(11 + 7/12, "feet"),
  43251. weight: math.unit(9576, "lb"),
  43252. name: "Front",
  43253. image: {
  43254. source: "./media/characters/scaly/front.svg",
  43255. extra: 888/867,
  43256. bottom: 36/924
  43257. }
  43258. },
  43259. },
  43260. [
  43261. {
  43262. name: "Normal",
  43263. height: math.unit(11 + 7/12, "feet"),
  43264. default: true
  43265. },
  43266. ]
  43267. ))
  43268. characterMakers.push(() => makeCharacter(
  43269. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  43270. {
  43271. front: {
  43272. height: math.unit(6 + 3/12, "feet"),
  43273. name: "Front",
  43274. image: {
  43275. source: "./media/characters/saelria/front.svg",
  43276. extra: 1243/1138,
  43277. bottom: 46/1289
  43278. }
  43279. },
  43280. },
  43281. [
  43282. {
  43283. name: "Micro",
  43284. height: math.unit(6, "inches"),
  43285. },
  43286. {
  43287. name: "Normal",
  43288. height: math.unit(6 + 3/12, "feet"),
  43289. default: true
  43290. },
  43291. {
  43292. name: "Macro",
  43293. height: math.unit(25, "feet")
  43294. },
  43295. ]
  43296. ))
  43297. characterMakers.push(() => makeCharacter(
  43298. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  43299. {
  43300. front: {
  43301. height: math.unit(80, "meters"),
  43302. weight: math.unit(7000, "tonnes"),
  43303. name: "Front",
  43304. image: {
  43305. source: "./media/characters/tef/front.svg",
  43306. extra: 2036/1991,
  43307. bottom: 54/2090
  43308. }
  43309. },
  43310. back: {
  43311. height: math.unit(80, "meters"),
  43312. weight: math.unit(7000, "tonnes"),
  43313. name: "Back",
  43314. image: {
  43315. source: "./media/characters/tef/back.svg",
  43316. extra: 2036/1991,
  43317. bottom: 54/2090
  43318. }
  43319. },
  43320. },
  43321. [
  43322. {
  43323. name: "Macro",
  43324. height: math.unit(80, "meters"),
  43325. default: true
  43326. },
  43327. ]
  43328. ))
  43329. characterMakers.push(() => makeCharacter(
  43330. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  43331. {
  43332. front: {
  43333. height: math.unit(13, "feet"),
  43334. weight: math.unit(6, "tons"),
  43335. name: "Front",
  43336. image: {
  43337. source: "./media/characters/rover/front.svg",
  43338. extra: 1233/1156,
  43339. bottom: 50/1283
  43340. }
  43341. },
  43342. back: {
  43343. height: math.unit(13, "feet"),
  43344. weight: math.unit(6, "tons"),
  43345. name: "Back",
  43346. image: {
  43347. source: "./media/characters/rover/back.svg",
  43348. extra: 1327/1258,
  43349. bottom: 39/1366
  43350. }
  43351. },
  43352. },
  43353. [
  43354. {
  43355. name: "Normal",
  43356. height: math.unit(13, "feet"),
  43357. default: true
  43358. },
  43359. {
  43360. name: "Macro",
  43361. height: math.unit(1300, "feet")
  43362. },
  43363. {
  43364. name: "Megamacro",
  43365. height: math.unit(1300, "miles")
  43366. },
  43367. {
  43368. name: "Gigamacro",
  43369. height: math.unit(1300000, "miles")
  43370. },
  43371. ]
  43372. ))
  43373. characterMakers.push(() => makeCharacter(
  43374. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  43375. {
  43376. front: {
  43377. height: math.unit(10, "feet"),
  43378. weight: math.unit(500, "lb"),
  43379. name: "Front",
  43380. image: {
  43381. source: "./media/characters/ariz/front.svg",
  43382. extra: 461/450,
  43383. bottom: 16/477
  43384. }
  43385. },
  43386. },
  43387. [
  43388. {
  43389. name: "MiniMacro",
  43390. height: math.unit(10, "feet"),
  43391. default: true
  43392. },
  43393. ]
  43394. ))
  43395. characterMakers.push(() => makeCharacter(
  43396. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  43397. {
  43398. front: {
  43399. height: math.unit(6, "feet"),
  43400. weight: math.unit(140, "lb"),
  43401. name: "Front",
  43402. image: {
  43403. source: "./media/characters/sigrun/front.svg",
  43404. extra: 1418/1359,
  43405. bottom: 27/1445
  43406. }
  43407. },
  43408. },
  43409. [
  43410. {
  43411. name: "Macro",
  43412. height: math.unit(35, "feet"),
  43413. default: true
  43414. },
  43415. ]
  43416. ))
  43417. characterMakers.push(() => makeCharacter(
  43418. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  43419. {
  43420. front: {
  43421. height: math.unit(6, "feet"),
  43422. weight: math.unit(150, "lb"),
  43423. name: "Front",
  43424. image: {
  43425. source: "./media/characters/numin/front.svg",
  43426. extra: 1433/1388,
  43427. bottom: 12/1445
  43428. }
  43429. },
  43430. },
  43431. [
  43432. {
  43433. name: "Macro",
  43434. height: math.unit(21.5, "km"),
  43435. default: true
  43436. },
  43437. ]
  43438. ))
  43439. characterMakers.push(() => makeCharacter(
  43440. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  43441. {
  43442. front: {
  43443. height: math.unit(6, "feet"),
  43444. weight: math.unit(463, "lb"),
  43445. name: "Front",
  43446. image: {
  43447. source: "./media/characters/melwa/front.svg",
  43448. extra: 1307/1248,
  43449. bottom: 93/1400
  43450. }
  43451. },
  43452. },
  43453. [
  43454. {
  43455. name: "Macro",
  43456. height: math.unit(50, "meters"),
  43457. default: true
  43458. },
  43459. ]
  43460. ))
  43461. characterMakers.push(() => makeCharacter(
  43462. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  43463. {
  43464. front: {
  43465. height: math.unit(325, "feet"),
  43466. name: "Front",
  43467. image: {
  43468. source: "./media/characters/zorkaiju/front.svg",
  43469. extra: 1955/1814,
  43470. bottom: 40/1995
  43471. }
  43472. },
  43473. frontExtended: {
  43474. height: math.unit(325, "feet"),
  43475. name: "Front (Extended)",
  43476. image: {
  43477. source: "./media/characters/zorkaiju/front-extended.svg",
  43478. extra: 1955/1814,
  43479. bottom: 40/1995
  43480. }
  43481. },
  43482. side: {
  43483. height: math.unit(325, "feet"),
  43484. name: "Side",
  43485. image: {
  43486. source: "./media/characters/zorkaiju/side.svg",
  43487. extra: 1495/1396,
  43488. bottom: 17/1512
  43489. }
  43490. },
  43491. sideExtended: {
  43492. height: math.unit(325, "feet"),
  43493. name: "Side (Extended)",
  43494. image: {
  43495. source: "./media/characters/zorkaiju/side-extended.svg",
  43496. extra: 1495/1396,
  43497. bottom: 17/1512
  43498. }
  43499. },
  43500. back: {
  43501. height: math.unit(325, "feet"),
  43502. name: "Back",
  43503. image: {
  43504. source: "./media/characters/zorkaiju/back.svg",
  43505. extra: 1959/1821,
  43506. bottom: 31/1990
  43507. }
  43508. },
  43509. backExtended: {
  43510. height: math.unit(325, "feet"),
  43511. name: "Back (Extended)",
  43512. image: {
  43513. source: "./media/characters/zorkaiju/back-extended.svg",
  43514. extra: 1959/1821,
  43515. bottom: 31/1990
  43516. }
  43517. },
  43518. hand: {
  43519. height: math.unit(58.4, "feet"),
  43520. name: "Hand",
  43521. image: {
  43522. source: "./media/characters/zorkaiju/hand.svg"
  43523. }
  43524. },
  43525. handExtended: {
  43526. height: math.unit(61.4, "feet"),
  43527. name: "Hand (Extended)",
  43528. image: {
  43529. source: "./media/characters/zorkaiju/hand-extended.svg"
  43530. }
  43531. },
  43532. foot: {
  43533. height: math.unit(95, "feet"),
  43534. name: "Foot",
  43535. image: {
  43536. source: "./media/characters/zorkaiju/foot.svg"
  43537. }
  43538. },
  43539. leftArm: {
  43540. height: math.unit(59, "feet"),
  43541. name: "Left Arm",
  43542. image: {
  43543. source: "./media/characters/zorkaiju/left-arm.svg"
  43544. }
  43545. },
  43546. rightArm: {
  43547. height: math.unit(59, "feet"),
  43548. name: "Right Arm",
  43549. image: {
  43550. source: "./media/characters/zorkaiju/right-arm.svg"
  43551. }
  43552. },
  43553. leftArmExtended: {
  43554. height: math.unit(59 * 1.033546, "feet"),
  43555. name: "Left Arm (Extended)",
  43556. image: {
  43557. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43558. }
  43559. },
  43560. rightArmExtended: {
  43561. height: math.unit(59 * 1.0496, "feet"),
  43562. name: "Right Arm (Extended)",
  43563. image: {
  43564. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43565. }
  43566. },
  43567. tail: {
  43568. height: math.unit(104, "feet"),
  43569. name: "Tail",
  43570. image: {
  43571. source: "./media/characters/zorkaiju/tail.svg"
  43572. }
  43573. },
  43574. tailExtended: {
  43575. height: math.unit(104, "feet"),
  43576. name: "Tail (Extended)",
  43577. image: {
  43578. source: "./media/characters/zorkaiju/tail-extended.svg"
  43579. }
  43580. },
  43581. tailBottom: {
  43582. height: math.unit(104, "feet"),
  43583. name: "Tail Bottom",
  43584. image: {
  43585. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43586. }
  43587. },
  43588. crystal: {
  43589. height: math.unit(27.54, "feet"),
  43590. name: "Crystal",
  43591. image: {
  43592. source: "./media/characters/zorkaiju/crystal.svg"
  43593. }
  43594. },
  43595. },
  43596. [
  43597. {
  43598. name: "Kaiju",
  43599. height: math.unit(325, "feet"),
  43600. default: true
  43601. },
  43602. ]
  43603. ))
  43604. characterMakers.push(() => makeCharacter(
  43605. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43606. {
  43607. front: {
  43608. height: math.unit(6 + 1/12, "feet"),
  43609. weight: math.unit(115, "lb"),
  43610. name: "Front",
  43611. image: {
  43612. source: "./media/characters/bailey-belfry/front.svg",
  43613. extra: 1240/1121,
  43614. bottom: 101/1341
  43615. }
  43616. },
  43617. },
  43618. [
  43619. {
  43620. name: "Normal",
  43621. height: math.unit(6 + 1/12, "feet"),
  43622. default: true
  43623. },
  43624. ]
  43625. ))
  43626. characterMakers.push(() => makeCharacter(
  43627. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43628. {
  43629. side: {
  43630. height: math.unit(4, "meters"),
  43631. weight: math.unit(250, "kg"),
  43632. name: "Side",
  43633. image: {
  43634. source: "./media/characters/blacky/side.svg",
  43635. extra: 1027/919,
  43636. bottom: 43/1070
  43637. }
  43638. },
  43639. maw: {
  43640. height: math.unit(1, "meters"),
  43641. name: "Maw",
  43642. image: {
  43643. source: "./media/characters/blacky/maw.svg"
  43644. }
  43645. },
  43646. paw: {
  43647. height: math.unit(1, "meters"),
  43648. name: "Paw",
  43649. image: {
  43650. source: "./media/characters/blacky/paw.svg"
  43651. }
  43652. },
  43653. },
  43654. [
  43655. {
  43656. name: "Normal",
  43657. height: math.unit(4, "meters"),
  43658. default: true
  43659. },
  43660. ]
  43661. ))
  43662. characterMakers.push(() => makeCharacter(
  43663. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43664. {
  43665. front: {
  43666. height: math.unit(170, "cm"),
  43667. weight: math.unit(66, "kg"),
  43668. name: "Front",
  43669. image: {
  43670. source: "./media/characters/thux-ei/front.svg",
  43671. extra: 1109/1011,
  43672. bottom: 8/1117
  43673. }
  43674. },
  43675. },
  43676. [
  43677. {
  43678. name: "Normal",
  43679. height: math.unit(170, "cm"),
  43680. default: true
  43681. },
  43682. ]
  43683. ))
  43684. characterMakers.push(() => makeCharacter(
  43685. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43686. {
  43687. front: {
  43688. height: math.unit(5, "feet"),
  43689. weight: math.unit(120, "lb"),
  43690. name: "Front",
  43691. image: {
  43692. source: "./media/characters/roxanne-voltaire/front.svg",
  43693. extra: 1901/1779,
  43694. bottom: 53/1954
  43695. }
  43696. },
  43697. },
  43698. [
  43699. {
  43700. name: "Normal",
  43701. height: math.unit(5, "feet"),
  43702. default: true
  43703. },
  43704. {
  43705. name: "Giant",
  43706. height: math.unit(50, "feet")
  43707. },
  43708. {
  43709. name: "Titan",
  43710. height: math.unit(500, "feet")
  43711. },
  43712. {
  43713. name: "Macro",
  43714. height: math.unit(5000, "feet")
  43715. },
  43716. {
  43717. name: "Megamacro",
  43718. height: math.unit(50000, "feet")
  43719. },
  43720. {
  43721. name: "Gigamacro",
  43722. height: math.unit(500000, "feet")
  43723. },
  43724. {
  43725. name: "Teramacro",
  43726. height: math.unit(5e6, "feet")
  43727. },
  43728. ]
  43729. ))
  43730. characterMakers.push(() => makeCharacter(
  43731. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43732. {
  43733. front: {
  43734. height: math.unit(6 + 2/12, "feet"),
  43735. name: "Front",
  43736. image: {
  43737. source: "./media/characters/squeaks/front.svg",
  43738. extra: 1823/1768,
  43739. bottom: 138/1961
  43740. }
  43741. },
  43742. },
  43743. [
  43744. {
  43745. name: "Micro",
  43746. height: math.unit(0.5, "inches")
  43747. },
  43748. {
  43749. name: "Normal",
  43750. height: math.unit(6 + 2/12, "feet"),
  43751. default: true
  43752. },
  43753. {
  43754. name: "Macro",
  43755. height: math.unit(600, "feet")
  43756. },
  43757. ]
  43758. ))
  43759. characterMakers.push(() => makeCharacter(
  43760. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43761. {
  43762. front: {
  43763. height: math.unit(1.72, "meters"),
  43764. name: "Front",
  43765. image: {
  43766. source: "./media/characters/archinger/front.svg",
  43767. extra: 1861/1675,
  43768. bottom: 125/1986
  43769. }
  43770. },
  43771. back: {
  43772. height: math.unit(1.72, "meters"),
  43773. name: "Back",
  43774. image: {
  43775. source: "./media/characters/archinger/back.svg",
  43776. extra: 1844/1701,
  43777. bottom: 104/1948
  43778. }
  43779. },
  43780. cock: {
  43781. height: math.unit(0.59, "feet"),
  43782. name: "Cock",
  43783. image: {
  43784. source: "./media/characters/archinger/cock.svg"
  43785. }
  43786. },
  43787. },
  43788. [
  43789. {
  43790. name: "Normal",
  43791. height: math.unit(1.72, "meters"),
  43792. default: true
  43793. },
  43794. {
  43795. name: "Macro",
  43796. height: math.unit(84, "meters")
  43797. },
  43798. {
  43799. name: "Macro+",
  43800. height: math.unit(112, "meters")
  43801. },
  43802. {
  43803. name: "Macro++",
  43804. height: math.unit(960, "meters")
  43805. },
  43806. {
  43807. name: "Macro+++",
  43808. height: math.unit(4, "km")
  43809. },
  43810. {
  43811. name: "Macro++++",
  43812. height: math.unit(48, "km")
  43813. },
  43814. {
  43815. name: "Macro+++++",
  43816. height: math.unit(4500, "km")
  43817. },
  43818. ]
  43819. ))
  43820. characterMakers.push(() => makeCharacter(
  43821. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43822. {
  43823. front: {
  43824. height: math.unit(5 + 5/12, "feet"),
  43825. name: "Front",
  43826. image: {
  43827. source: "./media/characters/alsnapz/front.svg",
  43828. extra: 1157/1065,
  43829. bottom: 42/1199
  43830. }
  43831. },
  43832. },
  43833. [
  43834. {
  43835. name: "Normal",
  43836. height: math.unit(5 + 5/12, "feet"),
  43837. default: true
  43838. },
  43839. ]
  43840. ))
  43841. characterMakers.push(() => makeCharacter(
  43842. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43843. {
  43844. side: {
  43845. height: math.unit(3.2, "earths"),
  43846. name: "Side",
  43847. image: {
  43848. source: "./media/characters/mag/side.svg",
  43849. extra: 1331/1008,
  43850. bottom: 52/1383
  43851. }
  43852. },
  43853. wing: {
  43854. height: math.unit(1.94, "earths"),
  43855. name: "Wing",
  43856. image: {
  43857. source: "./media/characters/mag/wing.svg"
  43858. }
  43859. },
  43860. dick: {
  43861. height: math.unit(1.8, "earths"),
  43862. name: "Dick",
  43863. image: {
  43864. source: "./media/characters/mag/dick.svg"
  43865. }
  43866. },
  43867. ass: {
  43868. height: math.unit(1.33, "earths"),
  43869. name: "Ass",
  43870. image: {
  43871. source: "./media/characters/mag/ass.svg"
  43872. }
  43873. },
  43874. head: {
  43875. height: math.unit(1.1, "earths"),
  43876. name: "Head",
  43877. image: {
  43878. source: "./media/characters/mag/head.svg"
  43879. }
  43880. },
  43881. maw: {
  43882. height: math.unit(1.62, "earths"),
  43883. name: "Maw",
  43884. image: {
  43885. source: "./media/characters/mag/maw.svg"
  43886. }
  43887. },
  43888. },
  43889. [
  43890. {
  43891. name: "Small",
  43892. height: math.unit(162, "feet")
  43893. },
  43894. {
  43895. name: "Normal",
  43896. height: math.unit(3.2, "earths"),
  43897. default: true
  43898. },
  43899. ]
  43900. ))
  43901. characterMakers.push(() => makeCharacter(
  43902. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43903. {
  43904. front: {
  43905. height: math.unit(512, "feet"),
  43906. weight: math.unit(63509, "tonnes"),
  43907. name: "Front",
  43908. image: {
  43909. source: "./media/characters/vorrel-harroc/front.svg",
  43910. extra: 1075/1063,
  43911. bottom: 62/1137
  43912. }
  43913. },
  43914. },
  43915. [
  43916. {
  43917. name: "Normal",
  43918. height: math.unit(10, "feet")
  43919. },
  43920. {
  43921. name: "Macro",
  43922. height: math.unit(512, "feet"),
  43923. default: true
  43924. },
  43925. {
  43926. name: "Megamacro",
  43927. height: math.unit(256, "miles")
  43928. },
  43929. {
  43930. name: "Gigamacro",
  43931. height: math.unit(4096, "miles")
  43932. },
  43933. ]
  43934. ))
  43935. characterMakers.push(() => makeCharacter(
  43936. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43937. {
  43938. side: {
  43939. height: math.unit(50, "feet"),
  43940. name: "Side",
  43941. image: {
  43942. source: "./media/characters/froimar/side.svg",
  43943. extra: 855/638,
  43944. bottom: 99/954
  43945. }
  43946. },
  43947. },
  43948. [
  43949. {
  43950. name: "Macro",
  43951. height: math.unit(50, "feet"),
  43952. default: true
  43953. },
  43954. ]
  43955. ))
  43956. characterMakers.push(() => makeCharacter(
  43957. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43958. {
  43959. front: {
  43960. height: math.unit(210, "miles"),
  43961. name: "Front",
  43962. image: {
  43963. source: "./media/characters/timothy/front.svg",
  43964. extra: 1007/943,
  43965. bottom: 62/1069
  43966. }
  43967. },
  43968. frontSkirt: {
  43969. height: math.unit(210, "miles"),
  43970. name: "Front (Skirt)",
  43971. image: {
  43972. source: "./media/characters/timothy/front-skirt.svg",
  43973. extra: 1007/943,
  43974. bottom: 62/1069
  43975. }
  43976. },
  43977. frontCoat: {
  43978. height: math.unit(210, "miles"),
  43979. name: "Front (Coat)",
  43980. image: {
  43981. source: "./media/characters/timothy/front-coat.svg",
  43982. extra: 1007/943,
  43983. bottom: 62/1069
  43984. }
  43985. },
  43986. },
  43987. [
  43988. {
  43989. name: "Macro",
  43990. height: math.unit(210, "miles"),
  43991. default: true
  43992. },
  43993. {
  43994. name: "Megamacro",
  43995. height: math.unit(210000, "miles")
  43996. },
  43997. ]
  43998. ))
  43999. characterMakers.push(() => makeCharacter(
  44000. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  44001. {
  44002. front: {
  44003. height: math.unit(188, "feet"),
  44004. name: "Front",
  44005. image: {
  44006. source: "./media/characters/pyotr/front.svg",
  44007. extra: 1912/1826,
  44008. bottom: 18/1930
  44009. }
  44010. },
  44011. },
  44012. [
  44013. {
  44014. name: "Macro",
  44015. height: math.unit(188, "feet"),
  44016. default: true
  44017. },
  44018. {
  44019. name: "Megamacro",
  44020. height: math.unit(8, "miles")
  44021. },
  44022. ]
  44023. ))
  44024. characterMakers.push(() => makeCharacter(
  44025. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  44026. {
  44027. side: {
  44028. height: math.unit(10, "feet"),
  44029. weight: math.unit(4500, "lb"),
  44030. name: "Side",
  44031. image: {
  44032. source: "./media/characters/ackart/side.svg",
  44033. extra: 1776/1668,
  44034. bottom: 116/1892
  44035. }
  44036. },
  44037. },
  44038. [
  44039. {
  44040. name: "Normal",
  44041. height: math.unit(10, "feet"),
  44042. default: true
  44043. },
  44044. ]
  44045. ))
  44046. characterMakers.push(() => makeCharacter(
  44047. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  44048. {
  44049. side: {
  44050. height: math.unit(21, "feet"),
  44051. name: "Side",
  44052. image: {
  44053. source: "./media/characters/nolow/side.svg",
  44054. extra: 1484/1434,
  44055. bottom: 85/1569
  44056. }
  44057. },
  44058. sideErect: {
  44059. height: math.unit(21, "feet"),
  44060. name: "Side-erect",
  44061. image: {
  44062. source: "./media/characters/nolow/side-erect.svg",
  44063. extra: 1484/1434,
  44064. bottom: 85/1569
  44065. }
  44066. },
  44067. },
  44068. [
  44069. {
  44070. name: "Regular",
  44071. height: math.unit(12, "feet")
  44072. },
  44073. {
  44074. name: "Big Chee",
  44075. height: math.unit(21, "feet"),
  44076. default: true
  44077. },
  44078. ]
  44079. ))
  44080. characterMakers.push(() => makeCharacter(
  44081. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  44082. {
  44083. front: {
  44084. height: math.unit(7, "feet"),
  44085. weight: math.unit(250, "lb"),
  44086. name: "Front",
  44087. image: {
  44088. source: "./media/characters/nines/front.svg",
  44089. extra: 1741/1607,
  44090. bottom: 41/1782
  44091. }
  44092. },
  44093. side: {
  44094. height: math.unit(7, "feet"),
  44095. weight: math.unit(250, "lb"),
  44096. name: "Side",
  44097. image: {
  44098. source: "./media/characters/nines/side.svg",
  44099. extra: 1854/1735,
  44100. bottom: 93/1947
  44101. }
  44102. },
  44103. back: {
  44104. height: math.unit(7, "feet"),
  44105. weight: math.unit(250, "lb"),
  44106. name: "Back",
  44107. image: {
  44108. source: "./media/characters/nines/back.svg",
  44109. extra: 1748/1615,
  44110. bottom: 20/1768
  44111. }
  44112. },
  44113. },
  44114. [
  44115. {
  44116. name: "Megamacro",
  44117. height: math.unit(99, "km"),
  44118. default: true
  44119. },
  44120. ]
  44121. ))
  44122. characterMakers.push(() => makeCharacter(
  44123. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  44124. {
  44125. front: {
  44126. height: math.unit(5 + 10/12, "feet"),
  44127. weight: math.unit(210, "lb"),
  44128. name: "Front",
  44129. image: {
  44130. source: "./media/characters/zenith/front.svg",
  44131. extra: 1531/1452,
  44132. bottom: 198/1729
  44133. }
  44134. },
  44135. back: {
  44136. height: math.unit(5 + 10/12, "feet"),
  44137. weight: math.unit(210, "lb"),
  44138. name: "Back",
  44139. image: {
  44140. source: "./media/characters/zenith/back.svg",
  44141. extra: 1571/1487,
  44142. bottom: 75/1646
  44143. }
  44144. },
  44145. },
  44146. [
  44147. {
  44148. name: "Normal",
  44149. height: math.unit(5 + 10/12, "feet"),
  44150. default: true
  44151. }
  44152. ]
  44153. ))
  44154. characterMakers.push(() => makeCharacter(
  44155. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  44156. {
  44157. front: {
  44158. height: math.unit(4, "feet"),
  44159. weight: math.unit(60, "lb"),
  44160. name: "Front",
  44161. image: {
  44162. source: "./media/characters/jasper/front.svg",
  44163. extra: 1450/1379,
  44164. bottom: 19/1469
  44165. }
  44166. },
  44167. },
  44168. [
  44169. {
  44170. name: "Normal",
  44171. height: math.unit(4, "feet"),
  44172. default: true
  44173. },
  44174. ]
  44175. ))
  44176. characterMakers.push(() => makeCharacter(
  44177. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  44178. {
  44179. front: {
  44180. height: math.unit(6 + 5/12, "feet"),
  44181. weight: math.unit(290, "lb"),
  44182. name: "Front",
  44183. image: {
  44184. source: "./media/characters/tiberius-thyben/front.svg",
  44185. extra: 757/739,
  44186. bottom: 39/796
  44187. }
  44188. },
  44189. },
  44190. [
  44191. {
  44192. name: "Micro",
  44193. height: math.unit(1.5, "inches")
  44194. },
  44195. {
  44196. name: "Normal",
  44197. height: math.unit(6 + 5/12, "feet"),
  44198. default: true
  44199. },
  44200. {
  44201. name: "Macro",
  44202. height: math.unit(300, "feet")
  44203. },
  44204. ]
  44205. ))
  44206. characterMakers.push(() => makeCharacter(
  44207. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  44208. {
  44209. front: {
  44210. height: math.unit(5 + 6/12, "feet"),
  44211. weight: math.unit(60, "kg"),
  44212. name: "Front",
  44213. image: {
  44214. source: "./media/characters/sabre/front.svg",
  44215. extra: 738/671,
  44216. bottom: 27/765
  44217. }
  44218. },
  44219. },
  44220. [
  44221. {
  44222. name: "Teeny",
  44223. height: math.unit(2, "inches")
  44224. },
  44225. {
  44226. name: "Smol",
  44227. height: math.unit(8, "inches")
  44228. },
  44229. {
  44230. name: "Normal",
  44231. height: math.unit(5 + 6/12, "feet"),
  44232. default: true
  44233. },
  44234. {
  44235. name: "Mini-Macro",
  44236. height: math.unit(15, "feet")
  44237. },
  44238. {
  44239. name: "Macro",
  44240. height: math.unit(50, "feet")
  44241. },
  44242. ]
  44243. ))
  44244. characterMakers.push(() => makeCharacter(
  44245. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  44246. {
  44247. front: {
  44248. height: math.unit(6 + 4/12, "feet"),
  44249. weight: math.unit(170, "lb"),
  44250. name: "Front",
  44251. image: {
  44252. source: "./media/characters/charlie/front.svg",
  44253. extra: 1348/1228,
  44254. bottom: 15/1363
  44255. }
  44256. },
  44257. },
  44258. [
  44259. {
  44260. name: "Macro",
  44261. height: math.unit(1700, "meters"),
  44262. default: true
  44263. },
  44264. {
  44265. name: "MegaMacro",
  44266. height: math.unit(20400, "meters")
  44267. },
  44268. ]
  44269. ))
  44270. characterMakers.push(() => makeCharacter(
  44271. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  44272. {
  44273. front: {
  44274. height: math.unit(1.96, "meters"),
  44275. weight: math.unit(220, "lb"),
  44276. name: "Front",
  44277. image: {
  44278. source: "./media/characters/susan-grant/front.svg",
  44279. extra: 482/478,
  44280. bottom: 7/489
  44281. }
  44282. },
  44283. },
  44284. [
  44285. {
  44286. name: "Normal",
  44287. height: math.unit(1.96, "meters"),
  44288. default: true
  44289. },
  44290. {
  44291. name: "Macro",
  44292. height: math.unit(76.2, "meters")
  44293. },
  44294. {
  44295. name: "MegaMacro",
  44296. height: math.unit(305, "meters")
  44297. },
  44298. {
  44299. name: "GigaMacro",
  44300. height: math.unit(1220, "meters")
  44301. },
  44302. {
  44303. name: "SuperMacro",
  44304. height: math.unit(4878, "meters")
  44305. },
  44306. ]
  44307. ))
  44308. characterMakers.push(() => makeCharacter(
  44309. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  44310. {
  44311. front: {
  44312. height: math.unit(5 + 4/12, "feet"),
  44313. weight: math.unit(110, "lb"),
  44314. name: "Front",
  44315. image: {
  44316. source: "./media/characters/axel-isanov/front.svg",
  44317. extra: 1096/1065,
  44318. bottom: 13/1109
  44319. }
  44320. },
  44321. },
  44322. [
  44323. {
  44324. name: "Normal",
  44325. height: math.unit(5 + 4/12, "feet"),
  44326. default: true
  44327. },
  44328. ]
  44329. ))
  44330. characterMakers.push(() => makeCharacter(
  44331. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  44332. {
  44333. front: {
  44334. height: math.unit(9, "feet"),
  44335. weight: math.unit(467, "lb"),
  44336. name: "Front",
  44337. image: {
  44338. source: "./media/characters/necahual/front.svg",
  44339. extra: 920/873,
  44340. bottom: 26/946
  44341. }
  44342. },
  44343. back: {
  44344. height: math.unit(9, "feet"),
  44345. weight: math.unit(467, "lb"),
  44346. name: "Back",
  44347. image: {
  44348. source: "./media/characters/necahual/back.svg",
  44349. extra: 930/884,
  44350. bottom: 16/946
  44351. }
  44352. },
  44353. frontUnderwear: {
  44354. height: math.unit(9, "feet"),
  44355. weight: math.unit(467, "lb"),
  44356. name: "Front (Underwear)",
  44357. image: {
  44358. source: "./media/characters/necahual/front-underwear.svg",
  44359. extra: 920/873,
  44360. bottom: 26/946
  44361. }
  44362. },
  44363. frontDressed: {
  44364. height: math.unit(9, "feet"),
  44365. weight: math.unit(467, "lb"),
  44366. name: "Front (Dressed)",
  44367. image: {
  44368. source: "./media/characters/necahual/front-dressed.svg",
  44369. extra: 920/873,
  44370. bottom: 26/946
  44371. }
  44372. },
  44373. },
  44374. [
  44375. {
  44376. name: "Comprsesed",
  44377. height: math.unit(9, "feet")
  44378. },
  44379. {
  44380. name: "Natural",
  44381. height: math.unit(15, "feet"),
  44382. default: true
  44383. },
  44384. {
  44385. name: "Boosted",
  44386. height: math.unit(50, "feet")
  44387. },
  44388. {
  44389. name: "Boosted+",
  44390. height: math.unit(150, "feet")
  44391. },
  44392. {
  44393. name: "Max",
  44394. height: math.unit(500, "feet")
  44395. },
  44396. ]
  44397. ))
  44398. characterMakers.push(() => makeCharacter(
  44399. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  44400. {
  44401. front: {
  44402. height: math.unit(22 + 1/12, "feet"),
  44403. weight: math.unit(3200, "lb"),
  44404. name: "Front",
  44405. image: {
  44406. source: "./media/characters/theo-acacia/front.svg",
  44407. extra: 1796/1741,
  44408. bottom: 83/1879
  44409. }
  44410. },
  44411. frontUnderwear: {
  44412. height: math.unit(22 + 1/12, "feet"),
  44413. weight: math.unit(3200, "lb"),
  44414. name: "Front (Underwear)",
  44415. image: {
  44416. source: "./media/characters/theo-acacia/front-underwear.svg",
  44417. extra: 1796/1741,
  44418. bottom: 83/1879
  44419. }
  44420. },
  44421. frontNude: {
  44422. height: math.unit(22 + 1/12, "feet"),
  44423. weight: math.unit(3200, "lb"),
  44424. name: "Front (Nude)",
  44425. image: {
  44426. source: "./media/characters/theo-acacia/front-nude.svg",
  44427. extra: 1796/1741,
  44428. bottom: 83/1879
  44429. }
  44430. },
  44431. },
  44432. [
  44433. {
  44434. name: "Normal",
  44435. height: math.unit(22 + 1/12, "feet"),
  44436. default: true
  44437. },
  44438. ]
  44439. ))
  44440. characterMakers.push(() => makeCharacter(
  44441. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44442. {
  44443. front: {
  44444. height: math.unit(20, "feet"),
  44445. name: "Front",
  44446. image: {
  44447. source: "./media/characters/astra/front.svg",
  44448. extra: 1850/1714,
  44449. bottom: 106/1956
  44450. }
  44451. },
  44452. frontUndressed: {
  44453. height: math.unit(20, "feet"),
  44454. name: "Front (Undressed)",
  44455. image: {
  44456. source: "./media/characters/astra/front-undressed.svg",
  44457. extra: 1926/1749,
  44458. bottom: 0/1926
  44459. }
  44460. },
  44461. hand: {
  44462. height: math.unit(1.53, "feet"),
  44463. name: "Hand",
  44464. image: {
  44465. source: "./media/characters/astra/hand.svg"
  44466. }
  44467. },
  44468. paw: {
  44469. height: math.unit(1.53, "feet"),
  44470. name: "Paw",
  44471. image: {
  44472. source: "./media/characters/astra/paw.svg"
  44473. }
  44474. },
  44475. },
  44476. [
  44477. {
  44478. name: "Smallest",
  44479. height: math.unit(20, "feet")
  44480. },
  44481. {
  44482. name: "Normal",
  44483. height: math.unit(1e9, "miles"),
  44484. default: true
  44485. },
  44486. {
  44487. name: "Larger",
  44488. height: math.unit(5, "multiverses")
  44489. },
  44490. {
  44491. name: "Largest",
  44492. height: math.unit(1e9, "multiverses")
  44493. },
  44494. ]
  44495. ))
  44496. characterMakers.push(() => makeCharacter(
  44497. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44498. {
  44499. front: {
  44500. height: math.unit(8, "feet"),
  44501. name: "Front",
  44502. image: {
  44503. source: "./media/characters/breanna/front.svg",
  44504. extra: 1912/1632,
  44505. bottom: 33/1945
  44506. }
  44507. },
  44508. },
  44509. [
  44510. {
  44511. name: "Smallest",
  44512. height: math.unit(8, "feet")
  44513. },
  44514. {
  44515. name: "Normal",
  44516. height: math.unit(1, "mile"),
  44517. default: true
  44518. },
  44519. {
  44520. name: "Maximum",
  44521. height: math.unit(1500000000000, "lightyears")
  44522. },
  44523. ]
  44524. ))
  44525. characterMakers.push(() => makeCharacter(
  44526. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44527. {
  44528. front: {
  44529. height: math.unit(5 + 11/12, "feet"),
  44530. weight: math.unit(155, "lb"),
  44531. name: "Front",
  44532. image: {
  44533. source: "./media/characters/cai/front.svg",
  44534. extra: 1823/1702,
  44535. bottom: 32/1855
  44536. }
  44537. },
  44538. back: {
  44539. height: math.unit(5 + 11/12, "feet"),
  44540. weight: math.unit(155, "lb"),
  44541. name: "Back",
  44542. image: {
  44543. source: "./media/characters/cai/back.svg",
  44544. extra: 1809/1708,
  44545. bottom: 31/1840
  44546. }
  44547. },
  44548. },
  44549. [
  44550. {
  44551. name: "Normal",
  44552. height: math.unit(5 + 11/12, "feet"),
  44553. default: true
  44554. },
  44555. {
  44556. name: "Big",
  44557. height: math.unit(15, "feet")
  44558. },
  44559. {
  44560. name: "Macro",
  44561. height: math.unit(200, "feet")
  44562. },
  44563. ]
  44564. ))
  44565. characterMakers.push(() => makeCharacter(
  44566. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44567. {
  44568. front: {
  44569. height: math.unit(5 + 6/12, "feet"),
  44570. weight: math.unit(160, "lb"),
  44571. name: "Front",
  44572. image: {
  44573. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44574. extra: 1227/1174,
  44575. bottom: 37/1264
  44576. }
  44577. },
  44578. },
  44579. [
  44580. {
  44581. name: "Macro",
  44582. height: math.unit(444, "meters"),
  44583. default: true
  44584. },
  44585. ]
  44586. ))
  44587. characterMakers.push(() => makeCharacter(
  44588. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44589. {
  44590. front: {
  44591. height: math.unit(18 + 7/12, "feet"),
  44592. name: "Front",
  44593. image: {
  44594. source: "./media/characters/rex/front.svg",
  44595. extra: 1941/1807,
  44596. bottom: 66/2007
  44597. }
  44598. },
  44599. back: {
  44600. height: math.unit(18 + 7/12, "feet"),
  44601. name: "Back",
  44602. image: {
  44603. source: "./media/characters/rex/back.svg",
  44604. extra: 1937/1822,
  44605. bottom: 42/1979
  44606. }
  44607. },
  44608. boot: {
  44609. height: math.unit(3.45, "feet"),
  44610. name: "Boot",
  44611. image: {
  44612. source: "./media/characters/rex/boot.svg"
  44613. }
  44614. },
  44615. paw: {
  44616. height: math.unit(4.17, "feet"),
  44617. name: "Paw",
  44618. image: {
  44619. source: "./media/characters/rex/paw.svg"
  44620. }
  44621. },
  44622. head: {
  44623. height: math.unit(6.728, "feet"),
  44624. name: "Head",
  44625. image: {
  44626. source: "./media/characters/rex/head.svg"
  44627. }
  44628. },
  44629. },
  44630. [
  44631. {
  44632. name: "Nano",
  44633. height: math.unit(18 + 7/12, "feet")
  44634. },
  44635. {
  44636. name: "Micro",
  44637. height: math.unit(1.5, "megameters")
  44638. },
  44639. {
  44640. name: "Normal",
  44641. height: math.unit(440, "megameters"),
  44642. default: true
  44643. },
  44644. {
  44645. name: "Macro",
  44646. height: math.unit(2.5, "gigameters")
  44647. },
  44648. {
  44649. name: "Gigamacro",
  44650. height: math.unit(2, "galaxies")
  44651. },
  44652. ]
  44653. ))
  44654. characterMakers.push(() => makeCharacter(
  44655. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44656. {
  44657. side: {
  44658. height: math.unit(32, "feet"),
  44659. weight: math.unit(250000, "lb"),
  44660. name: "Side",
  44661. image: {
  44662. source: "./media/characters/silverwing/side.svg",
  44663. extra: 1100/1019,
  44664. bottom: 204/1304
  44665. }
  44666. },
  44667. },
  44668. [
  44669. {
  44670. name: "Normal",
  44671. height: math.unit(32, "feet"),
  44672. default: true
  44673. },
  44674. ]
  44675. ))
  44676. characterMakers.push(() => makeCharacter(
  44677. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44678. {
  44679. front: {
  44680. height: math.unit(6 + 6/12, "feet"),
  44681. weight: math.unit(350, "lb"),
  44682. name: "Front",
  44683. image: {
  44684. source: "./media/characters/tristan-hawthorne/front.svg",
  44685. extra: 1159/1124,
  44686. bottom: 37/1196
  44687. },
  44688. form: "labrador",
  44689. default: true
  44690. },
  44691. skunkFront: {
  44692. height: math.unit(4 + 6/12, "feet"),
  44693. weight: math.unit(120, "lb"),
  44694. name: "Front",
  44695. image: {
  44696. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44697. extra: 1609/1551,
  44698. bottom: 169/1778
  44699. },
  44700. form: "skunk",
  44701. default: true
  44702. },
  44703. },
  44704. [
  44705. {
  44706. name: "Normal",
  44707. height: math.unit(6 + 6/12, "feet"),
  44708. form: "labrador",
  44709. default: true
  44710. },
  44711. {
  44712. name: "Normal",
  44713. height: math.unit(4 + 6/12, "feet"),
  44714. form: "skunk",
  44715. default: true
  44716. },
  44717. ],
  44718. {
  44719. "labrador": {
  44720. name: "Labrador",
  44721. default: true
  44722. },
  44723. "skunk": {
  44724. name: "Skunk"
  44725. }
  44726. }
  44727. ))
  44728. characterMakers.push(() => makeCharacter(
  44729. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44730. {
  44731. front: {
  44732. height: math.unit(5 + 11/12, "feet"),
  44733. weight: math.unit(190, "lb"),
  44734. name: "Front",
  44735. image: {
  44736. source: "./media/characters/mizu/front.svg",
  44737. extra: 1988/1788,
  44738. bottom: 14/2002
  44739. }
  44740. },
  44741. },
  44742. [
  44743. {
  44744. name: "Normal",
  44745. height: math.unit(5 + 11/12, "feet"),
  44746. default: true
  44747. },
  44748. ]
  44749. ))
  44750. characterMakers.push(() => makeCharacter(
  44751. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44752. {
  44753. front: {
  44754. height: math.unit(1.7, "feet"),
  44755. weight: math.unit(50, "lb"),
  44756. name: "Front",
  44757. image: {
  44758. source: "./media/characters/dechroma/front.svg",
  44759. extra: 1095/859,
  44760. bottom: 64/1159
  44761. }
  44762. },
  44763. },
  44764. [
  44765. {
  44766. name: "Normal",
  44767. height: math.unit(1.7, "feet"),
  44768. default: true
  44769. },
  44770. ]
  44771. ))
  44772. characterMakers.push(() => makeCharacter(
  44773. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44774. {
  44775. side: {
  44776. height: math.unit(30, "feet"),
  44777. name: "Side",
  44778. image: {
  44779. source: "./media/characters/veluren-thanazel/side.svg",
  44780. extra: 1611/633,
  44781. bottom: 118/1729
  44782. }
  44783. },
  44784. front: {
  44785. height: math.unit(30, "feet"),
  44786. name: "Front",
  44787. image: {
  44788. source: "./media/characters/veluren-thanazel/front.svg",
  44789. extra: 1486/636,
  44790. bottom: 238/1724
  44791. }
  44792. },
  44793. head: {
  44794. height: math.unit(21.4, "feet"),
  44795. name: "Head",
  44796. image: {
  44797. source: "./media/characters/veluren-thanazel/head.svg"
  44798. }
  44799. },
  44800. genitals: {
  44801. height: math.unit(19.4, "feet"),
  44802. name: "Genitals",
  44803. image: {
  44804. source: "./media/characters/veluren-thanazel/genitals.svg"
  44805. }
  44806. },
  44807. },
  44808. [
  44809. {
  44810. name: "Social",
  44811. height: math.unit(6, "feet")
  44812. },
  44813. {
  44814. name: "Play",
  44815. height: math.unit(12, "feet")
  44816. },
  44817. {
  44818. name: "True",
  44819. height: math.unit(30, "feet"),
  44820. default: true
  44821. },
  44822. ]
  44823. ))
  44824. characterMakers.push(() => makeCharacter(
  44825. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44826. {
  44827. front: {
  44828. height: math.unit(7 + 6/12, "feet"),
  44829. weight: math.unit(500, "kg"),
  44830. name: "Front",
  44831. image: {
  44832. source: "./media/characters/arcturas/front.svg",
  44833. extra: 1700/1500,
  44834. bottom: 145/1845
  44835. }
  44836. },
  44837. },
  44838. [
  44839. {
  44840. name: "Normal",
  44841. height: math.unit(7 + 6/12, "feet"),
  44842. default: true
  44843. },
  44844. ]
  44845. ))
  44846. characterMakers.push(() => makeCharacter(
  44847. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44848. {
  44849. side: {
  44850. height: math.unit(6, "feet"),
  44851. weight: math.unit(2, "tons"),
  44852. name: "Side",
  44853. image: {
  44854. source: "./media/characters/vitaen/side.svg",
  44855. extra: 1157/617,
  44856. bottom: 122/1279
  44857. }
  44858. },
  44859. },
  44860. [
  44861. {
  44862. name: "Normal",
  44863. height: math.unit(6, "feet"),
  44864. default: true
  44865. },
  44866. ]
  44867. ))
  44868. characterMakers.push(() => makeCharacter(
  44869. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44870. {
  44871. front: {
  44872. height: math.unit(19, "feet"),
  44873. name: "Front",
  44874. image: {
  44875. source: "./media/characters/fia-dreamweaver/front.svg",
  44876. extra: 1630/1504,
  44877. bottom: 25/1655
  44878. }
  44879. },
  44880. },
  44881. [
  44882. {
  44883. name: "Normal",
  44884. height: math.unit(19, "feet"),
  44885. default: true
  44886. },
  44887. ]
  44888. ))
  44889. characterMakers.push(() => makeCharacter(
  44890. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44891. {
  44892. front: {
  44893. height: math.unit(5 + 4/12, "feet"),
  44894. name: "Front",
  44895. image: {
  44896. source: "./media/characters/artan/front.svg",
  44897. extra: 1618/1535,
  44898. bottom: 46/1664
  44899. }
  44900. },
  44901. back: {
  44902. height: math.unit(5 + 4/12, "feet"),
  44903. name: "Back",
  44904. image: {
  44905. source: "./media/characters/artan/back.svg",
  44906. extra: 1618/1543,
  44907. bottom: 31/1649
  44908. }
  44909. },
  44910. },
  44911. [
  44912. {
  44913. name: "Normal",
  44914. height: math.unit(5 + 4/12, "feet"),
  44915. default: true
  44916. },
  44917. ]
  44918. ))
  44919. characterMakers.push(() => makeCharacter(
  44920. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44921. {
  44922. side: {
  44923. height: math.unit(182, "cm"),
  44924. weight: math.unit(1000, "lb"),
  44925. name: "Side",
  44926. image: {
  44927. source: "./media/characters/silver-dragon/side.svg",
  44928. extra: 710/287,
  44929. bottom: 88/798
  44930. }
  44931. },
  44932. },
  44933. [
  44934. {
  44935. name: "Normal",
  44936. height: math.unit(182, "cm"),
  44937. default: true
  44938. },
  44939. ]
  44940. ))
  44941. characterMakers.push(() => makeCharacter(
  44942. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44943. {
  44944. side: {
  44945. height: math.unit(6 + 6/12, "feet"),
  44946. weight: math.unit(1.5, "tons"),
  44947. name: "Side",
  44948. image: {
  44949. source: "./media/characters/zephyr/side.svg",
  44950. extra: 1433/586,
  44951. bottom: 109/1542
  44952. }
  44953. },
  44954. },
  44955. [
  44956. {
  44957. name: "Normal",
  44958. height: math.unit(6 + 6/12, "feet"),
  44959. default: true
  44960. },
  44961. ]
  44962. ))
  44963. characterMakers.push(() => makeCharacter(
  44964. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44965. {
  44966. side: {
  44967. height: math.unit(1, "feet"),
  44968. name: "Side",
  44969. image: {
  44970. source: "./media/characters/vixye/side.svg",
  44971. extra: 632/541,
  44972. bottom: 0/632
  44973. }
  44974. },
  44975. },
  44976. [
  44977. {
  44978. name: "Normal",
  44979. height: math.unit(1, "feet"),
  44980. default: true
  44981. },
  44982. {
  44983. name: "True",
  44984. height: math.unit(1e15, "multiverses")
  44985. },
  44986. ]
  44987. ))
  44988. characterMakers.push(() => makeCharacter(
  44989. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44990. {
  44991. front: {
  44992. height: math.unit(8 + 2/12, "feet"),
  44993. weight: math.unit(650, "lb"),
  44994. name: "Front",
  44995. image: {
  44996. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44997. extra: 1174/1137,
  44998. bottom: 82/1256
  44999. }
  45000. },
  45001. back: {
  45002. height: math.unit(8 + 2/12, "feet"),
  45003. weight: math.unit(650, "lb"),
  45004. name: "Back",
  45005. image: {
  45006. source: "./media/characters/darla-mac-lochlainn/back.svg",
  45007. extra: 1204/1157,
  45008. bottom: 46/1250
  45009. }
  45010. },
  45011. },
  45012. [
  45013. {
  45014. name: "Wildform",
  45015. height: math.unit(8 + 2/12, "feet"),
  45016. default: true
  45017. },
  45018. ]
  45019. ))
  45020. characterMakers.push(() => makeCharacter(
  45021. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  45022. {
  45023. front: {
  45024. height: math.unit(18, "feet"),
  45025. name: "Front",
  45026. image: {
  45027. source: "./media/characters/cyphin/front.svg",
  45028. extra: 970/886,
  45029. bottom: 42/1012
  45030. }
  45031. },
  45032. back: {
  45033. height: math.unit(18, "feet"),
  45034. name: "Back",
  45035. image: {
  45036. source: "./media/characters/cyphin/back.svg",
  45037. extra: 1009/894,
  45038. bottom: 24/1033
  45039. }
  45040. },
  45041. head: {
  45042. height: math.unit(5.05, "feet"),
  45043. name: "Head",
  45044. image: {
  45045. source: "./media/characters/cyphin/head.svg"
  45046. }
  45047. },
  45048. tailbud: {
  45049. height: math.unit(5, "feet"),
  45050. name: "Tailbud",
  45051. image: {
  45052. source: "./media/characters/cyphin/tailbud.svg"
  45053. }
  45054. },
  45055. },
  45056. [
  45057. ]
  45058. ))
  45059. characterMakers.push(() => makeCharacter(
  45060. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  45061. {
  45062. side: {
  45063. height: math.unit(10, "feet"),
  45064. weight: math.unit(6, "tons"),
  45065. name: "Side",
  45066. image: {
  45067. source: "./media/characters/raijin/side.svg",
  45068. extra: 1529/613,
  45069. bottom: 337/1866
  45070. }
  45071. },
  45072. },
  45073. [
  45074. {
  45075. name: "Normal",
  45076. height: math.unit(10, "feet"),
  45077. default: true
  45078. },
  45079. ]
  45080. ))
  45081. characterMakers.push(() => makeCharacter(
  45082. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  45083. {
  45084. side: {
  45085. height: math.unit(9, "feet"),
  45086. name: "Side",
  45087. image: {
  45088. source: "./media/characters/nilghais/side.svg",
  45089. extra: 1047/744,
  45090. bottom: 91/1138
  45091. }
  45092. },
  45093. head: {
  45094. height: math.unit(3.14, "feet"),
  45095. name: "Head",
  45096. image: {
  45097. source: "./media/characters/nilghais/head.svg"
  45098. }
  45099. },
  45100. mouth: {
  45101. height: math.unit(4.6, "feet"),
  45102. name: "Mouth",
  45103. image: {
  45104. source: "./media/characters/nilghais/mouth.svg"
  45105. }
  45106. },
  45107. wings: {
  45108. height: math.unit(24, "feet"),
  45109. name: "Wings",
  45110. image: {
  45111. source: "./media/characters/nilghais/wings.svg"
  45112. }
  45113. },
  45114. ass: {
  45115. height: math.unit(6.12, "feet"),
  45116. name: "Ass",
  45117. image: {
  45118. source: "./media/characters/nilghais/ass.svg"
  45119. }
  45120. },
  45121. },
  45122. [
  45123. {
  45124. name: "Normal",
  45125. height: math.unit(9, "feet"),
  45126. default: true
  45127. },
  45128. ]
  45129. ))
  45130. characterMakers.push(() => makeCharacter(
  45131. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  45132. {
  45133. regular: {
  45134. height: math.unit(16 + 2/12, "feet"),
  45135. weight: math.unit(2300, "lb"),
  45136. name: "Regular",
  45137. image: {
  45138. source: "./media/characters/zolgar/regular.svg",
  45139. extra: 1246/1004,
  45140. bottom: 124/1370
  45141. }
  45142. },
  45143. boxers: {
  45144. height: math.unit(16 + 2/12, "feet"),
  45145. weight: math.unit(2300, "lb"),
  45146. name: "Boxers",
  45147. image: {
  45148. source: "./media/characters/zolgar/boxers.svg",
  45149. extra: 1246/1004,
  45150. bottom: 124/1370
  45151. }
  45152. },
  45153. armored: {
  45154. height: math.unit(16 + 2/12, "feet"),
  45155. weight: math.unit(2300, "lb"),
  45156. name: "Armored",
  45157. image: {
  45158. source: "./media/characters/zolgar/armored.svg",
  45159. extra: 1246/1004,
  45160. bottom: 124/1370
  45161. }
  45162. },
  45163. goth: {
  45164. height: math.unit(16 + 2/12, "feet"),
  45165. weight: math.unit(2300, "lb"),
  45166. name: "Goth",
  45167. image: {
  45168. source: "./media/characters/zolgar/goth.svg",
  45169. extra: 1246/1004,
  45170. bottom: 124/1370
  45171. }
  45172. },
  45173. },
  45174. [
  45175. {
  45176. name: "Shrunken Down",
  45177. height: math.unit(9 + 2/12, "feet")
  45178. },
  45179. {
  45180. name: "Normal",
  45181. height: math.unit(16 + 2/12, "feet"),
  45182. default: true
  45183. },
  45184. ]
  45185. ))
  45186. characterMakers.push(() => makeCharacter(
  45187. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  45188. {
  45189. front: {
  45190. height: math.unit(6, "feet"),
  45191. weight: math.unit(168, "lb"),
  45192. name: "Front",
  45193. image: {
  45194. source: "./media/characters/luca/front.svg",
  45195. extra: 841/667,
  45196. bottom: 102/943
  45197. }
  45198. },
  45199. },
  45200. [
  45201. {
  45202. name: "Normal",
  45203. height: math.unit(6, "feet"),
  45204. default: true
  45205. },
  45206. ]
  45207. ))
  45208. characterMakers.push(() => makeCharacter(
  45209. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  45210. {
  45211. side: {
  45212. height: math.unit(7 + 3/12, "feet"),
  45213. weight: math.unit(312, "lb"),
  45214. name: "Side",
  45215. image: {
  45216. source: "./media/characters/zezo/side.svg",
  45217. extra: 1192/1067,
  45218. bottom: 63/1255
  45219. }
  45220. },
  45221. },
  45222. [
  45223. {
  45224. name: "Normal",
  45225. height: math.unit(7 + 3/12, "feet"),
  45226. default: true
  45227. },
  45228. ]
  45229. ))
  45230. characterMakers.push(() => makeCharacter(
  45231. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  45232. {
  45233. front: {
  45234. height: math.unit(5 + 5/12, "feet"),
  45235. weight: math.unit(170, "lb"),
  45236. name: "Front",
  45237. image: {
  45238. source: "./media/characters/mayso/front.svg",
  45239. extra: 1215/1108,
  45240. bottom: 16/1231
  45241. }
  45242. },
  45243. },
  45244. [
  45245. {
  45246. name: "Normal",
  45247. height: math.unit(5 + 5/12, "feet"),
  45248. default: true
  45249. },
  45250. ]
  45251. ))
  45252. characterMakers.push(() => makeCharacter(
  45253. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  45254. {
  45255. front: {
  45256. height: math.unit(4 + 3/12, "feet"),
  45257. weight: math.unit(80, "lb"),
  45258. name: "Front",
  45259. image: {
  45260. source: "./media/characters/hess/front.svg",
  45261. extra: 1200/1123,
  45262. bottom: 16/1216
  45263. }
  45264. },
  45265. },
  45266. [
  45267. {
  45268. name: "Normal",
  45269. height: math.unit(4 + 3/12, "feet"),
  45270. default: true
  45271. },
  45272. ]
  45273. ))
  45274. characterMakers.push(() => makeCharacter(
  45275. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  45276. {
  45277. front: {
  45278. height: math.unit(1.9, "meters"),
  45279. name: "Front",
  45280. image: {
  45281. source: "./media/characters/ashgar/front.svg",
  45282. extra: 1177/1146,
  45283. bottom: 99/1276
  45284. }
  45285. },
  45286. back: {
  45287. height: math.unit(1.9, "meters"),
  45288. name: "Back",
  45289. image: {
  45290. source: "./media/characters/ashgar/back.svg",
  45291. extra: 1201/1183,
  45292. bottom: 53/1254
  45293. }
  45294. },
  45295. feral: {
  45296. height: math.unit(1.4, "meters"),
  45297. name: "Feral",
  45298. image: {
  45299. source: "./media/characters/ashgar/feral.svg",
  45300. extra: 370/345,
  45301. bottom: 45/415
  45302. }
  45303. },
  45304. },
  45305. [
  45306. {
  45307. name: "Normal",
  45308. height: math.unit(1.9, "meters"),
  45309. default: true
  45310. },
  45311. ]
  45312. ))
  45313. characterMakers.push(() => makeCharacter(
  45314. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  45315. {
  45316. regular: {
  45317. height: math.unit(6, "feet"),
  45318. weight: math.unit(220, "lb"),
  45319. name: "Regular",
  45320. image: {
  45321. source: "./media/characters/phillip/regular.svg",
  45322. extra: 1373/1277,
  45323. bottom: 75/1448
  45324. }
  45325. },
  45326. dressed: {
  45327. height: math.unit(6, "feet"),
  45328. weight: math.unit(220, "lb"),
  45329. name: "Dressed",
  45330. image: {
  45331. source: "./media/characters/phillip/dressed.svg",
  45332. extra: 1373/1277,
  45333. bottom: 75/1448
  45334. }
  45335. },
  45336. paw: {
  45337. height: math.unit(1.44, "feet"),
  45338. name: "Paw",
  45339. image: {
  45340. source: "./media/characters/phillip/paw.svg"
  45341. }
  45342. },
  45343. },
  45344. [
  45345. {
  45346. name: "Normal",
  45347. height: math.unit(6, "feet"),
  45348. default: true
  45349. },
  45350. ]
  45351. ))
  45352. characterMakers.push(() => makeCharacter(
  45353. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  45354. {
  45355. side: {
  45356. height: math.unit(42, "feet"),
  45357. name: "Side",
  45358. image: {
  45359. source: "./media/characters/uvula/side.svg",
  45360. extra: 683/586,
  45361. bottom: 60/743
  45362. }
  45363. },
  45364. front: {
  45365. height: math.unit(42, "feet"),
  45366. name: "Front",
  45367. image: {
  45368. source: "./media/characters/uvula/front.svg",
  45369. extra: 705/613,
  45370. bottom: 54/759
  45371. }
  45372. },
  45373. maw: {
  45374. height: math.unit(23.5, "feet"),
  45375. name: "Maw",
  45376. image: {
  45377. source: "./media/characters/uvula/maw.svg"
  45378. }
  45379. },
  45380. },
  45381. [
  45382. {
  45383. name: "Original Size",
  45384. height: math.unit(14, "inches")
  45385. },
  45386. {
  45387. name: "Human Size",
  45388. height: math.unit(6, "feet")
  45389. },
  45390. {
  45391. name: "Big",
  45392. height: math.unit(42, "feet"),
  45393. default: true
  45394. },
  45395. {
  45396. name: "Bigger",
  45397. height: math.unit(100, "feet")
  45398. },
  45399. ]
  45400. ))
  45401. characterMakers.push(() => makeCharacter(
  45402. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  45403. {
  45404. front: {
  45405. height: math.unit(5 + 11/12, "feet"),
  45406. name: "Front",
  45407. image: {
  45408. source: "./media/characters/lannah/front.svg",
  45409. extra: 1208/1113,
  45410. bottom: 97/1305
  45411. }
  45412. },
  45413. },
  45414. [
  45415. {
  45416. name: "Normal",
  45417. height: math.unit(5 + 11/12, "feet"),
  45418. default: true
  45419. },
  45420. ]
  45421. ))
  45422. characterMakers.push(() => makeCharacter(
  45423. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  45424. {
  45425. front: {
  45426. height: math.unit(6 + 3/12, "feet"),
  45427. weight: math.unit(3.5, "tons"),
  45428. name: "Front",
  45429. image: {
  45430. source: "./media/characters/emberflame/front.svg",
  45431. extra: 1198/672,
  45432. bottom: 82/1280
  45433. }
  45434. },
  45435. side: {
  45436. height: math.unit(6 + 3/12, "feet"),
  45437. weight: math.unit(3.5, "tons"),
  45438. name: "Side",
  45439. image: {
  45440. source: "./media/characters/emberflame/side.svg",
  45441. extra: 938/527,
  45442. bottom: 56/994
  45443. }
  45444. },
  45445. },
  45446. [
  45447. {
  45448. name: "Normal",
  45449. height: math.unit(6 + 3/12, "feet"),
  45450. default: true
  45451. },
  45452. ]
  45453. ))
  45454. characterMakers.push(() => makeCharacter(
  45455. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  45456. {
  45457. side: {
  45458. height: math.unit(17.5, "feet"),
  45459. weight: math.unit(35, "tons"),
  45460. name: "Side",
  45461. image: {
  45462. source: "./media/characters/sophie-ambrose/side.svg",
  45463. extra: 1573/1242,
  45464. bottom: 71/1644
  45465. }
  45466. },
  45467. maw: {
  45468. height: math.unit(7.4, "feet"),
  45469. name: "Maw",
  45470. image: {
  45471. source: "./media/characters/sophie-ambrose/maw.svg"
  45472. }
  45473. },
  45474. },
  45475. [
  45476. {
  45477. name: "Normal",
  45478. height: math.unit(17.5, "feet"),
  45479. default: true
  45480. },
  45481. ]
  45482. ))
  45483. characterMakers.push(() => makeCharacter(
  45484. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  45485. {
  45486. front: {
  45487. height: math.unit(280, "feet"),
  45488. weight: math.unit(550, "tons"),
  45489. name: "Front",
  45490. image: {
  45491. source: "./media/characters/king-mugi/front.svg",
  45492. extra: 1102/947,
  45493. bottom: 104/1206
  45494. }
  45495. },
  45496. },
  45497. [
  45498. {
  45499. name: "King Mugi",
  45500. height: math.unit(280, "feet"),
  45501. default: true
  45502. },
  45503. ]
  45504. ))
  45505. characterMakers.push(() => makeCharacter(
  45506. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45507. {
  45508. female: {
  45509. height: math.unit(300, "meters"),
  45510. name: "Front",
  45511. image: {
  45512. source: "./media/characters/nova-fox/female.svg",
  45513. extra: 664/632,
  45514. bottom: 51/715
  45515. },
  45516. form: "female",
  45517. default: true
  45518. },
  45519. male: {
  45520. height: math.unit(300, "meters"),
  45521. name: "Front",
  45522. image: {
  45523. source: "./media/characters/nova-fox/male.svg",
  45524. extra: 663/631,
  45525. bottom: 30/693
  45526. },
  45527. form: "male",
  45528. default: true
  45529. },
  45530. },
  45531. [
  45532. {
  45533. name: "Macro",
  45534. height: math.unit(300, "meters"),
  45535. default: true,
  45536. allForms: true
  45537. },
  45538. ],
  45539. {
  45540. "female": {
  45541. name: "Female",
  45542. default: true
  45543. },
  45544. "male": {
  45545. name: "Male",
  45546. },
  45547. }
  45548. ))
  45549. characterMakers.push(() => makeCharacter(
  45550. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45551. {
  45552. front: {
  45553. height: math.unit(6 + 3/12, "feet"),
  45554. weight: math.unit(170, "lb"),
  45555. name: "Front",
  45556. image: {
  45557. source: "./media/characters/sam-bat/front.svg",
  45558. extra: 1601/1411,
  45559. bottom: 125/1726
  45560. }
  45561. },
  45562. back: {
  45563. height: math.unit(6 + 3/12, "feet"),
  45564. weight: math.unit(170, "lb"),
  45565. name: "Back",
  45566. image: {
  45567. source: "./media/characters/sam-bat/back.svg",
  45568. extra: 1577/1405,
  45569. bottom: 58/1635
  45570. }
  45571. },
  45572. },
  45573. [
  45574. {
  45575. name: "Normal",
  45576. height: math.unit(6 + 3/12, "feet"),
  45577. default: true
  45578. },
  45579. ]
  45580. ))
  45581. characterMakers.push(() => makeCharacter(
  45582. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45583. {
  45584. front: {
  45585. height: math.unit(59, "feet"),
  45586. weight: math.unit(40000, "lb"),
  45587. name: "Front",
  45588. image: {
  45589. source: "./media/characters/inari/front.svg",
  45590. extra: 1884/1350,
  45591. bottom: 95/1979
  45592. }
  45593. },
  45594. },
  45595. [
  45596. {
  45597. name: "Gigantamax",
  45598. height: math.unit(59, "feet"),
  45599. default: true
  45600. },
  45601. ]
  45602. ))
  45603. characterMakers.push(() => makeCharacter(
  45604. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45605. {
  45606. front: {
  45607. height: math.unit(5 + 8/12, "feet"),
  45608. name: "Front",
  45609. image: {
  45610. source: "./media/characters/elizabeth/front.svg",
  45611. extra: 1395/1298,
  45612. bottom: 54/1449
  45613. }
  45614. },
  45615. mouth: {
  45616. height: math.unit(1.97, "feet"),
  45617. name: "Mouth",
  45618. image: {
  45619. source: "./media/characters/elizabeth/mouth.svg"
  45620. }
  45621. },
  45622. foot: {
  45623. height: math.unit(1.17, "feet"),
  45624. name: "Foot",
  45625. image: {
  45626. source: "./media/characters/elizabeth/foot.svg"
  45627. }
  45628. },
  45629. },
  45630. [
  45631. {
  45632. name: "Normal",
  45633. height: math.unit(5 + 8/12, "feet"),
  45634. default: true
  45635. },
  45636. {
  45637. name: "Minimacro",
  45638. height: math.unit(18, "feet")
  45639. },
  45640. {
  45641. name: "Macro",
  45642. height: math.unit(180, "feet")
  45643. },
  45644. ]
  45645. ))
  45646. characterMakers.push(() => makeCharacter(
  45647. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45648. {
  45649. front: {
  45650. height: math.unit(5 + 2/12, "feet"),
  45651. name: "Front",
  45652. image: {
  45653. source: "./media/characters/october-gossamer/front.svg",
  45654. extra: 505/454,
  45655. bottom: 7/512
  45656. }
  45657. },
  45658. back: {
  45659. height: math.unit(5 + 2/12, "feet"),
  45660. name: "Back",
  45661. image: {
  45662. source: "./media/characters/october-gossamer/back.svg",
  45663. extra: 501/454,
  45664. bottom: 11/512
  45665. }
  45666. },
  45667. },
  45668. [
  45669. {
  45670. name: "Normal",
  45671. height: math.unit(5 + 2/12, "feet"),
  45672. default: true
  45673. },
  45674. ]
  45675. ))
  45676. characterMakers.push(() => makeCharacter(
  45677. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45678. {
  45679. front: {
  45680. height: math.unit(5, "feet"),
  45681. name: "Front",
  45682. image: {
  45683. source: "./media/characters/epiglottis/front.svg",
  45684. extra: 923/849,
  45685. bottom: 17/940
  45686. }
  45687. },
  45688. },
  45689. [
  45690. {
  45691. name: "Original Size",
  45692. height: math.unit(10, "inches")
  45693. },
  45694. {
  45695. name: "Human Size",
  45696. height: math.unit(5, "feet"),
  45697. default: true
  45698. },
  45699. {
  45700. name: "Big",
  45701. height: math.unit(25, "feet")
  45702. },
  45703. {
  45704. name: "Bigger",
  45705. height: math.unit(50, "feet")
  45706. },
  45707. {
  45708. name: "oh lawd",
  45709. height: math.unit(75, "feet")
  45710. },
  45711. ]
  45712. ))
  45713. characterMakers.push(() => makeCharacter(
  45714. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45715. {
  45716. front: {
  45717. height: math.unit(2 + 4/12, "feet"),
  45718. weight: math.unit(60, "lb"),
  45719. name: "Front",
  45720. image: {
  45721. source: "./media/characters/lerm/front.svg",
  45722. extra: 796/790,
  45723. bottom: 79/875
  45724. }
  45725. },
  45726. },
  45727. [
  45728. {
  45729. name: "Normal",
  45730. height: math.unit(2 + 4/12, "feet"),
  45731. default: true
  45732. },
  45733. ]
  45734. ))
  45735. characterMakers.push(() => makeCharacter(
  45736. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45737. {
  45738. front: {
  45739. height: math.unit(5.5, "feet"),
  45740. weight: math.unit(130, "lb"),
  45741. name: "Front",
  45742. image: {
  45743. source: "./media/characters/xena-nebadon/front.svg",
  45744. extra: 1828/1730,
  45745. bottom: 79/1907
  45746. }
  45747. },
  45748. },
  45749. [
  45750. {
  45751. name: "Tiny Puppy",
  45752. height: math.unit(3, "inches")
  45753. },
  45754. {
  45755. name: "Normal",
  45756. height: math.unit(5.5, "feet"),
  45757. default: true
  45758. },
  45759. {
  45760. name: "Lotta Lady",
  45761. height: math.unit(12, "feet")
  45762. },
  45763. {
  45764. name: "Pretty Big",
  45765. height: math.unit(100, "feet")
  45766. },
  45767. {
  45768. name: "Big",
  45769. height: math.unit(500, "feet")
  45770. },
  45771. {
  45772. name: "Skyscraper Toys",
  45773. height: math.unit(2500, "feet")
  45774. },
  45775. {
  45776. name: "Plane Catcher",
  45777. height: math.unit(8, "miles")
  45778. },
  45779. {
  45780. name: "Planet Toys",
  45781. height: math.unit(15, "earths")
  45782. },
  45783. {
  45784. name: "Stardust",
  45785. height: math.unit(0.25, "galaxies")
  45786. },
  45787. {
  45788. name: "Snacks",
  45789. height: math.unit(70, "universes")
  45790. },
  45791. ]
  45792. ))
  45793. characterMakers.push(() => makeCharacter(
  45794. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45795. {
  45796. front: {
  45797. height: math.unit(1.6, "meters"),
  45798. weight: math.unit(60, "kg"),
  45799. name: "Front",
  45800. image: {
  45801. source: "./media/characters/bounty/front.svg",
  45802. extra: 1426/1308,
  45803. bottom: 15/1441
  45804. }
  45805. },
  45806. back: {
  45807. height: math.unit(1.6, "meters"),
  45808. weight: math.unit(60, "kg"),
  45809. name: "Back",
  45810. image: {
  45811. source: "./media/characters/bounty/back.svg",
  45812. extra: 1417/1307,
  45813. bottom: 8/1425
  45814. }
  45815. },
  45816. },
  45817. [
  45818. {
  45819. name: "Normal",
  45820. height: math.unit(1.6, "meters"),
  45821. default: true
  45822. },
  45823. {
  45824. name: "Macro",
  45825. height: math.unit(300, "meters")
  45826. },
  45827. ]
  45828. ))
  45829. characterMakers.push(() => makeCharacter(
  45830. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45831. {
  45832. front: {
  45833. height: math.unit(2 + 8/12, "feet"),
  45834. weight: math.unit(15, "lb"),
  45835. name: "Front",
  45836. image: {
  45837. source: "./media/characters/mochi/front.svg",
  45838. extra: 1022/852,
  45839. bottom: 435/1457
  45840. }
  45841. },
  45842. back: {
  45843. height: math.unit(2 + 8/12, "feet"),
  45844. weight: math.unit(15, "lb"),
  45845. name: "Back",
  45846. image: {
  45847. source: "./media/characters/mochi/back.svg",
  45848. extra: 1335/1119,
  45849. bottom: 39/1374
  45850. }
  45851. },
  45852. bird: {
  45853. height: math.unit(2 + 8/12, "feet"),
  45854. weight: math.unit(15, "lb"),
  45855. name: "Bird",
  45856. image: {
  45857. source: "./media/characters/mochi/bird.svg",
  45858. extra: 1251/1113,
  45859. bottom: 178/1429
  45860. }
  45861. },
  45862. kaiju: {
  45863. height: math.unit(154, "feet"),
  45864. weight: math.unit(1e7, "lb"),
  45865. name: "Kaiju",
  45866. image: {
  45867. source: "./media/characters/mochi/kaiju.svg",
  45868. extra: 460/324,
  45869. bottom: 40/500
  45870. }
  45871. },
  45872. head: {
  45873. height: math.unit(1.21, "feet"),
  45874. name: "Head",
  45875. image: {
  45876. source: "./media/characters/mochi/head.svg"
  45877. }
  45878. },
  45879. alternateTail: {
  45880. height: math.unit(2 + 8/12, "feet"),
  45881. weight: math.unit(45, "lb"),
  45882. name: "Alternate Tail",
  45883. image: {
  45884. source: "./media/characters/mochi/alternate-tail.svg",
  45885. extra: 139/76,
  45886. bottom: 45/184
  45887. }
  45888. },
  45889. },
  45890. [
  45891. {
  45892. name: "Micro",
  45893. height: math.unit(2, "inches")
  45894. },
  45895. {
  45896. name: "Normal",
  45897. height: math.unit(2 + 8/12, "feet"),
  45898. default: true
  45899. },
  45900. {
  45901. name: "Macro",
  45902. height: math.unit(106, "feet")
  45903. },
  45904. ]
  45905. ))
  45906. characterMakers.push(() => makeCharacter(
  45907. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45908. {
  45909. front: {
  45910. height: math.unit(5.67, "feet"),
  45911. weight: math.unit(135, "lb"),
  45912. name: "Front",
  45913. image: {
  45914. source: "./media/characters/sarel/front.svg",
  45915. extra: 865/788,
  45916. bottom: 97/962
  45917. }
  45918. },
  45919. back: {
  45920. height: math.unit(5.67, "feet"),
  45921. weight: math.unit(135, "lb"),
  45922. name: "Back",
  45923. image: {
  45924. source: "./media/characters/sarel/back.svg",
  45925. extra: 857/777,
  45926. bottom: 32/889
  45927. }
  45928. },
  45929. chozoan: {
  45930. height: math.unit(5.67, "feet"),
  45931. weight: math.unit(135, "lb"),
  45932. name: "Chozoan",
  45933. image: {
  45934. source: "./media/characters/sarel/chozoan.svg",
  45935. extra: 865/788,
  45936. bottom: 97/962
  45937. }
  45938. },
  45939. current: {
  45940. height: math.unit(5.67, "feet"),
  45941. weight: math.unit(135, "lb"),
  45942. name: "Current",
  45943. image: {
  45944. source: "./media/characters/sarel/current.svg",
  45945. extra: 865/788,
  45946. bottom: 97/962
  45947. }
  45948. },
  45949. head: {
  45950. height: math.unit(1.77, "feet"),
  45951. name: "Head",
  45952. image: {
  45953. source: "./media/characters/sarel/head.svg"
  45954. }
  45955. },
  45956. claws: {
  45957. height: math.unit(1.8, "feet"),
  45958. name: "Claws",
  45959. image: {
  45960. source: "./media/characters/sarel/claws.svg"
  45961. }
  45962. },
  45963. clawsAlt: {
  45964. height: math.unit(1.8, "feet"),
  45965. name: "Claws-alt",
  45966. image: {
  45967. source: "./media/characters/sarel/claws-alt.svg"
  45968. }
  45969. },
  45970. },
  45971. [
  45972. {
  45973. name: "Normal",
  45974. height: math.unit(5.67, "feet"),
  45975. default: true
  45976. },
  45977. ]
  45978. ))
  45979. characterMakers.push(() => makeCharacter(
  45980. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45981. {
  45982. front: {
  45983. height: math.unit(5500, "feet"),
  45984. name: "Front",
  45985. image: {
  45986. source: "./media/characters/alyonia/front.svg",
  45987. extra: 1200/1135,
  45988. bottom: 29/1229
  45989. }
  45990. },
  45991. back: {
  45992. height: math.unit(5500, "feet"),
  45993. name: "Back",
  45994. image: {
  45995. source: "./media/characters/alyonia/back.svg",
  45996. extra: 1205/1138,
  45997. bottom: 10/1215
  45998. }
  45999. },
  46000. },
  46001. [
  46002. {
  46003. name: "Small",
  46004. height: math.unit(10, "feet")
  46005. },
  46006. {
  46007. name: "Macro",
  46008. height: math.unit(500, "feet")
  46009. },
  46010. {
  46011. name: "Mega Macro",
  46012. height: math.unit(5500, "feet"),
  46013. default: true
  46014. },
  46015. {
  46016. name: "Mega Macro+",
  46017. height: math.unit(500000, "feet")
  46018. },
  46019. {
  46020. name: "Giga Macro",
  46021. height: math.unit(3000, "miles")
  46022. },
  46023. {
  46024. name: "Tera Macro",
  46025. height: math.unit(2.8e6, "miles")
  46026. },
  46027. {
  46028. name: "Galactic",
  46029. height: math.unit(120000, "lightyears")
  46030. },
  46031. ]
  46032. ))
  46033. characterMakers.push(() => makeCharacter(
  46034. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  46035. {
  46036. werewolf: {
  46037. height: math.unit(8, "feet"),
  46038. weight: math.unit(425, "lb"),
  46039. name: "Werewolf",
  46040. image: {
  46041. source: "./media/characters/autumn/werewolf.svg",
  46042. extra: 2154/2031,
  46043. bottom: 160/2314
  46044. }
  46045. },
  46046. human: {
  46047. height: math.unit(5 + 8/12, "feet"),
  46048. weight: math.unit(150, "lb"),
  46049. name: "Human",
  46050. image: {
  46051. source: "./media/characters/autumn/human.svg",
  46052. extra: 1200/1149,
  46053. bottom: 30/1230
  46054. }
  46055. },
  46056. },
  46057. [
  46058. {
  46059. name: "Normal",
  46060. height: math.unit(8, "feet"),
  46061. default: true
  46062. },
  46063. ]
  46064. ))
  46065. characterMakers.push(() => makeCharacter(
  46066. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  46067. {
  46068. front: {
  46069. height: math.unit(8 + 5/12, "feet"),
  46070. weight: math.unit(825, "lb"),
  46071. name: "Front",
  46072. image: {
  46073. source: "./media/characters/cobalt-charizard/front.svg",
  46074. extra: 1268/1155,
  46075. bottom: 122/1390
  46076. }
  46077. },
  46078. side: {
  46079. height: math.unit(8 + 5/12, "feet"),
  46080. weight: math.unit(825, "lb"),
  46081. name: "Side",
  46082. image: {
  46083. source: "./media/characters/cobalt-charizard/side.svg",
  46084. extra: 1348/1257,
  46085. bottom: 58/1406
  46086. }
  46087. },
  46088. gMax: {
  46089. height: math.unit(134 + 11/12, "feet"),
  46090. name: "G-Max",
  46091. image: {
  46092. source: "./media/characters/cobalt-charizard/g-max.svg",
  46093. extra: 1835/1541,
  46094. bottom: 151/1986
  46095. }
  46096. },
  46097. },
  46098. [
  46099. {
  46100. name: "Normal",
  46101. height: math.unit(8 + 5/12, "feet"),
  46102. default: true
  46103. },
  46104. ]
  46105. ))
  46106. characterMakers.push(() => makeCharacter(
  46107. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  46108. {
  46109. front: {
  46110. height: math.unit(6 + 3/12, "feet"),
  46111. weight: math.unit(210, "lb"),
  46112. name: "Front",
  46113. image: {
  46114. source: "./media/characters/stella/front.svg",
  46115. extra: 3549/3335,
  46116. bottom: 51/3600
  46117. }
  46118. },
  46119. },
  46120. [
  46121. {
  46122. name: "Normal",
  46123. height: math.unit(6 + 3/12, "feet"),
  46124. default: true
  46125. },
  46126. ]
  46127. ))
  46128. characterMakers.push(() => makeCharacter(
  46129. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  46130. {
  46131. front: {
  46132. height: math.unit(5, "feet"),
  46133. weight: math.unit(90, "lb"),
  46134. name: "Front",
  46135. image: {
  46136. source: "./media/characters/riley-bishop/front.svg",
  46137. extra: 1450/1428,
  46138. bottom: 152/1602
  46139. }
  46140. },
  46141. },
  46142. [
  46143. {
  46144. name: "Normal",
  46145. height: math.unit(5, "feet"),
  46146. default: true
  46147. },
  46148. ]
  46149. ))
  46150. characterMakers.push(() => makeCharacter(
  46151. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  46152. {
  46153. side: {
  46154. height: math.unit(8 + 2/12, "feet"),
  46155. weight: math.unit(500, "kg"),
  46156. name: "Side",
  46157. image: {
  46158. source: "./media/characters/theo-arcanine/side.svg",
  46159. extra: 1342/1074,
  46160. bottom: 111/1453
  46161. }
  46162. },
  46163. },
  46164. [
  46165. {
  46166. name: "Normal",
  46167. height: math.unit(8 + 2/12, "feet"),
  46168. default: true
  46169. },
  46170. ]
  46171. ))
  46172. characterMakers.push(() => makeCharacter(
  46173. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  46174. {
  46175. front: {
  46176. height: math.unit(4, "feet"),
  46177. name: "Front",
  46178. image: {
  46179. source: "./media/characters/kali/front.svg",
  46180. extra: 1074/867,
  46181. bottom: 34/1108
  46182. }
  46183. },
  46184. back: {
  46185. height: math.unit(4, "feet"),
  46186. name: "Back",
  46187. image: {
  46188. source: "./media/characters/kali/back.svg",
  46189. extra: 1068/863,
  46190. bottom: 26/1094
  46191. }
  46192. },
  46193. frontAlt: {
  46194. height: math.unit(4, "feet"),
  46195. name: "Front (Alt)",
  46196. image: {
  46197. source: "./media/characters/kali/front-alt.svg",
  46198. extra: 1921/1357,
  46199. bottom: 70/1991
  46200. }
  46201. },
  46202. },
  46203. [
  46204. {
  46205. name: "Normal",
  46206. height: math.unit(4, "feet"),
  46207. default: true
  46208. },
  46209. {
  46210. name: "Big'vali",
  46211. height: math.unit(11, "feet")
  46212. },
  46213. {
  46214. name: "Macro",
  46215. height: math.unit(32, "meters")
  46216. },
  46217. {
  46218. name: "Macro+",
  46219. height: math.unit(150, "meters")
  46220. },
  46221. {
  46222. name: "Megamacro",
  46223. height: math.unit(7500, "meters")
  46224. },
  46225. {
  46226. name: "Megamacro+",
  46227. height: math.unit(80, "kilometers")
  46228. },
  46229. ]
  46230. ))
  46231. characterMakers.push(() => makeCharacter(
  46232. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  46233. {
  46234. side: {
  46235. height: math.unit(5 + 11/12, "feet"),
  46236. weight: math.unit(236, "lb"),
  46237. name: "Side",
  46238. image: {
  46239. source: "./media/characters/gapp/side.svg",
  46240. extra: 775/340,
  46241. bottom: 58/833
  46242. }
  46243. },
  46244. mouth: {
  46245. height: math.unit(2.98, "feet"),
  46246. name: "Mouth",
  46247. image: {
  46248. source: "./media/characters/gapp/mouth.svg"
  46249. }
  46250. },
  46251. },
  46252. [
  46253. {
  46254. name: "Normal",
  46255. height: math.unit(5 + 1/12, "feet"),
  46256. default: true
  46257. },
  46258. ]
  46259. ))
  46260. characterMakers.push(() => makeCharacter(
  46261. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  46262. {
  46263. front: {
  46264. height: math.unit(6, "feet"),
  46265. name: "Front",
  46266. image: {
  46267. source: "./media/characters/persephone/front.svg",
  46268. extra: 1895/1717,
  46269. bottom: 96/1991
  46270. }
  46271. },
  46272. back: {
  46273. height: math.unit(6, "feet"),
  46274. name: "Back",
  46275. image: {
  46276. source: "./media/characters/persephone/back.svg",
  46277. extra: 1868/1679,
  46278. bottom: 26/1894
  46279. }
  46280. },
  46281. casual: {
  46282. height: math.unit(6, "feet"),
  46283. name: "Casual",
  46284. image: {
  46285. source: "./media/characters/persephone/casual.svg",
  46286. extra: 1713/1541,
  46287. bottom: 76/1789
  46288. }
  46289. },
  46290. gaming: {
  46291. height: math.unit(3.55, "feet"),
  46292. name: "Gaming",
  46293. image: {
  46294. source: "./media/characters/persephone/gaming.svg",
  46295. extra: 1242/1038,
  46296. bottom: 66/1308
  46297. }
  46298. },
  46299. head: {
  46300. height: math.unit(2.15, "feet"),
  46301. name: "😐",
  46302. image: {
  46303. source: "./media/characters/persephone/head.svg"
  46304. }
  46305. },
  46306. talking: {
  46307. height: math.unit(2.5, "feet"),
  46308. name: "💬",
  46309. image: {
  46310. source: "./media/characters/persephone/talking.svg"
  46311. }
  46312. },
  46313. hmm: {
  46314. height: math.unit(2.28, "feet"),
  46315. name: "🤨",
  46316. image: {
  46317. source: "./media/characters/persephone/hmm.svg"
  46318. }
  46319. },
  46320. },
  46321. [
  46322. {
  46323. name: "Human Size",
  46324. height: math.unit(6, "feet")
  46325. },
  46326. {
  46327. name: "Big Steppy",
  46328. height: math.unit(600, "meters"),
  46329. default: true
  46330. },
  46331. {
  46332. name: "Galaxy Brain",
  46333. height: math.unit(1, "zettameter")
  46334. },
  46335. ]
  46336. ))
  46337. characterMakers.push(() => makeCharacter(
  46338. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  46339. {
  46340. front: {
  46341. height: math.unit(1.85, "meters"),
  46342. name: "Front",
  46343. image: {
  46344. source: "./media/characters/riley-foxthing/front.svg",
  46345. extra: 1495/1354,
  46346. bottom: 122/1617
  46347. }
  46348. },
  46349. frontAlt: {
  46350. height: math.unit(1.85, "meters"),
  46351. name: "Front (Alt)",
  46352. image: {
  46353. source: "./media/characters/riley-foxthing/front-alt.svg",
  46354. extra: 1572/1389,
  46355. bottom: 116/1688
  46356. }
  46357. },
  46358. },
  46359. [
  46360. {
  46361. name: "Normal Sized",
  46362. height: math.unit(1.85, "meters"),
  46363. default: true
  46364. },
  46365. {
  46366. name: "Quite Sizable",
  46367. height: math.unit(5, "meters")
  46368. },
  46369. {
  46370. name: "Rather Large",
  46371. height: math.unit(20, "meters")
  46372. },
  46373. {
  46374. name: "Macro",
  46375. height: math.unit(450, "meters")
  46376. },
  46377. {
  46378. name: "Giga",
  46379. height: math.unit(5, "km")
  46380. },
  46381. ]
  46382. ))
  46383. characterMakers.push(() => makeCharacter(
  46384. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  46385. {
  46386. front: {
  46387. height: math.unit(6, "feet"),
  46388. weight: math.unit(200, "lb"),
  46389. name: "Front",
  46390. image: {
  46391. source: "./media/characters/blizzard/front.svg",
  46392. extra: 1136/990,
  46393. bottom: 136/1272
  46394. }
  46395. },
  46396. back: {
  46397. height: math.unit(6, "feet"),
  46398. weight: math.unit(200, "lb"),
  46399. name: "Back",
  46400. image: {
  46401. source: "./media/characters/blizzard/back.svg",
  46402. extra: 1175/1034,
  46403. bottom: 97/1272
  46404. }
  46405. },
  46406. sitting: {
  46407. height: math.unit(3.725, "feet"),
  46408. weight: math.unit(200, "lb"),
  46409. name: "Sitting",
  46410. image: {
  46411. source: "./media/characters/blizzard/sitting.svg",
  46412. extra: 581/485,
  46413. bottom: 90/671
  46414. }
  46415. },
  46416. frontWizard: {
  46417. height: math.unit(7.9, "feet"),
  46418. weight: math.unit(200, "lb"),
  46419. name: "Front (Wizard)",
  46420. image: {
  46421. source: "./media/characters/blizzard/front-wizard.svg"
  46422. }
  46423. },
  46424. backWizard: {
  46425. height: math.unit(7.9, "feet"),
  46426. weight: math.unit(200, "lb"),
  46427. name: "Back (Wizard)",
  46428. image: {
  46429. source: "./media/characters/blizzard/back-wizard.svg"
  46430. }
  46431. },
  46432. frontNsfw: {
  46433. height: math.unit(6, "feet"),
  46434. weight: math.unit(200, "lb"),
  46435. name: "Front (NSFW)",
  46436. image: {
  46437. source: "./media/characters/blizzard/front-nsfw.svg",
  46438. extra: 1136/990,
  46439. bottom: 136/1272
  46440. }
  46441. },
  46442. backNsfw: {
  46443. height: math.unit(6, "feet"),
  46444. weight: math.unit(200, "lb"),
  46445. name: "Back (NSFW)",
  46446. image: {
  46447. source: "./media/characters/blizzard/back-nsfw.svg",
  46448. extra: 1175/1034,
  46449. bottom: 97/1272
  46450. }
  46451. },
  46452. sittingNsfw: {
  46453. height: math.unit(3.725, "feet"),
  46454. weight: math.unit(200, "lb"),
  46455. name: "Sitting (NSFW)",
  46456. image: {
  46457. source: "./media/characters/blizzard/sitting-nsfw.svg",
  46458. extra: 581/485,
  46459. bottom: 90/671
  46460. }
  46461. },
  46462. wizardFrontNsfw: {
  46463. height: math.unit(7.9, "feet"),
  46464. weight: math.unit(200, "lb"),
  46465. name: "Wizard (Front, NSFW)",
  46466. image: {
  46467. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  46468. }
  46469. },
  46470. },
  46471. [
  46472. {
  46473. name: "Normal",
  46474. height: math.unit(6, "feet"),
  46475. default: true
  46476. },
  46477. ]
  46478. ))
  46479. characterMakers.push(() => makeCharacter(
  46480. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  46481. {
  46482. front: {
  46483. height: math.unit(5 + 2/12, "feet"),
  46484. name: "Front",
  46485. image: {
  46486. source: "./media/characters/lumi/front.svg",
  46487. extra: 1328/1268,
  46488. bottom: 103/1431
  46489. }
  46490. },
  46491. back: {
  46492. height: math.unit(5 + 2/12, "feet"),
  46493. name: "Back",
  46494. image: {
  46495. source: "./media/characters/lumi/back.svg",
  46496. extra: 1381/1327,
  46497. bottom: 43/1424
  46498. }
  46499. },
  46500. },
  46501. [
  46502. {
  46503. name: "Normal",
  46504. height: math.unit(5 + 2/12, "feet"),
  46505. default: true
  46506. },
  46507. ]
  46508. ))
  46509. characterMakers.push(() => makeCharacter(
  46510. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46511. {
  46512. front: {
  46513. height: math.unit(5 + 9/12, "feet"),
  46514. name: "Front",
  46515. image: {
  46516. source: "./media/characters/aliya-cotton/front.svg",
  46517. extra: 577/564,
  46518. bottom: 29/606
  46519. }
  46520. },
  46521. },
  46522. [
  46523. {
  46524. name: "Normal",
  46525. height: math.unit(5 + 9/12, "feet"),
  46526. default: true
  46527. },
  46528. ]
  46529. ))
  46530. characterMakers.push(() => makeCharacter(
  46531. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46532. {
  46533. front: {
  46534. height: math.unit(2.7, "meters"),
  46535. weight: math.unit(25000, "lb"),
  46536. name: "Front",
  46537. image: {
  46538. source: "./media/characters/noah-luxray/front.svg",
  46539. extra: 1644/825,
  46540. bottom: 339/1983
  46541. }
  46542. },
  46543. side: {
  46544. height: math.unit(2.97, "meters"),
  46545. weight: math.unit(25000, "lb"),
  46546. name: "Side",
  46547. image: {
  46548. source: "./media/characters/noah-luxray/side.svg",
  46549. extra: 1319/650,
  46550. bottom: 163/1482
  46551. }
  46552. },
  46553. dick: {
  46554. height: math.unit(7.4, "feet"),
  46555. weight: math.unit(2500, "lb"),
  46556. name: "Dick",
  46557. image: {
  46558. source: "./media/characters/noah-luxray/dick.svg"
  46559. }
  46560. },
  46561. dickAlt: {
  46562. height: math.unit(10.83, "feet"),
  46563. weight: math.unit(2500, "lb"),
  46564. name: "Dick-alt",
  46565. image: {
  46566. source: "./media/characters/noah-luxray/dick-alt.svg"
  46567. }
  46568. },
  46569. },
  46570. [
  46571. {
  46572. name: "BIG",
  46573. height: math.unit(2.7, "meters"),
  46574. default: true
  46575. },
  46576. ]
  46577. ))
  46578. characterMakers.push(() => makeCharacter(
  46579. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46580. {
  46581. standing: {
  46582. height: math.unit(183, "cm"),
  46583. weight: math.unit(68, "kg"),
  46584. name: "Standing",
  46585. image: {
  46586. source: "./media/characters/arion/standing.svg",
  46587. extra: 1869/1807,
  46588. bottom: 93/1962
  46589. }
  46590. },
  46591. reclining: {
  46592. height: math.unit(70.5, "cm"),
  46593. weight: math.unit(68, "lb"),
  46594. name: "Reclining",
  46595. image: {
  46596. source: "./media/characters/arion/reclining.svg",
  46597. extra: 937/870,
  46598. bottom: 63/1000
  46599. }
  46600. },
  46601. },
  46602. [
  46603. {
  46604. name: "Colossus Size, Low",
  46605. height: math.unit(33, "meters"),
  46606. default: true
  46607. },
  46608. {
  46609. name: "Colossus Size, Mid",
  46610. height: math.unit(52, "meters")
  46611. },
  46612. {
  46613. name: "Colossus Size, High",
  46614. height: math.unit(60, "meters")
  46615. },
  46616. {
  46617. name: "Titan Size, Low",
  46618. height: math.unit(91, "meters"),
  46619. },
  46620. {
  46621. name: "Titan Size, Mid",
  46622. height: math.unit(122, "meters")
  46623. },
  46624. {
  46625. name: "Titan Size, High",
  46626. height: math.unit(162, "meters")
  46627. },
  46628. ]
  46629. ))
  46630. characterMakers.push(() => makeCharacter(
  46631. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46632. {
  46633. front: {
  46634. height: math.unit(53, "meters"),
  46635. name: "Front",
  46636. image: {
  46637. source: "./media/characters/stellar-marbey/front.svg",
  46638. extra: 1913/1805,
  46639. bottom: 92/2005
  46640. }
  46641. },
  46642. back: {
  46643. height: math.unit(53, "meters"),
  46644. name: "Back",
  46645. image: {
  46646. source: "./media/characters/stellar-marbey/back.svg",
  46647. extra: 1960/1851,
  46648. bottom: 28/1988
  46649. }
  46650. },
  46651. mouth: {
  46652. height: math.unit(3.5, "meters"),
  46653. name: "Mouth",
  46654. image: {
  46655. source: "./media/characters/stellar-marbey/mouth.svg"
  46656. }
  46657. },
  46658. },
  46659. [
  46660. {
  46661. name: "Macro",
  46662. height: math.unit(53, "meters"),
  46663. default: true
  46664. },
  46665. ]
  46666. ))
  46667. characterMakers.push(() => makeCharacter(
  46668. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46669. {
  46670. front: {
  46671. height: math.unit(8 + 1/12, "feet"),
  46672. weight: math.unit(233, "lb"),
  46673. name: "Front",
  46674. image: {
  46675. source: "./media/characters/matsu/front.svg",
  46676. extra: 832/772,
  46677. bottom: 40/872
  46678. }
  46679. },
  46680. back: {
  46681. height: math.unit(8 + 1/12, "feet"),
  46682. weight: math.unit(233, "lb"),
  46683. name: "Back",
  46684. image: {
  46685. source: "./media/characters/matsu/back.svg",
  46686. extra: 839/780,
  46687. bottom: 47/886
  46688. }
  46689. },
  46690. },
  46691. [
  46692. {
  46693. name: "Normal",
  46694. height: math.unit(8 + 1/12, "feet"),
  46695. default: true
  46696. },
  46697. ]
  46698. ))
  46699. characterMakers.push(() => makeCharacter(
  46700. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46701. {
  46702. front: {
  46703. height: math.unit(4, "feet"),
  46704. weight: math.unit(148, "lb"),
  46705. name: "Front",
  46706. image: {
  46707. source: "./media/characters/thiz/front.svg",
  46708. extra: 1913/1748,
  46709. bottom: 62/1975
  46710. }
  46711. },
  46712. },
  46713. [
  46714. {
  46715. name: "Normal",
  46716. height: math.unit(4, "feet"),
  46717. default: true
  46718. },
  46719. ]
  46720. ))
  46721. characterMakers.push(() => makeCharacter(
  46722. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46723. {
  46724. front: {
  46725. height: math.unit(7 + 6/12, "feet"),
  46726. weight: math.unit(267, "lb"),
  46727. name: "Front",
  46728. image: {
  46729. source: "./media/characters/marcel/front.svg",
  46730. extra: 1221/1096,
  46731. bottom: 76/1297
  46732. }
  46733. },
  46734. },
  46735. [
  46736. {
  46737. name: "Normal",
  46738. height: math.unit(7 + 6/12, "feet"),
  46739. default: true
  46740. },
  46741. ]
  46742. ))
  46743. characterMakers.push(() => makeCharacter(
  46744. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46745. {
  46746. side: {
  46747. height: math.unit(42, "meters"),
  46748. name: "Side",
  46749. image: {
  46750. source: "./media/characters/flake/side.svg",
  46751. extra: 1525/1306,
  46752. bottom: 209/1734
  46753. }
  46754. },
  46755. },
  46756. [
  46757. {
  46758. name: "Normal",
  46759. height: math.unit(42, "meters"),
  46760. default: true
  46761. },
  46762. ]
  46763. ))
  46764. characterMakers.push(() => makeCharacter(
  46765. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46766. {
  46767. dressed: {
  46768. height: math.unit(6 + 4/12, "feet"),
  46769. weight: math.unit(520, "lb"),
  46770. name: "Dressed",
  46771. image: {
  46772. source: "./media/characters/someonne/dressed.svg",
  46773. extra: 1020/1010,
  46774. bottom: 178/1198
  46775. }
  46776. },
  46777. undressed: {
  46778. height: math.unit(6 + 4/12, "feet"),
  46779. weight: math.unit(520, "lb"),
  46780. name: "Undressed",
  46781. image: {
  46782. source: "./media/characters/someonne/undressed.svg",
  46783. extra: 1019/1014,
  46784. bottom: 169/1188
  46785. }
  46786. },
  46787. },
  46788. [
  46789. {
  46790. name: "Normal",
  46791. height: math.unit(6 + 4/12, "feet"),
  46792. default: true
  46793. },
  46794. ]
  46795. ))
  46796. characterMakers.push(() => makeCharacter(
  46797. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46798. {
  46799. front: {
  46800. height: math.unit(3, "feet"),
  46801. weight: math.unit(30, "lb"),
  46802. name: "Front",
  46803. image: {
  46804. source: "./media/characters/till/front.svg",
  46805. extra: 892/823,
  46806. bottom: 55/947
  46807. }
  46808. },
  46809. },
  46810. [
  46811. {
  46812. name: "Normal",
  46813. height: math.unit(3, "feet"),
  46814. default: true
  46815. },
  46816. ]
  46817. ))
  46818. characterMakers.push(() => makeCharacter(
  46819. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46820. {
  46821. front: {
  46822. height: math.unit(9 + 8/12, "feet"),
  46823. weight: math.unit(800, "lb"),
  46824. name: "Front",
  46825. image: {
  46826. source: "./media/characters/sydney-heki/front.svg",
  46827. extra: 1360/1300,
  46828. bottom: 22/1382
  46829. }
  46830. },
  46831. back: {
  46832. height: math.unit(9 + 8/12, "feet"),
  46833. weight: math.unit(800, "lb"),
  46834. name: "Back",
  46835. image: {
  46836. source: "./media/characters/sydney-heki/back.svg",
  46837. extra: 1356/1293,
  46838. bottom: 12/1368
  46839. }
  46840. },
  46841. frontDressed: {
  46842. height: math.unit(9 + 8/12, "feet"),
  46843. weight: math.unit(800, "lb"),
  46844. name: "Front-dressed",
  46845. image: {
  46846. source: "./media/characters/sydney-heki/front-dressed.svg",
  46847. extra: 1360/1300,
  46848. bottom: 22/1382
  46849. }
  46850. },
  46851. },
  46852. [
  46853. {
  46854. name: "Normal",
  46855. height: math.unit(9 + 8/12, "feet"),
  46856. default: true
  46857. },
  46858. {
  46859. name: "Macro",
  46860. height: math.unit(500, "feet")
  46861. },
  46862. {
  46863. name: "Megamacro",
  46864. height: math.unit(3.6, "miles")
  46865. },
  46866. ]
  46867. ))
  46868. characterMakers.push(() => makeCharacter(
  46869. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46870. {
  46871. front: {
  46872. height: math.unit(200, "cm"),
  46873. weight: math.unit(250, "lb"),
  46874. name: "Front",
  46875. image: {
  46876. source: "./media/characters/fowler-karlsson/front.svg",
  46877. extra: 897/845,
  46878. bottom: 123/1020
  46879. }
  46880. },
  46881. back: {
  46882. height: math.unit(200, "cm"),
  46883. weight: math.unit(250, "lb"),
  46884. name: "Back",
  46885. image: {
  46886. source: "./media/characters/fowler-karlsson/back.svg",
  46887. extra: 999/944,
  46888. bottom: 26/1025
  46889. }
  46890. },
  46891. dick: {
  46892. height: math.unit(1.92, "feet"),
  46893. weight: math.unit(150, "lb"),
  46894. name: "Dick",
  46895. image: {
  46896. source: "./media/characters/fowler-karlsson/dick.svg"
  46897. }
  46898. },
  46899. },
  46900. [
  46901. {
  46902. name: "Normal",
  46903. height: math.unit(200, "cm"),
  46904. default: true
  46905. },
  46906. {
  46907. name: "Smaller Macro",
  46908. height: math.unit(90, "m")
  46909. },
  46910. {
  46911. name: "Macro",
  46912. height: math.unit(150, "m")
  46913. },
  46914. {
  46915. name: "Bigger Macro",
  46916. height: math.unit(300, "m")
  46917. },
  46918. ]
  46919. ))
  46920. characterMakers.push(() => makeCharacter(
  46921. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46922. {
  46923. side: {
  46924. height: math.unit(8 + 2/12, "feet"),
  46925. weight: math.unit(1, "tonne"),
  46926. name: "Side",
  46927. image: {
  46928. source: "./media/characters/rylide/side.svg",
  46929. extra: 1318/1034,
  46930. bottom: 106/1424
  46931. }
  46932. },
  46933. sitting: {
  46934. height: math.unit(303, "cm"),
  46935. weight: math.unit(1, "tonne"),
  46936. name: "Sitting",
  46937. image: {
  46938. source: "./media/characters/rylide/sitting.svg",
  46939. extra: 1303/1103,
  46940. bottom: 36/1339
  46941. }
  46942. },
  46943. },
  46944. [
  46945. {
  46946. name: "Normal",
  46947. height: math.unit(8 + 2/12, "feet"),
  46948. default: true
  46949. },
  46950. ]
  46951. ))
  46952. characterMakers.push(() => makeCharacter(
  46953. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46954. {
  46955. front: {
  46956. height: math.unit(5 + 10/12, "feet"),
  46957. weight: math.unit(160, "lb"),
  46958. name: "Front",
  46959. image: {
  46960. source: "./media/characters/pudask/front.svg",
  46961. extra: 1616/1590,
  46962. bottom: 161/1777
  46963. }
  46964. },
  46965. },
  46966. [
  46967. {
  46968. name: "Ferret Height",
  46969. height: math.unit(2 + 5/12, "feet")
  46970. },
  46971. {
  46972. name: "Canon Height",
  46973. height: math.unit(5 + 10/12, "feet"),
  46974. default: true
  46975. },
  46976. ]
  46977. ))
  46978. characterMakers.push(() => makeCharacter(
  46979. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46980. {
  46981. front: {
  46982. height: math.unit(3 + 6/12, "feet"),
  46983. weight: math.unit(60, "lb"),
  46984. name: "Front",
  46985. image: {
  46986. source: "./media/characters/ramita/front.svg",
  46987. extra: 1402/1232,
  46988. bottom: 62/1464
  46989. }
  46990. },
  46991. dressed: {
  46992. height: math.unit(3 + 6/12, "feet"),
  46993. weight: math.unit(60, "lb"),
  46994. name: "Dressed",
  46995. image: {
  46996. source: "./media/characters/ramita/dressed.svg",
  46997. extra: 1534/1249,
  46998. bottom: 50/1584
  46999. }
  47000. },
  47001. },
  47002. [
  47003. {
  47004. name: "Normal",
  47005. height: math.unit(3 + 6/12, "feet"),
  47006. default: true
  47007. },
  47008. ]
  47009. ))
  47010. characterMakers.push(() => makeCharacter(
  47011. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  47012. {
  47013. front: {
  47014. height: math.unit(8, "feet"),
  47015. name: "Front",
  47016. image: {
  47017. source: "./media/characters/ark/front.svg",
  47018. extra: 772/693,
  47019. bottom: 45/817
  47020. }
  47021. },
  47022. },
  47023. [
  47024. {
  47025. name: "Normal",
  47026. height: math.unit(8, "feet"),
  47027. default: true
  47028. },
  47029. ]
  47030. ))
  47031. characterMakers.push(() => makeCharacter(
  47032. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  47033. {
  47034. front: {
  47035. height: math.unit(6, "feet"),
  47036. weight: math.unit(250, "lb"),
  47037. volume: math.unit(5/8, "gallons"),
  47038. name: "Front",
  47039. image: {
  47040. source: "./media/characters/ludwig-horn/front.svg",
  47041. extra: 1782/1635,
  47042. bottom: 96/1878
  47043. }
  47044. },
  47045. back: {
  47046. height: math.unit(6, "feet"),
  47047. weight: math.unit(250, "lb"),
  47048. volume: math.unit(5/8, "gallons"),
  47049. name: "Back",
  47050. image: {
  47051. source: "./media/characters/ludwig-horn/back.svg",
  47052. extra: 1874/1729,
  47053. bottom: 27/1901
  47054. }
  47055. },
  47056. dick: {
  47057. height: math.unit(1.05, "feet"),
  47058. weight: math.unit(15, "lb"),
  47059. volume: math.unit(5/8, "gallons"),
  47060. name: "Dick",
  47061. image: {
  47062. source: "./media/characters/ludwig-horn/dick.svg"
  47063. }
  47064. },
  47065. },
  47066. [
  47067. {
  47068. name: "Small",
  47069. height: math.unit(6, "feet")
  47070. },
  47071. {
  47072. name: "Typical",
  47073. height: math.unit(12, "feet"),
  47074. default: true
  47075. },
  47076. {
  47077. name: "Building",
  47078. height: math.unit(80, "feet")
  47079. },
  47080. {
  47081. name: "Town",
  47082. height: math.unit(800, "feet")
  47083. },
  47084. {
  47085. name: "Kingdom",
  47086. height: math.unit(80000, "feet")
  47087. },
  47088. {
  47089. name: "Planet",
  47090. height: math.unit(8000000, "feet")
  47091. },
  47092. {
  47093. name: "Universe",
  47094. height: math.unit(8000000000, "feet")
  47095. },
  47096. {
  47097. name: "Transcended",
  47098. height: math.unit(8e27, "feet")
  47099. },
  47100. ]
  47101. ))
  47102. characterMakers.push(() => makeCharacter(
  47103. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  47104. {
  47105. front: {
  47106. height: math.unit(5, "feet"),
  47107. weight: math.unit(50, "kg"),
  47108. name: "Front",
  47109. image: {
  47110. source: "./media/characters/biot-avery/front.svg",
  47111. extra: 1295/1232,
  47112. bottom: 86/1381
  47113. }
  47114. },
  47115. },
  47116. [
  47117. {
  47118. name: "Normal",
  47119. height: math.unit(5, "feet"),
  47120. default: true
  47121. },
  47122. ]
  47123. ))
  47124. characterMakers.push(() => makeCharacter(
  47125. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  47126. {
  47127. front: {
  47128. height: math.unit(6, "feet"),
  47129. name: "Front",
  47130. image: {
  47131. source: "./media/characters/kitsune-kiro/front.svg",
  47132. extra: 1270/1158,
  47133. bottom: 42/1312
  47134. }
  47135. },
  47136. frontAlt: {
  47137. height: math.unit(6, "feet"),
  47138. name: "Front-alt",
  47139. image: {
  47140. source: "./media/characters/kitsune-kiro/front-alt.svg",
  47141. extra: 1130/1081,
  47142. bottom: 36/1166
  47143. }
  47144. },
  47145. },
  47146. [
  47147. {
  47148. name: "Smol",
  47149. height: math.unit(3, "feet")
  47150. },
  47151. {
  47152. name: "Normal",
  47153. height: math.unit(6, "feet"),
  47154. default: true
  47155. },
  47156. ]
  47157. ))
  47158. characterMakers.push(() => makeCharacter(
  47159. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  47160. {
  47161. front: {
  47162. height: math.unit(6, "feet"),
  47163. weight: math.unit(125, "lb"),
  47164. name: "Front",
  47165. image: {
  47166. source: "./media/characters/jack-thatcher/front.svg",
  47167. extra: 1474/1370,
  47168. bottom: 26/1500
  47169. }
  47170. },
  47171. back: {
  47172. height: math.unit(6, "feet"),
  47173. weight: math.unit(125, "lb"),
  47174. name: "Back",
  47175. image: {
  47176. source: "./media/characters/jack-thatcher/back.svg",
  47177. extra: 1489/1384,
  47178. bottom: 18/1507
  47179. }
  47180. },
  47181. },
  47182. [
  47183. {
  47184. name: "Normal",
  47185. height: math.unit(6, "feet"),
  47186. default: true
  47187. },
  47188. {
  47189. name: "Macro",
  47190. height: math.unit(75, "feet")
  47191. },
  47192. {
  47193. name: "Macro-er",
  47194. height: math.unit(250, "feet")
  47195. },
  47196. ]
  47197. ))
  47198. characterMakers.push(() => makeCharacter(
  47199. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  47200. {
  47201. front: {
  47202. height: math.unit(7, "feet"),
  47203. weight: math.unit(110, "kg"),
  47204. name: "Front",
  47205. image: {
  47206. source: "./media/characters/max-hyper/front.svg",
  47207. extra: 1969/1881,
  47208. bottom: 49/2018
  47209. }
  47210. },
  47211. },
  47212. [
  47213. {
  47214. name: "Normal",
  47215. height: math.unit(7, "feet"),
  47216. default: true
  47217. },
  47218. ]
  47219. ))
  47220. characterMakers.push(() => makeCharacter(
  47221. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  47222. {
  47223. front: {
  47224. height: math.unit(5 + 5/12, "feet"),
  47225. weight: math.unit(160, "lb"),
  47226. name: "Front",
  47227. image: {
  47228. source: "./media/characters/spook/front.svg",
  47229. extra: 794/791,
  47230. bottom: 54/848
  47231. }
  47232. },
  47233. back: {
  47234. height: math.unit(5 + 5/12, "feet"),
  47235. weight: math.unit(160, "lb"),
  47236. name: "Back",
  47237. image: {
  47238. source: "./media/characters/spook/back.svg",
  47239. extra: 812/798,
  47240. bottom: 32/844
  47241. }
  47242. },
  47243. },
  47244. [
  47245. {
  47246. name: "Normal",
  47247. height: math.unit(5 + 5/12, "feet"),
  47248. default: true
  47249. },
  47250. ]
  47251. ))
  47252. characterMakers.push(() => makeCharacter(
  47253. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  47254. {
  47255. front: {
  47256. height: math.unit(18, "feet"),
  47257. name: "Front",
  47258. image: {
  47259. source: "./media/characters/xeaduulix/front.svg",
  47260. extra: 1380/1166,
  47261. bottom: 110/1490
  47262. }
  47263. },
  47264. back: {
  47265. height: math.unit(18, "feet"),
  47266. name: "Back",
  47267. image: {
  47268. source: "./media/characters/xeaduulix/back.svg",
  47269. extra: 1592/1170,
  47270. bottom: 128/1720
  47271. }
  47272. },
  47273. frontNsfw: {
  47274. height: math.unit(18, "feet"),
  47275. name: "Front (NSFW)",
  47276. image: {
  47277. source: "./media/characters/xeaduulix/front-nsfw.svg",
  47278. extra: 1380/1166,
  47279. bottom: 110/1490
  47280. }
  47281. },
  47282. backNsfw: {
  47283. height: math.unit(18, "feet"),
  47284. name: "Back (NSFW)",
  47285. image: {
  47286. source: "./media/characters/xeaduulix/back-nsfw.svg",
  47287. extra: 1592/1170,
  47288. bottom: 128/1720
  47289. }
  47290. },
  47291. },
  47292. [
  47293. {
  47294. name: "Normal",
  47295. height: math.unit(18, "feet"),
  47296. default: true
  47297. },
  47298. ]
  47299. ))
  47300. characterMakers.push(() => makeCharacter(
  47301. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  47302. {
  47303. spreadWings: {
  47304. height: math.unit(20, "feet"),
  47305. name: "Spread Wings",
  47306. image: {
  47307. source: "./media/characters/fledge/spread-wings.svg",
  47308. extra: 693/635,
  47309. bottom: 26/719
  47310. }
  47311. },
  47312. front: {
  47313. height: math.unit(20, "feet"),
  47314. name: "Front",
  47315. image: {
  47316. source: "./media/characters/fledge/front.svg",
  47317. extra: 684/637,
  47318. bottom: 18/702
  47319. }
  47320. },
  47321. frontAlt: {
  47322. height: math.unit(20, "feet"),
  47323. name: "Front (Alt)",
  47324. image: {
  47325. source: "./media/characters/fledge/front-alt.svg",
  47326. extra: 708/664,
  47327. bottom: 13/721
  47328. }
  47329. },
  47330. back: {
  47331. height: math.unit(20, "feet"),
  47332. name: "Back",
  47333. image: {
  47334. source: "./media/characters/fledge/back.svg",
  47335. extra: 718/634,
  47336. bottom: 22/740
  47337. }
  47338. },
  47339. head: {
  47340. height: math.unit(5.55, "feet"),
  47341. name: "Head",
  47342. image: {
  47343. source: "./media/characters/fledge/head.svg"
  47344. }
  47345. },
  47346. headAlt: {
  47347. height: math.unit(5.1, "feet"),
  47348. name: "Head (Alt)",
  47349. image: {
  47350. source: "./media/characters/fledge/head-alt.svg"
  47351. }
  47352. },
  47353. },
  47354. [
  47355. {
  47356. name: "Small",
  47357. height: math.unit(6 + 2/12, "feet")
  47358. },
  47359. {
  47360. name: "Big",
  47361. height: math.unit(20, "feet"),
  47362. default: true
  47363. },
  47364. {
  47365. name: "Giant",
  47366. height: math.unit(100, "feet")
  47367. },
  47368. {
  47369. name: "Macro",
  47370. height: math.unit(200, "feet")
  47371. },
  47372. ]
  47373. ))
  47374. characterMakers.push(() => makeCharacter(
  47375. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  47376. {
  47377. front: {
  47378. height: math.unit(1, "meter"),
  47379. name: "Front",
  47380. image: {
  47381. source: "./media/characters/atlas-morenai/front.svg",
  47382. extra: 1275/1043,
  47383. bottom: 19/1294
  47384. }
  47385. },
  47386. back: {
  47387. height: math.unit(1, "meter"),
  47388. name: "Back",
  47389. image: {
  47390. source: "./media/characters/atlas-morenai/back.svg",
  47391. extra: 1141/1001,
  47392. bottom: 25/1166
  47393. }
  47394. },
  47395. },
  47396. [
  47397. {
  47398. name: "Normal",
  47399. height: math.unit(1, "meter"),
  47400. default: true
  47401. },
  47402. {
  47403. name: "Magic-Infused",
  47404. height: math.unit(5, "meters")
  47405. },
  47406. ]
  47407. ))
  47408. characterMakers.push(() => makeCharacter(
  47409. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  47410. {
  47411. front: {
  47412. height: math.unit(5, "meters"),
  47413. name: "Front",
  47414. image: {
  47415. source: "./media/characters/cintia/front.svg",
  47416. extra: 1312/1228,
  47417. bottom: 38/1350
  47418. }
  47419. },
  47420. back: {
  47421. height: math.unit(5, "meters"),
  47422. name: "Back",
  47423. image: {
  47424. source: "./media/characters/cintia/back.svg",
  47425. extra: 1260/1166,
  47426. bottom: 98/1358
  47427. }
  47428. },
  47429. frontDick: {
  47430. height: math.unit(5, "meters"),
  47431. name: "Front (Dick)",
  47432. image: {
  47433. source: "./media/characters/cintia/front-dick.svg",
  47434. extra: 1312/1228,
  47435. bottom: 38/1350
  47436. }
  47437. },
  47438. backDick: {
  47439. height: math.unit(5, "meters"),
  47440. name: "Back (Dick)",
  47441. image: {
  47442. source: "./media/characters/cintia/back-dick.svg",
  47443. extra: 1260/1166,
  47444. bottom: 98/1358
  47445. }
  47446. },
  47447. bust: {
  47448. height: math.unit(1.97, "meters"),
  47449. name: "Bust",
  47450. image: {
  47451. source: "./media/characters/cintia/bust.svg",
  47452. extra: 617/565,
  47453. bottom: 0/617
  47454. }
  47455. },
  47456. },
  47457. [
  47458. {
  47459. name: "Normal",
  47460. height: math.unit(5, "meters"),
  47461. default: true
  47462. },
  47463. ]
  47464. ))
  47465. characterMakers.push(() => makeCharacter(
  47466. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  47467. {
  47468. side: {
  47469. height: math.unit(100, "feet"),
  47470. name: "Side",
  47471. image: {
  47472. source: "./media/characters/denora/side.svg",
  47473. extra: 875/803,
  47474. bottom: 9/884
  47475. }
  47476. },
  47477. },
  47478. [
  47479. {
  47480. name: "Standard",
  47481. height: math.unit(100, "feet"),
  47482. default: true
  47483. },
  47484. {
  47485. name: "Grand",
  47486. height: math.unit(1000, "feet")
  47487. },
  47488. {
  47489. name: "Conquering",
  47490. height: math.unit(10000, "feet")
  47491. },
  47492. ]
  47493. ))
  47494. characterMakers.push(() => makeCharacter(
  47495. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  47496. {
  47497. dressed: {
  47498. height: math.unit(8 + 5/12, "feet"),
  47499. weight: math.unit(700, "lb"),
  47500. name: "Dressed",
  47501. image: {
  47502. source: "./media/characters/kiva/dressed.svg",
  47503. extra: 1102/1055,
  47504. bottom: 60/1162
  47505. }
  47506. },
  47507. nude: {
  47508. height: math.unit(8 + 5/12, "feet"),
  47509. weight: math.unit(700, "lb"),
  47510. name: "Nude",
  47511. image: {
  47512. source: "./media/characters/kiva/nude.svg",
  47513. extra: 1102/1055,
  47514. bottom: 60/1162
  47515. }
  47516. },
  47517. },
  47518. [
  47519. {
  47520. name: "Base Height",
  47521. height: math.unit(8 + 5/12, "feet"),
  47522. default: true
  47523. },
  47524. {
  47525. name: "Macro",
  47526. height: math.unit(100, "feet")
  47527. },
  47528. {
  47529. name: "Max",
  47530. height: math.unit(3280, "feet")
  47531. },
  47532. ]
  47533. ))
  47534. characterMakers.push(() => makeCharacter(
  47535. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47536. {
  47537. front: {
  47538. height: math.unit(6 + 8/12, "feet"),
  47539. weight: math.unit(250, "lb"),
  47540. name: "Front",
  47541. image: {
  47542. source: "./media/characters/ztragon/front.svg",
  47543. extra: 1825/1684,
  47544. bottom: 98/1923
  47545. }
  47546. },
  47547. },
  47548. [
  47549. {
  47550. name: "Normal",
  47551. height: math.unit(6 + 8/12, "feet"),
  47552. default: true
  47553. },
  47554. {
  47555. name: "Macro",
  47556. height: math.unit(80, "feet")
  47557. },
  47558. ]
  47559. ))
  47560. characterMakers.push(() => makeCharacter(
  47561. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47562. {
  47563. front: {
  47564. height: math.unit(10.4, "feet"),
  47565. weight: math.unit(2, "tons"),
  47566. name: "Front",
  47567. image: {
  47568. source: "./media/characters/yesenia/front.svg",
  47569. extra: 1479/1474,
  47570. bottom: 233/1712
  47571. }
  47572. },
  47573. },
  47574. [
  47575. {
  47576. name: "Normal",
  47577. height: math.unit(10.4, "feet"),
  47578. default: true
  47579. },
  47580. ]
  47581. ))
  47582. characterMakers.push(() => makeCharacter(
  47583. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47584. {
  47585. normal: {
  47586. height: math.unit(6 + 1/12, "feet"),
  47587. weight: math.unit(180, "lb"),
  47588. name: "Normal",
  47589. image: {
  47590. source: "./media/characters/leanne-lycheborne/normal.svg",
  47591. extra: 1748/1660,
  47592. bottom: 98/1846
  47593. }
  47594. },
  47595. were: {
  47596. height: math.unit(12, "feet"),
  47597. weight: math.unit(1600, "lb"),
  47598. name: "Were",
  47599. image: {
  47600. source: "./media/characters/leanne-lycheborne/were.svg",
  47601. extra: 1485/1432,
  47602. bottom: 66/1551
  47603. }
  47604. },
  47605. },
  47606. [
  47607. {
  47608. name: "Normal",
  47609. height: math.unit(6 + 1/12, "feet"),
  47610. default: true
  47611. },
  47612. ]
  47613. ))
  47614. characterMakers.push(() => makeCharacter(
  47615. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47616. {
  47617. side: {
  47618. height: math.unit(13, "feet"),
  47619. name: "Side",
  47620. image: {
  47621. source: "./media/characters/kira-tyler/side.svg",
  47622. extra: 693/393,
  47623. bottom: 58/751
  47624. }
  47625. },
  47626. },
  47627. [
  47628. {
  47629. name: "Normal",
  47630. height: math.unit(13, "feet"),
  47631. default: true
  47632. },
  47633. ]
  47634. ))
  47635. characterMakers.push(() => makeCharacter(
  47636. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47637. {
  47638. front: {
  47639. height: math.unit(10.3, "feet"),
  47640. weight: math.unit(150, "lb"),
  47641. name: "Front",
  47642. image: {
  47643. source: "./media/characters/blaze/front.svg",
  47644. extra: 1378/1286,
  47645. bottom: 172/1550
  47646. }
  47647. },
  47648. },
  47649. [
  47650. {
  47651. name: "Normal",
  47652. height: math.unit(10.3, "feet"),
  47653. default: true
  47654. },
  47655. ]
  47656. ))
  47657. characterMakers.push(() => makeCharacter(
  47658. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47659. {
  47660. side: {
  47661. height: math.unit(2, "meters"),
  47662. weight: math.unit(400, "kg"),
  47663. name: "Side",
  47664. image: {
  47665. source: "./media/characters/anu/side.svg",
  47666. extra: 506/394,
  47667. bottom: 18/524
  47668. }
  47669. },
  47670. },
  47671. [
  47672. {
  47673. name: "Humanoid",
  47674. height: math.unit(2, "meters")
  47675. },
  47676. {
  47677. name: "Normal",
  47678. height: math.unit(5, "meters"),
  47679. default: true
  47680. },
  47681. ]
  47682. ))
  47683. characterMakers.push(() => makeCharacter(
  47684. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47685. {
  47686. front: {
  47687. height: math.unit(5 + 5/12, "feet"),
  47688. weight: math.unit(170, "lb"),
  47689. name: "Front",
  47690. image: {
  47691. source: "./media/characters/synx-the-lynx/front.svg",
  47692. extra: 1893/1745,
  47693. bottom: 17/1910
  47694. }
  47695. },
  47696. side: {
  47697. height: math.unit(5 + 5/12, "feet"),
  47698. weight: math.unit(170, "lb"),
  47699. name: "Side",
  47700. image: {
  47701. source: "./media/characters/synx-the-lynx/side.svg",
  47702. extra: 1884/1740,
  47703. bottom: 39/1923
  47704. }
  47705. },
  47706. back: {
  47707. height: math.unit(5 + 5/12, "feet"),
  47708. weight: math.unit(170, "lb"),
  47709. name: "Back",
  47710. image: {
  47711. source: "./media/characters/synx-the-lynx/back.svg",
  47712. extra: 1903/1755,
  47713. bottom: 14/1917
  47714. }
  47715. },
  47716. },
  47717. [
  47718. {
  47719. name: "Normal",
  47720. height: math.unit(5 + 5/12, "feet"),
  47721. default: true
  47722. },
  47723. ]
  47724. ))
  47725. characterMakers.push(() => makeCharacter(
  47726. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47727. {
  47728. back: {
  47729. height: math.unit(15, "feet"),
  47730. name: "Back",
  47731. image: {
  47732. source: "./media/characters/nadezda-fex/back.svg",
  47733. extra: 1695/1481,
  47734. bottom: 25/1720
  47735. }
  47736. },
  47737. },
  47738. [
  47739. {
  47740. name: "Normal",
  47741. height: math.unit(15, "feet"),
  47742. default: true
  47743. },
  47744. {
  47745. name: "Macro",
  47746. height: math.unit(2.5, "miles")
  47747. },
  47748. {
  47749. name: "Goddess",
  47750. height: math.unit(2, "multiverses")
  47751. },
  47752. ]
  47753. ))
  47754. characterMakers.push(() => makeCharacter(
  47755. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47756. {
  47757. front: {
  47758. height: math.unit(216, "cm"),
  47759. name: "Front",
  47760. image: {
  47761. source: "./media/characters/lev/front.svg",
  47762. extra: 1728/1670,
  47763. bottom: 82/1810
  47764. }
  47765. },
  47766. back: {
  47767. height: math.unit(216, "cm"),
  47768. name: "Back",
  47769. image: {
  47770. source: "./media/characters/lev/back.svg",
  47771. extra: 1738/1675,
  47772. bottom: 24/1762
  47773. }
  47774. },
  47775. dressed: {
  47776. height: math.unit(216, "cm"),
  47777. name: "Dressed",
  47778. image: {
  47779. source: "./media/characters/lev/dressed.svg",
  47780. extra: 1397/1351,
  47781. bottom: 73/1470
  47782. }
  47783. },
  47784. head: {
  47785. height: math.unit(0.51, "meter"),
  47786. name: "Head",
  47787. image: {
  47788. source: "./media/characters/lev/head.svg"
  47789. }
  47790. },
  47791. },
  47792. [
  47793. {
  47794. name: "Normal",
  47795. height: math.unit(216, "cm"),
  47796. default: true
  47797. },
  47798. {
  47799. name: "Relatively Macro",
  47800. height: math.unit(80, "meters")
  47801. },
  47802. {
  47803. name: "Megamacro",
  47804. height: math.unit(21600, "meters")
  47805. },
  47806. {
  47807. name: "Megamacro+",
  47808. height: math.unit(64800, "meters")
  47809. },
  47810. ]
  47811. ))
  47812. characterMakers.push(() => makeCharacter(
  47813. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47814. {
  47815. front: {
  47816. height: math.unit(2, "meters"),
  47817. weight: math.unit(80, "kg"),
  47818. name: "Front",
  47819. image: {
  47820. source: "./media/characters/moka/front.svg",
  47821. extra: 1337/1255,
  47822. bottom: 58/1395
  47823. }
  47824. },
  47825. },
  47826. [
  47827. {
  47828. name: "Micro",
  47829. height: math.unit(15, "cm")
  47830. },
  47831. {
  47832. name: "Normal",
  47833. height: math.unit(2, "meters"),
  47834. default: true
  47835. },
  47836. {
  47837. name: "Macro",
  47838. height: math.unit(20, "meters"),
  47839. },
  47840. ]
  47841. ))
  47842. characterMakers.push(() => makeCharacter(
  47843. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47844. {
  47845. front: {
  47846. height: math.unit(9, "feet"),
  47847. weight: math.unit(240, "lb"),
  47848. name: "Front",
  47849. image: {
  47850. source: "./media/characters/kuzco/front.svg",
  47851. extra: 1593/1487,
  47852. bottom: 32/1625
  47853. }
  47854. },
  47855. side: {
  47856. height: math.unit(9, "feet"),
  47857. weight: math.unit(240, "lb"),
  47858. name: "Side",
  47859. image: {
  47860. source: "./media/characters/kuzco/side.svg",
  47861. extra: 1575/1485,
  47862. bottom: 30/1605
  47863. }
  47864. },
  47865. back: {
  47866. height: math.unit(9, "feet"),
  47867. weight: math.unit(240, "lb"),
  47868. name: "Back",
  47869. image: {
  47870. source: "./media/characters/kuzco/back.svg",
  47871. extra: 1603/1514,
  47872. bottom: 14/1617
  47873. }
  47874. },
  47875. },
  47876. [
  47877. {
  47878. name: "Normal",
  47879. height: math.unit(9, "feet"),
  47880. default: true
  47881. },
  47882. ]
  47883. ))
  47884. characterMakers.push(() => makeCharacter(
  47885. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47886. {
  47887. side: {
  47888. height: math.unit(2, "meters"),
  47889. weight: math.unit(300, "kg"),
  47890. name: "Side",
  47891. image: {
  47892. source: "./media/characters/ceruleus/side.svg",
  47893. extra: 1068/974,
  47894. bottom: 126/1194
  47895. }
  47896. },
  47897. maw: {
  47898. height: math.unit(0.8125, "meter"),
  47899. name: "Maw",
  47900. image: {
  47901. source: "./media/characters/ceruleus/maw.svg"
  47902. }
  47903. },
  47904. },
  47905. [
  47906. {
  47907. name: "Normal",
  47908. height: math.unit(16, "meters"),
  47909. default: true
  47910. },
  47911. ]
  47912. ))
  47913. characterMakers.push(() => makeCharacter(
  47914. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47915. {
  47916. front: {
  47917. height: math.unit(9, "feet"),
  47918. weight: math.unit(500, "kg"),
  47919. name: "Front",
  47920. image: {
  47921. source: "./media/characters/acouya/front.svg",
  47922. extra: 1660/1473,
  47923. bottom: 28/1688
  47924. }
  47925. },
  47926. },
  47927. [
  47928. {
  47929. name: "Normal",
  47930. height: math.unit(9, "feet"),
  47931. default: true
  47932. },
  47933. ]
  47934. ))
  47935. characterMakers.push(() => makeCharacter(
  47936. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47937. {
  47938. front: {
  47939. height: math.unit(5 + 6/12, "feet"),
  47940. weight: math.unit(195, "lb"),
  47941. name: "Front",
  47942. image: {
  47943. source: "./media/characters/vant/front.svg",
  47944. extra: 1396/1320,
  47945. bottom: 20/1416
  47946. }
  47947. },
  47948. back: {
  47949. height: math.unit(5 + 6/12, "feet"),
  47950. weight: math.unit(195, "lb"),
  47951. name: "Back",
  47952. image: {
  47953. source: "./media/characters/vant/back.svg",
  47954. extra: 1396/1320,
  47955. bottom: 20/1416
  47956. }
  47957. },
  47958. maw: {
  47959. height: math.unit(0.75, "feet"),
  47960. name: "Maw",
  47961. image: {
  47962. source: "./media/characters/vant/maw.svg"
  47963. }
  47964. },
  47965. paw: {
  47966. height: math.unit(1.07, "feet"),
  47967. name: "Paw",
  47968. image: {
  47969. source: "./media/characters/vant/paw.svg"
  47970. }
  47971. },
  47972. },
  47973. [
  47974. {
  47975. name: "Micro",
  47976. height: math.unit(0.25, "inches")
  47977. },
  47978. {
  47979. name: "Normal",
  47980. height: math.unit(5 + 6/12, "feet"),
  47981. default: true
  47982. },
  47983. {
  47984. name: "Macro",
  47985. height: math.unit(75, "feet")
  47986. },
  47987. ]
  47988. ))
  47989. characterMakers.push(() => makeCharacter(
  47990. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47991. {
  47992. front: {
  47993. height: math.unit(30, "meters"),
  47994. weight: math.unit(363, "tons"),
  47995. name: "Front",
  47996. image: {
  47997. source: "./media/characters/ahra/front.svg",
  47998. extra: 1914/1814,
  47999. bottom: 46/1960
  48000. }
  48001. },
  48002. },
  48003. [
  48004. {
  48005. name: "Macro",
  48006. height: math.unit(30, "meters"),
  48007. default: true
  48008. },
  48009. ]
  48010. ))
  48011. characterMakers.push(() => makeCharacter(
  48012. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  48013. {
  48014. undressed: {
  48015. height: math.unit(2, "m"),
  48016. weight: math.unit(250, "kg"),
  48017. name: "Undressed",
  48018. image: {
  48019. source: "./media/characters/coriander/undressed.svg",
  48020. extra: 1757/1606,
  48021. bottom: 107/1864
  48022. }
  48023. },
  48024. dressed: {
  48025. height: math.unit(2, "m"),
  48026. weight: math.unit(250, "kg"),
  48027. name: "Dressed",
  48028. image: {
  48029. source: "./media/characters/coriander/dressed.svg",
  48030. extra: 1757/1606,
  48031. bottom: 107/1864
  48032. }
  48033. },
  48034. },
  48035. [
  48036. {
  48037. name: "Normal",
  48038. height: math.unit(4, "meters"),
  48039. default: true
  48040. },
  48041. {
  48042. name: "XL",
  48043. height: math.unit(6, "meters")
  48044. },
  48045. {
  48046. name: "XXL",
  48047. height: math.unit(8, "meters")
  48048. },
  48049. ]
  48050. ))
  48051. characterMakers.push(() => makeCharacter(
  48052. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  48053. {
  48054. front: {
  48055. height: math.unit(6, "feet"),
  48056. name: "Front",
  48057. image: {
  48058. source: "./media/characters/syrinx/front.svg",
  48059. extra: 1557/1259,
  48060. bottom: 171/1728
  48061. }
  48062. },
  48063. },
  48064. [
  48065. {
  48066. name: "Normal",
  48067. height: math.unit(6 + 3/12, "feet"),
  48068. default: true
  48069. },
  48070. ]
  48071. ))
  48072. characterMakers.push(() => makeCharacter(
  48073. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  48074. {
  48075. front: {
  48076. height: math.unit(11 + 6/12, "feet"),
  48077. weight: math.unit(1.5, "tons"),
  48078. name: "Front",
  48079. image: {
  48080. source: "./media/characters/bor/front.svg",
  48081. extra: 1189/1109,
  48082. bottom: 170/1359
  48083. }
  48084. },
  48085. },
  48086. [
  48087. {
  48088. name: "Normal",
  48089. height: math.unit(11 + 6/12, "feet"),
  48090. default: true
  48091. },
  48092. {
  48093. name: "Macro",
  48094. height: math.unit(32 + 9/12, "feet")
  48095. },
  48096. ]
  48097. ))
  48098. characterMakers.push(() => makeCharacter(
  48099. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  48100. {
  48101. anthro: {
  48102. height: math.unit(9, "feet"),
  48103. weight: math.unit(2076, "lb"),
  48104. name: "Anthro",
  48105. image: {
  48106. source: "./media/characters/abacus/anthro.svg",
  48107. extra: 1540/1494,
  48108. bottom: 233/1773
  48109. }
  48110. },
  48111. pigeon: {
  48112. height: math.unit(1, "feet"),
  48113. name: "Pigeon",
  48114. image: {
  48115. source: "./media/characters/abacus/pigeon.svg",
  48116. extra: 528/525,
  48117. bottom: 46/574
  48118. }
  48119. },
  48120. },
  48121. [
  48122. {
  48123. name: "Normal",
  48124. height: math.unit(9, "feet"),
  48125. default: true
  48126. },
  48127. ]
  48128. ))
  48129. characterMakers.push(() => makeCharacter(
  48130. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  48131. {
  48132. side: {
  48133. height: math.unit(6, "feet"),
  48134. name: "Side",
  48135. image: {
  48136. source: "./media/characters/delkhan/side.svg",
  48137. extra: 1884/1786,
  48138. bottom: 308/2192
  48139. }
  48140. },
  48141. head: {
  48142. height: math.unit(3.38, "feet"),
  48143. name: "Head",
  48144. image: {
  48145. source: "./media/characters/delkhan/head.svg"
  48146. }
  48147. },
  48148. },
  48149. [
  48150. {
  48151. name: "Normal",
  48152. height: math.unit(72, "feet"),
  48153. default: true
  48154. },
  48155. {
  48156. name: "Giant",
  48157. height: math.unit(172, "feet")
  48158. },
  48159. ]
  48160. ))
  48161. characterMakers.push(() => makeCharacter(
  48162. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  48163. {
  48164. standing: {
  48165. height: math.unit(6, "feet"),
  48166. name: "Standing",
  48167. image: {
  48168. source: "./media/characters/euchidat/standing.svg",
  48169. extra: 1612/1553,
  48170. bottom: 116/1728
  48171. }
  48172. },
  48173. leaning: {
  48174. height: math.unit(6, "feet"),
  48175. name: "Leaning",
  48176. image: {
  48177. source: "./media/characters/euchidat/leaning.svg",
  48178. extra: 1719/1674,
  48179. bottom: 27/1746
  48180. }
  48181. },
  48182. },
  48183. [
  48184. {
  48185. name: "Normal",
  48186. height: math.unit(175, "feet"),
  48187. default: true
  48188. },
  48189. {
  48190. name: "Megamacro",
  48191. height: math.unit(190, "miles")
  48192. },
  48193. {
  48194. name: "Gigamacro",
  48195. height: math.unit(190000, "miles")
  48196. },
  48197. ]
  48198. ))
  48199. characterMakers.push(() => makeCharacter(
  48200. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  48201. {
  48202. front: {
  48203. height: math.unit(6, "feet"),
  48204. weight: math.unit(150, "lb"),
  48205. name: "Front",
  48206. image: {
  48207. source: "./media/characters/rebecca-stack/front.svg",
  48208. extra: 1256/1201,
  48209. bottom: 18/1274
  48210. }
  48211. },
  48212. },
  48213. [
  48214. {
  48215. name: "Normal",
  48216. height: math.unit(5 + 8/12, "feet"),
  48217. default: true
  48218. },
  48219. {
  48220. name: "Demolitionist",
  48221. height: math.unit(200, "feet")
  48222. },
  48223. {
  48224. name: "Out of Control",
  48225. height: math.unit(2, "miles")
  48226. },
  48227. {
  48228. name: "Giga",
  48229. height: math.unit(7200, "miles")
  48230. },
  48231. ]
  48232. ))
  48233. characterMakers.push(() => makeCharacter(
  48234. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  48235. {
  48236. front: {
  48237. height: math.unit(6, "feet"),
  48238. weight: math.unit(150, "lb"),
  48239. name: "Front",
  48240. image: {
  48241. source: "./media/characters/jenny-cartwright/front.svg",
  48242. extra: 1384/1376,
  48243. bottom: 58/1442
  48244. }
  48245. },
  48246. },
  48247. [
  48248. {
  48249. name: "Normal",
  48250. height: math.unit(6 + 7/12, "feet"),
  48251. default: true
  48252. },
  48253. {
  48254. name: "Librarian",
  48255. height: math.unit(55, "feet")
  48256. },
  48257. {
  48258. name: "Sightseer",
  48259. height: math.unit(50, "miles")
  48260. },
  48261. {
  48262. name: "Giga",
  48263. height: math.unit(30000, "miles")
  48264. },
  48265. ]
  48266. ))
  48267. characterMakers.push(() => makeCharacter(
  48268. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  48269. {
  48270. nude: {
  48271. height: math.unit(8, "feet"),
  48272. weight: math.unit(225, "lb"),
  48273. name: "Nude",
  48274. image: {
  48275. source: "./media/characters/marvy/nude.svg",
  48276. extra: 1900/1683,
  48277. bottom: 89/1989
  48278. }
  48279. },
  48280. dressed: {
  48281. height: math.unit(8, "feet"),
  48282. weight: math.unit(225, "lb"),
  48283. name: "Dressed",
  48284. image: {
  48285. source: "./media/characters/marvy/dressed.svg",
  48286. extra: 1900/1683,
  48287. bottom: 89/1989
  48288. }
  48289. },
  48290. head: {
  48291. height: math.unit(2.85, "feet"),
  48292. name: "Head",
  48293. image: {
  48294. source: "./media/characters/marvy/head.svg"
  48295. }
  48296. },
  48297. },
  48298. [
  48299. {
  48300. name: "Normal",
  48301. height: math.unit(8, "feet"),
  48302. default: true
  48303. },
  48304. ]
  48305. ))
  48306. characterMakers.push(() => makeCharacter(
  48307. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  48308. {
  48309. front: {
  48310. height: math.unit(8, "feet"),
  48311. weight: math.unit(250, "lb"),
  48312. name: "Front",
  48313. image: {
  48314. source: "./media/characters/leah/front.svg",
  48315. extra: 1257/1149,
  48316. bottom: 109/1366
  48317. }
  48318. },
  48319. },
  48320. [
  48321. {
  48322. name: "Normal",
  48323. height: math.unit(8, "feet"),
  48324. default: true
  48325. },
  48326. {
  48327. name: "Minimacro",
  48328. height: math.unit(40, "feet")
  48329. },
  48330. {
  48331. name: "Macro",
  48332. height: math.unit(124, "feet")
  48333. },
  48334. {
  48335. name: "Megamacro",
  48336. height: math.unit(850, "feet")
  48337. },
  48338. ]
  48339. ))
  48340. characterMakers.push(() => makeCharacter(
  48341. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  48342. {
  48343. side: {
  48344. height: math.unit(13 + 6/12, "feet"),
  48345. weight: math.unit(3200, "lb"),
  48346. name: "Side",
  48347. image: {
  48348. source: "./media/characters/alvir/side.svg",
  48349. extra: 896/589,
  48350. bottom: 26/922
  48351. }
  48352. },
  48353. },
  48354. [
  48355. {
  48356. name: "Normal",
  48357. height: math.unit(13 + 6/12, "feet"),
  48358. default: true
  48359. },
  48360. ]
  48361. ))
  48362. characterMakers.push(() => makeCharacter(
  48363. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  48364. {
  48365. front: {
  48366. height: math.unit(5 + 4/12, "feet"),
  48367. weight: math.unit(236, "lb"),
  48368. name: "Front",
  48369. image: {
  48370. source: "./media/characters/zaina-khalil/front.svg",
  48371. extra: 1533/1485,
  48372. bottom: 94/1627
  48373. }
  48374. },
  48375. side: {
  48376. height: math.unit(5 + 4/12, "feet"),
  48377. weight: math.unit(236, "lb"),
  48378. name: "Side",
  48379. image: {
  48380. source: "./media/characters/zaina-khalil/side.svg",
  48381. extra: 1537/1498,
  48382. bottom: 66/1603
  48383. }
  48384. },
  48385. back: {
  48386. height: math.unit(5 + 4/12, "feet"),
  48387. weight: math.unit(236, "lb"),
  48388. name: "Back",
  48389. image: {
  48390. source: "./media/characters/zaina-khalil/back.svg",
  48391. extra: 1546/1494,
  48392. bottom: 89/1635
  48393. }
  48394. },
  48395. },
  48396. [
  48397. {
  48398. name: "Normal",
  48399. height: math.unit(5 + 4/12, "feet"),
  48400. default: true
  48401. },
  48402. ]
  48403. ))
  48404. characterMakers.push(() => makeCharacter(
  48405. { name: "Terry", species: ["husky"], tags: ["taur"] },
  48406. {
  48407. side: {
  48408. height: math.unit(12, "feet"),
  48409. weight: math.unit(4000, "lb"),
  48410. name: "Side",
  48411. image: {
  48412. source: "./media/characters/terry/side.svg",
  48413. extra: 1518/1439,
  48414. bottom: 149/1667
  48415. }
  48416. },
  48417. },
  48418. [
  48419. {
  48420. name: "Normal",
  48421. height: math.unit(12, "feet"),
  48422. default: true
  48423. },
  48424. ]
  48425. ))
  48426. characterMakers.push(() => makeCharacter(
  48427. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  48428. {
  48429. front: {
  48430. height: math.unit(12, "feet"),
  48431. weight: math.unit(1500, "lb"),
  48432. name: "Front",
  48433. image: {
  48434. source: "./media/characters/kahea/front.svg",
  48435. extra: 1722/1617,
  48436. bottom: 179/1901
  48437. }
  48438. },
  48439. },
  48440. [
  48441. {
  48442. name: "Normal",
  48443. height: math.unit(12, "feet"),
  48444. default: true
  48445. },
  48446. ]
  48447. ))
  48448. characterMakers.push(() => makeCharacter(
  48449. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  48450. {
  48451. demonFront: {
  48452. height: math.unit(36, "feet"),
  48453. name: "Front",
  48454. image: {
  48455. source: "./media/characters/alex-xuria/demon-front.svg",
  48456. extra: 1705/1673,
  48457. bottom: 198/1903
  48458. },
  48459. form: "demon",
  48460. default: true
  48461. },
  48462. demonBack: {
  48463. height: math.unit(36, "feet"),
  48464. name: "Back",
  48465. image: {
  48466. source: "./media/characters/alex-xuria/demon-back.svg",
  48467. extra: 1725/1693,
  48468. bottom: 70/1795
  48469. },
  48470. form: "demon"
  48471. },
  48472. demonHead: {
  48473. height: math.unit(2.14, "meters"),
  48474. name: "Head",
  48475. image: {
  48476. source: "./media/characters/alex-xuria/demon-head.svg"
  48477. },
  48478. form: "demon"
  48479. },
  48480. demonHand: {
  48481. height: math.unit(1.61, "meters"),
  48482. name: "Hand",
  48483. image: {
  48484. source: "./media/characters/alex-xuria/demon-hand.svg"
  48485. },
  48486. form: "demon"
  48487. },
  48488. demonPaw: {
  48489. height: math.unit(1.35, "meters"),
  48490. name: "Paw",
  48491. image: {
  48492. source: "./media/characters/alex-xuria/demon-paw.svg"
  48493. },
  48494. form: "demon"
  48495. },
  48496. demonFoot: {
  48497. height: math.unit(2.2, "meters"),
  48498. name: "Foot",
  48499. image: {
  48500. source: "./media/characters/alex-xuria/demon-foot.svg"
  48501. },
  48502. form: "demon"
  48503. },
  48504. demonCock: {
  48505. height: math.unit(1.74, "meters"),
  48506. name: "Cock",
  48507. image: {
  48508. source: "./media/characters/alex-xuria/demon-cock.svg"
  48509. },
  48510. form: "demon"
  48511. },
  48512. demonTailClosed: {
  48513. height: math.unit(1.47, "meters"),
  48514. name: "Tail (Closed)",
  48515. image: {
  48516. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48517. },
  48518. form: "demon"
  48519. },
  48520. demonTailOpen: {
  48521. height: math.unit(2.85, "meters"),
  48522. name: "Tail (Open)",
  48523. image: {
  48524. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48525. },
  48526. form: "demon"
  48527. },
  48528. incubusFront: {
  48529. height: math.unit(12, "feet"),
  48530. name: "Front",
  48531. image: {
  48532. source: "./media/characters/alex-xuria/incubus-front.svg",
  48533. extra: 1754/1677,
  48534. bottom: 125/1879
  48535. },
  48536. form: "incubus",
  48537. default: true
  48538. },
  48539. incubusBack: {
  48540. height: math.unit(12, "feet"),
  48541. name: "Back",
  48542. image: {
  48543. source: "./media/characters/alex-xuria/incubus-back.svg",
  48544. extra: 1702/1647,
  48545. bottom: 30/1732
  48546. },
  48547. form: "incubus"
  48548. },
  48549. incubusHead: {
  48550. height: math.unit(3.45, "feet"),
  48551. name: "Head",
  48552. image: {
  48553. source: "./media/characters/alex-xuria/incubus-head.svg"
  48554. },
  48555. form: "incubus"
  48556. },
  48557. rabbitFront: {
  48558. height: math.unit(6, "feet"),
  48559. name: "Front",
  48560. image: {
  48561. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48562. extra: 1369/1349,
  48563. bottom: 45/1414
  48564. },
  48565. form: "rabbit",
  48566. default: true
  48567. },
  48568. rabbitSide: {
  48569. height: math.unit(6, "feet"),
  48570. name: "Side",
  48571. image: {
  48572. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48573. extra: 1370/1356,
  48574. bottom: 37/1407
  48575. },
  48576. form: "rabbit"
  48577. },
  48578. rabbitBack: {
  48579. height: math.unit(6, "feet"),
  48580. name: "Back",
  48581. image: {
  48582. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48583. extra: 1375/1358,
  48584. bottom: 43/1418
  48585. },
  48586. form: "rabbit"
  48587. },
  48588. },
  48589. [
  48590. {
  48591. name: "Normal",
  48592. height: math.unit(6, "feet"),
  48593. default: true,
  48594. form: "rabbit"
  48595. },
  48596. {
  48597. name: "Incubus",
  48598. height: math.unit(12, "feet"),
  48599. default: true,
  48600. form: "incubus"
  48601. },
  48602. {
  48603. name: "Demon",
  48604. height: math.unit(36, "feet"),
  48605. default: true,
  48606. form: "demon"
  48607. }
  48608. ],
  48609. {
  48610. "demon": {
  48611. name: "Demon",
  48612. default: true
  48613. },
  48614. "incubus": {
  48615. name: "Incubus",
  48616. },
  48617. "rabbit": {
  48618. name: "Rabbit"
  48619. }
  48620. }
  48621. ))
  48622. characterMakers.push(() => makeCharacter(
  48623. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48624. {
  48625. front: {
  48626. height: math.unit(7 + 5/12, "feet"),
  48627. weight: math.unit(510, "lb"),
  48628. name: "Front",
  48629. image: {
  48630. source: "./media/characters/syrup/front.svg",
  48631. extra: 932/916,
  48632. bottom: 26/958
  48633. }
  48634. },
  48635. },
  48636. [
  48637. {
  48638. name: "Normal",
  48639. height: math.unit(7 + 5/12, "feet"),
  48640. default: true
  48641. },
  48642. {
  48643. name: "Big",
  48644. height: math.unit(50, "feet")
  48645. },
  48646. {
  48647. name: "Macro",
  48648. height: math.unit(300, "feet")
  48649. },
  48650. {
  48651. name: "Megamacro",
  48652. height: math.unit(1, "mile")
  48653. },
  48654. ]
  48655. ))
  48656. characterMakers.push(() => makeCharacter(
  48657. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48658. {
  48659. front: {
  48660. height: math.unit(6 + 9/12, "feet"),
  48661. name: "Front",
  48662. image: {
  48663. source: "./media/characters/zeimne/front.svg",
  48664. extra: 1969/1806,
  48665. bottom: 53/2022
  48666. }
  48667. },
  48668. },
  48669. [
  48670. {
  48671. name: "Normal",
  48672. height: math.unit(6 + 9/12, "feet"),
  48673. default: true
  48674. },
  48675. {
  48676. name: "Giant",
  48677. height: math.unit(550, "feet")
  48678. },
  48679. {
  48680. name: "Mega",
  48681. height: math.unit(3, "miles")
  48682. },
  48683. {
  48684. name: "Giga",
  48685. height: math.unit(250, "miles")
  48686. },
  48687. {
  48688. name: "Tera",
  48689. height: math.unit(1, "AU")
  48690. },
  48691. ]
  48692. ))
  48693. characterMakers.push(() => makeCharacter(
  48694. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48695. {
  48696. front: {
  48697. height: math.unit(5 + 2/12, "feet"),
  48698. name: "Front",
  48699. image: {
  48700. source: "./media/characters/grar/front.svg",
  48701. extra: 1331/1119,
  48702. bottom: 60/1391
  48703. }
  48704. },
  48705. back: {
  48706. height: math.unit(5 + 2/12, "feet"),
  48707. name: "Back",
  48708. image: {
  48709. source: "./media/characters/grar/back.svg",
  48710. extra: 1385/1169,
  48711. bottom: 23/1408
  48712. }
  48713. },
  48714. },
  48715. [
  48716. {
  48717. name: "Normal",
  48718. height: math.unit(5 + 2/12, "feet"),
  48719. default: true
  48720. },
  48721. ]
  48722. ))
  48723. characterMakers.push(() => makeCharacter(
  48724. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48725. {
  48726. front: {
  48727. height: math.unit(13 + 7/12, "feet"),
  48728. weight: math.unit(2200, "lb"),
  48729. name: "Front",
  48730. image: {
  48731. source: "./media/characters/endraya/front.svg",
  48732. extra: 1289/1215,
  48733. bottom: 50/1339
  48734. }
  48735. },
  48736. nude: {
  48737. height: math.unit(13 + 7/12, "feet"),
  48738. weight: math.unit(2200, "lb"),
  48739. name: "Nude",
  48740. image: {
  48741. source: "./media/characters/endraya/nude.svg",
  48742. extra: 1247/1171,
  48743. bottom: 40/1287
  48744. }
  48745. },
  48746. head: {
  48747. height: math.unit(2.6, "feet"),
  48748. name: "Head",
  48749. image: {
  48750. source: "./media/characters/endraya/head.svg"
  48751. }
  48752. },
  48753. slit: {
  48754. height: math.unit(3.4, "feet"),
  48755. name: "Slit",
  48756. image: {
  48757. source: "./media/characters/endraya/slit.svg"
  48758. }
  48759. },
  48760. },
  48761. [
  48762. {
  48763. name: "Normal",
  48764. height: math.unit(13 + 7/12, "feet"),
  48765. default: true
  48766. },
  48767. {
  48768. name: "Macro",
  48769. height: math.unit(200, "feet")
  48770. },
  48771. ]
  48772. ))
  48773. characterMakers.push(() => makeCharacter(
  48774. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48775. {
  48776. front: {
  48777. height: math.unit(1.81, "meters"),
  48778. weight: math.unit(69, "kg"),
  48779. name: "Front",
  48780. image: {
  48781. source: "./media/characters/rodryana/front.svg",
  48782. extra: 2002/1921,
  48783. bottom: 53/2055
  48784. }
  48785. },
  48786. back: {
  48787. height: math.unit(1.81, "meters"),
  48788. weight: math.unit(69, "kg"),
  48789. name: "Back",
  48790. image: {
  48791. source: "./media/characters/rodryana/back.svg",
  48792. extra: 1993/1926,
  48793. bottom: 48/2041
  48794. }
  48795. },
  48796. maw: {
  48797. height: math.unit(0.19769417475, "meters"),
  48798. name: "Maw",
  48799. image: {
  48800. source: "./media/characters/rodryana/maw.svg"
  48801. }
  48802. },
  48803. slit: {
  48804. height: math.unit(0.31631067961, "meters"),
  48805. name: "Slit",
  48806. image: {
  48807. source: "./media/characters/rodryana/slit.svg"
  48808. }
  48809. },
  48810. },
  48811. [
  48812. {
  48813. name: "Normal",
  48814. height: math.unit(1.81, "meters")
  48815. },
  48816. {
  48817. name: "Mini Macro",
  48818. height: math.unit(181, "meters")
  48819. },
  48820. {
  48821. name: "Macro",
  48822. height: math.unit(452, "meters"),
  48823. default: true
  48824. },
  48825. {
  48826. name: "Mega Macro",
  48827. height: math.unit(1.375, "km")
  48828. },
  48829. {
  48830. name: "Giga Macro",
  48831. height: math.unit(13.575, "km")
  48832. },
  48833. ]
  48834. ))
  48835. characterMakers.push(() => makeCharacter(
  48836. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48837. {
  48838. front: {
  48839. height: math.unit(6, "feet"),
  48840. weight: math.unit(1000, "lb"),
  48841. name: "Front",
  48842. image: {
  48843. source: "./media/characters/asaya/front.svg",
  48844. extra: 1460/1200,
  48845. bottom: 71/1531
  48846. }
  48847. },
  48848. },
  48849. [
  48850. {
  48851. name: "Normal",
  48852. height: math.unit(8, "km"),
  48853. default: true
  48854. },
  48855. ]
  48856. ))
  48857. characterMakers.push(() => makeCharacter(
  48858. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48859. {
  48860. front: {
  48861. height: math.unit(3.5, "meters"),
  48862. name: "Front",
  48863. image: {
  48864. source: "./media/characters/sarzu-and-israz/front.svg",
  48865. extra: 1570/1558,
  48866. bottom: 150/1720
  48867. },
  48868. },
  48869. back: {
  48870. height: math.unit(3.5, "meters"),
  48871. name: "Back",
  48872. image: {
  48873. source: "./media/characters/sarzu-and-israz/back.svg",
  48874. extra: 1523/1509,
  48875. bottom: 132/1655
  48876. },
  48877. },
  48878. frontFemale: {
  48879. height: math.unit(3.5, "meters"),
  48880. name: "Front (Female)",
  48881. image: {
  48882. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48883. extra: 1570/1558,
  48884. bottom: 150/1720
  48885. },
  48886. },
  48887. frontHerm: {
  48888. height: math.unit(3.5, "meters"),
  48889. name: "Front (Herm)",
  48890. image: {
  48891. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48892. extra: 1570/1558,
  48893. bottom: 150/1720
  48894. },
  48895. },
  48896. },
  48897. [
  48898. {
  48899. name: "Normal",
  48900. height: math.unit(3.5, "meters"),
  48901. default: true,
  48902. },
  48903. {
  48904. name: "Macro",
  48905. height: math.unit(65.5, "meters"),
  48906. },
  48907. ],
  48908. ))
  48909. characterMakers.push(() => makeCharacter(
  48910. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48911. {
  48912. front: {
  48913. height: math.unit(6, "feet"),
  48914. weight: math.unit(250, "lb"),
  48915. name: "Front",
  48916. image: {
  48917. source: "./media/characters/zenimma/front.svg",
  48918. extra: 1346/1320,
  48919. bottom: 58/1404
  48920. }
  48921. },
  48922. back: {
  48923. height: math.unit(6, "feet"),
  48924. weight: math.unit(250, "lb"),
  48925. name: "Back",
  48926. image: {
  48927. source: "./media/characters/zenimma/back.svg",
  48928. extra: 1324/1308,
  48929. bottom: 44/1368
  48930. }
  48931. },
  48932. dick: {
  48933. height: math.unit(1.44, "feet"),
  48934. name: "Dick",
  48935. image: {
  48936. source: "./media/characters/zenimma/dick.svg"
  48937. }
  48938. },
  48939. },
  48940. [
  48941. {
  48942. name: "Canon Height",
  48943. height: math.unit(66, "miles"),
  48944. default: true
  48945. },
  48946. ]
  48947. ))
  48948. characterMakers.push(() => makeCharacter(
  48949. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48950. {
  48951. nude: {
  48952. height: math.unit(6, "feet"),
  48953. weight: math.unit(150, "lb"),
  48954. name: "Nude",
  48955. image: {
  48956. source: "./media/characters/shavon/nude.svg",
  48957. extra: 1242/1096,
  48958. bottom: 98/1340
  48959. }
  48960. },
  48961. dressed: {
  48962. height: math.unit(6, "feet"),
  48963. weight: math.unit(150, "lb"),
  48964. name: "Dressed",
  48965. image: {
  48966. source: "./media/characters/shavon/dressed.svg",
  48967. extra: 1242/1096,
  48968. bottom: 98/1340
  48969. }
  48970. },
  48971. },
  48972. [
  48973. {
  48974. name: "Macro",
  48975. height: math.unit(255, "feet"),
  48976. default: true
  48977. },
  48978. ]
  48979. ))
  48980. characterMakers.push(() => makeCharacter(
  48981. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48982. {
  48983. front: {
  48984. height: math.unit(6, "feet"),
  48985. name: "Front",
  48986. image: {
  48987. source: "./media/characters/steph/front.svg",
  48988. extra: 1430/1330,
  48989. bottom: 54/1484
  48990. }
  48991. },
  48992. },
  48993. [
  48994. {
  48995. name: "Normal",
  48996. height: math.unit(6, "feet"),
  48997. default: true
  48998. },
  48999. ]
  49000. ))
  49001. characterMakers.push(() => makeCharacter(
  49002. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  49003. {
  49004. front: {
  49005. height: math.unit(9, "feet"),
  49006. weight: math.unit(400, "lb"),
  49007. name: "Front",
  49008. image: {
  49009. source: "./media/characters/kil'aman/front.svg",
  49010. extra: 1210/1159,
  49011. bottom: 109/1319
  49012. }
  49013. },
  49014. head: {
  49015. height: math.unit(2.14, "feet"),
  49016. name: "Head",
  49017. image: {
  49018. source: "./media/characters/kil'aman/head.svg"
  49019. }
  49020. },
  49021. maw: {
  49022. height: math.unit(1.21, "feet"),
  49023. name: "Maw",
  49024. image: {
  49025. source: "./media/characters/kil'aman/maw.svg"
  49026. }
  49027. },
  49028. foot: {
  49029. height: math.unit(1.7, "feet"),
  49030. name: "Foot",
  49031. image: {
  49032. source: "./media/characters/kil'aman/foot.svg"
  49033. }
  49034. },
  49035. dick: {
  49036. height: math.unit(2.1, "feet"),
  49037. name: "Dick",
  49038. image: {
  49039. source: "./media/characters/kil'aman/dick.svg"
  49040. }
  49041. },
  49042. },
  49043. [
  49044. {
  49045. name: "Normal",
  49046. height: math.unit(9, "feet")
  49047. },
  49048. {
  49049. name: "Canon Height",
  49050. height: math.unit(10, "miles"),
  49051. default: true
  49052. },
  49053. {
  49054. name: "Maximum",
  49055. height: math.unit(6e9, "miles")
  49056. },
  49057. ]
  49058. ))
  49059. characterMakers.push(() => makeCharacter(
  49060. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  49061. {
  49062. front: {
  49063. height: math.unit(90, "feet"),
  49064. weight: math.unit(675000, "lb"),
  49065. name: "Front",
  49066. image: {
  49067. source: "./media/characters/qadan/front.svg",
  49068. extra: 1012/1004,
  49069. bottom: 78/1090
  49070. }
  49071. },
  49072. back: {
  49073. height: math.unit(90, "feet"),
  49074. weight: math.unit(675000, "lb"),
  49075. name: "Back",
  49076. image: {
  49077. source: "./media/characters/qadan/back.svg",
  49078. extra: 1042/1031,
  49079. bottom: 55/1097
  49080. }
  49081. },
  49082. armored: {
  49083. height: math.unit(90, "feet"),
  49084. weight: math.unit(675000, "lb"),
  49085. name: "Armored",
  49086. image: {
  49087. source: "./media/characters/qadan/armored.svg",
  49088. extra: 1047/1037,
  49089. bottom: 48/1095
  49090. }
  49091. },
  49092. },
  49093. [
  49094. {
  49095. name: "Normal",
  49096. height: math.unit(90, "feet"),
  49097. default: true
  49098. },
  49099. ]
  49100. ))
  49101. characterMakers.push(() => makeCharacter(
  49102. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  49103. {
  49104. front: {
  49105. height: math.unit(6, "feet"),
  49106. weight: math.unit(225, "lb"),
  49107. name: "Front",
  49108. image: {
  49109. source: "./media/characters/brooke/front.svg",
  49110. extra: 1050/1010,
  49111. bottom: 66/1116
  49112. }
  49113. },
  49114. back: {
  49115. height: math.unit(6, "feet"),
  49116. weight: math.unit(225, "lb"),
  49117. name: "Back",
  49118. image: {
  49119. source: "./media/characters/brooke/back.svg",
  49120. extra: 1053/1013,
  49121. bottom: 41/1094
  49122. }
  49123. },
  49124. dressed: {
  49125. height: math.unit(6, "feet"),
  49126. weight: math.unit(225, "lb"),
  49127. name: "Dressed",
  49128. image: {
  49129. source: "./media/characters/brooke/dressed.svg",
  49130. extra: 1050/1010,
  49131. bottom: 66/1116
  49132. }
  49133. },
  49134. },
  49135. [
  49136. {
  49137. name: "Canon Height",
  49138. height: math.unit(500, "miles"),
  49139. default: true
  49140. },
  49141. ]
  49142. ))
  49143. characterMakers.push(() => makeCharacter(
  49144. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  49145. {
  49146. front: {
  49147. height: math.unit(6 + 2/12, "feet"),
  49148. weight: math.unit(210, "lb"),
  49149. name: "Front",
  49150. image: {
  49151. source: "./media/characters/wubs/front.svg",
  49152. extra: 1345/1325,
  49153. bottom: 70/1415
  49154. }
  49155. },
  49156. back: {
  49157. height: math.unit(6 + 2/12, "feet"),
  49158. weight: math.unit(210, "lb"),
  49159. name: "Back",
  49160. image: {
  49161. source: "./media/characters/wubs/back.svg",
  49162. extra: 1296/1275,
  49163. bottom: 58/1354
  49164. }
  49165. },
  49166. },
  49167. [
  49168. {
  49169. name: "Normal",
  49170. height: math.unit(6 + 2/12, "feet"),
  49171. default: true
  49172. },
  49173. {
  49174. name: "Macro",
  49175. height: math.unit(1000, "feet")
  49176. },
  49177. {
  49178. name: "Megamacro",
  49179. height: math.unit(1, "mile")
  49180. },
  49181. ]
  49182. ))
  49183. characterMakers.push(() => makeCharacter(
  49184. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  49185. {
  49186. front: {
  49187. height: math.unit(4, "feet"),
  49188. weight: math.unit(120, "lb"),
  49189. name: "Front",
  49190. image: {
  49191. source: "./media/characters/blue/front.svg",
  49192. extra: 1636/1525,
  49193. bottom: 43/1679
  49194. }
  49195. },
  49196. back: {
  49197. height: math.unit(4, "feet"),
  49198. weight: math.unit(120, "lb"),
  49199. name: "Back",
  49200. image: {
  49201. source: "./media/characters/blue/back.svg",
  49202. extra: 1660/1560,
  49203. bottom: 57/1717
  49204. }
  49205. },
  49206. paws: {
  49207. height: math.unit(0.826, "feet"),
  49208. name: "Paws",
  49209. image: {
  49210. source: "./media/characters/blue/paws.svg"
  49211. }
  49212. },
  49213. },
  49214. [
  49215. {
  49216. name: "Micro",
  49217. height: math.unit(3, "inches")
  49218. },
  49219. {
  49220. name: "Normal",
  49221. height: math.unit(4, "feet"),
  49222. default: true
  49223. },
  49224. {
  49225. name: "Femenine Form",
  49226. height: math.unit(14, "feet")
  49227. },
  49228. {
  49229. name: "Werebat Form",
  49230. height: math.unit(18, "feet")
  49231. },
  49232. ]
  49233. ))
  49234. characterMakers.push(() => makeCharacter(
  49235. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  49236. {
  49237. female: {
  49238. height: math.unit(7 + 4/12, "feet"),
  49239. weight: math.unit(243, "lb"),
  49240. name: "Female",
  49241. image: {
  49242. source: "./media/characters/kaya/female.svg",
  49243. extra: 975/898,
  49244. bottom: 34/1009
  49245. }
  49246. },
  49247. herm: {
  49248. height: math.unit(7 + 4/12, "feet"),
  49249. weight: math.unit(243, "lb"),
  49250. name: "Herm",
  49251. image: {
  49252. source: "./media/characters/kaya/herm.svg",
  49253. extra: 975/898,
  49254. bottom: 34/1009
  49255. }
  49256. },
  49257. },
  49258. [
  49259. {
  49260. name: "Normal",
  49261. height: math.unit(7 + 4/12, "feet"),
  49262. default: true
  49263. },
  49264. ]
  49265. ))
  49266. characterMakers.push(() => makeCharacter(
  49267. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  49268. {
  49269. female: {
  49270. height: math.unit(9 + 4/12, "feet"),
  49271. weight: math.unit(398, "lb"),
  49272. name: "Female",
  49273. image: {
  49274. source: "./media/characters/kassandra/female.svg",
  49275. extra: 908/839,
  49276. bottom: 61/969
  49277. }
  49278. },
  49279. intersex: {
  49280. height: math.unit(9 + 4/12, "feet"),
  49281. weight: math.unit(398, "lb"),
  49282. name: "Intersex",
  49283. image: {
  49284. source: "./media/characters/kassandra/intersex.svg",
  49285. extra: 908/839,
  49286. bottom: 61/969
  49287. }
  49288. },
  49289. },
  49290. [
  49291. {
  49292. name: "Normal",
  49293. height: math.unit(9 + 4/12, "feet"),
  49294. default: true
  49295. },
  49296. ]
  49297. ))
  49298. characterMakers.push(() => makeCharacter(
  49299. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  49300. {
  49301. front: {
  49302. height: math.unit(3, "meters"),
  49303. name: "Front",
  49304. image: {
  49305. source: "./media/characters/amy/front.svg",
  49306. extra: 1380/1343,
  49307. bottom: 70/1450
  49308. }
  49309. },
  49310. back: {
  49311. height: math.unit(3, "meters"),
  49312. name: "Back",
  49313. image: {
  49314. source: "./media/characters/amy/back.svg",
  49315. extra: 1380/1347,
  49316. bottom: 66/1446
  49317. }
  49318. },
  49319. },
  49320. [
  49321. {
  49322. name: "Normal",
  49323. height: math.unit(3, "meters"),
  49324. default: true
  49325. },
  49326. ]
  49327. ))
  49328. characterMakers.push(() => makeCharacter(
  49329. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  49330. {
  49331. side: {
  49332. height: math.unit(47, "cm"),
  49333. weight: math.unit(10.8, "kg"),
  49334. name: "Side",
  49335. image: {
  49336. source: "./media/characters/alphaschakal/side.svg",
  49337. extra: 1058/568,
  49338. bottom: 62/1120
  49339. }
  49340. },
  49341. back: {
  49342. height: math.unit(78, "cm"),
  49343. weight: math.unit(10.8, "kg"),
  49344. name: "Back",
  49345. image: {
  49346. source: "./media/characters/alphaschakal/back.svg",
  49347. extra: 1102/942,
  49348. bottom: 185/1287
  49349. }
  49350. },
  49351. head: {
  49352. height: math.unit(28, "cm"),
  49353. name: "Head",
  49354. image: {
  49355. source: "./media/characters/alphaschakal/head.svg",
  49356. extra: 696/508,
  49357. bottom: 0/696
  49358. }
  49359. },
  49360. paw: {
  49361. height: math.unit(16, "cm"),
  49362. name: "Paw",
  49363. image: {
  49364. source: "./media/characters/alphaschakal/paw.svg"
  49365. }
  49366. },
  49367. },
  49368. [
  49369. {
  49370. name: "Normal",
  49371. height: math.unit(47, "cm"),
  49372. default: true
  49373. },
  49374. {
  49375. name: "Macro",
  49376. height: math.unit(340, "cm")
  49377. },
  49378. ]
  49379. ))
  49380. characterMakers.push(() => makeCharacter(
  49381. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  49382. {
  49383. front: {
  49384. height: math.unit(36, "earths"),
  49385. name: "Front",
  49386. image: {
  49387. source: "./media/characters/ecobyss/front.svg",
  49388. extra: 1282/1215,
  49389. bottom: 11/1293
  49390. }
  49391. },
  49392. back: {
  49393. height: math.unit(36, "earths"),
  49394. name: "Back",
  49395. image: {
  49396. source: "./media/characters/ecobyss/back.svg",
  49397. extra: 1291/1222,
  49398. bottom: 8/1299
  49399. }
  49400. },
  49401. },
  49402. [
  49403. {
  49404. name: "Normal",
  49405. height: math.unit(36, "earths"),
  49406. default: true
  49407. },
  49408. ]
  49409. ))
  49410. characterMakers.push(() => makeCharacter(
  49411. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  49412. {
  49413. front: {
  49414. height: math.unit(12, "feet"),
  49415. name: "Front",
  49416. image: {
  49417. source: "./media/characters/vasuk/front.svg",
  49418. extra: 1326/1207,
  49419. bottom: 64/1390
  49420. }
  49421. },
  49422. },
  49423. [
  49424. {
  49425. name: "Normal",
  49426. height: math.unit(12, "feet"),
  49427. default: true
  49428. },
  49429. ]
  49430. ))
  49431. characterMakers.push(() => makeCharacter(
  49432. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  49433. {
  49434. side: {
  49435. height: math.unit(100, "feet"),
  49436. name: "Side",
  49437. image: {
  49438. source: "./media/characters/linneaus/side.svg",
  49439. extra: 987/807,
  49440. bottom: 47/1034
  49441. }
  49442. },
  49443. },
  49444. [
  49445. {
  49446. name: "Macro",
  49447. height: math.unit(100, "feet"),
  49448. default: true
  49449. },
  49450. ]
  49451. ))
  49452. characterMakers.push(() => makeCharacter(
  49453. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  49454. {
  49455. front: {
  49456. height: math.unit(8, "feet"),
  49457. weight: math.unit(1200, "lb"),
  49458. name: "Front",
  49459. image: {
  49460. source: "./media/characters/nyterious-daligdig/front.svg",
  49461. extra: 1284/1094,
  49462. bottom: 84/1368
  49463. }
  49464. },
  49465. back: {
  49466. height: math.unit(8, "feet"),
  49467. weight: math.unit(1200, "lb"),
  49468. name: "Back",
  49469. image: {
  49470. source: "./media/characters/nyterious-daligdig/back.svg",
  49471. extra: 1301/1121,
  49472. bottom: 129/1430
  49473. }
  49474. },
  49475. mouth: {
  49476. height: math.unit(1.464, "feet"),
  49477. name: "Mouth",
  49478. image: {
  49479. source: "./media/characters/nyterious-daligdig/mouth.svg"
  49480. }
  49481. },
  49482. },
  49483. [
  49484. {
  49485. name: "Small",
  49486. height: math.unit(8, "feet"),
  49487. default: true
  49488. },
  49489. {
  49490. name: "Normal",
  49491. height: math.unit(15, "feet")
  49492. },
  49493. {
  49494. name: "Macro",
  49495. height: math.unit(90, "feet")
  49496. },
  49497. ]
  49498. ))
  49499. characterMakers.push(() => makeCharacter(
  49500. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  49501. {
  49502. front: {
  49503. height: math.unit(7 + 4/12, "feet"),
  49504. weight: math.unit(252, "lb"),
  49505. name: "Front",
  49506. image: {
  49507. source: "./media/characters/bandel/front.svg",
  49508. extra: 1946/1775,
  49509. bottom: 26/1972
  49510. }
  49511. },
  49512. back: {
  49513. height: math.unit(7 + 4/12, "feet"),
  49514. weight: math.unit(252, "lb"),
  49515. name: "Back",
  49516. image: {
  49517. source: "./media/characters/bandel/back.svg",
  49518. extra: 1940/1770,
  49519. bottom: 25/1965
  49520. }
  49521. },
  49522. maw: {
  49523. height: math.unit(2.15, "feet"),
  49524. name: "Maw",
  49525. image: {
  49526. source: "./media/characters/bandel/maw.svg"
  49527. }
  49528. },
  49529. stomach: {
  49530. height: math.unit(1.95, "feet"),
  49531. name: "Stomach",
  49532. image: {
  49533. source: "./media/characters/bandel/stomach.svg"
  49534. }
  49535. },
  49536. },
  49537. [
  49538. {
  49539. name: "Normal",
  49540. height: math.unit(7 + 4/12, "feet"),
  49541. default: true
  49542. },
  49543. ]
  49544. ))
  49545. characterMakers.push(() => makeCharacter(
  49546. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49547. {
  49548. front: {
  49549. height: math.unit(10 + 5/12, "feet"),
  49550. weight: math.unit(773.5, "kg"),
  49551. name: "Front",
  49552. image: {
  49553. source: "./media/characters/zed/front.svg",
  49554. extra: 987/941,
  49555. bottom: 52/1039
  49556. }
  49557. },
  49558. },
  49559. [
  49560. {
  49561. name: "Short",
  49562. height: math.unit(5 + 4/12, "feet")
  49563. },
  49564. {
  49565. name: "Average",
  49566. height: math.unit(10 + 5/12, "feet"),
  49567. default: true
  49568. },
  49569. {
  49570. name: "Mini-Macro",
  49571. height: math.unit(24 + 9/12, "feet")
  49572. },
  49573. {
  49574. name: "Macro",
  49575. height: math.unit(249, "feet")
  49576. },
  49577. {
  49578. name: "Mega-Macro",
  49579. height: math.unit(12490, "feet")
  49580. },
  49581. {
  49582. name: "Giga-Macro",
  49583. height: math.unit(24.9, "miles")
  49584. },
  49585. {
  49586. name: "Tera-Macro",
  49587. height: math.unit(24900, "miles")
  49588. },
  49589. {
  49590. name: "Cosmic Scale",
  49591. height: math.unit(38.9, "lightyears")
  49592. },
  49593. {
  49594. name: "Universal Scale",
  49595. height: math.unit(138e12, "lightyears")
  49596. },
  49597. ]
  49598. ))
  49599. characterMakers.push(() => makeCharacter(
  49600. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49601. {
  49602. front: {
  49603. height: math.unit(1561, "inches"),
  49604. name: "Front",
  49605. image: {
  49606. source: "./media/characters/ivan/front.svg",
  49607. extra: 1126/1071,
  49608. bottom: 26/1152
  49609. }
  49610. },
  49611. back: {
  49612. height: math.unit(1561, "inches"),
  49613. name: "Back",
  49614. image: {
  49615. source: "./media/characters/ivan/back.svg",
  49616. extra: 1134/1079,
  49617. bottom: 30/1164
  49618. }
  49619. },
  49620. },
  49621. [
  49622. {
  49623. name: "Normal",
  49624. height: math.unit(1561, "inches"),
  49625. default: true
  49626. },
  49627. ]
  49628. ))
  49629. characterMakers.push(() => makeCharacter(
  49630. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49631. {
  49632. front: {
  49633. height: math.unit(5 + 7/12, "feet"),
  49634. weight: math.unit(150, "lb"),
  49635. name: "Front",
  49636. image: {
  49637. source: "./media/characters/robin-arctic-hare/front.svg",
  49638. extra: 1148/974,
  49639. bottom: 20/1168
  49640. }
  49641. },
  49642. },
  49643. [
  49644. {
  49645. name: "Normal",
  49646. height: math.unit(5 + 7/12, "feet"),
  49647. default: true
  49648. },
  49649. ]
  49650. ))
  49651. characterMakers.push(() => makeCharacter(
  49652. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49653. {
  49654. side: {
  49655. height: math.unit(5, "feet"),
  49656. name: "Side",
  49657. image: {
  49658. source: "./media/characters/birch/side.svg",
  49659. extra: 985/796,
  49660. bottom: 111/1096
  49661. }
  49662. },
  49663. },
  49664. [
  49665. {
  49666. name: "Normal",
  49667. height: math.unit(5, "feet"),
  49668. default: true
  49669. },
  49670. ]
  49671. ))
  49672. characterMakers.push(() => makeCharacter(
  49673. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49674. {
  49675. front: {
  49676. height: math.unit(4, "feet"),
  49677. name: "Front",
  49678. image: {
  49679. source: "./media/characters/rasp/front.svg",
  49680. extra: 561/478,
  49681. bottom: 74/635
  49682. }
  49683. },
  49684. },
  49685. [
  49686. {
  49687. name: "Normal",
  49688. height: math.unit(4, "feet"),
  49689. default: true
  49690. },
  49691. ]
  49692. ))
  49693. characterMakers.push(() => makeCharacter(
  49694. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49695. {
  49696. front: {
  49697. height: math.unit(4 + 6/12, "feet"),
  49698. name: "Front",
  49699. image: {
  49700. source: "./media/characters/agatha/front.svg",
  49701. extra: 947/933,
  49702. bottom: 42/989
  49703. }
  49704. },
  49705. back: {
  49706. height: math.unit(4 + 6/12, "feet"),
  49707. name: "Back",
  49708. image: {
  49709. source: "./media/characters/agatha/back.svg",
  49710. extra: 935/922,
  49711. bottom: 48/983
  49712. }
  49713. },
  49714. },
  49715. [
  49716. {
  49717. name: "Normal",
  49718. height: math.unit(4 + 6 /12, "feet"),
  49719. default: true
  49720. },
  49721. {
  49722. name: "Max Size",
  49723. height: math.unit(500, "feet")
  49724. },
  49725. ]
  49726. ))
  49727. characterMakers.push(() => makeCharacter(
  49728. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49729. {
  49730. side: {
  49731. height: math.unit(30, "feet"),
  49732. name: "Side",
  49733. image: {
  49734. source: "./media/characters/roggy/side.svg",
  49735. extra: 909/643,
  49736. bottom: 63/972
  49737. }
  49738. },
  49739. lounging: {
  49740. height: math.unit(20, "feet"),
  49741. name: "Lounging",
  49742. image: {
  49743. source: "./media/characters/roggy/lounging.svg",
  49744. extra: 643/479,
  49745. bottom: 145/788
  49746. }
  49747. },
  49748. handpaw: {
  49749. height: math.unit(13.1, "feet"),
  49750. name: "Handpaw",
  49751. image: {
  49752. source: "./media/characters/roggy/handpaw.svg"
  49753. }
  49754. },
  49755. footpaw: {
  49756. height: math.unit(15.8, "feet"),
  49757. name: "Footpaw",
  49758. image: {
  49759. source: "./media/characters/roggy/footpaw.svg"
  49760. }
  49761. },
  49762. },
  49763. [
  49764. {
  49765. name: "Menacing",
  49766. height: math.unit(30, "feet"),
  49767. default: true
  49768. },
  49769. ]
  49770. ))
  49771. characterMakers.push(() => makeCharacter(
  49772. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49773. {
  49774. front: {
  49775. height: math.unit(5 + 7/12, "feet"),
  49776. weight: math.unit(135, "lb"),
  49777. name: "Front",
  49778. image: {
  49779. source: "./media/characters/naomi/front.svg",
  49780. extra: 1209/1154,
  49781. bottom: 129/1338
  49782. }
  49783. },
  49784. back: {
  49785. height: math.unit(5 + 7/12, "feet"),
  49786. weight: math.unit(135, "lb"),
  49787. name: "Back",
  49788. image: {
  49789. source: "./media/characters/naomi/back.svg",
  49790. extra: 1252/1190,
  49791. bottom: 23/1275
  49792. }
  49793. },
  49794. },
  49795. [
  49796. {
  49797. name: "Normal",
  49798. height: math.unit(5 + 7 /12, "feet"),
  49799. default: true
  49800. },
  49801. ]
  49802. ))
  49803. characterMakers.push(() => makeCharacter(
  49804. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49805. {
  49806. side: {
  49807. height: math.unit(35, "meters"),
  49808. name: "Side",
  49809. image: {
  49810. source: "./media/characters/kimpi/side.svg",
  49811. extra: 419/382,
  49812. bottom: 63/482
  49813. }
  49814. },
  49815. hand: {
  49816. height: math.unit(8.96, "meters"),
  49817. name: "Hand",
  49818. image: {
  49819. source: "./media/characters/kimpi/hand.svg"
  49820. }
  49821. },
  49822. },
  49823. [
  49824. {
  49825. name: "Normal",
  49826. height: math.unit(35, "meters"),
  49827. default: true
  49828. },
  49829. ]
  49830. ))
  49831. characterMakers.push(() => makeCharacter(
  49832. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49833. {
  49834. front: {
  49835. height: math.unit(4 + 4/12, "feet"),
  49836. name: "Front",
  49837. image: {
  49838. source: "./media/characters/pepper-purrloin/front.svg",
  49839. extra: 1141/1024,
  49840. bottom: 21/1162
  49841. }
  49842. },
  49843. },
  49844. [
  49845. {
  49846. name: "Normal",
  49847. height: math.unit(4 + 4/12, "feet"),
  49848. default: true
  49849. },
  49850. ]
  49851. ))
  49852. characterMakers.push(() => makeCharacter(
  49853. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49854. {
  49855. front: {
  49856. height: math.unit(6 + 2/12, "feet"),
  49857. name: "Front",
  49858. image: {
  49859. source: "./media/characters/raphael/front.svg",
  49860. extra: 1101/962,
  49861. bottom: 59/1160
  49862. }
  49863. },
  49864. },
  49865. [
  49866. {
  49867. name: "Normal",
  49868. height: math.unit(6 + 2/12, "feet"),
  49869. default: true
  49870. },
  49871. ]
  49872. ))
  49873. characterMakers.push(() => makeCharacter(
  49874. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49875. {
  49876. front: {
  49877. height: math.unit(6, "feet"),
  49878. weight: math.unit(150, "lb"),
  49879. name: "Front",
  49880. image: {
  49881. source: "./media/characters/victor-williams/front.svg",
  49882. extra: 1894/1825,
  49883. bottom: 67/1961
  49884. }
  49885. },
  49886. },
  49887. [
  49888. {
  49889. name: "Normal",
  49890. height: math.unit(6, "feet"),
  49891. default: true
  49892. },
  49893. ]
  49894. ))
  49895. characterMakers.push(() => makeCharacter(
  49896. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49897. {
  49898. front: {
  49899. height: math.unit(5 + 8/12, "feet"),
  49900. weight: math.unit(150, "lb"),
  49901. name: "Front",
  49902. image: {
  49903. source: "./media/characters/rachel/front.svg",
  49904. extra: 1902/1787,
  49905. bottom: 46/1948
  49906. }
  49907. },
  49908. },
  49909. [
  49910. {
  49911. name: "Base Height",
  49912. height: math.unit(5 + 8/12, "feet"),
  49913. default: true
  49914. },
  49915. {
  49916. name: "Macro",
  49917. height: math.unit(200, "feet")
  49918. },
  49919. {
  49920. name: "Mega Macro",
  49921. height: math.unit(1, "mile")
  49922. },
  49923. {
  49924. name: "Giga Macro",
  49925. height: math.unit(1500, "miles")
  49926. },
  49927. {
  49928. name: "Tera Macro",
  49929. height: math.unit(8000, "miles")
  49930. },
  49931. {
  49932. name: "Tera Macro+",
  49933. height: math.unit(2e5, "miles")
  49934. },
  49935. ]
  49936. ))
  49937. characterMakers.push(() => makeCharacter(
  49938. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49939. {
  49940. front: {
  49941. height: math.unit(6.5, "feet"),
  49942. name: "Front",
  49943. image: {
  49944. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49945. extra: 860/819,
  49946. bottom: 307/1167
  49947. }
  49948. },
  49949. back: {
  49950. height: math.unit(6.5, "feet"),
  49951. name: "Back",
  49952. image: {
  49953. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49954. extra: 880/837,
  49955. bottom: 395/1275
  49956. }
  49957. },
  49958. sleeping: {
  49959. height: math.unit(2.79, "feet"),
  49960. name: "Sleeping",
  49961. image: {
  49962. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49963. extra: 465/383,
  49964. bottom: 263/728
  49965. }
  49966. },
  49967. maw: {
  49968. height: math.unit(2.52, "feet"),
  49969. name: "Maw",
  49970. image: {
  49971. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49972. }
  49973. },
  49974. },
  49975. [
  49976. {
  49977. name: "Normal",
  49978. height: math.unit(6.5, "feet"),
  49979. default: true
  49980. },
  49981. ]
  49982. ))
  49983. characterMakers.push(() => makeCharacter(
  49984. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49985. {
  49986. front: {
  49987. height: math.unit(5, "feet"),
  49988. name: "Front",
  49989. image: {
  49990. source: "./media/characters/nova-nerium/front.svg",
  49991. extra: 1548/1392,
  49992. bottom: 374/1922
  49993. }
  49994. },
  49995. back: {
  49996. height: math.unit(5, "feet"),
  49997. name: "Back",
  49998. image: {
  49999. source: "./media/characters/nova-nerium/back.svg",
  50000. extra: 1658/1468,
  50001. bottom: 257/1915
  50002. }
  50003. },
  50004. },
  50005. [
  50006. {
  50007. name: "Normal",
  50008. height: math.unit(5, "feet"),
  50009. default: true
  50010. },
  50011. ]
  50012. ))
  50013. characterMakers.push(() => makeCharacter(
  50014. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  50015. {
  50016. front: {
  50017. height: math.unit(5 + 4/12, "feet"),
  50018. name: "Front",
  50019. image: {
  50020. source: "./media/characters/ashe-pyriph/front.svg",
  50021. extra: 1935/1747,
  50022. bottom: 60/1995
  50023. }
  50024. },
  50025. },
  50026. [
  50027. {
  50028. name: "Normal",
  50029. height: math.unit(5 + 4/12, "feet"),
  50030. default: true
  50031. },
  50032. ]
  50033. ))
  50034. characterMakers.push(() => makeCharacter(
  50035. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  50036. {
  50037. front: {
  50038. height: math.unit(8.7, "feet"),
  50039. name: "Front",
  50040. image: {
  50041. source: "./media/characters/flicker-wisp/front.svg",
  50042. extra: 1835/1613,
  50043. bottom: 449/2284
  50044. }
  50045. },
  50046. side: {
  50047. height: math.unit(8.7, "feet"),
  50048. name: "Side",
  50049. image: {
  50050. source: "./media/characters/flicker-wisp/side.svg",
  50051. extra: 1841/1642,
  50052. bottom: 336/2177
  50053. },
  50054. default: true
  50055. },
  50056. maw: {
  50057. height: math.unit(3.35, "feet"),
  50058. name: "Maw",
  50059. image: {
  50060. source: "./media/characters/flicker-wisp/maw.svg",
  50061. extra: 2338/1506,
  50062. bottom: 0/2338
  50063. }
  50064. },
  50065. ovipositor: {
  50066. height: math.unit(4.95, "feet"),
  50067. name: "Ovipositor",
  50068. image: {
  50069. source: "./media/characters/flicker-wisp/ovipositor.svg"
  50070. }
  50071. },
  50072. egg: {
  50073. height: math.unit(0.385, "feet"),
  50074. weight: math.unit(2, "lb"),
  50075. name: "Egg",
  50076. image: {
  50077. source: "./media/characters/flicker-wisp/egg.svg"
  50078. }
  50079. },
  50080. },
  50081. [
  50082. {
  50083. name: "Normal",
  50084. height: math.unit(8.7, "feet"),
  50085. default: true
  50086. },
  50087. ]
  50088. ))
  50089. characterMakers.push(() => makeCharacter(
  50090. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  50091. {
  50092. side: {
  50093. height: math.unit(11, "feet"),
  50094. name: "Side",
  50095. image: {
  50096. source: "./media/characters/faefnul/side.svg",
  50097. extra: 1100/1007,
  50098. bottom: 0/1100
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Normal",
  50105. height: math.unit(11, "feet"),
  50106. default: true
  50107. },
  50108. ]
  50109. ))
  50110. characterMakers.push(() => makeCharacter(
  50111. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  50112. {
  50113. front: {
  50114. height: math.unit(6 + 2/12, "feet"),
  50115. name: "Front",
  50116. image: {
  50117. source: "./media/characters/shady/front.svg",
  50118. extra: 502/461,
  50119. bottom: 9/511
  50120. }
  50121. },
  50122. kneeling: {
  50123. height: math.unit(4.6, "feet"),
  50124. name: "Kneeling",
  50125. image: {
  50126. source: "./media/characters/shady/kneeling.svg",
  50127. extra: 1328/1219,
  50128. bottom: 117/1445
  50129. }
  50130. },
  50131. maw: {
  50132. height: math.unit(2, "feet"),
  50133. name: "Maw",
  50134. image: {
  50135. source: "./media/characters/shady/maw.svg"
  50136. }
  50137. },
  50138. },
  50139. [
  50140. {
  50141. name: "Nano",
  50142. height: math.unit(1, "mm")
  50143. },
  50144. {
  50145. name: "Micro",
  50146. height: math.unit(12, "mm")
  50147. },
  50148. {
  50149. name: "Tiny",
  50150. height: math.unit(3, "inches")
  50151. },
  50152. {
  50153. name: "Normal",
  50154. height: math.unit(6 + 2/12, "feet"),
  50155. default: true
  50156. },
  50157. {
  50158. name: "Big",
  50159. height: math.unit(15, "feet")
  50160. },
  50161. {
  50162. name: "Macro",
  50163. height: math.unit(150, "feet")
  50164. },
  50165. {
  50166. name: "Titanic",
  50167. height: math.unit(500, "feet")
  50168. },
  50169. ]
  50170. ))
  50171. characterMakers.push(() => makeCharacter(
  50172. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  50173. {
  50174. front: {
  50175. height: math.unit(12, "feet"),
  50176. name: "Front",
  50177. image: {
  50178. source: "./media/characters/fenrir/front.svg",
  50179. extra: 968/875,
  50180. bottom: 22/990
  50181. }
  50182. },
  50183. },
  50184. [
  50185. {
  50186. name: "Big",
  50187. height: math.unit(12, "feet"),
  50188. default: true
  50189. },
  50190. ]
  50191. ))
  50192. characterMakers.push(() => makeCharacter(
  50193. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  50194. {
  50195. front: {
  50196. height: math.unit(5 + 4/12, "feet"),
  50197. name: "Front",
  50198. image: {
  50199. source: "./media/characters/makar/front.svg",
  50200. extra: 1181/1112,
  50201. bottom: 78/1259
  50202. }
  50203. },
  50204. },
  50205. [
  50206. {
  50207. name: "Normal",
  50208. height: math.unit(5 + 4/12, "feet"),
  50209. default: true
  50210. },
  50211. ]
  50212. ))
  50213. characterMakers.push(() => makeCharacter(
  50214. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  50215. {
  50216. front: {
  50217. height: math.unit(5 + 7/12, "feet"),
  50218. name: "Front",
  50219. image: {
  50220. source: "./media/characters/callow/front.svg",
  50221. extra: 1482/1304,
  50222. bottom: 23/1505
  50223. }
  50224. },
  50225. back: {
  50226. height: math.unit(5 + 7/12, "feet"),
  50227. name: "Back",
  50228. image: {
  50229. source: "./media/characters/callow/back.svg",
  50230. extra: 1484/1296,
  50231. bottom: 25/1509
  50232. }
  50233. },
  50234. },
  50235. [
  50236. {
  50237. name: "Micro",
  50238. height: math.unit(3, "inches"),
  50239. default: true
  50240. },
  50241. {
  50242. name: "Normal",
  50243. height: math.unit(5 + 7/12, "feet")
  50244. },
  50245. ]
  50246. ))
  50247. characterMakers.push(() => makeCharacter(
  50248. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  50249. {
  50250. front: {
  50251. height: math.unit(6 + 2/12, "feet"),
  50252. name: "Front",
  50253. image: {
  50254. source: "./media/characters/natel/front.svg",
  50255. extra: 1833/1692,
  50256. bottom: 166/1999
  50257. }
  50258. },
  50259. },
  50260. [
  50261. {
  50262. name: "Normal",
  50263. height: math.unit(6 + 2/12, "feet"),
  50264. default: true
  50265. },
  50266. ]
  50267. ))
  50268. characterMakers.push(() => makeCharacter(
  50269. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  50270. {
  50271. front: {
  50272. height: math.unit(1.75, "meters"),
  50273. name: "Front",
  50274. image: {
  50275. source: "./media/characters/misu/front.svg",
  50276. extra: 1690/1558,
  50277. bottom: 234/1924
  50278. }
  50279. },
  50280. back: {
  50281. height: math.unit(1.75, "meters"),
  50282. name: "Back",
  50283. image: {
  50284. source: "./media/characters/misu/back.svg",
  50285. extra: 1762/1618,
  50286. bottom: 146/1908
  50287. }
  50288. },
  50289. frontNude: {
  50290. height: math.unit(1.75, "meters"),
  50291. name: "Front (Nude)",
  50292. image: {
  50293. source: "./media/characters/misu/front-nude.svg",
  50294. extra: 1690/1558,
  50295. bottom: 234/1924
  50296. }
  50297. },
  50298. backNude: {
  50299. height: math.unit(1.75, "meters"),
  50300. name: "Back (Nude)",
  50301. image: {
  50302. source: "./media/characters/misu/back-nude.svg",
  50303. extra: 1762/1618,
  50304. bottom: 146/1908
  50305. }
  50306. },
  50307. frontErect: {
  50308. height: math.unit(1.75, "meters"),
  50309. name: "Front (Erect)",
  50310. image: {
  50311. source: "./media/characters/misu/front-erect.svg",
  50312. extra: 1690/1558,
  50313. bottom: 234/1924
  50314. }
  50315. },
  50316. maw: {
  50317. height: math.unit(0.47, "meters"),
  50318. name: "Maw",
  50319. image: {
  50320. source: "./media/characters/misu/maw.svg"
  50321. }
  50322. },
  50323. head: {
  50324. height: math.unit(0.35, "meters"),
  50325. name: "Head",
  50326. image: {
  50327. source: "./media/characters/misu/head.svg"
  50328. }
  50329. },
  50330. rear: {
  50331. height: math.unit(0.47, "meters"),
  50332. name: "Rear",
  50333. image: {
  50334. source: "./media/characters/misu/rear.svg"
  50335. }
  50336. },
  50337. },
  50338. [
  50339. {
  50340. name: "Normal",
  50341. height: math.unit(1.75, "meters")
  50342. },
  50343. {
  50344. name: "Not good for the people",
  50345. height: math.unit(42, "meters")
  50346. },
  50347. {
  50348. name: "Not good for the neighborhood",
  50349. height: math.unit(135, "meters")
  50350. },
  50351. {
  50352. name: "Bit bigger problem",
  50353. height: math.unit(380, "meters"),
  50354. default: true
  50355. },
  50356. {
  50357. name: "Not good for the city",
  50358. height: math.unit(1.5, "km")
  50359. },
  50360. {
  50361. name: "Not good for the county",
  50362. height: math.unit(5.5, "km")
  50363. },
  50364. {
  50365. name: "Not good for the state",
  50366. height: math.unit(25, "km")
  50367. },
  50368. {
  50369. name: "Not good for the country",
  50370. height: math.unit(125, "km")
  50371. },
  50372. {
  50373. name: "Not good for the continent",
  50374. height: math.unit(2100, "km")
  50375. },
  50376. {
  50377. name: "Not good for the planet",
  50378. height: math.unit(35000, "km")
  50379. },
  50380. {
  50381. name: "Just no",
  50382. height: math.unit(8.5e18, "km")
  50383. },
  50384. ]
  50385. ))
  50386. characterMakers.push(() => makeCharacter(
  50387. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  50388. {
  50389. front: {
  50390. height: math.unit(6.5, "feet"),
  50391. name: "Front",
  50392. image: {
  50393. source: "./media/characters/poppy/front.svg",
  50394. extra: 1878/1812,
  50395. bottom: 43/1921
  50396. }
  50397. },
  50398. feet: {
  50399. height: math.unit(1.06, "feet"),
  50400. name: "Feet",
  50401. image: {
  50402. source: "./media/characters/poppy/feet.svg",
  50403. extra: 1083/1083,
  50404. bottom: 87/1170
  50405. }
  50406. },
  50407. },
  50408. [
  50409. {
  50410. name: "Human",
  50411. height: math.unit(6.5, "feet")
  50412. },
  50413. {
  50414. name: "Default",
  50415. height: math.unit(300, "feet"),
  50416. default: true
  50417. },
  50418. {
  50419. name: "Huge",
  50420. height: math.unit(850, "feet")
  50421. },
  50422. {
  50423. name: "Mega",
  50424. height: math.unit(8000, "feet")
  50425. },
  50426. {
  50427. name: "Giga",
  50428. height: math.unit(300, "miles")
  50429. },
  50430. ]
  50431. ))
  50432. characterMakers.push(() => makeCharacter(
  50433. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  50434. {
  50435. bipedal: {
  50436. height: math.unit(7, "feet"),
  50437. name: "Bipedal",
  50438. image: {
  50439. source: "./media/characters/zener/bipedal.svg",
  50440. extra: 874/805,
  50441. bottom: 109/983
  50442. }
  50443. },
  50444. quadrupedal: {
  50445. height: math.unit(4.64, "feet"),
  50446. name: "Quadrupedal",
  50447. image: {
  50448. source: "./media/characters/zener/quadrupedal.svg",
  50449. extra: 638/507,
  50450. bottom: 190/828
  50451. }
  50452. },
  50453. cock: {
  50454. height: math.unit(18, "inches"),
  50455. name: "Cock",
  50456. image: {
  50457. source: "./media/characters/zener/cock.svg"
  50458. }
  50459. },
  50460. },
  50461. [
  50462. {
  50463. name: "Normal",
  50464. height: math.unit(7, "feet"),
  50465. default: true
  50466. },
  50467. ]
  50468. ))
  50469. characterMakers.push(() => makeCharacter(
  50470. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  50471. {
  50472. nude: {
  50473. height: math.unit(5 + 6/12, "feet"),
  50474. name: "Nude",
  50475. image: {
  50476. source: "./media/characters/charlie-dog/nude.svg",
  50477. extra: 768/734,
  50478. bottom: 26/794
  50479. }
  50480. },
  50481. dressed: {
  50482. height: math.unit(5 + 6/12, "feet"),
  50483. name: "Dressed",
  50484. image: {
  50485. source: "./media/characters/charlie-dog/dressed.svg",
  50486. extra: 768/734,
  50487. bottom: 26/794
  50488. }
  50489. },
  50490. },
  50491. [
  50492. {
  50493. name: "Normal",
  50494. height: math.unit(5 + 6/12, "feet"),
  50495. default: true
  50496. },
  50497. ]
  50498. ))
  50499. characterMakers.push(() => makeCharacter(
  50500. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  50501. {
  50502. front: {
  50503. height: math.unit(6 + 4/12, "feet"),
  50504. name: "Front",
  50505. image: {
  50506. source: "./media/characters/ir'istrasz/front.svg",
  50507. extra: 1014/977,
  50508. bottom: 65/1079
  50509. }
  50510. },
  50511. back: {
  50512. height: math.unit(6 + 4/12, "feet"),
  50513. name: "Back",
  50514. image: {
  50515. source: "./media/characters/ir'istrasz/back.svg",
  50516. extra: 1024/992,
  50517. bottom: 34/1058
  50518. }
  50519. },
  50520. },
  50521. [
  50522. {
  50523. name: "Normal",
  50524. height: math.unit(6 + 4/12, "feet"),
  50525. default: true
  50526. },
  50527. ]
  50528. ))
  50529. characterMakers.push(() => makeCharacter(
  50530. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50531. {
  50532. front: {
  50533. height: math.unit(5 + 8/12, "feet"),
  50534. name: "Front",
  50535. image: {
  50536. source: "./media/characters/dee-ditto/front.svg",
  50537. extra: 1874/1785,
  50538. bottom: 68/1942
  50539. }
  50540. },
  50541. back: {
  50542. height: math.unit(5 + 8/12, "feet"),
  50543. name: "Back",
  50544. image: {
  50545. source: "./media/characters/dee-ditto/back.svg",
  50546. extra: 1870/1783,
  50547. bottom: 77/1947
  50548. }
  50549. },
  50550. },
  50551. [
  50552. {
  50553. name: "Normal",
  50554. height: math.unit(5 + 8/12, "feet"),
  50555. default: true
  50556. },
  50557. ]
  50558. ))
  50559. characterMakers.push(() => makeCharacter(
  50560. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50561. {
  50562. front: {
  50563. height: math.unit(7 + 6/12, "feet"),
  50564. name: "Front",
  50565. image: {
  50566. source: "./media/characters/fey/front.svg",
  50567. extra: 995/979,
  50568. bottom: 30/1025
  50569. }
  50570. },
  50571. back: {
  50572. height: math.unit(7 + 6/12, "feet"),
  50573. name: "Back",
  50574. image: {
  50575. source: "./media/characters/fey/back.svg",
  50576. extra: 1079/1008,
  50577. bottom: 5/1084
  50578. }
  50579. },
  50580. dressed: {
  50581. height: math.unit(7 + 6/12, "feet"),
  50582. name: "Dressed",
  50583. image: {
  50584. source: "./media/characters/fey/dressed.svg",
  50585. extra: 995/979,
  50586. bottom: 30/1025
  50587. }
  50588. },
  50589. },
  50590. [
  50591. {
  50592. name: "Normal",
  50593. height: math.unit(7 + 6/12, "feet"),
  50594. default: true
  50595. },
  50596. ]
  50597. ))
  50598. characterMakers.push(() => makeCharacter(
  50599. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50600. {
  50601. standing: {
  50602. height: math.unit(17, "feet"),
  50603. name: "Standing",
  50604. image: {
  50605. source: "./media/characters/aster/standing.svg",
  50606. extra: 1798/1598,
  50607. bottom: 117/1915
  50608. }
  50609. },
  50610. },
  50611. [
  50612. {
  50613. name: "Normal",
  50614. height: math.unit(17, "feet"),
  50615. default: true
  50616. },
  50617. {
  50618. name: "Homewrecker",
  50619. height: math.unit(95, "feet")
  50620. },
  50621. {
  50622. name: "Planet Devourer",
  50623. height: math.unit(1008000, "miles")
  50624. },
  50625. ]
  50626. ))
  50627. characterMakers.push(() => makeCharacter(
  50628. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50629. {
  50630. front: {
  50631. height: math.unit(6 + 5/12, "feet"),
  50632. weight: math.unit(265, "lb"),
  50633. name: "Front",
  50634. image: {
  50635. source: "./media/characters/devon-childs/front.svg",
  50636. extra: 1795/1721,
  50637. bottom: 41/1836
  50638. }
  50639. },
  50640. side: {
  50641. height: math.unit(6 + 5/12, "feet"),
  50642. weight: math.unit(265, "lb"),
  50643. name: "Side",
  50644. image: {
  50645. source: "./media/characters/devon-childs/side.svg",
  50646. extra: 1812/1738,
  50647. bottom: 30/1842
  50648. }
  50649. },
  50650. back: {
  50651. height: math.unit(6 + 5/12, "feet"),
  50652. weight: math.unit(265, "lb"),
  50653. name: "Back",
  50654. image: {
  50655. source: "./media/characters/devon-childs/back.svg",
  50656. extra: 1808/1735,
  50657. bottom: 23/1831
  50658. }
  50659. },
  50660. hand: {
  50661. height: math.unit(1.464, "feet"),
  50662. name: "Hand",
  50663. image: {
  50664. source: "./media/characters/devon-childs/hand.svg"
  50665. }
  50666. },
  50667. foot: {
  50668. height: math.unit(1.6, "feet"),
  50669. name: "Foot",
  50670. image: {
  50671. source: "./media/characters/devon-childs/foot.svg"
  50672. }
  50673. },
  50674. },
  50675. [
  50676. {
  50677. name: "Micro",
  50678. height: math.unit(7, "cm")
  50679. },
  50680. {
  50681. name: "Normal",
  50682. height: math.unit(6 + 5/12, "feet"),
  50683. default: true
  50684. },
  50685. {
  50686. name: "Macro",
  50687. height: math.unit(154, "feet")
  50688. },
  50689. ]
  50690. ))
  50691. characterMakers.push(() => makeCharacter(
  50692. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50693. {
  50694. front: {
  50695. height: math.unit(6, "feet"),
  50696. weight: math.unit(180, "lb"),
  50697. name: "Front",
  50698. image: {
  50699. source: "./media/characters/lydemox-vir/front.svg",
  50700. extra: 1632/1435,
  50701. bottom: 58/1690
  50702. }
  50703. },
  50704. frontSFW: {
  50705. height: math.unit(6, "feet"),
  50706. weight: math.unit(180, "lb"),
  50707. name: "Front (SFW)",
  50708. image: {
  50709. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50710. extra: 1632/1435,
  50711. bottom: 58/1690
  50712. }
  50713. },
  50714. back: {
  50715. height: math.unit(6, "feet"),
  50716. weight: math.unit(180, "lb"),
  50717. name: "Back",
  50718. image: {
  50719. source: "./media/characters/lydemox-vir/back.svg",
  50720. extra: 1593/1408,
  50721. bottom: 31/1624
  50722. }
  50723. },
  50724. paw: {
  50725. height: math.unit(1.85, "feet"),
  50726. name: "Paw",
  50727. image: {
  50728. source: "./media/characters/lydemox-vir/paw.svg"
  50729. }
  50730. },
  50731. dick: {
  50732. height: math.unit(1.8, "feet"),
  50733. name: "Dick",
  50734. image: {
  50735. source: "./media/characters/lydemox-vir/dick.svg"
  50736. }
  50737. },
  50738. },
  50739. [
  50740. {
  50741. name: "Macro",
  50742. height: math.unit(100, "feet"),
  50743. default: true
  50744. },
  50745. {
  50746. name: "Teramacro",
  50747. height: math.unit(1, "earth")
  50748. },
  50749. {
  50750. name: "Planetary",
  50751. height: math.unit(20, "earths")
  50752. },
  50753. ]
  50754. ))
  50755. characterMakers.push(() => makeCharacter(
  50756. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50757. {
  50758. front: {
  50759. height: math.unit(15 + 8/12, "feet"),
  50760. weight: math.unit(1237, "kg"),
  50761. name: "Front",
  50762. image: {
  50763. source: "./media/characters/mia/front.svg",
  50764. extra: 1573/1446,
  50765. bottom: 58/1631
  50766. }
  50767. },
  50768. },
  50769. [
  50770. {
  50771. name: "Small",
  50772. height: math.unit(9 + 5/12, "feet")
  50773. },
  50774. {
  50775. name: "Normal",
  50776. height: math.unit(15 + 8/12, "feet"),
  50777. default: true
  50778. },
  50779. ]
  50780. ))
  50781. characterMakers.push(() => makeCharacter(
  50782. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50783. {
  50784. front: {
  50785. height: math.unit(10 + 6/12, "feet"),
  50786. weight: math.unit(1.3, "tons"),
  50787. name: "Front",
  50788. image: {
  50789. source: "./media/characters/mr-graves/front.svg",
  50790. extra: 1779/1695,
  50791. bottom: 198/1977
  50792. }
  50793. },
  50794. },
  50795. [
  50796. {
  50797. name: "Normal",
  50798. height: math.unit(10 + 6 /12, "feet"),
  50799. default: true
  50800. },
  50801. ]
  50802. ))
  50803. characterMakers.push(() => makeCharacter(
  50804. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50805. {
  50806. dressedFront: {
  50807. height: math.unit(5 + 8/12, "feet"),
  50808. weight: math.unit(125, "lb"),
  50809. name: "Dressed (Front)",
  50810. image: {
  50811. source: "./media/characters/jess/dressed-front.svg",
  50812. extra: 1176/1152,
  50813. bottom: 42/1218
  50814. }
  50815. },
  50816. dressedSide: {
  50817. height: math.unit(5 + 8/12, "feet"),
  50818. weight: math.unit(125, "lb"),
  50819. name: "Dressed (Side)",
  50820. image: {
  50821. source: "./media/characters/jess/dressed-side.svg",
  50822. extra: 1204/1190,
  50823. bottom: 6/1210
  50824. }
  50825. },
  50826. nudeFront: {
  50827. height: math.unit(5 + 8/12, "feet"),
  50828. weight: math.unit(125, "lb"),
  50829. name: "Nude (Front)",
  50830. image: {
  50831. source: "./media/characters/jess/nude-front.svg",
  50832. extra: 1176/1152,
  50833. bottom: 42/1218
  50834. }
  50835. },
  50836. nudeSide: {
  50837. height: math.unit(5 + 8/12, "feet"),
  50838. weight: math.unit(125, "lb"),
  50839. name: "Nude (Side)",
  50840. image: {
  50841. source: "./media/characters/jess/nude-side.svg",
  50842. extra: 1204/1190,
  50843. bottom: 6/1210
  50844. }
  50845. },
  50846. organsFront: {
  50847. height: math.unit(2.83799342105, "feet"),
  50848. name: "Organs (Front)",
  50849. image: {
  50850. source: "./media/characters/jess/organs-front.svg"
  50851. }
  50852. },
  50853. organsSide: {
  50854. height: math.unit(2.64225290474, "feet"),
  50855. name: "Organs (Side)",
  50856. image: {
  50857. source: "./media/characters/jess/organs-side.svg"
  50858. }
  50859. },
  50860. digestiveTractFront: {
  50861. height: math.unit(2.8106580871, "feet"),
  50862. name: "Digestive Tract (Front)",
  50863. image: {
  50864. source: "./media/characters/jess/digestive-tract-front.svg"
  50865. }
  50866. },
  50867. digestiveTractSide: {
  50868. height: math.unit(2.54365045014, "feet"),
  50869. name: "Digestive Tract (Side)",
  50870. image: {
  50871. source: "./media/characters/jess/digestive-tract-side.svg"
  50872. }
  50873. },
  50874. respiratorySystemFront: {
  50875. height: math.unit(1.11196233456, "feet"),
  50876. name: "Respiratory System (Front)",
  50877. image: {
  50878. source: "./media/characters/jess/respiratory-system-front.svg"
  50879. }
  50880. },
  50881. respiratorySystemSide: {
  50882. height: math.unit(0.89327966297, "feet"),
  50883. name: "Respiratory System (Side)",
  50884. image: {
  50885. source: "./media/characters/jess/respiratory-system-side.svg"
  50886. }
  50887. },
  50888. urinaryTractFront: {
  50889. height: math.unit(1.16126356186, "feet"),
  50890. name: "Urinary Tract (Front)",
  50891. image: {
  50892. source: "./media/characters/jess/urinary-tract-front.svg"
  50893. }
  50894. },
  50895. urinaryTractSide: {
  50896. height: math.unit(1.20910039627, "feet"),
  50897. name: "Urinary Tract (Side)",
  50898. image: {
  50899. source: "./media/characters/jess/urinary-tract-side.svg"
  50900. }
  50901. },
  50902. reproductiveOrgansFront: {
  50903. height: math.unit(0.48422591566, "feet"),
  50904. name: "Reproductive Organs (Front)",
  50905. image: {
  50906. source: "./media/characters/jess/reproductive-organs-front.svg"
  50907. }
  50908. },
  50909. reproductiveOrgansSide: {
  50910. height: math.unit(0.61553314481, "feet"),
  50911. name: "Reproductive Organs (Side)",
  50912. image: {
  50913. source: "./media/characters/jess/reproductive-organs-side.svg"
  50914. }
  50915. },
  50916. breastsFront: {
  50917. height: math.unit(0.47690395121, "feet"),
  50918. name: "Breasts (Front)",
  50919. image: {
  50920. source: "./media/characters/jess/breasts-front.svg"
  50921. }
  50922. },
  50923. breastsSide: {
  50924. height: math.unit(0.30556998307, "feet"),
  50925. name: "Breasts (Side)",
  50926. image: {
  50927. source: "./media/characters/jess/breasts-side.svg"
  50928. }
  50929. },
  50930. heartFront: {
  50931. height: math.unit(0.53011022622, "feet"),
  50932. name: "Heart (Front)",
  50933. image: {
  50934. source: "./media/characters/jess/heart-front.svg"
  50935. }
  50936. },
  50937. heartSide: {
  50938. height: math.unit(0.51790695213, "feet"),
  50939. name: "Heart (Side)",
  50940. image: {
  50941. source: "./media/characters/jess/heart-side.svg"
  50942. }
  50943. },
  50944. earsAndNoseFront: {
  50945. height: math.unit(0.29385483995, "feet"),
  50946. name: "Ears and Nose (Front)",
  50947. image: {
  50948. source: "./media/characters/jess/ears-and-nose-front.svg"
  50949. }
  50950. },
  50951. earsAndNoseSide: {
  50952. height: math.unit(0.18109658741, "feet"),
  50953. name: "Ears and Nose (Side)",
  50954. image: {
  50955. source: "./media/characters/jess/ears-and-nose-side.svg"
  50956. }
  50957. },
  50958. },
  50959. [
  50960. {
  50961. name: "Normal",
  50962. height: math.unit(5 + 8/12, "feet"),
  50963. default: true
  50964. },
  50965. ]
  50966. ))
  50967. characterMakers.push(() => makeCharacter(
  50968. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50969. {
  50970. front: {
  50971. height: math.unit(6, "feet"),
  50972. weight: math.unit(6.64467e-7, "grams"),
  50973. name: "Front",
  50974. image: {
  50975. source: "./media/characters/wimpering/front.svg",
  50976. extra: 597/587,
  50977. bottom: 34/631
  50978. }
  50979. },
  50980. },
  50981. [
  50982. {
  50983. name: "Micro",
  50984. height: math.unit(0.4, "mm"),
  50985. default: true
  50986. },
  50987. ]
  50988. ))
  50989. characterMakers.push(() => makeCharacter(
  50990. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50991. {
  50992. front: {
  50993. height: math.unit(5 + 2/12, "feet"),
  50994. weight: math.unit(110, "lb"),
  50995. name: "Front",
  50996. image: {
  50997. source: "./media/characters/keltre/front.svg",
  50998. extra: 1099/1057,
  50999. bottom: 22/1121
  51000. }
  51001. },
  51002. back: {
  51003. height: math.unit(5 + 2/12, "feet"),
  51004. weight: math.unit(110, "lb"),
  51005. name: "Back",
  51006. image: {
  51007. source: "./media/characters/keltre/back.svg",
  51008. extra: 1095/1053,
  51009. bottom: 17/1112
  51010. }
  51011. },
  51012. dressed: {
  51013. height: math.unit(5 + 2/12, "feet"),
  51014. weight: math.unit(110, "lb"),
  51015. name: "Dressed",
  51016. image: {
  51017. source: "./media/characters/keltre/dressed.svg",
  51018. extra: 1099/1057,
  51019. bottom: 22/1121
  51020. }
  51021. },
  51022. winter: {
  51023. height: math.unit(5 + 2/12, "feet"),
  51024. weight: math.unit(110, "lb"),
  51025. name: "Winter",
  51026. image: {
  51027. source: "./media/characters/keltre/winter.svg",
  51028. extra: 1099/1057,
  51029. bottom: 22/1121
  51030. }
  51031. },
  51032. head: {
  51033. height: math.unit(1.61 * 0.86, "feet"),
  51034. name: "Head",
  51035. image: {
  51036. source: "./media/characters/keltre/head.svg",
  51037. extra: 534/421,
  51038. bottom: 0/534
  51039. }
  51040. },
  51041. hand: {
  51042. height: math.unit(1.3 * 0.86, "feet"),
  51043. name: "Hand",
  51044. image: {
  51045. source: "./media/characters/keltre/hand.svg"
  51046. }
  51047. },
  51048. foot: {
  51049. height: math.unit(1.8 * 0.86, "feet"),
  51050. name: "Foot",
  51051. image: {
  51052. source: "./media/characters/keltre/foot.svg"
  51053. }
  51054. },
  51055. },
  51056. [
  51057. {
  51058. name: "Fine",
  51059. height: math.unit(1, "inch")
  51060. },
  51061. {
  51062. name: "Dimnutive",
  51063. height: math.unit(4, "inches")
  51064. },
  51065. {
  51066. name: "Tiny",
  51067. height: math.unit(1, "foot")
  51068. },
  51069. {
  51070. name: "Small",
  51071. height: math.unit(3, "feet")
  51072. },
  51073. {
  51074. name: "Normal",
  51075. height: math.unit(5 + 2/12, "feet"),
  51076. default: true
  51077. },
  51078. ]
  51079. ))
  51080. characterMakers.push(() => makeCharacter(
  51081. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  51082. {
  51083. front: {
  51084. height: math.unit(6 + 2/12, "feet"),
  51085. name: "Front",
  51086. image: {
  51087. source: "./media/characters/nox/front.svg",
  51088. extra: 1917/1830,
  51089. bottom: 74/1991
  51090. }
  51091. },
  51092. back: {
  51093. height: math.unit(6 + 2/12, "feet"),
  51094. name: "Back",
  51095. image: {
  51096. source: "./media/characters/nox/back.svg",
  51097. extra: 1896/1815,
  51098. bottom: 21/1917
  51099. }
  51100. },
  51101. head: {
  51102. height: math.unit(1.1, "feet"),
  51103. name: "Head",
  51104. image: {
  51105. source: "./media/characters/nox/head.svg",
  51106. extra: 874/704,
  51107. bottom: 0/874
  51108. }
  51109. },
  51110. tattoo: {
  51111. height: math.unit(0.729, "feet"),
  51112. name: "Tattoo",
  51113. image: {
  51114. source: "./media/characters/nox/tattoo.svg"
  51115. }
  51116. },
  51117. },
  51118. [
  51119. {
  51120. name: "Normal",
  51121. height: math.unit(6 + 2/12, "feet")
  51122. },
  51123. {
  51124. name: "Gigamacro",
  51125. height: math.unit(2, "earths"),
  51126. default: true
  51127. },
  51128. {
  51129. name: "Cosmic",
  51130. height: math.unit(867, "yottameters")
  51131. },
  51132. ]
  51133. ))
  51134. characterMakers.push(() => makeCharacter(
  51135. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  51136. {
  51137. front: {
  51138. height: math.unit(6, "feet"),
  51139. weight: math.unit(150, "lb"),
  51140. name: "Front",
  51141. image: {
  51142. source: "./media/characters/caspian/front.svg",
  51143. extra: 1443/1359,
  51144. bottom: 0/1443
  51145. }
  51146. },
  51147. back: {
  51148. height: math.unit(6, "feet"),
  51149. weight: math.unit(150, "lb"),
  51150. name: "Back",
  51151. image: {
  51152. source: "./media/characters/caspian/back.svg",
  51153. extra: 1379/1309,
  51154. bottom: 0/1379
  51155. }
  51156. },
  51157. head: {
  51158. height: math.unit(0.9, "feet"),
  51159. name: "Head",
  51160. image: {
  51161. source: "./media/characters/caspian/head.svg",
  51162. extra: 692/492,
  51163. bottom: 0/692
  51164. }
  51165. },
  51166. headAlt: {
  51167. height: math.unit(0.95, "feet"),
  51168. name: "Head (Alt)",
  51169. image: {
  51170. source: "./media/characters/caspian/head-alt.svg",
  51171. extra: 668/508,
  51172. bottom: 0/668
  51173. }
  51174. },
  51175. hand: {
  51176. height: math.unit(0.8, "feet"),
  51177. name: "Hand",
  51178. image: {
  51179. source: "./media/characters/caspian/hand.svg"
  51180. }
  51181. },
  51182. paw: {
  51183. height: math.unit(0.95, "feet"),
  51184. name: "Paw",
  51185. image: {
  51186. source: "./media/characters/caspian/paw.svg"
  51187. }
  51188. },
  51189. },
  51190. [
  51191. {
  51192. name: "Normal",
  51193. height: math.unit(162, "feet"),
  51194. default: true
  51195. },
  51196. ]
  51197. ))
  51198. characterMakers.push(() => makeCharacter(
  51199. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  51200. {
  51201. front: {
  51202. height: math.unit(6, "feet"),
  51203. name: "Front",
  51204. image: {
  51205. source: "./media/characters/myra-aisling/front.svg",
  51206. extra: 1268/1166,
  51207. bottom: 73/1341
  51208. }
  51209. },
  51210. back: {
  51211. height: math.unit(6, "feet"),
  51212. name: "Back",
  51213. image: {
  51214. source: "./media/characters/myra-aisling/back.svg",
  51215. extra: 1249/1149,
  51216. bottom: 79/1328
  51217. }
  51218. },
  51219. dressed: {
  51220. height: math.unit(6, "feet"),
  51221. name: "Dressed",
  51222. image: {
  51223. source: "./media/characters/myra-aisling/dressed.svg",
  51224. extra: 1290/1189,
  51225. bottom: 47/1337
  51226. }
  51227. },
  51228. hand: {
  51229. height: math.unit(1.1, "feet"),
  51230. name: "Hand",
  51231. image: {
  51232. source: "./media/characters/myra-aisling/hand.svg"
  51233. }
  51234. },
  51235. paw: {
  51236. height: math.unit(1.23, "feet"),
  51237. name: "Paw",
  51238. image: {
  51239. source: "./media/characters/myra-aisling/paw.svg"
  51240. }
  51241. },
  51242. },
  51243. [
  51244. {
  51245. name: "Normal",
  51246. height: math.unit(160, "feet"),
  51247. default: true
  51248. },
  51249. ]
  51250. ))
  51251. characterMakers.push(() => makeCharacter(
  51252. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  51253. {
  51254. front: {
  51255. height: math.unit(6, "feet"),
  51256. name: "Front",
  51257. image: {
  51258. source: "./media/characters/tenley-sidero/front.svg",
  51259. extra: 1365/1276,
  51260. bottom: 47/1412
  51261. }
  51262. },
  51263. back: {
  51264. height: math.unit(6, "feet"),
  51265. name: "Back",
  51266. image: {
  51267. source: "./media/characters/tenley-sidero/back.svg",
  51268. extra: 1383/1283,
  51269. bottom: 35/1418
  51270. }
  51271. },
  51272. dressed: {
  51273. height: math.unit(6, "feet"),
  51274. name: "Dressed",
  51275. image: {
  51276. source: "./media/characters/tenley-sidero/dressed.svg",
  51277. extra: 1364/1275,
  51278. bottom: 42/1406
  51279. }
  51280. },
  51281. head: {
  51282. height: math.unit(1.47, "feet"),
  51283. name: "Head",
  51284. image: {
  51285. source: "./media/characters/tenley-sidero/head.svg",
  51286. extra: 610/490,
  51287. bottom: 0/610
  51288. }
  51289. },
  51290. },
  51291. [
  51292. {
  51293. name: "Normal",
  51294. height: math.unit(154, "feet"),
  51295. default: true
  51296. },
  51297. ]
  51298. ))
  51299. characterMakers.push(() => makeCharacter(
  51300. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  51301. {
  51302. front: {
  51303. height: math.unit(5, "inches"),
  51304. name: "Front",
  51305. image: {
  51306. source: "./media/characters/mallory/front.svg",
  51307. extra: 1919/1678,
  51308. bottom: 29/1948
  51309. }
  51310. },
  51311. hand: {
  51312. height: math.unit(0.73, "inches"),
  51313. name: "Hand",
  51314. image: {
  51315. source: "./media/characters/mallory/hand.svg"
  51316. }
  51317. },
  51318. paw: {
  51319. height: math.unit(0.68, "inches"),
  51320. name: "Paw",
  51321. image: {
  51322. source: "./media/characters/mallory/paw.svg"
  51323. }
  51324. },
  51325. },
  51326. [
  51327. {
  51328. name: "Small",
  51329. height: math.unit(5, "inches"),
  51330. default: true
  51331. },
  51332. ]
  51333. ))
  51334. characterMakers.push(() => makeCharacter(
  51335. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  51336. {
  51337. naked: {
  51338. height: math.unit(6, "feet"),
  51339. name: "Naked",
  51340. image: {
  51341. source: "./media/characters/mab/naked.svg",
  51342. extra: 1855/1757,
  51343. bottom: 208/2063
  51344. }
  51345. },
  51346. outside: {
  51347. height: math.unit(6, "feet"),
  51348. name: "Outside",
  51349. image: {
  51350. source: "./media/characters/mab/outside.svg",
  51351. extra: 1855/1757,
  51352. bottom: 208/2063
  51353. }
  51354. },
  51355. party: {
  51356. height: math.unit(6, "feet"),
  51357. name: "Party",
  51358. image: {
  51359. source: "./media/characters/mab/party.svg",
  51360. extra: 1855/1757,
  51361. bottom: 208/2063
  51362. }
  51363. },
  51364. },
  51365. [
  51366. {
  51367. name: "Normal",
  51368. height: math.unit(165, "feet"),
  51369. default: true
  51370. },
  51371. ]
  51372. ))
  51373. characterMakers.push(() => makeCharacter(
  51374. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  51375. {
  51376. feral: {
  51377. height: math.unit(12, "feet"),
  51378. weight: math.unit(20000, "lb"),
  51379. name: "Side",
  51380. image: {
  51381. source: "./media/characters/winter/feral.svg",
  51382. extra: 1286/943,
  51383. bottom: 112/1398
  51384. },
  51385. form: "feral",
  51386. default: true
  51387. },
  51388. feralNsfw: {
  51389. height: math.unit(12, "feet"),
  51390. weight: math.unit(20000, "lb"),
  51391. name: "Side (NSFW)",
  51392. image: {
  51393. source: "./media/characters/winter/feral-nsfw.svg",
  51394. extra: 1286/943,
  51395. bottom: 112/1398
  51396. },
  51397. form: "feral"
  51398. },
  51399. dick: {
  51400. height: math.unit(3.79, "feet"),
  51401. name: "Dick",
  51402. image: {
  51403. source: "./media/characters/winter/dick.svg"
  51404. },
  51405. form: "feral"
  51406. },
  51407. anthro: {
  51408. height: math.unit(12, "feet"),
  51409. weight: math.unit(10, "tons"),
  51410. name: "Anthro",
  51411. image: {
  51412. source: "./media/characters/winter/anthro.svg",
  51413. extra: 1701/1553,
  51414. bottom: 64/1765
  51415. },
  51416. form: "anthro",
  51417. default: true
  51418. },
  51419. },
  51420. [
  51421. {
  51422. name: "Big",
  51423. height: math.unit(12, "feet"),
  51424. default: true,
  51425. form: "feral"
  51426. },
  51427. {
  51428. name: "Big",
  51429. height: math.unit(12, "feet"),
  51430. default: true,
  51431. form: "anthro"
  51432. },
  51433. ],
  51434. {
  51435. "feral": {
  51436. name: "Feral",
  51437. default: true
  51438. },
  51439. "anthro": {
  51440. name: "Anthro"
  51441. }
  51442. }
  51443. ))
  51444. characterMakers.push(() => makeCharacter(
  51445. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  51446. {
  51447. front: {
  51448. height: math.unit(4.1, "inches"),
  51449. name: "Front",
  51450. image: {
  51451. source: "./media/characters/alto/front.svg",
  51452. extra: 736/627,
  51453. bottom: 90/826
  51454. }
  51455. },
  51456. },
  51457. [
  51458. {
  51459. name: "Normal",
  51460. height: math.unit(4.1, "inches"),
  51461. default: true
  51462. },
  51463. ]
  51464. ))
  51465. characterMakers.push(() => makeCharacter(
  51466. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  51467. {
  51468. sitting: {
  51469. height: math.unit(3, "feet"),
  51470. name: "Sitting",
  51471. image: {
  51472. source: "./media/characters/ratstrid-v/sitting.svg",
  51473. extra: 355/310,
  51474. bottom: 136/491
  51475. }
  51476. },
  51477. },
  51478. [
  51479. {
  51480. name: "Normal",
  51481. height: math.unit(3, "feet"),
  51482. default: true
  51483. },
  51484. ]
  51485. ))
  51486. characterMakers.push(() => makeCharacter(
  51487. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  51488. {
  51489. back: {
  51490. height: math.unit(6, "feet"),
  51491. weight: math.unit(450, "lb"),
  51492. name: "Back",
  51493. image: {
  51494. source: "./media/characters/siz/back.svg",
  51495. extra: 1449/1274,
  51496. bottom: 13/1462
  51497. }
  51498. },
  51499. },
  51500. [
  51501. {
  51502. name: "Smallest",
  51503. height: math.unit(18 + 3/12, "feet")
  51504. },
  51505. {
  51506. name: "Modest",
  51507. height: math.unit(56 + 8/12, "feet"),
  51508. default: true
  51509. },
  51510. {
  51511. name: "Largest",
  51512. height: math.unit(3590, "feet")
  51513. },
  51514. ]
  51515. ))
  51516. characterMakers.push(() => makeCharacter(
  51517. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51518. {
  51519. front: {
  51520. height: math.unit(5 + 9/12, "feet"),
  51521. weight: math.unit(150, "lb"),
  51522. name: "Front",
  51523. image: {
  51524. source: "./media/characters/ven/front.svg",
  51525. extra: 1372/1320,
  51526. bottom: 73/1445
  51527. }
  51528. },
  51529. side: {
  51530. height: math.unit(5 + 9/12, "feet"),
  51531. weight: math.unit(1150, "lb"),
  51532. name: "Side",
  51533. image: {
  51534. source: "./media/characters/ven/side.svg",
  51535. extra: 1119/1070,
  51536. bottom: 42/1161
  51537. },
  51538. default: true
  51539. },
  51540. },
  51541. [
  51542. {
  51543. name: "Normal",
  51544. height: math.unit(5 + 9/12, "feet"),
  51545. default: true
  51546. },
  51547. ]
  51548. ))
  51549. characterMakers.push(() => makeCharacter(
  51550. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51551. {
  51552. front: {
  51553. height: math.unit(12, "feet"),
  51554. weight: math.unit(1000, "kg"),
  51555. name: "Front",
  51556. image: {
  51557. source: "./media/characters/maple/front.svg",
  51558. extra: 1193/1081,
  51559. bottom: 22/1215
  51560. }
  51561. },
  51562. },
  51563. [
  51564. {
  51565. name: "Compressed",
  51566. height: math.unit(7, "feet")
  51567. },
  51568. {
  51569. name: "Normal",
  51570. height: math.unit(12, "feet"),
  51571. default: true
  51572. },
  51573. ]
  51574. ))
  51575. characterMakers.push(() => makeCharacter(
  51576. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51577. {
  51578. front: {
  51579. height: math.unit(9, "feet"),
  51580. weight: math.unit(1500, "lb"),
  51581. name: "Front",
  51582. image: {
  51583. source: "./media/characters/nora/front.svg",
  51584. extra: 1348/1286,
  51585. bottom: 218/1566
  51586. }
  51587. },
  51588. erect: {
  51589. height: math.unit(9, "feet"),
  51590. weight: math.unit(11500, "lb"),
  51591. name: "Erect",
  51592. image: {
  51593. source: "./media/characters/nora/erect.svg",
  51594. extra: 1488/1433,
  51595. bottom: 133/1621
  51596. }
  51597. },
  51598. },
  51599. [
  51600. {
  51601. name: "Normal",
  51602. height: math.unit(9, "feet"),
  51603. default: true
  51604. },
  51605. ]
  51606. ))
  51607. characterMakers.push(() => makeCharacter(
  51608. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51609. {
  51610. front: {
  51611. height: math.unit(25, "feet"),
  51612. weight: math.unit(27500, "lb"),
  51613. name: "Front",
  51614. image: {
  51615. source: "./media/characters/north-caudin/front.svg",
  51616. extra: 1184/1082,
  51617. bottom: 23/1207
  51618. }
  51619. },
  51620. },
  51621. [
  51622. {
  51623. name: "Compressed",
  51624. height: math.unit(10, "feet")
  51625. },
  51626. {
  51627. name: "Normal",
  51628. height: math.unit(25, "feet"),
  51629. default: true
  51630. },
  51631. ]
  51632. ))
  51633. characterMakers.push(() => makeCharacter(
  51634. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51635. {
  51636. front: {
  51637. height: math.unit(9, "feet"),
  51638. weight: math.unit(1250, "lb"),
  51639. name: "Front",
  51640. image: {
  51641. source: "./media/characters/merrian/front.svg",
  51642. extra: 2393/2304,
  51643. bottom: 40/2433
  51644. }
  51645. },
  51646. },
  51647. [
  51648. {
  51649. name: "Normal",
  51650. height: math.unit(9, "feet"),
  51651. default: true
  51652. },
  51653. ]
  51654. ))
  51655. characterMakers.push(() => makeCharacter(
  51656. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51657. {
  51658. front: {
  51659. height: math.unit(9, "feet"),
  51660. weight: math.unit(1000, "lb"),
  51661. name: "Front",
  51662. image: {
  51663. source: "./media/characters/hazel/front.svg",
  51664. extra: 2351/2298,
  51665. bottom: 38/2389
  51666. }
  51667. },
  51668. },
  51669. [
  51670. {
  51671. name: "Normal",
  51672. height: math.unit(9, "feet"),
  51673. default: true
  51674. },
  51675. ]
  51676. ))
  51677. characterMakers.push(() => makeCharacter(
  51678. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51679. {
  51680. front: {
  51681. height: math.unit(13, "feet"),
  51682. weight: math.unit(3200, "lb"),
  51683. name: "Front",
  51684. image: {
  51685. source: "./media/characters/emma/front.svg",
  51686. extra: 2263/2029,
  51687. bottom: 68/2331
  51688. }
  51689. },
  51690. },
  51691. [
  51692. {
  51693. name: "Normal",
  51694. height: math.unit(13, "feet"),
  51695. default: true
  51696. },
  51697. ]
  51698. ))
  51699. characterMakers.push(() => makeCharacter(
  51700. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51701. {
  51702. front: {
  51703. height: math.unit(11 + 9/12, "feet"),
  51704. weight: math.unit(2500, "lb"),
  51705. name: "Front",
  51706. image: {
  51707. source: "./media/characters/ilumina/front.svg",
  51708. extra: 2248/2209,
  51709. bottom: 164/2412
  51710. }
  51711. },
  51712. },
  51713. [
  51714. {
  51715. name: "Normal",
  51716. height: math.unit(11 + 9/12, "feet"),
  51717. default: true
  51718. },
  51719. ]
  51720. ))
  51721. characterMakers.push(() => makeCharacter(
  51722. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51723. {
  51724. front: {
  51725. height: math.unit(8 + 10/12, "feet"),
  51726. weight: math.unit(1350, "lb"),
  51727. name: "Front",
  51728. image: {
  51729. source: "./media/characters/moonshine/front.svg",
  51730. extra: 2395/2288,
  51731. bottom: 40/2435
  51732. }
  51733. },
  51734. },
  51735. [
  51736. {
  51737. name: "Normal",
  51738. height: math.unit(8 + 10/12, "feet"),
  51739. default: true
  51740. },
  51741. ]
  51742. ))
  51743. characterMakers.push(() => makeCharacter(
  51744. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51745. {
  51746. front: {
  51747. height: math.unit(14, "feet"),
  51748. weight: math.unit(3400, "lb"),
  51749. name: "Front",
  51750. image: {
  51751. source: "./media/characters/aletia/front.svg",
  51752. extra: 1185/1052,
  51753. bottom: 21/1206
  51754. }
  51755. },
  51756. },
  51757. [
  51758. {
  51759. name: "Compressed",
  51760. height: math.unit(8, "feet")
  51761. },
  51762. {
  51763. name: "Normal",
  51764. height: math.unit(14, "feet"),
  51765. default: true
  51766. },
  51767. ]
  51768. ))
  51769. characterMakers.push(() => makeCharacter(
  51770. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51771. {
  51772. front: {
  51773. height: math.unit(17, "feet"),
  51774. weight: math.unit(6500, "lb"),
  51775. name: "Front",
  51776. image: {
  51777. source: "./media/characters/deidra/front.svg",
  51778. extra: 1201/1081,
  51779. bottom: 16/1217
  51780. }
  51781. },
  51782. },
  51783. [
  51784. {
  51785. name: "Compressed",
  51786. height: math.unit(9 + 6/12, "feet")
  51787. },
  51788. {
  51789. name: "Normal",
  51790. height: math.unit(17, "feet"),
  51791. default: true
  51792. },
  51793. ]
  51794. ))
  51795. characterMakers.push(() => makeCharacter(
  51796. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51797. {
  51798. front: {
  51799. height: math.unit(7 + 4/12, "feet"),
  51800. weight: math.unit(280, "lb"),
  51801. name: "Front",
  51802. image: {
  51803. source: "./media/characters/freki-yrmori/front.svg",
  51804. extra: 1286/1182,
  51805. bottom: 29/1315
  51806. }
  51807. },
  51808. maw: {
  51809. height: math.unit(0.9, "feet"),
  51810. name: "Maw",
  51811. image: {
  51812. source: "./media/characters/freki-yrmori/maw.svg"
  51813. }
  51814. },
  51815. },
  51816. [
  51817. {
  51818. name: "Normal",
  51819. height: math.unit(7 + 4/12, "feet"),
  51820. default: true
  51821. },
  51822. {
  51823. name: "Macro",
  51824. height: math.unit(38.5, "meters")
  51825. },
  51826. ]
  51827. ))
  51828. characterMakers.push(() => makeCharacter(
  51829. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51830. {
  51831. side: {
  51832. height: math.unit(47.2, "meters"),
  51833. weight: math.unit(10000, "tons"),
  51834. name: "Side",
  51835. image: {
  51836. source: "./media/characters/aetherios/side.svg",
  51837. extra: 2363/642,
  51838. bottom: 221/2584
  51839. }
  51840. },
  51841. top: {
  51842. height: math.unit(240, "meters"),
  51843. weight: math.unit(10000, "tons"),
  51844. name: "Top",
  51845. image: {
  51846. source: "./media/characters/aetherios/top.svg"
  51847. }
  51848. },
  51849. bottom: {
  51850. height: math.unit(240, "meters"),
  51851. weight: math.unit(10000, "tons"),
  51852. name: "Bottom",
  51853. image: {
  51854. source: "./media/characters/aetherios/bottom.svg"
  51855. }
  51856. },
  51857. head: {
  51858. height: math.unit(38.6, "meters"),
  51859. name: "Head",
  51860. image: {
  51861. source: "./media/characters/aetherios/head.svg",
  51862. extra: 1335/1112,
  51863. bottom: 0/1335
  51864. }
  51865. },
  51866. front: {
  51867. height: math.unit(29, "meters"),
  51868. name: "Front",
  51869. image: {
  51870. source: "./media/characters/aetherios/front.svg",
  51871. extra: 1266/953,
  51872. bottom: 158/1424
  51873. }
  51874. },
  51875. maw: {
  51876. height: math.unit(16.37, "meters"),
  51877. name: "Maw",
  51878. image: {
  51879. source: "./media/characters/aetherios/maw.svg",
  51880. extra: 748/637,
  51881. bottom: 0/748
  51882. },
  51883. extraAttributes: {
  51884. preyCapacity: {
  51885. name: "Capacity",
  51886. power: 3,
  51887. type: "volume",
  51888. base: math.unit(1000, "people")
  51889. },
  51890. tongueSize: {
  51891. name: "Tongue Size",
  51892. power: 2,
  51893. type: "area",
  51894. base: math.unit(21, "m^2")
  51895. }
  51896. }
  51897. },
  51898. forepaw: {
  51899. height: math.unit(18, "meters"),
  51900. name: "Forepaw",
  51901. image: {
  51902. source: "./media/characters/aetherios/forepaw.svg"
  51903. }
  51904. },
  51905. hindpaw: {
  51906. height: math.unit(23, "meters"),
  51907. name: "Hindpaw",
  51908. image: {
  51909. source: "./media/characters/aetherios/hindpaw.svg"
  51910. }
  51911. },
  51912. genitals: {
  51913. height: math.unit(42, "meters"),
  51914. name: "Genitals",
  51915. image: {
  51916. source: "./media/characters/aetherios/genitals.svg"
  51917. }
  51918. },
  51919. },
  51920. [
  51921. {
  51922. name: "Normal",
  51923. height: math.unit(47.2, "meters"),
  51924. default: true
  51925. },
  51926. {
  51927. name: "Macro",
  51928. height: math.unit(160, "meters")
  51929. },
  51930. {
  51931. name: "Mega",
  51932. height: math.unit(1.87, "km")
  51933. },
  51934. {
  51935. name: "Giga",
  51936. height: math.unit(40000, "km")
  51937. },
  51938. {
  51939. name: "Stellar",
  51940. height: math.unit(158000000, "km")
  51941. },
  51942. {
  51943. name: "Cosmic",
  51944. height: math.unit(9.46e12, "km")
  51945. },
  51946. ]
  51947. ))
  51948. characterMakers.push(() => makeCharacter(
  51949. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51950. {
  51951. front: {
  51952. height: math.unit(5 + 4/12, "feet"),
  51953. weight: math.unit(80, "lb"),
  51954. name: "Front",
  51955. image: {
  51956. source: "./media/characters/mizu-gieeg/front.svg",
  51957. extra: 850/709,
  51958. bottom: 52/902
  51959. }
  51960. },
  51961. back: {
  51962. height: math.unit(5 + 4/12, "feet"),
  51963. weight: math.unit(80, "lb"),
  51964. name: "Back",
  51965. image: {
  51966. source: "./media/characters/mizu-gieeg/back.svg",
  51967. extra: 882/745,
  51968. bottom: 25/907
  51969. }
  51970. },
  51971. },
  51972. [
  51973. {
  51974. name: "Normal",
  51975. height: math.unit(5 + 4/12, "feet"),
  51976. default: true
  51977. },
  51978. ]
  51979. ))
  51980. characterMakers.push(() => makeCharacter(
  51981. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51982. {
  51983. front: {
  51984. height: math.unit(6, "feet"),
  51985. name: "Front",
  51986. image: {
  51987. source: "./media/characters/roselle-st-papier/front.svg",
  51988. extra: 1430/1280,
  51989. bottom: 37/1467
  51990. }
  51991. },
  51992. back: {
  51993. height: math.unit(6, "feet"),
  51994. name: "Back",
  51995. image: {
  51996. source: "./media/characters/roselle-st-papier/back.svg",
  51997. extra: 1491/1296,
  51998. bottom: 23/1514
  51999. }
  52000. },
  52001. ear: {
  52002. height: math.unit(1.26, "feet"),
  52003. name: "Ear",
  52004. image: {
  52005. source: "./media/characters/roselle-st-papier/ear.svg"
  52006. }
  52007. },
  52008. },
  52009. [
  52010. {
  52011. name: "Normal",
  52012. height: math.unit(150, "feet"),
  52013. default: true
  52014. },
  52015. ]
  52016. ))
  52017. characterMakers.push(() => makeCharacter(
  52018. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  52019. {
  52020. front: {
  52021. height: math.unit(1, "inches"),
  52022. name: "Front",
  52023. image: {
  52024. source: "./media/characters/valargent/front.svg",
  52025. extra: 1825/1694,
  52026. bottom: 62/1887
  52027. }
  52028. },
  52029. back: {
  52030. height: math.unit(1, "inches"),
  52031. name: "Back",
  52032. image: {
  52033. source: "./media/characters/valargent/back.svg",
  52034. extra: 1775/1682,
  52035. bottom: 88/1863
  52036. }
  52037. },
  52038. },
  52039. [
  52040. {
  52041. name: "Micro",
  52042. height: math.unit(1, "inch"),
  52043. default: true
  52044. },
  52045. ]
  52046. ))
  52047. characterMakers.push(() => makeCharacter(
  52048. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  52049. {
  52050. front: {
  52051. height: math.unit(3.4, "meters"),
  52052. name: "Front",
  52053. image: {
  52054. source: "./media/characters/zarina/front.svg",
  52055. extra: 1733/1425,
  52056. bottom: 93/1826
  52057. }
  52058. },
  52059. squatting: {
  52060. height: math.unit(2.14, "meters"),
  52061. name: "Squatting",
  52062. image: {
  52063. source: "./media/characters/zarina/squatting.svg",
  52064. extra: 1073/788,
  52065. bottom: 63/1136
  52066. }
  52067. },
  52068. back: {
  52069. height: math.unit(2.14, "meters"),
  52070. name: "Back",
  52071. image: {
  52072. source: "./media/characters/zarina/back.svg",
  52073. extra: 1128/885,
  52074. bottom: 0/1128
  52075. }
  52076. },
  52077. },
  52078. [
  52079. {
  52080. name: "Normal",
  52081. height: math.unit(3.4, "meters"),
  52082. default: true
  52083. },
  52084. {
  52085. name: "Big",
  52086. height: math.unit(5, "meters")
  52087. },
  52088. {
  52089. name: "Macro",
  52090. height: math.unit(110, "meters")
  52091. },
  52092. ]
  52093. ))
  52094. characterMakers.push(() => makeCharacter(
  52095. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  52096. {
  52097. front: {
  52098. height: math.unit(7, "feet"),
  52099. name: "Front",
  52100. image: {
  52101. source: "./media/characters/ventus-astro-fox/front.svg",
  52102. extra: 1792/1623,
  52103. bottom: 28/1820
  52104. }
  52105. },
  52106. back: {
  52107. height: math.unit(7, "feet"),
  52108. name: "Back",
  52109. image: {
  52110. source: "./media/characters/ventus-astro-fox/back.svg",
  52111. extra: 1789/1620,
  52112. bottom: 31/1820
  52113. }
  52114. },
  52115. outfit: {
  52116. height: math.unit(7, "feet"),
  52117. name: "Outfit",
  52118. image: {
  52119. source: "./media/characters/ventus-astro-fox/outfit.svg",
  52120. extra: 1054/925,
  52121. bottom: 15/1069
  52122. }
  52123. },
  52124. head: {
  52125. height: math.unit(1.12, "feet"),
  52126. name: "Head",
  52127. image: {
  52128. source: "./media/characters/ventus-astro-fox/head.svg",
  52129. extra: 866/504,
  52130. bottom: 0/866
  52131. }
  52132. },
  52133. hand: {
  52134. height: math.unit(1, "feet"),
  52135. name: "Hand",
  52136. image: {
  52137. source: "./media/characters/ventus-astro-fox/hand.svg"
  52138. }
  52139. },
  52140. paw: {
  52141. height: math.unit(1.5, "feet"),
  52142. name: "Paw",
  52143. image: {
  52144. source: "./media/characters/ventus-astro-fox/paw.svg"
  52145. }
  52146. },
  52147. },
  52148. [
  52149. {
  52150. name: "Normal",
  52151. height: math.unit(7, "feet"),
  52152. default: true
  52153. },
  52154. {
  52155. name: "Macro",
  52156. height: math.unit(200, "feet")
  52157. },
  52158. {
  52159. name: "Cosmic",
  52160. height: math.unit(3, "universes")
  52161. },
  52162. ]
  52163. ))
  52164. characterMakers.push(() => makeCharacter(
  52165. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  52166. {
  52167. front: {
  52168. height: math.unit(3, "meters"),
  52169. weight: math.unit(7000, "lb"),
  52170. name: "Front",
  52171. image: {
  52172. source: "./media/characters/core-t/front.svg",
  52173. extra: 5729/4941,
  52174. bottom: 1129/6858
  52175. }
  52176. },
  52177. },
  52178. [
  52179. {
  52180. name: "Big",
  52181. height: math.unit(3, "meters"),
  52182. default: true
  52183. },
  52184. ]
  52185. ))
  52186. characterMakers.push(() => makeCharacter(
  52187. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  52188. {
  52189. normal: {
  52190. height: math.unit(6 + 6/12, "feet"),
  52191. weight: math.unit(275, "lb"),
  52192. name: "Front",
  52193. image: {
  52194. source: "./media/characters/cadbunny/normal.svg",
  52195. extra: 1129/947,
  52196. bottom: 93/1222
  52197. },
  52198. default: true,
  52199. form: "normal"
  52200. },
  52201. gigantamax: {
  52202. height: math.unit(26, "feet"),
  52203. weight: math.unit(16000, "lb"),
  52204. name: "Front",
  52205. image: {
  52206. source: "./media/characters/cadbunny/gigantamax.svg",
  52207. extra: 1133/944,
  52208. bottom: 90/1223
  52209. },
  52210. default: true,
  52211. form: "gigantamax"
  52212. },
  52213. },
  52214. [
  52215. {
  52216. name: "Normal",
  52217. height: math.unit(6 + 6/12, "feet"),
  52218. default: true,
  52219. form: "normal"
  52220. },
  52221. {
  52222. name: "Small",
  52223. height: math.unit(26, "feet"),
  52224. default: true,
  52225. form: "gigantamax"
  52226. },
  52227. {
  52228. name: "Large",
  52229. height: math.unit(78, "feet"),
  52230. form: "gigantamax"
  52231. },
  52232. ],
  52233. {
  52234. "normal": {
  52235. name: "Normal",
  52236. default: true
  52237. },
  52238. "gigantamax": {
  52239. name: "Gigantamax"
  52240. }
  52241. }
  52242. ))
  52243. characterMakers.push(() => makeCharacter(
  52244. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  52245. {
  52246. anthroFront: {
  52247. height: math.unit(8, "feet"),
  52248. weight: math.unit(300, "lb"),
  52249. name: "Front",
  52250. image: {
  52251. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  52252. extra: 1272/1176,
  52253. bottom: 53/1325
  52254. },
  52255. form: "anthro",
  52256. default: true
  52257. },
  52258. feralSide: {
  52259. height: math.unit(4, "feet"),
  52260. weight: math.unit(250, "lb"),
  52261. name: "Side",
  52262. image: {
  52263. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  52264. extra: 731/621,
  52265. bottom: 0/731
  52266. },
  52267. form: "feral",
  52268. default: true
  52269. },
  52270. },
  52271. [
  52272. {
  52273. name: "Regular",
  52274. height: math.unit(8, "feet"),
  52275. form: "anthro"
  52276. },
  52277. {
  52278. name: "Macro",
  52279. height: math.unit(250, "feet"),
  52280. form: "anthro",
  52281. default: true
  52282. },
  52283. {
  52284. name: "Regular",
  52285. height: math.unit(4, "feet"),
  52286. form: "feral"
  52287. },
  52288. {
  52289. name: "Macro",
  52290. height: math.unit(125, "feet"),
  52291. form: "feral",
  52292. default: true
  52293. },
  52294. ],
  52295. {
  52296. "anthro": {
  52297. name: "Anthro",
  52298. default: true
  52299. },
  52300. "feral": {
  52301. name: "Feral",
  52302. },
  52303. }
  52304. ))
  52305. characterMakers.push(() => makeCharacter(
  52306. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  52307. {
  52308. front: {
  52309. height: math.unit(11 + 10/12, "feet"),
  52310. weight: math.unit(1587, "kg"),
  52311. name: "Front",
  52312. image: {
  52313. source: "./media/characters/maple-javira-dragon/front.svg",
  52314. extra: 1136/744,
  52315. bottom: 73/1209
  52316. }
  52317. },
  52318. side: {
  52319. height: math.unit(11 + 10/12, "feet"),
  52320. weight: math.unit(1587, "kg"),
  52321. name: "Side",
  52322. image: {
  52323. source: "./media/characters/maple-javira-dragon/side.svg",
  52324. extra: 712/505,
  52325. bottom: 17/729
  52326. }
  52327. },
  52328. head: {
  52329. height: math.unit(8.05, "feet"),
  52330. name: "Head",
  52331. image: {
  52332. source: "./media/characters/maple-javira-dragon/head.svg",
  52333. extra: 1420/1344,
  52334. bottom: 0/1420
  52335. }
  52336. },
  52337. },
  52338. [
  52339. {
  52340. name: "Normal",
  52341. height: math.unit(11 + 10/12, "feet"),
  52342. default: true
  52343. },
  52344. ]
  52345. ))
  52346. characterMakers.push(() => makeCharacter(
  52347. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  52348. {
  52349. front: {
  52350. height: math.unit(117, "cm"),
  52351. weight: math.unit(50, "kg"),
  52352. name: "Front",
  52353. image: {
  52354. source: "./media/characters/sonia-wyverntail/front.svg",
  52355. extra: 708/592,
  52356. bottom: 25/733
  52357. }
  52358. },
  52359. },
  52360. [
  52361. {
  52362. name: "Normal",
  52363. height: math.unit(117, "cm"),
  52364. default: true
  52365. },
  52366. ]
  52367. ))
  52368. characterMakers.push(() => makeCharacter(
  52369. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  52370. {
  52371. front: {
  52372. height: math.unit(6 + 5/12, "feet"),
  52373. name: "Front",
  52374. image: {
  52375. source: "./media/characters/micah/front.svg",
  52376. extra: 1758/1546,
  52377. bottom: 214/1972
  52378. }
  52379. },
  52380. },
  52381. [
  52382. {
  52383. name: "Normal",
  52384. height: math.unit(6 + 5/12, "feet"),
  52385. default: true
  52386. },
  52387. ]
  52388. ))
  52389. characterMakers.push(() => makeCharacter(
  52390. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  52391. {
  52392. front: {
  52393. height: math.unit(1.75, "meters"),
  52394. weight: math.unit(100, "kg"),
  52395. name: "Front",
  52396. image: {
  52397. source: "./media/characters/zarya/front.svg",
  52398. extra: 741/735,
  52399. bottom: 44/785
  52400. },
  52401. extraAttributes: {
  52402. "tailLength": {
  52403. name: "Tail Length",
  52404. power: 1,
  52405. type: "length",
  52406. base: math.unit(180, "cm")
  52407. },
  52408. "pawLength": {
  52409. name: "Paw Length",
  52410. power: 1,
  52411. type: "length",
  52412. base: math.unit(31, "cm")
  52413. },
  52414. }
  52415. },
  52416. side: {
  52417. height: math.unit(1.75, "meters"),
  52418. weight: math.unit(100, "kg"),
  52419. name: "Side",
  52420. image: {
  52421. source: "./media/characters/zarya/side.svg",
  52422. extra: 776/770,
  52423. bottom: 17/793
  52424. },
  52425. extraAttributes: {
  52426. "tailLength": {
  52427. name: "Tail Length",
  52428. power: 1,
  52429. type: "length",
  52430. base: math.unit(180, "cm")
  52431. },
  52432. "pawLength": {
  52433. name: "Paw Length",
  52434. power: 1,
  52435. type: "length",
  52436. base: math.unit(31, "cm")
  52437. },
  52438. }
  52439. },
  52440. back: {
  52441. height: math.unit(1.75, "meters"),
  52442. weight: math.unit(100, "kg"),
  52443. name: "Back",
  52444. image: {
  52445. source: "./media/characters/zarya/back.svg",
  52446. extra: 741/735,
  52447. bottom: 44/785
  52448. },
  52449. extraAttributes: {
  52450. "tailLength": {
  52451. name: "Tail Length",
  52452. power: 1,
  52453. type: "length",
  52454. base: math.unit(180, "cm")
  52455. },
  52456. "pawLength": {
  52457. name: "Paw Length",
  52458. power: 1,
  52459. type: "length",
  52460. base: math.unit(31, "cm")
  52461. },
  52462. }
  52463. },
  52464. frontNoTail: {
  52465. height: math.unit(1.75, "meters"),
  52466. weight: math.unit(100, "kg"),
  52467. name: "Front (No Tail)",
  52468. image: {
  52469. source: "./media/characters/zarya/front-no-tail.svg",
  52470. extra: 741/735,
  52471. bottom: 44/785
  52472. },
  52473. extraAttributes: {
  52474. "tailLength": {
  52475. name: "Tail Length",
  52476. power: 1,
  52477. type: "length",
  52478. base: math.unit(180, "cm")
  52479. },
  52480. "pawLength": {
  52481. name: "Paw Length",
  52482. power: 1,
  52483. type: "length",
  52484. base: math.unit(31, "cm")
  52485. },
  52486. }
  52487. },
  52488. dressed: {
  52489. height: math.unit(1.75, "meters"),
  52490. weight: math.unit(100, "kg"),
  52491. name: "Dressed",
  52492. image: {
  52493. source: "./media/characters/zarya/dressed.svg",
  52494. extra: 683/672,
  52495. bottom: 79/762
  52496. },
  52497. extraAttributes: {
  52498. "tailLength": {
  52499. name: "Tail Length",
  52500. power: 1,
  52501. type: "length",
  52502. base: math.unit(180, "cm")
  52503. },
  52504. "pawLength": {
  52505. name: "Paw Length",
  52506. power: 1,
  52507. type: "length",
  52508. base: math.unit(31, "cm")
  52509. },
  52510. }
  52511. },
  52512. },
  52513. [
  52514. {
  52515. name: "Micro",
  52516. height: math.unit(5, "cm")
  52517. },
  52518. {
  52519. name: "Normal",
  52520. height: math.unit(1.75, "meters"),
  52521. default: true
  52522. },
  52523. {
  52524. name: "Macro",
  52525. height: math.unit(122, "meters")
  52526. },
  52527. ]
  52528. ))
  52529. characterMakers.push(() => makeCharacter(
  52530. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52531. {
  52532. front: {
  52533. height: math.unit(7.5, "feet"),
  52534. name: "Front",
  52535. image: {
  52536. source: "./media/characters/sven-hatisson/front.svg",
  52537. extra: 917/857,
  52538. bottom: 42/959
  52539. }
  52540. },
  52541. back: {
  52542. height: math.unit(7.5, "feet"),
  52543. name: "Back",
  52544. image: {
  52545. source: "./media/characters/sven-hatisson/back.svg",
  52546. extra: 903/856,
  52547. bottom: 15/918
  52548. }
  52549. },
  52550. },
  52551. [
  52552. {
  52553. name: "Base Height",
  52554. height: math.unit(7.5, "feet")
  52555. },
  52556. {
  52557. name: "Usual Height",
  52558. height: math.unit(13.5, "feet"),
  52559. default: true
  52560. },
  52561. {
  52562. name: "Smaller Macro",
  52563. height: math.unit(85, "feet")
  52564. },
  52565. {
  52566. name: "Moderate Macro",
  52567. height: math.unit(320, "feet")
  52568. },
  52569. {
  52570. name: "Large Macro",
  52571. height: math.unit(1000, "feet")
  52572. },
  52573. {
  52574. name: "Largest Size",
  52575. height: math.unit(2, "miles")
  52576. },
  52577. ]
  52578. ))
  52579. characterMakers.push(() => makeCharacter(
  52580. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52581. {
  52582. side: {
  52583. height: math.unit(1.8, "meters"),
  52584. weight: math.unit(275, "kg"),
  52585. name: "Side",
  52586. image: {
  52587. source: "./media/characters/terra/side.svg",
  52588. extra: 1273/1147,
  52589. bottom: 0/1273
  52590. }
  52591. },
  52592. },
  52593. [
  52594. {
  52595. name: "Normal",
  52596. height: math.unit(16.2, "meters"),
  52597. default: true
  52598. },
  52599. ]
  52600. ))
  52601. characterMakers.push(() => makeCharacter(
  52602. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52603. {
  52604. borzoiFront: {
  52605. height: math.unit(6 + 9/12, "feet"),
  52606. name: "Front",
  52607. image: {
  52608. source: "./media/characters/rae/borzoi-front.svg",
  52609. extra: 1161/1098,
  52610. bottom: 31/1192
  52611. },
  52612. form: "borzoi",
  52613. default: true
  52614. },
  52615. werewolfFront: {
  52616. height: math.unit(8 + 7/12, "feet"),
  52617. name: "Front",
  52618. image: {
  52619. source: "./media/characters/rae/werewolf-front.svg",
  52620. extra: 1411/1334,
  52621. bottom: 127/1538
  52622. },
  52623. form: "werewolf",
  52624. default: true
  52625. },
  52626. },
  52627. [
  52628. {
  52629. name: "Normal",
  52630. height: math.unit(6 + 9/12, "feet"),
  52631. default: true,
  52632. form: "borzoi"
  52633. },
  52634. {
  52635. name: "Normal",
  52636. height: math.unit(8 + 7/12, "feet"),
  52637. default: true,
  52638. form: "werewolf"
  52639. },
  52640. ],
  52641. {
  52642. "borzoi": {
  52643. name: "Borzoi",
  52644. default: true
  52645. },
  52646. "werewolf": {
  52647. name: "Werewolf",
  52648. },
  52649. }
  52650. ))
  52651. characterMakers.push(() => makeCharacter(
  52652. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52653. {
  52654. front: {
  52655. height: math.unit(8 + 7/12, "feet"),
  52656. weight: math.unit(482, "lb"),
  52657. name: "Front",
  52658. image: {
  52659. source: "./media/characters/kit/front.svg",
  52660. extra: 1247/1103,
  52661. bottom: 41/1288
  52662. }
  52663. },
  52664. back: {
  52665. height: math.unit(8 + 7/12, "feet"),
  52666. weight: math.unit(482, "lb"),
  52667. name: "Back",
  52668. image: {
  52669. source: "./media/characters/kit/back.svg",
  52670. extra: 1252/1123,
  52671. bottom: 21/1273
  52672. }
  52673. },
  52674. paw: {
  52675. height: math.unit(1.46, "feet"),
  52676. name: "Paw",
  52677. image: {
  52678. source: "./media/characters/kit/paw.svg"
  52679. }
  52680. },
  52681. },
  52682. [
  52683. {
  52684. name: "Normal",
  52685. height: math.unit(2.61, "meters"),
  52686. default: true
  52687. },
  52688. {
  52689. name: "\"Tall\"",
  52690. height: math.unit(8.21, "meters")
  52691. },
  52692. {
  52693. name: "Tall",
  52694. height: math.unit(19.6, "meters")
  52695. },
  52696. {
  52697. name: "Very Tall",
  52698. height: math.unit(57.91, "meters")
  52699. },
  52700. {
  52701. name: "Semi-Macro",
  52702. height: math.unit(138.64, "meters")
  52703. },
  52704. {
  52705. name: "Macro",
  52706. height: math.unit(831.99, "meters")
  52707. },
  52708. {
  52709. name: "EX-Macro",
  52710. height: math.unit(96451121, "meters")
  52711. },
  52712. {
  52713. name: "S1-Omnipotent",
  52714. height: math.unit(4.42074e+9, "meters")
  52715. },
  52716. {
  52717. name: "S2-Omnipotent",
  52718. height: math.unit(9.42074e+17, "meters")
  52719. },
  52720. {
  52721. name: "Omnipotent",
  52722. height: math.unit(4.23112e+24, "meters")
  52723. },
  52724. {
  52725. name: "Hypergod",
  52726. height: math.unit(5.05176e+27, "meters")
  52727. },
  52728. {
  52729. name: "Hypergod-EX",
  52730. height: math.unit(9.45532e+49, "meters")
  52731. },
  52732. {
  52733. name: "Hypergod-SP",
  52734. height: math.unit(9.45532e+195, "meters")
  52735. },
  52736. ]
  52737. ))
  52738. characterMakers.push(() => makeCharacter(
  52739. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52740. {
  52741. side: {
  52742. height: math.unit(0.6, "meters"),
  52743. weight: math.unit(24, "kg"),
  52744. name: "Side",
  52745. image: {
  52746. source: "./media/characters/celeste/side.svg",
  52747. extra: 810/517,
  52748. bottom: 53/863
  52749. }
  52750. },
  52751. },
  52752. [
  52753. {
  52754. name: "Velociraptor",
  52755. height: math.unit(0.6, "meters"),
  52756. default: true
  52757. },
  52758. {
  52759. name: "Utahraptor",
  52760. height: math.unit(1.8, "meters")
  52761. },
  52762. {
  52763. name: "Gallimimus",
  52764. height: math.unit(4.0, "meters")
  52765. },
  52766. {
  52767. name: "Large",
  52768. height: math.unit(20, "meters")
  52769. },
  52770. {
  52771. name: "Planetary",
  52772. height: math.unit(50, "megameters")
  52773. },
  52774. {
  52775. name: "Stellar",
  52776. height: math.unit(1.5, "gigameters")
  52777. },
  52778. {
  52779. name: "Galactic",
  52780. height: math.unit(100, "exameters")
  52781. },
  52782. ]
  52783. ))
  52784. characterMakers.push(() => makeCharacter(
  52785. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52786. {
  52787. front: {
  52788. height: math.unit(6, "feet"),
  52789. weight: math.unit(210, "lb"),
  52790. name: "Front",
  52791. image: {
  52792. source: "./media/characters/glacia/front.svg",
  52793. extra: 958/901,
  52794. bottom: 45/1003
  52795. }
  52796. },
  52797. },
  52798. [
  52799. {
  52800. name: "Macro",
  52801. height: math.unit(1000, "meters"),
  52802. default: true
  52803. },
  52804. ]
  52805. ))
  52806. characterMakers.push(() => makeCharacter(
  52807. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52808. {
  52809. front: {
  52810. height: math.unit(4, "meters"),
  52811. name: "Front",
  52812. image: {
  52813. source: "./media/characters/giri/front.svg",
  52814. extra: 966/894,
  52815. bottom: 21/987
  52816. }
  52817. },
  52818. },
  52819. [
  52820. {
  52821. name: "Normal",
  52822. height: math.unit(4, "meters"),
  52823. default: true
  52824. },
  52825. ]
  52826. ))
  52827. characterMakers.push(() => makeCharacter(
  52828. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52829. {
  52830. back: {
  52831. height: math.unit(4, "feet"),
  52832. weight: math.unit(37, "lb"),
  52833. name: "Back",
  52834. image: {
  52835. source: "./media/characters/tin/back.svg",
  52836. extra: 845/780,
  52837. bottom: 28/873
  52838. }
  52839. },
  52840. },
  52841. [
  52842. {
  52843. name: "Normal",
  52844. height: math.unit(4, "feet"),
  52845. default: true
  52846. },
  52847. ]
  52848. ))
  52849. characterMakers.push(() => makeCharacter(
  52850. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52851. {
  52852. front: {
  52853. height: math.unit(25, "feet"),
  52854. name: "Front",
  52855. image: {
  52856. source: "./media/characters/cadenza-vivace/front.svg",
  52857. extra: 1842/1578,
  52858. bottom: 30/1872
  52859. }
  52860. },
  52861. },
  52862. [
  52863. {
  52864. name: "Macro",
  52865. height: math.unit(25, "feet"),
  52866. default: true
  52867. },
  52868. ]
  52869. ))
  52870. characterMakers.push(() => makeCharacter(
  52871. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52872. {
  52873. front: {
  52874. height: math.unit(10, "feet"),
  52875. weight: math.unit(625, "kg"),
  52876. name: "Front",
  52877. image: {
  52878. source: "./media/characters/zain/front.svg",
  52879. extra: 1682/1498,
  52880. bottom: 223/1905
  52881. }
  52882. },
  52883. back: {
  52884. height: math.unit(10, "feet"),
  52885. weight: math.unit(625, "kg"),
  52886. name: "Back",
  52887. image: {
  52888. source: "./media/characters/zain/back.svg",
  52889. extra: 1814/1657,
  52890. bottom: 152/1966
  52891. }
  52892. },
  52893. head: {
  52894. height: math.unit(10, "feet"),
  52895. weight: math.unit(625, "kg"),
  52896. name: "Head",
  52897. image: {
  52898. source: "./media/characters/zain/head.svg",
  52899. extra: 1059/762,
  52900. bottom: 0/1059
  52901. }
  52902. },
  52903. },
  52904. [
  52905. {
  52906. name: "Normal",
  52907. height: math.unit(10, "feet"),
  52908. default: true
  52909. },
  52910. ]
  52911. ))
  52912. characterMakers.push(() => makeCharacter(
  52913. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52914. {
  52915. front: {
  52916. height: math.unit(6 + 5/12, "feet"),
  52917. weight: math.unit(750, "lb"),
  52918. name: "Front",
  52919. image: {
  52920. source: "./media/characters/ruchex/front.svg",
  52921. extra: 877/820,
  52922. bottom: 17/894
  52923. },
  52924. extraAttributes: {
  52925. "width": {
  52926. name: "Width",
  52927. power: 1,
  52928. type: "length",
  52929. base: math.unit(4.757, "feet")
  52930. },
  52931. }
  52932. },
  52933. },
  52934. [
  52935. {
  52936. name: "Normal",
  52937. height: math.unit(6 + 5/12, "feet"),
  52938. default: true
  52939. },
  52940. ]
  52941. ))
  52942. characterMakers.push(() => makeCharacter(
  52943. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52944. {
  52945. dressedFront: {
  52946. height: math.unit(191, "cm"),
  52947. weight: math.unit(80, "kg"),
  52948. name: "Front",
  52949. image: {
  52950. source: "./media/characters/buster/dressed-front.svg",
  52951. extra: 1022/973,
  52952. bottom: 69/1091
  52953. }
  52954. },
  52955. dressedBack: {
  52956. height: math.unit(191, "cm"),
  52957. weight: math.unit(80, "kg"),
  52958. name: "Back",
  52959. image: {
  52960. source: "./media/characters/buster/dressed-back.svg",
  52961. extra: 1018/970,
  52962. bottom: 55/1073
  52963. }
  52964. },
  52965. nudeFront: {
  52966. height: math.unit(191, "cm"),
  52967. weight: math.unit(80, "kg"),
  52968. name: "Front (Nude)",
  52969. image: {
  52970. source: "./media/characters/buster/nude-front.svg",
  52971. extra: 1022/973,
  52972. bottom: 69/1091
  52973. }
  52974. },
  52975. nudeBack: {
  52976. height: math.unit(191, "cm"),
  52977. weight: math.unit(80, "kg"),
  52978. name: "Back (Nude)",
  52979. image: {
  52980. source: "./media/characters/buster/nude-back.svg",
  52981. extra: 1018/970,
  52982. bottom: 55/1073
  52983. }
  52984. },
  52985. dick: {
  52986. height: math.unit(2.59, "feet"),
  52987. name: "Dick",
  52988. image: {
  52989. source: "./media/characters/buster/dick.svg"
  52990. }
  52991. },
  52992. ass: {
  52993. height: math.unit(1.2, "feet"),
  52994. name: "Ass",
  52995. image: {
  52996. source: "./media/characters/buster/ass.svg"
  52997. }
  52998. },
  52999. },
  53000. [
  53001. {
  53002. name: "Normal",
  53003. height: math.unit(191, "cm"),
  53004. default: true
  53005. },
  53006. ]
  53007. ))
  53008. characterMakers.push(() => makeCharacter(
  53009. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  53010. {
  53011. side: {
  53012. height: math.unit(8.1, "feet"),
  53013. weight: math.unit(3500, "lb"),
  53014. name: "Side",
  53015. image: {
  53016. source: "./media/characters/sonya/side.svg",
  53017. extra: 1730/1317,
  53018. bottom: 86/1816
  53019. }
  53020. },
  53021. },
  53022. [
  53023. {
  53024. name: "Normal",
  53025. height: math.unit(8.1, "feet"),
  53026. default: true
  53027. },
  53028. ]
  53029. ))
  53030. characterMakers.push(() => makeCharacter(
  53031. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  53032. {
  53033. front: {
  53034. height: math.unit(6, "feet"),
  53035. weight: math.unit(150, "lb"),
  53036. name: "Front",
  53037. image: {
  53038. source: "./media/characters/cadence-andrysiak/front.svg",
  53039. extra: 1164/1121,
  53040. bottom: 60/1224
  53041. }
  53042. },
  53043. back: {
  53044. height: math.unit(6, "feet"),
  53045. weight: math.unit(150, "lb"),
  53046. name: "Back",
  53047. image: {
  53048. source: "./media/characters/cadence-andrysiak/back.svg",
  53049. extra: 1200/1165,
  53050. bottom: 9/1209
  53051. }
  53052. },
  53053. dressed: {
  53054. height: math.unit(6, "feet"),
  53055. weight: math.unit(150, "lb"),
  53056. name: "Dressed",
  53057. image: {
  53058. source: "./media/characters/cadence-andrysiak/dressed.svg",
  53059. extra: 1164/1121,
  53060. bottom: 60/1224
  53061. }
  53062. },
  53063. },
  53064. [
  53065. {
  53066. name: "Micro",
  53067. height: math.unit(1, "mm")
  53068. },
  53069. {
  53070. name: "Normal",
  53071. height: math.unit(6, "feet"),
  53072. default: true
  53073. },
  53074. ]
  53075. ))
  53076. characterMakers.push(() => makeCharacter(
  53077. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  53078. {
  53079. front: {
  53080. height: math.unit(60, "inches"),
  53081. weight: math.unit(16, "lb"),
  53082. preyCapacity: math.unit(80, "liters"),
  53083. name: "Front",
  53084. image: {
  53085. source: "./media/characters/penny-lynx/front.svg",
  53086. extra: 1959/1769,
  53087. bottom: 49/2008
  53088. }
  53089. },
  53090. },
  53091. [
  53092. {
  53093. name: "Nokia",
  53094. height: math.unit(2, "inches")
  53095. },
  53096. {
  53097. name: "Desktop",
  53098. height: math.unit(24, "inches")
  53099. },
  53100. {
  53101. name: "TV",
  53102. height: math.unit(60, "inches")
  53103. },
  53104. {
  53105. name: "Jumbotron",
  53106. height: math.unit(12, "feet")
  53107. },
  53108. {
  53109. name: "Billboard",
  53110. height: math.unit(48, "feet"),
  53111. default: true
  53112. },
  53113. {
  53114. name: "IMAX",
  53115. height: math.unit(96, "feet")
  53116. },
  53117. {
  53118. name: "SINGULARITY",
  53119. height: math.unit(864938, "miles")
  53120. },
  53121. ]
  53122. ))
  53123. characterMakers.push(() => makeCharacter(
  53124. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  53125. {
  53126. front: {
  53127. height: math.unit(5 + 4/12, "feet"),
  53128. weight: math.unit(230, "lb"),
  53129. name: "Front",
  53130. image: {
  53131. source: "./media/characters/sukebe/front.svg",
  53132. extra: 2130/2038,
  53133. bottom: 90/2220
  53134. }
  53135. },
  53136. back: {
  53137. height: math.unit(3.48, "feet"),
  53138. weight: math.unit(230, "lb"),
  53139. name: "Back",
  53140. image: {
  53141. source: "./media/characters/sukebe/back.svg",
  53142. extra: 1670/1604,
  53143. bottom: 0/1670
  53144. }
  53145. },
  53146. },
  53147. [
  53148. {
  53149. name: "Normal",
  53150. height: math.unit(5 + 4/12, "feet"),
  53151. default: true
  53152. },
  53153. ]
  53154. ))
  53155. characterMakers.push(() => makeCharacter(
  53156. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  53157. {
  53158. front: {
  53159. height: math.unit(6, "feet"),
  53160. name: "Front",
  53161. image: {
  53162. source: "./media/characters/nylla/front.svg",
  53163. extra: 1868/1699,
  53164. bottom: 97/1965
  53165. }
  53166. },
  53167. back: {
  53168. height: math.unit(6, "feet"),
  53169. name: "Back",
  53170. image: {
  53171. source: "./media/characters/nylla/back.svg",
  53172. extra: 1889/1712,
  53173. bottom: 93/1982
  53174. }
  53175. },
  53176. frontNsfw: {
  53177. height: math.unit(6, "feet"),
  53178. name: "Front (NSFW)",
  53179. image: {
  53180. source: "./media/characters/nylla/front-nsfw.svg",
  53181. extra: 1868/1699,
  53182. bottom: 97/1965
  53183. },
  53184. extraAttributes: {
  53185. "dickLength": {
  53186. name: "Dick Length",
  53187. power: 1,
  53188. type: "length",
  53189. base: math.unit(1.4, "feet")
  53190. },
  53191. "cumVolume": {
  53192. name: "Cum Volume",
  53193. power: 3,
  53194. type: "volume",
  53195. base: math.unit(100, "mL")
  53196. },
  53197. }
  53198. },
  53199. backNsfw: {
  53200. height: math.unit(6, "feet"),
  53201. name: "Back (NSFW)",
  53202. image: {
  53203. source: "./media/characters/nylla/back-nsfw.svg",
  53204. extra: 1889/1712,
  53205. bottom: 93/1982
  53206. }
  53207. },
  53208. maw: {
  53209. height: math.unit(2.10, "feet"),
  53210. name: "Maw",
  53211. image: {
  53212. source: "./media/characters/nylla/maw.svg"
  53213. }
  53214. },
  53215. paws: {
  53216. height: math.unit(2.06, "feet"),
  53217. name: "Paws",
  53218. image: {
  53219. source: "./media/characters/nylla/paws.svg"
  53220. }
  53221. },
  53222. muzzle: {
  53223. height: math.unit(0.61, "feet"),
  53224. name: "Muzzle",
  53225. image: {
  53226. source: "./media/characters/nylla/muzzle.svg"
  53227. }
  53228. },
  53229. sheath: {
  53230. height: math.unit(1.305, "feet"),
  53231. name: "Sheath",
  53232. image: {
  53233. source: "./media/characters/nylla/sheath.svg"
  53234. }
  53235. },
  53236. },
  53237. [
  53238. {
  53239. name: "Micro",
  53240. height: math.unit(7.5, "inches")
  53241. },
  53242. {
  53243. name: "Normal",
  53244. height: math.unit(7, "feet"),
  53245. default: true
  53246. },
  53247. {
  53248. name: "Macro",
  53249. height: math.unit(60, "feet")
  53250. },
  53251. {
  53252. name: "Mega",
  53253. height: math.unit(200, "feet")
  53254. },
  53255. ]
  53256. ))
  53257. characterMakers.push(() => makeCharacter(
  53258. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  53259. {
  53260. front: {
  53261. height: math.unit(10, "feet"),
  53262. weight: math.unit(2300, "lb"),
  53263. name: "Front",
  53264. image: {
  53265. source: "./media/characters/hunt3r/front.svg",
  53266. extra: 1909/1742,
  53267. bottom: 46/1955
  53268. }
  53269. },
  53270. },
  53271. [
  53272. {
  53273. name: "Normal",
  53274. height: math.unit(10, "feet"),
  53275. default: true
  53276. },
  53277. ]
  53278. ))
  53279. characterMakers.push(() => makeCharacter(
  53280. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  53281. {
  53282. dressed: {
  53283. height: math.unit(11, "feet"),
  53284. weight: math.unit(18500, "lb"),
  53285. preyCapacity: math.unit(9, "people"),
  53286. name: "Dressed",
  53287. image: {
  53288. source: "./media/characters/cylphis/dressed.svg",
  53289. extra: 1028/1003,
  53290. bottom: 75/1103
  53291. },
  53292. },
  53293. undressed: {
  53294. height: math.unit(11, "feet"),
  53295. weight: math.unit(18500, "lb"),
  53296. preyCapacity: math.unit(9, "people"),
  53297. name: "Undressed",
  53298. image: {
  53299. source: "./media/characters/cylphis/undressed.svg",
  53300. extra: 1028/1003,
  53301. bottom: 75/1103
  53302. }
  53303. },
  53304. full: {
  53305. height: math.unit(11, "feet"),
  53306. weight: math.unit(18500 + 150*9, "lb"),
  53307. preyCapacity: math.unit(9, "people"),
  53308. name: "Full",
  53309. image: {
  53310. source: "./media/characters/cylphis/full.svg",
  53311. extra: 1028/1003,
  53312. bottom: 75/1103
  53313. }
  53314. },
  53315. },
  53316. [
  53317. {
  53318. name: "Small",
  53319. height: math.unit(8, "feet")
  53320. },
  53321. {
  53322. name: "Normal",
  53323. height: math.unit(11, "feet"),
  53324. default: true
  53325. },
  53326. ]
  53327. ))
  53328. characterMakers.push(() => makeCharacter(
  53329. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  53330. {
  53331. front: {
  53332. height: math.unit(2 + 7/12, "feet"),
  53333. name: "Front",
  53334. image: {
  53335. source: "./media/characters/orishan/front.svg",
  53336. extra: 1058/1023,
  53337. bottom: 23/1081
  53338. }
  53339. },
  53340. back: {
  53341. height: math.unit(2 + 7/12, "feet"),
  53342. name: "Back",
  53343. image: {
  53344. source: "./media/characters/orishan/back.svg",
  53345. extra: 1058/1023,
  53346. bottom: 23/1081
  53347. }
  53348. },
  53349. },
  53350. [
  53351. {
  53352. name: "Micro",
  53353. height: math.unit(2, "cm")
  53354. },
  53355. {
  53356. name: "Normal",
  53357. height: math.unit(2 + 7/12, "feet"),
  53358. default: true
  53359. },
  53360. ]
  53361. ))
  53362. characterMakers.push(() => makeCharacter(
  53363. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  53364. {
  53365. front: {
  53366. height: math.unit(3, "meters"),
  53367. weight: math.unit(508, "kg"),
  53368. name: "Front",
  53369. image: {
  53370. source: "./media/characters/seranis/front.svg",
  53371. extra: 1478/1454,
  53372. bottom: 41/1519
  53373. }
  53374. },
  53375. },
  53376. [
  53377. {
  53378. name: "Normal",
  53379. height: math.unit(3, "meters"),
  53380. default: true
  53381. },
  53382. {
  53383. name: "Macro",
  53384. height: math.unit(108, "meters")
  53385. },
  53386. {
  53387. name: "Megamacro",
  53388. height: math.unit(1250, "meters")
  53389. },
  53390. ]
  53391. ))
  53392. characterMakers.push(() => makeCharacter(
  53393. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  53394. {
  53395. undressed: {
  53396. height: math.unit(5 + 3/12, "feet"),
  53397. name: "Undressed",
  53398. image: {
  53399. source: "./media/characters/ankou/undressed.svg",
  53400. extra: 1301/1213,
  53401. bottom: 87/1388
  53402. }
  53403. },
  53404. dressed: {
  53405. height: math.unit(5 + 3/12, "feet"),
  53406. name: "Dressed",
  53407. image: {
  53408. source: "./media/characters/ankou/dressed.svg",
  53409. extra: 1301/1213,
  53410. bottom: 87/1388
  53411. }
  53412. },
  53413. head: {
  53414. height: math.unit(1.61, "feet"),
  53415. name: "Head",
  53416. image: {
  53417. source: "./media/characters/ankou/head.svg"
  53418. }
  53419. },
  53420. },
  53421. [
  53422. {
  53423. name: "Normal",
  53424. height: math.unit(5 + 3/12, "feet"),
  53425. default: true
  53426. },
  53427. ]
  53428. ))
  53429. characterMakers.push(() => makeCharacter(
  53430. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  53431. {
  53432. side: {
  53433. height: math.unit(6 + 3/12, "feet"),
  53434. weight: math.unit(200, "kg"),
  53435. name: "Side",
  53436. image: {
  53437. source: "./media/characters/juniper-skunktaur/side.svg",
  53438. extra: 1574/1229,
  53439. bottom: 38/1612
  53440. }
  53441. },
  53442. front: {
  53443. height: math.unit(6 + 3/12, "feet"),
  53444. weight: math.unit(200, "kg"),
  53445. name: "Front",
  53446. image: {
  53447. source: "./media/characters/juniper-skunktaur/front.svg",
  53448. extra: 1337/1278,
  53449. bottom: 22/1359
  53450. }
  53451. },
  53452. back: {
  53453. height: math.unit(6 + 3/12, "feet"),
  53454. weight: math.unit(200, "kg"),
  53455. name: "Back",
  53456. image: {
  53457. source: "./media/characters/juniper-skunktaur/back.svg",
  53458. extra: 1618/1273,
  53459. bottom: 13/1631
  53460. }
  53461. },
  53462. top: {
  53463. height: math.unit(2.62, "feet"),
  53464. weight: math.unit(200, "kg"),
  53465. name: "Top",
  53466. image: {
  53467. source: "./media/characters/juniper-skunktaur/top.svg"
  53468. }
  53469. },
  53470. },
  53471. [
  53472. {
  53473. name: "Normal",
  53474. height: math.unit(6 + 3/12, "feet"),
  53475. default: true
  53476. },
  53477. ]
  53478. ))
  53479. characterMakers.push(() => makeCharacter(
  53480. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  53481. {
  53482. front: {
  53483. height: math.unit(20.5, "feet"),
  53484. name: "Front",
  53485. image: {
  53486. source: "./media/characters/rei/front.svg",
  53487. extra: 1349/1195,
  53488. bottom: 31/1380
  53489. }
  53490. },
  53491. back: {
  53492. height: math.unit(20.5, "feet"),
  53493. name: "Back",
  53494. image: {
  53495. source: "./media/characters/rei/back.svg",
  53496. extra: 1358/1204,
  53497. bottom: 22/1380
  53498. }
  53499. },
  53500. pawsDigi: {
  53501. height: math.unit(3.45, "feet"),
  53502. name: "Paws (Digi)",
  53503. image: {
  53504. source: "./media/characters/rei/paws-digi.svg"
  53505. }
  53506. },
  53507. pawsPlanti: {
  53508. height: math.unit(3.45, "feet"),
  53509. name: "Paws (Planti)",
  53510. image: {
  53511. source: "./media/characters/rei/paws-planti.svg"
  53512. }
  53513. },
  53514. },
  53515. [
  53516. {
  53517. name: "Normal",
  53518. height: math.unit(20.5, "feet"),
  53519. default: true
  53520. },
  53521. ]
  53522. ))
  53523. characterMakers.push(() => makeCharacter(
  53524. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53525. {
  53526. front: {
  53527. height: math.unit(5 + 11/12, "feet"),
  53528. name: "Front",
  53529. image: {
  53530. source: "./media/characters/carina/front.svg",
  53531. extra: 1720/1449,
  53532. bottom: 14/1734
  53533. }
  53534. },
  53535. back: {
  53536. height: math.unit(5 + 11/12, "feet"),
  53537. name: "Back",
  53538. image: {
  53539. source: "./media/characters/carina/back.svg",
  53540. extra: 1493/1445,
  53541. bottom: 17/1510
  53542. }
  53543. },
  53544. paw: {
  53545. height: math.unit(0.92, "feet"),
  53546. name: "Paw",
  53547. image: {
  53548. source: "./media/characters/carina/paw.svg"
  53549. }
  53550. },
  53551. },
  53552. [
  53553. {
  53554. name: "Normal",
  53555. height: math.unit(5 + 11/12, "feet"),
  53556. default: true
  53557. },
  53558. ]
  53559. ))
  53560. characterMakers.push(() => makeCharacter(
  53561. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53562. {
  53563. normal_front: {
  53564. height: math.unit(4.88, "meters"),
  53565. name: "Front",
  53566. image: {
  53567. source: "./media/characters/maya/normal-front.svg",
  53568. extra: 1222/1145,
  53569. bottom: 57/1279
  53570. },
  53571. form: "normal",
  53572. default: true
  53573. },
  53574. monstrous_front: {
  53575. height: math.unit(10, "meters"),
  53576. name: "Front",
  53577. image: {
  53578. source: "./media/characters/maya/monstrous-front.svg",
  53579. extra: 1523/1109,
  53580. bottom: 113/1636
  53581. },
  53582. form: "monstrous",
  53583. extraAttributes: {
  53584. "swallowSize": {
  53585. name: "Tailmaw Bite Size",
  53586. power: 3,
  53587. type: "volume",
  53588. base: math.unit(43000, "liters")
  53589. },
  53590. }
  53591. },
  53592. taur_front: {
  53593. height: math.unit(10, "meters"),
  53594. name: "Front",
  53595. image: {
  53596. source: "./media/characters/maya/taur-front.svg",
  53597. extra: 743/506,
  53598. bottom: 101/844
  53599. },
  53600. form: "taur",
  53601. },
  53602. },
  53603. [
  53604. {
  53605. name: "Normal",
  53606. height: math.unit(4.88, "meters"),
  53607. default: true,
  53608. form: "normal"
  53609. },
  53610. {
  53611. name: "Macro",
  53612. height: math.unit(38.1, "meters"),
  53613. form: "normal"
  53614. },
  53615. {
  53616. name: "Macro+",
  53617. height: math.unit(152.4, "meters"),
  53618. form: "normal"
  53619. },
  53620. {
  53621. name: "Macro++",
  53622. height: math.unit(16.09, "km"),
  53623. form: "normal"
  53624. },
  53625. {
  53626. name: "Mega-macro",
  53627. height: math.unit(700, "megameters"),
  53628. form: "normal"
  53629. },
  53630. {
  53631. name: "Satiated",
  53632. height: math.unit(10, "meters"),
  53633. default: true,
  53634. form: "monstrous"
  53635. },
  53636. {
  53637. name: "Hungry",
  53638. height: math.unit(75, "meters"),
  53639. form: "monstrous"
  53640. },
  53641. {
  53642. name: "Ravenous",
  53643. height: math.unit(500, "meters"),
  53644. form: "monstrous"
  53645. },
  53646. {
  53647. name: "\"Normal\"",
  53648. height: math.unit(10, "meters"),
  53649. form: "taur"
  53650. },
  53651. {
  53652. name: "Macro",
  53653. height: math.unit(50, "meters"),
  53654. form: "taur"
  53655. },
  53656. ],
  53657. {
  53658. "normal": {
  53659. name: "Normal",
  53660. default: true
  53661. },
  53662. "monstrous": {
  53663. name: "Monstrous",
  53664. },
  53665. "taur": {
  53666. name: "Taur",
  53667. },
  53668. }
  53669. ))
  53670. characterMakers.push(() => makeCharacter(
  53671. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53672. {
  53673. front: {
  53674. height: math.unit(6 + 2/12, "feet"),
  53675. weight: math.unit(500, "lb"),
  53676. preyCapacity: math.unit(4, "people"),
  53677. name: "Front",
  53678. image: {
  53679. source: "./media/characters/yepir/front.svg"
  53680. }
  53681. },
  53682. side: {
  53683. height: math.unit(6 + 2/12, "feet"),
  53684. weight: math.unit(500, "lb"),
  53685. preyCapacity: math.unit(4, "people"),
  53686. name: "Side",
  53687. image: {
  53688. source: "./media/characters/yepir/side.svg"
  53689. }
  53690. },
  53691. paw: {
  53692. height: math.unit(1.05, "feet"),
  53693. name: "Paw",
  53694. image: {
  53695. source: "./media/characters/yepir/paw.svg"
  53696. }
  53697. },
  53698. },
  53699. [
  53700. {
  53701. name: "Normal",
  53702. height: math.unit(6 + 2/12, "feet"),
  53703. default: true
  53704. },
  53705. ]
  53706. ))
  53707. characterMakers.push(() => makeCharacter(
  53708. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53709. {
  53710. front: {
  53711. height: math.unit(5 + 4/12, "feet"),
  53712. name: "Front",
  53713. image: {
  53714. source: "./media/characters/russec/front.svg",
  53715. extra: 1926/1626,
  53716. bottom: 72/1998
  53717. }
  53718. },
  53719. back: {
  53720. height: math.unit(5 + 4/12, "feet"),
  53721. name: "Back",
  53722. image: {
  53723. source: "./media/characters/russec/back.svg",
  53724. extra: 1910/1591,
  53725. bottom: 48/1958
  53726. }
  53727. },
  53728. },
  53729. [
  53730. {
  53731. name: "Small",
  53732. height: math.unit(5 + 4/12, "feet")
  53733. },
  53734. {
  53735. name: "Normal",
  53736. height: math.unit(72, "feet"),
  53737. default: true
  53738. },
  53739. ]
  53740. ))
  53741. characterMakers.push(() => makeCharacter(
  53742. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53743. {
  53744. side: {
  53745. height: math.unit(12, "feet"),
  53746. name: "Side",
  53747. image: {
  53748. source: "./media/characters/cianus/side.svg",
  53749. extra: 808/526,
  53750. bottom: 61/869
  53751. }
  53752. },
  53753. },
  53754. [
  53755. {
  53756. name: "Normal",
  53757. height: math.unit(12, "feet"),
  53758. default: true
  53759. },
  53760. ]
  53761. ))
  53762. characterMakers.push(() => makeCharacter(
  53763. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53764. {
  53765. front: {
  53766. height: math.unit(9 + 6/12, "feet"),
  53767. weight: math.unit(300, "lb"),
  53768. name: "Front",
  53769. image: {
  53770. source: "./media/characters/ahab/front.svg",
  53771. extra: 1897/1868,
  53772. bottom: 121/2018
  53773. }
  53774. },
  53775. frontNsfw: {
  53776. height: math.unit(9 + 6/12, "feet"),
  53777. weight: math.unit(300, "lb"),
  53778. name: "Front-nsfw",
  53779. image: {
  53780. source: "./media/characters/ahab/front-nsfw.svg",
  53781. extra: 1897/1868,
  53782. bottom: 121/2018
  53783. }
  53784. },
  53785. },
  53786. [
  53787. {
  53788. name: "Normal",
  53789. height: math.unit(9 + 6/12, "feet")
  53790. },
  53791. {
  53792. name: "Macro",
  53793. height: math.unit(657, "feet"),
  53794. default: true
  53795. },
  53796. ]
  53797. ))
  53798. characterMakers.push(() => makeCharacter(
  53799. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53800. {
  53801. front: {
  53802. height: math.unit(2.69, "meters"),
  53803. weight: math.unit(132, "kg"),
  53804. name: "Front",
  53805. image: {
  53806. source: "./media/characters/aarkus/front.svg",
  53807. extra: 1400/1231,
  53808. bottom: 34/1434
  53809. }
  53810. },
  53811. back: {
  53812. height: math.unit(2.69, "meters"),
  53813. weight: math.unit(132, "kg"),
  53814. name: "Back",
  53815. image: {
  53816. source: "./media/characters/aarkus/back.svg",
  53817. extra: 1381/1218,
  53818. bottom: 30/1411
  53819. }
  53820. },
  53821. frontNsfw: {
  53822. height: math.unit(2.69, "meters"),
  53823. weight: math.unit(132, "kg"),
  53824. name: "Front (NSFW)",
  53825. image: {
  53826. source: "./media/characters/aarkus/front-nsfw.svg",
  53827. extra: 1400/1231,
  53828. bottom: 34/1434
  53829. }
  53830. },
  53831. foot: {
  53832. height: math.unit(1.45, "feet"),
  53833. name: "Foot",
  53834. image: {
  53835. source: "./media/characters/aarkus/foot.svg"
  53836. }
  53837. },
  53838. head: {
  53839. height: math.unit(2.85, "feet"),
  53840. name: "Head",
  53841. image: {
  53842. source: "./media/characters/aarkus/head.svg"
  53843. }
  53844. },
  53845. headAlt: {
  53846. height: math.unit(3.07, "feet"),
  53847. name: "Head (Alt)",
  53848. image: {
  53849. source: "./media/characters/aarkus/head-alt.svg"
  53850. }
  53851. },
  53852. mouth: {
  53853. height: math.unit(1.25, "feet"),
  53854. name: "Mouth",
  53855. image: {
  53856. source: "./media/characters/aarkus/mouth.svg"
  53857. }
  53858. },
  53859. dick: {
  53860. height: math.unit(1.77, "feet"),
  53861. name: "Dick",
  53862. image: {
  53863. source: "./media/characters/aarkus/dick.svg"
  53864. }
  53865. },
  53866. },
  53867. [
  53868. {
  53869. name: "Normal",
  53870. height: math.unit(2.69, "meters"),
  53871. default: true
  53872. },
  53873. {
  53874. name: "Macro",
  53875. height: math.unit(269, "meters")
  53876. },
  53877. {
  53878. name: "Macro+",
  53879. height: math.unit(672.5, "meters")
  53880. },
  53881. {
  53882. name: "Megamacro",
  53883. height: math.unit(2.017, "km")
  53884. },
  53885. ]
  53886. ))
  53887. characterMakers.push(() => makeCharacter(
  53888. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53889. {
  53890. front: {
  53891. height: math.unit(23.47, "cm"),
  53892. weight: math.unit(600, "grams"),
  53893. name: "Front",
  53894. image: {
  53895. source: "./media/characters/diode/front.svg",
  53896. extra: 1778/1396,
  53897. bottom: 95/1873
  53898. }
  53899. },
  53900. side: {
  53901. height: math.unit(23.47, "cm"),
  53902. weight: math.unit(600, "grams"),
  53903. name: "Side",
  53904. image: {
  53905. source: "./media/characters/diode/side.svg",
  53906. extra: 1831/1404,
  53907. bottom: 86/1917
  53908. }
  53909. },
  53910. wings: {
  53911. height: math.unit(0.683, "feet"),
  53912. name: "Wings",
  53913. image: {
  53914. source: "./media/characters/diode/wings.svg"
  53915. }
  53916. },
  53917. },
  53918. [
  53919. {
  53920. name: "Normal",
  53921. height: math.unit(23.47, "cm"),
  53922. default: true
  53923. },
  53924. ]
  53925. ))
  53926. characterMakers.push(() => makeCharacter(
  53927. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53928. {
  53929. front: {
  53930. height: math.unit(6 + 3/12, "feet"),
  53931. weight: math.unit(250, "lb"),
  53932. name: "Front",
  53933. image: {
  53934. source: "./media/characters/reika/front.svg",
  53935. extra: 1120/1078,
  53936. bottom: 86/1206
  53937. }
  53938. },
  53939. },
  53940. [
  53941. {
  53942. name: "Normal",
  53943. height: math.unit(6 + 3/12, "feet"),
  53944. default: true
  53945. },
  53946. ]
  53947. ))
  53948. characterMakers.push(() => makeCharacter(
  53949. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53950. {
  53951. front: {
  53952. height: math.unit(16 + 8/12, "feet"),
  53953. weight: math.unit(9000, "lb"),
  53954. name: "Front",
  53955. image: {
  53956. source: "./media/characters/lokuto-takama/front.svg",
  53957. extra: 1774/1632,
  53958. bottom: 147/1921
  53959. },
  53960. extraAttributes: {
  53961. "bustWidth": {
  53962. name: "Bust Width",
  53963. power: 1,
  53964. type: "length",
  53965. base: math.unit(2.4, "meters")
  53966. },
  53967. "breastWeight": {
  53968. name: "Breast Weight",
  53969. power: 3,
  53970. type: "mass",
  53971. base: math.unit(1000, "kg")
  53972. },
  53973. }
  53974. },
  53975. },
  53976. [
  53977. {
  53978. name: "Normal",
  53979. height: math.unit(16 + 8/12, "feet"),
  53980. default: true
  53981. },
  53982. ]
  53983. ))
  53984. characterMakers.push(() => makeCharacter(
  53985. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53986. {
  53987. front: {
  53988. height: math.unit(10, "cm"),
  53989. weight: math.unit(850, "grams"),
  53990. name: "Front",
  53991. image: {
  53992. source: "./media/characters/owak-bone/front.svg",
  53993. extra: 1965/1801,
  53994. bottom: 31/1996
  53995. }
  53996. },
  53997. },
  53998. [
  53999. {
  54000. name: "Normal",
  54001. height: math.unit(10, "cm"),
  54002. default: true
  54003. },
  54004. ]
  54005. ))
  54006. characterMakers.push(() => makeCharacter(
  54007. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  54008. {
  54009. front: {
  54010. height: math.unit(2 + 6/12, "feet"),
  54011. weight: math.unit(9, "lb"),
  54012. name: "Front",
  54013. image: {
  54014. source: "./media/characters/muffin/front.svg",
  54015. extra: 1220/1195,
  54016. bottom: 84/1304
  54017. }
  54018. },
  54019. },
  54020. [
  54021. {
  54022. name: "Normal",
  54023. height: math.unit(2 + 6/12, "feet"),
  54024. default: true
  54025. },
  54026. ]
  54027. ))
  54028. characterMakers.push(() => makeCharacter(
  54029. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  54030. {
  54031. front: {
  54032. height: math.unit(7, "feet"),
  54033. name: "Front",
  54034. image: {
  54035. source: "./media/characters/chimera/front.svg",
  54036. extra: 1752/1614,
  54037. bottom: 68/1820
  54038. }
  54039. },
  54040. },
  54041. [
  54042. {
  54043. name: "Normal",
  54044. height: math.unit(7, "feet")
  54045. },
  54046. {
  54047. name: "Gigamacro",
  54048. height: math.unit(2.9, "gigameters"),
  54049. default: true
  54050. },
  54051. {
  54052. name: "Universal",
  54053. height: math.unit(1.56e26, "yottameters")
  54054. },
  54055. ]
  54056. ))
  54057. characterMakers.push(() => makeCharacter(
  54058. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  54059. {
  54060. front: {
  54061. height: math.unit(3, "feet"),
  54062. weight: math.unit(20, "lb"),
  54063. name: "Front",
  54064. image: {
  54065. source: "./media/characters/kit-fennec-fox/front.svg",
  54066. extra: 1027/932,
  54067. bottom: 16/1043
  54068. }
  54069. },
  54070. back: {
  54071. height: math.unit(3, "feet"),
  54072. weight: math.unit(20, "lb"),
  54073. name: "Back",
  54074. image: {
  54075. source: "./media/characters/kit-fennec-fox/back.svg",
  54076. extra: 1027/932,
  54077. bottom: 16/1043
  54078. }
  54079. },
  54080. },
  54081. [
  54082. {
  54083. name: "Normal",
  54084. height: math.unit(3, "feet"),
  54085. default: true
  54086. },
  54087. ]
  54088. ))
  54089. characterMakers.push(() => makeCharacter(
  54090. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  54091. {
  54092. front: {
  54093. height: math.unit(167, "cm"),
  54094. name: "Front",
  54095. image: {
  54096. source: "./media/characters/blue-otter/front.svg",
  54097. extra: 1951/1920,
  54098. bottom: 31/1982
  54099. }
  54100. },
  54101. },
  54102. [
  54103. {
  54104. name: "Otter-Sized",
  54105. height: math.unit(100, "cm")
  54106. },
  54107. {
  54108. name: "Normal",
  54109. height: math.unit(167, "cm"),
  54110. default: true
  54111. },
  54112. ]
  54113. ))
  54114. characterMakers.push(() => makeCharacter(
  54115. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  54116. {
  54117. front: {
  54118. height: math.unit(4 + 4/12, "feet"),
  54119. name: "Front",
  54120. image: {
  54121. source: "./media/characters/maverick-leopard-gecko/front.svg",
  54122. extra: 1072/1067,
  54123. bottom: 117/1189
  54124. }
  54125. },
  54126. back: {
  54127. height: math.unit(4 + 4/12, "feet"),
  54128. name: "Back",
  54129. image: {
  54130. source: "./media/characters/maverick-leopard-gecko/back.svg",
  54131. extra: 1135/1129,
  54132. bottom: 57/1192
  54133. }
  54134. },
  54135. head: {
  54136. height: math.unit(1.77, "feet"),
  54137. name: "Head",
  54138. image: {
  54139. source: "./media/characters/maverick-leopard-gecko/head.svg"
  54140. }
  54141. },
  54142. },
  54143. [
  54144. {
  54145. name: "Normal",
  54146. height: math.unit(4 + 4/12, "feet"),
  54147. default: true
  54148. },
  54149. ]
  54150. ))
  54151. characterMakers.push(() => makeCharacter(
  54152. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  54153. {
  54154. front: {
  54155. height: math.unit(2, "inches"),
  54156. name: "Front",
  54157. image: {
  54158. source: "./media/characters/carley-hartford/front.svg",
  54159. extra: 1035/988,
  54160. bottom: 23/1058
  54161. }
  54162. },
  54163. back: {
  54164. height: math.unit(2, "inches"),
  54165. name: "Back",
  54166. image: {
  54167. source: "./media/characters/carley-hartford/back.svg",
  54168. extra: 1035/988,
  54169. bottom: 23/1058
  54170. }
  54171. },
  54172. dressed: {
  54173. height: math.unit(2, "inches"),
  54174. name: "Dressed",
  54175. image: {
  54176. source: "./media/characters/carley-hartford/dressed.svg",
  54177. extra: 651/620,
  54178. bottom: 0/651
  54179. }
  54180. },
  54181. },
  54182. [
  54183. {
  54184. name: "Micro",
  54185. height: math.unit(2, "inches"),
  54186. default: true
  54187. },
  54188. {
  54189. name: "Macro",
  54190. height: math.unit(6 + 3/12, "feet")
  54191. },
  54192. ]
  54193. ))
  54194. characterMakers.push(() => makeCharacter(
  54195. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  54196. {
  54197. front: {
  54198. height: math.unit(2 + 3/12, "feet"),
  54199. weight: math.unit(15 + 7/16, "lb"),
  54200. name: "Front",
  54201. image: {
  54202. source: "./media/characters/duke/front.svg",
  54203. extra: 910/815,
  54204. bottom: 30/940
  54205. }
  54206. },
  54207. },
  54208. [
  54209. {
  54210. name: "Normal",
  54211. height: math.unit(2 + 3/12, "feet"),
  54212. default: true
  54213. },
  54214. ]
  54215. ))
  54216. characterMakers.push(() => makeCharacter(
  54217. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  54218. {
  54219. front: {
  54220. height: math.unit(5 + 4/12, "feet"),
  54221. weight: math.unit(156, "lb"),
  54222. name: "Front",
  54223. image: {
  54224. source: "./media/characters/dein/front.svg",
  54225. extra: 855/815,
  54226. bottom: 48/903
  54227. }
  54228. },
  54229. side: {
  54230. height: math.unit(5 + 4/12, "feet"),
  54231. weight: math.unit(156, "lb"),
  54232. name: "side",
  54233. image: {
  54234. source: "./media/characters/dein/side.svg",
  54235. extra: 846/803,
  54236. bottom: 25/871
  54237. }
  54238. },
  54239. maw: {
  54240. height: math.unit(1.45, "feet"),
  54241. name: "Maw",
  54242. image: {
  54243. source: "./media/characters/dein/maw.svg"
  54244. }
  54245. },
  54246. },
  54247. [
  54248. {
  54249. name: "Ferret Sized",
  54250. height: math.unit(2 + 5/12, "feet")
  54251. },
  54252. {
  54253. name: "Normal",
  54254. height: math.unit(5 + 4/12, "feet"),
  54255. default: true
  54256. },
  54257. ]
  54258. ))
  54259. characterMakers.push(() => makeCharacter(
  54260. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  54261. {
  54262. front: {
  54263. height: math.unit(84 + 8/12, "feet"),
  54264. weight: math.unit(942180, "lb"),
  54265. name: "Front",
  54266. image: {
  54267. source: "./media/characters/daurine-arima/front.svg",
  54268. extra: 1989/1782,
  54269. bottom: 37/2026
  54270. }
  54271. },
  54272. side: {
  54273. height: math.unit(84 + 8/12, "feet"),
  54274. weight: math.unit(942180, "lb"),
  54275. name: "Side",
  54276. image: {
  54277. source: "./media/characters/daurine-arima/side.svg",
  54278. extra: 1997/1790,
  54279. bottom: 21/2018
  54280. }
  54281. },
  54282. back: {
  54283. height: math.unit(84 + 8/12, "feet"),
  54284. weight: math.unit(942180, "lb"),
  54285. name: "Back",
  54286. image: {
  54287. source: "./media/characters/daurine-arima/back.svg",
  54288. extra: 1992/1800,
  54289. bottom: 12/2004
  54290. }
  54291. },
  54292. head: {
  54293. height: math.unit(15.5, "feet"),
  54294. name: "Head",
  54295. image: {
  54296. source: "./media/characters/daurine-arima/head.svg"
  54297. }
  54298. },
  54299. headAlt: {
  54300. height: math.unit(19.19, "feet"),
  54301. name: "Head (Alt)",
  54302. image: {
  54303. source: "./media/characters/daurine-arima/head-alt.svg"
  54304. }
  54305. },
  54306. },
  54307. [
  54308. {
  54309. name: "Minimum height",
  54310. height: math.unit(8 + 10/12, "feet")
  54311. },
  54312. {
  54313. name: "Comfort height",
  54314. height: math.unit(19 + 6 /12, "feet")
  54315. },
  54316. {
  54317. name: "\"Normal\" height",
  54318. height: math.unit(28 + 10/12, "feet")
  54319. },
  54320. {
  54321. name: "Base height",
  54322. height: math.unit(84 + 8/12, "feet"),
  54323. default: true
  54324. },
  54325. {
  54326. name: "Mini-macro",
  54327. height: math.unit(2360, "feet")
  54328. },
  54329. {
  54330. name: "Macro",
  54331. height: math.unit(10, "miles")
  54332. },
  54333. {
  54334. name: "Goddess",
  54335. height: math.unit(9.99e40, "yottameters")
  54336. },
  54337. ]
  54338. ))
  54339. characterMakers.push(() => makeCharacter(
  54340. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  54341. {
  54342. front: {
  54343. height: math.unit(2.3, "meters"),
  54344. name: "Front",
  54345. image: {
  54346. source: "./media/characters/cilenomon/front.svg",
  54347. extra: 1963/1778,
  54348. bottom: 54/2017
  54349. }
  54350. },
  54351. },
  54352. [
  54353. {
  54354. name: "Normal",
  54355. height: math.unit(2.3, "meters"),
  54356. default: true
  54357. },
  54358. {
  54359. name: "Big",
  54360. height: math.unit(5, "meters")
  54361. },
  54362. {
  54363. name: "Macro",
  54364. height: math.unit(30, "meters")
  54365. },
  54366. {
  54367. name: "True",
  54368. height: math.unit(1, "universe")
  54369. },
  54370. ]
  54371. ))
  54372. characterMakers.push(() => makeCharacter(
  54373. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  54374. {
  54375. front: {
  54376. height: math.unit(5, "feet"),
  54377. name: "Front",
  54378. image: {
  54379. source: "./media/characters/sen-mink/front.svg",
  54380. extra: 1727/1675,
  54381. bottom: 35/1762
  54382. }
  54383. },
  54384. },
  54385. [
  54386. {
  54387. name: "Normal",
  54388. height: math.unit(5, "feet"),
  54389. default: true
  54390. },
  54391. ]
  54392. ))
  54393. characterMakers.push(() => makeCharacter(
  54394. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  54395. {
  54396. front: {
  54397. height: math.unit(5.42999, "feet"),
  54398. weight: math.unit(100, "lb"),
  54399. name: "Front",
  54400. image: {
  54401. source: "./media/characters/ophois/front.svg",
  54402. extra: 1429/1286,
  54403. bottom: 60/1489
  54404. }
  54405. },
  54406. },
  54407. [
  54408. {
  54409. name: "Normal",
  54410. height: math.unit(5.42999, "feet"),
  54411. default: true
  54412. },
  54413. ]
  54414. ))
  54415. characterMakers.push(() => makeCharacter(
  54416. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  54417. {
  54418. front: {
  54419. height: math.unit(2, "meters"),
  54420. name: "Front",
  54421. image: {
  54422. source: "./media/characters/riley/front.svg",
  54423. extra: 1779/1754,
  54424. bottom: 139/1918
  54425. }
  54426. },
  54427. },
  54428. [
  54429. {
  54430. name: "Normal",
  54431. height: math.unit(2, "meters"),
  54432. default: true
  54433. },
  54434. ]
  54435. ))
  54436. characterMakers.push(() => makeCharacter(
  54437. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  54438. {
  54439. front: {
  54440. height: math.unit(6 + 2/12, "feet"),
  54441. weight: math.unit(195, "lb"),
  54442. preyCapacity: math.unit(6, "people"),
  54443. name: "Front",
  54444. image: {
  54445. source: "./media/characters/shuken-flash/front.svg",
  54446. extra: 1905/1739,
  54447. bottom: 65/1970
  54448. }
  54449. },
  54450. back: {
  54451. height: math.unit(6 + 2/12, "feet"),
  54452. weight: math.unit(195, "lb"),
  54453. preyCapacity: math.unit(6, "people"),
  54454. name: "Back",
  54455. image: {
  54456. source: "./media/characters/shuken-flash/back.svg",
  54457. extra: 1912/1751,
  54458. bottom: 13/1925
  54459. }
  54460. },
  54461. },
  54462. [
  54463. {
  54464. name: "Normal",
  54465. height: math.unit(6 + 2/12, "feet"),
  54466. default: true
  54467. },
  54468. ]
  54469. ))
  54470. characterMakers.push(() => makeCharacter(
  54471. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  54472. {
  54473. front: {
  54474. height: math.unit(5 + 9/12, "feet"),
  54475. weight: math.unit(150, "lb"),
  54476. name: "Front",
  54477. image: {
  54478. source: "./media/characters/plat/front.svg",
  54479. extra: 1816/1703,
  54480. bottom: 43/1859
  54481. }
  54482. },
  54483. side: {
  54484. height: math.unit(5 + 9/12, "feet"),
  54485. weight: math.unit(300, "lb"),
  54486. name: "Side",
  54487. image: {
  54488. source: "./media/characters/plat/side.svg",
  54489. extra: 1824/1699,
  54490. bottom: 18/1842
  54491. }
  54492. },
  54493. },
  54494. [
  54495. {
  54496. name: "Normal",
  54497. height: math.unit(5 + 9/12, "feet"),
  54498. default: true
  54499. },
  54500. ]
  54501. ))
  54502. characterMakers.push(() => makeCharacter(
  54503. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  54504. {
  54505. front: {
  54506. height: math.unit(9, "feet"),
  54507. weight: math.unit(1800, "lb"),
  54508. name: "Front",
  54509. image: {
  54510. source: "./media/characters/elaine/front.svg",
  54511. extra: 1833/1354,
  54512. bottom: 25/1858
  54513. }
  54514. },
  54515. back: {
  54516. height: math.unit(8.8, "feet"),
  54517. weight: math.unit(1800, "lb"),
  54518. name: "Back",
  54519. image: {
  54520. source: "./media/characters/elaine/back.svg",
  54521. extra: 1641/1233,
  54522. bottom: 53/1694
  54523. }
  54524. },
  54525. },
  54526. [
  54527. {
  54528. name: "Normal",
  54529. height: math.unit(9, "feet"),
  54530. default: true
  54531. },
  54532. ]
  54533. ))
  54534. characterMakers.push(() => makeCharacter(
  54535. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54536. {
  54537. front: {
  54538. height: math.unit(17 + 9/12, "feet"),
  54539. weight: math.unit(8000, "lb"),
  54540. name: "Front",
  54541. image: {
  54542. source: "./media/characters/vera-raven/front.svg",
  54543. extra: 1457/1412,
  54544. bottom: 121/1578
  54545. }
  54546. },
  54547. side: {
  54548. height: math.unit(17 + 9/12, "feet"),
  54549. weight: math.unit(8000, "lb"),
  54550. name: "Side",
  54551. image: {
  54552. source: "./media/characters/vera-raven/side.svg",
  54553. extra: 1510/1464,
  54554. bottom: 54/1564
  54555. }
  54556. },
  54557. },
  54558. [
  54559. {
  54560. name: "Normal",
  54561. height: math.unit(17 + 9/12, "feet"),
  54562. default: true
  54563. },
  54564. ]
  54565. ))
  54566. characterMakers.push(() => makeCharacter(
  54567. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54568. {
  54569. dressed: {
  54570. height: math.unit(6 + 9/12, "feet"),
  54571. name: "Dressed",
  54572. image: {
  54573. source: "./media/characters/nakisha/dressed.svg",
  54574. extra: 1909/1757,
  54575. bottom: 48/1957
  54576. }
  54577. },
  54578. nude: {
  54579. height: math.unit(6 + 9/12, "feet"),
  54580. name: "Nude",
  54581. image: {
  54582. source: "./media/characters/nakisha/nude.svg",
  54583. extra: 1917/1765,
  54584. bottom: 34/1951
  54585. }
  54586. },
  54587. },
  54588. [
  54589. {
  54590. name: "Normal",
  54591. height: math.unit(6 + 9/12, "feet"),
  54592. default: true
  54593. },
  54594. ]
  54595. ))
  54596. characterMakers.push(() => makeCharacter(
  54597. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54598. {
  54599. front: {
  54600. height: math.unit(87, "meters"),
  54601. name: "Front",
  54602. image: {
  54603. source: "./media/characters/serafin/front.svg",
  54604. extra: 1919/1776,
  54605. bottom: 65/1984
  54606. }
  54607. },
  54608. },
  54609. [
  54610. {
  54611. name: "Normal",
  54612. height: math.unit(87, "meters"),
  54613. default: true
  54614. },
  54615. ]
  54616. ))
  54617. characterMakers.push(() => makeCharacter(
  54618. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54619. {
  54620. front: {
  54621. height: math.unit(6, "feet"),
  54622. weight: math.unit(200, "lb"),
  54623. name: "Front",
  54624. image: {
  54625. source: "./media/characters/poptart/front.svg",
  54626. extra: 615/583,
  54627. bottom: 23/638
  54628. }
  54629. },
  54630. back: {
  54631. height: math.unit(6, "feet"),
  54632. weight: math.unit(200, "lb"),
  54633. name: "Back",
  54634. image: {
  54635. source: "./media/characters/poptart/back.svg",
  54636. extra: 617/584,
  54637. bottom: 22/639
  54638. }
  54639. },
  54640. frontNsfw: {
  54641. height: math.unit(6, "feet"),
  54642. weight: math.unit(200, "lb"),
  54643. name: "Front (NSFW)",
  54644. image: {
  54645. source: "./media/characters/poptart/front-nsfw.svg",
  54646. extra: 615/583,
  54647. bottom: 23/638
  54648. }
  54649. },
  54650. backNsfw: {
  54651. height: math.unit(6, "feet"),
  54652. weight: math.unit(200, "lb"),
  54653. name: "Back (NSFW)",
  54654. image: {
  54655. source: "./media/characters/poptart/back-nsfw.svg",
  54656. extra: 617/584,
  54657. bottom: 22/639
  54658. }
  54659. },
  54660. hand: {
  54661. height: math.unit(1.14, "feet"),
  54662. name: "Hand",
  54663. image: {
  54664. source: "./media/characters/poptart/hand.svg"
  54665. }
  54666. },
  54667. foot: {
  54668. height: math.unit(1.5, "feet"),
  54669. name: "Foot",
  54670. image: {
  54671. source: "./media/characters/poptart/foot.svg"
  54672. }
  54673. },
  54674. },
  54675. [
  54676. {
  54677. name: "Normal",
  54678. height: math.unit(6, "feet"),
  54679. default: true
  54680. },
  54681. {
  54682. name: "Grande",
  54683. height: math.unit(350, "feet")
  54684. },
  54685. {
  54686. name: "Massif",
  54687. height: math.unit(967, "feet")
  54688. },
  54689. ]
  54690. ))
  54691. characterMakers.push(() => makeCharacter(
  54692. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54693. {
  54694. hyenaSide: {
  54695. height: math.unit(120, "cm"),
  54696. weight: math.unit(120, "lb"),
  54697. name: "Side",
  54698. image: {
  54699. source: "./media/characters/trance/hyena-side.svg",
  54700. extra: 998/904,
  54701. bottom: 76/1074
  54702. }
  54703. },
  54704. },
  54705. [
  54706. {
  54707. name: "Normal",
  54708. height: math.unit(120, "cm"),
  54709. default: true
  54710. },
  54711. {
  54712. name: "Dire",
  54713. height: math.unit(230, "cm")
  54714. },
  54715. {
  54716. name: "Macro",
  54717. height: math.unit(37, "feet")
  54718. },
  54719. ]
  54720. ))
  54721. characterMakers.push(() => makeCharacter(
  54722. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54723. {
  54724. front: {
  54725. height: math.unit(6 + 3/12, "feet"),
  54726. name: "Front",
  54727. image: {
  54728. source: "./media/characters/michael-berretta/front.svg",
  54729. extra: 515/494,
  54730. bottom: 20/535
  54731. }
  54732. },
  54733. back: {
  54734. height: math.unit(6 + 3/12, "feet"),
  54735. name: "Back",
  54736. image: {
  54737. source: "./media/characters/michael-berretta/back.svg",
  54738. extra: 520/497,
  54739. bottom: 21/541
  54740. }
  54741. },
  54742. frontNsfw: {
  54743. height: math.unit(6 + 3/12, "feet"),
  54744. name: "Front (NSFW)",
  54745. image: {
  54746. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54747. extra: 515/494,
  54748. bottom: 20/535
  54749. }
  54750. },
  54751. dick: {
  54752. height: math.unit(1, "feet"),
  54753. name: "Dick",
  54754. image: {
  54755. source: "./media/characters/michael-berretta/dick.svg"
  54756. }
  54757. },
  54758. },
  54759. [
  54760. {
  54761. name: "Normal",
  54762. height: math.unit(6 + 3/12, "feet"),
  54763. default: true
  54764. },
  54765. {
  54766. name: "Big",
  54767. height: math.unit(12, "feet")
  54768. },
  54769. {
  54770. name: "Macro",
  54771. height: math.unit(187.5, "feet")
  54772. },
  54773. ]
  54774. ))
  54775. characterMakers.push(() => makeCharacter(
  54776. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54777. {
  54778. front: {
  54779. height: math.unit(9 + 9/12, "feet"),
  54780. weight: math.unit(1244, "lb"),
  54781. name: "Front",
  54782. image: {
  54783. source: "./media/characters/stella-edgecomb/front.svg",
  54784. extra: 1835/1706,
  54785. bottom: 49/1884
  54786. }
  54787. },
  54788. pen: {
  54789. height: math.unit(0.95, "feet"),
  54790. name: "Pen",
  54791. image: {
  54792. source: "./media/characters/stella-edgecomb/pen.svg"
  54793. }
  54794. },
  54795. },
  54796. [
  54797. {
  54798. name: "Cozy Bear",
  54799. height: math.unit(0.5, "inches")
  54800. },
  54801. {
  54802. name: "Normal",
  54803. height: math.unit(9 + 9/12, "feet"),
  54804. default: true
  54805. },
  54806. {
  54807. name: "Giga Bear",
  54808. height: math.unit(1, "mile")
  54809. },
  54810. {
  54811. name: "Great Bear",
  54812. height: math.unit(53, "miles")
  54813. },
  54814. {
  54815. name: "Goddess Bear",
  54816. height: math.unit(40000, "miles")
  54817. },
  54818. {
  54819. name: "Sun Bear",
  54820. height: math.unit(900000, "miles")
  54821. },
  54822. ]
  54823. ))
  54824. characterMakers.push(() => makeCharacter(
  54825. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54826. {
  54827. anthroFront: {
  54828. height: math.unit(556, "cm"),
  54829. weight: math.unit(2650, "kg"),
  54830. preyCapacity: math.unit(3, "people"),
  54831. name: "Front",
  54832. image: {
  54833. source: "./media/characters/ash´iika/front.svg",
  54834. extra: 710/673,
  54835. bottom: 15/725
  54836. },
  54837. form: "anthro",
  54838. default: true
  54839. },
  54840. anthroSide: {
  54841. height: math.unit(556, "cm"),
  54842. weight: math.unit(2650, "kg"),
  54843. preyCapacity: math.unit(3, "people"),
  54844. name: "Side",
  54845. image: {
  54846. source: "./media/characters/ash´iika/side.svg",
  54847. extra: 696/676,
  54848. bottom: 13/709
  54849. },
  54850. form: "anthro"
  54851. },
  54852. anthroDressed: {
  54853. height: math.unit(556, "cm"),
  54854. weight: math.unit(2650, "kg"),
  54855. preyCapacity: math.unit(3, "people"),
  54856. name: "Dressed",
  54857. image: {
  54858. source: "./media/characters/ash´iika/dressed.svg",
  54859. extra: 710/673,
  54860. bottom: 15/725
  54861. },
  54862. form: "anthro"
  54863. },
  54864. anthroHead: {
  54865. height: math.unit(3.5, "feet"),
  54866. name: "Head",
  54867. image: {
  54868. source: "./media/characters/ash´iika/head.svg",
  54869. extra: 348/291,
  54870. bottom: 45/393
  54871. },
  54872. form: "anthro"
  54873. },
  54874. feralSide: {
  54875. height: math.unit(870, "cm"),
  54876. weight: math.unit(17500, "kg"),
  54877. preyCapacity: math.unit(15, "people"),
  54878. name: "Side",
  54879. image: {
  54880. source: "./media/characters/ash´iika/feral.svg",
  54881. extra: 595/199,
  54882. bottom: 7/602
  54883. },
  54884. form: "feral",
  54885. default: true,
  54886. },
  54887. },
  54888. [
  54889. {
  54890. name: "Normal",
  54891. height: math.unit(556, "cm"),
  54892. default: true,
  54893. form: "anthro"
  54894. },
  54895. {
  54896. name: "Macro",
  54897. height: math.unit(88, "meters"),
  54898. form: "anthro"
  54899. },
  54900. {
  54901. name: "Normal",
  54902. height: math.unit(870, "cm"),
  54903. default: true,
  54904. form: "feral"
  54905. },
  54906. {
  54907. name: "Large",
  54908. height: math.unit(25, "meters"),
  54909. form: "feral"
  54910. },
  54911. ],
  54912. {
  54913. "anthro": {
  54914. name: "Anthro",
  54915. default: true
  54916. },
  54917. "feral": {
  54918. name: "Feral",
  54919. },
  54920. }
  54921. ))
  54922. characterMakers.push(() => makeCharacter(
  54923. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54924. {
  54925. front: {
  54926. height: math.unit(10, "feet"),
  54927. weight: math.unit(800, "lb"),
  54928. name: "Front",
  54929. image: {
  54930. source: "./media/characters/yen/front.svg",
  54931. extra: 443/411,
  54932. bottom: 6/449
  54933. }
  54934. },
  54935. sleeping: {
  54936. height: math.unit(10, "feet"),
  54937. weight: math.unit(800, "lb"),
  54938. name: "Sleeping",
  54939. image: {
  54940. source: "./media/characters/yen/sleeping.svg",
  54941. extra: 470/422,
  54942. bottom: 0/470
  54943. }
  54944. },
  54945. head: {
  54946. height: math.unit(2.2, "feet"),
  54947. name: "Head",
  54948. image: {
  54949. source: "./media/characters/yen/head.svg"
  54950. }
  54951. },
  54952. headAlt: {
  54953. height: math.unit(2.1, "feet"),
  54954. name: "Head (Alt)",
  54955. image: {
  54956. source: "./media/characters/yen/head-alt.svg"
  54957. }
  54958. },
  54959. },
  54960. [
  54961. {
  54962. name: "Normal",
  54963. height: math.unit(10, "feet"),
  54964. default: true
  54965. },
  54966. ]
  54967. ))
  54968. characterMakers.push(() => makeCharacter(
  54969. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54970. {
  54971. front: {
  54972. height: math.unit(12, "feet"),
  54973. name: "Front",
  54974. image: {
  54975. source: "./media/characters/citra/front.svg",
  54976. extra: 1950/1710,
  54977. bottom: 47/1997
  54978. }
  54979. },
  54980. },
  54981. [
  54982. {
  54983. name: "Normal",
  54984. height: math.unit(12, "feet"),
  54985. default: true
  54986. },
  54987. ]
  54988. ))
  54989. characterMakers.push(() => makeCharacter(
  54990. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54991. {
  54992. side: {
  54993. height: math.unit(7 + 10/12, "feet"),
  54994. name: "Side",
  54995. image: {
  54996. source: "./media/characters/sholstim/side.svg",
  54997. extra: 786/682,
  54998. bottom: 40/826
  54999. }
  55000. },
  55001. },
  55002. [
  55003. {
  55004. name: "Normal",
  55005. height: math.unit(7 + 10/12, "feet"),
  55006. default: true
  55007. },
  55008. ]
  55009. ))
  55010. characterMakers.push(() => makeCharacter(
  55011. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  55012. {
  55013. front: {
  55014. height: math.unit(3.10, "meters"),
  55015. name: "Front",
  55016. image: {
  55017. source: "./media/characters/aggyn/front.svg",
  55018. extra: 1188/963,
  55019. bottom: 24/1212
  55020. }
  55021. },
  55022. },
  55023. [
  55024. {
  55025. name: "Normal",
  55026. height: math.unit(3.10, "meters"),
  55027. default: true
  55028. },
  55029. ]
  55030. ))
  55031. characterMakers.push(() => makeCharacter(
  55032. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  55033. {
  55034. front: {
  55035. height: math.unit(7 + 5/12, "feet"),
  55036. weight: math.unit(687, "lb"),
  55037. name: "Front",
  55038. image: {
  55039. source: "./media/characters/alsandair-hergenroether/front.svg",
  55040. extra: 1251/1186,
  55041. bottom: 75/1326
  55042. }
  55043. },
  55044. back: {
  55045. height: math.unit(7 + 5/12, "feet"),
  55046. weight: math.unit(687, "lb"),
  55047. name: "Back",
  55048. image: {
  55049. source: "./media/characters/alsandair-hergenroether/back.svg",
  55050. extra: 1290/1229,
  55051. bottom: 17/1307
  55052. }
  55053. },
  55054. },
  55055. [
  55056. {
  55057. name: "Max Compression",
  55058. height: math.unit(7 + 5/12, "feet"),
  55059. default: true
  55060. },
  55061. {
  55062. name: "\"Normal\"",
  55063. height: math.unit(2, "universes")
  55064. },
  55065. ]
  55066. ))
  55067. characterMakers.push(() => makeCharacter(
  55068. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  55069. {
  55070. front: {
  55071. height: math.unit(4 + 1/12, "feet"),
  55072. weight: math.unit(92, "lb"),
  55073. name: "Front",
  55074. image: {
  55075. source: "./media/characters/ie/front.svg",
  55076. extra: 1585/1352,
  55077. bottom: 91/1676
  55078. }
  55079. },
  55080. },
  55081. [
  55082. {
  55083. name: "Normal",
  55084. height: math.unit(4 + 1/12, "feet"),
  55085. default: true
  55086. },
  55087. ]
  55088. ))
  55089. characterMakers.push(() => makeCharacter(
  55090. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  55091. {
  55092. anthro: {
  55093. height: math.unit(6, "feet"),
  55094. weight: math.unit(150, "lb"),
  55095. name: "Front",
  55096. image: {
  55097. source: "./media/characters/willow/anthro.svg",
  55098. extra: 1073/986,
  55099. bottom: 34/1107
  55100. },
  55101. form: "anthro",
  55102. default: true
  55103. },
  55104. taur: {
  55105. height: math.unit(6, "feet"),
  55106. weight: math.unit(150, "lb"),
  55107. name: "Side",
  55108. image: {
  55109. source: "./media/characters/willow/taur.svg",
  55110. extra: 647/512,
  55111. bottom: 136/783
  55112. },
  55113. form: "taur",
  55114. default: true
  55115. },
  55116. },
  55117. [
  55118. {
  55119. name: "Humanoid",
  55120. height: math.unit(2.7, "meters"),
  55121. form: "anthro"
  55122. },
  55123. {
  55124. name: "Normal",
  55125. height: math.unit(9, "meters"),
  55126. form: "anthro",
  55127. default: true
  55128. },
  55129. {
  55130. name: "Humanoid",
  55131. height: math.unit(2.1, "meters"),
  55132. form: "taur"
  55133. },
  55134. {
  55135. name: "Normal",
  55136. height: math.unit(7, "meters"),
  55137. form: "taur",
  55138. default: true
  55139. },
  55140. ],
  55141. {
  55142. "anthro": {
  55143. name: "Anthro",
  55144. default: true
  55145. },
  55146. "taur": {
  55147. name: "Taur",
  55148. },
  55149. }
  55150. ))
  55151. characterMakers.push(() => makeCharacter(
  55152. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  55153. {
  55154. front: {
  55155. height: math.unit(2 + 5/12, "feet"),
  55156. name: "Front",
  55157. image: {
  55158. source: "./media/characters/kyan/front.svg",
  55159. extra: 460/334,
  55160. bottom: 23/483
  55161. },
  55162. extraAttributes: {
  55163. "toeLength": {
  55164. name: "Toe Length",
  55165. power: 1,
  55166. type: "length",
  55167. base: math.unit(7, "cm")
  55168. },
  55169. "toeclawLength": {
  55170. name: "Toeclaw Length",
  55171. power: 1,
  55172. type: "length",
  55173. base: math.unit(4.7, "cm")
  55174. },
  55175. "earHeight": {
  55176. name: "Ear Height",
  55177. power: 1,
  55178. type: "length",
  55179. base: math.unit(14.1, "cm")
  55180. },
  55181. }
  55182. },
  55183. paws: {
  55184. height: math.unit(0.45, "feet"),
  55185. name: "Paws",
  55186. image: {
  55187. source: "./media/characters/kyan/paws.svg",
  55188. extra: 581/581,
  55189. bottom: 114/695
  55190. }
  55191. },
  55192. },
  55193. [
  55194. {
  55195. name: "Normal",
  55196. height: math.unit(2 + 5/12, "feet"),
  55197. default: true
  55198. },
  55199. ]
  55200. ))
  55201. characterMakers.push(() => makeCharacter(
  55202. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  55203. {
  55204. front: {
  55205. height: math.unit(2 + 2/3, "feet"),
  55206. name: "Front",
  55207. image: {
  55208. source: "./media/characters/xazzon/front.svg",
  55209. extra: 1109/984,
  55210. bottom: 42/1151
  55211. }
  55212. },
  55213. back: {
  55214. height: math.unit(2 + 2/3, "feet"),
  55215. name: "Back",
  55216. image: {
  55217. source: "./media/characters/xazzon/back.svg",
  55218. extra: 1095/971,
  55219. bottom: 23/1118
  55220. }
  55221. },
  55222. },
  55223. [
  55224. {
  55225. name: "Normal",
  55226. height: math.unit(2 + 2/3, "feet"),
  55227. default: true
  55228. },
  55229. ]
  55230. ))
  55231. characterMakers.push(() => makeCharacter(
  55232. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  55233. {
  55234. front: {
  55235. height: math.unit(8, "feet"),
  55236. weight: math.unit(300, "lb"),
  55237. name: "Front",
  55238. image: {
  55239. source: "./media/characters/khyla-shadowsong/front.svg",
  55240. extra: 861/798,
  55241. bottom: 32/893
  55242. }
  55243. },
  55244. side: {
  55245. height: math.unit(8, "feet"),
  55246. weight: math.unit(300, "lb"),
  55247. name: "Side",
  55248. image: {
  55249. source: "./media/characters/khyla-shadowsong/side.svg",
  55250. extra: 790/750,
  55251. bottom: 87/877
  55252. }
  55253. },
  55254. back: {
  55255. height: math.unit(8, "feet"),
  55256. weight: math.unit(300, "lb"),
  55257. name: "Back",
  55258. image: {
  55259. source: "./media/characters/khyla-shadowsong/back.svg",
  55260. extra: 855/808,
  55261. bottom: 14/869
  55262. }
  55263. },
  55264. head: {
  55265. height: math.unit(2.7, "feet"),
  55266. name: "Head",
  55267. image: {
  55268. source: "./media/characters/khyla-shadowsong/head.svg"
  55269. }
  55270. },
  55271. },
  55272. [
  55273. {
  55274. name: "Micro",
  55275. height: math.unit(6, "inches")
  55276. },
  55277. {
  55278. name: "Normal",
  55279. height: math.unit(8, "feet"),
  55280. default: true
  55281. },
  55282. ]
  55283. ))
  55284. characterMakers.push(() => makeCharacter(
  55285. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  55286. {
  55287. hyperFront: {
  55288. height: math.unit(9 + 4/12, "feet"),
  55289. weight: math.unit(2000, "lb"),
  55290. name: "Front",
  55291. image: {
  55292. source: "./media/characters/tiden/hyper-front.svg",
  55293. extra: 400/382,
  55294. bottom: 6/406
  55295. },
  55296. form: "hyper",
  55297. },
  55298. regularFront: {
  55299. height: math.unit(7 + 10/12, "feet"),
  55300. weight: math.unit(470, "lb"),
  55301. name: "Front",
  55302. image: {
  55303. source: "./media/characters/tiden/regular-front.svg",
  55304. extra: 468/442,
  55305. bottom: 6/474
  55306. },
  55307. form: "regular",
  55308. },
  55309. },
  55310. [
  55311. {
  55312. name: "Normal",
  55313. height: math.unit(9 + 4/12, "feet"),
  55314. default: true,
  55315. form: "hyper"
  55316. },
  55317. {
  55318. name: "Normal",
  55319. height: math.unit(7 + 10/12, "feet"),
  55320. default: true,
  55321. form: "regular"
  55322. },
  55323. ],
  55324. {
  55325. "hyper": {
  55326. name: "Hyper",
  55327. default: true
  55328. },
  55329. "regular": {
  55330. name: "Regular",
  55331. },
  55332. }
  55333. ))
  55334. characterMakers.push(() => makeCharacter(
  55335. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  55336. {
  55337. side: {
  55338. height: math.unit(6, "feet"),
  55339. weight: math.unit(150, "lb"),
  55340. name: "Side",
  55341. image: {
  55342. source: "./media/characters/jason-crowe/side.svg",
  55343. extra: 1771/766,
  55344. bottom: 219/1990
  55345. }
  55346. },
  55347. },
  55348. [
  55349. {
  55350. name: "Pocket Gryphon",
  55351. height: math.unit(6, "cm")
  55352. },
  55353. {
  55354. name: "Raven",
  55355. height: math.unit(60, "cm")
  55356. },
  55357. {
  55358. name: "Normal",
  55359. height: math.unit(1, "meter"),
  55360. default: true
  55361. },
  55362. ]
  55363. ))
  55364. characterMakers.push(() => makeCharacter(
  55365. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  55366. {
  55367. front: {
  55368. height: math.unit(9 + 6/12, "feet"),
  55369. weight: math.unit(1100, "lb"),
  55370. name: "Front",
  55371. image: {
  55372. source: "./media/characters/django/front.svg",
  55373. extra: 1231/1136,
  55374. bottom: 34/1265
  55375. }
  55376. },
  55377. side: {
  55378. height: math.unit(9 + 6/12, "feet"),
  55379. weight: math.unit(1100, "lb"),
  55380. name: "Side",
  55381. image: {
  55382. source: "./media/characters/django/side.svg",
  55383. extra: 1267/1174,
  55384. bottom: 9/1276
  55385. }
  55386. },
  55387. },
  55388. [
  55389. {
  55390. name: "Normal",
  55391. height: math.unit(9 + 6/12, "feet"),
  55392. default: true
  55393. },
  55394. {
  55395. name: "Macro 1",
  55396. height: math.unit(50, "feet")
  55397. },
  55398. {
  55399. name: "Macro 2",
  55400. height: math.unit(500, "feet")
  55401. },
  55402. {
  55403. name: "Mega Macro",
  55404. height: math.unit(5300, "feet")
  55405. },
  55406. ]
  55407. ))
  55408. characterMakers.push(() => makeCharacter(
  55409. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  55410. {
  55411. frontSfw: {
  55412. height: math.unit(120, "cm"),
  55413. weight: math.unit(15, "kg"),
  55414. name: "Front (SFW)",
  55415. image: {
  55416. source: "./media/characters/eri/front-sfw.svg",
  55417. extra: 1014/939,
  55418. bottom: 37/1051
  55419. },
  55420. form: "moth",
  55421. },
  55422. frontNsfw: {
  55423. height: math.unit(120, "cm"),
  55424. weight: math.unit(15, "kg"),
  55425. name: "Front (NSFW)",
  55426. image: {
  55427. source: "./media/characters/eri/front-nsfw.svg",
  55428. extra: 1014/939,
  55429. bottom: 37/1051
  55430. },
  55431. form: "moth",
  55432. default: true
  55433. },
  55434. egg: {
  55435. height: math.unit(10, "cm"),
  55436. name: "Egg",
  55437. image: {
  55438. source: "./media/characters/eri/egg.svg"
  55439. },
  55440. form: "egg",
  55441. default: true
  55442. },
  55443. },
  55444. [
  55445. {
  55446. name: "Normal",
  55447. height: math.unit(120, "cm"),
  55448. default: true,
  55449. form: "moth"
  55450. },
  55451. {
  55452. name: "Normal",
  55453. height: math.unit(10, "cm"),
  55454. default: true,
  55455. form: "egg"
  55456. },
  55457. ],
  55458. {
  55459. "moth": {
  55460. name: "Moth",
  55461. default: true
  55462. },
  55463. "egg": {
  55464. name: "Egg",
  55465. },
  55466. }
  55467. ))
  55468. characterMakers.push(() => makeCharacter(
  55469. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  55470. {
  55471. front: {
  55472. height: math.unit(200, "feet"),
  55473. name: "Front",
  55474. image: {
  55475. source: "./media/characters/bishop-dowser/front.svg",
  55476. extra: 933/868,
  55477. bottom: 106/1039
  55478. }
  55479. },
  55480. },
  55481. [
  55482. {
  55483. name: "Giant",
  55484. height: math.unit(200, "feet"),
  55485. default: true
  55486. },
  55487. ]
  55488. ))
  55489. characterMakers.push(() => makeCharacter(
  55490. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  55491. {
  55492. front: {
  55493. height: math.unit(2, "meters"),
  55494. preyCapacity: math.unit(3, "people"),
  55495. name: "Front",
  55496. image: {
  55497. source: "./media/characters/fryra/front.svg",
  55498. extra: 1025/948,
  55499. bottom: 30/1055
  55500. },
  55501. extraAttributes: {
  55502. "breastVolume": {
  55503. name: "Breast Volume",
  55504. power: 3,
  55505. type: "volume",
  55506. base: math.unit(8, "liters")
  55507. },
  55508. }
  55509. },
  55510. back: {
  55511. height: math.unit(2, "meters"),
  55512. preyCapacity: math.unit(3, "people"),
  55513. name: "Back",
  55514. image: {
  55515. source: "./media/characters/fryra/back.svg",
  55516. extra: 993/938,
  55517. bottom: 38/1031
  55518. },
  55519. extraAttributes: {
  55520. "breastVolume": {
  55521. name: "Breast Volume",
  55522. power: 3,
  55523. type: "volume",
  55524. base: math.unit(8, "liters")
  55525. },
  55526. }
  55527. },
  55528. head: {
  55529. height: math.unit(1.33, "feet"),
  55530. name: "Head",
  55531. image: {
  55532. source: "./media/characters/fryra/head.svg"
  55533. }
  55534. },
  55535. maw: {
  55536. height: math.unit(0.56, "feet"),
  55537. name: "Maw",
  55538. image: {
  55539. source: "./media/characters/fryra/maw.svg"
  55540. }
  55541. },
  55542. },
  55543. [
  55544. {
  55545. name: "Micro",
  55546. height: math.unit(5, "cm")
  55547. },
  55548. {
  55549. name: "Normal",
  55550. height: math.unit(2, "meters"),
  55551. default: true
  55552. },
  55553. {
  55554. name: "Small Macro",
  55555. height: math.unit(8, "meters")
  55556. },
  55557. {
  55558. name: "Macro",
  55559. height: math.unit(50, "meters")
  55560. },
  55561. {
  55562. name: "Megamacro",
  55563. height: math.unit(1, "km")
  55564. },
  55565. {
  55566. name: "Planetary",
  55567. height: math.unit(300000, "km")
  55568. },
  55569. {
  55570. name: "Universal",
  55571. height: math.unit(250, "lightyears")
  55572. },
  55573. {
  55574. name: "Fabric of Reality",
  55575. height: math.unit(1000, "multiverses")
  55576. },
  55577. ]
  55578. ))
  55579. characterMakers.push(() => makeCharacter(
  55580. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55581. {
  55582. frontDressed: {
  55583. height: math.unit(6 + 2/12, "feet"),
  55584. name: "Front (Dressed)",
  55585. image: {
  55586. source: "./media/characters/fiera/front-dressed.svg",
  55587. extra: 1883/1793,
  55588. bottom: 70/1953
  55589. }
  55590. },
  55591. backDressed: {
  55592. height: math.unit(6 + 2/12, "feet"),
  55593. name: "Back (Dressed)",
  55594. image: {
  55595. source: "./media/characters/fiera/back-dressed.svg",
  55596. extra: 1847/1780,
  55597. bottom: 70/1917
  55598. }
  55599. },
  55600. frontNude: {
  55601. height: math.unit(6 + 2/12, "feet"),
  55602. name: "Front (Nude)",
  55603. image: {
  55604. source: "./media/characters/fiera/front-nude.svg",
  55605. extra: 1875/1785,
  55606. bottom: 66/1941
  55607. }
  55608. },
  55609. backNude: {
  55610. height: math.unit(6 + 2/12, "feet"),
  55611. name: "Back (Nude)",
  55612. image: {
  55613. source: "./media/characters/fiera/back-nude.svg",
  55614. extra: 1855/1788,
  55615. bottom: 44/1899
  55616. }
  55617. },
  55618. maw: {
  55619. height: math.unit(1.3, "feet"),
  55620. name: "Maw",
  55621. image: {
  55622. source: "./media/characters/fiera/maw.svg"
  55623. }
  55624. },
  55625. paw: {
  55626. height: math.unit(1, "feet"),
  55627. name: "Paw",
  55628. image: {
  55629. source: "./media/characters/fiera/paw.svg"
  55630. }
  55631. },
  55632. shoe: {
  55633. height: math.unit(1.05, "feet"),
  55634. name: "Shoe",
  55635. image: {
  55636. source: "./media/characters/fiera/shoe.svg"
  55637. }
  55638. },
  55639. },
  55640. [
  55641. {
  55642. name: "Normal",
  55643. height: math.unit(6 + 2/12, "feet"),
  55644. default: true
  55645. },
  55646. {
  55647. name: "Size Difference",
  55648. height: math.unit(13, "feet")
  55649. },
  55650. {
  55651. name: "Macro",
  55652. height: math.unit(60, "feet")
  55653. },
  55654. {
  55655. name: "Mega Macro",
  55656. height: math.unit(200, "feet")
  55657. },
  55658. ]
  55659. ))
  55660. characterMakers.push(() => makeCharacter(
  55661. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55662. {
  55663. back: {
  55664. height: math.unit(6, "feet"),
  55665. name: "Back",
  55666. image: {
  55667. source: "./media/characters/flare/back.svg",
  55668. extra: 1883/1765,
  55669. bottom: 32/1915
  55670. }
  55671. },
  55672. },
  55673. [
  55674. {
  55675. name: "Normal",
  55676. height: math.unit(6 + 2/12, "feet"),
  55677. default: true
  55678. },
  55679. {
  55680. name: "Size Difference",
  55681. height: math.unit(13, "feet")
  55682. },
  55683. {
  55684. name: "Macro",
  55685. height: math.unit(60, "feet")
  55686. },
  55687. {
  55688. name: "Macro 2",
  55689. height: math.unit(100, "feet")
  55690. },
  55691. {
  55692. name: "Mega Macro",
  55693. height: math.unit(200, "feet")
  55694. },
  55695. ]
  55696. ))
  55697. characterMakers.push(() => makeCharacter(
  55698. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55699. {
  55700. front: {
  55701. height: math.unit(2.2, "m"),
  55702. weight: math.unit(300, "kg"),
  55703. name: "Front",
  55704. image: {
  55705. source: "./media/characters/hanna/front.svg",
  55706. extra: 1696/1502,
  55707. bottom: 206/1902
  55708. }
  55709. },
  55710. },
  55711. [
  55712. {
  55713. name: "Humanoid",
  55714. height: math.unit(2.2, "meters")
  55715. },
  55716. {
  55717. name: "Normal",
  55718. height: math.unit(4.8, "meters"),
  55719. default: true
  55720. },
  55721. ]
  55722. ))
  55723. characterMakers.push(() => makeCharacter(
  55724. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55725. {
  55726. front: {
  55727. height: math.unit(2.8, "meters"),
  55728. name: "Front",
  55729. image: {
  55730. source: "./media/characters/argo/front.svg",
  55731. extra: 731/518,
  55732. bottom: 84/815
  55733. }
  55734. },
  55735. },
  55736. [
  55737. {
  55738. name: "Normal",
  55739. height: math.unit(3, "meters"),
  55740. default: true
  55741. },
  55742. ]
  55743. ))
  55744. characterMakers.push(() => makeCharacter(
  55745. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55746. {
  55747. side: {
  55748. height: math.unit(3.8, "meters"),
  55749. name: "Side",
  55750. image: {
  55751. source: "./media/characters/sybil/side.svg",
  55752. extra: 382/361,
  55753. bottom: 25/407
  55754. }
  55755. },
  55756. },
  55757. [
  55758. {
  55759. name: "Normal",
  55760. height: math.unit(3.8, "meters"),
  55761. default: true
  55762. },
  55763. ]
  55764. ))
  55765. characterMakers.push(() => makeCharacter(
  55766. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55767. {
  55768. side: {
  55769. height: math.unit(6, "meters"),
  55770. name: "Side",
  55771. image: {
  55772. source: "./media/characters/plum/side.svg",
  55773. extra: 858/755,
  55774. bottom: 45/903
  55775. },
  55776. form: "taur",
  55777. default: true
  55778. },
  55779. back: {
  55780. height: math.unit(6.3, "meters"),
  55781. name: "Back",
  55782. image: {
  55783. source: "./media/characters/plum/back.svg",
  55784. extra: 887/813,
  55785. bottom: 32/919
  55786. },
  55787. form: "taur",
  55788. },
  55789. feral: {
  55790. height: math.unit(5.5, "meter"),
  55791. name: "Front",
  55792. image: {
  55793. source: "./media/characters/plum/feral.svg",
  55794. extra: 568/403,
  55795. bottom: 51/619
  55796. },
  55797. form: "feral",
  55798. default: true
  55799. },
  55800. head: {
  55801. height: math.unit(1.46, "meter"),
  55802. name: "Head",
  55803. image: {
  55804. source: "./media/characters/plum/head.svg"
  55805. },
  55806. form: "taur"
  55807. },
  55808. tailTop: {
  55809. height: math.unit(5.6, "meter"),
  55810. name: "Tail (Top)",
  55811. image: {
  55812. source: "./media/characters/plum/tail-top.svg"
  55813. },
  55814. form: "taur",
  55815. },
  55816. tailBottom: {
  55817. height: math.unit(5.6, "meter"),
  55818. name: "Tail (Bottom)",
  55819. image: {
  55820. source: "./media/characters/plum/tail-bottom.svg"
  55821. },
  55822. form: "taur",
  55823. },
  55824. feralHead: {
  55825. height: math.unit(2.56549521, "meter"),
  55826. name: "Head",
  55827. image: {
  55828. source: "./media/characters/plum/head.svg"
  55829. },
  55830. form: "feral"
  55831. },
  55832. feralTailTop: {
  55833. height: math.unit(5.44728435, "meter"),
  55834. name: "Tail (Top)",
  55835. image: {
  55836. source: "./media/characters/plum/tail-top.svg"
  55837. },
  55838. form: "feral",
  55839. },
  55840. feralTailBottom: {
  55841. height: math.unit(5.44728435, "meter"),
  55842. name: "Tail (Bottom)",
  55843. image: {
  55844. source: "./media/characters/plum/tail-bottom.svg"
  55845. },
  55846. form: "feral",
  55847. },
  55848. },
  55849. [
  55850. {
  55851. name: "Normal",
  55852. height: math.unit(6, "meters"),
  55853. default: true,
  55854. form: "taur"
  55855. },
  55856. {
  55857. name: "Normal",
  55858. height: math.unit(5.5, "meters"),
  55859. default: true,
  55860. form: "feral"
  55861. },
  55862. ],
  55863. {
  55864. "taur": {
  55865. name: "Taur",
  55866. default: true
  55867. },
  55868. "feral": {
  55869. name: "Feral",
  55870. },
  55871. }
  55872. ))
  55873. characterMakers.push(() => makeCharacter(
  55874. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55875. {
  55876. front: {
  55877. height: math.unit(6, "feet"),
  55878. weight: math.unit(115, "lb"),
  55879. name: "Front",
  55880. image: {
  55881. source: "./media/characters/celeste-kitsune/front.svg",
  55882. extra: 393/366,
  55883. bottom: 7/400
  55884. }
  55885. },
  55886. side: {
  55887. height: math.unit(6, "feet"),
  55888. weight: math.unit(115, "lb"),
  55889. name: "Side",
  55890. image: {
  55891. source: "./media/characters/celeste-kitsune/side.svg",
  55892. extra: 818/765,
  55893. bottom: 40/858
  55894. }
  55895. },
  55896. },
  55897. [
  55898. {
  55899. name: "Megamacro",
  55900. height: math.unit(1500, "miles"),
  55901. default: true
  55902. },
  55903. ]
  55904. ))
  55905. characterMakers.push(() => makeCharacter(
  55906. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55907. {
  55908. front: {
  55909. height: math.unit(8, "meters"),
  55910. name: "Front",
  55911. image: {
  55912. source: "./media/characters/io/front.svg",
  55913. extra: 865/722,
  55914. bottom: 58/923
  55915. }
  55916. },
  55917. back: {
  55918. height: math.unit(8, "meters"),
  55919. name: "Back",
  55920. image: {
  55921. source: "./media/characters/io/back.svg",
  55922. extra: 920/776,
  55923. bottom: 42/962
  55924. }
  55925. },
  55926. head: {
  55927. height: math.unit(5.09, "meters"),
  55928. name: "Head",
  55929. image: {
  55930. source: "./media/characters/io/head.svg"
  55931. }
  55932. },
  55933. hand: {
  55934. height: math.unit(1.6, "meters"),
  55935. name: "Hand",
  55936. image: {
  55937. source: "./media/characters/io/hand.svg"
  55938. }
  55939. },
  55940. foot: {
  55941. height: math.unit(2.4, "meters"),
  55942. name: "Foot",
  55943. image: {
  55944. source: "./media/characters/io/foot.svg"
  55945. }
  55946. },
  55947. },
  55948. [
  55949. {
  55950. name: "Normal",
  55951. height: math.unit(8, "meters"),
  55952. default: true
  55953. },
  55954. ]
  55955. ))
  55956. characterMakers.push(() => makeCharacter(
  55957. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55958. {
  55959. side: {
  55960. height: math.unit(6 + 3/12, "feet"),
  55961. weight: math.unit(225, "lb"),
  55962. name: "Side",
  55963. image: {
  55964. source: "./media/characters/silas/side.svg",
  55965. extra: 703/653,
  55966. bottom: 23/726
  55967. },
  55968. extraAttributes: {
  55969. "pawLength": {
  55970. name: "Paw Length",
  55971. power: 1,
  55972. type: "length",
  55973. base: math.unit(12, "inches")
  55974. },
  55975. "pawWidth": {
  55976. name: "Paw Width",
  55977. power: 1,
  55978. type: "length",
  55979. base: math.unit(4.5, "inches")
  55980. },
  55981. "pawArea": {
  55982. name: "Paw Area",
  55983. power: 2,
  55984. type: "area",
  55985. base: math.unit(12 * 4.5, "inches^2")
  55986. },
  55987. }
  55988. },
  55989. },
  55990. [
  55991. {
  55992. name: "Normal",
  55993. height: math.unit(6 + 3/12, "feet"),
  55994. default: true
  55995. },
  55996. ]
  55997. ))
  55998. characterMakers.push(() => makeCharacter(
  55999. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  56000. {
  56001. back: {
  56002. height: math.unit(1.6, "meters"),
  56003. weight: math.unit(150, "lb"),
  56004. name: "Back",
  56005. image: {
  56006. source: "./media/characters/zari/back.svg",
  56007. extra: 424/411,
  56008. bottom: 32/456
  56009. },
  56010. extraAttributes: {
  56011. "bladderCapacity": {
  56012. name: "Bladder Size",
  56013. power: 3,
  56014. type: "volume",
  56015. base: math.unit(500, "mL")
  56016. },
  56017. "bladderFlow": {
  56018. name: "Flow Rate",
  56019. power: 3,
  56020. type: "volume",
  56021. base: math.unit(25, "mL")
  56022. },
  56023. }
  56024. },
  56025. },
  56026. [
  56027. {
  56028. name: "Normal",
  56029. height: math.unit(1.6, "meters"),
  56030. default: true
  56031. },
  56032. ]
  56033. ))
  56034. characterMakers.push(() => makeCharacter(
  56035. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  56036. {
  56037. front: {
  56038. height: math.unit(25, "feet"),
  56039. weight: math.unit(5, "tons"),
  56040. name: "Front",
  56041. image: {
  56042. source: "./media/characters/charlie-human/front.svg",
  56043. extra: 1870/1740,
  56044. bottom: 102/1972
  56045. },
  56046. extraAttributes: {
  56047. "dickLength": {
  56048. name: "Dick Length",
  56049. power: 1,
  56050. type: "length",
  56051. base: math.unit(9, "feet")
  56052. },
  56053. }
  56054. },
  56055. back: {
  56056. height: math.unit(25, "feet"),
  56057. weight: math.unit(5, "tons"),
  56058. name: "Back",
  56059. image: {
  56060. source: "./media/characters/charlie-human/back.svg",
  56061. extra: 1858/1733,
  56062. bottom: 105/1963
  56063. },
  56064. extraAttributes: {
  56065. "dickLength": {
  56066. name: "Dick Length",
  56067. power: 1,
  56068. type: "length",
  56069. base: math.unit(9, "feet")
  56070. },
  56071. }
  56072. },
  56073. },
  56074. [
  56075. {
  56076. name: "\"Normal\"",
  56077. height: math.unit(6 + 4/12, "feet")
  56078. },
  56079. {
  56080. name: "Big",
  56081. height: math.unit(25, "feet"),
  56082. default: true
  56083. },
  56084. ]
  56085. ))
  56086. characterMakers.push(() => makeCharacter(
  56087. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  56088. {
  56089. front: {
  56090. height: math.unit(6 + 4/12, "feet"),
  56091. weight: math.unit(320, "lb"),
  56092. name: "Front",
  56093. image: {
  56094. source: "./media/characters/ookitsu/front.svg",
  56095. extra: 1160/976,
  56096. bottom: 38/1198
  56097. }
  56098. },
  56099. frontNsfw: {
  56100. height: math.unit(6 + 4/12, "feet"),
  56101. weight: math.unit(320, "lb"),
  56102. name: "Front (NSFW)",
  56103. image: {
  56104. source: "./media/characters/ookitsu/front-nsfw.svg",
  56105. extra: 1160/976,
  56106. bottom: 38/1198
  56107. }
  56108. },
  56109. back: {
  56110. height: math.unit(6 + 4/12, "feet"),
  56111. weight: math.unit(320, "lb"),
  56112. name: "Back",
  56113. image: {
  56114. source: "./media/characters/ookitsu/back.svg",
  56115. extra: 1030/975,
  56116. bottom: 70/1100
  56117. }
  56118. },
  56119. head: {
  56120. height: math.unit(1.79, "feet"),
  56121. name: "Head",
  56122. image: {
  56123. source: "./media/characters/ookitsu/head.svg"
  56124. }
  56125. },
  56126. hand: {
  56127. height: math.unit(0.92, "feet"),
  56128. name: "Hand",
  56129. image: {
  56130. source: "./media/characters/ookitsu/hand.svg"
  56131. }
  56132. },
  56133. tails: {
  56134. height: math.unit(3.3, "feet"),
  56135. name: "Tails",
  56136. image: {
  56137. source: "./media/characters/ookitsu/tails.svg"
  56138. }
  56139. },
  56140. dick: {
  56141. height: math.unit(1.10833, "feet"),
  56142. name: "Dick",
  56143. image: {
  56144. source: "./media/characters/ookitsu/dick.svg"
  56145. }
  56146. },
  56147. },
  56148. [
  56149. {
  56150. name: "Normal",
  56151. height: math.unit(6 + 4/12, "feet"),
  56152. default: true
  56153. },
  56154. {
  56155. name: "Macro",
  56156. height: math.unit(30, "feet")
  56157. },
  56158. ]
  56159. ))
  56160. characterMakers.push(() => makeCharacter(
  56161. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  56162. {
  56163. anthroFront: {
  56164. height: math.unit(6, "feet"),
  56165. weight: math.unit(250, "lb"),
  56166. name: "Front",
  56167. image: {
  56168. source: "./media/characters/jhusky/anthro-front.svg",
  56169. extra: 474/439,
  56170. bottom: 7/481
  56171. },
  56172. form: "anthro",
  56173. default: true
  56174. },
  56175. taurSideSfw: {
  56176. height: math.unit(6 + 4/12, "feet"),
  56177. weight: math.unit(500, "lb"),
  56178. name: "Side (SFW)",
  56179. image: {
  56180. source: "./media/characters/jhusky/taur-side-sfw.svg",
  56181. extra: 1741/1629,
  56182. bottom: 196/1937
  56183. },
  56184. form: "taur",
  56185. default: true
  56186. },
  56187. taurSideNsfw: {
  56188. height: math.unit(6 + 4/12, "feet"),
  56189. weight: math.unit(500, "lb"),
  56190. name: "Taur (NSFW)",
  56191. image: {
  56192. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  56193. extra: 1741/1629,
  56194. bottom: 196/1937
  56195. },
  56196. form: "taur",
  56197. },
  56198. },
  56199. [
  56200. {
  56201. name: "Huge",
  56202. height: math.unit(500, "feet"),
  56203. form: "anthro"
  56204. },
  56205. {
  56206. name: "Macro",
  56207. height: math.unit(1000, "feet"),
  56208. default: true,
  56209. form: "anthro"
  56210. },
  56211. {
  56212. name: "Megamacro",
  56213. height: math.unit(10000, "feet"),
  56214. form: "anthro"
  56215. },
  56216. {
  56217. name: "Huge",
  56218. height: math.unit(528, "feet"),
  56219. form: "taur"
  56220. },
  56221. {
  56222. name: "Macro",
  56223. height: math.unit(1056, "feet"),
  56224. default: true,
  56225. form: "taur"
  56226. },
  56227. {
  56228. name: "Megamacro",
  56229. height: math.unit(10556, "feet"),
  56230. form: "taur"
  56231. },
  56232. ],
  56233. {
  56234. "anthro": {
  56235. name: "Anthro",
  56236. default: true
  56237. },
  56238. "taur": {
  56239. name: "Taur",
  56240. },
  56241. }
  56242. ))
  56243. characterMakers.push(() => makeCharacter(
  56244. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  56245. {
  56246. front: {
  56247. height: math.unit(8, "feet"),
  56248. weight: math.unit(500, "lb"),
  56249. name: "Front",
  56250. image: {
  56251. source: "./media/characters/armail/front.svg",
  56252. extra: 1753/1669,
  56253. bottom: 155/1908
  56254. }
  56255. },
  56256. back: {
  56257. height: math.unit(8, "feet"),
  56258. weight: math.unit(500, "lb"),
  56259. name: "Back",
  56260. image: {
  56261. source: "./media/characters/armail/back.svg",
  56262. extra: 1872/1803,
  56263. bottom: 63/1935
  56264. }
  56265. },
  56266. },
  56267. [
  56268. {
  56269. name: "Micro",
  56270. height: math.unit(0.25, "feet")
  56271. },
  56272. {
  56273. name: "Normal",
  56274. height: math.unit(8, "feet"),
  56275. default: true
  56276. },
  56277. {
  56278. name: "Mini-macro",
  56279. height: math.unit(30, "feet")
  56280. },
  56281. {
  56282. name: "Macro",
  56283. height: math.unit(400, "feet")
  56284. },
  56285. {
  56286. name: "Mega-macro",
  56287. height: math.unit(6000, "feet")
  56288. },
  56289. ]
  56290. ))
  56291. characterMakers.push(() => makeCharacter(
  56292. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  56293. {
  56294. front: {
  56295. height: math.unit(6 + 7/12, "feet"),
  56296. weight: math.unit(210, "lb"),
  56297. name: "Front",
  56298. image: {
  56299. source: "./media/characters/wilfred-t-buxton/front.svg",
  56300. extra: 1068/882,
  56301. bottom: 28/1096
  56302. }
  56303. },
  56304. },
  56305. [
  56306. {
  56307. name: "Normal",
  56308. height: math.unit(6 + 7/12, "feet"),
  56309. default: true
  56310. },
  56311. ]
  56312. ))
  56313. characterMakers.push(() => makeCharacter(
  56314. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  56315. {
  56316. front: {
  56317. height: math.unit(5 + 2/12, "feet"),
  56318. weight: math.unit(120, "lb"),
  56319. name: "Front",
  56320. image: {
  56321. source: "./media/characters/leighton-marrow/front.svg",
  56322. extra: 441/409,
  56323. bottom: 37/478
  56324. }
  56325. },
  56326. },
  56327. [
  56328. {
  56329. name: "Normal",
  56330. height: math.unit(5 + 2/12, "feet"),
  56331. default: true
  56332. },
  56333. ]
  56334. ))
  56335. characterMakers.push(() => makeCharacter(
  56336. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  56337. {
  56338. front: {
  56339. height: math.unit(4, "meters"),
  56340. weight: math.unit(1200, "kg"),
  56341. name: "Front",
  56342. image: {
  56343. source: "./media/characters/licos/front.svg",
  56344. extra: 1727/1604,
  56345. bottom: 101/1828
  56346. },
  56347. form: "anthro",
  56348. default: true
  56349. },
  56350. taur_side: {
  56351. height: math.unit(20, "meters"),
  56352. weight: math.unit(1100000, "kg"),
  56353. name: "Side",
  56354. image: {
  56355. source: "./media/characters/licos/taur.svg",
  56356. extra: 1158/1091,
  56357. bottom: 80/1238
  56358. },
  56359. form: "taur",
  56360. default: true
  56361. },
  56362. },
  56363. [
  56364. {
  56365. name: "Normal",
  56366. height: math.unit(4, "meters"),
  56367. default: true,
  56368. form: "anthro"
  56369. },
  56370. {
  56371. name: "Normal",
  56372. height: math.unit(20, "meters"),
  56373. default: true,
  56374. form: "taur"
  56375. },
  56376. ],
  56377. {
  56378. "anthro": {
  56379. name: "Anthro",
  56380. default: true
  56381. },
  56382. "taur": {
  56383. name: "Taur",
  56384. },
  56385. }
  56386. ))
  56387. characterMakers.push(() => makeCharacter(
  56388. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  56389. {
  56390. front: {
  56391. height: math.unit(10 + 3/12, "feet"),
  56392. name: "Front",
  56393. image: {
  56394. source: "./media/characters/theo-monkey/front.svg",
  56395. extra: 1735/1658,
  56396. bottom: 73/1808
  56397. }
  56398. },
  56399. back: {
  56400. height: math.unit(10 + 3/12, "feet"),
  56401. name: "Back",
  56402. image: {
  56403. source: "./media/characters/theo-monkey/back.svg",
  56404. extra: 1742/1664,
  56405. bottom: 33/1775
  56406. }
  56407. },
  56408. head: {
  56409. height: math.unit(2.29, "feet"),
  56410. name: "Head",
  56411. image: {
  56412. source: "./media/characters/theo-monkey/head.svg"
  56413. }
  56414. },
  56415. handPalm: {
  56416. height: math.unit(1.73, "feet"),
  56417. name: "Hand (Palm)",
  56418. image: {
  56419. source: "./media/characters/theo-monkey/hand-palm.svg"
  56420. }
  56421. },
  56422. handBack: {
  56423. height: math.unit(1.63, "feet"),
  56424. name: "Hand (Back)",
  56425. image: {
  56426. source: "./media/characters/theo-monkey/hand-back.svg"
  56427. }
  56428. },
  56429. footSole: {
  56430. height: math.unit(2.15, "feet"),
  56431. name: "Foot (Sole)",
  56432. image: {
  56433. source: "./media/characters/theo-monkey/foot-sole.svg"
  56434. }
  56435. },
  56436. footSide: {
  56437. height: math.unit(1.6, "feet"),
  56438. name: "Foot (Side)",
  56439. image: {
  56440. source: "./media/characters/theo-monkey/foot-side.svg"
  56441. }
  56442. },
  56443. },
  56444. [
  56445. {
  56446. name: "Normal",
  56447. height: math.unit(10 + 3/12, "feet"),
  56448. default: true
  56449. },
  56450. ]
  56451. ))
  56452. characterMakers.push(() => makeCharacter(
  56453. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  56454. {
  56455. front: {
  56456. height: math.unit(11, "feet"),
  56457. weight: math.unit(3000, "lb"),
  56458. preyCapacity: math.unit(10, "people"),
  56459. name: "Front",
  56460. image: {
  56461. source: "./media/characters/brook/front.svg",
  56462. extra: 909/835,
  56463. bottom: 108/1017
  56464. }
  56465. },
  56466. back: {
  56467. height: math.unit(11, "feet"),
  56468. weight: math.unit(3000, "lb"),
  56469. preyCapacity: math.unit(10, "people"),
  56470. name: "Back",
  56471. image: {
  56472. source: "./media/characters/brook/back.svg",
  56473. extra: 976/916,
  56474. bottom: 34/1010
  56475. }
  56476. },
  56477. backAlt: {
  56478. height: math.unit(11, "feet"),
  56479. weight: math.unit(3000, "lb"),
  56480. preyCapacity: math.unit(10, "people"),
  56481. name: "Back (Alt)",
  56482. image: {
  56483. source: "./media/characters/brook/back-alt.svg",
  56484. extra: 1283/1213,
  56485. bottom: 35/1318
  56486. }
  56487. },
  56488. bust: {
  56489. height: math.unit(9.0859030837, "feet"),
  56490. weight: math.unit(3000, "lb"),
  56491. preyCapacity: math.unit(10, "people"),
  56492. name: "Bust",
  56493. image: {
  56494. source: "./media/characters/brook/bust.svg",
  56495. extra: 2043/1923,
  56496. bottom: 0/2043
  56497. }
  56498. },
  56499. },
  56500. [
  56501. {
  56502. name: "Small",
  56503. height: math.unit(11, "feet"),
  56504. default: true
  56505. },
  56506. {
  56507. name: "Towering",
  56508. height: math.unit(5, "km")
  56509. },
  56510. {
  56511. name: "Enormous",
  56512. height: math.unit(25, "earths")
  56513. },
  56514. ]
  56515. ))
  56516. characterMakers.push(() => makeCharacter(
  56517. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56518. {
  56519. front: {
  56520. height: math.unit(4, "feet"),
  56521. weight: math.unit(150, "lb"),
  56522. name: "Front",
  56523. image: {
  56524. source: "./media/characters/squishi/front.svg",
  56525. extra: 1428/1271,
  56526. bottom: 30/1458
  56527. },
  56528. extraAttributes: {
  56529. "pawSize": {
  56530. name: "Paw Size",
  56531. power: 1,
  56532. type: "length",
  56533. base: math.unit(14, "ShoeSizeMensUS"),
  56534. defaultUnit: "ShoeSizeMensUS"
  56535. },
  56536. }
  56537. },
  56538. side: {
  56539. height: math.unit(4, "feet"),
  56540. weight: math.unit(150, "lb"),
  56541. name: "Side",
  56542. image: {
  56543. source: "./media/characters/squishi/side.svg",
  56544. extra: 1428/1271,
  56545. bottom: 30/1458
  56546. },
  56547. extraAttributes: {
  56548. "pawSize": {
  56549. name: "Paw Size",
  56550. power: 1,
  56551. type: "length",
  56552. base: math.unit(14, "ShoeSizeMensUS"),
  56553. defaultUnit: "ShoeSizeMensUS"
  56554. },
  56555. }
  56556. },
  56557. back: {
  56558. height: math.unit(4, "feet"),
  56559. weight: math.unit(150, "lb"),
  56560. name: "Back",
  56561. image: {
  56562. source: "./media/characters/squishi/back.svg",
  56563. extra: 1428/1271,
  56564. bottom: 30/1458
  56565. },
  56566. extraAttributes: {
  56567. "pawSize": {
  56568. name: "Paw Size",
  56569. power: 1,
  56570. type: "length",
  56571. base: math.unit(14, "ShoeSizeMensUS"),
  56572. defaultUnit: "ShoeSizeMensUS"
  56573. },
  56574. }
  56575. },
  56576. },
  56577. [
  56578. {
  56579. name: "Normal",
  56580. height: math.unit(4, "feet"),
  56581. default: true
  56582. },
  56583. ]
  56584. ))
  56585. characterMakers.push(() => makeCharacter(
  56586. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56587. {
  56588. front: {
  56589. height: math.unit(7 + 8/12, "feet"),
  56590. weight: math.unit(333, "lb"),
  56591. name: "Front",
  56592. image: {
  56593. source: "./media/characters/vincent-vasroc/front.svg",
  56594. extra: 1962/1860,
  56595. bottom: 41/2003
  56596. }
  56597. },
  56598. back: {
  56599. height: math.unit(7 + 8/12, "feet"),
  56600. weight: math.unit(333, "lb"),
  56601. name: "Back",
  56602. image: {
  56603. source: "./media/characters/vincent-vasroc/back.svg",
  56604. extra: 1952/1815,
  56605. bottom: 33/1985
  56606. }
  56607. },
  56608. paw: {
  56609. height: math.unit(1.24, "feet"),
  56610. name: "Paw",
  56611. image: {
  56612. source: "./media/characters/vincent-vasroc/paw.svg"
  56613. }
  56614. },
  56615. ear: {
  56616. height: math.unit(0.75, "feet"),
  56617. name: "Ear",
  56618. image: {
  56619. source: "./media/characters/vincent-vasroc/ear.svg"
  56620. }
  56621. },
  56622. },
  56623. [
  56624. {
  56625. name: "Nano",
  56626. height: math.unit(92, "micrometers")
  56627. },
  56628. {
  56629. name: "Normal",
  56630. height: math.unit(7 + 8/12, "feet"),
  56631. default: true
  56632. },
  56633. ]
  56634. ))
  56635. characterMakers.push(() => makeCharacter(
  56636. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56637. {
  56638. frontNsfw: {
  56639. height: math.unit(40, "feet"),
  56640. weight: math.unit(58, "tons"),
  56641. name: "Front (NSFW)",
  56642. image: {
  56643. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56644. extra: 1265/965,
  56645. bottom: 155/1420
  56646. }
  56647. },
  56648. frontSfw: {
  56649. height: math.unit(40, "feet"),
  56650. weight: math.unit(58, "tons"),
  56651. name: "Front (SFW)",
  56652. image: {
  56653. source: "./media/characters/ru-kahn/front-sfw.svg",
  56654. extra: 1265/965,
  56655. bottom: 80/1345
  56656. }
  56657. },
  56658. },
  56659. [
  56660. {
  56661. name: "Small",
  56662. height: math.unit(4, "feet")
  56663. },
  56664. {
  56665. name: "Normal",
  56666. height: math.unit(40, "feet"),
  56667. default: true
  56668. },
  56669. {
  56670. name: "Macro",
  56671. height: math.unit(400, "feet")
  56672. },
  56673. ]
  56674. ))
  56675. characterMakers.push(() => makeCharacter(
  56676. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56677. {
  56678. frontNude: {
  56679. height: math.unit(6 + 5/12, "feet"),
  56680. name: "Front (Nude)",
  56681. image: {
  56682. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56683. extra: 1369/1366,
  56684. bottom: 68/1437
  56685. }
  56686. },
  56687. frontDressed: {
  56688. height: math.unit(6 + 5/12, "feet"),
  56689. name: "Front (Dressed)",
  56690. image: {
  56691. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56692. extra: 1369/1366,
  56693. bottom: 68/1437
  56694. }
  56695. },
  56696. },
  56697. [
  56698. {
  56699. name: "Normal",
  56700. height: math.unit(6 + 5/12, "feet"),
  56701. default: true
  56702. },
  56703. {
  56704. name: "Maximum",
  56705. height: math.unit(1930, "feet")
  56706. },
  56707. ]
  56708. ))
  56709. characterMakers.push(() => makeCharacter(
  56710. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56711. {
  56712. front: {
  56713. height: math.unit(5 + 6/12, "feet"),
  56714. name: "Front",
  56715. image: {
  56716. source: "./media/characters/kaja/front.svg",
  56717. extra: 1874/1514,
  56718. bottom: 117/1991
  56719. }
  56720. },
  56721. },
  56722. [
  56723. {
  56724. name: "Normal",
  56725. height: math.unit(5 + 6/12, "feet"),
  56726. default: true
  56727. },
  56728. ]
  56729. ))
  56730. characterMakers.push(() => makeCharacter(
  56731. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56732. {
  56733. front: {
  56734. height: math.unit(5 + 9/12, "feet"),
  56735. weight: math.unit(200, "lb"),
  56736. name: "Front",
  56737. image: {
  56738. source: "./media/characters/mark-smith/front.svg",
  56739. extra: 1004/943,
  56740. bottom: 58/1062
  56741. }
  56742. },
  56743. back: {
  56744. height: math.unit(5 + 9/12, "feet"),
  56745. weight: math.unit(200, "lb"),
  56746. name: "Back",
  56747. image: {
  56748. source: "./media/characters/mark-smith/back.svg",
  56749. extra: 1023/953,
  56750. bottom: 24/1047
  56751. }
  56752. },
  56753. head: {
  56754. height: math.unit(1.82, "feet"),
  56755. name: "Head",
  56756. image: {
  56757. source: "./media/characters/mark-smith/head.svg"
  56758. }
  56759. },
  56760. hand: {
  56761. height: math.unit(1.4, "feet"),
  56762. name: "Hand",
  56763. image: {
  56764. source: "./media/characters/mark-smith/hand.svg"
  56765. }
  56766. },
  56767. paw: {
  56768. height: math.unit(1.69, "feet"),
  56769. name: "Paw",
  56770. image: {
  56771. source: "./media/characters/mark-smith/paw.svg"
  56772. }
  56773. },
  56774. },
  56775. [
  56776. {
  56777. name: "Micro",
  56778. height: math.unit(0.25, "inches")
  56779. },
  56780. {
  56781. name: "Normal",
  56782. height: math.unit(5 + 9/12, "feet"),
  56783. default: true
  56784. },
  56785. {
  56786. name: "Macro",
  56787. height: math.unit(500, "feet")
  56788. },
  56789. ]
  56790. ))
  56791. characterMakers.push(() => makeCharacter(
  56792. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56793. {
  56794. frontNude: {
  56795. height: math.unit(6, "feet"),
  56796. name: "Front (Nude)",
  56797. image: {
  56798. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56799. extra: 1384/1321,
  56800. bottom: 57/1441
  56801. }
  56802. },
  56803. frontDressed: {
  56804. height: math.unit(6, "feet"),
  56805. name: "Front (Dressed)",
  56806. image: {
  56807. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56808. extra: 1384/1321,
  56809. bottom: 57/1441
  56810. }
  56811. },
  56812. },
  56813. [
  56814. {
  56815. name: "Normal",
  56816. height: math.unit(6, "feet"),
  56817. default: true
  56818. },
  56819. {
  56820. name: "Maximum",
  56821. height: math.unit(1776, "feet")
  56822. },
  56823. ]
  56824. ))
  56825. characterMakers.push(() => makeCharacter(
  56826. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56827. {
  56828. front: {
  56829. height: math.unit(2 + 4/12, "feet"),
  56830. weight: math.unit(350, "lb"),
  56831. name: "Front",
  56832. image: {
  56833. source: "./media/characters/devos/front.svg",
  56834. extra: 958/852,
  56835. bottom: 143/1101
  56836. }
  56837. },
  56838. },
  56839. [
  56840. {
  56841. name: "Base",
  56842. height: math.unit(2 + 4/12, "feet"),
  56843. default: true
  56844. },
  56845. ]
  56846. ))
  56847. characterMakers.push(() => makeCharacter(
  56848. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56849. {
  56850. front: {
  56851. height: math.unit(9 + 2/12, "feet"),
  56852. name: "Front",
  56853. image: {
  56854. source: "./media/characters/hiveheart/front.svg",
  56855. extra: 394/364,
  56856. bottom: 65/459
  56857. }
  56858. },
  56859. back: {
  56860. height: math.unit(9 + 2/12, "feet"),
  56861. name: "Back",
  56862. image: {
  56863. source: "./media/characters/hiveheart/back.svg",
  56864. extra: 374/357,
  56865. bottom: 63/437
  56866. }
  56867. },
  56868. },
  56869. [
  56870. {
  56871. name: "Base",
  56872. height: math.unit(9 + 2/12, "feet"),
  56873. default: true
  56874. },
  56875. ]
  56876. ))
  56877. characterMakers.push(() => makeCharacter(
  56878. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56879. {
  56880. front: {
  56881. height: math.unit(2.5, "inches"),
  56882. weight: math.unit(0.6, "oz"),
  56883. name: "Front",
  56884. image: {
  56885. source: "./media/characters/bryn/front.svg",
  56886. extra: 1484/1119,
  56887. bottom: 66/1550
  56888. }
  56889. },
  56890. back: {
  56891. height: math.unit(2.5, "inches"),
  56892. weight: math.unit(0.6, "oz"),
  56893. name: "Back",
  56894. image: {
  56895. source: "./media/characters/bryn/back.svg",
  56896. extra: 1472/1170,
  56897. bottom: 32/1504
  56898. }
  56899. },
  56900. wings: {
  56901. height: math.unit(2.5, "inches"),
  56902. weight: math.unit(0.6, "oz"),
  56903. name: "Wings",
  56904. image: {
  56905. source: "./media/characters/bryn/wings.svg",
  56906. extra: 567/448,
  56907. bottom: 10/577
  56908. }
  56909. },
  56910. dressed: {
  56911. height: math.unit(2.5, "inches"),
  56912. weight: math.unit(0.6, "oz"),
  56913. name: "Dressed",
  56914. image: {
  56915. source: "./media/characters/bryn/dressed.svg",
  56916. extra: 719/589,
  56917. bottom: 54/773
  56918. }
  56919. },
  56920. head: {
  56921. height: math.unit(1.75, "inches"),
  56922. name: "Head",
  56923. image: {
  56924. source: "./media/characters/bryn/head.svg"
  56925. }
  56926. },
  56927. foot: {
  56928. height: math.unit(0.4, "inches"),
  56929. name: "Foot",
  56930. image: {
  56931. source: "./media/characters/bryn/foot.svg"
  56932. }
  56933. },
  56934. },
  56935. [
  56936. {
  56937. name: "Normal",
  56938. height: math.unit(2.5, "inches"),
  56939. default: true
  56940. },
  56941. ]
  56942. ))
  56943. characterMakers.push(() => makeCharacter(
  56944. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56945. {
  56946. side: {
  56947. height: math.unit(7, "feet"),
  56948. weight: math.unit(657, "kg"),
  56949. name: "Side",
  56950. image: {
  56951. source: "./media/characters/delta/side.svg",
  56952. extra: 781/212,
  56953. bottom: 7/788
  56954. },
  56955. extraAttributes: {
  56956. "wingspan": {
  56957. name: "Wingspan",
  56958. power: 1,
  56959. type: "length",
  56960. base: math.unit(48, "feet")
  56961. },
  56962. "length": {
  56963. name: "Length",
  56964. power: 1,
  56965. type: "length",
  56966. base: math.unit(21, "feet")
  56967. },
  56968. "pawSize": {
  56969. name: "Paw Size",
  56970. power: 2,
  56971. type: "area",
  56972. base: math.unit(1.5*1.4, "feet^2")
  56973. },
  56974. }
  56975. },
  56976. },
  56977. [
  56978. {
  56979. name: "Normal",
  56980. height: math.unit(6, "feet"),
  56981. default: true
  56982. },
  56983. ]
  56984. ))
  56985. characterMakers.push(() => makeCharacter(
  56986. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56987. {
  56988. front: {
  56989. height: math.unit(6, "feet"),
  56990. name: "Front",
  56991. image: {
  56992. source: "./media/characters/pyrow/front.svg",
  56993. extra: 513/486,
  56994. bottom: 14/527
  56995. }
  56996. },
  56997. frontWing: {
  56998. height: math.unit(6, "feet"),
  56999. name: "Front (Wing)",
  57000. image: {
  57001. source: "./media/characters/pyrow/front-wing.svg",
  57002. extra: 539/383,
  57003. bottom: 20/559
  57004. }
  57005. },
  57006. back: {
  57007. height: math.unit(6, "feet"),
  57008. name: "Back",
  57009. image: {
  57010. source: "./media/characters/pyrow/back.svg",
  57011. extra: 500/473,
  57012. bottom: 9/509
  57013. }
  57014. },
  57015. },
  57016. [
  57017. {
  57018. name: "Normal",
  57019. height: math.unit(6, "feet"),
  57020. default: true
  57021. },
  57022. ]
  57023. ))
  57024. characterMakers.push(() => makeCharacter(
  57025. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  57026. {
  57027. front: {
  57028. height: math.unit(5, "meters"),
  57029. weight: math.unit(3, "tonnes"),
  57030. name: "Front",
  57031. image: {
  57032. source: "./media/characters/velikan/front.svg",
  57033. extra: 867/744,
  57034. bottom: 71/938
  57035. },
  57036. extraAttributes: {
  57037. "shoeSize": {
  57038. name: "Shoe Size",
  57039. power: 1,
  57040. type: "length",
  57041. base: math.unit(135, "ShoeSizeUK"),
  57042. defaultUnit: "ShoeSizeUK"
  57043. },
  57044. }
  57045. },
  57046. },
  57047. [
  57048. {
  57049. name: "Normal",
  57050. height: math.unit(5, "meters"),
  57051. default: true
  57052. },
  57053. {
  57054. name: "Macro",
  57055. height: math.unit(1, "km")
  57056. },
  57057. {
  57058. name: "Mega Macro",
  57059. height: math.unit(100, "km")
  57060. },
  57061. {
  57062. name: "Giga Macro",
  57063. height: math.unit(2, "megameters")
  57064. },
  57065. {
  57066. name: "Planetary",
  57067. height: math.unit(22, "megameters")
  57068. },
  57069. {
  57070. name: "Solar",
  57071. height: math.unit(8, "gigameters")
  57072. },
  57073. {
  57074. name: "Cosmic",
  57075. height: math.unit(10, "zettameters")
  57076. },
  57077. {
  57078. name: "Omni",
  57079. height: math.unit(9e260, "multiverses")
  57080. },
  57081. ]
  57082. ))
  57083. characterMakers.push(() => makeCharacter(
  57084. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  57085. {
  57086. front: {
  57087. height: math.unit(4 + 3/12, "feet"),
  57088. weight: math.unit(90, "lb"),
  57089. name: "Front",
  57090. image: {
  57091. source: "./media/characters/sabiki/front.svg",
  57092. extra: 1662/1423,
  57093. bottom: 65/1727
  57094. }
  57095. },
  57096. },
  57097. [
  57098. {
  57099. name: "Normal",
  57100. height: math.unit(4 + 3/12, "feet"),
  57101. default: true
  57102. },
  57103. ]
  57104. ))
  57105. characterMakers.push(() => makeCharacter(
  57106. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  57107. {
  57108. frontSfw: {
  57109. height: math.unit(2, "mm"),
  57110. name: "Front (SFW)",
  57111. image: {
  57112. source: "./media/characters/carmel/front-sfw.svg",
  57113. extra: 1131/1006,
  57114. bottom: 66/1197
  57115. }
  57116. },
  57117. frontNsfw: {
  57118. height: math.unit(2, "mm"),
  57119. name: "Front (NSFW)",
  57120. image: {
  57121. source: "./media/characters/carmel/front-nsfw.svg",
  57122. extra: 1131/1006,
  57123. bottom: 66/1197
  57124. }
  57125. },
  57126. foot: {
  57127. height: math.unit(0.3, "mm"),
  57128. name: "Foot",
  57129. image: {
  57130. source: "./media/characters/carmel/foot.svg"
  57131. }
  57132. },
  57133. tongue: {
  57134. height: math.unit(0.71, "mm"),
  57135. name: "Tongue",
  57136. image: {
  57137. source: "./media/characters/carmel/tongue.svg"
  57138. }
  57139. },
  57140. dick: {
  57141. height: math.unit(0.085, "mm"),
  57142. name: "Dick",
  57143. image: {
  57144. source: "./media/characters/carmel/dick.svg"
  57145. }
  57146. },
  57147. },
  57148. [
  57149. {
  57150. name: "Micro",
  57151. height: math.unit(2, "mm"),
  57152. default: true
  57153. },
  57154. {
  57155. name: "Normal",
  57156. height: math.unit(4 + 8/12, "feet")
  57157. },
  57158. {
  57159. name: "Mega Macro",
  57160. height: math.unit(250, "feet")
  57161. },
  57162. {
  57163. name: "BIGGER",
  57164. height: math.unit(1000, "feet")
  57165. },
  57166. {
  57167. name: "BIGGEST",
  57168. height: math.unit(2, "miles")
  57169. },
  57170. ]
  57171. ))
  57172. characterMakers.push(() => makeCharacter(
  57173. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  57174. {
  57175. front: {
  57176. height: math.unit(6.5, "feet"),
  57177. weight: math.unit(198, "lb"),
  57178. name: "Front",
  57179. image: {
  57180. source: "./media/characters/tamani/anthro.svg",
  57181. extra: 930/890,
  57182. bottom: 34/964
  57183. },
  57184. form: "anthro",
  57185. default: true
  57186. },
  57187. side: {
  57188. height: math.unit(6, "feet"),
  57189. weight: math.unit(198*2, "lb"),
  57190. name: "Side",
  57191. image: {
  57192. source: "./media/characters/tamani/feral.svg",
  57193. extra: 559/519,
  57194. bottom: 43/602
  57195. },
  57196. form: "feral"
  57197. },
  57198. },
  57199. [
  57200. {
  57201. name: "Normal",
  57202. height: math.unit(6.5, "feet"),
  57203. default: true,
  57204. form: "anthro"
  57205. },
  57206. {
  57207. name: "Normal",
  57208. height: math.unit(6, "feet"),
  57209. default: true,
  57210. form: "feral"
  57211. },
  57212. ],
  57213. {
  57214. "anthro": {
  57215. name: "Anthro",
  57216. default: true
  57217. },
  57218. "feral": {
  57219. name: "Feral",
  57220. },
  57221. }
  57222. ))
  57223. characterMakers.push(() => makeCharacter(
  57224. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  57225. {
  57226. front: {
  57227. height: math.unit(4 + 1/12, "feet"),
  57228. weight: math.unit(114, "lb"),
  57229. name: "Front",
  57230. image: {
  57231. source: "./media/characters/dex/front.svg",
  57232. extra: 787/680,
  57233. bottom: 18/805
  57234. }
  57235. },
  57236. side: {
  57237. height: math.unit(4 + 1/12, "feet"),
  57238. weight: math.unit(114, "lb"),
  57239. name: "Side",
  57240. image: {
  57241. source: "./media/characters/dex/side.svg",
  57242. extra: 785/680,
  57243. bottom: 12/797
  57244. }
  57245. },
  57246. back: {
  57247. height: math.unit(4 + 1/12, "feet"),
  57248. weight: math.unit(114, "lb"),
  57249. name: "Back",
  57250. image: {
  57251. source: "./media/characters/dex/back.svg",
  57252. extra: 785/681,
  57253. bottom: 17/802
  57254. }
  57255. },
  57256. loungewear: {
  57257. height: math.unit(4 + 1/12, "feet"),
  57258. weight: math.unit(114, "lb"),
  57259. name: "Loungewear",
  57260. image: {
  57261. source: "./media/characters/dex/loungewear.svg",
  57262. extra: 787/680,
  57263. bottom: 18/805
  57264. }
  57265. },
  57266. workout: {
  57267. height: math.unit(4 + 1/12, "feet"),
  57268. weight: math.unit(114, "lb"),
  57269. name: "Workout",
  57270. image: {
  57271. source: "./media/characters/dex/workout.svg",
  57272. extra: 787/680,
  57273. bottom: 18/805
  57274. }
  57275. },
  57276. schoolUniform: {
  57277. height: math.unit(4 + 1/12, "feet"),
  57278. weight: math.unit(114, "lb"),
  57279. name: "School-uniform",
  57280. image: {
  57281. source: "./media/characters/dex/school-uniform.svg",
  57282. extra: 787/680,
  57283. bottom: 18/805
  57284. }
  57285. },
  57286. maw: {
  57287. height: math.unit(0.55, "feet"),
  57288. name: "Maw",
  57289. image: {
  57290. source: "./media/characters/dex/maw.svg"
  57291. }
  57292. },
  57293. paw: {
  57294. height: math.unit(0.87, "feet"),
  57295. name: "Paw",
  57296. image: {
  57297. source: "./media/characters/dex/paw.svg"
  57298. }
  57299. },
  57300. bust: {
  57301. height: math.unit(1.67, "feet"),
  57302. name: "Bust",
  57303. image: {
  57304. source: "./media/characters/dex/bust.svg"
  57305. }
  57306. },
  57307. },
  57308. [
  57309. {
  57310. name: "Normal",
  57311. height: math.unit(4 + 1/12, "feet"),
  57312. default: true
  57313. },
  57314. ]
  57315. ))
  57316. characterMakers.push(() => makeCharacter(
  57317. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  57318. {
  57319. front: {
  57320. height: math.unit(4 + 3/12, "feet"),
  57321. weight: math.unit(60, "lb"),
  57322. name: "Front",
  57323. image: {
  57324. source: "./media/characters/silke/front.svg",
  57325. extra: 1334/1122,
  57326. bottom: 21/1355
  57327. }
  57328. },
  57329. back: {
  57330. height: math.unit(4 + 3/12, "feet"),
  57331. weight: math.unit(60, "lb"),
  57332. name: "Back",
  57333. image: {
  57334. source: "./media/characters/silke/back.svg",
  57335. extra: 1328/1092,
  57336. bottom: 16/1344
  57337. }
  57338. },
  57339. dressed: {
  57340. height: math.unit(4 + 3/12, "feet"),
  57341. weight: math.unit(60, "lb"),
  57342. name: "Dressed",
  57343. image: {
  57344. source: "./media/characters/silke/dressed.svg",
  57345. extra: 1334/1122,
  57346. bottom: 43/1377
  57347. }
  57348. },
  57349. },
  57350. [
  57351. {
  57352. name: "Normal",
  57353. height: math.unit(4 + 3/12, "feet"),
  57354. default: true
  57355. },
  57356. ]
  57357. ))
  57358. characterMakers.push(() => makeCharacter(
  57359. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  57360. {
  57361. front: {
  57362. height: math.unit(1.58, "meters"),
  57363. weight: math.unit(47, "kg"),
  57364. name: "Front",
  57365. image: {
  57366. source: "./media/characters/wireshark/front.svg",
  57367. extra: 883/838,
  57368. bottom: 66/949
  57369. }
  57370. },
  57371. },
  57372. [
  57373. {
  57374. name: "Normal",
  57375. height: math.unit(1.58, "meters"),
  57376. default: true
  57377. },
  57378. ]
  57379. ))
  57380. characterMakers.push(() => makeCharacter(
  57381. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  57382. {
  57383. front: {
  57384. height: math.unit(6, "meters"),
  57385. weight: math.unit(15000, "kg"),
  57386. name: "Front",
  57387. image: {
  57388. source: "./media/characters/gallagher/front.svg",
  57389. extra: 532/493,
  57390. bottom: 0/532
  57391. }
  57392. },
  57393. },
  57394. [
  57395. {
  57396. name: "Normal",
  57397. height: math.unit(6, "meters"),
  57398. default: true
  57399. },
  57400. ]
  57401. ))
  57402. characterMakers.push(() => makeCharacter(
  57403. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  57404. {
  57405. front: {
  57406. height: math.unit(2.4, "meters"),
  57407. weight: math.unit(270, "kg"),
  57408. name: "Front",
  57409. image: {
  57410. source: "./media/characters/alice/front.svg",
  57411. extra: 950/900,
  57412. bottom: 36/986
  57413. }
  57414. },
  57415. side: {
  57416. height: math.unit(2.4, "meters"),
  57417. weight: math.unit(270, "kg"),
  57418. name: "Side",
  57419. image: {
  57420. source: "./media/characters/alice/side.svg",
  57421. extra: 921/876,
  57422. bottom: 19/940
  57423. }
  57424. },
  57425. dressed: {
  57426. height: math.unit(2.4, "meters"),
  57427. weight: math.unit(270, "kg"),
  57428. name: "Dressed",
  57429. image: {
  57430. source: "./media/characters/alice/dressed.svg",
  57431. extra: 905/850,
  57432. bottom: 81/986
  57433. }
  57434. },
  57435. fishnet: {
  57436. height: math.unit(2.4, "meters"),
  57437. weight: math.unit(270, "kg"),
  57438. name: "Fishnet",
  57439. image: {
  57440. source: "./media/characters/alice/fishnet.svg",
  57441. extra: 905/850,
  57442. bottom: 81/986
  57443. }
  57444. },
  57445. },
  57446. [
  57447. {
  57448. name: "Normal",
  57449. height: math.unit(2.4, "meters"),
  57450. default: true
  57451. },
  57452. ]
  57453. ))
  57454. characterMakers.push(() => makeCharacter(
  57455. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  57456. {
  57457. front: {
  57458. height: math.unit(175.25, "feet"),
  57459. name: "Front",
  57460. image: {
  57461. source: "./media/characters/fio/front.svg",
  57462. extra: 1883/1591,
  57463. bottom: 34/1917
  57464. }
  57465. },
  57466. },
  57467. [
  57468. {
  57469. name: "Normal",
  57470. height: math.unit(175.25, "cm"),
  57471. default: true
  57472. },
  57473. ]
  57474. ))
  57475. characterMakers.push(() => makeCharacter(
  57476. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  57477. {
  57478. side: {
  57479. height: math.unit(6, "meters"),
  57480. weight: math.unit(3400, "kg"),
  57481. preyCapacity: math.unit(1700, "liters"),
  57482. name: "Side",
  57483. image: {
  57484. source: "./media/characters/hass/side.svg",
  57485. extra: 1058/997,
  57486. bottom: 177/1235
  57487. }
  57488. },
  57489. feeding: {
  57490. height: math.unit(6*0.63, "meters"),
  57491. weight: math.unit(3400, "kg"),
  57492. preyCapacity: math.unit(1700, "liters"),
  57493. name: "Feeding",
  57494. image: {
  57495. source: "./media/characters/hass/feeding.svg",
  57496. extra: 689/579,
  57497. bottom: 146/835
  57498. }
  57499. },
  57500. guts: {
  57501. height: math.unit(6, "meters"),
  57502. weight: math.unit(3400, "kg"),
  57503. name: "Guts",
  57504. image: {
  57505. source: "./media/characters/hass/guts.svg",
  57506. extra: 1223/1198,
  57507. bottom: 182/1405
  57508. }
  57509. },
  57510. dickFront: {
  57511. height: math.unit(1.4, "meters"),
  57512. name: "Dick (Front)",
  57513. image: {
  57514. source: "./media/characters/hass/dick-front.svg"
  57515. }
  57516. },
  57517. dickSide: {
  57518. height: math.unit(1.3, "meters"),
  57519. name: "Dick (Side)",
  57520. image: {
  57521. source: "./media/characters/hass/dick-side.svg"
  57522. }
  57523. },
  57524. dickBack: {
  57525. height: math.unit(1.4, "meters"),
  57526. name: "Dick (Back)",
  57527. image: {
  57528. source: "./media/characters/hass/dick-back.svg"
  57529. }
  57530. },
  57531. },
  57532. [
  57533. {
  57534. name: "Normal",
  57535. height: math.unit(6, "meters"),
  57536. default: true
  57537. },
  57538. ]
  57539. ))
  57540. characterMakers.push(() => makeCharacter(
  57541. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57542. {
  57543. front: {
  57544. height: math.unit(4, "feet"),
  57545. weight: math.unit(60, "lb"),
  57546. name: "Front",
  57547. image: {
  57548. source: "./media/characters/hickory-finnegan/front.svg",
  57549. extra: 444/411,
  57550. bottom: 10/454
  57551. }
  57552. },
  57553. side: {
  57554. height: math.unit(4, "feet"),
  57555. weight: math.unit(60, "lb"),
  57556. name: "Side",
  57557. image: {
  57558. source: "./media/characters/hickory-finnegan/side.svg",
  57559. extra: 444/411,
  57560. bottom: 10/454
  57561. }
  57562. },
  57563. back: {
  57564. height: math.unit(4, "feet"),
  57565. weight: math.unit(60, "lb"),
  57566. name: "Back",
  57567. image: {
  57568. source: "./media/characters/hickory-finnegan/back.svg",
  57569. extra: 444/411,
  57570. bottom: 10/454
  57571. }
  57572. },
  57573. },
  57574. [
  57575. {
  57576. name: "Normal",
  57577. height: math.unit(4, "feet"),
  57578. default: true
  57579. },
  57580. ]
  57581. ))
  57582. characterMakers.push(() => makeCharacter(
  57583. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57584. {
  57585. snivy_front: {
  57586. height: math.unit(2, "feet"),
  57587. weight: math.unit(17.9, "lb"),
  57588. name: "Front",
  57589. image: {
  57590. source: "./media/characters/robin-phox/snivy-front.svg",
  57591. extra: 569/504,
  57592. bottom: 33/602
  57593. },
  57594. form: "snivy",
  57595. default: true
  57596. },
  57597. snivy_frontNsfw: {
  57598. height: math.unit(2, "feet"),
  57599. weight: math.unit(17.9, "lb"),
  57600. name: "Front (NSFW)",
  57601. image: {
  57602. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57603. extra: 569/504,
  57604. bottom: 33/602
  57605. },
  57606. form: "snivy",
  57607. },
  57608. snivy_back: {
  57609. height: math.unit(2, "feet"),
  57610. weight: math.unit(17.9, "lb"),
  57611. name: "Back",
  57612. image: {
  57613. source: "./media/characters/robin-phox/snivy-back.svg",
  57614. extra: 577/508,
  57615. bottom: 21/598
  57616. },
  57617. form: "snivy",
  57618. },
  57619. snivy_foot: {
  57620. height: math.unit(0.68, "feet"),
  57621. name: "Foot",
  57622. image: {
  57623. source: "./media/characters/robin-phox/snivy-foot.svg"
  57624. },
  57625. form: "snivy",
  57626. },
  57627. snivy_sole: {
  57628. height: math.unit(0.68, "feet"),
  57629. name: "Sole",
  57630. image: {
  57631. source: "./media/characters/robin-phox/snivy-sole.svg"
  57632. },
  57633. form: "snivy",
  57634. },
  57635. yoshi_front: {
  57636. height: math.unit(6, "feet"),
  57637. weight: math.unit(150, "lb"),
  57638. name: "Front",
  57639. image: {
  57640. source: "./media/characters/robin-phox/yoshi-front.svg",
  57641. extra: 890/792,
  57642. bottom: 29/919
  57643. },
  57644. form: "yoshi",
  57645. default: true
  57646. },
  57647. yoshi_frontNsfw: {
  57648. height: math.unit(6, "feet"),
  57649. weight: math.unit(150, "lb"),
  57650. name: "Front (NSFW)",
  57651. image: {
  57652. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57653. extra: 890/792,
  57654. bottom: 29/919
  57655. },
  57656. form: "yoshi",
  57657. },
  57658. yoshi_back: {
  57659. height: math.unit(6, "feet"),
  57660. weight: math.unit(150, "lb"),
  57661. name: "Back",
  57662. image: {
  57663. source: "./media/characters/robin-phox/yoshi-back.svg",
  57664. extra: 890/792,
  57665. bottom: 29/919
  57666. },
  57667. form: "yoshi",
  57668. },
  57669. yoshi_foot: {
  57670. height: math.unit(1.5, "feet"),
  57671. name: "Foot",
  57672. image: {
  57673. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57674. },
  57675. form: "yoshi",
  57676. },
  57677. delphox_front: {
  57678. height: math.unit(4 + 11/12, "feet"),
  57679. weight: math.unit(86, "lb"),
  57680. name: "Front",
  57681. image: {
  57682. source: "./media/characters/robin-phox/delphox-front.svg",
  57683. extra: 1266/1069,
  57684. bottom: 32/1298
  57685. },
  57686. form: "delphox",
  57687. default: true
  57688. },
  57689. delphox_frontNsfw: {
  57690. height: math.unit(4 + 11/12, "feet"),
  57691. weight: math.unit(86, "lb"),
  57692. name: "Front (NSFW)",
  57693. image: {
  57694. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57695. extra: 1266/1069,
  57696. bottom: 32/1298
  57697. },
  57698. form: "delphox",
  57699. },
  57700. delphox_back: {
  57701. height: math.unit(4 + 11/12, "feet"),
  57702. weight: math.unit(86, "lb"),
  57703. name: "Back",
  57704. image: {
  57705. source: "./media/characters/robin-phox/delphox-back.svg",
  57706. extra: 1269/1083,
  57707. bottom: 15/1284
  57708. },
  57709. form: "delphox",
  57710. },
  57711. mienshao_front: {
  57712. height: math.unit(4 + 7/12, "feet"),
  57713. weight: math.unit(78.3, "lb"),
  57714. name: "Front",
  57715. image: {
  57716. source: "./media/characters/robin-phox/mienshao-front.svg",
  57717. extra: 1052/970,
  57718. bottom: 108/1160
  57719. },
  57720. form: "mienshao",
  57721. default: true
  57722. },
  57723. mienshao_frontNsfw: {
  57724. height: math.unit(4 + 7/12, "feet"),
  57725. weight: math.unit(78.3, "lb"),
  57726. name: "Front (NSFW)",
  57727. image: {
  57728. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57729. extra: 1052/970,
  57730. bottom: 108/1160
  57731. },
  57732. form: "mienshao",
  57733. },
  57734. mienshao_back: {
  57735. height: math.unit(4 + 7/12, "feet"),
  57736. weight: math.unit(78.3, "lb"),
  57737. name: "Back",
  57738. image: {
  57739. source: "./media/characters/robin-phox/mienshao-back.svg",
  57740. extra: 1102/982,
  57741. bottom: 32/1134
  57742. },
  57743. form: "mienshao",
  57744. },
  57745. inteleon_front: {
  57746. height: math.unit(6 + 3/12, "feet"),
  57747. weight: math.unit(99.6, "lb"),
  57748. name: "Front",
  57749. image: {
  57750. source: "./media/characters/robin-phox/inteleon-front.svg",
  57751. extra: 910/799,
  57752. bottom: 76/986
  57753. },
  57754. form: "inteleon",
  57755. default: true
  57756. },
  57757. inteleon_frontNsfw: {
  57758. height: math.unit(6 + 3/12, "feet"),
  57759. weight: math.unit(99.6, "lb"),
  57760. name: "Front (NSFW)",
  57761. image: {
  57762. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57763. extra: 910/799,
  57764. bottom: 76/986
  57765. },
  57766. form: "inteleon",
  57767. },
  57768. inteleon_back: {
  57769. height: math.unit(6 + 3/12, "feet"),
  57770. weight: math.unit(99.6, "lb"),
  57771. name: "Back",
  57772. image: {
  57773. source: "./media/characters/robin-phox/inteleon-back.svg",
  57774. extra: 907/796,
  57775. bottom: 25/932
  57776. },
  57777. form: "inteleon",
  57778. },
  57779. reshiram_front: {
  57780. height: math.unit(10 + 6/12, "feet"),
  57781. weight: math.unit(727.5, "lb"),
  57782. name: "Front",
  57783. image: {
  57784. source: "./media/characters/robin-phox/reshiram-front.svg",
  57785. extra: 1198/940,
  57786. bottom: 123/1321
  57787. },
  57788. form: "reshiram",
  57789. },
  57790. reshiram_frontNsfw: {
  57791. height: math.unit(10 + 6/12, "feet"),
  57792. weight: math.unit(727.5, "lb"),
  57793. name: "Front-nsfw",
  57794. image: {
  57795. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57796. extra: 1198/940,
  57797. bottom: 123/1321
  57798. },
  57799. form: "reshiram",
  57800. },
  57801. reshiram_back: {
  57802. height: math.unit(10 + 6/12, "feet"),
  57803. weight: math.unit(727.5, "lb"),
  57804. name: "Back",
  57805. image: {
  57806. source: "./media/characters/robin-phox/reshiram-back.svg",
  57807. extra: 1024/904,
  57808. bottom: 85/1109
  57809. },
  57810. form: "reshiram",
  57811. },
  57812. samurott_front: {
  57813. height: math.unit(8, "feet"),
  57814. weight: math.unit(208.6, "lb"),
  57815. name: "Front",
  57816. image: {
  57817. source: "./media/characters/robin-phox/samurott-front.svg",
  57818. extra: 1048/984,
  57819. bottom: 100/1148
  57820. },
  57821. form: "samurott",
  57822. },
  57823. samurott_frontNsfw: {
  57824. height: math.unit(8, "feet"),
  57825. weight: math.unit(208.6, "lb"),
  57826. name: "Front-nsfw",
  57827. image: {
  57828. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57829. extra: 1048/984,
  57830. bottom: 100/1148
  57831. },
  57832. form: "samurott",
  57833. },
  57834. samurott_back: {
  57835. height: math.unit(8, "feet"),
  57836. weight: math.unit(208.6, "lb"),
  57837. name: "Back",
  57838. image: {
  57839. source: "./media/characters/robin-phox/samurott-back.svg",
  57840. extra: 1110/1042,
  57841. bottom: 12/1122
  57842. },
  57843. form: "samurott",
  57844. },
  57845. samurott_feral: {
  57846. height: math.unit(4 + 11/12, "feet"),
  57847. weight: math.unit(208.6, "lb"),
  57848. name: "Feral",
  57849. image: {
  57850. source: "./media/characters/robin-phox/samurott-feral.svg",
  57851. extra: 766/681,
  57852. bottom: 108/874
  57853. },
  57854. form: "samurott",
  57855. },
  57856. },
  57857. [
  57858. {
  57859. name: "Normal",
  57860. height: math.unit(2, "feet"),
  57861. default: true,
  57862. form: "snivy"
  57863. },
  57864. {
  57865. name: "Normal",
  57866. height: math.unit(6, "feet"),
  57867. default: true,
  57868. form: "yoshi"
  57869. },
  57870. {
  57871. name: "Normal",
  57872. height: math.unit(4 + 11/12, "feet"),
  57873. default: true,
  57874. form: "delphox"
  57875. },
  57876. {
  57877. name: "Normal",
  57878. height: math.unit(4 + 7/12, "feet"),
  57879. default: true,
  57880. form: "mienshao"
  57881. },
  57882. {
  57883. name: "Normal",
  57884. height: math.unit(6 + 3/12, "feet"),
  57885. default: true,
  57886. form: "inteleon"
  57887. },
  57888. {
  57889. name: "Normal",
  57890. height: math.unit(10 + 6/12, "feet"),
  57891. default: true,
  57892. form: "reshiram"
  57893. },
  57894. {
  57895. name: "Normal",
  57896. height: math.unit(8, "feet"),
  57897. default: true,
  57898. form: "samurott"
  57899. },
  57900. {
  57901. name: "Macro",
  57902. height: math.unit(500, "feet"),
  57903. allForms: true
  57904. },
  57905. {
  57906. name: "Mega Macro",
  57907. height: math.unit(10, "earths"),
  57908. allForms: true
  57909. },
  57910. {
  57911. name: "Giga Macro",
  57912. height: math.unit(1, "galaxy"),
  57913. allForms: true
  57914. },
  57915. {
  57916. name: "Godly Macro",
  57917. height: math.unit(1e10, "multiverses"),
  57918. allForms: true
  57919. },
  57920. ],
  57921. {
  57922. "snivy": {
  57923. name: "Snivy",
  57924. default: true
  57925. },
  57926. "yoshi": {
  57927. name: "Yoshi",
  57928. },
  57929. "delphox": {
  57930. name: "Delphox",
  57931. },
  57932. "mienshao": {
  57933. name: "Mienshao",
  57934. },
  57935. "inteleon": {
  57936. name: "Inteleon",
  57937. },
  57938. "reshiram": {
  57939. name: "Reshiram",
  57940. },
  57941. "samurott": {
  57942. name: "Samurott",
  57943. },
  57944. }
  57945. ))
  57946. characterMakers.push(() => makeCharacter(
  57947. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57948. {
  57949. front: {
  57950. height: math.unit(4, "feet"),
  57951. name: "Front",
  57952. image: {
  57953. source: "./media/characters/ash-leung/front.svg",
  57954. extra: 1916/1792,
  57955. bottom: 50/1966
  57956. }
  57957. },
  57958. },
  57959. [
  57960. {
  57961. name: "Atomic",
  57962. height: math.unit(1, "angstrom")
  57963. },
  57964. {
  57965. name: "Microscopic",
  57966. height: math.unit(4000, "angstroms")
  57967. },
  57968. {
  57969. name: "Speck",
  57970. height: math.unit(1, "mm")
  57971. },
  57972. {
  57973. name: "Small",
  57974. height: math.unit(1, "inch")
  57975. },
  57976. {
  57977. name: "Normal",
  57978. height: math.unit(4, "feet"),
  57979. default: true
  57980. },
  57981. ]
  57982. ))
  57983. characterMakers.push(() => makeCharacter(
  57984. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57985. {
  57986. frontDressed: {
  57987. height: math.unit(2.08, "meters"),
  57988. weight: math.unit(175, "lb"),
  57989. name: "Front (Dressed)",
  57990. image: {
  57991. source: "./media/characters/carie/front-dressed.svg",
  57992. extra: 456/417,
  57993. bottom: 7/463
  57994. }
  57995. },
  57996. backDressed: {
  57997. height: math.unit(2.08, "meters"),
  57998. weight: math.unit(175, "lb"),
  57999. name: "Back (Dressed)",
  58000. image: {
  58001. source: "./media/characters/carie/back-dressed.svg",
  58002. extra: 455/414,
  58003. bottom: 11/466
  58004. }
  58005. },
  58006. front: {
  58007. height: math.unit(2, "meters"),
  58008. weight: math.unit(175, "lb"),
  58009. name: "Front",
  58010. image: {
  58011. source: "./media/characters/carie/front.svg",
  58012. extra: 438/399,
  58013. bottom: 12/450
  58014. }
  58015. },
  58016. back: {
  58017. height: math.unit(2, "meters"),
  58018. weight: math.unit(175, "lb"),
  58019. name: "Back",
  58020. image: {
  58021. source: "./media/characters/carie/back.svg",
  58022. extra: 438/397,
  58023. bottom: 7/445
  58024. }
  58025. },
  58026. },
  58027. [
  58028. {
  58029. name: "Normal",
  58030. height: math.unit(2.08, "meters"),
  58031. default: true
  58032. },
  58033. {
  58034. name: "Macro",
  58035. height: math.unit(2.08e3, "meters")
  58036. },
  58037. {
  58038. name: "Mega Macro",
  58039. height: math.unit(2.08e6, "meters")
  58040. },
  58041. {
  58042. name: "Giga Macro",
  58043. height: math.unit(2.08e9, "meters")
  58044. },
  58045. {
  58046. name: "Tera Macro",
  58047. height: math.unit(2.08e12, "meters")
  58048. },
  58049. {
  58050. name: "Peta Macro",
  58051. height: math.unit(2.08e15, "meters")
  58052. },
  58053. {
  58054. name: "Exa Macro",
  58055. height: math.unit(2.08e18, "meters")
  58056. },
  58057. {
  58058. name: "Zetta Macro",
  58059. height: math.unit(2.08e21, "meters")
  58060. },
  58061. {
  58062. name: "Yotta Macro",
  58063. height: math.unit(2.08e24, "meters")
  58064. },
  58065. ]
  58066. ))
  58067. characterMakers.push(() => makeCharacter(
  58068. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  58069. {
  58070. front: {
  58071. height: math.unit(5 + 2/12, "feet"),
  58072. weight: math.unit(120, "lb"),
  58073. name: "Front",
  58074. image: {
  58075. source: "./media/characters/sai-bree/front.svg",
  58076. extra: 1843/1702,
  58077. bottom: 91/1934
  58078. }
  58079. },
  58080. back: {
  58081. height: math.unit(5 + 2/12, "feet"),
  58082. weight: math.unit(120, "lb"),
  58083. name: "Back",
  58084. image: {
  58085. source: "./media/characters/sai-bree/back.svg",
  58086. extra: 1809/1637,
  58087. bottom: 56/1865
  58088. }
  58089. },
  58090. },
  58091. [
  58092. {
  58093. name: "Normal",
  58094. height: math.unit(5 + 2/12, "feet"),
  58095. default: true
  58096. },
  58097. {
  58098. name: "Macro",
  58099. height: math.unit(500, "feet")
  58100. },
  58101. ]
  58102. ))
  58103. characterMakers.push(() => makeCharacter(
  58104. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  58105. {
  58106. side: {
  58107. height: math.unit(0.77, "meters"),
  58108. weight: math.unit(120, "lb"),
  58109. name: "Side",
  58110. image: {
  58111. source: "./media/characters/davwyn/side.svg",
  58112. extra: 1557/1225,
  58113. bottom: 131/1688
  58114. }
  58115. },
  58116. front: {
  58117. height: math.unit(0.835410, "meters"),
  58118. weight: math.unit(120, "lb"),
  58119. name: "Front",
  58120. image: {
  58121. source: "./media/characters/davwyn/front.svg",
  58122. extra: 870/843,
  58123. bottom: 175/1045
  58124. }
  58125. },
  58126. },
  58127. [
  58128. {
  58129. name: "Minidrake",
  58130. height: math.unit(0.77/4, "meters")
  58131. },
  58132. {
  58133. name: "Normal",
  58134. height: math.unit(0.77, "meters"),
  58135. default: true
  58136. },
  58137. ]
  58138. ))
  58139. characterMakers.push(() => makeCharacter(
  58140. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  58141. {
  58142. front: {
  58143. height: math.unit(10 + 3/12, "feet"),
  58144. weight: math.unit(2857, "lb"),
  58145. name: "Front",
  58146. image: {
  58147. source: "./media/characters/balans/front.svg",
  58148. extra: 427/402,
  58149. bottom: 26/453
  58150. }
  58151. },
  58152. side: {
  58153. height: math.unit(10 + 3/12, "feet"),
  58154. weight: math.unit(2857, "lb"),
  58155. name: "Side",
  58156. image: {
  58157. source: "./media/characters/balans/side.svg",
  58158. extra: 397/371,
  58159. bottom: 17/414
  58160. }
  58161. },
  58162. back: {
  58163. height: math.unit(10 + 3/12, "feet"),
  58164. weight: math.unit(2857, "lb"),
  58165. name: "Back",
  58166. image: {
  58167. source: "./media/characters/balans/back.svg",
  58168. extra: 408/381,
  58169. bottom: 14/422
  58170. }
  58171. },
  58172. hand: {
  58173. height: math.unit(1.15, "feet"),
  58174. name: "Hand",
  58175. image: {
  58176. source: "./media/characters/balans/hand.svg"
  58177. }
  58178. },
  58179. footRest: {
  58180. height: math.unit(3.1, "feet"),
  58181. name: "Foot (Rest)",
  58182. image: {
  58183. source: "./media/characters/balans/foot-rest.svg"
  58184. }
  58185. },
  58186. footActive: {
  58187. height: math.unit(3.5, "feet"),
  58188. name: "Foot (Active)",
  58189. image: {
  58190. source: "./media/characters/balans/foot-active.svg"
  58191. }
  58192. },
  58193. },
  58194. [
  58195. {
  58196. name: "Normal",
  58197. height: math.unit(10 + 3/12, "feet"),
  58198. default: true
  58199. },
  58200. ]
  58201. ))
  58202. characterMakers.push(() => makeCharacter(
  58203. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  58204. {
  58205. side: {
  58206. height: math.unit(9, "meters"),
  58207. weight: math.unit(114, "tonnes"),
  58208. name: "Side",
  58209. image: {
  58210. source: "./media/characters/eldkveikir/side.svg",
  58211. extra: 1927/338,
  58212. bottom: 42/1969
  58213. }
  58214. },
  58215. sitting: {
  58216. height: math.unit(13.4, "meters"),
  58217. weight: math.unit(114, "tonnes"),
  58218. name: "Sitting",
  58219. image: {
  58220. source: "./media/characters/eldkveikir/sitting.svg",
  58221. extra: 1108/963,
  58222. bottom: 610/1718
  58223. }
  58224. },
  58225. maw: {
  58226. height: math.unit(8.36, "meters"),
  58227. name: "Maw",
  58228. image: {
  58229. source: "./media/characters/eldkveikir/maw.svg"
  58230. }
  58231. },
  58232. hand: {
  58233. height: math.unit(4.84, "meters"),
  58234. name: "Hand",
  58235. image: {
  58236. source: "./media/characters/eldkveikir/hand.svg"
  58237. }
  58238. },
  58239. foot: {
  58240. height: math.unit(6.9, "meters"),
  58241. name: "Foot",
  58242. image: {
  58243. source: "./media/characters/eldkveikir/foot.svg"
  58244. }
  58245. },
  58246. genitals: {
  58247. height: math.unit(9.6, "meters"),
  58248. name: "Genitals",
  58249. image: {
  58250. source: "./media/characters/eldkveikir/genitals.svg"
  58251. }
  58252. },
  58253. },
  58254. [
  58255. {
  58256. name: "Normal",
  58257. height: math.unit(9, "meters"),
  58258. default: true
  58259. },
  58260. ]
  58261. ))
  58262. characterMakers.push(() => makeCharacter(
  58263. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  58264. {
  58265. front: {
  58266. height: math.unit(14, "feet"),
  58267. weight: math.unit(4100, "lb"),
  58268. name: "Front",
  58269. image: {
  58270. source: "./media/characters/arrow/front.svg",
  58271. extra: 330/318,
  58272. bottom: 56/386
  58273. }
  58274. },
  58275. },
  58276. [
  58277. {
  58278. name: "Normal",
  58279. height: math.unit(14, "feet"),
  58280. default: true
  58281. },
  58282. {
  58283. name: "Minimacro",
  58284. height: math.unit(63, "feet")
  58285. },
  58286. {
  58287. name: "Macro",
  58288. height: math.unit(630, "feet")
  58289. },
  58290. {
  58291. name: "Megamacro",
  58292. height: math.unit(12600, "feet")
  58293. },
  58294. {
  58295. name: "Gigamacro",
  58296. height: math.unit(18000, "miles")
  58297. },
  58298. ]
  58299. ))
  58300. characterMakers.push(() => makeCharacter(
  58301. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  58302. {
  58303. front: {
  58304. height: math.unit(10, "feet"),
  58305. weight: math.unit(2.4, "tons"),
  58306. name: "Front",
  58307. image: {
  58308. source: "./media/characters/3yk-k0-unit/front.svg",
  58309. extra: 573/561,
  58310. bottom: 33/606
  58311. }
  58312. },
  58313. back: {
  58314. height: math.unit(10, "feet"),
  58315. weight: math.unit(2.4, "tons"),
  58316. name: "Back",
  58317. image: {
  58318. source: "./media/characters/3yk-k0-unit/back.svg",
  58319. extra: 614/573,
  58320. bottom: 32/646
  58321. }
  58322. },
  58323. maw: {
  58324. height: math.unit(2.15, "feet"),
  58325. name: "Maw",
  58326. image: {
  58327. source: "./media/characters/3yk-k0-unit/maw.svg"
  58328. }
  58329. },
  58330. },
  58331. [
  58332. {
  58333. name: "Normal",
  58334. height: math.unit(10, "feet"),
  58335. default: true
  58336. },
  58337. ]
  58338. ))
  58339. characterMakers.push(() => makeCharacter(
  58340. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  58341. {
  58342. front: {
  58343. height: math.unit(8 + 8/12, "feet"),
  58344. name: "Front",
  58345. image: {
  58346. source: "./media/characters/nemo/front.svg",
  58347. extra: 1308/1217,
  58348. bottom: 57/1365
  58349. }
  58350. },
  58351. },
  58352. [
  58353. {
  58354. name: "Normal",
  58355. height: math.unit(8 + 8/12, "feet"),
  58356. default: true
  58357. },
  58358. ]
  58359. ))
  58360. characterMakers.push(() => makeCharacter(
  58361. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  58362. {
  58363. front: {
  58364. height: math.unit(8, "feet"),
  58365. weight: math.unit(760, "lb"),
  58366. name: "Front",
  58367. image: {
  58368. source: "./media/characters/rexx/front.svg",
  58369. extra: 786/750,
  58370. bottom: 17/803
  58371. },
  58372. extraAttributes: {
  58373. "pawLength": {
  58374. name: "Paw Length",
  58375. power: 1,
  58376. type: "length",
  58377. base: math.unit(27, "inches")
  58378. },
  58379. }
  58380. },
  58381. },
  58382. [
  58383. {
  58384. name: "Micro",
  58385. height: math.unit(2, "inches")
  58386. },
  58387. {
  58388. name: "Normal",
  58389. height: math.unit(8, "feet"),
  58390. default: true
  58391. },
  58392. {
  58393. name: "Macro",
  58394. height: math.unit(150, "feet")
  58395. },
  58396. ]
  58397. ))
  58398. characterMakers.push(() => makeCharacter(
  58399. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  58400. {
  58401. front: {
  58402. height: math.unit(18, "feet"),
  58403. weight: math.unit(1975, "lb"),
  58404. name: "Front",
  58405. image: {
  58406. source: "./media/characters/draco/front.svg",
  58407. extra: 1325/1241,
  58408. bottom: 83/1408
  58409. }
  58410. },
  58411. back: {
  58412. height: math.unit(18, "feet"),
  58413. weight: math.unit(1975, "lb"),
  58414. name: "Back",
  58415. image: {
  58416. source: "./media/characters/draco/back.svg",
  58417. extra: 1332/1250,
  58418. bottom: 43/1375
  58419. }
  58420. },
  58421. dick: {
  58422. height: math.unit(7.5, "feet"),
  58423. name: "Dick",
  58424. image: {
  58425. source: "./media/characters/draco/dick.svg"
  58426. }
  58427. },
  58428. },
  58429. [
  58430. {
  58431. name: "Normal",
  58432. height: math.unit(18, "feet"),
  58433. default: true
  58434. },
  58435. ]
  58436. ))
  58437. characterMakers.push(() => makeCharacter(
  58438. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  58439. {
  58440. front: {
  58441. height: math.unit(3.2, "meters"),
  58442. name: "Front",
  58443. image: {
  58444. source: "./media/characters/harriett/front.svg",
  58445. extra: 1966/1915,
  58446. bottom: 9/1975
  58447. }
  58448. },
  58449. },
  58450. [
  58451. {
  58452. name: "Normal",
  58453. height: math.unit(3.2, "meters"),
  58454. default: true
  58455. },
  58456. ]
  58457. ))
  58458. characterMakers.push(() => makeCharacter(
  58459. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  58460. {
  58461. sitting: {
  58462. height: math.unit(0.8, "meter"),
  58463. name: "Sitting",
  58464. image: {
  58465. source: "./media/characters/serpentus/sitting.svg",
  58466. extra: 293/290,
  58467. bottom: 140/433
  58468. }
  58469. },
  58470. },
  58471. [
  58472. {
  58473. name: "Normal",
  58474. height: math.unit(0.8, "meter"),
  58475. default: true
  58476. },
  58477. ]
  58478. ))
  58479. characterMakers.push(() => makeCharacter(
  58480. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  58481. {
  58482. front: {
  58483. height: math.unit(5.7174385736, "feet"),
  58484. name: "Front",
  58485. image: {
  58486. source: "./media/characters/nova-polecat/front.svg",
  58487. extra: 1317/1216,
  58488. bottom: 92/1409
  58489. }
  58490. },
  58491. },
  58492. [
  58493. {
  58494. name: "Normal",
  58495. height: math.unit(5.7174385736, "feet"),
  58496. default: true
  58497. },
  58498. ]
  58499. ))
  58500. characterMakers.push(() => makeCharacter(
  58501. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  58502. {
  58503. front: {
  58504. height: math.unit(5 + 4/12, "feet"),
  58505. weight: math.unit(250, "lb"),
  58506. name: "Front",
  58507. image: {
  58508. source: "./media/characters/mook/front.svg",
  58509. extra: 1088/1037,
  58510. bottom: 132/1220
  58511. }
  58512. },
  58513. back: {
  58514. height: math.unit(5 + 1/12, "feet"),
  58515. weight: math.unit(250, "lb"),
  58516. name: "Back",
  58517. image: {
  58518. source: "./media/characters/mook/back.svg",
  58519. extra: 1184/905,
  58520. bottom: 96/1280
  58521. }
  58522. },
  58523. head: {
  58524. height: math.unit(1.85, "feet"),
  58525. name: "Head",
  58526. image: {
  58527. source: "./media/characters/mook/head.svg"
  58528. }
  58529. },
  58530. hand: {
  58531. height: math.unit(1.9, "feet"),
  58532. name: "Hand",
  58533. image: {
  58534. source: "./media/characters/mook/hand.svg"
  58535. }
  58536. },
  58537. palm: {
  58538. height: math.unit(1.84, "feet"),
  58539. name: "Palm",
  58540. image: {
  58541. source: "./media/characters/mook/palm.svg"
  58542. }
  58543. },
  58544. foot: {
  58545. height: math.unit(1.44, "feet"),
  58546. name: "Foot",
  58547. image: {
  58548. source: "./media/characters/mook/foot.svg"
  58549. }
  58550. },
  58551. sole: {
  58552. height: math.unit(1.44, "feet"),
  58553. name: "Sole",
  58554. image: {
  58555. source: "./media/characters/mook/sole.svg"
  58556. }
  58557. },
  58558. },
  58559. [
  58560. {
  58561. name: "Normal",
  58562. height: math.unit(5 + 4/12, "feet"),
  58563. default: true
  58564. },
  58565. {
  58566. name: "Big",
  58567. height: math.unit(12, "feet")
  58568. },
  58569. ]
  58570. ))
  58571. characterMakers.push(() => makeCharacter(
  58572. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58573. {
  58574. front: {
  58575. height: math.unit(6 + 10/12, "feet"),
  58576. weight: math.unit(233, "lb"),
  58577. name: "Front",
  58578. image: {
  58579. source: "./media/characters/kayla/front.svg",
  58580. extra: 1850/1775,
  58581. bottom: 65/1915
  58582. }
  58583. },
  58584. },
  58585. [
  58586. {
  58587. name: "Normal",
  58588. height: math.unit(6 + 10/12, "feet"),
  58589. default: true
  58590. },
  58591. {
  58592. name: "Amazonian",
  58593. height: math.unit(12 + 5/12, "feet")
  58594. },
  58595. {
  58596. name: "Mini Giantess",
  58597. height: math.unit(26, "feet")
  58598. },
  58599. {
  58600. name: "Giantess",
  58601. height: math.unit(200, "feet")
  58602. },
  58603. {
  58604. name: "Mega Giantess",
  58605. height: math.unit(2500, "feet")
  58606. },
  58607. {
  58608. name: "City Sized",
  58609. height: math.unit(50, "miles")
  58610. },
  58611. {
  58612. name: "Country Sized",
  58613. height: math.unit(500, "miles")
  58614. },
  58615. {
  58616. name: "Continent Sized",
  58617. height: math.unit(2500, "miles")
  58618. },
  58619. {
  58620. name: "Planet Sized",
  58621. height: math.unit(10000, "miles")
  58622. },
  58623. {
  58624. name: "Star Sized",
  58625. height: math.unit(5e6, "miles")
  58626. },
  58627. {
  58628. name: "Solar System Sized",
  58629. height: math.unit(125, "AU")
  58630. },
  58631. {
  58632. name: "Galaxy Sized",
  58633. height: math.unit(300e3, "lightyears")
  58634. },
  58635. {
  58636. name: "Universe Sized",
  58637. height: math.unit(200e9, "lightyears")
  58638. },
  58639. {
  58640. name: "Multiverse Sized",
  58641. height: math.unit(20, "exauniverses")
  58642. },
  58643. {
  58644. name: "Mother of Existence",
  58645. height: math.unit(1e6, "yottauniverses")
  58646. },
  58647. ]
  58648. ))
  58649. characterMakers.push(() => makeCharacter(
  58650. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58651. {
  58652. side: {
  58653. height: math.unit(9.5, "meters"),
  58654. name: "Side",
  58655. image: {
  58656. source: "./media/characters/kulve-ragnarok/side.svg",
  58657. extra: 364/326,
  58658. bottom: 50/414
  58659. }
  58660. },
  58661. },
  58662. [
  58663. {
  58664. name: "Normal",
  58665. height: math.unit(9.5, "meters"),
  58666. default: true
  58667. },
  58668. ]
  58669. ))
  58670. characterMakers.push(() => makeCharacter(
  58671. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58672. {
  58673. front: {
  58674. height: math.unit(8 + 9/12, "feet"),
  58675. name: "Front",
  58676. image: {
  58677. source: "./media/characters/atlas-goat/front.svg",
  58678. extra: 1462/1323,
  58679. bottom: 12/1474
  58680. }
  58681. },
  58682. },
  58683. [
  58684. {
  58685. name: "Normal",
  58686. height: math.unit(8 + 9/12, "feet"),
  58687. default: true
  58688. },
  58689. {
  58690. name: "Skyline",
  58691. height: math.unit(845, "feet")
  58692. },
  58693. {
  58694. name: "Orbital",
  58695. height: math.unit(93000, "miles")
  58696. },
  58697. {
  58698. name: "Constellation",
  58699. height: math.unit(27000, "lightyears")
  58700. },
  58701. ]
  58702. ))
  58703. characterMakers.push(() => makeCharacter(
  58704. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58705. {
  58706. side: {
  58707. height: math.unit(1.8, "meters"),
  58708. weight: math.unit(120, "kg"),
  58709. name: "Side",
  58710. image: {
  58711. source: "./media/characters/xie-ling/side.svg",
  58712. extra: 646/574,
  58713. bottom: 44/690
  58714. }
  58715. },
  58716. },
  58717. [
  58718. {
  58719. name: "Tiny",
  58720. height: math.unit(1.80, "meters")
  58721. },
  58722. {
  58723. name: "Small",
  58724. height: math.unit(6, "meters")
  58725. },
  58726. {
  58727. name: "Medium",
  58728. height: math.unit(15, "meters")
  58729. },
  58730. {
  58731. name: "Normal",
  58732. height: math.unit(30, "meters"),
  58733. default: true
  58734. },
  58735. {
  58736. name: "Above Normal",
  58737. height: math.unit(60, "meters")
  58738. },
  58739. {
  58740. name: "Big",
  58741. height: math.unit(220, "meters")
  58742. },
  58743. {
  58744. name: "Giant",
  58745. height: math.unit(2.2, "km")
  58746. },
  58747. {
  58748. name: "Macro",
  58749. height: math.unit(25, "km")
  58750. },
  58751. {
  58752. name: "Mega Macro",
  58753. height: math.unit(350, "km")
  58754. },
  58755. {
  58756. name: "Mega Macro+",
  58757. height: math.unit(5000, "km")
  58758. },
  58759. {
  58760. name: "Goddess",
  58761. height: math.unit(3, "multiverses")
  58762. },
  58763. ]
  58764. ))
  58765. characterMakers.push(() => makeCharacter(
  58766. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58767. {
  58768. frontSfw: {
  58769. height: math.unit(5 + 11/12, "feet"),
  58770. weight: math.unit(210, "lb"),
  58771. name: "Front",
  58772. image: {
  58773. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58774. extra: 1928/1821,
  58775. bottom: 45/1973
  58776. }
  58777. },
  58778. backSfw: {
  58779. height: math.unit(5 + 11/12, "feet"),
  58780. weight: math.unit(210, "lb"),
  58781. name: "Back",
  58782. image: {
  58783. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58784. extra: 1920/1813,
  58785. bottom: 34/1954
  58786. }
  58787. },
  58788. frontNsfw: {
  58789. height: math.unit(5 + 11/12, "feet"),
  58790. weight: math.unit(210, "lb"),
  58791. name: "Front (NSFW)",
  58792. image: {
  58793. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58794. extra: 1928/1821,
  58795. bottom: 45/1973
  58796. }
  58797. },
  58798. backNsfw: {
  58799. height: math.unit(5 + 11/12, "feet"),
  58800. weight: math.unit(210, "lb"),
  58801. name: "Back (NSFW)",
  58802. image: {
  58803. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58804. extra: 1920/1813,
  58805. bottom: 34/1954
  58806. }
  58807. },
  58808. },
  58809. [
  58810. {
  58811. name: "Normal",
  58812. height: math.unit(5 + 11/12, "feet"),
  58813. default: true
  58814. },
  58815. {
  58816. name: "Goddess",
  58817. height: math.unit(20 + 3/12, "feet")
  58818. },
  58819. {
  58820. name: "Breaker of Man",
  58821. height: math.unit(329 + 9/12, "feet")
  58822. },
  58823. {
  58824. name: "Solar Justice",
  58825. height: math.unit(0.6, "solarradii")
  58826. },
  58827. {
  58828. name: "She Who Judges",
  58829. height: math.unit(1, "universe")
  58830. },
  58831. ]
  58832. ))
  58833. characterMakers.push(() => makeCharacter(
  58834. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58835. {
  58836. casual_front: {
  58837. height: math.unit(6 + 1/12, "feet"),
  58838. weight: math.unit(190, "lb"),
  58839. preyCapacity: math.unit(1, "people"),
  58840. name: "Front",
  58841. image: {
  58842. source: "./media/characters/managarmr/casual-front.svg",
  58843. extra: 411/381,
  58844. bottom: 15/426
  58845. },
  58846. extraAttributes: {
  58847. "pawSize": {
  58848. name: "Paw Size",
  58849. power: 1,
  58850. type: "length",
  58851. base: math.unit(0.2, "meters")
  58852. },
  58853. },
  58854. form: "casual",
  58855. },
  58856. casual_back: {
  58857. height: math.unit(6 + 1/12, "feet"),
  58858. weight: math.unit(190, "lb"),
  58859. preyCapacity: math.unit(1, "people"),
  58860. name: "Back",
  58861. image: {
  58862. source: "./media/characters/managarmr/casual-back.svg",
  58863. extra: 413/383,
  58864. bottom: 13/426
  58865. },
  58866. extraAttributes: {
  58867. "pawSize": {
  58868. name: "Paw Size",
  58869. power: 1,
  58870. type: "length",
  58871. base: math.unit(0.2, "meters")
  58872. },
  58873. },
  58874. form: "casual",
  58875. },
  58876. base_front: {
  58877. height: math.unit(7, "feet"),
  58878. weight: math.unit(210, "lb"),
  58879. preyCapacity: math.unit(2, "people"),
  58880. name: "Front",
  58881. image: {
  58882. source: "./media/characters/managarmr/base-front.svg",
  58883. extra: 580/485,
  58884. bottom: 32/612
  58885. },
  58886. extraAttributes: {
  58887. "wingspan": {
  58888. name: "Wingspan",
  58889. power: 1,
  58890. type: "length",
  58891. base: math.unit(4, "meters")
  58892. },
  58893. "pawSize": {
  58894. name: "Paw Size",
  58895. power: 1,
  58896. type: "length",
  58897. base: math.unit(0.2, "meters")
  58898. },
  58899. },
  58900. form: "base",
  58901. },
  58902. "true-divine_front": {
  58903. height: math.unit(40, "feet"),
  58904. weight: math.unit(39000, "lb"),
  58905. preyCapacity: math.unit(375, "people"),
  58906. name: "Front",
  58907. image: {
  58908. source: "./media/characters/managarmr/true-divine-front.svg",
  58909. extra: 725/573,
  58910. bottom: 120/845
  58911. },
  58912. extraAttributes: {
  58913. "wingspan": {
  58914. name: "Wingspan",
  58915. power: 1,
  58916. type: "length",
  58917. base: math.unit(20, "meters")
  58918. },
  58919. "pawSize": {
  58920. name: "Paw Size",
  58921. power: 1,
  58922. type: "length",
  58923. base: math.unit(1.5, "meters")
  58924. },
  58925. },
  58926. form: "true-divine",
  58927. },
  58928. },
  58929. [
  58930. {
  58931. name: "Normal",
  58932. height: math.unit(6 + 1/12, "feet"),
  58933. form: "casual",
  58934. default: true
  58935. },
  58936. {
  58937. name: "Normal",
  58938. height: math.unit(7, "feet"),
  58939. form: "base",
  58940. default: true
  58941. },
  58942. ],
  58943. {
  58944. "casual": {
  58945. name: "Casual",
  58946. default: true
  58947. },
  58948. "base": {
  58949. name: "Base",
  58950. },
  58951. "true-divine": {
  58952. name: "True Divine",
  58953. },
  58954. }
  58955. ))
  58956. characterMakers.push(() => makeCharacter(
  58957. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58958. {
  58959. front: {
  58960. height: math.unit(1.8, "meters"),
  58961. weight: math.unit(110, "kg"),
  58962. name: "Front",
  58963. image: {
  58964. source: "./media/characters/mystra/front.svg",
  58965. extra: 529/442,
  58966. bottom: 31/560
  58967. }
  58968. },
  58969. frontLewd: {
  58970. height: math.unit(1.8, "meters"),
  58971. weight: math.unit(110, "kg"),
  58972. name: "Front (Lewd)",
  58973. image: {
  58974. source: "./media/characters/mystra/front-lewd.svg",
  58975. extra: 529/442,
  58976. bottom: 31/560
  58977. }
  58978. },
  58979. head: {
  58980. height: math.unit(1.63, "feet"),
  58981. name: "Head",
  58982. image: {
  58983. source: "./media/characters/mystra/head.svg"
  58984. }
  58985. },
  58986. paw: {
  58987. height: math.unit(1.9, "feet"),
  58988. name: "Paw",
  58989. image: {
  58990. source: "./media/characters/mystra/paw.svg"
  58991. }
  58992. },
  58993. },
  58994. [
  58995. {
  58996. name: "Incognito",
  58997. height: math.unit(2.3, "meters")
  58998. },
  58999. {
  59000. name: "Small Macro",
  59001. height: math.unit(300, "meters")
  59002. },
  59003. {
  59004. name: "Small Mega",
  59005. height: math.unit(2, "km")
  59006. },
  59007. {
  59008. name: "Mega",
  59009. height: math.unit(30, "km")
  59010. },
  59011. {
  59012. name: "Small Giga",
  59013. height: math.unit(100, "km")
  59014. },
  59015. {
  59016. name: "Giga",
  59017. height: math.unit(1000, "km"),
  59018. default: true
  59019. },
  59020. {
  59021. name: "Continental",
  59022. height: math.unit(5000, "km")
  59023. },
  59024. {
  59025. name: "Terra",
  59026. height: math.unit(20000, "km")
  59027. },
  59028. {
  59029. name: "Solar",
  59030. height: math.unit(2e6, "km")
  59031. },
  59032. {
  59033. name: "Galactic",
  59034. height: math.unit(528502, "lightyears")
  59035. },
  59036. {
  59037. name: "Universal",
  59038. height: math.unit(20, "universes")
  59039. },
  59040. ]
  59041. ))
  59042. characterMakers.push(() => makeCharacter(
  59043. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  59044. {
  59045. front: {
  59046. height: math.unit(2, "meters"),
  59047. weight: math.unit(140, "kg"),
  59048. name: "Front",
  59049. image: {
  59050. source: "./media/characters/caleb/front.svg",
  59051. extra: 873/817,
  59052. bottom: 47/920
  59053. }
  59054. },
  59055. back: {
  59056. height: math.unit(2, "meters"),
  59057. weight: math.unit(140, "kg"),
  59058. name: "Back",
  59059. image: {
  59060. source: "./media/characters/caleb/back.svg",
  59061. extra: 877/828,
  59062. bottom: 24/901
  59063. }
  59064. },
  59065. snakeTail: {
  59066. height: math.unit(1.44, "feet"),
  59067. name: "Snake Tail",
  59068. image: {
  59069. source: "./media/characters/caleb/snake-tail.svg"
  59070. }
  59071. },
  59072. dick: {
  59073. height: math.unit(2.6, "feet"),
  59074. name: "Dick",
  59075. image: {
  59076. source: "./media/characters/caleb/dick.svg"
  59077. }
  59078. },
  59079. },
  59080. [
  59081. {
  59082. name: "Incognito",
  59083. height: math.unit(3, "meters")
  59084. },
  59085. {
  59086. name: "Home Size",
  59087. height: math.unit(200, "meters"),
  59088. default: true
  59089. },
  59090. {
  59091. name: "Macro",
  59092. height: math.unit(500, "meters")
  59093. },
  59094. {
  59095. name: "Big Macro",
  59096. height: math.unit(5, "km")
  59097. },
  59098. {
  59099. name: "Giga",
  59100. height: math.unit(250, "km")
  59101. },
  59102. {
  59103. name: "Giga+",
  59104. height: math.unit(5000, "km")
  59105. },
  59106. {
  59107. name: "Small Terra",
  59108. height: math.unit(35e3, "km")
  59109. },
  59110. {
  59111. name: "Terra",
  59112. height: math.unit(2e6, "km")
  59113. },
  59114. {
  59115. name: "Terra+",
  59116. height: math.unit(1.5e6, "km")
  59117. },
  59118. ]
  59119. ))
  59120. characterMakers.push(() => makeCharacter(
  59121. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  59122. {
  59123. front: {
  59124. height: math.unit(2, "meters"),
  59125. weight: math.unit(120, "kg"),
  59126. name: "Front",
  59127. image: {
  59128. source: "./media/characters/gilirian/front.svg",
  59129. extra: 805/737,
  59130. bottom: 13/818
  59131. }
  59132. },
  59133. side: {
  59134. height: math.unit(2, "meters"),
  59135. weight: math.unit(120, "kg"),
  59136. name: "Side",
  59137. image: {
  59138. source: "./media/characters/gilirian/side.svg",
  59139. extra: 810/746,
  59140. bottom: 6/816
  59141. }
  59142. },
  59143. back: {
  59144. height: math.unit(2, "meters"),
  59145. weight: math.unit(120, "kg"),
  59146. name: "Back",
  59147. image: {
  59148. source: "./media/characters/gilirian/back.svg",
  59149. extra: 815/745,
  59150. bottom: 15/830
  59151. }
  59152. },
  59153. frontNsfw: {
  59154. height: math.unit(2, "meters"),
  59155. weight: math.unit(120, "kg"),
  59156. name: "Front (NSFW)",
  59157. image: {
  59158. source: "./media/characters/gilirian/front-nsfw.svg",
  59159. extra: 805/737,
  59160. bottom: 13/818
  59161. }
  59162. },
  59163. sideNsfw: {
  59164. height: math.unit(2, "meters"),
  59165. weight: math.unit(120, "kg"),
  59166. name: "Side (NSFW)",
  59167. image: {
  59168. source: "./media/characters/gilirian/side-nsfw.svg",
  59169. extra: 810/746,
  59170. bottom: 6/816
  59171. }
  59172. },
  59173. },
  59174. [
  59175. {
  59176. name: "Incognito",
  59177. height: math.unit(2, "meters"),
  59178. default: true
  59179. },
  59180. {
  59181. name: "Macro",
  59182. height: math.unit(250, "meters")
  59183. },
  59184. {
  59185. name: "Big Macro",
  59186. height: math.unit(1500, "meters")
  59187. },
  59188. {
  59189. name: "Mega",
  59190. height: math.unit(40, "km")
  59191. },
  59192. {
  59193. name: "Giga",
  59194. height: math.unit(300, "km")
  59195. },
  59196. {
  59197. name: "Extra Giga",
  59198. height: math.unit(5000, "km")
  59199. },
  59200. {
  59201. name: "Small Terra",
  59202. height: math.unit(10e3, "km")
  59203. },
  59204. {
  59205. name: "Terra",
  59206. height: math.unit(3e5, "km")
  59207. },
  59208. {
  59209. name: "Galactic",
  59210. height: math.unit(369950, "lightyears")
  59211. },
  59212. ]
  59213. ))
  59214. characterMakers.push(() => makeCharacter(
  59215. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  59216. {
  59217. front: {
  59218. height: math.unit(2.5, "meters"),
  59219. weight: math.unit(230, "lb"),
  59220. name: "Front",
  59221. image: {
  59222. source: "./media/characters/tarken/front.svg",
  59223. extra: 764/720,
  59224. bottom: 49/813
  59225. }
  59226. },
  59227. back: {
  59228. height: math.unit(2.5, "meters"),
  59229. weight: math.unit(230, "lb"),
  59230. name: "Back",
  59231. image: {
  59232. source: "./media/characters/tarken/back.svg",
  59233. extra: 756/720,
  59234. bottom: 35/791
  59235. }
  59236. },
  59237. frontNsfw: {
  59238. height: math.unit(2.5, "meters"),
  59239. weight: math.unit(230, "lb"),
  59240. name: "Front (NSFW)",
  59241. image: {
  59242. source: "./media/characters/tarken/front-nsfw.svg",
  59243. extra: 764/720,
  59244. bottom: 49/813
  59245. }
  59246. },
  59247. backNsfw: {
  59248. height: math.unit(2.5, "meters"),
  59249. weight: math.unit(230, "lb"),
  59250. name: "Back (NSFW)",
  59251. image: {
  59252. source: "./media/characters/tarken/back-nsfw.svg",
  59253. extra: 756/720,
  59254. bottom: 35/791
  59255. }
  59256. },
  59257. head: {
  59258. height: math.unit(2.22, "feet"),
  59259. name: "Head",
  59260. image: {
  59261. source: "./media/characters/tarken/head.svg"
  59262. }
  59263. },
  59264. tail: {
  59265. height: math.unit(5.25, "feet"),
  59266. name: "Tail",
  59267. image: {
  59268. source: "./media/characters/tarken/tail.svg"
  59269. }
  59270. },
  59271. dick: {
  59272. height: math.unit(1.95, "feet"),
  59273. name: "Dick",
  59274. image: {
  59275. source: "./media/characters/tarken/dick.svg"
  59276. }
  59277. },
  59278. hand: {
  59279. height: math.unit(1.78, "feet"),
  59280. name: "Hand",
  59281. image: {
  59282. source: "./media/characters/tarken/hand.svg"
  59283. }
  59284. },
  59285. beam: {
  59286. height: math.unit(1.5, "feet"),
  59287. name: "Beam",
  59288. image: {
  59289. source: "./media/characters/tarken/beam.svg"
  59290. }
  59291. },
  59292. },
  59293. [
  59294. {
  59295. name: "Original Size",
  59296. height: math.unit(2.5, "meters")
  59297. },
  59298. {
  59299. name: "Macro",
  59300. height: math.unit(150, "meters"),
  59301. default: true
  59302. },
  59303. {
  59304. name: "Macro+",
  59305. height: math.unit(300, "meters")
  59306. },
  59307. {
  59308. name: "Mega",
  59309. height: math.unit(2, "km")
  59310. },
  59311. {
  59312. name: "Mega+",
  59313. height: math.unit(35, "km")
  59314. },
  59315.  {
  59316. name: "Mega++",
  59317. height: math.unit(60, "km")
  59318. },
  59319. {
  59320. name: "Giga",
  59321. height: math.unit(200, "km")
  59322. },
  59323. {
  59324. name: "Giga+",
  59325. height: math.unit(2500, "km")
  59326. },
  59327. {
  59328. name: "Giga++",
  59329. height: math.unit(6600, "km")
  59330. },
  59331. {
  59332. name: "Terra",
  59333. height: math.unit(20000, "km")
  59334. },
  59335. {
  59336. name: "Terra+",
  59337. height: math.unit(300000, "km")
  59338. },
  59339. ]
  59340. ))
  59341. characterMakers.push(() => makeCharacter(
  59342. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  59343. {
  59344. magpie_dressed: {
  59345. height: math.unit(1.7, "meters"),
  59346. weight: math.unit(70, "kg"),
  59347. name: "Dressed",
  59348. image: {
  59349. source: "./media/characters/otreus/magpie-dressed.svg",
  59350. extra: 691/672,
  59351. bottom: 116/807
  59352. },
  59353. form: "magpie",
  59354. default: true
  59355. },
  59356. magpie_nude: {
  59357. height: math.unit(1.7, "meters"),
  59358. weight: math.unit(70, "kg"),
  59359. name: "Nude",
  59360. image: {
  59361. source: "./media/characters/otreus/magpie-nude.svg",
  59362. extra: 691/672,
  59363. bottom: 116/807
  59364. },
  59365. form: "magpie",
  59366. },
  59367. magpie_dressedLewd: {
  59368. height: math.unit(1.7, "meters"),
  59369. weight: math.unit(70, "kg"),
  59370. name: "Dressed (Lewd)",
  59371. image: {
  59372. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  59373. extra: 691/672,
  59374. bottom: 116/807
  59375. },
  59376. form: "magpie",
  59377. },
  59378. magpie_nudeLewd: {
  59379. height: math.unit(1.7, "meters"),
  59380. weight: math.unit(70, "kg"),
  59381. name: "Nude (Lewd)",
  59382. image: {
  59383. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  59384. extra: 691/672,
  59385. bottom: 116/807
  59386. },
  59387. form: "magpie",
  59388. },
  59389. magpie_leftFoot: {
  59390. height: math.unit(1.58, "feet"),
  59391. name: "Left Foot",
  59392. image: {
  59393. source: "./media/characters/otreus/magpie-left-foot.svg"
  59394. },
  59395. form: "magpie",
  59396. },
  59397. magpie_rightFoot: {
  59398. height: math.unit(1.58, "feet"),
  59399. name: "Right Foot",
  59400. image: {
  59401. source: "./media/characters/otreus/magpie-right-foot.svg"
  59402. },
  59403. form: "magpie",
  59404. },
  59405. magpie_wingspan: {
  59406. height: math.unit(2, "meters"),
  59407. weight: math.unit(70, "kg"),
  59408. name: "Wingspan",
  59409. image: {
  59410. source: "./media/characters/otreus/magpie-wingspan.svg"
  59411. },
  59412. extraAttributes: {
  59413. "wingspan": {
  59414. name: "Wingspan",
  59415. power: 1,
  59416. type: "length",
  59417. base: math.unit(3.35, "meters")
  59418. },
  59419. },
  59420. form: "magpie",
  59421. },
  59422. hippogriff_dressed: {
  59423. height: math.unit(1.7, "meters"),
  59424. weight: math.unit(70, "kg"),
  59425. name: "Dressed",
  59426. image: {
  59427. source: "./media/characters/otreus/hippogriff-dressed.svg",
  59428. extra: 710/689,
  59429. bottom: 67/777
  59430. },
  59431. form: "hippogriff",
  59432. default: true
  59433. },
  59434. hippogriff_nude: {
  59435. height: math.unit(1.7, "meters"),
  59436. weight: math.unit(70, "kg"),
  59437. name: "Nude",
  59438. image: {
  59439. source: "./media/characters/otreus/hippogriff-nude.svg",
  59440. extra: 710/689,
  59441. bottom: 67/777
  59442. },
  59443. form: "hippogriff",
  59444. },
  59445. hippogriff_dressedLewd: {
  59446. height: math.unit(1.7, "meters"),
  59447. weight: math.unit(70, "kg"),
  59448. name: "Dressed (Lewd)",
  59449. image: {
  59450. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  59451. extra: 710/689,
  59452. bottom: 67/777
  59453. },
  59454. form: "hippogriff",
  59455. },
  59456. hippogriff_nudeLewd: {
  59457. height: math.unit(1.7, "meters"),
  59458. weight: math.unit(70, "kg"),
  59459. name: "Nude (Lewd)",
  59460. image: {
  59461. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  59462. extra: 710/689,
  59463. bottom: 67/777
  59464. },
  59465. form: "hippogriff",
  59466. },
  59467. },
  59468. [
  59469. {
  59470. name: "Original Size",
  59471. height: math.unit(1.7, "meters"),
  59472. allForms: true
  59473. },
  59474. {
  59475. name: "Incognito Size",
  59476. height: math.unit(2, "meters"),
  59477. allForms: true
  59478. },
  59479. {
  59480. name: "Mega",
  59481. height: math.unit(2, "km"),
  59482. allForms: true
  59483. },
  59484. {
  59485. name: "Mega+",
  59486. height: math.unit(40, "km"),
  59487. allForms: true
  59488. },
  59489. {
  59490. name: "Giga",
  59491. height: math.unit(250, "km"),
  59492. allForms: true
  59493. },
  59494. {
  59495. name: "Giga+",
  59496. height: math.unit(3000, "km"),
  59497. allForms: true
  59498. },
  59499. {
  59500. name: "Terra",
  59501. height: math.unit(20000, "km"),
  59502. allForms: true
  59503. },
  59504. {
  59505. name: "Solar (Home Size)",
  59506. height: math.unit(3e6, "km"),
  59507. allForms: true,
  59508. default: true
  59509. },
  59510. ],
  59511. {
  59512. "magpie": {
  59513. name: "Magpie",
  59514. default: true
  59515. },
  59516. "hippogriff": {
  59517. name: "Hippogriff",
  59518. },
  59519. }
  59520. ))
  59521. characterMakers.push(() => makeCharacter(
  59522. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  59523. {
  59524. frontDressed: {
  59525. height: math.unit(1.8, "meters"),
  59526. weight: math.unit(90, "kg"),
  59527. name: "Front (Dressed)",
  59528. image: {
  59529. source: "./media/characters/thalia/front-dressed.svg",
  59530. extra: 478/402,
  59531. bottom: 55/533
  59532. }
  59533. },
  59534. backDressed: {
  59535. height: math.unit(1.8, "meters"),
  59536. weight: math.unit(90, "kg"),
  59537. name: "Back (Dressed)",
  59538. image: {
  59539. source: "./media/characters/thalia/back-dressed.svg",
  59540. extra: 500/424,
  59541. bottom: 15/515
  59542. }
  59543. },
  59544. frontNude: {
  59545. height: math.unit(1.8, "meters"),
  59546. weight: math.unit(90, "kg"),
  59547. name: "Front (Nude)",
  59548. image: {
  59549. source: "./media/characters/thalia/front-nude.svg",
  59550. extra: 478/402,
  59551. bottom: 55/533
  59552. }
  59553. },
  59554. backNude: {
  59555. height: math.unit(1.8, "meters"),
  59556. weight: math.unit(90, "kg"),
  59557. name: "Back (Nude)",
  59558. image: {
  59559. source: "./media/characters/thalia/back-nude.svg",
  59560. extra: 500/424,
  59561. bottom: 15/515
  59562. }
  59563. },
  59564. },
  59565. [
  59566. {
  59567. name: "Incognito",
  59568. height: math.unit(3, "meters")
  59569. },
  59570. {
  59571. name: "Macro",
  59572. height: math.unit(500, "meters")
  59573. },
  59574. {
  59575. name: "Mega",
  59576. height: math.unit(5, "km")
  59577. },
  59578. {
  59579. name: "Mega+",
  59580. height: math.unit(30, "km")
  59581. },
  59582. {
  59583. name: "Giga",
  59584. height: math.unit(350, "km")
  59585. },
  59586. {
  59587. name: "Giga+",
  59588. height: math.unit(4000, "km")
  59589. },
  59590. {
  59591. name: "Terra",
  59592. height: math.unit(35000, "km")
  59593. },
  59594. {
  59595. name: "Original Size",
  59596. height: math.unit(130000, "km")
  59597. },
  59598. {
  59599. name: "Solar (Home Size)",
  59600. height: math.unit(4e6, "km"),
  59601. default: true
  59602. },
  59603. ]
  59604. ))
  59605. characterMakers.push(() => makeCharacter(
  59606. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59607. {
  59608. front: {
  59609. height: math.unit(1.8, "meters"),
  59610. weight: math.unit(95, "kg"),
  59611. name: "Front",
  59612. image: {
  59613. source: "./media/characters/shango/front.svg",
  59614. extra: 1925/1774,
  59615. bottom: 67/1992
  59616. }
  59617. },
  59618. back: {
  59619. height: math.unit(1.8, "meters"),
  59620. weight: math.unit(95, "kg"),
  59621. name: "Back",
  59622. image: {
  59623. source: "./media/characters/shango/back.svg",
  59624. extra: 1915/1766,
  59625. bottom: 52/1967
  59626. }
  59627. },
  59628. frontLewd: {
  59629. height: math.unit(1.8, "meters"),
  59630. weight: math.unit(95, "kg"),
  59631. name: "Front (Lewd)",
  59632. image: {
  59633. source: "./media/characters/shango/front-lewd.svg",
  59634. extra: 1925/1774,
  59635. bottom: 67/1992
  59636. }
  59637. },
  59638. backLewd: {
  59639. height: math.unit(1.8, "meters"),
  59640. weight: math.unit(95, "kg"),
  59641. name: "Back (Lewd)",
  59642. image: {
  59643. source: "./media/characters/shango/back-lewd.svg",
  59644. extra: 1915/1766,
  59645. bottom: 52/1967
  59646. }
  59647. },
  59648. maw: {
  59649. height: math.unit(1.64, "feet"),
  59650. name: "Maw",
  59651. image: {
  59652. source: "./media/characters/shango/maw.svg"
  59653. }
  59654. },
  59655. dick: {
  59656. height: math.unit(2.14, "feet"),
  59657. name: "Dick",
  59658. image: {
  59659. source: "./media/characters/shango/dick.svg"
  59660. }
  59661. },
  59662. },
  59663. [
  59664. {
  59665. name: "Incognito",
  59666. height: math.unit(1.8, "meters")
  59667. },
  59668. {
  59669. name: "Home Size",
  59670. height: math.unit(60, "meters"),
  59671. default: true
  59672. },
  59673. {
  59674. name: "Macro",
  59675. height: math.unit(450, "meters")
  59676. },
  59677. {
  59678. name: "Mega",
  59679. height: math.unit(6, "km")
  59680. },
  59681. {
  59682. name: "Mega+",
  59683. height: math.unit(35, "km")
  59684. },
  59685. {
  59686. name: "Giga",
  59687. height: math.unit(500, "km")
  59688. },
  59689. {
  59690. name: "Giga+",
  59691. height: math.unit(5000, "km")
  59692. },
  59693. {
  59694. name: "Terra",
  59695. height: math.unit(60000, "km")
  59696. },
  59697. {
  59698. name: "Terra+",
  59699. height: math.unit(400000, "km")
  59700. },
  59701. ]
  59702. ))
  59703. characterMakers.push(() => makeCharacter(
  59704. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59705. {
  59706. front: {
  59707. height: math.unit(2, "meters"),
  59708. weight: math.unit(95, "kg"),
  59709. name: "Front",
  59710. image: {
  59711. source: "./media/characters/osiris-gryphon/front.svg",
  59712. extra: 1508/1313,
  59713. bottom: 87/1595
  59714. }
  59715. },
  59716. back: {
  59717. height: math.unit(2, "meters"),
  59718. weight: math.unit(95, "kg"),
  59719. name: "Back",
  59720. image: {
  59721. source: "./media/characters/osiris-gryphon/back.svg",
  59722. extra: 1436/1309,
  59723. bottom: 64/1500
  59724. }
  59725. },
  59726. frontLewd: {
  59727. height: math.unit(2, "meters"),
  59728. weight: math.unit(95, "kg"),
  59729. name: "Front-lewd",
  59730. image: {
  59731. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59732. extra: 1508/1313,
  59733. bottom: 87/1595
  59734. }
  59735. },
  59736. wing: {
  59737. height: math.unit(6.3333, "feet"),
  59738. name: "Wing",
  59739. image: {
  59740. source: "./media/characters/osiris-gryphon/wing.svg"
  59741. }
  59742. },
  59743. },
  59744. [
  59745. {
  59746. name: "Incognito",
  59747. height: math.unit(2, "meters")
  59748. },
  59749. {
  59750. name: "Home Size",
  59751. height: math.unit(30, "meters"),
  59752. default: true
  59753. },
  59754. {
  59755. name: "Macro",
  59756. height: math.unit(100, "meters")
  59757. },
  59758. {
  59759. name: "Macro+",
  59760. height: math.unit(350, "meters")
  59761. },
  59762. {
  59763. name: "Mega",
  59764. height: math.unit(40, "km")
  59765. },
  59766. {
  59767. name: "Giga",
  59768. height: math.unit(300, "km")
  59769. },
  59770. {
  59771. name: "Giga+",
  59772. height: math.unit(2000, "km")
  59773. },
  59774. {
  59775. name: "Terra",
  59776. height: math.unit(30000, "km")
  59777. },
  59778. ]
  59779. ))
  59780. characterMakers.push(() => makeCharacter(
  59781. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59782. {
  59783. front: {
  59784. height: math.unit(2.5, "meters"),
  59785. weight: math.unit(200, "kg"),
  59786. name: "Front",
  59787. image: {
  59788. source: "./media/characters/atlas-dragon/front.svg",
  59789. extra: 745/462,
  59790. bottom: 36/781
  59791. }
  59792. },
  59793. back: {
  59794. height: math.unit(2.5, "meters"),
  59795. weight: math.unit(200, "kg"),
  59796. name: "Back",
  59797. image: {
  59798. source: "./media/characters/atlas-dragon/back.svg",
  59799. extra: 848/822,
  59800. bottom: 57/905
  59801. }
  59802. },
  59803. frontLewd: {
  59804. height: math.unit(2.5, "meters"),
  59805. weight: math.unit(200, "kg"),
  59806. name: "Front (Lewd)",
  59807. image: {
  59808. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59809. extra: 745/462,
  59810. bottom: 36/781
  59811. }
  59812. },
  59813. backLewd: {
  59814. height: math.unit(2.5, "meters"),
  59815. weight: math.unit(200, "kg"),
  59816. name: "Back (Lewd)",
  59817. image: {
  59818. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59819. extra: 848/822,
  59820. bottom: 57/905
  59821. }
  59822. },
  59823. },
  59824. [
  59825. {
  59826. name: "Incognito",
  59827. height: math.unit(2.5, "meters")
  59828. },
  59829. {
  59830. name: "Small Macro",
  59831. height: math.unit(50, "meters")
  59832. },
  59833. {
  59834. name: "Macro",
  59835. height: math.unit(350, "meters")
  59836. },
  59837. {
  59838. name: "Mega",
  59839. height: math.unit(5.5, "kilometers")
  59840. },
  59841. {
  59842. name: "Mega+",
  59843. height: math.unit(50, "km")
  59844. },
  59845. {
  59846. name: "Giga",
  59847. height: math.unit(350, "km")
  59848. },
  59849. {
  59850. name: "Giga+",
  59851. height: math.unit(2000, "km")
  59852. },
  59853. {
  59854. name: "Giga++",
  59855. height: math.unit(6500, "km")
  59856. },
  59857. {
  59858. name: "Terra",
  59859. height: math.unit(30000, "km")
  59860. },
  59861. {
  59862. name: "Terra+",
  59863. height: math.unit(250000, "km")
  59864. },
  59865. {
  59866. name: "True Size",
  59867. height: math.unit(100, "multiverses"),
  59868. default: true
  59869. },
  59870. ]
  59871. ))
  59872. characterMakers.push(() => makeCharacter(
  59873. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59874. {
  59875. front: {
  59876. height: math.unit(1.8, "m"),
  59877. weight: math.unit(120, "kg"),
  59878. name: "Front",
  59879. image: {
  59880. source: "./media/characters/chey/front.svg",
  59881. extra: 1359/1270,
  59882. bottom: 18/1377
  59883. }
  59884. },
  59885. arm: {
  59886. height: math.unit(2.05, "feet"),
  59887. name: "Arm",
  59888. image: {
  59889. source: "./media/characters/chey/arm.svg"
  59890. }
  59891. },
  59892. head: {
  59893. height: math.unit(1.89, "feet"),
  59894. name: "Head",
  59895. image: {
  59896. source: "./media/characters/chey/head.svg"
  59897. }
  59898. },
  59899. },
  59900. [
  59901. {
  59902. name: "Original Size",
  59903. height: math.unit(5, "cm")
  59904. },
  59905. {
  59906. name: "Incognito Size",
  59907. height: math.unit(2.4, "m")
  59908. },
  59909. {
  59910. name: "Home Size",
  59911. height: math.unit(200, "meters"),
  59912. default: true
  59913. },
  59914. {
  59915. name: "Mega",
  59916. height: math.unit(2, "km")
  59917. },
  59918. {
  59919. name: "Giga (Preferred Size)",
  59920. height: math.unit(2000, "km")
  59921. },
  59922. {
  59923. name: "Giga+",
  59924. height: math.unit(6000, "km")
  59925. },
  59926. {
  59927. name: "Terra",
  59928. height: math.unit(17000, "km")
  59929. },
  59930. {
  59931. name: "Terra+",
  59932. height: math.unit(75000, "km")
  59933. },
  59934. {
  59935. name: "Terra++",
  59936. height: math.unit(225000, "km")
  59937. },
  59938. ]
  59939. ))
  59940. characterMakers.push(() => makeCharacter(
  59941. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59942. {
  59943. side: {
  59944. height: math.unit(7.8, "meters"),
  59945. name: "Side",
  59946. image: {
  59947. source: "./media/characters/ragnarok/side.svg",
  59948. extra: 725/621,
  59949. bottom: 72/797
  59950. }
  59951. },
  59952. },
  59953. [
  59954. {
  59955. name: "Normal",
  59956. height: math.unit(7.8, "meters"),
  59957. default: true
  59958. },
  59959. ]
  59960. ))
  59961. characterMakers.push(() => makeCharacter(
  59962. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59963. {
  59964. hyena_front: {
  59965. height: math.unit(2.1, "meters"),
  59966. weight: math.unit(110, "kg"),
  59967. name: "Front",
  59968. image: {
  59969. source: "./media/characters/nima/hyena-front.svg",
  59970. extra: 1904/1796,
  59971. bottom: 67/1971
  59972. },
  59973. form: "hyena",
  59974. },
  59975. hyena_back: {
  59976. height: math.unit(2.1, "meters"),
  59977. weight: math.unit(110, "kg"),
  59978. name: "Back",
  59979. image: {
  59980. source: "./media/characters/nima/hyena-back.svg",
  59981. extra: 1964/1884,
  59982. bottom: 35/1999
  59983. },
  59984. form: "hyena",
  59985. },
  59986. shark_front: {
  59987. height: math.unit(1.95, "meters"),
  59988. weight: math.unit(110, "kg"),
  59989. name: "Front",
  59990. image: {
  59991. source: "./media/characters/nima/shark-front.svg",
  59992. extra: 2238/2013,
  59993. bottom: 0/223
  59994. },
  59995. form: "shark",
  59996. },
  59997. paw: {
  59998. height: math.unit(1, "feet"),
  59999. name: "Paw",
  60000. image: {
  60001. source: "./media/characters/nima/paw.svg"
  60002. }
  60003. },
  60004. circlet: {
  60005. height: math.unit(0.3, "feet"),
  60006. name: "Circlet",
  60007. image: {
  60008. source: "./media/characters/nima/circlet.svg"
  60009. }
  60010. },
  60011. necklace: {
  60012. height: math.unit(1.2, "feet"),
  60013. name: "Necklace",
  60014. image: {
  60015. source: "./media/characters/nima/necklace.svg"
  60016. }
  60017. },
  60018. bracelet: {
  60019. height: math.unit(0.51, "feet"),
  60020. name: "Bracelet",
  60021. image: {
  60022. source: "./media/characters/nima/bracelet.svg"
  60023. }
  60024. },
  60025. armband: {
  60026. height: math.unit(1.3, "feet"),
  60027. name: "Armband",
  60028. image: {
  60029. source: "./media/characters/nima/armband.svg"
  60030. }
  60031. },
  60032. },
  60033. [
  60034. {
  60035. name: "Incognito",
  60036. height: math.unit(2.1, "meters"),
  60037. allForms: true
  60038. },
  60039. {
  60040. name: "Small Macro",
  60041. height: math.unit(50, "meters"),
  60042. allForms: true
  60043. },
  60044. {
  60045. name: "Macro",
  60046. height: math.unit(200, "meters"),
  60047. allForms: true
  60048. },
  60049. {
  60050. name: "Mega",
  60051. height: math.unit(2.5, "km"),
  60052. allForms: true
  60053. },
  60054. {
  60055. name: "Mega+",
  60056. height: math.unit(30, "km"),
  60057. allForms: true
  60058. },
  60059. {
  60060. name: "Giga (Home Size)",
  60061. height: math.unit(400, "km"),
  60062. allForms: true,
  60063. default: true
  60064. },
  60065. {
  60066. name: "Giga+",
  60067. height: math.unit(2500, "km"),
  60068. allForms: true
  60069. },
  60070. {
  60071. name: "Giga++",
  60072. height: math.unit(8000, "km"),
  60073. allForms: true
  60074. },
  60075. {
  60076. name: "Terra",
  60077. height: math.unit(20000, "km"),
  60078. allForms: true
  60079. },
  60080. {
  60081. name: "Terra+",
  60082. height: math.unit(70000, "km"),
  60083. allForms: true
  60084. },
  60085. {
  60086. name: "Terra++",
  60087. height: math.unit(600000, "km"),
  60088. allForms: true
  60089. },
  60090. {
  60091. name: "Galactic",
  60092. height: math.unit(40, "galaxies"),
  60093. allForms: true
  60094. },
  60095. {
  60096. name: "Universal",
  60097. height: math.unit(40, "universes"),
  60098. allForms: true
  60099. },
  60100. ],
  60101. {
  60102. "hyena": {
  60103. name: "Hyena",
  60104. default: true
  60105. },
  60106. "shark": {
  60107. name: "Shark",
  60108. },
  60109. }
  60110. ))
  60111. characterMakers.push(() => makeCharacter(
  60112. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  60113. {
  60114. anthro_front: {
  60115. height: math.unit(1.5, "meters"),
  60116. name: "Front",
  60117. image: {
  60118. source: "./media/characters/adelaide/anthro-front.svg",
  60119. extra: 860/783,
  60120. bottom: 60/920
  60121. },
  60122. form: "anthro",
  60123. default: true
  60124. },
  60125. hand: {
  60126. height: math.unit(0.65, "feet"),
  60127. name: "Hand",
  60128. image: {
  60129. source: "./media/characters/adelaide/hand.svg"
  60130. },
  60131. form: "anthro"
  60132. },
  60133. foot: {
  60134. height: math.unit(1.38 * 259 / 314, "feet"),
  60135. name: "Foot",
  60136. image: {
  60137. source: "./media/characters/adelaide/foot.svg",
  60138. extra: 259/259,
  60139. bottom: 55/314
  60140. },
  60141. form: "anthro"
  60142. },
  60143. feather: {
  60144. height: math.unit(0.85, "feet"),
  60145. name: "Feather",
  60146. image: {
  60147. source: "./media/characters/adelaide/feather.svg"
  60148. },
  60149. form: "anthro"
  60150. },
  60151. feral_side: {
  60152. height: math.unit(1, "meters"),
  60153. name: "Side",
  60154. image: {
  60155. source: "./media/characters/adelaide/feral-side.svg",
  60156. extra: 550/467,
  60157. bottom: 37/587
  60158. },
  60159. form: "feral",
  60160. default: true
  60161. },
  60162. feral_hand: {
  60163. height: math.unit(0.58, "feet"),
  60164. name: "Hand",
  60165. image: {
  60166. source: "./media/characters/adelaide/hand.svg"
  60167. },
  60168. form: "feral"
  60169. },
  60170. feral_foot: {
  60171. height: math.unit(1.2 * 259 / 314, "feet"),
  60172. name: "Foot",
  60173. image: {
  60174. source: "./media/characters/adelaide/foot.svg",
  60175. extra: 259/259,
  60176. bottom: 55/314
  60177. },
  60178. form: "feral"
  60179. },
  60180. feral_feather: {
  60181. height: math.unit(0.63, "feet"),
  60182. name: "Feather",
  60183. image: {
  60184. source: "./media/characters/adelaide/feather.svg"
  60185. },
  60186. form: "feral"
  60187. },
  60188. },
  60189. [
  60190. {
  60191. name: "Normal",
  60192. height: math.unit(1.5, "meters"),
  60193. form: "anthro",
  60194. default: true
  60195. },
  60196. {
  60197. name: "Normal",
  60198. height: math.unit(1, "meters"),
  60199. form: "feral",
  60200. default: true
  60201. },
  60202. ],
  60203. {
  60204. "anthro": {
  60205. name: "Anthro",
  60206. default: true
  60207. },
  60208. "feral": {
  60209. name: "Feral",
  60210. },
  60211. }
  60212. ))
  60213. characterMakers.push(() => makeCharacter(
  60214. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  60215. {
  60216. front: {
  60217. height: math.unit(2.5, "meters"),
  60218. name: "Front",
  60219. image: {
  60220. source: "./media/characters/goa/front.svg",
  60221. extra: 1109/1013,
  60222. bottom: 150/1259
  60223. }
  60224. },
  60225. },
  60226. [
  60227. {
  60228. name: "Normal",
  60229. height: math.unit(2.5, "meters"),
  60230. default: true
  60231. },
  60232. ]
  60233. ))
  60234. characterMakers.push(() => makeCharacter(
  60235. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  60236. {
  60237. front: {
  60238. height: math.unit(2, "meters"),
  60239. weight: math.unit(100, "kg"),
  60240. name: "Front",
  60241. image: {
  60242. source: "./media/characters/kiki-weavile/front.svg",
  60243. extra: 357/332,
  60244. bottom: 60/417
  60245. }
  60246. },
  60247. },
  60248. [
  60249. {
  60250. name: "Normal",
  60251. height: math.unit(2, "meters"),
  60252. default: true
  60253. },
  60254. ]
  60255. ))
  60256. characterMakers.push(() => makeCharacter(
  60257. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  60258. {
  60259. side: {
  60260. height: math.unit(1.6, "meters"),
  60261. name: "Side",
  60262. image: {
  60263. source: "./media/characters/liza/side.svg",
  60264. extra: 943/915,
  60265. bottom: 72/1015
  60266. }
  60267. },
  60268. },
  60269. [
  60270. {
  60271. name: "Normal",
  60272. height: math.unit(1.6, "meters"),
  60273. default: true
  60274. },
  60275. ]
  60276. ))
  60277. characterMakers.push(() => makeCharacter(
  60278. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  60279. {
  60280. side: {
  60281. height: math.unit(2.5, "meters"),
  60282. preyCapacity: math.unit(1, "people"),
  60283. name: "Side",
  60284. image: {
  60285. source: "./media/characters/persephone-sweetbreath/side.svg",
  60286. extra: 796/700,
  60287. bottom: 44/840
  60288. }
  60289. },
  60290. sideVore: {
  60291. height: math.unit(2.5, "meters"),
  60292. preyCapacity: math.unit(1, "people"),
  60293. name: "Side (Full)",
  60294. image: {
  60295. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  60296. extra: 796/700,
  60297. bottom: 44/840
  60298. }
  60299. },
  60300. },
  60301. [
  60302. {
  60303. name: "Normal",
  60304. height: math.unit(2.5, "meters"),
  60305. default: true
  60306. },
  60307. ]
  60308. ))
  60309. characterMakers.push(() => makeCharacter(
  60310. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  60311. {
  60312. front: {
  60313. height: math.unit(32, "meters"),
  60314. name: "Front",
  60315. image: {
  60316. source: "./media/characters/pierce/front.svg",
  60317. extra: 1695/1475,
  60318. bottom: 185/1880
  60319. }
  60320. },
  60321. side: {
  60322. height: math.unit(32, "meters"),
  60323. name: "Side",
  60324. image: {
  60325. source: "./media/characters/pierce/side.svg",
  60326. extra: 974/859,
  60327. bottom: 43/1017
  60328. }
  60329. },
  60330. frontWingless: {
  60331. height: math.unit(32, "meters"),
  60332. name: "Front (Wingless)",
  60333. image: {
  60334. source: "./media/characters/pierce/front-wingless.svg",
  60335. extra: 1695/1475,
  60336. bottom: 185/1880
  60337. }
  60338. },
  60339. sideWingless: {
  60340. height: math.unit(32, "meters"),
  60341. name: "Side (Wingless)",
  60342. image: {
  60343. source: "./media/characters/pierce/side-wingless.svg",
  60344. extra: 974/859,
  60345. bottom: 43/1017
  60346. }
  60347. },
  60348. maw: {
  60349. height: math.unit(19.3, "meters"),
  60350. name: "Maw",
  60351. image: {
  60352. source: "./media/characters/pierce/maw.svg"
  60353. }
  60354. },
  60355. },
  60356. [
  60357. {
  60358. name: "Small",
  60359. height: math.unit(8.5, "meters")
  60360. },
  60361. {
  60362. name: "Normal",
  60363. height: math.unit(32, "meters"),
  60364. default: true
  60365. },
  60366. ]
  60367. ))
  60368. characterMakers.push(() => makeCharacter(
  60369. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  60370. {
  60371. front: {
  60372. height: math.unit(2.3, "meters"),
  60373. weight: math.unit(165, "kg"),
  60374. name: "Front",
  60375. image: {
  60376. source: "./media/characters/shira/front.svg",
  60377. extra: 924/919,
  60378. bottom: 17/941
  60379. },
  60380. form: "cobra",
  60381. default: true
  60382. },
  60383. back: {
  60384. height: math.unit(2.3, "meters"),
  60385. weight: math.unit(165, "kg"),
  60386. name: "Back",
  60387. image: {
  60388. source: "./media/characters/shira/back.svg",
  60389. extra: 928/922,
  60390. bottom: 18/946
  60391. },
  60392. form: "cobra"
  60393. },
  60394. frontLewd: {
  60395. height: math.unit(2.3, "meters"),
  60396. weight: math.unit(165, "kg"),
  60397. name: "Front (Lewd)",
  60398. image: {
  60399. source: "./media/characters/shira/front-lewd.svg",
  60400. extra: 924/919,
  60401. bottom: 17/941
  60402. },
  60403. form: "cobra"
  60404. },
  60405. backLewd: {
  60406. height: math.unit(2.3, "meters"),
  60407. weight: math.unit(165, "kg"),
  60408. name: "Back (Lewd)",
  60409. image: {
  60410. source: "./media/characters/shira/back-lewd.svg",
  60411. extra: 928/922,
  60412. bottom: 18/946
  60413. },
  60414. form: "cobra"
  60415. },
  60416. maw: {
  60417. height: math.unit(1.14, "feet"),
  60418. name: "Maw",
  60419. image: {
  60420. source: "./media/characters/shira/maw.svg"
  60421. },
  60422. form: "cobra"
  60423. },
  60424. magma_front: {
  60425. height: math.unit(2.3, "meters"),
  60426. weight: math.unit(165, "kg"),
  60427. name: "Front",
  60428. image: {
  60429. source: "./media/characters/shira/magma-front.svg",
  60430. extra: 1870/1693,
  60431. bottom: 24/1894
  60432. },
  60433. form: "magma",
  60434. },
  60435. magma_back: {
  60436. height: math.unit(2.3, "meters"),
  60437. weight: math.unit(165, "kg"),
  60438. name: "Back",
  60439. image: {
  60440. source: "./media/characters/shira/magma-back.svg",
  60441. extra: 1918/1756,
  60442. bottom: 46/1964
  60443. },
  60444. form: "magma",
  60445. },
  60446. },
  60447. [
  60448. {
  60449. name: "Incognito",
  60450. height: math.unit(2.3, "meters"),
  60451. allForms: true
  60452. },
  60453. {
  60454. name: "Home Size",
  60455. height: math.unit(150, "meters"),
  60456. default: true,
  60457. allForms: true
  60458. },
  60459. {
  60460. name: "Macro",
  60461. height: math.unit(2, "km"),
  60462. allForms: true
  60463. },
  60464. {
  60465. name: "Mega",
  60466. height: math.unit(30, "km"),
  60467. allForms: true
  60468. },
  60469. {
  60470. name: "Giga",
  60471. height: math.unit(450, "km"),
  60472. allForms: true
  60473. },
  60474. {
  60475. name: "Giga+",
  60476. height: math.unit(3000, "km"),
  60477. allForms: true
  60478. },
  60479. {
  60480. name: "Giga++",
  60481. height: math.unit(6000, "km"),
  60482. allForms: true
  60483. },
  60484. {
  60485. name: "Terra",
  60486. height: math.unit(80000, "km"),
  60487. allForms: true
  60488. },
  60489. {
  60490. name: "Terra+",
  60491. height: math.unit(350000, "km"),
  60492. allForms: true
  60493. },
  60494. {
  60495. name: "Solar",
  60496. height: math.unit(1e6, "km"),
  60497. allForms: true
  60498. },
  60499. ],
  60500. {
  60501. "cobra": {
  60502. name: "Cobra",
  60503. default: true
  60504. },
  60505. "magma": {
  60506. name: "Magma Dragon",
  60507. },
  60508. }
  60509. ))
  60510. characterMakers.push(() => makeCharacter(
  60511. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  60512. {
  60513. front: {
  60514. height: math.unit(2, "meters"),
  60515. weight: math.unit(160, "kg"),
  60516. name: "Front",
  60517. image: {
  60518. source: "./media/characters/daxerios/front.svg",
  60519. extra: 1334/1277,
  60520. bottom: 45/1379
  60521. }
  60522. },
  60523. frontLewd: {
  60524. height: math.unit(2, "meters"),
  60525. weight: math.unit(160, "kg"),
  60526. name: "Front (Lewd)",
  60527. image: {
  60528. source: "./media/characters/daxerios/front-lewd.svg",
  60529. extra: 1334/1277,
  60530. bottom: 45/1379
  60531. }
  60532. },
  60533. dick: {
  60534. height: math.unit(2.35, "feet"),
  60535. name: "Dick",
  60536. image: {
  60537. source: "./media/characters/daxerios/dick.svg"
  60538. }
  60539. },
  60540. },
  60541. [
  60542. {
  60543. name: "\"Small\"",
  60544. height: math.unit(5, "meters")
  60545. },
  60546. {
  60547. name: "Original Size",
  60548. height: math.unit(500, "meters"),
  60549. default: true
  60550. },
  60551. {
  60552. name: "Mega",
  60553. height: math.unit(2, "km")
  60554. },
  60555. {
  60556. name: "Mega+",
  60557. height: math.unit(35, "km")
  60558. },
  60559. {
  60560. name: "Giga",
  60561. height: math.unit(250, "km")
  60562. },
  60563. {
  60564. name: "Giga+",
  60565. height: math.unit(3000, "km")
  60566. },
  60567. {
  60568. name: "Terra",
  60569. height: math.unit(25000, "km")
  60570. },
  60571. {
  60572. name: "Terra+",
  60573. height: math.unit(300000, "km")
  60574. },
  60575. {
  60576. name: "Solar",
  60577. height: math.unit(1e6, "km")
  60578. },
  60579. ]
  60580. ))
  60581. characterMakers.push(() => makeCharacter(
  60582. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60583. {
  60584. front: {
  60585. height: math.unit(8 + 4/12, "feet"),
  60586. weight: math.unit(464, "lb"),
  60587. name: "Front",
  60588. image: {
  60589. source: "./media/characters/caveat/front.svg",
  60590. extra: 1861/1678,
  60591. bottom: 40/1901
  60592. }
  60593. },
  60594. },
  60595. [
  60596. {
  60597. name: "Normal",
  60598. height: math.unit(8 + 4/12, "feet"),
  60599. default: true
  60600. },
  60601. ]
  60602. ))
  60603. characterMakers.push(() => makeCharacter(
  60604. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60605. {
  60606. front: {
  60607. height: math.unit(12, "feet"),
  60608. weight: math.unit(1800, "lb"),
  60609. name: "Front",
  60610. image: {
  60611. source: "./media/characters/centbair/front.svg",
  60612. extra: 781/663,
  60613. bottom: 25/806
  60614. }
  60615. },
  60616. frontNsfw: {
  60617. height: math.unit(12, "feet"),
  60618. weight: math.unit(1800, "lb"),
  60619. name: "Front (NSFW)",
  60620. image: {
  60621. source: "./media/characters/centbair/front-nsfw.svg",
  60622. extra: 781/663,
  60623. bottom: 25/806
  60624. }
  60625. },
  60626. back: {
  60627. height: math.unit(12, "feet"),
  60628. weight: math.unit(1800, "lb"),
  60629. name: "Back",
  60630. image: {
  60631. source: "./media/characters/centbair/back.svg",
  60632. extra: 808/761,
  60633. bottom: 19/827
  60634. }
  60635. },
  60636. dick: {
  60637. height: math.unit(6.5, "feet"),
  60638. name: "Dick",
  60639. image: {
  60640. source: "./media/characters/centbair/dick.svg"
  60641. }
  60642. },
  60643. slit: {
  60644. height: math.unit(3.25, "feet"),
  60645. name: "Slit",
  60646. image: {
  60647. source: "./media/characters/centbair/slit.svg"
  60648. }
  60649. },
  60650. },
  60651. [
  60652. {
  60653. name: "Normal",
  60654. height: math.unit(12, "feet"),
  60655. default: true
  60656. },
  60657. ]
  60658. ))
  60659. characterMakers.push(() => makeCharacter(
  60660. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60661. {
  60662. front: {
  60663. height: math.unit(5 + 7/12, "feet"),
  60664. name: "Front",
  60665. image: {
  60666. source: "./media/characters/andy/front.svg",
  60667. extra: 634/588,
  60668. bottom: 36/670
  60669. },
  60670. extraAttributes: {
  60671. "pawLength": {
  60672. name: "Paw Length",
  60673. power: 1,
  60674. type: "length",
  60675. base: math.unit(1, "feet")
  60676. },
  60677. }
  60678. },
  60679. side: {
  60680. height: math.unit(5 + 7/12, "feet"),
  60681. name: "Side",
  60682. image: {
  60683. source: "./media/characters/andy/side.svg",
  60684. extra: 641/596,
  60685. bottom: 34/675
  60686. },
  60687. extraAttributes: {
  60688. "pawLength": {
  60689. name: "Paw Length",
  60690. power: 1,
  60691. type: "length",
  60692. base: math.unit(1, "feet")
  60693. },
  60694. }
  60695. },
  60696. back: {
  60697. height: math.unit(5 + 7/12, "feet"),
  60698. name: "Back",
  60699. image: {
  60700. source: "./media/characters/andy/back.svg",
  60701. extra: 618/583,
  60702. bottom: 39/657
  60703. },
  60704. extraAttributes: {
  60705. "pawLength": {
  60706. name: "Paw Length",
  60707. power: 1,
  60708. type: "length",
  60709. base: math.unit(1, "feet")
  60710. },
  60711. }
  60712. },
  60713. paw: {
  60714. height: math.unit(1.13, "feet"),
  60715. name: "Paw",
  60716. image: {
  60717. source: "./media/characters/andy/paw.svg"
  60718. }
  60719. },
  60720. },
  60721. [
  60722. {
  60723. name: "Micro",
  60724. height: math.unit(4, "inches")
  60725. },
  60726. {
  60727. name: "Normal",
  60728. height: math.unit(5 + 7/12, "feet"),
  60729. default: true
  60730. },
  60731. {
  60732. name: "Macro",
  60733. height: math.unit(390.42, "feet")
  60734. },
  60735. ]
  60736. ))
  60737. characterMakers.push(() => makeCharacter(
  60738. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60739. {
  60740. front: {
  60741. height: math.unit(7, "feet"),
  60742. weight: math.unit(250, "lb"),
  60743. name: "Front",
  60744. image: {
  60745. source: "./media/characters/vix-titan/front.svg",
  60746. extra: 460/428,
  60747. bottom: 15/475
  60748. },
  60749. extraAttributes: {
  60750. "pawWidth": {
  60751. name: "Paw Width",
  60752. power: 1,
  60753. type: "length",
  60754. base: math.unit(0.75, "feet")
  60755. },
  60756. }
  60757. },
  60758. },
  60759. [
  60760. {
  60761. name: "Normal",
  60762. height: math.unit(7, "feet"),
  60763. default: true
  60764. },
  60765. {
  60766. name: "Giant",
  60767. height: math.unit(1500, "feet")
  60768. },
  60769. {
  60770. name: "Mega",
  60771. height: math.unit(10, "miles")
  60772. },
  60773. {
  60774. name: "Giga",
  60775. height: math.unit(150, "miles")
  60776. },
  60777. {
  60778. name: "Tera",
  60779. height: math.unit(144000, "miles")
  60780. },
  60781. ]
  60782. ))
  60783. characterMakers.push(() => makeCharacter(
  60784. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60785. {
  60786. front: {
  60787. height: math.unit(6 + 2/12, "feet"),
  60788. name: "Front",
  60789. image: {
  60790. source: "./media/characters/reiku/front.svg",
  60791. extra: 1910/1757,
  60792. bottom: 103/2013
  60793. },
  60794. extraAttributes: {
  60795. "thighThickness": {
  60796. name: "Thigh Thickness",
  60797. power: 1,
  60798. type: "length",
  60799. base: math.unit(1.12, "feet")
  60800. },
  60801. "assThickness": {
  60802. name: "Ass Thickness",
  60803. power: 1,
  60804. type: "length",
  60805. base: math.unit(1.12*2, "feet")
  60806. },
  60807. }
  60808. },
  60809. side: {
  60810. height: math.unit(6 + 2/12, "feet"),
  60811. name: "Side",
  60812. image: {
  60813. source: "./media/characters/reiku/side.svg",
  60814. extra: 1846/1748,
  60815. bottom: 99/1945
  60816. },
  60817. extraAttributes: {
  60818. "thighThickness": {
  60819. name: "Thigh Thickness",
  60820. power: 1,
  60821. type: "length",
  60822. base: math.unit(1.12, "feet")
  60823. },
  60824. "assThickness": {
  60825. name: "Ass Thickness",
  60826. power: 1,
  60827. type: "length",
  60828. base: math.unit(1.12*2, "feet")
  60829. },
  60830. }
  60831. },
  60832. back: {
  60833. height: math.unit(6 + 2/12, "feet"),
  60834. name: "Back",
  60835. image: {
  60836. source: "./media/characters/reiku/back.svg",
  60837. extra: 1941/1786,
  60838. bottom: 34/1975
  60839. },
  60840. extraAttributes: {
  60841. "thighThickness": {
  60842. name: "Thigh Thickness",
  60843. power: 1,
  60844. type: "length",
  60845. base: math.unit(1.12, "feet")
  60846. },
  60847. "assThickness": {
  60848. name: "Ass Thickness",
  60849. power: 1,
  60850. type: "length",
  60851. base: math.unit(1.12*2, "feet")
  60852. },
  60853. }
  60854. },
  60855. head: {
  60856. height: math.unit(1.8, "feet"),
  60857. name: "Head",
  60858. image: {
  60859. source: "./media/characters/reiku/head.svg"
  60860. }
  60861. },
  60862. tailTop: {
  60863. height: math.unit(8.4, "feet"),
  60864. name: "Tail (Top)",
  60865. image: {
  60866. source: "./media/characters/reiku/tail-top.svg"
  60867. }
  60868. },
  60869. tailBottom: {
  60870. height: math.unit(8.4, "feet"),
  60871. name: "Tail (Bottom)",
  60872. image: {
  60873. source: "./media/characters/reiku/tail-bottom.svg"
  60874. }
  60875. },
  60876. foot: {
  60877. height: math.unit(2.6, "feet"),
  60878. name: "Foot",
  60879. image: {
  60880. source: "./media/characters/reiku/foot.svg"
  60881. }
  60882. },
  60883. footCurled: {
  60884. height: math.unit(2.3, "feet"),
  60885. name: "Foot (Curled)",
  60886. image: {
  60887. source: "./media/characters/reiku/foot-curled.svg"
  60888. }
  60889. },
  60890. footSide: {
  60891. height: math.unit(1.26, "feet"),
  60892. name: "Foot (Side)",
  60893. image: {
  60894. source: "./media/characters/reiku/foot-side.svg"
  60895. }
  60896. },
  60897. },
  60898. [
  60899. {
  60900. name: "Normal",
  60901. height: math.unit(6 + 2/12, "feet"),
  60902. default: true
  60903. },
  60904. ]
  60905. ))
  60906. characterMakers.push(() => makeCharacter(
  60907. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60908. {
  60909. front: {
  60910. height: math.unit(7, "feet"),
  60911. weight: math.unit(500, "kg"),
  60912. name: "Front",
  60913. image: {
  60914. source: "./media/characters/cialda/front.svg",
  60915. extra: 912/745,
  60916. bottom: 55/967
  60917. }
  60918. },
  60919. },
  60920. [
  60921. {
  60922. name: "Normal",
  60923. height: math.unit(7, "feet"),
  60924. default: true
  60925. },
  60926. ]
  60927. ))
  60928. characterMakers.push(() => makeCharacter(
  60929. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60930. {
  60931. side: {
  60932. height: math.unit(6, "feet"),
  60933. weight: math.unit(600, "lb"),
  60934. preyCapacity: math.unit(25, "liters"),
  60935. name: "Side",
  60936. image: {
  60937. source: "./media/characters/darkkin/side.svg",
  60938. extra: 1597/1447,
  60939. bottom: 101/1698
  60940. }
  60941. },
  60942. },
  60943. [
  60944. {
  60945. name: "Canon Height",
  60946. height: math.unit(568, "feet"),
  60947. default: true
  60948. },
  60949. ]
  60950. ))
  60951. characterMakers.push(() => makeCharacter(
  60952. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60953. {
  60954. front: {
  60955. height: math.unit(6, "feet"),
  60956. weight: math.unit(1500, "lb"),
  60957. preyCapacity: math.unit(3, "people"),
  60958. name: "Front",
  60959. image: {
  60960. source: "./media/characters/livnia/front.svg",
  60961. extra: 934/932,
  60962. bottom: 83/1017
  60963. }
  60964. },
  60965. back: {
  60966. height: math.unit(6, "feet"),
  60967. weight: math.unit(1500, "lb"),
  60968. preyCapacity: math.unit(3, "people"),
  60969. name: "Back",
  60970. image: {
  60971. source: "./media/characters/livnia/back.svg",
  60972. extra: 916/915,
  60973. bottom: 58/974
  60974. }
  60975. },
  60976. head: {
  60977. height: math.unit(1.53, "feet"),
  60978. name: "Head",
  60979. image: {
  60980. source: "./media/characters/livnia/head.svg"
  60981. }
  60982. },
  60983. maw: {
  60984. height: math.unit(0.78, "feet"),
  60985. name: "Maw",
  60986. image: {
  60987. source: "./media/characters/livnia/maw.svg"
  60988. }
  60989. },
  60990. genitals: {
  60991. height: math.unit(0.35, "feet"),
  60992. name: "Genitals",
  60993. image: {
  60994. source: "./media/characters/livnia/genitals.svg"
  60995. }
  60996. },
  60997. },
  60998. [
  60999. {
  61000. name: "Normal",
  61001. height: math.unit(1000, "feet"),
  61002. default: true
  61003. },
  61004. ]
  61005. ))
  61006. characterMakers.push(() => makeCharacter(
  61007. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  61008. {
  61009. front: {
  61010. height: math.unit(4, "feet"),
  61011. weight: math.unit(73, "lb"),
  61012. name: "Front",
  61013. image: {
  61014. source: "./media/characters/hayaku/front.svg",
  61015. extra: 1011/888,
  61016. bottom: 33/1044
  61017. }
  61018. },
  61019. back: {
  61020. height: math.unit(4, "feet"),
  61021. weight: math.unit(73, "lb"),
  61022. name: "Back",
  61023. image: {
  61024. source: "./media/characters/hayaku/back.svg",
  61025. extra: 1040/930,
  61026. bottom: 20/1060
  61027. }
  61028. },
  61029. },
  61030. [
  61031. {
  61032. name: "Normal",
  61033. height: math.unit(4, "feet"),
  61034. default: true
  61035. },
  61036. ]
  61037. ))
  61038. characterMakers.push(() => makeCharacter(
  61039. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  61040. {
  61041. front: {
  61042. height: math.unit(6 + 7/12, "feet"),
  61043. weight: math.unit(300, "lb"),
  61044. name: "Front",
  61045. image: {
  61046. source: "./media/characters/athena-bryzant/front.svg",
  61047. extra: 870/835,
  61048. bottom: 33/903
  61049. }
  61050. },
  61051. back: {
  61052. height: math.unit(6 + 7/12, "feet"),
  61053. weight: math.unit(300, "lb"),
  61054. name: "Back",
  61055. image: {
  61056. source: "./media/characters/athena-bryzant/back.svg",
  61057. extra: 858/823,
  61058. bottom: 30/888
  61059. }
  61060. },
  61061. head: {
  61062. height: math.unit(2.38, "feet"),
  61063. name: "Head",
  61064. image: {
  61065. source: "./media/characters/athena-bryzant/head.svg"
  61066. }
  61067. },
  61068. wings: {
  61069. height: math.unit(2.85, "feet"),
  61070. name: "Wings",
  61071. image: {
  61072. source: "./media/characters/athena-bryzant/wings.svg"
  61073. }
  61074. },
  61075. },
  61076. [
  61077. {
  61078. name: "Normal",
  61079. height: math.unit(6 + 7/12, "feet"),
  61080. default: true
  61081. },
  61082. {
  61083. name: "Big",
  61084. height: math.unit(8, "feet")
  61085. },
  61086. {
  61087. name: "Very Big",
  61088. height: math.unit(11, "feet")
  61089. },
  61090. ]
  61091. ))
  61092. characterMakers.push(() => makeCharacter(
  61093. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  61094. {
  61095. side: {
  61096. height: math.unit(3, "meters"),
  61097. weight: math.unit(7500, "kg"),
  61098. preyCapacity: math.unit(1e12, "people"),
  61099. name: "Side",
  61100. image: {
  61101. source: "./media/characters/zel-kesh/side.svg",
  61102. extra: 910/407,
  61103. bottom: 147/1057
  61104. }
  61105. },
  61106. },
  61107. [
  61108. {
  61109. name: "Normal",
  61110. height: math.unit(3, "meters"),
  61111. default: true
  61112. },
  61113. ]
  61114. ))
  61115. characterMakers.push(() => makeCharacter(
  61116. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  61117. {
  61118. front: {
  61119. height: math.unit(2, "meters"),
  61120. weight: math.unit(95, "kg"),
  61121. name: "Front",
  61122. image: {
  61123. source: "./media/characters/kane-fox/front.svg",
  61124. extra: 945/888,
  61125. bottom: 27/972
  61126. }
  61127. },
  61128. back: {
  61129. height: math.unit(2, "meters"),
  61130. weight: math.unit(95, "kg"),
  61131. name: "Back",
  61132. image: {
  61133. source: "./media/characters/kane-fox/back.svg",
  61134. extra: 959/914,
  61135. bottom: 15/974
  61136. }
  61137. },
  61138. frontLewd: {
  61139. height: math.unit(2, "meters"),
  61140. weight: math.unit(95, "kg"),
  61141. name: "Front (Lewd)",
  61142. image: {
  61143. source: "./media/characters/kane-fox/front-lewd.svg",
  61144. extra: 945/888,
  61145. bottom: 27/972
  61146. }
  61147. },
  61148. },
  61149. [
  61150. {
  61151. name: "Home Size",
  61152. height: math.unit(2, "meters"),
  61153. default: true
  61154. },
  61155. {
  61156. name: "Macro",
  61157. height: math.unit(200, "meters")
  61158. },
  61159. {
  61160. name: "Small Mega",
  61161. height: math.unit(3, "km")
  61162. },
  61163. {
  61164. name: "Mega",
  61165. height: math.unit(50, "km")
  61166. },
  61167. {
  61168. name: "Giga",
  61169. height: math.unit(200, "km")
  61170. },
  61171. {
  61172. name: "Giga+",
  61173. height: math.unit(2500, "km")
  61174. },
  61175. {
  61176. name: "Terra",
  61177. height: math.unit(70000, "km")
  61178. },
  61179. {
  61180. name: "Terra+",
  61181. height: math.unit(150000, "km")
  61182. },
  61183. {
  61184. name: "Terra++",
  61185. height: math.unit(400000, "km")
  61186. },
  61187. ]
  61188. ))
  61189. characterMakers.push(() => makeCharacter(
  61190. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  61191. {
  61192. otter_front: {
  61193. height: math.unit(1.8, "meters"),
  61194. weight: math.unit(90, "kg"),
  61195. name: "Front",
  61196. image: {
  61197. source: "./media/characters/ayranus/otter-front.svg",
  61198. extra: 468/452,
  61199. bottom: 43/511
  61200. },
  61201. form: "otter",
  61202. },
  61203. otter_frontLewd: {
  61204. height: math.unit(1.8, "meters"),
  61205. weight: math.unit(90, "kg"),
  61206. name: "Front (Lewd)",
  61207. image: {
  61208. source: "./media/characters/ayranus/otter-front-lewd.svg",
  61209. extra: 468/452,
  61210. bottom: 43/511
  61211. },
  61212. form: "otter",
  61213. },
  61214. lionbat_front: {
  61215. height: math.unit(1.8, "meters"),
  61216. weight: math.unit(90, "kg"),
  61217. name: "Front (Lewd)",
  61218. image: {
  61219. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  61220. extra: 797/740,
  61221. bottom: 78/875
  61222. },
  61223. form: "lionbat",
  61224. },
  61225. paw: {
  61226. height: math.unit(1.5, "feet"),
  61227. name: "Paw",
  61228. image: {
  61229. source: "./media/characters/ayranus/paw.svg"
  61230. },
  61231. },
  61232. },
  61233. [
  61234. {
  61235. name: "Incognito",
  61236. height: math.unit(1.8, "meters"),
  61237. allForms: true
  61238. },
  61239. {
  61240. name: "Macro",
  61241. height: math.unit(60, "meters"),
  61242. allForms: true
  61243. },
  61244. {
  61245. name: "Macro+",
  61246. height: math.unit(200, "meters"),
  61247. allForms: true
  61248. },
  61249. {
  61250. name: "Mega",
  61251. height: math.unit(35, "km"),
  61252. allForms: true
  61253. },
  61254. {
  61255. name: "Giga",
  61256. height: math.unit(220, "km"),
  61257. allForms: true
  61258. },
  61259. {
  61260. name: "Giga+",
  61261. height: math.unit(1500, "km"),
  61262. allForms: true
  61263. },
  61264. {
  61265. name: "Terra",
  61266. height: math.unit(13000, "km"),
  61267. allForms: true
  61268. },
  61269. {
  61270. name: "Terra+",
  61271. height: math.unit(500000, "km"),
  61272. allForms: true
  61273. },
  61274. {
  61275. name: "Galactic",
  61276. height: math.unit(486080, "parsecs"),
  61277. default: true,
  61278. allForms: true
  61279. },
  61280. ],
  61281. {
  61282. "otter": {
  61283. name: "Otter",
  61284. default: true
  61285. },
  61286. "lionbat": {
  61287. name: "Lionbat",
  61288. },
  61289. }
  61290. ))
  61291. characterMakers.push(() => makeCharacter(
  61292. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  61293. {
  61294. front: {
  61295. height: math.unit(7 + 4/12, "feet"),
  61296. weight: math.unit(400, "lb"),
  61297. name: "Front",
  61298. image: {
  61299. source: "./media/characters/proxy/front.svg",
  61300. extra: 1605/1542,
  61301. bottom: 55/1660
  61302. }
  61303. },
  61304. side: {
  61305. height: math.unit(7 + 4/12, "feet"),
  61306. weight: math.unit(400, "lb"),
  61307. name: "Side",
  61308. image: {
  61309. source: "./media/characters/proxy/side.svg",
  61310. extra: 794/759,
  61311. bottom: 6/800
  61312. }
  61313. },
  61314. hand: {
  61315. height: math.unit(1.54, "feet"),
  61316. name: "Hand",
  61317. image: {
  61318. source: "./media/characters/proxy/hand.svg"
  61319. }
  61320. },
  61321. paw: {
  61322. height: math.unit(1.53, "feet"),
  61323. name: "Paw",
  61324. image: {
  61325. source: "./media/characters/proxy/paw.svg"
  61326. }
  61327. },
  61328. maw: {
  61329. height: math.unit(1.9, "feet"),
  61330. name: "Maw",
  61331. image: {
  61332. source: "./media/characters/proxy/maw.svg"
  61333. }
  61334. },
  61335. },
  61336. [
  61337. {
  61338. name: "Normal",
  61339. height: math.unit(7 + 4/12, "feet"),
  61340. default: true
  61341. },
  61342. ]
  61343. ))
  61344. characterMakers.push(() => makeCharacter(
  61345. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  61346. {
  61347. front: {
  61348. height: math.unit(4, "meters"),
  61349. name: "Front",
  61350. image: {
  61351. source: "./media/characters/crocozilla/front.svg",
  61352. extra: 1790/1742,
  61353. bottom: 78/1868
  61354. }
  61355. },
  61356. },
  61357. [
  61358. {
  61359. name: "Normal",
  61360. height: math.unit(4, "meters"),
  61361. default: true
  61362. },
  61363. ]
  61364. ))
  61365. characterMakers.push(() => makeCharacter(
  61366. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  61367. {
  61368. front: {
  61369. height: math.unit(1.8, "meters"),
  61370. weight: math.unit(120, "kg"),
  61371. name: "Front",
  61372. image: {
  61373. source: "./media/characters/kurz/front.svg",
  61374. extra: 1960/1824,
  61375. bottom: 41/2001
  61376. }
  61377. },
  61378. back: {
  61379. height: math.unit(1.8, "meters"),
  61380. weight: math.unit(120, "kg"),
  61381. name: "Back",
  61382. image: {
  61383. source: "./media/characters/kurz/back.svg",
  61384. extra: 1906/1787,
  61385. bottom: 60/1966
  61386. }
  61387. },
  61388. frontLewd: {
  61389. height: math.unit(1.8, "meters"),
  61390. weight: math.unit(120, "kg"),
  61391. name: "Front (Lewd)",
  61392. image: {
  61393. source: "./media/characters/kurz/front-lewd.svg",
  61394. extra: 1960/1824,
  61395. bottom: 41/2001
  61396. }
  61397. },
  61398. maw: {
  61399. height: math.unit(0.69, "meters"),
  61400. name: "Maw",
  61401. image: {
  61402. source: "./media/characters/kurz/maw.svg"
  61403. }
  61404. },
  61405. },
  61406. [
  61407. {
  61408. name: "Original Size",
  61409. height: math.unit(1.8, "meters")
  61410. },
  61411. {
  61412. name: "Incognito Size",
  61413. height: math.unit(2.4, "meters"),
  61414. default: true
  61415. },
  61416. {
  61417. name: "Macro",
  61418. height: math.unit(30, "meters")
  61419. },
  61420. {
  61421. name: "Macro+",
  61422. height: math.unit(250, "meters")
  61423. },
  61424. {
  61425. name: "Mega",
  61426. height: math.unit(2, "km")
  61427. },
  61428. {
  61429. name: "Mega+",
  61430. height: math.unit(35, "km")
  61431. },
  61432. {
  61433. name: "Mega++",
  61434. height: math.unit(75, "km")
  61435. },
  61436. {
  61437. name: "Giga",
  61438. height: math.unit(250, "km")
  61439. },
  61440. {
  61441. name: "Terra",
  61442. height: math.unit(15000, "km")
  61443. },
  61444. {
  61445. name: "Terra+",
  61446. height: math.unit(2250000, "km")
  61447. },
  61448. ]
  61449. ))
  61450. characterMakers.push(() => makeCharacter(
  61451. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  61452. {
  61453. front: {
  61454. height: math.unit(16 + 3/12, "feet"),
  61455. weight: math.unit(3575, "lb"),
  61456. name: "Front",
  61457. image: {
  61458. source: "./media/characters/nikita/front.svg",
  61459. extra: 1064/955,
  61460. bottom: 47/1111
  61461. }
  61462. },
  61463. },
  61464. [
  61465. {
  61466. name: "Normal",
  61467. height: math.unit(16 + 3/12, "feet"),
  61468. default: true
  61469. },
  61470. {
  61471. name: "Big",
  61472. height: math.unit(21, "feet")
  61473. },
  61474. {
  61475. name: "Biggest",
  61476. height: math.unit(50, "feet")
  61477. },
  61478. ]
  61479. ))
  61480. characterMakers.push(() => makeCharacter(
  61481. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  61482. {
  61483. front: {
  61484. height: math.unit(1.92, "m"),
  61485. weight: math.unit(76, "kg"),
  61486. name: "Front",
  61487. image: {
  61488. source: "./media/characters/kyara/front.svg",
  61489. extra: 1550/1438,
  61490. bottom: 139/1689
  61491. }
  61492. },
  61493. back: {
  61494. height: math.unit(1.92, "m"),
  61495. weight: math.unit(76, "kg"),
  61496. name: "Back",
  61497. image: {
  61498. source: "./media/characters/kyara/back.svg",
  61499. extra: 1523/1427,
  61500. bottom: 83/1606
  61501. }
  61502. },
  61503. head: {
  61504. height: math.unit(1.22, "feet"),
  61505. name: "Head",
  61506. image: {
  61507. source: "./media/characters/kyara/head.svg"
  61508. }
  61509. },
  61510. maw: {
  61511. height: math.unit(0.73, "feet"),
  61512. name: "Maw",
  61513. image: {
  61514. source: "./media/characters/kyara/maw.svg"
  61515. }
  61516. },
  61517. paws: {
  61518. height: math.unit(0.95, "feet"),
  61519. name: "Paws",
  61520. image: {
  61521. source: "./media/characters/kyara/paws.svg"
  61522. }
  61523. },
  61524. },
  61525. [
  61526. {
  61527. name: "Normal",
  61528. height: math.unit(1.92, "meters"),
  61529. default: true
  61530. },
  61531. {
  61532. name: "Mini Macro",
  61533. height: math.unit(192, "meters")
  61534. },
  61535. {
  61536. name: "Macro",
  61537. height: math.unit(480, "meters")
  61538. },
  61539. {
  61540. name: "Mega Macro",
  61541. height: math.unit(1440, "meters")
  61542. },
  61543. ]
  61544. ))
  61545. characterMakers.push(() => makeCharacter(
  61546. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61547. {
  61548. front: {
  61549. height: math.unit(6, "feet"),
  61550. weight: math.unit(160, "lbs"),
  61551. preyCapacity: math.unit(0.05, "people"),
  61552. name: "Front",
  61553. image: {
  61554. source: "./media/characters/layla-amari/front.svg",
  61555. extra: 1922/1723,
  61556. bottom: 90/2012
  61557. }
  61558. },
  61559. back: {
  61560. height: math.unit(6, "feet"),
  61561. weight: math.unit(160, "lbs"),
  61562. preyCapacity: math.unit(0.05, "people"),
  61563. name: "Back",
  61564. image: {
  61565. source: "./media/characters/layla-amari/back.svg",
  61566. extra: 1917/1718,
  61567. bottom: 50/1967
  61568. }
  61569. },
  61570. frontDressed: {
  61571. height: math.unit(6, "feet"),
  61572. weight: math.unit(160, "lbs"),
  61573. preyCapacity: math.unit(0.05, "people"),
  61574. name: "Front (Dressed)",
  61575. image: {
  61576. source: "./media/characters/layla-amari/front-dressed.svg",
  61577. extra: 1922/1723,
  61578. bottom: 90/2012
  61579. }
  61580. },
  61581. face: {
  61582. height: math.unit(0.93, "feet"),
  61583. name: "Face",
  61584. image: {
  61585. source: "./media/characters/layla-amari/face.svg"
  61586. }
  61587. },
  61588. hand: {
  61589. height: math.unit(0.66 , "feet"),
  61590. name: "Hand",
  61591. image: {
  61592. source: "./media/characters/layla-amari/hand.svg"
  61593. }
  61594. },
  61595. foot: {
  61596. height: math.unit(1, "feet"),
  61597. name: "Foot",
  61598. image: {
  61599. source: "./media/characters/layla-amari/foot.svg"
  61600. }
  61601. },
  61602. necklace: {
  61603. height: math.unit(0.32, "feet"),
  61604. name: "Necklace",
  61605. image: {
  61606. source: "./media/characters/layla-amari/necklace.svg"
  61607. }
  61608. },
  61609. nipple: {
  61610. height: math.unit(0.2, "feet"),
  61611. name: "Nipple",
  61612. image: {
  61613. source: "./media/characters/layla-amari/nipple.svg"
  61614. }
  61615. },
  61616. slit: {
  61617. height: math.unit(0.26, "feet"),
  61618. name: "Slit",
  61619. image: {
  61620. source: "./media/characters/layla-amari/slit.svg"
  61621. }
  61622. },
  61623. },
  61624. [
  61625. {
  61626. name: "Natural",
  61627. height: math.unit(825, "feet"),
  61628. default: true
  61629. },
  61630. {
  61631. name: "Enhanced",
  61632. height: math.unit(8250, "feet")
  61633. },
  61634. {
  61635. name: "Apparent Size",
  61636. height: math.unit(9.04363e+8, "meters")
  61637. },
  61638. ]
  61639. ))
  61640. characterMakers.push(() => makeCharacter(
  61641. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61642. {
  61643. front: {
  61644. height: math.unit(1.3, "meters"),
  61645. name: "Front",
  61646. image: {
  61647. source: "./media/characters/percy/front.svg",
  61648. extra: 1444/1289,
  61649. bottom: 54/1498
  61650. }
  61651. },
  61652. },
  61653. [
  61654. {
  61655. name: "Normal",
  61656. height: math.unit(1.3, "meters"),
  61657. default: true
  61658. },
  61659. ]
  61660. ))
  61661. characterMakers.push(() => makeCharacter(
  61662. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61663. {
  61664. side: {
  61665. height: math.unit(10, "meters"),
  61666. name: "Side",
  61667. image: {
  61668. source: "./media/characters/grev/side.svg",
  61669. extra: 653/266,
  61670. bottom: 77/730
  61671. }
  61672. },
  61673. head: {
  61674. height: math.unit(16.2, "m"),
  61675. name: "Head",
  61676. image: {
  61677. source: "./media/characters/grev/head.svg"
  61678. }
  61679. },
  61680. dick: {
  61681. height: math.unit(2.8135932034, "m"),
  61682. name: "Dick",
  61683. image: {
  61684. source: "./media/characters/grev/dick.svg"
  61685. }
  61686. },
  61687. },
  61688. [
  61689. {
  61690. name: "Friend-Sized",
  61691. height: math.unit(80, "cm")
  61692. },
  61693. {
  61694. name: "Normal",
  61695. height: math.unit(10, "meters"),
  61696. default: true
  61697. },
  61698. {
  61699. name: "Macro",
  61700. height: math.unit(200, "meters")
  61701. },
  61702. ]
  61703. ))
  61704. characterMakers.push(() => makeCharacter(
  61705. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61706. {
  61707. front: {
  61708. height: math.unit(19.75, "feet"),
  61709. weight: math.unit(20000, "lb"),
  61710. name: "Front",
  61711. image: {
  61712. source: "./media/characters/azuuca/front.svg",
  61713. extra: 1593/1511,
  61714. bottom: 55/1648
  61715. }
  61716. },
  61717. },
  61718. [
  61719. {
  61720. name: "Normal",
  61721. height: math.unit(19.75, "feet"),
  61722. default: true
  61723. },
  61724. ]
  61725. ))
  61726. characterMakers.push(() => makeCharacter(
  61727. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61728. {
  61729. front: {
  61730. height: math.unit(15, "feet"),
  61731. weight: math.unit(1500, "lb"),
  61732. name: "Front",
  61733. image: {
  61734. source: "./media/characters/valuria/front.svg",
  61735. extra: 1588/1486,
  61736. bottom: 31/1619
  61737. }
  61738. },
  61739. },
  61740. [
  61741. {
  61742. name: "Normal",
  61743. height: math.unit(15, "feet"),
  61744. default: true
  61745. },
  61746. {
  61747. name: "Small",
  61748. height: math.unit(500, "feet")
  61749. },
  61750. {
  61751. name: "Macro",
  61752. height: math.unit(4000, "feet")
  61753. },
  61754. {
  61755. name: "Mega Macro",
  61756. height: math.unit(2000, "miles")
  61757. },
  61758. {
  61759. name: "Giga Macro",
  61760. height: math.unit(3e6, "miles")
  61761. },
  61762. ]
  61763. ))
  61764. characterMakers.push(() => makeCharacter(
  61765. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61766. {
  61767. front: {
  61768. height: math.unit(3500, "solarradii"),
  61769. name: "Front",
  61770. image: {
  61771. source: "./media/characters/terigaia/front.svg",
  61772. extra: 1531/1451,
  61773. bottom: 98/1629
  61774. }
  61775. },
  61776. },
  61777. [
  61778. {
  61779. name: "Normal",
  61780. height: math.unit(3500, "solarradii"),
  61781. default: true
  61782. },
  61783. ]
  61784. ))
  61785. characterMakers.push(() => makeCharacter(
  61786. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61787. {
  61788. front: {
  61789. height: math.unit(9.34, "feet"),
  61790. weight: math.unit(600, "lb"),
  61791. name: "Front",
  61792. image: {
  61793. source: "./media/characters/blair-blaziken/front.svg",
  61794. extra: 1557/1462,
  61795. bottom: 55/1612
  61796. }
  61797. },
  61798. },
  61799. [
  61800. {
  61801. name: "Normal",
  61802. height: math.unit(9.34, "feet"),
  61803. default: true
  61804. },
  61805. ]
  61806. ))
  61807. characterMakers.push(() => makeCharacter(
  61808. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61809. {
  61810. pistrogre_front: {
  61811. height: math.unit(10, "feet"),
  61812. weight: math.unit(10, "tons"),
  61813. name: "Front",
  61814. image: {
  61815. source: "./media/characters/braxia/pistrogre-front.svg",
  61816. extra: 1531/1334,
  61817. bottom: 114/1645
  61818. },
  61819. form: "pistrogre",
  61820. default: true
  61821. },
  61822. human_front: {
  61823. height: math.unit(10, "feet"),
  61824. weight: math.unit(10, "tons"),
  61825. name: "Front",
  61826. image: {
  61827. source: "./media/characters/braxia/human-front.svg",
  61828. extra: 1574/1501,
  61829. bottom: 37/1611
  61830. },
  61831. form: "human",
  61832. default: true
  61833. },
  61834. },
  61835. [
  61836. {
  61837. name: "Normal",
  61838. height: math.unit(10, "feet"),
  61839. default: true,
  61840. allForms: true
  61841. },
  61842. {
  61843. name: "Macro",
  61844. height: math.unit(1000, "feet"),
  61845. allForms: true
  61846. },
  61847. {
  61848. name: "Mega Macro",
  61849. height: math.unit(100, "miles"),
  61850. allForms: true
  61851. },
  61852. {
  61853. name: "Cosmic",
  61854. height: math.unit(1000000, "lightyears"),
  61855. allForms: true
  61856. },
  61857. {
  61858. name: "ϐѮԆԬӁꭍϞԢ",
  61859. height: math.unit(1000, "multiverses"),
  61860. allForms: true
  61861. },
  61862. ],
  61863. {
  61864. "pistrogre": {
  61865. name: "Pistrogre",
  61866. default: true
  61867. },
  61868. "human": {
  61869. name: "Human",
  61870. },
  61871. }
  61872. ))
  61873. characterMakers.push(() => makeCharacter(
  61874. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61875. {
  61876. front: {
  61877. height: math.unit(6 + 1/12, "feet"),
  61878. weight: math.unit(280, "lb"),
  61879. name: "Front",
  61880. image: {
  61881. source: "./media/characters/kiriga-yato/front.svg",
  61882. extra: 445/394,
  61883. bottom: 11/456
  61884. }
  61885. },
  61886. },
  61887. [
  61888. {
  61889. name: "Descended",
  61890. height: math.unit(3, "feet")
  61891. },
  61892. {
  61893. name: "Average",
  61894. height: math.unit(6 + 1/12, "feet"),
  61895. default: true
  61896. },
  61897. {
  61898. name: "Ascended",
  61899. height: math.unit(9 + 2/12, "feet")
  61900. },
  61901. ]
  61902. ))
  61903. characterMakers.push(() => makeCharacter(
  61904. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61905. {
  61906. front: {
  61907. height: math.unit(6, "feet"),
  61908. weight: math.unit(150, "lb"),
  61909. name: "Front",
  61910. image: {
  61911. source: "./media/characters/kylie/front.svg",
  61912. extra: 1114/1046,
  61913. bottom: 65/1179
  61914. },
  61915. extraAttributes: {
  61916. "hoofSize": {
  61917. name: "Hoof Size",
  61918. power: 2,
  61919. type: "area",
  61920. base: math.unit(0.034, "m^2")
  61921. },
  61922. "footSize": {
  61923. name: "Foot Size",
  61924. power: 2,
  61925. type: "area",
  61926. base: math.unit(0.75, "m^2")
  61927. },
  61928. }
  61929. },
  61930. side: {
  61931. height: math.unit(6, "feet"),
  61932. weight: math.unit(150, "lb"),
  61933. name: "Side",
  61934. image: {
  61935. source: "./media/characters/kylie/side.svg",
  61936. extra: 1178/1110,
  61937. bottom: 21/1199
  61938. },
  61939. extraAttributes: {
  61940. "hoofSize": {
  61941. name: "Hoof Size",
  61942. power: 2,
  61943. type: "area",
  61944. base: math.unit(0.034, "m^2")
  61945. },
  61946. "footSize": {
  61947. name: "Foot Size",
  61948. power: 2,
  61949. type: "area",
  61950. base: math.unit(0.75, "m^2")
  61951. },
  61952. }
  61953. },
  61954. back: {
  61955. height: math.unit(6, "feet"),
  61956. weight: math.unit(150, "lb"),
  61957. name: "Back",
  61958. image: {
  61959. source: "./media/characters/kylie/back.svg",
  61960. extra: 1115/1047,
  61961. bottom: 66/1181
  61962. },
  61963. extraAttributes: {
  61964. "hoofSize": {
  61965. name: "Hoof Size",
  61966. power: 2,
  61967. type: "area",
  61968. base: math.unit(0.034, "m^2")
  61969. },
  61970. "footSize": {
  61971. name: "Foot Size",
  61972. power: 2,
  61973. type: "area",
  61974. base: math.unit(0.75, "m^2")
  61975. },
  61976. }
  61977. },
  61978. head: {
  61979. height: math.unit(1.85, "feet"),
  61980. name: "Head",
  61981. image: {
  61982. source: "./media/characters/kylie/head.svg"
  61983. }
  61984. },
  61985. },
  61986. [
  61987. {
  61988. name: "Normal",
  61989. height: math.unit(90, "meters"),
  61990. default: true
  61991. },
  61992. ]
  61993. ))
  61994. characterMakers.push(() => makeCharacter(
  61995. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61996. {
  61997. front: {
  61998. height: math.unit(245, "feet"),
  61999. weight: math.unit(400000, "lb"),
  62000. name: "Front",
  62001. image: {
  62002. source: "./media/characters/sabado/front.svg",
  62003. extra: 1309/1164,
  62004. bottom: 29/1338
  62005. }
  62006. },
  62007. },
  62008. [
  62009. {
  62010. name: "Normal",
  62011. height: math.unit(245, "feet"),
  62012. default: true
  62013. },
  62014. ]
  62015. ))
  62016. characterMakers.push(() => makeCharacter(
  62017. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  62018. {
  62019. shark_front: {
  62020. height: math.unit(2, "meters"),
  62021. weight: math.unit(200, "kg"),
  62022. name: "Front",
  62023. image: {
  62024. source: "./media/characters/zechal/shark-front.svg",
  62025. extra: 969/925,
  62026. bottom: 74/1043
  62027. },
  62028. form: "shark",
  62029. },
  62030. shark_back: {
  62031. height: math.unit(2, "meters"),
  62032. weight: math.unit(200, "kg"),
  62033. name: "Back",
  62034. image: {
  62035. source: "./media/characters/zechal/shark-back.svg",
  62036. extra: 994/949,
  62037. bottom: 176/1170
  62038. },
  62039. form: "shark",
  62040. },
  62041. shark_frontLewd: {
  62042. height: math.unit(2, "meters"),
  62043. weight: math.unit(200, "kg"),
  62044. name: "Front (Lewd)",
  62045. image: {
  62046. source: "./media/characters/zechal/shark-front-lewd.svg",
  62047. extra: 969/925,
  62048. bottom: 74/1043
  62049. },
  62050. form: "shark",
  62051. },
  62052. shark_side: {
  62053. height: math.unit(1.56, "meters"),
  62054. weight: math.unit(200, "kg"),
  62055. name: "Side",
  62056. image: {
  62057. source: "./media/characters/zechal/shark-side.svg"
  62058. },
  62059. form: "shark",
  62060. },
  62061. dragon_front: {
  62062. height: math.unit(2, "meters"),
  62063. weight: math.unit(200, "kg"),
  62064. name: "Front",
  62065. image: {
  62066. source: "./media/characters/zechal/dragon-front.svg",
  62067. extra: 1041/925,
  62068. bottom: 74/1115
  62069. },
  62070. form: "dragon",
  62071. },
  62072. dragon_back: {
  62073. height: math.unit(2, "meters"),
  62074. weight: math.unit(200, "kg"),
  62075. name: "Back",
  62076. image: {
  62077. source: "./media/characters/zechal/dragon-back.svg",
  62078. extra: 1061/949,
  62079. bottom: 176/1237
  62080. },
  62081. form: "dragon",
  62082. },
  62083. dragon_frontLewd: {
  62084. height: math.unit(2, "meters"),
  62085. weight: math.unit(200, "kg"),
  62086. name: "Front (Lewd)",
  62087. image: {
  62088. source: "./media/characters/zechal/dragon-front-lewd.svg",
  62089. extra: 1041/925,
  62090. bottom: 74/1115
  62091. },
  62092. form: "dragon",
  62093. },
  62094. dragon_side: {
  62095. height: math.unit(1.56, "meters"),
  62096. weight: math.unit(200, "kg"),
  62097. name: "Side",
  62098. image: {
  62099. source: "./media/characters/zechal/dragon-side.svg"
  62100. },
  62101. form: "dragon",
  62102. },
  62103. foot: {
  62104. height: math.unit(0.5, "meters"),
  62105. name: "Foot",
  62106. image: {
  62107. source: "./media/characters/zechal/foot.svg"
  62108. }
  62109. },
  62110. sheathFront: {
  62111. height: math.unit(0.45, "meters"),
  62112. name: "Sheath (Front)",
  62113. image: {
  62114. source: "./media/characters/zechal/sheath-front.svg"
  62115. }
  62116. },
  62117. sheathSide: {
  62118. height: math.unit(0.45, "meters"),
  62119. name: "Sheath (Side)",
  62120. image: {
  62121. source: "./media/characters/zechal/sheath-side.svg"
  62122. }
  62123. },
  62124. },
  62125. [
  62126. {
  62127. name: "Incognito",
  62128. height: math.unit(2, "meters"),
  62129. allForms: true
  62130. },
  62131. {
  62132. name: "Small Rampage",
  62133. height: math.unit(25, "meters"),
  62134. allForms: true
  62135. },
  62136. {
  62137. name: "Home Size",
  62138. height: math.unit(250, "meters"),
  62139. allForms: true,
  62140. default: true
  62141. },
  62142. {
  62143. name: "Macro+",
  62144. height: math.unit(700, "meters"),
  62145. allForms: true
  62146. },
  62147. {
  62148. name: "Small Mega",
  62149. height: math.unit(3, "km"),
  62150. allForms: true
  62151. },
  62152. {
  62153. name: "Mega",
  62154. height: math.unit(15, "km"),
  62155. allForms: true
  62156. },
  62157. {
  62158. name: "Giga",
  62159. height: math.unit(300, "km"),
  62160. allForms: true
  62161. },
  62162. {
  62163. name: "Giga+",
  62164. height: math.unit(1750, "km"),
  62165. allForms: true
  62166. },
  62167. {
  62168. name: "Continental",
  62169. height: math.unit(5000, "km"),
  62170. allForms: true
  62171. },
  62172. {
  62173. name: "Terra",
  62174. height: math.unit(20000, "km"),
  62175. allForms: true
  62176. },
  62177. {
  62178. name: "Terra+",
  62179. height: math.unit(300000, "km"),
  62180. allForms: true
  62181. },
  62182. {
  62183. name: "Solar",
  62184. height: math.unit(40000000, "km"),
  62185. allForms: true
  62186. },
  62187. {
  62188. name: "Galactic",
  62189. height: math.unit(810133, "parsecs"),
  62190. allForms: true
  62191. },
  62192. {
  62193. name: "Universal",
  62194. height: math.unit(25, "universes"),
  62195. allForms: true
  62196. },
  62197. ],
  62198. {
  62199. "shark": {
  62200. name: "Shark",
  62201. default: true
  62202. },
  62203. "dragon": {
  62204. name: "Dragon",
  62205. },
  62206. }
  62207. ))
  62208. characterMakers.push(() => makeCharacter(
  62209. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  62210. {
  62211. front: {
  62212. height: math.unit(2.2, "meters"),
  62213. weight: math.unit(150, "kg"),
  62214. name: "Front",
  62215. image: {
  62216. source: "./media/characters/sergis/front.svg",
  62217. extra: 1314/1312,
  62218. bottom: 112/1426
  62219. }
  62220. },
  62221. back: {
  62222. height: math.unit(2.2, "meters"),
  62223. weight: math.unit(150, "kg"),
  62224. name: "Back",
  62225. image: {
  62226. source: "./media/characters/sergis/back.svg",
  62227. extra: 1335/1333,
  62228. bottom: 19/1354
  62229. }
  62230. },
  62231. frontLewd: {
  62232. height: math.unit(2.2, "meters"),
  62233. weight: math.unit(150, "kg"),
  62234. name: "Front (Lewd)",
  62235. image: {
  62236. source: "./media/characters/sergis/front-lewd.svg",
  62237. extra: 1314/1312,
  62238. bottom: 112/1426
  62239. }
  62240. },
  62241. frontDressed: {
  62242. height: math.unit(2.2, "meters"),
  62243. weight: math.unit(150, "kg"),
  62244. name: "Front (Dressed)",
  62245. image: {
  62246. source: "./media/characters/sergis/front-dressed.svg",
  62247. extra: 1330/1328,
  62248. bottom: 95/1425
  62249. }
  62250. },
  62251. frontDressedLewd: {
  62252. height: math.unit(2.2, "meters"),
  62253. weight: math.unit(150, "kg"),
  62254. name: "Front (Dressed, Lewd)",
  62255. image: {
  62256. source: "./media/characters/sergis/front-dressed-lewd.svg",
  62257. extra: 1330/1328,
  62258. bottom: 95/1425
  62259. }
  62260. },
  62261. maw: {
  62262. height: math.unit(0.48, "meters"),
  62263. name: "Maw",
  62264. image: {
  62265. source: "./media/characters/sergis/maw.svg"
  62266. }
  62267. },
  62268. sheath: {
  62269. height: math.unit(0.38, "meters"),
  62270. name: "Sheath",
  62271. image: {
  62272. source: "./media/characters/sergis/sheath.svg"
  62273. }
  62274. },
  62275. },
  62276. [
  62277. {
  62278. name: "Incognito Size",
  62279. height: math.unit(2.2, "meters")
  62280. },
  62281. {
  62282. name: "Small Macro",
  62283. height: math.unit(40, "meters")
  62284. },
  62285. {
  62286. name: "Macro",
  62287. height: math.unit(150, "meters")
  62288. },
  62289. {
  62290. name: "Macro+",
  62291. height: math.unit(300, "meters")
  62292. },
  62293. {
  62294. name: "Mega",
  62295. height: math.unit(2.5, "km")
  62296. },
  62297. {
  62298. name: "Mega+",
  62299. height: math.unit(30, "km")
  62300. },
  62301. {
  62302. name: "Home Size",
  62303. height: math.unit(300, "km"),
  62304. default: true
  62305. },
  62306. {
  62307. name: "Giga+",
  62308. height: math.unit(1000, "km")
  62309. },
  62310. {
  62311. name: "Giga++",
  62312. height: math.unit(6000, "km")
  62313. },
  62314. {
  62315. name: "Terra",
  62316. height: math.unit(70000, "km")
  62317. },
  62318. {
  62319. name: "Terra+",
  62320. height: math.unit(200000, "km")
  62321. },
  62322. {
  62323. name: "Galactic",
  62324. height: math.unit(634200, "lightyears")
  62325. },
  62326. ]
  62327. ))
  62328. characterMakers.push(() => makeCharacter(
  62329. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  62330. {
  62331. standard: {
  62332. height: math.unit(1 + 5/12, "feet"),
  62333. name: "Standard",
  62334. image: {
  62335. source: "./media/characters/spade/standard.svg",
  62336. extra: 1794/1703,
  62337. bottom: 115/1909
  62338. }
  62339. },
  62340. disguised: {
  62341. height: math.unit(1 + 5/12, "feet"),
  62342. name: "Disguised",
  62343. image: {
  62344. source: "./media/characters/spade/disguised.svg",
  62345. extra: 1794/1700,
  62346. bottom: 98/1892
  62347. }
  62348. },
  62349. },
  62350. [
  62351. {
  62352. name: "Normal",
  62353. height: math.unit(1 + 5/12, "feet"),
  62354. default: true
  62355. },
  62356. ]
  62357. ))
  62358. characterMakers.push(() => makeCharacter(
  62359. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  62360. {
  62361. frontNsfw: {
  62362. height: math.unit(5, "meters"),
  62363. weight: math.unit(2000, "kg"),
  62364. preyCapacity: math.unit(5, "people"),
  62365. name: "Front (NSFW)",
  62366. image: {
  62367. source: "./media/characters/zeanlain/front-nsfw.svg",
  62368. extra: 1087/938,
  62369. bottom: 93/1180
  62370. },
  62371. extraAttributes: {
  62372. "wingspan": {
  62373. name: "Wingspan",
  62374. power: 1,
  62375. type: "length",
  62376. base: math.unit(10, "meters")
  62377. },
  62378. "footSize": {
  62379. name: "Foot Size",
  62380. power: 1,
  62381. type: "length",
  62382. base: math.unit(0.68, "meters")
  62383. },
  62384. "cockLength": {
  62385. name: "Cock Length",
  62386. power: 1,
  62387. type: "length",
  62388. base: math.unit(1.69, "meters")
  62389. },
  62390. "ballVolume": {
  62391. name: "Ball Volume",
  62392. power: 3,
  62393. type: "volume",
  62394. base: math.unit(0.028, "m^3")
  62395. },
  62396. }
  62397. },
  62398. front: {
  62399. height: math.unit(5, "meters"),
  62400. weight: math.unit(2000, "kg"),
  62401. preyCapacity: math.unit(3, "people"),
  62402. name: "Front",
  62403. image: {
  62404. source: "./media/characters/zeanlain/front.svg",
  62405. extra: 1087/938,
  62406. bottom: 93/1180
  62407. },
  62408. extraAttributes: {
  62409. "wingspan": {
  62410. name: "Wingspan",
  62411. power: 1,
  62412. type: "length",
  62413. base: math.unit(10, "meters")
  62414. },
  62415. "footSize": {
  62416. name: "Foot Size",
  62417. power: 1,
  62418. type: "length",
  62419. base: math.unit(0.68, "meters")
  62420. },
  62421. }
  62422. },
  62423. },
  62424. [
  62425. {
  62426. name: "Normal",
  62427. height: math.unit(5, "meters"),
  62428. default: true
  62429. },
  62430. ]
  62431. ))
  62432. characterMakers.push(() => makeCharacter(
  62433. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  62434. {
  62435. front: {
  62436. height: math.unit(10, "meters"),
  62437. weight: math.unit(250000, "kg"),
  62438. name: "Front",
  62439. image: {
  62440. source: "./media/characters/airamis/front.svg",
  62441. extra: 865/835,
  62442. bottom: 13/878
  62443. }
  62444. },
  62445. },
  62446. [
  62447. {
  62448. name: "Normal",
  62449. height: math.unit(10, "meters"),
  62450. default: true
  62451. },
  62452. ]
  62453. ))
  62454. characterMakers.push(() => makeCharacter(
  62455. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  62456. {
  62457. front: {
  62458. height: math.unit(3 + 3/12, "feet"),
  62459. weight: math.unit(75, "lb"),
  62460. name: "Front",
  62461. image: {
  62462. source: "./media/characters/corra-tourmaline/front.svg",
  62463. extra: 1037/864,
  62464. bottom: 39/1076
  62465. }
  62466. },
  62467. back: {
  62468. height: math.unit(3 + 3/12, "feet"),
  62469. weight: math.unit(75, "lb"),
  62470. name: "Back",
  62471. image: {
  62472. source: "./media/characters/corra-tourmaline/back.svg",
  62473. extra: 1022/849,
  62474. bottom: 26/1048
  62475. }
  62476. },
  62477. dressed: {
  62478. height: math.unit(3 + 3/12, "feet"),
  62479. weight: math.unit(75, "lb"),
  62480. name: "Dressed",
  62481. image: {
  62482. source: "./media/characters/corra-tourmaline/dressed.svg",
  62483. extra: 1037/864,
  62484. bottom: 39/1076
  62485. }
  62486. },
  62487. beans: {
  62488. height: math.unit(0.37, "feet"),
  62489. name: "Beans",
  62490. image: {
  62491. source: "./media/characters/corra-tourmaline/beans.svg"
  62492. }
  62493. },
  62494. },
  62495. [
  62496. {
  62497. name: "Normal",
  62498. height: math.unit(3 + 3/12, "feet"),
  62499. default: true
  62500. },
  62501. {
  62502. name: "Macro",
  62503. height: math.unit(32, "feet")
  62504. },
  62505. ]
  62506. ))
  62507. characterMakers.push(() => makeCharacter(
  62508. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  62509. {
  62510. front: {
  62511. height: math.unit(6 + 2/12, "feet"),
  62512. weight: math.unit(203, "lb"),
  62513. name: "Front",
  62514. image: {
  62515. source: "./media/characters/maki-kawa/front.svg",
  62516. extra: 950/890,
  62517. bottom: 62/1012
  62518. }
  62519. },
  62520. back: {
  62521. height: math.unit(6 + 2/12, "feet"),
  62522. weight: math.unit(203, "lb"),
  62523. name: "Back",
  62524. image: {
  62525. source: "./media/characters/maki-kawa/back.svg",
  62526. extra: 953/878,
  62527. bottom: 49/1002
  62528. }
  62529. },
  62530. frontBarista: {
  62531. height: math.unit(6 + 2/12, "feet"),
  62532. weight: math.unit(203, "lb"),
  62533. name: "Front (Barista)",
  62534. image: {
  62535. source: "./media/characters/maki-kawa/front-barista.svg",
  62536. extra: 943/883,
  62537. bottom: 69/1012
  62538. }
  62539. },
  62540. backBarista: {
  62541. height: math.unit(6 + 2/12, "feet"),
  62542. weight: math.unit(203, "lb"),
  62543. name: "Back (Barista)",
  62544. image: {
  62545. source: "./media/characters/maki-kawa/back-barista.svg",
  62546. extra: 953/878,
  62547. bottom: 49/1002
  62548. }
  62549. },
  62550. frontWrestler: {
  62551. height: math.unit(6 + 2/12, "feet"),
  62552. weight: math.unit(203, "lb"),
  62553. name: "Front (Wrestler)",
  62554. image: {
  62555. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62556. extra: 950/890,
  62557. bottom: 62/1012
  62558. }
  62559. },
  62560. backWrestler: {
  62561. height: math.unit(6 + 2/12, "feet"),
  62562. weight: math.unit(203, "lb"),
  62563. name: "Back (Wrestler)",
  62564. image: {
  62565. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62566. extra: 953/878,
  62567. bottom: 49/1002
  62568. }
  62569. },
  62570. headFront: {
  62571. height: math.unit(1.64, "feet"),
  62572. name: "Head (Front)",
  62573. image: {
  62574. source: "./media/characters/maki-kawa/head-front.svg"
  62575. }
  62576. },
  62577. headSide: {
  62578. height: math.unit(1.59, "feet"),
  62579. name: "Head (Side)",
  62580. image: {
  62581. source: "./media/characters/maki-kawa/head-side.svg"
  62582. }
  62583. },
  62584. paw: {
  62585. height: math.unit(0.9, "feet"),
  62586. name: "Paw",
  62587. image: {
  62588. source: "./media/characters/maki-kawa/paw.svg"
  62589. }
  62590. },
  62591. },
  62592. [
  62593. {
  62594. name: "Normal",
  62595. height: math.unit(6 + 2/12, "feet"),
  62596. default: true
  62597. },
  62598. {
  62599. name: "Macro",
  62600. height: math.unit(617, "feet")
  62601. },
  62602. ]
  62603. ))
  62604. characterMakers.push(() => makeCharacter(
  62605. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62606. {
  62607. front: {
  62608. height: math.unit(10, "feet"),
  62609. weight: math.unit(1500, "lb"),
  62610. name: "Front",
  62611. image: {
  62612. source: "./media/characters/lennox/front.svg",
  62613. extra: 1623/1496,
  62614. bottom: 18/1641
  62615. }
  62616. },
  62617. back: {
  62618. height: math.unit(10, "feet"),
  62619. weight: math.unit(1500, "lb"),
  62620. name: "Back",
  62621. image: {
  62622. source: "./media/characters/lennox/back.svg",
  62623. extra: 1641/1481,
  62624. bottom: 13/1654
  62625. }
  62626. },
  62627. maw: {
  62628. height: math.unit(2.94, "feet"),
  62629. name: "Maw",
  62630. image: {
  62631. source: "./media/characters/lennox/maw.svg"
  62632. }
  62633. },
  62634. },
  62635. [
  62636. {
  62637. name: "Micro",
  62638. height: math.unit(1, "inch")
  62639. },
  62640. {
  62641. name: "Normal",
  62642. height: math.unit(10, "feet"),
  62643. default: true
  62644. },
  62645. {
  62646. name: "Macro",
  62647. height: math.unit(200, "feet")
  62648. },
  62649. ]
  62650. ))
  62651. characterMakers.push(() => makeCharacter(
  62652. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62653. {
  62654. frontDressed: {
  62655. height: math.unit(15 + 7/12, "feet"),
  62656. weight: math.unit(5000, "lb"),
  62657. name: "Front (Dressed)",
  62658. image: {
  62659. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62660. extra: 1136/1023,
  62661. bottom: 51/1187
  62662. }
  62663. },
  62664. backDressed: {
  62665. height: math.unit(15 + 7/12, "feet"),
  62666. weight: math.unit(5000, "lb"),
  62667. name: "Back (Dressed)",
  62668. image: {
  62669. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62670. extra: 2359/2143,
  62671. bottom: 103/2462
  62672. }
  62673. },
  62674. front: {
  62675. height: math.unit(15 + 7/12, "feet"),
  62676. weight: math.unit(5000, "lb"),
  62677. name: "Front",
  62678. image: {
  62679. source: "./media/characters/vyse-iron-thunder/front.svg",
  62680. extra: 1136/1023,
  62681. bottom: 51/1187
  62682. }
  62683. },
  62684. hand: {
  62685. height: math.unit(2.36, "feet"),
  62686. name: "Hand",
  62687. image: {
  62688. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62689. }
  62690. },
  62691. foot: {
  62692. height: math.unit(1.72, "feet"),
  62693. name: "Foot",
  62694. image: {
  62695. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62696. }
  62697. },
  62698. mouth: {
  62699. height: math.unit(2, "feet"),
  62700. name: "Mouth",
  62701. image: {
  62702. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62703. }
  62704. },
  62705. eye: {
  62706. height: math.unit(0.58, "feet"),
  62707. name: "Eye",
  62708. image: {
  62709. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62710. }
  62711. },
  62712. },
  62713. [
  62714. {
  62715. name: "Normal",
  62716. height: math.unit(15 + 7/12, "feet"),
  62717. default: true
  62718. },
  62719. {
  62720. name: "Macro",
  62721. height: math.unit(157, "feet")
  62722. },
  62723. {
  62724. name: "Macro+",
  62725. height: math.unit(1570, "feet")
  62726. },
  62727. {
  62728. name: "Macro++",
  62729. height: math.unit(15700, "feet")
  62730. },
  62731. {
  62732. name: "Macro+++",
  62733. height: math.unit(157000, "feet")
  62734. },
  62735. {
  62736. name: "Macro++++",
  62737. height: math.unit(1570000, "feet")
  62738. },
  62739. ]
  62740. ))
  62741. characterMakers.push(() => makeCharacter(
  62742. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62743. {
  62744. side: {
  62745. height: math.unit(6, "feet"),
  62746. weight: math.unit(115, "lb"),
  62747. name: "Side",
  62748. image: {
  62749. source: "./media/characters/moonbeam/side.svg",
  62750. extra: 839/485,
  62751. bottom: 60/899
  62752. }
  62753. },
  62754. },
  62755. [
  62756. {
  62757. name: "Normal",
  62758. height: math.unit(6, "feet"),
  62759. default: true
  62760. },
  62761. ]
  62762. ))
  62763. characterMakers.push(() => makeCharacter(
  62764. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62765. {
  62766. front: {
  62767. height: math.unit(3500, "miles"),
  62768. weight: math.unit(1659, "petatonnes"),
  62769. name: "Front",
  62770. image: {
  62771. source: "./media/characters/baltica/front.svg",
  62772. extra: 429/428,
  62773. bottom: 41/470
  62774. }
  62775. },
  62776. back: {
  62777. height: math.unit(3500, "miles"),
  62778. weight: math.unit(1659, "petatonnes"),
  62779. name: "Back",
  62780. image: {
  62781. source: "./media/characters/baltica/back.svg",
  62782. extra: 452/451,
  62783. bottom: 8/460
  62784. }
  62785. },
  62786. },
  62787. [
  62788. {
  62789. name: "Gigamacro",
  62790. height: math.unit(3500, "miles"),
  62791. default: true
  62792. },
  62793. ]
  62794. ))
  62795. characterMakers.push(() => makeCharacter(
  62796. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62797. {
  62798. front: {
  62799. height: math.unit(6 + 10/12, "feet"),
  62800. weight: math.unit(200, "lb"),
  62801. name: "Front",
  62802. image: {
  62803. source: "./media/characters/shadow-wolf/front.svg",
  62804. extra: 1931/1760,
  62805. bottom: 88/2019
  62806. }
  62807. },
  62808. },
  62809. [
  62810. {
  62811. name: "Normal",
  62812. height: math.unit(6 + 10/12, "feet"),
  62813. default: true
  62814. },
  62815. ]
  62816. ))
  62817. characterMakers.push(() => makeCharacter(
  62818. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62819. {
  62820. front: {
  62821. height: math.unit(5 + 10/12, "feet"),
  62822. name: "Front",
  62823. image: {
  62824. source: "./media/characters/quincy-praying-mantis/front.svg",
  62825. extra: 1055/891,
  62826. bottom: 92/1147
  62827. }
  62828. },
  62829. soles: {
  62830. height: math.unit(0.85, "feet"),
  62831. name: "Soles",
  62832. image: {
  62833. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62834. extra: 429/324,
  62835. bottom: 89/518
  62836. },
  62837. extraAttributes: {
  62838. "shoeSize": {
  62839. name: "Shoe Size",
  62840. power: 1,
  62841. type: "length",
  62842. base: math.unit(23, "ShoeSizeMensUS"),
  62843. defaultUnit: "ShoeSizeMensUS"
  62844. },
  62845. }
  62846. },
  62847. foot: {
  62848. height: math.unit(0.72, "feet"),
  62849. name: "Foot",
  62850. image: {
  62851. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62852. extra: 349/349,
  62853. bottom: 76/425
  62854. }
  62855. },
  62856. },
  62857. [
  62858. {
  62859. name: "Normal",
  62860. height: math.unit(5 + 10/12, "feet"),
  62861. default: true
  62862. },
  62863. ]
  62864. ))
  62865. characterMakers.push(() => makeCharacter(
  62866. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62867. {
  62868. front: {
  62869. height: math.unit(6, "feet"),
  62870. name: "Front",
  62871. image: {
  62872. source: "./media/characters/christopher-redwood/front.svg",
  62873. extra: 1402/1341,
  62874. bottom: 23/1425
  62875. }
  62876. },
  62877. back: {
  62878. height: math.unit(6, "feet"),
  62879. name: "Back",
  62880. image: {
  62881. source: "./media/characters/christopher-redwood/back.svg",
  62882. extra: 1406/1345,
  62883. bottom: 36/1442
  62884. }
  62885. },
  62886. head: {
  62887. height: math.unit(1.685, "feet"),
  62888. name: "Head",
  62889. image: {
  62890. source: "./media/characters/christopher-redwood/head.svg"
  62891. }
  62892. },
  62893. },
  62894. [
  62895. {
  62896. name: "Normal",
  62897. height: math.unit(6, "feet"),
  62898. default: true
  62899. },
  62900. ]
  62901. ))
  62902. characterMakers.push(() => makeCharacter(
  62903. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62904. {
  62905. front: {
  62906. height: math.unit(1.9, "meters"),
  62907. weight: math.unit(140, "lb"),
  62908. name: "Front",
  62909. image: {
  62910. source: "./media/characters/kara-fox/front.svg",
  62911. extra: 766/711,
  62912. bottom: 41/807
  62913. }
  62914. },
  62915. back: {
  62916. height: math.unit(1.9, "meters"),
  62917. weight: math.unit(140, "lb"),
  62918. name: "Back",
  62919. image: {
  62920. source: "./media/characters/kara-fox/back.svg",
  62921. extra: 766/596,
  62922. bottom: 29/795
  62923. }
  62924. },
  62925. maw: {
  62926. height: math.unit(0.78, "feet"),
  62927. name: "Maw",
  62928. image: {
  62929. source: "./media/characters/kara-fox/maw.svg"
  62930. }
  62931. },
  62932. pawpads: {
  62933. height: math.unit(0.96, "feet"),
  62934. name: "Pawpads",
  62935. image: {
  62936. source: "./media/characters/kara-fox/pawpads.svg"
  62937. }
  62938. },
  62939. },
  62940. [
  62941. {
  62942. name: "Normal",
  62943. height: math.unit(1.9, "meters"),
  62944. default: true
  62945. },
  62946. {
  62947. name: "Giantess",
  62948. height: math.unit(80, "meters")
  62949. },
  62950. ]
  62951. ))
  62952. characterMakers.push(() => makeCharacter(
  62953. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62954. {
  62955. front: {
  62956. height: math.unit(12, "feet"),
  62957. name: "Front",
  62958. image: {
  62959. source: "./media/characters/naomi-espeon/front.svg",
  62960. extra: 892/797,
  62961. bottom: 5/897
  62962. }
  62963. },
  62964. back: {
  62965. height: math.unit(12, "feet"),
  62966. name: "Back",
  62967. image: {
  62968. source: "./media/characters/naomi-espeon/back.svg",
  62969. extra: 890/785,
  62970. bottom: 12/902
  62971. }
  62972. },
  62973. },
  62974. [
  62975. {
  62976. name: "Normal",
  62977. height: math.unit(12, "feet"),
  62978. default: true
  62979. },
  62980. ]
  62981. ))
  62982. characterMakers.push(() => makeCharacter(
  62983. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62984. {
  62985. anthro_front: {
  62986. height: math.unit(8, "feet"),
  62987. weight: math.unit(625, "lb"),
  62988. name: "Front",
  62989. image: {
  62990. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62991. extra: 638/574,
  62992. bottom: 73/711
  62993. },
  62994. form: "anthro",
  62995. default: true
  62996. },
  62997. anthro_back: {
  62998. height: math.unit(8, "feet"),
  62999. weight: math.unit(625, "lb"),
  63000. name: "Back",
  63001. image: {
  63002. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  63003. extra: 674/614,
  63004. bottom: 7/681
  63005. },
  63006. form: "anthro",
  63007. },
  63008. taur_side: {
  63009. height: math.unit(16, "feet"),
  63010. weight: math.unit(4.5, "tons"),
  63011. name: "Side",
  63012. image: {
  63013. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  63014. extra: 704/646,
  63015. bottom: 132/836
  63016. },
  63017. form: "taur",
  63018. default: true
  63019. },
  63020. },
  63021. [
  63022. {
  63023. name: "Normal",
  63024. height: math.unit(8, "feet"),
  63025. default: true,
  63026. form: "anthro"
  63027. },
  63028. {
  63029. name: "Normal",
  63030. height: math.unit(16, "feet"),
  63031. default: true,
  63032. form: "taur"
  63033. },
  63034. ],
  63035. {
  63036. "anthro": {
  63037. name: "Anthro",
  63038. default: true
  63039. },
  63040. "taur": {
  63041. name: "Taur",
  63042. },
  63043. }
  63044. ))
  63045. characterMakers.push(() => makeCharacter(
  63046. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  63047. {
  63048. front: {
  63049. height: math.unit(190, "cm"),
  63050. weight: math.unit(110, "kg"),
  63051. name: "Front",
  63052. image: {
  63053. source: "./media/characters/amelie/front.svg",
  63054. extra: 530/442,
  63055. bottom: 35/565
  63056. }
  63057. },
  63058. },
  63059. [
  63060. {
  63061. name: "Normal",
  63062. height: math.unit(190, "cm"),
  63063. default: true
  63064. },
  63065. ]
  63066. ))
  63067. characterMakers.push(() => makeCharacter(
  63068. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  63069. {
  63070. front: {
  63071. height: math.unit(21, "feet"),
  63072. weight: math.unit(30000, "lb"),
  63073. name: "Front",
  63074. image: {
  63075. source: "./media/characters/valence/front.svg",
  63076. extra: 1430/1306,
  63077. bottom: 51/1481
  63078. }
  63079. },
  63080. },
  63081. [
  63082. {
  63083. name: "Normal",
  63084. height: math.unit(21, "feet"),
  63085. default: true
  63086. },
  63087. ]
  63088. ))
  63089. characterMakers.push(() => makeCharacter(
  63090. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  63091. {
  63092. front: {
  63093. height: math.unit(5 + 9/12, "feet"),
  63094. weight: math.unit(170, "lb"),
  63095. name: "Front",
  63096. image: {
  63097. source: "./media/characters/aurora-adkins/front.svg",
  63098. extra: 1141/1089,
  63099. bottom: 41/1182
  63100. }
  63101. },
  63102. },
  63103. [
  63104. {
  63105. name: "Tiny",
  63106. height: math.unit(7, "mm")
  63107. },
  63108. {
  63109. name: "Small",
  63110. height: math.unit(3.4, "inches")
  63111. },
  63112. {
  63113. name: "Normal",
  63114. height: math.unit(5 + 9/12, "feet"),
  63115. default: true
  63116. },
  63117. {
  63118. name: "Big",
  63119. height: math.unit(31, "feet")
  63120. },
  63121. {
  63122. name: "Giant",
  63123. height: math.unit(300, "feet")
  63124. },
  63125. ]
  63126. ))
  63127. characterMakers.push(() => makeCharacter(
  63128. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  63129. {
  63130. front: {
  63131. height: math.unit(5 + 6/12, "feet"),
  63132. weight: math.unit(210, "lb"),
  63133. name: "Front",
  63134. image: {
  63135. source: "./media/characters/cyber/front.svg",
  63136. extra: 1968/1798,
  63137. bottom: 10/1978
  63138. },
  63139. extraAttributes: {
  63140. "shoeSize": {
  63141. name: "Shoe Size",
  63142. power: 1,
  63143. type: "length",
  63144. base: math.unit(30, "ShoeSizeMensUS")
  63145. },
  63146. }
  63147. },
  63148. },
  63149. [
  63150. {
  63151. name: "Normal",
  63152. height: math.unit(5 + 6/12, "feet"),
  63153. default: true
  63154. },
  63155. ]
  63156. ))
  63157. characterMakers.push(() => makeCharacter(
  63158. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  63159. {
  63160. front: {
  63161. height: math.unit(6 + 6/12, "feet"),
  63162. weight: math.unit(140, "lb"),
  63163. name: "Front",
  63164. image: {
  63165. source: "./media/characters/sapphire-wairimea/front.svg",
  63166. extra: 475/458,
  63167. bottom: 14/489
  63168. }
  63169. },
  63170. },
  63171. [
  63172. {
  63173. name: "Normal",
  63174. height: math.unit(6 + 6/12, "feet")
  63175. },
  63176. {
  63177. name: "Macro",
  63178. height: math.unit(132, "feet"),
  63179. default: true
  63180. },
  63181. ]
  63182. ))
  63183. characterMakers.push(() => makeCharacter(
  63184. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  63185. {
  63186. front: {
  63187. height: math.unit(1.6, "meters"),
  63188. weight: math.unit(100, "lb"),
  63189. name: "Front",
  63190. image: {
  63191. source: "./media/characters/cirkazi/front.svg",
  63192. extra: 489/477,
  63193. bottom: 0/489
  63194. }
  63195. },
  63196. },
  63197. [
  63198. {
  63199. name: "Normal",
  63200. height: math.unit(1.6, "meters")
  63201. },
  63202. {
  63203. name: "Macro",
  63204. height: math.unit(800, "feet"),
  63205. default: true
  63206. },
  63207. ]
  63208. ))
  63209. characterMakers.push(() => makeCharacter(
  63210. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  63211. {
  63212. front: {
  63213. height: math.unit(5 + 10/12, "feet"),
  63214. weight: math.unit(145, "lb"),
  63215. name: "Front",
  63216. image: {
  63217. source: "./media/characters/corrin-cavelli/front.svg",
  63218. extra: 483/464,
  63219. bottom: 6/489
  63220. }
  63221. },
  63222. },
  63223. [
  63224. {
  63225. name: "Human",
  63226. height: math.unit(5 + 10/12, "feet")
  63227. },
  63228. {
  63229. name: "Giant",
  63230. height: math.unit(210, "feet"),
  63231. default: true
  63232. },
  63233. ]
  63234. ))
  63235. characterMakers.push(() => makeCharacter(
  63236. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  63237. {
  63238. back: {
  63239. height: math.unit(5 + 6/12, "feet"),
  63240. weight: math.unit(115, "lb"),
  63241. name: "Back",
  63242. image: {
  63243. source: "./media/characters/lori-lopez/back.svg",
  63244. extra: 483/474,
  63245. bottom: 6/489
  63246. }
  63247. },
  63248. },
  63249. [
  63250. {
  63251. name: "Human",
  63252. height: math.unit(5 + 6/12, "feet")
  63253. },
  63254. {
  63255. name: "Macro",
  63256. height: math.unit(198, "feet"),
  63257. default: true
  63258. },
  63259. ]
  63260. ))
  63261. characterMakers.push(() => makeCharacter(
  63262. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  63263. {
  63264. front: {
  63265. height: math.unit(6, "feet"),
  63266. weight: math.unit(220, "lb"),
  63267. name: "Front",
  63268. image: {
  63269. source: "./media/characters/sylvia-beauregard/front.svg",
  63270. extra: 483/479,
  63271. bottom: 6/489
  63272. }
  63273. },
  63274. },
  63275. [
  63276. {
  63277. name: "Macro",
  63278. height: math.unit(2071, "feet"),
  63279. default: true
  63280. },
  63281. ]
  63282. ))
  63283. characterMakers.push(() => makeCharacter(
  63284. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  63285. {
  63286. back: {
  63287. height: math.unit(5 + 6/12, "feet"),
  63288. weight: math.unit(160, "lb"),
  63289. name: "Back",
  63290. image: {
  63291. source: "./media/characters/akiko-takahashi/back.svg",
  63292. extra: 459/454,
  63293. bottom: 27/486
  63294. }
  63295. },
  63296. },
  63297. [
  63298. {
  63299. name: "Human",
  63300. height: math.unit(5 + 6/12, "feet")
  63301. },
  63302. {
  63303. name: "Macro",
  63304. height: math.unit(198, "feet"),
  63305. default: true
  63306. },
  63307. {
  63308. name: "Megamacro",
  63309. height: math.unit(7128, "feet")
  63310. },
  63311. ]
  63312. ))
  63313. characterMakers.push(() => makeCharacter(
  63314. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  63315. {
  63316. front: {
  63317. height: math.unit(6, "feet"),
  63318. weight: math.unit(140, "lb"),
  63319. name: "Front",
  63320. image: {
  63321. source: "./media/characters/velvet-garza/front.svg",
  63322. extra: 480/462,
  63323. bottom: 7/487
  63324. }
  63325. },
  63326. },
  63327. [
  63328. {
  63329. name: "Macro",
  63330. height: math.unit(37, "feet"),
  63331. default: true
  63332. },
  63333. ]
  63334. ))
  63335. characterMakers.push(() => makeCharacter(
  63336. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  63337. {
  63338. front: {
  63339. height: math.unit(7 + 6/12, "feet"),
  63340. weight: math.unit(400, "lb"),
  63341. name: "Front",
  63342. image: {
  63343. source: "./media/characters/gaia/front.svg",
  63344. extra: 474/463,
  63345. bottom: 13/487
  63346. }
  63347. },
  63348. },
  63349. [
  63350. {
  63351. name: "MiniMacro",
  63352. height: math.unit(7 + 6/12, "feet")
  63353. },
  63354. {
  63355. name: "GigaMacro",
  63356. height: math.unit(14500, "feet"),
  63357. default: true
  63358. },
  63359. ]
  63360. ))
  63361. characterMakers.push(() => makeCharacter(
  63362. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  63363. {
  63364. front: {
  63365. height: math.unit(6, "feet"),
  63366. weight: math.unit(150, "lb"),
  63367. name: "Front",
  63368. image: {
  63369. source: "./media/characters/tim/front.svg",
  63370. extra: 1878/1743,
  63371. bottom: 9/1887
  63372. }
  63373. },
  63374. frontDressed: {
  63375. height: math.unit(6, "feet"),
  63376. weight: math.unit(150, "lb"),
  63377. name: "Front (Dressed)",
  63378. image: {
  63379. source: "./media/characters/tim/front-dressed.svg",
  63380. extra: 1765/1485,
  63381. bottom: 48/1813
  63382. }
  63383. },
  63384. backDressed: {
  63385. height: math.unit(6, "feet"),
  63386. weight: math.unit(150, "lb"),
  63387. name: "Back (Dressed)",
  63388. image: {
  63389. source: "./media/characters/tim/back-dressed.svg",
  63390. extra: 1750/1465,
  63391. bottom: 25/1775
  63392. }
  63393. },
  63394. dick: {
  63395. height: math.unit(1.5, "feet"),
  63396. weight: math.unit(6, "lb"),
  63397. name: "Dick",
  63398. image: {
  63399. source: "./media/characters/tim/dick.svg"
  63400. }
  63401. },
  63402. hand: {
  63403. height: math.unit(0.522, "feet"),
  63404. name: "Hand",
  63405. image: {
  63406. source: "./media/characters/tim/hand.svg"
  63407. }
  63408. },
  63409. palm: {
  63410. height: math.unit(0.48, "feet"),
  63411. name: "Palm",
  63412. image: {
  63413. source: "./media/characters/tim/palm.svg"
  63414. }
  63415. },
  63416. paw: {
  63417. height: math.unit(0.9, "feet"),
  63418. name: "Paw",
  63419. image: {
  63420. source: "./media/characters/tim/paw.svg"
  63421. }
  63422. },
  63423. sole: {
  63424. height: math.unit(0.88, "feet"),
  63425. name: "Sole",
  63426. image: {
  63427. source: "./media/characters/tim/sole.svg"
  63428. }
  63429. },
  63430. },
  63431. [
  63432. {
  63433. name: "Macro",
  63434. height: math.unit(1000, "feet")
  63435. },
  63436. {
  63437. name: "Megamacro",
  63438. height: math.unit(10000, "feet"),
  63439. default: true
  63440. },
  63441. {
  63442. name: "Megamacro+",
  63443. height: math.unit(50000, "feet")
  63444. },
  63445. {
  63446. name: "Gigamacro",
  63447. height: math.unit(150000, "km")
  63448. },
  63449. ]
  63450. ))
  63451. characterMakers.push(() => makeCharacter(
  63452. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  63453. {
  63454. front: {
  63455. height: math.unit(5 + 8/12, "feet"),
  63456. weight: math.unit(170, "lb"),
  63457. name: "Front",
  63458. image: {
  63459. source: "./media/characters/abel-delreoux/front.svg",
  63460. extra: 1615/1500,
  63461. bottom: 82/1697
  63462. }
  63463. },
  63464. back: {
  63465. height: math.unit(5 + 8/12, "feet"),
  63466. weight: math.unit(170, "lb"),
  63467. name: "Back",
  63468. image: {
  63469. source: "./media/characters/abel-delreoux/back.svg",
  63470. extra: 1644/1534,
  63471. bottom: 24/1668
  63472. }
  63473. },
  63474. casual: {
  63475. height: math.unit(5 + 8/12, "feet"),
  63476. weight: math.unit(170, "lb"),
  63477. name: "Casual",
  63478. image: {
  63479. source: "./media/characters/abel-delreoux/casual.svg",
  63480. extra: 1716/1598,
  63481. bottom: 29/1745
  63482. }
  63483. },
  63484. sleepy: {
  63485. height: math.unit(5 + 8/12, "feet"),
  63486. weight: math.unit(170, "lb"),
  63487. name: "Sleepy",
  63488. image: {
  63489. source: "./media/characters/abel-delreoux/sleepy.svg",
  63490. extra: 1649/1573,
  63491. bottom: 22/1671
  63492. }
  63493. },
  63494. fem: {
  63495. height: math.unit(5 + 8/12, "feet"),
  63496. weight: math.unit(170, "lb"),
  63497. name: "Fem",
  63498. image: {
  63499. source: "./media/characters/abel-delreoux/fem.svg",
  63500. extra: 1680/1564,
  63501. bottom: 17/1697
  63502. }
  63503. },
  63504. hand: {
  63505. height: math.unit(0.78, "feet"),
  63506. name: "Hand",
  63507. image: {
  63508. source: "./media/characters/abel-delreoux/hand.svg"
  63509. }
  63510. },
  63511. paw: {
  63512. height: math.unit(0.78, "feet"),
  63513. name: "Paw",
  63514. image: {
  63515. source: "./media/characters/abel-delreoux/paw.svg"
  63516. }
  63517. },
  63518. },
  63519. [
  63520. {
  63521. name: "Normal",
  63522. height: math.unit(5 + 8/12, "feet"),
  63523. default: true
  63524. },
  63525. ]
  63526. ))
  63527. characterMakers.push(() => makeCharacter(
  63528. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  63529. {
  63530. front: {
  63531. height: math.unit(6, "feet"),
  63532. weight: math.unit(159, "lb"),
  63533. name: "Front",
  63534. image: {
  63535. source: "./media/characters/meus/front.svg",
  63536. extra: 938/843,
  63537. bottom: 37/975
  63538. }
  63539. },
  63540. back: {
  63541. height: math.unit(6, "feet"),
  63542. weight: math.unit(159, "lb"),
  63543. name: "Back",
  63544. image: {
  63545. source: "./media/characters/meus/back.svg",
  63546. extra: 967/873,
  63547. bottom: 12/979
  63548. }
  63549. },
  63550. },
  63551. [
  63552. {
  63553. name: "Micro",
  63554. height: math.unit(2, "inches")
  63555. },
  63556. {
  63557. name: "Mini",
  63558. height: math.unit(6, "inches")
  63559. },
  63560. {
  63561. name: "Normal",
  63562. height: math.unit(6, "feet"),
  63563. default: true
  63564. },
  63565. {
  63566. name: "Macro",
  63567. height: math.unit(84, "feet")
  63568. },
  63569. ]
  63570. ))
  63571. characterMakers.push(() => makeCharacter(
  63572. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63573. {
  63574. front: {
  63575. height: math.unit(60, "cm"),
  63576. weight: math.unit(18, "kg"),
  63577. name: "Front",
  63578. image: {
  63579. source: "./media/characters/yamato/front.svg",
  63580. extra: 733/688,
  63581. bottom: 29/762
  63582. }
  63583. },
  63584. },
  63585. [
  63586. {
  63587. name: "Micro",
  63588. height: math.unit(6, "cm")
  63589. },
  63590. {
  63591. name: "Normal",
  63592. height: math.unit(60, "cm"),
  63593. default: true
  63594. },
  63595. ]
  63596. ))
  63597. characterMakers.push(() => makeCharacter(
  63598. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63599. {
  63600. front: {
  63601. height: math.unit(9, "feet"),
  63602. weight: math.unit(518, "lb"),
  63603. name: "Front",
  63604. image: {
  63605. source: "./media/characters/barus/front.svg",
  63606. extra: 1877/1795,
  63607. bottom: 55/1932
  63608. }
  63609. },
  63610. },
  63611. [
  63612. {
  63613. name: "Base Height",
  63614. height: math.unit(9, "feet"),
  63615. default: true
  63616. },
  63617. {
  63618. name: "Large",
  63619. height: math.unit(18, "feet")
  63620. },
  63621. {
  63622. name: "Giant",
  63623. height: math.unit(100, "feet")
  63624. },
  63625. {
  63626. name: "Huge",
  63627. height: math.unit(500, "feet")
  63628. },
  63629. {
  63630. name: "Enormous",
  63631. height: math.unit(300, "meters")
  63632. },
  63633. {
  63634. name: "Deity Among Man",
  63635. height: math.unit(3000, "meters")
  63636. },
  63637. ]
  63638. ))
  63639. characterMakers.push(() => makeCharacter(
  63640. { name: "Yari", species: ["sergal"], tags: ["anthro"] },
  63641. {
  63642. front: {
  63643. height: math.unit(1.7, "meters"),
  63644. name: "Front",
  63645. image: {
  63646. source: "./media/characters/yari/front.svg",
  63647. extra: 1210/1125,
  63648. bottom: 283/1493
  63649. }
  63650. },
  63651. back: {
  63652. height: math.unit(1.7, "meters"),
  63653. name: "Back",
  63654. image: {
  63655. source: "./media/characters/yari/back.svg",
  63656. extra: 1240/1195,
  63657. bottom: 180/1420
  63658. }
  63659. },
  63660. head: {
  63661. height: math.unit(1.26, "feet"),
  63662. name: "Head",
  63663. image: {
  63664. source: "./media/characters/yari/head.svg"
  63665. }
  63666. },
  63667. },
  63668. [
  63669. {
  63670. name: "Nano",
  63671. height: math.unit(0.5, "mm")
  63672. },
  63673. {
  63674. name: "Micro",
  63675. height: math.unit(3, "inches")
  63676. },
  63677. {
  63678. name: "Short",
  63679. height: math.unit(1.5, "meters")
  63680. },
  63681. {
  63682. name: "Norm",
  63683. height: math.unit(1.7, "meters"),
  63684. default: true
  63685. },
  63686. ]
  63687. ))
  63688. characterMakers.push(() => makeCharacter(
  63689. { name: "Salem", species: ["mouse"], tags: ["anthro"] },
  63690. {
  63691. front: {
  63692. height: math.unit(5 + 2/12, "feet"),
  63693. weight: math.unit(110, "lb"),
  63694. name: "Front",
  63695. image: {
  63696. source: "./media/characters/salem/front.svg",
  63697. extra: 1895/1800,
  63698. bottom: 23/1918
  63699. }
  63700. },
  63701. back: {
  63702. height: math.unit(5 + 2/12, "feet"),
  63703. weight: math.unit(110, "lb"),
  63704. name: "Back",
  63705. image: {
  63706. source: "./media/characters/salem/back.svg",
  63707. extra: 1875/1802,
  63708. bottom: 20/1895
  63709. }
  63710. },
  63711. head: {
  63712. height: math.unit(1, "feet"),
  63713. name: "Head",
  63714. image: {
  63715. source: "./media/characters/salem/head.svg"
  63716. }
  63717. },
  63718. paw: {
  63719. height: math.unit(0.59, "feet"),
  63720. name: "Paw",
  63721. image: {
  63722. source: "./media/characters/salem/paw.svg"
  63723. }
  63724. },
  63725. beans: {
  63726. height: math.unit(0.66, "feet"),
  63727. name: "Beans",
  63728. image: {
  63729. source: "./media/characters/salem/beans.svg"
  63730. }
  63731. },
  63732. eye: {
  63733. height: math.unit(0.224, "feet"),
  63734. name: "Eye",
  63735. image: {
  63736. source: "./media/characters/salem/eye.svg"
  63737. }
  63738. },
  63739. semiferal: {
  63740. height: math.unit(2.3, "feet"),
  63741. name: "Semiferal",
  63742. image: {
  63743. source: "./media/characters/salem/semiferal.svg",
  63744. extra: 914/839,
  63745. bottom: 32/946
  63746. }
  63747. },
  63748. },
  63749. [
  63750. {
  63751. name: "Micro",
  63752. height: math.unit(4, "inches")
  63753. },
  63754. {
  63755. name: "Normal",
  63756. height: math.unit(5 + 2/12, "feet"),
  63757. default: true
  63758. },
  63759. {
  63760. name: "Macro",
  63761. height: math.unit(108, "feet")
  63762. },
  63763. {
  63764. name: "Macro+",
  63765. height: math.unit(1500, "feet")
  63766. },
  63767. ]
  63768. ))
  63769. characterMakers.push(() => makeCharacter(
  63770. { name: "Kii", species: ["dragon", "dog"], tags: ["anthro"] },
  63771. {
  63772. front: {
  63773. height: math.unit(7 + 6/12, "feet"),
  63774. weight: math.unit(600, "kg"),
  63775. preyCapacity: math.unit(10, "people"),
  63776. name: "Front",
  63777. image: {
  63778. source: "./media/characters/kii/front.svg",
  63779. extra: 3296/3087,
  63780. bottom: 130/3426
  63781. }
  63782. },
  63783. },
  63784. [
  63785. {
  63786. name: "Normal",
  63787. height: math.unit(7 + 6/12, "feet"),
  63788. default: true
  63789. },
  63790. ]
  63791. ))
  63792. characterMakers.push(() => makeCharacter(
  63793. { name: "Taffy", species: ["saltwater-crocodile"], tags: ["anthro"] },
  63794. {
  63795. front: {
  63796. height: math.unit(2, "meters"),
  63797. weight: math.unit(200, "lb"),
  63798. name: "Front",
  63799. image: {
  63800. source: "./media/characters/taffy/front.svg",
  63801. extra: 1666/1618,
  63802. bottom: 157/1823
  63803. }
  63804. },
  63805. back: {
  63806. height: math.unit(2, "meters"),
  63807. weight: math.unit(200, "lb"),
  63808. name: "Back",
  63809. image: {
  63810. source: "./media/characters/taffy/back.svg",
  63811. extra: 1635/1583,
  63812. bottom: 153/1788
  63813. }
  63814. },
  63815. },
  63816. [
  63817. {
  63818. name: "Normal",
  63819. height: math.unit(2, "meters"),
  63820. default: true
  63821. },
  63822. ]
  63823. ))
  63824. characterMakers.push(() => makeCharacter(
  63825. { name: "Barley", species: ["eastern-grey-kangaroo"], tags: ["anthro"] },
  63826. {
  63827. front: {
  63828. height: math.unit(1.55, "meters"),
  63829. weight: math.unit(60, "kg"),
  63830. name: "Front",
  63831. image: {
  63832. source: "./media/characters/barley/front.svg",
  63833. extra: 1520/1340,
  63834. bottom: 47/1567
  63835. }
  63836. },
  63837. back: {
  63838. height: math.unit(1.55, "meters"),
  63839. weight: math.unit(60, "kg"),
  63840. name: "Back",
  63841. image: {
  63842. source: "./media/characters/barley/back.svg",
  63843. extra: 1543/1341,
  63844. bottom: 12/1555
  63845. }
  63846. },
  63847. feet: {
  63848. height: math.unit(2.18, "feet"),
  63849. name: "Feet",
  63850. image: {
  63851. source: "./media/characters/barley/feet.svg"
  63852. }
  63853. },
  63854. },
  63855. [
  63856. {
  63857. name: "Normal",
  63858. height: math.unit(1.55, "meters"),
  63859. default: true
  63860. },
  63861. ]
  63862. ))
  63863. characterMakers.push(() => makeCharacter(
  63864. { name: "Lydia Lopez", species: ["shark"], tags: ["anthro"] },
  63865. {
  63866. dressed: {
  63867. height: math.unit(6, "feet"),
  63868. name: "Dressed",
  63869. image: {
  63870. source: "./media/characters/lydia-lopez/dressed.svg",
  63871. extra: 1319/1277,
  63872. bottom: 90/1409
  63873. }
  63874. },
  63875. nude: {
  63876. height: math.unit(6, "feet"),
  63877. name: "Nude",
  63878. image: {
  63879. source: "./media/characters/lydia-lopez/nude.svg",
  63880. extra: 1319/1277,
  63881. bottom: 90/1409
  63882. }
  63883. },
  63884. },
  63885. [
  63886. {
  63887. name: "Normal",
  63888. height: math.unit(6, "feet"),
  63889. default: true
  63890. },
  63891. {
  63892. name: "Maximum",
  63893. height: math.unit(2101, "feet")
  63894. },
  63895. ]
  63896. ))
  63897. characterMakers.push(() => makeCharacter(
  63898. { name: "Kira (Slime)", species: ["slime"], tags: ["goo"] },
  63899. {
  63900. front: {
  63901. height: math.unit(5 + 4/12, "feet"),
  63902. weight: math.unit(250, "lb"),
  63903. volume: math.unit(20, "gallons"),
  63904. name: "Front",
  63905. image: {
  63906. source: "./media/characters/kira-slime/front.svg",
  63907. extra: 442/403,
  63908. bottom: 18/460
  63909. }
  63910. },
  63911. frontNsfw: {
  63912. height: math.unit(5 + 4/12, "feet"),
  63913. weight: math.unit(250, "lb"),
  63914. volume: math.unit(20, "gallons"),
  63915. name: "Front (NSFW)",
  63916. image: {
  63917. source: "./media/characters/kira-slime/front-nsfw.svg",
  63918. extra: 442/403,
  63919. bottom: 18/460
  63920. }
  63921. },
  63922. },
  63923. [
  63924. {
  63925. name: "Droplet",
  63926. height: math.unit(0.0464452, "feet")
  63927. },
  63928. {
  63929. name: "Pint",
  63930. height: math.unit(0.9824, "feet")
  63931. },
  63932. {
  63933. name: "Bucket",
  63934. height: math.unit(2.83, "feet")
  63935. },
  63936. {
  63937. name: "Normal",
  63938. height: math.unit(5 + 4/12, "feet"),
  63939. default: true
  63940. },
  63941. {
  63942. name: "Tub",
  63943. height: math.unit(8.46614, "feet")
  63944. },
  63945. {
  63946. name: "Pool",
  63947. height: math.unit(31.1895, "feet")
  63948. },
  63949. {
  63950. name: "Pond",
  63951. height: math.unit(170.349, "feet")
  63952. },
  63953. {
  63954. name: "Lake",
  63955. height: math.unit(289334, "feet")
  63956. },
  63957. {
  63958. name: "Ocean",
  63959. height: math.unit(1.11940e+7, "feet")
  63960. },
  63961. ]
  63962. ))
  63963. characterMakers.push(() => makeCharacter(
  63964. { name: "Holiday", species: ["fennec-fox", "deer"], tags: ["anthro"] },
  63965. {
  63966. front: {
  63967. height: math.unit(5 + 6/12, "feet"),
  63968. weight: math.unit(120, "lb"),
  63969. name: "Front",
  63970. image: {
  63971. source: "./media/characters/holiday/front.svg",
  63972. extra: 456/403,
  63973. bottom: 4/460
  63974. }
  63975. },
  63976. back: {
  63977. height: math.unit(5 + 6/12, "feet"),
  63978. weight: math.unit(120, "lb"),
  63979. name: "Back",
  63980. image: {
  63981. source: "./media/characters/holiday/back.svg",
  63982. extra: 450/404,
  63983. bottom: 12/462
  63984. }
  63985. },
  63986. head: {
  63987. height: math.unit(2.3, "feet"),
  63988. name: "Head",
  63989. image: {
  63990. source: "./media/characters/holiday/head.svg"
  63991. }
  63992. },
  63993. },
  63994. [
  63995. {
  63996. name: "Normal",
  63997. height: math.unit(5 + 6/12, "feet"),
  63998. default: true
  63999. },
  64000. {
  64001. name: "Macro",
  64002. height: math.unit(6574.25, "feet")
  64003. },
  64004. ]
  64005. ))
  64006. characterMakers.push(() => makeCharacter(
  64007. { name: "Camina", species: ["latenivenatrix"], tags: ["anthro"] },
  64008. {
  64009. front: {
  64010. height: math.unit(6 + 2/12, "feet"),
  64011. weight: math.unit(200, "lb"),
  64012. name: "Front",
  64013. image: {
  64014. source: "./media/characters/camina/front.svg",
  64015. extra: 1048/985,
  64016. bottom: 30/1078
  64017. }
  64018. },
  64019. },
  64020. [
  64021. {
  64022. name: "Normal",
  64023. height: math.unit(6 + 2/12, "feet"),
  64024. default: true
  64025. },
  64026. ]
  64027. ))
  64028. characterMakers.push(() => makeCharacter(
  64029. { name: "Smuck", species: ["duck"], tags: ["feral"] },
  64030. {
  64031. front: {
  64032. height: math.unit(30, "cm"),
  64033. weight: math.unit(420, "grams"),
  64034. name: "Front",
  64035. image: {
  64036. source: "./media/characters/smuck/front.svg",
  64037. extra: 379/345,
  64038. bottom: 36/415
  64039. }
  64040. },
  64041. },
  64042. [
  64043. {
  64044. name: "Smuck-Sized",
  64045. height: math.unit(30, "cm"),
  64046. default: true
  64047. },
  64048. ]
  64049. ))
  64050. characterMakers.push(() => makeCharacter(
  64051. { name: "Bylur", species: ["monster"], tags: ["anthro"] },
  64052. {
  64053. frontSfw: {
  64054. height: math.unit(10, "feet"),
  64055. weight: math.unit(1000, "kg"),
  64056. preyCapacity: math.unit(2, "people"),
  64057. name: "Front (SFW)",
  64058. image: {
  64059. source: "./media/characters/bylur/front-sfw.svg",
  64060. extra: 419/343,
  64061. bottom: 3/422
  64062. },
  64063. default: true
  64064. },
  64065. frontSheath: {
  64066. height: math.unit(10, "feet"),
  64067. weight: math.unit(1000, "kg"),
  64068. preyCapacity: math.unit(2, "people"),
  64069. name: "Front (Sheath)",
  64070. image: {
  64071. source: "./media/characters/bylur/front-sheath.svg",
  64072. extra: 419/343,
  64073. bottom: 3/422
  64074. }
  64075. },
  64076. frontErect: {
  64077. height: math.unit(10, "feet"),
  64078. weight: math.unit(1000, "kg"),
  64079. preyCapacity: math.unit(2, "people"),
  64080. name: "Front (Erect)",
  64081. image: {
  64082. source: "./media/characters/bylur/front-erect.svg",
  64083. extra: 419/343,
  64084. bottom: 3/422
  64085. }
  64086. },
  64087. back: {
  64088. height: math.unit(10, "feet"),
  64089. weight: math.unit(1000, "kg"),
  64090. preyCapacity: math.unit(2, "people"),
  64091. name: "Back",
  64092. image: {
  64093. source: "./media/characters/bylur/back.svg",
  64094. extra: 392/315,
  64095. bottom: 3/395
  64096. }
  64097. },
  64098. maw: {
  64099. height: math.unit(3.65, "feet"),
  64100. name: "Maw",
  64101. image: {
  64102. source: "./media/characters/bylur/maw.svg"
  64103. }
  64104. },
  64105. },
  64106. [
  64107. {
  64108. name: "Slightly Human Sized",
  64109. height: math.unit(10, "feet")
  64110. },
  64111. {
  64112. name: "Normal",
  64113. height: math.unit(35, "feet"),
  64114. default: true
  64115. },
  64116. {
  64117. name: "Macro",
  64118. height: math.unit(130, "feet")
  64119. },
  64120. ]
  64121. ))
  64122. characterMakers.push(() => makeCharacter(
  64123. { name: "Oarven", species: ["earless-monitor-lizard"], tags: ["anthro"] },
  64124. {
  64125. frontNsfw: {
  64126. height: math.unit(6, "feet"),
  64127. weight: math.unit(250, "lb"),
  64128. preyCapacity: math.unit(0.05, "people"),
  64129. name: "Front (NSFW)",
  64130. image: {
  64131. source: "./media/characters/oarven/front-nsfw.svg",
  64132. extra: 1795/1783,
  64133. bottom: 142/1937
  64134. }
  64135. },
  64136. frontSfw: {
  64137. height: math.unit(6, "feet"),
  64138. weight: math.unit(250, "lb"),
  64139. preyCapacity: math.unit(0.05, "people"),
  64140. name: "Front (SFW)",
  64141. image: {
  64142. source: "./media/characters/oarven/front-sfw.svg",
  64143. extra: 1795/1783,
  64144. bottom: 142/1937
  64145. }
  64146. },
  64147. },
  64148. [
  64149. {
  64150. name: "Megamacro",
  64151. height: math.unit(5, "miles"),
  64152. default: true
  64153. },
  64154. {
  64155. name: "Maximum Height",
  64156. height: math.unit(5, "AUs")
  64157. },
  64158. ]
  64159. ))
  64160. characterMakers.push(() => makeCharacter(
  64161. { name: "Solidarity", species: ["aerosynth"], tags: ["feral"] },
  64162. {
  64163. side: {
  64164. height: math.unit(1065, "meters"),
  64165. weight: math.unit(1e12, "kg"),
  64166. volume: math.unit(3265000000, "m^3"),
  64167. name: "Side",
  64168. image: {
  64169. source: "./media/characters/solidarity/side.svg"
  64170. }
  64171. },
  64172. front: {
  64173. height: math.unit(1065, "meters"),
  64174. weight: math.unit(3265000000000, "kg"),
  64175. volume: math.unit(3265000000, "m^3"),
  64176. name: "Front",
  64177. image: {
  64178. source: "./media/characters/solidarity/front.svg"
  64179. }
  64180. },
  64181. top: {
  64182. height: math.unit(5823, "meters"),
  64183. weight: math.unit(3265000000000, "kg"),
  64184. volume: math.unit(3265000000, "m^3"),
  64185. name: "Top",
  64186. image: {
  64187. source: "./media/characters/solidarity/top.svg"
  64188. }
  64189. },
  64190. },
  64191. [
  64192. {
  64193. name: "Normal",
  64194. height: math.unit(1065, "meters"),
  64195. default: true
  64196. },
  64197. ]
  64198. ))
  64199. characterMakers.push(() => makeCharacter(
  64200. { name: "Ani'szi", species: ["phenx"], tags: ["taur"] },
  64201. {
  64202. side: {
  64203. height: math.unit(18 + 4/12, "feet"),
  64204. weight: math.unit(13000, "kg"),
  64205. name: "Side",
  64206. image: {
  64207. source: "./media/characters/ani'szi/side.svg",
  64208. extra: 468/459,
  64209. bottom: 60/528
  64210. }
  64211. },
  64212. head: {
  64213. height: math.unit(4.8, "feet"),
  64214. name: "Head",
  64215. image: {
  64216. source: "./media/characters/ani'szi/head.svg"
  64217. }
  64218. },
  64219. jaws: {
  64220. height: math.unit(2.25, "feet"),
  64221. name: "Jaws",
  64222. image: {
  64223. source: "./media/characters/ani'szi/jaws.svg"
  64224. }
  64225. },
  64226. bust: {
  64227. height: math.unit(8.9, "feet"),
  64228. name: "Bust",
  64229. image: {
  64230. source: "./media/characters/ani'szi/bust.svg"
  64231. }
  64232. },
  64233. back: {
  64234. height: math.unit(13.53, "feet"),
  64235. name: "Back",
  64236. image: {
  64237. source: "./media/characters/ani'szi/back.svg"
  64238. }
  64239. },
  64240. eye: {
  64241. height: math.unit(0.44, "feet"),
  64242. name: "Eye",
  64243. image: {
  64244. source: "./media/characters/ani'szi/eye.svg"
  64245. }
  64246. },
  64247. },
  64248. [
  64249. {
  64250. name: "Normal",
  64251. height: math.unit(18 + 4/12, "feet"),
  64252. default: true
  64253. },
  64254. ]
  64255. ))
  64256. characterMakers.push(() => makeCharacter(
  64257. { name: "Rain", species: ["driger"], tags: ["anthro"] },
  64258. {
  64259. front: {
  64260. height: math.unit(7 + 6/12, "feet"),
  64261. weight: math.unit(300, "lb"),
  64262. name: "Front",
  64263. image: {
  64264. source: "./media/characters/rain/front.svg",
  64265. extra: 2955/2698,
  64266. bottom: 235/3190
  64267. }
  64268. },
  64269. dressed: {
  64270. height: math.unit(7 + 6/12, "feet"),
  64271. weight: math.unit(300, "lb"),
  64272. name: "Dressed",
  64273. image: {
  64274. source: "./media/characters/rain/dressed.svg",
  64275. extra: 2783/2572,
  64276. bottom: 430/3213
  64277. }
  64278. },
  64279. },
  64280. [
  64281. {
  64282. name: "Normal",
  64283. height: math.unit(7 + 6/12, "feet"),
  64284. default: true
  64285. },
  64286. {
  64287. name: "Macro",
  64288. height: math.unit(200, "feet")
  64289. },
  64290. {
  64291. name: "Macro+",
  64292. height: math.unit(500, "feet")
  64293. },
  64294. {
  64295. name: "Megamacro",
  64296. height: math.unit(5, "miles")
  64297. },
  64298. ]
  64299. ))
  64300. characterMakers.push(() => makeCharacter(
  64301. { name: "Anise", species: ["gryphon"], tags: ["feral", "taur"] },
  64302. {
  64303. taur_side: {
  64304. height: math.unit(3, "meters"),
  64305. name: "Side",
  64306. image: {
  64307. source: "./media/characters/anise/taur-side.svg",
  64308. extra: 1833/926,
  64309. bottom: 134/1967
  64310. },
  64311. form: "taur",
  64312. default: true
  64313. },
  64314. feral_side: {
  64315. height: math.unit(3, "meters"),
  64316. name: "Side",
  64317. image: {
  64318. source: "./media/characters/anise/feral-side.svg",
  64319. extra: 681/349,
  64320. bottom: 26/707
  64321. },
  64322. form: "feral"
  64323. },
  64324. },
  64325. [
  64326. {
  64327. name: "Normal",
  64328. height: math.unit(3, "meters"),
  64329. default: true,
  64330. allForms: true
  64331. },
  64332. ],
  64333. {
  64334. "taur": {
  64335. name: "Taur",
  64336. default: true
  64337. },
  64338. "feral": {
  64339. name: "Feral",
  64340. },
  64341. }
  64342. ))
  64343. characterMakers.push(() => makeCharacter(
  64344. { name: "Sarina", species: ["red-panda"], tags: ["anthro"] },
  64345. {
  64346. front: {
  64347. height: math.unit(1.9, "meters"),
  64348. weight: math.unit(75, "kg"),
  64349. name: "Front",
  64350. image: {
  64351. source: "./media/characters/sarina/front.svg",
  64352. extra: 1275/1200,
  64353. bottom: 49/1324
  64354. }
  64355. },
  64356. back: {
  64357. height: math.unit(1.9, "meters"),
  64358. weight: math.unit(75, "kg"),
  64359. name: "Back",
  64360. image: {
  64361. source: "./media/characters/sarina/back.svg",
  64362. extra: 1279/1209,
  64363. bottom: 14/1293
  64364. }
  64365. },
  64366. dressed: {
  64367. height: math.unit(1.9, "meters"),
  64368. weight: math.unit(75, "kg"),
  64369. name: "Dressed",
  64370. image: {
  64371. source: "./media/characters/sarina/dressed.svg",
  64372. extra: 1256/1187,
  64373. bottom: 56/1312
  64374. }
  64375. },
  64376. paw: {
  64377. height: math.unit(0.57, "feet"),
  64378. name: "Paw",
  64379. image: {
  64380. source: "./media/characters/sarina/paw.svg"
  64381. }
  64382. },
  64383. toering: {
  64384. height: math.unit(0.27, "feet"),
  64385. name: "Toering",
  64386. image: {
  64387. source: "./media/characters/sarina/toering.svg"
  64388. }
  64389. },
  64390. },
  64391. [
  64392. {
  64393. name: "Incognito",
  64394. height: math.unit(1.9, "meters")
  64395. },
  64396. {
  64397. name: "Home Size",
  64398. height: math.unit(160, "meters"),
  64399. default: true
  64400. },
  64401. {
  64402. name: "Mega",
  64403. height: math.unit(50, "km")
  64404. },
  64405. {
  64406. name: "Small Giga",
  64407. height: math.unit(250, "km")
  64408. },
  64409. {
  64410. name: "Giga (Preferred Size)",
  64411. height: math.unit(3000, "km")
  64412. },
  64413. {
  64414. name: "Terra",
  64415. height: math.unit(40000, "km")
  64416. },
  64417. {
  64418. name: "Terra+",
  64419. height: math.unit(400000, "km")
  64420. },
  64421. {
  64422. name: "Solar",
  64423. height: math.unit(35e6, "km")
  64424. },
  64425. {
  64426. name: "Galactic",
  64427. height: math.unit(648106, "parsecs")
  64428. },
  64429. {
  64430. name: "Universal",
  64431. height: math.unit(7, "universes")
  64432. },
  64433. {
  64434. name: "Universal+",
  64435. height: math.unit(30, "universes")
  64436. },
  64437. ]
  64438. ))
  64439. characterMakers.push(() => makeCharacter(
  64440. { name: "Sifray", species: ["homestuck-troll"], tags: ["anthro"] },
  64441. {
  64442. front: {
  64443. height: math.unit(5 + 6/12, "feet"),
  64444. name: "Front",
  64445. image: {
  64446. source: "./media/characters/sifray/front.svg",
  64447. extra: 722/691,
  64448. bottom: 64/786
  64449. }
  64450. },
  64451. },
  64452. [
  64453. {
  64454. name: "Normal",
  64455. height: math.unit(5 + 6/12, "feet"),
  64456. default: true
  64457. },
  64458. ]
  64459. ))
  64460. characterMakers.push(() => makeCharacter(
  64461. { name: "Spots", species: ["dog"], tags: ["feral"] },
  64462. {
  64463. side: {
  64464. height: math.unit(2.64, "feet"),
  64465. weight: math.unit(100, "lb"),
  64466. preyCapacity: math.unit(3, "people"),
  64467. name: "Side",
  64468. image: {
  64469. source: "./media/characters/spots/side.svg",
  64470. extra: 1859/977,
  64471. bottom: 19/1878
  64472. },
  64473. extraAttributes: {
  64474. "preyPerMinute": {
  64475. name: "Prey Per Minute",
  64476. power: 3,
  64477. type: "volume",
  64478. base: math.unit(6, "people"),
  64479. defaultUnit: "people"
  64480. },
  64481. "preyPerDay": {
  64482. name: "Prey Per Day",
  64483. power: 3,
  64484. type: "volume",
  64485. base: math.unit(6 * 60 * 24, "people"),
  64486. defaultUnit: "people"
  64487. },
  64488. }
  64489. },
  64490. },
  64491. [
  64492. {
  64493. name: "Normal",
  64494. height: math.unit(2.64, "feet"),
  64495. default: true
  64496. },
  64497. ]
  64498. ))
  64499. characterMakers.push(() => makeCharacter(
  64500. { name: "Mona", species: ["caudin"], tags: ["anthro"] },
  64501. {
  64502. front: {
  64503. height: math.unit(29 + 11/12, "feet"),
  64504. weight: math.unit(40, "tons"),
  64505. name: "Front",
  64506. image: {
  64507. source: "./media/characters/mona/front.svg",
  64508. extra: 1257/1116,
  64509. bottom: 34/1291
  64510. }
  64511. },
  64512. },
  64513. [
  64514. {
  64515. name: "Normal",
  64516. height: math.unit(29 + 11/12, "feet"),
  64517. default: true
  64518. },
  64519. ]
  64520. ))
  64521. //characters
  64522. function makeCharacters() {
  64523. const results = [];
  64524. characterMakers.forEach(character => {
  64525. results.push(character());
  64526. });
  64527. return results;
  64528. }