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.
 
 
 

63993 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"]
  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. }
  2351. //species
  2352. function getSpeciesInfo(speciesList) {
  2353. let result = new Set();
  2354. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2355. result.add(entry)
  2356. });
  2357. return Array.from(result);
  2358. };
  2359. function getSpeciesInfoHelper(species) {
  2360. if (!speciesData[species]) {
  2361. console.warn(species + " doesn't exist");
  2362. return [];
  2363. }
  2364. if (speciesData[species].parents) {
  2365. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2366. } else {
  2367. return [species];
  2368. }
  2369. }
  2370. characterMakers.push(() => makeCharacter(
  2371. {
  2372. name: "Fen",
  2373. species: ["crux"],
  2374. description: {
  2375. title: "Bio",
  2376. text: "Very furry. Sheds on everything."
  2377. },
  2378. tags: [
  2379. "anthro",
  2380. "goo"
  2381. ]
  2382. },
  2383. {
  2384. front: {
  2385. height: math.unit(12, "feet"),
  2386. weight: math.unit(2400, "lb"),
  2387. preyCapacity: math.unit(1, "people"),
  2388. name: "Front",
  2389. image: {
  2390. source: "./media/characters/fen/front.svg",
  2391. extra: 1804/1562,
  2392. bottom: 205/2009
  2393. },
  2394. extraAttributes: {
  2395. pawSize: {
  2396. name: "Paw Size",
  2397. power: 2,
  2398. type: "area",
  2399. base: math.unit(0.35, "m^2")
  2400. }
  2401. }
  2402. },
  2403. diving: {
  2404. height: math.unit(4.9, "meters"),
  2405. weight: math.unit(2400, "lb"),
  2406. name: "Diving",
  2407. image: {
  2408. source: "./media/characters/fen/diving.svg"
  2409. }
  2410. },
  2411. sleeby: {
  2412. height: math.unit(3.45, "meters"),
  2413. weight: math.unit(2400, "lb"),
  2414. name: "Sleeby",
  2415. image: {
  2416. source: "./media/characters/fen/sleeby.svg"
  2417. }
  2418. },
  2419. goo: {
  2420. height: math.unit(12, "feet"),
  2421. weight: math.unit(3600, "lb"),
  2422. volume: math.unit(1000, "liters"),
  2423. preyCapacity: math.unit(6, "people"),
  2424. name: "Goo",
  2425. image: {
  2426. source: "./media/characters/fen/goo.svg",
  2427. extra: 1307/1071,
  2428. bottom: 134/1441
  2429. }
  2430. },
  2431. horror: {
  2432. height: math.unit(13.6, "feet"),
  2433. weight: math.unit(2400, "lb"),
  2434. preyCapacity: math.unit(1, "people"),
  2435. name: "Horror",
  2436. image: {
  2437. source: "./media/characters/fen/horror.svg",
  2438. extra: 893/797,
  2439. bottom: 0/893
  2440. }
  2441. },
  2442. gooNsfw: {
  2443. height: math.unit(12, "feet"),
  2444. weight: math.unit(3750, "lb"),
  2445. volume: math.unit(1000, "liters"),
  2446. preyCapacity: math.unit(6, "people"),
  2447. name: "Goo (NSFW)",
  2448. image: {
  2449. source: "./media/characters/fen/goo-nsfw.svg",
  2450. extra: 1875/1734,
  2451. bottom: 122/1997
  2452. }
  2453. },
  2454. maw: {
  2455. height: math.unit(5.03, "feet"),
  2456. name: "Maw",
  2457. image: {
  2458. source: "./media/characters/fen/maw.svg"
  2459. }
  2460. },
  2461. gooCeiling: {
  2462. height: math.unit(6.6, "feet"),
  2463. weight: math.unit(3000, "lb"),
  2464. volume: math.unit(1000, "liters"),
  2465. preyCapacity: math.unit(6, "people"),
  2466. name: "Maw (Goo)",
  2467. image: {
  2468. source: "./media/characters/fen/goo-maw.svg"
  2469. }
  2470. },
  2471. paw: {
  2472. height: math.unit(3.77, "feet"),
  2473. name: "Paw",
  2474. image: {
  2475. source: "./media/characters/fen/paw.svg"
  2476. },
  2477. extraAttributes: {
  2478. "toeSize": {
  2479. name: "Toe Size",
  2480. power: 2,
  2481. type: "area",
  2482. base: math.unit(0.02875, "m^2")
  2483. },
  2484. "pawSize": {
  2485. name: "Paw Size",
  2486. power: 2,
  2487. type: "area",
  2488. base: math.unit(0.378, "m^2")
  2489. },
  2490. }
  2491. },
  2492. tail: {
  2493. height: math.unit(12.1, "feet"),
  2494. name: "Tail",
  2495. image: {
  2496. source: "./media/characters/fen/tail.svg"
  2497. }
  2498. },
  2499. tailFull: {
  2500. height: math.unit(12.1, "feet"),
  2501. name: "Full Tail",
  2502. image: {
  2503. source: "./media/characters/fen/tail-full.svg"
  2504. }
  2505. },
  2506. back: {
  2507. height: math.unit(12, "feet"),
  2508. weight: math.unit(2400, "lb"),
  2509. name: "Back",
  2510. image: {
  2511. source: "./media/characters/fen/back.svg",
  2512. },
  2513. info: {
  2514. description: {
  2515. mode: "append",
  2516. text: "\n\nHe is not currently looking at you."
  2517. }
  2518. }
  2519. },
  2520. full: {
  2521. height: math.unit(1.85, "meter"),
  2522. weight: math.unit(3200, "lb"),
  2523. preyCapacity: math.unit(3, "people"),
  2524. name: "Full",
  2525. image: {
  2526. source: "./media/characters/fen/full.svg",
  2527. extra: 1133/859,
  2528. bottom: 145/1278
  2529. },
  2530. info: {
  2531. description: {
  2532. mode: "append",
  2533. text: "\n\nMunch."
  2534. }
  2535. }
  2536. },
  2537. gooLounging: {
  2538. height: math.unit(4.53, "feet"),
  2539. weight: math.unit(3000, "lb"),
  2540. preyCapacity: math.unit(6, "people"),
  2541. name: "Goo (Lounging)",
  2542. image: {
  2543. source: "./media/characters/fen/goo-lounging.svg",
  2544. bottom: 116 / 613
  2545. }
  2546. },
  2547. lounging: {
  2548. height: math.unit(10.52, "feet"),
  2549. weight: math.unit(2400, "lb"),
  2550. name: "Lounging",
  2551. image: {
  2552. source: "./media/characters/fen/lounging.svg"
  2553. }
  2554. },
  2555. },
  2556. [
  2557. {
  2558. name: "Small",
  2559. height: math.unit(2.2428, "meter")
  2560. },
  2561. {
  2562. name: "Normal",
  2563. height: math.unit(12, "feet"),
  2564. default: true,
  2565. },
  2566. {
  2567. name: "Big",
  2568. height: math.unit(20, "feet")
  2569. },
  2570. {
  2571. name: "Minimacro",
  2572. height: math.unit(40, "feet"),
  2573. info: {
  2574. description: {
  2575. mode: "append",
  2576. text: "\n\nTOO DAMN BIG"
  2577. }
  2578. }
  2579. },
  2580. {
  2581. name: "Macro",
  2582. height: math.unit(100, "feet"),
  2583. info: {
  2584. description: {
  2585. mode: "append",
  2586. text: "\n\nTOO DAMN BIG"
  2587. }
  2588. }
  2589. },
  2590. {
  2591. name: "Megamacro",
  2592. height: math.unit(2, "miles")
  2593. },
  2594. {
  2595. name: "Gigamacro",
  2596. height: math.unit(10, "earths")
  2597. },
  2598. ]
  2599. ))
  2600. characterMakers.push(() => makeCharacter(
  2601. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2602. {
  2603. front: {
  2604. height: math.unit(183, "cm"),
  2605. weight: math.unit(80, "kg"),
  2606. name: "Front",
  2607. image: {
  2608. source: "./media/characters/sofia-fluttertail/front.svg",
  2609. bottom: 0.01,
  2610. extra: 2154 / 2081
  2611. }
  2612. },
  2613. frontAlt: {
  2614. height: math.unit(183, "cm"),
  2615. weight: math.unit(80, "kg"),
  2616. name: "Front (alt)",
  2617. image: {
  2618. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2619. }
  2620. },
  2621. back: {
  2622. height: math.unit(183, "cm"),
  2623. weight: math.unit(80, "kg"),
  2624. name: "Back",
  2625. image: {
  2626. source: "./media/characters/sofia-fluttertail/back.svg"
  2627. }
  2628. },
  2629. kneeling: {
  2630. height: math.unit(125, "cm"),
  2631. weight: math.unit(80, "kg"),
  2632. name: "Kneeling",
  2633. image: {
  2634. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2635. extra: 1033 / 977,
  2636. bottom: 23.7 / 1057
  2637. }
  2638. },
  2639. maw: {
  2640. height: math.unit(183 / 5, "cm"),
  2641. name: "Maw",
  2642. image: {
  2643. source: "./media/characters/sofia-fluttertail/maw.svg"
  2644. }
  2645. },
  2646. mawcloseup: {
  2647. height: math.unit(183 / 5 * 0.41, "cm"),
  2648. name: "Maw (Closeup)",
  2649. image: {
  2650. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2651. }
  2652. },
  2653. paws: {
  2654. height: math.unit(1.17, "feet"),
  2655. name: "Paws",
  2656. image: {
  2657. source: "./media/characters/sofia-fluttertail/paws.svg",
  2658. extra: 851 / 851,
  2659. bottom: 17 / 868
  2660. }
  2661. },
  2662. },
  2663. [
  2664. {
  2665. name: "Normal",
  2666. height: math.unit(1.83, "meter")
  2667. },
  2668. {
  2669. name: "Size Thief",
  2670. height: math.unit(18, "feet")
  2671. },
  2672. {
  2673. name: "50 Foot Collie",
  2674. height: math.unit(50, "feet")
  2675. },
  2676. {
  2677. name: "Macro",
  2678. height: math.unit(96, "feet"),
  2679. default: true
  2680. },
  2681. {
  2682. name: "Megamerger",
  2683. height: math.unit(650, "feet")
  2684. },
  2685. ]
  2686. ))
  2687. characterMakers.push(() => makeCharacter(
  2688. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2689. {
  2690. front: {
  2691. height: math.unit(7, "feet"),
  2692. weight: math.unit(100, "kg"),
  2693. name: "Front",
  2694. image: {
  2695. source: "./media/characters/march/front.svg",
  2696. extra: 1992/1851,
  2697. bottom: 39/2031
  2698. }
  2699. },
  2700. foot: {
  2701. height: math.unit(0.9, "feet"),
  2702. name: "Foot",
  2703. image: {
  2704. source: "./media/characters/march/foot.svg"
  2705. }
  2706. },
  2707. },
  2708. [
  2709. {
  2710. name: "Normal",
  2711. height: math.unit(7.9, "feet")
  2712. },
  2713. {
  2714. name: "Macro",
  2715. height: math.unit(220, "meters")
  2716. },
  2717. {
  2718. name: "Megamacro",
  2719. height: math.unit(2.98, "km"),
  2720. default: true
  2721. },
  2722. {
  2723. name: "Gigamacro",
  2724. height: math.unit(15963, "km")
  2725. },
  2726. {
  2727. name: "Teramacro",
  2728. height: math.unit(2980000000, "km")
  2729. },
  2730. {
  2731. name: "Examacro",
  2732. height: math.unit(250, "parsecs")
  2733. },
  2734. ]
  2735. ))
  2736. characterMakers.push(() => makeCharacter(
  2737. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2738. {
  2739. front: {
  2740. height: math.unit(6, "feet"),
  2741. weight: math.unit(60, "kg"),
  2742. name: "Front",
  2743. image: {
  2744. source: "./media/characters/noir/front.svg",
  2745. extra: 1,
  2746. bottom: 0.032
  2747. }
  2748. },
  2749. },
  2750. [
  2751. {
  2752. name: "Normal",
  2753. height: math.unit(6.6, "feet")
  2754. },
  2755. {
  2756. name: "Macro",
  2757. height: math.unit(500, "feet")
  2758. },
  2759. {
  2760. name: "Megamacro",
  2761. height: math.unit(2.5, "km"),
  2762. default: true
  2763. },
  2764. {
  2765. name: "Gigamacro",
  2766. height: math.unit(22500, "km")
  2767. },
  2768. {
  2769. name: "Teramacro",
  2770. height: math.unit(2500000000, "km")
  2771. },
  2772. {
  2773. name: "Examacro",
  2774. height: math.unit(200, "parsecs")
  2775. },
  2776. ]
  2777. ))
  2778. characterMakers.push(() => makeCharacter(
  2779. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2780. {
  2781. front: {
  2782. height: math.unit(7, "feet"),
  2783. weight: math.unit(100, "kg"),
  2784. name: "Front",
  2785. image: {
  2786. source: "./media/characters/okuri/front.svg",
  2787. extra: 739/665,
  2788. bottom: 39/778
  2789. }
  2790. },
  2791. back: {
  2792. height: math.unit(7, "feet"),
  2793. weight: math.unit(100, "kg"),
  2794. name: "Back",
  2795. image: {
  2796. source: "./media/characters/okuri/back.svg",
  2797. extra: 734/653,
  2798. bottom: 13/747
  2799. }
  2800. },
  2801. sitting: {
  2802. height: math.unit(2.95, "feet"),
  2803. weight: math.unit(100, "kg"),
  2804. name: "Sitting",
  2805. image: {
  2806. source: "./media/characters/okuri/sitting.svg",
  2807. extra: 370/318,
  2808. bottom: 99/469
  2809. }
  2810. },
  2811. },
  2812. [
  2813. {
  2814. name: "Smallest",
  2815. height: math.unit(5 + 2/12, "feet")
  2816. },
  2817. {
  2818. name: "Smaller",
  2819. height: math.unit(300, "feet")
  2820. },
  2821. {
  2822. name: "Small",
  2823. height: math.unit(1000, "feet")
  2824. },
  2825. {
  2826. name: "Macro",
  2827. height: math.unit(1, "mile")
  2828. },
  2829. {
  2830. name: "Mega Macro (Small)",
  2831. height: math.unit(20, "km")
  2832. },
  2833. {
  2834. name: "Mega Macro (Large)",
  2835. height: math.unit(600, "km")
  2836. },
  2837. {
  2838. name: "Giga Macro",
  2839. height: math.unit(10000, "km")
  2840. },
  2841. {
  2842. name: "Normal",
  2843. height: math.unit(577560, "km"),
  2844. default: true
  2845. },
  2846. {
  2847. name: "Large",
  2848. height: math.unit(4, "galaxies")
  2849. },
  2850. {
  2851. name: "Largest",
  2852. height: math.unit(15, "multiverses")
  2853. },
  2854. ]
  2855. ))
  2856. characterMakers.push(() => makeCharacter(
  2857. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2858. {
  2859. front: {
  2860. height: math.unit(7, "feet"),
  2861. weight: math.unit(100, "kg"),
  2862. name: "Front",
  2863. image: {
  2864. source: "./media/characters/manny/front.svg",
  2865. extra: 1,
  2866. bottom: 0.06
  2867. }
  2868. },
  2869. back: {
  2870. height: math.unit(7, "feet"),
  2871. weight: math.unit(100, "kg"),
  2872. name: "Back",
  2873. image: {
  2874. source: "./media/characters/manny/back.svg",
  2875. extra: 1,
  2876. bottom: 0.014
  2877. }
  2878. },
  2879. },
  2880. [
  2881. {
  2882. name: "Normal",
  2883. height: math.unit(7, "feet"),
  2884. },
  2885. {
  2886. name: "Macro",
  2887. height: math.unit(78, "feet"),
  2888. default: true
  2889. },
  2890. {
  2891. name: "Macro+",
  2892. height: math.unit(300, "meters")
  2893. },
  2894. {
  2895. name: "Macro++",
  2896. height: math.unit(2400, "meters")
  2897. },
  2898. {
  2899. name: "Megamacro",
  2900. height: math.unit(5167, "meters")
  2901. },
  2902. {
  2903. name: "Gigamacro",
  2904. height: math.unit(41769, "miles")
  2905. },
  2906. ]
  2907. ))
  2908. characterMakers.push(() => makeCharacter(
  2909. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2910. {
  2911. front: {
  2912. height: math.unit(7, "feet"),
  2913. weight: math.unit(100, "kg"),
  2914. name: "Front",
  2915. image: {
  2916. source: "./media/characters/adake/front-1.svg"
  2917. }
  2918. },
  2919. frontAlt: {
  2920. height: math.unit(7, "feet"),
  2921. weight: math.unit(100, "kg"),
  2922. name: "Front (Alt)",
  2923. image: {
  2924. source: "./media/characters/adake/front-2.svg",
  2925. extra: 1,
  2926. bottom: 0.01
  2927. }
  2928. },
  2929. back: {
  2930. height: math.unit(7, "feet"),
  2931. weight: math.unit(100, "kg"),
  2932. name: "Back",
  2933. image: {
  2934. source: "./media/characters/adake/back.svg",
  2935. }
  2936. },
  2937. kneel: {
  2938. height: math.unit(5.385, "feet"),
  2939. weight: math.unit(100, "kg"),
  2940. name: "Kneeling",
  2941. image: {
  2942. source: "./media/characters/adake/kneel.svg",
  2943. bottom: 0.052
  2944. }
  2945. },
  2946. },
  2947. [
  2948. {
  2949. name: "Normal",
  2950. height: math.unit(7, "feet"),
  2951. },
  2952. {
  2953. name: "Macro",
  2954. height: math.unit(78, "feet"),
  2955. default: true
  2956. },
  2957. {
  2958. name: "Macro+",
  2959. height: math.unit(300, "meters")
  2960. },
  2961. {
  2962. name: "Macro++",
  2963. height: math.unit(2400, "meters")
  2964. },
  2965. {
  2966. name: "Megamacro",
  2967. height: math.unit(5167, "meters")
  2968. },
  2969. {
  2970. name: "Gigamacro",
  2971. height: math.unit(41769, "miles")
  2972. },
  2973. ]
  2974. ))
  2975. characterMakers.push(() => makeCharacter(
  2976. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2977. {
  2978. front: {
  2979. height: math.unit(1.65, "meters"),
  2980. weight: math.unit(50, "kg"),
  2981. name: "Front",
  2982. image: {
  2983. source: "./media/characters/elijah/front.svg",
  2984. extra: 858 / 830,
  2985. bottom: 95.5 / 953.8559
  2986. }
  2987. },
  2988. back: {
  2989. height: math.unit(1.65, "meters"),
  2990. weight: math.unit(50, "kg"),
  2991. name: "Back",
  2992. image: {
  2993. source: "./media/characters/elijah/back.svg",
  2994. extra: 895 / 850,
  2995. bottom: 5.3 / 897.956
  2996. }
  2997. },
  2998. frontNsfw: {
  2999. height: math.unit(1.65, "meters"),
  3000. weight: math.unit(50, "kg"),
  3001. name: "Front (NSFW)",
  3002. image: {
  3003. source: "./media/characters/elijah/front-nsfw.svg",
  3004. extra: 858 / 830,
  3005. bottom: 95.5 / 953.8559
  3006. }
  3007. },
  3008. backNsfw: {
  3009. height: math.unit(1.65, "meters"),
  3010. weight: math.unit(50, "kg"),
  3011. name: "Back (NSFW)",
  3012. image: {
  3013. source: "./media/characters/elijah/back-nsfw.svg",
  3014. extra: 895 / 850,
  3015. bottom: 5.3 / 897.956
  3016. }
  3017. },
  3018. dick: {
  3019. height: math.unit(1, "feet"),
  3020. name: "Dick",
  3021. image: {
  3022. source: "./media/characters/elijah/dick.svg"
  3023. }
  3024. },
  3025. beakOpen: {
  3026. height: math.unit(1.25, "feet"),
  3027. name: "Beak (Open)",
  3028. image: {
  3029. source: "./media/characters/elijah/beak-open.svg"
  3030. }
  3031. },
  3032. beakShut: {
  3033. height: math.unit(1.25, "feet"),
  3034. name: "Beak (Shut)",
  3035. image: {
  3036. source: "./media/characters/elijah/beak-shut.svg"
  3037. }
  3038. },
  3039. footFlexing: {
  3040. height: math.unit(1.61, "feet"),
  3041. name: "Foot (Flexing)",
  3042. image: {
  3043. source: "./media/characters/elijah/foot-flexing.svg"
  3044. }
  3045. },
  3046. footStepping: {
  3047. height: math.unit(1.44, "feet"),
  3048. name: "Foot (Stepping)",
  3049. image: {
  3050. source: "./media/characters/elijah/foot-stepping.svg"
  3051. }
  3052. },
  3053. plantigradeLeg: {
  3054. height: math.unit(2.34, "feet"),
  3055. name: "Plantigrade Leg",
  3056. image: {
  3057. source: "./media/characters/elijah/plantigrade-leg.svg"
  3058. }
  3059. },
  3060. plantigradeFootLeft: {
  3061. height: math.unit(0.9, "feet"),
  3062. name: "Plantigrade Foot (Left)",
  3063. image: {
  3064. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3065. }
  3066. },
  3067. plantigradeFootRight: {
  3068. height: math.unit(0.9, "feet"),
  3069. name: "Plantigrade Foot (Right)",
  3070. image: {
  3071. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3072. }
  3073. },
  3074. },
  3075. [
  3076. {
  3077. name: "Normal",
  3078. height: math.unit(1.65, "meters")
  3079. },
  3080. {
  3081. name: "Macro",
  3082. height: math.unit(55, "meters"),
  3083. default: true
  3084. },
  3085. {
  3086. name: "Macro+",
  3087. height: math.unit(105, "meters")
  3088. },
  3089. ]
  3090. ))
  3091. characterMakers.push(() => makeCharacter(
  3092. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3093. {
  3094. front: {
  3095. height: math.unit(7 + 2/12, "feet"),
  3096. weight: math.unit(320, "kg"),
  3097. preyCapacity: math.unit(0.276549935, "people"),
  3098. name: "Front",
  3099. image: {
  3100. source: "./media/characters/rai/front.svg",
  3101. extra: 1802/1696,
  3102. bottom: 68/1870
  3103. },
  3104. form: "anthro",
  3105. default: true
  3106. },
  3107. frontDressed: {
  3108. height: math.unit(7 + 2/12, "feet"),
  3109. weight: math.unit(320, "kg"),
  3110. preyCapacity: math.unit(0.276549935, "people"),
  3111. name: "Front (Dressed)",
  3112. image: {
  3113. source: "./media/characters/rai/front-dressed.svg",
  3114. extra: 1802/1696,
  3115. bottom: 68/1870
  3116. },
  3117. form: "anthro"
  3118. },
  3119. side: {
  3120. height: math.unit(7 + 2/12, "feet"),
  3121. weight: math.unit(320, "kg"),
  3122. preyCapacity: math.unit(0.276549935, "people"),
  3123. name: "Side",
  3124. image: {
  3125. source: "./media/characters/rai/side.svg",
  3126. extra: 1789/1710,
  3127. bottom: 115/1904
  3128. },
  3129. form: "anthro"
  3130. },
  3131. back: {
  3132. height: math.unit(7 + 2/12, "feet"),
  3133. weight: math.unit(320, "kg"),
  3134. preyCapacity: math.unit(0.276549935, "people"),
  3135. name: "Back",
  3136. image: {
  3137. source: "./media/characters/rai/back.svg",
  3138. extra: 1770/1707,
  3139. bottom: 28/1798
  3140. },
  3141. form: "anthro"
  3142. },
  3143. feral: {
  3144. height: math.unit(9.5, "feet"),
  3145. weight: math.unit(640, "kg"),
  3146. preyCapacity: math.unit(4, "people"),
  3147. name: "Feral",
  3148. image: {
  3149. source: "./media/characters/rai/feral.svg",
  3150. extra: 945/553,
  3151. bottom: 176/1121
  3152. },
  3153. form: "feral",
  3154. default: true
  3155. },
  3156. dragon: {
  3157. height: math.unit(23, "feet"),
  3158. weight: math.unit(50000, "lb"),
  3159. name: "Dragon",
  3160. image: {
  3161. source: "./media/characters/rai/dragon.svg",
  3162. extra: 2498 / 2030,
  3163. bottom: 85.2 / 2584
  3164. },
  3165. form: "dragon",
  3166. default: true
  3167. },
  3168. maw: {
  3169. height: math.unit(1.69, "feet"),
  3170. name: "Maw",
  3171. image: {
  3172. source: "./media/characters/rai/maw.svg"
  3173. },
  3174. form: "anthro"
  3175. },
  3176. },
  3177. [
  3178. {
  3179. name: "Normal",
  3180. height: math.unit(7 + 2/12, "feet"),
  3181. form: "anthro"
  3182. },
  3183. {
  3184. name: "Big",
  3185. height: math.unit(11, "feet"),
  3186. form: "anthro"
  3187. },
  3188. {
  3189. name: "Minimacro",
  3190. height: math.unit(77, "feet"),
  3191. form: "anthro"
  3192. },
  3193. {
  3194. name: "Macro",
  3195. height: math.unit(302, "feet"),
  3196. default: true,
  3197. form: "anthro"
  3198. },
  3199. {
  3200. name: "Normal",
  3201. height: math.unit(9.5, "feet"),
  3202. form: "feral",
  3203. default: true
  3204. },
  3205. {
  3206. name: "Normal",
  3207. height: math.unit(23, "feet"),
  3208. form: "dragon",
  3209. default: true
  3210. }
  3211. ],
  3212. {
  3213. "anthro": {
  3214. name: "Anthro",
  3215. default: true
  3216. },
  3217. "feral": {
  3218. name: "Feral",
  3219. },
  3220. "dragon": {
  3221. name: "Dragon",
  3222. },
  3223. }
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3227. {
  3228. frontDressed: {
  3229. height: math.unit(216, "feet"),
  3230. weight: math.unit(7000000, "lb"),
  3231. preyCapacity: math.unit(1321, "people"),
  3232. name: "Front (Dressed)",
  3233. image: {
  3234. source: "./media/characters/jazzy/front-dressed.svg",
  3235. extra: 2738 / 2651,
  3236. bottom: 41.8 / 2786
  3237. }
  3238. },
  3239. backDressed: {
  3240. height: math.unit(216, "feet"),
  3241. weight: math.unit(7000000, "lb"),
  3242. preyCapacity: math.unit(1321, "people"),
  3243. name: "Back (Dressed)",
  3244. image: {
  3245. source: "./media/characters/jazzy/back-dressed.svg",
  3246. extra: 2775 / 2673,
  3247. bottom: 36.8 / 2817
  3248. }
  3249. },
  3250. front: {
  3251. height: math.unit(216, "feet"),
  3252. weight: math.unit(7000000, "lb"),
  3253. preyCapacity: math.unit(1321, "people"),
  3254. name: "Front",
  3255. image: {
  3256. source: "./media/characters/jazzy/front.svg",
  3257. extra: 2738 / 2651,
  3258. bottom: 41.8 / 2786
  3259. }
  3260. },
  3261. back: {
  3262. height: math.unit(216, "feet"),
  3263. weight: math.unit(7000000, "lb"),
  3264. preyCapacity: math.unit(1321, "people"),
  3265. name: "Back",
  3266. image: {
  3267. source: "./media/characters/jazzy/back.svg",
  3268. extra: 2775 / 2673,
  3269. bottom: 36.8 / 2817
  3270. }
  3271. },
  3272. maw: {
  3273. height: math.unit(20, "feet"),
  3274. name: "Maw",
  3275. image: {
  3276. source: "./media/characters/jazzy/maw.svg"
  3277. }
  3278. },
  3279. paws: {
  3280. height: math.unit(27.5, "feet"),
  3281. name: "Paws",
  3282. image: {
  3283. source: "./media/characters/jazzy/paws.svg"
  3284. }
  3285. },
  3286. eye: {
  3287. height: math.unit(4.4, "feet"),
  3288. name: "Eye",
  3289. image: {
  3290. source: "./media/characters/jazzy/eye.svg"
  3291. }
  3292. },
  3293. droneOffense: {
  3294. height: math.unit(9.5, "inches"),
  3295. name: "Drone (Offense)",
  3296. image: {
  3297. source: "./media/characters/jazzy/drone-offense.svg"
  3298. }
  3299. },
  3300. droneRecon: {
  3301. height: math.unit(9.5, "inches"),
  3302. name: "Drone (Recon)",
  3303. image: {
  3304. source: "./media/characters/jazzy/drone-recon.svg"
  3305. }
  3306. },
  3307. droneDefense: {
  3308. height: math.unit(9.5, "inches"),
  3309. name: "Drone (Defense)",
  3310. image: {
  3311. source: "./media/characters/jazzy/drone-defense.svg"
  3312. }
  3313. },
  3314. },
  3315. [
  3316. {
  3317. name: "Macro",
  3318. height: math.unit(216, "feet"),
  3319. default: true
  3320. },
  3321. ]
  3322. ))
  3323. characterMakers.push(() => makeCharacter(
  3324. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3325. {
  3326. front: {
  3327. height: math.unit(9 + 6/12, "feet"),
  3328. weight: math.unit(700, "lb"),
  3329. name: "Front",
  3330. image: {
  3331. source: "./media/characters/flamm/front.svg",
  3332. extra: 1736/1596,
  3333. bottom: 93/1829
  3334. }
  3335. },
  3336. buff: {
  3337. height: math.unit(9 + 6/12, "feet"),
  3338. weight: math.unit(950, "lb"),
  3339. name: "Buff",
  3340. image: {
  3341. source: "./media/characters/flamm/buff.svg",
  3342. extra: 3018/2874,
  3343. bottom: 221/3239
  3344. }
  3345. },
  3346. },
  3347. [
  3348. {
  3349. name: "Normal",
  3350. height: math.unit(9.5, "feet")
  3351. },
  3352. {
  3353. name: "Macro",
  3354. height: math.unit(200, "feet"),
  3355. default: true
  3356. },
  3357. ]
  3358. ))
  3359. characterMakers.push(() => makeCharacter(
  3360. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3361. {
  3362. front: {
  3363. height: math.unit(5 + 3/12, "feet"),
  3364. weight: math.unit(60, "kg"),
  3365. name: "Front",
  3366. image: {
  3367. source: "./media/characters/zephiro/front.svg",
  3368. extra: 1873/1761,
  3369. bottom: 147/2020
  3370. }
  3371. },
  3372. side: {
  3373. height: math.unit(5 + 3/12, "feet"),
  3374. weight: math.unit(60, "kg"),
  3375. name: "Side",
  3376. image: {
  3377. source: "./media/characters/zephiro/side.svg",
  3378. extra: 1929/1827,
  3379. bottom: 65/1994
  3380. }
  3381. },
  3382. back: {
  3383. height: math.unit(5 + 3/12, "feet"),
  3384. weight: math.unit(60, "kg"),
  3385. name: "Back",
  3386. image: {
  3387. source: "./media/characters/zephiro/back.svg",
  3388. extra: 1926/1816,
  3389. bottom: 41/1967
  3390. }
  3391. },
  3392. hand: {
  3393. height: math.unit(0.68, "feet"),
  3394. name: "Hand",
  3395. image: {
  3396. source: "./media/characters/zephiro/hand.svg"
  3397. }
  3398. },
  3399. paw: {
  3400. height: math.unit(1, "feet"),
  3401. name: "Paw",
  3402. image: {
  3403. source: "./media/characters/zephiro/paw.svg"
  3404. }
  3405. },
  3406. beans: {
  3407. height: math.unit(0.93, "feet"),
  3408. name: "Beans",
  3409. image: {
  3410. source: "./media/characters/zephiro/beans.svg"
  3411. }
  3412. },
  3413. },
  3414. [
  3415. {
  3416. name: "Micro",
  3417. height: math.unit(3, "inches")
  3418. },
  3419. {
  3420. name: "Normal",
  3421. height: math.unit(5 + 3 / 12, "feet"),
  3422. default: true
  3423. },
  3424. {
  3425. name: "Macro",
  3426. height: math.unit(118, "feet")
  3427. },
  3428. ]
  3429. ))
  3430. characterMakers.push(() => makeCharacter(
  3431. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3432. {
  3433. front: {
  3434. height: math.unit(5, "feet"),
  3435. weight: math.unit(90, "kg"),
  3436. preyCapacity: math.unit(14, "people"),
  3437. name: "Front",
  3438. image: {
  3439. source: "./media/characters/fory/front.svg",
  3440. extra: 2862 / 2674,
  3441. bottom: 180 / 3043.8
  3442. },
  3443. form: "weaselbun",
  3444. default: true,
  3445. extraAttributes: {
  3446. "pawSize": {
  3447. name: "Paw Size",
  3448. power: 2,
  3449. type: "area",
  3450. base: math.unit(0.1596, "m^2")
  3451. },
  3452. "pawLength": {
  3453. name: "Paw Length",
  3454. power: 1,
  3455. type: "length",
  3456. base: math.unit(0.7, "m")
  3457. }
  3458. }
  3459. },
  3460. back: {
  3461. height: math.unit(5, "feet"),
  3462. weight: math.unit(90, "kg"),
  3463. preyCapacity: math.unit(14, "people"),
  3464. name: "Back",
  3465. image: {
  3466. source: "./media/characters/fory/back.svg",
  3467. extra: 1790/1672,
  3468. bottom: 84/1874
  3469. },
  3470. form: "weaselbun",
  3471. extraAttributes: {
  3472. "pawSize": {
  3473. name: "Paw Size",
  3474. power: 2,
  3475. type: "area",
  3476. base: math.unit(0.1596, "m^2")
  3477. },
  3478. "pawLength": {
  3479. name: "Paw Length",
  3480. power: 1,
  3481. type: "length",
  3482. base: math.unit(0.7, "m")
  3483. }
  3484. }
  3485. },
  3486. paw: {
  3487. height: math.unit(2.14, "feet"),
  3488. name: "Paw",
  3489. image: {
  3490. source: "./media/characters/fory/paw.svg"
  3491. },
  3492. form: "weaselbun",
  3493. extraAttributes: {
  3494. "pawSize": {
  3495. name: "Paw Size",
  3496. power: 2,
  3497. type: "area",
  3498. base: math.unit(0.1596, "m^2")
  3499. },
  3500. "pawLength": {
  3501. name: "Paw Length",
  3502. power: 1,
  3503. type: "length",
  3504. base: math.unit(0.48, "m")
  3505. }
  3506. }
  3507. },
  3508. bunBack: {
  3509. height: math.unit(3, "feet"),
  3510. weight: math.unit(20, "kg"),
  3511. preyCapacity: math.unit(3, "people"),
  3512. name: "Back",
  3513. image: {
  3514. source: "./media/characters/fory/bun-back.svg",
  3515. extra: 1749/1564,
  3516. bottom: 246/1995
  3517. },
  3518. form: "bun",
  3519. default: true,
  3520. extraAttributes: {
  3521. "pawSize": {
  3522. name: "Paw Size",
  3523. power: 2,
  3524. type: "area",
  3525. base: math.unit(0.072, "m^2")
  3526. },
  3527. "pawLength": {
  3528. name: "Paw Length",
  3529. power: 1,
  3530. type: "length",
  3531. base: math.unit(0.45, "m")
  3532. }
  3533. }
  3534. },
  3535. },
  3536. [
  3537. {
  3538. name: "Normal",
  3539. height: math.unit(5, "feet"),
  3540. form: "weaselbun"
  3541. },
  3542. {
  3543. name: "Macro",
  3544. height: math.unit(50, "feet"),
  3545. default: true,
  3546. form: "weaselbun"
  3547. },
  3548. {
  3549. name: "Megamacro",
  3550. height: math.unit(10, "miles"),
  3551. form: "weaselbun"
  3552. },
  3553. {
  3554. name: "Gigamacro",
  3555. height: math.unit(5, "earths"),
  3556. form: "weaselbun"
  3557. },
  3558. {
  3559. name: "Normal",
  3560. height: math.unit(3, "feet"),
  3561. default: true,
  3562. form: "bun"
  3563. },
  3564. {
  3565. name: "Fun-Size",
  3566. height: math.unit(12, "feet"),
  3567. form: "bun"
  3568. },
  3569. {
  3570. name: "Macro",
  3571. height: math.unit(100, "feet"),
  3572. form: "bun"
  3573. },
  3574. {
  3575. name: "Planetary",
  3576. height: math.unit(3, "earths"),
  3577. form: "bun"
  3578. },
  3579. ],
  3580. {
  3581. "weaselbun": {
  3582. name: "Weaselbun",
  3583. default: true
  3584. },
  3585. "bun": {
  3586. name: "Bun",
  3587. },
  3588. }
  3589. ))
  3590. characterMakers.push(() => makeCharacter(
  3591. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3592. {
  3593. front: {
  3594. height: math.unit(7, "feet"),
  3595. weight: math.unit(90, "kg"),
  3596. name: "Front",
  3597. image: {
  3598. source: "./media/characters/kurrikage/front.svg",
  3599. extra: 1845/1733,
  3600. bottom: 119/1964
  3601. }
  3602. },
  3603. back: {
  3604. height: math.unit(7, "feet"),
  3605. weight: math.unit(90, "kg"),
  3606. name: "Back",
  3607. image: {
  3608. source: "./media/characters/kurrikage/back.svg",
  3609. extra: 1790/1677,
  3610. bottom: 61/1851
  3611. }
  3612. },
  3613. dressed: {
  3614. height: math.unit(7, "feet"),
  3615. weight: math.unit(90, "kg"),
  3616. name: "Dressed",
  3617. image: {
  3618. source: "./media/characters/kurrikage/dressed.svg",
  3619. extra: 1845/1733,
  3620. bottom: 119/1964
  3621. }
  3622. },
  3623. foot: {
  3624. height: math.unit(1.5, "feet"),
  3625. name: "Foot",
  3626. image: {
  3627. source: "./media/characters/kurrikage/foot.svg"
  3628. }
  3629. },
  3630. staff: {
  3631. height: math.unit(6.7, "feet"),
  3632. name: "Staff",
  3633. image: {
  3634. source: "./media/characters/kurrikage/staff.svg"
  3635. }
  3636. },
  3637. peek: {
  3638. height: math.unit(1.05, "feet"),
  3639. name: "Peeking",
  3640. image: {
  3641. source: "./media/characters/kurrikage/peek.svg",
  3642. bottom: 0.08
  3643. }
  3644. },
  3645. },
  3646. [
  3647. {
  3648. name: "Normal",
  3649. height: math.unit(12, "feet"),
  3650. default: true
  3651. },
  3652. {
  3653. name: "Big",
  3654. height: math.unit(20, "feet")
  3655. },
  3656. {
  3657. name: "Macro",
  3658. height: math.unit(500, "feet")
  3659. },
  3660. {
  3661. name: "Megamacro",
  3662. height: math.unit(20, "miles")
  3663. },
  3664. ]
  3665. ))
  3666. characterMakers.push(() => makeCharacter(
  3667. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3668. {
  3669. front: {
  3670. height: math.unit(6, "feet"),
  3671. weight: math.unit(75, "kg"),
  3672. name: "Front",
  3673. image: {
  3674. source: "./media/characters/shingo/front.svg",
  3675. extra: 1900/1825,
  3676. bottom: 82/1982
  3677. }
  3678. },
  3679. side: {
  3680. height: math.unit(6, "feet"),
  3681. weight: math.unit(75, "kg"),
  3682. name: "Side",
  3683. image: {
  3684. source: "./media/characters/shingo/side.svg",
  3685. extra: 1930/1865,
  3686. bottom: 16/1946
  3687. }
  3688. },
  3689. back: {
  3690. height: math.unit(6, "feet"),
  3691. weight: math.unit(75, "kg"),
  3692. name: "Back",
  3693. image: {
  3694. source: "./media/characters/shingo/back.svg",
  3695. extra: 1922/1852,
  3696. bottom: 16/1938
  3697. }
  3698. },
  3699. frontDressed: {
  3700. height: math.unit(6, "feet"),
  3701. weight: math.unit(150, "lb"),
  3702. name: "Front-dressed",
  3703. image: {
  3704. source: "./media/characters/shingo/front-dressed.svg",
  3705. extra: 1900/1825,
  3706. bottom: 82/1982
  3707. }
  3708. },
  3709. paw: {
  3710. height: math.unit(1.29, "feet"),
  3711. name: "Paw",
  3712. image: {
  3713. source: "./media/characters/shingo/paw.svg"
  3714. }
  3715. },
  3716. hand: {
  3717. height: math.unit(1.07, "feet"),
  3718. name: "Hand",
  3719. image: {
  3720. source: "./media/characters/shingo/hand.svg"
  3721. }
  3722. },
  3723. frontAlt: {
  3724. height: math.unit(6, "feet"),
  3725. weight: math.unit(75, "kg"),
  3726. name: "Front (Alt)",
  3727. image: {
  3728. source: "./media/characters/shingo/front-alt.svg",
  3729. extra: 3511 / 3338,
  3730. bottom: 0.005
  3731. }
  3732. },
  3733. frontAlt2: {
  3734. height: math.unit(6, "feet"),
  3735. weight: math.unit(75, "kg"),
  3736. name: "Front (Alt 2)",
  3737. image: {
  3738. source: "./media/characters/shingo/front-alt-2.svg",
  3739. extra: 706/681,
  3740. bottom: 11/717
  3741. }
  3742. },
  3743. pawAlt: {
  3744. height: math.unit(1, "feet"),
  3745. name: "Paw (Alt)",
  3746. image: {
  3747. source: "./media/characters/shingo/paw-alt.svg"
  3748. }
  3749. },
  3750. },
  3751. [
  3752. {
  3753. name: "Micro",
  3754. height: math.unit(4, "inches")
  3755. },
  3756. {
  3757. name: "Normal",
  3758. height: math.unit(6, "feet"),
  3759. default: true
  3760. },
  3761. {
  3762. name: "Macro",
  3763. height: math.unit(108, "feet")
  3764. },
  3765. {
  3766. name: "Macro+",
  3767. height: math.unit(1500, "feet")
  3768. },
  3769. ]
  3770. ))
  3771. characterMakers.push(() => makeCharacter(
  3772. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3773. {
  3774. side: {
  3775. height: math.unit(6, "feet"),
  3776. weight: math.unit(75, "kg"),
  3777. name: "Side",
  3778. image: {
  3779. source: "./media/characters/aigey/side.svg"
  3780. }
  3781. },
  3782. },
  3783. [
  3784. {
  3785. name: "Macro",
  3786. height: math.unit(200, "feet"),
  3787. default: true
  3788. },
  3789. {
  3790. name: "Megamacro",
  3791. height: math.unit(100, "miles")
  3792. },
  3793. ]
  3794. )
  3795. )
  3796. characterMakers.push(() => makeCharacter(
  3797. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3798. {
  3799. front: {
  3800. height: math.unit(5 + 5 / 12, "feet"),
  3801. weight: math.unit(75, "kg"),
  3802. name: "Front",
  3803. image: {
  3804. source: "./media/characters/natasha/front.svg",
  3805. extra: 859 / 824,
  3806. bottom: 23 / 879.6
  3807. }
  3808. },
  3809. frontNsfw: {
  3810. height: math.unit(5 + 5 / 12, "feet"),
  3811. weight: math.unit(75, "kg"),
  3812. name: "Front (NSFW)",
  3813. image: {
  3814. source: "./media/characters/natasha/front-nsfw.svg",
  3815. extra: 859 / 824,
  3816. bottom: 23 / 879.6
  3817. }
  3818. },
  3819. frontErect: {
  3820. height: math.unit(5 + 5 / 12, "feet"),
  3821. weight: math.unit(75, "kg"),
  3822. name: "Front (Erect)",
  3823. image: {
  3824. source: "./media/characters/natasha/front-erect.svg",
  3825. extra: 859 / 824,
  3826. bottom: 23 / 879.6
  3827. }
  3828. },
  3829. back: {
  3830. height: math.unit(5 + 5 / 12, "feet"),
  3831. weight: math.unit(75, "kg"),
  3832. name: "Back",
  3833. image: {
  3834. source: "./media/characters/natasha/back.svg",
  3835. extra: 887.9 / 852.6,
  3836. bottom: 9.7 / 896.4
  3837. }
  3838. },
  3839. backAlt: {
  3840. height: math.unit(5 + 5 / 12, "feet"),
  3841. weight: math.unit(75, "kg"),
  3842. name: "Back (Alt)",
  3843. image: {
  3844. source: "./media/characters/natasha/back-alt.svg",
  3845. extra: 1236.7 / 1192,
  3846. bottom: 22.3 / 1258.2
  3847. }
  3848. },
  3849. dick: {
  3850. height: math.unit(1.772, "feet"),
  3851. name: "Dick",
  3852. image: {
  3853. source: "./media/characters/natasha/dick.svg"
  3854. }
  3855. },
  3856. paw: {
  3857. height: math.unit(0.250, "meters"),
  3858. name: "Paw",
  3859. image: {
  3860. source: "./media/characters/natasha/paw.svg"
  3861. },
  3862. extraAttributes: {
  3863. "toeSize": {
  3864. name: "Toe Size",
  3865. power: 2,
  3866. type: "area",
  3867. base: math.unit(0.0024, "m^2")
  3868. },
  3869. "padSize": {
  3870. name: "Pad Size",
  3871. power: 2,
  3872. type: "area",
  3873. base: math.unit(0.00889, "m^2")
  3874. },
  3875. "pawSize": {
  3876. name: "Paw Size",
  3877. power: 2,
  3878. type: "area",
  3879. base: math.unit(0.023667, "m^2")
  3880. },
  3881. }
  3882. },
  3883. },
  3884. [
  3885. {
  3886. name: "Shortstack",
  3887. height: math.unit(3, "feet"),
  3888. default: true
  3889. },
  3890. {
  3891. name: "Normal",
  3892. height: math.unit(5 + 5 / 12, "feet")
  3893. },
  3894. {
  3895. name: "Large",
  3896. height: math.unit(12, "feet")
  3897. },
  3898. {
  3899. name: "Macro",
  3900. height: math.unit(100, "feet")
  3901. },
  3902. {
  3903. name: "Macro+",
  3904. height: math.unit(260, "feet")
  3905. },
  3906. {
  3907. name: "Macro++",
  3908. height: math.unit(1, "mile")
  3909. },
  3910. ]
  3911. ))
  3912. characterMakers.push(() => makeCharacter(
  3913. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3914. {
  3915. front: {
  3916. height: math.unit(6, "feet"),
  3917. weight: math.unit(75, "kg"),
  3918. name: "Front",
  3919. image: {
  3920. source: "./media/characters/malik/front.svg",
  3921. extra: 1750/1561,
  3922. bottom: 80/1830
  3923. },
  3924. extraAttributes: {
  3925. "toeSize": {
  3926. name: "Toe Size",
  3927. power: 2,
  3928. type: "area",
  3929. base: math.unit(0.0159, "m^2")
  3930. },
  3931. "pawSize": {
  3932. name: "Paw Size",
  3933. power: 2,
  3934. type: "area",
  3935. base: math.unit(0.09834, "m^2")
  3936. },
  3937. }
  3938. },
  3939. side: {
  3940. height: math.unit(6, "feet"),
  3941. weight: math.unit(75, "kg"),
  3942. name: "Side",
  3943. image: {
  3944. source: "./media/characters/malik/side.svg",
  3945. extra: 1802/1685,
  3946. bottom: 42/1844
  3947. },
  3948. extraAttributes: {
  3949. "toeSize": {
  3950. name: "Toe Size",
  3951. power: 2,
  3952. type: "area",
  3953. base: math.unit(0.0159, "m^2")
  3954. },
  3955. "pawSize": {
  3956. name: "Paw Size",
  3957. power: 2,
  3958. type: "area",
  3959. base: math.unit(0.09834, "m^2")
  3960. },
  3961. }
  3962. },
  3963. back: {
  3964. height: math.unit(6, "feet"),
  3965. weight: math.unit(75, "kg"),
  3966. name: "Back",
  3967. image: {
  3968. source: "./media/characters/malik/back.svg",
  3969. extra: 1803/1607,
  3970. bottom: 33/1836
  3971. },
  3972. extraAttributes: {
  3973. "toeSize": {
  3974. name: "Toe Size",
  3975. power: 2,
  3976. type: "area",
  3977. base: math.unit(0.0159, "m^2")
  3978. },
  3979. "pawSize": {
  3980. name: "Paw Size",
  3981. power: 2,
  3982. type: "area",
  3983. base: math.unit(0.09834, "m^2")
  3984. },
  3985. }
  3986. },
  3987. },
  3988. [
  3989. {
  3990. name: "Macro",
  3991. height: math.unit(156, "feet"),
  3992. default: true
  3993. },
  3994. {
  3995. name: "Macro+",
  3996. height: math.unit(1188, "feet")
  3997. },
  3998. ]
  3999. ))
  4000. characterMakers.push(() => makeCharacter(
  4001. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4002. {
  4003. front: {
  4004. height: math.unit(6, "feet"),
  4005. weight: math.unit(75, "kg"),
  4006. name: "Front",
  4007. image: {
  4008. source: "./media/characters/sefer/front.svg",
  4009. extra: 848 / 659,
  4010. bottom: 28.3 / 876.442
  4011. }
  4012. },
  4013. back: {
  4014. height: math.unit(6, "feet"),
  4015. weight: math.unit(75, "kg"),
  4016. name: "Back",
  4017. image: {
  4018. source: "./media/characters/sefer/back.svg",
  4019. extra: 864 / 695,
  4020. bottom: 10 / 871
  4021. }
  4022. },
  4023. frontDressed: {
  4024. height: math.unit(6, "feet"),
  4025. weight: math.unit(75, "kg"),
  4026. name: "Dressed",
  4027. image: {
  4028. source: "./media/characters/sefer/dressed.svg",
  4029. extra: 839 / 653,
  4030. bottom: 37.6 / 878
  4031. }
  4032. },
  4033. },
  4034. [
  4035. {
  4036. name: "Normal",
  4037. height: math.unit(6, "feet"),
  4038. default: true
  4039. },
  4040. {
  4041. name: "Big",
  4042. height: math.unit(8, "meters")
  4043. },
  4044. ]
  4045. ))
  4046. characterMakers.push(() => makeCharacter(
  4047. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4048. {
  4049. body: {
  4050. height: math.unit(2.2428, "meter"),
  4051. weight: math.unit(124.738, "kg"),
  4052. name: "Body",
  4053. image: {
  4054. extra: 1225 / 1050,
  4055. source: "./media/characters/north/front.svg"
  4056. }
  4057. }
  4058. },
  4059. [
  4060. {
  4061. name: "Micro",
  4062. height: math.unit(4, "inches")
  4063. },
  4064. {
  4065. name: "Macro",
  4066. height: math.unit(63, "meters")
  4067. },
  4068. {
  4069. name: "Megamacro",
  4070. height: math.unit(101, "miles"),
  4071. default: true
  4072. }
  4073. ]
  4074. ))
  4075. characterMakers.push(() => makeCharacter(
  4076. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4077. {
  4078. angled: {
  4079. height: math.unit(4, "meter"),
  4080. weight: math.unit(150, "kg"),
  4081. name: "Angled",
  4082. image: {
  4083. source: "./media/characters/talan/angled-sfw.svg",
  4084. bottom: 29 / 3734
  4085. }
  4086. },
  4087. angledNsfw: {
  4088. height: math.unit(4, "meter"),
  4089. weight: math.unit(150, "kg"),
  4090. name: "Angled (NSFW)",
  4091. image: {
  4092. source: "./media/characters/talan/angled-nsfw.svg",
  4093. bottom: 29 / 3734
  4094. }
  4095. },
  4096. frontNsfw: {
  4097. height: math.unit(4, "meter"),
  4098. weight: math.unit(150, "kg"),
  4099. name: "Front (NSFW)",
  4100. image: {
  4101. source: "./media/characters/talan/front-nsfw.svg",
  4102. bottom: 29 / 3734
  4103. }
  4104. },
  4105. sideNsfw: {
  4106. height: math.unit(4, "meter"),
  4107. weight: math.unit(150, "kg"),
  4108. name: "Side (NSFW)",
  4109. image: {
  4110. source: "./media/characters/talan/side-nsfw.svg",
  4111. bottom: 29 / 3734
  4112. }
  4113. },
  4114. back: {
  4115. height: math.unit(4, "meter"),
  4116. weight: math.unit(150, "kg"),
  4117. name: "Back",
  4118. image: {
  4119. source: "./media/characters/talan/back.svg"
  4120. }
  4121. },
  4122. dickBottom: {
  4123. height: math.unit(0.621, "meter"),
  4124. name: "Dick (Bottom)",
  4125. image: {
  4126. source: "./media/characters/talan/dick-bottom.svg"
  4127. }
  4128. },
  4129. dickTop: {
  4130. height: math.unit(0.621, "meter"),
  4131. name: "Dick (Top)",
  4132. image: {
  4133. source: "./media/characters/talan/dick-top.svg"
  4134. }
  4135. },
  4136. dickSide: {
  4137. height: math.unit(0.305, "meter"),
  4138. name: "Dick (Side)",
  4139. image: {
  4140. source: "./media/characters/talan/dick-side.svg"
  4141. }
  4142. },
  4143. dickFront: {
  4144. height: math.unit(0.305, "meter"),
  4145. name: "Dick (Front)",
  4146. image: {
  4147. source: "./media/characters/talan/dick-front.svg"
  4148. }
  4149. },
  4150. },
  4151. [
  4152. {
  4153. name: "Normal",
  4154. height: math.unit(4, "meters")
  4155. },
  4156. {
  4157. name: "Macro",
  4158. height: math.unit(100, "meters")
  4159. },
  4160. {
  4161. name: "Megamacro",
  4162. height: math.unit(2, "miles"),
  4163. default: true
  4164. },
  4165. {
  4166. name: "Gigamacro",
  4167. height: math.unit(5000, "miles")
  4168. },
  4169. {
  4170. name: "Teramacro",
  4171. height: math.unit(100, "parsecs")
  4172. }
  4173. ]
  4174. ))
  4175. characterMakers.push(() => makeCharacter(
  4176. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4177. {
  4178. front: {
  4179. height: math.unit(2, "meter"),
  4180. weight: math.unit(90, "kg"),
  4181. name: "Front",
  4182. image: {
  4183. source: "./media/characters/gael'rathus/front.svg"
  4184. }
  4185. },
  4186. frontAlt: {
  4187. height: math.unit(2, "meter"),
  4188. weight: math.unit(90, "kg"),
  4189. name: "Front (alt)",
  4190. image: {
  4191. source: "./media/characters/gael'rathus/front-alt.svg"
  4192. }
  4193. },
  4194. frontAlt2: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(90, "kg"),
  4197. name: "Front (alt 2)",
  4198. image: {
  4199. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4200. }
  4201. }
  4202. },
  4203. [
  4204. {
  4205. name: "Normal",
  4206. height: math.unit(9, "feet"),
  4207. default: true
  4208. },
  4209. {
  4210. name: "Large",
  4211. height: math.unit(25, "feet")
  4212. },
  4213. {
  4214. name: "Macro",
  4215. height: math.unit(0.25, "miles")
  4216. },
  4217. {
  4218. name: "Megamacro",
  4219. height: math.unit(10, "miles")
  4220. }
  4221. ]
  4222. ))
  4223. characterMakers.push(() => makeCharacter(
  4224. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4225. {
  4226. side: {
  4227. height: math.unit(2, "meter"),
  4228. weight: math.unit(140, "kg"),
  4229. name: "Side",
  4230. image: {
  4231. source: "./media/characters/sosha/side.svg",
  4232. extra: 1170/1006,
  4233. bottom: 94/1264
  4234. }
  4235. },
  4236. maw: {
  4237. height: math.unit(2.87, "feet"),
  4238. name: "Maw",
  4239. image: {
  4240. source: "./media/characters/sosha/maw.svg",
  4241. extra: 966/865,
  4242. bottom: 0/966
  4243. }
  4244. },
  4245. cooch: {
  4246. height: math.unit(5.6, "feet"),
  4247. name: "Cooch",
  4248. image: {
  4249. source: "./media/characters/sosha/cooch.svg"
  4250. }
  4251. },
  4252. },
  4253. [
  4254. {
  4255. name: "Normal",
  4256. height: math.unit(12, "feet"),
  4257. default: true
  4258. }
  4259. ]
  4260. ))
  4261. characterMakers.push(() => makeCharacter(
  4262. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4263. {
  4264. side: {
  4265. height: math.unit(5 + 5 / 12, "feet"),
  4266. weight: math.unit(170, "kg"),
  4267. name: "Side",
  4268. image: {
  4269. source: "./media/characters/runnola/side.svg",
  4270. extra: 741 / 448,
  4271. bottom: 0.05
  4272. }
  4273. },
  4274. },
  4275. [
  4276. {
  4277. name: "Small",
  4278. height: math.unit(3, "feet")
  4279. },
  4280. {
  4281. name: "Normal",
  4282. height: math.unit(5 + 5 / 12, "feet"),
  4283. default: true
  4284. },
  4285. {
  4286. name: "Big",
  4287. height: math.unit(10, "feet")
  4288. },
  4289. ]
  4290. ))
  4291. characterMakers.push(() => makeCharacter(
  4292. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4293. {
  4294. front: {
  4295. height: math.unit(2, "meter"),
  4296. weight: math.unit(50, "kg"),
  4297. name: "Front",
  4298. image: {
  4299. source: "./media/characters/kurribird/front.svg",
  4300. bottom: 0.015
  4301. }
  4302. },
  4303. frontAlt: {
  4304. height: math.unit(1.5, "meter"),
  4305. weight: math.unit(50, "kg"),
  4306. name: "Front (Alt)",
  4307. image: {
  4308. source: "./media/characters/kurribird/front-alt.svg",
  4309. extra: 1.45
  4310. }
  4311. },
  4312. },
  4313. [
  4314. {
  4315. name: "Normal",
  4316. height: math.unit(7, "feet")
  4317. },
  4318. {
  4319. name: "Big",
  4320. height: math.unit(12, "feet"),
  4321. default: true
  4322. },
  4323. {
  4324. name: "Macro",
  4325. height: math.unit(1500, "feet")
  4326. },
  4327. {
  4328. name: "Megamacro",
  4329. height: math.unit(2, "miles")
  4330. }
  4331. ]
  4332. ))
  4333. characterMakers.push(() => makeCharacter(
  4334. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4335. {
  4336. front: {
  4337. height: math.unit(2, "meter"),
  4338. weight: math.unit(80, "kg"),
  4339. name: "Front",
  4340. image: {
  4341. source: "./media/characters/elbial/front.svg",
  4342. extra: 1643 / 1556,
  4343. bottom: 60.2 / 1696
  4344. }
  4345. },
  4346. side: {
  4347. height: math.unit(2, "meter"),
  4348. weight: math.unit(80, "kg"),
  4349. name: "Side",
  4350. image: {
  4351. source: "./media/characters/elbial/side.svg",
  4352. extra: 1601/1528,
  4353. bottom: 97/1698
  4354. }
  4355. },
  4356. back: {
  4357. height: math.unit(2, "meter"),
  4358. weight: math.unit(80, "kg"),
  4359. name: "Back",
  4360. image: {
  4361. source: "./media/characters/elbial/back.svg",
  4362. extra: 1653/1569,
  4363. bottom: 20/1673
  4364. }
  4365. },
  4366. frontDressed: {
  4367. height: math.unit(2, "meter"),
  4368. weight: math.unit(80, "kg"),
  4369. name: "Front (Dressed)",
  4370. image: {
  4371. source: "./media/characters/elbial/front-dressed.svg",
  4372. extra: 1638/1569,
  4373. bottom: 70/1708
  4374. }
  4375. },
  4376. genitals: {
  4377. height: math.unit(2 / 3.367, "meter"),
  4378. name: "Genitals",
  4379. image: {
  4380. source: "./media/characters/elbial/genitals.svg"
  4381. }
  4382. },
  4383. },
  4384. [
  4385. {
  4386. name: "Large",
  4387. height: math.unit(100, "feet")
  4388. },
  4389. {
  4390. name: "Macro",
  4391. height: math.unit(500, "feet"),
  4392. default: true
  4393. },
  4394. {
  4395. name: "Megamacro",
  4396. height: math.unit(10, "miles")
  4397. },
  4398. {
  4399. name: "Gigamacro",
  4400. height: math.unit(25000, "miles")
  4401. },
  4402. {
  4403. name: "Full-Size",
  4404. height: math.unit(8000000, "gigaparsecs")
  4405. }
  4406. ]
  4407. ))
  4408. characterMakers.push(() => makeCharacter(
  4409. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4410. {
  4411. front: {
  4412. height: math.unit(2, "meter"),
  4413. weight: math.unit(60, "kg"),
  4414. name: "Front",
  4415. image: {
  4416. source: "./media/characters/noah/front.svg",
  4417. extra: 1383/1313,
  4418. bottom: 104/1487
  4419. }
  4420. },
  4421. hand: {
  4422. height: math.unit(0.6, "feet"),
  4423. name: "Hand",
  4424. image: {
  4425. source: "./media/characters/noah/hand.svg"
  4426. }
  4427. },
  4428. talons: {
  4429. height: math.unit(1.385, "feet"),
  4430. name: "Talons",
  4431. image: {
  4432. source: "./media/characters/noah/talons.svg"
  4433. }
  4434. },
  4435. beak: {
  4436. height: math.unit(0.43, "feet"),
  4437. name: "Beak",
  4438. image: {
  4439. source: "./media/characters/noah/beak.svg"
  4440. }
  4441. },
  4442. collar: {
  4443. height: math.unit(0.88, "feet"),
  4444. name: "Collar",
  4445. image: {
  4446. source: "./media/characters/noah/collar.svg"
  4447. }
  4448. },
  4449. eyeNarrow: {
  4450. height: math.unit(0.18, "feet"),
  4451. name: "Eye (Narrow)",
  4452. image: {
  4453. source: "./media/characters/noah/eye-narrow.svg"
  4454. }
  4455. },
  4456. eyeNormal: {
  4457. height: math.unit(0.18, "feet"),
  4458. name: "Eye (Normal)",
  4459. image: {
  4460. source: "./media/characters/noah/eye-normal.svg"
  4461. }
  4462. },
  4463. eyeWide: {
  4464. height: math.unit(0.18, "feet"),
  4465. name: "Eye (Wide)",
  4466. image: {
  4467. source: "./media/characters/noah/eye-wide.svg"
  4468. }
  4469. },
  4470. ear: {
  4471. height: math.unit(0.64, "feet"),
  4472. name: "Ear",
  4473. image: {
  4474. source: "./media/characters/noah/ear.svg"
  4475. }
  4476. },
  4477. },
  4478. [
  4479. {
  4480. name: "Large",
  4481. height: math.unit(50, "feet")
  4482. },
  4483. {
  4484. name: "Macro",
  4485. height: math.unit(750, "feet"),
  4486. default: true
  4487. },
  4488. {
  4489. name: "Megamacro",
  4490. height: math.unit(50, "miles")
  4491. },
  4492. {
  4493. name: "Gigamacro",
  4494. height: math.unit(100000, "miles")
  4495. },
  4496. {
  4497. name: "Full-Size",
  4498. height: math.unit(3000000000, "miles")
  4499. }
  4500. ]
  4501. ))
  4502. characterMakers.push(() => makeCharacter(
  4503. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4504. {
  4505. front: {
  4506. height: math.unit(2, "meter"),
  4507. weight: math.unit(80, "kg"),
  4508. name: "Front",
  4509. image: {
  4510. source: "./media/characters/natalya/front.svg"
  4511. }
  4512. },
  4513. back: {
  4514. height: math.unit(2, "meter"),
  4515. weight: math.unit(80, "kg"),
  4516. name: "Back",
  4517. image: {
  4518. source: "./media/characters/natalya/back.svg"
  4519. }
  4520. }
  4521. },
  4522. [
  4523. {
  4524. name: "Normal",
  4525. height: math.unit(150, "feet"),
  4526. default: true
  4527. },
  4528. {
  4529. name: "Megamacro",
  4530. height: math.unit(5, "miles")
  4531. },
  4532. {
  4533. name: "Full-Size",
  4534. height: math.unit(600, "kiloparsecs")
  4535. }
  4536. ]
  4537. ))
  4538. characterMakers.push(() => makeCharacter(
  4539. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4540. {
  4541. front: {
  4542. height: math.unit(2, "meter"),
  4543. weight: math.unit(50, "kg"),
  4544. name: "Front",
  4545. image: {
  4546. source: "./media/characters/erestrebah/front.svg",
  4547. extra: 1262/1162,
  4548. bottom: 96/1358
  4549. }
  4550. },
  4551. back: {
  4552. height: math.unit(2, "meter"),
  4553. weight: math.unit(50, "kg"),
  4554. name: "Back",
  4555. image: {
  4556. source: "./media/characters/erestrebah/back.svg",
  4557. extra: 1257/1139,
  4558. bottom: 13/1270
  4559. }
  4560. },
  4561. wing: {
  4562. height: math.unit(2, "meter"),
  4563. weight: math.unit(50, "kg"),
  4564. name: "Wing",
  4565. image: {
  4566. source: "./media/characters/erestrebah/wing.svg",
  4567. extra: 1262/1162,
  4568. bottom: 96/1358
  4569. }
  4570. },
  4571. mouth: {
  4572. height: math.unit(0.39, "feet"),
  4573. name: "Mouth",
  4574. image: {
  4575. source: "./media/characters/erestrebah/mouth.svg"
  4576. }
  4577. }
  4578. },
  4579. [
  4580. {
  4581. name: "Normal",
  4582. height: math.unit(10, "feet")
  4583. },
  4584. {
  4585. name: "Large",
  4586. height: math.unit(50, "feet"),
  4587. default: true
  4588. },
  4589. {
  4590. name: "Macro",
  4591. height: math.unit(300, "feet")
  4592. },
  4593. {
  4594. name: "Macro+",
  4595. height: math.unit(750, "feet")
  4596. },
  4597. {
  4598. name: "Megamacro",
  4599. height: math.unit(3, "miles")
  4600. }
  4601. ]
  4602. ))
  4603. characterMakers.push(() => makeCharacter(
  4604. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4605. {
  4606. front: {
  4607. height: math.unit(2, "meter"),
  4608. weight: math.unit(80, "kg"),
  4609. name: "Front",
  4610. image: {
  4611. source: "./media/characters/jennifer/front.svg",
  4612. bottom: 0.11,
  4613. extra: 1.16
  4614. }
  4615. },
  4616. frontAlt: {
  4617. height: math.unit(2, "meter"),
  4618. weight: math.unit(80, "kg"),
  4619. name: "Front (Alt)",
  4620. image: {
  4621. source: "./media/characters/jennifer/front-alt.svg"
  4622. }
  4623. }
  4624. },
  4625. [
  4626. {
  4627. name: "Canon Height",
  4628. height: math.unit(120, "feet"),
  4629. default: true
  4630. },
  4631. {
  4632. name: "Macro+",
  4633. height: math.unit(300, "feet")
  4634. },
  4635. {
  4636. name: "Megamacro",
  4637. height: math.unit(20000, "feet")
  4638. }
  4639. ]
  4640. ))
  4641. characterMakers.push(() => makeCharacter(
  4642. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4643. {
  4644. front: {
  4645. height: math.unit(2, "meter"),
  4646. weight: math.unit(50, "kg"),
  4647. name: "Front",
  4648. image: {
  4649. source: "./media/characters/kalista/front.svg",
  4650. extra: 1314/1145,
  4651. bottom: 101/1415
  4652. }
  4653. },
  4654. back: {
  4655. height: math.unit(2, "meter"),
  4656. weight: math.unit(50, "kg"),
  4657. name: "Back",
  4658. image: {
  4659. source: "./media/characters/kalista/back.svg",
  4660. extra: 1366 / 1156,
  4661. bottom: 33.9 / 1362.78
  4662. }
  4663. }
  4664. },
  4665. [
  4666. {
  4667. name: "Uncomfortably Small",
  4668. height: math.unit(10, "feet")
  4669. },
  4670. {
  4671. name: "Small",
  4672. height: math.unit(30, "feet")
  4673. },
  4674. {
  4675. name: "Macro",
  4676. height: math.unit(100, "feet"),
  4677. default: true
  4678. },
  4679. {
  4680. name: "Macro+",
  4681. height: math.unit(2000, "feet")
  4682. },
  4683. {
  4684. name: "True Form",
  4685. height: math.unit(8924, "miles")
  4686. }
  4687. ]
  4688. ))
  4689. characterMakers.push(() => makeCharacter(
  4690. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4691. {
  4692. front: {
  4693. height: math.unit(2, "meter"),
  4694. weight: math.unit(120, "kg"),
  4695. name: "Front",
  4696. image: {
  4697. source: "./media/characters/ggv/front.svg"
  4698. }
  4699. },
  4700. side: {
  4701. height: math.unit(2, "meter"),
  4702. weight: math.unit(120, "kg"),
  4703. name: "Side",
  4704. image: {
  4705. source: "./media/characters/ggv/side.svg"
  4706. }
  4707. }
  4708. },
  4709. [
  4710. {
  4711. name: "Extremely Puny",
  4712. height: math.unit(9 + 5 / 12, "feet")
  4713. },
  4714. {
  4715. name: "Horribly Small",
  4716. height: math.unit(47.7, "miles"),
  4717. default: true
  4718. },
  4719. {
  4720. name: "Reasonably Sized",
  4721. height: math.unit(25000, "parsecs")
  4722. },
  4723. {
  4724. name: "Slightly Uncompressed",
  4725. height: math.unit(7.77e31, "parsecs")
  4726. },
  4727. {
  4728. name: "Omniversal",
  4729. height: math.unit(1e300, "meters")
  4730. },
  4731. ]
  4732. ))
  4733. characterMakers.push(() => makeCharacter(
  4734. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4735. {
  4736. front: {
  4737. height: math.unit(2, "meter"),
  4738. weight: math.unit(75, "lb"),
  4739. name: "Front",
  4740. image: {
  4741. source: "./media/characters/napalm/front.svg"
  4742. }
  4743. },
  4744. back: {
  4745. height: math.unit(2, "meter"),
  4746. weight: math.unit(75, "lb"),
  4747. name: "Back",
  4748. image: {
  4749. source: "./media/characters/napalm/back.svg"
  4750. }
  4751. }
  4752. },
  4753. [
  4754. {
  4755. name: "Standard",
  4756. height: math.unit(55, "feet"),
  4757. default: true
  4758. }
  4759. ]
  4760. ))
  4761. characterMakers.push(() => makeCharacter(
  4762. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4763. {
  4764. front: {
  4765. height: math.unit(7 + 5 / 6, "feet"),
  4766. weight: math.unit(325, "lb"),
  4767. name: "Front",
  4768. image: {
  4769. source: "./media/characters/asana/front.svg",
  4770. extra: 1133 / 1060,
  4771. bottom: 15.2 / 1148.6
  4772. }
  4773. },
  4774. back: {
  4775. height: math.unit(7 + 5 / 6, "feet"),
  4776. weight: math.unit(325, "lb"),
  4777. name: "Back",
  4778. image: {
  4779. source: "./media/characters/asana/back.svg",
  4780. extra: 1114 / 1043,
  4781. bottom: 5 / 1120
  4782. }
  4783. },
  4784. dressedDark: {
  4785. height: math.unit(7 + 5 / 6, "feet"),
  4786. weight: math.unit(325, "lb"),
  4787. name: "Dressed (Dark)",
  4788. image: {
  4789. source: "./media/characters/asana/dressed-dark.svg",
  4790. extra: 1133 / 1060,
  4791. bottom: 15.2 / 1148.6
  4792. }
  4793. },
  4794. dressedLight: {
  4795. height: math.unit(7 + 5 / 6, "feet"),
  4796. weight: math.unit(325, "lb"),
  4797. name: "Dressed (Light)",
  4798. image: {
  4799. source: "./media/characters/asana/dressed-light.svg",
  4800. extra: 1133 / 1060,
  4801. bottom: 15.2 / 1148.6
  4802. }
  4803. },
  4804. },
  4805. [
  4806. {
  4807. name: "Standard",
  4808. height: math.unit(7 + 5 / 6, "feet"),
  4809. default: true
  4810. },
  4811. {
  4812. name: "Large",
  4813. height: math.unit(10, "meters")
  4814. },
  4815. {
  4816. name: "Macro",
  4817. height: math.unit(2500, "meters")
  4818. },
  4819. {
  4820. name: "Megamacro",
  4821. height: math.unit(5e6, "meters")
  4822. },
  4823. {
  4824. name: "Examacro",
  4825. height: math.unit(5e12, "lightyears")
  4826. },
  4827. {
  4828. name: "Max Size",
  4829. height: math.unit(1e31, "lightyears")
  4830. }
  4831. ]
  4832. ))
  4833. characterMakers.push(() => makeCharacter(
  4834. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4835. {
  4836. front: {
  4837. height: math.unit(2, "meter"),
  4838. weight: math.unit(60, "kg"),
  4839. name: "Front",
  4840. image: {
  4841. source: "./media/characters/ebony/front.svg",
  4842. bottom: 0.03,
  4843. extra: 1045 / 810 + 0.03
  4844. }
  4845. },
  4846. side: {
  4847. height: math.unit(2, "meter"),
  4848. weight: math.unit(60, "kg"),
  4849. name: "Side",
  4850. image: {
  4851. source: "./media/characters/ebony/side.svg",
  4852. bottom: 0.03,
  4853. extra: 1045 / 810 + 0.03
  4854. }
  4855. },
  4856. back: {
  4857. height: math.unit(2, "meter"),
  4858. weight: math.unit(60, "kg"),
  4859. name: "Back",
  4860. image: {
  4861. source: "./media/characters/ebony/back.svg",
  4862. bottom: 0.01,
  4863. extra: 1045 / 810 + 0.01
  4864. }
  4865. },
  4866. },
  4867. [
  4868. // TODO check why I did this lol
  4869. {
  4870. name: "Standard",
  4871. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4872. default: true
  4873. },
  4874. {
  4875. name: "Macro",
  4876. height: math.unit(200, "feet")
  4877. },
  4878. {
  4879. name: "Gigamacro",
  4880. height: math.unit(13000, "km")
  4881. }
  4882. ]
  4883. ))
  4884. characterMakers.push(() => makeCharacter(
  4885. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4886. {
  4887. front: {
  4888. height: math.unit(6, "feet"),
  4889. weight: math.unit(175, "lb"),
  4890. name: "Front",
  4891. image: {
  4892. source: "./media/characters/mountain/front.svg",
  4893. extra: 972 / 955,
  4894. bottom: 64 / 1036.6
  4895. }
  4896. },
  4897. back: {
  4898. height: math.unit(6, "feet"),
  4899. weight: math.unit(175, "lb"),
  4900. name: "Back",
  4901. image: {
  4902. source: "./media/characters/mountain/back.svg",
  4903. extra: 970 / 950,
  4904. bottom: 28.25 / 999
  4905. }
  4906. },
  4907. },
  4908. [
  4909. {
  4910. name: "Large",
  4911. height: math.unit(20, "meters")
  4912. },
  4913. {
  4914. name: "Macro",
  4915. height: math.unit(300, "meters")
  4916. },
  4917. {
  4918. name: "Gigamacro",
  4919. height: math.unit(10000, "km"),
  4920. default: true
  4921. },
  4922. {
  4923. name: "Examacro",
  4924. height: math.unit(10e9, "lightyears")
  4925. }
  4926. ]
  4927. ))
  4928. characterMakers.push(() => makeCharacter(
  4929. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4930. {
  4931. front: {
  4932. height: math.unit(8, "feet"),
  4933. weight: math.unit(500, "lb"),
  4934. name: "Front",
  4935. image: {
  4936. source: "./media/characters/rick/front.svg"
  4937. }
  4938. }
  4939. },
  4940. [
  4941. {
  4942. name: "Normal",
  4943. height: math.unit(8, "feet"),
  4944. default: true
  4945. },
  4946. {
  4947. name: "Macro",
  4948. height: math.unit(5, "km")
  4949. }
  4950. ]
  4951. ))
  4952. characterMakers.push(() => makeCharacter(
  4953. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4954. {
  4955. front: {
  4956. height: math.unit(8, "feet"),
  4957. weight: math.unit(120, "lb"),
  4958. name: "Front",
  4959. image: {
  4960. source: "./media/characters/ona/front.svg"
  4961. }
  4962. },
  4963. frontAlt: {
  4964. height: math.unit(8, "feet"),
  4965. weight: math.unit(120, "lb"),
  4966. name: "Front (Alt)",
  4967. image: {
  4968. source: "./media/characters/ona/front-alt.svg"
  4969. }
  4970. },
  4971. back: {
  4972. height: math.unit(8, "feet"),
  4973. weight: math.unit(120, "lb"),
  4974. name: "Back",
  4975. image: {
  4976. source: "./media/characters/ona/back.svg"
  4977. }
  4978. },
  4979. foot: {
  4980. height: math.unit(1.1, "feet"),
  4981. name: "Foot",
  4982. image: {
  4983. source: "./media/characters/ona/foot.svg"
  4984. }
  4985. }
  4986. },
  4987. [
  4988. {
  4989. name: "Megamacro",
  4990. height: math.unit(70, "km"),
  4991. default: true
  4992. },
  4993. {
  4994. name: "Gigamacro",
  4995. height: math.unit(681818, "miles")
  4996. },
  4997. {
  4998. name: "Examacro",
  4999. height: math.unit(3800000, "lightyears")
  5000. },
  5001. ]
  5002. ))
  5003. characterMakers.push(() => makeCharacter(
  5004. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5005. {
  5006. front: {
  5007. height: math.unit(12, "feet"),
  5008. weight: math.unit(3000, "lb"),
  5009. name: "Front",
  5010. image: {
  5011. source: "./media/characters/mech/front.svg",
  5012. extra: 2900 / 2770,
  5013. bottom: 110 / 3010
  5014. }
  5015. },
  5016. back: {
  5017. height: math.unit(12, "feet"),
  5018. weight: math.unit(3000, "lb"),
  5019. name: "Back",
  5020. image: {
  5021. source: "./media/characters/mech/back.svg",
  5022. extra: 3011 / 2890,
  5023. bottom: 94 / 3105
  5024. }
  5025. },
  5026. maw: {
  5027. height: math.unit(3.07, "feet"),
  5028. name: "Maw",
  5029. image: {
  5030. source: "./media/characters/mech/maw.svg"
  5031. }
  5032. },
  5033. head: {
  5034. height: math.unit(3.07, "feet"),
  5035. name: "Head",
  5036. image: {
  5037. source: "./media/characters/mech/head.svg"
  5038. }
  5039. },
  5040. dick: {
  5041. height: math.unit(1.43, "feet"),
  5042. name: "Dick",
  5043. image: {
  5044. source: "./media/characters/mech/dick.svg"
  5045. }
  5046. },
  5047. },
  5048. [
  5049. {
  5050. name: "Normal",
  5051. height: math.unit(12, "feet")
  5052. },
  5053. {
  5054. name: "Macro",
  5055. height: math.unit(300, "feet"),
  5056. default: true
  5057. },
  5058. {
  5059. name: "Macro+",
  5060. height: math.unit(1500, "feet")
  5061. },
  5062. ]
  5063. ))
  5064. characterMakers.push(() => makeCharacter(
  5065. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5066. {
  5067. front: {
  5068. height: math.unit(1.3, "meter"),
  5069. weight: math.unit(30, "kg"),
  5070. name: "Front",
  5071. image: {
  5072. source: "./media/characters/gregory/front.svg",
  5073. }
  5074. }
  5075. },
  5076. [
  5077. {
  5078. name: "Normal",
  5079. height: math.unit(1.3, "meter"),
  5080. default: true
  5081. },
  5082. {
  5083. name: "Macro",
  5084. height: math.unit(20, "meter")
  5085. }
  5086. ]
  5087. ))
  5088. characterMakers.push(() => makeCharacter(
  5089. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5090. {
  5091. front: {
  5092. height: math.unit(2.8, "meter"),
  5093. weight: math.unit(200, "kg"),
  5094. name: "Front",
  5095. image: {
  5096. source: "./media/characters/elory/front.svg",
  5097. }
  5098. }
  5099. },
  5100. [
  5101. {
  5102. name: "Normal",
  5103. height: math.unit(2.8, "meter"),
  5104. default: true
  5105. },
  5106. {
  5107. name: "Macro",
  5108. height: math.unit(38, "meter")
  5109. }
  5110. ]
  5111. ))
  5112. characterMakers.push(() => makeCharacter(
  5113. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5114. {
  5115. front: {
  5116. height: math.unit(470, "feet"),
  5117. weight: math.unit(924, "tons"),
  5118. name: "Front",
  5119. image: {
  5120. source: "./media/characters/angelpatamon/front.svg",
  5121. }
  5122. }
  5123. },
  5124. [
  5125. {
  5126. name: "Normal",
  5127. height: math.unit(470, "feet"),
  5128. default: true
  5129. },
  5130. {
  5131. name: "Deity Size I",
  5132. height: math.unit(28651.2, "km")
  5133. },
  5134. {
  5135. name: "Deity Size II",
  5136. height: math.unit(171907.2, "km")
  5137. }
  5138. ]
  5139. ))
  5140. characterMakers.push(() => makeCharacter(
  5141. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5142. {
  5143. side: {
  5144. height: math.unit(7.2, "meter"),
  5145. weight: math.unit(8.2, "tons"),
  5146. name: "Side",
  5147. image: {
  5148. source: "./media/characters/cryae/side.svg",
  5149. extra: 3500 / 1500
  5150. }
  5151. }
  5152. },
  5153. [
  5154. {
  5155. name: "Normal",
  5156. height: math.unit(7.2, "meter"),
  5157. default: true
  5158. }
  5159. ]
  5160. ))
  5161. characterMakers.push(() => makeCharacter(
  5162. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5163. {
  5164. front: {
  5165. height: math.unit(6, "feet"),
  5166. weight: math.unit(175, "lb"),
  5167. name: "Front",
  5168. image: {
  5169. source: "./media/characters/xera/front.svg",
  5170. extra: 2377 / 1972,
  5171. bottom: 75.5 / 2452
  5172. }
  5173. },
  5174. side: {
  5175. height: math.unit(6, "feet"),
  5176. weight: math.unit(175, "lb"),
  5177. name: "Side",
  5178. image: {
  5179. source: "./media/characters/xera/side.svg",
  5180. extra: 2345 / 2019,
  5181. bottom: 39.7 / 2384
  5182. }
  5183. },
  5184. back: {
  5185. height: math.unit(6, "feet"),
  5186. weight: math.unit(175, "lb"),
  5187. name: "Back",
  5188. image: {
  5189. source: "./media/characters/xera/back.svg",
  5190. extra: 2095 / 1984,
  5191. bottom: 67 / 2166
  5192. }
  5193. },
  5194. },
  5195. [
  5196. {
  5197. name: "Small",
  5198. height: math.unit(10, "feet")
  5199. },
  5200. {
  5201. name: "Macro",
  5202. height: math.unit(500, "meters"),
  5203. default: true
  5204. },
  5205. {
  5206. name: "Macro+",
  5207. height: math.unit(10, "km")
  5208. },
  5209. {
  5210. name: "Gigamacro",
  5211. height: math.unit(25000, "km")
  5212. },
  5213. {
  5214. name: "Teramacro",
  5215. height: math.unit(3e6, "km")
  5216. }
  5217. ]
  5218. ))
  5219. characterMakers.push(() => makeCharacter(
  5220. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5221. {
  5222. front: {
  5223. height: math.unit(6, "feet"),
  5224. weight: math.unit(175, "lb"),
  5225. name: "Front",
  5226. image: {
  5227. source: "./media/characters/nebula/front.svg",
  5228. extra: 2566 / 2362,
  5229. bottom: 81 / 2644
  5230. }
  5231. }
  5232. },
  5233. [
  5234. {
  5235. name: "Small",
  5236. height: math.unit(4.5, "meters")
  5237. },
  5238. {
  5239. name: "Macro",
  5240. height: math.unit(1500, "meters"),
  5241. default: true
  5242. },
  5243. {
  5244. name: "Megamacro",
  5245. height: math.unit(150, "km")
  5246. },
  5247. {
  5248. name: "Gigamacro",
  5249. height: math.unit(27000, "km")
  5250. }
  5251. ]
  5252. ))
  5253. characterMakers.push(() => makeCharacter(
  5254. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5255. {
  5256. front: {
  5257. height: math.unit(6, "feet"),
  5258. weight: math.unit(225, "lb"),
  5259. name: "Front",
  5260. image: {
  5261. source: "./media/characters/abysgar/front.svg",
  5262. extra: 1739/1614,
  5263. bottom: 71/1810
  5264. }
  5265. },
  5266. frontNsfw: {
  5267. height: math.unit(6, "feet"),
  5268. weight: math.unit(225, "lb"),
  5269. name: "Front (NSFW)",
  5270. image: {
  5271. source: "./media/characters/abysgar/front-nsfw.svg",
  5272. extra: 1739/1614,
  5273. bottom: 71/1810
  5274. }
  5275. },
  5276. back: {
  5277. height: math.unit(4.6, "feet"),
  5278. weight: math.unit(225, "lb"),
  5279. name: "Back",
  5280. image: {
  5281. source: "./media/characters/abysgar/back.svg",
  5282. extra: 1384/1327,
  5283. bottom: 0/1384
  5284. }
  5285. },
  5286. head: {
  5287. height: math.unit(1.25, "feet"),
  5288. name: "Head",
  5289. image: {
  5290. source: "./media/characters/abysgar/head.svg",
  5291. extra: 669/569,
  5292. bottom: 0/669
  5293. }
  5294. },
  5295. },
  5296. [
  5297. {
  5298. name: "Small",
  5299. height: math.unit(4.5, "meters")
  5300. },
  5301. {
  5302. name: "Macro",
  5303. height: math.unit(1250, "meters"),
  5304. default: true
  5305. },
  5306. {
  5307. name: "Megamacro",
  5308. height: math.unit(125, "km")
  5309. },
  5310. {
  5311. name: "Gigamacro",
  5312. height: math.unit(26000, "km")
  5313. }
  5314. ]
  5315. ))
  5316. characterMakers.push(() => makeCharacter(
  5317. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5318. {
  5319. front: {
  5320. height: math.unit(6, "feet"),
  5321. weight: math.unit(180, "lb"),
  5322. name: "Front",
  5323. image: {
  5324. source: "./media/characters/yakuz/front.svg"
  5325. }
  5326. }
  5327. },
  5328. [
  5329. {
  5330. name: "Small",
  5331. height: math.unit(5, "meters")
  5332. },
  5333. {
  5334. name: "Macro",
  5335. height: math.unit(1500, "meters"),
  5336. default: true
  5337. },
  5338. {
  5339. name: "Megamacro",
  5340. height: math.unit(200, "km")
  5341. },
  5342. {
  5343. name: "Gigamacro",
  5344. height: math.unit(100000, "km")
  5345. }
  5346. ]
  5347. ))
  5348. characterMakers.push(() => makeCharacter(
  5349. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5350. {
  5351. front: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(175, "lb"),
  5354. name: "Front",
  5355. image: {
  5356. source: "./media/characters/mirova/front.svg",
  5357. extra: 3334 / 3071,
  5358. bottom: 42 / 3375.6
  5359. }
  5360. }
  5361. },
  5362. [
  5363. {
  5364. name: "Small",
  5365. height: math.unit(5, "meters")
  5366. },
  5367. {
  5368. name: "Macro",
  5369. height: math.unit(900, "meters"),
  5370. default: true
  5371. },
  5372. {
  5373. name: "Megamacro",
  5374. height: math.unit(135, "km")
  5375. },
  5376. {
  5377. name: "Gigamacro",
  5378. height: math.unit(20000, "km")
  5379. }
  5380. ]
  5381. ))
  5382. characterMakers.push(() => makeCharacter(
  5383. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5384. {
  5385. side: {
  5386. height: math.unit(28.35, "feet"),
  5387. weight: math.unit(99.75, "tons"),
  5388. name: "Side",
  5389. image: {
  5390. source: "./media/characters/asana-mech/side.svg",
  5391. extra: 923 / 699,
  5392. bottom: 50 / 975
  5393. }
  5394. },
  5395. chaingun: {
  5396. height: math.unit(7, "feet"),
  5397. weight: math.unit(2400, "lb"),
  5398. name: "Chaingun",
  5399. image: {
  5400. source: "./media/characters/asana-mech/chaingun.svg"
  5401. }
  5402. },
  5403. laser: {
  5404. height: math.unit(7.12, "feet"),
  5405. weight: math.unit(2000, "lb"),
  5406. name: "Laser",
  5407. image: {
  5408. source: "./media/characters/asana-mech/laser.svg"
  5409. }
  5410. },
  5411. },
  5412. [
  5413. {
  5414. name: "Normal",
  5415. height: math.unit(28.35, "feet"),
  5416. default: true
  5417. },
  5418. {
  5419. name: "Macro",
  5420. height: math.unit(2500, "feet")
  5421. },
  5422. {
  5423. name: "Megamacro",
  5424. height: math.unit(25, "miles")
  5425. },
  5426. {
  5427. name: "Examacro",
  5428. height: math.unit(6e8, "lightyears")
  5429. },
  5430. ]
  5431. ))
  5432. characterMakers.push(() => makeCharacter(
  5433. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5434. {
  5435. front: {
  5436. height: math.unit(5, "meters"),
  5437. weight: math.unit(1000, "kg"),
  5438. name: "Front",
  5439. image: {
  5440. source: "./media/characters/asche/front.svg",
  5441. extra: 1258 / 1190,
  5442. bottom: 47 / 1305
  5443. }
  5444. },
  5445. frontUnderwear: {
  5446. height: math.unit(5, "meters"),
  5447. weight: math.unit(1000, "kg"),
  5448. name: "Front (Underwear)",
  5449. image: {
  5450. source: "./media/characters/asche/front-underwear.svg",
  5451. extra: 1258 / 1190,
  5452. bottom: 47 / 1305
  5453. }
  5454. },
  5455. frontDressed: {
  5456. height: math.unit(5, "meters"),
  5457. weight: math.unit(1000, "kg"),
  5458. name: "Front (Dressed)",
  5459. image: {
  5460. source: "./media/characters/asche/front-dressed.svg",
  5461. extra: 1258 / 1190,
  5462. bottom: 47 / 1305
  5463. }
  5464. },
  5465. frontArmor: {
  5466. height: math.unit(5, "meters"),
  5467. weight: math.unit(1000, "kg"),
  5468. name: "Front (Armored)",
  5469. image: {
  5470. source: "./media/characters/asche/front-armored.svg",
  5471. extra: 1374 / 1308,
  5472. bottom: 23 / 1397
  5473. }
  5474. },
  5475. mp724: {
  5476. height: math.unit(0.96, "meters"),
  5477. weight: math.unit(38, "kg"),
  5478. name: "H&K MP724",
  5479. image: {
  5480. source: "./media/characters/asche/h&k-mp724.svg"
  5481. }
  5482. },
  5483. side: {
  5484. height: math.unit(5, "meters"),
  5485. weight: math.unit(1000, "kg"),
  5486. name: "Side",
  5487. image: {
  5488. source: "./media/characters/asche/side.svg",
  5489. extra: 1717 / 1609,
  5490. bottom: 0.005
  5491. }
  5492. },
  5493. back: {
  5494. height: math.unit(5, "meters"),
  5495. weight: math.unit(1000, "kg"),
  5496. name: "Back",
  5497. image: {
  5498. source: "./media/characters/asche/back.svg",
  5499. extra: 1570 / 1501
  5500. }
  5501. },
  5502. },
  5503. [
  5504. {
  5505. name: "DEFCON 5",
  5506. height: math.unit(5, "meters")
  5507. },
  5508. {
  5509. name: "DEFCON 4",
  5510. height: math.unit(500, "meters"),
  5511. default: true
  5512. },
  5513. {
  5514. name: "DEFCON 3",
  5515. height: math.unit(5, "km")
  5516. },
  5517. {
  5518. name: "DEFCON 2",
  5519. height: math.unit(500, "km")
  5520. },
  5521. {
  5522. name: "DEFCON 1",
  5523. height: math.unit(500000, "km")
  5524. },
  5525. {
  5526. name: "DEFCON 0",
  5527. height: math.unit(3, "gigaparsecs")
  5528. },
  5529. ]
  5530. ))
  5531. characterMakers.push(() => makeCharacter(
  5532. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5533. {
  5534. front: {
  5535. height: math.unit(7, "feet"),
  5536. weight: math.unit(92.7, "kg"),
  5537. name: "Front",
  5538. image: {
  5539. source: "./media/characters/gale/front.svg",
  5540. extra: 977/919,
  5541. bottom: 105/1082
  5542. }
  5543. },
  5544. side: {
  5545. height: math.unit(6.7, "feet"),
  5546. weight: math.unit(92.7, "kg"),
  5547. name: "Side",
  5548. image: {
  5549. source: "./media/characters/gale/side.svg",
  5550. extra: 978/922,
  5551. bottom: 140/1118
  5552. }
  5553. },
  5554. back: {
  5555. height: math.unit(7, "feet"),
  5556. weight: math.unit(92.7, "kg"),
  5557. name: "Back",
  5558. image: {
  5559. source: "./media/characters/gale/back.svg",
  5560. extra: 966/920,
  5561. bottom: 61/1027
  5562. }
  5563. },
  5564. maw: {
  5565. height: math.unit(2.23, "feet"),
  5566. name: "Maw",
  5567. image: {
  5568. source: "./media/characters/gale/maw.svg"
  5569. }
  5570. },
  5571. foot: {
  5572. height: math.unit(2.1, "feet"),
  5573. name: "Foot",
  5574. image: {
  5575. source: "./media/characters/gale/foot.svg"
  5576. }
  5577. },
  5578. },
  5579. [
  5580. {
  5581. name: "Normal",
  5582. height: math.unit(7, "feet")
  5583. },
  5584. {
  5585. name: "Macro",
  5586. height: math.unit(150, "feet"),
  5587. default: true
  5588. },
  5589. {
  5590. name: "Macro+",
  5591. height: math.unit(300, "feet")
  5592. },
  5593. ]
  5594. ))
  5595. characterMakers.push(() => makeCharacter(
  5596. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5597. {
  5598. front: {
  5599. height: math.unit(5 + 10/12, "feet"),
  5600. weight: math.unit(67, "kg"),
  5601. name: "Front",
  5602. image: {
  5603. source: "./media/characters/draylen/front.svg",
  5604. extra: 832/777,
  5605. bottom: 85/917
  5606. }
  5607. }
  5608. },
  5609. [
  5610. {
  5611. name: "Normal",
  5612. height: math.unit(5 + 10/12, "feet")
  5613. },
  5614. {
  5615. name: "Macro",
  5616. height: math.unit(150, "feet"),
  5617. default: true
  5618. }
  5619. ]
  5620. ))
  5621. characterMakers.push(() => makeCharacter(
  5622. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5623. {
  5624. front: {
  5625. height: math.unit(7 + 9 / 12, "feet"),
  5626. weight: math.unit(379, "lbs"),
  5627. name: "Front",
  5628. image: {
  5629. source: "./media/characters/chez/front.svg"
  5630. }
  5631. },
  5632. side: {
  5633. height: math.unit(7 + 9 / 12, "feet"),
  5634. weight: math.unit(379, "lbs"),
  5635. name: "Side",
  5636. image: {
  5637. source: "./media/characters/chez/side.svg"
  5638. }
  5639. }
  5640. },
  5641. [
  5642. {
  5643. name: "Normal",
  5644. height: math.unit(7 + 9 / 12, "feet"),
  5645. default: true
  5646. },
  5647. {
  5648. name: "God King",
  5649. height: math.unit(9750000, "meters")
  5650. }
  5651. ]
  5652. ))
  5653. characterMakers.push(() => makeCharacter(
  5654. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5655. {
  5656. front: {
  5657. height: math.unit(6, "feet"),
  5658. weight: math.unit(275, "lbs"),
  5659. name: "Front",
  5660. image: {
  5661. source: "./media/characters/kaylum/front.svg",
  5662. bottom: 0.01,
  5663. extra: 1166 / 1031
  5664. }
  5665. },
  5666. frontWingless: {
  5667. height: math.unit(6, "feet"),
  5668. weight: math.unit(275, "lbs"),
  5669. name: "Front (Wingless)",
  5670. image: {
  5671. source: "./media/characters/kaylum/front-wingless.svg",
  5672. bottom: 0.01,
  5673. extra: 1117 / 1031
  5674. }
  5675. }
  5676. },
  5677. [
  5678. {
  5679. name: "Normal",
  5680. height: math.unit(3.05, "meters")
  5681. },
  5682. {
  5683. name: "Master",
  5684. height: math.unit(5.5, "meters")
  5685. },
  5686. {
  5687. name: "Rampage",
  5688. height: math.unit(19, "meters")
  5689. },
  5690. {
  5691. name: "Macro Lite",
  5692. height: math.unit(37, "meters")
  5693. },
  5694. {
  5695. name: "Hyper Predator",
  5696. height: math.unit(61, "meters")
  5697. },
  5698. {
  5699. name: "Macro",
  5700. height: math.unit(138, "meters"),
  5701. default: true
  5702. }
  5703. ]
  5704. ))
  5705. characterMakers.push(() => makeCharacter(
  5706. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5707. {
  5708. front: {
  5709. height: math.unit(5 + 5 / 12, "feet"),
  5710. weight: math.unit(120, "lbs"),
  5711. name: "Front",
  5712. image: {
  5713. source: "./media/characters/geta/front.svg",
  5714. extra: 1003/933,
  5715. bottom: 21/1024
  5716. }
  5717. },
  5718. paw: {
  5719. height: math.unit(0.35, "feet"),
  5720. name: "Paw",
  5721. image: {
  5722. source: "./media/characters/geta/paw.svg"
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Micro",
  5729. height: math.unit(3, "inches"),
  5730. default: true
  5731. },
  5732. {
  5733. name: "Normal",
  5734. height: math.unit(5 + 5 / 12, "feet")
  5735. }
  5736. ]
  5737. ))
  5738. characterMakers.push(() => makeCharacter(
  5739. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5740. {
  5741. front: {
  5742. height: math.unit(6, "feet"),
  5743. weight: math.unit(300, "lbs"),
  5744. name: "Front",
  5745. image: {
  5746. source: "./media/characters/tyrnn/front.svg"
  5747. }
  5748. }
  5749. },
  5750. [
  5751. {
  5752. name: "Main Height",
  5753. height: math.unit(355, "feet"),
  5754. default: true
  5755. },
  5756. {
  5757. name: "Fave. Height",
  5758. height: math.unit(2400, "feet")
  5759. }
  5760. ]
  5761. ))
  5762. characterMakers.push(() => makeCharacter(
  5763. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5764. {
  5765. front: {
  5766. height: math.unit(6, "feet"),
  5767. weight: math.unit(300, "lbs"),
  5768. name: "Front",
  5769. image: {
  5770. source: "./media/characters/appledectomy/front.svg"
  5771. }
  5772. }
  5773. },
  5774. [
  5775. {
  5776. name: "Macro",
  5777. height: math.unit(2500, "feet")
  5778. },
  5779. {
  5780. name: "Megamacro",
  5781. height: math.unit(50, "miles"),
  5782. default: true
  5783. },
  5784. {
  5785. name: "Gigamacro",
  5786. height: math.unit(5000, "miles")
  5787. },
  5788. {
  5789. name: "Teramacro",
  5790. height: math.unit(250000, "miles")
  5791. },
  5792. ]
  5793. ))
  5794. characterMakers.push(() => makeCharacter(
  5795. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5796. {
  5797. front: {
  5798. height: math.unit(6, "feet"),
  5799. weight: math.unit(200, "lbs"),
  5800. name: "Front",
  5801. image: {
  5802. source: "./media/characters/vulpes/front.svg",
  5803. extra: 573 / 543,
  5804. bottom: 0.033
  5805. }
  5806. },
  5807. side: {
  5808. height: math.unit(6, "feet"),
  5809. weight: math.unit(200, "lbs"),
  5810. name: "Side",
  5811. image: {
  5812. source: "./media/characters/vulpes/side.svg",
  5813. extra: 577 / 549,
  5814. bottom: 11 / 588
  5815. }
  5816. },
  5817. back: {
  5818. height: math.unit(6, "feet"),
  5819. weight: math.unit(200, "lbs"),
  5820. name: "Back",
  5821. image: {
  5822. source: "./media/characters/vulpes/back.svg",
  5823. extra: 573 / 549,
  5824. bottom: 20 / 593
  5825. }
  5826. },
  5827. feet: {
  5828. height: math.unit(1.276, "feet"),
  5829. name: "Feet",
  5830. image: {
  5831. source: "./media/characters/vulpes/feet.svg"
  5832. }
  5833. },
  5834. maw: {
  5835. height: math.unit(1.18, "feet"),
  5836. name: "Maw",
  5837. image: {
  5838. source: "./media/characters/vulpes/maw.svg"
  5839. }
  5840. },
  5841. },
  5842. [
  5843. {
  5844. name: "Micro",
  5845. height: math.unit(2, "inches")
  5846. },
  5847. {
  5848. name: "Normal",
  5849. height: math.unit(6.3, "feet")
  5850. },
  5851. {
  5852. name: "Macro",
  5853. height: math.unit(850, "feet")
  5854. },
  5855. {
  5856. name: "Megamacro",
  5857. height: math.unit(7500, "feet"),
  5858. default: true
  5859. },
  5860. {
  5861. name: "Gigamacro",
  5862. height: math.unit(570000, "miles")
  5863. }
  5864. ]
  5865. ))
  5866. characterMakers.push(() => makeCharacter(
  5867. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5868. {
  5869. front: {
  5870. height: math.unit(6, "feet"),
  5871. weight: math.unit(210, "lbs"),
  5872. name: "Front",
  5873. image: {
  5874. source: "./media/characters/rain-fallen/front.svg"
  5875. }
  5876. },
  5877. side: {
  5878. height: math.unit(6, "feet"),
  5879. weight: math.unit(210, "lbs"),
  5880. name: "Side",
  5881. image: {
  5882. source: "./media/characters/rain-fallen/side.svg"
  5883. }
  5884. },
  5885. back: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(210, "lbs"),
  5888. name: "Back",
  5889. image: {
  5890. source: "./media/characters/rain-fallen/back.svg"
  5891. }
  5892. },
  5893. feral: {
  5894. height: math.unit(9, "feet"),
  5895. weight: math.unit(700, "lbs"),
  5896. name: "Feral",
  5897. image: {
  5898. source: "./media/characters/rain-fallen/feral.svg"
  5899. }
  5900. },
  5901. },
  5902. [
  5903. {
  5904. name: "Meddling with Mortals",
  5905. height: math.unit(8 + 8/12, "feet")
  5906. },
  5907. {
  5908. name: "Normal",
  5909. height: math.unit(5, "meter")
  5910. },
  5911. {
  5912. name: "Macro",
  5913. height: math.unit(150, "meter"),
  5914. default: true
  5915. },
  5916. {
  5917. name: "Megamacro",
  5918. height: math.unit(278e6, "meter")
  5919. },
  5920. {
  5921. name: "Gigamacro",
  5922. height: math.unit(2e9, "meter")
  5923. },
  5924. {
  5925. name: "Teramacro",
  5926. height: math.unit(8e12, "meter")
  5927. },
  5928. {
  5929. name: "Devourer",
  5930. height: math.unit(14, "zettameters")
  5931. },
  5932. {
  5933. name: "Scarlet King",
  5934. height: math.unit(18, "yottameters")
  5935. },
  5936. {
  5937. name: "Void",
  5938. height: math.unit(1e88, "yottameters")
  5939. }
  5940. ]
  5941. ))
  5942. characterMakers.push(() => makeCharacter(
  5943. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5944. {
  5945. standing: {
  5946. height: math.unit(6, "feet"),
  5947. weight: math.unit(180, "lbs"),
  5948. name: "Standing",
  5949. image: {
  5950. source: "./media/characters/zaakira/standing.svg",
  5951. extra: 1599/1504,
  5952. bottom: 39/1638
  5953. }
  5954. },
  5955. laying: {
  5956. height: math.unit(3.3, "feet"),
  5957. weight: math.unit(180, "lbs"),
  5958. name: "Laying",
  5959. image: {
  5960. source: "./media/characters/zaakira/laying.svg"
  5961. }
  5962. },
  5963. },
  5964. [
  5965. {
  5966. name: "Normal",
  5967. height: math.unit(12, "feet")
  5968. },
  5969. {
  5970. name: "Macro",
  5971. height: math.unit(279, "feet"),
  5972. default: true
  5973. }
  5974. ]
  5975. ))
  5976. characterMakers.push(() => makeCharacter(
  5977. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5978. {
  5979. femSfw: {
  5980. height: math.unit(8, "feet"),
  5981. weight: math.unit(350, "lb"),
  5982. name: "Fem",
  5983. image: {
  5984. source: "./media/characters/sigvald/fem-sfw.svg",
  5985. extra: 182 / 164,
  5986. bottom: 8.7 / 190.5
  5987. }
  5988. },
  5989. femNsfw: {
  5990. height: math.unit(8, "feet"),
  5991. weight: math.unit(350, "lb"),
  5992. name: "Fem (NSFW)",
  5993. image: {
  5994. source: "./media/characters/sigvald/fem-nsfw.svg",
  5995. extra: 182 / 164,
  5996. bottom: 8.7 / 190.5
  5997. }
  5998. },
  5999. maleNsfw: {
  6000. height: math.unit(8, "feet"),
  6001. weight: math.unit(350, "lb"),
  6002. name: "Male (NSFW)",
  6003. image: {
  6004. source: "./media/characters/sigvald/male-nsfw.svg",
  6005. extra: 182 / 164,
  6006. bottom: 8.7 / 190.5
  6007. }
  6008. },
  6009. hermNsfw: {
  6010. height: math.unit(8, "feet"),
  6011. weight: math.unit(350, "lb"),
  6012. name: "Herm (NSFW)",
  6013. image: {
  6014. source: "./media/characters/sigvald/herm-nsfw.svg",
  6015. extra: 182 / 164,
  6016. bottom: 8.7 / 190.5
  6017. }
  6018. },
  6019. dick: {
  6020. height: math.unit(2.36, "feet"),
  6021. name: "Dick",
  6022. image: {
  6023. source: "./media/characters/sigvald/dick.svg"
  6024. }
  6025. },
  6026. eye: {
  6027. height: math.unit(0.31, "feet"),
  6028. name: "Eye",
  6029. image: {
  6030. source: "./media/characters/sigvald/eye.svg"
  6031. }
  6032. },
  6033. mouth: {
  6034. height: math.unit(0.92, "feet"),
  6035. name: "Mouth",
  6036. image: {
  6037. source: "./media/characters/sigvald/mouth.svg"
  6038. }
  6039. },
  6040. paws: {
  6041. height: math.unit(2.2, "feet"),
  6042. name: "Paws",
  6043. image: {
  6044. source: "./media/characters/sigvald/paws.svg"
  6045. }
  6046. }
  6047. },
  6048. [
  6049. {
  6050. name: "Normal",
  6051. height: math.unit(8, "feet")
  6052. },
  6053. {
  6054. name: "Large",
  6055. height: math.unit(12, "feet")
  6056. },
  6057. {
  6058. name: "Larger",
  6059. height: math.unit(20, "feet")
  6060. },
  6061. {
  6062. name: "Macro",
  6063. height: math.unit(150, "feet")
  6064. },
  6065. {
  6066. name: "Macro+",
  6067. height: math.unit(200, "feet"),
  6068. default: true
  6069. },
  6070. ]
  6071. ))
  6072. characterMakers.push(() => makeCharacter(
  6073. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6074. {
  6075. side: {
  6076. height: math.unit(12, "feet"),
  6077. weight: math.unit(2000, "kg"),
  6078. name: "Side",
  6079. image: {
  6080. source: "./media/characters/scott/side.svg",
  6081. extra: 754 / 724,
  6082. bottom: 0.069
  6083. }
  6084. },
  6085. upright: {
  6086. height: math.unit(12, "feet"),
  6087. weight: math.unit(2000, "kg"),
  6088. name: "Upright",
  6089. image: {
  6090. source: "./media/characters/scott/upright.svg",
  6091. extra: 3881 / 3722,
  6092. bottom: 0.05
  6093. }
  6094. },
  6095. },
  6096. [
  6097. {
  6098. name: "Normal",
  6099. height: math.unit(12, "feet"),
  6100. default: true
  6101. },
  6102. ]
  6103. ))
  6104. characterMakers.push(() => makeCharacter(
  6105. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6106. {
  6107. side: {
  6108. height: math.unit(8, "meters"),
  6109. weight: math.unit(84755, "lbs"),
  6110. name: "Side",
  6111. image: {
  6112. source: "./media/characters/tobias/side.svg",
  6113. extra: 1474 / 1096,
  6114. bottom: 38.9 / 1513.1235
  6115. }
  6116. },
  6117. maw: {
  6118. height: math.unit(2.3, "meters"),
  6119. name: "Maw",
  6120. image: {
  6121. source: "./media/characters/tobias/maw.svg"
  6122. }
  6123. },
  6124. burp: {
  6125. height: math.unit(2.85, "meters"),
  6126. name: "Burp",
  6127. image: {
  6128. source: "./media/characters/tobias/burp.svg"
  6129. }
  6130. },
  6131. },
  6132. [
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(8, "meters"),
  6136. default: true
  6137. },
  6138. ]
  6139. ))
  6140. characterMakers.push(() => makeCharacter(
  6141. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6142. {
  6143. front: {
  6144. height: math.unit(5.5, "feet"),
  6145. weight: math.unit(400, "lbs"),
  6146. name: "Front",
  6147. image: {
  6148. source: "./media/characters/kieran/front.svg",
  6149. extra: 2694 / 2364,
  6150. bottom: 217 / 2908
  6151. }
  6152. },
  6153. side: {
  6154. height: math.unit(5.5, "feet"),
  6155. weight: math.unit(400, "lbs"),
  6156. name: "Side",
  6157. image: {
  6158. source: "./media/characters/kieran/side.svg",
  6159. extra: 875 / 777,
  6160. bottom: 84.6 / 959
  6161. }
  6162. },
  6163. },
  6164. [
  6165. {
  6166. name: "Normal",
  6167. height: math.unit(5.5, "feet"),
  6168. default: true
  6169. },
  6170. ]
  6171. ))
  6172. characterMakers.push(() => makeCharacter(
  6173. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6174. {
  6175. side: {
  6176. height: math.unit(2, "meters"),
  6177. weight: math.unit(70, "kg"),
  6178. name: "Side",
  6179. image: {
  6180. source: "./media/characters/sanya/side.svg",
  6181. bottom: 0.02,
  6182. extra: 1.02
  6183. }
  6184. },
  6185. },
  6186. [
  6187. {
  6188. name: "Small",
  6189. height: math.unit(2, "meters")
  6190. },
  6191. {
  6192. name: "Normal",
  6193. height: math.unit(3, "meters")
  6194. },
  6195. {
  6196. name: "Macro",
  6197. height: math.unit(16, "meters"),
  6198. default: true
  6199. },
  6200. ]
  6201. ))
  6202. characterMakers.push(() => makeCharacter(
  6203. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6204. {
  6205. front: {
  6206. height: math.unit(2, "meters"),
  6207. weight: math.unit(120, "kg"),
  6208. name: "Front",
  6209. image: {
  6210. source: "./media/characters/miranda/front.svg",
  6211. extra: 195 / 185,
  6212. bottom: 10.9 / 206.5
  6213. }
  6214. },
  6215. back: {
  6216. height: math.unit(2, "meters"),
  6217. weight: math.unit(120, "kg"),
  6218. name: "Back",
  6219. image: {
  6220. source: "./media/characters/miranda/back.svg",
  6221. extra: 201 / 193,
  6222. bottom: 2.3 / 203.7
  6223. }
  6224. },
  6225. },
  6226. [
  6227. {
  6228. name: "Normal",
  6229. height: math.unit(10, "feet"),
  6230. default: true
  6231. }
  6232. ]
  6233. ))
  6234. characterMakers.push(() => makeCharacter(
  6235. { name: "James", species: ["deer"], tags: ["anthro"] },
  6236. {
  6237. side: {
  6238. height: math.unit(2, "meters"),
  6239. weight: math.unit(100, "kg"),
  6240. name: "Front",
  6241. image: {
  6242. source: "./media/characters/james/front.svg",
  6243. extra: 10 / 8.5
  6244. }
  6245. },
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(8.5, "feet"),
  6251. default: true
  6252. }
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6257. {
  6258. side: {
  6259. height: math.unit(9.5, "feet"),
  6260. weight: math.unit(2500, "lbs"),
  6261. name: "Side",
  6262. image: {
  6263. source: "./media/characters/heather/side.svg"
  6264. }
  6265. },
  6266. },
  6267. [
  6268. {
  6269. name: "Normal",
  6270. height: math.unit(9.5, "feet"),
  6271. default: true
  6272. }
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6277. {
  6278. side: {
  6279. height: math.unit(6.5, "feet"),
  6280. weight: math.unit(400, "lbs"),
  6281. name: "Side",
  6282. image: {
  6283. source: "./media/characters/lukas/side.svg",
  6284. extra: 7.25 / 6.5
  6285. }
  6286. },
  6287. },
  6288. [
  6289. {
  6290. name: "Normal",
  6291. height: math.unit(6.5, "feet"),
  6292. default: true
  6293. }
  6294. ]
  6295. ))
  6296. characterMakers.push(() => makeCharacter(
  6297. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6298. {
  6299. side: {
  6300. height: math.unit(5, "feet"),
  6301. weight: math.unit(3000, "lbs"),
  6302. name: "Side",
  6303. image: {
  6304. source: "./media/characters/louise/side.svg"
  6305. }
  6306. },
  6307. },
  6308. [
  6309. {
  6310. name: "Normal",
  6311. height: math.unit(5, "feet"),
  6312. default: true
  6313. }
  6314. ]
  6315. ))
  6316. characterMakers.push(() => makeCharacter(
  6317. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6318. {
  6319. side: {
  6320. height: math.unit(6, "feet"),
  6321. weight: math.unit(150, "lbs"),
  6322. name: "Side",
  6323. image: {
  6324. source: "./media/characters/ramona/side.svg",
  6325. extra: 871/854,
  6326. bottom: 41/912
  6327. }
  6328. },
  6329. },
  6330. [
  6331. {
  6332. name: "Normal",
  6333. height: math.unit(6 + 4/12, "feet")
  6334. },
  6335. {
  6336. name: "Minimacro",
  6337. height: math.unit(5.3, "meters"),
  6338. default: true
  6339. },
  6340. {
  6341. name: "Macro",
  6342. height: math.unit(20, "stories")
  6343. },
  6344. {
  6345. name: "Macro+",
  6346. height: math.unit(50, "stories")
  6347. },
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6352. {
  6353. standing: {
  6354. height: math.unit(5.75, "feet"),
  6355. weight: math.unit(160, "lbs"),
  6356. name: "Standing",
  6357. image: {
  6358. source: "./media/characters/deerpuff/standing.svg",
  6359. extra: 682 / 624
  6360. }
  6361. },
  6362. sitting: {
  6363. height: math.unit(5.75 / 1.79, "feet"),
  6364. weight: math.unit(160, "lbs"),
  6365. name: "Sitting",
  6366. image: {
  6367. source: "./media/characters/deerpuff/sitting.svg",
  6368. bottom: 44 / 400,
  6369. extra: 1
  6370. }
  6371. },
  6372. taurLaying: {
  6373. height: math.unit(6, "feet"),
  6374. weight: math.unit(400, "lbs"),
  6375. name: "Taur (Laying)",
  6376. image: {
  6377. source: "./media/characters/deerpuff/taur-laying.svg"
  6378. }
  6379. },
  6380. },
  6381. [
  6382. {
  6383. name: "Puffball",
  6384. height: math.unit(6, "inches")
  6385. },
  6386. {
  6387. name: "Normalpuff",
  6388. height: math.unit(5.75, "feet")
  6389. },
  6390. {
  6391. name: "Macropuff",
  6392. height: math.unit(1500, "feet"),
  6393. default: true
  6394. },
  6395. {
  6396. name: "Megapuff",
  6397. height: math.unit(500, "miles")
  6398. },
  6399. {
  6400. name: "Gigapuff",
  6401. height: math.unit(250000, "miles")
  6402. },
  6403. {
  6404. name: "Omegapuff",
  6405. height: math.unit(1000, "lightyears")
  6406. },
  6407. ]
  6408. ))
  6409. characterMakers.push(() => makeCharacter(
  6410. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6411. {
  6412. stomping: {
  6413. height: math.unit(6, "feet"),
  6414. weight: math.unit(170, "lbs"),
  6415. name: "Stomping",
  6416. image: {
  6417. source: "./media/characters/vivian/stomping.svg"
  6418. }
  6419. },
  6420. sitting: {
  6421. height: math.unit(6 / 1.75, "feet"),
  6422. weight: math.unit(170, "lbs"),
  6423. name: "Sitting",
  6424. image: {
  6425. source: "./media/characters/vivian/sitting.svg",
  6426. bottom: 1 / 6.4,
  6427. extra: 1,
  6428. }
  6429. },
  6430. },
  6431. [
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(7, "feet"),
  6435. default: true
  6436. },
  6437. {
  6438. name: "Macro",
  6439. height: math.unit(10, "stories")
  6440. },
  6441. {
  6442. name: "Macro+",
  6443. height: math.unit(30, "stories")
  6444. },
  6445. {
  6446. name: "Megamacro",
  6447. height: math.unit(10, "miles")
  6448. },
  6449. {
  6450. name: "Megamacro+",
  6451. height: math.unit(2750000, "meters")
  6452. },
  6453. ]
  6454. ))
  6455. characterMakers.push(() => makeCharacter(
  6456. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6457. {
  6458. front: {
  6459. height: math.unit(6, "feet"),
  6460. weight: math.unit(160, "lbs"),
  6461. name: "Front",
  6462. image: {
  6463. source: "./media/characters/prince/front.svg",
  6464. extra: 1938/1682,
  6465. bottom: 45/1983
  6466. }
  6467. },
  6468. back: {
  6469. height: math.unit(6, "feet"),
  6470. weight: math.unit(160, "lbs"),
  6471. name: "Back",
  6472. image: {
  6473. source: "./media/characters/prince/back.svg",
  6474. extra: 1955/1726,
  6475. bottom: 6/1961
  6476. }
  6477. },
  6478. },
  6479. [
  6480. {
  6481. name: "Normal",
  6482. height: math.unit(7.75, "feet"),
  6483. default: true
  6484. },
  6485. {
  6486. name: "Not cute",
  6487. height: math.unit(17, "feet")
  6488. },
  6489. {
  6490. name: "I said NOT",
  6491. height: math.unit(91, "feet")
  6492. },
  6493. {
  6494. name: "Please stop",
  6495. height: math.unit(560, "feet")
  6496. },
  6497. {
  6498. name: "What have you done",
  6499. height: math.unit(2200, "feet")
  6500. },
  6501. {
  6502. name: "Deer God",
  6503. height: math.unit(3.6, "miles")
  6504. },
  6505. ]
  6506. ))
  6507. characterMakers.push(() => makeCharacter(
  6508. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6509. {
  6510. standing: {
  6511. height: math.unit(6, "feet"),
  6512. weight: math.unit(300, "lbs"),
  6513. name: "Standing",
  6514. image: {
  6515. source: "./media/characters/psymon/standing.svg",
  6516. extra: 1888 / 1810,
  6517. bottom: 0.05
  6518. }
  6519. },
  6520. slithering: {
  6521. height: math.unit(6, "feet"),
  6522. weight: math.unit(300, "lbs"),
  6523. name: "Slithering",
  6524. image: {
  6525. source: "./media/characters/psymon/slithering.svg",
  6526. extra: 1330 / 1224
  6527. }
  6528. },
  6529. slitheringAlt: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(300, "lbs"),
  6532. name: "Slithering (Alt)",
  6533. image: {
  6534. source: "./media/characters/psymon/slithering-alt.svg",
  6535. extra: 1330 / 1224
  6536. }
  6537. },
  6538. },
  6539. [
  6540. {
  6541. name: "Normal",
  6542. height: math.unit(11.25, "feet"),
  6543. default: true
  6544. },
  6545. {
  6546. name: "Large",
  6547. height: math.unit(27, "feet")
  6548. },
  6549. {
  6550. name: "Giant",
  6551. height: math.unit(87, "feet")
  6552. },
  6553. {
  6554. name: "Macro",
  6555. height: math.unit(365, "feet")
  6556. },
  6557. {
  6558. name: "Megamacro",
  6559. height: math.unit(3, "miles")
  6560. },
  6561. {
  6562. name: "World Serpent",
  6563. height: math.unit(8000, "miles")
  6564. },
  6565. ]
  6566. ))
  6567. characterMakers.push(() => makeCharacter(
  6568. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6569. {
  6570. front: {
  6571. height: math.unit(6, "feet"),
  6572. weight: math.unit(180, "lbs"),
  6573. name: "Front",
  6574. image: {
  6575. source: "./media/characters/daimos/front.svg",
  6576. extra: 4160 / 3897,
  6577. bottom: 0.021
  6578. }
  6579. }
  6580. },
  6581. [
  6582. {
  6583. name: "Normal",
  6584. height: math.unit(8, "feet"),
  6585. default: true
  6586. },
  6587. {
  6588. name: "Big Dog",
  6589. height: math.unit(22, "feet")
  6590. },
  6591. {
  6592. name: "Macro",
  6593. height: math.unit(127, "feet")
  6594. },
  6595. {
  6596. name: "Megamacro",
  6597. height: math.unit(3600, "feet")
  6598. },
  6599. ]
  6600. ))
  6601. characterMakers.push(() => makeCharacter(
  6602. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6603. {
  6604. side: {
  6605. height: math.unit(6, "feet"),
  6606. weight: math.unit(180, "lbs"),
  6607. name: "Side",
  6608. image: {
  6609. source: "./media/characters/blake/side.svg",
  6610. extra: 1212 / 1120,
  6611. bottom: 0.05
  6612. }
  6613. },
  6614. crouched: {
  6615. height: math.unit(6 * 0.57, "feet"),
  6616. weight: math.unit(180, "lbs"),
  6617. name: "Crouched",
  6618. image: {
  6619. source: "./media/characters/blake/crouched.svg",
  6620. extra: 840 / 587,
  6621. bottom: 0.04
  6622. }
  6623. },
  6624. bent: {
  6625. height: math.unit(6 * 0.75, "feet"),
  6626. weight: math.unit(180, "lbs"),
  6627. name: "Bent",
  6628. image: {
  6629. source: "./media/characters/blake/bent.svg",
  6630. extra: 592 / 544,
  6631. bottom: 0.035
  6632. }
  6633. },
  6634. },
  6635. [
  6636. {
  6637. name: "Normal",
  6638. height: math.unit(8 + 1 / 6, "feet"),
  6639. default: true
  6640. },
  6641. {
  6642. name: "Big Backside",
  6643. height: math.unit(37, "feet")
  6644. },
  6645. {
  6646. name: "Subway Shredder",
  6647. height: math.unit(72, "feet")
  6648. },
  6649. {
  6650. name: "City Carver",
  6651. height: math.unit(1675, "feet")
  6652. },
  6653. {
  6654. name: "Tectonic Tweaker",
  6655. height: math.unit(2300, "miles")
  6656. },
  6657. ]
  6658. ))
  6659. characterMakers.push(() => makeCharacter(
  6660. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6661. {
  6662. front: {
  6663. height: math.unit(6, "feet"),
  6664. weight: math.unit(180, "lbs"),
  6665. name: "Front",
  6666. image: {
  6667. source: "./media/characters/guisetto/front.svg",
  6668. extra: 856 / 817,
  6669. bottom: 0.06
  6670. }
  6671. },
  6672. airborne: {
  6673. height: math.unit(6, "feet"),
  6674. weight: math.unit(180, "lbs"),
  6675. name: "Airborne",
  6676. image: {
  6677. source: "./media/characters/guisetto/airborne.svg",
  6678. extra: 584 / 525
  6679. }
  6680. },
  6681. },
  6682. [
  6683. {
  6684. name: "Normal",
  6685. height: math.unit(10 + 11 / 12, "feet"),
  6686. default: true
  6687. },
  6688. {
  6689. name: "Large",
  6690. height: math.unit(35, "feet")
  6691. },
  6692. {
  6693. name: "Macro",
  6694. height: math.unit(475, "feet")
  6695. },
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Luxor", species: ["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/luxor/front.svg",
  6707. extra: 2940 / 2152
  6708. }
  6709. },
  6710. back: {
  6711. height: math.unit(6, "feet"),
  6712. weight: math.unit(180, "lbs"),
  6713. name: "Back",
  6714. image: {
  6715. source: "./media/characters/luxor/back.svg",
  6716. extra: 1083 / 960
  6717. }
  6718. },
  6719. },
  6720. [
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(5 + 5 / 6, "feet"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Lamp",
  6728. height: math.unit(50, "feet")
  6729. },
  6730. {
  6731. name: "Lämp",
  6732. height: math.unit(300, "feet")
  6733. },
  6734. {
  6735. name: "The sun is a lamp",
  6736. height: math.unit(250000, "miles")
  6737. },
  6738. ]
  6739. ))
  6740. characterMakers.push(() => makeCharacter(
  6741. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6742. {
  6743. front: {
  6744. height: math.unit(6, "feet"),
  6745. weight: math.unit(50, "lbs"),
  6746. name: "Front",
  6747. image: {
  6748. source: "./media/characters/huoyan/front.svg"
  6749. }
  6750. },
  6751. side: {
  6752. height: math.unit(6, "feet"),
  6753. weight: math.unit(180, "lbs"),
  6754. name: "Side",
  6755. image: {
  6756. source: "./media/characters/huoyan/side.svg"
  6757. }
  6758. },
  6759. },
  6760. [
  6761. {
  6762. name: "Chef",
  6763. height: math.unit(9, "feet")
  6764. },
  6765. {
  6766. name: "Normal",
  6767. height: math.unit(65, "feet"),
  6768. default: true
  6769. },
  6770. {
  6771. name: "Macro",
  6772. height: math.unit(780, "feet")
  6773. },
  6774. {
  6775. name: "Flaming Mountain",
  6776. height: math.unit(4.8, "miles")
  6777. },
  6778. {
  6779. name: "Celestial",
  6780. height: math.unit(765000, "miles")
  6781. },
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(5 + 3 / 4, "feet"),
  6789. weight: math.unit(120, "lbs"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/tails/front.svg"
  6793. }
  6794. }
  6795. },
  6796. [
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(5 + 3 / 4, "feet"),
  6800. default: true
  6801. }
  6802. ]
  6803. ))
  6804. characterMakers.push(() => makeCharacter(
  6805. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6806. {
  6807. front: {
  6808. height: math.unit(4, "feet"),
  6809. weight: math.unit(50, "lbs"),
  6810. name: "Front",
  6811. image: {
  6812. source: "./media/characters/rainy/front.svg"
  6813. }
  6814. }
  6815. },
  6816. [
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(800, "feet"),
  6820. default: true
  6821. }
  6822. ]
  6823. ))
  6824. characterMakers.push(() => makeCharacter(
  6825. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6826. {
  6827. front: {
  6828. height: math.unit(6, "feet"),
  6829. weight: math.unit(150, "lbs"),
  6830. name: "Front",
  6831. image: {
  6832. source: "./media/characters/rainier/front.svg"
  6833. }
  6834. }
  6835. },
  6836. [
  6837. {
  6838. name: "Micro",
  6839. height: math.unit(2, "mm"),
  6840. default: true
  6841. }
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(8 + 4/12, "feet"),
  6849. weight: math.unit(450, "kilograms"),
  6850. volume: math.unit(5, "cups"),
  6851. name: "Front",
  6852. image: {
  6853. source: "./media/characters/andy-renard/front.svg",
  6854. extra: 1839/1726,
  6855. bottom: 134/1973
  6856. }
  6857. },
  6858. back: {
  6859. height: math.unit(8 + 4/12, "feet"),
  6860. weight: math.unit(450, "kilograms"),
  6861. volume: math.unit(5, "cups"),
  6862. name: "Back",
  6863. image: {
  6864. source: "./media/characters/andy-renard/back.svg",
  6865. extra: 1838/1710,
  6866. bottom: 105/1943
  6867. }
  6868. },
  6869. },
  6870. [
  6871. {
  6872. name: "Tall",
  6873. height: math.unit(8 + 4/12, "feet")
  6874. },
  6875. {
  6876. name: "Mini Macro",
  6877. height: math.unit(15, "feet"),
  6878. default: true
  6879. },
  6880. {
  6881. name: "Macro",
  6882. height: math.unit(100, "feet")
  6883. },
  6884. {
  6885. name: "Mega Macro",
  6886. height: math.unit(1000, "feet")
  6887. },
  6888. {
  6889. name: "Giga Macro",
  6890. height: math.unit(10, "miles")
  6891. },
  6892. {
  6893. name: "God Macro",
  6894. height: math.unit(1, "multiverse")
  6895. },
  6896. ]
  6897. ))
  6898. characterMakers.push(() => makeCharacter(
  6899. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6900. {
  6901. front: {
  6902. height: math.unit(6, "feet"),
  6903. weight: math.unit(210, "lbs"),
  6904. name: "Front",
  6905. image: {
  6906. source: "./media/characters/cimmaron/front-sfw.svg",
  6907. extra: 701 / 676,
  6908. bottom: 0.046
  6909. }
  6910. },
  6911. back: {
  6912. height: math.unit(6, "feet"),
  6913. weight: math.unit(210, "lbs"),
  6914. name: "Back",
  6915. image: {
  6916. source: "./media/characters/cimmaron/back-sfw.svg",
  6917. extra: 701 / 676,
  6918. bottom: 0.046
  6919. }
  6920. },
  6921. frontNsfw: {
  6922. height: math.unit(6, "feet"),
  6923. weight: math.unit(210, "lbs"),
  6924. name: "Front (NSFW)",
  6925. image: {
  6926. source: "./media/characters/cimmaron/front-nsfw.svg",
  6927. extra: 701 / 676,
  6928. bottom: 0.046
  6929. }
  6930. },
  6931. backNsfw: {
  6932. height: math.unit(6, "feet"),
  6933. weight: math.unit(210, "lbs"),
  6934. name: "Back (NSFW)",
  6935. image: {
  6936. source: "./media/characters/cimmaron/back-nsfw.svg",
  6937. extra: 701 / 676,
  6938. bottom: 0.046
  6939. }
  6940. },
  6941. dick: {
  6942. height: math.unit(1.714, "feet"),
  6943. name: "Dick",
  6944. image: {
  6945. source: "./media/characters/cimmaron/dick.svg"
  6946. }
  6947. },
  6948. },
  6949. [
  6950. {
  6951. name: "Normal",
  6952. height: math.unit(6, "feet"),
  6953. default: true
  6954. },
  6955. {
  6956. name: "Macro Mayor",
  6957. height: math.unit(350, "meters")
  6958. },
  6959. ]
  6960. ))
  6961. characterMakers.push(() => makeCharacter(
  6962. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6963. {
  6964. front: {
  6965. height: math.unit(6, "feet"),
  6966. weight: math.unit(200, "lbs"),
  6967. name: "Front",
  6968. image: {
  6969. source: "./media/characters/akari/front.svg",
  6970. extra: 962 / 901,
  6971. bottom: 0.04
  6972. }
  6973. }
  6974. },
  6975. [
  6976. {
  6977. name: "Micro",
  6978. height: math.unit(5, "inches"),
  6979. default: true
  6980. },
  6981. {
  6982. name: "Normal",
  6983. height: math.unit(7, "feet")
  6984. },
  6985. ]
  6986. ))
  6987. characterMakers.push(() => makeCharacter(
  6988. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  6989. {
  6990. front: {
  6991. height: math.unit(6, "feet"),
  6992. weight: math.unit(140, "lbs"),
  6993. name: "Front",
  6994. image: {
  6995. source: "./media/characters/cynosura/front.svg",
  6996. extra: 437/410,
  6997. bottom: 9/446
  6998. }
  6999. },
  7000. back: {
  7001. height: math.unit(6, "feet"),
  7002. weight: math.unit(140, "lbs"),
  7003. name: "Back",
  7004. image: {
  7005. source: "./media/characters/cynosura/back.svg",
  7006. extra: 1304/1160,
  7007. bottom: 71/1375
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "Micro",
  7014. height: math.unit(4, "inches")
  7015. },
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(5.75, "feet"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Tall",
  7023. height: math.unit(10, "feet")
  7024. },
  7025. {
  7026. name: "Big",
  7027. height: math.unit(20, "feet")
  7028. },
  7029. {
  7030. name: "Macro",
  7031. height: math.unit(50, "feet")
  7032. },
  7033. ]
  7034. ))
  7035. characterMakers.push(() => makeCharacter(
  7036. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7037. {
  7038. front: {
  7039. height: math.unit(13 + 2/12, "feet"),
  7040. weight: math.unit(800, "kg"),
  7041. name: "Front",
  7042. image: {
  7043. source: "./media/characters/gin/front.svg",
  7044. extra: 1312/1191,
  7045. bottom: 45/1357
  7046. }
  7047. },
  7048. mouth: {
  7049. height: math.unit(2.39 * 1.8, "feet"),
  7050. name: "Mouth",
  7051. image: {
  7052. source: "./media/characters/gin/mouth.svg"
  7053. }
  7054. },
  7055. hand: {
  7056. height: math.unit(1.57 * 2.19, "feet"),
  7057. name: "Hand",
  7058. image: {
  7059. source: "./media/characters/gin/hand.svg"
  7060. }
  7061. },
  7062. foot: {
  7063. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7064. name: "Foot",
  7065. image: {
  7066. source: "./media/characters/gin/foot.svg"
  7067. }
  7068. },
  7069. sole: {
  7070. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7071. name: "Sole",
  7072. image: {
  7073. source: "./media/characters/gin/sole.svg"
  7074. }
  7075. },
  7076. },
  7077. [
  7078. {
  7079. name: "Very Small",
  7080. height: math.unit(13 + 2 / 12, "feet")
  7081. },
  7082. {
  7083. name: "Micro",
  7084. height: math.unit(600, "miles")
  7085. },
  7086. {
  7087. name: "Regular",
  7088. height: math.unit(20, "earths"),
  7089. default: true
  7090. },
  7091. {
  7092. name: "Macro",
  7093. height: math.unit(2.2, "solarradii")
  7094. },
  7095. {
  7096. name: "Teramacro",
  7097. height: math.unit(1.2, "galaxies")
  7098. },
  7099. {
  7100. name: "Omegamacro",
  7101. height: math.unit(200, "universes")
  7102. },
  7103. ]
  7104. ))
  7105. characterMakers.push(() => makeCharacter(
  7106. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7107. {
  7108. front: {
  7109. height: math.unit(6 + 1 / 6, "feet"),
  7110. weight: math.unit(178, "lbs"),
  7111. name: "Front",
  7112. image: {
  7113. source: "./media/characters/guy/front.svg"
  7114. }
  7115. }
  7116. },
  7117. [
  7118. {
  7119. name: "Normal",
  7120. height: math.unit(6 + 1 / 6, "feet"),
  7121. default: true
  7122. },
  7123. {
  7124. name: "Large",
  7125. height: math.unit(25 + 7 / 12, "feet")
  7126. },
  7127. {
  7128. name: "Macro",
  7129. height: math.unit(60 + 9 / 12, "feet")
  7130. },
  7131. {
  7132. name: "Macro+",
  7133. height: math.unit(246, "feet")
  7134. },
  7135. {
  7136. name: "Macro++",
  7137. height: math.unit(878, "feet")
  7138. }
  7139. ]
  7140. ))
  7141. characterMakers.push(() => makeCharacter(
  7142. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7143. {
  7144. front: {
  7145. height: math.unit(9, "feet"),
  7146. weight: math.unit(800, "lbs"),
  7147. name: "Front",
  7148. image: {
  7149. source: "./media/characters/tiberius/front.svg",
  7150. extra: 2295 / 2071
  7151. }
  7152. },
  7153. back: {
  7154. height: math.unit(9, "feet"),
  7155. weight: math.unit(800, "lbs"),
  7156. name: "Back",
  7157. image: {
  7158. source: "./media/characters/tiberius/back.svg",
  7159. extra: 2373 / 2160
  7160. }
  7161. },
  7162. },
  7163. [
  7164. {
  7165. name: "Normal",
  7166. height: math.unit(9, "feet"),
  7167. default: true
  7168. }
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7173. {
  7174. front: {
  7175. height: math.unit(6, "feet"),
  7176. weight: math.unit(600, "lbs"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/surgo/front.svg",
  7180. extra: 3591 / 2227
  7181. }
  7182. },
  7183. back: {
  7184. height: math.unit(6, "feet"),
  7185. weight: math.unit(600, "lbs"),
  7186. name: "Back",
  7187. image: {
  7188. source: "./media/characters/surgo/back.svg",
  7189. extra: 3557 / 2228
  7190. }
  7191. },
  7192. laying: {
  7193. height: math.unit(6 * 0.85, "feet"),
  7194. weight: math.unit(600, "lbs"),
  7195. name: "Laying",
  7196. image: {
  7197. source: "./media/characters/surgo/laying.svg"
  7198. }
  7199. },
  7200. },
  7201. [
  7202. {
  7203. name: "Normal",
  7204. height: math.unit(6, "feet"),
  7205. default: true
  7206. }
  7207. ]
  7208. ))
  7209. characterMakers.push(() => makeCharacter(
  7210. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7211. {
  7212. side: {
  7213. height: math.unit(6, "feet"),
  7214. weight: math.unit(150, "lbs"),
  7215. name: "Side",
  7216. image: {
  7217. source: "./media/characters/cibus/side.svg",
  7218. extra: 800 / 400
  7219. }
  7220. },
  7221. },
  7222. [
  7223. {
  7224. name: "Normal",
  7225. height: math.unit(6, "feet"),
  7226. default: true
  7227. }
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(6, "feet"),
  7235. weight: math.unit(240, "lbs"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/nibbles/front.svg"
  7239. }
  7240. },
  7241. side: {
  7242. height: math.unit(6, "feet"),
  7243. weight: math.unit(240, "lbs"),
  7244. name: "Side",
  7245. image: {
  7246. source: "./media/characters/nibbles/side.svg"
  7247. }
  7248. },
  7249. },
  7250. [
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(9, "feet"),
  7254. default: true
  7255. }
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7260. {
  7261. side: {
  7262. height: math.unit(5 + 1 / 6, "feet"),
  7263. weight: math.unit(130, "lbs"),
  7264. name: "Side",
  7265. image: {
  7266. source: "./media/characters/rikky/side.svg",
  7267. extra: 851 / 801
  7268. }
  7269. },
  7270. },
  7271. [
  7272. {
  7273. name: "Normal",
  7274. height: math.unit(5 + 1 / 6, "feet")
  7275. },
  7276. {
  7277. name: "Macro",
  7278. height: math.unit(152, "feet"),
  7279. default: true
  7280. },
  7281. {
  7282. name: "Megamacro",
  7283. height: math.unit(7, "miles")
  7284. }
  7285. ]
  7286. ))
  7287. characterMakers.push(() => makeCharacter(
  7288. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7289. {
  7290. side: {
  7291. height: math.unit(370, "cm"),
  7292. weight: math.unit(350, "lbs"),
  7293. name: "Side",
  7294. image: {
  7295. source: "./media/characters/malfressa/side.svg"
  7296. }
  7297. },
  7298. walking: {
  7299. height: math.unit(370, "cm"),
  7300. weight: math.unit(350, "lbs"),
  7301. name: "Walking",
  7302. image: {
  7303. source: "./media/characters/malfressa/walking.svg"
  7304. }
  7305. },
  7306. feral: {
  7307. height: math.unit(2500, "cm"),
  7308. weight: math.unit(100000, "lbs"),
  7309. name: "Feral",
  7310. image: {
  7311. source: "./media/characters/malfressa/feral.svg",
  7312. extra: 2108 / 837,
  7313. bottom: 0.02
  7314. }
  7315. },
  7316. },
  7317. [
  7318. {
  7319. name: "Normal",
  7320. height: math.unit(370, "cm")
  7321. },
  7322. {
  7323. name: "Macro",
  7324. height: math.unit(300, "meters"),
  7325. default: true
  7326. }
  7327. ]
  7328. ))
  7329. characterMakers.push(() => makeCharacter(
  7330. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7331. {
  7332. front: {
  7333. height: math.unit(6, "feet"),
  7334. weight: math.unit(60, "kg"),
  7335. name: "Front",
  7336. image: {
  7337. source: "./media/characters/jaro/front.svg",
  7338. extra: 845/817,
  7339. bottom: 45/890
  7340. }
  7341. },
  7342. back: {
  7343. height: math.unit(6, "feet"),
  7344. weight: math.unit(60, "kg"),
  7345. name: "Back",
  7346. image: {
  7347. source: "./media/characters/jaro/back.svg",
  7348. extra: 847/817,
  7349. bottom: 34/881
  7350. }
  7351. },
  7352. },
  7353. [
  7354. {
  7355. name: "Micro",
  7356. height: math.unit(7, "inches")
  7357. },
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(5.5, "feet"),
  7361. default: true
  7362. },
  7363. {
  7364. name: "Minimacro",
  7365. height: math.unit(20, "feet")
  7366. },
  7367. {
  7368. name: "Macro",
  7369. height: math.unit(200, "meters")
  7370. }
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(6, "feet"),
  7378. weight: math.unit(195, "lb"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/rogue/front.svg"
  7382. }
  7383. },
  7384. },
  7385. [
  7386. {
  7387. name: "Macro",
  7388. height: math.unit(90, "feet"),
  7389. default: true
  7390. },
  7391. ]
  7392. ))
  7393. characterMakers.push(() => makeCharacter(
  7394. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7395. {
  7396. standing: {
  7397. height: math.unit(5 + 8 / 12, "feet"),
  7398. weight: math.unit(140, "lb"),
  7399. name: "Standing",
  7400. image: {
  7401. source: "./media/characters/piper/standing.svg",
  7402. extra: 1440/1284,
  7403. bottom: 66/1506
  7404. }
  7405. },
  7406. running: {
  7407. height: math.unit(5 + 8 / 12, "feet"),
  7408. weight: math.unit(140, "lb"),
  7409. name: "Running",
  7410. image: {
  7411. source: "./media/characters/piper/running.svg",
  7412. extra: 3948/3655,
  7413. bottom: 0/3948
  7414. }
  7415. },
  7416. sole: {
  7417. height: math.unit(0.81, "feet"),
  7418. weight: math.unit(2, "kg"),
  7419. name: "Sole",
  7420. image: {
  7421. source: "./media/characters/piper/sole.svg"
  7422. }
  7423. },
  7424. nipple: {
  7425. height: math.unit(0.25, "feet"),
  7426. weight: math.unit(1.5, "lb"),
  7427. name: "Nipple",
  7428. image: {
  7429. source: "./media/characters/piper/nipple.svg"
  7430. }
  7431. },
  7432. head: {
  7433. height: math.unit(1.1, "feet"),
  7434. name: "Head",
  7435. image: {
  7436. source: "./media/characters/piper/head.svg"
  7437. }
  7438. },
  7439. },
  7440. [
  7441. {
  7442. name: "Micro",
  7443. height: math.unit(2, "inches")
  7444. },
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(5 + 8 / 12, "feet")
  7448. },
  7449. {
  7450. name: "Macro",
  7451. height: math.unit(250, "feet"),
  7452. default: true
  7453. },
  7454. {
  7455. name: "Megamacro",
  7456. height: math.unit(7, "miles")
  7457. },
  7458. ]
  7459. ))
  7460. characterMakers.push(() => makeCharacter(
  7461. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7462. {
  7463. front: {
  7464. height: math.unit(6, "feet"),
  7465. weight: math.unit(220, "lb"),
  7466. name: "Front",
  7467. image: {
  7468. source: "./media/characters/gemini/front.svg"
  7469. }
  7470. },
  7471. back: {
  7472. height: math.unit(6, "feet"),
  7473. weight: math.unit(220, "lb"),
  7474. name: "Back",
  7475. image: {
  7476. source: "./media/characters/gemini/back.svg"
  7477. }
  7478. },
  7479. kneeling: {
  7480. height: math.unit(6 / 1.5, "feet"),
  7481. weight: math.unit(220, "lb"),
  7482. name: "Kneeling",
  7483. image: {
  7484. source: "./media/characters/gemini/kneeling.svg",
  7485. bottom: 0.02
  7486. }
  7487. },
  7488. },
  7489. [
  7490. {
  7491. name: "Macro",
  7492. height: math.unit(300, "meters"),
  7493. default: true
  7494. },
  7495. {
  7496. name: "Megamacro",
  7497. height: math.unit(6900, "meters")
  7498. },
  7499. ]
  7500. ))
  7501. characterMakers.push(() => makeCharacter(
  7502. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7503. {
  7504. anthro: {
  7505. height: math.unit(2.35, "meters"),
  7506. weight: math.unit(73, "kg"),
  7507. name: "Anthro",
  7508. image: {
  7509. source: "./media/characters/alicia/anthro.svg",
  7510. extra: 2571 / 2385,
  7511. bottom: 75 / 2648
  7512. }
  7513. },
  7514. paw: {
  7515. height: math.unit(1.32, "feet"),
  7516. name: "Paw",
  7517. image: {
  7518. source: "./media/characters/alicia/paw.svg"
  7519. }
  7520. },
  7521. feral: {
  7522. height: math.unit(1.69, "meters"),
  7523. weight: math.unit(73, "kg"),
  7524. name: "Feral",
  7525. image: {
  7526. source: "./media/characters/alicia/feral.svg",
  7527. extra: 2123 / 1715,
  7528. bottom: 222 / 2349
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Normal",
  7535. height: math.unit(2.35, "meters")
  7536. },
  7537. {
  7538. name: "Macro",
  7539. height: math.unit(60, "meters"),
  7540. default: true
  7541. },
  7542. {
  7543. name: "Megamacro",
  7544. height: math.unit(10000, "kilometers")
  7545. },
  7546. ]
  7547. ))
  7548. characterMakers.push(() => makeCharacter(
  7549. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7550. {
  7551. front: {
  7552. height: math.unit(7, "feet"),
  7553. weight: math.unit(250, "lbs"),
  7554. name: "Front",
  7555. image: {
  7556. source: "./media/characters/archy/front.svg"
  7557. }
  7558. }
  7559. },
  7560. [
  7561. {
  7562. name: "Micro",
  7563. height: math.unit(1, "inch")
  7564. },
  7565. {
  7566. name: "Shorty",
  7567. height: math.unit(5, "feet")
  7568. },
  7569. {
  7570. name: "Normal",
  7571. height: math.unit(7, "feet")
  7572. },
  7573. {
  7574. name: "Macro",
  7575. height: math.unit(600, "meters"),
  7576. default: true
  7577. },
  7578. {
  7579. name: "Megamacro",
  7580. height: math.unit(1, "mile")
  7581. },
  7582. ]
  7583. ))
  7584. characterMakers.push(() => makeCharacter(
  7585. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7586. {
  7587. front: {
  7588. height: math.unit(1.65, "meters"),
  7589. weight: math.unit(74, "kg"),
  7590. name: "Front",
  7591. image: {
  7592. source: "./media/characters/berri/front.svg",
  7593. extra: 857 / 837,
  7594. bottom: 18 / 877
  7595. }
  7596. },
  7597. bum: {
  7598. height: math.unit(1.46, "feet"),
  7599. name: "Bum",
  7600. image: {
  7601. source: "./media/characters/berri/bum.svg"
  7602. }
  7603. },
  7604. mouth: {
  7605. height: math.unit(0.44, "feet"),
  7606. name: "Mouth",
  7607. image: {
  7608. source: "./media/characters/berri/mouth.svg"
  7609. }
  7610. },
  7611. paw: {
  7612. height: math.unit(0.826, "feet"),
  7613. name: "Paw",
  7614. image: {
  7615. source: "./media/characters/berri/paw.svg"
  7616. }
  7617. },
  7618. },
  7619. [
  7620. {
  7621. name: "Normal",
  7622. height: math.unit(1.65, "meters")
  7623. },
  7624. {
  7625. name: "Macro",
  7626. height: math.unit(60, "m"),
  7627. default: true
  7628. },
  7629. {
  7630. name: "Megamacro",
  7631. height: math.unit(9.213, "km")
  7632. },
  7633. {
  7634. name: "Planet Eater",
  7635. height: math.unit(489, "megameters")
  7636. },
  7637. {
  7638. name: "Teramacro",
  7639. height: math.unit(2471635000000, "meters")
  7640. },
  7641. {
  7642. name: "Examacro",
  7643. height: math.unit(8.0624e+26, "meters")
  7644. }
  7645. ]
  7646. ))
  7647. characterMakers.push(() => makeCharacter(
  7648. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7649. {
  7650. front: {
  7651. height: math.unit(1.72, "meters"),
  7652. weight: math.unit(68, "kg"),
  7653. name: "Front",
  7654. image: {
  7655. source: "./media/characters/lexi/front.svg"
  7656. }
  7657. }
  7658. },
  7659. [
  7660. {
  7661. name: "Very Smol",
  7662. height: math.unit(10, "mm")
  7663. },
  7664. {
  7665. name: "Micro",
  7666. height: math.unit(6.8, "cm"),
  7667. default: true
  7668. },
  7669. {
  7670. name: "Normal",
  7671. height: math.unit(1.72, "m")
  7672. }
  7673. ]
  7674. ))
  7675. characterMakers.push(() => makeCharacter(
  7676. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7677. {
  7678. front: {
  7679. height: math.unit(1.69, "meters"),
  7680. weight: math.unit(68, "kg"),
  7681. name: "Front",
  7682. image: {
  7683. source: "./media/characters/martin/front.svg",
  7684. extra: 596 / 581
  7685. }
  7686. }
  7687. },
  7688. [
  7689. {
  7690. name: "Micro",
  7691. height: math.unit(6.85, "cm"),
  7692. default: true
  7693. },
  7694. {
  7695. name: "Normal",
  7696. height: math.unit(1.69, "m")
  7697. }
  7698. ]
  7699. ))
  7700. characterMakers.push(() => makeCharacter(
  7701. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7702. {
  7703. front: {
  7704. height: math.unit(1.69, "meters"),
  7705. weight: math.unit(68, "kg"),
  7706. name: "Front",
  7707. image: {
  7708. source: "./media/characters/juno/front.svg"
  7709. }
  7710. }
  7711. },
  7712. [
  7713. {
  7714. name: "Micro",
  7715. height: math.unit(7, "cm")
  7716. },
  7717. {
  7718. name: "Normal",
  7719. height: math.unit(1.89, "m")
  7720. },
  7721. {
  7722. name: "Macro",
  7723. height: math.unit(353, "meters"),
  7724. default: true
  7725. }
  7726. ]
  7727. ))
  7728. characterMakers.push(() => makeCharacter(
  7729. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7730. {
  7731. front: {
  7732. height: math.unit(1.93, "meters"),
  7733. weight: math.unit(83, "kg"),
  7734. name: "Front",
  7735. image: {
  7736. source: "./media/characters/samantha/front.svg"
  7737. }
  7738. },
  7739. frontClothed: {
  7740. height: math.unit(1.93, "meters"),
  7741. weight: math.unit(83, "kg"),
  7742. name: "Front (Clothed)",
  7743. image: {
  7744. source: "./media/characters/samantha/front-clothed.svg"
  7745. }
  7746. },
  7747. back: {
  7748. height: math.unit(1.93, "meters"),
  7749. weight: math.unit(83, "kg"),
  7750. name: "Back",
  7751. image: {
  7752. source: "./media/characters/samantha/back.svg"
  7753. }
  7754. },
  7755. },
  7756. [
  7757. {
  7758. name: "Normal",
  7759. height: math.unit(1.93, "m")
  7760. },
  7761. {
  7762. name: "Macro",
  7763. height: math.unit(74, "meters"),
  7764. default: true
  7765. },
  7766. {
  7767. name: "Macro+",
  7768. height: math.unit(223, "meters"),
  7769. },
  7770. {
  7771. name: "Megamacro",
  7772. height: math.unit(8381, "meters"),
  7773. },
  7774. {
  7775. name: "Megamacro+",
  7776. height: math.unit(12000, "kilometers")
  7777. },
  7778. ]
  7779. ))
  7780. characterMakers.push(() => makeCharacter(
  7781. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7782. {
  7783. front: {
  7784. height: math.unit(1.92, "meters"),
  7785. weight: math.unit(80, "kg"),
  7786. name: "Front",
  7787. image: {
  7788. source: "./media/characters/dr-clay/front.svg"
  7789. }
  7790. },
  7791. frontClothed: {
  7792. height: math.unit(1.92, "meters"),
  7793. weight: math.unit(80, "kg"),
  7794. name: "Front (Clothed)",
  7795. image: {
  7796. source: "./media/characters/dr-clay/front-clothed.svg"
  7797. }
  7798. }
  7799. },
  7800. [
  7801. {
  7802. name: "Normal",
  7803. height: math.unit(1.92, "m")
  7804. },
  7805. {
  7806. name: "Macro",
  7807. height: math.unit(214, "meters"),
  7808. default: true
  7809. },
  7810. {
  7811. name: "Macro+",
  7812. height: math.unit(12.237, "meters"),
  7813. },
  7814. {
  7815. name: "Megamacro",
  7816. height: math.unit(557, "megameters"),
  7817. },
  7818. {
  7819. name: "Unimaginable",
  7820. height: math.unit(120e9, "lightyears")
  7821. },
  7822. ]
  7823. ))
  7824. characterMakers.push(() => makeCharacter(
  7825. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7826. {
  7827. front: {
  7828. height: math.unit(2, "meters"),
  7829. weight: math.unit(80, "kg"),
  7830. name: "Front",
  7831. image: {
  7832. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7833. }
  7834. }
  7835. },
  7836. [
  7837. {
  7838. name: "Teramacro",
  7839. height: math.unit(500000, "lightyears"),
  7840. default: true
  7841. },
  7842. ]
  7843. ))
  7844. characterMakers.push(() => makeCharacter(
  7845. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7846. {
  7847. crux: {
  7848. height: math.unit(2, "meters"),
  7849. weight: math.unit(150, "kg"),
  7850. name: "Crux",
  7851. image: {
  7852. source: "./media/characters/vemus/crux.svg",
  7853. extra: 1074/936,
  7854. bottom: 23/1097
  7855. }
  7856. },
  7857. skunkTanuki: {
  7858. height: math.unit(2, "meters"),
  7859. weight: math.unit(150, "kg"),
  7860. name: "Skunk-Tanuki",
  7861. image: {
  7862. source: "./media/characters/vemus/skunk-tanuki.svg",
  7863. extra: 926/893,
  7864. bottom: 20/946
  7865. }
  7866. },
  7867. },
  7868. [
  7869. {
  7870. name: "Normal",
  7871. height: math.unit(4, "meters"),
  7872. default: true
  7873. },
  7874. {
  7875. name: "Big",
  7876. height: math.unit(8, "meters")
  7877. },
  7878. {
  7879. name: "Macro",
  7880. height: math.unit(100, "meters")
  7881. },
  7882. {
  7883. name: "Macro+",
  7884. height: math.unit(1500, "meters")
  7885. },
  7886. {
  7887. name: "Stellar",
  7888. height: math.unit(14e8, "meters")
  7889. },
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(2, "meters"),
  7897. weight: math.unit(70, "kg"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/beherit/front.svg",
  7901. extra: 1234/1109,
  7902. bottom: 55/1289
  7903. }
  7904. }
  7905. },
  7906. [
  7907. {
  7908. name: "Normal",
  7909. height: math.unit(6, "feet")
  7910. },
  7911. {
  7912. name: "Lorg",
  7913. height: math.unit(25, "feet"),
  7914. default: true
  7915. },
  7916. {
  7917. name: "Lorger",
  7918. height: math.unit(75, "feet")
  7919. },
  7920. {
  7921. name: "Macro",
  7922. height: math.unit(200, "meters")
  7923. },
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7928. {
  7929. front: {
  7930. height: math.unit(2, "meters"),
  7931. weight: math.unit(150, "kg"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/everett/front.svg",
  7935. extra: 1017/866,
  7936. bottom: 86/1103
  7937. }
  7938. },
  7939. paw: {
  7940. height: math.unit(2 / 3.6, "meters"),
  7941. name: "Paw",
  7942. image: {
  7943. source: "./media/characters/everett/paw.svg"
  7944. }
  7945. },
  7946. },
  7947. [
  7948. {
  7949. name: "Normal",
  7950. height: math.unit(15, "feet"),
  7951. default: true
  7952. },
  7953. {
  7954. name: "Lorg",
  7955. height: math.unit(70, "feet"),
  7956. default: true
  7957. },
  7958. {
  7959. name: "Lorger",
  7960. height: math.unit(250, "feet")
  7961. },
  7962. {
  7963. name: "Macro",
  7964. height: math.unit(500, "meters")
  7965. },
  7966. ]
  7967. ))
  7968. characterMakers.push(() => makeCharacter(
  7969. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7970. {
  7971. front: {
  7972. height: math.unit(2, "meters"),
  7973. weight: math.unit(86, "kg"),
  7974. name: "Front",
  7975. image: {
  7976. source: "./media/characters/rose/front.svg",
  7977. extra: 1785/1636,
  7978. bottom: 30/1815
  7979. },
  7980. form: "liom",
  7981. default: true
  7982. },
  7983. frontSporty: {
  7984. height: math.unit(2, "meters"),
  7985. weight: math.unit(86, "kg"),
  7986. name: "Front (Sporty)",
  7987. image: {
  7988. source: "./media/characters/rose/front-sporty.svg",
  7989. extra: 350/335,
  7990. bottom: 10/360
  7991. },
  7992. form: "liom"
  7993. },
  7994. frontAlt: {
  7995. height: math.unit(1.6, "meters"),
  7996. weight: math.unit(86, "kg"),
  7997. name: "Front (Alt)",
  7998. image: {
  7999. source: "./media/characters/rose/front-alt.svg",
  8000. extra: 299/283,
  8001. bottom: 3/302
  8002. },
  8003. form: "liom"
  8004. },
  8005. plush: {
  8006. height: math.unit(2, "meters"),
  8007. weight: math.unit(86/3, "kg"),
  8008. name: "Plush",
  8009. image: {
  8010. source: "./media/characters/rose/plush.svg",
  8011. extra: 361/337,
  8012. bottom: 11/372
  8013. },
  8014. form: "plush",
  8015. default: true
  8016. },
  8017. faeStanding: {
  8018. height: math.unit(10, "cm"),
  8019. weight: math.unit(10, "grams"),
  8020. name: "Standing",
  8021. image: {
  8022. source: "./media/characters/rose/fae-standing.svg",
  8023. extra: 1189/1060,
  8024. bottom: 27/1216
  8025. },
  8026. form: "fae",
  8027. default: true
  8028. },
  8029. faeSitting: {
  8030. height: math.unit(5, "cm"),
  8031. weight: math.unit(10, "grams"),
  8032. name: "Sitting",
  8033. image: {
  8034. source: "./media/characters/rose/fae-sitting.svg",
  8035. extra: 737/577,
  8036. bottom: 356/1093
  8037. },
  8038. form: "fae"
  8039. },
  8040. faePaw: {
  8041. height: math.unit(1.35, "cm"),
  8042. name: "Paw",
  8043. image: {
  8044. source: "./media/characters/rose/fae-paw.svg"
  8045. },
  8046. form: "fae"
  8047. },
  8048. },
  8049. [
  8050. {
  8051. name: "True Micro",
  8052. height: math.unit(9, "cm"),
  8053. form: "liom"
  8054. },
  8055. {
  8056. name: "Micro",
  8057. height: math.unit(16, "cm"),
  8058. form: "liom"
  8059. },
  8060. {
  8061. name: "Normal",
  8062. height: math.unit(1.85, "meters"),
  8063. default: true,
  8064. form: "liom"
  8065. },
  8066. {
  8067. name: "Mini-Macro",
  8068. height: math.unit(5, "meters"),
  8069. form: "liom"
  8070. },
  8071. {
  8072. name: "Macro",
  8073. height: math.unit(15, "meters"),
  8074. form: "liom"
  8075. },
  8076. {
  8077. name: "True Macro",
  8078. height: math.unit(40, "meters"),
  8079. form: "liom"
  8080. },
  8081. {
  8082. name: "City Scale",
  8083. height: math.unit(1, "km"),
  8084. form: "liom"
  8085. },
  8086. {
  8087. name: "Plushie",
  8088. height: math.unit(9, "cm"),
  8089. form: "plush",
  8090. default: true
  8091. },
  8092. {
  8093. name: "Fae",
  8094. height: math.unit(10, "cm"),
  8095. form: "fae",
  8096. default: true
  8097. },
  8098. ],
  8099. {
  8100. "liom": {
  8101. name: "Liom"
  8102. },
  8103. "plush": {
  8104. name: "Plush"
  8105. },
  8106. "fae": {
  8107. name: "Fae Fox",
  8108. default: true
  8109. }
  8110. }
  8111. ))
  8112. characterMakers.push(() => makeCharacter(
  8113. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8114. {
  8115. front: {
  8116. height: math.unit(2, "meters"),
  8117. weight: math.unit(350, "lbs"),
  8118. name: "Front",
  8119. image: {
  8120. source: "./media/characters/regal/front.svg"
  8121. }
  8122. },
  8123. back: {
  8124. height: math.unit(2, "meters"),
  8125. weight: math.unit(350, "lbs"),
  8126. name: "Back",
  8127. image: {
  8128. source: "./media/characters/regal/back.svg"
  8129. }
  8130. },
  8131. },
  8132. [
  8133. {
  8134. name: "Macro",
  8135. height: math.unit(350, "feet"),
  8136. default: true
  8137. }
  8138. ]
  8139. ))
  8140. characterMakers.push(() => makeCharacter(
  8141. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8142. {
  8143. standing: {
  8144. height: math.unit(4 + 11/12, "feet"),
  8145. weight: math.unit(100, "lb"),
  8146. name: "Standing",
  8147. image: {
  8148. source: "./media/characters/opal/standing.svg",
  8149. extra: 1588/1513,
  8150. bottom: 23/1611
  8151. }
  8152. },
  8153. sitting: {
  8154. height: math.unit(2.3, "feet"),
  8155. weight: math.unit(100, "lb"),
  8156. name: "Sitting",
  8157. image: {
  8158. source: "./media/characters/opal/sitting.svg",
  8159. extra: 1031/892,
  8160. bottom: 142/1173
  8161. }
  8162. },
  8163. hand: {
  8164. height: math.unit(0.59, "feet"),
  8165. name: "Hand",
  8166. image: {
  8167. source: "./media/characters/opal/hand.svg"
  8168. }
  8169. },
  8170. foot: {
  8171. height: math.unit(0.61, "feet"),
  8172. name: "Foot",
  8173. image: {
  8174. source: "./media/characters/opal/foot.svg"
  8175. }
  8176. },
  8177. },
  8178. [
  8179. {
  8180. name: "Small",
  8181. height: math.unit(4 + 11 / 12, "feet")
  8182. },
  8183. {
  8184. name: "Normal",
  8185. height: math.unit(20, "feet"),
  8186. default: true
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(120, "feet")
  8191. },
  8192. {
  8193. name: "Megamacro",
  8194. height: math.unit(80, "miles")
  8195. },
  8196. {
  8197. name: "True Size",
  8198. height: math.unit(100000, "lightyears")
  8199. },
  8200. ]
  8201. ))
  8202. characterMakers.push(() => makeCharacter(
  8203. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8204. {
  8205. front: {
  8206. height: math.unit(6, "feet"),
  8207. weight: math.unit(200, "lbs"),
  8208. name: "Front",
  8209. image: {
  8210. source: "./media/characters/vector-wuff/front.svg"
  8211. }
  8212. }
  8213. },
  8214. [
  8215. {
  8216. name: "Normal",
  8217. height: math.unit(2.8, "meters")
  8218. },
  8219. {
  8220. name: "Macro",
  8221. height: math.unit(450, "meters"),
  8222. default: true
  8223. },
  8224. {
  8225. name: "Megamacro",
  8226. height: math.unit(15, "kilometers")
  8227. }
  8228. ]
  8229. ))
  8230. characterMakers.push(() => makeCharacter(
  8231. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8232. {
  8233. front: {
  8234. height: math.unit(6, "feet"),
  8235. weight: math.unit(256, "lbs"),
  8236. name: "Front",
  8237. image: {
  8238. source: "./media/characters/dannik/front.svg"
  8239. }
  8240. }
  8241. },
  8242. [
  8243. {
  8244. name: "Macro",
  8245. height: math.unit(69.57, "meters"),
  8246. default: true
  8247. },
  8248. ]
  8249. ))
  8250. characterMakers.push(() => makeCharacter(
  8251. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8252. {
  8253. front: {
  8254. height: math.unit(6, "feet"),
  8255. weight: math.unit(120, "lbs"),
  8256. name: "Front",
  8257. image: {
  8258. source: "./media/characters/azura-saharah/front.svg"
  8259. }
  8260. },
  8261. back: {
  8262. height: math.unit(6, "feet"),
  8263. weight: math.unit(120, "lbs"),
  8264. name: "Back",
  8265. image: {
  8266. source: "./media/characters/azura-saharah/back.svg"
  8267. }
  8268. },
  8269. },
  8270. [
  8271. {
  8272. name: "Macro",
  8273. height: math.unit(100, "feet"),
  8274. default: true
  8275. },
  8276. ]
  8277. ))
  8278. characterMakers.push(() => makeCharacter(
  8279. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8280. {
  8281. side: {
  8282. height: math.unit(5 + 4 / 12, "feet"),
  8283. weight: math.unit(163, "lbs"),
  8284. name: "Side",
  8285. image: {
  8286. source: "./media/characters/kennedy/side.svg"
  8287. }
  8288. }
  8289. },
  8290. [
  8291. {
  8292. name: "Standard Doggo",
  8293. height: math.unit(5 + 4 / 12, "feet")
  8294. },
  8295. {
  8296. name: "Big Doggo",
  8297. height: math.unit(25 + 3 / 12, "feet"),
  8298. default: true
  8299. },
  8300. ]
  8301. ))
  8302. characterMakers.push(() => makeCharacter(
  8303. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8304. {
  8305. front: {
  8306. height: math.unit(5 + 5/12, "feet"),
  8307. weight: math.unit(100, "lbs"),
  8308. name: "Front",
  8309. image: {
  8310. source: "./media/characters/odios-de-lunar/front.svg",
  8311. extra: 1468/1323,
  8312. bottom: 22/1490
  8313. }
  8314. }
  8315. },
  8316. [
  8317. {
  8318. name: "Micro",
  8319. height: math.unit(3, "inches")
  8320. },
  8321. {
  8322. name: "Normal",
  8323. height: math.unit(5.5, "feet"),
  8324. default: true
  8325. },
  8326. {
  8327. name: "Macro",
  8328. height: math.unit(100, "feet")
  8329. },
  8330. ]
  8331. ))
  8332. characterMakers.push(() => makeCharacter(
  8333. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8334. {
  8335. back: {
  8336. height: math.unit(6, "feet"),
  8337. weight: math.unit(220, "lbs"),
  8338. name: "Back",
  8339. image: {
  8340. source: "./media/characters/mandake/back.svg"
  8341. }
  8342. }
  8343. },
  8344. [
  8345. {
  8346. name: "Normal",
  8347. height: math.unit(7, "feet"),
  8348. default: true
  8349. },
  8350. {
  8351. name: "Macro",
  8352. height: math.unit(78, "feet")
  8353. },
  8354. {
  8355. name: "Macro+",
  8356. height: math.unit(300, "meters")
  8357. },
  8358. {
  8359. name: "Macro++",
  8360. height: math.unit(2400, "feet")
  8361. },
  8362. {
  8363. name: "Megamacro",
  8364. height: math.unit(5167, "meters")
  8365. },
  8366. {
  8367. name: "Gigamacro",
  8368. height: math.unit(41769, "miles")
  8369. },
  8370. ]
  8371. ))
  8372. characterMakers.push(() => makeCharacter(
  8373. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8374. {
  8375. front: {
  8376. height: math.unit(6, "feet"),
  8377. weight: math.unit(120, "lbs"),
  8378. name: "Front",
  8379. image: {
  8380. source: "./media/characters/yozey/front.svg"
  8381. }
  8382. },
  8383. frontAlt: {
  8384. height: math.unit(6, "feet"),
  8385. weight: math.unit(120, "lbs"),
  8386. name: "Front (Alt)",
  8387. image: {
  8388. source: "./media/characters/yozey/front-alt.svg"
  8389. }
  8390. },
  8391. side: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(120, "lbs"),
  8394. name: "Side",
  8395. image: {
  8396. source: "./media/characters/yozey/side.svg"
  8397. }
  8398. },
  8399. },
  8400. [
  8401. {
  8402. name: "Micro",
  8403. height: math.unit(3, "inches"),
  8404. default: true
  8405. },
  8406. {
  8407. name: "Normal",
  8408. height: math.unit(6, "feet")
  8409. }
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(6, "feet"),
  8417. weight: math.unit(103, "lbs"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/valeska-voss/front.svg"
  8421. }
  8422. }
  8423. },
  8424. [
  8425. {
  8426. name: "Mini-Sized Sub",
  8427. height: math.unit(3.1, "inches")
  8428. },
  8429. {
  8430. name: "Mid-Sized Sub",
  8431. height: math.unit(6.2, "inches")
  8432. },
  8433. {
  8434. name: "Full-Sized Sub",
  8435. height: math.unit(9.3, "inches")
  8436. },
  8437. {
  8438. name: "Normal",
  8439. height: math.unit(5 + 2 / 12, "foot"),
  8440. default: true
  8441. },
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(6, "feet"),
  8449. weight: math.unit(160, "lbs"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/gene-zeta/front.svg",
  8453. extra: 3006 / 2826,
  8454. bottom: 182 / 3188
  8455. }
  8456. }
  8457. },
  8458. [
  8459. {
  8460. name: "Micro",
  8461. height: math.unit(6, "inches")
  8462. },
  8463. {
  8464. name: "Normal",
  8465. height: math.unit(5 + 11 / 12, "foot"),
  8466. default: true
  8467. },
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(140, "feet")
  8471. },
  8472. {
  8473. name: "Supercharged",
  8474. height: math.unit(2500, "feet")
  8475. },
  8476. ]
  8477. ))
  8478. characterMakers.push(() => makeCharacter(
  8479. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8480. {
  8481. front: {
  8482. height: math.unit(6, "feet"),
  8483. weight: math.unit(350, "lbs"),
  8484. name: "Front",
  8485. image: {
  8486. source: "./media/characters/razinox/front.svg",
  8487. extra: 1686 / 1548,
  8488. bottom: 28.2 / 1868
  8489. }
  8490. },
  8491. back: {
  8492. height: math.unit(6, "feet"),
  8493. weight: math.unit(350, "lbs"),
  8494. name: "Back",
  8495. image: {
  8496. source: "./media/characters/razinox/back.svg",
  8497. extra: 1660 / 1590,
  8498. bottom: 15 / 1665
  8499. }
  8500. },
  8501. },
  8502. [
  8503. {
  8504. name: "Normal",
  8505. height: math.unit(10 + 8 / 12, "foot")
  8506. },
  8507. {
  8508. name: "Minimacro",
  8509. height: math.unit(15, "foot")
  8510. },
  8511. {
  8512. name: "Macro",
  8513. height: math.unit(60, "foot"),
  8514. default: true
  8515. },
  8516. {
  8517. name: "Megamacro",
  8518. height: math.unit(5, "miles")
  8519. },
  8520. {
  8521. name: "Gigamacro",
  8522. height: math.unit(6000, "miles")
  8523. },
  8524. ]
  8525. ))
  8526. characterMakers.push(() => makeCharacter(
  8527. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8528. {
  8529. front: {
  8530. height: math.unit(6, "feet"),
  8531. weight: math.unit(150, "lbs"),
  8532. name: "Front",
  8533. image: {
  8534. source: "./media/characters/cobalt/front.svg"
  8535. }
  8536. }
  8537. },
  8538. [
  8539. {
  8540. name: "Normal",
  8541. height: math.unit(8 + 1 / 12, "foot")
  8542. },
  8543. {
  8544. name: "Macro",
  8545. height: math.unit(111, "foot"),
  8546. default: true
  8547. },
  8548. {
  8549. name: "Supracosmic",
  8550. height: math.unit(1e42, "feet")
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(5, "inches"),
  8559. name: "Front",
  8560. image: {
  8561. source: "./media/characters/amanda/front.svg",
  8562. extra: 926/791,
  8563. bottom: 38/964
  8564. }
  8565. },
  8566. back: {
  8567. height: math.unit(5, "inches"),
  8568. name: "Back",
  8569. image: {
  8570. source: "./media/characters/amanda/back.svg",
  8571. extra: 909/805,
  8572. bottom: 43/952
  8573. }
  8574. },
  8575. },
  8576. [
  8577. {
  8578. name: "Micro",
  8579. height: math.unit(5, "inches"),
  8580. default: true
  8581. },
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8586. {
  8587. front: {
  8588. height: math.unit(2.75, "meters"),
  8589. weight: math.unit(1200, "lb"),
  8590. name: "Front",
  8591. image: {
  8592. source: "./media/characters/teal/front.svg",
  8593. extra: 2463 / 2320,
  8594. bottom: 166 / 2629
  8595. }
  8596. },
  8597. back: {
  8598. height: math.unit(2.75, "meters"),
  8599. weight: math.unit(1200, "lb"),
  8600. name: "Back",
  8601. image: {
  8602. source: "./media/characters/teal/back.svg",
  8603. extra: 2580 / 2489,
  8604. bottom: 151 / 2731
  8605. }
  8606. },
  8607. sitting: {
  8608. height: math.unit(1.9, "meters"),
  8609. weight: math.unit(1200, "lb"),
  8610. name: "Sitting",
  8611. image: {
  8612. source: "./media/characters/teal/sitting.svg",
  8613. extra: 623 / 590,
  8614. bottom: 121 / 744
  8615. }
  8616. },
  8617. standing: {
  8618. height: math.unit(2.75, "meters"),
  8619. weight: math.unit(1200, "lb"),
  8620. name: "Standing",
  8621. image: {
  8622. source: "./media/characters/teal/standing.svg",
  8623. extra: 923 / 893,
  8624. bottom: 60 / 983
  8625. }
  8626. },
  8627. stretching: {
  8628. height: math.unit(3.65, "meters"),
  8629. weight: math.unit(1200, "lb"),
  8630. name: "Stretching",
  8631. image: {
  8632. source: "./media/characters/teal/stretching.svg",
  8633. extra: 1276 / 1244,
  8634. bottom: 0 / 1276
  8635. }
  8636. },
  8637. legged: {
  8638. height: math.unit(1.3, "meters"),
  8639. weight: math.unit(100, "lb"),
  8640. name: "Legged",
  8641. image: {
  8642. source: "./media/characters/teal/legged.svg",
  8643. extra: 462 / 437,
  8644. bottom: 24 / 486
  8645. }
  8646. },
  8647. naga: {
  8648. height: math.unit(5.4, "meters"),
  8649. weight: math.unit(4000, "lb"),
  8650. name: "Naga",
  8651. image: {
  8652. source: "./media/characters/teal/naga.svg",
  8653. extra: 1902 / 1858,
  8654. bottom: 0 / 1902
  8655. }
  8656. },
  8657. hand: {
  8658. height: math.unit(0.52, "meters"),
  8659. name: "Hand",
  8660. image: {
  8661. source: "./media/characters/teal/hand.svg"
  8662. }
  8663. },
  8664. maw: {
  8665. height: math.unit(0.43, "meters"),
  8666. name: "Maw",
  8667. image: {
  8668. source: "./media/characters/teal/maw.svg"
  8669. }
  8670. },
  8671. slit: {
  8672. height: math.unit(0.25, "meters"),
  8673. name: "Slit",
  8674. image: {
  8675. source: "./media/characters/teal/slit.svg"
  8676. }
  8677. },
  8678. },
  8679. [
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(2.75, "meters"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "Macro",
  8687. height: math.unit(300, "feet")
  8688. },
  8689. {
  8690. name: "Macro+",
  8691. height: math.unit(2000, "feet")
  8692. },
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8697. {
  8698. frontCat: {
  8699. height: math.unit(6, "feet"),
  8700. weight: math.unit(180, "lbs"),
  8701. name: "Front (Cat)",
  8702. image: {
  8703. source: "./media/characters/ravin-amulet/front-cat.svg"
  8704. }
  8705. },
  8706. frontCatAlt: {
  8707. height: math.unit(6, "feet"),
  8708. weight: math.unit(180, "lbs"),
  8709. name: "Front (Alt, Cat)",
  8710. image: {
  8711. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8712. }
  8713. },
  8714. frontWerewolf: {
  8715. height: math.unit(6 * 1.2, "feet"),
  8716. weight: math.unit(225, "lbs"),
  8717. name: "Front (Werewolf)",
  8718. image: {
  8719. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8720. }
  8721. },
  8722. backWerewolf: {
  8723. height: math.unit(6 * 1.2, "feet"),
  8724. weight: math.unit(225, "lbs"),
  8725. name: "Back (Werewolf)",
  8726. image: {
  8727. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8728. }
  8729. },
  8730. },
  8731. [
  8732. {
  8733. name: "Nano",
  8734. height: math.unit(1, "micrometer")
  8735. },
  8736. {
  8737. name: "Micro",
  8738. height: math.unit(1, "inch")
  8739. },
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(6, "feet"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Macro",
  8747. height: math.unit(60, "feet")
  8748. }
  8749. ]
  8750. ))
  8751. characterMakers.push(() => makeCharacter(
  8752. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8753. {
  8754. front: {
  8755. height: math.unit(6, "feet"),
  8756. weight: math.unit(165, "lbs"),
  8757. name: "Front",
  8758. image: {
  8759. source: "./media/characters/fluoresce/front.svg"
  8760. }
  8761. }
  8762. },
  8763. [
  8764. {
  8765. name: "Micro",
  8766. height: math.unit(6, "cm")
  8767. },
  8768. {
  8769. name: "Normal",
  8770. height: math.unit(5 + 7 / 12, "feet"),
  8771. default: true
  8772. },
  8773. {
  8774. name: "Macro",
  8775. height: math.unit(56, "feet")
  8776. },
  8777. {
  8778. name: "Megamacro",
  8779. height: math.unit(1.9, "miles")
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8785. {
  8786. front: {
  8787. height: math.unit(9 + 6 / 12, "feet"),
  8788. weight: math.unit(523, "lbs"),
  8789. name: "Side",
  8790. image: {
  8791. source: "./media/characters/aurora/side.svg",
  8792. extra: 474/393,
  8793. bottom: 5/479
  8794. }
  8795. }
  8796. },
  8797. [
  8798. {
  8799. name: "Normal",
  8800. height: math.unit(9 + 6 / 12, "feet")
  8801. },
  8802. {
  8803. name: "Macro",
  8804. height: math.unit(96, "feet"),
  8805. default: true
  8806. },
  8807. {
  8808. name: "Macro+",
  8809. height: math.unit(243, "feet")
  8810. },
  8811. ]
  8812. ))
  8813. characterMakers.push(() => makeCharacter(
  8814. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8815. {
  8816. front: {
  8817. height: math.unit(194, "cm"),
  8818. weight: math.unit(90, "kg"),
  8819. name: "Front",
  8820. image: {
  8821. source: "./media/characters/ranek/front.svg",
  8822. extra: 1862/1791,
  8823. bottom: 80/1942
  8824. }
  8825. },
  8826. back: {
  8827. height: math.unit(194, "cm"),
  8828. weight: math.unit(90, "kg"),
  8829. name: "Back",
  8830. image: {
  8831. source: "./media/characters/ranek/back.svg",
  8832. extra: 1853/1787,
  8833. bottom: 74/1927
  8834. }
  8835. },
  8836. feral: {
  8837. height: math.unit(30, "cm"),
  8838. weight: math.unit(1.6, "lbs"),
  8839. name: "Feral",
  8840. image: {
  8841. source: "./media/characters/ranek/feral.svg",
  8842. extra: 990/631,
  8843. bottom: 29/1019
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Normal",
  8850. height: math.unit(194, "cm"),
  8851. default: true
  8852. },
  8853. {
  8854. name: "Macro",
  8855. height: math.unit(100, "meters")
  8856. },
  8857. ]
  8858. ))
  8859. characterMakers.push(() => makeCharacter(
  8860. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8861. {
  8862. front: {
  8863. height: math.unit(5 + 6 / 12, "feet"),
  8864. weight: math.unit(153, "lbs"),
  8865. name: "Front",
  8866. image: {
  8867. source: "./media/characters/andrew-cooper/front.svg"
  8868. }
  8869. },
  8870. },
  8871. [
  8872. {
  8873. name: "Nano",
  8874. height: math.unit(1, "mm")
  8875. },
  8876. {
  8877. name: "Micro",
  8878. height: math.unit(2, "inches")
  8879. },
  8880. {
  8881. name: "Normal",
  8882. height: math.unit(5 + 6 / 12, "feet"),
  8883. default: true
  8884. }
  8885. ]
  8886. ))
  8887. characterMakers.push(() => makeCharacter(
  8888. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8889. {
  8890. front: {
  8891. height: math.unit(6, "feet"),
  8892. weight: math.unit(180, "lbs"),
  8893. name: "Front",
  8894. image: {
  8895. source: "./media/characters/akane-sato/front.svg",
  8896. extra: 1219 / 1140
  8897. }
  8898. },
  8899. back: {
  8900. height: math.unit(6, "feet"),
  8901. weight: math.unit(180, "lbs"),
  8902. name: "Back",
  8903. image: {
  8904. source: "./media/characters/akane-sato/back.svg",
  8905. extra: 1219 / 1170
  8906. }
  8907. },
  8908. },
  8909. [
  8910. {
  8911. name: "Normal",
  8912. height: math.unit(2.5, "meters")
  8913. },
  8914. {
  8915. name: "Macro",
  8916. height: math.unit(250, "meters"),
  8917. default: true
  8918. },
  8919. {
  8920. name: "Megamacro",
  8921. height: math.unit(25, "km")
  8922. },
  8923. ]
  8924. ))
  8925. characterMakers.push(() => makeCharacter(
  8926. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8927. {
  8928. front: {
  8929. height: math.unit(6, "feet"),
  8930. weight: math.unit(65, "kg"),
  8931. name: "Front",
  8932. image: {
  8933. source: "./media/characters/rook/front.svg",
  8934. extra: 960 / 950
  8935. }
  8936. }
  8937. },
  8938. [
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(8.8, "feet")
  8942. },
  8943. {
  8944. name: "Macro",
  8945. height: math.unit(88, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Megamacro",
  8950. height: math.unit(8, "miles")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(12 + 2 / 12, "feet"),
  8959. weight: math.unit(808, "lbs"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/prodigy/front.svg"
  8963. }
  8964. }
  8965. },
  8966. [
  8967. {
  8968. name: "Normal",
  8969. height: math.unit(12 + 2 / 12, "feet"),
  8970. default: true
  8971. },
  8972. {
  8973. name: "Macro",
  8974. height: math.unit(143, "feet")
  8975. },
  8976. {
  8977. name: "Macro+",
  8978. height: math.unit(400, "feet")
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  8984. {
  8985. front: {
  8986. height: math.unit(6, "feet"),
  8987. weight: math.unit(225, "lbs"),
  8988. name: "Front",
  8989. image: {
  8990. source: "./media/characters/daniel/front.svg"
  8991. }
  8992. },
  8993. leaning: {
  8994. height: math.unit(6, "feet"),
  8995. weight: math.unit(225, "lbs"),
  8996. name: "Leaning",
  8997. image: {
  8998. source: "./media/characters/daniel/leaning.svg"
  8999. }
  9000. },
  9001. },
  9002. [
  9003. {
  9004. name: "Macro",
  9005. height: math.unit(1000, "feet"),
  9006. default: true
  9007. },
  9008. ]
  9009. ))
  9010. characterMakers.push(() => makeCharacter(
  9011. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9012. {
  9013. front: {
  9014. height: math.unit(6, "feet"),
  9015. weight: math.unit(88, "lbs"),
  9016. name: "Front",
  9017. image: {
  9018. source: "./media/characters/chiros/front.svg",
  9019. extra: 306 / 226
  9020. }
  9021. },
  9022. side: {
  9023. height: math.unit(6, "feet"),
  9024. weight: math.unit(88, "lbs"),
  9025. name: "Side",
  9026. image: {
  9027. source: "./media/characters/chiros/side.svg",
  9028. extra: 306 / 226
  9029. }
  9030. },
  9031. },
  9032. [
  9033. {
  9034. name: "Normal",
  9035. height: math.unit(6, "cm"),
  9036. default: true
  9037. },
  9038. ]
  9039. ))
  9040. characterMakers.push(() => makeCharacter(
  9041. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9042. {
  9043. front: {
  9044. height: math.unit(6, "feet"),
  9045. weight: math.unit(100, "lbs"),
  9046. name: "Front",
  9047. image: {
  9048. source: "./media/characters/selka/front.svg",
  9049. extra: 947 / 887
  9050. }
  9051. }
  9052. },
  9053. [
  9054. {
  9055. name: "Normal",
  9056. height: math.unit(5, "cm"),
  9057. default: true
  9058. },
  9059. ]
  9060. ))
  9061. characterMakers.push(() => makeCharacter(
  9062. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9063. {
  9064. front: {
  9065. height: math.unit(8 + 3 / 12, "feet"),
  9066. weight: math.unit(424, "lbs"),
  9067. name: "Front",
  9068. image: {
  9069. source: "./media/characters/verin/front.svg",
  9070. extra: 1845 / 1550
  9071. }
  9072. },
  9073. frontArmored: {
  9074. height: math.unit(8 + 3 / 12, "feet"),
  9075. weight: math.unit(424, "lbs"),
  9076. name: "Front (Armored)",
  9077. image: {
  9078. source: "./media/characters/verin/front-armor.svg",
  9079. extra: 1845 / 1550,
  9080. bottom: 0.01
  9081. }
  9082. },
  9083. back: {
  9084. height: math.unit(8 + 3 / 12, "feet"),
  9085. weight: math.unit(424, "lbs"),
  9086. name: "Back",
  9087. image: {
  9088. source: "./media/characters/verin/back.svg",
  9089. bottom: 0.1,
  9090. extra: 1
  9091. }
  9092. },
  9093. foot: {
  9094. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9095. name: "Foot",
  9096. image: {
  9097. source: "./media/characters/verin/foot.svg"
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(8 + 3 / 12, "feet")
  9105. },
  9106. {
  9107. name: "Minimacro",
  9108. height: math.unit(21, "feet"),
  9109. default: true
  9110. },
  9111. {
  9112. name: "Macro",
  9113. height: math.unit(626, "feet")
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(2.718, "meters"),
  9122. weight: math.unit(150, "lbs"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/sovrim-terraquian/front.svg",
  9126. extra: 1752/1689,
  9127. bottom: 36/1788
  9128. }
  9129. },
  9130. back: {
  9131. height: math.unit(2.718, "meters"),
  9132. weight: math.unit(150, "lbs"),
  9133. name: "Back",
  9134. image: {
  9135. source: "./media/characters/sovrim-terraquian/back.svg",
  9136. extra: 1698/1657,
  9137. bottom: 58/1756
  9138. }
  9139. },
  9140. tongue: {
  9141. height: math.unit(2.865, "feet"),
  9142. name: "Tongue",
  9143. image: {
  9144. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9145. }
  9146. },
  9147. hand: {
  9148. height: math.unit(1.61, "feet"),
  9149. name: "Hand",
  9150. image: {
  9151. source: "./media/characters/sovrim-terraquian/hand.svg"
  9152. }
  9153. },
  9154. foot: {
  9155. height: math.unit(1.05, "feet"),
  9156. name: "Foot",
  9157. image: {
  9158. source: "./media/characters/sovrim-terraquian/foot.svg"
  9159. }
  9160. },
  9161. footAlt: {
  9162. height: math.unit(0.88, "feet"),
  9163. name: "Foot (Alt)",
  9164. image: {
  9165. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Micro",
  9172. height: math.unit(2, "inches")
  9173. },
  9174. {
  9175. name: "Small",
  9176. height: math.unit(1, "meter")
  9177. },
  9178. {
  9179. name: "Normal",
  9180. height: math.unit(Math.E, "meters"),
  9181. default: true
  9182. },
  9183. {
  9184. name: "Macro",
  9185. height: math.unit(20, "meters")
  9186. },
  9187. {
  9188. name: "Macro+",
  9189. height: math.unit(400, "meters")
  9190. },
  9191. ]
  9192. ))
  9193. characterMakers.push(() => makeCharacter(
  9194. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9195. {
  9196. front: {
  9197. height: math.unit(7, "feet"),
  9198. weight: math.unit(489, "lbs"),
  9199. name: "Front",
  9200. image: {
  9201. source: "./media/characters/reece-silvermane/front.svg",
  9202. bottom: 0.02,
  9203. extra: 1
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Macro",
  9210. height: math.unit(1.5, "miles"),
  9211. default: true
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(6, "feet"),
  9220. weight: math.unit(78, "kg"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/kane/front.svg",
  9224. extra: 978 / 899
  9225. }
  9226. },
  9227. back: {
  9228. height: math.unit(6, "feet"),
  9229. weight: math.unit(78, "kg"),
  9230. name: "Back",
  9231. image: {
  9232. source: "./media/characters/kane/back.svg",
  9233. extra: 1966/1800,
  9234. bottom: 0/1966
  9235. }
  9236. },
  9237. head: {
  9238. height: math.unit(1.4, "feet"),
  9239. name: "Head",
  9240. image: {
  9241. source: "./media/characters/kane/head.svg"
  9242. }
  9243. },
  9244. },
  9245. [
  9246. {
  9247. name: "Normal",
  9248. height: math.unit(2.1, "m"),
  9249. },
  9250. {
  9251. name: "Macro",
  9252. height: math.unit(1, "km"),
  9253. default: true
  9254. },
  9255. ]
  9256. ))
  9257. characterMakers.push(() => makeCharacter(
  9258. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9259. {
  9260. front: {
  9261. height: math.unit(6, "feet"),
  9262. weight: math.unit(200, "kg"),
  9263. name: "Front",
  9264. image: {
  9265. source: "./media/characters/tegon/front.svg",
  9266. bottom: 0.01,
  9267. extra: 1
  9268. }
  9269. },
  9270. },
  9271. [
  9272. {
  9273. name: "Micro",
  9274. height: math.unit(1, "inch")
  9275. },
  9276. {
  9277. name: "Normal",
  9278. height: math.unit(6 + 3 / 12, "feet"),
  9279. default: true
  9280. },
  9281. {
  9282. name: "Macro",
  9283. height: math.unit(300, "feet")
  9284. },
  9285. {
  9286. name: "Megamacro",
  9287. height: math.unit(69, "miles")
  9288. },
  9289. ]
  9290. ))
  9291. characterMakers.push(() => makeCharacter(
  9292. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9293. {
  9294. side: {
  9295. height: math.unit(6, "feet"),
  9296. weight: math.unit(2304, "lbs"),
  9297. name: "Side",
  9298. image: {
  9299. source: "./media/characters/arcturax/side.svg",
  9300. extra: 790 / 376,
  9301. bottom: 0.01
  9302. }
  9303. },
  9304. },
  9305. [
  9306. {
  9307. name: "Micro",
  9308. height: math.unit(2, "inch")
  9309. },
  9310. {
  9311. name: "Normal",
  9312. height: math.unit(6, "feet")
  9313. },
  9314. {
  9315. name: "Macro",
  9316. height: math.unit(39, "feet"),
  9317. default: true
  9318. },
  9319. {
  9320. name: "Megamacro",
  9321. height: math.unit(7, "miles")
  9322. },
  9323. ]
  9324. ))
  9325. characterMakers.push(() => makeCharacter(
  9326. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9327. {
  9328. front: {
  9329. height: math.unit(6, "feet"),
  9330. weight: math.unit(50, "lbs"),
  9331. name: "Front",
  9332. image: {
  9333. source: "./media/characters/sentri/front.svg",
  9334. extra: 1750 / 1570,
  9335. bottom: 0.025
  9336. }
  9337. },
  9338. frontAlt: {
  9339. height: math.unit(6, "feet"),
  9340. weight: math.unit(50, "lbs"),
  9341. name: "Front (Alt)",
  9342. image: {
  9343. source: "./media/characters/sentri/front-alt.svg",
  9344. extra: 1750 / 1570,
  9345. bottom: 0.025
  9346. }
  9347. },
  9348. },
  9349. [
  9350. {
  9351. name: "Normal",
  9352. height: math.unit(15, "feet"),
  9353. default: true
  9354. },
  9355. {
  9356. name: "Macro",
  9357. height: math.unit(2500, "feet")
  9358. }
  9359. ]
  9360. ))
  9361. characterMakers.push(() => makeCharacter(
  9362. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9363. {
  9364. front: {
  9365. height: math.unit(5 + 8 / 12, "feet"),
  9366. weight: math.unit(130, "lbs"),
  9367. name: "Front",
  9368. image: {
  9369. source: "./media/characters/corvin/front.svg",
  9370. extra: 1803 / 1629
  9371. }
  9372. },
  9373. frontShirt: {
  9374. height: math.unit(5 + 8 / 12, "feet"),
  9375. weight: math.unit(130, "lbs"),
  9376. name: "Front (Shirt)",
  9377. image: {
  9378. source: "./media/characters/corvin/front-shirt.svg",
  9379. extra: 1803 / 1629
  9380. }
  9381. },
  9382. frontPoncho: {
  9383. height: math.unit(5 + 8 / 12, "feet"),
  9384. weight: math.unit(130, "lbs"),
  9385. name: "Front (Poncho)",
  9386. image: {
  9387. source: "./media/characters/corvin/front-poncho.svg",
  9388. extra: 1803 / 1629
  9389. }
  9390. },
  9391. side: {
  9392. height: math.unit(5 + 8 / 12, "feet"),
  9393. weight: math.unit(130, "lbs"),
  9394. name: "Side",
  9395. image: {
  9396. source: "./media/characters/corvin/side.svg",
  9397. extra: 1012 / 945
  9398. }
  9399. },
  9400. back: {
  9401. height: math.unit(5 + 8 / 12, "feet"),
  9402. weight: math.unit(130, "lbs"),
  9403. name: "Back",
  9404. image: {
  9405. source: "./media/characters/corvin/back.svg",
  9406. extra: 1803 / 1629
  9407. }
  9408. },
  9409. },
  9410. [
  9411. {
  9412. name: "Micro",
  9413. height: math.unit(3, "inches")
  9414. },
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(5 + 8 / 12, "feet")
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(300, "feet"),
  9422. default: true
  9423. },
  9424. {
  9425. name: "Megamacro",
  9426. height: math.unit(500, "miles")
  9427. }
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(135, "lbs"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/q/front.svg",
  9439. extra: 854 / 752,
  9440. bottom: 0.005
  9441. }
  9442. },
  9443. back: {
  9444. height: math.unit(6, "feet"),
  9445. weight: math.unit(130, "lbs"),
  9446. name: "Back",
  9447. image: {
  9448. source: "./media/characters/q/back.svg",
  9449. extra: 854 / 752
  9450. }
  9451. },
  9452. },
  9453. [
  9454. {
  9455. name: "Macro",
  9456. height: math.unit(90, "feet"),
  9457. default: true
  9458. },
  9459. {
  9460. name: "Extra Macro",
  9461. height: math.unit(300, "feet"),
  9462. },
  9463. {
  9464. name: "BIG WALF",
  9465. height: math.unit(750, "feet"),
  9466. },
  9467. ]
  9468. ))
  9469. characterMakers.push(() => makeCharacter(
  9470. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9471. {
  9472. front: {
  9473. height: math.unit(3, "feet"),
  9474. weight: math.unit(28, "lbs"),
  9475. name: "Front",
  9476. image: {
  9477. source: "./media/characters/citrine/front.svg"
  9478. }
  9479. }
  9480. },
  9481. [
  9482. {
  9483. name: "Normal",
  9484. height: math.unit(3, "feet"),
  9485. default: true
  9486. }
  9487. ]
  9488. ))
  9489. characterMakers.push(() => makeCharacter(
  9490. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9491. {
  9492. front: {
  9493. height: math.unit(14, "feet"),
  9494. weight: math.unit(1450, "kg"),
  9495. preyCapacity: math.unit(15, "people"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/aura-starwind/front.svg",
  9499. extra: 1440/1327,
  9500. bottom: 11/1451
  9501. }
  9502. },
  9503. side: {
  9504. height: math.unit(14, "feet"),
  9505. weight: math.unit(1450, "kg"),
  9506. preyCapacity: math.unit(15, "people"),
  9507. name: "Side",
  9508. image: {
  9509. source: "./media/characters/aura-starwind/side.svg",
  9510. extra: 1654 / 1497
  9511. }
  9512. },
  9513. taur: {
  9514. height: math.unit(18, "feet"),
  9515. weight: math.unit(5500, "kg"),
  9516. preyCapacity: math.unit(50, "people"),
  9517. name: "Taur",
  9518. image: {
  9519. source: "./media/characters/aura-starwind/taur.svg",
  9520. extra: 1760 / 1650
  9521. }
  9522. },
  9523. feral: {
  9524. height: math.unit(46, "feet"),
  9525. weight: math.unit(25000, "kg"),
  9526. preyCapacity: math.unit(120, "people"),
  9527. name: "Feral",
  9528. image: {
  9529. source: "./media/characters/aura-starwind/feral.svg"
  9530. }
  9531. },
  9532. },
  9533. [
  9534. {
  9535. name: "Normal",
  9536. height: math.unit(14, "feet"),
  9537. default: true
  9538. },
  9539. {
  9540. name: "Macro",
  9541. height: math.unit(50, "meters")
  9542. },
  9543. {
  9544. name: "Megamacro",
  9545. height: math.unit(5000, "meters")
  9546. },
  9547. {
  9548. name: "Gigamacro",
  9549. height: math.unit(100000, "kilometers")
  9550. },
  9551. ]
  9552. ))
  9553. characterMakers.push(() => makeCharacter(
  9554. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9555. {
  9556. front: {
  9557. height: math.unit(2 + 7 / 12, "feet"),
  9558. weight: math.unit(32, "lbs"),
  9559. name: "Front",
  9560. image: {
  9561. source: "./media/characters/rivet/front.svg",
  9562. extra: 1716 / 1658,
  9563. bottom: 0.03
  9564. }
  9565. },
  9566. foot: {
  9567. height: math.unit(0.551, "feet"),
  9568. name: "Rivet's Foot",
  9569. image: {
  9570. source: "./media/characters/rivet/foot.svg"
  9571. },
  9572. rename: true
  9573. }
  9574. },
  9575. [
  9576. {
  9577. name: "Micro",
  9578. height: math.unit(1.5, "inches"),
  9579. },
  9580. {
  9581. name: "Normal",
  9582. height: math.unit(2 + 7 / 12, "feet"),
  9583. default: true
  9584. },
  9585. {
  9586. name: "Macro",
  9587. height: math.unit(85, "feet")
  9588. },
  9589. {
  9590. name: "Megamacro",
  9591. height: math.unit(2.2, "km")
  9592. }
  9593. ]
  9594. ))
  9595. characterMakers.push(() => makeCharacter(
  9596. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9597. {
  9598. front: {
  9599. height: math.unit(5 + 9 / 12, "feet"),
  9600. weight: math.unit(150, "lbs"),
  9601. name: "Front",
  9602. image: {
  9603. source: "./media/characters/coffee/front.svg",
  9604. extra: 946/880,
  9605. bottom: 66/1012
  9606. }
  9607. },
  9608. foot: {
  9609. height: math.unit(1.29, "feet"),
  9610. name: "Foot",
  9611. image: {
  9612. source: "./media/characters/coffee/foot.svg"
  9613. }
  9614. },
  9615. },
  9616. [
  9617. {
  9618. name: "Micro",
  9619. height: math.unit(2, "inches"),
  9620. },
  9621. {
  9622. name: "Normal",
  9623. height: math.unit(5 + 9 / 12, "feet"),
  9624. default: true
  9625. },
  9626. {
  9627. name: "Macro",
  9628. height: math.unit(800, "feet")
  9629. },
  9630. {
  9631. name: "Megamacro",
  9632. height: math.unit(25, "miles")
  9633. }
  9634. ]
  9635. ))
  9636. characterMakers.push(() => makeCharacter(
  9637. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9638. {
  9639. front: {
  9640. height: math.unit(6, "feet"),
  9641. weight: math.unit(200, "lbs"),
  9642. name: "Front",
  9643. image: {
  9644. source: "./media/characters/chari-gal/front.svg",
  9645. extra: 735/649,
  9646. bottom: 55/790
  9647. },
  9648. form: "normal",
  9649. default: true
  9650. },
  9651. back: {
  9652. height: math.unit(6, "feet"),
  9653. weight: math.unit(200, "lb"),
  9654. name: "Back",
  9655. image: {
  9656. source: "./media/characters/chari-gal/back.svg",
  9657. extra: 762/666,
  9658. bottom: 31/793
  9659. },
  9660. form: "normal"
  9661. },
  9662. mouth: {
  9663. height: math.unit(1.35, "feet"),
  9664. name: "Mouth",
  9665. image: {
  9666. source: "./media/characters/chari-gal/mouth.svg"
  9667. },
  9668. form: "normal"
  9669. },
  9670. gigantamax: {
  9671. height: math.unit(6 * 16, "feet"),
  9672. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9673. name: "Gigantamax",
  9674. image: {
  9675. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9676. extra: 1507/1149,
  9677. bottom: 254/1761
  9678. },
  9679. form: "gigantamax",
  9680. default: true
  9681. },
  9682. },
  9683. [
  9684. {
  9685. name: "Normal",
  9686. height: math.unit(5 + 7 / 12, "feet"),
  9687. form: "normal",
  9688. },
  9689. {
  9690. name: "Macro",
  9691. height: math.unit(200, "feet"),
  9692. default: true,
  9693. form: "normal"
  9694. },
  9695. {
  9696. name: "Normal",
  9697. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9698. form: "gigantamax",
  9699. },
  9700. {
  9701. name: "Macro",
  9702. height: math.unit(16 * 200, "feet"),
  9703. default: true,
  9704. form: "gigantamax"
  9705. },
  9706. ],
  9707. {
  9708. "normal": {
  9709. name: "Normal",
  9710. default: true
  9711. },
  9712. "gigantamax": {
  9713. name: "Gigantamax",
  9714. },
  9715. }
  9716. ))
  9717. characterMakers.push(() => makeCharacter(
  9718. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9719. {
  9720. front: {
  9721. height: math.unit(6, "feet"),
  9722. weight: math.unit(150, "lbs"),
  9723. name: "Front",
  9724. image: {
  9725. source: "./media/characters/nova/front.svg",
  9726. extra: 5000 / 4722,
  9727. bottom: 0.02
  9728. }
  9729. }
  9730. },
  9731. [
  9732. {
  9733. name: "Micro-",
  9734. height: math.unit(0.8, "inches")
  9735. },
  9736. {
  9737. name: "Micro",
  9738. height: math.unit(2, "inches"),
  9739. default: true
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9745. {
  9746. koboldFront: {
  9747. height: math.unit(3 + 1 / 12, "feet"),
  9748. weight: math.unit(21.7, "lbs"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/argent/kobold-front.svg",
  9752. extra: 1471 / 1331,
  9753. bottom: 100.8 / 1575.5
  9754. },
  9755. form: "kobold",
  9756. default: true
  9757. },
  9758. dragonFront: {
  9759. height: math.unit(75, "inches"),
  9760. name: "Front",
  9761. image: {
  9762. source: "./media/characters/argent/dragon-front.svg",
  9763. extra: 1389/1248,
  9764. bottom: 54/1443
  9765. },
  9766. form: "dragon",
  9767. },
  9768. dragonBack: {
  9769. height: math.unit(75, "inches"),
  9770. name: "Back",
  9771. image: {
  9772. source: "./media/characters/argent/dragon-back.svg",
  9773. extra: 1399/1271,
  9774. bottom: 23/1422
  9775. },
  9776. form: "dragon",
  9777. },
  9778. dragonDressed: {
  9779. height: math.unit(75, "inches"),
  9780. name: "Dressed",
  9781. image: {
  9782. source: "./media/characters/argent/dragon-dressed.svg",
  9783. extra: 1350/1215,
  9784. bottom: 26/1376
  9785. },
  9786. form: "dragon"
  9787. },
  9788. dragonHead: {
  9789. height: math.unit(23.5, "inches"),
  9790. name: "Head",
  9791. image: {
  9792. source: "./media/characters/argent/dragon-head.svg"
  9793. },
  9794. form: "dragon",
  9795. },
  9796. },
  9797. [
  9798. {
  9799. name: "Micro",
  9800. height: math.unit(2, "inches"),
  9801. form: "kobold",
  9802. },
  9803. {
  9804. name: "Normal",
  9805. height: math.unit(3 + 1 / 12, "feet"),
  9806. form: "kobold",
  9807. default: true
  9808. },
  9809. {
  9810. name: "Macro",
  9811. height: math.unit(120, "feet"),
  9812. form: "kobold",
  9813. },
  9814. {
  9815. name: "Speck",
  9816. height: math.unit(1, "mm"),
  9817. form: "dragon",
  9818. },
  9819. {
  9820. name: "Tiny",
  9821. height: math.unit(1, "cm"),
  9822. form: "dragon",
  9823. },
  9824. {
  9825. name: "Micro",
  9826. height: math.unit(5, "cm"),
  9827. form: "dragon",
  9828. },
  9829. {
  9830. name: "Normal",
  9831. height: math.unit(75, "inches"),
  9832. form: "dragon",
  9833. default: true
  9834. },
  9835. {
  9836. name: "Extra Tall",
  9837. height: math.unit(9, "feet"),
  9838. form: "dragon",
  9839. },
  9840. {
  9841. name: "Inconvenient",
  9842. height: math.unit(5, "meters"),
  9843. form: "dragon",
  9844. },
  9845. {
  9846. name: "Macro",
  9847. height: math.unit(70, "meters"),
  9848. form: "dragon",
  9849. },
  9850. {
  9851. name: "Macro+",
  9852. height: math.unit(250, "meters"),
  9853. form: "dragon",
  9854. },
  9855. {
  9856. name: "Megamacro",
  9857. height: math.unit(20, "km"),
  9858. form: "dragon",
  9859. },
  9860. {
  9861. name: "Mountainous",
  9862. height: math.unit(100, "km"),
  9863. form: "dragon",
  9864. },
  9865. {
  9866. name: "Continental",
  9867. height: math.unit(2, "megameters"),
  9868. form: "dragon",
  9869. },
  9870. {
  9871. name: "Too Big",
  9872. height: math.unit(900, "megameters"),
  9873. form: "dragon",
  9874. },
  9875. ],
  9876. {
  9877. "kobold": {
  9878. name: "Kobold",
  9879. default: true
  9880. },
  9881. "dragon": {
  9882. name: "Dragon",
  9883. },
  9884. }
  9885. ))
  9886. characterMakers.push(() => makeCharacter(
  9887. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9888. {
  9889. lamp: {
  9890. height: math.unit(7 * 1559 / 989, "feet"),
  9891. name: "Magic Lamp",
  9892. image: {
  9893. source: "./media/characters/mira-al-cul/lamp.svg",
  9894. extra: 1617 / 1559
  9895. }
  9896. },
  9897. front: {
  9898. height: math.unit(7, "feet"),
  9899. name: "Front",
  9900. image: {
  9901. source: "./media/characters/mira-al-cul/front.svg",
  9902. extra: 1044 / 990
  9903. }
  9904. },
  9905. },
  9906. [
  9907. {
  9908. name: "Heavily Restricted",
  9909. height: math.unit(7 * 1559 / 989, "feet")
  9910. },
  9911. {
  9912. name: "Freshly Freed",
  9913. height: math.unit(50 * 1559 / 989, "feet")
  9914. },
  9915. {
  9916. name: "World Encompassing",
  9917. height: math.unit(10000 * 1559 / 989, "miles")
  9918. },
  9919. {
  9920. name: "Galactic",
  9921. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9922. },
  9923. {
  9924. name: "Palmed Universe",
  9925. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9926. default: true
  9927. },
  9928. {
  9929. name: "Multiversal Matriarch",
  9930. height: math.unit(8.87e10, "yottameters")
  9931. },
  9932. {
  9933. name: "Void Mother",
  9934. height: math.unit(3.14e110, "yottaparsecs")
  9935. },
  9936. {
  9937. name: "Toying with Transcendence",
  9938. height: math.unit(1e307, "meters")
  9939. },
  9940. ]
  9941. ))
  9942. characterMakers.push(() => makeCharacter(
  9943. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9944. {
  9945. front: {
  9946. height: math.unit(17 + 1 / 12, "feet"),
  9947. weight: math.unit(476.2 * 5, "lbs"),
  9948. name: "Front",
  9949. image: {
  9950. source: "./media/characters/kuro-shi-uchū/front.svg",
  9951. extra: 2329 / 1835,
  9952. bottom: 0.02
  9953. }
  9954. },
  9955. },
  9956. [
  9957. {
  9958. name: "Micro",
  9959. height: math.unit(2, "inches")
  9960. },
  9961. {
  9962. name: "Normal",
  9963. height: math.unit(12, "meters")
  9964. },
  9965. {
  9966. name: "Planetary",
  9967. height: math.unit(0.00929, "AU"),
  9968. default: true
  9969. },
  9970. {
  9971. name: "Universal",
  9972. height: math.unit(20, "gigaparsecs")
  9973. },
  9974. ]
  9975. ))
  9976. characterMakers.push(() => makeCharacter(
  9977. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9978. {
  9979. front: {
  9980. height: math.unit(5 + 2 / 12, "feet"),
  9981. weight: math.unit(120, "lbs"),
  9982. name: "Front",
  9983. image: {
  9984. source: "./media/characters/katherine/front.svg",
  9985. extra: 2075 / 1969
  9986. }
  9987. },
  9988. dress: {
  9989. height: math.unit(5 + 2 / 12, "feet"),
  9990. weight: math.unit(120, "lbs"),
  9991. name: "Dress",
  9992. image: {
  9993. source: "./media/characters/katherine/dress.svg",
  9994. extra: 2258 / 2064
  9995. }
  9996. },
  9997. },
  9998. [
  9999. {
  10000. name: "Micro",
  10001. height: math.unit(1, "inches"),
  10002. default: true
  10003. },
  10004. {
  10005. name: "Normal",
  10006. height: math.unit(5 + 2 / 12, "feet")
  10007. },
  10008. {
  10009. name: "Macro",
  10010. height: math.unit(100, "meters")
  10011. },
  10012. {
  10013. name: "Megamacro",
  10014. height: math.unit(80, "miles")
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10020. {
  10021. front: {
  10022. height: math.unit(7 + 8 / 12, "feet"),
  10023. weight: math.unit(250, "lbs"),
  10024. name: "Front",
  10025. image: {
  10026. source: "./media/characters/yevis/front.svg",
  10027. extra: 1938 / 1755
  10028. }
  10029. }
  10030. },
  10031. [
  10032. {
  10033. name: "Mortal",
  10034. height: math.unit(7 + 8 / 12, "feet")
  10035. },
  10036. {
  10037. name: "Battle",
  10038. height: math.unit(25 + 11 / 12, "feet")
  10039. },
  10040. {
  10041. name: "Wrath",
  10042. height: math.unit(1654 + 11 / 12, "feet")
  10043. },
  10044. {
  10045. name: "Planet Destroyer",
  10046. height: math.unit(12000, "miles")
  10047. },
  10048. {
  10049. name: "Galaxy Conqueror",
  10050. height: math.unit(1.45, "zettameters"),
  10051. default: true
  10052. },
  10053. {
  10054. name: "Universal War",
  10055. height: math.unit(184, "gigaparsecs")
  10056. },
  10057. {
  10058. name: "Eternity War",
  10059. height: math.unit(1.98e55, "yottaparsecs")
  10060. },
  10061. ]
  10062. ))
  10063. characterMakers.push(() => makeCharacter(
  10064. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10065. {
  10066. front: {
  10067. height: math.unit(5 + 8 / 12, "feet"),
  10068. weight: math.unit(63, "kg"),
  10069. name: "Front",
  10070. image: {
  10071. source: "./media/characters/xavier/front.svg",
  10072. extra: 944 / 883
  10073. }
  10074. },
  10075. frontStretch: {
  10076. height: math.unit(5 + 8 / 12, "feet"),
  10077. weight: math.unit(63, "kg"),
  10078. name: "Stretching",
  10079. image: {
  10080. source: "./media/characters/xavier/front-stretch.svg",
  10081. extra: 962 / 820
  10082. }
  10083. },
  10084. },
  10085. [
  10086. {
  10087. name: "Normal",
  10088. height: math.unit(5 + 8 / 12, "feet")
  10089. },
  10090. {
  10091. name: "Macro",
  10092. height: math.unit(100, "meters"),
  10093. default: true
  10094. },
  10095. {
  10096. name: "McLargeHuge",
  10097. height: math.unit(10, "miles")
  10098. },
  10099. ]
  10100. ))
  10101. characterMakers.push(() => makeCharacter(
  10102. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10103. {
  10104. front: {
  10105. height: math.unit(5 + 5 / 12, "feet"),
  10106. weight: math.unit(150, "lb"),
  10107. name: "Front",
  10108. image: {
  10109. source: "./media/characters/joshii/front.svg",
  10110. extra: 765 / 653,
  10111. bottom: 51 / 816
  10112. }
  10113. },
  10114. foot: {
  10115. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10116. name: "Foot",
  10117. image: {
  10118. source: "./media/characters/joshii/foot.svg"
  10119. }
  10120. },
  10121. },
  10122. [
  10123. {
  10124. name: "Micro",
  10125. height: math.unit(2, "inches")
  10126. },
  10127. {
  10128. name: "Normal",
  10129. height: math.unit(5 + 5 / 12, "feet")
  10130. },
  10131. {
  10132. name: "Macro",
  10133. height: math.unit(785, "feet"),
  10134. default: true
  10135. },
  10136. {
  10137. name: "Megamacro",
  10138. height: math.unit(24.5, "miles")
  10139. },
  10140. ]
  10141. ))
  10142. characterMakers.push(() => makeCharacter(
  10143. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10144. {
  10145. front: {
  10146. height: math.unit(6, "feet"),
  10147. weight: math.unit(150, "lb"),
  10148. name: "Front",
  10149. image: {
  10150. source: "./media/characters/goddess-elizabeth/front.svg",
  10151. extra: 1800 / 1525,
  10152. bottom: 0.005
  10153. }
  10154. },
  10155. foot: {
  10156. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10157. name: "Foot",
  10158. image: {
  10159. source: "./media/characters/goddess-elizabeth/foot.svg"
  10160. }
  10161. },
  10162. mouth: {
  10163. height: math.unit(6, "feet"),
  10164. name: "Mouth",
  10165. image: {
  10166. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10167. }
  10168. },
  10169. },
  10170. [
  10171. {
  10172. name: "Micro",
  10173. height: math.unit(12, "feet")
  10174. },
  10175. {
  10176. name: "Normal",
  10177. height: math.unit(80, "miles"),
  10178. default: true
  10179. },
  10180. {
  10181. name: "Macro",
  10182. height: math.unit(15000, "parsecs")
  10183. },
  10184. ]
  10185. ))
  10186. characterMakers.push(() => makeCharacter(
  10187. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10188. {
  10189. front: {
  10190. height: math.unit(5 + 9 / 12, "feet"),
  10191. weight: math.unit(144, "lb"),
  10192. name: "Front",
  10193. image: {
  10194. source: "./media/characters/kara/front.svg"
  10195. }
  10196. },
  10197. feet: {
  10198. height: math.unit(6 / 6.765, "feet"),
  10199. name: "Kara's Feet",
  10200. rename: true,
  10201. image: {
  10202. source: "./media/characters/kara/feet.svg"
  10203. }
  10204. },
  10205. },
  10206. [
  10207. {
  10208. name: "Normal",
  10209. height: math.unit(5 + 9 / 12, "feet")
  10210. },
  10211. {
  10212. name: "Macro",
  10213. height: math.unit(174, "feet"),
  10214. default: true
  10215. },
  10216. ]
  10217. ))
  10218. characterMakers.push(() => makeCharacter(
  10219. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10220. {
  10221. front: {
  10222. height: math.unit(18, "feet"),
  10223. weight: math.unit(4050, "lb"),
  10224. name: "Front",
  10225. image: {
  10226. source: "./media/characters/tyrone/front.svg",
  10227. extra: 2405 / 2270,
  10228. bottom: 182 / 2587
  10229. }
  10230. },
  10231. },
  10232. [
  10233. {
  10234. name: "Normal",
  10235. height: math.unit(18, "feet"),
  10236. default: true
  10237. },
  10238. {
  10239. name: "Macro",
  10240. height: math.unit(300, "feet")
  10241. },
  10242. {
  10243. name: "Megamacro",
  10244. height: math.unit(15, "km")
  10245. },
  10246. {
  10247. name: "Gigamacro",
  10248. height: math.unit(500, "km")
  10249. },
  10250. {
  10251. name: "Teramacro",
  10252. height: math.unit(0.5, "gigameters")
  10253. },
  10254. {
  10255. name: "Omnimacro",
  10256. height: math.unit(1e252, "yottauniverse")
  10257. },
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10262. {
  10263. front: {
  10264. height: math.unit(7 + 8 / 12, "feet"),
  10265. weight: math.unit(120, "lb"),
  10266. name: "Front",
  10267. image: {
  10268. source: "./media/characters/danny/front.svg",
  10269. extra: 1490 / 1350
  10270. }
  10271. },
  10272. back: {
  10273. height: math.unit(7 + 8 / 12, "feet"),
  10274. weight: math.unit(120, "lb"),
  10275. name: "Back",
  10276. image: {
  10277. source: "./media/characters/danny/back.svg",
  10278. extra: 1490 / 1350
  10279. }
  10280. },
  10281. },
  10282. [
  10283. {
  10284. name: "Normal",
  10285. height: math.unit(7 + 8 / 12, "feet"),
  10286. default: true
  10287. },
  10288. ]
  10289. ))
  10290. characterMakers.push(() => makeCharacter(
  10291. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10292. {
  10293. front: {
  10294. height: math.unit(3.5, "inches"),
  10295. weight: math.unit(19, "grams"),
  10296. name: "Front",
  10297. image: {
  10298. source: "./media/characters/mallow/front.svg",
  10299. extra: 471 / 431
  10300. }
  10301. },
  10302. back: {
  10303. height: math.unit(3.5, "inches"),
  10304. weight: math.unit(19, "grams"),
  10305. name: "Back",
  10306. image: {
  10307. source: "./media/characters/mallow/back.svg",
  10308. extra: 471 / 431
  10309. }
  10310. },
  10311. },
  10312. [
  10313. {
  10314. name: "Normal",
  10315. height: math.unit(3.5, "inches"),
  10316. default: true
  10317. },
  10318. ]
  10319. ))
  10320. characterMakers.push(() => makeCharacter(
  10321. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10322. {
  10323. front: {
  10324. height: math.unit(9, "feet"),
  10325. weight: math.unit(230, "kg"),
  10326. name: "Front",
  10327. image: {
  10328. source: "./media/characters/starry-aqua/front.svg"
  10329. }
  10330. },
  10331. back: {
  10332. height: math.unit(9, "feet"),
  10333. weight: math.unit(230, "kg"),
  10334. name: "Back",
  10335. image: {
  10336. source: "./media/characters/starry-aqua/back.svg"
  10337. }
  10338. },
  10339. hand: {
  10340. height: math.unit(9 * 0.1168, "feet"),
  10341. name: "Hand",
  10342. image: {
  10343. source: "./media/characters/starry-aqua/hand.svg"
  10344. }
  10345. },
  10346. foot: {
  10347. height: math.unit(9 * 0.18, "feet"),
  10348. name: "Foot",
  10349. image: {
  10350. source: "./media/characters/starry-aqua/foot.svg"
  10351. }
  10352. }
  10353. },
  10354. [
  10355. {
  10356. name: "Micro",
  10357. height: math.unit(3, "inches")
  10358. },
  10359. {
  10360. name: "Normal",
  10361. height: math.unit(9, "feet")
  10362. },
  10363. {
  10364. name: "Macro",
  10365. height: math.unit(300, "feet"),
  10366. default: true
  10367. },
  10368. {
  10369. name: "Megamacro",
  10370. height: math.unit(3200, "feet")
  10371. }
  10372. ]
  10373. ))
  10374. characterMakers.push(() => makeCharacter(
  10375. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10376. {
  10377. front: {
  10378. height: math.unit(15, "feet"),
  10379. weight: math.unit(5026, "lb"),
  10380. name: "Front",
  10381. image: {
  10382. source: "./media/characters/luka-towers/front.svg",
  10383. extra: 1269/1133,
  10384. bottom: 51/1320
  10385. }
  10386. },
  10387. },
  10388. [
  10389. {
  10390. name: "Normal",
  10391. height: math.unit(15, "feet"),
  10392. default: true
  10393. },
  10394. {
  10395. name: "Minimacro",
  10396. height: math.unit(25, "feet")
  10397. },
  10398. {
  10399. name: "Macro",
  10400. height: math.unit(320, "feet")
  10401. },
  10402. {
  10403. name: "Megamacro",
  10404. height: math.unit(35000, "feet")
  10405. },
  10406. {
  10407. name: "Gigamacro",
  10408. height: math.unit(4000, "miles")
  10409. },
  10410. {
  10411. name: "Teramacro",
  10412. height: math.unit(15000, "miles")
  10413. },
  10414. ]
  10415. ))
  10416. characterMakers.push(() => makeCharacter(
  10417. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10418. {
  10419. front: {
  10420. height: math.unit(6, "feet"),
  10421. weight: math.unit(150, "lb"),
  10422. name: "Front",
  10423. image: {
  10424. source: "./media/characters/natalie-nightring/front.svg",
  10425. extra: 1,
  10426. bottom: 0.06
  10427. }
  10428. },
  10429. },
  10430. [
  10431. {
  10432. name: "Uh Oh",
  10433. height: math.unit(0.1, "mm")
  10434. },
  10435. {
  10436. name: "Small",
  10437. height: math.unit(3, "inches")
  10438. },
  10439. {
  10440. name: "Human Scale",
  10441. height: math.unit(6, "feet")
  10442. },
  10443. {
  10444. name: "Librarian",
  10445. height: math.unit(50, "feet"),
  10446. default: true
  10447. },
  10448. {
  10449. name: "Immense",
  10450. height: math.unit(200, "miles")
  10451. },
  10452. ]
  10453. ))
  10454. characterMakers.push(() => makeCharacter(
  10455. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10456. {
  10457. front: {
  10458. height: math.unit(6, "feet"),
  10459. weight: math.unit(180, "lbs"),
  10460. name: "Front",
  10461. image: {
  10462. source: "./media/characters/danni-rosie/front.svg",
  10463. extra: 1260 / 1128,
  10464. bottom: 0.022
  10465. }
  10466. },
  10467. },
  10468. [
  10469. {
  10470. name: "Micro",
  10471. height: math.unit(2, "inches"),
  10472. default: true
  10473. },
  10474. ]
  10475. ))
  10476. characterMakers.push(() => makeCharacter(
  10477. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10478. {
  10479. front: {
  10480. height: math.unit(5 + 9 / 12, "feet"),
  10481. weight: math.unit(220, "lb"),
  10482. name: "Front",
  10483. image: {
  10484. source: "./media/characters/samantha-kruse/front.svg",
  10485. extra: (985 / 935),
  10486. bottom: 0.03
  10487. }
  10488. },
  10489. frontUndressed: {
  10490. height: math.unit(5 + 9 / 12, "feet"),
  10491. weight: math.unit(220, "lb"),
  10492. name: "Front (Undressed)",
  10493. image: {
  10494. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10495. extra: (973 / 923),
  10496. bottom: 0.025
  10497. }
  10498. },
  10499. fat: {
  10500. height: math.unit(5 + 9 / 12, "feet"),
  10501. weight: math.unit(900, "lb"),
  10502. name: "Front (Fat)",
  10503. image: {
  10504. source: "./media/characters/samantha-kruse/fat.svg",
  10505. extra: 2688 / 2561
  10506. }
  10507. },
  10508. },
  10509. [
  10510. {
  10511. name: "Normal",
  10512. height: math.unit(5 + 9 / 12, "feet"),
  10513. default: true
  10514. }
  10515. ]
  10516. ))
  10517. characterMakers.push(() => makeCharacter(
  10518. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10519. {
  10520. back: {
  10521. height: math.unit(5 + 4 / 12, "feet"),
  10522. weight: math.unit(4963, "lb"),
  10523. name: "Back",
  10524. image: {
  10525. source: "./media/characters/amelia-rosie/back.svg",
  10526. extra: 1113 / 963,
  10527. bottom: 0.01
  10528. }
  10529. },
  10530. },
  10531. [
  10532. {
  10533. name: "Level 0",
  10534. height: math.unit(5 + 4 / 12, "feet")
  10535. },
  10536. {
  10537. name: "Level 1",
  10538. height: math.unit(164597, "feet"),
  10539. default: true
  10540. },
  10541. {
  10542. name: "Level 2",
  10543. height: math.unit(956243, "miles")
  10544. },
  10545. {
  10546. name: "Level 3",
  10547. height: math.unit(29421709423, "miles")
  10548. },
  10549. {
  10550. name: "Level 4",
  10551. height: math.unit(154, "lightyears")
  10552. },
  10553. {
  10554. name: "Level 5",
  10555. height: math.unit(4738272, "lightyears")
  10556. },
  10557. {
  10558. name: "Level 6",
  10559. height: math.unit(145787152896, "lightyears")
  10560. },
  10561. ]
  10562. ))
  10563. characterMakers.push(() => makeCharacter(
  10564. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10565. {
  10566. front: {
  10567. height: math.unit(5 + 11 / 12, "feet"),
  10568. weight: math.unit(65, "kg"),
  10569. name: "Front",
  10570. image: {
  10571. source: "./media/characters/rook-kitara/front.svg",
  10572. extra: 1347 / 1274,
  10573. bottom: 0.005
  10574. }
  10575. },
  10576. },
  10577. [
  10578. {
  10579. name: "Totally Unfair",
  10580. height: math.unit(1.8, "mm")
  10581. },
  10582. {
  10583. name: "Lap Rookie",
  10584. height: math.unit(1.4, "feet")
  10585. },
  10586. {
  10587. name: "Normal",
  10588. height: math.unit(5 + 11 / 12, "feet"),
  10589. default: true
  10590. },
  10591. {
  10592. name: "How Did This Happen",
  10593. height: math.unit(80, "miles")
  10594. }
  10595. ]
  10596. ))
  10597. characterMakers.push(() => makeCharacter(
  10598. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10599. {
  10600. front: {
  10601. height: math.unit(7, "feet"),
  10602. weight: math.unit(300, "lb"),
  10603. name: "Front",
  10604. image: {
  10605. source: "./media/characters/pisces/front.svg",
  10606. extra: 2255 / 2115,
  10607. bottom: 0.03
  10608. }
  10609. },
  10610. back: {
  10611. height: math.unit(7, "feet"),
  10612. weight: math.unit(300, "lb"),
  10613. name: "Back",
  10614. image: {
  10615. source: "./media/characters/pisces/back.svg",
  10616. extra: 2146 / 2055,
  10617. bottom: 0.04
  10618. }
  10619. },
  10620. },
  10621. [
  10622. {
  10623. name: "Normal",
  10624. height: math.unit(7, "feet"),
  10625. default: true
  10626. },
  10627. {
  10628. name: "Swimming Pool",
  10629. height: math.unit(12.2, "meters")
  10630. },
  10631. {
  10632. name: "Olympic Swimming Pool",
  10633. height: math.unit(56.3, "meters")
  10634. },
  10635. {
  10636. name: "Lake Superior",
  10637. height: math.unit(93900, "meters")
  10638. },
  10639. {
  10640. name: "Mediterranean Sea",
  10641. height: math.unit(644457, "meters")
  10642. },
  10643. {
  10644. name: "World's Oceans",
  10645. height: math.unit(4567491, "meters")
  10646. },
  10647. ]
  10648. ))
  10649. characterMakers.push(() => makeCharacter(
  10650. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10651. {
  10652. front: {
  10653. height: math.unit(2.3, "meters"),
  10654. weight: math.unit(120, "kg"),
  10655. name: "Front",
  10656. image: {
  10657. source: "./media/characters/zelas/front.svg"
  10658. }
  10659. },
  10660. side: {
  10661. height: math.unit(2.3, "meters"),
  10662. weight: math.unit(120, "kg"),
  10663. name: "Side",
  10664. image: {
  10665. source: "./media/characters/zelas/side.svg"
  10666. }
  10667. },
  10668. back: {
  10669. height: math.unit(2.3, "meters"),
  10670. weight: math.unit(120, "kg"),
  10671. name: "Back",
  10672. image: {
  10673. source: "./media/characters/zelas/back.svg"
  10674. }
  10675. },
  10676. foot: {
  10677. height: math.unit(1.116, "feet"),
  10678. name: "Foot",
  10679. image: {
  10680. source: "./media/characters/zelas/foot.svg"
  10681. }
  10682. },
  10683. },
  10684. [
  10685. {
  10686. name: "Normal",
  10687. height: math.unit(2.3, "meters")
  10688. },
  10689. {
  10690. name: "Macro",
  10691. height: math.unit(30, "meters"),
  10692. default: true
  10693. },
  10694. ]
  10695. ))
  10696. characterMakers.push(() => makeCharacter(
  10697. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10698. {
  10699. front: {
  10700. height: math.unit(1, "inch"),
  10701. weight: math.unit(0.21, "grams"),
  10702. name: "Front",
  10703. image: {
  10704. source: "./media/characters/talbot/front.svg",
  10705. extra: 594 / 544
  10706. }
  10707. },
  10708. },
  10709. [
  10710. {
  10711. name: "Micro",
  10712. height: math.unit(1, "inch"),
  10713. default: true
  10714. },
  10715. ]
  10716. ))
  10717. characterMakers.push(() => makeCharacter(
  10718. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10719. {
  10720. front: {
  10721. height: math.unit(3 + 3 / 12, "feet"),
  10722. weight: math.unit(51.8, "lb"),
  10723. name: "Front",
  10724. image: {
  10725. source: "./media/characters/fliss/front.svg",
  10726. extra: 840 / 640
  10727. }
  10728. },
  10729. },
  10730. [
  10731. {
  10732. name: "Teeny Tiny",
  10733. height: math.unit(1, "mm")
  10734. },
  10735. {
  10736. name: "Small",
  10737. height: math.unit(1, "inch"),
  10738. default: true
  10739. },
  10740. {
  10741. name: "Standard Sylveon",
  10742. height: math.unit(3 + 3 / 12, "feet")
  10743. },
  10744. {
  10745. name: "Large Nuisance",
  10746. height: math.unit(33, "feet")
  10747. },
  10748. {
  10749. name: "City Filler",
  10750. height: math.unit(3000, "feet")
  10751. },
  10752. {
  10753. name: "New Horizon",
  10754. height: math.unit(6000, "miles")
  10755. },
  10756. ]
  10757. ))
  10758. characterMakers.push(() => makeCharacter(
  10759. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10760. {
  10761. front: {
  10762. height: math.unit(5, "cm"),
  10763. weight: math.unit(1.94, "g"),
  10764. name: "Front",
  10765. image: {
  10766. source: "./media/characters/fleta/front.svg",
  10767. extra: 835 / 803
  10768. }
  10769. },
  10770. back: {
  10771. height: math.unit(5, "cm"),
  10772. weight: math.unit(1.94, "g"),
  10773. name: "Back",
  10774. image: {
  10775. source: "./media/characters/fleta/back.svg",
  10776. extra: 835 / 803
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Micro",
  10783. height: math.unit(5, "cm"),
  10784. default: true
  10785. },
  10786. ]
  10787. ))
  10788. characterMakers.push(() => makeCharacter(
  10789. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10790. {
  10791. front: {
  10792. height: math.unit(6, "feet"),
  10793. weight: math.unit(225, "lb"),
  10794. name: "Front",
  10795. image: {
  10796. source: "./media/characters/dominic/front.svg",
  10797. extra: 1770 / 1620,
  10798. bottom: 0.025
  10799. }
  10800. },
  10801. back: {
  10802. height: math.unit(6, "feet"),
  10803. weight: math.unit(225, "lb"),
  10804. name: "Back",
  10805. image: {
  10806. source: "./media/characters/dominic/back.svg",
  10807. extra: 1745 / 1620,
  10808. bottom: 0.065
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Nano",
  10815. height: math.unit(0.1, "mm")
  10816. },
  10817. {
  10818. name: "Micro-",
  10819. height: math.unit(1, "mm")
  10820. },
  10821. {
  10822. name: "Micro",
  10823. height: math.unit(4, "inches")
  10824. },
  10825. {
  10826. name: "Normal",
  10827. height: math.unit(6 + 4 / 12, "feet"),
  10828. default: true
  10829. },
  10830. {
  10831. name: "Macro",
  10832. height: math.unit(115, "feet")
  10833. },
  10834. {
  10835. name: "Macro+",
  10836. height: math.unit(955, "feet")
  10837. },
  10838. {
  10839. name: "Megamacro",
  10840. height: math.unit(8990, "feet")
  10841. },
  10842. {
  10843. name: "Gigmacro",
  10844. height: math.unit(9310, "miles")
  10845. },
  10846. {
  10847. name: "Teramacro",
  10848. height: math.unit(1567005010, "miles")
  10849. },
  10850. {
  10851. name: "Examacro",
  10852. height: math.unit(1425, "parsecs")
  10853. },
  10854. ]
  10855. ))
  10856. characterMakers.push(() => makeCharacter(
  10857. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10858. {
  10859. front: {
  10860. height: math.unit(400, "feet"),
  10861. weight: math.unit(44444444, "lb"),
  10862. name: "Front",
  10863. image: {
  10864. source: "./media/characters/major-colonel/front.svg"
  10865. }
  10866. },
  10867. back: {
  10868. height: math.unit(400, "feet"),
  10869. weight: math.unit(44444444, "lb"),
  10870. name: "Back",
  10871. image: {
  10872. source: "./media/characters/major-colonel/back.svg"
  10873. }
  10874. },
  10875. },
  10876. [
  10877. {
  10878. name: "Macro",
  10879. height: math.unit(400, "feet"),
  10880. default: true
  10881. },
  10882. ]
  10883. ))
  10884. characterMakers.push(() => makeCharacter(
  10885. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10886. {
  10887. catFront: {
  10888. height: math.unit(6, "feet"),
  10889. weight: math.unit(120, "lb"),
  10890. name: "Front (Cat Side)",
  10891. image: {
  10892. source: "./media/characters/axel-lycan/cat-front.svg",
  10893. extra: 430 / 402,
  10894. bottom: 43 / 472.35
  10895. }
  10896. },
  10897. catBack: {
  10898. height: math.unit(6, "feet"),
  10899. weight: math.unit(120, "lb"),
  10900. name: "Back (Cat Side)",
  10901. image: {
  10902. source: "./media/characters/axel-lycan/cat-back.svg",
  10903. extra: 447 / 419,
  10904. bottom: 23.3 / 469
  10905. }
  10906. },
  10907. wolfFront: {
  10908. height: math.unit(6, "feet"),
  10909. weight: math.unit(120, "lb"),
  10910. name: "Front (Wolf Side)",
  10911. image: {
  10912. source: "./media/characters/axel-lycan/wolf-front.svg",
  10913. extra: 485 / 456,
  10914. bottom: 19 / 504
  10915. }
  10916. },
  10917. wolfBack: {
  10918. height: math.unit(6, "feet"),
  10919. weight: math.unit(120, "lb"),
  10920. name: "Back (Wolf Side)",
  10921. image: {
  10922. source: "./media/characters/axel-lycan/wolf-back.svg",
  10923. extra: 475 / 438,
  10924. bottom: 39.2 / 514
  10925. }
  10926. },
  10927. },
  10928. [
  10929. {
  10930. name: "Macro",
  10931. height: math.unit(1, "km"),
  10932. default: true
  10933. },
  10934. ]
  10935. ))
  10936. characterMakers.push(() => makeCharacter(
  10937. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10938. {
  10939. front: {
  10940. height: math.unit(5 + 9 / 12, "feet"),
  10941. weight: math.unit(175, "lb"),
  10942. name: "Front",
  10943. image: {
  10944. source: "./media/characters/vanrel-hyena/front.svg",
  10945. extra: 1086 / 1010,
  10946. bottom: 0.04
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(5 + 9 / 12, "feet"),
  10954. default: true
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(103, "lb"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/abbott-absol/front.svg",
  10967. extra: 765/694,
  10968. bottom: 47/812
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Megamicro",
  10975. height: math.unit(0.1, "mm")
  10976. },
  10977. {
  10978. name: "Micro",
  10979. height: math.unit(1, "inch")
  10980. },
  10981. {
  10982. name: "Normal",
  10983. height: math.unit(6, "feet"),
  10984. default: true
  10985. },
  10986. ]
  10987. ))
  10988. characterMakers.push(() => makeCharacter(
  10989. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  10990. {
  10991. front: {
  10992. height: math.unit(6, "feet"),
  10993. weight: math.unit(264, "lb"),
  10994. name: "Front",
  10995. image: {
  10996. source: "./media/characters/hector/front.svg",
  10997. extra: 2280 / 2130,
  10998. bottom: 0.07
  10999. }
  11000. },
  11001. },
  11002. [
  11003. {
  11004. name: "Normal",
  11005. height: math.unit(12.25, "foot"),
  11006. default: true
  11007. },
  11008. {
  11009. name: "Macro",
  11010. height: math.unit(160, "feet")
  11011. },
  11012. ]
  11013. ))
  11014. characterMakers.push(() => makeCharacter(
  11015. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11016. {
  11017. front: {
  11018. height: math.unit(6, "feet"),
  11019. weight: math.unit(150, "lb"),
  11020. name: "Front",
  11021. image: {
  11022. source: "./media/characters/sal/front.svg",
  11023. extra: 1846 / 1699,
  11024. bottom: 0.04
  11025. }
  11026. },
  11027. },
  11028. [
  11029. {
  11030. name: "Megamacro",
  11031. height: math.unit(10, "miles"),
  11032. default: true
  11033. },
  11034. ]
  11035. ))
  11036. characterMakers.push(() => makeCharacter(
  11037. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11038. {
  11039. front: {
  11040. height: math.unit(3, "meters"),
  11041. weight: math.unit(450, "kg"),
  11042. name: "front",
  11043. image: {
  11044. source: "./media/characters/ranger/front.svg",
  11045. extra: 2401 / 2243,
  11046. bottom: 0.05
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Normal",
  11053. height: math.unit(3, "meters"),
  11054. default: true
  11055. },
  11056. ]
  11057. ))
  11058. characterMakers.push(() => makeCharacter(
  11059. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11060. {
  11061. front: {
  11062. height: math.unit(14, "feet"),
  11063. weight: math.unit(800, "kg"),
  11064. name: "Front",
  11065. image: {
  11066. source: "./media/characters/theresa/front.svg",
  11067. extra: 3575 / 3346,
  11068. bottom: 0.03
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Normal",
  11075. height: math.unit(14, "feet"),
  11076. default: true
  11077. },
  11078. ]
  11079. ))
  11080. characterMakers.push(() => makeCharacter(
  11081. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11082. {
  11083. front: {
  11084. height: math.unit(6, "feet"),
  11085. weight: math.unit(3, "kg"),
  11086. name: "Front",
  11087. image: {
  11088. source: "./media/characters/ine/front.svg",
  11089. extra: 678 / 539,
  11090. bottom: 0.023
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(2.265, "feet"),
  11098. default: true
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(5, "feet"),
  11107. weight: math.unit(30, "kg"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/vial/front.svg",
  11111. extra: 1365 / 1277,
  11112. bottom: 0.04
  11113. }
  11114. },
  11115. },
  11116. [
  11117. {
  11118. name: "Normal",
  11119. height: math.unit(5, "feet"),
  11120. default: true
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11126. {
  11127. side: {
  11128. height: math.unit(3.4, "meters"),
  11129. weight: math.unit(1000, "lb"),
  11130. name: "Side",
  11131. image: {
  11132. source: "./media/characters/rovoska/side.svg",
  11133. extra: 4403 / 1515
  11134. }
  11135. },
  11136. },
  11137. [
  11138. {
  11139. name: "Normal",
  11140. height: math.unit(3.4, "meters"),
  11141. default: true
  11142. },
  11143. ]
  11144. ))
  11145. characterMakers.push(() => makeCharacter(
  11146. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11147. {
  11148. front: {
  11149. height: math.unit(8, "feet"),
  11150. weight: math.unit(315, "lb"),
  11151. name: "Front",
  11152. image: {
  11153. source: "./media/characters/gunner-rotthbauer/front.svg"
  11154. }
  11155. },
  11156. back: {
  11157. height: math.unit(8, "feet"),
  11158. weight: math.unit(315, "lb"),
  11159. name: "Back",
  11160. image: {
  11161. source: "./media/characters/gunner-rotthbauer/back.svg"
  11162. }
  11163. },
  11164. },
  11165. [
  11166. {
  11167. name: "Micro",
  11168. height: math.unit(3.5, "inches")
  11169. },
  11170. {
  11171. name: "Normal",
  11172. height: math.unit(8, "feet"),
  11173. default: true
  11174. },
  11175. {
  11176. name: "Macro",
  11177. height: math.unit(250, "feet")
  11178. },
  11179. {
  11180. name: "Megamacro",
  11181. height: math.unit(1, "AU")
  11182. },
  11183. ]
  11184. ))
  11185. characterMakers.push(() => makeCharacter(
  11186. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11187. {
  11188. front: {
  11189. height: math.unit(5 + 5 / 12, "feet"),
  11190. weight: math.unit(140, "lb"),
  11191. name: "Front",
  11192. image: {
  11193. source: "./media/characters/allatia/front.svg",
  11194. extra: 1227 / 1180,
  11195. bottom: 0.027
  11196. }
  11197. },
  11198. },
  11199. [
  11200. {
  11201. name: "Normal",
  11202. height: math.unit(5 + 5 / 12, "feet")
  11203. },
  11204. {
  11205. name: "Macro",
  11206. height: math.unit(250, "feet"),
  11207. default: true
  11208. },
  11209. {
  11210. name: "Megamacro",
  11211. height: math.unit(8, "miles")
  11212. }
  11213. ]
  11214. ))
  11215. characterMakers.push(() => makeCharacter(
  11216. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11217. {
  11218. front: {
  11219. height: math.unit(6, "feet"),
  11220. weight: math.unit(120, "lb"),
  11221. name: "Front",
  11222. image: {
  11223. source: "./media/characters/tene/front.svg",
  11224. extra: 814/750,
  11225. bottom: 36/850
  11226. }
  11227. },
  11228. stomping: {
  11229. height: math.unit(2.025, "meters"),
  11230. weight: math.unit(120, "lb"),
  11231. name: "Stomping",
  11232. image: {
  11233. source: "./media/characters/tene/stomping.svg",
  11234. extra: 885/821,
  11235. bottom: 15/900
  11236. }
  11237. },
  11238. sitting: {
  11239. height: math.unit(1, "meter"),
  11240. weight: math.unit(120, "lb"),
  11241. name: "Sitting",
  11242. image: {
  11243. source: "./media/characters/tene/sitting.svg",
  11244. extra: 396/366,
  11245. bottom: 79/475
  11246. }
  11247. },
  11248. smiling: {
  11249. height: math.unit(1.2, "feet"),
  11250. name: "Smiling",
  11251. image: {
  11252. source: "./media/characters/tene/smiling.svg",
  11253. extra: 1364/1071,
  11254. bottom: 0/1364
  11255. }
  11256. },
  11257. smug: {
  11258. height: math.unit(1.3, "feet"),
  11259. name: "Smug",
  11260. image: {
  11261. source: "./media/characters/tene/smug.svg",
  11262. extra: 1323/1082,
  11263. bottom: 0/1323
  11264. }
  11265. },
  11266. feral: {
  11267. height: math.unit(3.9, "feet"),
  11268. weight: math.unit(250, "lb"),
  11269. name: "Feral",
  11270. image: {
  11271. source: "./media/characters/tene/feral.svg",
  11272. extra: 717 / 458,
  11273. bottom: 0.179
  11274. }
  11275. },
  11276. },
  11277. [
  11278. {
  11279. name: "Normal",
  11280. height: math.unit(6, "feet")
  11281. },
  11282. {
  11283. name: "Macro",
  11284. height: math.unit(300, "feet"),
  11285. default: true
  11286. },
  11287. {
  11288. name: "Megamacro",
  11289. height: math.unit(5, "miles")
  11290. },
  11291. ]
  11292. ))
  11293. characterMakers.push(() => makeCharacter(
  11294. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11295. {
  11296. side: {
  11297. height: math.unit(6, "feet"),
  11298. name: "Side",
  11299. image: {
  11300. source: "./media/characters/evander/side.svg",
  11301. extra: 877 / 477
  11302. }
  11303. },
  11304. },
  11305. [
  11306. {
  11307. name: "Normal",
  11308. height: math.unit(0.83, "meters"),
  11309. default: true
  11310. },
  11311. ]
  11312. ))
  11313. characterMakers.push(() => makeCharacter(
  11314. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11315. {
  11316. front: {
  11317. height: math.unit(12, "feet"),
  11318. weight: math.unit(1000, "lb"),
  11319. name: "Front",
  11320. image: {
  11321. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11322. extra: 1762 / 1611
  11323. }
  11324. },
  11325. back: {
  11326. height: math.unit(12, "feet"),
  11327. weight: math.unit(1000, "lb"),
  11328. name: "Back",
  11329. image: {
  11330. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11331. extra: 1762 / 1611
  11332. }
  11333. },
  11334. },
  11335. [
  11336. {
  11337. name: "Normal",
  11338. height: math.unit(12, "feet"),
  11339. default: true
  11340. },
  11341. {
  11342. name: "Kaiju",
  11343. height: math.unit(150, "feet")
  11344. },
  11345. ]
  11346. ))
  11347. characterMakers.push(() => makeCharacter(
  11348. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11349. {
  11350. front: {
  11351. height: math.unit(6, "feet"),
  11352. weight: math.unit(150, "lb"),
  11353. name: "Front",
  11354. image: {
  11355. source: "./media/characters/zero-alurus/front.svg"
  11356. }
  11357. },
  11358. back: {
  11359. height: math.unit(6, "feet"),
  11360. weight: math.unit(150, "lb"),
  11361. name: "Back",
  11362. image: {
  11363. source: "./media/characters/zero-alurus/back.svg"
  11364. }
  11365. },
  11366. },
  11367. [
  11368. {
  11369. name: "Normal",
  11370. height: math.unit(5 + 10 / 12, "feet")
  11371. },
  11372. {
  11373. name: "Macro",
  11374. height: math.unit(60, "feet"),
  11375. default: true
  11376. },
  11377. {
  11378. name: "Macro+",
  11379. height: math.unit(450, "feet")
  11380. },
  11381. ]
  11382. ))
  11383. characterMakers.push(() => makeCharacter(
  11384. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11385. {
  11386. front: {
  11387. height: math.unit(6, "feet"),
  11388. weight: math.unit(200, "lb"),
  11389. name: "Front",
  11390. image: {
  11391. source: "./media/characters/mega-shi/front.svg",
  11392. extra: 1279 / 1250,
  11393. bottom: 0.02
  11394. }
  11395. },
  11396. back: {
  11397. height: math.unit(6, "feet"),
  11398. weight: math.unit(200, "lb"),
  11399. name: "Back",
  11400. image: {
  11401. source: "./media/characters/mega-shi/back.svg",
  11402. extra: 1279 / 1250,
  11403. bottom: 0.02
  11404. }
  11405. },
  11406. },
  11407. [
  11408. {
  11409. name: "Micro",
  11410. height: math.unit(16 + 6 / 12, "feet")
  11411. },
  11412. {
  11413. name: "Third Dimension",
  11414. height: math.unit(40, "meters")
  11415. },
  11416. {
  11417. name: "Normal",
  11418. height: math.unit(660, "feet"),
  11419. default: true
  11420. },
  11421. {
  11422. name: "Megamacro",
  11423. height: math.unit(10, "miles")
  11424. },
  11425. {
  11426. name: "Planetary Launch",
  11427. height: math.unit(500, "miles")
  11428. },
  11429. {
  11430. name: "Interstellar",
  11431. height: math.unit(1e9, "miles")
  11432. },
  11433. {
  11434. name: "Leaving the Universe",
  11435. height: math.unit(1, "gigaparsec")
  11436. },
  11437. {
  11438. name: "Travelling Universes",
  11439. height: math.unit(30e15, "parsecs")
  11440. },
  11441. ]
  11442. ))
  11443. characterMakers.push(() => makeCharacter(
  11444. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11445. {
  11446. front: {
  11447. height: math.unit(5 + 4/12, "feet"),
  11448. weight: math.unit(120, "lb"),
  11449. name: "Front",
  11450. image: {
  11451. source: "./media/characters/odyssey/front.svg",
  11452. extra: 1747/1571,
  11453. bottom: 47/1794
  11454. }
  11455. },
  11456. side: {
  11457. height: math.unit(5.1, "feet"),
  11458. weight: math.unit(120, "lb"),
  11459. name: "Side",
  11460. image: {
  11461. source: "./media/characters/odyssey/side.svg",
  11462. extra: 1847/1619,
  11463. bottom: 47/1894
  11464. }
  11465. },
  11466. lounging: {
  11467. height: math.unit(1.464, "feet"),
  11468. weight: math.unit(120, "lb"),
  11469. name: "Lounging",
  11470. image: {
  11471. source: "./media/characters/odyssey/lounging.svg",
  11472. extra: 1235/837,
  11473. bottom: 551/1786
  11474. }
  11475. },
  11476. },
  11477. [
  11478. {
  11479. name: "Normal",
  11480. height: math.unit(5 + 4 / 12, "feet")
  11481. },
  11482. {
  11483. name: "Macro",
  11484. height: math.unit(1, "km")
  11485. },
  11486. {
  11487. name: "Megamacro",
  11488. height: math.unit(3000, "km")
  11489. },
  11490. {
  11491. name: "Gigamacro",
  11492. height: math.unit(1, "AU"),
  11493. default: true
  11494. },
  11495. {
  11496. name: "Omniversal",
  11497. height: math.unit(100e14, "lightyears")
  11498. },
  11499. ]
  11500. ))
  11501. characterMakers.push(() => makeCharacter(
  11502. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11503. {
  11504. front: {
  11505. height: math.unit(5 + 10/12, "feet"),
  11506. name: "Front",
  11507. image: {
  11508. source: "./media/characters/mekuto/front.svg",
  11509. extra: 875/835,
  11510. bottom: 46/921
  11511. }
  11512. },
  11513. },
  11514. [
  11515. {
  11516. name: "Minimicro",
  11517. height: math.unit(0.2, "inches")
  11518. },
  11519. {
  11520. name: "Micro",
  11521. height: math.unit(1.5, "inches")
  11522. },
  11523. {
  11524. name: "Normal",
  11525. height: math.unit(5 + 10 / 12, "feet"),
  11526. default: true
  11527. },
  11528. {
  11529. name: "Minimacro",
  11530. height: math.unit(17 + 9 / 12, "feet")
  11531. },
  11532. {
  11533. name: "Macro",
  11534. height: math.unit(177.5, "feet")
  11535. },
  11536. {
  11537. name: "Megamacro",
  11538. height: math.unit(152, "miles")
  11539. },
  11540. ]
  11541. ))
  11542. characterMakers.push(() => makeCharacter(
  11543. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11544. {
  11545. front: {
  11546. height: math.unit(6.5, "inches"),
  11547. weight: math.unit(13, "oz"),
  11548. name: "Front",
  11549. image: {
  11550. source: "./media/characters/dafydd-tomos/front.svg",
  11551. extra: 2990 / 2603,
  11552. bottom: 0.03
  11553. }
  11554. },
  11555. },
  11556. [
  11557. {
  11558. name: "Micro",
  11559. height: math.unit(6.5, "inches"),
  11560. default: true
  11561. },
  11562. ]
  11563. ))
  11564. characterMakers.push(() => makeCharacter(
  11565. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11566. {
  11567. front: {
  11568. height: math.unit(6, "feet"),
  11569. weight: math.unit(150, "lb"),
  11570. name: "Front",
  11571. image: {
  11572. source: "./media/characters/splinter/front.svg",
  11573. extra: 2990 / 2882,
  11574. bottom: 0.04
  11575. }
  11576. },
  11577. back: {
  11578. height: math.unit(6, "feet"),
  11579. weight: math.unit(150, "lb"),
  11580. name: "Back",
  11581. image: {
  11582. source: "./media/characters/splinter/back.svg",
  11583. extra: 2990 / 2882,
  11584. bottom: 0.04
  11585. }
  11586. },
  11587. },
  11588. [
  11589. {
  11590. name: "Normal",
  11591. height: math.unit(6, "feet")
  11592. },
  11593. {
  11594. name: "Macro",
  11595. height: math.unit(230, "meters"),
  11596. default: true
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(4 + 10 / 12, "feet"),
  11605. weight: math.unit(480, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/snow-gabumon/front.svg",
  11609. extra: 1140 / 963,
  11610. bottom: 0.058
  11611. }
  11612. },
  11613. back: {
  11614. height: math.unit(4 + 10 / 12, "feet"),
  11615. weight: math.unit(480, "lb"),
  11616. name: "Back",
  11617. image: {
  11618. source: "./media/characters/snow-gabumon/back.svg",
  11619. extra: 1115 / 962,
  11620. bottom: 0.041
  11621. }
  11622. },
  11623. frontUndresed: {
  11624. height: math.unit(4 + 10 / 12, "feet"),
  11625. weight: math.unit(480, "lb"),
  11626. name: "Front (Undressed)",
  11627. image: {
  11628. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11629. extra: 1061 / 960,
  11630. bottom: 0.045
  11631. }
  11632. },
  11633. },
  11634. [
  11635. {
  11636. name: "Micro",
  11637. height: math.unit(1, "inch")
  11638. },
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(4 + 10 / 12, "feet"),
  11642. default: true
  11643. },
  11644. {
  11645. name: "Macro",
  11646. height: math.unit(200, "feet")
  11647. },
  11648. {
  11649. name: "Megamacro",
  11650. height: math.unit(120, "miles")
  11651. },
  11652. {
  11653. name: "Gigamacro",
  11654. height: math.unit(9800, "miles")
  11655. },
  11656. ]
  11657. ))
  11658. characterMakers.push(() => makeCharacter(
  11659. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11660. {
  11661. front: {
  11662. height: math.unit(1.7, "meters"),
  11663. weight: math.unit(140, "lb"),
  11664. name: "Front",
  11665. image: {
  11666. source: "./media/characters/moody/front.svg",
  11667. extra: 3226 / 3007,
  11668. bottom: 0.087
  11669. }
  11670. },
  11671. },
  11672. [
  11673. {
  11674. name: "Micro",
  11675. height: math.unit(1, "mm")
  11676. },
  11677. {
  11678. name: "Normal",
  11679. height: math.unit(1.7, "meters"),
  11680. default: true
  11681. },
  11682. {
  11683. name: "Macro",
  11684. height: math.unit(80, "meters")
  11685. },
  11686. {
  11687. name: "Macro+",
  11688. height: math.unit(500, "meters")
  11689. },
  11690. ]
  11691. ))
  11692. characterMakers.push(() => makeCharacter(
  11693. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11694. {
  11695. front: {
  11696. height: math.unit(6, "feet"),
  11697. weight: math.unit(150, "lb"),
  11698. name: "Front",
  11699. image: {
  11700. source: "./media/characters/zyas/front.svg",
  11701. extra: 1180 / 1120,
  11702. bottom: 0.045
  11703. }
  11704. },
  11705. },
  11706. [
  11707. {
  11708. name: "Normal",
  11709. height: math.unit(10, "feet"),
  11710. default: true
  11711. },
  11712. {
  11713. name: "Macro",
  11714. height: math.unit(500, "feet")
  11715. },
  11716. {
  11717. name: "Megamacro",
  11718. height: math.unit(5, "miles")
  11719. },
  11720. {
  11721. name: "Teramacro",
  11722. height: math.unit(150000, "miles")
  11723. },
  11724. ]
  11725. ))
  11726. characterMakers.push(() => makeCharacter(
  11727. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11728. {
  11729. front: {
  11730. height: math.unit(6, "feet"),
  11731. weight: math.unit(150, "lb"),
  11732. name: "Front",
  11733. image: {
  11734. source: "./media/characters/cuon/front.svg",
  11735. extra: 1390 / 1320,
  11736. bottom: 0.008
  11737. }
  11738. },
  11739. },
  11740. [
  11741. {
  11742. name: "Micro",
  11743. height: math.unit(3, "inches")
  11744. },
  11745. {
  11746. name: "Normal",
  11747. height: math.unit(18 + 9 / 12, "feet"),
  11748. default: true
  11749. },
  11750. {
  11751. name: "Macro",
  11752. height: math.unit(360, "feet")
  11753. },
  11754. {
  11755. name: "Megamacro",
  11756. height: math.unit(360, "miles")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11762. {
  11763. front: {
  11764. height: math.unit(2.4, "meters"),
  11765. weight: math.unit(70, "kg"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/nyanuxk/front.svg",
  11769. extra: 1172 / 1084,
  11770. bottom: 0.065
  11771. }
  11772. },
  11773. side: {
  11774. height: math.unit(2.4, "meters"),
  11775. weight: math.unit(70, "kg"),
  11776. name: "Side",
  11777. image: {
  11778. source: "./media/characters/nyanuxk/side.svg",
  11779. extra: 1190 / 1132,
  11780. bottom: 0.007
  11781. }
  11782. },
  11783. back: {
  11784. height: math.unit(2.4, "meters"),
  11785. weight: math.unit(70, "kg"),
  11786. name: "Back",
  11787. image: {
  11788. source: "./media/characters/nyanuxk/back.svg",
  11789. extra: 1200 / 1141,
  11790. bottom: 0.015
  11791. }
  11792. },
  11793. foot: {
  11794. height: math.unit(0.52, "meters"),
  11795. name: "Foot",
  11796. image: {
  11797. source: "./media/characters/nyanuxk/foot.svg"
  11798. }
  11799. },
  11800. },
  11801. [
  11802. {
  11803. name: "Micro",
  11804. height: math.unit(2, "cm")
  11805. },
  11806. {
  11807. name: "Normal",
  11808. height: math.unit(2.4, "meters"),
  11809. default: true
  11810. },
  11811. {
  11812. name: "Smaller Macro",
  11813. height: math.unit(120, "meters")
  11814. },
  11815. {
  11816. name: "Bigger Macro",
  11817. height: math.unit(1.2, "km")
  11818. },
  11819. {
  11820. name: "Megamacro",
  11821. height: math.unit(15, "kilometers")
  11822. },
  11823. {
  11824. name: "Gigamacro",
  11825. height: math.unit(2000, "km")
  11826. },
  11827. {
  11828. name: "Teramacro",
  11829. height: math.unit(500000, "km")
  11830. },
  11831. ]
  11832. ))
  11833. characterMakers.push(() => makeCharacter(
  11834. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11835. {
  11836. side: {
  11837. height: math.unit(6, "feet"),
  11838. name: "Side",
  11839. image: {
  11840. source: "./media/characters/ailbhe/side.svg",
  11841. extra: 757 / 464,
  11842. bottom: 0.041
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Normal",
  11849. height: math.unit(1.07, "meters"),
  11850. default: true
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11856. {
  11857. front: {
  11858. height: math.unit(6, "feet"),
  11859. weight: math.unit(120, "kg"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/zevulfius/front.svg",
  11863. extra: 965 / 903
  11864. }
  11865. },
  11866. side: {
  11867. height: math.unit(6, "feet"),
  11868. weight: math.unit(120, "kg"),
  11869. name: "Side",
  11870. image: {
  11871. source: "./media/characters/zevulfius/side.svg",
  11872. extra: 939 / 900
  11873. }
  11874. },
  11875. back: {
  11876. height: math.unit(6, "feet"),
  11877. weight: math.unit(120, "kg"),
  11878. name: "Back",
  11879. image: {
  11880. source: "./media/characters/zevulfius/back.svg",
  11881. extra: 918 / 854,
  11882. bottom: 0.005
  11883. }
  11884. },
  11885. foot: {
  11886. height: math.unit(6 / 3.72, "feet"),
  11887. name: "Foot",
  11888. image: {
  11889. source: "./media/characters/zevulfius/foot.svg"
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Macro",
  11896. height: math.unit(750, "meters")
  11897. },
  11898. {
  11899. name: "Megamacro",
  11900. height: math.unit(20, "km"),
  11901. default: true
  11902. },
  11903. {
  11904. name: "Gigamacro",
  11905. height: math.unit(2000, "km")
  11906. },
  11907. {
  11908. name: "Teramacro",
  11909. height: math.unit(250000, "km")
  11910. },
  11911. ]
  11912. ))
  11913. characterMakers.push(() => makeCharacter(
  11914. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11915. {
  11916. front: {
  11917. height: math.unit(100, "feet"),
  11918. weight: math.unit(350, "kg"),
  11919. name: "Front",
  11920. image: {
  11921. source: "./media/characters/rikes/front.svg",
  11922. extra: 1565 / 1483,
  11923. bottom: 0.017
  11924. }
  11925. },
  11926. },
  11927. [
  11928. {
  11929. name: "Macro",
  11930. height: math.unit(100, "feet"),
  11931. default: true
  11932. },
  11933. ]
  11934. ))
  11935. characterMakers.push(() => makeCharacter(
  11936. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11937. {
  11938. front: {
  11939. height: math.unit(8, "feet"),
  11940. weight: math.unit(356, "lb"),
  11941. name: "Front",
  11942. image: {
  11943. source: "./media/characters/adam-silver-mane/front.svg",
  11944. extra: 1036/937,
  11945. bottom: 63/1099
  11946. }
  11947. },
  11948. side: {
  11949. height: math.unit(8, "feet"),
  11950. weight: math.unit(356, "lb"),
  11951. name: "Side",
  11952. image: {
  11953. source: "./media/characters/adam-silver-mane/side.svg",
  11954. extra: 997/901,
  11955. bottom: 59/1056
  11956. }
  11957. },
  11958. frontNsfw: {
  11959. height: math.unit(8, "feet"),
  11960. weight: math.unit(356, "lb"),
  11961. name: "Front (NSFW)",
  11962. image: {
  11963. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11964. extra: 1036/937,
  11965. bottom: 63/1099
  11966. }
  11967. },
  11968. sideNsfw: {
  11969. height: math.unit(8, "feet"),
  11970. weight: math.unit(356, "lb"),
  11971. name: "Side (NSFW)",
  11972. image: {
  11973. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11974. extra: 997/901,
  11975. bottom: 59/1056
  11976. }
  11977. },
  11978. dick: {
  11979. height: math.unit(2.1, "feet"),
  11980. name: "Dick",
  11981. image: {
  11982. source: "./media/characters/adam-silver-mane/dick.svg"
  11983. }
  11984. },
  11985. taur: {
  11986. height: math.unit(16, "feet"),
  11987. weight: math.unit(1500, "kg"),
  11988. name: "Taur",
  11989. image: {
  11990. source: "./media/characters/adam-silver-mane/taur.svg",
  11991. extra: 1713 / 1571,
  11992. bottom: 0.01
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Normal",
  11999. height: math.unit(8, "feet")
  12000. },
  12001. {
  12002. name: "Minimacro",
  12003. height: math.unit(80, "feet")
  12004. },
  12005. {
  12006. name: "MDA",
  12007. height: math.unit(80, "meters")
  12008. },
  12009. {
  12010. name: "Macro",
  12011. height: math.unit(800, "feet"),
  12012. default: true
  12013. },
  12014. {
  12015. name: "Megamacro",
  12016. height: math.unit(8000, "feet")
  12017. },
  12018. {
  12019. name: "Gigamacro",
  12020. height: math.unit(800, "miles")
  12021. },
  12022. {
  12023. name: "Teramacro",
  12024. height: math.unit(80000, "miles")
  12025. },
  12026. {
  12027. name: "Celestial",
  12028. height: math.unit(8e6, "miles")
  12029. },
  12030. {
  12031. name: "Star Dragon",
  12032. height: math.unit(800000, "parsecs")
  12033. },
  12034. {
  12035. name: "Godly",
  12036. height: math.unit(800, "teraparsecs")
  12037. },
  12038. ]
  12039. ))
  12040. characterMakers.push(() => makeCharacter(
  12041. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12042. {
  12043. front: {
  12044. height: math.unit(6, "feet"),
  12045. weight: math.unit(150, "lb"),
  12046. name: "Front",
  12047. image: {
  12048. source: "./media/characters/ky'owin/front.svg",
  12049. extra: 3862/3053,
  12050. bottom: 74/3936
  12051. }
  12052. },
  12053. },
  12054. [
  12055. {
  12056. name: "Normal",
  12057. height: math.unit(6 + 8 / 12, "feet")
  12058. },
  12059. {
  12060. name: "Large",
  12061. height: math.unit(68, "feet")
  12062. },
  12063. {
  12064. name: "Macro",
  12065. height: math.unit(132, "feet")
  12066. },
  12067. {
  12068. name: "Macro+",
  12069. height: math.unit(340, "feet")
  12070. },
  12071. {
  12072. name: "Macro++",
  12073. height: math.unit(680, "feet"),
  12074. default: true
  12075. },
  12076. {
  12077. name: "Megamacro",
  12078. height: math.unit(1, "mile")
  12079. },
  12080. {
  12081. name: "Megamacro+",
  12082. height: math.unit(10, "miles")
  12083. },
  12084. ]
  12085. ))
  12086. characterMakers.push(() => makeCharacter(
  12087. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12088. {
  12089. front: {
  12090. height: math.unit(4, "feet"),
  12091. weight: math.unit(50, "lb"),
  12092. name: "Front",
  12093. image: {
  12094. source: "./media/characters/mal/front.svg",
  12095. extra: 785 / 724,
  12096. bottom: 0.07
  12097. }
  12098. },
  12099. },
  12100. [
  12101. {
  12102. name: "Micro",
  12103. height: math.unit(4, "inches")
  12104. },
  12105. {
  12106. name: "Normal",
  12107. height: math.unit(4, "feet"),
  12108. default: true
  12109. },
  12110. {
  12111. name: "Macro",
  12112. height: math.unit(200, "feet")
  12113. },
  12114. ]
  12115. ))
  12116. characterMakers.push(() => makeCharacter(
  12117. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12118. {
  12119. front: {
  12120. height: math.unit(6, "feet"),
  12121. weight: math.unit(150, "lb"),
  12122. name: "Front",
  12123. image: {
  12124. source: "./media/characters/jordan-deware/front.svg",
  12125. extra: 1191 / 1012
  12126. }
  12127. },
  12128. },
  12129. [
  12130. {
  12131. name: "Nano",
  12132. height: math.unit(0.01, "mm")
  12133. },
  12134. {
  12135. name: "Minimicro",
  12136. height: math.unit(1, "mm")
  12137. },
  12138. {
  12139. name: "Micro",
  12140. height: math.unit(0.5, "inches")
  12141. },
  12142. {
  12143. name: "Normal",
  12144. height: math.unit(4, "feet"),
  12145. default: true
  12146. },
  12147. {
  12148. name: "Minimacro",
  12149. height: math.unit(40, "meters")
  12150. },
  12151. {
  12152. name: "Small Macro",
  12153. height: math.unit(400, "meters")
  12154. },
  12155. {
  12156. name: "Macro",
  12157. height: math.unit(4, "miles")
  12158. },
  12159. {
  12160. name: "Megamacro",
  12161. height: math.unit(40, "miles")
  12162. },
  12163. {
  12164. name: "Megamacro+",
  12165. height: math.unit(400, "miles")
  12166. },
  12167. {
  12168. name: "Gigamacro",
  12169. height: math.unit(400000, "miles")
  12170. },
  12171. ]
  12172. ))
  12173. characterMakers.push(() => makeCharacter(
  12174. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12175. {
  12176. side: {
  12177. height: math.unit(6, "feet"),
  12178. weight: math.unit(150, "lb"),
  12179. name: "Side",
  12180. image: {
  12181. source: "./media/characters/kimiko/side.svg",
  12182. extra: 600 / 358
  12183. }
  12184. },
  12185. },
  12186. [
  12187. {
  12188. name: "Normal",
  12189. height: math.unit(15, "feet"),
  12190. default: true
  12191. },
  12192. {
  12193. name: "Macro",
  12194. height: math.unit(220, "feet")
  12195. },
  12196. {
  12197. name: "Macro+",
  12198. height: math.unit(1450, "feet")
  12199. },
  12200. {
  12201. name: "Megamacro",
  12202. height: math.unit(11500, "feet")
  12203. },
  12204. {
  12205. name: "Gigamacro",
  12206. height: math.unit(9500, "miles")
  12207. },
  12208. {
  12209. name: "Teramacro",
  12210. height: math.unit(2208005005, "miles")
  12211. },
  12212. {
  12213. name: "Examacro",
  12214. height: math.unit(2750, "parsecs")
  12215. },
  12216. {
  12217. name: "Zettamacro",
  12218. height: math.unit(101500, "parsecs")
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12224. {
  12225. front: {
  12226. height: math.unit(6, "feet"),
  12227. weight: math.unit(70, "kg"),
  12228. name: "Front",
  12229. image: {
  12230. source: "./media/characters/andrew-sleepy/front.svg"
  12231. }
  12232. },
  12233. side: {
  12234. height: math.unit(6, "feet"),
  12235. weight: math.unit(70, "kg"),
  12236. name: "Side",
  12237. image: {
  12238. source: "./media/characters/andrew-sleepy/side.svg"
  12239. }
  12240. },
  12241. },
  12242. [
  12243. {
  12244. name: "Micro",
  12245. height: math.unit(1, "mm"),
  12246. default: true
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(6, "feet"),
  12255. weight: math.unit(150, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/judio/front.svg",
  12259. extra: 1258 / 1110
  12260. }
  12261. },
  12262. },
  12263. [
  12264. {
  12265. name: "Normal",
  12266. height: math.unit(5 + 6 / 12, "feet")
  12267. },
  12268. {
  12269. name: "Macro",
  12270. height: math.unit(1000, "feet"),
  12271. default: true
  12272. },
  12273. {
  12274. name: "Megamacro",
  12275. height: math.unit(10, "miles")
  12276. },
  12277. ]
  12278. ))
  12279. characterMakers.push(() => makeCharacter(
  12280. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12281. {
  12282. frontDressed: {
  12283. height: math.unit(6, "feet"),
  12284. weight: math.unit(68, "kg"),
  12285. name: "Front (Dressed)",
  12286. image: {
  12287. source: "./media/characters/nomaxice/front-dressed.svg",
  12288. extra: 1137/824,
  12289. bottom: 74/1211
  12290. }
  12291. },
  12292. frontShorts: {
  12293. height: math.unit(6, "feet"),
  12294. weight: math.unit(68, "kg"),
  12295. name: "Front (Shorts)",
  12296. image: {
  12297. source: "./media/characters/nomaxice/front-shorts.svg",
  12298. extra: 1137/824,
  12299. bottom: 74/1211
  12300. }
  12301. },
  12302. back: {
  12303. height: math.unit(6, "feet"),
  12304. weight: math.unit(68, "kg"),
  12305. name: "Back",
  12306. image: {
  12307. source: "./media/characters/nomaxice/back.svg",
  12308. extra: 822/786,
  12309. bottom: 39/861
  12310. }
  12311. },
  12312. hand: {
  12313. height: math.unit(0.565, "feet"),
  12314. name: "Hand",
  12315. image: {
  12316. source: "./media/characters/nomaxice/hand.svg"
  12317. }
  12318. },
  12319. foot: {
  12320. height: math.unit(1, "feet"),
  12321. name: "Foot",
  12322. image: {
  12323. source: "./media/characters/nomaxice/foot.svg"
  12324. }
  12325. },
  12326. },
  12327. [
  12328. {
  12329. name: "Micro",
  12330. height: math.unit(8, "cm")
  12331. },
  12332. {
  12333. name: "Norm",
  12334. height: math.unit(1.82, "m")
  12335. },
  12336. {
  12337. name: "Norm+",
  12338. height: math.unit(8.8, "feet"),
  12339. default: true
  12340. },
  12341. {
  12342. name: "Big",
  12343. height: math.unit(8, "meters")
  12344. },
  12345. {
  12346. name: "Macro",
  12347. height: math.unit(18, "meters")
  12348. },
  12349. {
  12350. name: "Macro+",
  12351. height: math.unit(88, "meters")
  12352. },
  12353. ]
  12354. ))
  12355. characterMakers.push(() => makeCharacter(
  12356. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12357. {
  12358. front: {
  12359. height: math.unit(12, "feet"),
  12360. weight: math.unit(1.5, "tons"),
  12361. name: "Front",
  12362. image: {
  12363. source: "./media/characters/dydros/front.svg",
  12364. extra: 863 / 800,
  12365. bottom: 0.015
  12366. }
  12367. },
  12368. back: {
  12369. height: math.unit(12, "feet"),
  12370. weight: math.unit(1.5, "tons"),
  12371. name: "Back",
  12372. image: {
  12373. source: "./media/characters/dydros/back.svg",
  12374. extra: 900 / 843,
  12375. bottom: 0.005
  12376. }
  12377. },
  12378. },
  12379. [
  12380. {
  12381. name: "Normal",
  12382. height: math.unit(12, "feet"),
  12383. default: true
  12384. },
  12385. ]
  12386. ))
  12387. characterMakers.push(() => makeCharacter(
  12388. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12389. {
  12390. front: {
  12391. height: math.unit(6, "feet"),
  12392. weight: math.unit(100, "kg"),
  12393. name: "Front",
  12394. image: {
  12395. source: "./media/characters/riggi/front.svg",
  12396. extra: 5787 / 5303
  12397. }
  12398. },
  12399. hyper: {
  12400. height: math.unit(6 * 5 / 3, "feet"),
  12401. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12402. name: "Hyper",
  12403. image: {
  12404. source: "./media/characters/riggi/hyper.svg",
  12405. extra: 3595 / 3485
  12406. }
  12407. },
  12408. },
  12409. [
  12410. {
  12411. name: "Small Macro",
  12412. height: math.unit(50, "feet")
  12413. },
  12414. {
  12415. name: "Default",
  12416. height: math.unit(200, "feet"),
  12417. default: true
  12418. },
  12419. {
  12420. name: "Loom",
  12421. height: math.unit(10000, "feet")
  12422. },
  12423. {
  12424. name: "Cruising Altitude",
  12425. height: math.unit(30000, "feet")
  12426. },
  12427. {
  12428. name: "Megamacro",
  12429. height: math.unit(100, "miles")
  12430. },
  12431. {
  12432. name: "Continent Sized",
  12433. height: math.unit(2800, "miles")
  12434. },
  12435. {
  12436. name: "Earth Sized",
  12437. height: math.unit(8000, "miles")
  12438. },
  12439. ]
  12440. ))
  12441. characterMakers.push(() => makeCharacter(
  12442. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12443. {
  12444. front: {
  12445. height: math.unit(6, "feet"),
  12446. weight: math.unit(250, "lb"),
  12447. name: "Front",
  12448. image: {
  12449. source: "./media/characters/alexi/front.svg",
  12450. extra: 3483 / 3291,
  12451. bottom: 0.04
  12452. }
  12453. },
  12454. back: {
  12455. height: math.unit(6, "feet"),
  12456. weight: math.unit(250, "lb"),
  12457. name: "Back",
  12458. image: {
  12459. source: "./media/characters/alexi/back.svg",
  12460. extra: 3533 / 3356,
  12461. bottom: 0.021
  12462. }
  12463. },
  12464. frontTransforming: {
  12465. height: math.unit(8.58, "feet"),
  12466. weight: math.unit(1300, "lb"),
  12467. name: "Transforming",
  12468. image: {
  12469. source: "./media/characters/alexi/front-transforming.svg",
  12470. extra: 437 / 409,
  12471. bottom: 19 / 458.66
  12472. }
  12473. },
  12474. frontTransformed: {
  12475. height: math.unit(12.5, "feet"),
  12476. weight: math.unit(4000, "lb"),
  12477. name: "Transformed",
  12478. image: {
  12479. source: "./media/characters/alexi/front-transformed.svg",
  12480. extra: 639 / 614,
  12481. bottom: 30.55 / 671
  12482. }
  12483. },
  12484. },
  12485. [
  12486. {
  12487. name: "Normal",
  12488. height: math.unit(14, "feet"),
  12489. default: true
  12490. },
  12491. {
  12492. name: "Minimacro",
  12493. height: math.unit(30, "meters")
  12494. },
  12495. {
  12496. name: "Macro",
  12497. height: math.unit(500, "meters")
  12498. },
  12499. {
  12500. name: "Megamacro",
  12501. height: math.unit(9000, "km")
  12502. },
  12503. {
  12504. name: "Teramacro",
  12505. height: math.unit(384000, "km")
  12506. },
  12507. ]
  12508. ))
  12509. characterMakers.push(() => makeCharacter(
  12510. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12511. {
  12512. front: {
  12513. height: math.unit(6, "feet"),
  12514. weight: math.unit(150, "lb"),
  12515. name: "Front",
  12516. image: {
  12517. source: "./media/characters/kayroo/front.svg",
  12518. extra: 1153 / 1038,
  12519. bottom: 0.06
  12520. }
  12521. },
  12522. foot: {
  12523. height: math.unit(6, "feet"),
  12524. weight: math.unit(150, "lb"),
  12525. name: "Foot",
  12526. image: {
  12527. source: "./media/characters/kayroo/foot.svg"
  12528. }
  12529. },
  12530. },
  12531. [
  12532. {
  12533. name: "Normal",
  12534. height: math.unit(8, "feet"),
  12535. default: true
  12536. },
  12537. {
  12538. name: "Minimacro",
  12539. height: math.unit(250, "feet")
  12540. },
  12541. {
  12542. name: "Macro",
  12543. height: math.unit(2800, "feet")
  12544. },
  12545. {
  12546. name: "Megamacro",
  12547. height: math.unit(5200, "feet")
  12548. },
  12549. {
  12550. name: "Gigamacro",
  12551. height: math.unit(27000, "feet")
  12552. },
  12553. {
  12554. name: "Omega",
  12555. height: math.unit(45000, "feet")
  12556. },
  12557. ]
  12558. ))
  12559. characterMakers.push(() => makeCharacter(
  12560. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12561. {
  12562. front: {
  12563. height: math.unit(18, "feet"),
  12564. weight: math.unit(5800, "lb"),
  12565. name: "Front",
  12566. image: {
  12567. source: "./media/characters/rhys/front.svg",
  12568. extra: 3386 / 3090,
  12569. bottom: 0.07
  12570. }
  12571. },
  12572. },
  12573. [
  12574. {
  12575. name: "Normal",
  12576. height: math.unit(18, "feet"),
  12577. default: true
  12578. },
  12579. {
  12580. name: "Working Size",
  12581. height: math.unit(200, "feet")
  12582. },
  12583. {
  12584. name: "Demolition Size",
  12585. height: math.unit(2000, "feet")
  12586. },
  12587. {
  12588. name: "Maximum Licensed Size",
  12589. height: math.unit(5, "miles")
  12590. },
  12591. {
  12592. name: "Maximum Observed Size",
  12593. height: math.unit(10, "yottameters")
  12594. },
  12595. ]
  12596. ))
  12597. characterMakers.push(() => makeCharacter(
  12598. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12599. {
  12600. front: {
  12601. height: math.unit(6, "feet"),
  12602. weight: math.unit(250, "lb"),
  12603. name: "Front",
  12604. image: {
  12605. source: "./media/characters/toto/front.svg",
  12606. extra: 527 / 479,
  12607. bottom: 0.05
  12608. }
  12609. },
  12610. },
  12611. [
  12612. {
  12613. name: "Micro",
  12614. height: math.unit(3, "feet")
  12615. },
  12616. {
  12617. name: "Normal",
  12618. height: math.unit(10, "feet")
  12619. },
  12620. {
  12621. name: "Macro",
  12622. height: math.unit(150, "feet"),
  12623. default: true
  12624. },
  12625. {
  12626. name: "Megamacro",
  12627. height: math.unit(1200, "feet")
  12628. },
  12629. ]
  12630. ))
  12631. characterMakers.push(() => makeCharacter(
  12632. { name: "King", species: ["lion"], tags: ["anthro"] },
  12633. {
  12634. back: {
  12635. height: math.unit(6, "feet"),
  12636. weight: math.unit(150, "lb"),
  12637. name: "Back",
  12638. image: {
  12639. source: "./media/characters/king/back.svg"
  12640. }
  12641. },
  12642. },
  12643. [
  12644. {
  12645. name: "Micro",
  12646. height: math.unit(2, "inches")
  12647. },
  12648. {
  12649. name: "Normal",
  12650. height: math.unit(8, "feet")
  12651. },
  12652. {
  12653. name: "Macro",
  12654. height: math.unit(200, "feet"),
  12655. default: true
  12656. },
  12657. {
  12658. name: "Megamacro",
  12659. height: math.unit(50, "miles")
  12660. },
  12661. ]
  12662. ))
  12663. characterMakers.push(() => makeCharacter(
  12664. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12665. {
  12666. front: {
  12667. height: math.unit(11, "feet"),
  12668. weight: math.unit(1400, "lb"),
  12669. name: "Front",
  12670. image: {
  12671. source: "./media/characters/cordite/front.svg",
  12672. extra: 1919/1827,
  12673. bottom: 40/1959
  12674. }
  12675. },
  12676. side: {
  12677. height: math.unit(11, "feet"),
  12678. weight: math.unit(1400, "lb"),
  12679. name: "Side",
  12680. image: {
  12681. source: "./media/characters/cordite/side.svg",
  12682. extra: 1908/1793,
  12683. bottom: 38/1946
  12684. }
  12685. },
  12686. back: {
  12687. height: math.unit(11, "feet"),
  12688. weight: math.unit(1400, "lb"),
  12689. name: "Back",
  12690. image: {
  12691. source: "./media/characters/cordite/back.svg",
  12692. extra: 1938/1837,
  12693. bottom: 10/1948
  12694. }
  12695. },
  12696. feral: {
  12697. height: math.unit(2, "feet"),
  12698. weight: math.unit(90, "lb"),
  12699. name: "Feral",
  12700. image: {
  12701. source: "./media/characters/cordite/feral.svg",
  12702. extra: 1260 / 755,
  12703. bottom: 0.05
  12704. }
  12705. },
  12706. },
  12707. [
  12708. {
  12709. name: "Normal",
  12710. height: math.unit(11, "feet"),
  12711. default: true
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(6, "feet"),
  12720. weight: math.unit(150, "lb"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/pianostrong/front.svg",
  12724. extra: 6577 / 6254,
  12725. bottom: 0.02
  12726. }
  12727. },
  12728. side: {
  12729. height: math.unit(6, "feet"),
  12730. weight: math.unit(150, "lb"),
  12731. name: "Side",
  12732. image: {
  12733. source: "./media/characters/pianostrong/side.svg",
  12734. extra: 6106 / 5730
  12735. }
  12736. },
  12737. back: {
  12738. height: math.unit(6, "feet"),
  12739. weight: math.unit(150, "lb"),
  12740. name: "Back",
  12741. image: {
  12742. source: "./media/characters/pianostrong/back.svg",
  12743. extra: 6085 / 5733,
  12744. bottom: 0.01
  12745. }
  12746. },
  12747. },
  12748. [
  12749. {
  12750. name: "Macro",
  12751. height: math.unit(100, "feet")
  12752. },
  12753. {
  12754. name: "Macro+",
  12755. height: math.unit(300, "feet"),
  12756. default: true
  12757. },
  12758. {
  12759. name: "Macro++",
  12760. height: math.unit(1000, "feet")
  12761. },
  12762. ]
  12763. ))
  12764. characterMakers.push(() => makeCharacter(
  12765. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12766. {
  12767. front: {
  12768. height: math.unit(6, "feet"),
  12769. weight: math.unit(150, "lb"),
  12770. name: "Front",
  12771. image: {
  12772. source: "./media/characters/kona/front.svg",
  12773. extra: 2960 / 2629,
  12774. bottom: 0.005
  12775. }
  12776. },
  12777. },
  12778. [
  12779. {
  12780. name: "Normal",
  12781. height: math.unit(11 + 8 / 12, "feet")
  12782. },
  12783. {
  12784. name: "Macro",
  12785. height: math.unit(850, "feet"),
  12786. default: true
  12787. },
  12788. {
  12789. name: "Macro+",
  12790. height: math.unit(1.5, "km"),
  12791. default: true
  12792. },
  12793. {
  12794. name: "Megamacro",
  12795. height: math.unit(80, "miles")
  12796. },
  12797. {
  12798. name: "Gigamacro",
  12799. height: math.unit(3500, "miles")
  12800. },
  12801. ]
  12802. ))
  12803. characterMakers.push(() => makeCharacter(
  12804. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12805. {
  12806. side: {
  12807. height: math.unit(1.9, "meters"),
  12808. weight: math.unit(326, "kg"),
  12809. name: "Side",
  12810. image: {
  12811. source: "./media/characters/levi/side.svg",
  12812. extra: 1704 / 1334,
  12813. bottom: 0.02
  12814. }
  12815. },
  12816. },
  12817. [
  12818. {
  12819. name: "Normal",
  12820. height: math.unit(1.9, "meters"),
  12821. default: true
  12822. },
  12823. {
  12824. name: "Macro",
  12825. height: math.unit(20, "meters")
  12826. },
  12827. {
  12828. name: "Macro+",
  12829. height: math.unit(200, "meters")
  12830. },
  12831. {
  12832. name: "Megamacro",
  12833. height: math.unit(2, "km")
  12834. },
  12835. {
  12836. name: "Megamacro+",
  12837. height: math.unit(20, "km")
  12838. },
  12839. {
  12840. name: "Gigamacro",
  12841. height: math.unit(2500, "km")
  12842. },
  12843. {
  12844. name: "Gigamacro+",
  12845. height: math.unit(120000, "km")
  12846. },
  12847. {
  12848. name: "Teramacro",
  12849. height: math.unit(7.77e6, "km")
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12855. {
  12856. front: {
  12857. height: math.unit(6 + 4/12, "feet"),
  12858. weight: math.unit(190, "lb"),
  12859. name: "Front",
  12860. image: {
  12861. source: "./media/characters/bmc/front.svg",
  12862. extra: 1626/1472,
  12863. bottom: 79/1705
  12864. }
  12865. },
  12866. back: {
  12867. height: math.unit(6 + 4/12, "feet"),
  12868. weight: math.unit(190, "lb"),
  12869. name: "Back",
  12870. image: {
  12871. source: "./media/characters/bmc/back.svg",
  12872. extra: 1640/1479,
  12873. bottom: 45/1685
  12874. }
  12875. },
  12876. frontArmor: {
  12877. height: math.unit(6 + 4/12, "feet"),
  12878. weight: math.unit(190, "lb"),
  12879. name: "Front-armor",
  12880. image: {
  12881. source: "./media/characters/bmc/front-armor.svg",
  12882. extra: 1538/1468,
  12883. bottom: 79/1617
  12884. }
  12885. },
  12886. },
  12887. [
  12888. {
  12889. name: "Human-sized",
  12890. height: math.unit(6 + 4 / 12, "feet")
  12891. },
  12892. {
  12893. name: "Interactive Size",
  12894. height: math.unit(25, "feet")
  12895. },
  12896. {
  12897. name: "Small",
  12898. height: math.unit(250, "feet")
  12899. },
  12900. {
  12901. name: "Normal",
  12902. height: math.unit(1250, "feet"),
  12903. default: true
  12904. },
  12905. {
  12906. name: "Good Day",
  12907. height: math.unit(88, "miles")
  12908. },
  12909. {
  12910. name: "Largest Measured Size",
  12911. height: math.unit(105.960, "galaxies")
  12912. },
  12913. ]
  12914. ))
  12915. characterMakers.push(() => makeCharacter(
  12916. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12917. {
  12918. front: {
  12919. height: math.unit(20, "feet"),
  12920. weight: math.unit(2016, "kg"),
  12921. name: "Front",
  12922. image: {
  12923. source: "./media/characters/sven-the-kaiju/front.svg",
  12924. extra: 1277/1250,
  12925. bottom: 35/1312
  12926. }
  12927. },
  12928. mouth: {
  12929. height: math.unit(1.85, "feet"),
  12930. name: "Mouth",
  12931. image: {
  12932. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Fairy",
  12939. height: math.unit(6, "inches")
  12940. },
  12941. {
  12942. name: "Normal",
  12943. height: math.unit(20, "feet"),
  12944. default: true
  12945. },
  12946. {
  12947. name: "Rampage",
  12948. height: math.unit(200, "feet")
  12949. },
  12950. {
  12951. name: "Archfey Forest Guardian",
  12952. height: math.unit(1, "mile")
  12953. },
  12954. ]
  12955. ))
  12956. characterMakers.push(() => makeCharacter(
  12957. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12958. {
  12959. front: {
  12960. height: math.unit(4, "meters"),
  12961. weight: math.unit(2, "tons"),
  12962. name: "Front",
  12963. image: {
  12964. source: "./media/characters/marik/front.svg",
  12965. extra: 1057 / 1003,
  12966. bottom: 0.08
  12967. }
  12968. },
  12969. },
  12970. [
  12971. {
  12972. name: "Normal",
  12973. height: math.unit(4, "meters"),
  12974. default: true
  12975. },
  12976. {
  12977. name: "Macro",
  12978. height: math.unit(20, "meters")
  12979. },
  12980. {
  12981. name: "Megamacro",
  12982. height: math.unit(50, "km")
  12983. },
  12984. {
  12985. name: "Gigamacro",
  12986. height: math.unit(100, "km")
  12987. },
  12988. {
  12989. name: "Alpha Macro",
  12990. height: math.unit(7.88e7, "yottameters")
  12991. },
  12992. ]
  12993. ))
  12994. characterMakers.push(() => makeCharacter(
  12995. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  12996. {
  12997. front: {
  12998. height: math.unit(6, "feet"),
  12999. weight: math.unit(110, "lb"),
  13000. name: "Front",
  13001. image: {
  13002. source: "./media/characters/mel/front.svg",
  13003. extra: 736 / 617,
  13004. bottom: 0.017
  13005. }
  13006. },
  13007. },
  13008. [
  13009. {
  13010. name: "Pico",
  13011. height: math.unit(3, "pm")
  13012. },
  13013. {
  13014. name: "Nano",
  13015. height: math.unit(3, "nm")
  13016. },
  13017. {
  13018. name: "Micro",
  13019. height: math.unit(0.3, "mm"),
  13020. default: true
  13021. },
  13022. {
  13023. name: "Micro+",
  13024. height: math.unit(3, "mm")
  13025. },
  13026. {
  13027. name: "Normal",
  13028. height: math.unit(5 + 10.5 / 12, "feet")
  13029. },
  13030. ]
  13031. ))
  13032. characterMakers.push(() => makeCharacter(
  13033. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13034. {
  13035. kaiju: {
  13036. height: math.unit(1.75, "meters"),
  13037. weight: math.unit(55, "kg"),
  13038. name: "Kaiju",
  13039. image: {
  13040. source: "./media/characters/lykonous/kaiju.svg",
  13041. extra: 1055 / 946,
  13042. bottom: 0.135
  13043. }
  13044. },
  13045. },
  13046. [
  13047. {
  13048. name: "Normal",
  13049. height: math.unit(2.5, "meters"),
  13050. default: true
  13051. },
  13052. {
  13053. name: "Kaiju Dragon",
  13054. height: math.unit(60, "meters")
  13055. },
  13056. {
  13057. name: "Mega Kaiju",
  13058. height: math.unit(120, "km")
  13059. },
  13060. {
  13061. name: "Giga Kaiju",
  13062. height: math.unit(200, "megameters")
  13063. },
  13064. {
  13065. name: "Terra Kaiju",
  13066. height: math.unit(400, "gigameters")
  13067. },
  13068. {
  13069. name: "Kaiju Dragon God",
  13070. height: math.unit(13000, "exaparsecs")
  13071. },
  13072. ]
  13073. ))
  13074. characterMakers.push(() => makeCharacter(
  13075. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13076. {
  13077. front: {
  13078. height: math.unit(6, "feet"),
  13079. weight: math.unit(150, "lb"),
  13080. name: "Front",
  13081. image: {
  13082. source: "./media/characters/blü/front.svg",
  13083. extra: 1883 / 1564,
  13084. bottom: 0.031
  13085. }
  13086. },
  13087. },
  13088. [
  13089. {
  13090. name: "Normal",
  13091. height: math.unit(13, "feet"),
  13092. default: true
  13093. },
  13094. {
  13095. name: "Big Boi",
  13096. height: math.unit(150, "meters")
  13097. },
  13098. {
  13099. name: "Mini Stomper",
  13100. height: math.unit(300, "meters")
  13101. },
  13102. {
  13103. name: "Macro",
  13104. height: math.unit(1000, "meters")
  13105. },
  13106. {
  13107. name: "Megamacro",
  13108. height: math.unit(11000, "meters")
  13109. },
  13110. {
  13111. name: "Gigamacro",
  13112. height: math.unit(11000, "km")
  13113. },
  13114. {
  13115. name: "Teramacro",
  13116. height: math.unit(420000, "km")
  13117. },
  13118. {
  13119. name: "Examacro",
  13120. height: math.unit(120, "parsecs")
  13121. },
  13122. {
  13123. name: "God Tho",
  13124. height: math.unit(98000000000, "parsecs")
  13125. },
  13126. ]
  13127. ))
  13128. characterMakers.push(() => makeCharacter(
  13129. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13130. {
  13131. taurFront: {
  13132. height: math.unit(6, "feet"),
  13133. weight: math.unit(200, "lb"),
  13134. name: "Taur (Front)",
  13135. image: {
  13136. source: "./media/characters/scales/taur-front.svg",
  13137. extra: 1,
  13138. bottom: 0.05
  13139. }
  13140. },
  13141. taurBack: {
  13142. height: math.unit(6, "feet"),
  13143. weight: math.unit(200, "lb"),
  13144. name: "Taur (Back)",
  13145. image: {
  13146. source: "./media/characters/scales/taur-back.svg",
  13147. extra: 1,
  13148. bottom: 0.08
  13149. }
  13150. },
  13151. anthro: {
  13152. height: math.unit(6 * 7 / 12, "feet"),
  13153. weight: math.unit(100, "lb"),
  13154. name: "Anthro",
  13155. image: {
  13156. source: "./media/characters/scales/anthro.svg",
  13157. extra: 1,
  13158. bottom: 0.06
  13159. }
  13160. },
  13161. },
  13162. [
  13163. {
  13164. name: "Normal",
  13165. height: math.unit(12, "feet"),
  13166. default: true
  13167. },
  13168. ]
  13169. ))
  13170. characterMakers.push(() => makeCharacter(
  13171. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13172. {
  13173. front: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(150, "lb"),
  13176. name: "Front",
  13177. image: {
  13178. source: "./media/characters/koragos/front.svg",
  13179. extra: 841 / 794,
  13180. bottom: 0.035
  13181. }
  13182. },
  13183. back: {
  13184. height: math.unit(6, "feet"),
  13185. weight: math.unit(150, "lb"),
  13186. name: "Back",
  13187. image: {
  13188. source: "./media/characters/koragos/back.svg",
  13189. extra: 841 / 810,
  13190. bottom: 0.022
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Normal",
  13197. height: math.unit(6 + 11 / 12, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Macro",
  13202. height: math.unit(490, "feet")
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(10, "miles")
  13207. },
  13208. {
  13209. name: "Gigamacro",
  13210. height: math.unit(50, "miles")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(6, "feet"),
  13219. weight: math.unit(250, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/xylrem/front.svg",
  13223. extra: 3323 / 3050,
  13224. bottom: 0.065
  13225. }
  13226. },
  13227. },
  13228. [
  13229. {
  13230. name: "Micro",
  13231. height: math.unit(4, "feet")
  13232. },
  13233. {
  13234. name: "Normal",
  13235. height: math.unit(16, "feet"),
  13236. default: true
  13237. },
  13238. {
  13239. name: "Macro",
  13240. height: math.unit(2720, "feet")
  13241. },
  13242. {
  13243. name: "Megamacro",
  13244. height: math.unit(25000, "miles")
  13245. },
  13246. ]
  13247. ))
  13248. characterMakers.push(() => makeCharacter(
  13249. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13250. {
  13251. front: {
  13252. height: math.unit(8, "feet"),
  13253. weight: math.unit(250, "kg"),
  13254. name: "Front",
  13255. image: {
  13256. source: "./media/characters/ikideru/front.svg",
  13257. extra: 930 / 870,
  13258. bottom: 0.087
  13259. }
  13260. },
  13261. back: {
  13262. height: math.unit(8, "feet"),
  13263. weight: math.unit(250, "kg"),
  13264. name: "Back",
  13265. image: {
  13266. source: "./media/characters/ikideru/back.svg",
  13267. extra: 919 / 852,
  13268. bottom: 0.055
  13269. }
  13270. },
  13271. },
  13272. [
  13273. {
  13274. name: "Rare",
  13275. height: math.unit(8, "feet"),
  13276. default: true
  13277. },
  13278. {
  13279. name: "Playful Loom",
  13280. height: math.unit(80, "feet")
  13281. },
  13282. {
  13283. name: "City Leaner",
  13284. height: math.unit(230, "feet")
  13285. },
  13286. {
  13287. name: "Megamacro",
  13288. height: math.unit(2500, "feet")
  13289. },
  13290. {
  13291. name: "Gigamacro",
  13292. height: math.unit(26400, "feet")
  13293. },
  13294. {
  13295. name: "Tectonic Shifter",
  13296. height: math.unit(1.7, "megameters")
  13297. },
  13298. {
  13299. name: "Planet Carer",
  13300. height: math.unit(21, "megameters")
  13301. },
  13302. {
  13303. name: "God",
  13304. height: math.unit(11157.22, "parsecs")
  13305. },
  13306. ]
  13307. ))
  13308. characterMakers.push(() => makeCharacter(
  13309. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13310. {
  13311. front: {
  13312. height: math.unit(6, "feet"),
  13313. weight: math.unit(120, "lb"),
  13314. name: "Front",
  13315. image: {
  13316. source: "./media/characters/neo/front.svg"
  13317. }
  13318. },
  13319. },
  13320. [
  13321. {
  13322. name: "Micro",
  13323. height: math.unit(2, "inches"),
  13324. default: true
  13325. },
  13326. {
  13327. name: "Human Size",
  13328. height: math.unit(5 + 8 / 12, "feet")
  13329. },
  13330. ]
  13331. ))
  13332. characterMakers.push(() => makeCharacter(
  13333. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13334. {
  13335. front: {
  13336. height: math.unit(13 + 10 / 12, "feet"),
  13337. weight: math.unit(5320, "lb"),
  13338. name: "Front",
  13339. image: {
  13340. source: "./media/characters/chauncey-chantz/front.svg",
  13341. extra: 1587 / 1435,
  13342. bottom: 0.02
  13343. }
  13344. },
  13345. },
  13346. [
  13347. {
  13348. name: "Normal",
  13349. height: math.unit(13 + 10 / 12, "feet"),
  13350. default: true
  13351. },
  13352. {
  13353. name: "Macro",
  13354. height: math.unit(45, "feet")
  13355. },
  13356. {
  13357. name: "Megamacro",
  13358. height: math.unit(250, "miles")
  13359. },
  13360. {
  13361. name: "Planetary",
  13362. height: math.unit(10000, "miles")
  13363. },
  13364. {
  13365. name: "Galactic",
  13366. height: math.unit(40000, "parsecs")
  13367. },
  13368. {
  13369. name: "Universal",
  13370. height: math.unit(1, "yottameter")
  13371. },
  13372. ]
  13373. ))
  13374. characterMakers.push(() => makeCharacter(
  13375. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13376. {
  13377. front: {
  13378. height: math.unit(6, "feet"),
  13379. weight: math.unit(150, "lb"),
  13380. name: "Front",
  13381. image: {
  13382. source: "./media/characters/epifox/front.svg",
  13383. extra: 1,
  13384. bottom: 0.075
  13385. }
  13386. },
  13387. },
  13388. [
  13389. {
  13390. name: "Micro",
  13391. height: math.unit(6, "inches")
  13392. },
  13393. {
  13394. name: "Normal",
  13395. height: math.unit(12, "feet"),
  13396. default: true
  13397. },
  13398. {
  13399. name: "Macro",
  13400. height: math.unit(3810, "feet")
  13401. },
  13402. {
  13403. name: "Megamacro",
  13404. height: math.unit(500, "miles")
  13405. },
  13406. ]
  13407. ))
  13408. characterMakers.push(() => makeCharacter(
  13409. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13410. {
  13411. front: {
  13412. height: math.unit(1.8796, "m"),
  13413. weight: math.unit(230, "lb"),
  13414. name: "Front",
  13415. image: {
  13416. source: "./media/characters/colin-t/front.svg",
  13417. extra: 1272 / 1193,
  13418. bottom: 0.07
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Micro",
  13425. height: math.unit(0.571, "meters")
  13426. },
  13427. {
  13428. name: "Normal",
  13429. height: math.unit(1.8796, "meters"),
  13430. default: true
  13431. },
  13432. {
  13433. name: "Tall",
  13434. height: math.unit(4, "meters")
  13435. },
  13436. {
  13437. name: "Macro",
  13438. height: math.unit(67.241, "meters")
  13439. },
  13440. {
  13441. name: "Megamacro",
  13442. height: math.unit(371.856, "meters")
  13443. },
  13444. {
  13445. name: "Planetary",
  13446. height: math.unit(12631.5689, "km")
  13447. },
  13448. ]
  13449. ))
  13450. characterMakers.push(() => makeCharacter(
  13451. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13452. {
  13453. front: {
  13454. height: math.unit(1.85, "meters"),
  13455. weight: math.unit(80, "kg"),
  13456. name: "Front",
  13457. image: {
  13458. source: "./media/characters/matvei/front.svg",
  13459. extra: 456/447,
  13460. bottom: 8/464
  13461. }
  13462. },
  13463. back: {
  13464. height: math.unit(1.85, "meters"),
  13465. weight: math.unit(80, "kg"),
  13466. name: "Back",
  13467. image: {
  13468. source: "./media/characters/matvei/back.svg",
  13469. extra: 434/427,
  13470. bottom: 11/445
  13471. }
  13472. },
  13473. },
  13474. [
  13475. {
  13476. name: "Normal",
  13477. height: math.unit(1.85, "meters"),
  13478. default: true
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13484. {
  13485. front: {
  13486. height: math.unit(5 + 9 / 12, "feet"),
  13487. weight: math.unit(70, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/quincy/front.svg",
  13491. extra: 3041 / 2751
  13492. }
  13493. },
  13494. back: {
  13495. height: math.unit(5 + 9 / 12, "feet"),
  13496. weight: math.unit(70, "lb"),
  13497. name: "Back",
  13498. image: {
  13499. source: "./media/characters/quincy/back.svg",
  13500. extra: 3041 / 2751
  13501. }
  13502. },
  13503. flying: {
  13504. height: math.unit(5 + 4 / 12, "feet"),
  13505. weight: math.unit(70, "lb"),
  13506. name: "Flying",
  13507. image: {
  13508. source: "./media/characters/quincy/flying.svg",
  13509. extra: 1044 / 930
  13510. }
  13511. },
  13512. },
  13513. [
  13514. {
  13515. name: "Micro",
  13516. height: math.unit(3, "cm")
  13517. },
  13518. {
  13519. name: "Normal",
  13520. height: math.unit(5 + 9 / 12, "feet")
  13521. },
  13522. {
  13523. name: "Macro",
  13524. height: math.unit(200, "meters"),
  13525. default: true
  13526. },
  13527. {
  13528. name: "Megamacro",
  13529. height: math.unit(1000, "meters")
  13530. },
  13531. ]
  13532. ))
  13533. characterMakers.push(() => makeCharacter(
  13534. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13535. {
  13536. front: {
  13537. height: math.unit(3 + 11/12, "feet"),
  13538. weight: math.unit(50, "lb"),
  13539. name: "Front",
  13540. image: {
  13541. source: "./media/characters/vanrel/front.svg",
  13542. extra: 1104/949,
  13543. bottom: 52/1156
  13544. }
  13545. },
  13546. back: {
  13547. height: math.unit(3 + 11/12, "feet"),
  13548. weight: math.unit(50, "lb"),
  13549. name: "Back",
  13550. image: {
  13551. source: "./media/characters/vanrel/back.svg",
  13552. extra: 1119/976,
  13553. bottom: 37/1156
  13554. }
  13555. },
  13556. tome: {
  13557. height: math.unit(1.35, "feet"),
  13558. weight: math.unit(10, "lb"),
  13559. name: "Vanrel's Tome",
  13560. rename: true,
  13561. image: {
  13562. source: "./media/characters/vanrel/tome.svg"
  13563. }
  13564. },
  13565. beans: {
  13566. height: math.unit(0.89, "feet"),
  13567. name: "Beans",
  13568. image: {
  13569. source: "./media/characters/vanrel/beans.svg"
  13570. }
  13571. },
  13572. },
  13573. [
  13574. {
  13575. name: "Normal",
  13576. height: math.unit(3 + 11/12, "feet"),
  13577. default: true
  13578. },
  13579. ]
  13580. ))
  13581. characterMakers.push(() => makeCharacter(
  13582. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13583. {
  13584. front: {
  13585. height: math.unit(7 + 5 / 12, "feet"),
  13586. name: "Front",
  13587. image: {
  13588. source: "./media/characters/kuiper-vanrel/front.svg",
  13589. extra: 1219/1169,
  13590. bottom: 69/1288
  13591. }
  13592. },
  13593. back: {
  13594. height: math.unit(7 + 5 / 12, "feet"),
  13595. name: "Back",
  13596. image: {
  13597. source: "./media/characters/kuiper-vanrel/back.svg",
  13598. extra: 1236/1193,
  13599. bottom: 27/1263
  13600. }
  13601. },
  13602. foot: {
  13603. height: math.unit(0.55, "meters"),
  13604. name: "Foot",
  13605. image: {
  13606. source: "./media/characters/kuiper-vanrel/foot.svg",
  13607. }
  13608. },
  13609. battle: {
  13610. height: math.unit(6.824, "feet"),
  13611. name: "Battle",
  13612. image: {
  13613. source: "./media/characters/kuiper-vanrel/battle.svg",
  13614. extra: 1466 / 1327,
  13615. bottom: 29 / 1492.5
  13616. }
  13617. },
  13618. meerkui: {
  13619. height: math.unit(18, "inches"),
  13620. name: "Meerkui",
  13621. image: {
  13622. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13623. extra: 1354/1289,
  13624. bottom: 69/1423
  13625. }
  13626. },
  13627. },
  13628. [
  13629. {
  13630. name: "Normal",
  13631. height: math.unit(7 + 5 / 12, "feet"),
  13632. default: true
  13633. },
  13634. ]
  13635. ))
  13636. characterMakers.push(() => makeCharacter(
  13637. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13638. {
  13639. front: {
  13640. height: math.unit(8 + 5 / 12, "feet"),
  13641. name: "Front",
  13642. image: {
  13643. source: "./media/characters/keset-vanrel/front.svg",
  13644. extra: 1231/1148,
  13645. bottom: 82/1313
  13646. }
  13647. },
  13648. back: {
  13649. height: math.unit(8 + 5 / 12, "feet"),
  13650. name: "Back",
  13651. image: {
  13652. source: "./media/characters/keset-vanrel/back.svg",
  13653. extra: 1240/1174,
  13654. bottom: 33/1273
  13655. }
  13656. },
  13657. hand: {
  13658. height: math.unit(0.6, "meters"),
  13659. name: "Hand",
  13660. image: {
  13661. source: "./media/characters/keset-vanrel/hand.svg"
  13662. }
  13663. },
  13664. foot: {
  13665. height: math.unit(0.94978, "meters"),
  13666. name: "Foot",
  13667. image: {
  13668. source: "./media/characters/keset-vanrel/foot.svg"
  13669. }
  13670. },
  13671. battle: {
  13672. height: math.unit(7.408, "feet"),
  13673. name: "Battle",
  13674. image: {
  13675. source: "./media/characters/keset-vanrel/battle.svg",
  13676. extra: 1890 / 1386,
  13677. bottom: 73.28 / 1970
  13678. }
  13679. },
  13680. },
  13681. [
  13682. {
  13683. name: "Normal",
  13684. height: math.unit(8 + 5 / 12, "feet"),
  13685. default: true
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13691. {
  13692. front: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(150, "lb"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/neos/front.svg",
  13698. extra: 1696 / 992,
  13699. bottom: 0.14
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Normal",
  13706. height: math.unit(54, "cm"),
  13707. default: true
  13708. },
  13709. {
  13710. name: "Macro",
  13711. height: math.unit(100, "m")
  13712. },
  13713. {
  13714. name: "Megamacro",
  13715. height: math.unit(10, "km")
  13716. },
  13717. {
  13718. name: "Megamacro+",
  13719. height: math.unit(100, "km")
  13720. },
  13721. {
  13722. name: "Gigamacro",
  13723. height: math.unit(100, "Mm")
  13724. },
  13725. {
  13726. name: "Teramacro",
  13727. height: math.unit(100, "Gm")
  13728. },
  13729. {
  13730. name: "Examacro",
  13731. height: math.unit(100, "Em")
  13732. },
  13733. {
  13734. name: "Godly",
  13735. height: math.unit(10000, "Ym")
  13736. },
  13737. {
  13738. name: "Beyond Godly",
  13739. height: math.unit(25, "multiverses")
  13740. },
  13741. ]
  13742. ))
  13743. characterMakers.push(() => makeCharacter(
  13744. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13745. {
  13746. feminine: {
  13747. height: math.unit(5, "feet"),
  13748. weight: math.unit(100, "lb"),
  13749. name: "Feminine",
  13750. image: {
  13751. source: "./media/characters/sammy-mouse/feminine.svg",
  13752. extra: 2526 / 2425,
  13753. bottom: 0.123
  13754. }
  13755. },
  13756. masculine: {
  13757. height: math.unit(5, "feet"),
  13758. weight: math.unit(100, "lb"),
  13759. name: "Masculine",
  13760. image: {
  13761. source: "./media/characters/sammy-mouse/masculine.svg",
  13762. extra: 2526 / 2425,
  13763. bottom: 0.123
  13764. }
  13765. },
  13766. },
  13767. [
  13768. {
  13769. name: "Micro",
  13770. height: math.unit(5, "inches")
  13771. },
  13772. {
  13773. name: "Normal",
  13774. height: math.unit(5, "feet"),
  13775. default: true
  13776. },
  13777. {
  13778. name: "Macro",
  13779. height: math.unit(60, "feet")
  13780. },
  13781. ]
  13782. ))
  13783. characterMakers.push(() => makeCharacter(
  13784. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13785. {
  13786. front: {
  13787. height: math.unit(4, "feet"),
  13788. weight: math.unit(50, "lb"),
  13789. name: "Front",
  13790. image: {
  13791. source: "./media/characters/kole/front.svg",
  13792. extra: 1423 / 1303,
  13793. bottom: 0.025
  13794. }
  13795. },
  13796. back: {
  13797. height: math.unit(4, "feet"),
  13798. weight: math.unit(50, "lb"),
  13799. name: "Back",
  13800. image: {
  13801. source: "./media/characters/kole/back.svg",
  13802. extra: 1426 / 1280,
  13803. bottom: 0.02
  13804. }
  13805. },
  13806. },
  13807. [
  13808. {
  13809. name: "Normal",
  13810. height: math.unit(4, "feet"),
  13811. default: true
  13812. },
  13813. ]
  13814. ))
  13815. characterMakers.push(() => makeCharacter(
  13816. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13817. {
  13818. front: {
  13819. height: math.unit(2.5, "feet"),
  13820. weight: math.unit(32, "lb"),
  13821. name: "Front",
  13822. image: {
  13823. source: "./media/characters/rufran/front.svg",
  13824. extra: 1313/885,
  13825. bottom: 94/1407
  13826. }
  13827. },
  13828. side: {
  13829. height: math.unit(2.5, "feet"),
  13830. weight: math.unit(32, "lb"),
  13831. name: "Side",
  13832. image: {
  13833. source: "./media/characters/rufran/side.svg",
  13834. extra: 1109/852,
  13835. bottom: 118/1227
  13836. }
  13837. },
  13838. back: {
  13839. height: math.unit(2.5, "feet"),
  13840. weight: math.unit(32, "lb"),
  13841. name: "Back",
  13842. image: {
  13843. source: "./media/characters/rufran/back.svg",
  13844. extra: 1280/878,
  13845. bottom: 131/1411
  13846. }
  13847. },
  13848. mouth: {
  13849. height: math.unit(1.13, "feet"),
  13850. name: "Mouth",
  13851. image: {
  13852. source: "./media/characters/rufran/mouth.svg"
  13853. }
  13854. },
  13855. foot: {
  13856. height: math.unit(1.33, "feet"),
  13857. name: "Foot",
  13858. image: {
  13859. source: "./media/characters/rufran/foot.svg"
  13860. }
  13861. },
  13862. koboldFront: {
  13863. height: math.unit(2 + 6 / 12, "feet"),
  13864. weight: math.unit(20, "lb"),
  13865. name: "Front (Kobold)",
  13866. image: {
  13867. source: "./media/characters/rufran/kobold-front.svg",
  13868. extra: 2041 / 1839,
  13869. bottom: 0.055
  13870. }
  13871. },
  13872. koboldBack: {
  13873. height: math.unit(2 + 6 / 12, "feet"),
  13874. weight: math.unit(20, "lb"),
  13875. name: "Back (Kobold)",
  13876. image: {
  13877. source: "./media/characters/rufran/kobold-back.svg",
  13878. extra: 2054 / 1839,
  13879. bottom: 0.01
  13880. }
  13881. },
  13882. koboldHand: {
  13883. height: math.unit(0.2166, "meters"),
  13884. name: "Hand (Kobold)",
  13885. image: {
  13886. source: "./media/characters/rufran/kobold-hand.svg"
  13887. }
  13888. },
  13889. koboldFoot: {
  13890. height: math.unit(0.185, "meters"),
  13891. name: "Foot (Kobold)",
  13892. image: {
  13893. source: "./media/characters/rufran/kobold-foot.svg"
  13894. }
  13895. },
  13896. },
  13897. [
  13898. {
  13899. name: "Micro",
  13900. height: math.unit(1, "inch")
  13901. },
  13902. {
  13903. name: "Normal",
  13904. height: math.unit(2 + 6 / 12, "feet"),
  13905. default: true
  13906. },
  13907. {
  13908. name: "Big",
  13909. height: math.unit(60, "feet")
  13910. },
  13911. {
  13912. name: "Macro",
  13913. height: math.unit(325, "feet")
  13914. },
  13915. ]
  13916. ))
  13917. characterMakers.push(() => makeCharacter(
  13918. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13919. {
  13920. front: {
  13921. height: math.unit(0.3, "meters"),
  13922. weight: math.unit(3.5, "kg"),
  13923. name: "Front",
  13924. image: {
  13925. source: "./media/characters/chip/front.svg",
  13926. extra: 748 / 674
  13927. }
  13928. },
  13929. },
  13930. [
  13931. {
  13932. name: "Micro",
  13933. height: math.unit(1, "inch"),
  13934. default: true
  13935. },
  13936. ]
  13937. ))
  13938. characterMakers.push(() => makeCharacter(
  13939. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13940. {
  13941. side: {
  13942. height: math.unit(2.3, "meters"),
  13943. weight: math.unit(3500, "lb"),
  13944. name: "Side",
  13945. image: {
  13946. source: "./media/characters/torvid/side.svg",
  13947. extra: 1972 / 722,
  13948. bottom: 0.035
  13949. }
  13950. },
  13951. },
  13952. [
  13953. {
  13954. name: "Normal",
  13955. height: math.unit(2.3, "meters"),
  13956. default: true
  13957. },
  13958. ]
  13959. ))
  13960. characterMakers.push(() => makeCharacter(
  13961. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13962. {
  13963. front: {
  13964. height: math.unit(2, "meters"),
  13965. weight: math.unit(150.5, "kg"),
  13966. name: "Front",
  13967. image: {
  13968. source: "./media/characters/susan/front.svg",
  13969. extra: 693 / 635,
  13970. bottom: 0.05
  13971. }
  13972. },
  13973. },
  13974. [
  13975. {
  13976. name: "Megamacro",
  13977. height: math.unit(505, "miles"),
  13978. default: true
  13979. },
  13980. ]
  13981. ))
  13982. characterMakers.push(() => makeCharacter(
  13983. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  13984. {
  13985. front: {
  13986. height: math.unit(6, "feet"),
  13987. weight: math.unit(150, "lb"),
  13988. name: "Front",
  13989. image: {
  13990. source: "./media/characters/raindrops/front.svg",
  13991. extra: 2655 / 2461,
  13992. bottom: 49 / 2705
  13993. }
  13994. },
  13995. back: {
  13996. height: math.unit(6, "feet"),
  13997. weight: math.unit(150, "lb"),
  13998. name: "Back",
  13999. image: {
  14000. source: "./media/characters/raindrops/back.svg",
  14001. extra: 2574 / 2400,
  14002. bottom: 65 / 2634
  14003. }
  14004. },
  14005. },
  14006. [
  14007. {
  14008. name: "Micro",
  14009. height: math.unit(6, "inches")
  14010. },
  14011. {
  14012. name: "Normal",
  14013. height: math.unit(6 + 2 / 12, "feet")
  14014. },
  14015. {
  14016. name: "Macro",
  14017. height: math.unit(131, "feet"),
  14018. default: true
  14019. },
  14020. {
  14021. name: "Megamacro",
  14022. height: math.unit(15, "miles")
  14023. },
  14024. {
  14025. name: "Gigamacro",
  14026. height: math.unit(4000, "miles")
  14027. },
  14028. {
  14029. name: "Teramacro",
  14030. height: math.unit(315000, "miles")
  14031. },
  14032. ]
  14033. ))
  14034. characterMakers.push(() => makeCharacter(
  14035. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14036. {
  14037. front: {
  14038. height: math.unit(2.794, "meters"),
  14039. weight: math.unit(325, "kg"),
  14040. name: "Front",
  14041. image: {
  14042. source: "./media/characters/tezwa/front.svg",
  14043. extra: 2083 / 1906,
  14044. bottom: 0.031
  14045. }
  14046. },
  14047. foot: {
  14048. height: math.unit(0.687, "meters"),
  14049. name: "Foot",
  14050. image: {
  14051. source: "./media/characters/tezwa/foot.svg"
  14052. }
  14053. },
  14054. },
  14055. [
  14056. {
  14057. name: "Normal",
  14058. height: math.unit(9 + 2 / 12, "feet"),
  14059. default: true
  14060. },
  14061. ]
  14062. ))
  14063. characterMakers.push(() => makeCharacter(
  14064. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14065. {
  14066. front: {
  14067. height: math.unit(58, "feet"),
  14068. weight: math.unit(89000, "lb"),
  14069. name: "Front",
  14070. image: {
  14071. source: "./media/characters/typhus/front.svg",
  14072. extra: 816 / 800,
  14073. bottom: 0.065
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Macro",
  14080. height: math.unit(58, "feet"),
  14081. default: true
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14087. {
  14088. front: {
  14089. height: math.unit(12, "feet"),
  14090. weight: math.unit(6, "tonnes"),
  14091. name: "Front",
  14092. image: {
  14093. source: "./media/characters/lyra-von-wulf/front.svg",
  14094. extra: 1,
  14095. bottom: 0.10
  14096. }
  14097. },
  14098. frontMecha: {
  14099. height: math.unit(12, "feet"),
  14100. weight: math.unit(12, "tonnes"),
  14101. name: "Front (Mecha)",
  14102. image: {
  14103. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14104. extra: 1,
  14105. bottom: 0.042
  14106. }
  14107. },
  14108. maw: {
  14109. height: math.unit(2.2, "feet"),
  14110. name: "Maw",
  14111. image: {
  14112. source: "./media/characters/lyra-von-wulf/maw.svg"
  14113. }
  14114. },
  14115. },
  14116. [
  14117. {
  14118. name: "Normal",
  14119. height: math.unit(12, "feet"),
  14120. default: true
  14121. },
  14122. {
  14123. name: "Classic",
  14124. height: math.unit(50, "feet")
  14125. },
  14126. {
  14127. name: "Macro",
  14128. height: math.unit(500, "feet")
  14129. },
  14130. {
  14131. name: "Megamacro",
  14132. height: math.unit(1, "mile")
  14133. },
  14134. {
  14135. name: "Gigamacro",
  14136. height: math.unit(400, "miles")
  14137. },
  14138. {
  14139. name: "Teramacro",
  14140. height: math.unit(22000, "miles")
  14141. },
  14142. {
  14143. name: "Solarmacro",
  14144. height: math.unit(8600000, "miles")
  14145. },
  14146. {
  14147. name: "Galactic",
  14148. height: math.unit(1057000, "lightyears")
  14149. },
  14150. ]
  14151. ))
  14152. characterMakers.push(() => makeCharacter(
  14153. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14154. {
  14155. front: {
  14156. height: math.unit(6 + 10 / 12, "feet"),
  14157. weight: math.unit(150, "lb"),
  14158. name: "Front",
  14159. image: {
  14160. source: "./media/characters/dixon/front.svg",
  14161. extra: 3361 / 3209,
  14162. bottom: 0.01
  14163. }
  14164. },
  14165. },
  14166. [
  14167. {
  14168. name: "Normal",
  14169. height: math.unit(6 + 10 / 12, "feet"),
  14170. default: true
  14171. },
  14172. {
  14173. name: "Big",
  14174. height: math.unit(12, "meters")
  14175. },
  14176. {
  14177. name: "Macro",
  14178. height: math.unit(500, "meters")
  14179. },
  14180. {
  14181. name: "Megamacro",
  14182. height: math.unit(2, "km")
  14183. },
  14184. ]
  14185. ))
  14186. characterMakers.push(() => makeCharacter(
  14187. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14188. {
  14189. front: {
  14190. height: math.unit(185, "cm"),
  14191. weight: math.unit(68, "kg"),
  14192. name: "Front",
  14193. image: {
  14194. source: "./media/characters/kauko/front.svg",
  14195. extra: 1455 / 1421,
  14196. bottom: 0.03
  14197. }
  14198. },
  14199. back: {
  14200. height: math.unit(185, "cm"),
  14201. weight: math.unit(68, "kg"),
  14202. name: "Back",
  14203. image: {
  14204. source: "./media/characters/kauko/back.svg",
  14205. extra: 1455 / 1421,
  14206. bottom: 0.004
  14207. }
  14208. },
  14209. },
  14210. [
  14211. {
  14212. name: "Normal",
  14213. height: math.unit(185, "cm"),
  14214. default: true
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14220. {
  14221. frontSfw: {
  14222. height: math.unit(5, "meters"),
  14223. weight: math.unit(4250, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/varg/front-sfw.svg",
  14227. extra: 1103/1010,
  14228. bottom: 50/1153
  14229. },
  14230. form: "anthro",
  14231. default: true
  14232. },
  14233. backSfw: {
  14234. height: math.unit(5, "meters"),
  14235. weight: math.unit(4250, "lb"),
  14236. name: "Back",
  14237. image: {
  14238. source: "./media/characters/varg/back-sfw.svg",
  14239. extra: 1038/1022,
  14240. bottom: 36/1074
  14241. },
  14242. form: "anthro"
  14243. },
  14244. frontNsfw: {
  14245. height: math.unit(5, "meters"),
  14246. weight: math.unit(4250, "lb"),
  14247. name: "Front (NSFW)",
  14248. image: {
  14249. source: "./media/characters/varg/front-nsfw.svg",
  14250. extra: 1103/1010,
  14251. bottom: 50/1153
  14252. },
  14253. form: "anthro"
  14254. },
  14255. sheath: {
  14256. height: math.unit(3.8, "feet"),
  14257. weight: math.unit(90, "kilograms"),
  14258. name: "Sheath",
  14259. image: {
  14260. source: "./media/characters/varg/sheath.svg"
  14261. },
  14262. form: "anthro"
  14263. },
  14264. dick: {
  14265. height: math.unit(4.6, "feet"),
  14266. weight: math.unit(451, "kilograms"),
  14267. name: "Dick",
  14268. image: {
  14269. source: "./media/characters/varg/dick.svg"
  14270. },
  14271. form: "anthro"
  14272. },
  14273. feralSfw: {
  14274. height: math.unit(5, "meters"),
  14275. weight: math.unit(100000, "lb"),
  14276. name: "Side",
  14277. image: {
  14278. source: "./media/characters/varg/feral-sfw.svg",
  14279. extra: 1065/511,
  14280. bottom: 211/1276
  14281. },
  14282. form: "feral",
  14283. default: true
  14284. },
  14285. feralNsfw: {
  14286. height: math.unit(5, "meters"),
  14287. weight: math.unit(100000, "lb"),
  14288. name: "Side (NSFW)",
  14289. image: {
  14290. source: "./media/characters/varg/feral-nsfw.svg",
  14291. extra: 1065/511,
  14292. bottom: 211/1276
  14293. },
  14294. form: "feral",
  14295. },
  14296. feralSheath: {
  14297. height: math.unit(9.8, "feet"),
  14298. weight: math.unit(2000, "kilograms"),
  14299. name: "Sheath",
  14300. image: {
  14301. source: "./media/characters/varg/sheath.svg"
  14302. },
  14303. form: "feral"
  14304. },
  14305. feralDick: {
  14306. height: math.unit(13.11, "feet"),
  14307. weight: math.unit(10440, "kilograms"),
  14308. name: "Dick",
  14309. image: {
  14310. source: "./media/characters/varg/dick.svg"
  14311. },
  14312. form: "feral"
  14313. },
  14314. },
  14315. [
  14316. {
  14317. name: "Normal",
  14318. height: math.unit(5, "meters"),
  14319. form: "anthro"
  14320. },
  14321. {
  14322. name: "Macro",
  14323. height: math.unit(200, "meters"),
  14324. form: "anthro"
  14325. },
  14326. {
  14327. name: "Megamacro",
  14328. height: math.unit(20, "kilometers"),
  14329. form: "anthro"
  14330. },
  14331. {
  14332. name: "True Size",
  14333. height: math.unit(211, "km"),
  14334. form: "anthro",
  14335. default: true
  14336. },
  14337. {
  14338. name: "Gigamacro",
  14339. height: math.unit(1000, "km"),
  14340. form: "anthro"
  14341. },
  14342. {
  14343. name: "Gigamacro+",
  14344. height: math.unit(8000, "km"),
  14345. form: "anthro"
  14346. },
  14347. {
  14348. name: "Teramacro",
  14349. height: math.unit(1000000, "km"),
  14350. form: "anthro"
  14351. },
  14352. {
  14353. name: "Normal",
  14354. height: math.unit(5, "meters"),
  14355. form: "feral"
  14356. },
  14357. {
  14358. name: "Macro",
  14359. height: math.unit(200, "meters"),
  14360. form: "feral"
  14361. },
  14362. {
  14363. name: "Megamacro",
  14364. height: math.unit(20, "kilometers"),
  14365. form: "feral"
  14366. },
  14367. {
  14368. name: "True Size",
  14369. height: math.unit(211, "km"),
  14370. form: "feral",
  14371. default: true
  14372. },
  14373. {
  14374. name: "Gigamacro",
  14375. height: math.unit(1000, "km"),
  14376. form: "feral"
  14377. },
  14378. {
  14379. name: "Gigamacro+",
  14380. height: math.unit(8000, "km"),
  14381. form: "feral"
  14382. },
  14383. {
  14384. name: "Teramacro",
  14385. height: math.unit(1000000, "km"),
  14386. form: "feral"
  14387. },
  14388. ],
  14389. {
  14390. "anthro": {
  14391. name: "Anthro",
  14392. default: true
  14393. },
  14394. "feral": {
  14395. name: "Feral",
  14396. },
  14397. }
  14398. ))
  14399. characterMakers.push(() => makeCharacter(
  14400. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14401. {
  14402. front: {
  14403. height: math.unit(7 + 7 / 12, "feet"),
  14404. weight: math.unit(267, "lb"),
  14405. name: "Front",
  14406. image: {
  14407. source: "./media/characters/dayza/front.svg",
  14408. extra: 1262 / 1200,
  14409. bottom: 0.035
  14410. }
  14411. },
  14412. side: {
  14413. height: math.unit(7 + 7 / 12, "feet"),
  14414. weight: math.unit(267, "lb"),
  14415. name: "Side",
  14416. image: {
  14417. source: "./media/characters/dayza/side.svg",
  14418. extra: 1295 / 1245,
  14419. bottom: 0.05
  14420. }
  14421. },
  14422. back: {
  14423. height: math.unit(7 + 7 / 12, "feet"),
  14424. weight: math.unit(267, "lb"),
  14425. name: "Back",
  14426. image: {
  14427. source: "./media/characters/dayza/back.svg",
  14428. extra: 1241 / 1170
  14429. }
  14430. },
  14431. },
  14432. [
  14433. {
  14434. name: "Normal",
  14435. height: math.unit(7 + 7 / 12, "feet"),
  14436. default: true
  14437. },
  14438. {
  14439. name: "Macro",
  14440. height: math.unit(155, "feet")
  14441. },
  14442. ]
  14443. ))
  14444. characterMakers.push(() => makeCharacter(
  14445. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14446. {
  14447. front: {
  14448. height: math.unit(6 + 5 / 12, "feet"),
  14449. weight: math.unit(160, "lb"),
  14450. name: "Front",
  14451. image: {
  14452. source: "./media/characters/xanthos/front.svg",
  14453. extra: 1,
  14454. bottom: 0.04
  14455. }
  14456. },
  14457. back: {
  14458. height: math.unit(6 + 5 / 12, "feet"),
  14459. weight: math.unit(160, "lb"),
  14460. name: "Back",
  14461. image: {
  14462. source: "./media/characters/xanthos/back.svg",
  14463. extra: 1,
  14464. bottom: 0.03
  14465. }
  14466. },
  14467. hand: {
  14468. height: math.unit(0.928, "feet"),
  14469. name: "Hand",
  14470. image: {
  14471. source: "./media/characters/xanthos/hand.svg"
  14472. }
  14473. },
  14474. foot: {
  14475. height: math.unit(1.286, "feet"),
  14476. name: "Foot",
  14477. image: {
  14478. source: "./media/characters/xanthos/foot.svg"
  14479. }
  14480. },
  14481. },
  14482. [
  14483. {
  14484. name: "Normal",
  14485. height: math.unit(6 + 5 / 12, "feet"),
  14486. default: true
  14487. },
  14488. {
  14489. name: "Normal+",
  14490. height: math.unit(6, "meters")
  14491. },
  14492. {
  14493. name: "Macro",
  14494. height: math.unit(40, "feet")
  14495. },
  14496. {
  14497. name: "Macro+",
  14498. height: math.unit(200, "meters")
  14499. },
  14500. {
  14501. name: "Megamacro",
  14502. height: math.unit(20, "km")
  14503. },
  14504. {
  14505. name: "Megamacro+",
  14506. height: math.unit(100, "km")
  14507. },
  14508. {
  14509. name: "Gigamacro",
  14510. height: math.unit(200, "megameters")
  14511. },
  14512. {
  14513. name: "Gigamacro+",
  14514. height: math.unit(1.5, "gigameters")
  14515. },
  14516. ]
  14517. ))
  14518. characterMakers.push(() => makeCharacter(
  14519. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14520. {
  14521. front: {
  14522. height: math.unit(6 + 3 / 12, "feet"),
  14523. weight: math.unit(215, "lb"),
  14524. name: "Front",
  14525. image: {
  14526. source: "./media/characters/grynn/front.svg",
  14527. extra: 4627 / 4209,
  14528. bottom: 0.047
  14529. }
  14530. },
  14531. },
  14532. [
  14533. {
  14534. name: "Micro",
  14535. height: math.unit(6, "inches")
  14536. },
  14537. {
  14538. name: "Normal",
  14539. height: math.unit(6 + 3 / 12, "feet"),
  14540. default: true
  14541. },
  14542. {
  14543. name: "Big",
  14544. height: math.unit(104, "feet")
  14545. },
  14546. {
  14547. name: "Macro",
  14548. height: math.unit(944, "feet")
  14549. },
  14550. {
  14551. name: "Macro+",
  14552. height: math.unit(9480, "feet")
  14553. },
  14554. {
  14555. name: "Megamacro",
  14556. height: math.unit(78752, "feet")
  14557. },
  14558. {
  14559. name: "Megamacro+",
  14560. height: math.unit(630128, "feet")
  14561. },
  14562. {
  14563. name: "Megamacro++",
  14564. height: math.unit(3150695, "feet")
  14565. },
  14566. ]
  14567. ))
  14568. characterMakers.push(() => makeCharacter(
  14569. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14570. {
  14571. front: {
  14572. height: math.unit(7 + 5 / 12, "feet"),
  14573. weight: math.unit(450, "lb"),
  14574. name: "Front",
  14575. image: {
  14576. source: "./media/characters/mocha-aura/front.svg",
  14577. extra: 1907 / 1817,
  14578. bottom: 0.04
  14579. }
  14580. },
  14581. back: {
  14582. height: math.unit(7 + 5 / 12, "feet"),
  14583. weight: math.unit(450, "lb"),
  14584. name: "Back",
  14585. image: {
  14586. source: "./media/characters/mocha-aura/back.svg",
  14587. extra: 1900 / 1825,
  14588. bottom: 0.045
  14589. }
  14590. },
  14591. },
  14592. [
  14593. {
  14594. name: "Nano",
  14595. height: math.unit(1, "nm")
  14596. },
  14597. {
  14598. name: "Megamicro",
  14599. height: math.unit(1, "mm")
  14600. },
  14601. {
  14602. name: "Micro",
  14603. height: math.unit(3, "inches")
  14604. },
  14605. {
  14606. name: "Normal",
  14607. height: math.unit(7 + 5 / 12, "feet"),
  14608. default: true
  14609. },
  14610. {
  14611. name: "Macro",
  14612. height: math.unit(30, "feet")
  14613. },
  14614. {
  14615. name: "Megamacro",
  14616. height: math.unit(3500, "feet")
  14617. },
  14618. {
  14619. name: "Teramacro",
  14620. height: math.unit(500000, "miles")
  14621. },
  14622. {
  14623. name: "Petamacro",
  14624. height: math.unit(50000000000000000, "parsecs")
  14625. },
  14626. ]
  14627. ))
  14628. characterMakers.push(() => makeCharacter(
  14629. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14630. {
  14631. front: {
  14632. height: math.unit(6, "feet"),
  14633. weight: math.unit(150, "lb"),
  14634. name: "Front",
  14635. image: {
  14636. source: "./media/characters/ilisha-devya/front.svg",
  14637. extra: 1053/1049,
  14638. bottom: 270/1323
  14639. }
  14640. },
  14641. back: {
  14642. height: math.unit(6, "feet"),
  14643. weight: math.unit(150, "lb"),
  14644. name: "Back",
  14645. image: {
  14646. source: "./media/characters/ilisha-devya/back.svg",
  14647. extra: 1131/1128,
  14648. bottom: 39/1170
  14649. }
  14650. },
  14651. },
  14652. [
  14653. {
  14654. name: "Macro",
  14655. height: math.unit(500, "feet"),
  14656. default: true
  14657. },
  14658. {
  14659. name: "Megamacro",
  14660. height: math.unit(10, "miles")
  14661. },
  14662. {
  14663. name: "Gigamacro",
  14664. height: math.unit(100000, "miles")
  14665. },
  14666. {
  14667. name: "Examacro",
  14668. height: math.unit(1e9, "lightyears")
  14669. },
  14670. {
  14671. name: "Omniversal",
  14672. height: math.unit(1e33, "lightyears")
  14673. },
  14674. {
  14675. name: "Beyond Infinite",
  14676. height: math.unit(1e100, "lightyears")
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14682. {
  14683. Side: {
  14684. height: math.unit(6, "feet"),
  14685. weight: math.unit(150, "lb"),
  14686. name: "Side",
  14687. image: {
  14688. source: "./media/characters/mira/side.svg",
  14689. extra: 900 / 799,
  14690. bottom: 0.02
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Human Size",
  14697. height: math.unit(6, "feet")
  14698. },
  14699. {
  14700. name: "Macro",
  14701. height: math.unit(100, "feet"),
  14702. default: true
  14703. },
  14704. {
  14705. name: "Megamacro",
  14706. height: math.unit(10, "miles")
  14707. },
  14708. {
  14709. name: "Gigamacro",
  14710. height: math.unit(25000, "miles")
  14711. },
  14712. {
  14713. name: "Teramacro",
  14714. height: math.unit(300, "AU")
  14715. },
  14716. {
  14717. name: "Full Size",
  14718. height: math.unit(4.5e10, "lightyears")
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14724. {
  14725. front: {
  14726. height: math.unit(6, "feet"),
  14727. weight: math.unit(150, "lb"),
  14728. name: "Front",
  14729. image: {
  14730. source: "./media/characters/holly/front.svg",
  14731. extra: 639 / 606
  14732. }
  14733. },
  14734. back: {
  14735. height: math.unit(6, "feet"),
  14736. weight: math.unit(150, "lb"),
  14737. name: "Back",
  14738. image: {
  14739. source: "./media/characters/holly/back.svg",
  14740. extra: 623 / 598
  14741. }
  14742. },
  14743. frontWorking: {
  14744. height: math.unit(6, "feet"),
  14745. weight: math.unit(150, "lb"),
  14746. name: "Front (Working)",
  14747. image: {
  14748. source: "./media/characters/holly/front-working.svg",
  14749. extra: 607 / 577,
  14750. bottom: 0.048
  14751. }
  14752. },
  14753. },
  14754. [
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(12 + 3 / 12, "feet"),
  14758. default: true
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(6, "feet"),
  14767. weight: math.unit(150, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/porter/front.svg",
  14771. extra: 1,
  14772. bottom: 0.01
  14773. }
  14774. },
  14775. frontRobes: {
  14776. height: math.unit(6, "feet"),
  14777. weight: math.unit(150, "lb"),
  14778. name: "Front (Robes)",
  14779. image: {
  14780. source: "./media/characters/porter/front-robes.svg",
  14781. extra: 1.01,
  14782. bottom: 0.01
  14783. }
  14784. },
  14785. },
  14786. [
  14787. {
  14788. name: "Normal",
  14789. height: math.unit(11 + 9 / 12, "feet"),
  14790. default: true
  14791. },
  14792. ]
  14793. ))
  14794. characterMakers.push(() => makeCharacter(
  14795. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14796. {
  14797. legendary: {
  14798. height: math.unit(6, "feet"),
  14799. weight: math.unit(150, "lb"),
  14800. name: "Legendary",
  14801. image: {
  14802. source: "./media/characters/lucy/legendary.svg",
  14803. extra: 1355 / 1100,
  14804. bottom: 0.045
  14805. }
  14806. },
  14807. },
  14808. [
  14809. {
  14810. name: "Legendary",
  14811. height: math.unit(86882 * 2, "miles"),
  14812. default: true
  14813. },
  14814. ]
  14815. ))
  14816. characterMakers.push(() => makeCharacter(
  14817. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14818. {
  14819. front: {
  14820. height: math.unit(6, "feet"),
  14821. weight: math.unit(150, "lb"),
  14822. name: "Front",
  14823. image: {
  14824. source: "./media/characters/drusilla/front.svg",
  14825. extra: 678 / 635,
  14826. bottom: 0.03
  14827. }
  14828. },
  14829. back: {
  14830. height: math.unit(6, "feet"),
  14831. weight: math.unit(150, "lb"),
  14832. name: "Back",
  14833. image: {
  14834. source: "./media/characters/drusilla/back.svg",
  14835. extra: 678 / 635,
  14836. bottom: 0.005
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "Macro",
  14843. height: math.unit(100, "feet")
  14844. },
  14845. {
  14846. name: "Canon Height",
  14847. height: math.unit(2000, "feet"),
  14848. default: true
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(6, "feet"),
  14857. weight: math.unit(180, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/renard-thatch/front.svg",
  14861. extra: 2411 / 2275,
  14862. bottom: 0.01
  14863. }
  14864. },
  14865. frontPosing: {
  14866. height: math.unit(6, "feet"),
  14867. weight: math.unit(180, "lb"),
  14868. name: "Front (Posing)",
  14869. image: {
  14870. source: "./media/characters/renard-thatch/front-posing.svg",
  14871. extra: 2381 / 2261,
  14872. bottom: 0.01
  14873. }
  14874. },
  14875. back: {
  14876. height: math.unit(6, "feet"),
  14877. weight: math.unit(180, "lb"),
  14878. name: "Back",
  14879. image: {
  14880. source: "./media/characters/renard-thatch/back.svg",
  14881. extra: 2428 / 2288
  14882. }
  14883. },
  14884. },
  14885. [
  14886. {
  14887. name: "Micro",
  14888. height: math.unit(3, "inches")
  14889. },
  14890. {
  14891. name: "Default",
  14892. height: math.unit(6, "feet"),
  14893. default: true
  14894. },
  14895. {
  14896. name: "Macro",
  14897. height: math.unit(75, "feet")
  14898. },
  14899. ]
  14900. ))
  14901. characterMakers.push(() => makeCharacter(
  14902. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14903. {
  14904. front: {
  14905. height: math.unit(1450, "feet"),
  14906. weight: math.unit(1.21e6, "tons"),
  14907. name: "Front",
  14908. image: {
  14909. source: "./media/characters/sekvra/front.svg",
  14910. extra: 1193/1190,
  14911. bottom: 78/1271
  14912. }
  14913. },
  14914. side: {
  14915. height: math.unit(1450, "feet"),
  14916. weight: math.unit(1.21e6, "tons"),
  14917. name: "Side",
  14918. image: {
  14919. source: "./media/characters/sekvra/side.svg",
  14920. extra: 1193/1190,
  14921. bottom: 52/1245
  14922. }
  14923. },
  14924. back: {
  14925. height: math.unit(1450, "feet"),
  14926. weight: math.unit(1.21e6, "tons"),
  14927. name: "Back",
  14928. image: {
  14929. source: "./media/characters/sekvra/back.svg",
  14930. extra: 1219/1216,
  14931. bottom: 21/1240
  14932. }
  14933. },
  14934. frontClothed: {
  14935. height: math.unit(1450, "feet"),
  14936. weight: math.unit(1.21e6, "tons"),
  14937. name: "Front (Clothed)",
  14938. image: {
  14939. source: "./media/characters/sekvra/front-clothed.svg",
  14940. extra: 1192/1189,
  14941. bottom: 79/1271
  14942. }
  14943. },
  14944. },
  14945. [
  14946. {
  14947. name: "Macro",
  14948. height: math.unit(1450, "feet"),
  14949. default: true
  14950. },
  14951. {
  14952. name: "Megamacro",
  14953. height: math.unit(15000, "feet")
  14954. },
  14955. ]
  14956. ))
  14957. characterMakers.push(() => makeCharacter(
  14958. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14959. {
  14960. front: {
  14961. height: math.unit(6, "feet"),
  14962. weight: math.unit(150, "lb"),
  14963. name: "Front",
  14964. image: {
  14965. source: "./media/characters/carmine/front.svg",
  14966. extra: 1557/1538,
  14967. bottom: 68/1625
  14968. }
  14969. },
  14970. frontArmor: {
  14971. height: math.unit(6, "feet"),
  14972. weight: math.unit(150, "lb"),
  14973. name: "Front (Armor)",
  14974. image: {
  14975. source: "./media/characters/carmine/front-armor.svg",
  14976. extra: 1549/1530,
  14977. bottom: 82/1631
  14978. }
  14979. },
  14980. mouth: {
  14981. height: math.unit(0.55, "feet"),
  14982. name: "Mouth",
  14983. image: {
  14984. source: "./media/characters/carmine/mouth.svg"
  14985. }
  14986. },
  14987. hand: {
  14988. height: math.unit(1.05, "feet"),
  14989. name: "Hand",
  14990. image: {
  14991. source: "./media/characters/carmine/hand.svg"
  14992. }
  14993. },
  14994. foot: {
  14995. height: math.unit(0.6, "feet"),
  14996. name: "Foot",
  14997. image: {
  14998. source: "./media/characters/carmine/foot.svg"
  14999. }
  15000. },
  15001. },
  15002. [
  15003. {
  15004. name: "Large",
  15005. height: math.unit(1, "mile")
  15006. },
  15007. {
  15008. name: "Huge",
  15009. height: math.unit(40, "miles"),
  15010. default: true
  15011. },
  15012. {
  15013. name: "Colossal",
  15014. height: math.unit(2500, "miles")
  15015. },
  15016. ]
  15017. ))
  15018. characterMakers.push(() => makeCharacter(
  15019. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15020. {
  15021. front: {
  15022. height: math.unit(6, "feet"),
  15023. weight: math.unit(150, "lb"),
  15024. name: "Front",
  15025. image: {
  15026. source: "./media/characters/elyssia/front.svg",
  15027. extra: 2201 / 2035,
  15028. bottom: 0.05
  15029. }
  15030. },
  15031. frontClothed: {
  15032. height: math.unit(6, "feet"),
  15033. weight: math.unit(150, "lb"),
  15034. name: "Front (Clothed)",
  15035. image: {
  15036. source: "./media/characters/elyssia/front-clothed.svg",
  15037. extra: 2201 / 2035,
  15038. bottom: 0.05
  15039. }
  15040. },
  15041. back: {
  15042. height: math.unit(6, "feet"),
  15043. weight: math.unit(150, "lb"),
  15044. name: "Back",
  15045. image: {
  15046. source: "./media/characters/elyssia/back.svg",
  15047. extra: 2201 / 2035,
  15048. bottom: 0.013
  15049. }
  15050. },
  15051. },
  15052. [
  15053. {
  15054. name: "Smaller",
  15055. height: math.unit(150, "feet")
  15056. },
  15057. {
  15058. name: "Standard",
  15059. height: math.unit(1400, "feet"),
  15060. default: true
  15061. },
  15062. {
  15063. name: "Distracted",
  15064. height: math.unit(15000, "feet")
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(7 + 4/12, "feet"),
  15073. weight: math.unit(690, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/geno-maxwell/front.svg",
  15077. extra: 984/856,
  15078. bottom: 87/1071
  15079. }
  15080. },
  15081. back: {
  15082. height: math.unit(7 + 4/12, "feet"),
  15083. weight: math.unit(690, "lb"),
  15084. name: "Back",
  15085. image: {
  15086. source: "./media/characters/geno-maxwell/back.svg",
  15087. extra: 981/854,
  15088. bottom: 57/1038
  15089. }
  15090. },
  15091. frontCostume: {
  15092. height: math.unit(7 + 4/12, "feet"),
  15093. weight: math.unit(690, "lb"),
  15094. name: "Front (Costume)",
  15095. image: {
  15096. source: "./media/characters/geno-maxwell/front-costume.svg",
  15097. extra: 984/856,
  15098. bottom: 87/1071
  15099. }
  15100. },
  15101. backcostume: {
  15102. height: math.unit(7 + 4/12, "feet"),
  15103. weight: math.unit(690, "lb"),
  15104. name: "Back (Costume)",
  15105. image: {
  15106. source: "./media/characters/geno-maxwell/back-costume.svg",
  15107. extra: 981/854,
  15108. bottom: 57/1038
  15109. }
  15110. },
  15111. },
  15112. [
  15113. {
  15114. name: "Micro",
  15115. height: math.unit(3, "inches")
  15116. },
  15117. {
  15118. name: "Normal",
  15119. height: math.unit(7 + 4 / 12, "feet"),
  15120. default: true
  15121. },
  15122. {
  15123. name: "Macro",
  15124. height: math.unit(220, "feet")
  15125. },
  15126. {
  15127. name: "Megamacro",
  15128. height: math.unit(11, "miles")
  15129. },
  15130. ]
  15131. ))
  15132. characterMakers.push(() => makeCharacter(
  15133. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15134. {
  15135. front: {
  15136. height: math.unit(7 + 4/12, "feet"),
  15137. weight: math.unit(750, "lb"),
  15138. name: "Front",
  15139. image: {
  15140. source: "./media/characters/regena-maxwell/front.svg",
  15141. extra: 984/856,
  15142. bottom: 87/1071
  15143. }
  15144. },
  15145. back: {
  15146. height: math.unit(7 + 4/12, "feet"),
  15147. weight: math.unit(750, "lb"),
  15148. name: "Back",
  15149. image: {
  15150. source: "./media/characters/regena-maxwell/back.svg",
  15151. extra: 981/854,
  15152. bottom: 57/1038
  15153. }
  15154. },
  15155. frontCostume: {
  15156. height: math.unit(7 + 4/12, "feet"),
  15157. weight: math.unit(750, "lb"),
  15158. name: "Front (Costume)",
  15159. image: {
  15160. source: "./media/characters/regena-maxwell/front-costume.svg",
  15161. extra: 984/856,
  15162. bottom: 87/1071
  15163. }
  15164. },
  15165. backcostume: {
  15166. height: math.unit(7 + 4/12, "feet"),
  15167. weight: math.unit(750, "lb"),
  15168. name: "Back (Costume)",
  15169. image: {
  15170. source: "./media/characters/regena-maxwell/back-costume.svg",
  15171. extra: 981/854,
  15172. bottom: 57/1038
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(7 + 4 / 12, "feet"),
  15180. default: true
  15181. },
  15182. {
  15183. name: "Macro",
  15184. height: math.unit(220, "feet")
  15185. },
  15186. {
  15187. name: "Megamacro",
  15188. height: math.unit(11, "miles")
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(6, "feet"),
  15197. weight: math.unit(150, "lb"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15201. extra: 860 / 690,
  15202. bottom: 0.03
  15203. }
  15204. },
  15205. },
  15206. [
  15207. {
  15208. name: "Normal",
  15209. height: math.unit(1.7, "meters"),
  15210. default: true
  15211. },
  15212. ]
  15213. ))
  15214. characterMakers.push(() => makeCharacter(
  15215. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15216. {
  15217. front: {
  15218. height: math.unit(6, "feet"),
  15219. weight: math.unit(150, "lb"),
  15220. name: "Front",
  15221. image: {
  15222. source: "./media/characters/quilly/front.svg",
  15223. extra: 890 / 776
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Gigamacro",
  15230. height: math.unit(404090, "miles"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(7 + 8 / 12, "feet"),
  15240. weight: math.unit(350, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/tempest/front.svg",
  15244. extra: 1175 / 1086,
  15245. bottom: 0.02
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(7 + 8 / 12, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15259. {
  15260. side: {
  15261. height: math.unit(4 + 5 / 12, "feet"),
  15262. weight: math.unit(80, "lb"),
  15263. name: "Side",
  15264. image: {
  15265. source: "./media/characters/rodger/side.svg",
  15266. extra: 1235 / 1118
  15267. }
  15268. },
  15269. },
  15270. [
  15271. {
  15272. name: "Micro",
  15273. height: math.unit(1, "inch")
  15274. },
  15275. {
  15276. name: "Normal",
  15277. height: math.unit(4 + 5 / 12, "feet"),
  15278. default: true
  15279. },
  15280. {
  15281. name: "Macro",
  15282. height: math.unit(120, "feet")
  15283. },
  15284. ]
  15285. ))
  15286. characterMakers.push(() => makeCharacter(
  15287. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15288. {
  15289. front: {
  15290. height: math.unit(6, "feet"),
  15291. weight: math.unit(150, "lb"),
  15292. name: "Front",
  15293. image: {
  15294. source: "./media/characters/danyel/front.svg",
  15295. extra: 1185 / 1123,
  15296. bottom: 0.05
  15297. }
  15298. },
  15299. },
  15300. [
  15301. {
  15302. name: "Shrunken",
  15303. height: math.unit(0.5, "mm")
  15304. },
  15305. {
  15306. name: "Micro",
  15307. height: math.unit(1, "mm"),
  15308. default: true
  15309. },
  15310. {
  15311. name: "Upsized",
  15312. height: math.unit(5 + 5 / 12, "feet")
  15313. },
  15314. ]
  15315. ))
  15316. characterMakers.push(() => makeCharacter(
  15317. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15318. {
  15319. front: {
  15320. height: math.unit(5 + 6 / 12, "feet"),
  15321. weight: math.unit(200, "lb"),
  15322. name: "Front",
  15323. image: {
  15324. source: "./media/characters/vivian-bijoux/front.svg",
  15325. extra: 1217/1209,
  15326. bottom: 76/1293
  15327. }
  15328. },
  15329. back: {
  15330. height: math.unit(5 + 6 / 12, "feet"),
  15331. weight: math.unit(200, "lb"),
  15332. name: "Back",
  15333. image: {
  15334. source: "./media/characters/vivian-bijoux/back.svg",
  15335. extra: 1214/1208,
  15336. bottom: 51/1265
  15337. }
  15338. },
  15339. dressed: {
  15340. height: math.unit(5 + 6 / 12, "feet"),
  15341. weight: math.unit(200, "lb"),
  15342. name: "Dressed",
  15343. image: {
  15344. source: "./media/characters/vivian-bijoux/dressed.svg",
  15345. extra: 1217/1209,
  15346. bottom: 76/1293
  15347. }
  15348. },
  15349. },
  15350. [
  15351. {
  15352. name: "Normal",
  15353. height: math.unit(5 + 6 / 12, "feet"),
  15354. default: true
  15355. },
  15356. {
  15357. name: "Bad Dream",
  15358. height: math.unit(500, "feet")
  15359. },
  15360. {
  15361. name: "Nightmare",
  15362. height: math.unit(500, "miles")
  15363. },
  15364. ]
  15365. ))
  15366. characterMakers.push(() => makeCharacter(
  15367. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15368. {
  15369. front: {
  15370. height: math.unit(6 + 1 / 12, "feet"),
  15371. weight: math.unit(260, "lb"),
  15372. name: "Front",
  15373. image: {
  15374. source: "./media/characters/zeta/front.svg",
  15375. extra: 1968 / 1889,
  15376. bottom: 0.06
  15377. }
  15378. },
  15379. back: {
  15380. height: math.unit(6 + 1 / 12, "feet"),
  15381. weight: math.unit(260, "lb"),
  15382. name: "Back",
  15383. image: {
  15384. source: "./media/characters/zeta/back.svg",
  15385. extra: 1944 / 1858,
  15386. bottom: 0.03
  15387. }
  15388. },
  15389. hand: {
  15390. height: math.unit(1.112, "feet"),
  15391. name: "Hand",
  15392. image: {
  15393. source: "./media/characters/zeta/hand.svg"
  15394. }
  15395. },
  15396. foot: {
  15397. height: math.unit(1.48, "feet"),
  15398. name: "Foot",
  15399. image: {
  15400. source: "./media/characters/zeta/foot.svg"
  15401. }
  15402. },
  15403. },
  15404. [
  15405. {
  15406. name: "Micro",
  15407. height: math.unit(6, "inches")
  15408. },
  15409. {
  15410. name: "Normal",
  15411. height: math.unit(6 + 1 / 12, "feet"),
  15412. default: true
  15413. },
  15414. {
  15415. name: "Macro",
  15416. height: math.unit(20, "feet")
  15417. },
  15418. ]
  15419. ))
  15420. characterMakers.push(() => makeCharacter(
  15421. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15422. {
  15423. front: {
  15424. height: math.unit(6, "feet"),
  15425. weight: math.unit(150, "lb"),
  15426. name: "Front",
  15427. image: {
  15428. source: "./media/characters/jamie-larsen/front.svg",
  15429. extra: 962 / 933,
  15430. bottom: 0.02
  15431. }
  15432. },
  15433. back: {
  15434. height: math.unit(6, "feet"),
  15435. weight: math.unit(150, "lb"),
  15436. name: "Back",
  15437. image: {
  15438. source: "./media/characters/jamie-larsen/back.svg",
  15439. extra: 997 / 946
  15440. }
  15441. },
  15442. },
  15443. [
  15444. {
  15445. name: "Macro",
  15446. height: math.unit(28 + 7 / 12, "feet"),
  15447. default: true
  15448. },
  15449. {
  15450. name: "Macro+",
  15451. height: math.unit(180, "feet")
  15452. },
  15453. {
  15454. name: "Megamacro",
  15455. height: math.unit(10, "miles")
  15456. },
  15457. {
  15458. name: "Gigamacro",
  15459. height: math.unit(200000, "miles")
  15460. },
  15461. ]
  15462. ))
  15463. characterMakers.push(() => makeCharacter(
  15464. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15465. {
  15466. front: {
  15467. height: math.unit(6, "feet"),
  15468. weight: math.unit(120, "lb"),
  15469. name: "Front",
  15470. image: {
  15471. source: "./media/characters/vance/front.svg",
  15472. extra: 1980 / 1890,
  15473. bottom: 0.09
  15474. }
  15475. },
  15476. back: {
  15477. height: math.unit(6, "feet"),
  15478. weight: math.unit(120, "lb"),
  15479. name: "Back",
  15480. image: {
  15481. source: "./media/characters/vance/back.svg",
  15482. extra: 2081 / 1994,
  15483. bottom: 0.014
  15484. }
  15485. },
  15486. hand: {
  15487. height: math.unit(0.88, "feet"),
  15488. name: "Hand",
  15489. image: {
  15490. source: "./media/characters/vance/hand.svg"
  15491. }
  15492. },
  15493. foot: {
  15494. height: math.unit(0.64, "feet"),
  15495. name: "Foot",
  15496. image: {
  15497. source: "./media/characters/vance/foot.svg"
  15498. }
  15499. },
  15500. },
  15501. [
  15502. {
  15503. name: "Small",
  15504. height: math.unit(90, "feet"),
  15505. default: true
  15506. },
  15507. {
  15508. name: "Macro",
  15509. height: math.unit(100, "meters")
  15510. },
  15511. {
  15512. name: "Megamacro",
  15513. height: math.unit(15, "miles")
  15514. },
  15515. ]
  15516. ))
  15517. characterMakers.push(() => makeCharacter(
  15518. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15519. {
  15520. front: {
  15521. height: math.unit(6, "feet"),
  15522. weight: math.unit(180, "lb"),
  15523. name: "Front",
  15524. image: {
  15525. source: "./media/characters/xochitl/front.svg",
  15526. extra: 2297 / 2261,
  15527. bottom: 0.065
  15528. }
  15529. },
  15530. back: {
  15531. height: math.unit(6, "feet"),
  15532. weight: math.unit(180, "lb"),
  15533. name: "Back",
  15534. image: {
  15535. source: "./media/characters/xochitl/back.svg",
  15536. extra: 2386 / 2354,
  15537. bottom: 0.01
  15538. }
  15539. },
  15540. foot: {
  15541. height: math.unit(6 / 5 * 1.15, "feet"),
  15542. weight: math.unit(150, "lb"),
  15543. name: "Foot",
  15544. image: {
  15545. source: "./media/characters/xochitl/foot.svg"
  15546. }
  15547. },
  15548. },
  15549. [
  15550. {
  15551. name: "Macro",
  15552. height: math.unit(80, "feet")
  15553. },
  15554. {
  15555. name: "Macro+",
  15556. height: math.unit(400, "feet"),
  15557. default: true
  15558. },
  15559. {
  15560. name: "Gigamacro",
  15561. height: math.unit(80000, "miles")
  15562. },
  15563. {
  15564. name: "Gigamacro+",
  15565. height: math.unit(400000, "miles")
  15566. },
  15567. {
  15568. name: "Teramacro",
  15569. height: math.unit(300, "AU")
  15570. },
  15571. ]
  15572. ))
  15573. characterMakers.push(() => makeCharacter(
  15574. { name: "Vincent", species: ["egyptian-vulture"], 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/vincent/front.svg",
  15582. extra: 1130 / 1080,
  15583. bottom: 0.055
  15584. }
  15585. },
  15586. beak: {
  15587. height: math.unit(6 * 0.1, "feet"),
  15588. name: "Beak",
  15589. image: {
  15590. source: "./media/characters/vincent/beak.svg"
  15591. }
  15592. },
  15593. hand: {
  15594. height: math.unit(6 * 0.85, "feet"),
  15595. weight: math.unit(150, "lb"),
  15596. name: "Hand",
  15597. image: {
  15598. source: "./media/characters/vincent/hand.svg"
  15599. }
  15600. },
  15601. foot: {
  15602. height: math.unit(6 * 0.19, "feet"),
  15603. weight: math.unit(150, "lb"),
  15604. name: "Foot",
  15605. image: {
  15606. source: "./media/characters/vincent/foot.svg"
  15607. }
  15608. },
  15609. },
  15610. [
  15611. {
  15612. name: "Base",
  15613. height: math.unit(6 + 5 / 12, "feet"),
  15614. default: true
  15615. },
  15616. {
  15617. name: "Macro",
  15618. height: math.unit(300, "feet")
  15619. },
  15620. {
  15621. name: "Megamacro",
  15622. height: math.unit(2, "miles")
  15623. },
  15624. {
  15625. name: "Gigamacro",
  15626. height: math.unit(1000, "miles")
  15627. },
  15628. ]
  15629. ))
  15630. characterMakers.push(() => makeCharacter(
  15631. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15632. {
  15633. front: {
  15634. height: math.unit(2, "meters"),
  15635. weight: math.unit(500, "kg"),
  15636. name: "Front",
  15637. image: {
  15638. source: "./media/characters/coatl/front.svg",
  15639. extra: 3948 / 3500,
  15640. bottom: 0.082
  15641. }
  15642. },
  15643. },
  15644. [
  15645. {
  15646. name: "Normal",
  15647. height: math.unit(4, "meters")
  15648. },
  15649. {
  15650. name: "Macro",
  15651. height: math.unit(100, "meters"),
  15652. default: true
  15653. },
  15654. {
  15655. name: "Macro+",
  15656. height: math.unit(300, "meters")
  15657. },
  15658. {
  15659. name: "Megamacro",
  15660. height: math.unit(3, "gigameters")
  15661. },
  15662. {
  15663. name: "Megamacro+",
  15664. height: math.unit(300, "terameters")
  15665. },
  15666. {
  15667. name: "Megamacro++",
  15668. height: math.unit(3, "lightyears")
  15669. },
  15670. ]
  15671. ))
  15672. characterMakers.push(() => makeCharacter(
  15673. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15674. {
  15675. front: {
  15676. height: math.unit(6, "feet"),
  15677. weight: math.unit(50, "kg"),
  15678. name: "front",
  15679. image: {
  15680. source: "./media/characters/shiroryu/front.svg",
  15681. extra: 1990 / 1935
  15682. }
  15683. },
  15684. },
  15685. [
  15686. {
  15687. name: "Mortal Mingling",
  15688. height: math.unit(3, "meters")
  15689. },
  15690. {
  15691. name: "Kaiju-ish",
  15692. height: math.unit(250, "meters")
  15693. },
  15694. {
  15695. name: "Somewhat Godly",
  15696. height: math.unit(400, "km"),
  15697. default: true
  15698. },
  15699. {
  15700. name: "Planetary",
  15701. height: math.unit(300, "megameters")
  15702. },
  15703. {
  15704. name: "Galaxy-dwarfing",
  15705. height: math.unit(450, "kiloparsecs")
  15706. },
  15707. {
  15708. name: "Universe Eater",
  15709. height: math.unit(150, "gigaparsecs")
  15710. },
  15711. {
  15712. name: "Almost Immeasurable",
  15713. height: math.unit(1.3e266, "yottaparsecs")
  15714. },
  15715. ]
  15716. ))
  15717. characterMakers.push(() => makeCharacter(
  15718. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15719. {
  15720. front: {
  15721. height: math.unit(6, "feet"),
  15722. weight: math.unit(150, "lb"),
  15723. name: "Front",
  15724. image: {
  15725. source: "./media/characters/umeko/front.svg",
  15726. extra: 1,
  15727. bottom: 0.019
  15728. }
  15729. },
  15730. frontArmored: {
  15731. height: math.unit(6, "feet"),
  15732. weight: math.unit(150, "lb"),
  15733. name: "Front (Armored)",
  15734. image: {
  15735. source: "./media/characters/umeko/front-armored.svg",
  15736. extra: 1,
  15737. bottom: 0.021
  15738. }
  15739. },
  15740. },
  15741. [
  15742. {
  15743. name: "Macro",
  15744. height: math.unit(220, "feet"),
  15745. default: true
  15746. },
  15747. {
  15748. name: "Guardian Dragon",
  15749. height: math.unit(50, "miles")
  15750. },
  15751. {
  15752. name: "Cosmic",
  15753. height: math.unit(800000, "miles")
  15754. },
  15755. ]
  15756. ))
  15757. characterMakers.push(() => makeCharacter(
  15758. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15759. {
  15760. front: {
  15761. height: math.unit(6, "feet"),
  15762. weight: math.unit(150, "lb"),
  15763. name: "Front",
  15764. image: {
  15765. source: "./media/characters/cassidy/front.svg",
  15766. extra: 810/808,
  15767. bottom: 41/851
  15768. }
  15769. },
  15770. },
  15771. [
  15772. {
  15773. name: "Canon Height",
  15774. height: math.unit(120, "feet"),
  15775. default: true
  15776. },
  15777. {
  15778. name: "Macro+",
  15779. height: math.unit(400, "feet")
  15780. },
  15781. {
  15782. name: "Macro++",
  15783. height: math.unit(4000, "feet")
  15784. },
  15785. {
  15786. name: "Megamacro",
  15787. height: math.unit(3, "miles")
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15793. {
  15794. front: {
  15795. height: math.unit(6, "feet"),
  15796. weight: math.unit(150, "lb"),
  15797. name: "Front",
  15798. image: {
  15799. source: "./media/characters/isaac/front.svg",
  15800. extra: 896 / 815,
  15801. bottom: 0.11
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Human Size",
  15808. height: math.unit(8, "feet"),
  15809. default: true
  15810. },
  15811. {
  15812. name: "Macro",
  15813. height: math.unit(400, "feet")
  15814. },
  15815. {
  15816. name: "Megamacro",
  15817. height: math.unit(50, "miles")
  15818. },
  15819. {
  15820. name: "Canon Height",
  15821. height: math.unit(200, "AU")
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(6, "feet"),
  15830. weight: math.unit(72, "kg"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/sleekit/front.svg",
  15834. extra: 4693 / 4487,
  15835. bottom: 0.012
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Minimum Height",
  15842. height: math.unit(10, "meters")
  15843. },
  15844. {
  15845. name: "Smaller",
  15846. height: math.unit(25, "meters")
  15847. },
  15848. {
  15849. name: "Larger",
  15850. height: math.unit(38, "meters"),
  15851. default: true
  15852. },
  15853. {
  15854. name: "Maximum height",
  15855. height: math.unit(100, "meters")
  15856. },
  15857. ]
  15858. ))
  15859. characterMakers.push(() => makeCharacter(
  15860. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15861. {
  15862. front: {
  15863. height: math.unit(6, "feet"),
  15864. weight: math.unit(150, "lb"),
  15865. name: "Front",
  15866. image: {
  15867. source: "./media/characters/nillia/front.svg",
  15868. extra: 719/665,
  15869. bottom: 6/725
  15870. }
  15871. },
  15872. back: {
  15873. height: math.unit(6, "feet"),
  15874. weight: math.unit(150, "lb"),
  15875. name: "Back",
  15876. image: {
  15877. source: "./media/characters/nillia/back.svg",
  15878. extra: 705/651,
  15879. bottom: 5/710
  15880. }
  15881. },
  15882. },
  15883. [
  15884. {
  15885. name: "Canon Height",
  15886. height: math.unit(489, "feet"),
  15887. default: true
  15888. }
  15889. ]
  15890. ))
  15891. characterMakers.push(() => makeCharacter(
  15892. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15893. {
  15894. front: {
  15895. height: math.unit(6, "feet"),
  15896. weight: math.unit(150, "lb"),
  15897. name: "Front",
  15898. image: {
  15899. source: "./media/characters/mesmyriza/front.svg",
  15900. extra: 1541/1291,
  15901. bottom: 87/1628
  15902. }
  15903. },
  15904. foot: {
  15905. height: math.unit(6 / (250 / 35), "feet"),
  15906. name: "Foot",
  15907. image: {
  15908. source: "./media/characters/mesmyriza/foot.svg"
  15909. }
  15910. },
  15911. },
  15912. [
  15913. {
  15914. name: "Macro",
  15915. height: math.unit(457, "meters"),
  15916. default: true
  15917. },
  15918. {
  15919. name: "Megamacro",
  15920. height: math.unit(8, "megameters")
  15921. },
  15922. ]
  15923. ))
  15924. characterMakers.push(() => makeCharacter(
  15925. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15926. {
  15927. front: {
  15928. height: math.unit(6, "feet"),
  15929. weight: math.unit(250, "lb"),
  15930. name: "Front",
  15931. image: {
  15932. source: "./media/characters/saudade/front.svg",
  15933. extra: 1172 / 1139,
  15934. bottom: 0.035
  15935. }
  15936. },
  15937. },
  15938. [
  15939. {
  15940. name: "Micro",
  15941. height: math.unit(3, "inches")
  15942. },
  15943. {
  15944. name: "Normal",
  15945. height: math.unit(6, "feet"),
  15946. default: true
  15947. },
  15948. {
  15949. name: "Macro",
  15950. height: math.unit(50, "feet")
  15951. },
  15952. {
  15953. name: "Megamacro",
  15954. height: math.unit(2800, "feet")
  15955. },
  15956. ]
  15957. ))
  15958. characterMakers.push(() => makeCharacter(
  15959. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15960. {
  15961. front: {
  15962. height: math.unit(5 + 4 / 12, "feet"),
  15963. weight: math.unit(100, "lb"),
  15964. name: "Front",
  15965. image: {
  15966. source: "./media/characters/keireer/front.svg",
  15967. extra: 716 / 666,
  15968. bottom: 0.05
  15969. }
  15970. },
  15971. },
  15972. [
  15973. {
  15974. name: "Normal",
  15975. height: math.unit(5 + 4 / 12, "feet"),
  15976. default: true
  15977. },
  15978. ]
  15979. ))
  15980. characterMakers.push(() => makeCharacter(
  15981. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15982. {
  15983. front: {
  15984. height: math.unit(5.5, "feet"),
  15985. weight: math.unit(90, "kg"),
  15986. name: "Front",
  15987. image: {
  15988. source: "./media/characters/mirja/front.svg",
  15989. extra: 1452/1262,
  15990. bottom: 67/1519
  15991. }
  15992. },
  15993. frontDressed: {
  15994. height: math.unit(5.5, "feet"),
  15995. weight: math.unit(90, "lb"),
  15996. name: "Front (Dressed)",
  15997. image: {
  15998. source: "./media/characters/mirja/dressed.svg",
  15999. extra: 1452/1262,
  16000. bottom: 67/1519
  16001. }
  16002. },
  16003. back: {
  16004. height: math.unit(6, "feet"),
  16005. weight: math.unit(90, "lb"),
  16006. name: "Back",
  16007. image: {
  16008. source: "./media/characters/mirja/back.svg",
  16009. extra: 1892/1795,
  16010. bottom: 48/1940
  16011. }
  16012. },
  16013. maw: {
  16014. height: math.unit(1.312, "feet"),
  16015. name: "Maw",
  16016. image: {
  16017. source: "./media/characters/mirja/maw.svg"
  16018. }
  16019. },
  16020. paw: {
  16021. height: math.unit(1.15, "feet"),
  16022. name: "Paw",
  16023. image: {
  16024. source: "./media/characters/mirja/paw.svg"
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "\"Incognito\"",
  16031. height: math.unit(3, "meters")
  16032. },
  16033. {
  16034. name: "Strolling Size",
  16035. height: math.unit(15, "km")
  16036. },
  16037. {
  16038. name: "Larger Strolling Size",
  16039. height: math.unit(400, "km")
  16040. },
  16041. {
  16042. name: "Preferred Size",
  16043. height: math.unit(5000, "km"),
  16044. default: true
  16045. },
  16046. {
  16047. name: "True Size",
  16048. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16054. {
  16055. front: {
  16056. height: math.unit(15, "feet"),
  16057. weight: math.unit(880, "kg"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/nightraver/front.svg",
  16061. extra: 2444 / 2160,
  16062. bottom: 0.027
  16063. }
  16064. },
  16065. back: {
  16066. height: math.unit(15, "feet"),
  16067. weight: math.unit(880, "kg"),
  16068. name: "Back",
  16069. image: {
  16070. source: "./media/characters/nightraver/back.svg",
  16071. extra: 2309 / 2180,
  16072. bottom: 0.005
  16073. }
  16074. },
  16075. sole: {
  16076. height: math.unit(2.878, "feet"),
  16077. name: "Sole",
  16078. image: {
  16079. source: "./media/characters/nightraver/sole.svg"
  16080. }
  16081. },
  16082. foot: {
  16083. height: math.unit(2.285, "feet"),
  16084. name: "Foot",
  16085. image: {
  16086. source: "./media/characters/nightraver/foot.svg"
  16087. }
  16088. },
  16089. maw: {
  16090. height: math.unit(2.67, "feet"),
  16091. name: "Maw",
  16092. image: {
  16093. source: "./media/characters/nightraver/maw.svg"
  16094. }
  16095. },
  16096. },
  16097. [
  16098. {
  16099. name: "Micro",
  16100. height: math.unit(1, "cm")
  16101. },
  16102. {
  16103. name: "Normal",
  16104. height: math.unit(15, "feet"),
  16105. default: true
  16106. },
  16107. {
  16108. name: "Macro",
  16109. height: math.unit(300, "feet")
  16110. },
  16111. {
  16112. name: "Megamacro",
  16113. height: math.unit(300, "miles")
  16114. },
  16115. {
  16116. name: "Gigamacro",
  16117. height: math.unit(10000, "miles")
  16118. },
  16119. ]
  16120. ))
  16121. characterMakers.push(() => makeCharacter(
  16122. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16123. {
  16124. side: {
  16125. height: math.unit(2, "inches"),
  16126. weight: math.unit(5, "grams"),
  16127. name: "Side",
  16128. image: {
  16129. source: "./media/characters/arc/side.svg"
  16130. }
  16131. },
  16132. },
  16133. [
  16134. {
  16135. name: "Micro",
  16136. height: math.unit(2, "inches"),
  16137. default: true
  16138. },
  16139. ]
  16140. ))
  16141. characterMakers.push(() => makeCharacter(
  16142. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16143. {
  16144. front: {
  16145. height: math.unit(1.1938, "meters"),
  16146. weight: math.unit(54, "kg"),
  16147. name: "Front",
  16148. image: {
  16149. source: "./media/characters/nebula-shahar/front.svg",
  16150. extra: 1642 / 1436,
  16151. bottom: 0.06
  16152. }
  16153. },
  16154. },
  16155. [
  16156. {
  16157. name: "Megamicro",
  16158. height: math.unit(0.3, "mm")
  16159. },
  16160. {
  16161. name: "Micro",
  16162. height: math.unit(3, "cm")
  16163. },
  16164. {
  16165. name: "Normal",
  16166. height: math.unit(138, "cm"),
  16167. default: true
  16168. },
  16169. {
  16170. name: "Macro",
  16171. height: math.unit(30, "m")
  16172. },
  16173. ]
  16174. ))
  16175. characterMakers.push(() => makeCharacter(
  16176. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16177. {
  16178. front: {
  16179. height: math.unit(5.24, "feet"),
  16180. weight: math.unit(150, "lb"),
  16181. name: "Front",
  16182. image: {
  16183. source: "./media/characters/shayla/front.svg",
  16184. extra: 1512 / 1414,
  16185. bottom: 0.01
  16186. }
  16187. },
  16188. back: {
  16189. height: math.unit(5.24, "feet"),
  16190. weight: math.unit(150, "lb"),
  16191. name: "Back",
  16192. image: {
  16193. source: "./media/characters/shayla/back.svg",
  16194. extra: 1512 / 1414
  16195. }
  16196. },
  16197. hand: {
  16198. height: math.unit(0.7781496062992126, "feet"),
  16199. name: "Hand",
  16200. image: {
  16201. source: "./media/characters/shayla/hand.svg"
  16202. }
  16203. },
  16204. foot: {
  16205. height: math.unit(1.4206036745406823, "feet"),
  16206. name: "Foot",
  16207. image: {
  16208. source: "./media/characters/shayla/foot.svg"
  16209. }
  16210. },
  16211. },
  16212. [
  16213. {
  16214. name: "Micro",
  16215. height: math.unit(0.32, "feet")
  16216. },
  16217. {
  16218. name: "Normal",
  16219. height: math.unit(5.24, "feet"),
  16220. default: true
  16221. },
  16222. {
  16223. name: "Macro",
  16224. height: math.unit(492.12, "feet")
  16225. },
  16226. {
  16227. name: "Megamacro",
  16228. height: math.unit(186.41, "miles")
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(2.2, "m"),
  16237. weight: math.unit(120, "kg"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/pia-jr/front.svg",
  16241. extra: 1000 / 970,
  16242. bottom: 0.035
  16243. }
  16244. },
  16245. hand: {
  16246. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16247. name: "Hand",
  16248. image: {
  16249. source: "./media/characters/pia-jr/hand.svg"
  16250. }
  16251. },
  16252. paw: {
  16253. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16254. name: "Paw",
  16255. image: {
  16256. source: "./media/characters/pia-jr/paw.svg"
  16257. }
  16258. },
  16259. },
  16260. [
  16261. {
  16262. name: "Micro",
  16263. height: math.unit(1.2, "cm")
  16264. },
  16265. {
  16266. name: "Normal",
  16267. height: math.unit(2.2, "m"),
  16268. default: true
  16269. },
  16270. {
  16271. name: "Macro",
  16272. height: math.unit(180, "m")
  16273. },
  16274. {
  16275. name: "Megamacro",
  16276. height: math.unit(420, "km")
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16282. {
  16283. front: {
  16284. height: math.unit(2, "m"),
  16285. weight: math.unit(115, "kg"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/pia-sr/front.svg",
  16289. extra: 760 / 730,
  16290. bottom: 0.015
  16291. }
  16292. },
  16293. back: {
  16294. height: math.unit(2, "m"),
  16295. weight: math.unit(115, "kg"),
  16296. name: "Back",
  16297. image: {
  16298. source: "./media/characters/pia-sr/back.svg",
  16299. extra: 760 / 730,
  16300. bottom: 0.01
  16301. }
  16302. },
  16303. hand: {
  16304. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16305. name: "Hand",
  16306. image: {
  16307. source: "./media/characters/pia-sr/hand.svg"
  16308. }
  16309. },
  16310. foot: {
  16311. height: math.unit(1.83, "feet"),
  16312. name: "Foot",
  16313. image: {
  16314. source: "./media/characters/pia-sr/foot.svg"
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Micro",
  16321. height: math.unit(88, "mm")
  16322. },
  16323. {
  16324. name: "Normal",
  16325. height: math.unit(2, "m"),
  16326. default: true
  16327. },
  16328. {
  16329. name: "Macro",
  16330. height: math.unit(200, "m")
  16331. },
  16332. {
  16333. name: "Megamacro",
  16334. height: math.unit(420, "km")
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(8 + 2 / 12, "feet"),
  16343. weight: math.unit(300, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/kibibyte/front.svg",
  16347. extra: 2221 / 2098,
  16348. bottom: 0.04
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(8 + 2 / 12, "feet"),
  16356. default: true
  16357. },
  16358. {
  16359. name: "Socialable Macro",
  16360. height: math.unit(50, "feet")
  16361. },
  16362. {
  16363. name: "Macro",
  16364. height: math.unit(300, "feet")
  16365. },
  16366. {
  16367. name: "Megamacro",
  16368. height: math.unit(500, "miles")
  16369. },
  16370. ]
  16371. ))
  16372. characterMakers.push(() => makeCharacter(
  16373. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16374. {
  16375. front: {
  16376. height: math.unit(6, "feet"),
  16377. weight: math.unit(150, "lb"),
  16378. name: "Front",
  16379. image: {
  16380. source: "./media/characters/felix/front.svg",
  16381. extra: 762 / 722,
  16382. bottom: 0.02
  16383. }
  16384. },
  16385. frontClothed: {
  16386. height: math.unit(6, "feet"),
  16387. weight: math.unit(150, "lb"),
  16388. name: "Front (Clothed)",
  16389. image: {
  16390. source: "./media/characters/felix/front-clothed.svg",
  16391. extra: 762 / 722,
  16392. bottom: 0.02
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(6 + 8 / 12, "feet"),
  16400. default: true
  16401. },
  16402. {
  16403. name: "Macro",
  16404. height: math.unit(2600, "feet")
  16405. },
  16406. {
  16407. name: "Megamacro",
  16408. height: math.unit(450, "miles")
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16414. {
  16415. front: {
  16416. height: math.unit(6 + 1 / 12, "feet"),
  16417. weight: math.unit(250, "lb"),
  16418. name: "Front",
  16419. image: {
  16420. source: "./media/characters/tobo/front.svg",
  16421. extra: 608 / 586,
  16422. bottom: 0.023
  16423. }
  16424. },
  16425. back: {
  16426. height: math.unit(6 + 1 / 12, "feet"),
  16427. weight: math.unit(250, "lb"),
  16428. name: "Back",
  16429. image: {
  16430. source: "./media/characters/tobo/back.svg",
  16431. extra: 608 / 586
  16432. }
  16433. },
  16434. },
  16435. [
  16436. {
  16437. name: "Nano",
  16438. height: math.unit(2, "nm")
  16439. },
  16440. {
  16441. name: "Megamicro",
  16442. height: math.unit(0.1, "mm")
  16443. },
  16444. {
  16445. name: "Micro",
  16446. height: math.unit(1, "inch"),
  16447. default: true
  16448. },
  16449. {
  16450. name: "Human-sized",
  16451. height: math.unit(6 + 1 / 12, "feet")
  16452. },
  16453. {
  16454. name: "Macro",
  16455. height: math.unit(250, "feet")
  16456. },
  16457. {
  16458. name: "Megamacro",
  16459. height: math.unit(75, "miles")
  16460. },
  16461. {
  16462. name: "Texas-sized",
  16463. height: math.unit(750, "miles")
  16464. },
  16465. {
  16466. name: "Teramacro",
  16467. height: math.unit(50000, "miles")
  16468. },
  16469. ]
  16470. ))
  16471. characterMakers.push(() => makeCharacter(
  16472. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16473. {
  16474. front: {
  16475. height: math.unit(6, "feet"),
  16476. weight: math.unit(269, "lb"),
  16477. name: "Front",
  16478. image: {
  16479. source: "./media/characters/danny-kapowsky/front.svg",
  16480. extra: 766 / 736,
  16481. bottom: 0.044
  16482. }
  16483. },
  16484. back: {
  16485. height: math.unit(6, "feet"),
  16486. weight: math.unit(269, "lb"),
  16487. name: "Back",
  16488. image: {
  16489. source: "./media/characters/danny-kapowsky/back.svg",
  16490. extra: 797 / 760,
  16491. bottom: 0.025
  16492. }
  16493. },
  16494. },
  16495. [
  16496. {
  16497. name: "Macro",
  16498. height: math.unit(150, "feet"),
  16499. default: true
  16500. },
  16501. {
  16502. name: "Macro+",
  16503. height: math.unit(200, "feet")
  16504. },
  16505. {
  16506. name: "Macro++",
  16507. height: math.unit(300, "feet")
  16508. },
  16509. {
  16510. name: "Macro+++",
  16511. height: math.unit(400, "feet")
  16512. },
  16513. ]
  16514. ))
  16515. characterMakers.push(() => makeCharacter(
  16516. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16517. {
  16518. side: {
  16519. height: math.unit(6, "feet"),
  16520. weight: math.unit(170, "lb"),
  16521. name: "Side",
  16522. image: {
  16523. source: "./media/characters/finn/side.svg",
  16524. extra: 1953 / 1807,
  16525. bottom: 0.057
  16526. }
  16527. },
  16528. },
  16529. [
  16530. {
  16531. name: "Megamacro",
  16532. height: math.unit(14445, "feet"),
  16533. default: true
  16534. },
  16535. ]
  16536. ))
  16537. characterMakers.push(() => makeCharacter(
  16538. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16539. {
  16540. front: {
  16541. height: math.unit(5 + 6 / 12, "feet"),
  16542. weight: math.unit(125, "lb"),
  16543. name: "Front",
  16544. image: {
  16545. source: "./media/characters/roy/front.svg",
  16546. extra: 1,
  16547. bottom: 0.11
  16548. }
  16549. },
  16550. },
  16551. [
  16552. {
  16553. name: "Micro",
  16554. height: math.unit(3, "inches"),
  16555. default: true
  16556. },
  16557. {
  16558. name: "Normal",
  16559. height: math.unit(5 + 6 / 12, "feet")
  16560. },
  16561. {
  16562. name: "Lesser Macro",
  16563. height: math.unit(60, "feet")
  16564. },
  16565. {
  16566. name: "Greater Macro",
  16567. height: math.unit(120, "feet")
  16568. },
  16569. ]
  16570. ))
  16571. characterMakers.push(() => makeCharacter(
  16572. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16573. {
  16574. front: {
  16575. height: math.unit(6, "feet"),
  16576. weight: math.unit(100, "lb"),
  16577. name: "Front",
  16578. image: {
  16579. source: "./media/characters/aevsivs/front.svg",
  16580. extra: 1,
  16581. bottom: 0.03
  16582. }
  16583. },
  16584. back: {
  16585. height: math.unit(6, "feet"),
  16586. weight: math.unit(100, "lb"),
  16587. name: "Back",
  16588. image: {
  16589. source: "./media/characters/aevsivs/back.svg"
  16590. }
  16591. },
  16592. },
  16593. [
  16594. {
  16595. name: "Micro",
  16596. height: math.unit(2, "inches"),
  16597. default: true
  16598. },
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(5, "feet")
  16602. },
  16603. ]
  16604. ))
  16605. characterMakers.push(() => makeCharacter(
  16606. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16607. {
  16608. front: {
  16609. height: math.unit(5 + 7 / 12, "feet"),
  16610. weight: math.unit(159, "lb"),
  16611. name: "Front",
  16612. image: {
  16613. source: "./media/characters/hildegard/front.svg",
  16614. extra: 289 / 269,
  16615. bottom: 7.63 / 297.8
  16616. }
  16617. },
  16618. back: {
  16619. height: math.unit(5 + 7 / 12, "feet"),
  16620. weight: math.unit(159, "lb"),
  16621. name: "Back",
  16622. image: {
  16623. source: "./media/characters/hildegard/back.svg",
  16624. extra: 280 / 260,
  16625. bottom: 2.3 / 282
  16626. }
  16627. },
  16628. },
  16629. [
  16630. {
  16631. name: "Normal",
  16632. height: math.unit(5 + 7 / 12, "feet"),
  16633. default: true
  16634. },
  16635. ]
  16636. ))
  16637. characterMakers.push(() => makeCharacter(
  16638. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16639. {
  16640. bernard: {
  16641. height: math.unit(2 + 7 / 12, "feet"),
  16642. weight: math.unit(66, "lb"),
  16643. name: "Bernard",
  16644. rename: true,
  16645. image: {
  16646. source: "./media/characters/bernard-wilder/bernard.svg",
  16647. extra: 192 / 128,
  16648. bottom: 0.05
  16649. }
  16650. },
  16651. wilder: {
  16652. height: math.unit(5 + 8 / 12, "feet"),
  16653. weight: math.unit(143, "lb"),
  16654. name: "Wilder",
  16655. rename: true,
  16656. image: {
  16657. source: "./media/characters/bernard-wilder/wilder.svg",
  16658. extra: 361 / 312,
  16659. bottom: 0.02
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(2 + 7 / 12, "feet"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16673. {
  16674. anthro: {
  16675. height: math.unit(6 + 1 / 12, "feet"),
  16676. weight: math.unit(155, "lb"),
  16677. name: "Anthro",
  16678. image: {
  16679. source: "./media/characters/hearth/anthro.svg",
  16680. extra: 1178/1136,
  16681. bottom: 28/1206
  16682. }
  16683. },
  16684. feral: {
  16685. height: math.unit(3.78, "feet"),
  16686. weight: math.unit(35, "kg"),
  16687. name: "Feral",
  16688. image: {
  16689. source: "./media/characters/hearth/feral.svg",
  16690. extra: 153 / 135,
  16691. bottom: 0.03
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(6 + 1 / 12, "feet"),
  16699. default: true
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16705. {
  16706. front: {
  16707. height: math.unit(6, "feet"),
  16708. weight: math.unit(182, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/ingrid/front.svg",
  16712. extra: 294 / 268,
  16713. bottom: 0.027
  16714. }
  16715. },
  16716. },
  16717. [
  16718. {
  16719. name: "Normal",
  16720. height: math.unit(6, "feet"),
  16721. default: true
  16722. },
  16723. ]
  16724. ))
  16725. characterMakers.push(() => makeCharacter(
  16726. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16727. {
  16728. eevee: {
  16729. height: math.unit(2 + 10 / 12, "feet"),
  16730. weight: math.unit(86, "lb"),
  16731. name: "Malgam",
  16732. image: {
  16733. source: "./media/characters/malgam/eevee.svg",
  16734. extra: 952/784,
  16735. bottom: 38/990
  16736. }
  16737. },
  16738. sylveon: {
  16739. height: math.unit(4, "feet"),
  16740. weight: math.unit(101, "lb"),
  16741. name: "Future Malgam",
  16742. rename: true,
  16743. image: {
  16744. source: "./media/characters/malgam/sylveon.svg",
  16745. extra: 371 / 325,
  16746. bottom: 0.015
  16747. }
  16748. },
  16749. gigantamax: {
  16750. height: math.unit(50, "feet"),
  16751. name: "Gigantamax Malgam",
  16752. rename: true,
  16753. image: {
  16754. source: "./media/characters/malgam/gigantamax.svg"
  16755. }
  16756. },
  16757. },
  16758. [
  16759. {
  16760. name: "Normal",
  16761. height: math.unit(2 + 10 / 12, "feet"),
  16762. default: true
  16763. },
  16764. ]
  16765. ))
  16766. characterMakers.push(() => makeCharacter(
  16767. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16768. {
  16769. front: {
  16770. height: math.unit(5 + 11 / 12, "feet"),
  16771. weight: math.unit(188, "lb"),
  16772. name: "Front",
  16773. image: {
  16774. source: "./media/characters/fleur/front.svg",
  16775. extra: 309 / 283,
  16776. bottom: 0.007
  16777. }
  16778. },
  16779. },
  16780. [
  16781. {
  16782. name: "Normal",
  16783. height: math.unit(5 + 11 / 12, "feet"),
  16784. default: true
  16785. },
  16786. ]
  16787. ))
  16788. characterMakers.push(() => makeCharacter(
  16789. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16790. {
  16791. front: {
  16792. height: math.unit(5 + 4 / 12, "feet"),
  16793. weight: math.unit(122, "lb"),
  16794. name: "Front",
  16795. image: {
  16796. source: "./media/characters/jude/front.svg",
  16797. extra: 288 / 273,
  16798. bottom: 0.03
  16799. }
  16800. },
  16801. },
  16802. [
  16803. {
  16804. name: "Normal",
  16805. height: math.unit(5 + 4 / 12, "feet"),
  16806. default: true
  16807. },
  16808. ]
  16809. ))
  16810. characterMakers.push(() => makeCharacter(
  16811. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16812. {
  16813. front: {
  16814. height: math.unit(5 + 11 / 12, "feet"),
  16815. weight: math.unit(190, "lb"),
  16816. name: "Front",
  16817. image: {
  16818. source: "./media/characters/seara/front.svg",
  16819. extra: 1,
  16820. bottom: 0.05
  16821. }
  16822. },
  16823. },
  16824. [
  16825. {
  16826. name: "Normal",
  16827. height: math.unit(5 + 11 / 12, "feet"),
  16828. default: true
  16829. },
  16830. ]
  16831. ))
  16832. characterMakers.push(() => makeCharacter(
  16833. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16834. {
  16835. front: {
  16836. height: math.unit(16 + 5 / 12, "feet"),
  16837. weight: math.unit(524, "lb"),
  16838. name: "Front",
  16839. image: {
  16840. source: "./media/characters/caspian-lugia/front.svg",
  16841. extra: 1,
  16842. bottom: 0.04
  16843. }
  16844. },
  16845. },
  16846. [
  16847. {
  16848. name: "Normal",
  16849. height: math.unit(16 + 5 / 12, "feet"),
  16850. default: true
  16851. },
  16852. ]
  16853. ))
  16854. characterMakers.push(() => makeCharacter(
  16855. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16856. {
  16857. front: {
  16858. height: math.unit(5 + 7 / 12, "feet"),
  16859. weight: math.unit(170, "lb"),
  16860. name: "Front",
  16861. image: {
  16862. source: "./media/characters/mika/front.svg",
  16863. extra: 1,
  16864. bottom: 0.016
  16865. }
  16866. },
  16867. },
  16868. [
  16869. {
  16870. name: "Normal",
  16871. height: math.unit(5 + 7 / 12, "feet"),
  16872. default: true
  16873. },
  16874. ]
  16875. ))
  16876. characterMakers.push(() => makeCharacter(
  16877. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16878. {
  16879. front: {
  16880. height: math.unit(6 + 2 / 12, "feet"),
  16881. weight: math.unit(268, "lb"),
  16882. name: "Front",
  16883. image: {
  16884. source: "./media/characters/sol/front.svg",
  16885. extra: 247 / 231,
  16886. bottom: 0.05
  16887. }
  16888. },
  16889. },
  16890. [
  16891. {
  16892. name: "Normal",
  16893. height: math.unit(6 + 2 / 12, "feet"),
  16894. default: true
  16895. },
  16896. ]
  16897. ))
  16898. characterMakers.push(() => makeCharacter(
  16899. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16900. {
  16901. buizel: {
  16902. height: math.unit(2 + 5 / 12, "feet"),
  16903. weight: math.unit(87, "lb"),
  16904. name: "Front",
  16905. image: {
  16906. source: "./media/characters/umiko/buizel.svg",
  16907. extra: 172 / 157,
  16908. bottom: 0.01
  16909. },
  16910. form: "buizel",
  16911. default: true
  16912. },
  16913. floatzel: {
  16914. height: math.unit(5 + 9 / 12, "feet"),
  16915. weight: math.unit(250, "lb"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/umiko/floatzel.svg",
  16919. extra: 1076/1006,
  16920. bottom: 15/1091
  16921. },
  16922. form: "floatzel",
  16923. default: true
  16924. },
  16925. },
  16926. [
  16927. {
  16928. name: "Normal",
  16929. height: math.unit(2 + 5 / 12, "feet"),
  16930. form: "buizel",
  16931. default: true
  16932. },
  16933. {
  16934. name: "Normal",
  16935. height: math.unit(5 + 9 / 12, "feet"),
  16936. form: "floatzel",
  16937. default: true
  16938. },
  16939. ],
  16940. {
  16941. "buizel": {
  16942. name: "Buizel"
  16943. },
  16944. "floatzel": {
  16945. name: "Floatzel",
  16946. default: true
  16947. }
  16948. }
  16949. ))
  16950. characterMakers.push(() => makeCharacter(
  16951. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16952. {
  16953. front: {
  16954. height: math.unit(6 + 2 / 12, "feet"),
  16955. weight: math.unit(146, "lb"),
  16956. name: "Front",
  16957. image: {
  16958. source: "./media/characters/iliac/front.svg",
  16959. extra: 389 / 365,
  16960. bottom: 0.035
  16961. }
  16962. },
  16963. },
  16964. [
  16965. {
  16966. name: "Normal",
  16967. height: math.unit(6 + 2 / 12, "feet"),
  16968. default: true
  16969. },
  16970. ]
  16971. ))
  16972. characterMakers.push(() => makeCharacter(
  16973. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16974. {
  16975. front: {
  16976. height: math.unit(6, "feet"),
  16977. weight: math.unit(170, "lb"),
  16978. name: "Front",
  16979. image: {
  16980. source: "./media/characters/topaz/front.svg",
  16981. extra: 317 / 303,
  16982. bottom: 0.055
  16983. }
  16984. },
  16985. },
  16986. [
  16987. {
  16988. name: "Normal",
  16989. height: math.unit(6, "feet"),
  16990. default: true
  16991. },
  16992. ]
  16993. ))
  16994. characterMakers.push(() => makeCharacter(
  16995. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  16996. {
  16997. front: {
  16998. height: math.unit(5 + 11 / 12, "feet"),
  16999. weight: math.unit(144, "lb"),
  17000. name: "Front",
  17001. image: {
  17002. source: "./media/characters/gabriel/front.svg",
  17003. extra: 285 / 262,
  17004. bottom: 0.004
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(5 + 11 / 12, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17018. {
  17019. side: {
  17020. height: math.unit(6 + 5 / 12, "feet"),
  17021. weight: math.unit(300, "lb"),
  17022. name: "Side",
  17023. image: {
  17024. source: "./media/characters/tempest-suicune/side.svg",
  17025. extra: 195 / 154,
  17026. bottom: 0.04
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Normal",
  17033. height: math.unit(6 + 5 / 12, "feet"),
  17034. default: true
  17035. },
  17036. ]
  17037. ))
  17038. characterMakers.push(() => makeCharacter(
  17039. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17040. {
  17041. front: {
  17042. height: math.unit(7 + 2 / 12, "feet"),
  17043. weight: math.unit(322, "lb"),
  17044. name: "Front",
  17045. image: {
  17046. source: "./media/characters/vulcan/front.svg",
  17047. extra: 154 / 147,
  17048. bottom: 0.04
  17049. }
  17050. },
  17051. },
  17052. [
  17053. {
  17054. name: "Normal",
  17055. height: math.unit(7 + 2 / 12, "feet"),
  17056. default: true
  17057. },
  17058. ]
  17059. ))
  17060. characterMakers.push(() => makeCharacter(
  17061. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17062. {
  17063. front: {
  17064. height: math.unit(5 + 10 / 12, "feet"),
  17065. weight: math.unit(264, "lb"),
  17066. name: "Front",
  17067. image: {
  17068. source: "./media/characters/gault/front.svg",
  17069. extra: 161 / 140,
  17070. bottom: 0.028
  17071. }
  17072. },
  17073. },
  17074. [
  17075. {
  17076. name: "Normal",
  17077. height: math.unit(5 + 10 / 12, "feet"),
  17078. default: true
  17079. },
  17080. ]
  17081. ))
  17082. characterMakers.push(() => makeCharacter(
  17083. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17084. {
  17085. front: {
  17086. height: math.unit(6, "feet"),
  17087. weight: math.unit(150, "lb"),
  17088. name: "Front",
  17089. image: {
  17090. source: "./media/characters/shard/front.svg",
  17091. extra: 273 / 238,
  17092. bottom: 0.02
  17093. }
  17094. },
  17095. },
  17096. [
  17097. {
  17098. name: "Normal",
  17099. height: math.unit(3 + 6 / 12, "feet"),
  17100. default: true
  17101. },
  17102. ]
  17103. ))
  17104. characterMakers.push(() => makeCharacter(
  17105. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17106. {
  17107. front: {
  17108. height: math.unit(5 + 11 / 12, "feet"),
  17109. weight: math.unit(146, "lb"),
  17110. name: "Front",
  17111. image: {
  17112. source: "./media/characters/ashe/front.svg",
  17113. extra: 400 / 373,
  17114. bottom: 0.01
  17115. }
  17116. },
  17117. },
  17118. [
  17119. {
  17120. name: "Normal",
  17121. height: math.unit(5 + 11 / 12, "feet"),
  17122. default: true
  17123. },
  17124. ]
  17125. ))
  17126. characterMakers.push(() => makeCharacter(
  17127. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17128. {
  17129. front: {
  17130. height: math.unit(5 + 5 / 12, "feet"),
  17131. weight: math.unit(135, "lb"),
  17132. name: "Front",
  17133. image: {
  17134. source: "./media/characters/beatrix/front.svg",
  17135. extra: 392 / 379,
  17136. bottom: 0.01
  17137. }
  17138. },
  17139. },
  17140. [
  17141. {
  17142. name: "Normal",
  17143. height: math.unit(6, "feet"),
  17144. default: true
  17145. },
  17146. ]
  17147. ))
  17148. characterMakers.push(() => makeCharacter(
  17149. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17150. {
  17151. front: {
  17152. height: math.unit(6 + 2/12, "feet"),
  17153. weight: math.unit(135, "lb"),
  17154. name: "Front",
  17155. image: {
  17156. source: "./media/characters/ignatius/front.svg",
  17157. extra: 1380/1259,
  17158. bottom: 27/1407
  17159. }
  17160. },
  17161. },
  17162. [
  17163. {
  17164. name: "Normal",
  17165. height: math.unit(6 + 2/12, "feet"),
  17166. default: true
  17167. },
  17168. ]
  17169. ))
  17170. characterMakers.push(() => makeCharacter(
  17171. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17172. {
  17173. front: {
  17174. height: math.unit(6 + 2 / 12, "feet"),
  17175. weight: math.unit(138, "lb"),
  17176. name: "Front",
  17177. image: {
  17178. source: "./media/characters/mei-li/front.svg",
  17179. extra: 237 / 229,
  17180. bottom: 0.03
  17181. }
  17182. },
  17183. },
  17184. [
  17185. {
  17186. name: "Normal",
  17187. height: math.unit(6 + 2 / 12, "feet"),
  17188. default: true
  17189. },
  17190. ]
  17191. ))
  17192. characterMakers.push(() => makeCharacter(
  17193. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17194. {
  17195. front: {
  17196. height: math.unit(2 + 4 / 12, "feet"),
  17197. weight: math.unit(62, "lb"),
  17198. name: "Front",
  17199. image: {
  17200. source: "./media/characters/puru/front.svg",
  17201. extra: 206 / 149,
  17202. bottom: 0.06
  17203. }
  17204. },
  17205. },
  17206. [
  17207. {
  17208. name: "Normal",
  17209. height: math.unit(2 + 4 / 12, "feet"),
  17210. default: true
  17211. },
  17212. ]
  17213. ))
  17214. characterMakers.push(() => makeCharacter(
  17215. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17216. {
  17217. anthro: {
  17218. height: math.unit(5 + 8/12, "feet"),
  17219. weight: math.unit(200, "lb"),
  17220. energyNeed: math.unit(2000, "kcal"),
  17221. name: "Anthro",
  17222. image: {
  17223. source: "./media/characters/kee/anthro.svg",
  17224. extra: 3251/3184,
  17225. bottom: 250/3501
  17226. }
  17227. },
  17228. taur: {
  17229. height: math.unit(11, "feet"),
  17230. weight: math.unit(500, "lb"),
  17231. energyNeed: math.unit(5000, "kcal"),
  17232. name: "Taur",
  17233. image: {
  17234. source: "./media/characters/kee/taur.svg",
  17235. extra: 1362/1320,
  17236. bottom: 83/1445
  17237. }
  17238. },
  17239. },
  17240. [
  17241. {
  17242. name: "Normal",
  17243. height: math.unit(5 + 8/12, "feet"),
  17244. default: true
  17245. },
  17246. {
  17247. name: "Macro",
  17248. height: math.unit(35, "feet")
  17249. },
  17250. ]
  17251. ))
  17252. characterMakers.push(() => makeCharacter(
  17253. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17254. {
  17255. anthro: {
  17256. height: math.unit(7, "feet"),
  17257. weight: math.unit(190, "lb"),
  17258. name: "Anthro",
  17259. image: {
  17260. source: "./media/characters/cobalt-dracha/anthro.svg",
  17261. extra: 231 / 225,
  17262. bottom: 0.04
  17263. }
  17264. },
  17265. feral: {
  17266. height: math.unit(9 + 7 / 12, "feet"),
  17267. weight: math.unit(294, "lb"),
  17268. name: "Feral",
  17269. image: {
  17270. source: "./media/characters/cobalt-dracha/feral.svg",
  17271. extra: 692 / 633,
  17272. bottom: 0.05
  17273. }
  17274. },
  17275. },
  17276. [
  17277. {
  17278. name: "Normal",
  17279. height: math.unit(7, "feet"),
  17280. default: true
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17286. {
  17287. fallen: {
  17288. height: math.unit(11 + 8 / 12, "feet"),
  17289. weight: math.unit(485, "lb"),
  17290. name: "Java (Fallen)",
  17291. rename: true,
  17292. image: {
  17293. source: "./media/characters/java/fallen.svg",
  17294. extra: 226 / 208,
  17295. bottom: 0.005
  17296. }
  17297. },
  17298. godkin: {
  17299. height: math.unit(10 + 6 / 12, "feet"),
  17300. weight: math.unit(328, "lb"),
  17301. name: "Java (Godkin)",
  17302. rename: true,
  17303. image: {
  17304. source: "./media/characters/java/godkin.svg",
  17305. extra: 1104/1068,
  17306. bottom: 36/1140
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(11 + 8 / 12, "feet"),
  17314. default: true
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17320. {
  17321. front: {
  17322. height: math.unit(5 + 9 / 12, "feet"),
  17323. weight: math.unit(170, "lb"),
  17324. name: "Front",
  17325. image: {
  17326. source: "./media/characters/purna/front.svg",
  17327. extra: 239 / 229,
  17328. bottom: 0.01
  17329. }
  17330. },
  17331. },
  17332. [
  17333. {
  17334. name: "Normal",
  17335. height: math.unit(5 + 9 / 12, "feet"),
  17336. default: true
  17337. },
  17338. ]
  17339. ))
  17340. characterMakers.push(() => makeCharacter(
  17341. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17342. {
  17343. front: {
  17344. height: math.unit(5 + 9 / 12, "feet"),
  17345. weight: math.unit(142, "lb"),
  17346. name: "Front",
  17347. image: {
  17348. source: "./media/characters/kuva/front.svg",
  17349. extra: 281 / 271,
  17350. bottom: 0.006
  17351. }
  17352. },
  17353. },
  17354. [
  17355. {
  17356. name: "Normal",
  17357. height: math.unit(5 + 9 / 12, "feet"),
  17358. default: true
  17359. },
  17360. ]
  17361. ))
  17362. characterMakers.push(() => makeCharacter(
  17363. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17364. {
  17365. anthro: {
  17366. height: math.unit(9 + 2 / 12, "feet"),
  17367. weight: math.unit(270, "lb"),
  17368. name: "Anthro",
  17369. image: {
  17370. source: "./media/characters/embra/anthro.svg",
  17371. extra: 200 / 187,
  17372. bottom: 0.02
  17373. }
  17374. },
  17375. feral: {
  17376. height: math.unit(18 + 8 / 12, "feet"),
  17377. weight: math.unit(576, "lb"),
  17378. name: "Feral",
  17379. image: {
  17380. source: "./media/characters/embra/feral.svg",
  17381. extra: 152 / 137,
  17382. bottom: 0.037
  17383. }
  17384. },
  17385. },
  17386. [
  17387. {
  17388. name: "Normal",
  17389. height: math.unit(9 + 2 / 12, "feet"),
  17390. default: true
  17391. },
  17392. ]
  17393. ))
  17394. characterMakers.push(() => makeCharacter(
  17395. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17396. {
  17397. anthro: {
  17398. height: math.unit(10 + 9 / 12, "feet"),
  17399. weight: math.unit(224, "lb"),
  17400. name: "Anthro",
  17401. image: {
  17402. source: "./media/characters/grottos/anthro.svg",
  17403. extra: 350 / 332,
  17404. bottom: 0.045
  17405. }
  17406. },
  17407. feral: {
  17408. height: math.unit(20 + 7 / 12, "feet"),
  17409. weight: math.unit(629, "lb"),
  17410. name: "Feral",
  17411. image: {
  17412. source: "./media/characters/grottos/feral.svg",
  17413. extra: 207 / 190,
  17414. bottom: 0.05
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Normal",
  17421. height: math.unit(10 + 9 / 12, "feet"),
  17422. default: true
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17428. {
  17429. anthro: {
  17430. height: math.unit(9 + 6 / 12, "feet"),
  17431. weight: math.unit(298, "lb"),
  17432. name: "Anthro",
  17433. image: {
  17434. source: "./media/characters/frifna/anthro.svg",
  17435. extra: 282 / 269,
  17436. bottom: 0.015
  17437. }
  17438. },
  17439. feral: {
  17440. height: math.unit(16 + 2 / 12, "feet"),
  17441. weight: math.unit(624, "lb"),
  17442. name: "Feral",
  17443. image: {
  17444. source: "./media/characters/frifna/feral.svg"
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(9 + 6 / 12, "feet"),
  17452. default: true
  17453. },
  17454. ]
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17458. {
  17459. front: {
  17460. height: math.unit(6 + 2 / 12, "feet"),
  17461. weight: math.unit(168, "lb"),
  17462. name: "Front",
  17463. image: {
  17464. source: "./media/characters/elise/front.svg",
  17465. extra: 276 / 271
  17466. }
  17467. },
  17468. },
  17469. [
  17470. {
  17471. name: "Normal",
  17472. height: math.unit(6 + 2 / 12, "feet"),
  17473. default: true
  17474. },
  17475. ]
  17476. ))
  17477. characterMakers.push(() => makeCharacter(
  17478. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17479. {
  17480. front: {
  17481. height: math.unit(5 + 10 / 12, "feet"),
  17482. weight: math.unit(210, "lb"),
  17483. name: "Front",
  17484. image: {
  17485. source: "./media/characters/glade/front.svg",
  17486. extra: 258 / 247,
  17487. bottom: 0.008
  17488. }
  17489. },
  17490. },
  17491. [
  17492. {
  17493. name: "Normal",
  17494. height: math.unit(5 + 10 / 12, "feet"),
  17495. default: true
  17496. },
  17497. ]
  17498. ))
  17499. characterMakers.push(() => makeCharacter(
  17500. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17501. {
  17502. front: {
  17503. height: math.unit(5 + 10 / 12, "feet"),
  17504. weight: math.unit(129, "lb"),
  17505. name: "Front",
  17506. image: {
  17507. source: "./media/characters/rina/front.svg",
  17508. extra: 266 / 255,
  17509. bottom: 0.005
  17510. }
  17511. },
  17512. },
  17513. [
  17514. {
  17515. name: "Normal",
  17516. height: math.unit(5 + 10 / 12, "feet"),
  17517. default: true
  17518. },
  17519. ]
  17520. ))
  17521. characterMakers.push(() => makeCharacter(
  17522. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17523. {
  17524. front: {
  17525. height: math.unit(6 + 1 / 12, "feet"),
  17526. weight: math.unit(192, "lb"),
  17527. name: "Front",
  17528. image: {
  17529. source: "./media/characters/veronica/front.svg",
  17530. extra: 319 / 309,
  17531. bottom: 0.005
  17532. }
  17533. },
  17534. },
  17535. [
  17536. {
  17537. name: "Normal",
  17538. height: math.unit(6 + 1 / 12, "feet"),
  17539. default: true
  17540. },
  17541. ]
  17542. ))
  17543. characterMakers.push(() => makeCharacter(
  17544. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17545. {
  17546. front: {
  17547. height: math.unit(9 + 3 / 12, "feet"),
  17548. weight: math.unit(1100, "lb"),
  17549. name: "Front",
  17550. image: {
  17551. source: "./media/characters/braxton/front.svg",
  17552. extra: 1057 / 984,
  17553. bottom: 0.05
  17554. }
  17555. },
  17556. },
  17557. [
  17558. {
  17559. name: "Normal",
  17560. height: math.unit(9 + 3 / 12, "feet")
  17561. },
  17562. {
  17563. name: "Giant",
  17564. height: math.unit(300, "feet"),
  17565. default: true
  17566. },
  17567. {
  17568. name: "Macro",
  17569. height: math.unit(700, "feet")
  17570. },
  17571. {
  17572. name: "Megamacro",
  17573. height: math.unit(6000, "feet")
  17574. },
  17575. ]
  17576. ))
  17577. characterMakers.push(() => makeCharacter(
  17578. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17579. {
  17580. front: {
  17581. height: math.unit(6 + 7 / 12, "feet"),
  17582. weight: math.unit(150, "lb"),
  17583. name: "Front",
  17584. image: {
  17585. source: "./media/characters/blue-feyonics/front.svg",
  17586. extra: 1403 / 1306,
  17587. bottom: 0.047
  17588. }
  17589. },
  17590. },
  17591. [
  17592. {
  17593. name: "Normal",
  17594. height: math.unit(6 + 7 / 12, "feet"),
  17595. default: true
  17596. },
  17597. ]
  17598. ))
  17599. characterMakers.push(() => makeCharacter(
  17600. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17601. {
  17602. front: {
  17603. height: math.unit(1.8, "meters"),
  17604. weight: math.unit(60, "kg"),
  17605. name: "Front",
  17606. image: {
  17607. source: "./media/characters/maxwell/front.svg",
  17608. extra: 2060 / 1873
  17609. }
  17610. },
  17611. },
  17612. [
  17613. {
  17614. name: "Micro",
  17615. height: math.unit(1, "mm")
  17616. },
  17617. {
  17618. name: "Normal",
  17619. height: math.unit(1.8, "meter"),
  17620. default: true
  17621. },
  17622. {
  17623. name: "Macro",
  17624. height: math.unit(30, "meters")
  17625. },
  17626. {
  17627. name: "Megamacro",
  17628. height: math.unit(10, "km")
  17629. },
  17630. ]
  17631. ))
  17632. characterMakers.push(() => makeCharacter(
  17633. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17634. {
  17635. front: {
  17636. height: math.unit(6, "feet"),
  17637. weight: math.unit(150, "lb"),
  17638. name: "Front",
  17639. image: {
  17640. source: "./media/characters/jack/front.svg",
  17641. extra: 1754 / 1640,
  17642. bottom: 0.01
  17643. }
  17644. },
  17645. },
  17646. [
  17647. {
  17648. name: "Normal",
  17649. height: math.unit(80000, "feet"),
  17650. default: true
  17651. },
  17652. {
  17653. name: "Max size",
  17654. height: math.unit(10, "lightyears")
  17655. },
  17656. ]
  17657. ))
  17658. characterMakers.push(() => makeCharacter(
  17659. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17660. {
  17661. urban: {
  17662. height: math.unit(5, "feet"),
  17663. weight: math.unit(240, "lb"),
  17664. name: "Urban",
  17665. image: {
  17666. source: "./media/characters/cafat/urban.svg",
  17667. extra: 1223/1126,
  17668. bottom: 205/1428
  17669. }
  17670. },
  17671. summer: {
  17672. height: math.unit(5, "feet"),
  17673. weight: math.unit(240, "lb"),
  17674. name: "Summer",
  17675. image: {
  17676. source: "./media/characters/cafat/summer.svg",
  17677. extra: 1223/1126,
  17678. bottom: 205/1428
  17679. }
  17680. },
  17681. winter: {
  17682. height: math.unit(5, "feet"),
  17683. weight: math.unit(240, "lb"),
  17684. name: "Winter",
  17685. image: {
  17686. source: "./media/characters/cafat/winter.svg",
  17687. extra: 1223/1126,
  17688. bottom: 205/1428
  17689. }
  17690. },
  17691. lingerie: {
  17692. height: math.unit(5, "feet"),
  17693. weight: math.unit(240, "lb"),
  17694. name: "Lingerie",
  17695. image: {
  17696. source: "./media/characters/cafat/lingerie.svg",
  17697. extra: 1223/1126,
  17698. bottom: 205/1428
  17699. }
  17700. },
  17701. upright: {
  17702. height: math.unit(6.3, "feet"),
  17703. weight: math.unit(240, "lb"),
  17704. name: "Upright",
  17705. image: {
  17706. source: "./media/characters/cafat/upright.svg",
  17707. bottom: 0.01
  17708. }
  17709. },
  17710. uprightFull: {
  17711. height: math.unit(6.3, "feet"),
  17712. weight: math.unit(240, "lb"),
  17713. name: "Upright (Full)",
  17714. image: {
  17715. source: "./media/characters/cafat/upright-full.svg",
  17716. bottom: 0.01
  17717. }
  17718. },
  17719. },
  17720. [
  17721. {
  17722. name: "Small",
  17723. height: math.unit(5, "feet"),
  17724. default: true
  17725. },
  17726. {
  17727. name: "Large",
  17728. height: math.unit(13, "feet")
  17729. },
  17730. ]
  17731. ))
  17732. characterMakers.push(() => makeCharacter(
  17733. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17734. {
  17735. front: {
  17736. height: math.unit(6, "feet"),
  17737. weight: math.unit(150, "lb"),
  17738. name: "Front",
  17739. image: {
  17740. source: "./media/characters/verin-raharra/front.svg",
  17741. extra: 5019 / 4835,
  17742. bottom: 0.023
  17743. }
  17744. },
  17745. },
  17746. [
  17747. {
  17748. name: "Normal",
  17749. height: math.unit(7 + 5 / 12, "feet"),
  17750. default: true
  17751. },
  17752. {
  17753. name: "Upsized",
  17754. height: math.unit(20, "feet")
  17755. },
  17756. ]
  17757. ))
  17758. characterMakers.push(() => makeCharacter(
  17759. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17760. {
  17761. front: {
  17762. height: math.unit(7, "feet"),
  17763. weight: math.unit(230, "lb"),
  17764. name: "Front",
  17765. image: {
  17766. source: "./media/characters/nakata/front.svg",
  17767. extra: 1.005,
  17768. bottom: 0.01
  17769. }
  17770. },
  17771. },
  17772. [
  17773. {
  17774. name: "Normal",
  17775. height: math.unit(7, "feet"),
  17776. default: true
  17777. },
  17778. {
  17779. name: "Big",
  17780. height: math.unit(14, "feet")
  17781. },
  17782. {
  17783. name: "Macro",
  17784. height: math.unit(400, "feet")
  17785. },
  17786. ]
  17787. ))
  17788. characterMakers.push(() => makeCharacter(
  17789. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17790. {
  17791. front: {
  17792. height: math.unit(4.91, "feet"),
  17793. weight: math.unit(100, "lb"),
  17794. name: "Front",
  17795. image: {
  17796. source: "./media/characters/lily/front.svg",
  17797. extra: 1585 / 1415,
  17798. bottom: 0.02
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(4.91, "feet"),
  17806. default: true
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17812. {
  17813. laying: {
  17814. height: math.unit(4 + 4 / 12, "feet"),
  17815. weight: math.unit(600, "lb"),
  17816. name: "Laying",
  17817. image: {
  17818. source: "./media/characters/sheila/laying.svg",
  17819. extra: 1333 / 1265,
  17820. bottom: 0.16
  17821. }
  17822. },
  17823. },
  17824. [
  17825. {
  17826. name: "Normal",
  17827. height: math.unit(4 + 4 / 12, "feet"),
  17828. default: true
  17829. },
  17830. ]
  17831. ))
  17832. characterMakers.push(() => makeCharacter(
  17833. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17834. {
  17835. front: {
  17836. height: math.unit(6, "feet"),
  17837. weight: math.unit(190, "lb"),
  17838. name: "Front",
  17839. image: {
  17840. source: "./media/characters/sax/front.svg",
  17841. extra: 1187 / 973,
  17842. bottom: 0.042
  17843. }
  17844. },
  17845. },
  17846. [
  17847. {
  17848. name: "Micro",
  17849. height: math.unit(4, "inches"),
  17850. default: true
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(6, "feet"),
  17859. weight: math.unit(150, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/pandora/front.svg",
  17863. extra: 2720 / 2556,
  17864. bottom: 0.015
  17865. }
  17866. },
  17867. back: {
  17868. height: math.unit(6, "feet"),
  17869. weight: math.unit(150, "lb"),
  17870. name: "Back",
  17871. image: {
  17872. source: "./media/characters/pandora/back.svg",
  17873. extra: 2720 / 2556,
  17874. bottom: 0.01
  17875. }
  17876. },
  17877. beans: {
  17878. height: math.unit(6 / 8, "feet"),
  17879. name: "Beans",
  17880. image: {
  17881. source: "./media/characters/pandora/beans.svg"
  17882. }
  17883. },
  17884. collar: {
  17885. height: math.unit(0.31, "feet"),
  17886. name: "Collar",
  17887. image: {
  17888. source: "./media/characters/pandora/collar.svg"
  17889. }
  17890. },
  17891. skirt: {
  17892. height: math.unit(6, "feet"),
  17893. weight: math.unit(150, "lb"),
  17894. name: "Skirt",
  17895. image: {
  17896. source: "./media/characters/pandora/skirt.svg",
  17897. extra: 1622 / 1525,
  17898. bottom: 0.015
  17899. }
  17900. },
  17901. hoodie: {
  17902. height: math.unit(6, "feet"),
  17903. weight: math.unit(150, "lb"),
  17904. name: "Hoodie",
  17905. image: {
  17906. source: "./media/characters/pandora/hoodie.svg",
  17907. extra: 1622 / 1525,
  17908. bottom: 0.015
  17909. }
  17910. },
  17911. casual: {
  17912. height: math.unit(6, "feet"),
  17913. weight: math.unit(150, "lb"),
  17914. name: "Casual",
  17915. image: {
  17916. source: "./media/characters/pandora/casual.svg",
  17917. extra: 1622 / 1525,
  17918. bottom: 0.015
  17919. }
  17920. },
  17921. },
  17922. [
  17923. {
  17924. name: "Normal",
  17925. height: math.unit(6, "feet")
  17926. },
  17927. {
  17928. name: "Big Steppy",
  17929. height: math.unit(1, "km"),
  17930. default: true
  17931. },
  17932. {
  17933. name: "Galactic Steppy",
  17934. height: math.unit(2, "gigameters")
  17935. },
  17936. ]
  17937. ))
  17938. characterMakers.push(() => makeCharacter(
  17939. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17940. {
  17941. side: {
  17942. height: math.unit(10, "feet"),
  17943. weight: math.unit(800, "kg"),
  17944. name: "Side",
  17945. image: {
  17946. source: "./media/characters/venio-darcony/side.svg",
  17947. extra: 1373 / 1003,
  17948. bottom: 0.037
  17949. }
  17950. },
  17951. front: {
  17952. height: math.unit(19, "feet"),
  17953. weight: math.unit(800, "kg"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/venio-darcony/front.svg"
  17957. }
  17958. },
  17959. back: {
  17960. height: math.unit(19, "feet"),
  17961. weight: math.unit(800, "kg"),
  17962. name: "Back",
  17963. image: {
  17964. source: "./media/characters/venio-darcony/back.svg"
  17965. }
  17966. },
  17967. sideNsfw: {
  17968. height: math.unit(10, "feet"),
  17969. weight: math.unit(800, "kg"),
  17970. name: "Side (NSFW)",
  17971. image: {
  17972. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17973. extra: 1373 / 1003,
  17974. bottom: 0.037
  17975. }
  17976. },
  17977. frontNsfw: {
  17978. height: math.unit(19, "feet"),
  17979. weight: math.unit(800, "kg"),
  17980. name: "Front (NSFW)",
  17981. image: {
  17982. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17983. }
  17984. },
  17985. backNsfw: {
  17986. height: math.unit(19, "feet"),
  17987. weight: math.unit(800, "kg"),
  17988. name: "Back (NSFW)",
  17989. image: {
  17990. source: "./media/characters/venio-darcony/back-nsfw.svg"
  17991. }
  17992. },
  17993. sideArmored: {
  17994. height: math.unit(10, "feet"),
  17995. weight: math.unit(800, "kg"),
  17996. name: "Side (Armored)",
  17997. image: {
  17998. source: "./media/characters/venio-darcony/side-armored.svg",
  17999. extra: 1373 / 1003,
  18000. bottom: 0.037
  18001. }
  18002. },
  18003. frontArmored: {
  18004. height: math.unit(19, "feet"),
  18005. weight: math.unit(900, "kg"),
  18006. name: "Front (Armored)",
  18007. image: {
  18008. source: "./media/characters/venio-darcony/front-armored.svg"
  18009. }
  18010. },
  18011. backArmored: {
  18012. height: math.unit(19, "feet"),
  18013. weight: math.unit(900, "kg"),
  18014. name: "Back (Armored)",
  18015. image: {
  18016. source: "./media/characters/venio-darcony/back-armored.svg"
  18017. }
  18018. },
  18019. sword: {
  18020. height: math.unit(10, "feet"),
  18021. weight: math.unit(50, "lb"),
  18022. name: "Sword",
  18023. image: {
  18024. source: "./media/characters/venio-darcony/sword.svg"
  18025. }
  18026. },
  18027. },
  18028. [
  18029. {
  18030. name: "Normal",
  18031. height: math.unit(10, "feet")
  18032. },
  18033. {
  18034. name: "Macro",
  18035. height: math.unit(130, "feet"),
  18036. default: true
  18037. },
  18038. {
  18039. name: "Macro+",
  18040. height: math.unit(240, "feet")
  18041. },
  18042. ]
  18043. ))
  18044. characterMakers.push(() => makeCharacter(
  18045. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18046. {
  18047. front: {
  18048. height: math.unit(6, "feet"),
  18049. weight: math.unit(150, "lb"),
  18050. name: "Front",
  18051. image: {
  18052. source: "./media/characters/veski/front.svg",
  18053. extra: 1299 / 1225,
  18054. bottom: 0.04
  18055. }
  18056. },
  18057. back: {
  18058. height: math.unit(6, "feet"),
  18059. weight: math.unit(150, "lb"),
  18060. name: "Back",
  18061. image: {
  18062. source: "./media/characters/veski/back.svg",
  18063. extra: 1299 / 1225,
  18064. bottom: 0.008
  18065. }
  18066. },
  18067. maw: {
  18068. height: math.unit(1.5 * 1.21, "feet"),
  18069. name: "Maw",
  18070. image: {
  18071. source: "./media/characters/veski/maw.svg"
  18072. }
  18073. },
  18074. },
  18075. [
  18076. {
  18077. name: "Macro",
  18078. height: math.unit(2, "km"),
  18079. default: true
  18080. },
  18081. ]
  18082. ))
  18083. characterMakers.push(() => makeCharacter(
  18084. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18085. {
  18086. front: {
  18087. height: math.unit(5 + 7 / 12, "feet"),
  18088. name: "Front",
  18089. image: {
  18090. source: "./media/characters/isabelle/front.svg",
  18091. extra: 2130 / 1976,
  18092. bottom: 0.05
  18093. }
  18094. },
  18095. },
  18096. [
  18097. {
  18098. name: "Supermicro",
  18099. height: math.unit(10, "micrometers")
  18100. },
  18101. {
  18102. name: "Micro",
  18103. height: math.unit(1, "inch")
  18104. },
  18105. {
  18106. name: "Tiny",
  18107. height: math.unit(5, "inches")
  18108. },
  18109. {
  18110. name: "Standard",
  18111. height: math.unit(5 + 7 / 12, "inches")
  18112. },
  18113. {
  18114. name: "Macro",
  18115. height: math.unit(80, "meters"),
  18116. default: true
  18117. },
  18118. {
  18119. name: "Megamacro",
  18120. height: math.unit(250, "meters")
  18121. },
  18122. {
  18123. name: "Gigamacro",
  18124. height: math.unit(5, "km")
  18125. },
  18126. {
  18127. name: "Cosmic",
  18128. height: math.unit(2.5e6, "miles")
  18129. },
  18130. ]
  18131. ))
  18132. characterMakers.push(() => makeCharacter(
  18133. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18134. {
  18135. front: {
  18136. height: math.unit(6, "feet"),
  18137. weight: math.unit(150, "lb"),
  18138. name: "Front",
  18139. image: {
  18140. source: "./media/characters/hanzo/front.svg",
  18141. extra: 374 / 344,
  18142. bottom: 0.02
  18143. }
  18144. },
  18145. },
  18146. [
  18147. {
  18148. name: "Normal",
  18149. height: math.unit(8, "feet"),
  18150. default: true
  18151. },
  18152. ]
  18153. ))
  18154. characterMakers.push(() => makeCharacter(
  18155. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18156. {
  18157. front: {
  18158. height: math.unit(7, "feet"),
  18159. weight: math.unit(130, "lb"),
  18160. name: "Front",
  18161. image: {
  18162. source: "./media/characters/anna/front.svg",
  18163. extra: 169 / 145,
  18164. bottom: 0.06
  18165. }
  18166. },
  18167. full: {
  18168. height: math.unit(4.96, "feet"),
  18169. weight: math.unit(220, "lb"),
  18170. name: "Full",
  18171. image: {
  18172. source: "./media/characters/anna/full.svg",
  18173. extra: 138 / 114,
  18174. bottom: 0.15
  18175. }
  18176. },
  18177. tongue: {
  18178. height: math.unit(2.53, "feet"),
  18179. name: "Tongue",
  18180. image: {
  18181. source: "./media/characters/anna/tongue.svg"
  18182. }
  18183. },
  18184. },
  18185. [
  18186. {
  18187. name: "Normal",
  18188. height: math.unit(7, "feet"),
  18189. default: true
  18190. },
  18191. ]
  18192. ))
  18193. characterMakers.push(() => makeCharacter(
  18194. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18195. {
  18196. front: {
  18197. height: math.unit(7, "feet"),
  18198. weight: math.unit(150, "lb"),
  18199. name: "Front",
  18200. image: {
  18201. source: "./media/characters/ian-corvid/front.svg",
  18202. extra: 150 / 142,
  18203. bottom: 0.02
  18204. }
  18205. },
  18206. back: {
  18207. height: math.unit(7, "feet"),
  18208. weight: math.unit(150, "lb"),
  18209. name: "Back",
  18210. image: {
  18211. source: "./media/characters/ian-corvid/back.svg",
  18212. extra: 150 / 143,
  18213. bottom: 0.01
  18214. }
  18215. },
  18216. stomping: {
  18217. height: math.unit(7, "feet"),
  18218. weight: math.unit(150, "lb"),
  18219. name: "Stomping",
  18220. image: {
  18221. source: "./media/characters/ian-corvid/stomping.svg",
  18222. extra: 76 / 72
  18223. }
  18224. },
  18225. sitting: {
  18226. height: math.unit(7 / 1.8, "feet"),
  18227. weight: math.unit(150, "lb"),
  18228. name: "Sitting",
  18229. image: {
  18230. source: "./media/characters/ian-corvid/sitting.svg",
  18231. extra: 1400 / 1269,
  18232. bottom: 0.15
  18233. }
  18234. },
  18235. },
  18236. [
  18237. {
  18238. name: "Tiny Microw",
  18239. height: math.unit(1, "inch")
  18240. },
  18241. {
  18242. name: "Microw",
  18243. height: math.unit(6, "inches")
  18244. },
  18245. {
  18246. name: "Crow",
  18247. height: math.unit(7 + 1 / 12, "feet"),
  18248. default: true
  18249. },
  18250. {
  18251. name: "Macrow",
  18252. height: math.unit(176, "feet")
  18253. },
  18254. ]
  18255. ))
  18256. characterMakers.push(() => makeCharacter(
  18257. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18258. {
  18259. front: {
  18260. height: math.unit(5 + 7 / 12, "feet"),
  18261. weight: math.unit(147, "lb"),
  18262. name: "Front",
  18263. image: {
  18264. source: "./media/characters/natalie-kellon/front.svg",
  18265. extra: 1214 / 1141,
  18266. bottom: 0.02
  18267. }
  18268. },
  18269. },
  18270. [
  18271. {
  18272. name: "Micro",
  18273. height: math.unit(1 / 16, "inch")
  18274. },
  18275. {
  18276. name: "Tiny",
  18277. height: math.unit(4, "inches")
  18278. },
  18279. {
  18280. name: "Normal",
  18281. height: math.unit(5 + 7 / 12, "feet"),
  18282. default: true
  18283. },
  18284. {
  18285. name: "Amazon",
  18286. height: math.unit(12, "feet")
  18287. },
  18288. {
  18289. name: "Giantess",
  18290. height: math.unit(160, "meters")
  18291. },
  18292. {
  18293. name: "Titaness",
  18294. height: math.unit(800, "meters")
  18295. },
  18296. ]
  18297. ))
  18298. characterMakers.push(() => makeCharacter(
  18299. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18300. {
  18301. front: {
  18302. height: math.unit(6, "feet"),
  18303. weight: math.unit(150, "lb"),
  18304. name: "Front",
  18305. image: {
  18306. source: "./media/characters/alluria/front.svg",
  18307. extra: 806 / 738,
  18308. bottom: 0.01
  18309. }
  18310. },
  18311. side: {
  18312. height: math.unit(6, "feet"),
  18313. weight: math.unit(150, "lb"),
  18314. name: "Side",
  18315. image: {
  18316. source: "./media/characters/alluria/side.svg",
  18317. extra: 800 / 750,
  18318. }
  18319. },
  18320. back: {
  18321. height: math.unit(6, "feet"),
  18322. weight: math.unit(150, "lb"),
  18323. name: "Back",
  18324. image: {
  18325. source: "./media/characters/alluria/back.svg",
  18326. extra: 806 / 738,
  18327. }
  18328. },
  18329. frontMaid: {
  18330. height: math.unit(6, "feet"),
  18331. weight: math.unit(150, "lb"),
  18332. name: "Front (Maid)",
  18333. image: {
  18334. source: "./media/characters/alluria/front-maid.svg",
  18335. extra: 806 / 738,
  18336. bottom: 0.01
  18337. }
  18338. },
  18339. sideMaid: {
  18340. height: math.unit(6, "feet"),
  18341. weight: math.unit(150, "lb"),
  18342. name: "Side (Maid)",
  18343. image: {
  18344. source: "./media/characters/alluria/side-maid.svg",
  18345. extra: 800 / 750,
  18346. bottom: 0.005
  18347. }
  18348. },
  18349. backMaid: {
  18350. height: math.unit(6, "feet"),
  18351. weight: math.unit(150, "lb"),
  18352. name: "Back (Maid)",
  18353. image: {
  18354. source: "./media/characters/alluria/back-maid.svg",
  18355. extra: 806 / 738,
  18356. }
  18357. },
  18358. },
  18359. [
  18360. {
  18361. name: "Micro",
  18362. height: math.unit(6, "inches"),
  18363. default: true
  18364. },
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18369. {
  18370. front: {
  18371. height: math.unit(6, "feet"),
  18372. weight: math.unit(150, "lb"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/kyle/front.svg",
  18376. extra: 1069 / 962,
  18377. bottom: 77.228 / 1727.45
  18378. }
  18379. },
  18380. },
  18381. [
  18382. {
  18383. name: "Macro",
  18384. height: math.unit(150, "feet"),
  18385. default: true
  18386. },
  18387. ]
  18388. ))
  18389. characterMakers.push(() => makeCharacter(
  18390. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18391. {
  18392. front: {
  18393. height: math.unit(6, "feet"),
  18394. weight: math.unit(300, "lb"),
  18395. name: "Front",
  18396. image: {
  18397. source: "./media/characters/duncan/front.svg",
  18398. extra: 1650 / 1482,
  18399. bottom: 0.05
  18400. }
  18401. },
  18402. },
  18403. [
  18404. {
  18405. name: "Macro",
  18406. height: math.unit(100, "feet"),
  18407. default: true
  18408. },
  18409. ]
  18410. ))
  18411. characterMakers.push(() => makeCharacter(
  18412. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18413. {
  18414. front: {
  18415. height: math.unit(5 + 4 / 12, "feet"),
  18416. weight: math.unit(220, "lb"),
  18417. name: "Front",
  18418. image: {
  18419. source: "./media/characters/memory/front.svg",
  18420. extra: 3641 / 3545,
  18421. bottom: 0.03
  18422. }
  18423. },
  18424. back: {
  18425. height: math.unit(5 + 4 / 12, "feet"),
  18426. weight: math.unit(220, "lb"),
  18427. name: "Back",
  18428. image: {
  18429. source: "./media/characters/memory/back.svg",
  18430. extra: 3641 / 3545,
  18431. bottom: 0.025
  18432. }
  18433. },
  18434. frontSkirt: {
  18435. height: math.unit(5 + 4 / 12, "feet"),
  18436. weight: math.unit(220, "lb"),
  18437. name: "Front (Skirt)",
  18438. image: {
  18439. source: "./media/characters/memory/front-skirt.svg",
  18440. extra: 3641 / 3545,
  18441. bottom: 0.03
  18442. }
  18443. },
  18444. frontDress: {
  18445. height: math.unit(5 + 4 / 12, "feet"),
  18446. weight: math.unit(220, "lb"),
  18447. name: "Front (Dress)",
  18448. image: {
  18449. source: "./media/characters/memory/front-dress.svg",
  18450. extra: 3641 / 3545,
  18451. bottom: 0.03
  18452. }
  18453. },
  18454. },
  18455. [
  18456. {
  18457. name: "Micro",
  18458. height: math.unit(6, "inches"),
  18459. default: true
  18460. },
  18461. {
  18462. name: "Normal",
  18463. height: math.unit(5 + 4 / 12, "feet")
  18464. },
  18465. ]
  18466. ))
  18467. characterMakers.push(() => makeCharacter(
  18468. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18469. {
  18470. front: {
  18471. height: math.unit(4 + 11 / 12, "feet"),
  18472. weight: math.unit(100, "lb"),
  18473. name: "Front",
  18474. image: {
  18475. source: "./media/characters/luno/front.svg",
  18476. extra: 1535 / 1487,
  18477. bottom: 0.03
  18478. }
  18479. },
  18480. },
  18481. [
  18482. {
  18483. name: "Micro",
  18484. height: math.unit(3, "inches")
  18485. },
  18486. {
  18487. name: "Normal",
  18488. height: math.unit(4 + 11 / 12, "feet"),
  18489. default: true
  18490. },
  18491. {
  18492. name: "Macro",
  18493. height: math.unit(300, "feet")
  18494. },
  18495. {
  18496. name: "Megamacro",
  18497. height: math.unit(700, "miles")
  18498. },
  18499. ]
  18500. ))
  18501. characterMakers.push(() => makeCharacter(
  18502. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18503. {
  18504. front: {
  18505. height: math.unit(6 + 2 / 12, "feet"),
  18506. weight: math.unit(170, "lb"),
  18507. name: "Front",
  18508. image: {
  18509. source: "./media/characters/jamesy/front.svg",
  18510. extra: 440 / 382,
  18511. bottom: 0.005
  18512. }
  18513. },
  18514. },
  18515. [
  18516. {
  18517. name: "Micro",
  18518. height: math.unit(3, "inches")
  18519. },
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(6 + 2 / 12, "feet"),
  18523. default: true
  18524. },
  18525. {
  18526. name: "Macro",
  18527. height: math.unit(300, "feet")
  18528. },
  18529. {
  18530. name: "Megamacro",
  18531. height: math.unit(700, "miles")
  18532. },
  18533. ]
  18534. ))
  18535. characterMakers.push(() => makeCharacter(
  18536. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18537. {
  18538. front: {
  18539. height: math.unit(6, "feet"),
  18540. weight: math.unit(160, "lb"),
  18541. name: "Front",
  18542. image: {
  18543. source: "./media/characters/mark/front.svg",
  18544. extra: 3300 / 3100,
  18545. bottom: 136.42 / 3440.47
  18546. }
  18547. },
  18548. },
  18549. [
  18550. {
  18551. name: "Macro",
  18552. height: math.unit(120, "meters")
  18553. },
  18554. {
  18555. name: "Bigger Macro",
  18556. height: math.unit(350, "meters")
  18557. },
  18558. {
  18559. name: "Megamacro",
  18560. height: math.unit(8, "km"),
  18561. default: true
  18562. },
  18563. {
  18564. name: "Continental",
  18565. height: math.unit(4550, "km")
  18566. },
  18567. {
  18568. name: "Planetary",
  18569. height: math.unit(65000, "km")
  18570. },
  18571. ]
  18572. ))
  18573. characterMakers.push(() => makeCharacter(
  18574. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18575. {
  18576. front: {
  18577. height: math.unit(6, "feet"),
  18578. weight: math.unit(400, "lb"),
  18579. name: "Front",
  18580. image: {
  18581. source: "./media/characters/mac/front.svg",
  18582. extra: 1048 / 987.7,
  18583. bottom: 60 / 1107.6,
  18584. }
  18585. },
  18586. },
  18587. [
  18588. {
  18589. name: "Macro",
  18590. height: math.unit(500, "feet"),
  18591. default: true
  18592. },
  18593. ]
  18594. ))
  18595. characterMakers.push(() => makeCharacter(
  18596. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18597. {
  18598. front: {
  18599. height: math.unit(5 + 2 / 12, "feet"),
  18600. weight: math.unit(190, "lb"),
  18601. name: "Front",
  18602. image: {
  18603. source: "./media/characters/bari/front.svg",
  18604. extra: 3156 / 2880,
  18605. bottom: 0.03
  18606. }
  18607. },
  18608. back: {
  18609. height: math.unit(5 + 2 / 12, "feet"),
  18610. weight: math.unit(190, "lb"),
  18611. name: "Back",
  18612. image: {
  18613. source: "./media/characters/bari/back.svg",
  18614. extra: 3260 / 2834,
  18615. bottom: 0.025
  18616. }
  18617. },
  18618. frontPlush: {
  18619. height: math.unit(5 + 2 / 12, "feet"),
  18620. weight: math.unit(190, "lb"),
  18621. name: "Front (Plush)",
  18622. image: {
  18623. source: "./media/characters/bari/front-plush.svg",
  18624. extra: 1112 / 1061,
  18625. bottom: 0.002
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Micro",
  18632. height: math.unit(3, "inches")
  18633. },
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(5 + 2 / 12, "feet"),
  18637. default: true
  18638. },
  18639. {
  18640. name: "Macro",
  18641. height: math.unit(20, "feet")
  18642. },
  18643. ]
  18644. ))
  18645. characterMakers.push(() => makeCharacter(
  18646. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18647. {
  18648. front: {
  18649. height: math.unit(6 + 1 / 12, "feet"),
  18650. weight: math.unit(275, "lb"),
  18651. name: "Front",
  18652. image: {
  18653. source: "./media/characters/hunter-misha-raven/front.svg"
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Mortal",
  18660. height: math.unit(6 + 1 / 12, "feet")
  18661. },
  18662. {
  18663. name: "Divine",
  18664. height: math.unit(1.12134e34, "parsecs"),
  18665. default: true
  18666. },
  18667. ]
  18668. ))
  18669. characterMakers.push(() => makeCharacter(
  18670. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18671. {
  18672. front: {
  18673. height: math.unit(6 + 3 / 12, "feet"),
  18674. weight: math.unit(220, "lb"),
  18675. name: "Front",
  18676. image: {
  18677. source: "./media/characters/max-calore/front.svg",
  18678. extra: 1700 / 1648,
  18679. bottom: 0.01
  18680. }
  18681. },
  18682. back: {
  18683. height: math.unit(6 + 3 / 12, "feet"),
  18684. weight: math.unit(220, "lb"),
  18685. name: "Back",
  18686. image: {
  18687. source: "./media/characters/max-calore/back.svg",
  18688. extra: 1700 / 1648,
  18689. bottom: 0.01
  18690. }
  18691. },
  18692. },
  18693. [
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(6 + 3 / 12, "feet"),
  18697. default: true
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18703. {
  18704. side: {
  18705. height: math.unit(2 + 8 / 12, "feet"),
  18706. weight: math.unit(99, "lb"),
  18707. name: "Side",
  18708. image: {
  18709. source: "./media/characters/aspen/side.svg",
  18710. extra: 152 / 138,
  18711. bottom: 0.032
  18712. }
  18713. },
  18714. },
  18715. [
  18716. {
  18717. name: "Normal",
  18718. height: math.unit(2 + 8 / 12, "feet"),
  18719. default: true
  18720. },
  18721. ]
  18722. ))
  18723. characterMakers.push(() => makeCharacter(
  18724. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18725. {
  18726. side: {
  18727. height: math.unit(3 + 2 / 12, "feet"),
  18728. weight: math.unit(224, "lb"),
  18729. name: "Side",
  18730. image: {
  18731. source: "./media/characters/sheila-feral-wolf/side.svg",
  18732. extra: 179 / 166,
  18733. bottom: 0.03
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(3 + 2 / 12, "feet"),
  18741. default: true
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18747. {
  18748. side: {
  18749. height: math.unit(1 + 9 / 12, "feet"),
  18750. weight: math.unit(38, "lb"),
  18751. name: "Side",
  18752. image: {
  18753. source: "./media/characters/michelle/side.svg",
  18754. extra: 147 / 136.7,
  18755. bottom: 0.03
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Normal",
  18762. height: math.unit(1 + 9 / 12, "feet"),
  18763. default: true
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18769. {
  18770. front: {
  18771. height: math.unit(1.54, "feet"),
  18772. weight: math.unit(50, "lb"),
  18773. name: "Front",
  18774. image: {
  18775. source: "./media/characters/nino/front.svg"
  18776. }
  18777. },
  18778. },
  18779. [
  18780. {
  18781. name: "Normal",
  18782. height: math.unit(1.54, "feet"),
  18783. default: true
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(1.49, "feet"),
  18792. weight: math.unit(45, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/viola/front.svg"
  18796. }
  18797. },
  18798. },
  18799. [
  18800. {
  18801. name: "Normal",
  18802. height: math.unit(1.49, "feet"),
  18803. default: true
  18804. },
  18805. ]
  18806. ))
  18807. characterMakers.push(() => makeCharacter(
  18808. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18809. {
  18810. front: {
  18811. height: math.unit(6 + 5 / 12, "feet"),
  18812. weight: math.unit(580, "lb"),
  18813. name: "Front",
  18814. image: {
  18815. source: "./media/characters/atlas/front.svg",
  18816. extra: 298.5 / 290,
  18817. bottom: 0.015
  18818. }
  18819. },
  18820. },
  18821. [
  18822. {
  18823. name: "Normal",
  18824. height: math.unit(6 + 5 / 12, "feet"),
  18825. default: true
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18831. {
  18832. side: {
  18833. height: math.unit(15.6, "inches"),
  18834. weight: math.unit(10, "lb"),
  18835. name: "Side",
  18836. image: {
  18837. source: "./media/characters/davy/side.svg",
  18838. extra: 200 / 170,
  18839. bottom: 0.01
  18840. }
  18841. },
  18842. },
  18843. [
  18844. {
  18845. name: "Normal",
  18846. height: math.unit(15.6, "inches"),
  18847. default: true
  18848. },
  18849. ]
  18850. ))
  18851. characterMakers.push(() => makeCharacter(
  18852. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18853. {
  18854. side: {
  18855. height: math.unit(4 + 8 / 12, "feet"),
  18856. weight: math.unit(166, "lb"),
  18857. name: "Side",
  18858. image: {
  18859. source: "./media/characters/fiona/side.svg",
  18860. extra: 232 / 220,
  18861. bottom: 0.03
  18862. }
  18863. },
  18864. },
  18865. [
  18866. {
  18867. name: "Normal",
  18868. height: math.unit(4 + 8 / 12, "feet"),
  18869. default: true
  18870. },
  18871. ]
  18872. ))
  18873. characterMakers.push(() => makeCharacter(
  18874. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18875. {
  18876. front: {
  18877. height: math.unit(26, "inches"),
  18878. weight: math.unit(35, "lb"),
  18879. name: "Front",
  18880. image: {
  18881. source: "./media/characters/lyla/front.svg",
  18882. bottom: 0.1
  18883. }
  18884. },
  18885. },
  18886. [
  18887. {
  18888. name: "Normal",
  18889. height: math.unit(3, "feet"),
  18890. default: true
  18891. },
  18892. ]
  18893. ))
  18894. characterMakers.push(() => makeCharacter(
  18895. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18896. {
  18897. side: {
  18898. height: math.unit(1.8, "feet"),
  18899. weight: math.unit(44, "lb"),
  18900. name: "Side",
  18901. image: {
  18902. source: "./media/characters/perseus/side.svg",
  18903. bottom: 0.21
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Normal",
  18910. height: math.unit(1.8, "feet"),
  18911. default: true
  18912. },
  18913. ]
  18914. ))
  18915. characterMakers.push(() => makeCharacter(
  18916. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18917. {
  18918. side: {
  18919. height: math.unit(4 + 2 / 12, "feet"),
  18920. weight: math.unit(20, "lb"),
  18921. name: "Side",
  18922. image: {
  18923. source: "./media/characters/remus/side.svg"
  18924. }
  18925. },
  18926. },
  18927. [
  18928. {
  18929. name: "Normal",
  18930. height: math.unit(4 + 2 / 12, "feet"),
  18931. default: true
  18932. },
  18933. ]
  18934. ))
  18935. characterMakers.push(() => makeCharacter(
  18936. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18937. {
  18938. front: {
  18939. height: math.unit(4 + 11 / 12, "feet"),
  18940. weight: math.unit(114, "lb"),
  18941. name: "Front",
  18942. image: {
  18943. source: "./media/characters/raf/front.svg",
  18944. extra: 1504/1339,
  18945. bottom: 26/1530
  18946. }
  18947. },
  18948. side: {
  18949. height: math.unit(4 + 11 / 12, "feet"),
  18950. weight: math.unit(114, "lb"),
  18951. name: "Side",
  18952. image: {
  18953. source: "./media/characters/raf/side.svg",
  18954. extra: 1466/1316,
  18955. bottom: 29/1495
  18956. }
  18957. },
  18958. paw: {
  18959. height: math.unit(1.45, "feet"),
  18960. name: "Paw",
  18961. image: {
  18962. source: "./media/characters/raf/paw.svg"
  18963. },
  18964. extraAttributes: {
  18965. "toeSize": {
  18966. name: "Toe Size",
  18967. power: 2,
  18968. type: "area",
  18969. base: math.unit(0.004, "m^2")
  18970. },
  18971. "padSize": {
  18972. name: "Pad Size",
  18973. power: 2,
  18974. type: "area",
  18975. base: math.unit(0.04, "m^2")
  18976. },
  18977. "footSize": {
  18978. name: "Foot Size",
  18979. power: 2,
  18980. type: "area",
  18981. base: math.unit(0.08, "m^2")
  18982. },
  18983. }
  18984. },
  18985. },
  18986. [
  18987. {
  18988. name: "Micro",
  18989. height: math.unit(2, "inches")
  18990. },
  18991. {
  18992. name: "Normal",
  18993. height: math.unit(4 + 11 / 12, "feet"),
  18994. default: true
  18995. },
  18996. {
  18997. name: "Macro",
  18998. height: math.unit(70, "feet")
  18999. },
  19000. ]
  19001. ))
  19002. characterMakers.push(() => makeCharacter(
  19003. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19004. {
  19005. front: {
  19006. height: math.unit(1.5, "meters"),
  19007. weight: math.unit(68, "kg"),
  19008. name: "Front",
  19009. image: {
  19010. source: "./media/characters/liam-einarr/front.svg",
  19011. extra: 2822 / 2666
  19012. }
  19013. },
  19014. back: {
  19015. height: math.unit(1.5, "meters"),
  19016. weight: math.unit(68, "kg"),
  19017. name: "Back",
  19018. image: {
  19019. source: "./media/characters/liam-einarr/back.svg",
  19020. extra: 2822 / 2666,
  19021. bottom: 0.015
  19022. }
  19023. },
  19024. },
  19025. [
  19026. {
  19027. name: "Normal",
  19028. height: math.unit(1.5, "meters"),
  19029. default: true
  19030. },
  19031. {
  19032. name: "Macro",
  19033. height: math.unit(150, "meters")
  19034. },
  19035. {
  19036. name: "Megamacro",
  19037. height: math.unit(35, "km")
  19038. },
  19039. ]
  19040. ))
  19041. characterMakers.push(() => makeCharacter(
  19042. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19043. {
  19044. front: {
  19045. height: math.unit(6, "feet"),
  19046. weight: math.unit(75, "kg"),
  19047. name: "Front",
  19048. image: {
  19049. source: "./media/characters/linda/front.svg",
  19050. extra: 930 / 874,
  19051. bottom: 0.004
  19052. }
  19053. },
  19054. },
  19055. [
  19056. {
  19057. name: "Normal",
  19058. height: math.unit(6, "feet"),
  19059. default: true
  19060. },
  19061. ]
  19062. ))
  19063. characterMakers.push(() => makeCharacter(
  19064. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19065. {
  19066. front: {
  19067. height: math.unit(6 + 8 / 12, "feet"),
  19068. weight: math.unit(220, "lb"),
  19069. name: "Front",
  19070. image: {
  19071. source: "./media/characters/caylex/front.svg",
  19072. extra: 821 / 772,
  19073. bottom: 0.07
  19074. }
  19075. },
  19076. back: {
  19077. height: math.unit(6 + 8 / 12, "feet"),
  19078. weight: math.unit(220, "lb"),
  19079. name: "Back",
  19080. image: {
  19081. source: "./media/characters/caylex/back.svg",
  19082. extra: 821 / 772,
  19083. bottom: 0.022
  19084. }
  19085. },
  19086. hand: {
  19087. height: math.unit(1.25, "feet"),
  19088. name: "Hand",
  19089. image: {
  19090. source: "./media/characters/caylex/hand.svg"
  19091. }
  19092. },
  19093. foot: {
  19094. height: math.unit(1.6, "feet"),
  19095. name: "Foot",
  19096. image: {
  19097. source: "./media/characters/caylex/foot.svg"
  19098. }
  19099. },
  19100. armored: {
  19101. height: math.unit(6 + 8 / 12, "feet"),
  19102. weight: math.unit(250, "lb"),
  19103. name: "Armored",
  19104. image: {
  19105. source: "./media/characters/caylex/armored.svg",
  19106. extra: 1420 / 1310,
  19107. bottom: 0.045
  19108. }
  19109. },
  19110. },
  19111. [
  19112. {
  19113. name: "Normal",
  19114. height: math.unit(6 + 8 / 12, "feet"),
  19115. default: true
  19116. },
  19117. {
  19118. name: "Normal+",
  19119. height: math.unit(12, "feet")
  19120. },
  19121. ]
  19122. ))
  19123. characterMakers.push(() => makeCharacter(
  19124. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19125. {
  19126. front: {
  19127. height: math.unit(7 + 6 / 12, "feet"),
  19128. weight: math.unit(288, "lb"),
  19129. name: "Front",
  19130. image: {
  19131. source: "./media/characters/alana/front.svg",
  19132. extra: 679 / 653,
  19133. bottom: 22.5 / 701
  19134. }
  19135. },
  19136. },
  19137. [
  19138. {
  19139. name: "Normal",
  19140. height: math.unit(7 + 6 / 12, "feet")
  19141. },
  19142. {
  19143. name: "Large",
  19144. height: math.unit(50, "feet")
  19145. },
  19146. {
  19147. name: "Macro",
  19148. height: math.unit(100, "feet"),
  19149. default: true
  19150. },
  19151. {
  19152. name: "Macro+",
  19153. height: math.unit(200, "feet")
  19154. },
  19155. ]
  19156. ))
  19157. characterMakers.push(() => makeCharacter(
  19158. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19159. {
  19160. front: {
  19161. height: math.unit(6 + 1 / 12, "feet"),
  19162. weight: math.unit(210, "lb"),
  19163. name: "Front",
  19164. image: {
  19165. source: "./media/characters/hasani/front.svg",
  19166. extra: 244 / 232,
  19167. bottom: 0.01
  19168. }
  19169. },
  19170. back: {
  19171. height: math.unit(6 + 1 / 12, "feet"),
  19172. weight: math.unit(210, "lb"),
  19173. name: "Back",
  19174. image: {
  19175. source: "./media/characters/hasani/back.svg",
  19176. extra: 244 / 232,
  19177. bottom: 0.01
  19178. }
  19179. },
  19180. },
  19181. [
  19182. {
  19183. name: "Normal",
  19184. height: math.unit(6 + 1 / 12, "feet")
  19185. },
  19186. {
  19187. name: "Macro",
  19188. height: math.unit(175, "feet"),
  19189. default: true
  19190. },
  19191. ]
  19192. ))
  19193. characterMakers.push(() => makeCharacter(
  19194. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19195. {
  19196. front: {
  19197. height: math.unit(1.82, "meters"),
  19198. weight: math.unit(140, "lb"),
  19199. name: "Front",
  19200. image: {
  19201. source: "./media/characters/nita/front.svg",
  19202. extra: 2473 / 2363,
  19203. bottom: 0.01
  19204. }
  19205. },
  19206. },
  19207. [
  19208. {
  19209. name: "Normal",
  19210. height: math.unit(1.82, "m")
  19211. },
  19212. {
  19213. name: "Macro",
  19214. height: math.unit(300, "m")
  19215. },
  19216. {
  19217. name: "Mistake Canon",
  19218. height: math.unit(0.5, "miles"),
  19219. default: true
  19220. },
  19221. {
  19222. name: "Big Mistake",
  19223. height: math.unit(13, "miles")
  19224. },
  19225. {
  19226. name: "Playing God",
  19227. height: math.unit(2450, "miles")
  19228. },
  19229. ]
  19230. ))
  19231. characterMakers.push(() => makeCharacter(
  19232. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19233. {
  19234. front: {
  19235. height: math.unit(4, "feet"),
  19236. weight: math.unit(120, "lb"),
  19237. name: "Front",
  19238. image: {
  19239. source: "./media/characters/shiriko/front.svg",
  19240. extra: 970/934,
  19241. bottom: 5/975
  19242. }
  19243. },
  19244. },
  19245. [
  19246. {
  19247. name: "Normal",
  19248. height: math.unit(4, "feet"),
  19249. default: true
  19250. },
  19251. ]
  19252. ))
  19253. characterMakers.push(() => makeCharacter(
  19254. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19255. {
  19256. front: {
  19257. height: math.unit(6, "feet"),
  19258. name: "front",
  19259. image: {
  19260. source: "./media/characters/deja/front.svg",
  19261. extra: 926 / 840,
  19262. bottom: 0.07
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Planck Length",
  19269. height: math.unit(1.6e-35, "meters")
  19270. },
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(30.48, "meters"),
  19274. default: true
  19275. },
  19276. {
  19277. name: "Universal",
  19278. height: math.unit(8.8e26, "meters")
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19284. {
  19285. side: {
  19286. height: math.unit(8, "feet"),
  19287. weight: math.unit(6300, "lb"),
  19288. name: "Side",
  19289. image: {
  19290. source: "./media/characters/anima/side.svg",
  19291. bottom: 0.035
  19292. }
  19293. },
  19294. },
  19295. [
  19296. {
  19297. name: "Normal",
  19298. height: math.unit(8, "feet"),
  19299. default: true
  19300. },
  19301. ]
  19302. ))
  19303. characterMakers.push(() => makeCharacter(
  19304. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19305. {
  19306. front: {
  19307. height: math.unit(8, "feet"),
  19308. weight: math.unit(350, "lb"),
  19309. name: "Front",
  19310. image: {
  19311. source: "./media/characters/bianca/front.svg",
  19312. extra: 234 / 225,
  19313. bottom: 0.03
  19314. }
  19315. },
  19316. },
  19317. [
  19318. {
  19319. name: "Normal",
  19320. height: math.unit(8, "feet"),
  19321. default: true
  19322. },
  19323. ]
  19324. ))
  19325. characterMakers.push(() => makeCharacter(
  19326. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19327. {
  19328. front: {
  19329. height: math.unit(11 + 5/12, "feet"),
  19330. weight: math.unit(1200, "lb"),
  19331. name: "Front",
  19332. image: {
  19333. source: "./media/characters/adinia/front.svg",
  19334. extra: 1767/1641,
  19335. bottom: 44/1811
  19336. },
  19337. extraAttributes: {
  19338. "energyIntake": {
  19339. name: "Energy Intake",
  19340. power: 3,
  19341. type: "energy",
  19342. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19343. },
  19344. }
  19345. },
  19346. back: {
  19347. height: math.unit(11 + 5/12, "feet"),
  19348. weight: math.unit(1200, "lb"),
  19349. name: "Back",
  19350. image: {
  19351. source: "./media/characters/adinia/back.svg",
  19352. extra: 1834/1684,
  19353. bottom: 14/1848
  19354. },
  19355. extraAttributes: {
  19356. "energyIntake": {
  19357. name: "Energy Intake",
  19358. power: 3,
  19359. type: "energy",
  19360. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19361. },
  19362. }
  19363. },
  19364. maw: {
  19365. height: math.unit(3.79, "feet"),
  19366. name: "Maw",
  19367. image: {
  19368. source: "./media/characters/adinia/maw.svg"
  19369. }
  19370. },
  19371. rump: {
  19372. height: math.unit(4.6, "feet"),
  19373. name: "Rump",
  19374. image: {
  19375. source: "./media/characters/adinia/rump.svg"
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(11 + 5 / 12, "feet"),
  19383. default: true
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19389. {
  19390. front: {
  19391. height: math.unit(3, "meters"),
  19392. weight: math.unit(200, "kg"),
  19393. name: "Front",
  19394. image: {
  19395. source: "./media/characters/lykasa/front.svg",
  19396. extra: 1076 / 976,
  19397. bottom: 0.06
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Normal",
  19404. height: math.unit(3, "meters")
  19405. },
  19406. {
  19407. name: "Kaiju",
  19408. height: math.unit(120, "meters"),
  19409. default: true
  19410. },
  19411. {
  19412. name: "Mega Kaiju",
  19413. height: math.unit(240, "km")
  19414. },
  19415. {
  19416. name: "Giga Kaiju",
  19417. height: math.unit(400, "megameters")
  19418. },
  19419. {
  19420. name: "Tera Kaiju",
  19421. height: math.unit(800, "gigameters")
  19422. },
  19423. {
  19424. name: "Kaiju Dragon Goddess",
  19425. height: math.unit(26, "zettaparsecs")
  19426. },
  19427. ]
  19428. ))
  19429. characterMakers.push(() => makeCharacter(
  19430. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19431. {
  19432. side: {
  19433. height: math.unit(283 / 124 * 6, "feet"),
  19434. weight: math.unit(35000, "lb"),
  19435. name: "Side",
  19436. image: {
  19437. source: "./media/characters/malfaren/side.svg",
  19438. extra: 1310/529,
  19439. bottom: 24/1334
  19440. }
  19441. },
  19442. front: {
  19443. height: math.unit(22.36, "feet"),
  19444. weight: math.unit(35000, "lb"),
  19445. name: "Front",
  19446. image: {
  19447. source: "./media/characters/malfaren/front.svg",
  19448. extra: 1237/1115,
  19449. bottom: 32/1269
  19450. }
  19451. },
  19452. maw: {
  19453. height: math.unit(6.9, "feet"),
  19454. name: "Maw",
  19455. image: {
  19456. source: "./media/characters/malfaren/maw.svg"
  19457. }
  19458. },
  19459. dick: {
  19460. height: math.unit(6.19, "feet"),
  19461. name: "Dick",
  19462. image: {
  19463. source: "./media/characters/malfaren/dick.svg"
  19464. }
  19465. },
  19466. eye: {
  19467. height: math.unit(0.69, "feet"),
  19468. name: "Eye",
  19469. image: {
  19470. source: "./media/characters/malfaren/eye.svg"
  19471. }
  19472. },
  19473. },
  19474. [
  19475. {
  19476. name: "Big",
  19477. height: math.unit(283 / 162 * 6, "feet"),
  19478. },
  19479. {
  19480. name: "Bigger",
  19481. height: math.unit(283 / 124 * 6, "feet")
  19482. },
  19483. {
  19484. name: "Massive",
  19485. height: math.unit(283 / 92 * 6, "feet"),
  19486. default: true
  19487. },
  19488. {
  19489. name: "👀💦",
  19490. height: math.unit(283 / 73 * 6, "feet"),
  19491. },
  19492. ]
  19493. ))
  19494. characterMakers.push(() => makeCharacter(
  19495. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19496. {
  19497. front: {
  19498. height: math.unit(1.7, "m"),
  19499. weight: math.unit(70, "kg"),
  19500. name: "Front",
  19501. image: {
  19502. source: "./media/characters/kernel/front.svg",
  19503. extra: 222 / 210,
  19504. bottom: 0.007
  19505. }
  19506. },
  19507. },
  19508. [
  19509. {
  19510. name: "Nano",
  19511. height: math.unit(17, "micrometers")
  19512. },
  19513. {
  19514. name: "Micro",
  19515. height: math.unit(1.7, "mm")
  19516. },
  19517. {
  19518. name: "Small",
  19519. height: math.unit(1.7, "cm")
  19520. },
  19521. {
  19522. name: "Normal",
  19523. height: math.unit(1.7, "m"),
  19524. default: true
  19525. },
  19526. ]
  19527. ))
  19528. characterMakers.push(() => makeCharacter(
  19529. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19530. {
  19531. front: {
  19532. height: math.unit(1.75, "meters"),
  19533. weight: math.unit(65, "kg"),
  19534. name: "Front",
  19535. image: {
  19536. source: "./media/characters/jayne-folest/front.svg",
  19537. extra: 2115 / 2007,
  19538. bottom: 0.02
  19539. }
  19540. },
  19541. back: {
  19542. height: math.unit(1.75, "meters"),
  19543. weight: math.unit(65, "kg"),
  19544. name: "Back",
  19545. image: {
  19546. source: "./media/characters/jayne-folest/back.svg",
  19547. extra: 2115 / 2007,
  19548. bottom: 0.005
  19549. }
  19550. },
  19551. frontClothed: {
  19552. height: math.unit(1.75, "meters"),
  19553. weight: math.unit(65, "kg"),
  19554. name: "Front (Clothed)",
  19555. image: {
  19556. source: "./media/characters/jayne-folest/front-clothed.svg",
  19557. extra: 2115 / 2007,
  19558. bottom: 0.035
  19559. }
  19560. },
  19561. hand: {
  19562. height: math.unit(1 / 1.260, "feet"),
  19563. name: "Hand",
  19564. image: {
  19565. source: "./media/characters/jayne-folest/hand.svg"
  19566. }
  19567. },
  19568. foot: {
  19569. height: math.unit(1 / 0.918, "feet"),
  19570. name: "Foot",
  19571. image: {
  19572. source: "./media/characters/jayne-folest/foot.svg"
  19573. }
  19574. },
  19575. },
  19576. [
  19577. {
  19578. name: "Micro",
  19579. height: math.unit(4, "cm")
  19580. },
  19581. {
  19582. name: "Normal",
  19583. height: math.unit(1.75, "meters")
  19584. },
  19585. {
  19586. name: "Macro",
  19587. height: math.unit(47.5, "meters"),
  19588. default: true
  19589. },
  19590. ]
  19591. ))
  19592. characterMakers.push(() => makeCharacter(
  19593. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19594. {
  19595. front: {
  19596. height: math.unit(180, "cm"),
  19597. weight: math.unit(70, "kg"),
  19598. name: "Front",
  19599. image: {
  19600. source: "./media/characters/algier/front.svg",
  19601. extra: 596 / 572,
  19602. bottom: 0.04
  19603. }
  19604. },
  19605. back: {
  19606. height: math.unit(180, "cm"),
  19607. weight: math.unit(70, "kg"),
  19608. name: "Back",
  19609. image: {
  19610. source: "./media/characters/algier/back.svg",
  19611. extra: 596 / 572,
  19612. bottom: 0.025
  19613. }
  19614. },
  19615. frontdressed: {
  19616. height: math.unit(180, "cm"),
  19617. weight: math.unit(150, "kg"),
  19618. name: "Front-dressed",
  19619. image: {
  19620. source: "./media/characters/algier/front-dressed.svg",
  19621. extra: 596 / 572,
  19622. bottom: 0.038
  19623. }
  19624. },
  19625. },
  19626. [
  19627. {
  19628. name: "Micro",
  19629. height: math.unit(5, "cm")
  19630. },
  19631. {
  19632. name: "Normal",
  19633. height: math.unit(180, "cm"),
  19634. default: true
  19635. },
  19636. {
  19637. name: "Macro",
  19638. height: math.unit(64, "m")
  19639. },
  19640. ]
  19641. ))
  19642. characterMakers.push(() => makeCharacter(
  19643. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19644. {
  19645. upright: {
  19646. height: math.unit(7, "feet"),
  19647. weight: math.unit(300, "lb"),
  19648. name: "Upright",
  19649. image: {
  19650. source: "./media/characters/pretzel/upright.svg",
  19651. extra: 534 / 522,
  19652. bottom: 0.065
  19653. }
  19654. },
  19655. sprawling: {
  19656. height: math.unit(3.75, "feet"),
  19657. weight: math.unit(300, "lb"),
  19658. name: "Sprawling",
  19659. image: {
  19660. source: "./media/characters/pretzel/sprawling.svg",
  19661. extra: 314 / 281,
  19662. bottom: 0.1
  19663. }
  19664. },
  19665. tongue: {
  19666. height: math.unit(2, "feet"),
  19667. name: "Tongue",
  19668. image: {
  19669. source: "./media/characters/pretzel/tongue.svg"
  19670. }
  19671. },
  19672. },
  19673. [
  19674. {
  19675. name: "Normal",
  19676. height: math.unit(7, "feet"),
  19677. default: true
  19678. },
  19679. {
  19680. name: "Oversized",
  19681. height: math.unit(15, "feet")
  19682. },
  19683. {
  19684. name: "Huge",
  19685. height: math.unit(30, "feet")
  19686. },
  19687. {
  19688. name: "Macro",
  19689. height: math.unit(250, "feet")
  19690. },
  19691. ]
  19692. ))
  19693. characterMakers.push(() => makeCharacter(
  19694. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19695. {
  19696. sideFront: {
  19697. height: math.unit(5 + 2 / 12, "feet"),
  19698. weight: math.unit(120, "lb"),
  19699. name: "Front Side",
  19700. image: {
  19701. source: "./media/characters/roxi/side-front.svg",
  19702. extra: 2924 / 2717,
  19703. bottom: 0.08
  19704. }
  19705. },
  19706. sideBack: {
  19707. height: math.unit(5 + 2 / 12, "feet"),
  19708. weight: math.unit(120, "lb"),
  19709. name: "Back Side",
  19710. image: {
  19711. source: "./media/characters/roxi/side-back.svg",
  19712. extra: 2904 / 2693,
  19713. bottom: 0.06
  19714. }
  19715. },
  19716. front: {
  19717. height: math.unit(5 + 2 / 12, "feet"),
  19718. weight: math.unit(120, "lb"),
  19719. name: "Front",
  19720. image: {
  19721. source: "./media/characters/roxi/front.svg",
  19722. extra: 2028 / 1907,
  19723. bottom: 0.01
  19724. }
  19725. },
  19726. frontAlt: {
  19727. height: math.unit(5 + 2 / 12, "feet"),
  19728. weight: math.unit(120, "lb"),
  19729. name: "Front (Alt)",
  19730. image: {
  19731. source: "./media/characters/roxi/front-alt.svg",
  19732. extra: 1828 / 1798,
  19733. bottom: 0.01
  19734. }
  19735. },
  19736. sitting: {
  19737. height: math.unit(2.8, "feet"),
  19738. weight: math.unit(120, "lb"),
  19739. name: "Sitting",
  19740. image: {
  19741. source: "./media/characters/roxi/sitting.svg",
  19742. extra: 2660 / 2462,
  19743. bottom: 0.1
  19744. }
  19745. },
  19746. },
  19747. [
  19748. {
  19749. name: "Normal",
  19750. height: math.unit(5 + 2 / 12, "feet"),
  19751. default: true
  19752. },
  19753. ]
  19754. ))
  19755. characterMakers.push(() => makeCharacter(
  19756. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19757. {
  19758. side: {
  19759. height: math.unit(55, "feet"),
  19760. weight: math.unit(153, "tons"),
  19761. name: "Side",
  19762. image: {
  19763. source: "./media/characters/shadow/side.svg",
  19764. extra: 701 / 628,
  19765. bottom: 0.02
  19766. }
  19767. },
  19768. flying: {
  19769. height: math.unit(145, "feet"),
  19770. weight: math.unit(153, "tons"),
  19771. name: "Flying",
  19772. image: {
  19773. source: "./media/characters/shadow/flying.svg"
  19774. }
  19775. },
  19776. },
  19777. [
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(55, "feet"),
  19781. default: true
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19787. {
  19788. front: {
  19789. height: math.unit(6, "feet"),
  19790. weight: math.unit(200, "lb"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/marcie/front.svg",
  19794. extra: 960 / 876,
  19795. bottom: 58 / 1017.87
  19796. }
  19797. },
  19798. },
  19799. [
  19800. {
  19801. name: "Macro",
  19802. height: math.unit(1, "mile"),
  19803. default: true
  19804. },
  19805. ]
  19806. ))
  19807. characterMakers.push(() => makeCharacter(
  19808. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19809. {
  19810. front: {
  19811. height: math.unit(7, "feet"),
  19812. weight: math.unit(200, "lb"),
  19813. name: "Front",
  19814. image: {
  19815. source: "./media/characters/kachina/front.svg",
  19816. extra: 1290.68 / 1119,
  19817. bottom: 36.5 / 1327.18
  19818. }
  19819. },
  19820. },
  19821. [
  19822. {
  19823. name: "Normal",
  19824. height: math.unit(7, "feet"),
  19825. default: true
  19826. },
  19827. ]
  19828. ))
  19829. characterMakers.push(() => makeCharacter(
  19830. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19831. {
  19832. looking: {
  19833. height: math.unit(2, "meters"),
  19834. weight: math.unit(300, "kg"),
  19835. name: "Looking",
  19836. image: {
  19837. source: "./media/characters/kash/looking.svg",
  19838. extra: 474 / 344,
  19839. bottom: 0.03
  19840. }
  19841. },
  19842. side: {
  19843. height: math.unit(2, "meters"),
  19844. weight: math.unit(300, "kg"),
  19845. name: "Side",
  19846. image: {
  19847. source: "./media/characters/kash/side.svg",
  19848. extra: 302 / 251,
  19849. bottom: 0.03
  19850. }
  19851. },
  19852. front: {
  19853. height: math.unit(2, "meters"),
  19854. weight: math.unit(300, "kg"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/kash/front.svg",
  19858. extra: 495 / 360,
  19859. bottom: 0.015
  19860. }
  19861. },
  19862. },
  19863. [
  19864. {
  19865. name: "Normal",
  19866. height: math.unit(2, "meters"),
  19867. default: true
  19868. },
  19869. {
  19870. name: "Big",
  19871. height: math.unit(3, "meters")
  19872. },
  19873. {
  19874. name: "Large",
  19875. height: math.unit(5, "meters")
  19876. },
  19877. ]
  19878. ))
  19879. characterMakers.push(() => makeCharacter(
  19880. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19881. {
  19882. feeding: {
  19883. height: math.unit(6.7, "feet"),
  19884. weight: math.unit(350, "lb"),
  19885. name: "Feeding",
  19886. image: {
  19887. source: "./media/characters/lalim/feeding.svg",
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(6.7, "feet"),
  19895. default: true
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19901. {
  19902. front: {
  19903. height: math.unit(9.5, "feet"),
  19904. weight: math.unit(600, "lb"),
  19905. name: "Front",
  19906. image: {
  19907. source: "./media/characters/de'vout/front.svg",
  19908. extra: 1443 / 1328,
  19909. bottom: 0.025
  19910. }
  19911. },
  19912. back: {
  19913. height: math.unit(9.5, "feet"),
  19914. weight: math.unit(600, "lb"),
  19915. name: "Back",
  19916. image: {
  19917. source: "./media/characters/de'vout/back.svg",
  19918. extra: 1443 / 1328
  19919. }
  19920. },
  19921. frontDressed: {
  19922. height: math.unit(9.5, "feet"),
  19923. weight: math.unit(600, "lb"),
  19924. name: "Front (Dressed",
  19925. image: {
  19926. source: "./media/characters/de'vout/front-dressed.svg",
  19927. extra: 1443 / 1328,
  19928. bottom: 0.025
  19929. }
  19930. },
  19931. backDressed: {
  19932. height: math.unit(9.5, "feet"),
  19933. weight: math.unit(600, "lb"),
  19934. name: "Back (Dressed",
  19935. image: {
  19936. source: "./media/characters/de'vout/back-dressed.svg",
  19937. extra: 1443 / 1328
  19938. }
  19939. },
  19940. },
  19941. [
  19942. {
  19943. name: "Normal",
  19944. height: math.unit(9.5, "feet"),
  19945. default: true
  19946. },
  19947. ]
  19948. ))
  19949. characterMakers.push(() => makeCharacter(
  19950. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19951. {
  19952. front: {
  19953. height: math.unit(8, "feet"),
  19954. weight: math.unit(225, "lb"),
  19955. name: "Front",
  19956. image: {
  19957. source: "./media/characters/talana/front.svg",
  19958. extra: 1410 / 1300,
  19959. bottom: 0.015
  19960. }
  19961. },
  19962. frontDressed: {
  19963. height: math.unit(8, "feet"),
  19964. weight: math.unit(225, "lb"),
  19965. name: "Front (Dressed",
  19966. image: {
  19967. source: "./media/characters/talana/front-dressed.svg",
  19968. extra: 1410 / 1300,
  19969. bottom: 0.015
  19970. }
  19971. },
  19972. },
  19973. [
  19974. {
  19975. name: "Normal",
  19976. height: math.unit(8, "feet"),
  19977. default: true
  19978. },
  19979. ]
  19980. ))
  19981. characterMakers.push(() => makeCharacter(
  19982. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19983. {
  19984. side: {
  19985. height: math.unit(7.2, "feet"),
  19986. weight: math.unit(150, "lb"),
  19987. name: "Side",
  19988. image: {
  19989. source: "./media/characters/xeauvok/side.svg",
  19990. extra: 1975 / 1523,
  19991. bottom: 0.07
  19992. }
  19993. },
  19994. },
  19995. [
  19996. {
  19997. name: "Normal",
  19998. height: math.unit(7.2, "feet"),
  19999. default: true
  20000. },
  20001. ]
  20002. ))
  20003. characterMakers.push(() => makeCharacter(
  20004. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20005. {
  20006. side: {
  20007. height: math.unit(4, "meters"),
  20008. weight: math.unit(2200, "kg"),
  20009. name: "Side",
  20010. image: {
  20011. source: "./media/characters/zara/side.svg",
  20012. extra: 765/744,
  20013. bottom: 156/921
  20014. }
  20015. },
  20016. },
  20017. [
  20018. {
  20019. name: "Normal",
  20020. height: math.unit(4, "meters"),
  20021. default: true
  20022. },
  20023. ]
  20024. ))
  20025. characterMakers.push(() => makeCharacter(
  20026. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20027. {
  20028. side: {
  20029. height: math.unit(6, "feet"),
  20030. weight: math.unit(150, "lb"),
  20031. name: "Side",
  20032. image: {
  20033. source: "./media/characters/richard-dragon/side.svg",
  20034. extra: 845 / 340,
  20035. bottom: 0.017
  20036. }
  20037. },
  20038. maw: {
  20039. height: math.unit(2.97, "feet"),
  20040. name: "Maw",
  20041. image: {
  20042. source: "./media/characters/richard-dragon/maw.svg"
  20043. }
  20044. },
  20045. },
  20046. [
  20047. ]
  20048. ))
  20049. characterMakers.push(() => makeCharacter(
  20050. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20051. {
  20052. front: {
  20053. height: math.unit(4, "feet"),
  20054. weight: math.unit(100, "lb"),
  20055. name: "Front",
  20056. image: {
  20057. source: "./media/characters/richard-smeargle/front.svg",
  20058. extra: 2952 / 2820,
  20059. bottom: 0.028
  20060. }
  20061. },
  20062. },
  20063. [
  20064. {
  20065. name: "Normal",
  20066. height: math.unit(4, "feet"),
  20067. default: true
  20068. },
  20069. {
  20070. name: "Dynamax",
  20071. height: math.unit(20, "meters")
  20072. },
  20073. ]
  20074. ))
  20075. characterMakers.push(() => makeCharacter(
  20076. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20077. {
  20078. front: {
  20079. height: math.unit(6, "feet"),
  20080. weight: math.unit(110, "lb"),
  20081. name: "Front",
  20082. image: {
  20083. source: "./media/characters/klay/front.svg",
  20084. extra: 962 / 883,
  20085. bottom: 0.04
  20086. }
  20087. },
  20088. back: {
  20089. height: math.unit(6, "feet"),
  20090. weight: math.unit(110, "lb"),
  20091. name: "Back",
  20092. image: {
  20093. source: "./media/characters/klay/back.svg",
  20094. extra: 962 / 883
  20095. }
  20096. },
  20097. beans: {
  20098. height: math.unit(1.15, "feet"),
  20099. name: "Beans",
  20100. image: {
  20101. source: "./media/characters/klay/beans.svg"
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Micro",
  20108. height: math.unit(6, "inches")
  20109. },
  20110. {
  20111. name: "Mini",
  20112. height: math.unit(3, "feet")
  20113. },
  20114. {
  20115. name: "Normal",
  20116. height: math.unit(6, "feet"),
  20117. default: true
  20118. },
  20119. {
  20120. name: "Big",
  20121. height: math.unit(25, "feet")
  20122. },
  20123. {
  20124. name: "Macro",
  20125. height: math.unit(100, "feet")
  20126. },
  20127. {
  20128. name: "Megamacro",
  20129. height: math.unit(400, "feet")
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(6, "feet"),
  20138. weight: math.unit(160, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/marcus/front.svg",
  20142. extra: 734 / 676,
  20143. bottom: 0.03
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Little",
  20150. height: math.unit(6, "feet")
  20151. },
  20152. {
  20153. name: "Normal",
  20154. height: math.unit(110, "feet"),
  20155. default: true
  20156. },
  20157. {
  20158. name: "Macro",
  20159. height: math.unit(250, "feet")
  20160. },
  20161. {
  20162. name: "Megamacro",
  20163. height: math.unit(1000, "feet")
  20164. },
  20165. ]
  20166. ))
  20167. characterMakers.push(() => makeCharacter(
  20168. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20169. {
  20170. front: {
  20171. height: math.unit(7, "feet"),
  20172. weight: math.unit(275, "lb"),
  20173. name: "Front",
  20174. image: {
  20175. source: "./media/characters/claude-delroute/front.svg",
  20176. extra: 902/827,
  20177. bottom: 26/928
  20178. }
  20179. },
  20180. side: {
  20181. height: math.unit(7, "feet"),
  20182. weight: math.unit(275, "lb"),
  20183. name: "Side",
  20184. image: {
  20185. source: "./media/characters/claude-delroute/side.svg",
  20186. extra: 908/853,
  20187. bottom: 16/924
  20188. }
  20189. },
  20190. back: {
  20191. height: math.unit(7, "feet"),
  20192. weight: math.unit(275, "lb"),
  20193. name: "Back",
  20194. image: {
  20195. source: "./media/characters/claude-delroute/back.svg",
  20196. extra: 911/829,
  20197. bottom: 18/929
  20198. }
  20199. },
  20200. maw: {
  20201. height: math.unit(0.6407, "meters"),
  20202. name: "Maw",
  20203. image: {
  20204. source: "./media/characters/claude-delroute/maw.svg"
  20205. }
  20206. },
  20207. },
  20208. [
  20209. {
  20210. name: "Normal",
  20211. height: math.unit(7, "feet"),
  20212. default: true
  20213. },
  20214. {
  20215. name: "Lorge",
  20216. height: math.unit(20, "feet")
  20217. },
  20218. ]
  20219. ))
  20220. characterMakers.push(() => makeCharacter(
  20221. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20222. {
  20223. front: {
  20224. height: math.unit(8 + 4 / 12, "feet"),
  20225. weight: math.unit(600, "lb"),
  20226. name: "Front",
  20227. image: {
  20228. source: "./media/characters/dragonien/front.svg",
  20229. extra: 100 / 94,
  20230. bottom: 3.3 / 103.3445
  20231. }
  20232. },
  20233. back: {
  20234. height: math.unit(8 + 4 / 12, "feet"),
  20235. weight: math.unit(600, "lb"),
  20236. name: "Back",
  20237. image: {
  20238. source: "./media/characters/dragonien/back.svg",
  20239. extra: 776 / 746,
  20240. bottom: 6.4 / 782.0616
  20241. }
  20242. },
  20243. foot: {
  20244. height: math.unit(1.54, "feet"),
  20245. name: "Foot",
  20246. image: {
  20247. source: "./media/characters/dragonien/foot.svg",
  20248. }
  20249. },
  20250. },
  20251. [
  20252. {
  20253. name: "Normal",
  20254. height: math.unit(8 + 4 / 12, "feet"),
  20255. default: true
  20256. },
  20257. {
  20258. name: "Macro",
  20259. height: math.unit(200, "feet")
  20260. },
  20261. {
  20262. name: "Megamacro",
  20263. height: math.unit(1, "mile")
  20264. },
  20265. {
  20266. name: "Gigamacro",
  20267. height: math.unit(1000, "miles")
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20273. {
  20274. front: {
  20275. height: math.unit(5 + 2 / 12, "feet"),
  20276. weight: math.unit(110, "lb"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/desta/front.svg",
  20280. extra: 767 / 726,
  20281. bottom: 11.7 / 779
  20282. }
  20283. },
  20284. back: {
  20285. height: math.unit(5 + 2 / 12, "feet"),
  20286. weight: math.unit(110, "lb"),
  20287. name: "Back",
  20288. image: {
  20289. source: "./media/characters/desta/back.svg",
  20290. extra: 777 / 728,
  20291. bottom: 6 / 784
  20292. }
  20293. },
  20294. frontAlt: {
  20295. height: math.unit(5 + 2 / 12, "feet"),
  20296. weight: math.unit(110, "lb"),
  20297. name: "Front",
  20298. image: {
  20299. source: "./media/characters/desta/front-alt.svg",
  20300. extra: 1482 / 1417
  20301. }
  20302. },
  20303. side: {
  20304. height: math.unit(5 + 2 / 12, "feet"),
  20305. weight: math.unit(110, "lb"),
  20306. name: "Side",
  20307. image: {
  20308. source: "./media/characters/desta/side.svg",
  20309. extra: 2579 / 2491,
  20310. bottom: 0.053
  20311. }
  20312. },
  20313. },
  20314. [
  20315. {
  20316. name: "Micro",
  20317. height: math.unit(6, "inches")
  20318. },
  20319. {
  20320. name: "Normal",
  20321. height: math.unit(5 + 2 / 12, "feet"),
  20322. default: true
  20323. },
  20324. {
  20325. name: "Macro",
  20326. height: math.unit(62, "feet")
  20327. },
  20328. {
  20329. name: "Megamacro",
  20330. height: math.unit(1800, "feet")
  20331. },
  20332. ]
  20333. ))
  20334. characterMakers.push(() => makeCharacter(
  20335. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20336. {
  20337. front: {
  20338. height: math.unit(10, "feet"),
  20339. weight: math.unit(700, "lb"),
  20340. name: "Front",
  20341. image: {
  20342. source: "./media/characters/storm-alystar/front.svg",
  20343. extra: 2112 / 1898,
  20344. bottom: 0.034
  20345. }
  20346. },
  20347. },
  20348. [
  20349. {
  20350. name: "Micro",
  20351. height: math.unit(3.5, "inches")
  20352. },
  20353. {
  20354. name: "Normal",
  20355. height: math.unit(10, "feet"),
  20356. default: true
  20357. },
  20358. {
  20359. name: "Macro",
  20360. height: math.unit(400, "feet")
  20361. },
  20362. {
  20363. name: "Deific",
  20364. height: math.unit(60, "miles")
  20365. },
  20366. ]
  20367. ))
  20368. characterMakers.push(() => makeCharacter(
  20369. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20370. {
  20371. front: {
  20372. height: math.unit(2.35, "meters"),
  20373. weight: math.unit(119, "kg"),
  20374. name: "Front",
  20375. image: {
  20376. source: "./media/characters/ilia/front.svg",
  20377. extra: 1285 / 1255,
  20378. bottom: 0.06
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Normal",
  20385. height: math.unit(2.35, "meters")
  20386. },
  20387. {
  20388. name: "Macro",
  20389. height: math.unit(140, "meters"),
  20390. default: true
  20391. },
  20392. {
  20393. name: "Megamacro",
  20394. height: math.unit(100, "miles")
  20395. },
  20396. ]
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20400. {
  20401. front: {
  20402. height: math.unit(6 + 5 / 12, "feet"),
  20403. weight: math.unit(190, "lb"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/kingdead/front.svg",
  20407. extra: 1228 / 1177
  20408. }
  20409. },
  20410. },
  20411. [
  20412. {
  20413. name: "Micro",
  20414. height: math.unit(7, "inches")
  20415. },
  20416. {
  20417. name: "Normal",
  20418. height: math.unit(6 + 5 / 12, "feet")
  20419. },
  20420. {
  20421. name: "Macro",
  20422. height: math.unit(150, "feet"),
  20423. default: true
  20424. },
  20425. {
  20426. name: "Megamacro",
  20427. height: math.unit(200, "miles")
  20428. },
  20429. ]
  20430. ))
  20431. characterMakers.push(() => makeCharacter(
  20432. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20433. {
  20434. front: {
  20435. height: math.unit(8, "feet"),
  20436. weight: math.unit(600, "lb"),
  20437. name: "Front",
  20438. image: {
  20439. source: "./media/characters/kyrehx/front.svg",
  20440. extra: 1195 / 1095,
  20441. bottom: 0.034
  20442. }
  20443. },
  20444. },
  20445. [
  20446. {
  20447. name: "Micro",
  20448. height: math.unit(2, "inches")
  20449. },
  20450. {
  20451. name: "Normal",
  20452. height: math.unit(8, "feet"),
  20453. default: true
  20454. },
  20455. {
  20456. name: "Macro",
  20457. height: math.unit(255, "feet")
  20458. },
  20459. ]
  20460. ))
  20461. characterMakers.push(() => makeCharacter(
  20462. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20463. {
  20464. front: {
  20465. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20466. weight: math.unit(184, "lb"),
  20467. name: "Front",
  20468. image: {
  20469. source: "./media/characters/xang/front.svg",
  20470. extra: 845 / 755
  20471. }
  20472. },
  20473. },
  20474. [
  20475. {
  20476. name: "Normal",
  20477. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20478. default: true
  20479. },
  20480. {
  20481. name: "Macro",
  20482. height: math.unit(0.935 * 146, "feet")
  20483. },
  20484. {
  20485. name: "Megamacro",
  20486. height: math.unit(0.935 * 3, "miles")
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20492. {
  20493. frontDressed: {
  20494. height: math.unit(5 + 7 / 12, "feet"),
  20495. weight: math.unit(140, "lb"),
  20496. name: "Front (Dressed)",
  20497. image: {
  20498. source: "./media/characters/doc-weardno/front-dressed.svg",
  20499. extra: 263 / 234
  20500. }
  20501. },
  20502. backDressed: {
  20503. height: math.unit(5 + 7 / 12, "feet"),
  20504. weight: math.unit(140, "lb"),
  20505. name: "Back (Dressed)",
  20506. image: {
  20507. source: "./media/characters/doc-weardno/back-dressed.svg",
  20508. extra: 266 / 238
  20509. }
  20510. },
  20511. front: {
  20512. height: math.unit(5 + 7 / 12, "feet"),
  20513. weight: math.unit(140, "lb"),
  20514. name: "Front",
  20515. image: {
  20516. source: "./media/characters/doc-weardno/front.svg",
  20517. extra: 254 / 233
  20518. }
  20519. },
  20520. },
  20521. [
  20522. {
  20523. name: "Micro",
  20524. height: math.unit(3, "inches")
  20525. },
  20526. {
  20527. name: "Normal",
  20528. height: math.unit(5 + 7 / 12, "feet"),
  20529. default: true
  20530. },
  20531. {
  20532. name: "Macro",
  20533. height: math.unit(25, "feet")
  20534. },
  20535. {
  20536. name: "Megamacro",
  20537. height: math.unit(2, "miles")
  20538. },
  20539. ]
  20540. ))
  20541. characterMakers.push(() => makeCharacter(
  20542. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20543. {
  20544. front: {
  20545. height: math.unit(6 + 2 / 12, "feet"),
  20546. weight: math.unit(153, "lb"),
  20547. name: "Front",
  20548. image: {
  20549. source: "./media/characters/seth-whilst/front.svg",
  20550. bottom: 0.07
  20551. }
  20552. },
  20553. },
  20554. [
  20555. {
  20556. name: "Micro",
  20557. height: math.unit(5, "inches")
  20558. },
  20559. {
  20560. name: "Normal",
  20561. height: math.unit(6 + 2 / 12, "feet"),
  20562. default: true
  20563. },
  20564. ]
  20565. ))
  20566. characterMakers.push(() => makeCharacter(
  20567. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20568. {
  20569. front: {
  20570. height: math.unit(3, "inches"),
  20571. weight: math.unit(8, "grams"),
  20572. name: "Front",
  20573. image: {
  20574. source: "./media/characters/pocket-jabari/front.svg",
  20575. extra: 1024 / 974,
  20576. bottom: 0.039
  20577. }
  20578. },
  20579. },
  20580. [
  20581. {
  20582. name: "Minimicro",
  20583. height: math.unit(8, "mm")
  20584. },
  20585. {
  20586. name: "Micro",
  20587. height: math.unit(3, "inches"),
  20588. default: true
  20589. },
  20590. {
  20591. name: "Normal",
  20592. height: math.unit(3, "feet")
  20593. },
  20594. ]
  20595. ))
  20596. characterMakers.push(() => makeCharacter(
  20597. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20598. {
  20599. frontDressed: {
  20600. height: math.unit(15, "feet"),
  20601. weight: math.unit(3280, "lb"),
  20602. name: "Front (Dressed)",
  20603. image: {
  20604. source: "./media/characters/sapphy/front-dressed.svg",
  20605. extra: 1951/1654,
  20606. bottom: 194/2145
  20607. },
  20608. form: "anthro",
  20609. default: true
  20610. },
  20611. backDressed: {
  20612. height: math.unit(15, "feet"),
  20613. weight: math.unit(3280, "lb"),
  20614. name: "Back (Dressed)",
  20615. image: {
  20616. source: "./media/characters/sapphy/back-dressed.svg",
  20617. extra: 2058/1918,
  20618. bottom: 125/2183
  20619. },
  20620. form: "anthro"
  20621. },
  20622. frontNude: {
  20623. height: math.unit(15, "feet"),
  20624. weight: math.unit(3280, "lb"),
  20625. name: "Front (Nude)",
  20626. image: {
  20627. source: "./media/characters/sapphy/front-nude.svg",
  20628. extra: 1951/1654,
  20629. bottom: 194/2145
  20630. },
  20631. form: "anthro"
  20632. },
  20633. backNude: {
  20634. height: math.unit(15, "feet"),
  20635. weight: math.unit(3280, "lb"),
  20636. name: "Back (Nude)",
  20637. image: {
  20638. source: "./media/characters/sapphy/back-nude.svg",
  20639. extra: 2058/1918,
  20640. bottom: 125/2183
  20641. },
  20642. form: "anthro"
  20643. },
  20644. full: {
  20645. height: math.unit(15, "feet"),
  20646. weight: math.unit(3280, "lb"),
  20647. name: "Full",
  20648. image: {
  20649. source: "./media/characters/sapphy/full.svg",
  20650. extra: 1396/1317,
  20651. bottom: 44/1440
  20652. },
  20653. form: "anthro"
  20654. },
  20655. dick: {
  20656. height: math.unit(3.8, "feet"),
  20657. name: "Dick",
  20658. image: {
  20659. source: "./media/characters/sapphy/dick.svg"
  20660. },
  20661. form: "anthro"
  20662. },
  20663. feral: {
  20664. height: math.unit(35, "feet"),
  20665. weight: math.unit(160, "tons"),
  20666. name: "Feral",
  20667. image: {
  20668. source: "./media/characters/sapphy/feral.svg",
  20669. extra: 1050/573,
  20670. bottom: 60/1110
  20671. },
  20672. form: "feral",
  20673. default: true
  20674. },
  20675. },
  20676. [
  20677. {
  20678. name: "Normal",
  20679. height: math.unit(15, "feet"),
  20680. form: "anthro"
  20681. },
  20682. {
  20683. name: "Casual Macro",
  20684. height: math.unit(120, "feet"),
  20685. form: "anthro"
  20686. },
  20687. {
  20688. name: "Macro",
  20689. height: math.unit(2150, "feet"),
  20690. default: true,
  20691. form: "anthro"
  20692. },
  20693. {
  20694. name: "Megamacro",
  20695. height: math.unit(8, "miles"),
  20696. form: "anthro"
  20697. },
  20698. {
  20699. name: "Galaxy Mom",
  20700. height: math.unit(6, "megalightyears"),
  20701. form: "anthro"
  20702. },
  20703. {
  20704. name: "Normal",
  20705. height: math.unit(35, "feet"),
  20706. form: "feral",
  20707. default: true
  20708. },
  20709. {
  20710. name: "Macro",
  20711. height: math.unit(300, "feet"),
  20712. form: "feral"
  20713. },
  20714. {
  20715. name: "Galaxy Mom",
  20716. height: math.unit(10, "megalightyears"),
  20717. form: "feral"
  20718. },
  20719. ],
  20720. {
  20721. "anthro": {
  20722. name: "Anthro",
  20723. default: true
  20724. },
  20725. "feral": {
  20726. name: "Feral"
  20727. }
  20728. }
  20729. ))
  20730. characterMakers.push(() => makeCharacter(
  20731. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20732. {
  20733. hyenaFront: {
  20734. height: math.unit(6, "feet"),
  20735. weight: math.unit(190, "lb"),
  20736. name: "Front",
  20737. image: {
  20738. source: "./media/characters/kiro/hyena-front.svg",
  20739. extra: 927/839,
  20740. bottom: 91/1018
  20741. },
  20742. form: "hyena",
  20743. default: true
  20744. },
  20745. front: {
  20746. height: math.unit(6, "feet"),
  20747. weight: math.unit(170, "lb"),
  20748. name: "Front",
  20749. image: {
  20750. source: "./media/characters/kiro/front.svg",
  20751. extra: 1064 / 1012,
  20752. bottom: 0.052
  20753. },
  20754. form: "folf",
  20755. default: true
  20756. },
  20757. },
  20758. [
  20759. {
  20760. name: "Micro",
  20761. height: math.unit(6, "inches"),
  20762. form: "folf"
  20763. },
  20764. {
  20765. name: "Normal",
  20766. height: math.unit(6, "feet"),
  20767. form: "folf",
  20768. default: true
  20769. },
  20770. {
  20771. name: "Macro",
  20772. height: math.unit(72, "feet"),
  20773. form: "folf"
  20774. },
  20775. {
  20776. name: "Micro",
  20777. height: math.unit(6, "inches"),
  20778. form: "hyena"
  20779. },
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(6, "feet"),
  20783. form: "hyena",
  20784. default: true
  20785. },
  20786. {
  20787. name: "Macro",
  20788. height: math.unit(72, "feet"),
  20789. form: "hyena"
  20790. },
  20791. ],
  20792. {
  20793. "hyena": {
  20794. name: "Hyena",
  20795. default: true
  20796. },
  20797. "folf": {
  20798. name: "Folf",
  20799. },
  20800. }
  20801. ))
  20802. characterMakers.push(() => makeCharacter(
  20803. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20804. {
  20805. front: {
  20806. height: math.unit(5 + 9 / 12, "feet"),
  20807. weight: math.unit(175, "lb"),
  20808. name: "Front",
  20809. image: {
  20810. source: "./media/characters/irishfox/front.svg",
  20811. extra: 1912 / 1680,
  20812. bottom: 0.02
  20813. }
  20814. },
  20815. },
  20816. [
  20817. {
  20818. name: "Nano",
  20819. height: math.unit(1, "mm")
  20820. },
  20821. {
  20822. name: "Micro",
  20823. height: math.unit(2, "inches")
  20824. },
  20825. {
  20826. name: "Normal",
  20827. height: math.unit(5 + 9 / 12, "feet"),
  20828. default: true
  20829. },
  20830. {
  20831. name: "Macro",
  20832. height: math.unit(45, "feet")
  20833. },
  20834. ]
  20835. ))
  20836. characterMakers.push(() => makeCharacter(
  20837. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20838. {
  20839. front: {
  20840. height: math.unit(6 + 1 / 12, "feet"),
  20841. weight: math.unit(75, "lb"),
  20842. name: "Front",
  20843. image: {
  20844. source: "./media/characters/aronai-sieyes/front.svg",
  20845. extra: 1532/1450,
  20846. bottom: 42/1574
  20847. }
  20848. },
  20849. side: {
  20850. height: math.unit(6 + 1 / 12, "feet"),
  20851. weight: math.unit(75, "lb"),
  20852. name: "Side",
  20853. image: {
  20854. source: "./media/characters/aronai-sieyes/side.svg",
  20855. extra: 1422/1365,
  20856. bottom: 148/1570
  20857. }
  20858. },
  20859. back: {
  20860. height: math.unit(6 + 1 / 12, "feet"),
  20861. weight: math.unit(75, "lb"),
  20862. name: "Back",
  20863. image: {
  20864. source: "./media/characters/aronai-sieyes/back.svg",
  20865. extra: 1526/1464,
  20866. bottom: 51/1577
  20867. }
  20868. },
  20869. dressed: {
  20870. height: math.unit(6 + 1 / 12, "feet"),
  20871. weight: math.unit(75, "lb"),
  20872. name: "Dressed",
  20873. image: {
  20874. source: "./media/characters/aronai-sieyes/dressed.svg",
  20875. extra: 1559/1483,
  20876. bottom: 39/1598
  20877. }
  20878. },
  20879. slit: {
  20880. height: math.unit(1.3, "feet"),
  20881. name: "Slit",
  20882. image: {
  20883. source: "./media/characters/aronai-sieyes/slit.svg"
  20884. }
  20885. },
  20886. slitSpread: {
  20887. height: math.unit(0.9, "feet"),
  20888. name: "Slit (Spread)",
  20889. image: {
  20890. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20891. }
  20892. },
  20893. rump: {
  20894. height: math.unit(1.3, "feet"),
  20895. name: "Rump",
  20896. image: {
  20897. source: "./media/characters/aronai-sieyes/rump.svg"
  20898. }
  20899. },
  20900. maw: {
  20901. height: math.unit(1.25, "feet"),
  20902. name: "Maw",
  20903. image: {
  20904. source: "./media/characters/aronai-sieyes/maw.svg"
  20905. }
  20906. },
  20907. feral: {
  20908. height: math.unit(18, "feet"),
  20909. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20910. name: "Feral",
  20911. image: {
  20912. source: "./media/characters/aronai-sieyes/feral.svg",
  20913. extra: 1530 / 1240,
  20914. bottom: 0.035
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Micro",
  20921. height: math.unit(2, "inches")
  20922. },
  20923. {
  20924. name: "Normal",
  20925. height: math.unit(6 + 1 / 12, "feet"),
  20926. default: true
  20927. }
  20928. ]
  20929. ))
  20930. characterMakers.push(() => makeCharacter(
  20931. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20932. {
  20933. front: {
  20934. height: math.unit(12, "feet"),
  20935. weight: math.unit(410, "kg"),
  20936. name: "Front",
  20937. image: {
  20938. source: "./media/characters/xuna/front.svg",
  20939. extra: 2184 / 1980
  20940. }
  20941. },
  20942. side: {
  20943. height: math.unit(12, "feet"),
  20944. weight: math.unit(410, "kg"),
  20945. name: "Side",
  20946. image: {
  20947. source: "./media/characters/xuna/side.svg",
  20948. extra: 2184 / 1980
  20949. }
  20950. },
  20951. back: {
  20952. height: math.unit(12, "feet"),
  20953. weight: math.unit(410, "kg"),
  20954. name: "Back",
  20955. image: {
  20956. source: "./media/characters/xuna/back.svg",
  20957. extra: 2184 / 1980
  20958. }
  20959. },
  20960. },
  20961. [
  20962. {
  20963. name: "Nano glow",
  20964. height: math.unit(10, "nm")
  20965. },
  20966. {
  20967. name: "Micro floof",
  20968. height: math.unit(0.3, "m")
  20969. },
  20970. {
  20971. name: "Huggable softy boi",
  20972. height: math.unit(3.6576, "m"),
  20973. default: true
  20974. },
  20975. {
  20976. name: "Admirable floof",
  20977. height: math.unit(80, "meters")
  20978. },
  20979. {
  20980. name: "Gentle macro",
  20981. height: math.unit(300, "meters")
  20982. },
  20983. {
  20984. name: "Very careful floof",
  20985. height: math.unit(3200, "meters")
  20986. },
  20987. {
  20988. name: "The mega floof",
  20989. height: math.unit(36000, "meters")
  20990. },
  20991. {
  20992. name: "Giga-fur-Wicker",
  20993. height: math.unit(4800000, "meters")
  20994. },
  20995. {
  20996. name: "Licky world",
  20997. height: math.unit(20000000, "meters")
  20998. },
  20999. {
  21000. name: "Floofy cyan sun",
  21001. height: math.unit(1500000000, "meters")
  21002. },
  21003. {
  21004. name: "Milky Wicker",
  21005. height: math.unit(1000000000000000000000, "meters")
  21006. },
  21007. {
  21008. name: "The observing Wicker",
  21009. height: math.unit(999999999999999999999999999, "meters")
  21010. },
  21011. ]
  21012. ))
  21013. characterMakers.push(() => makeCharacter(
  21014. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21015. {
  21016. front: {
  21017. height: math.unit(5 + 9 / 12, "feet"),
  21018. weight: math.unit(150, "lb"),
  21019. name: "Front",
  21020. image: {
  21021. source: "./media/characters/arokha-sieyes/front.svg",
  21022. extra: 1425 / 1284,
  21023. bottom: 0.05
  21024. }
  21025. },
  21026. },
  21027. [
  21028. {
  21029. name: "Normal",
  21030. height: math.unit(5 + 9 / 12, "feet")
  21031. },
  21032. {
  21033. name: "Macro",
  21034. height: math.unit(30, "meters"),
  21035. default: true
  21036. },
  21037. ]
  21038. ))
  21039. characterMakers.push(() => makeCharacter(
  21040. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21041. {
  21042. front: {
  21043. height: math.unit(6, "feet"),
  21044. weight: math.unit(180, "lb"),
  21045. name: "Front",
  21046. image: {
  21047. source: "./media/characters/arokh-sieyes/front.svg",
  21048. extra: 1830 / 1769,
  21049. bottom: 0.01
  21050. }
  21051. },
  21052. },
  21053. [
  21054. {
  21055. name: "Normal",
  21056. height: math.unit(6, "feet")
  21057. },
  21058. {
  21059. name: "Macro",
  21060. height: math.unit(30, "meters"),
  21061. default: true
  21062. },
  21063. ]
  21064. ))
  21065. characterMakers.push(() => makeCharacter(
  21066. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21067. {
  21068. side: {
  21069. height: math.unit(13 + 1 / 12, "feet"),
  21070. weight: math.unit(8.5, "tonnes"),
  21071. preyCapacity: math.unit(36, "people"),
  21072. name: "Side",
  21073. image: {
  21074. source: "./media/characters/goldeneye/side.svg",
  21075. extra: 1139/741,
  21076. bottom: 98/1237
  21077. }
  21078. },
  21079. front: {
  21080. height: math.unit(5.1, "feet"),
  21081. weight: math.unit(8.5, "tonnes"),
  21082. preyCapacity: math.unit(36, "people"),
  21083. name: "Front",
  21084. image: {
  21085. source: "./media/characters/goldeneye/front.svg",
  21086. extra: 635/365,
  21087. bottom: 598/1233
  21088. }
  21089. },
  21090. maw: {
  21091. height: math.unit(6.6, "feet"),
  21092. name: "Maw",
  21093. image: {
  21094. source: "./media/characters/goldeneye/maw.svg"
  21095. }
  21096. },
  21097. headFront: {
  21098. height: math.unit(8, "feet"),
  21099. name: "Head (Front)",
  21100. image: {
  21101. source: "./media/characters/goldeneye/head-front.svg"
  21102. }
  21103. },
  21104. headSide: {
  21105. height: math.unit(6, "feet"),
  21106. name: "Head (Side)",
  21107. image: {
  21108. source: "./media/characters/goldeneye/head-side.svg"
  21109. }
  21110. },
  21111. headBack: {
  21112. height: math.unit(8, "feet"),
  21113. name: "Head (Back)",
  21114. image: {
  21115. source: "./media/characters/goldeneye/head-back.svg"
  21116. }
  21117. },
  21118. paw: {
  21119. height: math.unit(3.4, "feet"),
  21120. name: "Paw",
  21121. image: {
  21122. source: "./media/characters/goldeneye/paw.svg"
  21123. }
  21124. },
  21125. toering: {
  21126. height: math.unit(0.45, "feet"),
  21127. name: "Toering",
  21128. image: {
  21129. source: "./media/characters/goldeneye/toering.svg"
  21130. }
  21131. },
  21132. eyes: {
  21133. height: math.unit(0.5, "feet"),
  21134. name: "Eyes",
  21135. image: {
  21136. source: "./media/characters/goldeneye/eyes.svg"
  21137. }
  21138. },
  21139. },
  21140. [
  21141. {
  21142. name: "Normal",
  21143. height: math.unit(13 + 1 / 12, "feet"),
  21144. default: true
  21145. },
  21146. ]
  21147. ))
  21148. characterMakers.push(() => makeCharacter(
  21149. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21150. {
  21151. front: {
  21152. height: math.unit(6 + 1 / 12, "feet"),
  21153. weight: math.unit(210, "lb"),
  21154. name: "Front",
  21155. image: {
  21156. source: "./media/characters/leonardo-lycheborne/front.svg",
  21157. extra: 776/723,
  21158. bottom: 34/810
  21159. }
  21160. },
  21161. side: {
  21162. height: math.unit(6 + 1 / 12, "feet"),
  21163. weight: math.unit(210, "lb"),
  21164. name: "Side",
  21165. image: {
  21166. source: "./media/characters/leonardo-lycheborne/side.svg",
  21167. extra: 780/728,
  21168. bottom: 12/792
  21169. }
  21170. },
  21171. back: {
  21172. height: math.unit(6 + 1 / 12, "feet"),
  21173. weight: math.unit(210, "lb"),
  21174. name: "Back",
  21175. image: {
  21176. source: "./media/characters/leonardo-lycheborne/back.svg",
  21177. extra: 775/721,
  21178. bottom: 17/792
  21179. }
  21180. },
  21181. hand: {
  21182. height: math.unit(1.08, "feet"),
  21183. name: "Hand",
  21184. image: {
  21185. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21186. }
  21187. },
  21188. foot: {
  21189. height: math.unit(1.32, "feet"),
  21190. name: "Foot",
  21191. image: {
  21192. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21193. }
  21194. },
  21195. maw: {
  21196. height: math.unit(1, "feet"),
  21197. name: "Maw",
  21198. image: {
  21199. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21200. }
  21201. },
  21202. were: {
  21203. height: math.unit(20, "feet"),
  21204. weight: math.unit(7800, "lb"),
  21205. name: "Were",
  21206. image: {
  21207. source: "./media/characters/leonardo-lycheborne/were.svg",
  21208. extra: 1224/1165,
  21209. bottom: 72/1296
  21210. }
  21211. },
  21212. feral: {
  21213. height: math.unit(7.5, "feet"),
  21214. weight: math.unit(600, "lb"),
  21215. name: "Feral",
  21216. image: {
  21217. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21218. extra: 797/702,
  21219. bottom: 139/936
  21220. }
  21221. },
  21222. taur: {
  21223. height: math.unit(11, "feet"),
  21224. weight: math.unit(3300, "lb"),
  21225. name: "Taur",
  21226. image: {
  21227. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21228. extra: 1271/1197,
  21229. bottom: 47/1318
  21230. }
  21231. },
  21232. barghest: {
  21233. height: math.unit(11, "feet"),
  21234. weight: math.unit(1300, "lb"),
  21235. name: "Barghest",
  21236. image: {
  21237. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21238. extra: 1291/1204,
  21239. bottom: 37/1328
  21240. }
  21241. },
  21242. dick: {
  21243. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21244. name: "Dick",
  21245. image: {
  21246. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21247. }
  21248. },
  21249. dickWere: {
  21250. height: math.unit((20) / 3.8, "feet"),
  21251. name: "Dick (Were)",
  21252. image: {
  21253. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21254. }
  21255. },
  21256. },
  21257. [
  21258. {
  21259. name: "Normal",
  21260. height: math.unit(6 + 1 / 12, "feet"),
  21261. default: true
  21262. },
  21263. ]
  21264. ))
  21265. characterMakers.push(() => makeCharacter(
  21266. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21267. {
  21268. front: {
  21269. height: math.unit(10, "feet"),
  21270. weight: math.unit(350, "lb"),
  21271. name: "Front",
  21272. image: {
  21273. source: "./media/characters/jet/front.svg",
  21274. extra: 2050 / 1980,
  21275. bottom: 0.013
  21276. }
  21277. },
  21278. back: {
  21279. height: math.unit(10, "feet"),
  21280. weight: math.unit(350, "lb"),
  21281. name: "Back",
  21282. image: {
  21283. source: "./media/characters/jet/back.svg",
  21284. extra: 2050 / 1980,
  21285. bottom: 0.013
  21286. }
  21287. },
  21288. },
  21289. [
  21290. {
  21291. name: "Micro",
  21292. height: math.unit(6, "inches")
  21293. },
  21294. {
  21295. name: "Normal",
  21296. height: math.unit(10, "feet"),
  21297. default: true
  21298. },
  21299. {
  21300. name: "Macro",
  21301. height: math.unit(100, "feet")
  21302. },
  21303. ]
  21304. ))
  21305. characterMakers.push(() => makeCharacter(
  21306. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21307. {
  21308. front: {
  21309. height: math.unit(15, "feet"),
  21310. weight: math.unit(2800, "lb"),
  21311. name: "Front",
  21312. image: {
  21313. source: "./media/characters/tanarath/front.svg",
  21314. extra: 2392 / 2220,
  21315. bottom: 0.03
  21316. }
  21317. },
  21318. back: {
  21319. height: math.unit(15, "feet"),
  21320. weight: math.unit(2800, "lb"),
  21321. name: "Back",
  21322. image: {
  21323. source: "./media/characters/tanarath/back.svg",
  21324. extra: 2392 / 2220,
  21325. bottom: 0.03
  21326. }
  21327. },
  21328. },
  21329. [
  21330. {
  21331. name: "Normal",
  21332. height: math.unit(15, "feet"),
  21333. default: true
  21334. },
  21335. ]
  21336. ))
  21337. characterMakers.push(() => makeCharacter(
  21338. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21339. {
  21340. front: {
  21341. height: math.unit(7 + 1 / 12, "feet"),
  21342. weight: math.unit(175, "lb"),
  21343. name: "Front",
  21344. image: {
  21345. source: "./media/characters/patty-cattybatty/front.svg",
  21346. extra: 908 / 874,
  21347. bottom: 0.025
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Micro",
  21354. height: math.unit(1, "inch")
  21355. },
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(7 + 1 / 12, "feet")
  21359. },
  21360. {
  21361. name: "Mini Macro",
  21362. height: math.unit(155, "feet")
  21363. },
  21364. {
  21365. name: "Macro",
  21366. height: math.unit(1077, "feet")
  21367. },
  21368. {
  21369. name: "Mega Macro",
  21370. height: math.unit(47650, "feet"),
  21371. default: true
  21372. },
  21373. {
  21374. name: "Giga Macro",
  21375. height: math.unit(440, "miles")
  21376. },
  21377. {
  21378. name: "Tera Macro",
  21379. height: math.unit(8700, "miles")
  21380. },
  21381. {
  21382. name: "Planetary Macro",
  21383. height: math.unit(32700, "miles")
  21384. },
  21385. {
  21386. name: "Solar Macro",
  21387. height: math.unit(550000, "miles")
  21388. },
  21389. {
  21390. name: "Celestial Macro",
  21391. height: math.unit(2.5, "AU")
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21397. {
  21398. front: {
  21399. height: math.unit(4 + 5 / 12, "feet"),
  21400. weight: math.unit(90, "lb"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/cappu/front.svg",
  21404. extra: 1247 / 1152,
  21405. bottom: 0.012
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(4 + 5 / 12, "feet"),
  21413. default: true
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21419. {
  21420. frontDressed: {
  21421. height: math.unit(70, "cm"),
  21422. weight: math.unit(6, "kg"),
  21423. name: "Front (Dressed)",
  21424. image: {
  21425. source: "./media/characters/sebi/front-dressed.svg",
  21426. extra: 713.5 / 686.5,
  21427. bottom: 0.003
  21428. }
  21429. },
  21430. front: {
  21431. height: math.unit(70, "cm"),
  21432. weight: math.unit(5, "kg"),
  21433. name: "Front",
  21434. image: {
  21435. source: "./media/characters/sebi/front.svg",
  21436. extra: 713.5 / 686.5,
  21437. bottom: 0.003
  21438. }
  21439. }
  21440. },
  21441. [
  21442. {
  21443. name: "Normal",
  21444. height: math.unit(70, "cm"),
  21445. default: true
  21446. },
  21447. {
  21448. name: "Macro",
  21449. height: math.unit(8, "meters")
  21450. },
  21451. ]
  21452. ))
  21453. characterMakers.push(() => makeCharacter(
  21454. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21455. {
  21456. front: {
  21457. height: math.unit(6, "feet"),
  21458. weight: math.unit(150, "lb"),
  21459. name: "Front",
  21460. image: {
  21461. source: "./media/characters/typhek/front.svg",
  21462. extra: 1948 / 1929,
  21463. bottom: 0.025
  21464. }
  21465. },
  21466. side: {
  21467. height: math.unit(6, "feet"),
  21468. weight: math.unit(150, "lb"),
  21469. name: "Side",
  21470. image: {
  21471. source: "./media/characters/typhek/side.svg",
  21472. extra: 2034 / 2010,
  21473. bottom: 0.003
  21474. }
  21475. },
  21476. back: {
  21477. height: math.unit(6, "feet"),
  21478. weight: math.unit(150, "lb"),
  21479. name: "Back",
  21480. image: {
  21481. source: "./media/characters/typhek/back.svg",
  21482. extra: 2005 / 1978,
  21483. bottom: 0.004
  21484. }
  21485. },
  21486. palm: {
  21487. height: math.unit(1.2, "feet"),
  21488. name: "Palm",
  21489. image: {
  21490. source: "./media/characters/typhek/palm.svg"
  21491. }
  21492. },
  21493. fist: {
  21494. height: math.unit(1.1, "feet"),
  21495. name: "Fist",
  21496. image: {
  21497. source: "./media/characters/typhek/fist.svg"
  21498. }
  21499. },
  21500. foot: {
  21501. height: math.unit(1.57, "feet"),
  21502. name: "Foot",
  21503. image: {
  21504. source: "./media/characters/typhek/foot.svg"
  21505. }
  21506. },
  21507. sole: {
  21508. height: math.unit(2.05, "feet"),
  21509. name: "Sole",
  21510. image: {
  21511. source: "./media/characters/typhek/sole.svg"
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Macro",
  21518. height: math.unit(40, "stories"),
  21519. default: true
  21520. },
  21521. {
  21522. name: "Megamacro",
  21523. height: math.unit(1, "mile")
  21524. },
  21525. {
  21526. name: "Gigamacro",
  21527. height: math.unit(4000, "solarradii")
  21528. },
  21529. {
  21530. name: "Universal",
  21531. height: math.unit(1.1, "universes")
  21532. }
  21533. ]
  21534. ))
  21535. characterMakers.push(() => makeCharacter(
  21536. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21537. {
  21538. side: {
  21539. height: math.unit(5 + 7 / 12, "feet"),
  21540. weight: math.unit(150, "lb"),
  21541. name: "Side",
  21542. image: {
  21543. source: "./media/characters/kassy/side.svg",
  21544. extra: 1280 / 1225,
  21545. bottom: 0.002
  21546. }
  21547. },
  21548. front: {
  21549. height: math.unit(5 + 7 / 12, "feet"),
  21550. weight: math.unit(150, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/kassy/front.svg",
  21554. extra: 1280 / 1225,
  21555. bottom: 0.025
  21556. }
  21557. },
  21558. back: {
  21559. height: math.unit(5 + 7 / 12, "feet"),
  21560. weight: math.unit(150, "lb"),
  21561. name: "Back",
  21562. image: {
  21563. source: "./media/characters/kassy/back.svg",
  21564. extra: 1280 / 1225,
  21565. bottom: 0.002
  21566. }
  21567. },
  21568. foot: {
  21569. height: math.unit(1.266, "feet"),
  21570. name: "Foot",
  21571. image: {
  21572. source: "./media/characters/kassy/foot.svg"
  21573. }
  21574. },
  21575. },
  21576. [
  21577. {
  21578. name: "Normal",
  21579. height: math.unit(5 + 7 / 12, "feet")
  21580. },
  21581. {
  21582. name: "Macro",
  21583. height: math.unit(137, "feet"),
  21584. default: true
  21585. },
  21586. {
  21587. name: "Megamacro",
  21588. height: math.unit(1, "mile")
  21589. },
  21590. ]
  21591. ))
  21592. characterMakers.push(() => makeCharacter(
  21593. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21594. {
  21595. front: {
  21596. height: math.unit(6 + 1 / 12, "feet"),
  21597. weight: math.unit(200, "lb"),
  21598. name: "Front",
  21599. image: {
  21600. source: "./media/characters/neil/front.svg",
  21601. extra: 1326 / 1250,
  21602. bottom: 0.023
  21603. }
  21604. },
  21605. },
  21606. [
  21607. {
  21608. name: "Normal",
  21609. height: math.unit(6 + 1 / 12, "feet"),
  21610. default: true
  21611. },
  21612. {
  21613. name: "Macro",
  21614. height: math.unit(200, "feet")
  21615. },
  21616. ]
  21617. ))
  21618. characterMakers.push(() => makeCharacter(
  21619. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21620. {
  21621. front: {
  21622. height: math.unit(5 + 9 / 12, "feet"),
  21623. weight: math.unit(190, "lb"),
  21624. name: "Front",
  21625. image: {
  21626. source: "./media/characters/atticus/front.svg",
  21627. extra: 2934 / 2785,
  21628. bottom: 0.025
  21629. }
  21630. },
  21631. },
  21632. [
  21633. {
  21634. name: "Normal",
  21635. height: math.unit(5 + 9 / 12, "feet"),
  21636. default: true
  21637. },
  21638. {
  21639. name: "Macro",
  21640. height: math.unit(180, "feet")
  21641. },
  21642. ]
  21643. ))
  21644. characterMakers.push(() => makeCharacter(
  21645. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21646. {
  21647. side: {
  21648. height: math.unit(9, "feet"),
  21649. weight: math.unit(650, "lb"),
  21650. name: "Side",
  21651. image: {
  21652. source: "./media/characters/milo/side.svg",
  21653. extra: 2644 / 2310,
  21654. bottom: 0.032
  21655. }
  21656. },
  21657. },
  21658. [
  21659. {
  21660. name: "Normal",
  21661. height: math.unit(9, "feet"),
  21662. default: true
  21663. },
  21664. {
  21665. name: "Macro",
  21666. height: math.unit(300, "feet")
  21667. },
  21668. ]
  21669. ))
  21670. characterMakers.push(() => makeCharacter(
  21671. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21672. {
  21673. side: {
  21674. height: math.unit(8, "meters"),
  21675. weight: math.unit(90000, "kg"),
  21676. name: "Side",
  21677. image: {
  21678. source: "./media/characters/ijzer/side.svg",
  21679. extra: 2756 / 1600,
  21680. bottom: 0.01
  21681. }
  21682. },
  21683. },
  21684. [
  21685. {
  21686. name: "Small",
  21687. height: math.unit(3, "meters")
  21688. },
  21689. {
  21690. name: "Normal",
  21691. height: math.unit(8, "meters"),
  21692. default: true
  21693. },
  21694. {
  21695. name: "Normal+",
  21696. height: math.unit(10, "meters")
  21697. },
  21698. {
  21699. name: "Bigger",
  21700. height: math.unit(24, "meters")
  21701. },
  21702. {
  21703. name: "Huge",
  21704. height: math.unit(80, "meters")
  21705. },
  21706. ]
  21707. ))
  21708. characterMakers.push(() => makeCharacter(
  21709. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21710. {
  21711. front: {
  21712. height: math.unit(6 + 2 / 12, "feet"),
  21713. weight: math.unit(153, "lb"),
  21714. name: "Front",
  21715. image: {
  21716. source: "./media/characters/luca-cervicum/front.svg",
  21717. extra: 370 / 327,
  21718. bottom: 0.015
  21719. }
  21720. },
  21721. back: {
  21722. height: math.unit(6 + 2 / 12, "feet"),
  21723. weight: math.unit(153, "lb"),
  21724. name: "Back",
  21725. image: {
  21726. source: "./media/characters/luca-cervicum/back.svg",
  21727. extra: 367 / 333,
  21728. bottom: 0.005
  21729. }
  21730. },
  21731. frontGear: {
  21732. height: math.unit(6 + 2 / 12, "feet"),
  21733. weight: math.unit(173, "lb"),
  21734. name: "Front (Gear)",
  21735. image: {
  21736. source: "./media/characters/luca-cervicum/front-gear.svg",
  21737. extra: 377 / 333,
  21738. bottom: 0.006
  21739. }
  21740. },
  21741. },
  21742. [
  21743. {
  21744. name: "Normal",
  21745. height: math.unit(6 + 2 / 12, "feet"),
  21746. default: true
  21747. },
  21748. ]
  21749. ))
  21750. characterMakers.push(() => makeCharacter(
  21751. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21752. {
  21753. front: {
  21754. height: math.unit(6 + 1 / 12, "feet"),
  21755. weight: math.unit(304, "lb"),
  21756. name: "Front",
  21757. image: {
  21758. source: "./media/characters/oliver/front.svg",
  21759. extra: 157 / 143,
  21760. bottom: 0.08
  21761. }
  21762. },
  21763. },
  21764. [
  21765. {
  21766. name: "Normal",
  21767. height: math.unit(6 + 1 / 12, "feet"),
  21768. default: true
  21769. },
  21770. ]
  21771. ))
  21772. characterMakers.push(() => makeCharacter(
  21773. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21774. {
  21775. front: {
  21776. height: math.unit(5 + 7 / 12, "feet"),
  21777. weight: math.unit(140, "lb"),
  21778. name: "Front",
  21779. image: {
  21780. source: "./media/characters/shane/front.svg",
  21781. extra: 304 / 289,
  21782. bottom: 0.005
  21783. }
  21784. },
  21785. },
  21786. [
  21787. {
  21788. name: "Normal",
  21789. height: math.unit(5 + 7 / 12, "feet"),
  21790. default: true
  21791. },
  21792. ]
  21793. ))
  21794. characterMakers.push(() => makeCharacter(
  21795. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21796. {
  21797. front: {
  21798. height: math.unit(5 + 9 / 12, "feet"),
  21799. weight: math.unit(178, "lb"),
  21800. name: "Front",
  21801. image: {
  21802. source: "./media/characters/shin/front.svg",
  21803. extra: 159 / 151,
  21804. bottom: 0.015
  21805. }
  21806. },
  21807. },
  21808. [
  21809. {
  21810. name: "Normal",
  21811. height: math.unit(5 + 9 / 12, "feet"),
  21812. default: true
  21813. },
  21814. ]
  21815. ))
  21816. characterMakers.push(() => makeCharacter(
  21817. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21818. {
  21819. front: {
  21820. height: math.unit(5 + 10 / 12, "feet"),
  21821. weight: math.unit(168, "lb"),
  21822. name: "Front",
  21823. image: {
  21824. source: "./media/characters/xerxes/front.svg",
  21825. extra: 282 / 260,
  21826. bottom: 0.045
  21827. }
  21828. },
  21829. },
  21830. [
  21831. {
  21832. name: "Normal",
  21833. height: math.unit(5 + 10 / 12, "feet"),
  21834. default: true
  21835. },
  21836. ]
  21837. ))
  21838. characterMakers.push(() => makeCharacter(
  21839. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21840. {
  21841. front: {
  21842. height: math.unit(6 + 7 / 12, "feet"),
  21843. weight: math.unit(208, "lb"),
  21844. name: "Front",
  21845. image: {
  21846. source: "./media/characters/chaska/front.svg",
  21847. extra: 332 / 319,
  21848. bottom: 0.015
  21849. }
  21850. },
  21851. },
  21852. [
  21853. {
  21854. name: "Normal",
  21855. height: math.unit(6 + 7 / 12, "feet"),
  21856. default: true
  21857. },
  21858. ]
  21859. ))
  21860. characterMakers.push(() => makeCharacter(
  21861. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21862. {
  21863. front: {
  21864. height: math.unit(5 + 8 / 12, "feet"),
  21865. weight: math.unit(208, "lb"),
  21866. name: "Front",
  21867. image: {
  21868. source: "./media/characters/enuk/front.svg",
  21869. extra: 437 / 406,
  21870. bottom: 0.02
  21871. }
  21872. },
  21873. },
  21874. [
  21875. {
  21876. name: "Normal",
  21877. height: math.unit(5 + 8 / 12, "feet"),
  21878. default: true
  21879. },
  21880. ]
  21881. ))
  21882. characterMakers.push(() => makeCharacter(
  21883. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21884. {
  21885. front: {
  21886. height: math.unit(5 + 10 / 12, "feet"),
  21887. weight: math.unit(252, "lb"),
  21888. name: "Front",
  21889. image: {
  21890. source: "./media/characters/bruun/front.svg",
  21891. extra: 197 / 187,
  21892. bottom: 0.012
  21893. }
  21894. },
  21895. },
  21896. [
  21897. {
  21898. name: "Normal",
  21899. height: math.unit(5 + 10 / 12, "feet"),
  21900. default: true
  21901. },
  21902. ]
  21903. ))
  21904. characterMakers.push(() => makeCharacter(
  21905. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21906. {
  21907. front: {
  21908. height: math.unit(6 + 10 / 12, "feet"),
  21909. weight: math.unit(255, "lb"),
  21910. name: "Front",
  21911. image: {
  21912. source: "./media/characters/alexeev/front.svg",
  21913. extra: 213 / 200,
  21914. bottom: 0.05
  21915. }
  21916. },
  21917. },
  21918. [
  21919. {
  21920. name: "Normal",
  21921. height: math.unit(6 + 10 / 12, "feet"),
  21922. default: true
  21923. },
  21924. ]
  21925. ))
  21926. characterMakers.push(() => makeCharacter(
  21927. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21928. {
  21929. front: {
  21930. height: math.unit(2 + 8 / 12, "feet"),
  21931. weight: math.unit(22, "lb"),
  21932. name: "Front",
  21933. image: {
  21934. source: "./media/characters/evelyn/front.svg",
  21935. extra: 208 / 180
  21936. }
  21937. },
  21938. },
  21939. [
  21940. {
  21941. name: "Normal",
  21942. height: math.unit(2 + 8 / 12, "feet"),
  21943. default: true
  21944. },
  21945. ]
  21946. ))
  21947. characterMakers.push(() => makeCharacter(
  21948. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21949. {
  21950. front: {
  21951. height: math.unit(5 + 9 / 12, "feet"),
  21952. weight: math.unit(139, "lb"),
  21953. name: "Front",
  21954. image: {
  21955. source: "./media/characters/inca/front.svg",
  21956. extra: 294 / 291,
  21957. bottom: 0.03
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(5 + 9 / 12, "feet"),
  21965. default: true
  21966. },
  21967. ]
  21968. ))
  21969. characterMakers.push(() => makeCharacter(
  21970. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21971. {
  21972. front: {
  21973. height: math.unit(6 + 3 / 12, "feet"),
  21974. weight: math.unit(185, "lb"),
  21975. name: "Front",
  21976. image: {
  21977. source: "./media/characters/mera/front.svg",
  21978. extra: 291 / 277,
  21979. bottom: 0.03
  21980. }
  21981. },
  21982. },
  21983. [
  21984. {
  21985. name: "Normal",
  21986. height: math.unit(6 + 3 / 12, "feet"),
  21987. default: true
  21988. },
  21989. ]
  21990. ))
  21991. characterMakers.push(() => makeCharacter(
  21992. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  21993. {
  21994. front: {
  21995. height: math.unit(6 + 7 / 12, "feet"),
  21996. weight: math.unit(160, "lb"),
  21997. name: "Front",
  21998. image: {
  21999. source: "./media/characters/ceres/front.svg",
  22000. extra: 1023 / 950,
  22001. bottom: 0.027
  22002. }
  22003. },
  22004. back: {
  22005. height: math.unit(6 + 7 / 12, "feet"),
  22006. weight: math.unit(160, "lb"),
  22007. name: "Back",
  22008. image: {
  22009. source: "./media/characters/ceres/back.svg",
  22010. extra: 1023 / 950
  22011. }
  22012. },
  22013. },
  22014. [
  22015. {
  22016. name: "Normal",
  22017. height: math.unit(6 + 7 / 12, "feet"),
  22018. default: true
  22019. },
  22020. ]
  22021. ))
  22022. characterMakers.push(() => makeCharacter(
  22023. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22024. {
  22025. front: {
  22026. height: math.unit(5 + 10 / 12, "feet"),
  22027. weight: math.unit(150, "lb"),
  22028. name: "Front",
  22029. image: {
  22030. source: "./media/characters/kris/front.svg",
  22031. extra: 885 / 803,
  22032. bottom: 0.03
  22033. }
  22034. },
  22035. },
  22036. [
  22037. {
  22038. name: "Normal",
  22039. height: math.unit(5 + 10 / 12, "feet"),
  22040. default: true
  22041. },
  22042. ]
  22043. ))
  22044. characterMakers.push(() => makeCharacter(
  22045. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22046. {
  22047. dragon_front: {
  22048. height: math.unit(5, "feet"),
  22049. name: "Front",
  22050. image: {
  22051. source: "./media/characters/taluthus/dragon-front.svg",
  22052. extra: 1203/1098,
  22053. bottom: 46/1249
  22054. },
  22055. form: "dragon",
  22056. default: true
  22057. },
  22058. dragon_maw: {
  22059. height: math.unit(2.35, "feet"),
  22060. name: "Maw",
  22061. image: {
  22062. source: "./media/characters/taluthus/dragon-maw.svg"
  22063. },
  22064. form: "dragon",
  22065. },
  22066. kitsune_front: {
  22067. height: math.unit(7, "feet"),
  22068. name: "Front",
  22069. image: {
  22070. source: "./media/characters/taluthus/kitsune-front.svg",
  22071. extra: 900/841,
  22072. bottom: 65/965
  22073. },
  22074. form: "kitsune",
  22075. default: true
  22076. },
  22077. },
  22078. [
  22079. {
  22080. name: "Normal",
  22081. height: math.unit(5, "feet"),
  22082. form: "dragon",
  22083. default: true,
  22084. },
  22085. {
  22086. name: "Normal",
  22087. height: math.unit(7, "feet"),
  22088. form: "kitsune",
  22089. default: true
  22090. },
  22091. {
  22092. name: "Macro",
  22093. height: math.unit(300, "feet"),
  22094. allForms: true
  22095. },
  22096. ],
  22097. {
  22098. "dragon": {
  22099. name: "Dragon",
  22100. default: true
  22101. },
  22102. "kitsune": {
  22103. name: "Kitsune",
  22104. },
  22105. }
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22109. {
  22110. front: {
  22111. height: math.unit(5 + 9 / 12, "feet"),
  22112. weight: math.unit(145, "lb"),
  22113. name: "Front",
  22114. image: {
  22115. source: "./media/characters/dawn/front.svg",
  22116. extra: 2094 / 2016,
  22117. bottom: 0.025
  22118. }
  22119. },
  22120. back: {
  22121. height: math.unit(5 + 9 / 12, "feet"),
  22122. weight: math.unit(160, "lb"),
  22123. name: "Back",
  22124. image: {
  22125. source: "./media/characters/dawn/back.svg",
  22126. extra: 2112 / 2080,
  22127. bottom: 0.005
  22128. }
  22129. },
  22130. },
  22131. [
  22132. {
  22133. name: "Normal",
  22134. height: math.unit(6 + 7 / 12, "feet"),
  22135. default: true
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22141. {
  22142. anthro: {
  22143. height: math.unit(8 + 3 / 12, "feet"),
  22144. weight: math.unit(450, "lb"),
  22145. name: "Anthro",
  22146. image: {
  22147. source: "./media/characters/arador/anthro.svg",
  22148. extra: 1835 / 1718,
  22149. bottom: 0.025
  22150. }
  22151. },
  22152. feral: {
  22153. height: math.unit(4, "feet"),
  22154. weight: math.unit(200, "lb"),
  22155. name: "Feral",
  22156. image: {
  22157. source: "./media/characters/arador/feral.svg",
  22158. extra: 1683 / 1514,
  22159. bottom: 0.07
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Normal",
  22166. height: math.unit(8 + 3 / 12, "feet")
  22167. },
  22168. {
  22169. name: "Macro",
  22170. height: math.unit(82.5, "feet"),
  22171. default: true
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22177. {
  22178. front: {
  22179. height: math.unit(5 + 10 / 12, "feet"),
  22180. weight: math.unit(125, "lb"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/dharsi/front.svg",
  22184. extra: 716 / 630,
  22185. bottom: 0.035
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Nano",
  22192. height: math.unit(100, "nm")
  22193. },
  22194. {
  22195. name: "Micro",
  22196. height: math.unit(2, "inches")
  22197. },
  22198. {
  22199. name: "Normal",
  22200. height: math.unit(5 + 10 / 12, "feet"),
  22201. default: true
  22202. },
  22203. {
  22204. name: "Macro",
  22205. height: math.unit(1000, "feet")
  22206. },
  22207. {
  22208. name: "Megamacro",
  22209. height: math.unit(10, "miles")
  22210. },
  22211. {
  22212. name: "Gigamacro",
  22213. height: math.unit(3000, "miles")
  22214. },
  22215. {
  22216. name: "Teramacro",
  22217. height: math.unit(500000, "miles")
  22218. },
  22219. {
  22220. name: "Teramacro+",
  22221. height: math.unit(30, "galaxies")
  22222. },
  22223. ]
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22227. {
  22228. front: {
  22229. height: math.unit(6, "feet"),
  22230. weight: math.unit(150, "lb"),
  22231. name: "Front",
  22232. image: {
  22233. source: "./media/characters/deathy/front.svg",
  22234. extra: 1552 / 1463,
  22235. bottom: 0.025
  22236. }
  22237. },
  22238. side: {
  22239. height: math.unit(6, "feet"),
  22240. weight: math.unit(150, "lb"),
  22241. name: "Side",
  22242. image: {
  22243. source: "./media/characters/deathy/side.svg",
  22244. extra: 1604 / 1455,
  22245. bottom: 0.025
  22246. }
  22247. },
  22248. back: {
  22249. height: math.unit(6, "feet"),
  22250. weight: math.unit(150, "lb"),
  22251. name: "Back",
  22252. image: {
  22253. source: "./media/characters/deathy/back.svg",
  22254. extra: 1580 / 1463,
  22255. bottom: 0.005
  22256. }
  22257. },
  22258. },
  22259. [
  22260. {
  22261. name: "Micro",
  22262. height: math.unit(5, "millimeters")
  22263. },
  22264. {
  22265. name: "Normal",
  22266. height: math.unit(6 + 5 / 12, "feet"),
  22267. default: true
  22268. },
  22269. ]
  22270. ))
  22271. characterMakers.push(() => makeCharacter(
  22272. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22273. {
  22274. front: {
  22275. height: math.unit(16, "feet"),
  22276. weight: math.unit(4000, "lb"),
  22277. name: "Front",
  22278. image: {
  22279. source: "./media/characters/juniper/front.svg",
  22280. bottom: 0.04
  22281. }
  22282. },
  22283. },
  22284. [
  22285. {
  22286. name: "Normal",
  22287. height: math.unit(16, "feet"),
  22288. default: true
  22289. },
  22290. ]
  22291. ))
  22292. characterMakers.push(() => makeCharacter(
  22293. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22294. {
  22295. front: {
  22296. height: math.unit(6, "feet"),
  22297. weight: math.unit(150, "lb"),
  22298. name: "Front",
  22299. image: {
  22300. source: "./media/characters/hipster/front.svg",
  22301. extra: 1312 / 1209,
  22302. bottom: 0.025
  22303. }
  22304. },
  22305. back: {
  22306. height: math.unit(6, "feet"),
  22307. weight: math.unit(150, "lb"),
  22308. name: "Back",
  22309. image: {
  22310. source: "./media/characters/hipster/back.svg",
  22311. extra: 1281 / 1196,
  22312. bottom: 0.01
  22313. }
  22314. },
  22315. },
  22316. [
  22317. {
  22318. name: "Micro",
  22319. height: math.unit(1, "mm")
  22320. },
  22321. {
  22322. name: "Normal",
  22323. height: math.unit(4, "inches"),
  22324. default: true
  22325. },
  22326. {
  22327. name: "Macro",
  22328. height: math.unit(500, "feet")
  22329. },
  22330. {
  22331. name: "Megamacro",
  22332. height: math.unit(1000, "miles")
  22333. },
  22334. ]
  22335. ))
  22336. characterMakers.push(() => makeCharacter(
  22337. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22338. {
  22339. front: {
  22340. height: math.unit(6, "feet"),
  22341. weight: math.unit(150, "lb"),
  22342. name: "Front",
  22343. image: {
  22344. source: "./media/characters/tendirmuldr/front.svg",
  22345. extra: 1878 / 1772,
  22346. bottom: 0.015
  22347. }
  22348. },
  22349. },
  22350. [
  22351. {
  22352. name: "Megamacro",
  22353. height: math.unit(1500, "miles"),
  22354. default: true
  22355. },
  22356. ]
  22357. ))
  22358. characterMakers.push(() => makeCharacter(
  22359. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22360. {
  22361. front: {
  22362. height: math.unit(14, "feet"),
  22363. weight: math.unit(12000, "lb"),
  22364. name: "Front",
  22365. image: {
  22366. source: "./media/characters/mort/front.svg",
  22367. extra: 365 / 318,
  22368. bottom: 0.01
  22369. }
  22370. },
  22371. side: {
  22372. height: math.unit(14, "feet"),
  22373. weight: math.unit(12000, "lb"),
  22374. name: "Side",
  22375. image: {
  22376. source: "./media/characters/mort/side.svg",
  22377. extra: 365 / 318,
  22378. bottom: 0.052
  22379. },
  22380. default: true
  22381. },
  22382. back: {
  22383. height: math.unit(14, "feet"),
  22384. weight: math.unit(12000, "lb"),
  22385. name: "Back",
  22386. image: {
  22387. source: "./media/characters/mort/back.svg",
  22388. extra: 371 / 332,
  22389. bottom: 0.18
  22390. }
  22391. },
  22392. },
  22393. [
  22394. {
  22395. name: "Normal",
  22396. height: math.unit(14, "feet"),
  22397. default: true
  22398. },
  22399. ]
  22400. ))
  22401. characterMakers.push(() => makeCharacter(
  22402. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22403. {
  22404. front: {
  22405. height: math.unit(8, "feet"),
  22406. weight: math.unit(1, "ton"),
  22407. name: "Front",
  22408. image: {
  22409. source: "./media/characters/lycoa/front.svg",
  22410. extra: 1836/1728,
  22411. bottom: 81/1917
  22412. }
  22413. },
  22414. back: {
  22415. height: math.unit(8, "feet"),
  22416. weight: math.unit(1, "ton"),
  22417. name: "Back",
  22418. image: {
  22419. source: "./media/characters/lycoa/back.svg",
  22420. extra: 1785/1720,
  22421. bottom: 91/1876
  22422. }
  22423. },
  22424. head: {
  22425. height: math.unit(1.6243, "feet"),
  22426. name: "Head",
  22427. image: {
  22428. source: "./media/characters/lycoa/head.svg",
  22429. extra: 1011/782,
  22430. bottom: 0/1011
  22431. }
  22432. },
  22433. tailmaw: {
  22434. height: math.unit(1.9, "feet"),
  22435. name: "Tailmaw",
  22436. image: {
  22437. source: "./media/characters/lycoa/tailmaw.svg"
  22438. }
  22439. },
  22440. tentacles: {
  22441. height: math.unit(2.1, "feet"),
  22442. name: "Tentacles",
  22443. image: {
  22444. source: "./media/characters/lycoa/tentacles.svg"
  22445. }
  22446. },
  22447. dick: {
  22448. height: math.unit(1.73, "feet"),
  22449. name: "Dick",
  22450. image: {
  22451. source: "./media/characters/lycoa/dick.svg"
  22452. }
  22453. },
  22454. },
  22455. [
  22456. {
  22457. name: "Normal",
  22458. height: math.unit(8, "feet"),
  22459. default: true
  22460. },
  22461. {
  22462. name: "Macro",
  22463. height: math.unit(30, "feet")
  22464. },
  22465. ]
  22466. ))
  22467. characterMakers.push(() => makeCharacter(
  22468. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22469. {
  22470. front: {
  22471. height: math.unit(4 + 2 / 12, "feet"),
  22472. weight: math.unit(70, "lb"),
  22473. name: "Front",
  22474. image: {
  22475. source: "./media/characters/naldara/front.svg",
  22476. extra: 1664/1387,
  22477. bottom: 81/1745
  22478. },
  22479. form: "anthro",
  22480. default: true
  22481. },
  22482. naga: {
  22483. height: math.unit(20, "feet"),
  22484. weight: math.unit(15000, "kg"),
  22485. name: "Front",
  22486. image: {
  22487. source: "./media/characters/naldara/naga.svg",
  22488. extra: 1590/1396,
  22489. bottom: 285/1875
  22490. },
  22491. form: "naga",
  22492. default: true
  22493. },
  22494. },
  22495. [
  22496. {
  22497. name: "Normal",
  22498. height: math.unit(4 + 2 / 12, "feet"),
  22499. form: "anthro",
  22500. default: true
  22501. },
  22502. {
  22503. name: "Normal",
  22504. height: math.unit(20, "feet"),
  22505. form: "naga",
  22506. default: true
  22507. },
  22508. ],
  22509. {
  22510. "anthro": {
  22511. name: "Anthro",
  22512. default: true
  22513. },
  22514. "naga": {
  22515. name: "Naga"
  22516. }
  22517. }
  22518. ))
  22519. characterMakers.push(() => makeCharacter(
  22520. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22521. {
  22522. front: {
  22523. height: math.unit(13 + 7 / 12, "feet"),
  22524. weight: math.unit(1500, "lb"),
  22525. name: "Front",
  22526. image: {
  22527. source: "./media/characters/briar/front.svg",
  22528. extra: 1223/1157,
  22529. bottom: 123/1346
  22530. }
  22531. },
  22532. },
  22533. [
  22534. {
  22535. name: "Normal",
  22536. height: math.unit(13 + 7 / 12, "feet"),
  22537. default: true
  22538. },
  22539. ]
  22540. ))
  22541. characterMakers.push(() => makeCharacter(
  22542. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22543. {
  22544. side: {
  22545. height: math.unit(16, "feet"),
  22546. weight: math.unit(500, "lb"),
  22547. name: "Side",
  22548. image: {
  22549. source: "./media/characters/vanguard/side.svg",
  22550. extra: 1022/914,
  22551. bottom: 30/1052
  22552. }
  22553. },
  22554. sideAlt: {
  22555. height: math.unit(10, "feet"),
  22556. weight: math.unit(500, "lb"),
  22557. name: "Side (Alt)",
  22558. image: {
  22559. source: "./media/characters/vanguard/side-alt.svg",
  22560. extra: 502 / 425,
  22561. bottom: 0.087
  22562. }
  22563. },
  22564. },
  22565. [
  22566. {
  22567. name: "Normal",
  22568. height: math.unit(17.71, "feet"),
  22569. default: true
  22570. },
  22571. ]
  22572. ))
  22573. characterMakers.push(() => makeCharacter(
  22574. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22575. {
  22576. front: {
  22577. height: math.unit(7.5, "feet"),
  22578. weight: math.unit(2, "lb"),
  22579. name: "Front",
  22580. image: {
  22581. source: "./media/characters/artemis/work-safe-front.svg",
  22582. extra: 1192 / 1075,
  22583. bottom: 0.07
  22584. },
  22585. form: "work-safe",
  22586. default: true
  22587. },
  22588. frontNsfw: {
  22589. height: math.unit(7.5, "feet"),
  22590. weight: math.unit(2, "lb"),
  22591. name: "Front",
  22592. image: {
  22593. source: "./media/characters/artemis/calibrating-front.svg",
  22594. extra: 1192 / 1075,
  22595. bottom: 0.07
  22596. },
  22597. form: "calibrating",
  22598. default: true
  22599. },
  22600. frontNsfwer: {
  22601. height: math.unit(7.5, "feet"),
  22602. weight: math.unit(2, "lb"),
  22603. name: "Front",
  22604. image: {
  22605. source: "./media/characters/artemis/oversize-load-front.svg",
  22606. extra: 1192 / 1075,
  22607. bottom: 0.07
  22608. },
  22609. form: "oversize-load",
  22610. default: true
  22611. },
  22612. side: {
  22613. height: math.unit(7.5, "feet"),
  22614. weight: math.unit(2, "lb"),
  22615. name: "Side",
  22616. image: {
  22617. source: "./media/characters/artemis/work-safe-side.svg",
  22618. extra: 1192 / 1075,
  22619. bottom: 0.07
  22620. },
  22621. form: "work-safe"
  22622. },
  22623. sideNsfw: {
  22624. height: math.unit(7.5, "feet"),
  22625. weight: math.unit(2, "lb"),
  22626. name: "Side",
  22627. image: {
  22628. source: "./media/characters/artemis/calibrating-side.svg",
  22629. extra: 1192 / 1075,
  22630. bottom: 0.07
  22631. },
  22632. form: "calibrating"
  22633. },
  22634. sideNsfwer: {
  22635. height: math.unit(7.5, "feet"),
  22636. weight: math.unit(2, "lb"),
  22637. name: "Side",
  22638. image: {
  22639. source: "./media/characters/artemis/oversize-load-side.svg",
  22640. extra: 1192 / 1075,
  22641. bottom: 0.07
  22642. },
  22643. form: "oversize-load"
  22644. },
  22645. maw: {
  22646. height: math.unit(1.1, "feet"),
  22647. name: "Maw",
  22648. image: {
  22649. source: "./media/characters/artemis/maw.svg"
  22650. },
  22651. form: "work-safe"
  22652. },
  22653. stomach: {
  22654. height: math.unit(0.95, "feet"),
  22655. name: "Stomach",
  22656. image: {
  22657. source: "./media/characters/artemis/stomach.svg"
  22658. },
  22659. form: "work-safe"
  22660. },
  22661. dickCanine: {
  22662. height: math.unit(1, "feet"),
  22663. name: "Dick (Canine)",
  22664. image: {
  22665. source: "./media/characters/artemis/dick-canine.svg"
  22666. },
  22667. form: "calibrating"
  22668. },
  22669. dickEquine: {
  22670. height: math.unit(0.85, "feet"),
  22671. name: "Dick (Equine)",
  22672. image: {
  22673. source: "./media/characters/artemis/dick-equine.svg"
  22674. },
  22675. form: "calibrating"
  22676. },
  22677. dickExotic: {
  22678. height: math.unit(0.85, "feet"),
  22679. name: "Dick (Exotic)",
  22680. image: {
  22681. source: "./media/characters/artemis/dick-exotic.svg"
  22682. },
  22683. form: "calibrating"
  22684. },
  22685. dickCanineBigger: {
  22686. height: math.unit(1 * 1.33, "feet"),
  22687. name: "Dick (Canine)",
  22688. image: {
  22689. source: "./media/characters/artemis/dick-canine.svg"
  22690. },
  22691. form: "oversize-load"
  22692. },
  22693. dickEquineBigger: {
  22694. height: math.unit(0.85 * 1.33, "feet"),
  22695. name: "Dick (Equine)",
  22696. image: {
  22697. source: "./media/characters/artemis/dick-equine.svg"
  22698. },
  22699. form: "oversize-load"
  22700. },
  22701. dickExoticBigger: {
  22702. height: math.unit(0.85 * 1.33, "feet"),
  22703. name: "Dick (Exotic)",
  22704. image: {
  22705. source: "./media/characters/artemis/dick-exotic.svg"
  22706. },
  22707. form: "oversize-load"
  22708. },
  22709. },
  22710. [
  22711. {
  22712. name: "Normal",
  22713. height: math.unit(7.5, "feet"),
  22714. form: "work-safe",
  22715. default: true
  22716. },
  22717. {
  22718. name: "Normal",
  22719. height: math.unit(7.5, "feet"),
  22720. form: "calibrating",
  22721. default: true
  22722. },
  22723. {
  22724. name: "Normal",
  22725. height: math.unit(7.5, "feet"),
  22726. form: "oversize-load",
  22727. default: true
  22728. },
  22729. {
  22730. name: "Enlarged",
  22731. height: math.unit(12, "feet"),
  22732. form: "work-safe",
  22733. },
  22734. {
  22735. name: "Enlarged",
  22736. height: math.unit(12, "feet"),
  22737. form: "calibrating",
  22738. },
  22739. {
  22740. name: "Enlarged",
  22741. height: math.unit(12, "feet"),
  22742. form: "oversize-load",
  22743. },
  22744. ],
  22745. {
  22746. "work-safe": {
  22747. name: "Work-Safe",
  22748. default: true
  22749. },
  22750. "calibrating": {
  22751. name: "Calibrating"
  22752. },
  22753. "oversize-load": {
  22754. name: "Oversize Load"
  22755. }
  22756. }
  22757. ))
  22758. characterMakers.push(() => makeCharacter(
  22759. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22760. {
  22761. front: {
  22762. height: math.unit(5 + 3 / 12, "feet"),
  22763. weight: math.unit(160, "lb"),
  22764. name: "Front",
  22765. image: {
  22766. source: "./media/characters/kira/front.svg",
  22767. extra: 906 / 786,
  22768. bottom: 0.01
  22769. }
  22770. },
  22771. back: {
  22772. height: math.unit(5 + 3 / 12, "feet"),
  22773. weight: math.unit(160, "lb"),
  22774. name: "Back",
  22775. image: {
  22776. source: "./media/characters/kira/back.svg",
  22777. extra: 882 / 757,
  22778. bottom: 0.005
  22779. }
  22780. },
  22781. frontDressed: {
  22782. height: math.unit(5 + 3 / 12, "feet"),
  22783. weight: math.unit(160, "lb"),
  22784. name: "Front (Dressed)",
  22785. image: {
  22786. source: "./media/characters/kira/front-dressed.svg",
  22787. extra: 906 / 786,
  22788. bottom: 0.01
  22789. }
  22790. },
  22791. beans: {
  22792. height: math.unit(0.92, "feet"),
  22793. name: "Beans",
  22794. image: {
  22795. source: "./media/characters/kira/beans.svg"
  22796. }
  22797. },
  22798. },
  22799. [
  22800. {
  22801. name: "Normal",
  22802. height: math.unit(5 + 3 / 12, "feet"),
  22803. default: true
  22804. },
  22805. ]
  22806. ))
  22807. characterMakers.push(() => makeCharacter(
  22808. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22809. {
  22810. front: {
  22811. height: math.unit(5 + 4 / 12, "feet"),
  22812. weight: math.unit(145, "lb"),
  22813. name: "Front",
  22814. image: {
  22815. source: "./media/characters/scramble/front.svg",
  22816. extra: 763 / 727,
  22817. bottom: 0.05
  22818. }
  22819. },
  22820. back: {
  22821. height: math.unit(5 + 4 / 12, "feet"),
  22822. weight: math.unit(145, "lb"),
  22823. name: "Back",
  22824. image: {
  22825. source: "./media/characters/scramble/back.svg",
  22826. extra: 826 / 737,
  22827. bottom: 0.002
  22828. }
  22829. },
  22830. },
  22831. [
  22832. {
  22833. name: "Normal",
  22834. height: math.unit(5 + 4 / 12, "feet"),
  22835. default: true
  22836. },
  22837. ]
  22838. ))
  22839. characterMakers.push(() => makeCharacter(
  22840. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22841. {
  22842. side: {
  22843. height: math.unit(6 + 2 / 12, "feet"),
  22844. weight: math.unit(190, "lb"),
  22845. name: "Side",
  22846. image: {
  22847. source: "./media/characters/biscuit/side.svg",
  22848. extra: 858 / 791,
  22849. bottom: 0.044
  22850. }
  22851. },
  22852. },
  22853. [
  22854. {
  22855. name: "Normal",
  22856. height: math.unit(6 + 2 / 12, "feet"),
  22857. default: true
  22858. },
  22859. ]
  22860. ))
  22861. characterMakers.push(() => makeCharacter(
  22862. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22863. {
  22864. front: {
  22865. height: math.unit(5 + 2 / 12, "feet"),
  22866. weight: math.unit(120, "lb"),
  22867. name: "Front",
  22868. image: {
  22869. source: "./media/characters/poffin/front.svg",
  22870. extra: 786 / 680,
  22871. bottom: 0.005
  22872. }
  22873. },
  22874. },
  22875. [
  22876. {
  22877. name: "Normal",
  22878. height: math.unit(5 + 2 / 12, "feet"),
  22879. default: true
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22885. {
  22886. front: {
  22887. height: math.unit(6 + 3 / 12, "feet"),
  22888. weight: math.unit(519, "lb"),
  22889. name: "Front",
  22890. image: {
  22891. source: "./media/characters/dhari/front.svg",
  22892. extra: 1048 / 946,
  22893. bottom: 0.015
  22894. }
  22895. },
  22896. back: {
  22897. height: math.unit(6 + 3 / 12, "feet"),
  22898. weight: math.unit(519, "lb"),
  22899. name: "Back",
  22900. image: {
  22901. source: "./media/characters/dhari/back.svg",
  22902. extra: 1048 / 931,
  22903. bottom: 0.005
  22904. }
  22905. },
  22906. frontDressed: {
  22907. height: math.unit(6 + 3 / 12, "feet"),
  22908. weight: math.unit(519, "lb"),
  22909. name: "Front (Dressed)",
  22910. image: {
  22911. source: "./media/characters/dhari/front-dressed.svg",
  22912. extra: 1713 / 1546,
  22913. bottom: 0.02
  22914. }
  22915. },
  22916. backDressed: {
  22917. height: math.unit(6 + 3 / 12, "feet"),
  22918. weight: math.unit(519, "lb"),
  22919. name: "Back (Dressed)",
  22920. image: {
  22921. source: "./media/characters/dhari/back-dressed.svg",
  22922. extra: 1699 / 1537,
  22923. bottom: 0.01
  22924. }
  22925. },
  22926. maw: {
  22927. height: math.unit(0.95, "feet"),
  22928. name: "Maw",
  22929. image: {
  22930. source: "./media/characters/dhari/maw.svg"
  22931. }
  22932. },
  22933. wereFront: {
  22934. height: math.unit(12 + 8 / 12, "feet"),
  22935. weight: math.unit(4000, "lb"),
  22936. name: "Front (Were)",
  22937. image: {
  22938. source: "./media/characters/dhari/were-front.svg",
  22939. extra: 1065 / 969,
  22940. bottom: 0.015
  22941. }
  22942. },
  22943. wereBack: {
  22944. height: math.unit(12 + 8 / 12, "feet"),
  22945. weight: math.unit(4000, "lb"),
  22946. name: "Back (Were)",
  22947. image: {
  22948. source: "./media/characters/dhari/were-back.svg",
  22949. extra: 1065 / 969,
  22950. bottom: 0.012
  22951. }
  22952. },
  22953. wereMaw: {
  22954. height: math.unit(0.625, "meters"),
  22955. name: "Maw (Were)",
  22956. image: {
  22957. source: "./media/characters/dhari/were-maw.svg"
  22958. }
  22959. },
  22960. },
  22961. [
  22962. {
  22963. name: "Normal",
  22964. height: math.unit(6 + 3 / 12, "feet"),
  22965. default: true
  22966. },
  22967. ]
  22968. ))
  22969. characterMakers.push(() => makeCharacter(
  22970. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22971. {
  22972. anthro: {
  22973. height: math.unit(5 + 7 / 12, "feet"),
  22974. weight: math.unit(175, "lb"),
  22975. name: "Anthro",
  22976. image: {
  22977. source: "./media/characters/rena-dyne/anthro.svg",
  22978. extra: 1849 / 1785,
  22979. bottom: 0.005
  22980. }
  22981. },
  22982. taur: {
  22983. height: math.unit(15 + 6 / 12, "feet"),
  22984. weight: math.unit(8000, "lb"),
  22985. name: "Taur",
  22986. image: {
  22987. source: "./media/characters/rena-dyne/taur.svg",
  22988. extra: 2315 / 2234,
  22989. bottom: 0.033
  22990. }
  22991. },
  22992. },
  22993. [
  22994. {
  22995. name: "Normal",
  22996. height: math.unit(5 + 7 / 12, "feet"),
  22997. default: true
  22998. },
  22999. ]
  23000. ))
  23001. characterMakers.push(() => makeCharacter(
  23002. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23003. {
  23004. front: {
  23005. height: math.unit(8, "feet"),
  23006. weight: math.unit(600, "lb"),
  23007. name: "Front",
  23008. image: {
  23009. source: "./media/characters/weremeep/front.svg",
  23010. extra: 970/849,
  23011. bottom: 7/977
  23012. }
  23013. },
  23014. },
  23015. [
  23016. {
  23017. name: "Normal",
  23018. height: math.unit(8, "feet"),
  23019. default: true
  23020. },
  23021. {
  23022. name: "Lorg",
  23023. height: math.unit(12, "feet")
  23024. },
  23025. {
  23026. name: "Oh Lawd She Comin'",
  23027. height: math.unit(20, "feet")
  23028. },
  23029. ]
  23030. ))
  23031. characterMakers.push(() => makeCharacter(
  23032. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23033. {
  23034. front: {
  23035. height: math.unit(4, "feet"),
  23036. weight: math.unit(90, "lb"),
  23037. name: "Front",
  23038. image: {
  23039. source: "./media/characters/reza/front.svg",
  23040. extra: 1183 / 1111,
  23041. bottom: 0.017
  23042. }
  23043. },
  23044. back: {
  23045. height: math.unit(4, "feet"),
  23046. weight: math.unit(90, "lb"),
  23047. name: "Back",
  23048. image: {
  23049. source: "./media/characters/reza/back.svg",
  23050. extra: 1183 / 1111,
  23051. bottom: 0.01
  23052. }
  23053. },
  23054. drake: {
  23055. height: math.unit(30, "feet"),
  23056. weight: math.unit(246960, "lb"),
  23057. name: "Drake",
  23058. image: {
  23059. source: "./media/characters/reza/drake.svg",
  23060. extra: 2350 / 2024,
  23061. bottom: 60.7 / 2403
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Normal",
  23068. height: math.unit(4, "feet"),
  23069. default: true
  23070. },
  23071. ]
  23072. ))
  23073. characterMakers.push(() => makeCharacter(
  23074. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23075. {
  23076. side: {
  23077. height: math.unit(15, "feet"),
  23078. weight: math.unit(14, "tons"),
  23079. name: "Side",
  23080. image: {
  23081. source: "./media/characters/athea/side.svg",
  23082. extra: 960 / 540,
  23083. bottom: 0.003
  23084. }
  23085. },
  23086. sitting: {
  23087. height: math.unit(6 * 2.85, "feet"),
  23088. weight: math.unit(14, "tons"),
  23089. name: "Sitting",
  23090. image: {
  23091. source: "./media/characters/athea/sitting.svg",
  23092. extra: 621 / 581,
  23093. bottom: 0.075
  23094. }
  23095. },
  23096. maw: {
  23097. height: math.unit(7.59498031496063, "feet"),
  23098. name: "Maw",
  23099. image: {
  23100. source: "./media/characters/athea/maw.svg"
  23101. }
  23102. },
  23103. },
  23104. [
  23105. {
  23106. name: "Lap Cat",
  23107. height: math.unit(2.5, "feet")
  23108. },
  23109. {
  23110. name: "Minimacro",
  23111. height: math.unit(15, "feet"),
  23112. default: true
  23113. },
  23114. {
  23115. name: "Macro",
  23116. height: math.unit(120, "feet")
  23117. },
  23118. {
  23119. name: "Macro+",
  23120. height: math.unit(640, "feet")
  23121. },
  23122. {
  23123. name: "Colossus",
  23124. height: math.unit(2.2, "miles")
  23125. },
  23126. ]
  23127. ))
  23128. characterMakers.push(() => makeCharacter(
  23129. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23130. {
  23131. front: {
  23132. height: math.unit(8 + 8 / 12, "feet"),
  23133. weight: math.unit(130, "kg"),
  23134. name: "Front",
  23135. image: {
  23136. source: "./media/characters/seroko/front.svg",
  23137. extra: 1385 / 1280,
  23138. bottom: 0.025
  23139. }
  23140. },
  23141. back: {
  23142. height: math.unit(8 + 8 / 12, "feet"),
  23143. weight: math.unit(130, "kg"),
  23144. name: "Back",
  23145. image: {
  23146. source: "./media/characters/seroko/back.svg",
  23147. extra: 1369 / 1238,
  23148. bottom: 0.018
  23149. }
  23150. },
  23151. frontDressed: {
  23152. height: math.unit(8 + 8 / 12, "feet"),
  23153. weight: math.unit(130, "kg"),
  23154. name: "Front (Dressed)",
  23155. image: {
  23156. source: "./media/characters/seroko/front-dressed.svg",
  23157. extra: 1366 / 1275,
  23158. bottom: 0.03
  23159. }
  23160. },
  23161. },
  23162. [
  23163. {
  23164. name: "Normal",
  23165. height: math.unit(8 + 8 / 12, "feet"),
  23166. default: true
  23167. },
  23168. ]
  23169. ))
  23170. characterMakers.push(() => makeCharacter(
  23171. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23172. {
  23173. front: {
  23174. height: math.unit(5.5, "feet"),
  23175. weight: math.unit(160, "lb"),
  23176. name: "Front",
  23177. image: {
  23178. source: "./media/characters/quatzi/front.svg",
  23179. extra: 2346 / 2242,
  23180. bottom: 0.015
  23181. }
  23182. },
  23183. },
  23184. [
  23185. {
  23186. name: "Normal",
  23187. height: math.unit(5.5, "feet"),
  23188. default: true
  23189. },
  23190. {
  23191. name: "Big",
  23192. height: math.unit(7.7, "feet")
  23193. },
  23194. ]
  23195. ))
  23196. characterMakers.push(() => makeCharacter(
  23197. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23198. {
  23199. front: {
  23200. height: math.unit(5 + 11 / 12, "feet"),
  23201. weight: math.unit(180, "lb"),
  23202. name: "Front",
  23203. image: {
  23204. source: "./media/characters/sen/front.svg",
  23205. extra: 1321 / 1254,
  23206. bottom: 0.015
  23207. }
  23208. },
  23209. side: {
  23210. height: math.unit(5 + 11 / 12, "feet"),
  23211. weight: math.unit(180, "lb"),
  23212. name: "Side",
  23213. image: {
  23214. source: "./media/characters/sen/side.svg",
  23215. extra: 1321 / 1254,
  23216. bottom: 0.007
  23217. }
  23218. },
  23219. back: {
  23220. height: math.unit(5 + 11 / 12, "feet"),
  23221. weight: math.unit(180, "lb"),
  23222. name: "Back",
  23223. image: {
  23224. source: "./media/characters/sen/back.svg",
  23225. extra: 1321 / 1254
  23226. }
  23227. },
  23228. },
  23229. [
  23230. {
  23231. name: "Normal",
  23232. height: math.unit(5 + 11 / 12, "feet"),
  23233. default: true
  23234. },
  23235. ]
  23236. ))
  23237. characterMakers.push(() => makeCharacter(
  23238. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23239. {
  23240. front: {
  23241. height: math.unit(166.6, "cm"),
  23242. weight: math.unit(66.6, "kg"),
  23243. name: "Front",
  23244. image: {
  23245. source: "./media/characters/fruity/front.svg",
  23246. extra: 1510 / 1386,
  23247. bottom: 0.04
  23248. }
  23249. },
  23250. back: {
  23251. height: math.unit(166.6, "cm"),
  23252. weight: math.unit(66.6, "lb"),
  23253. name: "Back",
  23254. image: {
  23255. source: "./media/characters/fruity/back.svg",
  23256. extra: 1563 / 1435,
  23257. bottom: 0.005
  23258. }
  23259. },
  23260. },
  23261. [
  23262. {
  23263. name: "Normal",
  23264. height: math.unit(166.6, "cm"),
  23265. default: true
  23266. },
  23267. {
  23268. name: "Demonic",
  23269. height: math.unit(166.6, "feet")
  23270. },
  23271. ]
  23272. ))
  23273. characterMakers.push(() => makeCharacter(
  23274. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23275. {
  23276. side: {
  23277. height: math.unit(10, "feet"),
  23278. weight: math.unit(500, "lb"),
  23279. name: "Side",
  23280. image: {
  23281. source: "./media/characters/zost/side.svg",
  23282. extra: 2870/2533,
  23283. bottom: 252/3122
  23284. }
  23285. },
  23286. mawFront: {
  23287. height: math.unit(1.08, "meters"),
  23288. name: "Maw (Front)",
  23289. image: {
  23290. source: "./media/characters/zost/maw-front.svg"
  23291. }
  23292. },
  23293. mawSide: {
  23294. height: math.unit(2.66, "feet"),
  23295. name: "Maw (Side)",
  23296. image: {
  23297. source: "./media/characters/zost/maw-side.svg"
  23298. }
  23299. },
  23300. wingspan: {
  23301. height: math.unit(7.4, "feet"),
  23302. name: "Wingspan",
  23303. image: {
  23304. source: "./media/characters/zost/wingspan.svg"
  23305. }
  23306. },
  23307. },
  23308. [
  23309. {
  23310. name: "Normal",
  23311. height: math.unit(10, "feet"),
  23312. default: true
  23313. },
  23314. ]
  23315. ))
  23316. characterMakers.push(() => makeCharacter(
  23317. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23318. {
  23319. front: {
  23320. height: math.unit(5 + 4 / 12, "feet"),
  23321. weight: math.unit(120, "lb"),
  23322. name: "Front",
  23323. image: {
  23324. source: "./media/characters/luci/front.svg",
  23325. extra: 1985 / 1884,
  23326. bottom: 0.04
  23327. }
  23328. },
  23329. back: {
  23330. height: math.unit(5 + 4 / 12, "feet"),
  23331. weight: math.unit(120, "lb"),
  23332. name: "Back",
  23333. image: {
  23334. source: "./media/characters/luci/back.svg",
  23335. extra: 1892 / 1791,
  23336. bottom: 0.002
  23337. }
  23338. },
  23339. },
  23340. [
  23341. {
  23342. name: "Normal",
  23343. height: math.unit(5 + 4 / 12, "feet"),
  23344. default: true
  23345. },
  23346. ]
  23347. ))
  23348. characterMakers.push(() => makeCharacter(
  23349. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23350. {
  23351. front: {
  23352. height: math.unit(1500, "feet"),
  23353. weight: math.unit(3.8e6, "tons"),
  23354. name: "Front",
  23355. image: {
  23356. source: "./media/characters/2th/front.svg",
  23357. extra: 3489 / 3350,
  23358. bottom: 0.1
  23359. }
  23360. },
  23361. foot: {
  23362. height: math.unit(461, "feet"),
  23363. name: "Foot",
  23364. image: {
  23365. source: "./media/characters/2th/foot.svg"
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "\"Micro\"",
  23372. height: math.unit(15 + 7 / 12, "feet")
  23373. },
  23374. {
  23375. name: "Normal",
  23376. height: math.unit(1500, "feet"),
  23377. default: true
  23378. },
  23379. {
  23380. name: "Macro",
  23381. height: math.unit(5000, "feet")
  23382. },
  23383. {
  23384. name: "Megamacro",
  23385. height: math.unit(15, "miles")
  23386. },
  23387. {
  23388. name: "Gigamacro",
  23389. height: math.unit(4000, "miles")
  23390. },
  23391. {
  23392. name: "Galactic",
  23393. height: math.unit(50, "AU")
  23394. },
  23395. ]
  23396. ))
  23397. characterMakers.push(() => makeCharacter(
  23398. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23399. {
  23400. front: {
  23401. height: math.unit(5 + 6 / 12, "feet"),
  23402. weight: math.unit(220, "lb"),
  23403. name: "Front",
  23404. image: {
  23405. source: "./media/characters/amethyst/front.svg",
  23406. extra: 2078 / 2040,
  23407. bottom: 0.045
  23408. }
  23409. },
  23410. back: {
  23411. height: math.unit(5 + 6 / 12, "feet"),
  23412. weight: math.unit(220, "lb"),
  23413. name: "Back",
  23414. image: {
  23415. source: "./media/characters/amethyst/back.svg",
  23416. extra: 2021 / 1989,
  23417. bottom: 0.02
  23418. }
  23419. },
  23420. },
  23421. [
  23422. {
  23423. name: "Normal",
  23424. height: math.unit(5 + 6 / 12, "feet"),
  23425. default: true
  23426. },
  23427. ]
  23428. ))
  23429. characterMakers.push(() => makeCharacter(
  23430. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23431. {
  23432. front: {
  23433. height: math.unit(4 + 11 / 12, "feet"),
  23434. weight: math.unit(120, "lb"),
  23435. name: "Front",
  23436. image: {
  23437. source: "./media/characters/yumi-akiyama/front.svg",
  23438. extra: 1327 / 1235,
  23439. bottom: 0.02
  23440. }
  23441. },
  23442. back: {
  23443. height: math.unit(4 + 11 / 12, "feet"),
  23444. weight: math.unit(120, "lb"),
  23445. name: "Back",
  23446. image: {
  23447. source: "./media/characters/yumi-akiyama/back.svg",
  23448. extra: 1287 / 1245,
  23449. bottom: 0.002
  23450. }
  23451. },
  23452. },
  23453. [
  23454. {
  23455. name: "Galactic",
  23456. height: math.unit(50, "galaxies"),
  23457. default: true
  23458. },
  23459. {
  23460. name: "Universal",
  23461. height: math.unit(100, "universes")
  23462. },
  23463. ]
  23464. ))
  23465. characterMakers.push(() => makeCharacter(
  23466. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23467. {
  23468. front: {
  23469. height: math.unit(8, "feet"),
  23470. weight: math.unit(500, "lb"),
  23471. name: "Front",
  23472. image: {
  23473. source: "./media/characters/rifter-yrmori/front.svg",
  23474. extra: 1180 / 1125,
  23475. bottom: 0.02
  23476. }
  23477. },
  23478. back: {
  23479. height: math.unit(8, "feet"),
  23480. weight: math.unit(500, "lb"),
  23481. name: "Back",
  23482. image: {
  23483. source: "./media/characters/rifter-yrmori/back.svg",
  23484. extra: 1190 / 1145,
  23485. bottom: 0.001
  23486. }
  23487. },
  23488. wings: {
  23489. height: math.unit(7.75, "feet"),
  23490. weight: math.unit(500, "lb"),
  23491. name: "Wings",
  23492. image: {
  23493. source: "./media/characters/rifter-yrmori/wings.svg",
  23494. extra: 1357 / 1285
  23495. }
  23496. },
  23497. maw: {
  23498. height: math.unit(0.8, "feet"),
  23499. name: "Maw",
  23500. image: {
  23501. source: "./media/characters/rifter-yrmori/maw.svg"
  23502. }
  23503. },
  23504. mawfront: {
  23505. height: math.unit(1.45, "feet"),
  23506. name: "Maw (Front)",
  23507. image: {
  23508. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23509. }
  23510. },
  23511. },
  23512. [
  23513. {
  23514. name: "Normal",
  23515. height: math.unit(8, "feet"),
  23516. default: true
  23517. },
  23518. {
  23519. name: "Macro",
  23520. height: math.unit(42, "meters")
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23526. {
  23527. were: {
  23528. height: math.unit(25 + 6 / 12, "feet"),
  23529. weight: math.unit(10000, "lb"),
  23530. name: "Were",
  23531. image: {
  23532. source: "./media/characters/tahajin/were.svg",
  23533. extra: 801 / 770,
  23534. bottom: 0.042
  23535. }
  23536. },
  23537. aquatic: {
  23538. height: math.unit(6 + 4 / 12, "feet"),
  23539. weight: math.unit(160, "lb"),
  23540. name: "Aquatic",
  23541. image: {
  23542. source: "./media/characters/tahajin/aquatic.svg",
  23543. extra: 572 / 542,
  23544. bottom: 0.04
  23545. }
  23546. },
  23547. chow: {
  23548. height: math.unit(8 + 11 / 12, "feet"),
  23549. weight: math.unit(450, "lb"),
  23550. name: "Chow",
  23551. image: {
  23552. source: "./media/characters/tahajin/chow.svg",
  23553. extra: 660 / 640,
  23554. bottom: 0.015
  23555. }
  23556. },
  23557. demiNaga: {
  23558. height: math.unit(6 + 8 / 12, "feet"),
  23559. weight: math.unit(300, "lb"),
  23560. name: "Demi Naga",
  23561. image: {
  23562. source: "./media/characters/tahajin/demi-naga.svg",
  23563. extra: 643 / 615,
  23564. bottom: 0.1
  23565. }
  23566. },
  23567. data: {
  23568. height: math.unit(5, "inches"),
  23569. weight: math.unit(0.1, "lb"),
  23570. name: "Data",
  23571. image: {
  23572. source: "./media/characters/tahajin/data.svg"
  23573. }
  23574. },
  23575. fluu: {
  23576. height: math.unit(5 + 7 / 12, "feet"),
  23577. weight: math.unit(140, "lb"),
  23578. name: "Fluu",
  23579. image: {
  23580. source: "./media/characters/tahajin/fluu.svg",
  23581. extra: 628 / 592,
  23582. bottom: 0.02
  23583. }
  23584. },
  23585. starWarrior: {
  23586. height: math.unit(4 + 5 / 12, "feet"),
  23587. weight: math.unit(50, "lb"),
  23588. name: "Star Warrior",
  23589. image: {
  23590. source: "./media/characters/tahajin/star-warrior.svg"
  23591. }
  23592. },
  23593. },
  23594. [
  23595. {
  23596. name: "Normal",
  23597. height: math.unit(25 + 6 / 12, "feet"),
  23598. default: true
  23599. },
  23600. ]
  23601. ))
  23602. characterMakers.push(() => makeCharacter(
  23603. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23604. {
  23605. front: {
  23606. height: math.unit(8, "feet"),
  23607. weight: math.unit(350, "lb"),
  23608. name: "Front",
  23609. image: {
  23610. source: "./media/characters/gabira/front.svg",
  23611. extra: 1261/1154,
  23612. bottom: 51/1312
  23613. }
  23614. },
  23615. back: {
  23616. height: math.unit(8, "feet"),
  23617. weight: math.unit(350, "lb"),
  23618. name: "Back",
  23619. image: {
  23620. source: "./media/characters/gabira/back.svg",
  23621. extra: 1265/1163,
  23622. bottom: 46/1311
  23623. }
  23624. },
  23625. head: {
  23626. height: math.unit(2.85, "feet"),
  23627. name: "Head",
  23628. image: {
  23629. source: "./media/characters/gabira/head.svg"
  23630. }
  23631. },
  23632. },
  23633. [
  23634. {
  23635. name: "Normal",
  23636. height: math.unit(8, "feet"),
  23637. default: true
  23638. },
  23639. ]
  23640. ))
  23641. characterMakers.push(() => makeCharacter(
  23642. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23643. {
  23644. front: {
  23645. height: math.unit(5 + 3 / 12, "feet"),
  23646. weight: math.unit(137, "lb"),
  23647. name: "Front",
  23648. image: {
  23649. source: "./media/characters/sasha-katraine/front.svg",
  23650. extra: 1745/1694,
  23651. bottom: 37/1782
  23652. }
  23653. },
  23654. back: {
  23655. height: math.unit(5 + 3 / 12, "feet"),
  23656. weight: math.unit(137, "lb"),
  23657. name: "Back",
  23658. image: {
  23659. source: "./media/characters/sasha-katraine/back.svg",
  23660. extra: 1776/1699,
  23661. bottom: 26/1802
  23662. }
  23663. },
  23664. },
  23665. [
  23666. {
  23667. name: "Micro",
  23668. height: math.unit(5, "inches")
  23669. },
  23670. {
  23671. name: "Normal",
  23672. height: math.unit(5 + 3 / 12, "feet"),
  23673. default: true
  23674. },
  23675. ]
  23676. ))
  23677. characterMakers.push(() => makeCharacter(
  23678. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23679. {
  23680. side: {
  23681. height: math.unit(4, "inches"),
  23682. weight: math.unit(200, "grams"),
  23683. name: "Side",
  23684. image: {
  23685. source: "./media/characters/der/side.svg",
  23686. extra: 719 / 400,
  23687. bottom: 30.6 / 749.9187
  23688. }
  23689. },
  23690. },
  23691. [
  23692. {
  23693. name: "Micro",
  23694. height: math.unit(4, "inches"),
  23695. default: true
  23696. },
  23697. ]
  23698. ))
  23699. characterMakers.push(() => makeCharacter(
  23700. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23701. {
  23702. side: {
  23703. height: math.unit(30, "meters"),
  23704. weight: math.unit(700, "tonnes"),
  23705. name: "Side",
  23706. image: {
  23707. source: "./media/characters/fixerdragon/side.svg",
  23708. extra: (1293.0514 - 116.03) / 1106.86,
  23709. bottom: 116.03 / 1293.0514
  23710. }
  23711. },
  23712. },
  23713. [
  23714. {
  23715. name: "Planck",
  23716. height: math.unit(1.6e-35, "meters")
  23717. },
  23718. {
  23719. name: "Micro",
  23720. height: math.unit(0.4, "meters")
  23721. },
  23722. {
  23723. name: "Normal",
  23724. height: math.unit(30, "meters"),
  23725. default: true
  23726. },
  23727. {
  23728. name: "Megamacro",
  23729. height: math.unit(1.2, "megameters")
  23730. },
  23731. {
  23732. name: "Teramacro",
  23733. height: math.unit(130, "terameters")
  23734. },
  23735. {
  23736. name: "Yottamacro",
  23737. height: math.unit(6200, "yottameters")
  23738. },
  23739. ]
  23740. ));
  23741. characterMakers.push(() => makeCharacter(
  23742. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23743. {
  23744. front: {
  23745. height: math.unit(8, "feet"),
  23746. weight: math.unit(250, "lb"),
  23747. name: "Front",
  23748. image: {
  23749. source: "./media/characters/kite/front.svg",
  23750. extra: 2796 / 2659,
  23751. bottom: 0.002
  23752. }
  23753. },
  23754. },
  23755. [
  23756. {
  23757. name: "Normal",
  23758. height: math.unit(8, "feet"),
  23759. default: true
  23760. },
  23761. {
  23762. name: "Macro",
  23763. height: math.unit(360, "feet")
  23764. },
  23765. {
  23766. name: "Megamacro",
  23767. height: math.unit(1500, "feet")
  23768. },
  23769. ]
  23770. ))
  23771. characterMakers.push(() => makeCharacter(
  23772. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23773. {
  23774. anthro_front: {
  23775. height: math.unit(5 + 11/12, "feet"),
  23776. weight: math.unit(170, "lb"),
  23777. name: "Front",
  23778. image: {
  23779. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23780. extra: 1735/1585,
  23781. bottom: 96/1831
  23782. },
  23783. form: "anthro",
  23784. default: true
  23785. },
  23786. anthro_back: {
  23787. height: math.unit(5 + 11/12, "feet"),
  23788. weight: math.unit(170, "lb"),
  23789. name: "Back",
  23790. image: {
  23791. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23792. extra: 1749/1607,
  23793. bottom: 28/1777
  23794. },
  23795. form: "anthro"
  23796. },
  23797. anthro_male: {
  23798. height: math.unit(5 + 11/12, "feet"),
  23799. weight: math.unit(170, "lb"),
  23800. name: "Male",
  23801. image: {
  23802. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23803. extra: 1855/1713,
  23804. bottom: 63/1918
  23805. },
  23806. form: "anthro"
  23807. },
  23808. taur_front: {
  23809. height: math.unit(5 + 7/12, "feet"),
  23810. weight: math.unit(170, "lb"),
  23811. name: "Front",
  23812. image: {
  23813. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23814. extra: 1151/1059,
  23815. bottom: 356/1507
  23816. },
  23817. form: "taur",
  23818. default: true
  23819. },
  23820. anthro_frontDressed: {
  23821. height: math.unit(5 + 11/12, "feet"),
  23822. weight: math.unit(170, "lb"),
  23823. name: "Front (Dressed)",
  23824. image: {
  23825. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23826. extra: 1735/1585,
  23827. bottom: 96/1831
  23828. },
  23829. form: "anthro"
  23830. },
  23831. anthro_backDressed: {
  23832. height: math.unit(5 + 11/12, "feet"),
  23833. weight: math.unit(170, "lb"),
  23834. name: "Back (Dressed)",
  23835. image: {
  23836. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23837. extra: 1749/1607,
  23838. bottom: 28/1777
  23839. },
  23840. form: "anthro"
  23841. },
  23842. anthro_maleDressed: {
  23843. height: math.unit(5 + 11/12, "feet"),
  23844. weight: math.unit(170, "lb"),
  23845. name: "Male (Dressed)",
  23846. image: {
  23847. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23848. extra: 1855/1713,
  23849. bottom: 63/1918
  23850. },
  23851. form: "anthro"
  23852. },
  23853. taur_frontDressed: {
  23854. height: math.unit(5 + 7/12, "feet"),
  23855. weight: math.unit(170, "lb"),
  23856. name: "Front (Dressed)",
  23857. image: {
  23858. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23859. extra: 1151/1059,
  23860. bottom: 356/1507
  23861. },
  23862. form: "taur"
  23863. },
  23864. maw: {
  23865. height: math.unit(1.46, "feet"),
  23866. name: "Maw",
  23867. image: {
  23868. source: "./media/characters/poojawa-vynar/maw.svg"
  23869. },
  23870. allForms: true
  23871. },
  23872. head: {
  23873. height: math.unit(2.34, "feet"),
  23874. name: "Head",
  23875. image: {
  23876. source: "./media/characters/poojawa-vynar/head.svg"
  23877. },
  23878. allForms: true
  23879. },
  23880. leftPaw: {
  23881. height: math.unit(1.72, "feet"),
  23882. name: "Left Paw",
  23883. image: {
  23884. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23885. },
  23886. allForms: true
  23887. },
  23888. rightPaw: {
  23889. height: math.unit(1.61, "feet"),
  23890. name: "Right Paw",
  23891. image: {
  23892. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23893. },
  23894. allForms: true
  23895. },
  23896. toering: {
  23897. height: math.unit(2.9, "inches"),
  23898. name: "Toering",
  23899. image: {
  23900. source: "./media/characters/poojawa-vynar/toering.svg"
  23901. },
  23902. allForms: true
  23903. },
  23904. shaft: {
  23905. height: math.unit(0.625, "feet"),
  23906. name: "Shaft",
  23907. image: {
  23908. source: "./media/characters/poojawa-vynar/shaft.svg"
  23909. },
  23910. allForms: true
  23911. },
  23912. spade: {
  23913. height: math.unit(0.42, "feet"),
  23914. name: "Spade",
  23915. image: {
  23916. source: "./media/characters/poojawa-vynar/spade.svg"
  23917. },
  23918. allForms: true
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Shortstack",
  23924. height: math.unit(4, "feet"),
  23925. form: "anthro"
  23926. },
  23927. {
  23928. name: "Normal",
  23929. height: math.unit(5 + 11 / 12, "feet"),
  23930. form: "anthro",
  23931. default: true
  23932. },
  23933. {
  23934. name: "Tauric",
  23935. height: math.unit(4, "meters"),
  23936. form: "taur",
  23937. default: true
  23938. },
  23939. ],
  23940. {
  23941. "anthro": {
  23942. name: "Anthro",
  23943. default: true
  23944. },
  23945. "taur": {
  23946. name: "Taur",
  23947. },
  23948. }
  23949. ))
  23950. characterMakers.push(() => makeCharacter(
  23951. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23952. {
  23953. front: {
  23954. height: math.unit(293, "meters"),
  23955. weight: math.unit(70400, "tons"),
  23956. name: "Front",
  23957. image: {
  23958. source: "./media/characters/violette/front.svg",
  23959. extra: 1227 / 1180,
  23960. bottom: 0.005
  23961. }
  23962. },
  23963. back: {
  23964. height: math.unit(293, "meters"),
  23965. weight: math.unit(70400, "tons"),
  23966. name: "Back",
  23967. image: {
  23968. source: "./media/characters/violette/back.svg",
  23969. extra: 1227 / 1180,
  23970. bottom: 0.005
  23971. }
  23972. },
  23973. },
  23974. [
  23975. {
  23976. name: "Macro",
  23977. height: math.unit(293, "meters"),
  23978. default: true
  23979. },
  23980. ]
  23981. ))
  23982. characterMakers.push(() => makeCharacter(
  23983. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  23984. {
  23985. front: {
  23986. height: math.unit(1050, "feet"),
  23987. weight: math.unit(200000, "tons"),
  23988. name: "Front",
  23989. image: {
  23990. source: "./media/characters/alessandra/front.svg",
  23991. extra: 960 / 912,
  23992. bottom: 0.06
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Macro",
  23999. height: math.unit(1050, "feet")
  24000. },
  24001. {
  24002. name: "Macro+",
  24003. height: math.unit(900, "meters"),
  24004. default: true
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24010. {
  24011. front: {
  24012. height: math.unit(5, "feet"),
  24013. weight: math.unit(187, "lb"),
  24014. name: "Front",
  24015. image: {
  24016. source: "./media/characters/person/front.svg",
  24017. extra: 3087 / 2945,
  24018. bottom: 91 / 3181
  24019. }
  24020. },
  24021. },
  24022. [
  24023. {
  24024. name: "Micro",
  24025. height: math.unit(3, "inches")
  24026. },
  24027. {
  24028. name: "Normal",
  24029. height: math.unit(5, "feet"),
  24030. default: true
  24031. },
  24032. {
  24033. name: "Macro",
  24034. height: math.unit(90, "feet")
  24035. },
  24036. {
  24037. name: "Max Size",
  24038. height: math.unit(280, "feet")
  24039. },
  24040. ]
  24041. ))
  24042. characterMakers.push(() => makeCharacter(
  24043. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24044. {
  24045. front: {
  24046. height: math.unit(4.5, "meters"),
  24047. weight: math.unit(3200, "lb"),
  24048. name: "Front",
  24049. image: {
  24050. source: "./media/characters/ty/front.svg",
  24051. extra: 1038 / 960,
  24052. bottom: 31.156 / 1068
  24053. }
  24054. },
  24055. back: {
  24056. height: math.unit(4.5, "meters"),
  24057. weight: math.unit(3200, "lb"),
  24058. name: "Back",
  24059. image: {
  24060. source: "./media/characters/ty/back.svg",
  24061. extra: 1044 / 966,
  24062. bottom: 7.48 / 1049
  24063. }
  24064. },
  24065. },
  24066. [
  24067. {
  24068. name: "Normal",
  24069. height: math.unit(4.5, "meters"),
  24070. default: true
  24071. },
  24072. ]
  24073. ))
  24074. characterMakers.push(() => makeCharacter(
  24075. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24076. {
  24077. front: {
  24078. height: math.unit(5 + 4 / 12, "feet"),
  24079. weight: math.unit(115, "lb"),
  24080. name: "Front",
  24081. image: {
  24082. source: "./media/characters/rocky/front.svg",
  24083. extra: 1012 / 975,
  24084. bottom: 54 / 1066
  24085. }
  24086. },
  24087. },
  24088. [
  24089. {
  24090. name: "Normal",
  24091. height: math.unit(5 + 4 / 12, "feet"),
  24092. default: true
  24093. },
  24094. ]
  24095. ))
  24096. characterMakers.push(() => makeCharacter(
  24097. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24098. {
  24099. upright: {
  24100. height: math.unit(6, "meters"),
  24101. weight: math.unit(4000, "kg"),
  24102. name: "Upright",
  24103. image: {
  24104. source: "./media/characters/ruin/upright.svg",
  24105. extra: 668 / 661,
  24106. bottom: 42 / 799.8396
  24107. }
  24108. },
  24109. },
  24110. [
  24111. {
  24112. name: "Normal",
  24113. height: math.unit(6, "meters"),
  24114. default: true
  24115. },
  24116. ]
  24117. ))
  24118. characterMakers.push(() => makeCharacter(
  24119. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24120. {
  24121. front: {
  24122. height: math.unit(5, "feet"),
  24123. weight: math.unit(106, "lb"),
  24124. name: "Front",
  24125. image: {
  24126. source: "./media/characters/robin/front.svg",
  24127. extra: 862 / 799,
  24128. bottom: 42.4 / 914.8856
  24129. }
  24130. },
  24131. },
  24132. [
  24133. {
  24134. name: "Normal",
  24135. height: math.unit(5, "feet"),
  24136. default: true
  24137. },
  24138. ]
  24139. ))
  24140. characterMakers.push(() => makeCharacter(
  24141. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24142. {
  24143. side: {
  24144. height: math.unit(3, "feet"),
  24145. weight: math.unit(225, "lb"),
  24146. name: "Side",
  24147. image: {
  24148. source: "./media/characters/saian/side.svg",
  24149. extra: 566 / 356,
  24150. bottom: 79.7 / 643
  24151. }
  24152. },
  24153. maw: {
  24154. height: math.unit(2.85, "feet"),
  24155. name: "Maw",
  24156. image: {
  24157. source: "./media/characters/saian/maw.svg"
  24158. }
  24159. },
  24160. },
  24161. [
  24162. {
  24163. name: "Normal",
  24164. height: math.unit(3, "feet"),
  24165. default: true
  24166. },
  24167. ]
  24168. ))
  24169. characterMakers.push(() => makeCharacter(
  24170. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24171. {
  24172. side: {
  24173. height: math.unit(8, "feet"),
  24174. weight: math.unit(300, "lb"),
  24175. name: "Side",
  24176. image: {
  24177. source: "./media/characters/equus-silvermane/side.svg",
  24178. extra: 2176 / 2050,
  24179. bottom: 65.7 / 2245
  24180. }
  24181. },
  24182. front: {
  24183. height: math.unit(8, "feet"),
  24184. weight: math.unit(300, "lb"),
  24185. name: "Front",
  24186. image: {
  24187. source: "./media/characters/equus-silvermane/front.svg",
  24188. extra: 4633 / 4400,
  24189. bottom: 71.3 / 4706.915
  24190. }
  24191. },
  24192. sideStepping: {
  24193. height: math.unit(8, "feet"),
  24194. weight: math.unit(300, "lb"),
  24195. name: "Side (Stepping)",
  24196. image: {
  24197. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24198. extra: 1968 / 1860,
  24199. bottom: 16.4 / 1989
  24200. }
  24201. },
  24202. },
  24203. [
  24204. {
  24205. name: "Normal",
  24206. height: math.unit(8, "feet")
  24207. },
  24208. {
  24209. name: "Minimacro",
  24210. height: math.unit(75, "feet"),
  24211. default: true
  24212. },
  24213. {
  24214. name: "Macro",
  24215. height: math.unit(150, "feet")
  24216. },
  24217. {
  24218. name: "Macro+",
  24219. height: math.unit(1000, "feet")
  24220. },
  24221. {
  24222. name: "Megamacro",
  24223. height: math.unit(1, "mile")
  24224. },
  24225. ]
  24226. ))
  24227. characterMakers.push(() => makeCharacter(
  24228. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24229. {
  24230. side: {
  24231. height: math.unit(20, "feet"),
  24232. weight: math.unit(30000, "kg"),
  24233. name: "Side",
  24234. image: {
  24235. source: "./media/characters/windar/side.svg",
  24236. extra: 1491 / 1248,
  24237. bottom: 82.56 / 1568
  24238. }
  24239. },
  24240. },
  24241. [
  24242. {
  24243. name: "Normal",
  24244. height: math.unit(20, "feet"),
  24245. default: true
  24246. },
  24247. ]
  24248. ))
  24249. characterMakers.push(() => makeCharacter(
  24250. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24251. {
  24252. side: {
  24253. height: math.unit(15.66, "feet"),
  24254. weight: math.unit(150, "lb"),
  24255. name: "Side",
  24256. image: {
  24257. source: "./media/characters/melody/side.svg",
  24258. extra: 1097 / 944,
  24259. bottom: 11.8 / 1109
  24260. }
  24261. },
  24262. sideOutfit: {
  24263. height: math.unit(15.66, "feet"),
  24264. weight: math.unit(150, "lb"),
  24265. name: "Side (Outfit)",
  24266. image: {
  24267. source: "./media/characters/melody/side-outfit.svg",
  24268. extra: 1097 / 944,
  24269. bottom: 11.8 / 1109
  24270. }
  24271. },
  24272. },
  24273. [
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(15.66, "feet"),
  24277. default: true
  24278. },
  24279. ]
  24280. ))
  24281. characterMakers.push(() => makeCharacter(
  24282. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24283. {
  24284. armoredFront: {
  24285. height: math.unit(8, "feet"),
  24286. weight: math.unit(325, "lb"),
  24287. name: "Front",
  24288. image: {
  24289. source: "./media/characters/windera/armored-front.svg",
  24290. extra: 1830/1598,
  24291. bottom: 151/1981
  24292. },
  24293. form: "armored",
  24294. default: true
  24295. },
  24296. macroFront: {
  24297. height: math.unit(70, "feet"),
  24298. weight: math.unit(315453, "lb"),
  24299. name: "Front",
  24300. image: {
  24301. source: "./media/characters/windera/macro-front.svg",
  24302. extra: 963/883,
  24303. bottom: 23/986
  24304. },
  24305. form: "macro",
  24306. default: true
  24307. },
  24308. },
  24309. [
  24310. {
  24311. name: "Normal",
  24312. height: math.unit(8, "feet"),
  24313. default: true,
  24314. form: "armored"
  24315. },
  24316. {
  24317. name: "Normal",
  24318. height: math.unit(70, "feet"),
  24319. default: true,
  24320. form: "macro"
  24321. },
  24322. ],
  24323. {
  24324. "armored": {
  24325. name: "Armored",
  24326. default: true
  24327. },
  24328. "macro": {
  24329. name: "Macro",
  24330. },
  24331. }
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24335. {
  24336. front: {
  24337. height: math.unit(28.75, "feet"),
  24338. weight: math.unit(2000, "kg"),
  24339. name: "Front",
  24340. image: {
  24341. source: "./media/characters/sonear/front.svg",
  24342. extra: 1041.1 / 964.9,
  24343. bottom: 53.7 / 1096.6
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "Normal",
  24350. height: math.unit(28.75, "feet"),
  24351. default: true
  24352. },
  24353. ]
  24354. ))
  24355. characterMakers.push(() => makeCharacter(
  24356. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24357. {
  24358. side: {
  24359. height: math.unit(25.5, "feet"),
  24360. weight: math.unit(23000, "kg"),
  24361. name: "Side",
  24362. image: {
  24363. source: "./media/characters/kanara/side.svg"
  24364. }
  24365. },
  24366. },
  24367. [
  24368. {
  24369. name: "Normal",
  24370. height: math.unit(25.5, "feet"),
  24371. default: true
  24372. },
  24373. ]
  24374. ))
  24375. characterMakers.push(() => makeCharacter(
  24376. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24377. {
  24378. side: {
  24379. height: math.unit(10, "feet"),
  24380. weight: math.unit(1000, "kg"),
  24381. name: "Side",
  24382. image: {
  24383. source: "./media/characters/ereus/side.svg",
  24384. extra: 1157 / 959,
  24385. bottom: 153 / 1312.5
  24386. }
  24387. },
  24388. },
  24389. [
  24390. {
  24391. name: "Normal",
  24392. height: math.unit(10, "feet"),
  24393. default: true
  24394. },
  24395. ]
  24396. ))
  24397. characterMakers.push(() => makeCharacter(
  24398. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24399. {
  24400. side: {
  24401. height: math.unit(4.5, "feet"),
  24402. weight: math.unit(500, "lb"),
  24403. name: "Side",
  24404. image: {
  24405. source: "./media/characters/e-ter/side.svg",
  24406. extra: 1550 / 1248,
  24407. bottom: 146 / 1694
  24408. }
  24409. },
  24410. },
  24411. [
  24412. {
  24413. name: "Normal",
  24414. height: math.unit(4.5, "feet"),
  24415. default: true
  24416. },
  24417. ]
  24418. ))
  24419. characterMakers.push(() => makeCharacter(
  24420. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24421. {
  24422. side: {
  24423. height: math.unit(9.7, "feet"),
  24424. weight: math.unit(4000, "kg"),
  24425. name: "Side",
  24426. image: {
  24427. source: "./media/characters/yamie/side.svg"
  24428. }
  24429. },
  24430. },
  24431. [
  24432. {
  24433. name: "Normal",
  24434. height: math.unit(9.7, "feet"),
  24435. default: true
  24436. },
  24437. ]
  24438. ))
  24439. characterMakers.push(() => makeCharacter(
  24440. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24441. {
  24442. front: {
  24443. height: math.unit(50, "feet"),
  24444. weight: math.unit(50000, "kg"),
  24445. name: "Front",
  24446. image: {
  24447. source: "./media/characters/anders/front.svg",
  24448. extra: 570 / 539,
  24449. bottom: 14.7 / 586.7
  24450. }
  24451. },
  24452. },
  24453. [
  24454. {
  24455. name: "Large",
  24456. height: math.unit(50, "feet")
  24457. },
  24458. {
  24459. name: "Macro",
  24460. height: math.unit(2000, "feet"),
  24461. default: true
  24462. },
  24463. {
  24464. name: "Megamacro",
  24465. height: math.unit(12, "miles")
  24466. },
  24467. ]
  24468. ))
  24469. characterMakers.push(() => makeCharacter(
  24470. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24471. {
  24472. front: {
  24473. height: math.unit(7 + 2 / 12, "feet"),
  24474. weight: math.unit(300, "lb"),
  24475. name: "Front",
  24476. image: {
  24477. source: "./media/characters/reban/front.svg",
  24478. extra: 1287/1212,
  24479. bottom: 148/1435
  24480. }
  24481. },
  24482. head: {
  24483. height: math.unit(1.95, "feet"),
  24484. name: "Head",
  24485. image: {
  24486. source: "./media/characters/reban/head.svg"
  24487. }
  24488. },
  24489. maw: {
  24490. height: math.unit(0.95, "feet"),
  24491. name: "Maw",
  24492. image: {
  24493. source: "./media/characters/reban/maw.svg"
  24494. }
  24495. },
  24496. foot: {
  24497. height: math.unit(1.65, "feet"),
  24498. name: "Foot",
  24499. image: {
  24500. source: "./media/characters/reban/foot.svg"
  24501. }
  24502. },
  24503. dick: {
  24504. height: math.unit(7 / 5, "feet"),
  24505. name: "Dick",
  24506. image: {
  24507. source: "./media/characters/reban/dick.svg"
  24508. }
  24509. },
  24510. },
  24511. [
  24512. {
  24513. name: "Natural Height",
  24514. height: math.unit(7 + 2 / 12, "feet")
  24515. },
  24516. {
  24517. name: "Macro",
  24518. height: math.unit(500, "feet"),
  24519. default: true
  24520. },
  24521. {
  24522. name: "Canon Height",
  24523. height: math.unit(50, "AU")
  24524. },
  24525. ]
  24526. ))
  24527. characterMakers.push(() => makeCharacter(
  24528. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24529. {
  24530. front: {
  24531. height: math.unit(6, "feet"),
  24532. weight: math.unit(150, "lb"),
  24533. name: "Front",
  24534. image: {
  24535. source: "./media/characters/terrance-keayes/front.svg",
  24536. extra: 1.005,
  24537. bottom: 151 / 1615
  24538. }
  24539. },
  24540. side: {
  24541. height: math.unit(6, "feet"),
  24542. weight: math.unit(150, "lb"),
  24543. name: "Side",
  24544. image: {
  24545. source: "./media/characters/terrance-keayes/side.svg",
  24546. extra: 1.005,
  24547. bottom: 129.4 / 1544
  24548. }
  24549. },
  24550. back: {
  24551. height: math.unit(6, "feet"),
  24552. weight: math.unit(150, "lb"),
  24553. name: "Back",
  24554. image: {
  24555. source: "./media/characters/terrance-keayes/back.svg",
  24556. extra: 1.005,
  24557. bottom: 58.4 / 1557.3
  24558. }
  24559. },
  24560. dick: {
  24561. height: math.unit(6 * 0.208, "feet"),
  24562. name: "Dick",
  24563. image: {
  24564. source: "./media/characters/terrance-keayes/dick.svg"
  24565. }
  24566. },
  24567. },
  24568. [
  24569. {
  24570. name: "Canon Height",
  24571. height: math.unit(35, "miles"),
  24572. default: true
  24573. },
  24574. ]
  24575. ))
  24576. characterMakers.push(() => makeCharacter(
  24577. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24578. {
  24579. front: {
  24580. height: math.unit(6, "feet"),
  24581. weight: math.unit(150, "lb"),
  24582. name: "Front",
  24583. image: {
  24584. source: "./media/characters/ofelia/front.svg",
  24585. extra: 1130/1117,
  24586. bottom: 91/1221
  24587. }
  24588. },
  24589. back: {
  24590. height: math.unit(6, "feet"),
  24591. weight: math.unit(150, "lb"),
  24592. name: "Back",
  24593. image: {
  24594. source: "./media/characters/ofelia/back.svg",
  24595. extra: 1172/1159,
  24596. bottom: 28/1200
  24597. }
  24598. },
  24599. maw: {
  24600. height: math.unit(1, "feet"),
  24601. name: "Maw",
  24602. image: {
  24603. source: "./media/characters/ofelia/maw.svg"
  24604. }
  24605. },
  24606. foot: {
  24607. height: math.unit(1.949, "feet"),
  24608. name: "Foot",
  24609. image: {
  24610. source: "./media/characters/ofelia/foot.svg"
  24611. }
  24612. },
  24613. },
  24614. [
  24615. {
  24616. name: "Canon Height",
  24617. height: math.unit(2000, "miles"),
  24618. default: true
  24619. },
  24620. ]
  24621. ))
  24622. characterMakers.push(() => makeCharacter(
  24623. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24624. {
  24625. front: {
  24626. height: math.unit(6, "feet"),
  24627. weight: math.unit(150, "lb"),
  24628. name: "Front",
  24629. image: {
  24630. source: "./media/characters/samuel/front.svg",
  24631. extra: 265 / 258,
  24632. bottom: 2 / 266.1566
  24633. }
  24634. },
  24635. },
  24636. [
  24637. {
  24638. name: "Macro",
  24639. height: math.unit(100, "feet"),
  24640. default: true
  24641. },
  24642. {
  24643. name: "Full Size",
  24644. height: math.unit(1000, "miles")
  24645. },
  24646. ]
  24647. ))
  24648. characterMakers.push(() => makeCharacter(
  24649. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24650. {
  24651. front: {
  24652. height: math.unit(6, "feet"),
  24653. weight: math.unit(300, "lb"),
  24654. name: "Front",
  24655. image: {
  24656. source: "./media/characters/beishir-kiel/front.svg",
  24657. extra: 569 / 547,
  24658. bottom: 41.9 / 609
  24659. }
  24660. },
  24661. maw: {
  24662. height: math.unit(6 * 0.202, "feet"),
  24663. name: "Maw",
  24664. image: {
  24665. source: "./media/characters/beishir-kiel/maw.svg"
  24666. }
  24667. },
  24668. },
  24669. [
  24670. {
  24671. name: "Macro",
  24672. height: math.unit(300, "feet"),
  24673. default: true
  24674. },
  24675. ]
  24676. ))
  24677. characterMakers.push(() => makeCharacter(
  24678. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24679. {
  24680. front: {
  24681. height: math.unit(5 + 7/12, "feet"),
  24682. weight: math.unit(120, "lb"),
  24683. name: "Front",
  24684. image: {
  24685. source: "./media/characters/logan-grey/front.svg",
  24686. extra: 1836/1738,
  24687. bottom: 108/1944
  24688. }
  24689. },
  24690. back: {
  24691. height: math.unit(5 + 7/12, "feet"),
  24692. weight: math.unit(120, "lb"),
  24693. name: "Back",
  24694. image: {
  24695. source: "./media/characters/logan-grey/back.svg",
  24696. extra: 1880/1794,
  24697. bottom: 24/1904
  24698. }
  24699. },
  24700. frontSfw: {
  24701. height: math.unit(5 + 7/12, "feet"),
  24702. weight: math.unit(120, "lb"),
  24703. name: "Front (SFW)",
  24704. image: {
  24705. source: "./media/characters/logan-grey/front-sfw.svg",
  24706. extra: 1836/1738,
  24707. bottom: 108/1944
  24708. }
  24709. },
  24710. backSfw: {
  24711. height: math.unit(5 + 7/12, "feet"),
  24712. weight: math.unit(120, "lb"),
  24713. name: "Back (SFW)",
  24714. image: {
  24715. source: "./media/characters/logan-grey/back-sfw.svg",
  24716. extra: 1880/1794,
  24717. bottom: 24/1904
  24718. }
  24719. },
  24720. hands: {
  24721. height: math.unit(0.84, "feet"),
  24722. name: "Hands",
  24723. image: {
  24724. source: "./media/characters/logan-grey/hands.svg"
  24725. }
  24726. },
  24727. paws: {
  24728. height: math.unit(0.72, "feet"),
  24729. name: "Paws",
  24730. image: {
  24731. source: "./media/characters/logan-grey/paws.svg"
  24732. }
  24733. },
  24734. cock: {
  24735. height: math.unit(1.45, "feet"),
  24736. name: "Cock",
  24737. image: {
  24738. source: "./media/characters/logan-grey/cock.svg"
  24739. }
  24740. },
  24741. cockAlt: {
  24742. height: math.unit(1.437, "feet"),
  24743. name: "Cock (alt)",
  24744. image: {
  24745. source: "./media/characters/logan-grey/cock-alt.svg"
  24746. }
  24747. },
  24748. },
  24749. [
  24750. {
  24751. name: "Normal",
  24752. height: math.unit(5 + 8 / 12, "feet")
  24753. },
  24754. {
  24755. name: "The 500 Foot Femboy",
  24756. height: math.unit(500, "feet"),
  24757. default: true
  24758. },
  24759. {
  24760. name: "Megmacro",
  24761. height: math.unit(20, "miles")
  24762. },
  24763. ]
  24764. ))
  24765. characterMakers.push(() => makeCharacter(
  24766. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24767. {
  24768. front: {
  24769. height: math.unit(8 + 2 / 12, "feet"),
  24770. weight: math.unit(275, "lb"),
  24771. name: "Front",
  24772. image: {
  24773. source: "./media/characters/draganta/front.svg",
  24774. extra: 1177 / 1135,
  24775. bottom: 33.46 / 1212.1
  24776. }
  24777. },
  24778. },
  24779. [
  24780. {
  24781. name: "Normal",
  24782. height: math.unit(8 + 6 / 12, "feet"),
  24783. default: true
  24784. },
  24785. {
  24786. name: "Macro",
  24787. height: math.unit(150, "feet")
  24788. },
  24789. {
  24790. name: "Megamacro",
  24791. height: math.unit(1000, "miles")
  24792. },
  24793. ]
  24794. ))
  24795. characterMakers.push(() => makeCharacter(
  24796. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24797. {
  24798. front: {
  24799. height: math.unit(1.72, "m"),
  24800. weight: math.unit(80, "lb"),
  24801. name: "Front",
  24802. image: {
  24803. source: "./media/characters/voski/front.svg",
  24804. extra: 2076.22 / 2022.4,
  24805. bottom: 102.7 / 2177.3866
  24806. }
  24807. },
  24808. frontFlaccid: {
  24809. height: math.unit(1.72, "m"),
  24810. weight: math.unit(80, "lb"),
  24811. name: "Front (Flaccid)",
  24812. image: {
  24813. source: "./media/characters/voski/front-flaccid.svg",
  24814. extra: 2076.22 / 2022.4,
  24815. bottom: 102.7 / 2177.3866
  24816. }
  24817. },
  24818. frontErect: {
  24819. height: math.unit(1.72, "m"),
  24820. weight: math.unit(80, "lb"),
  24821. name: "Front (Erect)",
  24822. image: {
  24823. source: "./media/characters/voski/front-erect.svg",
  24824. extra: 2076.22 / 2022.4,
  24825. bottom: 102.7 / 2177.3866
  24826. }
  24827. },
  24828. back: {
  24829. height: math.unit(1.72, "m"),
  24830. weight: math.unit(80, "lb"),
  24831. name: "Back",
  24832. image: {
  24833. source: "./media/characters/voski/back.svg",
  24834. extra: 2104 / 2051,
  24835. bottom: 10.45 / 2113.63
  24836. }
  24837. },
  24838. },
  24839. [
  24840. {
  24841. name: "Normal",
  24842. height: math.unit(1.72, "m")
  24843. },
  24844. {
  24845. name: "Macro",
  24846. height: math.unit(55, "m"),
  24847. default: true
  24848. },
  24849. {
  24850. name: "Macro+",
  24851. height: math.unit(300, "m")
  24852. },
  24853. {
  24854. name: "Macro++",
  24855. height: math.unit(700, "m")
  24856. },
  24857. {
  24858. name: "Macro+++",
  24859. height: math.unit(4500, "m")
  24860. },
  24861. {
  24862. name: "Macro++++",
  24863. height: math.unit(45, "km")
  24864. },
  24865. {
  24866. name: "Macro+++++",
  24867. height: math.unit(1220, "km")
  24868. },
  24869. ]
  24870. ))
  24871. characterMakers.push(() => makeCharacter(
  24872. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24873. {
  24874. front: {
  24875. height: math.unit(2.3, "m"),
  24876. weight: math.unit(304, "kg"),
  24877. name: "Front",
  24878. image: {
  24879. source: "./media/characters/icowom-lee/front.svg",
  24880. extra: 985 / 955,
  24881. bottom: 25.4 / 1012
  24882. }
  24883. },
  24884. fronttentacles: {
  24885. height: math.unit(2.3, "m"),
  24886. weight: math.unit(304, "kg"),
  24887. name: "Front-tentacles",
  24888. image: {
  24889. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24890. extra: 985 / 955,
  24891. bottom: 25.4 / 1012
  24892. }
  24893. },
  24894. back: {
  24895. height: math.unit(2.3, "m"),
  24896. weight: math.unit(304, "kg"),
  24897. name: "Back",
  24898. image: {
  24899. source: "./media/characters/icowom-lee/back.svg",
  24900. extra: 975 / 954,
  24901. bottom: 9.5 / 985
  24902. }
  24903. },
  24904. backtentacles: {
  24905. height: math.unit(2.3, "m"),
  24906. weight: math.unit(304, "kg"),
  24907. name: "Back-tentacles",
  24908. image: {
  24909. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24910. extra: 975 / 954,
  24911. bottom: 9.5 / 985
  24912. }
  24913. },
  24914. frontDressed: {
  24915. height: math.unit(2.3, "m"),
  24916. weight: math.unit(304, "kg"),
  24917. name: "Front (Dressed)",
  24918. image: {
  24919. source: "./media/characters/icowom-lee/front-dressed.svg",
  24920. extra: 3076 / 2933,
  24921. bottom: 51.4 / 3125.1889
  24922. }
  24923. },
  24924. rump: {
  24925. height: math.unit(0.776, "meters"),
  24926. name: "Rump",
  24927. image: {
  24928. source: "./media/characters/icowom-lee/rump.svg"
  24929. }
  24930. },
  24931. genitals: {
  24932. height: math.unit(0.78, "meters"),
  24933. name: "Genitals",
  24934. image: {
  24935. source: "./media/characters/icowom-lee/genitals.svg"
  24936. }
  24937. },
  24938. },
  24939. [
  24940. {
  24941. name: "Normal",
  24942. height: math.unit(2.3, "meters"),
  24943. default: true
  24944. },
  24945. {
  24946. name: "Macro",
  24947. height: math.unit(94, "meters"),
  24948. default: true
  24949. },
  24950. ]
  24951. ))
  24952. characterMakers.push(() => makeCharacter(
  24953. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24954. {
  24955. front: {
  24956. height: math.unit(22, "meters"),
  24957. weight: math.unit(21000, "kg"),
  24958. name: "Front",
  24959. image: {
  24960. source: "./media/characters/shock-diamond/front.svg",
  24961. extra: 2204 / 2053,
  24962. bottom: 65 / 2239.47
  24963. }
  24964. },
  24965. frontNude: {
  24966. height: math.unit(22, "meters"),
  24967. weight: math.unit(21000, "kg"),
  24968. name: "Front (Nude)",
  24969. image: {
  24970. source: "./media/characters/shock-diamond/front-nude.svg",
  24971. extra: 2514 / 2285,
  24972. bottom: 13 / 2527.56
  24973. }
  24974. },
  24975. },
  24976. [
  24977. {
  24978. name: "Normal",
  24979. height: math.unit(3, "meters")
  24980. },
  24981. {
  24982. name: "Macro",
  24983. height: math.unit(22, "meters"),
  24984. default: true
  24985. },
  24986. ]
  24987. ))
  24988. characterMakers.push(() => makeCharacter(
  24989. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  24990. {
  24991. front: {
  24992. height: math.unit(5 + 4/12, "feet"),
  24993. weight: math.unit(125, "lb"),
  24994. name: "Front",
  24995. image: {
  24996. source: "./media/characters/rory/front.svg",
  24997. extra: 1790/1681,
  24998. bottom: 66/1856
  24999. },
  25000. form: "normal",
  25001. default: true
  25002. },
  25003. back: {
  25004. height: math.unit(5 + 4/12, "feet"),
  25005. weight: math.unit(125, "lb"),
  25006. name: "Back",
  25007. image: {
  25008. source: "./media/characters/rory/back.svg",
  25009. extra: 1805/1690,
  25010. bottom: 56/1861
  25011. },
  25012. form: "normal"
  25013. },
  25014. frontDressed: {
  25015. height: math.unit(5 + 4/12, "feet"),
  25016. weight: math.unit(125, "lb"),
  25017. name: "Front (Dressed)",
  25018. image: {
  25019. source: "./media/characters/rory/front-dressed.svg",
  25020. extra: 1790/1681,
  25021. bottom: 66/1856
  25022. },
  25023. form: "normal"
  25024. },
  25025. backDressed: {
  25026. height: math.unit(5 + 4/12, "feet"),
  25027. weight: math.unit(125, "lb"),
  25028. name: "Back (Dressed)",
  25029. image: {
  25030. source: "./media/characters/rory/back-dressed.svg",
  25031. extra: 1805/1690,
  25032. bottom: 56/1861
  25033. },
  25034. form: "normal"
  25035. },
  25036. frontNsfw: {
  25037. height: math.unit(5 + 4/12, "feet"),
  25038. weight: math.unit(125, "lb"),
  25039. name: "Front (NSFW)",
  25040. image: {
  25041. source: "./media/characters/rory/front-nsfw.svg",
  25042. extra: 1790/1681,
  25043. bottom: 66/1856
  25044. },
  25045. form: "normal"
  25046. },
  25047. backNsfw: {
  25048. height: math.unit(5 + 4/12, "feet"),
  25049. weight: math.unit(125, "lb"),
  25050. name: "Back (NSFW)",
  25051. image: {
  25052. source: "./media/characters/rory/back-nsfw.svg",
  25053. extra: 1805/1690,
  25054. bottom: 56/1861
  25055. },
  25056. form: "normal"
  25057. },
  25058. dick: {
  25059. height: math.unit(0.8, "feet"),
  25060. name: "Dick",
  25061. image: {
  25062. source: "./media/characters/rory/dick.svg"
  25063. },
  25064. form: "normal"
  25065. },
  25066. thicc_front: {
  25067. height: math.unit(5 + 4/12, "feet"),
  25068. weight: math.unit(195, "lb"),
  25069. name: "Front",
  25070. image: {
  25071. source: "./media/characters/rory/thicc-front.svg",
  25072. extra: 1220/1100,
  25073. bottom: 103/1323
  25074. },
  25075. form: "thicc",
  25076. default: true
  25077. },
  25078. thicc_back: {
  25079. height: math.unit(5 + 4/12, "feet"),
  25080. weight: math.unit(195, "lb"),
  25081. name: "Back",
  25082. image: {
  25083. source: "./media/characters/rory/thicc-back.svg",
  25084. extra: 1166/1086,
  25085. bottom: 35/1201
  25086. },
  25087. form: "thicc"
  25088. },
  25089. },
  25090. [
  25091. {
  25092. name: "Micro",
  25093. height: math.unit(3, "inches"),
  25094. allForms: true
  25095. },
  25096. {
  25097. name: "Normal",
  25098. height: math.unit(5 + 4/12, "feet"),
  25099. allForms: true,
  25100. default: true
  25101. },
  25102. {
  25103. name: "Macro",
  25104. height: math.unit(90, "feet"),
  25105. allForms: true
  25106. },
  25107. {
  25108. name: "Supercharged",
  25109. height: math.unit(270, "feet"),
  25110. allForms: true
  25111. },
  25112. ],
  25113. {
  25114. "normal": {
  25115. name: "Normal",
  25116. default: true
  25117. },
  25118. "thicc": {
  25119. name: "Thicc",
  25120. },
  25121. }
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25125. {
  25126. front: {
  25127. height: math.unit(5 + 9 / 12, "feet"),
  25128. weight: math.unit(190, "lb"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/sprisk/front.svg",
  25132. extra: 1225 / 1180,
  25133. bottom: 42.7 / 1266.4
  25134. }
  25135. },
  25136. frontNsfw: {
  25137. height: math.unit(5 + 9 / 12, "feet"),
  25138. weight: math.unit(190, "lb"),
  25139. name: "Front (NSFW)",
  25140. image: {
  25141. source: "./media/characters/sprisk/front-nsfw.svg",
  25142. extra: 1225 / 1180,
  25143. bottom: 42.7 / 1266.4
  25144. }
  25145. },
  25146. back: {
  25147. height: math.unit(5 + 9 / 12, "feet"),
  25148. weight: math.unit(190, "lb"),
  25149. name: "Back",
  25150. image: {
  25151. source: "./media/characters/sprisk/back.svg",
  25152. extra: 1247 / 1200,
  25153. bottom: 5.6 / 1253.04
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Tiny",
  25160. height: math.unit(2, "inches")
  25161. },
  25162. {
  25163. name: "Normal",
  25164. height: math.unit(5 + 9 / 12, "feet"),
  25165. default: true
  25166. },
  25167. {
  25168. name: "Mini Macro",
  25169. height: math.unit(18, "feet")
  25170. },
  25171. {
  25172. name: "Macro",
  25173. height: math.unit(100, "feet")
  25174. },
  25175. {
  25176. name: "MACRO",
  25177. height: math.unit(50, "miles")
  25178. },
  25179. {
  25180. name: "M A C R O",
  25181. height: math.unit(300, "miles")
  25182. },
  25183. ]
  25184. ))
  25185. characterMakers.push(() => makeCharacter(
  25186. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25187. {
  25188. side: {
  25189. height: math.unit(15.6, "meters"),
  25190. weight: math.unit(700000, "kg"),
  25191. name: "Side",
  25192. image: {
  25193. source: "./media/characters/bunsen/side.svg",
  25194. extra: 1644 / 358
  25195. }
  25196. },
  25197. foot: {
  25198. height: math.unit(1.611 * 1644 / 358, "meter"),
  25199. name: "Foot",
  25200. image: {
  25201. source: "./media/characters/bunsen/foot.svg"
  25202. }
  25203. },
  25204. },
  25205. [
  25206. {
  25207. name: "Small",
  25208. height: math.unit(10, "feet")
  25209. },
  25210. {
  25211. name: "Normal",
  25212. height: math.unit(15.6, "meters"),
  25213. default: true
  25214. },
  25215. ]
  25216. ))
  25217. characterMakers.push(() => makeCharacter(
  25218. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25219. {
  25220. front: {
  25221. height: math.unit(4 + 11 / 12, "feet"),
  25222. weight: math.unit(140, "lb"),
  25223. name: "Front",
  25224. image: {
  25225. source: "./media/characters/sesh/front.svg",
  25226. extra: 3420 / 3231,
  25227. bottom: 72 / 3949.5
  25228. }
  25229. },
  25230. },
  25231. [
  25232. {
  25233. name: "Normal",
  25234. height: math.unit(4 + 11 / 12, "feet")
  25235. },
  25236. {
  25237. name: "Grown",
  25238. height: math.unit(15, "feet"),
  25239. default: true
  25240. },
  25241. {
  25242. name: "Macro",
  25243. height: math.unit(1500, "feet")
  25244. },
  25245. {
  25246. name: "Megamacro",
  25247. height: math.unit(30, "miles")
  25248. },
  25249. {
  25250. name: "Continental",
  25251. height: math.unit(3000, "miles")
  25252. },
  25253. {
  25254. name: "Gravity Mass",
  25255. height: math.unit(300000, "miles")
  25256. },
  25257. {
  25258. name: "Planet Buster",
  25259. height: math.unit(30000000, "miles")
  25260. },
  25261. {
  25262. name: "Big",
  25263. height: math.unit(3000000000, "miles")
  25264. },
  25265. ]
  25266. ))
  25267. characterMakers.push(() => makeCharacter(
  25268. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25269. {
  25270. front: {
  25271. height: math.unit(9, "feet"),
  25272. weight: math.unit(350, "lb"),
  25273. name: "Front",
  25274. image: {
  25275. source: "./media/characters/pepper/front.svg",
  25276. extra: 1448 / 1312,
  25277. bottom: 9.4 / 1457.88
  25278. }
  25279. },
  25280. back: {
  25281. height: math.unit(9, "feet"),
  25282. weight: math.unit(350, "lb"),
  25283. name: "Back",
  25284. image: {
  25285. source: "./media/characters/pepper/back.svg",
  25286. extra: 1423 / 1300,
  25287. bottom: 4.6 / 1429
  25288. }
  25289. },
  25290. maw: {
  25291. height: math.unit(0.932, "feet"),
  25292. name: "Maw",
  25293. image: {
  25294. source: "./media/characters/pepper/maw.svg"
  25295. }
  25296. },
  25297. },
  25298. [
  25299. {
  25300. name: "Normal",
  25301. height: math.unit(9, "feet"),
  25302. default: true
  25303. },
  25304. ]
  25305. ))
  25306. characterMakers.push(() => makeCharacter(
  25307. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25308. {
  25309. front: {
  25310. height: math.unit(6, "feet"),
  25311. weight: math.unit(150, "lb"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/maelstrom/front.svg",
  25315. extra: 2100 / 1883,
  25316. bottom: 94 / 2196.7
  25317. }
  25318. },
  25319. },
  25320. [
  25321. {
  25322. name: "Less Kaiju",
  25323. height: math.unit(200, "feet")
  25324. },
  25325. {
  25326. name: "Kaiju",
  25327. height: math.unit(400, "feet"),
  25328. default: true
  25329. },
  25330. {
  25331. name: "Kaiju-er",
  25332. height: math.unit(600, "feet")
  25333. },
  25334. ]
  25335. ))
  25336. characterMakers.push(() => makeCharacter(
  25337. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25338. {
  25339. front: {
  25340. height: math.unit(6 + 5 / 12, "feet"),
  25341. weight: math.unit(180, "lb"),
  25342. name: "Front",
  25343. image: {
  25344. source: "./media/characters/lexir/front.svg",
  25345. extra: 180 / 172,
  25346. bottom: 12 / 192
  25347. }
  25348. },
  25349. back: {
  25350. height: math.unit(6 + 5 / 12, "feet"),
  25351. weight: math.unit(180, "lb"),
  25352. name: "Back",
  25353. image: {
  25354. source: "./media/characters/lexir/back.svg",
  25355. extra: 1273/1201,
  25356. bottom: 39/1312
  25357. }
  25358. },
  25359. },
  25360. [
  25361. {
  25362. name: "Very Smal",
  25363. height: math.unit(1, "nm")
  25364. },
  25365. {
  25366. name: "Normal",
  25367. height: math.unit(6 + 5 / 12, "feet"),
  25368. default: true
  25369. },
  25370. {
  25371. name: "Macro",
  25372. height: math.unit(1, "mile")
  25373. },
  25374. {
  25375. name: "Megamacro",
  25376. height: math.unit(50, "miles")
  25377. },
  25378. ]
  25379. ))
  25380. characterMakers.push(() => makeCharacter(
  25381. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25382. {
  25383. front: {
  25384. height: math.unit(1.5, "meters"),
  25385. weight: math.unit(100, "lb"),
  25386. name: "Front",
  25387. image: {
  25388. source: "./media/characters/maksio/front.svg",
  25389. extra: 1549 / 1531,
  25390. bottom: 123.7 / 1674.5429
  25391. }
  25392. },
  25393. back: {
  25394. height: math.unit(1.5, "meters"),
  25395. weight: math.unit(100, "lb"),
  25396. name: "Back",
  25397. image: {
  25398. source: "./media/characters/maksio/back.svg",
  25399. extra: 1541 / 1509,
  25400. bottom: 97 / 1639
  25401. }
  25402. },
  25403. hand: {
  25404. height: math.unit(0.621, "feet"),
  25405. name: "Hand",
  25406. image: {
  25407. source: "./media/characters/maksio/hand.svg"
  25408. }
  25409. },
  25410. foot: {
  25411. height: math.unit(1.611, "feet"),
  25412. name: "Foot",
  25413. image: {
  25414. source: "./media/characters/maksio/foot.svg"
  25415. }
  25416. },
  25417. },
  25418. [
  25419. {
  25420. name: "Shrunken",
  25421. height: math.unit(10, "cm")
  25422. },
  25423. {
  25424. name: "Normal",
  25425. height: math.unit(150, "cm"),
  25426. default: true
  25427. },
  25428. ]
  25429. ))
  25430. characterMakers.push(() => makeCharacter(
  25431. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25432. {
  25433. front: {
  25434. height: math.unit(100, "feet"),
  25435. name: "Front",
  25436. image: {
  25437. source: "./media/characters/erza-bear/front.svg",
  25438. extra: 2449 / 2390,
  25439. bottom: 46 / 2494
  25440. }
  25441. },
  25442. back: {
  25443. height: math.unit(100, "feet"),
  25444. name: "Back",
  25445. image: {
  25446. source: "./media/characters/erza-bear/back.svg",
  25447. extra: 2489 / 2430,
  25448. bottom: 85.4 / 2480
  25449. }
  25450. },
  25451. tail: {
  25452. height: math.unit(42, "feet"),
  25453. name: "Tail",
  25454. image: {
  25455. source: "./media/characters/erza-bear/tail.svg"
  25456. }
  25457. },
  25458. tongue: {
  25459. height: math.unit(8, "feet"),
  25460. name: "Tongue",
  25461. image: {
  25462. source: "./media/characters/erza-bear/tongue.svg"
  25463. }
  25464. },
  25465. dick: {
  25466. height: math.unit(10.5, "feet"),
  25467. name: "Dick",
  25468. image: {
  25469. source: "./media/characters/erza-bear/dick.svg"
  25470. }
  25471. },
  25472. dickVertical: {
  25473. height: math.unit(16.9, "feet"),
  25474. name: "Dick (Vertical)",
  25475. image: {
  25476. source: "./media/characters/erza-bear/dick-vertical.svg"
  25477. }
  25478. },
  25479. },
  25480. [
  25481. {
  25482. name: "Macro",
  25483. height: math.unit(100, "feet"),
  25484. default: true
  25485. },
  25486. ]
  25487. ))
  25488. characterMakers.push(() => makeCharacter(
  25489. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25490. {
  25491. front: {
  25492. height: math.unit(172, "cm"),
  25493. weight: math.unit(73, "kg"),
  25494. name: "Front",
  25495. image: {
  25496. source: "./media/characters/violet-flor/front.svg",
  25497. extra: 1530 / 1442,
  25498. bottom: 61.9 / 1588.8
  25499. }
  25500. },
  25501. back: {
  25502. height: math.unit(180, "cm"),
  25503. weight: math.unit(73, "kg"),
  25504. name: "Back",
  25505. image: {
  25506. source: "./media/characters/violet-flor/back.svg",
  25507. extra: 1692 / 1630,
  25508. bottom: 20 / 1712
  25509. }
  25510. },
  25511. },
  25512. [
  25513. {
  25514. name: "Normal",
  25515. height: math.unit(172, "cm"),
  25516. default: true
  25517. },
  25518. ]
  25519. ))
  25520. characterMakers.push(() => makeCharacter(
  25521. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25522. {
  25523. front: {
  25524. height: math.unit(6, "feet"),
  25525. weight: math.unit(220, "lb"),
  25526. name: "Front",
  25527. image: {
  25528. source: "./media/characters/lynn-rhea/front.svg",
  25529. extra: 310 / 273
  25530. }
  25531. },
  25532. back: {
  25533. height: math.unit(6, "feet"),
  25534. weight: math.unit(220, "lb"),
  25535. name: "Back",
  25536. image: {
  25537. source: "./media/characters/lynn-rhea/back.svg",
  25538. extra: 310 / 273
  25539. }
  25540. },
  25541. dicks: {
  25542. height: math.unit(0.9, "feet"),
  25543. name: "Dicks",
  25544. image: {
  25545. source: "./media/characters/lynn-rhea/dicks.svg"
  25546. }
  25547. },
  25548. slit: {
  25549. height: math.unit(0.4, "feet"),
  25550. name: "Slit",
  25551. image: {
  25552. source: "./media/characters/lynn-rhea/slit.svg"
  25553. }
  25554. },
  25555. },
  25556. [
  25557. {
  25558. name: "Micro",
  25559. height: math.unit(1, "inch")
  25560. },
  25561. {
  25562. name: "Macro",
  25563. height: math.unit(60, "feet"),
  25564. default: true
  25565. },
  25566. {
  25567. name: "Megamacro",
  25568. height: math.unit(2, "miles")
  25569. },
  25570. {
  25571. name: "Gigamacro",
  25572. height: math.unit(3, "earths")
  25573. },
  25574. {
  25575. name: "Galactic",
  25576. height: math.unit(0.8, "galaxies")
  25577. },
  25578. ]
  25579. ))
  25580. characterMakers.push(() => makeCharacter(
  25581. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25582. {
  25583. front: {
  25584. height: math.unit(1600, "feet"),
  25585. weight: math.unit(85758785169, "kg"),
  25586. name: "Front",
  25587. image: {
  25588. source: "./media/characters/valathos/front.svg",
  25589. extra: 1451 / 1339
  25590. }
  25591. },
  25592. },
  25593. [
  25594. {
  25595. name: "Macro",
  25596. height: math.unit(1600, "feet"),
  25597. default: true
  25598. },
  25599. ]
  25600. ))
  25601. characterMakers.push(() => makeCharacter(
  25602. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25603. {
  25604. front: {
  25605. height: math.unit(7 + 5 / 12, "feet"),
  25606. weight: math.unit(300, "lb"),
  25607. name: "Front",
  25608. image: {
  25609. source: "./media/characters/azula/front.svg",
  25610. extra: 3208 / 2880,
  25611. bottom: 80.2 / 3277
  25612. }
  25613. },
  25614. back: {
  25615. height: math.unit(7 + 5 / 12, "feet"),
  25616. weight: math.unit(300, "lb"),
  25617. name: "Back",
  25618. image: {
  25619. source: "./media/characters/azula/back.svg",
  25620. extra: 3169 / 2822,
  25621. bottom: 150.6 / 3321
  25622. }
  25623. },
  25624. },
  25625. [
  25626. {
  25627. name: "Normal",
  25628. height: math.unit(7 + 5 / 12, "feet"),
  25629. default: true
  25630. },
  25631. {
  25632. name: "Big",
  25633. height: math.unit(20, "feet")
  25634. },
  25635. ]
  25636. ))
  25637. characterMakers.push(() => makeCharacter(
  25638. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25639. {
  25640. front: {
  25641. height: math.unit(5 + 1 / 12, "feet"),
  25642. weight: math.unit(110, "lb"),
  25643. name: "Front",
  25644. image: {
  25645. source: "./media/characters/rupert/front.svg",
  25646. extra: 1549 / 1495,
  25647. bottom: 54.2 / 1604.4
  25648. }
  25649. },
  25650. },
  25651. [
  25652. {
  25653. name: "Normal",
  25654. height: math.unit(5 + 1 / 12, "feet"),
  25655. default: true
  25656. },
  25657. ]
  25658. ))
  25659. characterMakers.push(() => makeCharacter(
  25660. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25661. {
  25662. front: {
  25663. height: math.unit(8 + 4 / 12, "feet"),
  25664. weight: math.unit(350, "lb"),
  25665. name: "Front",
  25666. image: {
  25667. source: "./media/characters/sheera-castellar/front.svg",
  25668. extra: 1957 / 1894,
  25669. bottom: 26.97 / 1975.017
  25670. }
  25671. },
  25672. side: {
  25673. height: math.unit(8 + 4 / 12, "feet"),
  25674. weight: math.unit(350, "lb"),
  25675. name: "Side",
  25676. image: {
  25677. source: "./media/characters/sheera-castellar/side.svg",
  25678. extra: 1957 / 1894
  25679. }
  25680. },
  25681. back: {
  25682. height: math.unit(8 + 4 / 12, "feet"),
  25683. weight: math.unit(350, "lb"),
  25684. name: "Back",
  25685. image: {
  25686. source: "./media/characters/sheera-castellar/back.svg",
  25687. extra: 1957 / 1894
  25688. }
  25689. },
  25690. angled: {
  25691. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25692. weight: math.unit(350, "lb"),
  25693. name: "Angled",
  25694. image: {
  25695. source: "./media/characters/sheera-castellar/angled.svg",
  25696. extra: 1807 / 1707,
  25697. bottom: 68 / 1875
  25698. }
  25699. },
  25700. genitals: {
  25701. height: math.unit(2.2, "feet"),
  25702. name: "Genitals",
  25703. image: {
  25704. source: "./media/characters/sheera-castellar/genitals.svg"
  25705. }
  25706. },
  25707. taur: {
  25708. height: math.unit(10 + 6/12, "feet"),
  25709. name: "Taur",
  25710. image: {
  25711. source: "./media/characters/sheera-castellar/taur.svg",
  25712. extra: 2017/1909,
  25713. bottom: 185/2202
  25714. }
  25715. },
  25716. },
  25717. [
  25718. {
  25719. name: "Normal",
  25720. height: math.unit(8 + 4 / 12, "feet")
  25721. },
  25722. {
  25723. name: "Macro",
  25724. height: math.unit(150, "feet"),
  25725. default: true
  25726. },
  25727. {
  25728. name: "Macro+",
  25729. height: math.unit(800, "feet")
  25730. },
  25731. ]
  25732. ))
  25733. characterMakers.push(() => makeCharacter(
  25734. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25735. {
  25736. front: {
  25737. height: math.unit(6, "feet"),
  25738. weight: math.unit(150, "lb"),
  25739. name: "Front",
  25740. image: {
  25741. source: "./media/characters/jaipur/front.svg",
  25742. extra: 3860 / 3731,
  25743. bottom: 287 / 4140
  25744. }
  25745. },
  25746. back: {
  25747. height: math.unit(6, "feet"),
  25748. weight: math.unit(150, "lb"),
  25749. name: "Back",
  25750. image: {
  25751. source: "./media/characters/jaipur/back.svg",
  25752. extra: 1637/1561,
  25753. bottom: 154/1791
  25754. }
  25755. },
  25756. },
  25757. [
  25758. {
  25759. name: "Normal",
  25760. height: math.unit(1.85, "meters"),
  25761. default: true
  25762. },
  25763. {
  25764. name: "Macro",
  25765. height: math.unit(150, "meters")
  25766. },
  25767. {
  25768. name: "Macro+",
  25769. height: math.unit(0.5, "miles")
  25770. },
  25771. {
  25772. name: "Macro++",
  25773. height: math.unit(2.5, "miles")
  25774. },
  25775. {
  25776. name: "Macro+++",
  25777. height: math.unit(12, "miles")
  25778. },
  25779. {
  25780. name: "Macro++++",
  25781. height: math.unit(120, "miles")
  25782. },
  25783. {
  25784. name: "Macro+++++",
  25785. height: math.unit(1200, "miles")
  25786. },
  25787. ]
  25788. ))
  25789. characterMakers.push(() => makeCharacter(
  25790. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25791. {
  25792. front: {
  25793. height: math.unit(6, "feet"),
  25794. weight: math.unit(150, "lb"),
  25795. name: "Front",
  25796. image: {
  25797. source: "./media/characters/sheila-wolf/front.svg",
  25798. extra: 1931 / 1808,
  25799. bottom: 29.5 / 1960
  25800. }
  25801. },
  25802. dick: {
  25803. height: math.unit(1.464, "feet"),
  25804. name: "Dick",
  25805. image: {
  25806. source: "./media/characters/sheila-wolf/dick.svg"
  25807. }
  25808. },
  25809. muzzle: {
  25810. height: math.unit(0.513, "feet"),
  25811. name: "Muzzle",
  25812. image: {
  25813. source: "./media/characters/sheila-wolf/muzzle.svg"
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Macro",
  25820. height: math.unit(70, "feet"),
  25821. default: true
  25822. },
  25823. ]
  25824. ))
  25825. characterMakers.push(() => makeCharacter(
  25826. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25827. {
  25828. front: {
  25829. height: math.unit(32, "meters"),
  25830. weight: math.unit(300000, "kg"),
  25831. name: "Front",
  25832. image: {
  25833. source: "./media/characters/almor/front.svg",
  25834. extra: 1408 / 1322,
  25835. bottom: 94.6 / 1506.5
  25836. }
  25837. },
  25838. },
  25839. [
  25840. {
  25841. name: "Macro",
  25842. height: math.unit(32, "meters"),
  25843. default: true
  25844. },
  25845. ]
  25846. ))
  25847. characterMakers.push(() => makeCharacter(
  25848. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25849. {
  25850. front: {
  25851. height: math.unit(7, "feet"),
  25852. weight: math.unit(200, "lb"),
  25853. name: "Front",
  25854. image: {
  25855. source: "./media/characters/silver/front.svg",
  25856. extra: 472.1 / 450.5,
  25857. bottom: 26.5 / 499.424
  25858. }
  25859. },
  25860. },
  25861. [
  25862. {
  25863. name: "Normal",
  25864. height: math.unit(7, "feet"),
  25865. default: true
  25866. },
  25867. {
  25868. name: "Macro",
  25869. height: math.unit(800, "feet")
  25870. },
  25871. {
  25872. name: "Megamacro",
  25873. height: math.unit(250, "miles")
  25874. },
  25875. ]
  25876. ))
  25877. characterMakers.push(() => makeCharacter(
  25878. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25879. {
  25880. front: {
  25881. height: math.unit(6, "feet"),
  25882. weight: math.unit(150, "lb"),
  25883. name: "Front",
  25884. image: {
  25885. source: "./media/characters/pliskin/front.svg",
  25886. extra: 1469 / 1359,
  25887. bottom: 70 / 1540
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Micro",
  25894. height: math.unit(3, "inches")
  25895. },
  25896. {
  25897. name: "Normal",
  25898. height: math.unit(5 + 11 / 12, "feet"),
  25899. default: true
  25900. },
  25901. {
  25902. name: "Macro",
  25903. height: math.unit(120, "feet")
  25904. },
  25905. ]
  25906. ))
  25907. characterMakers.push(() => makeCharacter(
  25908. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25909. {
  25910. front: {
  25911. height: math.unit(6, "feet"),
  25912. weight: math.unit(150, "lb"),
  25913. name: "Front",
  25914. image: {
  25915. source: "./media/characters/sammy/front.svg",
  25916. extra: 1193 / 1089,
  25917. bottom: 30.5 / 1226
  25918. }
  25919. },
  25920. },
  25921. [
  25922. {
  25923. name: "Macro",
  25924. height: math.unit(1700, "feet"),
  25925. default: true
  25926. },
  25927. {
  25928. name: "Examacro",
  25929. height: math.unit(2.5e9, "lightyears")
  25930. },
  25931. ]
  25932. ))
  25933. characterMakers.push(() => makeCharacter(
  25934. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25935. {
  25936. front: {
  25937. height: math.unit(21, "meters"),
  25938. weight: math.unit(12, "tonnes"),
  25939. name: "Front",
  25940. image: {
  25941. source: "./media/characters/kuru/front.svg",
  25942. extra: 4301 / 3785,
  25943. bottom: 371.3 / 4691
  25944. }
  25945. },
  25946. },
  25947. [
  25948. {
  25949. name: "Macro",
  25950. height: math.unit(21, "meters"),
  25951. default: true
  25952. },
  25953. ]
  25954. ))
  25955. characterMakers.push(() => makeCharacter(
  25956. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25957. {
  25958. front: {
  25959. height: math.unit(23, "meters"),
  25960. weight: math.unit(12.2, "tonnes"),
  25961. name: "Front",
  25962. image: {
  25963. source: "./media/characters/rakka/front.svg",
  25964. extra: 4670 / 4169,
  25965. bottom: 301 / 4968.7
  25966. }
  25967. },
  25968. },
  25969. [
  25970. {
  25971. name: "Macro",
  25972. height: math.unit(23, "meters"),
  25973. default: true
  25974. },
  25975. ]
  25976. ))
  25977. characterMakers.push(() => makeCharacter(
  25978. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25979. {
  25980. front: {
  25981. height: math.unit(6, "feet"),
  25982. weight: math.unit(150, "lb"),
  25983. name: "Front",
  25984. image: {
  25985. source: "./media/characters/rhys-feline/front.svg",
  25986. extra: 2488 / 2308,
  25987. bottom: 35.67 / 2519.19
  25988. }
  25989. },
  25990. },
  25991. [
  25992. {
  25993. name: "Really Small",
  25994. height: math.unit(1, "nm")
  25995. },
  25996. {
  25997. name: "Micro",
  25998. height: math.unit(4, "inches")
  25999. },
  26000. {
  26001. name: "Normal",
  26002. height: math.unit(4 + 10 / 12, "feet"),
  26003. default: true
  26004. },
  26005. {
  26006. name: "Macro",
  26007. height: math.unit(100, "feet")
  26008. },
  26009. {
  26010. name: "Megamacto",
  26011. height: math.unit(50, "miles")
  26012. },
  26013. ]
  26014. ))
  26015. characterMakers.push(() => makeCharacter(
  26016. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26017. {
  26018. side: {
  26019. height: math.unit(30, "feet"),
  26020. weight: math.unit(35000, "kg"),
  26021. name: "Side",
  26022. image: {
  26023. source: "./media/characters/alydar/side.svg",
  26024. extra: 234 / 222,
  26025. bottom: 6.5 / 241
  26026. }
  26027. },
  26028. front: {
  26029. height: math.unit(30, "feet"),
  26030. weight: math.unit(35000, "kg"),
  26031. name: "Front",
  26032. image: {
  26033. source: "./media/characters/alydar/front.svg",
  26034. extra: 223.37 / 210.2,
  26035. bottom: 22.3 / 246.76
  26036. }
  26037. },
  26038. top: {
  26039. height: math.unit(64.54, "feet"),
  26040. weight: math.unit(35000, "kg"),
  26041. name: "Top",
  26042. image: {
  26043. source: "./media/characters/alydar/top.svg"
  26044. }
  26045. },
  26046. anthro: {
  26047. height: math.unit(30, "feet"),
  26048. weight: math.unit(9000, "kg"),
  26049. name: "Anthro",
  26050. image: {
  26051. source: "./media/characters/alydar/anthro.svg",
  26052. extra: 432 / 421,
  26053. bottom: 7.18 / 440
  26054. }
  26055. },
  26056. maw: {
  26057. height: math.unit(11.693, "feet"),
  26058. name: "Maw",
  26059. image: {
  26060. source: "./media/characters/alydar/maw.svg"
  26061. }
  26062. },
  26063. head: {
  26064. height: math.unit(11.693, "feet"),
  26065. name: "Head",
  26066. image: {
  26067. source: "./media/characters/alydar/head.svg"
  26068. }
  26069. },
  26070. headAlt: {
  26071. height: math.unit(12.861, "feet"),
  26072. name: "Head (Alt)",
  26073. image: {
  26074. source: "./media/characters/alydar/head-alt.svg"
  26075. }
  26076. },
  26077. wing: {
  26078. height: math.unit(20.712, "feet"),
  26079. name: "Wing",
  26080. image: {
  26081. source: "./media/characters/alydar/wing.svg"
  26082. }
  26083. },
  26084. wingFeather: {
  26085. height: math.unit(9.662, "feet"),
  26086. name: "Wing Feather",
  26087. image: {
  26088. source: "./media/characters/alydar/wing-feather.svg"
  26089. }
  26090. },
  26091. countourFeather: {
  26092. height: math.unit(4.154, "feet"),
  26093. name: "Contour Feather",
  26094. image: {
  26095. source: "./media/characters/alydar/contour-feather.svg"
  26096. }
  26097. },
  26098. },
  26099. [
  26100. {
  26101. name: "Diplomatic",
  26102. height: math.unit(13, "feet"),
  26103. default: true
  26104. },
  26105. {
  26106. name: "Small",
  26107. height: math.unit(30, "feet")
  26108. },
  26109. {
  26110. name: "Normal",
  26111. height: math.unit(95, "feet"),
  26112. default: true
  26113. },
  26114. {
  26115. name: "Large",
  26116. height: math.unit(285, "feet")
  26117. },
  26118. {
  26119. name: "Incomprehensible",
  26120. height: math.unit(450, "megameters")
  26121. },
  26122. ]
  26123. ))
  26124. characterMakers.push(() => makeCharacter(
  26125. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26126. {
  26127. side: {
  26128. height: math.unit(11, "feet"),
  26129. weight: math.unit(1750, "kg"),
  26130. name: "Side",
  26131. image: {
  26132. source: "./media/characters/selicia/side.svg",
  26133. extra: 440 / 396,
  26134. bottom: 24.8 / 465.979
  26135. }
  26136. },
  26137. maw: {
  26138. height: math.unit(4.665, "feet"),
  26139. name: "Maw",
  26140. image: {
  26141. source: "./media/characters/selicia/maw.svg"
  26142. }
  26143. },
  26144. },
  26145. [
  26146. {
  26147. name: "Normal",
  26148. height: math.unit(11, "feet"),
  26149. default: true
  26150. },
  26151. ]
  26152. ))
  26153. characterMakers.push(() => makeCharacter(
  26154. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26155. {
  26156. side: {
  26157. height: math.unit(2 + 6 / 12, "feet"),
  26158. weight: math.unit(30, "lb"),
  26159. name: "Side",
  26160. image: {
  26161. source: "./media/characters/layla/side.svg",
  26162. extra: 244 / 188,
  26163. bottom: 18.2 / 262.1
  26164. }
  26165. },
  26166. back: {
  26167. height: math.unit(2 + 6 / 12, "feet"),
  26168. weight: math.unit(30, "lb"),
  26169. name: "Back",
  26170. image: {
  26171. source: "./media/characters/layla/back.svg",
  26172. extra: 308 / 241.5,
  26173. bottom: 8.9 / 316.8
  26174. }
  26175. },
  26176. cumming: {
  26177. height: math.unit(2 + 6 / 12, "feet"),
  26178. weight: math.unit(30, "lb"),
  26179. name: "Cumming",
  26180. image: {
  26181. source: "./media/characters/layla/cumming.svg",
  26182. extra: 342 / 279,
  26183. bottom: 595 / 938
  26184. }
  26185. },
  26186. dickFlaccid: {
  26187. height: math.unit(2.595, "feet"),
  26188. name: "Flaccid Genitals",
  26189. image: {
  26190. source: "./media/characters/layla/dick-flaccid.svg"
  26191. }
  26192. },
  26193. dickErect: {
  26194. height: math.unit(2.359, "feet"),
  26195. name: "Erect Genitals",
  26196. image: {
  26197. source: "./media/characters/layla/dick-erect.svg"
  26198. }
  26199. },
  26200. dragon: {
  26201. height: math.unit(40, "feet"),
  26202. name: "Dragon",
  26203. image: {
  26204. source: "./media/characters/layla/dragon.svg",
  26205. extra: 610/535,
  26206. bottom: 367/977
  26207. }
  26208. },
  26209. taur: {
  26210. height: math.unit(30, "feet"),
  26211. name: "Taur",
  26212. image: {
  26213. source: "./media/characters/layla/taur.svg",
  26214. extra: 1268/1199,
  26215. bottom: 112/1380
  26216. }
  26217. },
  26218. },
  26219. [
  26220. {
  26221. name: "Micro",
  26222. height: math.unit(1, "inch")
  26223. },
  26224. {
  26225. name: "Small",
  26226. height: math.unit(1, "foot")
  26227. },
  26228. {
  26229. name: "Normal",
  26230. height: math.unit(2 + 6 / 12, "feet"),
  26231. default: true
  26232. },
  26233. {
  26234. name: "Macro",
  26235. height: math.unit(200, "feet")
  26236. },
  26237. {
  26238. name: "Megamacro",
  26239. height: math.unit(1000, "miles")
  26240. },
  26241. {
  26242. name: "Planetary",
  26243. height: math.unit(8000, "miles")
  26244. },
  26245. {
  26246. name: "True Layla",
  26247. height: math.unit(200000 * 7, "multiverses")
  26248. },
  26249. ]
  26250. ))
  26251. characterMakers.push(() => makeCharacter(
  26252. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26253. {
  26254. back: {
  26255. height: math.unit(10.5, "feet"),
  26256. weight: math.unit(800, "lb"),
  26257. name: "Back",
  26258. image: {
  26259. source: "./media/characters/knox/back.svg",
  26260. extra: 1486 / 1089,
  26261. bottom: 107 / 1601.4
  26262. }
  26263. },
  26264. side: {
  26265. height: math.unit(10.5, "feet"),
  26266. weight: math.unit(800, "lb"),
  26267. name: "Side",
  26268. image: {
  26269. source: "./media/characters/knox/side.svg",
  26270. extra: 244 / 218,
  26271. bottom: 14 / 260
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Compact",
  26278. height: math.unit(10.5, "feet"),
  26279. default: true
  26280. },
  26281. {
  26282. name: "Dynamax",
  26283. height: math.unit(210, "feet")
  26284. },
  26285. {
  26286. name: "Full Macro",
  26287. height: math.unit(850, "feet")
  26288. },
  26289. ]
  26290. ))
  26291. characterMakers.push(() => makeCharacter(
  26292. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26293. {
  26294. front: {
  26295. height: math.unit(28, "feet"),
  26296. weight: math.unit(10500, "lb"),
  26297. name: "Front",
  26298. image: {
  26299. source: "./media/characters/kayda/front.svg",
  26300. extra: 1536 / 1428,
  26301. bottom: 68.7 / 1603
  26302. }
  26303. },
  26304. back: {
  26305. height: math.unit(28, "feet"),
  26306. weight: math.unit(10500, "lb"),
  26307. name: "Back",
  26308. image: {
  26309. source: "./media/characters/kayda/back.svg",
  26310. extra: 1557 / 1464,
  26311. bottom: 39.5 / 1597.49
  26312. }
  26313. },
  26314. dick: {
  26315. height: math.unit(3.858, "feet"),
  26316. name: "Dick",
  26317. image: {
  26318. source: "./media/characters/kayda/dick.svg"
  26319. }
  26320. },
  26321. },
  26322. [
  26323. {
  26324. name: "Macro",
  26325. height: math.unit(28, "feet"),
  26326. default: true
  26327. },
  26328. ]
  26329. ))
  26330. characterMakers.push(() => makeCharacter(
  26331. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26332. {
  26333. front: {
  26334. height: math.unit(10 + 11 / 12, "feet"),
  26335. weight: math.unit(1400, "lb"),
  26336. name: "Front",
  26337. image: {
  26338. source: "./media/characters/brian/front.svg",
  26339. extra: 737 / 692,
  26340. bottom: 55.4 / 785
  26341. }
  26342. },
  26343. },
  26344. [
  26345. {
  26346. name: "Normal",
  26347. height: math.unit(10 + 11 / 12, "feet"),
  26348. default: true
  26349. },
  26350. ]
  26351. ))
  26352. characterMakers.push(() => makeCharacter(
  26353. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26354. {
  26355. front: {
  26356. height: math.unit(5 + 8 / 12, "feet"),
  26357. weight: math.unit(140, "lb"),
  26358. name: "Front",
  26359. image: {
  26360. source: "./media/characters/khemri/front.svg",
  26361. extra: 4780 / 4059,
  26362. bottom: 80.1 / 4859.25
  26363. }
  26364. },
  26365. },
  26366. [
  26367. {
  26368. name: "Micro",
  26369. height: math.unit(6, "inches")
  26370. },
  26371. {
  26372. name: "Normal",
  26373. height: math.unit(5 + 8 / 12, "feet"),
  26374. default: true
  26375. },
  26376. ]
  26377. ))
  26378. characterMakers.push(() => makeCharacter(
  26379. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26380. {
  26381. front: {
  26382. height: math.unit(13, "feet"),
  26383. weight: math.unit(1700, "lb"),
  26384. name: "Front",
  26385. image: {
  26386. source: "./media/characters/felix-braveheart/front.svg",
  26387. extra: 1222 / 1157,
  26388. bottom: 53.2 / 1280
  26389. }
  26390. },
  26391. back: {
  26392. height: math.unit(13, "feet"),
  26393. weight: math.unit(1700, "lb"),
  26394. name: "Back",
  26395. image: {
  26396. source: "./media/characters/felix-braveheart/back.svg",
  26397. extra: 1277 / 1203,
  26398. bottom: 50.2 / 1327
  26399. }
  26400. },
  26401. feral: {
  26402. height: math.unit(6, "feet"),
  26403. weight: math.unit(400, "lb"),
  26404. name: "Feral",
  26405. image: {
  26406. source: "./media/characters/felix-braveheart/feral.svg",
  26407. extra: 682 / 625,
  26408. bottom: 6.9 / 688
  26409. }
  26410. },
  26411. },
  26412. [
  26413. {
  26414. name: "Normal",
  26415. height: math.unit(13, "feet"),
  26416. default: true
  26417. },
  26418. ]
  26419. ))
  26420. characterMakers.push(() => makeCharacter(
  26421. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26422. {
  26423. side: {
  26424. height: math.unit(5 + 11 / 12, "feet"),
  26425. weight: math.unit(1400, "lb"),
  26426. name: "Side",
  26427. image: {
  26428. source: "./media/characters/shadow-blade/side.svg",
  26429. extra: 1726 / 1267,
  26430. bottom: 58.4 / 1785
  26431. }
  26432. },
  26433. },
  26434. [
  26435. {
  26436. name: "Normal",
  26437. height: math.unit(5 + 11 / 12, "feet"),
  26438. default: true
  26439. },
  26440. ]
  26441. ))
  26442. characterMakers.push(() => makeCharacter(
  26443. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26444. {
  26445. front: {
  26446. height: math.unit(1 + 6 / 12, "feet"),
  26447. weight: math.unit(25, "lb"),
  26448. name: "Front",
  26449. image: {
  26450. source: "./media/characters/karla-halldor/front.svg",
  26451. extra: 1459 / 1383,
  26452. bottom: 12 / 1472
  26453. }
  26454. },
  26455. },
  26456. [
  26457. {
  26458. name: "Normal",
  26459. height: math.unit(1 + 6 / 12, "feet"),
  26460. default: true
  26461. },
  26462. ]
  26463. ))
  26464. characterMakers.push(() => makeCharacter(
  26465. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26466. {
  26467. front: {
  26468. height: math.unit(6 + 2 / 12, "feet"),
  26469. weight: math.unit(160, "lb"),
  26470. name: "Front",
  26471. image: {
  26472. source: "./media/characters/ariam/front.svg",
  26473. extra: 1073/976,
  26474. bottom: 52/1125
  26475. }
  26476. },
  26477. back: {
  26478. height: math.unit(6 + 2/12, "feet"),
  26479. weight: math.unit(160, "lb"),
  26480. name: "Back",
  26481. image: {
  26482. source: "./media/characters/ariam/back.svg",
  26483. extra: 1103/1023,
  26484. bottom: 9/1112
  26485. }
  26486. },
  26487. dressed: {
  26488. height: math.unit(6 + 2/12, "feet"),
  26489. weight: math.unit(160, "lb"),
  26490. name: "Dressed",
  26491. image: {
  26492. source: "./media/characters/ariam/dressed.svg",
  26493. extra: 1099/1009,
  26494. bottom: 25/1124
  26495. }
  26496. },
  26497. squatting: {
  26498. height: math.unit(4.1, "feet"),
  26499. weight: math.unit(160, "lb"),
  26500. name: "Squatting",
  26501. image: {
  26502. source: "./media/characters/ariam/squatting.svg",
  26503. extra: 2617 / 2112,
  26504. bottom: 61.2 / 2681,
  26505. }
  26506. },
  26507. },
  26508. [
  26509. {
  26510. name: "Normal",
  26511. height: math.unit(6 + 2 / 12, "feet"),
  26512. default: true
  26513. },
  26514. {
  26515. name: "Normal+",
  26516. height: math.unit(4, "meters")
  26517. },
  26518. {
  26519. name: "Macro",
  26520. height: math.unit(50, "meters")
  26521. },
  26522. {
  26523. name: "Macro+",
  26524. height: math.unit(100, "meters")
  26525. },
  26526. {
  26527. name: "Megamacro",
  26528. height: math.unit(20, "km")
  26529. },
  26530. {
  26531. name: "Caretaker",
  26532. height: math.unit(444, "megameters")
  26533. },
  26534. ]
  26535. ))
  26536. characterMakers.push(() => makeCharacter(
  26537. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26538. {
  26539. front: {
  26540. height: math.unit(1.67, "meters"),
  26541. weight: math.unit(140, "lb"),
  26542. name: "Front",
  26543. image: {
  26544. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26545. extra: 438 / 410,
  26546. bottom: 0.75 / 439
  26547. }
  26548. },
  26549. },
  26550. [
  26551. {
  26552. name: "Shrunken",
  26553. height: math.unit(7.6, "cm")
  26554. },
  26555. {
  26556. name: "Human Scale",
  26557. height: math.unit(1.67, "meters")
  26558. },
  26559. {
  26560. name: "Wolxi Scale",
  26561. height: math.unit(36.7, "meters"),
  26562. default: true
  26563. },
  26564. ]
  26565. ))
  26566. characterMakers.push(() => makeCharacter(
  26567. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26568. {
  26569. front: {
  26570. height: math.unit(1.73, "meters"),
  26571. weight: math.unit(240, "lb"),
  26572. name: "Front",
  26573. image: {
  26574. source: "./media/characters/izue-two-mothers/front.svg",
  26575. extra: 469 / 437,
  26576. bottom: 1.24 / 470.6
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Shrunken",
  26583. height: math.unit(7.86, "cm")
  26584. },
  26585. {
  26586. name: "Human Scale",
  26587. height: math.unit(1.73, "meters")
  26588. },
  26589. {
  26590. name: "Wolxi Scale",
  26591. height: math.unit(38, "meters"),
  26592. default: true
  26593. },
  26594. ]
  26595. ))
  26596. characterMakers.push(() => makeCharacter(
  26597. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26598. {
  26599. front: {
  26600. height: math.unit(1.55, "meters"),
  26601. weight: math.unit(120, "lb"),
  26602. name: "Front",
  26603. image: {
  26604. source: "./media/characters/teeku-love-shack/front.svg",
  26605. extra: 387 / 362,
  26606. bottom: 1.51 / 388
  26607. }
  26608. },
  26609. },
  26610. [
  26611. {
  26612. name: "Shrunken",
  26613. height: math.unit(7, "cm")
  26614. },
  26615. {
  26616. name: "Human Scale",
  26617. height: math.unit(1.55, "meters")
  26618. },
  26619. {
  26620. name: "Wolxi Scale",
  26621. height: math.unit(34.1, "meters"),
  26622. default: true
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26628. {
  26629. front: {
  26630. height: math.unit(1.83, "meters"),
  26631. weight: math.unit(135, "lb"),
  26632. name: "Front",
  26633. image: {
  26634. source: "./media/characters/dejma-the-red/front.svg",
  26635. extra: 480 / 458,
  26636. bottom: 1.8 / 482
  26637. }
  26638. },
  26639. },
  26640. [
  26641. {
  26642. name: "Shrunken",
  26643. height: math.unit(8.3, "cm")
  26644. },
  26645. {
  26646. name: "Human Scale",
  26647. height: math.unit(1.83, "meters")
  26648. },
  26649. {
  26650. name: "Wolxi Scale",
  26651. height: math.unit(40, "meters"),
  26652. default: true
  26653. },
  26654. ]
  26655. ))
  26656. characterMakers.push(() => makeCharacter(
  26657. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26658. {
  26659. front: {
  26660. height: math.unit(1.78, "meters"),
  26661. weight: math.unit(65, "kg"),
  26662. name: "Front",
  26663. image: {
  26664. source: "./media/characters/aki/front.svg",
  26665. extra: 452 / 415
  26666. }
  26667. },
  26668. frontNsfw: {
  26669. height: math.unit(1.78, "meters"),
  26670. weight: math.unit(65, "kg"),
  26671. name: "Front (NSFW)",
  26672. image: {
  26673. source: "./media/characters/aki/front-nsfw.svg",
  26674. extra: 452 / 415
  26675. }
  26676. },
  26677. back: {
  26678. height: math.unit(1.78, "meters"),
  26679. weight: math.unit(65, "kg"),
  26680. name: "Back",
  26681. image: {
  26682. source: "./media/characters/aki/back.svg",
  26683. extra: 452 / 415
  26684. }
  26685. },
  26686. rump: {
  26687. height: math.unit(2.05, "feet"),
  26688. name: "Rump",
  26689. image: {
  26690. source: "./media/characters/aki/rump.svg"
  26691. }
  26692. },
  26693. dick: {
  26694. height: math.unit(0.95, "feet"),
  26695. name: "Dick",
  26696. image: {
  26697. source: "./media/characters/aki/dick.svg"
  26698. }
  26699. },
  26700. },
  26701. [
  26702. {
  26703. name: "Micro",
  26704. height: math.unit(15, "cm")
  26705. },
  26706. {
  26707. name: "Normal",
  26708. height: math.unit(178, "cm"),
  26709. default: true
  26710. },
  26711. {
  26712. name: "Macro",
  26713. height: math.unit(214, "m")
  26714. },
  26715. {
  26716. name: "Macro+",
  26717. height: math.unit(534, "m")
  26718. },
  26719. ]
  26720. ))
  26721. characterMakers.push(() => makeCharacter(
  26722. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26723. {
  26724. front: {
  26725. height: math.unit(5 + 5 / 12, "feet"),
  26726. weight: math.unit(120, "lb"),
  26727. name: "Front",
  26728. image: {
  26729. source: "./media/characters/ari/front.svg",
  26730. extra: 1550/1471,
  26731. bottom: 39/1589
  26732. }
  26733. },
  26734. },
  26735. [
  26736. {
  26737. name: "Normal",
  26738. height: math.unit(5 + 5 / 12, "feet")
  26739. },
  26740. {
  26741. name: "Macro",
  26742. height: math.unit(100, "feet"),
  26743. default: true
  26744. },
  26745. {
  26746. name: "Megamacro",
  26747. height: math.unit(100, "miles")
  26748. },
  26749. {
  26750. name: "Gigamacro",
  26751. height: math.unit(80000, "miles")
  26752. },
  26753. ]
  26754. ))
  26755. characterMakers.push(() => makeCharacter(
  26756. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26757. {
  26758. side: {
  26759. height: math.unit(9, "feet"),
  26760. weight: math.unit(400, "kg"),
  26761. name: "Side",
  26762. image: {
  26763. source: "./media/characters/bolt/side.svg",
  26764. extra: 1126 / 896,
  26765. bottom: 60 / 1187.3,
  26766. }
  26767. },
  26768. },
  26769. [
  26770. {
  26771. name: "Micro",
  26772. height: math.unit(5, "inches")
  26773. },
  26774. {
  26775. name: "Normal",
  26776. height: math.unit(9, "feet"),
  26777. default: true
  26778. },
  26779. {
  26780. name: "Macro",
  26781. height: math.unit(700, "feet")
  26782. },
  26783. {
  26784. name: "Max Size",
  26785. height: math.unit(1.52e22, "yottameters")
  26786. },
  26787. ]
  26788. ))
  26789. characterMakers.push(() => makeCharacter(
  26790. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26791. {
  26792. front: {
  26793. height: math.unit(4.3, "meters"),
  26794. weight: math.unit(3, "tons"),
  26795. name: "Front",
  26796. image: {
  26797. source: "./media/characters/draekon-sylviar/front.svg",
  26798. extra: 2072/1512,
  26799. bottom: 74/2146
  26800. }
  26801. },
  26802. back: {
  26803. height: math.unit(4.3, "meters"),
  26804. weight: math.unit(3, "tons"),
  26805. name: "Back",
  26806. image: {
  26807. source: "./media/characters/draekon-sylviar/back.svg",
  26808. extra: 1639/1483,
  26809. bottom: 41/1680
  26810. }
  26811. },
  26812. feral: {
  26813. height: math.unit(1.15, "meters"),
  26814. weight: math.unit(3, "tons"),
  26815. name: "Feral",
  26816. image: {
  26817. source: "./media/characters/draekon-sylviar/feral.svg",
  26818. extra: 1033/395,
  26819. bottom: 130/1163
  26820. }
  26821. },
  26822. maw: {
  26823. height: math.unit(1.3, "meters"),
  26824. name: "Maw",
  26825. image: {
  26826. source: "./media/characters/draekon-sylviar/maw.svg"
  26827. }
  26828. },
  26829. mawSeparated: {
  26830. height: math.unit(1.53, "meters"),
  26831. name: "Separated Maw",
  26832. image: {
  26833. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26834. }
  26835. },
  26836. tail: {
  26837. height: math.unit(1.15, "meters"),
  26838. name: "Tail",
  26839. image: {
  26840. source: "./media/characters/draekon-sylviar/tail.svg"
  26841. }
  26842. },
  26843. tailDick: {
  26844. height: math.unit(1.15, "meters"),
  26845. name: "Tail (Dick)",
  26846. image: {
  26847. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26848. }
  26849. },
  26850. tailDickSeparated: {
  26851. height: math.unit(1.19, "meters"),
  26852. name: "Tail (Separated Dick)",
  26853. image: {
  26854. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26855. }
  26856. },
  26857. slit: {
  26858. height: math.unit(1, "meters"),
  26859. name: "Slit",
  26860. image: {
  26861. source: "./media/characters/draekon-sylviar/slit.svg"
  26862. }
  26863. },
  26864. dick: {
  26865. height: math.unit(1.15, "meters"),
  26866. name: "Dick",
  26867. image: {
  26868. source: "./media/characters/draekon-sylviar/dick.svg"
  26869. }
  26870. },
  26871. dickSeparated: {
  26872. height: math.unit(1.1, "meters"),
  26873. name: "Separated Dick",
  26874. image: {
  26875. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26876. }
  26877. },
  26878. sheath: {
  26879. height: math.unit(1.15, "meters"),
  26880. name: "Sheath",
  26881. image: {
  26882. source: "./media/characters/draekon-sylviar/sheath.svg"
  26883. }
  26884. },
  26885. },
  26886. [
  26887. {
  26888. name: "Small",
  26889. height: math.unit(4.53 / 2, "meters"),
  26890. default: true
  26891. },
  26892. {
  26893. name: "Normal",
  26894. height: math.unit(4.53, "meters"),
  26895. default: true
  26896. },
  26897. {
  26898. name: "Large",
  26899. height: math.unit(4.53 * 2, "meters"),
  26900. },
  26901. ]
  26902. ))
  26903. characterMakers.push(() => makeCharacter(
  26904. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26905. {
  26906. front: {
  26907. height: math.unit(6 + 2 / 12, "feet"),
  26908. weight: math.unit(180, "lb"),
  26909. name: "Front",
  26910. image: {
  26911. source: "./media/characters/brawler/front.svg",
  26912. extra: 3301 / 3027,
  26913. bottom: 138 / 3439
  26914. }
  26915. },
  26916. },
  26917. [
  26918. {
  26919. name: "Normal",
  26920. height: math.unit(6 + 2 / 12, "feet"),
  26921. default: true
  26922. },
  26923. ]
  26924. ))
  26925. characterMakers.push(() => makeCharacter(
  26926. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26927. {
  26928. front: {
  26929. height: math.unit(11, "feet"),
  26930. weight: math.unit(1000, "lb"),
  26931. name: "Front",
  26932. image: {
  26933. source: "./media/characters/alex/front.svg",
  26934. bottom: 44.5 / 620
  26935. }
  26936. },
  26937. },
  26938. [
  26939. {
  26940. name: "Micro",
  26941. height: math.unit(5, "inches")
  26942. },
  26943. {
  26944. name: "Normal",
  26945. height: math.unit(11, "feet"),
  26946. default: true
  26947. },
  26948. {
  26949. name: "Macro",
  26950. height: math.unit(9.5e9, "feet")
  26951. },
  26952. {
  26953. name: "Max Size",
  26954. height: math.unit(1.4e283, "yottameters")
  26955. },
  26956. ]
  26957. ))
  26958. characterMakers.push(() => makeCharacter(
  26959. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26960. {
  26961. female: {
  26962. height: math.unit(29.9, "m"),
  26963. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26964. name: "Female",
  26965. image: {
  26966. source: "./media/characters/zenari/female.svg",
  26967. extra: 3281.6 / 3217,
  26968. bottom: 72.2 / 3353
  26969. }
  26970. },
  26971. male: {
  26972. height: math.unit(27.7, "m"),
  26973. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26974. name: "Male",
  26975. image: {
  26976. source: "./media/characters/zenari/male.svg",
  26977. extra: 3008 / 2991,
  26978. bottom: 54.6 / 3069
  26979. }
  26980. },
  26981. },
  26982. [
  26983. {
  26984. name: "Macro",
  26985. height: math.unit(29.7, "meters"),
  26986. default: true
  26987. },
  26988. ]
  26989. ))
  26990. characterMakers.push(() => makeCharacter(
  26991. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  26992. {
  26993. female: {
  26994. height: math.unit(23.8, "m"),
  26995. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  26996. name: "Female",
  26997. image: {
  26998. source: "./media/characters/mactarian/female.svg",
  26999. extra: 2662 / 2569,
  27000. bottom: 73 / 2736
  27001. }
  27002. },
  27003. male: {
  27004. height: math.unit(23.8, "m"),
  27005. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27006. name: "Male",
  27007. image: {
  27008. source: "./media/characters/mactarian/male.svg",
  27009. extra: 2673 / 2600,
  27010. bottom: 76 / 2750
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Macro",
  27017. height: math.unit(23.8, "meters"),
  27018. default: true
  27019. },
  27020. ]
  27021. ))
  27022. characterMakers.push(() => makeCharacter(
  27023. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27024. {
  27025. female: {
  27026. height: math.unit(19.3, "m"),
  27027. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27028. name: "Female",
  27029. image: {
  27030. source: "./media/characters/umok/female.svg",
  27031. extra: 2186 / 2078,
  27032. bottom: 87 / 2277
  27033. }
  27034. },
  27035. male: {
  27036. height: math.unit(19.5, "m"),
  27037. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27038. name: "Male",
  27039. image: {
  27040. source: "./media/characters/umok/male.svg",
  27041. extra: 2233 / 2140,
  27042. bottom: 24.4 / 2258
  27043. }
  27044. },
  27045. },
  27046. [
  27047. {
  27048. name: "Macro",
  27049. height: math.unit(19.3, "meters"),
  27050. default: true
  27051. },
  27052. ]
  27053. ))
  27054. characterMakers.push(() => makeCharacter(
  27055. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27056. {
  27057. female: {
  27058. height: math.unit(26.15, "m"),
  27059. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27060. name: "Female",
  27061. image: {
  27062. source: "./media/characters/joraxian/female.svg",
  27063. extra: 2912 / 2824,
  27064. bottom: 36 / 2956
  27065. }
  27066. },
  27067. male: {
  27068. height: math.unit(25.4, "m"),
  27069. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27070. name: "Male",
  27071. image: {
  27072. source: "./media/characters/joraxian/male.svg",
  27073. extra: 2877 / 2721,
  27074. bottom: 82 / 2967
  27075. }
  27076. },
  27077. },
  27078. [
  27079. {
  27080. name: "Macro",
  27081. height: math.unit(26.15, "meters"),
  27082. default: true
  27083. },
  27084. ]
  27085. ))
  27086. characterMakers.push(() => makeCharacter(
  27087. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27088. {
  27089. female: {
  27090. height: math.unit(21.6, "m"),
  27091. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27092. name: "Female",
  27093. image: {
  27094. source: "./media/characters/sthara/female.svg",
  27095. extra: 2516 / 2347,
  27096. bottom: 21.5 / 2537
  27097. }
  27098. },
  27099. male: {
  27100. height: math.unit(24, "m"),
  27101. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27102. name: "Male",
  27103. image: {
  27104. source: "./media/characters/sthara/male.svg",
  27105. extra: 2732 / 2607,
  27106. bottom: 23 / 2732
  27107. }
  27108. },
  27109. },
  27110. [
  27111. {
  27112. name: "Macro",
  27113. height: math.unit(21.6, "meters"),
  27114. default: true
  27115. },
  27116. ]
  27117. ))
  27118. characterMakers.push(() => makeCharacter(
  27119. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27120. {
  27121. front: {
  27122. height: math.unit(6 + 4 / 12, "feet"),
  27123. weight: math.unit(175, "lb"),
  27124. name: "Front",
  27125. image: {
  27126. source: "./media/characters/luka-bryzant/front.svg",
  27127. extra: 311 / 289,
  27128. bottom: 4 / 315
  27129. }
  27130. },
  27131. back: {
  27132. height: math.unit(6 + 4 / 12, "feet"),
  27133. weight: math.unit(175, "lb"),
  27134. name: "Back",
  27135. image: {
  27136. source: "./media/characters/luka-bryzant/back.svg",
  27137. extra: 311 / 289,
  27138. bottom: 3.8 / 313.7
  27139. }
  27140. },
  27141. },
  27142. [
  27143. {
  27144. name: "Micro",
  27145. height: math.unit(10, "inches")
  27146. },
  27147. {
  27148. name: "Normal",
  27149. height: math.unit(6 + 4 / 12, "feet"),
  27150. default: true
  27151. },
  27152. {
  27153. name: "Large",
  27154. height: math.unit(12, "feet")
  27155. },
  27156. ]
  27157. ))
  27158. characterMakers.push(() => makeCharacter(
  27159. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27160. {
  27161. front: {
  27162. height: math.unit(5 + 7 / 12, "feet"),
  27163. weight: math.unit(185, "lb"),
  27164. name: "Front",
  27165. image: {
  27166. source: "./media/characters/aman-aquila/front.svg",
  27167. extra: 1013 / 976,
  27168. bottom: 45.6 / 1057
  27169. }
  27170. },
  27171. side: {
  27172. height: math.unit(5 + 7 / 12, "feet"),
  27173. weight: math.unit(185, "lb"),
  27174. name: "Side",
  27175. image: {
  27176. source: "./media/characters/aman-aquila/side.svg",
  27177. extra: 1054 / 1011,
  27178. bottom: 15 / 1070
  27179. }
  27180. },
  27181. back: {
  27182. height: math.unit(5 + 7 / 12, "feet"),
  27183. weight: math.unit(185, "lb"),
  27184. name: "Back",
  27185. image: {
  27186. source: "./media/characters/aman-aquila/back.svg",
  27187. extra: 1026 / 970,
  27188. bottom: 12 / 1039
  27189. }
  27190. },
  27191. head: {
  27192. height: math.unit(1.211, "feet"),
  27193. name: "Head",
  27194. image: {
  27195. source: "./media/characters/aman-aquila/head.svg",
  27196. }
  27197. },
  27198. },
  27199. [
  27200. {
  27201. name: "Minimicro",
  27202. height: math.unit(0.057, "inches")
  27203. },
  27204. {
  27205. name: "Micro",
  27206. height: math.unit(7, "inches")
  27207. },
  27208. {
  27209. name: "Mini",
  27210. height: math.unit(3 + 7 / 12, "feet")
  27211. },
  27212. {
  27213. name: "Normal",
  27214. height: math.unit(5 + 7 / 12, "feet"),
  27215. default: true
  27216. },
  27217. {
  27218. name: "Macro",
  27219. height: math.unit(157 + 7 / 12, "feet")
  27220. },
  27221. {
  27222. name: "Megamacro",
  27223. height: math.unit(1557 + 7 / 12, "feet")
  27224. },
  27225. {
  27226. name: "Gigamacro",
  27227. height: math.unit(15557 + 7 / 12, "feet")
  27228. },
  27229. ]
  27230. ))
  27231. characterMakers.push(() => makeCharacter(
  27232. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27233. {
  27234. front: {
  27235. height: math.unit(3 + 2 / 12, "inches"),
  27236. weight: math.unit(0.3, "ounces"),
  27237. name: "Front",
  27238. image: {
  27239. source: "./media/characters/hiphae/front.svg",
  27240. extra: 1931 / 1683,
  27241. bottom: 24 / 1955
  27242. }
  27243. },
  27244. },
  27245. [
  27246. {
  27247. name: "Normal",
  27248. height: math.unit(3 + 1 / 2, "inches"),
  27249. default: true
  27250. },
  27251. ]
  27252. ))
  27253. characterMakers.push(() => makeCharacter(
  27254. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27255. {
  27256. front: {
  27257. height: math.unit(5 + 10 / 12, "feet"),
  27258. weight: math.unit(165, "lb"),
  27259. name: "Front",
  27260. image: {
  27261. source: "./media/characters/nicky/front.svg",
  27262. extra: 3144 / 2886,
  27263. bottom: 45.6 / 3192
  27264. }
  27265. },
  27266. back: {
  27267. height: math.unit(5 + 10 / 12, "feet"),
  27268. weight: math.unit(165, "lb"),
  27269. name: "Back",
  27270. image: {
  27271. source: "./media/characters/nicky/back.svg",
  27272. extra: 3055 / 2804,
  27273. bottom: 28.4 / 3087
  27274. }
  27275. },
  27276. frontclothed: {
  27277. height: math.unit(5 + 10 / 12, "feet"),
  27278. weight: math.unit(165, "lb"),
  27279. name: "Front-clothed",
  27280. image: {
  27281. source: "./media/characters/nicky/front-clothed.svg",
  27282. extra: 3184.9 / 2926.9,
  27283. bottom: 86.5 / 3239.9
  27284. }
  27285. },
  27286. foot: {
  27287. height: math.unit(1.16, "feet"),
  27288. name: "Foot",
  27289. image: {
  27290. source: "./media/characters/nicky/foot.svg"
  27291. }
  27292. },
  27293. feet: {
  27294. height: math.unit(1.34, "feet"),
  27295. name: "Feet",
  27296. image: {
  27297. source: "./media/characters/nicky/feet.svg"
  27298. }
  27299. },
  27300. maw: {
  27301. height: math.unit(0.9, "feet"),
  27302. name: "Maw",
  27303. image: {
  27304. source: "./media/characters/nicky/maw.svg"
  27305. }
  27306. },
  27307. },
  27308. [
  27309. {
  27310. name: "Normal",
  27311. height: math.unit(5 + 10 / 12, "feet"),
  27312. default: true
  27313. },
  27314. {
  27315. name: "Macro",
  27316. height: math.unit(60, "feet")
  27317. },
  27318. {
  27319. name: "Megamacro",
  27320. height: math.unit(1, "mile")
  27321. },
  27322. ]
  27323. ))
  27324. characterMakers.push(() => makeCharacter(
  27325. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27326. {
  27327. side: {
  27328. height: math.unit(10, "feet"),
  27329. weight: math.unit(600, "lb"),
  27330. name: "Side",
  27331. image: {
  27332. source: "./media/characters/blair/side.svg",
  27333. bottom: 16.6 / 475,
  27334. extra: 458 / 431
  27335. }
  27336. },
  27337. },
  27338. [
  27339. {
  27340. name: "Micro",
  27341. height: math.unit(8, "inches")
  27342. },
  27343. {
  27344. name: "Normal",
  27345. height: math.unit(10, "feet"),
  27346. default: true
  27347. },
  27348. {
  27349. name: "Macro",
  27350. height: math.unit(180, "feet")
  27351. },
  27352. ]
  27353. ))
  27354. characterMakers.push(() => makeCharacter(
  27355. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27356. {
  27357. front: {
  27358. height: math.unit(5 + 4 / 12, "feet"),
  27359. weight: math.unit(125, "lb"),
  27360. name: "Front",
  27361. image: {
  27362. source: "./media/characters/fisher/front.svg",
  27363. extra: 444 / 390,
  27364. bottom: 2 / 444.8
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Micro",
  27371. height: math.unit(4, "inches")
  27372. },
  27373. {
  27374. name: "Normal",
  27375. height: math.unit(5 + 4 / 12, "feet"),
  27376. default: true
  27377. },
  27378. {
  27379. name: "Macro",
  27380. height: math.unit(100, "feet")
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27386. {
  27387. front: {
  27388. height: math.unit(6.71, "feet"),
  27389. weight: math.unit(200, "lb"),
  27390. preyCapacity: math.unit(1000000, "people"),
  27391. name: "Front",
  27392. image: {
  27393. source: "./media/characters/gliss/front.svg",
  27394. extra: 2347 / 2231,
  27395. bottom: 113 / 2462
  27396. }
  27397. },
  27398. hammerspaceSize: {
  27399. height: math.unit(6.71 * 717, "feet"),
  27400. weight: math.unit(200, "lb"),
  27401. preyCapacity: math.unit(1000000, "people"),
  27402. name: "Hammerspace Size",
  27403. image: {
  27404. source: "./media/characters/gliss/front.svg",
  27405. extra: 2347 / 2231,
  27406. bottom: 113 / 2462
  27407. }
  27408. },
  27409. },
  27410. [
  27411. {
  27412. name: "Normal",
  27413. height: math.unit(6.71, "feet"),
  27414. default: true
  27415. },
  27416. ]
  27417. ))
  27418. characterMakers.push(() => makeCharacter(
  27419. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27420. {
  27421. side: {
  27422. height: math.unit(1.44, "m"),
  27423. weight: math.unit(80, "kg"),
  27424. name: "Side",
  27425. image: {
  27426. source: "./media/characters/dune-anderson/side.svg",
  27427. bottom: 49 / 1426
  27428. }
  27429. },
  27430. },
  27431. [
  27432. {
  27433. name: "Wolf-sized",
  27434. height: math.unit(1.44, "meters")
  27435. },
  27436. {
  27437. name: "Normal",
  27438. height: math.unit(5.05, "meters"),
  27439. default: true
  27440. },
  27441. {
  27442. name: "Big",
  27443. height: math.unit(14.4, "meters")
  27444. },
  27445. {
  27446. name: "Huge",
  27447. height: math.unit(144, "meters")
  27448. },
  27449. ]
  27450. ))
  27451. characterMakers.push(() => makeCharacter(
  27452. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27453. {
  27454. front: {
  27455. height: math.unit(7, "feet"),
  27456. weight: math.unit(425, "lb"),
  27457. name: "Front",
  27458. image: {
  27459. source: "./media/characters/hind/front.svg",
  27460. extra: 2091 / 1860,
  27461. bottom: 129 / 2220
  27462. }
  27463. },
  27464. back: {
  27465. height: math.unit(7, "feet"),
  27466. weight: math.unit(425, "lb"),
  27467. name: "Back",
  27468. image: {
  27469. source: "./media/characters/hind/back.svg",
  27470. extra: 2091 / 1860,
  27471. bottom: 24.6 / 2309
  27472. }
  27473. },
  27474. tail: {
  27475. height: math.unit(2.8, "feet"),
  27476. name: "Tail",
  27477. image: {
  27478. source: "./media/characters/hind/tail.svg"
  27479. }
  27480. },
  27481. head: {
  27482. height: math.unit(2.55, "feet"),
  27483. name: "Head",
  27484. image: {
  27485. source: "./media/characters/hind/head.svg"
  27486. }
  27487. },
  27488. },
  27489. [
  27490. {
  27491. name: "XS",
  27492. height: math.unit(0.7, "feet")
  27493. },
  27494. {
  27495. name: "Normal",
  27496. height: math.unit(7, "feet"),
  27497. default: true
  27498. },
  27499. {
  27500. name: "XL",
  27501. height: math.unit(70, "feet")
  27502. },
  27503. ]
  27504. ))
  27505. characterMakers.push(() => makeCharacter(
  27506. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27507. {
  27508. front: {
  27509. height: math.unit(2.1, "meters"),
  27510. weight: math.unit(150, "lb"),
  27511. name: "Front",
  27512. image: {
  27513. source: "./media/characters/tharquench-sizestealer/front.svg",
  27514. extra: 1605/1470,
  27515. bottom: 36/1641
  27516. }
  27517. },
  27518. frontAlt: {
  27519. height: math.unit(2.1, "meters"),
  27520. weight: math.unit(150, "lb"),
  27521. name: "Front (Alt)",
  27522. image: {
  27523. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27524. extra: 2318 / 2063,
  27525. bottom: 93.4 / 2410
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Nano",
  27532. height: math.unit(1, "mm")
  27533. },
  27534. {
  27535. name: "Micro",
  27536. height: math.unit(1, "cm")
  27537. },
  27538. {
  27539. name: "Normal",
  27540. height: math.unit(2.1, "meters"),
  27541. default: true
  27542. },
  27543. ]
  27544. ))
  27545. characterMakers.push(() => makeCharacter(
  27546. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27547. {
  27548. front: {
  27549. height: math.unit(7 + 5 / 12, "feet"),
  27550. weight: math.unit(357, "lb"),
  27551. name: "Front",
  27552. image: {
  27553. source: "./media/characters/solex-draconov/front.svg",
  27554. extra: 1993 / 1865,
  27555. bottom: 117 / 2111
  27556. }
  27557. },
  27558. },
  27559. [
  27560. {
  27561. name: "Natural Height",
  27562. height: math.unit(7 + 5 / 12, "feet"),
  27563. default: true
  27564. },
  27565. {
  27566. name: "Macro",
  27567. height: math.unit(350, "feet")
  27568. },
  27569. {
  27570. name: "Macro+",
  27571. height: math.unit(1000, "feet")
  27572. },
  27573. {
  27574. name: "Megamacro",
  27575. height: math.unit(20, "km")
  27576. },
  27577. {
  27578. name: "Megamacro+",
  27579. height: math.unit(1000, "km")
  27580. },
  27581. {
  27582. name: "Gigamacro",
  27583. height: math.unit(2.5, "Gm")
  27584. },
  27585. {
  27586. name: "Teramacro",
  27587. height: math.unit(15, "Tm")
  27588. },
  27589. {
  27590. name: "Galactic",
  27591. height: math.unit(30, "Zm")
  27592. },
  27593. {
  27594. name: "Universal",
  27595. height: math.unit(21000, "Ym")
  27596. },
  27597. {
  27598. name: "Omniversal",
  27599. height: math.unit(9.861e50, "Ym")
  27600. },
  27601. {
  27602. name: "Existential",
  27603. height: math.unit(1e300, "meters")
  27604. },
  27605. ]
  27606. ))
  27607. characterMakers.push(() => makeCharacter(
  27608. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27609. {
  27610. side: {
  27611. height: math.unit(25, "feet"),
  27612. weight: math.unit(90000, "lb"),
  27613. name: "Side",
  27614. image: {
  27615. source: "./media/characters/mandarax/side.svg",
  27616. extra: 614 / 332,
  27617. bottom: 55 / 630
  27618. }
  27619. },
  27620. lounging: {
  27621. height: math.unit(15.4, "feet"),
  27622. weight: math.unit(90000, "lb"),
  27623. name: "Lounging",
  27624. image: {
  27625. source: "./media/characters/mandarax/lounging.svg",
  27626. extra: 817/609,
  27627. bottom: 685/1502
  27628. }
  27629. },
  27630. head: {
  27631. height: math.unit(11.4, "feet"),
  27632. name: "Head",
  27633. image: {
  27634. source: "./media/characters/mandarax/head.svg"
  27635. }
  27636. },
  27637. belly: {
  27638. height: math.unit(33, "feet"),
  27639. name: "Belly",
  27640. preyCapacity: math.unit(500, "people"),
  27641. image: {
  27642. source: "./media/characters/mandarax/belly.svg"
  27643. }
  27644. },
  27645. dick: {
  27646. height: math.unit(8.46, "feet"),
  27647. name: "Dick",
  27648. image: {
  27649. source: "./media/characters/mandarax/dick.svg"
  27650. }
  27651. },
  27652. top: {
  27653. height: math.unit(28, "meters"),
  27654. name: "Top",
  27655. image: {
  27656. source: "./media/characters/mandarax/top.svg"
  27657. }
  27658. },
  27659. },
  27660. [
  27661. {
  27662. name: "Normal",
  27663. height: math.unit(25, "feet"),
  27664. default: true
  27665. },
  27666. ]
  27667. ))
  27668. characterMakers.push(() => makeCharacter(
  27669. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27670. {
  27671. front: {
  27672. height: math.unit(5, "feet"),
  27673. weight: math.unit(90, "lb"),
  27674. name: "Front",
  27675. image: {
  27676. source: "./media/characters/pixil/front.svg",
  27677. extra: 2000 / 1618,
  27678. bottom: 12.3 / 2011
  27679. }
  27680. },
  27681. },
  27682. [
  27683. {
  27684. name: "Normal",
  27685. height: math.unit(5, "feet"),
  27686. default: true
  27687. },
  27688. {
  27689. name: "Megamacro",
  27690. height: math.unit(10, "miles"),
  27691. },
  27692. ]
  27693. ))
  27694. characterMakers.push(() => makeCharacter(
  27695. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27696. {
  27697. front: {
  27698. height: math.unit(7 + 2 / 12, "feet"),
  27699. weight: math.unit(200, "lb"),
  27700. name: "Front",
  27701. image: {
  27702. source: "./media/characters/angel/front.svg",
  27703. extra: 1946/1840,
  27704. bottom: 30/1976
  27705. }
  27706. },
  27707. },
  27708. [
  27709. {
  27710. name: "Normal",
  27711. height: math.unit(7 + 2 / 12, "feet"),
  27712. default: true
  27713. },
  27714. {
  27715. name: "Macro",
  27716. height: math.unit(1000, "feet")
  27717. },
  27718. {
  27719. name: "Megamacro",
  27720. height: math.unit(2, "miles")
  27721. },
  27722. {
  27723. name: "Gigamacro",
  27724. height: math.unit(20, "earths")
  27725. },
  27726. ]
  27727. ))
  27728. characterMakers.push(() => makeCharacter(
  27729. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27730. {
  27731. front: {
  27732. height: math.unit(5, "feet"),
  27733. weight: math.unit(180, "lb"),
  27734. name: "Front",
  27735. image: {
  27736. source: "./media/characters/mekana/front.svg",
  27737. extra: 1671 / 1605,
  27738. bottom: 3.5 / 1691
  27739. }
  27740. },
  27741. side: {
  27742. height: math.unit(5, "feet"),
  27743. weight: math.unit(180, "lb"),
  27744. name: "Side",
  27745. image: {
  27746. source: "./media/characters/mekana/side.svg",
  27747. extra: 1671 / 1605,
  27748. bottom: 3.5 / 1691
  27749. }
  27750. },
  27751. back: {
  27752. height: math.unit(5, "feet"),
  27753. weight: math.unit(180, "lb"),
  27754. name: "Back",
  27755. image: {
  27756. source: "./media/characters/mekana/back.svg",
  27757. extra: 1671 / 1605,
  27758. bottom: 3.5 / 1691
  27759. }
  27760. },
  27761. },
  27762. [
  27763. {
  27764. name: "Normal",
  27765. height: math.unit(5, "feet"),
  27766. default: true
  27767. },
  27768. ]
  27769. ))
  27770. characterMakers.push(() => makeCharacter(
  27771. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27772. {
  27773. front: {
  27774. height: math.unit(4 + 6 / 12, "feet"),
  27775. weight: math.unit(80, "lb"),
  27776. name: "Front",
  27777. image: {
  27778. source: "./media/characters/pixie/front.svg",
  27779. extra: 1924 / 1825,
  27780. bottom: 22.4 / 1946
  27781. }
  27782. },
  27783. },
  27784. [
  27785. {
  27786. name: "Normal",
  27787. height: math.unit(4 + 6 / 12, "feet"),
  27788. default: true
  27789. },
  27790. {
  27791. name: "Macro",
  27792. height: math.unit(40, "feet")
  27793. },
  27794. ]
  27795. ))
  27796. characterMakers.push(() => makeCharacter(
  27797. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27798. {
  27799. front: {
  27800. height: math.unit(2.1, "meters"),
  27801. weight: math.unit(200, "lb"),
  27802. name: "Front",
  27803. image: {
  27804. source: "./media/characters/the-lascivious/front.svg",
  27805. extra: 1 / 0.893,
  27806. bottom: 3.5 / 573.7
  27807. }
  27808. },
  27809. },
  27810. [
  27811. {
  27812. name: "Human Scale",
  27813. height: math.unit(2.1, "meters")
  27814. },
  27815. {
  27816. name: "Wolxi Scale",
  27817. height: math.unit(46.2, "m"),
  27818. default: true
  27819. },
  27820. {
  27821. name: "Boinker of Buildings",
  27822. height: math.unit(10, "km")
  27823. },
  27824. {
  27825. name: "Shagger of Skyscrapers",
  27826. height: math.unit(40, "km")
  27827. },
  27828. {
  27829. name: "Banger of Boroughs",
  27830. height: math.unit(4000, "km")
  27831. },
  27832. {
  27833. name: "Screwer of States",
  27834. height: math.unit(100000, "km")
  27835. },
  27836. {
  27837. name: "Pounder of Planets",
  27838. height: math.unit(2000000, "km")
  27839. },
  27840. ]
  27841. ))
  27842. characterMakers.push(() => makeCharacter(
  27843. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27844. {
  27845. front: {
  27846. height: math.unit(6, "feet"),
  27847. weight: math.unit(150, "lb"),
  27848. name: "Front",
  27849. image: {
  27850. source: "./media/characters/aj/front.svg",
  27851. extra: 2039 / 1562,
  27852. bottom: 40 / 2079
  27853. }
  27854. },
  27855. },
  27856. [
  27857. {
  27858. name: "Normal",
  27859. height: math.unit(11 + 6 / 12, "feet"),
  27860. default: true
  27861. },
  27862. {
  27863. name: "Megamacro",
  27864. height: math.unit(60, "megameters")
  27865. },
  27866. ]
  27867. ))
  27868. characterMakers.push(() => makeCharacter(
  27869. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27870. {
  27871. side: {
  27872. height: math.unit(31 + 8 / 12, "feet"),
  27873. weight: math.unit(75000, "kg"),
  27874. name: "Side",
  27875. image: {
  27876. source: "./media/characters/koros/side.svg",
  27877. extra: 1442 / 1297,
  27878. bottom: 122.7 / 1562
  27879. }
  27880. },
  27881. dicksKingsCrown: {
  27882. height: math.unit(6, "feet"),
  27883. name: "Dicks (King's Crown)",
  27884. image: {
  27885. source: "./media/characters/koros/dicks-kings-crown.svg"
  27886. }
  27887. },
  27888. dicksTailSet: {
  27889. height: math.unit(3, "feet"),
  27890. name: "Dicks (Tail Set)",
  27891. image: {
  27892. source: "./media/characters/koros/dicks-tail-set.svg"
  27893. }
  27894. },
  27895. dickCumming: {
  27896. height: math.unit(7.98, "feet"),
  27897. name: "Dick (Cumming)",
  27898. image: {
  27899. source: "./media/characters/koros/dick-cumming.svg"
  27900. }
  27901. },
  27902. dicksBack: {
  27903. height: math.unit(5.9, "feet"),
  27904. name: "Dicks (Back)",
  27905. image: {
  27906. source: "./media/characters/koros/dicks-back.svg"
  27907. }
  27908. },
  27909. dicksFront: {
  27910. height: math.unit(3.72, "feet"),
  27911. name: "Dicks (Front)",
  27912. image: {
  27913. source: "./media/characters/koros/dicks-front.svg"
  27914. }
  27915. },
  27916. dicksPeeking: {
  27917. height: math.unit(3.0, "feet"),
  27918. name: "Dicks (Peeking)",
  27919. image: {
  27920. source: "./media/characters/koros/dicks-peeking.svg"
  27921. }
  27922. },
  27923. eye: {
  27924. height: math.unit(1.7, "feet"),
  27925. name: "Eye",
  27926. image: {
  27927. source: "./media/characters/koros/eye.svg"
  27928. }
  27929. },
  27930. headFront: {
  27931. height: math.unit(11.69, "feet"),
  27932. name: "Head (Front)",
  27933. image: {
  27934. source: "./media/characters/koros/head-front.svg"
  27935. }
  27936. },
  27937. headSide: {
  27938. height: math.unit(14, "feet"),
  27939. name: "Head (Side)",
  27940. image: {
  27941. source: "./media/characters/koros/head-side.svg"
  27942. }
  27943. },
  27944. leg: {
  27945. height: math.unit(17, "feet"),
  27946. name: "Leg",
  27947. image: {
  27948. source: "./media/characters/koros/leg.svg"
  27949. }
  27950. },
  27951. mawSide: {
  27952. height: math.unit(12.8, "feet"),
  27953. name: "Maw (Side)",
  27954. image: {
  27955. source: "./media/characters/koros/maw-side.svg"
  27956. }
  27957. },
  27958. mawSpitting: {
  27959. height: math.unit(17, "feet"),
  27960. name: "Maw (Spitting)",
  27961. image: {
  27962. source: "./media/characters/koros/maw-spitting.svg"
  27963. }
  27964. },
  27965. slit: {
  27966. height: math.unit(2.8, "feet"),
  27967. name: "Slit",
  27968. image: {
  27969. source: "./media/characters/koros/slit.svg"
  27970. }
  27971. },
  27972. stomach: {
  27973. height: math.unit(6.8, "feet"),
  27974. preyCapacity: math.unit(20, "people"),
  27975. name: "Stomach",
  27976. image: {
  27977. source: "./media/characters/koros/stomach.svg"
  27978. }
  27979. },
  27980. wingspanBottom: {
  27981. height: math.unit(114, "feet"),
  27982. name: "Wingspan (Bottom)",
  27983. image: {
  27984. source: "./media/characters/koros/wingspan-bottom.svg"
  27985. }
  27986. },
  27987. wingspanTop: {
  27988. height: math.unit(104, "feet"),
  27989. name: "Wingspan (Top)",
  27990. image: {
  27991. source: "./media/characters/koros/wingspan-top.svg"
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(31 + 8 / 12, "feet"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28005. {
  28006. front: {
  28007. height: math.unit(18 + 5 / 12, "feet"),
  28008. weight: math.unit(3750, "kg"),
  28009. name: "Front",
  28010. image: {
  28011. source: "./media/characters/vexx/front.svg",
  28012. extra: 426 / 396,
  28013. bottom: 31.5 / 458
  28014. }
  28015. },
  28016. maw: {
  28017. height: math.unit(6, "feet"),
  28018. name: "Maw",
  28019. image: {
  28020. source: "./media/characters/vexx/maw.svg"
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(18 + 5 / 12, "feet"),
  28028. default: true
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28034. {
  28035. front: {
  28036. height: math.unit(17 + 6 / 12, "feet"),
  28037. weight: math.unit(150, "lb"),
  28038. name: "Front",
  28039. image: {
  28040. source: "./media/characters/baadra/front.svg",
  28041. extra: 1694/1553,
  28042. bottom: 179/1873
  28043. }
  28044. },
  28045. frontAlt: {
  28046. height: math.unit(17 + 6 / 12, "feet"),
  28047. weight: math.unit(150, "lb"),
  28048. name: "Front (Alt)",
  28049. image: {
  28050. source: "./media/characters/baadra/front-alt.svg",
  28051. extra: 3137 / 2890,
  28052. bottom: 168.4 / 3305
  28053. }
  28054. },
  28055. back: {
  28056. height: math.unit(17 + 6 / 12, "feet"),
  28057. weight: math.unit(150, "lb"),
  28058. name: "Back",
  28059. image: {
  28060. source: "./media/characters/baadra/back.svg",
  28061. extra: 3142 / 2890,
  28062. bottom: 220 / 3371
  28063. }
  28064. },
  28065. head: {
  28066. height: math.unit(5.45, "feet"),
  28067. name: "Head",
  28068. image: {
  28069. source: "./media/characters/baadra/head.svg"
  28070. }
  28071. },
  28072. headAngry: {
  28073. height: math.unit(4.95, "feet"),
  28074. name: "Head (Angry)",
  28075. image: {
  28076. source: "./media/characters/baadra/head-angry.svg"
  28077. }
  28078. },
  28079. headOpen: {
  28080. height: math.unit(6, "feet"),
  28081. name: "Head (Open)",
  28082. image: {
  28083. source: "./media/characters/baadra/head-open.svg"
  28084. }
  28085. },
  28086. },
  28087. [
  28088. {
  28089. name: "Normal",
  28090. height: math.unit(17 + 6 / 12, "feet"),
  28091. default: true
  28092. },
  28093. ]
  28094. ))
  28095. characterMakers.push(() => makeCharacter(
  28096. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28097. {
  28098. front: {
  28099. height: math.unit(7 + 3 / 12, "feet"),
  28100. weight: math.unit(180, "lb"),
  28101. name: "Front",
  28102. image: {
  28103. source: "./media/characters/juri/front.svg",
  28104. extra: 1401 / 1237,
  28105. bottom: 18.5 / 1418
  28106. }
  28107. },
  28108. side: {
  28109. height: math.unit(7 + 3 / 12, "feet"),
  28110. weight: math.unit(180, "lb"),
  28111. name: "Side",
  28112. image: {
  28113. source: "./media/characters/juri/side.svg",
  28114. extra: 1424 / 1242,
  28115. bottom: 18.5 / 1447
  28116. }
  28117. },
  28118. sitting: {
  28119. height: math.unit(6, "feet"),
  28120. weight: math.unit(180, "lb"),
  28121. name: "Sitting",
  28122. image: {
  28123. source: "./media/characters/juri/sitting.svg",
  28124. extra: 1270 / 1143,
  28125. bottom: 100 / 1343
  28126. }
  28127. },
  28128. back: {
  28129. height: math.unit(7 + 3 / 12, "feet"),
  28130. weight: math.unit(180, "lb"),
  28131. name: "Back",
  28132. image: {
  28133. source: "./media/characters/juri/back.svg",
  28134. extra: 1377 / 1240,
  28135. bottom: 23.7 / 1405
  28136. }
  28137. },
  28138. maw: {
  28139. height: math.unit(2.8, "feet"),
  28140. name: "Maw",
  28141. image: {
  28142. source: "./media/characters/juri/maw.svg"
  28143. }
  28144. },
  28145. stomach: {
  28146. height: math.unit(0.89, "feet"),
  28147. preyCapacity: math.unit(4, "liters"),
  28148. name: "Stomach",
  28149. image: {
  28150. source: "./media/characters/juri/stomach.svg"
  28151. }
  28152. },
  28153. },
  28154. [
  28155. {
  28156. name: "Normal",
  28157. height: math.unit(7 + 3 / 12, "feet"),
  28158. default: true
  28159. },
  28160. ]
  28161. ))
  28162. characterMakers.push(() => makeCharacter(
  28163. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28164. {
  28165. fox: {
  28166. height: math.unit(5 + 6 / 12, "feet"),
  28167. weight: math.unit(140, "lb"),
  28168. name: "Fox",
  28169. image: {
  28170. source: "./media/characters/maxene-sita/fox.svg",
  28171. extra: 146 / 138,
  28172. bottom: 2.1 / 148.19
  28173. }
  28174. },
  28175. foxLaying: {
  28176. height: math.unit(1.70, "feet"),
  28177. weight: math.unit(140, "lb"),
  28178. name: "Fox (Laying)",
  28179. image: {
  28180. source: "./media/characters/maxene-sita/fox-laying.svg",
  28181. extra: 910 / 572,
  28182. bottom: 71 / 981
  28183. }
  28184. },
  28185. kitsune: {
  28186. height: math.unit(10, "feet"),
  28187. weight: math.unit(800, "lb"),
  28188. name: "Kitsune",
  28189. image: {
  28190. source: "./media/characters/maxene-sita/kitsune.svg",
  28191. extra: 185 / 176,
  28192. bottom: 4.7 / 189.9
  28193. }
  28194. },
  28195. hellhound: {
  28196. height: math.unit(10, "feet"),
  28197. weight: math.unit(700, "lb"),
  28198. name: "Hellhound",
  28199. image: {
  28200. source: "./media/characters/maxene-sita/hellhound.svg",
  28201. extra: 1600 / 1545,
  28202. bottom: 81 / 1681
  28203. }
  28204. },
  28205. },
  28206. [
  28207. {
  28208. name: "Normal",
  28209. height: math.unit(5 + 6 / 12, "feet"),
  28210. default: true
  28211. },
  28212. ]
  28213. ))
  28214. characterMakers.push(() => makeCharacter(
  28215. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28216. {
  28217. front: {
  28218. height: math.unit(3 + 4 / 12, "feet"),
  28219. weight: math.unit(70, "lb"),
  28220. name: "Front",
  28221. image: {
  28222. source: "./media/characters/maia/front.svg",
  28223. extra: 227 / 219.5,
  28224. bottom: 40 / 267
  28225. }
  28226. },
  28227. back: {
  28228. height: math.unit(3 + 4 / 12, "feet"),
  28229. weight: math.unit(70, "lb"),
  28230. name: "Back",
  28231. image: {
  28232. source: "./media/characters/maia/back.svg",
  28233. extra: 237 / 225
  28234. }
  28235. },
  28236. },
  28237. [
  28238. {
  28239. name: "Normal",
  28240. height: math.unit(3 + 4 / 12, "feet"),
  28241. default: true
  28242. },
  28243. ]
  28244. ))
  28245. characterMakers.push(() => makeCharacter(
  28246. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28247. {
  28248. front: {
  28249. height: math.unit(5 + 10 / 12, "feet"),
  28250. weight: math.unit(197, "lb"),
  28251. name: "Front",
  28252. image: {
  28253. source: "./media/characters/jabaro/front.svg",
  28254. extra: 225 / 216,
  28255. bottom: 5.06 / 230
  28256. }
  28257. },
  28258. back: {
  28259. height: math.unit(5 + 10 / 12, "feet"),
  28260. weight: math.unit(197, "lb"),
  28261. name: "Back",
  28262. image: {
  28263. source: "./media/characters/jabaro/back.svg",
  28264. extra: 225 / 219,
  28265. bottom: 1.9 / 227
  28266. }
  28267. },
  28268. },
  28269. [
  28270. {
  28271. name: "Normal",
  28272. height: math.unit(5 + 10 / 12, "feet"),
  28273. default: true
  28274. },
  28275. ]
  28276. ))
  28277. characterMakers.push(() => makeCharacter(
  28278. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28279. {
  28280. front: {
  28281. height: math.unit(5 + 8 / 12, "feet"),
  28282. weight: math.unit(139, "lb"),
  28283. name: "Front",
  28284. image: {
  28285. source: "./media/characters/risa/front.svg",
  28286. extra: 270 / 260,
  28287. bottom: 11.2 / 282
  28288. }
  28289. },
  28290. back: {
  28291. height: math.unit(5 + 8 / 12, "feet"),
  28292. weight: math.unit(139, "lb"),
  28293. name: "Back",
  28294. image: {
  28295. source: "./media/characters/risa/back.svg",
  28296. extra: 264 / 255,
  28297. bottom: 4 / 268
  28298. }
  28299. },
  28300. },
  28301. [
  28302. {
  28303. name: "Normal",
  28304. height: math.unit(5 + 8 / 12, "feet"),
  28305. default: true
  28306. },
  28307. ]
  28308. ))
  28309. characterMakers.push(() => makeCharacter(
  28310. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28311. {
  28312. front: {
  28313. height: math.unit(2 + 11 / 12, "feet"),
  28314. weight: math.unit(30, "lb"),
  28315. name: "Front",
  28316. image: {
  28317. source: "./media/characters/weatley/front.svg",
  28318. bottom: 10.7 / 414,
  28319. extra: 403.5 / 362
  28320. }
  28321. },
  28322. back: {
  28323. height: math.unit(2 + 11 / 12, "feet"),
  28324. weight: math.unit(30, "lb"),
  28325. name: "Back",
  28326. image: {
  28327. source: "./media/characters/weatley/back.svg",
  28328. bottom: 10.7 / 414,
  28329. extra: 403.5 / 362
  28330. }
  28331. },
  28332. },
  28333. [
  28334. {
  28335. name: "Normal",
  28336. height: math.unit(2 + 11 / 12, "feet"),
  28337. default: true
  28338. },
  28339. ]
  28340. ))
  28341. characterMakers.push(() => makeCharacter(
  28342. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28343. {
  28344. front: {
  28345. height: math.unit(5 + 2 / 12, "feet"),
  28346. weight: math.unit(50, "kg"),
  28347. name: "Front",
  28348. image: {
  28349. source: "./media/characters/mercury-crescent/front.svg",
  28350. extra: 1088 / 1033,
  28351. bottom: 18.9 / 1109
  28352. }
  28353. },
  28354. },
  28355. [
  28356. {
  28357. name: "Normal",
  28358. height: math.unit(5 + 2 / 12, "feet"),
  28359. default: true
  28360. },
  28361. ]
  28362. ))
  28363. characterMakers.push(() => makeCharacter(
  28364. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28365. {
  28366. front: {
  28367. height: math.unit(2, "feet"),
  28368. weight: math.unit(15, "kg"),
  28369. name: "Front",
  28370. image: {
  28371. source: "./media/characters/diamond-jones/front.svg",
  28372. extra: 727/723,
  28373. bottom: 46/773
  28374. }
  28375. },
  28376. },
  28377. [
  28378. {
  28379. name: "Normal",
  28380. height: math.unit(2, "feet"),
  28381. default: true
  28382. },
  28383. ]
  28384. ))
  28385. characterMakers.push(() => makeCharacter(
  28386. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28387. {
  28388. front: {
  28389. height: math.unit(3, "feet"),
  28390. weight: math.unit(30, "kg"),
  28391. name: "Front",
  28392. image: {
  28393. source: "./media/characters/sweet-bit/front.svg",
  28394. extra: 675 / 567,
  28395. bottom: 27.7 / 703
  28396. }
  28397. },
  28398. },
  28399. [
  28400. {
  28401. name: "Normal",
  28402. height: math.unit(3, "feet"),
  28403. default: true
  28404. },
  28405. ]
  28406. ))
  28407. characterMakers.push(() => makeCharacter(
  28408. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28409. {
  28410. side: {
  28411. height: math.unit(9.178, "feet"),
  28412. weight: math.unit(500, "lb"),
  28413. name: "Side",
  28414. image: {
  28415. source: "./media/characters/umbrazen/side.svg",
  28416. extra: 1730 / 1473,
  28417. bottom: 34.6 / 1765
  28418. }
  28419. },
  28420. },
  28421. [
  28422. {
  28423. name: "Normal",
  28424. height: math.unit(9.178, "feet"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(10, "feet"),
  28434. weight: math.unit(750, "lb"),
  28435. name: "Front",
  28436. image: {
  28437. source: "./media/characters/arlist/front.svg",
  28438. extra: 961 / 778,
  28439. bottom: 6.2 / 986
  28440. }
  28441. },
  28442. },
  28443. [
  28444. {
  28445. name: "Normal",
  28446. height: math.unit(10, "feet"),
  28447. default: true
  28448. },
  28449. ]
  28450. ))
  28451. characterMakers.push(() => makeCharacter(
  28452. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28453. {
  28454. front: {
  28455. height: math.unit(5 + 1 / 12, "feet"),
  28456. weight: math.unit(110, "lb"),
  28457. name: "Front",
  28458. image: {
  28459. source: "./media/characters/aradel/front.svg",
  28460. extra: 324 / 303,
  28461. bottom: 3.6 / 329.4
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Normal",
  28468. height: math.unit(5 + 1 / 12, "feet"),
  28469. default: true
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28475. {
  28476. dressed: {
  28477. height: math.unit(3 + 8 / 12, "feet"),
  28478. weight: math.unit(50, "lb"),
  28479. name: "Dressed",
  28480. image: {
  28481. source: "./media/characters/serryn/dressed.svg",
  28482. extra: 1792 / 1656,
  28483. bottom: 43.5 / 1840
  28484. }
  28485. },
  28486. nude: {
  28487. height: math.unit(3 + 8 / 12, "feet"),
  28488. weight: math.unit(50, "lb"),
  28489. name: "Nude",
  28490. image: {
  28491. source: "./media/characters/serryn/nude.svg",
  28492. extra: 1792 / 1656,
  28493. bottom: 43.5 / 1840
  28494. }
  28495. },
  28496. },
  28497. [
  28498. {
  28499. name: "Normal",
  28500. height: math.unit(3 + 8 / 12, "feet"),
  28501. default: true
  28502. },
  28503. ]
  28504. ))
  28505. characterMakers.push(() => makeCharacter(
  28506. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28507. {
  28508. front: {
  28509. height: math.unit(7 + 10 / 12, "feet"),
  28510. weight: math.unit(255, "lb"),
  28511. name: "Front",
  28512. image: {
  28513. source: "./media/characters/xavier-thyme/front.svg",
  28514. extra: 3733 / 3642,
  28515. bottom: 131 / 3869
  28516. }
  28517. },
  28518. frontRaven: {
  28519. height: math.unit(7 + 10 / 12, "feet"),
  28520. weight: math.unit(255, "lb"),
  28521. name: "Front (Raven)",
  28522. image: {
  28523. source: "./media/characters/xavier-thyme/front-raven.svg",
  28524. extra: 4385 / 3642,
  28525. bottom: 131 / 4517
  28526. }
  28527. },
  28528. },
  28529. [
  28530. {
  28531. name: "Normal",
  28532. height: math.unit(7 + 10 / 12, "feet"),
  28533. default: true
  28534. },
  28535. ]
  28536. ))
  28537. characterMakers.push(() => makeCharacter(
  28538. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28539. {
  28540. front: {
  28541. height: math.unit(1.6, "m"),
  28542. weight: math.unit(50, "kg"),
  28543. name: "Front",
  28544. image: {
  28545. source: "./media/characters/kiki/front.svg",
  28546. extra: 4682 / 3610,
  28547. bottom: 115 / 4777
  28548. }
  28549. },
  28550. },
  28551. [
  28552. {
  28553. name: "Normal",
  28554. height: math.unit(1.6, "meters"),
  28555. default: true
  28556. },
  28557. ]
  28558. ))
  28559. characterMakers.push(() => makeCharacter(
  28560. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28561. {
  28562. front: {
  28563. height: math.unit(50, "m"),
  28564. weight: math.unit(500, "tonnes"),
  28565. name: "Front",
  28566. image: {
  28567. source: "./media/characters/ryoko/front.svg",
  28568. extra: 4632 / 3926,
  28569. bottom: 193 / 4823
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Normal",
  28576. height: math.unit(50, "meters"),
  28577. default: true
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28583. {
  28584. front: {
  28585. height: math.unit(30, "m"),
  28586. weight: math.unit(22, "tonnes"),
  28587. name: "Front",
  28588. image: {
  28589. source: "./media/characters/elio/front.svg",
  28590. extra: 4582 / 3720,
  28591. bottom: 236 / 4828
  28592. }
  28593. },
  28594. },
  28595. [
  28596. {
  28597. name: "Normal",
  28598. height: math.unit(30, "meters"),
  28599. default: true
  28600. },
  28601. ]
  28602. ))
  28603. characterMakers.push(() => makeCharacter(
  28604. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28605. {
  28606. front: {
  28607. height: math.unit(6 + 3 / 12, "feet"),
  28608. weight: math.unit(120, "lb"),
  28609. name: "Front",
  28610. image: {
  28611. source: "./media/characters/azura/front.svg",
  28612. extra: 1149 / 1135,
  28613. bottom: 45 / 1194
  28614. }
  28615. },
  28616. frontClothed: {
  28617. height: math.unit(6 + 3 / 12, "feet"),
  28618. weight: math.unit(120, "lb"),
  28619. name: "Front (Clothed)",
  28620. image: {
  28621. source: "./media/characters/azura/front-clothed.svg",
  28622. extra: 1149 / 1135,
  28623. bottom: 45 / 1194
  28624. }
  28625. },
  28626. },
  28627. [
  28628. {
  28629. name: "Normal",
  28630. height: math.unit(6 + 3 / 12, "feet"),
  28631. default: true
  28632. },
  28633. {
  28634. name: "Macro",
  28635. height: math.unit(20 + 6 / 12, "feet")
  28636. },
  28637. {
  28638. name: "Megamacro",
  28639. height: math.unit(12, "miles")
  28640. },
  28641. {
  28642. name: "Gigamacro",
  28643. height: math.unit(10000, "miles")
  28644. },
  28645. {
  28646. name: "Teramacro",
  28647. height: math.unit(900000, "miles")
  28648. },
  28649. ]
  28650. ))
  28651. characterMakers.push(() => makeCharacter(
  28652. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28653. {
  28654. front: {
  28655. height: math.unit(12, "feet"),
  28656. weight: math.unit(1, "ton"),
  28657. capacity: math.unit(660000, "gallons"),
  28658. name: "Front",
  28659. image: {
  28660. source: "./media/characters/zeus/front.svg",
  28661. extra: 5005 / 4717,
  28662. bottom: 363 / 5388
  28663. }
  28664. },
  28665. },
  28666. [
  28667. {
  28668. name: "Normal",
  28669. height: math.unit(12, "feet")
  28670. },
  28671. {
  28672. name: "Preferred Size",
  28673. height: math.unit(0.5, "miles"),
  28674. default: true
  28675. },
  28676. {
  28677. name: "Giga Horse",
  28678. height: math.unit(300, "miles")
  28679. },
  28680. {
  28681. name: "Riding Planets",
  28682. height: math.unit(30, "megameters")
  28683. },
  28684. {
  28685. name: "Cosmic Giant",
  28686. height: math.unit(3, "zettameters")
  28687. },
  28688. {
  28689. name: "Breeding God",
  28690. height: math.unit(9.92e22, "yottameters")
  28691. },
  28692. ]
  28693. ))
  28694. characterMakers.push(() => makeCharacter(
  28695. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28696. {
  28697. side: {
  28698. height: math.unit(9, "feet"),
  28699. weight: math.unit(1500, "kg"),
  28700. name: "Side",
  28701. image: {
  28702. source: "./media/characters/fang/side.svg",
  28703. extra: 924 / 866,
  28704. bottom: 47.5 / 972.3
  28705. }
  28706. },
  28707. },
  28708. [
  28709. {
  28710. name: "Normal",
  28711. height: math.unit(9, "feet"),
  28712. default: true
  28713. },
  28714. {
  28715. name: "Macro",
  28716. height: math.unit(75 + 6 / 12, "feet")
  28717. },
  28718. {
  28719. name: "Teramacro",
  28720. height: math.unit(50000, "miles")
  28721. },
  28722. ]
  28723. ))
  28724. characterMakers.push(() => makeCharacter(
  28725. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28726. {
  28727. front: {
  28728. height: math.unit(10, "feet"),
  28729. weight: math.unit(2, "tons"),
  28730. name: "Front",
  28731. image: {
  28732. source: "./media/characters/rekhit/front.svg",
  28733. extra: 2796 / 2590,
  28734. bottom: 225 / 3022
  28735. }
  28736. },
  28737. },
  28738. [
  28739. {
  28740. name: "Normal",
  28741. height: math.unit(10, "feet"),
  28742. default: true
  28743. },
  28744. {
  28745. name: "Macro",
  28746. height: math.unit(500, "feet")
  28747. },
  28748. ]
  28749. ))
  28750. characterMakers.push(() => makeCharacter(
  28751. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28752. {
  28753. front: {
  28754. height: math.unit(7 + 6.451 / 12, "feet"),
  28755. weight: math.unit(310, "lb"),
  28756. name: "Front",
  28757. image: {
  28758. source: "./media/characters/dahlia-verrick/front.svg",
  28759. extra: 1488 / 1365,
  28760. bottom: 6.2 / 1495
  28761. }
  28762. },
  28763. back: {
  28764. height: math.unit(7 + 6.451 / 12, "feet"),
  28765. weight: math.unit(310, "lb"),
  28766. name: "Back",
  28767. image: {
  28768. source: "./media/characters/dahlia-verrick/back.svg",
  28769. extra: 1472 / 1351,
  28770. bottom: 5.28 / 1477
  28771. }
  28772. },
  28773. frontBusiness: {
  28774. height: math.unit(7 + 6.451 / 12, "feet"),
  28775. weight: math.unit(200, "lb"),
  28776. name: "Front (Business)",
  28777. image: {
  28778. source: "./media/characters/dahlia-verrick/front-business.svg",
  28779. extra: 1478 / 1381,
  28780. bottom: 5.5 / 1484
  28781. }
  28782. },
  28783. frontCasual: {
  28784. height: math.unit(7 + 6.451 / 12, "feet"),
  28785. weight: math.unit(200, "lb"),
  28786. name: "Front (Casual)",
  28787. image: {
  28788. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28789. extra: 1478 / 1381,
  28790. bottom: 5.5 / 1484
  28791. }
  28792. },
  28793. },
  28794. [
  28795. {
  28796. name: "Travel-Sized",
  28797. height: math.unit(7.45, "inches")
  28798. },
  28799. {
  28800. name: "Normal",
  28801. height: math.unit(7 + 6.451 / 12, "feet"),
  28802. default: true
  28803. },
  28804. {
  28805. name: "Hitting the Town",
  28806. height: math.unit(37 + 8 / 12, "feet")
  28807. },
  28808. {
  28809. name: "Stomp in the Suburbs",
  28810. height: math.unit(964 + 9.728 / 12, "feet")
  28811. },
  28812. {
  28813. name: "Sit on the City",
  28814. height: math.unit(61747 + 10.592 / 12, "feet")
  28815. },
  28816. {
  28817. name: "Glomp the Globe",
  28818. height: math.unit(252919327 + 4.832 / 12, "feet")
  28819. },
  28820. ]
  28821. ))
  28822. characterMakers.push(() => makeCharacter(
  28823. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28824. {
  28825. front: {
  28826. height: math.unit(6 + 4 / 12, "feet"),
  28827. weight: math.unit(320, "lb"),
  28828. name: "Front",
  28829. image: {
  28830. source: "./media/characters/balina-mahigan/front.svg",
  28831. extra: 447 / 428,
  28832. bottom: 18 / 466
  28833. }
  28834. },
  28835. back: {
  28836. height: math.unit(6 + 4 / 12, "feet"),
  28837. weight: math.unit(320, "lb"),
  28838. name: "Back",
  28839. image: {
  28840. source: "./media/characters/balina-mahigan/back.svg",
  28841. extra: 445 / 428,
  28842. bottom: 4.07 / 448
  28843. }
  28844. },
  28845. arm: {
  28846. height: math.unit(1.88, "feet"),
  28847. name: "Arm",
  28848. image: {
  28849. source: "./media/characters/balina-mahigan/arm.svg"
  28850. }
  28851. },
  28852. backPort: {
  28853. height: math.unit(0.685, "feet"),
  28854. name: "Back Port",
  28855. image: {
  28856. source: "./media/characters/balina-mahigan/back-port.svg"
  28857. }
  28858. },
  28859. hoofpaw: {
  28860. height: math.unit(1.41, "feet"),
  28861. name: "Hoofpaw",
  28862. image: {
  28863. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28864. }
  28865. },
  28866. leftHandBack: {
  28867. height: math.unit(0.938, "feet"),
  28868. name: "Left Hand (Back)",
  28869. image: {
  28870. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28871. }
  28872. },
  28873. leftHandFront: {
  28874. height: math.unit(0.938, "feet"),
  28875. name: "Left Hand (Front)",
  28876. image: {
  28877. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28878. }
  28879. },
  28880. rightHandBack: {
  28881. height: math.unit(0.95, "feet"),
  28882. name: "Right Hand (Back)",
  28883. image: {
  28884. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28885. }
  28886. },
  28887. rightHandFront: {
  28888. height: math.unit(0.95, "feet"),
  28889. name: "Right Hand (Front)",
  28890. image: {
  28891. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28892. }
  28893. },
  28894. },
  28895. [
  28896. {
  28897. name: "Normal",
  28898. height: math.unit(6 + 4 / 12, "feet"),
  28899. default: true
  28900. },
  28901. ]
  28902. ))
  28903. characterMakers.push(() => makeCharacter(
  28904. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28905. {
  28906. front: {
  28907. height: math.unit(6, "feet"),
  28908. weight: math.unit(320, "lb"),
  28909. name: "Front",
  28910. image: {
  28911. source: "./media/characters/balina-mejeri/front.svg",
  28912. extra: 517 / 488,
  28913. bottom: 44.2 / 561
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Normal",
  28920. height: math.unit(6 + 4 / 12, "feet")
  28921. },
  28922. {
  28923. name: "Business",
  28924. height: math.unit(155, "feet"),
  28925. default: true
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28931. {
  28932. kneeling: {
  28933. height: math.unit(6 + 4 / 12, "feet"),
  28934. weight: math.unit(300 * 20, "lb"),
  28935. name: "Kneeling",
  28936. image: {
  28937. source: "./media/characters/balbarian/kneeling.svg",
  28938. extra: 922 / 862,
  28939. bottom: 42.4 / 965
  28940. }
  28941. },
  28942. },
  28943. [
  28944. {
  28945. name: "Normal",
  28946. height: math.unit(6 + 4 / 12, "feet")
  28947. },
  28948. {
  28949. name: "Treasured",
  28950. height: math.unit(18 + 9 / 12, "feet"),
  28951. default: true
  28952. },
  28953. {
  28954. name: "Macro",
  28955. height: math.unit(900, "feet")
  28956. },
  28957. ]
  28958. ))
  28959. characterMakers.push(() => makeCharacter(
  28960. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28961. {
  28962. front: {
  28963. height: math.unit(6 + 4 / 12, "feet"),
  28964. weight: math.unit(325, "lb"),
  28965. name: "Front",
  28966. image: {
  28967. source: "./media/characters/balina-amarini/front.svg",
  28968. extra: 415 / 403,
  28969. bottom: 19 / 433.4
  28970. }
  28971. },
  28972. back: {
  28973. height: math.unit(6 + 4 / 12, "feet"),
  28974. weight: math.unit(325, "lb"),
  28975. name: "Back",
  28976. image: {
  28977. source: "./media/characters/balina-amarini/back.svg",
  28978. extra: 415 / 403,
  28979. bottom: 13.5 / 432
  28980. }
  28981. },
  28982. overdrive: {
  28983. height: math.unit(6 + 4 / 12, "feet"),
  28984. weight: math.unit(400, "lb"),
  28985. name: "Overdrive",
  28986. image: {
  28987. source: "./media/characters/balina-amarini/overdrive.svg",
  28988. extra: 269 / 259,
  28989. bottom: 12 / 282
  28990. }
  28991. },
  28992. },
  28993. [
  28994. {
  28995. name: "Boom",
  28996. height: math.unit(9 + 10 / 12, "feet"),
  28997. default: true
  28998. },
  28999. {
  29000. name: "Macro",
  29001. height: math.unit(280, "feet")
  29002. },
  29003. ]
  29004. ))
  29005. characterMakers.push(() => makeCharacter(
  29006. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29007. {
  29008. goddess: {
  29009. height: math.unit(600, "feet"),
  29010. weight: math.unit(2000000, "tons"),
  29011. name: "Goddess",
  29012. image: {
  29013. source: "./media/characters/lady-kubwa/goddess.svg",
  29014. extra: 1240.5 / 1223,
  29015. bottom: 22 / 1263
  29016. }
  29017. },
  29018. goddesser: {
  29019. height: math.unit(900, "feet"),
  29020. weight: math.unit(20000000, "lb"),
  29021. name: "Goddess-er",
  29022. image: {
  29023. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29024. extra: 899 / 888,
  29025. bottom: 12.6 / 912
  29026. }
  29027. },
  29028. },
  29029. [
  29030. {
  29031. name: "Macro",
  29032. height: math.unit(600, "feet"),
  29033. default: true
  29034. },
  29035. {
  29036. name: "Megamacro",
  29037. height: math.unit(250, "miles")
  29038. },
  29039. ]
  29040. ))
  29041. characterMakers.push(() => makeCharacter(
  29042. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29043. {
  29044. front: {
  29045. height: math.unit(7 + 7 / 12, "feet"),
  29046. weight: math.unit(250, "lb"),
  29047. name: "Front",
  29048. image: {
  29049. source: "./media/characters/tala-grovehorn/front.svg",
  29050. extra: 2636 / 2525,
  29051. bottom: 147 / 2781
  29052. }
  29053. },
  29054. back: {
  29055. height: math.unit(7 + 7 / 12, "feet"),
  29056. weight: math.unit(250, "lb"),
  29057. name: "Back",
  29058. image: {
  29059. source: "./media/characters/tala-grovehorn/back.svg",
  29060. extra: 2635 / 2539,
  29061. bottom: 100 / 2732.8
  29062. }
  29063. },
  29064. mouth: {
  29065. height: math.unit(1.15, "feet"),
  29066. name: "Mouth",
  29067. image: {
  29068. source: "./media/characters/tala-grovehorn/mouth.svg"
  29069. }
  29070. },
  29071. dick: {
  29072. height: math.unit(2.36, "feet"),
  29073. name: "Dick",
  29074. image: {
  29075. source: "./media/characters/tala-grovehorn/dick.svg"
  29076. }
  29077. },
  29078. slit: {
  29079. height: math.unit(0.61, "feet"),
  29080. name: "Slit",
  29081. image: {
  29082. source: "./media/characters/tala-grovehorn/slit.svg"
  29083. }
  29084. },
  29085. },
  29086. [
  29087. ]
  29088. ))
  29089. characterMakers.push(() => makeCharacter(
  29090. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29091. {
  29092. front: {
  29093. height: math.unit(7 + 7 / 12, "feet"),
  29094. weight: math.unit(225, "lb"),
  29095. name: "Front",
  29096. image: {
  29097. source: "./media/characters/epona/front.svg",
  29098. extra: 2445 / 2290,
  29099. bottom: 251 / 2696
  29100. }
  29101. },
  29102. back: {
  29103. height: math.unit(7 + 7 / 12, "feet"),
  29104. weight: math.unit(225, "lb"),
  29105. name: "Back",
  29106. image: {
  29107. source: "./media/characters/epona/back.svg",
  29108. extra: 2546 / 2408,
  29109. bottom: 44 / 2589
  29110. }
  29111. },
  29112. genitals: {
  29113. height: math.unit(1.5, "feet"),
  29114. name: "Genitals",
  29115. image: {
  29116. source: "./media/characters/epona/genitals.svg"
  29117. }
  29118. },
  29119. },
  29120. [
  29121. {
  29122. name: "Normal",
  29123. height: math.unit(7 + 7 / 12, "feet"),
  29124. default: true
  29125. },
  29126. ]
  29127. ))
  29128. characterMakers.push(() => makeCharacter(
  29129. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29130. {
  29131. front: {
  29132. height: math.unit(7, "feet"),
  29133. weight: math.unit(518, "lb"),
  29134. name: "Front",
  29135. image: {
  29136. source: "./media/characters/avia-bloodbourn/front.svg",
  29137. extra: 1466 / 1350,
  29138. bottom: 65 / 1527
  29139. }
  29140. },
  29141. },
  29142. [
  29143. ]
  29144. ))
  29145. characterMakers.push(() => makeCharacter(
  29146. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29147. {
  29148. front: {
  29149. height: math.unit(9.35, "feet"),
  29150. weight: math.unit(600, "lb"),
  29151. name: "Front",
  29152. image: {
  29153. source: "./media/characters/amera/front.svg",
  29154. extra: 891 / 818,
  29155. bottom: 30 / 922.7
  29156. }
  29157. },
  29158. back: {
  29159. height: math.unit(9.35, "feet"),
  29160. weight: math.unit(600, "lb"),
  29161. name: "Back",
  29162. image: {
  29163. source: "./media/characters/amera/back.svg",
  29164. extra: 876 / 824,
  29165. bottom: 6.8 / 884
  29166. }
  29167. },
  29168. dick: {
  29169. height: math.unit(2.14, "feet"),
  29170. name: "Dick",
  29171. image: {
  29172. source: "./media/characters/amera/dick.svg"
  29173. }
  29174. },
  29175. },
  29176. [
  29177. {
  29178. name: "Normal",
  29179. height: math.unit(9.35, "feet"),
  29180. default: true
  29181. },
  29182. ]
  29183. ))
  29184. characterMakers.push(() => makeCharacter(
  29185. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29186. {
  29187. kneeling: {
  29188. height: math.unit(3 + 4 / 12, "feet"),
  29189. weight: math.unit(90, "lb"),
  29190. name: "Kneeling",
  29191. image: {
  29192. source: "./media/characters/rosewen/kneeling.svg",
  29193. extra: 1835 / 1571,
  29194. bottom: 27.7 / 1862
  29195. }
  29196. },
  29197. },
  29198. [
  29199. {
  29200. name: "Normal",
  29201. height: math.unit(3 + 4 / 12, "feet"),
  29202. default: true
  29203. },
  29204. ]
  29205. ))
  29206. characterMakers.push(() => makeCharacter(
  29207. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29208. {
  29209. front: {
  29210. height: math.unit(5 + 10 / 12, "feet"),
  29211. weight: math.unit(200, "lb"),
  29212. name: "Front",
  29213. image: {
  29214. source: "./media/characters/sabah/front.svg",
  29215. extra: 849 / 763,
  29216. bottom: 33.9 / 881
  29217. }
  29218. },
  29219. },
  29220. [
  29221. {
  29222. name: "Normal",
  29223. height: math.unit(5 + 10 / 12, "feet"),
  29224. default: true
  29225. },
  29226. ]
  29227. ))
  29228. characterMakers.push(() => makeCharacter(
  29229. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29230. {
  29231. front: {
  29232. height: math.unit(3 + 5 / 12, "feet"),
  29233. weight: math.unit(40, "kg"),
  29234. name: "Front",
  29235. image: {
  29236. source: "./media/characters/purple-flame/front.svg",
  29237. extra: 1577 / 1412,
  29238. bottom: 97 / 1694
  29239. }
  29240. },
  29241. frontDressed: {
  29242. height: math.unit(3 + 5 / 12, "feet"),
  29243. weight: math.unit(40, "kg"),
  29244. name: "Front (Dressed)",
  29245. image: {
  29246. source: "./media/characters/purple-flame/front-dressed.svg",
  29247. extra: 1577 / 1412,
  29248. bottom: 97 / 1694
  29249. }
  29250. },
  29251. headphones: {
  29252. height: math.unit(0.85, "feet"),
  29253. name: "Headphones",
  29254. image: {
  29255. source: "./media/characters/purple-flame/headphones.svg"
  29256. }
  29257. },
  29258. },
  29259. [
  29260. {
  29261. name: "Really Small",
  29262. height: math.unit(5, "cm")
  29263. },
  29264. {
  29265. name: "Micro",
  29266. height: math.unit(1 + 5 / 12, "feet")
  29267. },
  29268. {
  29269. name: "Normal",
  29270. height: math.unit(3 + 5 / 12, "feet"),
  29271. default: true
  29272. },
  29273. {
  29274. name: "Minimacro",
  29275. height: math.unit(125, "feet")
  29276. },
  29277. {
  29278. name: "Macro",
  29279. height: math.unit(0.5, "miles")
  29280. },
  29281. {
  29282. name: "Megamacro",
  29283. height: math.unit(50, "miles")
  29284. },
  29285. {
  29286. name: "Gigantic",
  29287. height: math.unit(750, "miles")
  29288. },
  29289. {
  29290. name: "Planetary",
  29291. height: math.unit(15000, "miles")
  29292. },
  29293. ]
  29294. ))
  29295. characterMakers.push(() => makeCharacter(
  29296. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29297. {
  29298. front: {
  29299. height: math.unit(14, "feet"),
  29300. weight: math.unit(959, "lb"),
  29301. name: "Front",
  29302. image: {
  29303. source: "./media/characters/arsenal/front.svg",
  29304. extra: 2357 / 2157,
  29305. bottom: 93 / 2458
  29306. }
  29307. },
  29308. },
  29309. [
  29310. {
  29311. name: "Normal",
  29312. height: math.unit(14, "feet"),
  29313. default: true
  29314. },
  29315. ]
  29316. ))
  29317. characterMakers.push(() => makeCharacter(
  29318. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29319. {
  29320. front: {
  29321. height: math.unit(6, "feet"),
  29322. weight: math.unit(150, "lb"),
  29323. name: "Front",
  29324. image: {
  29325. source: "./media/characters/adira/front.svg",
  29326. extra: 1078 / 1029,
  29327. bottom: 87 / 1166
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Micro",
  29334. height: math.unit(4, "inches"),
  29335. default: true
  29336. },
  29337. {
  29338. name: "Macro",
  29339. height: math.unit(50, "feet")
  29340. },
  29341. ]
  29342. ))
  29343. characterMakers.push(() => makeCharacter(
  29344. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29345. {
  29346. front: {
  29347. height: math.unit(16, "feet"),
  29348. weight: math.unit(1000, "lb"),
  29349. name: "Front",
  29350. image: {
  29351. source: "./media/characters/grim/front.svg",
  29352. extra: 622 / 614,
  29353. bottom: 18.1 / 642
  29354. }
  29355. },
  29356. back: {
  29357. height: math.unit(16, "feet"),
  29358. weight: math.unit(1000, "lb"),
  29359. name: "Back",
  29360. image: {
  29361. source: "./media/characters/grim/back.svg",
  29362. extra: 610.6 / 602,
  29363. bottom: 40.8 / 652
  29364. }
  29365. },
  29366. hunched: {
  29367. height: math.unit(9.75, "feet"),
  29368. weight: math.unit(1000, "lb"),
  29369. name: "Hunched",
  29370. image: {
  29371. source: "./media/characters/grim/hunched.svg",
  29372. extra: 304 / 297,
  29373. bottom: 35.4 / 394
  29374. }
  29375. },
  29376. },
  29377. [
  29378. {
  29379. name: "Normal",
  29380. height: math.unit(16, "feet"),
  29381. default: true
  29382. },
  29383. ]
  29384. ))
  29385. characterMakers.push(() => makeCharacter(
  29386. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29387. {
  29388. front: {
  29389. height: math.unit(2.3, "meters"),
  29390. weight: math.unit(300, "lb"),
  29391. name: "Front",
  29392. image: {
  29393. source: "./media/characters/sinja/front-sfw.svg",
  29394. extra: 1393 / 1294,
  29395. bottom: 70 / 1463
  29396. }
  29397. },
  29398. frontNsfw: {
  29399. height: math.unit(2.3, "meters"),
  29400. weight: math.unit(300, "lb"),
  29401. name: "Front (NSFW)",
  29402. image: {
  29403. source: "./media/characters/sinja/front-nsfw.svg",
  29404. extra: 1393 / 1294,
  29405. bottom: 70 / 1463
  29406. }
  29407. },
  29408. back: {
  29409. height: math.unit(2.3, "meters"),
  29410. weight: math.unit(300, "lb"),
  29411. name: "Back",
  29412. image: {
  29413. source: "./media/characters/sinja/back.svg",
  29414. extra: 1393 / 1294,
  29415. bottom: 70 / 1463
  29416. }
  29417. },
  29418. head: {
  29419. height: math.unit(1.771, "feet"),
  29420. name: "Head",
  29421. image: {
  29422. source: "./media/characters/sinja/head.svg"
  29423. }
  29424. },
  29425. slit: {
  29426. height: math.unit(0.8, "feet"),
  29427. name: "Slit",
  29428. image: {
  29429. source: "./media/characters/sinja/slit.svg"
  29430. }
  29431. },
  29432. },
  29433. [
  29434. {
  29435. name: "Normal",
  29436. height: math.unit(2.3, "meters")
  29437. },
  29438. {
  29439. name: "Macro",
  29440. height: math.unit(91, "meters"),
  29441. default: true
  29442. },
  29443. {
  29444. name: "Megamacro",
  29445. height: math.unit(91440, "meters")
  29446. },
  29447. {
  29448. name: "Gigamacro",
  29449. height: math.unit(60960000, "meters")
  29450. },
  29451. {
  29452. name: "Teramacro",
  29453. height: math.unit(9144000000, "meters")
  29454. },
  29455. ]
  29456. ))
  29457. characterMakers.push(() => makeCharacter(
  29458. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29459. {
  29460. front: {
  29461. height: math.unit(1.7, "meters"),
  29462. weight: math.unit(130, "lb"),
  29463. name: "Front",
  29464. image: {
  29465. source: "./media/characters/kyu/front.svg",
  29466. extra: 415 / 395,
  29467. bottom: 5 / 420
  29468. }
  29469. },
  29470. head: {
  29471. height: math.unit(1.75, "feet"),
  29472. name: "Head",
  29473. image: {
  29474. source: "./media/characters/kyu/head.svg"
  29475. }
  29476. },
  29477. foot: {
  29478. height: math.unit(0.81, "feet"),
  29479. name: "Foot",
  29480. image: {
  29481. source: "./media/characters/kyu/foot.svg"
  29482. }
  29483. },
  29484. },
  29485. [
  29486. {
  29487. name: "Normal",
  29488. height: math.unit(1.7, "meters")
  29489. },
  29490. {
  29491. name: "Macro",
  29492. height: math.unit(131, "feet"),
  29493. default: true
  29494. },
  29495. {
  29496. name: "Megamacro",
  29497. height: math.unit(91440, "meters")
  29498. },
  29499. {
  29500. name: "Gigamacro",
  29501. height: math.unit(60960000, "meters")
  29502. },
  29503. {
  29504. name: "Teramacro",
  29505. height: math.unit(9144000000, "meters")
  29506. },
  29507. ]
  29508. ))
  29509. characterMakers.push(() => makeCharacter(
  29510. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29511. {
  29512. front: {
  29513. height: math.unit(7 + 1 / 12, "feet"),
  29514. weight: math.unit(250, "lb"),
  29515. name: "Front",
  29516. image: {
  29517. source: "./media/characters/joey/front.svg",
  29518. extra: 1791 / 1537,
  29519. bottom: 28 / 1816
  29520. }
  29521. },
  29522. },
  29523. [
  29524. {
  29525. name: "Micro",
  29526. height: math.unit(3, "inches")
  29527. },
  29528. {
  29529. name: "Normal",
  29530. height: math.unit(7 + 1 / 12, "feet"),
  29531. default: true
  29532. },
  29533. ]
  29534. ))
  29535. characterMakers.push(() => makeCharacter(
  29536. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29537. {
  29538. front: {
  29539. height: math.unit(165, "cm"),
  29540. weight: math.unit(140, "lb"),
  29541. name: "Front",
  29542. image: {
  29543. source: "./media/characters/sam-evans/front.svg",
  29544. extra: 3417 / 3230,
  29545. bottom: 41.3 / 3417
  29546. }
  29547. },
  29548. frontSixTails: {
  29549. height: math.unit(165, "cm"),
  29550. weight: math.unit(140, "lb"),
  29551. name: "Front-six-tails",
  29552. image: {
  29553. source: "./media/characters/sam-evans/front-six-tails.svg",
  29554. extra: 3417 / 3230,
  29555. bottom: 41.3 / 3417
  29556. }
  29557. },
  29558. back: {
  29559. height: math.unit(165, "cm"),
  29560. weight: math.unit(140, "lb"),
  29561. name: "Back",
  29562. image: {
  29563. source: "./media/characters/sam-evans/back.svg",
  29564. extra: 3227 / 3032,
  29565. bottom: 6.8 / 3234
  29566. }
  29567. },
  29568. face: {
  29569. height: math.unit(0.68, "feet"),
  29570. name: "Face",
  29571. image: {
  29572. source: "./media/characters/sam-evans/face.svg"
  29573. }
  29574. },
  29575. },
  29576. [
  29577. {
  29578. name: "Normal",
  29579. height: math.unit(165, "cm"),
  29580. default: true
  29581. },
  29582. {
  29583. name: "Macro",
  29584. height: math.unit(100, "meters")
  29585. },
  29586. {
  29587. name: "Macro+",
  29588. height: math.unit(800, "meters")
  29589. },
  29590. {
  29591. name: "Macro++",
  29592. height: math.unit(3, "km")
  29593. },
  29594. {
  29595. name: "Macro+++",
  29596. height: math.unit(30, "km")
  29597. },
  29598. ]
  29599. ))
  29600. characterMakers.push(() => makeCharacter(
  29601. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29602. {
  29603. front: {
  29604. height: math.unit(10, "feet"),
  29605. weight: math.unit(750, "lb"),
  29606. name: "Front",
  29607. image: {
  29608. source: "./media/characters/juliet-a/front.svg",
  29609. extra: 1766 / 1720,
  29610. bottom: 43 / 1809
  29611. }
  29612. },
  29613. back: {
  29614. height: math.unit(10, "feet"),
  29615. weight: math.unit(750, "lb"),
  29616. name: "Back",
  29617. image: {
  29618. source: "./media/characters/juliet-a/back.svg",
  29619. extra: 1781 / 1734,
  29620. bottom: 35 / 1810,
  29621. }
  29622. },
  29623. },
  29624. [
  29625. {
  29626. name: "Normal",
  29627. height: math.unit(10, "feet"),
  29628. default: true
  29629. },
  29630. {
  29631. name: "Dragon Form",
  29632. height: math.unit(250, "feet")
  29633. },
  29634. {
  29635. name: "Macro",
  29636. height: math.unit(1000, "feet")
  29637. },
  29638. {
  29639. name: "Megamacro",
  29640. height: math.unit(10000, "feet")
  29641. }
  29642. ]
  29643. ))
  29644. characterMakers.push(() => makeCharacter(
  29645. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29646. {
  29647. regular: {
  29648. height: math.unit(7 + 3 / 12, "feet"),
  29649. weight: math.unit(260, "lb"),
  29650. name: "Regular",
  29651. image: {
  29652. source: "./media/characters/wild/regular.svg",
  29653. extra: 97.45 / 92,
  29654. bottom: 6.8 / 104.3
  29655. }
  29656. },
  29657. biggums: {
  29658. height: math.unit(8 + 6 / 12, "feet"),
  29659. weight: math.unit(425, "lb"),
  29660. name: "Biggums",
  29661. image: {
  29662. source: "./media/characters/wild/biggums.svg",
  29663. extra: 97.45 / 92,
  29664. bottom: 7.5 / 132.34
  29665. }
  29666. },
  29667. mawRegular: {
  29668. height: math.unit(1.24, "feet"),
  29669. name: "Maw (Regular)",
  29670. image: {
  29671. source: "./media/characters/wild/maw.svg"
  29672. }
  29673. },
  29674. mawBiggums: {
  29675. height: math.unit(1.47, "feet"),
  29676. name: "Maw (Biggums)",
  29677. image: {
  29678. source: "./media/characters/wild/maw.svg"
  29679. }
  29680. },
  29681. },
  29682. [
  29683. {
  29684. name: "Normal",
  29685. height: math.unit(7 + 3 / 12, "feet"),
  29686. default: true
  29687. },
  29688. ]
  29689. ))
  29690. characterMakers.push(() => makeCharacter(
  29691. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29692. {
  29693. front: {
  29694. height: math.unit(2.5, "meters"),
  29695. weight: math.unit(200, "kg"),
  29696. name: "Front",
  29697. image: {
  29698. source: "./media/characters/vidar/front.svg",
  29699. extra: 2994 / 2795,
  29700. bottom: 56 / 3061
  29701. }
  29702. },
  29703. back: {
  29704. height: math.unit(2.5, "meters"),
  29705. weight: math.unit(200, "kg"),
  29706. name: "Back",
  29707. image: {
  29708. source: "./media/characters/vidar/back.svg",
  29709. extra: 3131 / 2928,
  29710. bottom: 13.5 / 3141.5
  29711. }
  29712. },
  29713. feral: {
  29714. height: math.unit(2.5, "meters"),
  29715. weight: math.unit(2000, "kg"),
  29716. name: "Feral",
  29717. image: {
  29718. source: "./media/characters/vidar/feral.svg",
  29719. extra: 2790 / 1765,
  29720. bottom: 6 / 2796
  29721. }
  29722. },
  29723. },
  29724. [
  29725. {
  29726. name: "Normal",
  29727. height: math.unit(2.5, "meters"),
  29728. default: true
  29729. },
  29730. {
  29731. name: "Macro",
  29732. height: math.unit(100, "meters")
  29733. },
  29734. ]
  29735. ))
  29736. characterMakers.push(() => makeCharacter(
  29737. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29738. {
  29739. front: {
  29740. height: math.unit(5 + 9 / 12, "feet"),
  29741. weight: math.unit(120, "lb"),
  29742. name: "Front",
  29743. image: {
  29744. source: "./media/characters/ash/front.svg",
  29745. extra: 2189 / 1961,
  29746. bottom: 5.2 / 2194
  29747. }
  29748. },
  29749. },
  29750. [
  29751. {
  29752. name: "Normal",
  29753. height: math.unit(5 + 9 / 12, "feet"),
  29754. default: true
  29755. },
  29756. ]
  29757. ))
  29758. characterMakers.push(() => makeCharacter(
  29759. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29760. {
  29761. front: {
  29762. height: math.unit(9, "feet"),
  29763. weight: math.unit(10000, "lb"),
  29764. name: "Front",
  29765. image: {
  29766. source: "./media/characters/gygabite/front.svg",
  29767. bottom: 31.7 / 537.8,
  29768. extra: 505 / 370
  29769. }
  29770. },
  29771. },
  29772. [
  29773. {
  29774. name: "Normal",
  29775. height: math.unit(9, "feet"),
  29776. default: true
  29777. },
  29778. ]
  29779. ))
  29780. characterMakers.push(() => makeCharacter(
  29781. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29782. {
  29783. front: {
  29784. height: math.unit(12, "feet"),
  29785. weight: math.unit(4000, "lb"),
  29786. name: "Front",
  29787. image: {
  29788. source: "./media/characters/p0tat0/front.svg",
  29789. extra: 1065 / 921,
  29790. bottom: 55.7 / 1121.25
  29791. }
  29792. },
  29793. },
  29794. [
  29795. {
  29796. name: "Normal",
  29797. height: math.unit(12, "feet"),
  29798. default: true
  29799. },
  29800. ]
  29801. ))
  29802. characterMakers.push(() => makeCharacter(
  29803. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29804. {
  29805. side: {
  29806. height: math.unit(6.5, "feet"),
  29807. weight: math.unit(800, "lb"),
  29808. name: "Side",
  29809. image: {
  29810. source: "./media/characters/dusk/side.svg",
  29811. extra: 615 / 373,
  29812. bottom: 53 / 664
  29813. }
  29814. },
  29815. sitting: {
  29816. height: math.unit(7, "feet"),
  29817. weight: math.unit(800, "lb"),
  29818. name: "Sitting",
  29819. image: {
  29820. source: "./media/characters/dusk/sitting.svg",
  29821. extra: 753 / 425,
  29822. bottom: 33 / 774
  29823. }
  29824. },
  29825. head: {
  29826. height: math.unit(6.1, "feet"),
  29827. name: "Head",
  29828. image: {
  29829. source: "./media/characters/dusk/head.svg"
  29830. }
  29831. },
  29832. },
  29833. [
  29834. {
  29835. name: "Normal",
  29836. height: math.unit(7, "feet"),
  29837. default: true
  29838. },
  29839. ]
  29840. ))
  29841. characterMakers.push(() => makeCharacter(
  29842. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29843. {
  29844. front: {
  29845. height: math.unit(15, "feet"),
  29846. weight: math.unit(7000, "lb"),
  29847. name: "Front",
  29848. image: {
  29849. source: "./media/characters/jay-direwolf/front.svg",
  29850. extra: 1810 / 1732,
  29851. bottom: 66 / 1892
  29852. }
  29853. },
  29854. },
  29855. [
  29856. {
  29857. name: "Normal",
  29858. height: math.unit(15, "feet"),
  29859. default: true
  29860. },
  29861. ]
  29862. ))
  29863. characterMakers.push(() => makeCharacter(
  29864. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29865. {
  29866. front: {
  29867. height: math.unit(4 + 9 / 12, "feet"),
  29868. weight: math.unit(130, "lb"),
  29869. name: "Front",
  29870. image: {
  29871. source: "./media/characters/anchovie/front.svg",
  29872. extra: 382 / 350,
  29873. bottom: 25 / 409
  29874. }
  29875. },
  29876. back: {
  29877. height: math.unit(4 + 9 / 12, "feet"),
  29878. weight: math.unit(130, "lb"),
  29879. name: "Back",
  29880. image: {
  29881. source: "./media/characters/anchovie/back.svg",
  29882. extra: 385 / 352,
  29883. bottom: 16.6 / 402
  29884. }
  29885. },
  29886. frontDressed: {
  29887. height: math.unit(4 + 9 / 12, "feet"),
  29888. weight: math.unit(130, "lb"),
  29889. name: "Front (Dressed)",
  29890. image: {
  29891. source: "./media/characters/anchovie/front-dressed.svg",
  29892. extra: 382 / 350,
  29893. bottom: 25 / 409
  29894. }
  29895. },
  29896. backDressed: {
  29897. height: math.unit(4 + 9 / 12, "feet"),
  29898. weight: math.unit(130, "lb"),
  29899. name: "Back (Dressed)",
  29900. image: {
  29901. source: "./media/characters/anchovie/back-dressed.svg",
  29902. extra: 385 / 352,
  29903. bottom: 16.6 / 402
  29904. }
  29905. },
  29906. },
  29907. [
  29908. {
  29909. name: "Micro",
  29910. height: math.unit(6.4, "inches")
  29911. },
  29912. {
  29913. name: "Normal",
  29914. height: math.unit(4 + 9 / 12, "feet"),
  29915. default: true
  29916. },
  29917. ]
  29918. ))
  29919. characterMakers.push(() => makeCharacter(
  29920. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29921. {
  29922. front: {
  29923. height: math.unit(2, "meters"),
  29924. weight: math.unit(180, "lb"),
  29925. name: "Front",
  29926. image: {
  29927. source: "./media/characters/acidrenamon/front.svg",
  29928. extra: 987 / 890,
  29929. bottom: 22.8 / 1009
  29930. }
  29931. },
  29932. back: {
  29933. height: math.unit(2, "meters"),
  29934. weight: math.unit(180, "lb"),
  29935. name: "Back",
  29936. image: {
  29937. source: "./media/characters/acidrenamon/back.svg",
  29938. extra: 983 / 891,
  29939. bottom: 8.4 / 992
  29940. }
  29941. },
  29942. head: {
  29943. height: math.unit(1.92, "feet"),
  29944. name: "Head",
  29945. image: {
  29946. source: "./media/characters/acidrenamon/head.svg"
  29947. }
  29948. },
  29949. rump: {
  29950. height: math.unit(1.72, "feet"),
  29951. name: "Rump",
  29952. image: {
  29953. source: "./media/characters/acidrenamon/rump.svg"
  29954. }
  29955. },
  29956. tail: {
  29957. height: math.unit(4.2, "feet"),
  29958. name: "Tail",
  29959. image: {
  29960. source: "./media/characters/acidrenamon/tail.svg"
  29961. }
  29962. },
  29963. },
  29964. [
  29965. {
  29966. name: "Normal",
  29967. height: math.unit(2, "meters"),
  29968. default: true
  29969. },
  29970. {
  29971. name: "Minimacro",
  29972. height: math.unit(7, "meters")
  29973. },
  29974. {
  29975. name: "Macro",
  29976. height: math.unit(200, "meters")
  29977. },
  29978. {
  29979. name: "Gigamacro",
  29980. height: math.unit(0.2, "earths")
  29981. },
  29982. ]
  29983. ))
  29984. characterMakers.push(() => makeCharacter(
  29985. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  29986. {
  29987. front: {
  29988. height: math.unit(152, "feet"),
  29989. name: "Front",
  29990. image: {
  29991. source: "./media/characters/kenzie-lee/front.svg",
  29992. extra: 1869/1774,
  29993. bottom: 128/1997
  29994. }
  29995. },
  29996. side: {
  29997. height: math.unit(86, "feet"),
  29998. name: "Side",
  29999. image: {
  30000. source: "./media/characters/kenzie-lee/side.svg",
  30001. extra: 930/815,
  30002. bottom: 177/1107
  30003. }
  30004. },
  30005. paw: {
  30006. height: math.unit(15, "feet"),
  30007. name: "Paw",
  30008. image: {
  30009. source: "./media/characters/kenzie-lee/paw.svg"
  30010. }
  30011. },
  30012. },
  30013. [
  30014. {
  30015. name: "Kenzie Flea",
  30016. height: math.unit(2, "mm"),
  30017. default: true
  30018. },
  30019. {
  30020. name: "Micro",
  30021. height: math.unit(2, "inches")
  30022. },
  30023. {
  30024. name: "Normal",
  30025. height: math.unit(152, "feet")
  30026. },
  30027. {
  30028. name: "Megamacro",
  30029. height: math.unit(7, "miles")
  30030. },
  30031. {
  30032. name: "Gigamacro",
  30033. height: math.unit(8000, "miles")
  30034. },
  30035. ]
  30036. ))
  30037. characterMakers.push(() => makeCharacter(
  30038. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30039. {
  30040. front: {
  30041. height: math.unit(6, "feet"),
  30042. name: "Front",
  30043. image: {
  30044. source: "./media/characters/withers/front.svg",
  30045. extra: 1935/1760,
  30046. bottom: 72/2007
  30047. }
  30048. },
  30049. back: {
  30050. height: math.unit(6, "feet"),
  30051. name: "Back",
  30052. image: {
  30053. source: "./media/characters/withers/back.svg",
  30054. extra: 1944/1792,
  30055. bottom: 12/1956
  30056. }
  30057. },
  30058. dressed: {
  30059. height: math.unit(6, "feet"),
  30060. name: "Dressed",
  30061. image: {
  30062. source: "./media/characters/withers/dressed.svg",
  30063. extra: 1937/1765,
  30064. bottom: 73/2010
  30065. }
  30066. },
  30067. phase1: {
  30068. height: math.unit(1.1, "feet"),
  30069. name: "Phase 1",
  30070. image: {
  30071. source: "./media/characters/withers/phase-1.svg",
  30072. extra: 1885/1232,
  30073. bottom: 0/1885
  30074. }
  30075. },
  30076. phase2: {
  30077. height: math.unit(1.05, "feet"),
  30078. name: "Phase 2",
  30079. image: {
  30080. source: "./media/characters/withers/phase-2.svg",
  30081. extra: 1792/1090,
  30082. bottom: 0/1792
  30083. }
  30084. },
  30085. partyWipe: {
  30086. height: math.unit(1.1, "feet"),
  30087. name: "Party Wipe",
  30088. image: {
  30089. source: "./media/characters/withers/party-wipe.svg",
  30090. extra: 1864/1207,
  30091. bottom: 0/1864
  30092. }
  30093. },
  30094. },
  30095. [
  30096. {
  30097. name: "Macro",
  30098. height: math.unit(167, "feet"),
  30099. default: true
  30100. },
  30101. {
  30102. name: "Megamacro",
  30103. height: math.unit(15, "miles")
  30104. }
  30105. ]
  30106. ))
  30107. characterMakers.push(() => makeCharacter(
  30108. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30109. {
  30110. front: {
  30111. height: math.unit(6 + 7 / 12, "feet"),
  30112. weight: math.unit(250, "lb"),
  30113. name: "Front",
  30114. image: {
  30115. source: "./media/characters/nemoskii/front.svg",
  30116. extra: 2270 / 1734,
  30117. bottom: 86 / 2354
  30118. }
  30119. },
  30120. back: {
  30121. height: math.unit(6 + 7 / 12, "feet"),
  30122. weight: math.unit(250, "lb"),
  30123. name: "Back",
  30124. image: {
  30125. source: "./media/characters/nemoskii/back.svg",
  30126. extra: 1845 / 1788,
  30127. bottom: 10.5 / 1852
  30128. }
  30129. },
  30130. head: {
  30131. height: math.unit(1.31, "feet"),
  30132. name: "Head",
  30133. image: {
  30134. source: "./media/characters/nemoskii/head.svg"
  30135. }
  30136. },
  30137. },
  30138. [
  30139. {
  30140. name: "Micro",
  30141. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30142. },
  30143. {
  30144. name: "Normal",
  30145. height: math.unit(6 + 7 / 12, "feet"),
  30146. default: true
  30147. },
  30148. {
  30149. name: "Macro",
  30150. height: math.unit((6 + 7 / 12) * 150, "feet")
  30151. },
  30152. {
  30153. name: "Macro+",
  30154. height: math.unit((6 + 7 / 12) * 500, "feet")
  30155. },
  30156. {
  30157. name: "Megamacro",
  30158. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30159. },
  30160. ]
  30161. ))
  30162. characterMakers.push(() => makeCharacter(
  30163. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30164. {
  30165. front: {
  30166. height: math.unit(1, "mile"),
  30167. weight: math.unit(265261.9, "lb"),
  30168. name: "Front",
  30169. image: {
  30170. source: "./media/characters/shui/front.svg",
  30171. extra: 1633 / 1564,
  30172. bottom: 91.5 / 1726
  30173. }
  30174. },
  30175. },
  30176. [
  30177. {
  30178. name: "Macro",
  30179. height: math.unit(1, "mile"),
  30180. default: true
  30181. },
  30182. ]
  30183. ))
  30184. characterMakers.push(() => makeCharacter(
  30185. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30186. {
  30187. front: {
  30188. height: math.unit(12 + 6 / 12, "feet"),
  30189. weight: math.unit(1342, "lb"),
  30190. name: "Front",
  30191. image: {
  30192. source: "./media/characters/arokh-takakura/front.svg",
  30193. extra: 1089 / 1043,
  30194. bottom: 77.4 / 1176.7
  30195. }
  30196. },
  30197. back: {
  30198. height: math.unit(12 + 6 / 12, "feet"),
  30199. weight: math.unit(1342, "lb"),
  30200. name: "Back",
  30201. image: {
  30202. source: "./media/characters/arokh-takakura/back.svg",
  30203. extra: 1046 / 1019,
  30204. bottom: 102 / 1150
  30205. }
  30206. },
  30207. },
  30208. [
  30209. {
  30210. name: "Big",
  30211. height: math.unit(12 + 6 / 12, "feet"),
  30212. default: true
  30213. },
  30214. ]
  30215. ))
  30216. characterMakers.push(() => makeCharacter(
  30217. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30218. {
  30219. front: {
  30220. height: math.unit(5 + 6 / 12, "feet"),
  30221. weight: math.unit(150, "lb"),
  30222. name: "Front",
  30223. image: {
  30224. source: "./media/characters/theo/front.svg",
  30225. extra: 1184 / 1131,
  30226. bottom: 7.4 / 1191
  30227. }
  30228. },
  30229. },
  30230. [
  30231. {
  30232. name: "Micro",
  30233. height: math.unit(5, "inches")
  30234. },
  30235. {
  30236. name: "Normal",
  30237. height: math.unit(5 + 6 / 12, "feet"),
  30238. default: true
  30239. },
  30240. ]
  30241. ))
  30242. characterMakers.push(() => makeCharacter(
  30243. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30244. {
  30245. front: {
  30246. height: math.unit(5 + 9 / 12, "feet"),
  30247. weight: math.unit(130, "lb"),
  30248. name: "Front",
  30249. image: {
  30250. source: "./media/characters/cecelia-swift/front.svg",
  30251. extra: 502 / 484,
  30252. bottom: 23 / 523
  30253. }
  30254. },
  30255. back: {
  30256. height: math.unit(5 + 9 / 12, "feet"),
  30257. weight: math.unit(130, "lb"),
  30258. name: "Back",
  30259. image: {
  30260. source: "./media/characters/cecelia-swift/back.svg",
  30261. extra: 499 / 485,
  30262. bottom: 12 / 511
  30263. }
  30264. },
  30265. head: {
  30266. height: math.unit(0.90, "feet"),
  30267. name: "Head",
  30268. image: {
  30269. source: "./media/characters/cecelia-swift/head.svg"
  30270. }
  30271. },
  30272. rump: {
  30273. height: math.unit(1.75, "feet"),
  30274. name: "Rump",
  30275. image: {
  30276. source: "./media/characters/cecelia-swift/rump.svg"
  30277. }
  30278. },
  30279. },
  30280. [
  30281. {
  30282. name: "Normal",
  30283. height: math.unit(5 + 9 / 12, "feet"),
  30284. default: true
  30285. },
  30286. {
  30287. name: "Big",
  30288. height: math.unit(50, "feet")
  30289. },
  30290. {
  30291. name: "Macro",
  30292. height: math.unit(100, "feet")
  30293. },
  30294. {
  30295. name: "Macro+",
  30296. height: math.unit(500, "feet")
  30297. },
  30298. {
  30299. name: "Macro++",
  30300. height: math.unit(1000, "feet")
  30301. },
  30302. ]
  30303. ))
  30304. characterMakers.push(() => makeCharacter(
  30305. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30306. {
  30307. front: {
  30308. height: math.unit(6, "feet"),
  30309. weight: math.unit(150, "lb"),
  30310. name: "Front",
  30311. image: {
  30312. source: "./media/characters/kaunan/front.svg",
  30313. extra: 2890 / 2523,
  30314. bottom: 49 / 2939
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Macro",
  30321. height: math.unit(150, "feet"),
  30322. default: true
  30323. },
  30324. ]
  30325. ))
  30326. characterMakers.push(() => makeCharacter(
  30327. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30328. {
  30329. dressed: {
  30330. height: math.unit(175, "cm"),
  30331. weight: math.unit(60, "kg"),
  30332. name: "Dressed",
  30333. image: {
  30334. source: "./media/characters/fei/dressed.svg",
  30335. extra: 1402/1278,
  30336. bottom: 27/1429
  30337. }
  30338. },
  30339. nude: {
  30340. height: math.unit(175, "cm"),
  30341. weight: math.unit(60, "kg"),
  30342. name: "Nude",
  30343. image: {
  30344. source: "./media/characters/fei/nude.svg",
  30345. extra: 1402/1278,
  30346. bottom: 27/1429
  30347. }
  30348. },
  30349. heels: {
  30350. height: math.unit(0.466, "feet"),
  30351. name: "Heels",
  30352. image: {
  30353. source: "./media/characters/fei/heels.svg",
  30354. extra: 156/152,
  30355. bottom: 28/184
  30356. }
  30357. },
  30358. },
  30359. [
  30360. {
  30361. name: "Mortal",
  30362. height: math.unit(175, "cm")
  30363. },
  30364. {
  30365. name: "Normal",
  30366. height: math.unit(3500, "m")
  30367. },
  30368. {
  30369. name: "Stroll",
  30370. height: math.unit(18.4, "km"),
  30371. default: true
  30372. },
  30373. {
  30374. name: "Showoff",
  30375. height: math.unit(175, "km")
  30376. },
  30377. ]
  30378. ))
  30379. characterMakers.push(() => makeCharacter(
  30380. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30381. {
  30382. front: {
  30383. height: math.unit(7, "feet"),
  30384. weight: math.unit(1000, "kg"),
  30385. name: "Front",
  30386. image: {
  30387. source: "./media/characters/edrax/front.svg",
  30388. extra: 2838 / 2550,
  30389. bottom: 130 / 2968
  30390. }
  30391. },
  30392. },
  30393. [
  30394. {
  30395. name: "Small",
  30396. height: math.unit(7, "feet")
  30397. },
  30398. {
  30399. name: "Normal",
  30400. height: math.unit(1500, "meters")
  30401. },
  30402. {
  30403. name: "Mega",
  30404. height: math.unit(12000000, "km"),
  30405. default: true
  30406. },
  30407. {
  30408. name: "Megamacro",
  30409. height: math.unit(10600000, "lightyears")
  30410. },
  30411. {
  30412. name: "Hypermacro",
  30413. height: math.unit(256, "yottameters")
  30414. },
  30415. ]
  30416. ))
  30417. characterMakers.push(() => makeCharacter(
  30418. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30419. {
  30420. front: {
  30421. height: math.unit(10, "feet"),
  30422. weight: math.unit(750, "lb"),
  30423. name: "Front",
  30424. image: {
  30425. source: "./media/characters/clove/front.svg",
  30426. extra: 1918/1751,
  30427. bottom: 52/1970
  30428. }
  30429. },
  30430. back: {
  30431. height: math.unit(10, "feet"),
  30432. weight: math.unit(750, "lb"),
  30433. name: "Back",
  30434. image: {
  30435. source: "./media/characters/clove/back.svg",
  30436. extra: 1912/1747,
  30437. bottom: 50/1962
  30438. }
  30439. },
  30440. },
  30441. [
  30442. {
  30443. name: "Normal",
  30444. height: math.unit(10, "feet"),
  30445. default: true
  30446. },
  30447. ]
  30448. ))
  30449. characterMakers.push(() => makeCharacter(
  30450. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30451. {
  30452. front: {
  30453. height: math.unit(4, "feet"),
  30454. weight: math.unit(50, "lb"),
  30455. name: "Front",
  30456. image: {
  30457. source: "./media/characters/alex-rabbit/front.svg",
  30458. extra: 507 / 458,
  30459. bottom: 18.5 / 527
  30460. }
  30461. },
  30462. back: {
  30463. height: math.unit(4, "feet"),
  30464. weight: math.unit(50, "lb"),
  30465. name: "Back",
  30466. image: {
  30467. source: "./media/characters/alex-rabbit/back.svg",
  30468. extra: 502 / 460,
  30469. bottom: 18.9 / 521
  30470. }
  30471. },
  30472. },
  30473. [
  30474. {
  30475. name: "Normal",
  30476. height: math.unit(4, "feet"),
  30477. default: true
  30478. },
  30479. ]
  30480. ))
  30481. characterMakers.push(() => makeCharacter(
  30482. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30483. {
  30484. front: {
  30485. height: math.unit(1 + 3 / 12, "feet"),
  30486. weight: math.unit(80, "lb"),
  30487. name: "Front",
  30488. image: {
  30489. source: "./media/characters/zander-rose/front.svg",
  30490. extra: 916 / 797,
  30491. bottom: 17 / 933
  30492. }
  30493. },
  30494. back: {
  30495. height: math.unit(1 + 3 / 12, "feet"),
  30496. weight: math.unit(80, "lb"),
  30497. name: "Back",
  30498. image: {
  30499. source: "./media/characters/zander-rose/back.svg",
  30500. extra: 903 / 779,
  30501. bottom: 31 / 934
  30502. }
  30503. },
  30504. },
  30505. [
  30506. {
  30507. name: "Normal",
  30508. height: math.unit(1 + 3 / 12, "feet"),
  30509. default: true
  30510. },
  30511. ]
  30512. ))
  30513. characterMakers.push(() => makeCharacter(
  30514. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30515. {
  30516. anthro: {
  30517. height: math.unit(6, "feet"),
  30518. weight: math.unit(150, "lb"),
  30519. name: "Anthro",
  30520. image: {
  30521. source: "./media/characters/razz/anthro.svg",
  30522. extra: 1437 / 1343,
  30523. bottom: 48 / 1485
  30524. }
  30525. },
  30526. feral: {
  30527. height: math.unit(6, "feet"),
  30528. weight: math.unit(150, "lb"),
  30529. name: "Feral",
  30530. image: {
  30531. source: "./media/characters/razz/feral.svg",
  30532. extra: 2569 / 1385,
  30533. bottom: 95 / 2664
  30534. }
  30535. },
  30536. },
  30537. [
  30538. {
  30539. name: "Normal",
  30540. height: math.unit(6, "feet"),
  30541. default: true
  30542. },
  30543. ]
  30544. ))
  30545. characterMakers.push(() => makeCharacter(
  30546. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30547. {
  30548. front: {
  30549. height: math.unit(9 + 4 / 12, "feet"),
  30550. weight: math.unit(500, "lb"),
  30551. name: "Front",
  30552. image: {
  30553. source: "./media/characters/morrigan/front.svg",
  30554. extra: 2707 / 2579,
  30555. bottom: 156 / 2863
  30556. }
  30557. },
  30558. },
  30559. [
  30560. {
  30561. name: "Normal",
  30562. height: math.unit(9 + 4 / 12, "feet"),
  30563. default: true
  30564. },
  30565. ]
  30566. ))
  30567. characterMakers.push(() => makeCharacter(
  30568. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30569. {
  30570. front: {
  30571. height: math.unit(5, "stories"),
  30572. weight: math.unit(4000, "lb"),
  30573. name: "Front",
  30574. image: {
  30575. source: "./media/characters/jenene/front.svg",
  30576. extra: 1780 / 1710,
  30577. bottom: 57 / 1837
  30578. }
  30579. },
  30580. },
  30581. [
  30582. {
  30583. name: "Normal",
  30584. height: math.unit(5, "stories"),
  30585. default: true
  30586. },
  30587. ]
  30588. ))
  30589. characterMakers.push(() => makeCharacter(
  30590. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30591. {
  30592. taurSfw: {
  30593. height: math.unit(10, "meters"),
  30594. weight: math.unit(17500, "kg"),
  30595. name: "Taur",
  30596. image: {
  30597. source: "./media/characters/faey/taur-sfw.svg",
  30598. extra: 1200 / 968,
  30599. bottom: 41 / 1241
  30600. }
  30601. },
  30602. chestmaw: {
  30603. height: math.unit(2.01, "meters"),
  30604. name: "Chestmaw",
  30605. image: {
  30606. source: "./media/characters/faey/chestmaw.svg"
  30607. }
  30608. },
  30609. foot: {
  30610. height: math.unit(2.43, "meters"),
  30611. name: "Foot",
  30612. image: {
  30613. source: "./media/characters/faey/foot.svg"
  30614. }
  30615. },
  30616. jaws: {
  30617. height: math.unit(1.66, "meters"),
  30618. name: "Jaws",
  30619. image: {
  30620. source: "./media/characters/faey/jaws.svg"
  30621. }
  30622. },
  30623. tongues: {
  30624. height: math.unit(2.01, "meters"),
  30625. name: "Tongues",
  30626. image: {
  30627. source: "./media/characters/faey/tongues.svg"
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Small",
  30634. height: math.unit(10, "meters"),
  30635. default: true
  30636. },
  30637. {
  30638. name: "Big",
  30639. height: math.unit(500000, "km")
  30640. },
  30641. ]
  30642. ))
  30643. characterMakers.push(() => makeCharacter(
  30644. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30645. {
  30646. front: {
  30647. height: math.unit(7, "feet"),
  30648. weight: math.unit(275, "lb"),
  30649. name: "Front",
  30650. image: {
  30651. source: "./media/characters/roku/front.svg",
  30652. extra: 903 / 878,
  30653. bottom: 37 / 940
  30654. }
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "Normal",
  30660. height: math.unit(7, "feet"),
  30661. default: true
  30662. },
  30663. {
  30664. name: "Macro",
  30665. height: math.unit(500, "feet")
  30666. },
  30667. {
  30668. name: "Megamacro",
  30669. height: math.unit(200, "miles")
  30670. },
  30671. ]
  30672. ))
  30673. characterMakers.push(() => makeCharacter(
  30674. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30675. {
  30676. front: {
  30677. height: math.unit(6 + 2 / 12, "feet"),
  30678. weight: math.unit(150, "lb"),
  30679. name: "Front",
  30680. image: {
  30681. source: "./media/characters/lira/front.svg",
  30682. extra: 1727 / 1605,
  30683. bottom: 26 / 1753
  30684. }
  30685. },
  30686. back: {
  30687. height: math.unit(6 + 2 / 12, "feet"),
  30688. weight: math.unit(150, "lb"),
  30689. name: "Back",
  30690. image: {
  30691. source: "./media/characters/lira/back.svg",
  30692. extra: 1713/1621,
  30693. bottom: 20/1733
  30694. }
  30695. },
  30696. hand: {
  30697. height: math.unit(0.75, "feet"),
  30698. name: "Hand",
  30699. image: {
  30700. source: "./media/characters/lira/hand.svg"
  30701. }
  30702. },
  30703. maw: {
  30704. height: math.unit(0.65, "feet"),
  30705. name: "Maw",
  30706. image: {
  30707. source: "./media/characters/lira/maw.svg"
  30708. }
  30709. },
  30710. pawDigi: {
  30711. height: math.unit(1.6, "feet"),
  30712. name: "Paw Digi",
  30713. image: {
  30714. source: "./media/characters/lira/paw-digi.svg"
  30715. }
  30716. },
  30717. pawPlanti: {
  30718. height: math.unit(1.4, "feet"),
  30719. name: "Paw Planti",
  30720. image: {
  30721. source: "./media/characters/lira/paw-planti.svg"
  30722. }
  30723. },
  30724. },
  30725. [
  30726. {
  30727. name: "Normal",
  30728. height: math.unit(6 + 2 / 12, "feet"),
  30729. default: true
  30730. },
  30731. {
  30732. name: "Macro",
  30733. height: math.unit(100, "feet")
  30734. },
  30735. {
  30736. name: "Macro²",
  30737. height: math.unit(1600, "feet")
  30738. },
  30739. {
  30740. name: "Planetary",
  30741. height: math.unit(20, "earths")
  30742. },
  30743. ]
  30744. ))
  30745. characterMakers.push(() => makeCharacter(
  30746. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30747. {
  30748. front: {
  30749. height: math.unit(6, "feet"),
  30750. weight: math.unit(150, "lb"),
  30751. name: "Front",
  30752. image: {
  30753. source: "./media/characters/hadjet/front.svg",
  30754. extra: 1480 / 1346,
  30755. bottom: 26 / 1506
  30756. }
  30757. },
  30758. frontNsfw: {
  30759. height: math.unit(6, "feet"),
  30760. weight: math.unit(150, "lb"),
  30761. name: "Front (NSFW)",
  30762. image: {
  30763. source: "./media/characters/hadjet/front-nsfw.svg",
  30764. extra: 1440 / 1358,
  30765. bottom: 52 / 1492
  30766. }
  30767. },
  30768. },
  30769. [
  30770. {
  30771. name: "Macro",
  30772. height: math.unit(10, "stories"),
  30773. default: true
  30774. },
  30775. {
  30776. name: "Megamacro",
  30777. height: math.unit(1.5, "miles")
  30778. },
  30779. {
  30780. name: "Megamacro+",
  30781. height: math.unit(5, "miles")
  30782. },
  30783. ]
  30784. ))
  30785. characterMakers.push(() => makeCharacter(
  30786. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30787. {
  30788. side: {
  30789. height: math.unit(106, "feet"),
  30790. weight: math.unit(500, "tonnes"),
  30791. name: "Side",
  30792. image: {
  30793. source: "./media/characters/kodran/side.svg",
  30794. extra: 553 / 480,
  30795. bottom: 33 / 586
  30796. }
  30797. },
  30798. front: {
  30799. height: math.unit(132, "feet"),
  30800. weight: math.unit(500, "tonnes"),
  30801. name: "Front",
  30802. image: {
  30803. source: "./media/characters/kodran/front.svg",
  30804. extra: 667 / 643,
  30805. bottom: 42 / 709
  30806. }
  30807. },
  30808. flying: {
  30809. height: math.unit(350, "feet"),
  30810. weight: math.unit(500, "tonnes"),
  30811. name: "Flying",
  30812. image: {
  30813. source: "./media/characters/kodran/flying.svg"
  30814. }
  30815. },
  30816. foot: {
  30817. height: math.unit(33, "feet"),
  30818. name: "Foot",
  30819. image: {
  30820. source: "./media/characters/kodran/foot.svg"
  30821. }
  30822. },
  30823. footFront: {
  30824. height: math.unit(19, "feet"),
  30825. name: "Foot (Front)",
  30826. image: {
  30827. source: "./media/characters/kodran/foot-front.svg",
  30828. extra: 261 / 261,
  30829. bottom: 91 / 352
  30830. }
  30831. },
  30832. headFront: {
  30833. height: math.unit(53, "feet"),
  30834. name: "Head (Front)",
  30835. image: {
  30836. source: "./media/characters/kodran/head-front.svg"
  30837. }
  30838. },
  30839. headSide: {
  30840. height: math.unit(65, "feet"),
  30841. name: "Head (Side)",
  30842. image: {
  30843. source: "./media/characters/kodran/head-side.svg"
  30844. }
  30845. },
  30846. throat: {
  30847. height: math.unit(79, "feet"),
  30848. name: "Throat",
  30849. image: {
  30850. source: "./media/characters/kodran/throat.svg"
  30851. }
  30852. },
  30853. },
  30854. [
  30855. {
  30856. name: "Large",
  30857. height: math.unit(106, "feet"),
  30858. default: true
  30859. },
  30860. ]
  30861. ))
  30862. characterMakers.push(() => makeCharacter(
  30863. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30864. {
  30865. side: {
  30866. height: math.unit(11, "feet"),
  30867. weight: math.unit(150, "lb"),
  30868. name: "Side",
  30869. image: {
  30870. source: "./media/characters/pyxaron/side.svg",
  30871. extra: 305 / 195,
  30872. bottom: 17 / 322
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Normal",
  30879. height: math.unit(11, "feet"),
  30880. default: true
  30881. },
  30882. ]
  30883. ))
  30884. characterMakers.push(() => makeCharacter(
  30885. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30886. {
  30887. front: {
  30888. height: math.unit(6, "feet"),
  30889. weight: math.unit(150, "lb"),
  30890. name: "Front",
  30891. image: {
  30892. source: "./media/characters/meep/front.svg",
  30893. extra: 88 / 80,
  30894. bottom: 6 / 94
  30895. }
  30896. },
  30897. },
  30898. [
  30899. {
  30900. name: "Fun Sized",
  30901. height: math.unit(2, "inches"),
  30902. default: true
  30903. },
  30904. {
  30905. name: "Friend Sized",
  30906. height: math.unit(8, "inches")
  30907. },
  30908. ]
  30909. ))
  30910. characterMakers.push(() => makeCharacter(
  30911. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30912. {
  30913. front: {
  30914. height: math.unit(15, "feet"),
  30915. weight: math.unit(2500, "lb"),
  30916. name: "Front",
  30917. image: {
  30918. source: "./media/characters/holly-rabbit/front.svg",
  30919. extra: 1433 / 1233,
  30920. bottom: 125 / 1558
  30921. }
  30922. },
  30923. dick: {
  30924. height: math.unit(4.6, "feet"),
  30925. name: "Dick",
  30926. image: {
  30927. source: "./media/characters/holly-rabbit/dick.svg"
  30928. }
  30929. },
  30930. },
  30931. [
  30932. {
  30933. name: "Normal",
  30934. height: math.unit(15, "feet"),
  30935. default: true
  30936. },
  30937. {
  30938. name: "Macro",
  30939. height: math.unit(250, "feet")
  30940. },
  30941. {
  30942. name: "Macro+",
  30943. height: math.unit(2500, "feet")
  30944. },
  30945. ]
  30946. ))
  30947. characterMakers.push(() => makeCharacter(
  30948. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30949. {
  30950. front: {
  30951. height: math.unit(3.02, "meters"),
  30952. weight: math.unit(500, "kg"),
  30953. name: "Front",
  30954. image: {
  30955. source: "./media/characters/drena/front.svg",
  30956. extra: 282 / 243,
  30957. bottom: 8 / 290
  30958. }
  30959. },
  30960. side: {
  30961. height: math.unit(3.02, "meters"),
  30962. weight: math.unit(500, "kg"),
  30963. name: "Side",
  30964. image: {
  30965. source: "./media/characters/drena/side.svg",
  30966. extra: 280 / 245,
  30967. bottom: 10 / 290
  30968. }
  30969. },
  30970. back: {
  30971. height: math.unit(3.02, "meters"),
  30972. weight: math.unit(500, "kg"),
  30973. name: "Back",
  30974. image: {
  30975. source: "./media/characters/drena/back.svg",
  30976. extra: 278 / 243,
  30977. bottom: 2 / 280
  30978. }
  30979. },
  30980. foot: {
  30981. height: math.unit(0.75, "meters"),
  30982. name: "Foot",
  30983. image: {
  30984. source: "./media/characters/drena/foot.svg"
  30985. }
  30986. },
  30987. maw: {
  30988. height: math.unit(0.82, "meters"),
  30989. name: "Maw",
  30990. image: {
  30991. source: "./media/characters/drena/maw.svg"
  30992. }
  30993. },
  30994. eating: {
  30995. height: math.unit(0.75, "meters"),
  30996. name: "Eating",
  30997. image: {
  30998. source: "./media/characters/drena/eating.svg"
  30999. }
  31000. },
  31001. rump: {
  31002. height: math.unit(0.93, "meters"),
  31003. name: "Rump",
  31004. image: {
  31005. source: "./media/characters/drena/rump.svg"
  31006. }
  31007. },
  31008. },
  31009. [
  31010. {
  31011. name: "Normal",
  31012. height: math.unit(3.02, "meters"),
  31013. default: true
  31014. },
  31015. ]
  31016. ))
  31017. characterMakers.push(() => makeCharacter(
  31018. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31019. {
  31020. front: {
  31021. height: math.unit(6 + 4 / 12, "feet"),
  31022. weight: math.unit(250, "lb"),
  31023. name: "Front",
  31024. image: {
  31025. source: "./media/characters/remmyzilla/front.svg",
  31026. extra: 4033 / 3588,
  31027. bottom: 123 / 4156
  31028. }
  31029. },
  31030. back: {
  31031. height: math.unit(6 + 4 / 12, "feet"),
  31032. weight: math.unit(250, "lb"),
  31033. name: "Back",
  31034. image: {
  31035. source: "./media/characters/remmyzilla/back.svg",
  31036. extra: 1696/1602,
  31037. bottom: 63/1759
  31038. }
  31039. },
  31040. paw: {
  31041. height: math.unit(1.73, "feet"),
  31042. name: "Paw",
  31043. image: {
  31044. source: "./media/characters/remmyzilla/paw.svg"
  31045. },
  31046. extraAttributes: {
  31047. "toeSize": {
  31048. name: "Toe Size",
  31049. power: 2,
  31050. type: "area",
  31051. base: math.unit(0.0035, "m^2")
  31052. },
  31053. "padSize": {
  31054. name: "Pad Size",
  31055. power: 2,
  31056. type: "area",
  31057. base: math.unit(0.015, "m^2")
  31058. },
  31059. "pawsize": {
  31060. name: "Paw Size",
  31061. power: 2,
  31062. type: "area",
  31063. base: math.unit(0.072, "m^2")
  31064. },
  31065. }
  31066. },
  31067. maw: {
  31068. height: math.unit(1.73, "feet"),
  31069. name: "Maw",
  31070. image: {
  31071. source: "./media/characters/remmyzilla/maw.svg"
  31072. }
  31073. },
  31074. },
  31075. [
  31076. {
  31077. name: "Normal",
  31078. height: math.unit(6 + 4 / 12, "feet")
  31079. },
  31080. {
  31081. name: "Minimacro",
  31082. height: math.unit(12 + 8 / 12, "feet")
  31083. },
  31084. {
  31085. name: "Normal",
  31086. height: math.unit(640, "feet"),
  31087. default: true
  31088. },
  31089. {
  31090. name: "Megamacro",
  31091. height: math.unit(6400, "feet")
  31092. },
  31093. {
  31094. name: "Gigamacro",
  31095. height: math.unit(64000, "miles")
  31096. },
  31097. ]
  31098. ))
  31099. characterMakers.push(() => makeCharacter(
  31100. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31101. {
  31102. front: {
  31103. height: math.unit(2.5, "meters"),
  31104. weight: math.unit(300, "lb"),
  31105. name: "Front",
  31106. image: {
  31107. source: "./media/characters/lawrence/front.svg",
  31108. extra: 357 / 335,
  31109. bottom: 30 / 387
  31110. }
  31111. },
  31112. back: {
  31113. height: math.unit(2.5, "meters"),
  31114. weight: math.unit(300, "lb"),
  31115. name: "Back",
  31116. image: {
  31117. source: "./media/characters/lawrence/back.svg",
  31118. extra: 357 / 338,
  31119. bottom: 16 / 373
  31120. }
  31121. },
  31122. head: {
  31123. height: math.unit(0.9, "meter"),
  31124. name: "Head",
  31125. image: {
  31126. source: "./media/characters/lawrence/head.svg"
  31127. }
  31128. },
  31129. maw: {
  31130. height: math.unit(0.7, "meter"),
  31131. name: "Maw",
  31132. image: {
  31133. source: "./media/characters/lawrence/maw.svg"
  31134. }
  31135. },
  31136. footBottom: {
  31137. height: math.unit(0.5, "meter"),
  31138. name: "Foot (Bottom)",
  31139. image: {
  31140. source: "./media/characters/lawrence/foot-bottom.svg"
  31141. }
  31142. },
  31143. footTop: {
  31144. height: math.unit(0.5, "meter"),
  31145. name: "Foot (Top)",
  31146. image: {
  31147. source: "./media/characters/lawrence/foot-top.svg"
  31148. }
  31149. },
  31150. },
  31151. [
  31152. {
  31153. name: "Normal",
  31154. height: math.unit(2.5, "meters"),
  31155. default: true
  31156. },
  31157. {
  31158. name: "Macro",
  31159. height: math.unit(95, "meters")
  31160. },
  31161. {
  31162. name: "Megamacro",
  31163. height: math.unit(150, "km")
  31164. },
  31165. ]
  31166. ))
  31167. characterMakers.push(() => makeCharacter(
  31168. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31169. {
  31170. front: {
  31171. height: math.unit(4.2, "meters"),
  31172. preyCapacity: math.unit(50, "m^3"),
  31173. weight: math.unit(30, "tonnes"),
  31174. name: "Front",
  31175. image: {
  31176. source: "./media/characters/sydney/front.svg",
  31177. extra: 1177/1129,
  31178. bottom: 197/1374
  31179. },
  31180. extraAttributes: {
  31181. "length": {
  31182. name: "Length",
  31183. power: 1,
  31184. type: "length",
  31185. base: math.unit(21, "meters")
  31186. },
  31187. }
  31188. },
  31189. },
  31190. [
  31191. {
  31192. name: "Normal",
  31193. height: math.unit(4.2, "meters"),
  31194. default: true
  31195. },
  31196. ]
  31197. ))
  31198. characterMakers.push(() => makeCharacter(
  31199. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31200. {
  31201. back: {
  31202. height: math.unit(201, "feet"),
  31203. name: "Back",
  31204. image: {
  31205. source: "./media/characters/jessica/back.svg",
  31206. extra: 273 / 259,
  31207. bottom: 7 / 280
  31208. }
  31209. },
  31210. },
  31211. [
  31212. {
  31213. name: "Normal",
  31214. height: math.unit(201, "feet"),
  31215. default: true
  31216. },
  31217. {
  31218. name: "Megamacro",
  31219. height: math.unit(8, "miles")
  31220. },
  31221. ]
  31222. ))
  31223. characterMakers.push(() => makeCharacter(
  31224. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31225. {
  31226. side: {
  31227. height: math.unit(5.6, "m"),
  31228. weight: math.unit(8000, "kg"),
  31229. name: "Side",
  31230. image: {
  31231. source: "./media/characters/victoria/side.svg",
  31232. extra: 1542/1229,
  31233. bottom: 124/1666
  31234. }
  31235. },
  31236. maw: {
  31237. height: math.unit(7.14, "feet"),
  31238. name: "Maw",
  31239. image: {
  31240. source: "./media/characters/victoria/maw.svg"
  31241. }
  31242. },
  31243. },
  31244. [
  31245. {
  31246. name: "Normal",
  31247. height: math.unit(5.6, "m"),
  31248. default: true
  31249. },
  31250. ]
  31251. ))
  31252. characterMakers.push(() => makeCharacter(
  31253. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31254. {
  31255. front: {
  31256. height: math.unit(5 + 6 / 12, "feet"),
  31257. name: "Front",
  31258. image: {
  31259. source: "./media/characters/cat/front.svg",
  31260. extra: 1449/1295,
  31261. bottom: 34/1483
  31262. },
  31263. form: "cat",
  31264. default: true
  31265. },
  31266. back: {
  31267. height: math.unit(5 + 6 / 12, "feet"),
  31268. name: "Back",
  31269. image: {
  31270. source: "./media/characters/cat/back.svg",
  31271. extra: 1466/1301,
  31272. bottom: 19/1485
  31273. },
  31274. form: "cat"
  31275. },
  31276. taur: {
  31277. height: math.unit(7, "feet"),
  31278. name: "Taur",
  31279. image: {
  31280. source: "./media/characters/cat/taur.svg",
  31281. extra: 1389/1233,
  31282. bottom: 83/1472
  31283. },
  31284. form: "taur",
  31285. default: true
  31286. },
  31287. lucarioFront: {
  31288. height: math.unit(4, "feet"),
  31289. name: "Lucario (Front)",
  31290. image: {
  31291. source: "./media/characters/cat/lucario-front.svg",
  31292. extra: 1149/1019,
  31293. bottom: 84/1233
  31294. },
  31295. form: "lucario",
  31296. default: true
  31297. },
  31298. lucarioBack: {
  31299. height: math.unit(4, "feet"),
  31300. name: "Lucario (Back)",
  31301. image: {
  31302. source: "./media/characters/cat/lucario-back.svg",
  31303. extra: 1190/1059,
  31304. bottom: 33/1223
  31305. },
  31306. form: "lucario"
  31307. },
  31308. megaLucario: {
  31309. height: math.unit(4, "feet"),
  31310. name: "Mega Lucario",
  31311. image: {
  31312. source: "./media/characters/cat/mega-lucario.svg",
  31313. extra: 1515 / 1319,
  31314. bottom: 63 / 1578
  31315. },
  31316. form: "lucario"
  31317. },
  31318. nickit: {
  31319. height: math.unit(2, "feet"),
  31320. name: "Nickit",
  31321. image: {
  31322. source: "./media/characters/cat/nickit.svg",
  31323. extra: 1980 / 1585,
  31324. bottom: 102 / 2082
  31325. },
  31326. form: "nickit",
  31327. default: true
  31328. },
  31329. lopunnyFront: {
  31330. height: math.unit(5, "feet"),
  31331. name: "Lopunny (Front)",
  31332. image: {
  31333. source: "./media/characters/cat/lopunny-front.svg",
  31334. extra: 1782 / 1469,
  31335. bottom: 38 / 1820
  31336. },
  31337. form: "lopunny",
  31338. default: true
  31339. },
  31340. lopunnyBack: {
  31341. height: math.unit(5, "feet"),
  31342. name: "Lopunny (Back)",
  31343. image: {
  31344. source: "./media/characters/cat/lopunny-back.svg",
  31345. extra: 1660 / 1490,
  31346. bottom: 25 / 1685
  31347. },
  31348. form: "lopunny"
  31349. },
  31350. },
  31351. [
  31352. {
  31353. name: "Really small",
  31354. height: math.unit(1, "nm")
  31355. },
  31356. {
  31357. name: "Micro",
  31358. height: math.unit(5, "inches")
  31359. },
  31360. {
  31361. name: "Normal",
  31362. height: math.unit(5 + 6 / 12, "feet"),
  31363. default: true
  31364. },
  31365. {
  31366. name: "Macro",
  31367. height: math.unit(50, "feet")
  31368. },
  31369. {
  31370. name: "Macro+",
  31371. height: math.unit(150, "feet")
  31372. },
  31373. {
  31374. name: "Megamacro",
  31375. height: math.unit(100, "miles")
  31376. },
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31381. {
  31382. front: {
  31383. height: math.unit(63.4, "meters"),
  31384. weight: math.unit(3.28349e+6, "kilograms"),
  31385. name: "Front",
  31386. image: {
  31387. source: "./media/characters/kirina-violet/front.svg",
  31388. extra: 2812 / 2725,
  31389. bottom: 0 / 2812
  31390. }
  31391. },
  31392. back: {
  31393. height: math.unit(63.4, "meters"),
  31394. weight: math.unit(3.28349e+6, "kilograms"),
  31395. name: "Back",
  31396. image: {
  31397. source: "./media/characters/kirina-violet/back.svg",
  31398. extra: 2812 / 2725,
  31399. bottom: 0 / 2812
  31400. }
  31401. },
  31402. mouth: {
  31403. height: math.unit(4.35, "meters"),
  31404. name: "Mouth",
  31405. image: {
  31406. source: "./media/characters/kirina-violet/mouth.svg"
  31407. }
  31408. },
  31409. paw: {
  31410. height: math.unit(5.6, "meters"),
  31411. name: "Paw",
  31412. image: {
  31413. source: "./media/characters/kirina-violet/paw.svg"
  31414. }
  31415. },
  31416. tail: {
  31417. height: math.unit(18, "meters"),
  31418. name: "Tail",
  31419. image: {
  31420. source: "./media/characters/kirina-violet/tail.svg"
  31421. }
  31422. },
  31423. },
  31424. [
  31425. {
  31426. name: "Macro",
  31427. height: math.unit(63.4, "meters"),
  31428. default: true
  31429. },
  31430. ]
  31431. ))
  31432. characterMakers.push(() => makeCharacter(
  31433. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31434. {
  31435. front: {
  31436. height: math.unit(75, "feet"),
  31437. name: "Front",
  31438. image: {
  31439. source: "./media/characters/cat-gigachu/front.svg",
  31440. extra: 1239/1027,
  31441. bottom: 32/1271
  31442. }
  31443. },
  31444. back: {
  31445. height: math.unit(75, "feet"),
  31446. name: "Back",
  31447. image: {
  31448. source: "./media/characters/cat-gigachu/back.svg",
  31449. extra: 1229/1030,
  31450. bottom: 9/1238
  31451. }
  31452. },
  31453. },
  31454. [
  31455. {
  31456. name: "Dynamax",
  31457. height: math.unit(75, "feet"),
  31458. default: true
  31459. },
  31460. ]
  31461. ))
  31462. characterMakers.push(() => makeCharacter(
  31463. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31464. {
  31465. front: {
  31466. height: math.unit(6, "feet"),
  31467. weight: math.unit(150, "lb"),
  31468. name: "Front",
  31469. image: {
  31470. source: "./media/characters/sfaiyan/front.svg",
  31471. extra: 999 / 978,
  31472. bottom: 5 / 1004
  31473. }
  31474. },
  31475. },
  31476. [
  31477. {
  31478. name: "Normal",
  31479. height: math.unit(1.82, "meters")
  31480. },
  31481. {
  31482. name: "Giant",
  31483. height: math.unit(2.27, "km"),
  31484. default: true
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(179, "cm"),
  31493. weight: math.unit(100, "kg"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/raunehkeli/front.svg",
  31497. extra: 1934 / 1926,
  31498. bottom: 0 / 1934
  31499. }
  31500. },
  31501. },
  31502. [
  31503. {
  31504. name: "Normal",
  31505. height: math.unit(179, "cm")
  31506. },
  31507. {
  31508. name: "Maximum",
  31509. height: math.unit(575, "meters"),
  31510. default: true
  31511. },
  31512. ]
  31513. ))
  31514. characterMakers.push(() => makeCharacter(
  31515. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31516. {
  31517. front: {
  31518. height: math.unit(6, "feet"),
  31519. weight: math.unit(150, "lb"),
  31520. name: "Front",
  31521. image: {
  31522. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31523. extra: 2625 / 2518,
  31524. bottom: 60 / 2685
  31525. }
  31526. },
  31527. },
  31528. [
  31529. {
  31530. name: "Normal",
  31531. height: math.unit(6 + 2 / 12, "feet")
  31532. },
  31533. {
  31534. name: "Macro",
  31535. height: math.unit(1180, "feet"),
  31536. default: true
  31537. },
  31538. ]
  31539. ))
  31540. characterMakers.push(() => makeCharacter(
  31541. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31542. {
  31543. front: {
  31544. height: math.unit(5 + 6 / 12, "feet"),
  31545. weight: math.unit(108, "lb"),
  31546. name: "Front",
  31547. image: {
  31548. source: "./media/characters/lilith-zott/front.svg",
  31549. extra: 2510 / 2238,
  31550. bottom: 100 / 2610
  31551. }
  31552. },
  31553. frontDressed: {
  31554. height: math.unit(5 + 6 / 12, "feet"),
  31555. weight: math.unit(108, "lb"),
  31556. name: "Front (Dressed)",
  31557. image: {
  31558. source: "./media/characters/lilith-zott/front-dressed.svg",
  31559. extra: 2510 / 2238,
  31560. bottom: 100 / 2610
  31561. }
  31562. },
  31563. },
  31564. [
  31565. {
  31566. name: "Normal",
  31567. height: math.unit(5 + 6 / 12, "feet")
  31568. },
  31569. {
  31570. name: "Macro",
  31571. height: math.unit(1030, "feet"),
  31572. default: true
  31573. },
  31574. ]
  31575. ))
  31576. characterMakers.push(() => makeCharacter(
  31577. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31578. {
  31579. front: {
  31580. height: math.unit(6, "feet"),
  31581. weight: math.unit(150, "lb"),
  31582. name: "Front",
  31583. image: {
  31584. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31585. extra: 2567 / 2435,
  31586. bottom: 39 / 2606
  31587. }
  31588. },
  31589. frontSuper: {
  31590. height: math.unit(6, "feet"),
  31591. name: "Front (Super)",
  31592. image: {
  31593. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31594. extra: 2567 / 2435,
  31595. bottom: 39 / 2606
  31596. }
  31597. },
  31598. },
  31599. [
  31600. {
  31601. name: "Normal",
  31602. height: math.unit(5 + 10 / 12, "feet")
  31603. },
  31604. {
  31605. name: "Macro",
  31606. height: math.unit(1100, "feet"),
  31607. default: true
  31608. },
  31609. ]
  31610. ))
  31611. characterMakers.push(() => makeCharacter(
  31612. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31613. {
  31614. front: {
  31615. height: math.unit(100, "miles"),
  31616. name: "Front",
  31617. image: {
  31618. source: "./media/characters/sona/front.svg",
  31619. extra: 2433 / 2201,
  31620. bottom: 53 / 2486
  31621. }
  31622. },
  31623. foot: {
  31624. height: math.unit(16.1, "miles"),
  31625. name: "Foot",
  31626. image: {
  31627. source: "./media/characters/sona/foot.svg"
  31628. }
  31629. },
  31630. },
  31631. [
  31632. {
  31633. name: "Macro",
  31634. height: math.unit(100, "miles"),
  31635. default: true
  31636. },
  31637. ]
  31638. ))
  31639. characterMakers.push(() => makeCharacter(
  31640. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31641. {
  31642. front: {
  31643. height: math.unit(6, "feet"),
  31644. weight: math.unit(150, "lb"),
  31645. name: "Front",
  31646. image: {
  31647. source: "./media/characters/bailey/front.svg",
  31648. extra: 1778 / 1724,
  31649. bottom: 30 / 1808
  31650. }
  31651. },
  31652. },
  31653. [
  31654. {
  31655. name: "Micro",
  31656. height: math.unit(4, "inches")
  31657. },
  31658. {
  31659. name: "Normal",
  31660. height: math.unit(5 + 5 / 12, "feet"),
  31661. default: true
  31662. },
  31663. {
  31664. name: "Macro",
  31665. height: math.unit(250, "feet")
  31666. },
  31667. {
  31668. name: "Megamacro",
  31669. height: math.unit(100, "miles")
  31670. },
  31671. ]
  31672. ))
  31673. characterMakers.push(() => makeCharacter(
  31674. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31675. {
  31676. front: {
  31677. height: math.unit(5 + 2 / 12, "feet"),
  31678. weight: math.unit(120, "lb"),
  31679. name: "Front",
  31680. image: {
  31681. source: "./media/characters/snaps/front.svg",
  31682. extra: 2370 / 2177,
  31683. bottom: 48 / 2418
  31684. }
  31685. },
  31686. back: {
  31687. height: math.unit(5 + 2 / 12, "feet"),
  31688. weight: math.unit(120, "lb"),
  31689. name: "Back",
  31690. image: {
  31691. source: "./media/characters/snaps/back.svg",
  31692. extra: 2408 / 2258,
  31693. bottom: 15 / 2423
  31694. }
  31695. },
  31696. },
  31697. [
  31698. {
  31699. name: "Micro",
  31700. height: math.unit(9, "inches")
  31701. },
  31702. {
  31703. name: "Normal",
  31704. height: math.unit(5 + 2 / 12, "feet"),
  31705. default: true
  31706. },
  31707. {
  31708. name: "Mini Macro",
  31709. height: math.unit(10, "feet")
  31710. },
  31711. ]
  31712. ))
  31713. characterMakers.push(() => makeCharacter(
  31714. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31715. {
  31716. front: {
  31717. height: math.unit(1.8, "meters"),
  31718. weight: math.unit(85, "kg"),
  31719. name: "Front",
  31720. image: {
  31721. source: "./media/characters/azteck/front.svg",
  31722. extra: 2815 / 2625,
  31723. bottom: 89 / 2904
  31724. }
  31725. },
  31726. back: {
  31727. height: math.unit(1.8, "meters"),
  31728. weight: math.unit(85, "kg"),
  31729. name: "Back",
  31730. image: {
  31731. source: "./media/characters/azteck/back.svg",
  31732. extra: 2856 / 2648,
  31733. bottom: 85 / 2941
  31734. }
  31735. },
  31736. frontDressed: {
  31737. height: math.unit(1.8, "meters"),
  31738. weight: math.unit(85, "kg"),
  31739. name: "Front (Dressed)",
  31740. image: {
  31741. source: "./media/characters/azteck/front-dressed.svg",
  31742. extra: 2147 / 2003,
  31743. bottom: 68 / 2215
  31744. }
  31745. },
  31746. head: {
  31747. height: math.unit(0.47, "meters"),
  31748. weight: math.unit(85, "kg"),
  31749. name: "Head",
  31750. image: {
  31751. source: "./media/characters/azteck/head.svg"
  31752. }
  31753. },
  31754. },
  31755. [
  31756. {
  31757. name: "Bite sized",
  31758. height: math.unit(16, "cm")
  31759. },
  31760. {
  31761. name: "Normal",
  31762. height: math.unit(1.8, "meters"),
  31763. default: true
  31764. },
  31765. ]
  31766. ))
  31767. characterMakers.push(() => makeCharacter(
  31768. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31769. {
  31770. front: {
  31771. height: math.unit(6, "feet"),
  31772. weight: math.unit(150, "lb"),
  31773. name: "Front",
  31774. image: {
  31775. source: "./media/characters/pidge/front.svg",
  31776. extra: 1936/1820,
  31777. bottom: 0/1936
  31778. }
  31779. },
  31780. back: {
  31781. height: math.unit(6, "feet"),
  31782. weight: math.unit(150, "lb"),
  31783. name: "Back",
  31784. image: {
  31785. source: "./media/characters/pidge/back.svg",
  31786. extra: 1938/1843,
  31787. bottom: 0/1938
  31788. }
  31789. },
  31790. casual: {
  31791. height: math.unit(6, "feet"),
  31792. weight: math.unit(150, "lb"),
  31793. name: "Casual",
  31794. image: {
  31795. source: "./media/characters/pidge/casual.svg",
  31796. extra: 1936/1820,
  31797. bottom: 0/1936
  31798. }
  31799. },
  31800. tech: {
  31801. height: math.unit(6, "feet"),
  31802. weight: math.unit(150, "lb"),
  31803. name: "Tech",
  31804. image: {
  31805. source: "./media/characters/pidge/tech.svg",
  31806. extra: 1802/1682,
  31807. bottom: 0/1802
  31808. }
  31809. },
  31810. head: {
  31811. height: math.unit(1.61, "feet"),
  31812. name: "Head",
  31813. image: {
  31814. source: "./media/characters/pidge/head.svg"
  31815. }
  31816. },
  31817. collar: {
  31818. height: math.unit(0.82, "feet"),
  31819. name: "Collar",
  31820. image: {
  31821. source: "./media/characters/pidge/collar.svg"
  31822. }
  31823. },
  31824. },
  31825. [
  31826. {
  31827. name: "Macro",
  31828. height: math.unit(2, "mile"),
  31829. default: true
  31830. },
  31831. {
  31832. name: "PUPPY",
  31833. height: math.unit(20, "miles")
  31834. },
  31835. ]
  31836. ))
  31837. characterMakers.push(() => makeCharacter(
  31838. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31839. {
  31840. front: {
  31841. height: math.unit(6, "feet"),
  31842. weight: math.unit(150, "lb"),
  31843. name: "Front",
  31844. image: {
  31845. source: "./media/characters/en/front.svg",
  31846. extra: 1697 / 1563,
  31847. bottom: 103 / 1800
  31848. }
  31849. },
  31850. back: {
  31851. height: math.unit(6, "feet"),
  31852. weight: math.unit(150, "lb"),
  31853. name: "Back",
  31854. image: {
  31855. source: "./media/characters/en/back.svg",
  31856. extra: 1700 / 1570,
  31857. bottom: 51 / 1751
  31858. }
  31859. },
  31860. frontDressed: {
  31861. height: math.unit(6, "feet"),
  31862. weight: math.unit(150, "lb"),
  31863. name: "Front (Dressed)",
  31864. image: {
  31865. source: "./media/characters/en/front-dressed.svg",
  31866. extra: 1697 / 1563,
  31867. bottom: 103 / 1800
  31868. }
  31869. },
  31870. backDressed: {
  31871. height: math.unit(6, "feet"),
  31872. weight: math.unit(150, "lb"),
  31873. name: "Back (Dressed)",
  31874. image: {
  31875. source: "./media/characters/en/back-dressed.svg",
  31876. extra: 1700 / 1570,
  31877. bottom: 51 / 1751
  31878. }
  31879. },
  31880. },
  31881. [
  31882. {
  31883. name: "Macro",
  31884. height: math.unit(210, "feet"),
  31885. default: true
  31886. },
  31887. ]
  31888. ))
  31889. characterMakers.push(() => makeCharacter(
  31890. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31891. {
  31892. front: {
  31893. height: math.unit(6, "feet"),
  31894. weight: math.unit(150, "lb"),
  31895. name: "Front",
  31896. image: {
  31897. source: "./media/characters/haze-orris/front.svg",
  31898. extra: 3975 / 3525,
  31899. bottom: 137 / 4112
  31900. }
  31901. },
  31902. },
  31903. [
  31904. {
  31905. name: "Micro",
  31906. height: math.unit(150, "mm"),
  31907. default: true
  31908. },
  31909. ]
  31910. ))
  31911. characterMakers.push(() => makeCharacter(
  31912. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31913. {
  31914. front: {
  31915. height: math.unit(6, "feet"),
  31916. weight: math.unit(150, "lb"),
  31917. name: "Front",
  31918. image: {
  31919. source: "./media/characters/casselene-yaro/front.svg",
  31920. extra: 4721 / 4541,
  31921. bottom: 82 / 4803
  31922. }
  31923. },
  31924. back: {
  31925. height: math.unit(6, "feet"),
  31926. weight: math.unit(150, "lb"),
  31927. name: "Back",
  31928. image: {
  31929. source: "./media/characters/casselene-yaro/back.svg",
  31930. extra: 4569 / 4377,
  31931. bottom: 69 / 4638
  31932. }
  31933. },
  31934. dressed: {
  31935. height: math.unit(6, "feet"),
  31936. weight: math.unit(150, "lb"),
  31937. name: "Dressed",
  31938. image: {
  31939. source: "./media/characters/casselene-yaro/dressed.svg",
  31940. extra: 4721 / 4541,
  31941. bottom: 82 / 4803
  31942. }
  31943. },
  31944. maw: {
  31945. height: math.unit(1, "feet"),
  31946. name: "Maw",
  31947. image: {
  31948. source: "./media/characters/casselene-yaro/maw.svg"
  31949. }
  31950. },
  31951. },
  31952. [
  31953. {
  31954. name: "Macro",
  31955. height: math.unit(190, "feet"),
  31956. default: true
  31957. },
  31958. ]
  31959. ))
  31960. characterMakers.push(() => makeCharacter(
  31961. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  31962. {
  31963. front: {
  31964. height: math.unit(10, "feet"),
  31965. weight: math.unit(15015, "lb"),
  31966. name: "Front",
  31967. image: {
  31968. source: "./media/characters/platine/front.svg",
  31969. extra: 1741/1650,
  31970. bottom: 84/1825
  31971. }
  31972. },
  31973. side: {
  31974. height: math.unit(10, "feet"),
  31975. weight: math.unit(15015, "lb"),
  31976. name: "Side",
  31977. image: {
  31978. source: "./media/characters/platine/side.svg",
  31979. extra: 1790/1705,
  31980. bottom: 29/1819
  31981. }
  31982. },
  31983. },
  31984. [
  31985. {
  31986. name: "Normal",
  31987. height: math.unit(10, "feet"),
  31988. default: true
  31989. },
  31990. {
  31991. name: "Macro",
  31992. height: math.unit(100, "feet")
  31993. },
  31994. {
  31995. name: "Megamacro",
  31996. height: math.unit(1000, "feet")
  31997. },
  31998. ]
  31999. ))
  32000. characterMakers.push(() => makeCharacter(
  32001. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32002. {
  32003. front: {
  32004. height: math.unit(15 + 5 / 12, "feet"),
  32005. weight: math.unit(4600, "lb"),
  32006. name: "Front",
  32007. image: {
  32008. source: "./media/characters/neapolitan-ananassa/front.svg",
  32009. extra: 2903 / 2736,
  32010. bottom: 0 / 2903
  32011. }
  32012. },
  32013. side: {
  32014. height: math.unit(15 + 5 / 12, "feet"),
  32015. weight: math.unit(4600, "lb"),
  32016. name: "Side",
  32017. image: {
  32018. source: "./media/characters/neapolitan-ananassa/side.svg",
  32019. extra: 2925 / 2719,
  32020. bottom: 0 / 2925
  32021. }
  32022. },
  32023. back: {
  32024. height: math.unit(15 + 5 / 12, "feet"),
  32025. weight: math.unit(4600, "lb"),
  32026. name: "Back",
  32027. image: {
  32028. source: "./media/characters/neapolitan-ananassa/back.svg",
  32029. extra: 2903 / 2736,
  32030. bottom: 0 / 2903
  32031. }
  32032. },
  32033. },
  32034. [
  32035. {
  32036. name: "Normal",
  32037. height: math.unit(15 + 5 / 12, "feet"),
  32038. default: true
  32039. },
  32040. {
  32041. name: "Post-Millenium",
  32042. height: math.unit(35 + 5 / 12, "feet")
  32043. },
  32044. {
  32045. name: "Post-Era",
  32046. height: math.unit(450 + 5 / 12, "feet")
  32047. },
  32048. ]
  32049. ))
  32050. characterMakers.push(() => makeCharacter(
  32051. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32052. {
  32053. front: {
  32054. height: math.unit(300, "meters"),
  32055. weight: math.unit(125000, "tonnes"),
  32056. name: "Front",
  32057. image: {
  32058. source: "./media/characters/pazuzu/front.svg",
  32059. extra: 877 / 794,
  32060. bottom: 47 / 924
  32061. }
  32062. },
  32063. },
  32064. [
  32065. {
  32066. name: "Macro",
  32067. height: math.unit(300, "meters"),
  32068. default: true
  32069. },
  32070. ]
  32071. ))
  32072. characterMakers.push(() => makeCharacter(
  32073. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32074. {
  32075. side: {
  32076. height: math.unit(10 + 7 / 12, "feet"),
  32077. weight: math.unit(2.5, "tons"),
  32078. name: "Side",
  32079. image: {
  32080. source: "./media/characters/aasha/side.svg",
  32081. extra: 1345 / 1245,
  32082. bottom: 111 / 1456
  32083. }
  32084. },
  32085. back: {
  32086. height: math.unit(10 + 7 / 12, "feet"),
  32087. weight: math.unit(2.5, "tons"),
  32088. name: "Back",
  32089. image: {
  32090. source: "./media/characters/aasha/back.svg",
  32091. extra: 1133 / 1057,
  32092. bottom: 257 / 1390
  32093. }
  32094. },
  32095. },
  32096. [
  32097. {
  32098. name: "Normal",
  32099. height: math.unit(10 + 7 / 12, "feet"),
  32100. default: true
  32101. },
  32102. ]
  32103. ))
  32104. characterMakers.push(() => makeCharacter(
  32105. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32106. {
  32107. front: {
  32108. height: math.unit(6 + 3 / 12, "feet"),
  32109. name: "Front",
  32110. image: {
  32111. source: "./media/characters/nevan/front.svg",
  32112. extra: 704 / 704,
  32113. bottom: 28 / 732
  32114. }
  32115. },
  32116. back: {
  32117. height: math.unit(6 + 3 / 12, "feet"),
  32118. name: "Back",
  32119. image: {
  32120. source: "./media/characters/nevan/back.svg",
  32121. extra: 714 / 714,
  32122. bottom: 21 / 735
  32123. }
  32124. },
  32125. frontFlaccid: {
  32126. height: math.unit(6 + 3 / 12, "feet"),
  32127. name: "Front (Flaccid)",
  32128. image: {
  32129. source: "./media/characters/nevan/front-flaccid.svg",
  32130. extra: 704 / 704,
  32131. bottom: 28 / 732
  32132. }
  32133. },
  32134. frontErect: {
  32135. height: math.unit(6 + 3 / 12, "feet"),
  32136. name: "Front (Erect)",
  32137. image: {
  32138. source: "./media/characters/nevan/front-erect.svg",
  32139. extra: 704 / 704,
  32140. bottom: 28 / 732
  32141. }
  32142. },
  32143. backFlaccid: {
  32144. height: math.unit(6 + 3 / 12, "feet"),
  32145. name: "Back (Flaccid)",
  32146. image: {
  32147. source: "./media/characters/nevan/back-flaccid.svg",
  32148. extra: 714 / 714,
  32149. bottom: 21 / 735
  32150. }
  32151. },
  32152. },
  32153. [
  32154. {
  32155. name: "Normal",
  32156. height: math.unit(6 + 3 / 12, "feet"),
  32157. default: true
  32158. },
  32159. ]
  32160. ))
  32161. characterMakers.push(() => makeCharacter(
  32162. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32163. {
  32164. front: {
  32165. height: math.unit(4, "feet"),
  32166. name: "Front",
  32167. image: {
  32168. source: "./media/characters/arhan/front.svg",
  32169. extra: 3368 / 3133,
  32170. bottom: 0 / 3368
  32171. }
  32172. },
  32173. side: {
  32174. height: math.unit(4, "feet"),
  32175. name: "Side",
  32176. image: {
  32177. source: "./media/characters/arhan/side.svg",
  32178. extra: 3347 / 3105,
  32179. bottom: 0 / 3347
  32180. }
  32181. },
  32182. tongue: {
  32183. height: math.unit(1.42, "feet"),
  32184. name: "Tongue",
  32185. image: {
  32186. source: "./media/characters/arhan/tongue.svg"
  32187. }
  32188. },
  32189. head: {
  32190. height: math.unit(0.85, "feet"),
  32191. name: "Head",
  32192. image: {
  32193. source: "./media/characters/arhan/head.svg"
  32194. }
  32195. },
  32196. },
  32197. [
  32198. {
  32199. name: "Normal",
  32200. height: math.unit(4, "feet"),
  32201. default: true
  32202. },
  32203. ]
  32204. ))
  32205. characterMakers.push(() => makeCharacter(
  32206. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32207. {
  32208. front: {
  32209. height: math.unit(5 + 7.5 / 12, "feet"),
  32210. weight: math.unit(120, "lb"),
  32211. name: "Front",
  32212. image: {
  32213. source: "./media/characters/digi-duncan/front.svg",
  32214. extra: 330 / 326,
  32215. bottom: 16 / 346
  32216. }
  32217. },
  32218. side: {
  32219. height: math.unit(5 + 7.5 / 12, "feet"),
  32220. weight: math.unit(120, "lb"),
  32221. name: "Side",
  32222. image: {
  32223. source: "./media/characters/digi-duncan/side.svg",
  32224. extra: 341 / 337,
  32225. bottom: 1 / 342
  32226. }
  32227. },
  32228. back: {
  32229. height: math.unit(5 + 7.5 / 12, "feet"),
  32230. weight: math.unit(120, "lb"),
  32231. name: "Back",
  32232. image: {
  32233. source: "./media/characters/digi-duncan/back.svg",
  32234. extra: 330 / 326,
  32235. bottom: 12 / 342
  32236. }
  32237. },
  32238. },
  32239. [
  32240. {
  32241. name: "Speck",
  32242. height: math.unit(0.25, "mm")
  32243. },
  32244. {
  32245. name: "Micro",
  32246. height: math.unit(5, "mm")
  32247. },
  32248. {
  32249. name: "Tiny",
  32250. height: math.unit(0.5, "inches"),
  32251. default: true
  32252. },
  32253. {
  32254. name: "Human",
  32255. height: math.unit(5 + 7.5 / 12, "feet")
  32256. },
  32257. {
  32258. name: "Minigiant",
  32259. height: math.unit(8 + 5.25, "feet")
  32260. },
  32261. {
  32262. name: "Giant",
  32263. height: math.unit(2000, "feet")
  32264. },
  32265. {
  32266. name: "Mega",
  32267. height: math.unit(371.1, "miles")
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32273. {
  32274. front: {
  32275. height: math.unit(2, "meters"),
  32276. weight: math.unit(350, "kg"),
  32277. name: "Front",
  32278. image: {
  32279. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32280. extra: 898 / 838,
  32281. bottom: 9 / 907
  32282. }
  32283. },
  32284. },
  32285. [
  32286. {
  32287. name: "Micro",
  32288. height: math.unit(8, "meters")
  32289. },
  32290. {
  32291. name: "Normal",
  32292. height: math.unit(50, "meters"),
  32293. default: true
  32294. },
  32295. {
  32296. name: "Macro",
  32297. height: math.unit(500, "meters")
  32298. },
  32299. ]
  32300. ))
  32301. characterMakers.push(() => makeCharacter(
  32302. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32303. {
  32304. front: {
  32305. height: math.unit(6 + 6 / 12, "feet"),
  32306. name: "Front",
  32307. image: {
  32308. source: "./media/characters/khardesh/front.svg",
  32309. extra: 1788/1596,
  32310. bottom: 66/1854
  32311. }
  32312. },
  32313. back: {
  32314. height: math.unit(6 + 6 / 12, "feet"),
  32315. name: "Back",
  32316. image: {
  32317. source: "./media/characters/khardesh/back.svg",
  32318. extra: 1781/1584,
  32319. bottom: 68/1849
  32320. }
  32321. },
  32322. },
  32323. [
  32324. {
  32325. name: "Normal",
  32326. height: math.unit(6 + 6 / 12, "feet"),
  32327. default: true
  32328. },
  32329. {
  32330. name: "Normal+",
  32331. height: math.unit(4, "meters")
  32332. },
  32333. {
  32334. name: "Macro",
  32335. height: math.unit(50, "meters")
  32336. },
  32337. {
  32338. name: "Macro+",
  32339. height: math.unit(100, "meters")
  32340. },
  32341. {
  32342. name: "Megamacro",
  32343. height: math.unit(20, "km")
  32344. },
  32345. ]
  32346. ))
  32347. characterMakers.push(() => makeCharacter(
  32348. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32349. {
  32350. front: {
  32351. height: math.unit(6, "feet"),
  32352. weight: math.unit(150, "lb"),
  32353. name: "Front",
  32354. image: {
  32355. source: "./media/characters/kosho/front.svg",
  32356. extra: 1847 / 1847,
  32357. bottom: 86 / 1933
  32358. }
  32359. },
  32360. },
  32361. [
  32362. {
  32363. name: "Second-stage micro",
  32364. height: math.unit(0.5, "inches")
  32365. },
  32366. {
  32367. name: "First-stage micro",
  32368. height: math.unit(6, "inches")
  32369. },
  32370. {
  32371. name: "Normal",
  32372. height: math.unit(6, "feet"),
  32373. default: true
  32374. },
  32375. {
  32376. name: "First-stage macro",
  32377. height: math.unit(72, "feet")
  32378. },
  32379. {
  32380. name: "Second-stage macro",
  32381. height: math.unit(864, "feet")
  32382. },
  32383. ]
  32384. ))
  32385. characterMakers.push(() => makeCharacter(
  32386. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32387. {
  32388. normal: {
  32389. height: math.unit(4 + 6 / 12, "feet"),
  32390. name: "Normal",
  32391. image: {
  32392. source: "./media/characters/hydra/normal.svg",
  32393. extra: 2833 / 2634,
  32394. bottom: 68 / 2901
  32395. }
  32396. },
  32397. smol: {
  32398. height: math.unit(0.705, "inches"),
  32399. name: "Smol",
  32400. image: {
  32401. source: "./media/characters/hydra/smol.svg",
  32402. extra: 2715 / 2540,
  32403. bottom: 0 / 2715
  32404. }
  32405. },
  32406. },
  32407. [
  32408. {
  32409. name: "Normal",
  32410. height: math.unit(4 + 6 / 12, "feet"),
  32411. default: true
  32412. }
  32413. ]
  32414. ))
  32415. characterMakers.push(() => makeCharacter(
  32416. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32417. {
  32418. front: {
  32419. height: math.unit(0.6, "cm"),
  32420. name: "Front",
  32421. image: {
  32422. source: "./media/characters/daz/front.svg",
  32423. extra: 1682 / 1164,
  32424. bottom: 42 / 1724
  32425. }
  32426. },
  32427. },
  32428. [
  32429. {
  32430. name: "Normal",
  32431. height: math.unit(0.6, "cm"),
  32432. default: true
  32433. },
  32434. ]
  32435. ))
  32436. characterMakers.push(() => makeCharacter(
  32437. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32438. {
  32439. front: {
  32440. height: math.unit(6, "feet"),
  32441. weight: math.unit(235, "lb"),
  32442. name: "Front",
  32443. image: {
  32444. source: "./media/characters/theo-pangolin/front.svg",
  32445. extra: 1996 / 1969,
  32446. bottom: 115 / 2111
  32447. }
  32448. },
  32449. back: {
  32450. height: math.unit(6, "feet"),
  32451. weight: math.unit(235, "lb"),
  32452. name: "Back",
  32453. image: {
  32454. source: "./media/characters/theo-pangolin/back.svg",
  32455. extra: 1979 / 1979,
  32456. bottom: 40 / 2019
  32457. }
  32458. },
  32459. feral: {
  32460. height: math.unit(2, "feet"),
  32461. weight: math.unit(30, "lb"),
  32462. name: "Feral",
  32463. image: {
  32464. source: "./media/characters/theo-pangolin/feral.svg",
  32465. extra: 803 / 791,
  32466. bottom: 181 / 984
  32467. }
  32468. },
  32469. footFive: {
  32470. height: math.unit(1.43, "feet"),
  32471. name: "Foot (Five Toes)",
  32472. image: {
  32473. source: "./media/characters/theo-pangolin/foot-five.svg"
  32474. }
  32475. },
  32476. footFour: {
  32477. height: math.unit(1.43, "feet"),
  32478. name: "Foot (Four Toes)",
  32479. image: {
  32480. source: "./media/characters/theo-pangolin/foot-four.svg"
  32481. }
  32482. },
  32483. handFour: {
  32484. height: math.unit(0.81, "feet"),
  32485. name: "Hand (Four Fingers)",
  32486. image: {
  32487. source: "./media/characters/theo-pangolin/hand-four.svg"
  32488. }
  32489. },
  32490. handThree: {
  32491. height: math.unit(0.81, "feet"),
  32492. name: "Hand (Three Fingers)",
  32493. image: {
  32494. source: "./media/characters/theo-pangolin/hand-three.svg"
  32495. }
  32496. },
  32497. headFront: {
  32498. height: math.unit(1.37, "feet"),
  32499. name: "Head (Front)",
  32500. image: {
  32501. source: "./media/characters/theo-pangolin/head-front.svg"
  32502. }
  32503. },
  32504. headSide: {
  32505. height: math.unit(1.43, "feet"),
  32506. name: "Head (Side)",
  32507. image: {
  32508. source: "./media/characters/theo-pangolin/head-side.svg"
  32509. }
  32510. },
  32511. tongue: {
  32512. height: math.unit(2.29, "feet"),
  32513. name: "Tongue",
  32514. image: {
  32515. source: "./media/characters/theo-pangolin/tongue.svg"
  32516. }
  32517. },
  32518. },
  32519. [
  32520. {
  32521. name: "Normal",
  32522. height: math.unit(6, "feet")
  32523. },
  32524. {
  32525. name: "Macro",
  32526. height: math.unit(400, "feet"),
  32527. default: true
  32528. },
  32529. ]
  32530. ))
  32531. characterMakers.push(() => makeCharacter(
  32532. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32533. {
  32534. front: {
  32535. height: math.unit(6, "inches"),
  32536. weight: math.unit(0.036, "kg"),
  32537. name: "Front",
  32538. image: {
  32539. source: "./media/characters/renée/front.svg",
  32540. extra: 900 / 886,
  32541. bottom: 8 / 908
  32542. }
  32543. },
  32544. },
  32545. [
  32546. {
  32547. name: "Nano",
  32548. height: math.unit(1, "nm")
  32549. },
  32550. {
  32551. name: "Micro",
  32552. height: math.unit(1, "mm")
  32553. },
  32554. {
  32555. name: "Normal",
  32556. height: math.unit(6, "inches")
  32557. },
  32558. {
  32559. name: "Macro",
  32560. height: math.unit(2000, "feet"),
  32561. default: true
  32562. },
  32563. {
  32564. name: "Megamacro",
  32565. height: math.unit(2, "km")
  32566. },
  32567. {
  32568. name: "Gigamacro",
  32569. height: math.unit(2000, "km")
  32570. },
  32571. {
  32572. name: "Teramacro",
  32573. height: math.unit(250000, "km")
  32574. },
  32575. ]
  32576. ))
  32577. characterMakers.push(() => makeCharacter(
  32578. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32579. {
  32580. front: {
  32581. height: math.unit(4, "meters"),
  32582. weight: math.unit(150, "kg"),
  32583. name: "Front",
  32584. image: {
  32585. source: "./media/characters/caledvwlch/front.svg",
  32586. extra: 1757/1537,
  32587. bottom: 31/1788
  32588. }
  32589. },
  32590. side: {
  32591. height: math.unit(4, "meters"),
  32592. weight: math.unit(150, "kg"),
  32593. name: "Side",
  32594. image: {
  32595. source: "./media/characters/caledvwlch/side.svg",
  32596. extra: 1605 / 1536,
  32597. bottom: 31 / 1636
  32598. }
  32599. },
  32600. back: {
  32601. height: math.unit(4, "meters"),
  32602. weight: math.unit(150, "kg"),
  32603. name: "Back",
  32604. image: {
  32605. source: "./media/characters/caledvwlch/back.svg",
  32606. extra: 1635 / 1565,
  32607. bottom: 27 / 1662
  32608. }
  32609. },
  32610. },
  32611. [
  32612. {
  32613. name: "\"Incognito\"",
  32614. height: math.unit(4, "meters")
  32615. },
  32616. {
  32617. name: "Small rampage",
  32618. height: math.unit(600, "meters")
  32619. },
  32620. {
  32621. name: "Mega",
  32622. height: math.unit(30, "km")
  32623. },
  32624. {
  32625. name: "Home-size",
  32626. height: math.unit(50, "km"),
  32627. default: true
  32628. },
  32629. {
  32630. name: "Giga",
  32631. height: math.unit(300, "km")
  32632. },
  32633. {
  32634. name: "Lounging",
  32635. height: math.unit(11000, "km")
  32636. },
  32637. {
  32638. name: "Planet snacking",
  32639. height: math.unit(2000000, "km")
  32640. },
  32641. ]
  32642. ))
  32643. characterMakers.push(() => makeCharacter(
  32644. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32645. {
  32646. front: {
  32647. height: math.unit(6, "feet"),
  32648. weight: math.unit(215, "lb"),
  32649. name: "Front",
  32650. image: {
  32651. source: "./media/characters/sapphire-svell/front.svg",
  32652. extra: 495 / 455,
  32653. bottom: 20 / 515
  32654. }
  32655. },
  32656. back: {
  32657. height: math.unit(6, "feet"),
  32658. weight: math.unit(216, "lb"),
  32659. name: "Back",
  32660. image: {
  32661. source: "./media/characters/sapphire-svell/back.svg",
  32662. extra: 497 / 477,
  32663. bottom: 7 / 504
  32664. }
  32665. },
  32666. maw: {
  32667. height: math.unit(1.57, "feet"),
  32668. name: "Maw",
  32669. image: {
  32670. source: "./media/characters/sapphire-svell/maw.svg"
  32671. }
  32672. },
  32673. foot: {
  32674. height: math.unit(1.07, "feet"),
  32675. name: "Foot",
  32676. image: {
  32677. source: "./media/characters/sapphire-svell/foot.svg"
  32678. }
  32679. },
  32680. toering: {
  32681. height: math.unit(1.7, "inch"),
  32682. name: "Toering",
  32683. image: {
  32684. source: "./media/characters/sapphire-svell/toering.svg"
  32685. }
  32686. },
  32687. },
  32688. [
  32689. {
  32690. name: "Normal",
  32691. height: math.unit(300, "feet"),
  32692. default: true
  32693. },
  32694. {
  32695. name: "Augmented",
  32696. height: math.unit(1250, "feet")
  32697. },
  32698. {
  32699. name: "Unleashed",
  32700. height: math.unit(3000, "feet")
  32701. },
  32702. ]
  32703. ))
  32704. characterMakers.push(() => makeCharacter(
  32705. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32706. {
  32707. side: {
  32708. height: math.unit(2 + 3 / 12, "feet"),
  32709. weight: math.unit(110, "lb"),
  32710. name: "Side",
  32711. image: {
  32712. source: "./media/characters/glitch-flux/side.svg",
  32713. extra: 997 / 805,
  32714. bottom: 20 / 1017
  32715. }
  32716. },
  32717. },
  32718. [
  32719. {
  32720. name: "Normal",
  32721. height: math.unit(2 + 3 / 12, "feet"),
  32722. default: true
  32723. },
  32724. ]
  32725. ))
  32726. characterMakers.push(() => makeCharacter(
  32727. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32728. {
  32729. front: {
  32730. height: math.unit(4, "meters"),
  32731. name: "Front",
  32732. image: {
  32733. source: "./media/characters/mid/front.svg",
  32734. extra: 507 / 476,
  32735. bottom: 17 / 524
  32736. }
  32737. },
  32738. back: {
  32739. height: math.unit(4, "meters"),
  32740. name: "Back",
  32741. image: {
  32742. source: "./media/characters/mid/back.svg",
  32743. extra: 519 / 487,
  32744. bottom: 7 / 526
  32745. }
  32746. },
  32747. stuck: {
  32748. height: math.unit(2.2, "meters"),
  32749. name: "Stuck",
  32750. image: {
  32751. source: "./media/characters/mid/stuck.svg",
  32752. extra: 1951 / 1869,
  32753. bottom: 88 / 2039
  32754. }
  32755. }
  32756. },
  32757. [
  32758. {
  32759. name: "Normal",
  32760. height: math.unit(4, "meters"),
  32761. default: true
  32762. },
  32763. {
  32764. name: "Big",
  32765. height: math.unit(10, "meters")
  32766. },
  32767. {
  32768. name: "Macro",
  32769. height: math.unit(800, "meters")
  32770. },
  32771. {
  32772. name: "Megamacro",
  32773. height: math.unit(100, "km")
  32774. },
  32775. {
  32776. name: "Overgrown",
  32777. height: math.unit(1, "parsec")
  32778. },
  32779. ]
  32780. ))
  32781. characterMakers.push(() => makeCharacter(
  32782. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32783. {
  32784. front: {
  32785. height: math.unit(2.5, "meters"),
  32786. weight: math.unit(225, "kg"),
  32787. name: "Front",
  32788. image: {
  32789. source: "./media/characters/iris/front.svg",
  32790. extra: 3348 / 3251,
  32791. bottom: 205 / 3553
  32792. }
  32793. },
  32794. maw: {
  32795. height: math.unit(0.56, "meter"),
  32796. name: "Maw",
  32797. image: {
  32798. source: "./media/characters/iris/maw.svg"
  32799. }
  32800. },
  32801. },
  32802. [
  32803. {
  32804. name: "Mewter cat",
  32805. height: math.unit(1.2, "meters")
  32806. },
  32807. {
  32808. name: "Normal",
  32809. height: math.unit(2.5, "meters"),
  32810. default: true
  32811. },
  32812. {
  32813. name: "Minimacro",
  32814. height: math.unit(18, "feet")
  32815. },
  32816. {
  32817. name: "Macro",
  32818. height: math.unit(140, "feet")
  32819. },
  32820. {
  32821. name: "Macro+",
  32822. height: math.unit(180, "meters")
  32823. },
  32824. {
  32825. name: "Megamacro",
  32826. height: math.unit(2746, "meters")
  32827. },
  32828. ]
  32829. ))
  32830. characterMakers.push(() => makeCharacter(
  32831. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32832. {
  32833. front: {
  32834. height: math.unit(6, "feet"),
  32835. weight: math.unit(135, "lb"),
  32836. name: "Front",
  32837. image: {
  32838. source: "./media/characters/axel/front.svg",
  32839. extra: 908 / 908,
  32840. bottom: 58 / 966
  32841. }
  32842. },
  32843. side: {
  32844. height: math.unit(6, "feet"),
  32845. weight: math.unit(135, "lb"),
  32846. name: "Side",
  32847. image: {
  32848. source: "./media/characters/axel/side.svg",
  32849. extra: 958 / 958,
  32850. bottom: 11 / 969
  32851. }
  32852. },
  32853. back: {
  32854. height: math.unit(6, "feet"),
  32855. weight: math.unit(135, "lb"),
  32856. name: "Back",
  32857. image: {
  32858. source: "./media/characters/axel/back.svg",
  32859. extra: 887 / 887,
  32860. bottom: 34 / 921
  32861. }
  32862. },
  32863. head: {
  32864. height: math.unit(1.07, "feet"),
  32865. name: "Head",
  32866. image: {
  32867. source: "./media/characters/axel/head.svg"
  32868. }
  32869. },
  32870. beak: {
  32871. height: math.unit(1.4, "feet"),
  32872. name: "Beak",
  32873. image: {
  32874. source: "./media/characters/axel/beak.svg"
  32875. }
  32876. },
  32877. beakSide: {
  32878. height: math.unit(1.4, "feet"),
  32879. name: "Beak Side",
  32880. image: {
  32881. source: "./media/characters/axel/beak-side.svg"
  32882. }
  32883. },
  32884. sheath: {
  32885. height: math.unit(0.5, "feet"),
  32886. name: "Sheath",
  32887. image: {
  32888. source: "./media/characters/axel/sheath.svg"
  32889. }
  32890. },
  32891. dick: {
  32892. height: math.unit(0.98, "feet"),
  32893. name: "Dick",
  32894. image: {
  32895. source: "./media/characters/axel/dick.svg"
  32896. }
  32897. },
  32898. },
  32899. [
  32900. {
  32901. name: "Macro",
  32902. height: math.unit(68, "meters"),
  32903. default: true
  32904. },
  32905. ]
  32906. ))
  32907. characterMakers.push(() => makeCharacter(
  32908. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32909. {
  32910. front: {
  32911. height: math.unit(3.5, "meters"),
  32912. weight: math.unit(1200, "kg"),
  32913. name: "Front",
  32914. image: {
  32915. source: "./media/characters/joanna/front.svg",
  32916. extra: 1596 / 1488,
  32917. bottom: 29 / 1625
  32918. }
  32919. },
  32920. back: {
  32921. height: math.unit(3.5, "meters"),
  32922. weight: math.unit(1200, "kg"),
  32923. name: "Back",
  32924. image: {
  32925. source: "./media/characters/joanna/back.svg",
  32926. extra: 1594 / 1495,
  32927. bottom: 26 / 1620
  32928. }
  32929. },
  32930. frontShorts: {
  32931. height: math.unit(3.5, "meters"),
  32932. weight: math.unit(1200, "kg"),
  32933. name: "Front (Shorts)",
  32934. image: {
  32935. source: "./media/characters/joanna/front-shorts.svg",
  32936. extra: 1596 / 1488,
  32937. bottom: 29 / 1625
  32938. }
  32939. },
  32940. frontBiker: {
  32941. height: math.unit(3.5, "meters"),
  32942. weight: math.unit(1200, "kg"),
  32943. name: "Front (Biker)",
  32944. image: {
  32945. source: "./media/characters/joanna/front-biker.svg",
  32946. extra: 1596 / 1488,
  32947. bottom: 29 / 1625
  32948. }
  32949. },
  32950. backBiker: {
  32951. height: math.unit(3.5, "meters"),
  32952. weight: math.unit(1200, "kg"),
  32953. name: "Back (Biker)",
  32954. image: {
  32955. source: "./media/characters/joanna/back-biker.svg",
  32956. extra: 1594 / 1495,
  32957. bottom: 88 / 1682
  32958. }
  32959. },
  32960. bikeLeft: {
  32961. height: math.unit(2.4, "meters"),
  32962. weight: math.unit(1600, "kg"),
  32963. name: "Bike (Left)",
  32964. image: {
  32965. source: "./media/characters/joanna/bike-left.svg",
  32966. extra: 720 / 720,
  32967. bottom: 8 / 728
  32968. }
  32969. },
  32970. bikeRight: {
  32971. height: math.unit(2.4, "meters"),
  32972. weight: math.unit(1600, "kg"),
  32973. name: "Bike (Right)",
  32974. image: {
  32975. source: "./media/characters/joanna/bike-right.svg",
  32976. extra: 720 / 720,
  32977. bottom: 8 / 728
  32978. }
  32979. },
  32980. },
  32981. [
  32982. {
  32983. name: "Incognito",
  32984. height: math.unit(3.5, "meters")
  32985. },
  32986. {
  32987. name: "Casual Big",
  32988. height: math.unit(200, "meters")
  32989. },
  32990. {
  32991. name: "Macro",
  32992. height: math.unit(600, "meters")
  32993. },
  32994. {
  32995. name: "Original",
  32996. height: math.unit(20, "km"),
  32997. default: true
  32998. },
  32999. {
  33000. name: "Giga",
  33001. height: math.unit(400, "km")
  33002. },
  33003. {
  33004. name: "Lounging",
  33005. height: math.unit(1500, "km")
  33006. },
  33007. {
  33008. name: "Planetary",
  33009. height: math.unit(200000, "km")
  33010. },
  33011. ]
  33012. ))
  33013. characterMakers.push(() => makeCharacter(
  33014. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33015. {
  33016. front: {
  33017. height: math.unit(6, "feet"),
  33018. weight: math.unit(150, "lb"),
  33019. name: "Front",
  33020. image: {
  33021. source: "./media/characters/hugo-sigil/front.svg",
  33022. extra: 522 / 500,
  33023. bottom: 2 / 524
  33024. }
  33025. },
  33026. back: {
  33027. height: math.unit(6, "feet"),
  33028. weight: math.unit(150, "lb"),
  33029. name: "Back",
  33030. image: {
  33031. source: "./media/characters/hugo-sigil/back.svg",
  33032. extra: 519 / 495,
  33033. bottom: 5 / 524
  33034. }
  33035. },
  33036. maw: {
  33037. height: math.unit(1.4, "feet"),
  33038. weight: math.unit(150, "lb"),
  33039. name: "Maw",
  33040. image: {
  33041. source: "./media/characters/hugo-sigil/maw.svg"
  33042. }
  33043. },
  33044. feet: {
  33045. height: math.unit(1.56, "feet"),
  33046. weight: math.unit(150, "lb"),
  33047. name: "Feet",
  33048. image: {
  33049. source: "./media/characters/hugo-sigil/feet.svg",
  33050. extra: 177 / 177,
  33051. bottom: 12 / 189
  33052. }
  33053. },
  33054. },
  33055. [
  33056. {
  33057. name: "Normal",
  33058. height: math.unit(6, "feet")
  33059. },
  33060. {
  33061. name: "Macro",
  33062. height: math.unit(200, "feet"),
  33063. default: true
  33064. },
  33065. ]
  33066. ))
  33067. characterMakers.push(() => makeCharacter(
  33068. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33069. {
  33070. front: {
  33071. height: math.unit(6, "feet"),
  33072. weight: math.unit(150, "lb"),
  33073. name: "Front",
  33074. image: {
  33075. source: "./media/characters/peri/front.svg",
  33076. extra: 2354 / 2233,
  33077. bottom: 49 / 2403
  33078. }
  33079. },
  33080. },
  33081. [
  33082. {
  33083. name: "Really Small",
  33084. height: math.unit(1, "nm")
  33085. },
  33086. {
  33087. name: "Micro",
  33088. height: math.unit(4, "inches")
  33089. },
  33090. {
  33091. name: "Normal",
  33092. height: math.unit(7, "inches"),
  33093. default: true
  33094. },
  33095. {
  33096. name: "Macro",
  33097. height: math.unit(400, "feet")
  33098. },
  33099. {
  33100. name: "Megamacro",
  33101. height: math.unit(100, "miles")
  33102. },
  33103. ]
  33104. ))
  33105. characterMakers.push(() => makeCharacter(
  33106. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33107. {
  33108. frontSlim: {
  33109. height: math.unit(7, "feet"),
  33110. name: "Front (Slim)",
  33111. image: {
  33112. source: "./media/characters/issilora/front-slim.svg",
  33113. extra: 529 / 449,
  33114. bottom: 53 / 582
  33115. }
  33116. },
  33117. sideSlim: {
  33118. height: math.unit(7, "feet"),
  33119. name: "Side (Slim)",
  33120. image: {
  33121. source: "./media/characters/issilora/side-slim.svg",
  33122. extra: 570 / 480,
  33123. bottom: 30 / 600
  33124. }
  33125. },
  33126. backSlim: {
  33127. height: math.unit(7, "feet"),
  33128. name: "Back (Slim)",
  33129. image: {
  33130. source: "./media/characters/issilora/back-slim.svg",
  33131. extra: 537 / 455,
  33132. bottom: 46 / 583
  33133. }
  33134. },
  33135. frontBuff: {
  33136. height: math.unit(7, "feet"),
  33137. name: "Front (Buff)",
  33138. image: {
  33139. source: "./media/characters/issilora/front-buff.svg",
  33140. extra: 2310 / 2035,
  33141. bottom: 335 / 2645
  33142. }
  33143. },
  33144. head: {
  33145. height: math.unit(1.94, "feet"),
  33146. name: "Head",
  33147. image: {
  33148. source: "./media/characters/issilora/head.svg"
  33149. }
  33150. },
  33151. },
  33152. [
  33153. {
  33154. name: "Minimum",
  33155. height: math.unit(7, "feet")
  33156. },
  33157. {
  33158. name: "Comfortable",
  33159. height: math.unit(17, "feet")
  33160. },
  33161. {
  33162. name: "Fun Size",
  33163. height: math.unit(47, "feet")
  33164. },
  33165. {
  33166. name: "Natural Macro",
  33167. height: math.unit(137, "feet"),
  33168. default: true
  33169. },
  33170. {
  33171. name: "Maximum Kaiju",
  33172. height: math.unit(397, "feet")
  33173. },
  33174. ]
  33175. ))
  33176. characterMakers.push(() => makeCharacter(
  33177. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33178. {
  33179. front: {
  33180. height: math.unit(50 + 9/12, "feet"),
  33181. weight: math.unit(32.8, "tons"),
  33182. name: "Front",
  33183. image: {
  33184. source: "./media/characters/irb'iiritaahn/front.svg",
  33185. extra: 1878/1826,
  33186. bottom: 326/2204
  33187. }
  33188. },
  33189. back: {
  33190. height: math.unit(50 + 9/12, "feet"),
  33191. weight: math.unit(32.8, "tons"),
  33192. name: "Back",
  33193. image: {
  33194. source: "./media/characters/irb'iiritaahn/back.svg",
  33195. extra: 2052/2018,
  33196. bottom: 152/2204
  33197. }
  33198. },
  33199. head: {
  33200. height: math.unit(12.86, "feet"),
  33201. name: "Head",
  33202. image: {
  33203. source: "./media/characters/irb'iiritaahn/head.svg"
  33204. }
  33205. },
  33206. maw: {
  33207. height: math.unit(9.66, "feet"),
  33208. name: "Maw",
  33209. image: {
  33210. source: "./media/characters/irb'iiritaahn/maw.svg"
  33211. }
  33212. },
  33213. frontDick: {
  33214. height: math.unit(8.78461, "feet"),
  33215. name: "Front Dick",
  33216. image: {
  33217. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33218. }
  33219. },
  33220. rearDick: {
  33221. height: math.unit(8.78461, "feet"),
  33222. name: "Rear Dick",
  33223. image: {
  33224. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33225. }
  33226. },
  33227. rearDickUnfolded: {
  33228. height: math.unit(8.78, "feet"),
  33229. name: "Rear Dick (Unfolded)",
  33230. image: {
  33231. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33232. }
  33233. },
  33234. wings: {
  33235. height: math.unit(43, "feet"),
  33236. name: "Wings",
  33237. image: {
  33238. source: "./media/characters/irb'iiritaahn/wings.svg"
  33239. }
  33240. },
  33241. },
  33242. [
  33243. {
  33244. name: "Macro",
  33245. height: math.unit(50 + 9/12, "feet"),
  33246. default: true
  33247. },
  33248. ]
  33249. ))
  33250. characterMakers.push(() => makeCharacter(
  33251. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33252. {
  33253. front: {
  33254. height: math.unit(205, "cm"),
  33255. weight: math.unit(102, "kg"),
  33256. name: "Front",
  33257. image: {
  33258. source: "./media/characters/irbisgreif/front.svg",
  33259. extra: 785/706,
  33260. bottom: 13/798
  33261. }
  33262. },
  33263. back: {
  33264. height: math.unit(205, "cm"),
  33265. weight: math.unit(102, "kg"),
  33266. name: "Back",
  33267. image: {
  33268. source: "./media/characters/irbisgreif/back.svg",
  33269. extra: 713/701,
  33270. bottom: 26/739
  33271. }
  33272. },
  33273. frontDressed: {
  33274. height: math.unit(216, "cm"),
  33275. weight: math.unit(102, "kg"),
  33276. name: "Front-dressed",
  33277. image: {
  33278. source: "./media/characters/irbisgreif/front-dressed.svg",
  33279. extra: 902/776,
  33280. bottom: 14/916
  33281. }
  33282. },
  33283. sideDressed: {
  33284. height: math.unit(195, "cm"),
  33285. weight: math.unit(102, "kg"),
  33286. name: "Side-dressed",
  33287. image: {
  33288. source: "./media/characters/irbisgreif/side-dressed.svg",
  33289. extra: 788/688,
  33290. bottom: 21/809
  33291. }
  33292. },
  33293. backDressed: {
  33294. height: math.unit(216, "cm"),
  33295. weight: math.unit(102, "kg"),
  33296. name: "Back-dressed",
  33297. image: {
  33298. source: "./media/characters/irbisgreif/back-dressed.svg",
  33299. extra: 901/783,
  33300. bottom: 10/911
  33301. }
  33302. },
  33303. dick: {
  33304. height: math.unit(0.49, "feet"),
  33305. name: "Dick",
  33306. image: {
  33307. source: "./media/characters/irbisgreif/dick.svg"
  33308. }
  33309. },
  33310. wingTop: {
  33311. height: math.unit(1.93 , "feet"),
  33312. name: "Wing-top",
  33313. image: {
  33314. source: "./media/characters/irbisgreif/wing-top.svg"
  33315. }
  33316. },
  33317. wingBottom: {
  33318. height: math.unit(1.93 , "feet"),
  33319. name: "Wing-bottom",
  33320. image: {
  33321. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33322. }
  33323. },
  33324. },
  33325. [
  33326. {
  33327. name: "Normal",
  33328. height: math.unit(216, "cm"),
  33329. default: true
  33330. },
  33331. ]
  33332. ))
  33333. characterMakers.push(() => makeCharacter(
  33334. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33335. {
  33336. front: {
  33337. height: math.unit(6, "feet"),
  33338. weight: math.unit(150, "lb"),
  33339. name: "Front",
  33340. image: {
  33341. source: "./media/characters/pride/front.svg",
  33342. extra: 1299/1230,
  33343. bottom: 18/1317
  33344. }
  33345. },
  33346. },
  33347. [
  33348. {
  33349. name: "Normal",
  33350. height: math.unit(7, "feet")
  33351. },
  33352. {
  33353. name: "Mini-macro",
  33354. height: math.unit(11, "feet")
  33355. },
  33356. {
  33357. name: "Macro",
  33358. height: math.unit(15, "meters"),
  33359. default: true
  33360. },
  33361. {
  33362. name: "Macro+",
  33363. height: math.unit(40, "meters")
  33364. },
  33365. ]
  33366. ))
  33367. characterMakers.push(() => makeCharacter(
  33368. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33369. {
  33370. front: {
  33371. height: math.unit(4 + 2 / 12, "feet"),
  33372. weight: math.unit(95, "lb"),
  33373. name: "Front",
  33374. image: {
  33375. source: "./media/characters/vaelophis-nyx/front.svg",
  33376. extra: 2532/2330,
  33377. bottom: 0/2532
  33378. }
  33379. },
  33380. back: {
  33381. height: math.unit(4 + 2 / 12, "feet"),
  33382. weight: math.unit(95, "lb"),
  33383. name: "Back",
  33384. image: {
  33385. source: "./media/characters/vaelophis-nyx/back.svg",
  33386. extra: 2484/2361,
  33387. bottom: 0/2484
  33388. }
  33389. },
  33390. feralSide: {
  33391. height: math.unit(2 + 1/12, "feet"),
  33392. weight: math.unit(20, "lb"),
  33393. name: "Feral (Side)",
  33394. image: {
  33395. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33396. extra: 1721/1581,
  33397. bottom: 70/1791
  33398. }
  33399. },
  33400. feralLazing: {
  33401. height: math.unit(1.08, "feet"),
  33402. weight: math.unit(20, "lb"),
  33403. name: "Feral (Lazing)",
  33404. image: {
  33405. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33406. extra: 822/822,
  33407. bottom: 248/1070
  33408. }
  33409. },
  33410. ear: {
  33411. height: math.unit(0.416, "feet"),
  33412. name: "Ear",
  33413. image: {
  33414. source: "./media/characters/vaelophis-nyx/ear.svg"
  33415. }
  33416. },
  33417. eye: {
  33418. height: math.unit(0.0748, "feet"),
  33419. name: "Eye",
  33420. image: {
  33421. source: "./media/characters/vaelophis-nyx/eye.svg"
  33422. }
  33423. },
  33424. mouth: {
  33425. height: math.unit(0.378, "feet"),
  33426. name: "Mouth",
  33427. image: {
  33428. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33429. }
  33430. },
  33431. spade: {
  33432. height: math.unit(0.55, "feet"),
  33433. name: "Spade",
  33434. image: {
  33435. source: "./media/characters/vaelophis-nyx/spade.svg"
  33436. }
  33437. },
  33438. },
  33439. [
  33440. {
  33441. name: "Normal",
  33442. height: math.unit(4 + 2/12, "feet"),
  33443. default: true
  33444. },
  33445. ]
  33446. ))
  33447. characterMakers.push(() => makeCharacter(
  33448. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33449. {
  33450. front: {
  33451. height: math.unit(7, "feet"),
  33452. weight: math.unit(231, "lb"),
  33453. name: "Front",
  33454. image: {
  33455. source: "./media/characters/flux/front.svg",
  33456. extra: 919/871,
  33457. bottom: 0/919
  33458. }
  33459. },
  33460. back: {
  33461. height: math.unit(7, "feet"),
  33462. weight: math.unit(231, "lb"),
  33463. name: "Back",
  33464. image: {
  33465. source: "./media/characters/flux/back.svg",
  33466. extra: 1040/992,
  33467. bottom: 0/1040
  33468. }
  33469. },
  33470. frontDressed: {
  33471. height: math.unit(7, "feet"),
  33472. weight: math.unit(231, "lb"),
  33473. name: "Front (Dressed)",
  33474. image: {
  33475. source: "./media/characters/flux/front-dressed.svg",
  33476. extra: 919/871,
  33477. bottom: 0/919
  33478. }
  33479. },
  33480. feralSide: {
  33481. height: math.unit(5, "feet"),
  33482. weight: math.unit(150, "lb"),
  33483. name: "Feral (Side)",
  33484. image: {
  33485. source: "./media/characters/flux/feral-side.svg",
  33486. extra: 598/528,
  33487. bottom: 28/626
  33488. }
  33489. },
  33490. head: {
  33491. height: math.unit(1.585, "feet"),
  33492. name: "Head",
  33493. image: {
  33494. source: "./media/characters/flux/head.svg"
  33495. }
  33496. },
  33497. headSide: {
  33498. height: math.unit(1.74, "feet"),
  33499. name: "Head (Side)",
  33500. image: {
  33501. source: "./media/characters/flux/head-side.svg"
  33502. }
  33503. },
  33504. headSideFire: {
  33505. height: math.unit(1.76, "feet"),
  33506. name: "Head (Side, Fire)",
  33507. image: {
  33508. source: "./media/characters/flux/head-side-fire.svg"
  33509. }
  33510. },
  33511. },
  33512. [
  33513. {
  33514. name: "Normal",
  33515. height: math.unit(7, "feet"),
  33516. default: true
  33517. },
  33518. ]
  33519. ))
  33520. characterMakers.push(() => makeCharacter(
  33521. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33522. {
  33523. front: {
  33524. height: math.unit(9, "feet"),
  33525. weight: math.unit(1012, "lb"),
  33526. name: "Front",
  33527. image: {
  33528. source: "./media/characters/ulfra-lupae/front.svg",
  33529. extra: 1083/1011,
  33530. bottom: 67/1150
  33531. }
  33532. },
  33533. },
  33534. [
  33535. {
  33536. name: "Micro",
  33537. height: math.unit(6, "inches")
  33538. },
  33539. {
  33540. name: "Socializing",
  33541. height: math.unit(6 + 5/12, "feet")
  33542. },
  33543. {
  33544. name: "Normal",
  33545. height: math.unit(9, "feet"),
  33546. default: true
  33547. },
  33548. {
  33549. name: "Macro",
  33550. height: math.unit(150, "feet")
  33551. },
  33552. ]
  33553. ))
  33554. characterMakers.push(() => makeCharacter(
  33555. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33556. {
  33557. front: {
  33558. height: math.unit(5 + 2/12, "feet"),
  33559. weight: math.unit(120, "lb"),
  33560. name: "Front",
  33561. image: {
  33562. source: "./media/characters/timber/front.svg",
  33563. extra: 2814/2705,
  33564. bottom: 181/2995
  33565. }
  33566. },
  33567. },
  33568. [
  33569. {
  33570. name: "Normal",
  33571. height: math.unit(5 + 2/12, "feet"),
  33572. default: true
  33573. },
  33574. ]
  33575. ))
  33576. characterMakers.push(() => makeCharacter(
  33577. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33578. {
  33579. front: {
  33580. height: math.unit(9, "feet"),
  33581. name: "Front",
  33582. image: {
  33583. source: "./media/characters/nicki/front.svg",
  33584. extra: 1240/990,
  33585. bottom: 45/1285
  33586. },
  33587. form: "anthro",
  33588. default: true
  33589. },
  33590. side: {
  33591. height: math.unit(9, "feet"),
  33592. name: "Side",
  33593. image: {
  33594. source: "./media/characters/nicki/side.svg",
  33595. extra: 1047/973,
  33596. bottom: 61/1108
  33597. },
  33598. form: "anthro"
  33599. },
  33600. back: {
  33601. height: math.unit(9, "feet"),
  33602. name: "Back",
  33603. image: {
  33604. source: "./media/characters/nicki/back.svg",
  33605. extra: 1006/965,
  33606. bottom: 39/1045
  33607. },
  33608. form: "anthro"
  33609. },
  33610. taur: {
  33611. height: math.unit(15, "feet"),
  33612. name: "Taur",
  33613. image: {
  33614. source: "./media/characters/nicki/taur.svg",
  33615. extra: 1592/1347,
  33616. bottom: 0/1592
  33617. },
  33618. form: "taur",
  33619. default: true
  33620. },
  33621. },
  33622. [
  33623. {
  33624. name: "Normal",
  33625. height: math.unit(9, "feet"),
  33626. form: "anthro",
  33627. default: true
  33628. },
  33629. {
  33630. name: "Normal",
  33631. height: math.unit(15, "feet"),
  33632. form: "taur",
  33633. default: true
  33634. }
  33635. ],
  33636. {
  33637. "anthro": {
  33638. name: "Anthro",
  33639. default: true
  33640. },
  33641. "taur": {
  33642. name: "Taur"
  33643. }
  33644. }
  33645. ))
  33646. characterMakers.push(() => makeCharacter(
  33647. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33648. {
  33649. front: {
  33650. height: math.unit(7 + 10/12, "feet"),
  33651. weight: math.unit(3.5, "tons"),
  33652. name: "Front",
  33653. image: {
  33654. source: "./media/characters/lee/front.svg",
  33655. extra: 1773/1615,
  33656. bottom: 86/1859
  33657. }
  33658. },
  33659. hand: {
  33660. height: math.unit(1.78, "feet"),
  33661. name: "Hand",
  33662. image: {
  33663. source: "./media/characters/lee/hand.svg"
  33664. }
  33665. },
  33666. maw: {
  33667. height: math.unit(1.18, "feet"),
  33668. name: "Maw",
  33669. image: {
  33670. source: "./media/characters/lee/maw.svg"
  33671. }
  33672. },
  33673. },
  33674. [
  33675. {
  33676. name: "Normal",
  33677. height: math.unit(7 + 10/12, "feet"),
  33678. default: true
  33679. },
  33680. ]
  33681. ))
  33682. characterMakers.push(() => makeCharacter(
  33683. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33684. {
  33685. front: {
  33686. height: math.unit(9, "feet"),
  33687. name: "Front",
  33688. image: {
  33689. source: "./media/characters/guti/front.svg",
  33690. extra: 4551/4355,
  33691. bottom: 123/4674
  33692. }
  33693. },
  33694. tongue: {
  33695. height: math.unit(1, "feet"),
  33696. name: "Tongue",
  33697. image: {
  33698. source: "./media/characters/guti/tongue.svg"
  33699. }
  33700. },
  33701. paw: {
  33702. height: math.unit(1.18, "feet"),
  33703. name: "Paw",
  33704. image: {
  33705. source: "./media/characters/guti/paw.svg"
  33706. }
  33707. },
  33708. },
  33709. [
  33710. {
  33711. name: "Normal",
  33712. height: math.unit(9, "feet"),
  33713. default: true
  33714. },
  33715. ]
  33716. ))
  33717. characterMakers.push(() => makeCharacter(
  33718. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33719. {
  33720. side: {
  33721. height: math.unit(5, "meters"),
  33722. name: "Side",
  33723. image: {
  33724. source: "./media/characters/vesper/side.svg",
  33725. extra: 1605/1518,
  33726. bottom: 0/1605
  33727. }
  33728. },
  33729. },
  33730. [
  33731. {
  33732. name: "Small",
  33733. height: math.unit(5, "meters")
  33734. },
  33735. {
  33736. name: "Sage",
  33737. height: math.unit(100, "meters"),
  33738. default: true
  33739. },
  33740. {
  33741. name: "Fun Size",
  33742. height: math.unit(600, "meters")
  33743. },
  33744. {
  33745. name: "Goddess",
  33746. height: math.unit(20000, "km")
  33747. },
  33748. {
  33749. name: "Maximum",
  33750. height: math.unit(5, "galaxies")
  33751. },
  33752. ]
  33753. ))
  33754. characterMakers.push(() => makeCharacter(
  33755. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33756. {
  33757. front: {
  33758. height: math.unit(6 + 3/12, "feet"),
  33759. weight: math.unit(190, "lb"),
  33760. name: "Front",
  33761. image: {
  33762. source: "./media/characters/gawain/front.svg",
  33763. extra: 2222/2139,
  33764. bottom: 90/2312
  33765. }
  33766. },
  33767. back: {
  33768. height: math.unit(6 + 3/12, "feet"),
  33769. weight: math.unit(190, "lb"),
  33770. name: "Back",
  33771. image: {
  33772. source: "./media/characters/gawain/back.svg",
  33773. extra: 2199/2111,
  33774. bottom: 73/2272
  33775. }
  33776. },
  33777. },
  33778. [
  33779. {
  33780. name: "Normal",
  33781. height: math.unit(6 + 3/12, "feet"),
  33782. default: true
  33783. },
  33784. ]
  33785. ))
  33786. characterMakers.push(() => makeCharacter(
  33787. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33788. {
  33789. side: {
  33790. height: math.unit(3.5, "meters"),
  33791. weight: math.unit(16000, "lb"),
  33792. name: "Side",
  33793. image: {
  33794. source: "./media/characters/dascalti/side.svg",
  33795. extra: 392/273,
  33796. bottom: 47/439
  33797. }
  33798. },
  33799. breath: {
  33800. height: math.unit(7.4, "feet"),
  33801. name: "Breath",
  33802. image: {
  33803. source: "./media/characters/dascalti/breath.svg"
  33804. }
  33805. },
  33806. fed: {
  33807. height: math.unit(3.6, "meters"),
  33808. weight: math.unit(16000, "lb"),
  33809. name: "Fed",
  33810. image: {
  33811. source: "./media/characters/dascalti/fed.svg",
  33812. extra: 1419/820,
  33813. bottom: 95/1514
  33814. }
  33815. },
  33816. },
  33817. [
  33818. {
  33819. name: "Normal",
  33820. height: math.unit(3.5, "meters"),
  33821. default: true
  33822. },
  33823. ]
  33824. ))
  33825. characterMakers.push(() => makeCharacter(
  33826. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33827. {
  33828. front: {
  33829. height: math.unit(3 + 5/12, "feet"),
  33830. name: "Front",
  33831. image: {
  33832. source: "./media/characters/mauve/front.svg",
  33833. extra: 1126/1033,
  33834. bottom: 65/1191
  33835. }
  33836. },
  33837. side: {
  33838. height: math.unit(3 + 5/12, "feet"),
  33839. name: "Side",
  33840. image: {
  33841. source: "./media/characters/mauve/side.svg",
  33842. extra: 1089/1001,
  33843. bottom: 29/1118
  33844. }
  33845. },
  33846. back: {
  33847. height: math.unit(3 + 5/12, "feet"),
  33848. name: "Back",
  33849. image: {
  33850. source: "./media/characters/mauve/back.svg",
  33851. extra: 1173/1053,
  33852. bottom: 109/1282
  33853. }
  33854. },
  33855. },
  33856. [
  33857. {
  33858. name: "Normal",
  33859. height: math.unit(3 + 5/12, "feet"),
  33860. default: true
  33861. },
  33862. ]
  33863. ))
  33864. characterMakers.push(() => makeCharacter(
  33865. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33866. {
  33867. front: {
  33868. height: math.unit(6 + 3/12, "feet"),
  33869. weight: math.unit(430, "lb"),
  33870. name: "Front",
  33871. image: {
  33872. source: "./media/characters/carlos/front.svg",
  33873. extra: 1964/1913,
  33874. bottom: 70/2034
  33875. }
  33876. },
  33877. },
  33878. [
  33879. {
  33880. name: "Normal",
  33881. height: math.unit(6 + 3/12, "feet"),
  33882. default: true
  33883. },
  33884. ]
  33885. ))
  33886. characterMakers.push(() => makeCharacter(
  33887. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33888. {
  33889. back: {
  33890. height: math.unit(5 + 10/12, "feet"),
  33891. weight: math.unit(200, "lb"),
  33892. name: "Back",
  33893. image: {
  33894. source: "./media/characters/jax/back.svg",
  33895. extra: 764/739,
  33896. bottom: 25/789
  33897. }
  33898. },
  33899. },
  33900. [
  33901. {
  33902. name: "Normal",
  33903. height: math.unit(5 + 10/12, "feet"),
  33904. default: true
  33905. },
  33906. ]
  33907. ))
  33908. characterMakers.push(() => makeCharacter(
  33909. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33910. {
  33911. front: {
  33912. height: math.unit(8, "feet"),
  33913. weight: math.unit(250, "lb"),
  33914. name: "Front",
  33915. image: {
  33916. source: "./media/characters/eikthynir/front.svg",
  33917. extra: 1332/1166,
  33918. bottom: 82/1414
  33919. }
  33920. },
  33921. back: {
  33922. height: math.unit(8, "feet"),
  33923. weight: math.unit(250, "lb"),
  33924. name: "Back",
  33925. image: {
  33926. source: "./media/characters/eikthynir/back.svg",
  33927. extra: 1342/1190,
  33928. bottom: 19/1361
  33929. }
  33930. },
  33931. dick: {
  33932. height: math.unit(2.35, "feet"),
  33933. name: "Dick",
  33934. image: {
  33935. source: "./media/characters/eikthynir/dick.svg"
  33936. }
  33937. },
  33938. },
  33939. [
  33940. {
  33941. name: "Normal",
  33942. height: math.unit(8, "feet"),
  33943. default: true
  33944. },
  33945. ]
  33946. ))
  33947. characterMakers.push(() => makeCharacter(
  33948. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  33949. {
  33950. front: {
  33951. height: math.unit(99, "meters"),
  33952. weight: math.unit(13000, "tons"),
  33953. name: "Front",
  33954. image: {
  33955. source: "./media/characters/zlmos/front.svg",
  33956. extra: 2202/1992,
  33957. bottom: 315/2517
  33958. }
  33959. },
  33960. },
  33961. [
  33962. {
  33963. name: "Macro",
  33964. height: math.unit(99, "meters"),
  33965. default: true
  33966. },
  33967. ]
  33968. ))
  33969. characterMakers.push(() => makeCharacter(
  33970. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  33971. {
  33972. front: {
  33973. height: math.unit(6 + 5/12, "feet"),
  33974. name: "Front",
  33975. image: {
  33976. source: "./media/characters/purri/front.svg",
  33977. extra: 1698/1610,
  33978. bottom: 32/1730
  33979. }
  33980. },
  33981. frontAlt: {
  33982. height: math.unit(6 + 5/12, "feet"),
  33983. name: "Front (Alt)",
  33984. image: {
  33985. source: "./media/characters/purri/front-alt.svg",
  33986. extra: 450/420,
  33987. bottom: 26/476
  33988. }
  33989. },
  33990. boots: {
  33991. height: math.unit(5.5, "feet"),
  33992. name: "Boots",
  33993. image: {
  33994. source: "./media/characters/purri/boots.svg",
  33995. extra: 905/853,
  33996. bottom: 18/923
  33997. },
  33998. extraAttributes: {
  33999. "shoeSize": {
  34000. name: "Shoe Size",
  34001. power: 1,
  34002. type: "length",
  34003. base: math.unit(12, "ShoeSizeMensUS")
  34004. },
  34005. "platformHeight": {
  34006. name: "Platform Height",
  34007. power: 1,
  34008. type: "length",
  34009. base: math.unit(2, "inches")
  34010. },
  34011. }
  34012. },
  34013. lying: {
  34014. height: math.unit(2, "feet"),
  34015. name: "Lying",
  34016. image: {
  34017. source: "./media/characters/purri/lying.svg",
  34018. extra: 940/843,
  34019. bottom: 146/1086
  34020. }
  34021. },
  34022. devious: {
  34023. height: math.unit(1.77, "feet"),
  34024. name: "Devious",
  34025. image: {
  34026. source: "./media/characters/purri/devious.svg",
  34027. extra: 1440/1155,
  34028. bottom: 147/1587
  34029. }
  34030. },
  34031. bean: {
  34032. height: math.unit(1.94, "feet"),
  34033. name: "Bean",
  34034. image: {
  34035. source: "./media/characters/purri/bean.svg"
  34036. }
  34037. },
  34038. },
  34039. [
  34040. {
  34041. name: "Micro",
  34042. height: math.unit(1, "mm")
  34043. },
  34044. {
  34045. name: "Normal",
  34046. height: math.unit(6 + 5/12, "feet"),
  34047. default: true
  34048. },
  34049. {
  34050. name: "Macro :3c",
  34051. height: math.unit(2, "miles")
  34052. },
  34053. ]
  34054. ))
  34055. characterMakers.push(() => makeCharacter(
  34056. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34057. {
  34058. front: {
  34059. height: math.unit(6 + 2/12, "feet"),
  34060. weight: math.unit(250, "lb"),
  34061. name: "Front",
  34062. image: {
  34063. source: "./media/characters/moonlight/front.svg",
  34064. extra: 1044/908,
  34065. bottom: 56/1100
  34066. }
  34067. },
  34068. feral: {
  34069. height: math.unit(3 + 1/12, "feet"),
  34070. weight: math.unit(50, "kg"),
  34071. name: "Feral",
  34072. image: {
  34073. source: "./media/characters/moonlight/feral.svg",
  34074. extra: 3705/2791,
  34075. bottom: 145/3850
  34076. }
  34077. },
  34078. paw: {
  34079. height: math.unit(1, "feet"),
  34080. name: "Paw",
  34081. image: {
  34082. source: "./media/characters/moonlight/paw.svg"
  34083. }
  34084. },
  34085. paws: {
  34086. height: math.unit(0.98, "feet"),
  34087. name: "Paws",
  34088. image: {
  34089. source: "./media/characters/moonlight/paws.svg",
  34090. extra: 939/939,
  34091. bottom: 50/989
  34092. }
  34093. },
  34094. mouth: {
  34095. height: math.unit(0.48, "feet"),
  34096. name: "Mouth",
  34097. image: {
  34098. source: "./media/characters/moonlight/mouth.svg"
  34099. }
  34100. },
  34101. dick: {
  34102. height: math.unit(1.46, "feet"),
  34103. name: "Dick",
  34104. image: {
  34105. source: "./media/characters/moonlight/dick.svg"
  34106. }
  34107. },
  34108. },
  34109. [
  34110. {
  34111. name: "Normal",
  34112. height: math.unit(6 + 2/12, "feet"),
  34113. default: true
  34114. },
  34115. {
  34116. name: "Macro",
  34117. height: math.unit(300, "feet")
  34118. },
  34119. {
  34120. name: "Macro+",
  34121. height: math.unit(1, "mile")
  34122. },
  34123. {
  34124. name: "Mt. Moon",
  34125. height: math.unit(5, "miles")
  34126. },
  34127. {
  34128. name: "Megamacro",
  34129. height: math.unit(15, "miles")
  34130. },
  34131. ]
  34132. ))
  34133. characterMakers.push(() => makeCharacter(
  34134. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34135. {
  34136. back: {
  34137. height: math.unit(6, "feet"),
  34138. weight: math.unit(150, "lb"),
  34139. name: "Back",
  34140. image: {
  34141. source: "./media/characters/sylen/back.svg",
  34142. extra: 1335/1273,
  34143. bottom: 107/1442
  34144. }
  34145. },
  34146. },
  34147. [
  34148. {
  34149. name: "Normal",
  34150. height: math.unit(5 + 5/12, "feet")
  34151. },
  34152. {
  34153. name: "Megamacro",
  34154. height: math.unit(3, "miles"),
  34155. default: true
  34156. },
  34157. ]
  34158. ))
  34159. characterMakers.push(() => makeCharacter(
  34160. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34161. {
  34162. front: {
  34163. height: math.unit(6, "feet"),
  34164. weight: math.unit(190, "lb"),
  34165. name: "Front",
  34166. image: {
  34167. source: "./media/characters/huttser/front.svg",
  34168. extra: 1152/1058,
  34169. bottom: 23/1175
  34170. }
  34171. },
  34172. side: {
  34173. height: math.unit(6, "feet"),
  34174. weight: math.unit(190, "lb"),
  34175. name: "Side",
  34176. image: {
  34177. source: "./media/characters/huttser/side.svg",
  34178. extra: 1174/1065,
  34179. bottom: 18/1192
  34180. }
  34181. },
  34182. back: {
  34183. height: math.unit(6, "feet"),
  34184. weight: math.unit(190, "lb"),
  34185. name: "Back",
  34186. image: {
  34187. source: "./media/characters/huttser/back.svg",
  34188. extra: 1158/1056,
  34189. bottom: 12/1170
  34190. }
  34191. },
  34192. },
  34193. [
  34194. ]
  34195. ))
  34196. characterMakers.push(() => makeCharacter(
  34197. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34198. {
  34199. side: {
  34200. height: math.unit(12 + 9/12, "feet"),
  34201. weight: math.unit(15000, "lb"),
  34202. name: "Side",
  34203. image: {
  34204. source: "./media/characters/faan/side.svg",
  34205. extra: 2747/2697,
  34206. bottom: 0/2747
  34207. }
  34208. },
  34209. front: {
  34210. height: math.unit(12 + 9/12, "feet"),
  34211. weight: math.unit(15000, "lb"),
  34212. name: "Front",
  34213. image: {
  34214. source: "./media/characters/faan/front.svg",
  34215. extra: 607/571,
  34216. bottom: 24/631
  34217. }
  34218. },
  34219. head: {
  34220. height: math.unit(2.85, "feet"),
  34221. name: "Head",
  34222. image: {
  34223. source: "./media/characters/faan/head.svg"
  34224. }
  34225. },
  34226. headAlt: {
  34227. height: math.unit(3.13, "feet"),
  34228. name: "Head-alt",
  34229. image: {
  34230. source: "./media/characters/faan/head-alt.svg"
  34231. }
  34232. },
  34233. },
  34234. [
  34235. {
  34236. name: "Normal",
  34237. height: math.unit(12 + 9/12, "feet"),
  34238. default: true
  34239. },
  34240. ]
  34241. ))
  34242. characterMakers.push(() => makeCharacter(
  34243. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34244. {
  34245. front: {
  34246. height: math.unit(6, "feet"),
  34247. weight: math.unit(300, "lb"),
  34248. name: "Front",
  34249. image: {
  34250. source: "./media/characters/tanio/front.svg",
  34251. extra: 711/673,
  34252. bottom: 25/736
  34253. }
  34254. },
  34255. },
  34256. [
  34257. {
  34258. name: "Normal",
  34259. height: math.unit(6, "feet"),
  34260. default: true
  34261. },
  34262. ]
  34263. ))
  34264. characterMakers.push(() => makeCharacter(
  34265. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34266. {
  34267. front: {
  34268. height: math.unit(3, "inches"),
  34269. name: "Front",
  34270. image: {
  34271. source: "./media/characters/noboru/front.svg",
  34272. extra: 1039/932,
  34273. bottom: 18/1057
  34274. }
  34275. },
  34276. },
  34277. [
  34278. {
  34279. name: "Micro",
  34280. height: math.unit(3, "inches"),
  34281. default: true
  34282. },
  34283. ]
  34284. ))
  34285. characterMakers.push(() => makeCharacter(
  34286. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34287. {
  34288. front: {
  34289. height: math.unit(1.85, "meters"),
  34290. weight: math.unit(80, "kg"),
  34291. name: "Front",
  34292. image: {
  34293. source: "./media/characters/daniel-barrett/front.svg",
  34294. extra: 355/337,
  34295. bottom: 9/364
  34296. }
  34297. },
  34298. },
  34299. [
  34300. {
  34301. name: "Pico",
  34302. height: math.unit(0.0433, "mm")
  34303. },
  34304. {
  34305. name: "Nano",
  34306. height: math.unit(1.5, "mm")
  34307. },
  34308. {
  34309. name: "Micro",
  34310. height: math.unit(5.3, "cm"),
  34311. default: true
  34312. },
  34313. {
  34314. name: "Normal",
  34315. height: math.unit(1.85, "meters")
  34316. },
  34317. {
  34318. name: "Macro",
  34319. height: math.unit(64.7, "meters")
  34320. },
  34321. {
  34322. name: "Megamacro",
  34323. height: math.unit(2.26, "km")
  34324. },
  34325. {
  34326. name: "Gigamacro",
  34327. height: math.unit(79, "km")
  34328. },
  34329. {
  34330. name: "Teramacro",
  34331. height: math.unit(2765, "km")
  34332. },
  34333. {
  34334. name: "Petamacro",
  34335. height: math.unit(96678, "km")
  34336. },
  34337. ]
  34338. ))
  34339. characterMakers.push(() => makeCharacter(
  34340. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34341. {
  34342. front: {
  34343. height: math.unit(30, "meters"),
  34344. weight: math.unit(400, "tons"),
  34345. name: "Front",
  34346. image: {
  34347. source: "./media/characters/zeel/front.svg",
  34348. extra: 2599/2599,
  34349. bottom: 226/2825
  34350. }
  34351. },
  34352. },
  34353. [
  34354. {
  34355. name: "Macro",
  34356. height: math.unit(30, "meters"),
  34357. default: true
  34358. },
  34359. ]
  34360. ))
  34361. characterMakers.push(() => makeCharacter(
  34362. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34363. {
  34364. front: {
  34365. height: math.unit(6 + 7/12, "feet"),
  34366. weight: math.unit(210, "lb"),
  34367. name: "Front",
  34368. image: {
  34369. source: "./media/characters/tarn/front.svg",
  34370. extra: 3517/3220,
  34371. bottom: 91/3608
  34372. }
  34373. },
  34374. back: {
  34375. height: math.unit(6 + 7/12, "feet"),
  34376. weight: math.unit(210, "lb"),
  34377. name: "Back",
  34378. image: {
  34379. source: "./media/characters/tarn/back.svg",
  34380. extra: 3566/3241,
  34381. bottom: 34/3600
  34382. }
  34383. },
  34384. dick: {
  34385. height: math.unit(1.65, "feet"),
  34386. name: "Dick",
  34387. image: {
  34388. source: "./media/characters/tarn/dick.svg"
  34389. }
  34390. },
  34391. paw: {
  34392. height: math.unit(1.80, "feet"),
  34393. name: "Paw",
  34394. image: {
  34395. source: "./media/characters/tarn/paw.svg"
  34396. }
  34397. },
  34398. tongue: {
  34399. height: math.unit(0.97, "feet"),
  34400. name: "Tongue",
  34401. image: {
  34402. source: "./media/characters/tarn/tongue.svg"
  34403. }
  34404. },
  34405. },
  34406. [
  34407. {
  34408. name: "Micro",
  34409. height: math.unit(4, "inches")
  34410. },
  34411. {
  34412. name: "Normal",
  34413. height: math.unit(6 + 7/12, "feet"),
  34414. default: true
  34415. },
  34416. {
  34417. name: "Macro",
  34418. height: math.unit(300, "feet")
  34419. },
  34420. ]
  34421. ))
  34422. characterMakers.push(() => makeCharacter(
  34423. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34424. {
  34425. front: {
  34426. height: math.unit(5 + 7/12, "feet"),
  34427. weight: math.unit(80, "kg"),
  34428. name: "Front",
  34429. image: {
  34430. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34431. extra: 3023/2865,
  34432. bottom: 33/3056
  34433. }
  34434. },
  34435. back: {
  34436. height: math.unit(5 + 7/12, "feet"),
  34437. weight: math.unit(80, "kg"),
  34438. name: "Back",
  34439. image: {
  34440. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34441. extra: 3020/2886,
  34442. bottom: 30/3050
  34443. }
  34444. },
  34445. dick: {
  34446. height: math.unit(0.98, "feet"),
  34447. name: "Dick",
  34448. image: {
  34449. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34450. }
  34451. },
  34452. anatomy: {
  34453. height: math.unit(2.86, "feet"),
  34454. name: "Anatomy",
  34455. image: {
  34456. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34457. }
  34458. },
  34459. },
  34460. [
  34461. {
  34462. name: "Really Small",
  34463. height: math.unit(2, "inches")
  34464. },
  34465. {
  34466. name: "Micro",
  34467. height: math.unit(5.583, "inches")
  34468. },
  34469. {
  34470. name: "Normal",
  34471. height: math.unit(5 + 7/12, "feet"),
  34472. default: true
  34473. },
  34474. {
  34475. name: "Macro",
  34476. height: math.unit(67, "feet")
  34477. },
  34478. {
  34479. name: "Megamacro",
  34480. height: math.unit(134, "feet")
  34481. },
  34482. ]
  34483. ))
  34484. characterMakers.push(() => makeCharacter(
  34485. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34486. {
  34487. front: {
  34488. height: math.unit(9, "feet"),
  34489. weight: math.unit(120, "lb"),
  34490. name: "Front",
  34491. image: {
  34492. source: "./media/characters/sally/front.svg",
  34493. extra: 1506/1349,
  34494. bottom: 66/1572
  34495. }
  34496. },
  34497. },
  34498. [
  34499. {
  34500. name: "Normal",
  34501. height: math.unit(9, "feet"),
  34502. default: true
  34503. },
  34504. ]
  34505. ))
  34506. characterMakers.push(() => makeCharacter(
  34507. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34508. {
  34509. front: {
  34510. height: math.unit(8, "feet"),
  34511. weight: math.unit(900, "lb"),
  34512. name: "Front",
  34513. image: {
  34514. source: "./media/characters/owen/front.svg",
  34515. extra: 1761/1657,
  34516. bottom: 74/1835
  34517. }
  34518. },
  34519. side: {
  34520. height: math.unit(8, "feet"),
  34521. weight: math.unit(900, "lb"),
  34522. name: "Side",
  34523. image: {
  34524. source: "./media/characters/owen/side.svg",
  34525. extra: 1797/1734,
  34526. bottom: 30/1827
  34527. }
  34528. },
  34529. back: {
  34530. height: math.unit(8, "feet"),
  34531. weight: math.unit(900, "lb"),
  34532. name: "Back",
  34533. image: {
  34534. source: "./media/characters/owen/back.svg",
  34535. extra: 1796/1706,
  34536. bottom: 59/1855
  34537. }
  34538. },
  34539. maw: {
  34540. height: math.unit(1.76, "feet"),
  34541. name: "Maw",
  34542. image: {
  34543. source: "./media/characters/owen/maw.svg"
  34544. }
  34545. },
  34546. },
  34547. [
  34548. {
  34549. name: "Normal",
  34550. height: math.unit(8, "feet"),
  34551. default: true
  34552. },
  34553. ]
  34554. ))
  34555. characterMakers.push(() => makeCharacter(
  34556. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34557. {
  34558. front: {
  34559. height: math.unit(4, "feet"),
  34560. weight: math.unit(400, "lb"),
  34561. name: "Front",
  34562. image: {
  34563. source: "./media/characters/ryth/front.svg",
  34564. extra: 1920/1748,
  34565. bottom: 42/1962
  34566. }
  34567. },
  34568. back: {
  34569. height: math.unit(4, "feet"),
  34570. weight: math.unit(400, "lb"),
  34571. name: "Back",
  34572. image: {
  34573. source: "./media/characters/ryth/back.svg",
  34574. extra: 1897/1690,
  34575. bottom: 89/1986
  34576. }
  34577. },
  34578. mouth: {
  34579. height: math.unit(1.39, "feet"),
  34580. name: "Mouth",
  34581. image: {
  34582. source: "./media/characters/ryth/mouth.svg"
  34583. }
  34584. },
  34585. tailmaw: {
  34586. height: math.unit(1.23, "feet"),
  34587. name: "Tailmaw",
  34588. image: {
  34589. source: "./media/characters/ryth/tailmaw.svg"
  34590. }
  34591. },
  34592. goia: {
  34593. height: math.unit(4, "meters"),
  34594. weight: math.unit(10800, "lb"),
  34595. name: "Goia",
  34596. image: {
  34597. source: "./media/characters/ryth/goia.svg",
  34598. extra: 745/640,
  34599. bottom: 107/852
  34600. }
  34601. },
  34602. goiaFront: {
  34603. height: math.unit(4, "meters"),
  34604. weight: math.unit(10800, "lb"),
  34605. name: "Goia (Front)",
  34606. image: {
  34607. source: "./media/characters/ryth/goia-front.svg",
  34608. extra: 750/586,
  34609. bottom: 114/864
  34610. }
  34611. },
  34612. goiaMaw: {
  34613. height: math.unit(5.55, "feet"),
  34614. name: "Goia Maw",
  34615. image: {
  34616. source: "./media/characters/ryth/goia-maw.svg"
  34617. }
  34618. },
  34619. goiaForepaw: {
  34620. height: math.unit(3.5, "feet"),
  34621. name: "Goia Forepaw",
  34622. image: {
  34623. source: "./media/characters/ryth/goia-forepaw.svg"
  34624. }
  34625. },
  34626. goiaHindpaw: {
  34627. height: math.unit(5.55, "feet"),
  34628. name: "Goia Hindpaw",
  34629. image: {
  34630. source: "./media/characters/ryth/goia-hindpaw.svg"
  34631. }
  34632. },
  34633. },
  34634. [
  34635. {
  34636. name: "Normal",
  34637. height: math.unit(4, "feet"),
  34638. default: true
  34639. },
  34640. ]
  34641. ))
  34642. characterMakers.push(() => makeCharacter(
  34643. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34644. {
  34645. front: {
  34646. height: math.unit(7, "feet"),
  34647. weight: math.unit(180, "lb"),
  34648. name: "Front",
  34649. image: {
  34650. source: "./media/characters/necrolance/front.svg",
  34651. extra: 1062/947,
  34652. bottom: 41/1103
  34653. }
  34654. },
  34655. back: {
  34656. height: math.unit(7, "feet"),
  34657. weight: math.unit(180, "lb"),
  34658. name: "Back",
  34659. image: {
  34660. source: "./media/characters/necrolance/back.svg",
  34661. extra: 1045/984,
  34662. bottom: 14/1059
  34663. }
  34664. },
  34665. wing: {
  34666. height: math.unit(2.67, "feet"),
  34667. name: "Wing",
  34668. image: {
  34669. source: "./media/characters/necrolance/wing.svg"
  34670. }
  34671. },
  34672. },
  34673. [
  34674. {
  34675. name: "Normal",
  34676. height: math.unit(7, "feet"),
  34677. default: true
  34678. },
  34679. ]
  34680. ))
  34681. characterMakers.push(() => makeCharacter(
  34682. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34683. {
  34684. front: {
  34685. height: math.unit(76, "meters"),
  34686. weight: math.unit(30000, "tons"),
  34687. name: "Front",
  34688. image: {
  34689. source: "./media/characters/tyler/front.svg",
  34690. extra: 1640/1640,
  34691. bottom: 114/1754
  34692. }
  34693. },
  34694. },
  34695. [
  34696. {
  34697. name: "Macro",
  34698. height: math.unit(76, "meters"),
  34699. default: true
  34700. },
  34701. ]
  34702. ))
  34703. characterMakers.push(() => makeCharacter(
  34704. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34705. {
  34706. front: {
  34707. height: math.unit(4 + 11/12, "feet"),
  34708. weight: math.unit(132, "lb"),
  34709. name: "Front",
  34710. image: {
  34711. source: "./media/characters/icey/front.svg",
  34712. extra: 2750/2550,
  34713. bottom: 33/2783
  34714. }
  34715. },
  34716. back: {
  34717. height: math.unit(4 + 11/12, "feet"),
  34718. weight: math.unit(132, "lb"),
  34719. name: "Back",
  34720. image: {
  34721. source: "./media/characters/icey/back.svg",
  34722. extra: 2624/2481,
  34723. bottom: 35/2659
  34724. }
  34725. },
  34726. },
  34727. [
  34728. {
  34729. name: "Normal",
  34730. height: math.unit(4 + 11/12, "feet"),
  34731. default: true
  34732. },
  34733. ]
  34734. ))
  34735. characterMakers.push(() => makeCharacter(
  34736. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34737. {
  34738. front: {
  34739. height: math.unit(100, "feet"),
  34740. weight: math.unit(0, "lb"),
  34741. name: "Front",
  34742. image: {
  34743. source: "./media/characters/smile/front.svg",
  34744. extra: 2983/2912,
  34745. bottom: 162/3145
  34746. }
  34747. },
  34748. back: {
  34749. height: math.unit(100, "feet"),
  34750. weight: math.unit(0, "lb"),
  34751. name: "Back",
  34752. image: {
  34753. source: "./media/characters/smile/back.svg",
  34754. extra: 3143/3031,
  34755. bottom: 91/3234
  34756. }
  34757. },
  34758. head: {
  34759. height: math.unit(26.3, "feet"),
  34760. weight: math.unit(0, "lb"),
  34761. name: "Head",
  34762. image: {
  34763. source: "./media/characters/smile/head.svg"
  34764. }
  34765. },
  34766. collar: {
  34767. height: math.unit(5.3, "feet"),
  34768. weight: math.unit(0, "lb"),
  34769. name: "Collar",
  34770. image: {
  34771. source: "./media/characters/smile/collar.svg"
  34772. }
  34773. },
  34774. },
  34775. [
  34776. {
  34777. name: "Macro",
  34778. height: math.unit(100, "feet"),
  34779. default: true
  34780. },
  34781. ]
  34782. ))
  34783. characterMakers.push(() => makeCharacter(
  34784. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34785. {
  34786. dragon: {
  34787. height: math.unit(26, "feet"),
  34788. weight: math.unit(36, "tons"),
  34789. name: "Dragon",
  34790. image: {
  34791. source: "./media/characters/arimphae/dragon.svg",
  34792. extra: 1574/983,
  34793. bottom: 357/1931
  34794. }
  34795. },
  34796. drake: {
  34797. height: math.unit(9, "feet"),
  34798. weight: math.unit(1.5, "tons"),
  34799. name: "Drake",
  34800. image: {
  34801. source: "./media/characters/arimphae/drake.svg",
  34802. extra: 1120/925,
  34803. bottom: 435/1555
  34804. }
  34805. },
  34806. },
  34807. [
  34808. {
  34809. name: "Small",
  34810. height: math.unit(26*5/9, "feet")
  34811. },
  34812. {
  34813. name: "Normal",
  34814. height: math.unit(26, "feet"),
  34815. default: true
  34816. },
  34817. ]
  34818. ))
  34819. characterMakers.push(() => makeCharacter(
  34820. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34821. {
  34822. front: {
  34823. height: math.unit(8 + 9/12, "feet"),
  34824. name: "Front",
  34825. image: {
  34826. source: "./media/characters/xander/front.svg",
  34827. extra: 1237/974,
  34828. bottom: 94/1331
  34829. }
  34830. },
  34831. },
  34832. [
  34833. {
  34834. name: "Normal",
  34835. height: math.unit(8 + 9/12, "feet"),
  34836. default: true
  34837. },
  34838. {
  34839. name: "Gaze Grabber",
  34840. height: math.unit(13 + 8/12, "feet")
  34841. },
  34842. {
  34843. name: "Jaw Dropper",
  34844. height: math.unit(27, "feet")
  34845. },
  34846. {
  34847. name: "Show Stopper",
  34848. height: math.unit(136, "feet")
  34849. },
  34850. {
  34851. name: "Superstar",
  34852. height: math.unit(1.9e6, "miles")
  34853. },
  34854. ]
  34855. ))
  34856. characterMakers.push(() => makeCharacter(
  34857. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34858. {
  34859. side: {
  34860. height: math.unit(2100, "feet"),
  34861. name: "Side",
  34862. image: {
  34863. source: "./media/characters/osiris/side.svg",
  34864. extra: 1105/939,
  34865. bottom: 167/1272
  34866. }
  34867. },
  34868. },
  34869. [
  34870. {
  34871. name: "Macro",
  34872. height: math.unit(2100, "feet"),
  34873. default: true
  34874. },
  34875. ]
  34876. ))
  34877. characterMakers.push(() => makeCharacter(
  34878. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34879. {
  34880. front: {
  34881. height: math.unit(6 + 8/12, "feet"),
  34882. weight: math.unit(225, "lb"),
  34883. name: "Front",
  34884. image: {
  34885. source: "./media/characters/rhys-londe/front.svg",
  34886. extra: 2258/2141,
  34887. bottom: 188/2446
  34888. }
  34889. },
  34890. back: {
  34891. height: math.unit(6 + 8/12, "feet"),
  34892. weight: math.unit(225, "lb"),
  34893. name: "Back",
  34894. image: {
  34895. source: "./media/characters/rhys-londe/back.svg",
  34896. extra: 2237/2137,
  34897. bottom: 63/2300
  34898. }
  34899. },
  34900. frontNsfw: {
  34901. height: math.unit(6 + 8/12, "feet"),
  34902. weight: math.unit(225, "lb"),
  34903. name: "Front (NSFW)",
  34904. image: {
  34905. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34906. extra: 2258/2141,
  34907. bottom: 188/2446
  34908. }
  34909. },
  34910. backNsfw: {
  34911. height: math.unit(6 + 8/12, "feet"),
  34912. weight: math.unit(225, "lb"),
  34913. name: "Back (NSFW)",
  34914. image: {
  34915. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34916. extra: 2237/2137,
  34917. bottom: 63/2300
  34918. }
  34919. },
  34920. dick: {
  34921. height: math.unit(30, "inches"),
  34922. name: "Dick",
  34923. image: {
  34924. source: "./media/characters/rhys-londe/dick.svg"
  34925. }
  34926. },
  34927. maw: {
  34928. height: math.unit(1.6, "feet"),
  34929. name: "Maw",
  34930. image: {
  34931. source: "./media/characters/rhys-londe/maw.svg"
  34932. }
  34933. },
  34934. },
  34935. [
  34936. {
  34937. name: "Normal",
  34938. height: math.unit(6 + 8/12, "feet"),
  34939. default: true
  34940. },
  34941. ]
  34942. ))
  34943. characterMakers.push(() => makeCharacter(
  34944. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  34945. {
  34946. front: {
  34947. height: math.unit(3 + 10/12, "feet"),
  34948. weight: math.unit(90, "lb"),
  34949. name: "Front",
  34950. image: {
  34951. source: "./media/characters/taivas-ensim/front.svg",
  34952. extra: 1327/1216,
  34953. bottom: 96/1423
  34954. }
  34955. },
  34956. back: {
  34957. height: math.unit(3 + 10/12, "feet"),
  34958. weight: math.unit(90, "lb"),
  34959. name: "Back",
  34960. image: {
  34961. source: "./media/characters/taivas-ensim/back.svg",
  34962. extra: 1355/1247,
  34963. bottom: 11/1366
  34964. }
  34965. },
  34966. frontNsfw: {
  34967. height: math.unit(3 + 10/12, "feet"),
  34968. weight: math.unit(90, "lb"),
  34969. name: "Front (NSFW)",
  34970. image: {
  34971. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  34972. extra: 1327/1216,
  34973. bottom: 96/1423
  34974. }
  34975. },
  34976. backNsfw: {
  34977. height: math.unit(3 + 10/12, "feet"),
  34978. weight: math.unit(90, "lb"),
  34979. name: "Back (NSFW)",
  34980. image: {
  34981. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  34982. extra: 1355/1247,
  34983. bottom: 11/1366
  34984. }
  34985. },
  34986. },
  34987. [
  34988. {
  34989. name: "Normal",
  34990. height: math.unit(3 + 10/12, "feet"),
  34991. default: true
  34992. },
  34993. ]
  34994. ))
  34995. characterMakers.push(() => makeCharacter(
  34996. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  34997. {
  34998. front: {
  34999. height: math.unit(9 + 6/12, "feet"),
  35000. weight: math.unit(940, "lb"),
  35001. name: "Front",
  35002. image: {
  35003. source: "./media/characters/byliss/front.svg",
  35004. extra: 1327/1290,
  35005. bottom: 82/1409
  35006. }
  35007. },
  35008. back: {
  35009. height: math.unit(9 + 6/12, "feet"),
  35010. weight: math.unit(940, "lb"),
  35011. name: "Back",
  35012. image: {
  35013. source: "./media/characters/byliss/back.svg",
  35014. extra: 1376/1349,
  35015. bottom: 9/1385
  35016. }
  35017. },
  35018. frontNsfw: {
  35019. height: math.unit(9 + 6/12, "feet"),
  35020. weight: math.unit(940, "lb"),
  35021. name: "Front (NSFW)",
  35022. image: {
  35023. source: "./media/characters/byliss/front-nsfw.svg",
  35024. extra: 1327/1290,
  35025. bottom: 82/1409
  35026. }
  35027. },
  35028. backNsfw: {
  35029. height: math.unit(9 + 6/12, "feet"),
  35030. weight: math.unit(940, "lb"),
  35031. name: "Back (NSFW)",
  35032. image: {
  35033. source: "./media/characters/byliss/back-nsfw.svg",
  35034. extra: 1376/1349,
  35035. bottom: 9/1385
  35036. }
  35037. },
  35038. },
  35039. [
  35040. {
  35041. name: "Normal",
  35042. height: math.unit(9 + 6/12, "feet"),
  35043. default: true
  35044. },
  35045. ]
  35046. ))
  35047. characterMakers.push(() => makeCharacter(
  35048. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35049. {
  35050. front: {
  35051. height: math.unit(5 + 2/12, "feet"),
  35052. weight: math.unit(200, "lb"),
  35053. name: "Front",
  35054. image: {
  35055. source: "./media/characters/noraly/front.svg",
  35056. extra: 4985/4773,
  35057. bottom: 150/5135
  35058. }
  35059. },
  35060. full: {
  35061. height: math.unit(5 + 2/12, "feet"),
  35062. weight: math.unit(164, "lb"),
  35063. name: "Full",
  35064. image: {
  35065. source: "./media/characters/noraly/full.svg",
  35066. extra: 1114/1059,
  35067. bottom: 35/1149
  35068. }
  35069. },
  35070. fuller: {
  35071. height: math.unit(5 + 2/12, "feet"),
  35072. weight: math.unit(230, "lb"),
  35073. name: "Fuller",
  35074. image: {
  35075. source: "./media/characters/noraly/fuller.svg",
  35076. extra: 1114/1059,
  35077. bottom: 35/1149
  35078. }
  35079. },
  35080. fullest: {
  35081. height: math.unit(5 + 2/12, "feet"),
  35082. weight: math.unit(300, "lb"),
  35083. name: "Fullest",
  35084. image: {
  35085. source: "./media/characters/noraly/fullest.svg",
  35086. extra: 1114/1059,
  35087. bottom: 35/1149
  35088. }
  35089. },
  35090. },
  35091. [
  35092. {
  35093. name: "Normal",
  35094. height: math.unit(5 + 2/12, "feet"),
  35095. default: true
  35096. },
  35097. ]
  35098. ))
  35099. characterMakers.push(() => makeCharacter(
  35100. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35101. {
  35102. front: {
  35103. height: math.unit(5 + 2/12, "feet"),
  35104. weight: math.unit(210, "lb"),
  35105. name: "Front",
  35106. image: {
  35107. source: "./media/characters/pera/front.svg",
  35108. extra: 1560/1531,
  35109. bottom: 165/1725
  35110. }
  35111. },
  35112. back: {
  35113. height: math.unit(5 + 2/12, "feet"),
  35114. weight: math.unit(210, "lb"),
  35115. name: "Back",
  35116. image: {
  35117. source: "./media/characters/pera/back.svg",
  35118. extra: 1523/1493,
  35119. bottom: 152/1675
  35120. }
  35121. },
  35122. dick: {
  35123. height: math.unit(2.4, "feet"),
  35124. name: "Dick",
  35125. image: {
  35126. source: "./media/characters/pera/dick.svg"
  35127. }
  35128. },
  35129. },
  35130. [
  35131. {
  35132. name: "Normal",
  35133. height: math.unit(5 + 2/12, "feet"),
  35134. default: true
  35135. },
  35136. ]
  35137. ))
  35138. characterMakers.push(() => makeCharacter(
  35139. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35140. {
  35141. front: {
  35142. height: math.unit(12, "feet"),
  35143. weight: math.unit(3200, "lb"),
  35144. name: "Front",
  35145. image: {
  35146. source: "./media/characters/julian/front.svg",
  35147. extra: 2962/2701,
  35148. bottom: 184/3146
  35149. }
  35150. },
  35151. maw: {
  35152. height: math.unit(5.35, "feet"),
  35153. name: "Maw",
  35154. image: {
  35155. source: "./media/characters/julian/maw.svg"
  35156. }
  35157. },
  35158. paw: {
  35159. height: math.unit(3.07, "feet"),
  35160. name: "Paw",
  35161. image: {
  35162. source: "./media/characters/julian/paw.svg"
  35163. }
  35164. },
  35165. },
  35166. [
  35167. {
  35168. name: "Default",
  35169. height: math.unit(12, "feet"),
  35170. default: true
  35171. },
  35172. {
  35173. name: "Big",
  35174. height: math.unit(50, "feet")
  35175. },
  35176. {
  35177. name: "Really Big",
  35178. height: math.unit(1, "mile")
  35179. },
  35180. {
  35181. name: "Extremely Big",
  35182. height: math.unit(100, "miles")
  35183. },
  35184. {
  35185. name: "Planet Hugger",
  35186. height: math.unit(200, "megameters")
  35187. },
  35188. {
  35189. name: "Unreasonably Big",
  35190. height: math.unit(1e300, "meters")
  35191. },
  35192. ]
  35193. ))
  35194. characterMakers.push(() => makeCharacter(
  35195. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35196. {
  35197. solgooleo: {
  35198. height: math.unit(4, "meters"),
  35199. weight: math.unit(6000*1.5, "kg"),
  35200. volume: math.unit(6000, "liters"),
  35201. name: "Solgooleo",
  35202. image: {
  35203. source: "./media/characters/pi/solgooleo.svg",
  35204. extra: 388/331,
  35205. bottom: 29/417
  35206. }
  35207. },
  35208. },
  35209. [
  35210. {
  35211. name: "Normal",
  35212. height: math.unit(4, "meters"),
  35213. default: true
  35214. },
  35215. ]
  35216. ))
  35217. characterMakers.push(() => makeCharacter(
  35218. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35219. {
  35220. front: {
  35221. height: math.unit(8, "feet"),
  35222. weight: math.unit(4, "tons"),
  35223. name: "Front",
  35224. image: {
  35225. source: "./media/characters/shaun/front.svg",
  35226. extra: 503/495,
  35227. bottom: 20/523
  35228. }
  35229. },
  35230. back: {
  35231. height: math.unit(8, "feet"),
  35232. weight: math.unit(4, "tons"),
  35233. name: "Back",
  35234. image: {
  35235. source: "./media/characters/shaun/back.svg",
  35236. extra: 487/480,
  35237. bottom: 20/507
  35238. }
  35239. },
  35240. },
  35241. [
  35242. {
  35243. name: "Lorg",
  35244. height: math.unit(8, "feet"),
  35245. default: true
  35246. },
  35247. ]
  35248. ))
  35249. characterMakers.push(() => makeCharacter(
  35250. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35251. {
  35252. frontAnthro: {
  35253. height: math.unit(7, "feet"),
  35254. name: "Front",
  35255. image: {
  35256. source: "./media/characters/sini/front-anthro.svg",
  35257. extra: 726/678,
  35258. bottom: 35/761
  35259. },
  35260. form: "anthro",
  35261. default: true
  35262. },
  35263. backAnthro: {
  35264. height: math.unit(7, "feet"),
  35265. name: "Back",
  35266. image: {
  35267. source: "./media/characters/sini/back-anthro.svg",
  35268. extra: 743/701,
  35269. bottom: 12/755
  35270. },
  35271. form: "anthro",
  35272. },
  35273. frontAnthroNsfw: {
  35274. height: math.unit(7, "feet"),
  35275. name: "Front (NSFW)",
  35276. image: {
  35277. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35278. extra: 726/678,
  35279. bottom: 35/761
  35280. },
  35281. form: "anthro"
  35282. },
  35283. backAnthroNsfw: {
  35284. height: math.unit(7, "feet"),
  35285. name: "Back (NSFW)",
  35286. image: {
  35287. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35288. extra: 743/701,
  35289. bottom: 12/755
  35290. },
  35291. form: "anthro",
  35292. },
  35293. mawAnthro: {
  35294. height: math.unit(2.14, "feet"),
  35295. name: "Maw",
  35296. image: {
  35297. source: "./media/characters/sini/maw-anthro.svg"
  35298. },
  35299. form: "anthro"
  35300. },
  35301. dick: {
  35302. height: math.unit(1.45, "feet"),
  35303. name: "Dick",
  35304. image: {
  35305. source: "./media/characters/sini/dick-anthro.svg"
  35306. },
  35307. form: "anthro"
  35308. },
  35309. feral: {
  35310. height: math.unit(16, "feet"),
  35311. name: "Feral",
  35312. image: {
  35313. source: "./media/characters/sini/feral.svg",
  35314. extra: 814/605,
  35315. bottom: 11/825
  35316. },
  35317. form: "feral",
  35318. default: true
  35319. },
  35320. feralNsfw: {
  35321. height: math.unit(16, "feet"),
  35322. name: "Feral (NSFW)",
  35323. image: {
  35324. source: "./media/characters/sini/feral-nsfw.svg",
  35325. extra: 814/605,
  35326. bottom: 11/825
  35327. },
  35328. form: "feral"
  35329. },
  35330. mawFeral: {
  35331. height: math.unit(5.66, "feet"),
  35332. name: "Maw",
  35333. image: {
  35334. source: "./media/characters/sini/maw-feral.svg"
  35335. },
  35336. form: "feral",
  35337. },
  35338. pawFeral: {
  35339. height: math.unit(5.17, "feet"),
  35340. name: "Paw",
  35341. image: {
  35342. source: "./media/characters/sini/paw-feral.svg"
  35343. },
  35344. form: "feral",
  35345. },
  35346. rumpFeral: {
  35347. height: math.unit(13.11, "feet"),
  35348. name: "Rump",
  35349. image: {
  35350. source: "./media/characters/sini/rump-feral.svg"
  35351. },
  35352. form: "feral",
  35353. },
  35354. dickFeral: {
  35355. height: math.unit(1, "feet"),
  35356. name: "Dick",
  35357. image: {
  35358. source: "./media/characters/sini/dick-feral.svg"
  35359. },
  35360. form: "feral",
  35361. },
  35362. eyeFeral: {
  35363. height: math.unit(1.23, "feet"),
  35364. name: "Eye",
  35365. image: {
  35366. source: "./media/characters/sini/eye-feral.svg"
  35367. },
  35368. form: "feral",
  35369. },
  35370. },
  35371. [
  35372. {
  35373. name: "Normal",
  35374. height: math.unit(7, "feet"),
  35375. default: true,
  35376. form: "anthro"
  35377. },
  35378. {
  35379. name: "Normal",
  35380. height: math.unit(16, "feet"),
  35381. default: true,
  35382. form: "feral"
  35383. },
  35384. ],
  35385. {
  35386. "anthro": {
  35387. name: "Anthro",
  35388. default: true
  35389. },
  35390. "feral": {
  35391. name: "Feral",
  35392. }
  35393. }
  35394. ))
  35395. characterMakers.push(() => makeCharacter(
  35396. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35397. {
  35398. side: {
  35399. height: math.unit(47.2, "meters"),
  35400. weight: math.unit(10000, "tons"),
  35401. name: "Side",
  35402. image: {
  35403. source: "./media/characters/raylldo/side.svg",
  35404. extra: 2363/642,
  35405. bottom: 221/2584
  35406. }
  35407. },
  35408. top: {
  35409. height: math.unit(240, "meters"),
  35410. weight: math.unit(10000, "tons"),
  35411. name: "Top",
  35412. image: {
  35413. source: "./media/characters/raylldo/top.svg"
  35414. }
  35415. },
  35416. bottom: {
  35417. height: math.unit(240, "meters"),
  35418. weight: math.unit(10000, "tons"),
  35419. name: "Bottom",
  35420. image: {
  35421. source: "./media/characters/raylldo/bottom.svg"
  35422. }
  35423. },
  35424. head: {
  35425. height: math.unit(38.6, "meters"),
  35426. name: "Head",
  35427. image: {
  35428. source: "./media/characters/raylldo/head.svg",
  35429. extra: 1335/1112,
  35430. bottom: 0/1335
  35431. }
  35432. },
  35433. maw: {
  35434. height: math.unit(16.37, "meters"),
  35435. name: "Maw",
  35436. image: {
  35437. source: "./media/characters/raylldo/maw.svg",
  35438. extra: 883/660,
  35439. bottom: 0/883
  35440. },
  35441. extraAttributes: {
  35442. preyCapacity: {
  35443. name: "Capacity",
  35444. power: 3,
  35445. type: "volume",
  35446. base: math.unit(1000, "people")
  35447. },
  35448. tongueSize: {
  35449. name: "Tongue Size",
  35450. power: 2,
  35451. type: "area",
  35452. base: math.unit(21, "m^2")
  35453. }
  35454. }
  35455. },
  35456. forepaw: {
  35457. height: math.unit(18, "meters"),
  35458. name: "Forepaw",
  35459. image: {
  35460. source: "./media/characters/raylldo/forepaw.svg"
  35461. }
  35462. },
  35463. hindpaw: {
  35464. height: math.unit(23, "meters"),
  35465. name: "Hindpaw",
  35466. image: {
  35467. source: "./media/characters/raylldo/hindpaw.svg"
  35468. }
  35469. },
  35470. genitals: {
  35471. height: math.unit(42, "meters"),
  35472. name: "Genitals",
  35473. image: {
  35474. source: "./media/characters/raylldo/genitals.svg"
  35475. }
  35476. },
  35477. },
  35478. [
  35479. {
  35480. name: "Normal",
  35481. height: math.unit(47.2, "meters"),
  35482. default: true
  35483. },
  35484. ]
  35485. ))
  35486. characterMakers.push(() => makeCharacter(
  35487. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35488. {
  35489. anthroFront: {
  35490. height: math.unit(9, "feet"),
  35491. weight: math.unit(600, "lb"),
  35492. name: "Anthro (Front)",
  35493. image: {
  35494. source: "./media/characters/glint/anthro-front.svg",
  35495. extra: 1097/1018,
  35496. bottom: 28/1125
  35497. }
  35498. },
  35499. anthroBack: {
  35500. height: math.unit(9, "feet"),
  35501. weight: math.unit(600, "lb"),
  35502. name: "Anthro (Back)",
  35503. image: {
  35504. source: "./media/characters/glint/anthro-back.svg",
  35505. extra: 1154/997,
  35506. bottom: 36/1190
  35507. }
  35508. },
  35509. feral: {
  35510. height: math.unit(11, "feet"),
  35511. weight: math.unit(50000, "lb"),
  35512. name: "Feral",
  35513. image: {
  35514. source: "./media/characters/glint/feral.svg",
  35515. extra: 3035/1585,
  35516. bottom: 1169/4204
  35517. }
  35518. },
  35519. dickAnthro: {
  35520. height: math.unit(0.7, "meters"),
  35521. name: "Dick (Anthro)",
  35522. image: {
  35523. source: "./media/characters/glint/dick-anthro.svg"
  35524. }
  35525. },
  35526. dickFeral: {
  35527. height: math.unit(2.65, "meters"),
  35528. name: "Dick (Feral)",
  35529. image: {
  35530. source: "./media/characters/glint/dick-feral.svg"
  35531. }
  35532. },
  35533. slitHidden: {
  35534. height: math.unit(5.85, "meters"),
  35535. name: "Slit (Hidden)",
  35536. image: {
  35537. source: "./media/characters/glint/slit-hidden.svg"
  35538. }
  35539. },
  35540. slitErect: {
  35541. height: math.unit(5.85, "meters"),
  35542. name: "Slit (Erect)",
  35543. image: {
  35544. source: "./media/characters/glint/slit-erect.svg"
  35545. }
  35546. },
  35547. mawAnthro: {
  35548. height: math.unit(0.63, "meters"),
  35549. name: "Maw (Anthro)",
  35550. image: {
  35551. source: "./media/characters/glint/maw.svg"
  35552. }
  35553. },
  35554. mawFeral: {
  35555. height: math.unit(2.89, "meters"),
  35556. name: "Maw (Feral)",
  35557. image: {
  35558. source: "./media/characters/glint/maw.svg"
  35559. }
  35560. },
  35561. },
  35562. [
  35563. {
  35564. name: "Normal",
  35565. height: math.unit(9, "feet"),
  35566. default: true
  35567. },
  35568. ]
  35569. ))
  35570. characterMakers.push(() => makeCharacter(
  35571. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35572. {
  35573. side: {
  35574. height: math.unit(15, "feet"),
  35575. weight: math.unit(5000, "kg"),
  35576. name: "Side",
  35577. image: {
  35578. source: "./media/characters/kairne/side.svg",
  35579. extra: 979/811,
  35580. bottom: 13/992
  35581. }
  35582. },
  35583. front: {
  35584. height: math.unit(15, "feet"),
  35585. weight: math.unit(5000, "kg"),
  35586. name: "Front",
  35587. image: {
  35588. source: "./media/characters/kairne/front.svg",
  35589. extra: 908/814,
  35590. bottom: 26/934
  35591. }
  35592. },
  35593. sideNsfw: {
  35594. height: math.unit(15, "feet"),
  35595. weight: math.unit(5000, "kg"),
  35596. name: "Side (NSFW)",
  35597. image: {
  35598. source: "./media/characters/kairne/side-nsfw.svg",
  35599. extra: 979/811,
  35600. bottom: 13/992
  35601. }
  35602. },
  35603. frontNsfw: {
  35604. height: math.unit(15, "feet"),
  35605. weight: math.unit(5000, "kg"),
  35606. name: "Front (NSFW)",
  35607. image: {
  35608. source: "./media/characters/kairne/front-nsfw.svg",
  35609. extra: 908/814,
  35610. bottom: 26/934
  35611. }
  35612. },
  35613. dickCaged: {
  35614. height: math.unit(0.65, "meters"),
  35615. name: "Dick-caged",
  35616. image: {
  35617. source: "./media/characters/kairne/dick-caged.svg"
  35618. }
  35619. },
  35620. dick: {
  35621. height: math.unit(0.79, "meters"),
  35622. name: "Dick",
  35623. image: {
  35624. source: "./media/characters/kairne/dick.svg"
  35625. }
  35626. },
  35627. genitals: {
  35628. height: math.unit(1.29, "meters"),
  35629. name: "Genitals",
  35630. image: {
  35631. source: "./media/characters/kairne/genitals.svg"
  35632. }
  35633. },
  35634. maw: {
  35635. height: math.unit(1.73, "meters"),
  35636. name: "Maw",
  35637. image: {
  35638. source: "./media/characters/kairne/maw.svg"
  35639. }
  35640. },
  35641. },
  35642. [
  35643. {
  35644. name: "Normal",
  35645. height: math.unit(15, "feet"),
  35646. default: true
  35647. },
  35648. ]
  35649. ))
  35650. characterMakers.push(() => makeCharacter(
  35651. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35652. {
  35653. front: {
  35654. height: math.unit(5 + 8/12, "feet"),
  35655. weight: math.unit(139, "lb"),
  35656. name: "Front",
  35657. image: {
  35658. source: "./media/characters/biscuit-jackal/front.svg",
  35659. extra: 2106/1961,
  35660. bottom: 58/2164
  35661. }
  35662. },
  35663. back: {
  35664. height: math.unit(5 + 8/12, "feet"),
  35665. weight: math.unit(139, "lb"),
  35666. name: "Back",
  35667. image: {
  35668. source: "./media/characters/biscuit-jackal/back.svg",
  35669. extra: 2132/1976,
  35670. bottom: 57/2189
  35671. }
  35672. },
  35673. werejackal: {
  35674. height: math.unit(6 + 3/12, "feet"),
  35675. weight: math.unit(188, "lb"),
  35676. name: "Werejackal",
  35677. image: {
  35678. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35679. extra: 2373/2178,
  35680. bottom: 53/2426
  35681. }
  35682. },
  35683. },
  35684. [
  35685. {
  35686. name: "Normal",
  35687. height: math.unit(5 + 8/12, "feet"),
  35688. default: true
  35689. },
  35690. ]
  35691. ))
  35692. characterMakers.push(() => makeCharacter(
  35693. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35694. {
  35695. front: {
  35696. height: math.unit(140, "cm"),
  35697. weight: math.unit(45, "kg"),
  35698. name: "Front",
  35699. image: {
  35700. source: "./media/characters/tayra-white/front.svg",
  35701. extra: 2229/2192,
  35702. bottom: 75/2304
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Normal",
  35709. height: math.unit(140, "cm"),
  35710. default: true
  35711. },
  35712. ]
  35713. ))
  35714. characterMakers.push(() => makeCharacter(
  35715. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35716. {
  35717. front: {
  35718. height: math.unit(4 + 5/12, "feet"),
  35719. name: "Front",
  35720. image: {
  35721. source: "./media/characters/scoop/front.svg",
  35722. extra: 1257/1136,
  35723. bottom: 69/1326
  35724. }
  35725. },
  35726. back: {
  35727. height: math.unit(4 + 5/12, "feet"),
  35728. name: "Back",
  35729. image: {
  35730. source: "./media/characters/scoop/back.svg",
  35731. extra: 1321/1152,
  35732. bottom: 32/1353
  35733. }
  35734. },
  35735. maw: {
  35736. height: math.unit(0.68, "feet"),
  35737. name: "Maw",
  35738. image: {
  35739. source: "./media/characters/scoop/maw.svg"
  35740. }
  35741. },
  35742. },
  35743. [
  35744. {
  35745. name: "Really Small",
  35746. height: math.unit(1, "mm")
  35747. },
  35748. {
  35749. name: "Micro",
  35750. height: math.unit(1, "inch")
  35751. },
  35752. {
  35753. name: "Normal",
  35754. height: math.unit(4 + 5/12, "feet"),
  35755. default: true
  35756. },
  35757. {
  35758. name: "Macro",
  35759. height: math.unit(200, "feet")
  35760. },
  35761. {
  35762. name: "Megamacro",
  35763. height: math.unit(3240, "feet")
  35764. },
  35765. {
  35766. name: "Teramacro",
  35767. height: math.unit(2500, "miles")
  35768. },
  35769. ]
  35770. ))
  35771. characterMakers.push(() => makeCharacter(
  35772. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35773. {
  35774. front: {
  35775. height: math.unit(15 + 7/12, "feet"),
  35776. weight: math.unit(1150, "tons"),
  35777. name: "Front",
  35778. image: {
  35779. source: "./media/characters/saphinara/front.svg",
  35780. extra: 1837/1643,
  35781. bottom: 84/1921
  35782. },
  35783. form: "normal",
  35784. default: true
  35785. },
  35786. side: {
  35787. height: math.unit(15 + 7/12, "feet"),
  35788. weight: math.unit(1150, "tons"),
  35789. name: "Side",
  35790. image: {
  35791. source: "./media/characters/saphinara/side.svg",
  35792. extra: 605/547,
  35793. bottom: 6/611
  35794. },
  35795. form: "normal"
  35796. },
  35797. back: {
  35798. height: math.unit(15 + 7/12, "feet"),
  35799. weight: math.unit(1150, "tons"),
  35800. name: "Back",
  35801. image: {
  35802. source: "./media/characters/saphinara/back.svg",
  35803. extra: 591/531,
  35804. bottom: 13/604
  35805. },
  35806. form: "normal"
  35807. },
  35808. frontTail: {
  35809. height: math.unit(15 + 7/12, "feet"),
  35810. weight: math.unit(1150, "tons"),
  35811. name: "Front (Full Tail)",
  35812. image: {
  35813. source: "./media/characters/saphinara/front-tail.svg",
  35814. extra: 2256/1630,
  35815. bottom: 261/2517
  35816. },
  35817. form: "normal"
  35818. },
  35819. insides: {
  35820. height: math.unit(11.92, "feet"),
  35821. name: "Insides",
  35822. image: {
  35823. source: "./media/characters/saphinara/insides.svg"
  35824. },
  35825. form: "normal"
  35826. },
  35827. head: {
  35828. height: math.unit(4.17, "feet"),
  35829. name: "Head",
  35830. image: {
  35831. source: "./media/characters/saphinara/head.svg"
  35832. },
  35833. form: "normal"
  35834. },
  35835. tongue: {
  35836. height: math.unit(4.60, "feet"),
  35837. name: "Tongue",
  35838. image: {
  35839. source: "./media/characters/saphinara/tongue.svg"
  35840. },
  35841. form: "normal"
  35842. },
  35843. headEnraged: {
  35844. height: math.unit(5.55, "feet"),
  35845. name: "Head (Enraged)",
  35846. image: {
  35847. source: "./media/characters/saphinara/head-enraged.svg"
  35848. },
  35849. form: "normal"
  35850. },
  35851. wings: {
  35852. height: math.unit(11.95, "feet"),
  35853. name: "Wings",
  35854. image: {
  35855. source: "./media/characters/saphinara/wings.svg"
  35856. },
  35857. form: "normal"
  35858. },
  35859. feathers: {
  35860. height: math.unit(8.92, "feet"),
  35861. name: "Feathers",
  35862. image: {
  35863. source: "./media/characters/saphinara/feathers.svg"
  35864. },
  35865. form: "normal"
  35866. },
  35867. shackles: {
  35868. height: math.unit(2, "feet"),
  35869. name: "Shackles",
  35870. image: {
  35871. source: "./media/characters/saphinara/shackles.svg"
  35872. },
  35873. form: "normal"
  35874. },
  35875. eyes: {
  35876. height: math.unit(1.331, "feet"),
  35877. name: "Eyes",
  35878. image: {
  35879. source: "./media/characters/saphinara/eyes.svg"
  35880. },
  35881. form: "normal"
  35882. },
  35883. eyesEnraged: {
  35884. height: math.unit(1.331, "feet"),
  35885. name: "Eyes (Enraged)",
  35886. image: {
  35887. source: "./media/characters/saphinara/eyes-enraged.svg"
  35888. },
  35889. form: "normal"
  35890. },
  35891. trueFormSide: {
  35892. height: math.unit(200, "feet"),
  35893. weight: math.unit(1e7, "tons"),
  35894. name: "Side",
  35895. image: {
  35896. source: "./media/characters/saphinara/true-form-side.svg",
  35897. extra: 1399/770,
  35898. bottom: 97/1496
  35899. },
  35900. form: "true-form",
  35901. default: true
  35902. },
  35903. trueFormMaw: {
  35904. height: math.unit(71.5, "feet"),
  35905. name: "Maw",
  35906. image: {
  35907. source: "./media/characters/saphinara/true-form-maw.svg",
  35908. extra: 2302/1453,
  35909. bottom: 0/2302
  35910. },
  35911. form: "true-form"
  35912. },
  35913. meowberusSide: {
  35914. height: math.unit(75, "feet"),
  35915. weight: math.unit(180000, "kg"),
  35916. preyCapacity: math.unit(50000, "people"),
  35917. name: "Side",
  35918. image: {
  35919. source: "./media/characters/saphinara/meowberus-side.svg",
  35920. extra: 1400/711,
  35921. bottom: 126/1526
  35922. },
  35923. form: "meowberus",
  35924. extraAttributes: {
  35925. "pawArea": {
  35926. name: "Paw Size",
  35927. power: 2,
  35928. type: "area",
  35929. base: math.unit(35, "m^2")
  35930. }
  35931. }
  35932. },
  35933. },
  35934. [
  35935. {
  35936. name: "Normal",
  35937. height: math.unit(15 + 7/12, "feet"),
  35938. default: true,
  35939. form: "normal"
  35940. },
  35941. {
  35942. name: "Angry",
  35943. height: math.unit(30 + 6/12, "feet"),
  35944. form: "normal"
  35945. },
  35946. {
  35947. name: "Enraged",
  35948. height: math.unit(102 + 1/12, "feet"),
  35949. form: "normal"
  35950. },
  35951. {
  35952. name: "True",
  35953. height: math.unit(200, "feet"),
  35954. default: true,
  35955. form: "true-form"
  35956. },
  35957. {
  35958. name: "Normal",
  35959. height: math.unit(75, "feet"),
  35960. default: true,
  35961. form: "meowberus"
  35962. },
  35963. ],
  35964. {
  35965. "normal": {
  35966. name: "Normal",
  35967. default: true
  35968. },
  35969. "true-form": {
  35970. name: "True Form"
  35971. },
  35972. "meowberus": {
  35973. name: "Meowberus",
  35974. },
  35975. }
  35976. ))
  35977. characterMakers.push(() => makeCharacter(
  35978. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  35979. {
  35980. front: {
  35981. height: math.unit(6 + 8/12, "feet"),
  35982. weight: math.unit(300, "lb"),
  35983. name: "Front",
  35984. image: {
  35985. source: "./media/characters/jrain/front.svg",
  35986. extra: 3039/2865,
  35987. bottom: 399/3438
  35988. }
  35989. },
  35990. back: {
  35991. height: math.unit(6 + 8/12, "feet"),
  35992. weight: math.unit(300, "lb"),
  35993. name: "Back",
  35994. image: {
  35995. source: "./media/characters/jrain/back.svg",
  35996. extra: 3089/2938,
  35997. bottom: 172/3261
  35998. }
  35999. },
  36000. head: {
  36001. height: math.unit(2.14, "feet"),
  36002. name: "Head",
  36003. image: {
  36004. source: "./media/characters/jrain/head.svg"
  36005. }
  36006. },
  36007. maw: {
  36008. height: math.unit(1.77, "feet"),
  36009. name: "Maw",
  36010. image: {
  36011. source: "./media/characters/jrain/maw.svg"
  36012. }
  36013. },
  36014. leftHand: {
  36015. height: math.unit(1.1, "feet"),
  36016. name: "Left Hand",
  36017. image: {
  36018. source: "./media/characters/jrain/left-hand.svg"
  36019. }
  36020. },
  36021. rightHand: {
  36022. height: math.unit(1.1, "feet"),
  36023. name: "Right Hand",
  36024. image: {
  36025. source: "./media/characters/jrain/right-hand.svg"
  36026. }
  36027. },
  36028. eye: {
  36029. height: math.unit(0.35, "feet"),
  36030. name: "Eye",
  36031. image: {
  36032. source: "./media/characters/jrain/eye.svg"
  36033. }
  36034. },
  36035. },
  36036. [
  36037. {
  36038. name: "Normal",
  36039. height: math.unit(6 + 8/12, "feet"),
  36040. default: true
  36041. },
  36042. {
  36043. name: "Casually Large",
  36044. height: math.unit(25, "feet")
  36045. },
  36046. {
  36047. name: "Giant",
  36048. height: math.unit(100, "feet")
  36049. },
  36050. {
  36051. name: "Kaiju",
  36052. height: math.unit(300, "feet")
  36053. },
  36054. ]
  36055. ))
  36056. characterMakers.push(() => makeCharacter(
  36057. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36058. {
  36059. dragon: {
  36060. height: math.unit(5, "meters"),
  36061. name: "Dragon",
  36062. image: {
  36063. source: "./media/characters/sabrina/dragon.svg",
  36064. extra: 3670 / 2365,
  36065. bottom: 333 / 4003
  36066. }
  36067. },
  36068. gryphon: {
  36069. height: math.unit(3, "meters"),
  36070. name: "Gryphon",
  36071. image: {
  36072. source: "./media/characters/sabrina/gryphon.svg",
  36073. extra: 1576 / 945,
  36074. bottom: 71 / 1647
  36075. }
  36076. },
  36077. snake: {
  36078. height: math.unit(12, "meters"),
  36079. name: "Snake",
  36080. image: {
  36081. source: "./media/characters/sabrina/snake.svg",
  36082. extra: 1758 / 1320,
  36083. bottom: 186 / 1944
  36084. }
  36085. },
  36086. collar: {
  36087. height: math.unit(1.86, "meters"),
  36088. name: "Collar",
  36089. image: {
  36090. source: "./media/characters/sabrina/collar.svg"
  36091. }
  36092. },
  36093. eye: {
  36094. height: math.unit(0.53, "meters"),
  36095. name: "Eye",
  36096. image: {
  36097. source: "./media/characters/sabrina/eye.svg"
  36098. }
  36099. },
  36100. foot: {
  36101. height: math.unit(1.86, "meters"),
  36102. name: "Foot",
  36103. image: {
  36104. source: "./media/characters/sabrina/foot.svg"
  36105. }
  36106. },
  36107. hand: {
  36108. height: math.unit(1.32, "meters"),
  36109. name: "Hand",
  36110. image: {
  36111. source: "./media/characters/sabrina/hand.svg"
  36112. }
  36113. },
  36114. head: {
  36115. height: math.unit(2.44, "meters"),
  36116. name: "Head",
  36117. image: {
  36118. source: "./media/characters/sabrina/head.svg"
  36119. }
  36120. },
  36121. headAngry: {
  36122. height: math.unit(2.44, "meters"),
  36123. name: "Head (Angry))",
  36124. image: {
  36125. source: "./media/characters/sabrina/head-angry.svg"
  36126. }
  36127. },
  36128. maw: {
  36129. height: math.unit(1.65, "meters"),
  36130. name: "Maw",
  36131. image: {
  36132. source: "./media/characters/sabrina/maw.svg"
  36133. }
  36134. },
  36135. spikes: {
  36136. height: math.unit(1.69, "meters"),
  36137. name: "Spikes",
  36138. image: {
  36139. source: "./media/characters/sabrina/spikes.svg"
  36140. }
  36141. },
  36142. stomach: {
  36143. height: math.unit(1.15, "meters"),
  36144. name: "Stomach",
  36145. image: {
  36146. source: "./media/characters/sabrina/stomach.svg"
  36147. }
  36148. },
  36149. tongue: {
  36150. height: math.unit(1.27, "meters"),
  36151. name: "Tongue",
  36152. image: {
  36153. source: "./media/characters/sabrina/tongue.svg"
  36154. }
  36155. },
  36156. wingDorsal: {
  36157. height: math.unit(4.85, "meters"),
  36158. name: "Wing (Dorsal)",
  36159. image: {
  36160. source: "./media/characters/sabrina/wing-dorsal.svg"
  36161. }
  36162. },
  36163. wingVentral: {
  36164. height: math.unit(4.85, "meters"),
  36165. name: "Wing (Ventral)",
  36166. image: {
  36167. source: "./media/characters/sabrina/wing-ventral.svg"
  36168. }
  36169. },
  36170. },
  36171. [
  36172. {
  36173. name: "Normal",
  36174. height: math.unit(5, "meters"),
  36175. default: true
  36176. },
  36177. ]
  36178. ))
  36179. characterMakers.push(() => makeCharacter(
  36180. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36181. {
  36182. frontMaid: {
  36183. height: math.unit(5 + 5/12, "feet"),
  36184. weight: math.unit(130, "lb"),
  36185. name: "Front (Maid)",
  36186. image: {
  36187. source: "./media/characters/midnight-tales/front-maid.svg",
  36188. extra: 489/454,
  36189. bottom: 61/550
  36190. }
  36191. },
  36192. frontFormal: {
  36193. height: math.unit(5 + 5/12, "feet"),
  36194. weight: math.unit(130, "lb"),
  36195. name: "Front (Formal)",
  36196. image: {
  36197. source: "./media/characters/midnight-tales/front-formal.svg",
  36198. extra: 489/454,
  36199. bottom: 61/550
  36200. }
  36201. },
  36202. back: {
  36203. height: math.unit(5 + 5/12, "feet"),
  36204. weight: math.unit(130, "lb"),
  36205. name: "Back",
  36206. image: {
  36207. source: "./media/characters/midnight-tales/back.svg",
  36208. extra: 498/456,
  36209. bottom: 33/531
  36210. }
  36211. },
  36212. frontBeast: {
  36213. height: math.unit(40, "feet"),
  36214. weight: math.unit(64000, "lb"),
  36215. name: "Front (Beast)",
  36216. image: {
  36217. source: "./media/characters/midnight-tales/front-beast.svg",
  36218. extra: 927/860,
  36219. bottom: 53/980
  36220. }
  36221. },
  36222. backBeast: {
  36223. height: math.unit(40, "feet"),
  36224. weight: math.unit(64000, "lb"),
  36225. name: "Back (Beast)",
  36226. image: {
  36227. source: "./media/characters/midnight-tales/back-beast.svg",
  36228. extra: 929/855,
  36229. bottom: 16/945
  36230. }
  36231. },
  36232. footBeast: {
  36233. height: math.unit(6.7, "feet"),
  36234. name: "Foot (Beast)",
  36235. image: {
  36236. source: "./media/characters/midnight-tales/foot-beast.svg"
  36237. }
  36238. },
  36239. headBeast: {
  36240. height: math.unit(8, "feet"),
  36241. name: "Head (Beast)",
  36242. image: {
  36243. source: "./media/characters/midnight-tales/head-beast.svg"
  36244. }
  36245. },
  36246. },
  36247. [
  36248. {
  36249. name: "Normal",
  36250. height: math.unit(5 + 5 / 12, "feet"),
  36251. default: true
  36252. },
  36253. {
  36254. name: "Macro",
  36255. height: math.unit(25, "feet")
  36256. },
  36257. ]
  36258. ))
  36259. characterMakers.push(() => makeCharacter(
  36260. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36261. {
  36262. front: {
  36263. height: math.unit(5 + 10/12, "feet"),
  36264. name: "Front",
  36265. image: {
  36266. source: "./media/characters/argon/front.svg",
  36267. extra: 2009/1935,
  36268. bottom: 118/2127
  36269. }
  36270. },
  36271. back: {
  36272. height: math.unit(5 + 10/12, "feet"),
  36273. name: "Back",
  36274. image: {
  36275. source: "./media/characters/argon/back.svg",
  36276. extra: 2047/1992,
  36277. bottom: 20/2067
  36278. }
  36279. },
  36280. frontDressed: {
  36281. height: math.unit(5 + 10/12, "feet"),
  36282. name: "Front (Dressed)",
  36283. image: {
  36284. source: "./media/characters/argon/front-dressed.svg",
  36285. extra: 2009/1935,
  36286. bottom: 118/2127
  36287. }
  36288. },
  36289. },
  36290. [
  36291. {
  36292. name: "Normal",
  36293. height: math.unit(5 + 10/12, "feet"),
  36294. default: true
  36295. },
  36296. ]
  36297. ))
  36298. characterMakers.push(() => makeCharacter(
  36299. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36300. {
  36301. front: {
  36302. height: math.unit(8 + 6/12, "feet"),
  36303. weight: math.unit(1150, "lb"),
  36304. name: "Front",
  36305. image: {
  36306. source: "./media/characters/kichi/front.svg",
  36307. extra: 1267/1164,
  36308. bottom: 61/1328
  36309. }
  36310. },
  36311. back: {
  36312. height: math.unit(8 + 6/12, "feet"),
  36313. weight: math.unit(1150, "lb"),
  36314. name: "Back",
  36315. image: {
  36316. source: "./media/characters/kichi/back.svg",
  36317. extra: 1273/1166,
  36318. bottom: 33/1306
  36319. }
  36320. },
  36321. },
  36322. [
  36323. {
  36324. name: "Normal",
  36325. height: math.unit(8 + 6/12, "feet"),
  36326. default: true
  36327. },
  36328. ]
  36329. ))
  36330. characterMakers.push(() => makeCharacter(
  36331. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36332. {
  36333. front: {
  36334. height: math.unit(6, "feet"),
  36335. weight: math.unit(210, "lb"),
  36336. name: "Front",
  36337. image: {
  36338. source: "./media/characters/manetel-greyscale/front.svg",
  36339. extra: 350/312,
  36340. bottom: 8/358
  36341. }
  36342. },
  36343. },
  36344. [
  36345. {
  36346. name: "Micro",
  36347. height: math.unit(2, "inches")
  36348. },
  36349. {
  36350. name: "Normal",
  36351. height: math.unit(6, "feet"),
  36352. default: true
  36353. },
  36354. {
  36355. name: "Minimacro",
  36356. height: math.unit(17, "feet")
  36357. },
  36358. {
  36359. name: "Macro",
  36360. height: math.unit(117, "feet")
  36361. },
  36362. ]
  36363. ))
  36364. characterMakers.push(() => makeCharacter(
  36365. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36366. {
  36367. side: {
  36368. height: math.unit(5 + 1/12, "feet"),
  36369. weight: math.unit(418, "lb"),
  36370. name: "Side",
  36371. image: {
  36372. source: "./media/characters/softpurr/side.svg",
  36373. extra: 1993/1945,
  36374. bottom: 134/2127
  36375. }
  36376. },
  36377. front: {
  36378. height: math.unit(5 + 1/12, "feet"),
  36379. weight: math.unit(418, "lb"),
  36380. name: "Front",
  36381. image: {
  36382. source: "./media/characters/softpurr/front.svg",
  36383. extra: 1950/1856,
  36384. bottom: 174/2124
  36385. }
  36386. },
  36387. paw: {
  36388. height: math.unit(1, "feet"),
  36389. name: "Paw",
  36390. image: {
  36391. source: "./media/characters/softpurr/paw.svg"
  36392. }
  36393. },
  36394. },
  36395. [
  36396. {
  36397. name: "Normal",
  36398. height: math.unit(5 + 1/12, "feet"),
  36399. default: true
  36400. },
  36401. ]
  36402. ))
  36403. characterMakers.push(() => makeCharacter(
  36404. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36405. {
  36406. front: {
  36407. height: math.unit(260, "meters"),
  36408. name: "Front",
  36409. image: {
  36410. source: "./media/characters/anahita/front.svg",
  36411. extra: 665/635,
  36412. bottom: 89/754
  36413. }
  36414. },
  36415. },
  36416. [
  36417. {
  36418. name: "Macro",
  36419. height: math.unit(260, "meters"),
  36420. default: true
  36421. },
  36422. ]
  36423. ))
  36424. characterMakers.push(() => makeCharacter(
  36425. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36426. {
  36427. front: {
  36428. height: math.unit(4 + 10/12, "feet"),
  36429. weight: math.unit(160, "lb"),
  36430. name: "Front",
  36431. image: {
  36432. source: "./media/characters/chip-mouse/front.svg",
  36433. extra: 3528/3408,
  36434. bottom: 0/3528
  36435. }
  36436. },
  36437. frontNsfw: {
  36438. height: math.unit(4 + 10/12, "feet"),
  36439. weight: math.unit(160, "lb"),
  36440. name: "Front (NSFW)",
  36441. image: {
  36442. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36443. extra: 3528/3408,
  36444. bottom: 0/3528
  36445. }
  36446. },
  36447. },
  36448. [
  36449. {
  36450. name: "Normal",
  36451. height: math.unit(4 + 10/12, "feet"),
  36452. default: true
  36453. },
  36454. ]
  36455. ))
  36456. characterMakers.push(() => makeCharacter(
  36457. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36458. {
  36459. side: {
  36460. height: math.unit(10, "feet"),
  36461. weight: math.unit(14000, "lb"),
  36462. name: "Side",
  36463. image: {
  36464. source: "./media/characters/kremm/side.svg",
  36465. extra: 1390/1053,
  36466. bottom: 90/1480
  36467. }
  36468. },
  36469. gut: {
  36470. height: math.unit(5.8, "feet"),
  36471. name: "Gut",
  36472. image: {
  36473. source: "./media/characters/kremm/gut.svg"
  36474. }
  36475. },
  36476. ass: {
  36477. height: math.unit(6.1, "feet"),
  36478. name: "Ass",
  36479. image: {
  36480. source: "./media/characters/kremm/ass.svg"
  36481. }
  36482. },
  36483. jaws: {
  36484. height: math.unit(2.2, "feet"),
  36485. name: "Jaws",
  36486. image: {
  36487. source: "./media/characters/kremm/jaws.svg"
  36488. }
  36489. },
  36490. dick: {
  36491. height: math.unit(4.26, "feet"),
  36492. name: "Dick",
  36493. image: {
  36494. source: "./media/characters/kremm/dick.svg"
  36495. }
  36496. },
  36497. },
  36498. [
  36499. {
  36500. name: "Normal",
  36501. height: math.unit(10, "feet"),
  36502. default: true
  36503. },
  36504. ]
  36505. ))
  36506. characterMakers.push(() => makeCharacter(
  36507. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36508. {
  36509. front: {
  36510. height: math.unit(30, "stories"),
  36511. name: "Front",
  36512. image: {
  36513. source: "./media/characters/kai/front.svg",
  36514. extra: 1892/1718,
  36515. bottom: 162/2054
  36516. }
  36517. },
  36518. },
  36519. [
  36520. {
  36521. name: "Macro",
  36522. height: math.unit(30, "stories"),
  36523. default: true
  36524. },
  36525. ]
  36526. ))
  36527. characterMakers.push(() => makeCharacter(
  36528. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36529. {
  36530. front: {
  36531. height: math.unit(6 + 4/12, "feet"),
  36532. weight: math.unit(145, "lb"),
  36533. name: "Front",
  36534. image: {
  36535. source: "./media/characters/sykes/front.svg",
  36536. extra: 1321 / 1187,
  36537. bottom: 66 / 1387
  36538. }
  36539. },
  36540. back: {
  36541. height: math.unit(6 + 4/12, "feet"),
  36542. weight: math.unit(145, "lb"),
  36543. name: "Back",
  36544. image: {
  36545. source: "./media/characters/sykes/back.svg",
  36546. extra: 1326/1181,
  36547. bottom: 31/1357
  36548. }
  36549. },
  36550. traditionalOutfit: {
  36551. height: math.unit(6 + 4/12, "feet"),
  36552. weight: math.unit(145, "lb"),
  36553. name: "Traditional Outfit",
  36554. image: {
  36555. source: "./media/characters/sykes/traditional-outfit.svg",
  36556. extra: 1321 / 1187,
  36557. bottom: 66 / 1387
  36558. }
  36559. },
  36560. adventureOutfit: {
  36561. height: math.unit(6 + 4/12, "feet"),
  36562. weight: math.unit(145, "lb"),
  36563. name: "Adventure Outfit",
  36564. image: {
  36565. source: "./media/characters/sykes/adventure-outfit.svg",
  36566. extra: 1321 / 1187,
  36567. bottom: 66 / 1387
  36568. }
  36569. },
  36570. handLeft: {
  36571. height: math.unit(0.9, "feet"),
  36572. name: "Hand (Left)",
  36573. image: {
  36574. source: "./media/characters/sykes/hand-left.svg"
  36575. }
  36576. },
  36577. handRight: {
  36578. height: math.unit(0.839, "feet"),
  36579. name: "Hand (Right)",
  36580. image: {
  36581. source: "./media/characters/sykes/hand-right.svg"
  36582. }
  36583. },
  36584. leftFoot: {
  36585. height: math.unit(1.2, "feet"),
  36586. name: "Foot (Left)",
  36587. image: {
  36588. source: "./media/characters/sykes/foot-left.svg"
  36589. }
  36590. },
  36591. rightFoot: {
  36592. height: math.unit(1.2, "feet"),
  36593. name: "Foot (Right)",
  36594. image: {
  36595. source: "./media/characters/sykes/foot-right.svg"
  36596. }
  36597. },
  36598. maw: {
  36599. height: math.unit(1.93, "feet"),
  36600. name: "Maw",
  36601. image: {
  36602. source: "./media/characters/sykes/maw.svg"
  36603. }
  36604. },
  36605. teeth: {
  36606. height: math.unit(0.51, "feet"),
  36607. name: "Teeth",
  36608. image: {
  36609. source: "./media/characters/sykes/teeth.svg"
  36610. }
  36611. },
  36612. tongue: {
  36613. height: math.unit(2.13, "feet"),
  36614. name: "Tongue",
  36615. image: {
  36616. source: "./media/characters/sykes/tongue.svg"
  36617. }
  36618. },
  36619. uvula: {
  36620. height: math.unit(0.16, "feet"),
  36621. name: "Uvula",
  36622. image: {
  36623. source: "./media/characters/sykes/uvula.svg"
  36624. }
  36625. },
  36626. collar: {
  36627. height: math.unit(0.287, "feet"),
  36628. name: "Collar",
  36629. image: {
  36630. source: "./media/characters/sykes/collar.svg"
  36631. }
  36632. },
  36633. tail: {
  36634. height: math.unit(3.8, "feet"),
  36635. name: "Tail",
  36636. image: {
  36637. source: "./media/characters/sykes/tail.svg"
  36638. }
  36639. },
  36640. },
  36641. [
  36642. {
  36643. name: "Shrunken",
  36644. height: math.unit(5, "inches")
  36645. },
  36646. {
  36647. name: "Normal",
  36648. height: math.unit(6 + 4 / 12, "feet"),
  36649. default: true
  36650. },
  36651. {
  36652. name: "Big",
  36653. height: math.unit(15, "feet")
  36654. },
  36655. ]
  36656. ))
  36657. characterMakers.push(() => makeCharacter(
  36658. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36659. {
  36660. front: {
  36661. height: math.unit(5 + 8/12, "feet"),
  36662. weight: math.unit(190, "lb"),
  36663. name: "Front",
  36664. image: {
  36665. source: "./media/characters/oven-otter/front.svg",
  36666. extra: 1809/1740,
  36667. bottom: 181/1990
  36668. }
  36669. },
  36670. back: {
  36671. height: math.unit(5 + 8/12, "feet"),
  36672. weight: math.unit(190, "lb"),
  36673. name: "Back",
  36674. image: {
  36675. source: "./media/characters/oven-otter/back.svg",
  36676. extra: 1709/1635,
  36677. bottom: 118/1827
  36678. }
  36679. },
  36680. hand: {
  36681. height: math.unit(1.07, "feet"),
  36682. name: "Hand",
  36683. image: {
  36684. source: "./media/characters/oven-otter/hand.svg"
  36685. }
  36686. },
  36687. beans: {
  36688. height: math.unit(1.74, "feet"),
  36689. name: "Beans",
  36690. image: {
  36691. source: "./media/characters/oven-otter/beans.svg"
  36692. }
  36693. },
  36694. },
  36695. [
  36696. {
  36697. name: "Micro",
  36698. height: math.unit(0.5, "inches")
  36699. },
  36700. {
  36701. name: "Normal",
  36702. height: math.unit(5 + 8/12, "feet"),
  36703. default: true
  36704. },
  36705. {
  36706. name: "Macro",
  36707. height: math.unit(250, "feet")
  36708. },
  36709. {
  36710. name: "Really High",
  36711. height: math.unit(420, "feet")
  36712. },
  36713. ]
  36714. ))
  36715. characterMakers.push(() => makeCharacter(
  36716. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36717. {
  36718. front: {
  36719. height: math.unit(5, "meters"),
  36720. weight: math.unit(292000000000000, "kg"),
  36721. name: "Front",
  36722. image: {
  36723. source: "./media/characters/devourer/front.svg",
  36724. extra: 1800/1733,
  36725. bottom: 211/2011
  36726. }
  36727. },
  36728. maw: {
  36729. height: math.unit(1.1, "meter"),
  36730. name: "Maw",
  36731. image: {
  36732. source: "./media/characters/devourer/maw.svg"
  36733. }
  36734. },
  36735. },
  36736. [
  36737. {
  36738. name: "Small",
  36739. height: math.unit(3, "meters")
  36740. },
  36741. {
  36742. name: "Large",
  36743. height: math.unit(5, "meters"),
  36744. default: true
  36745. },
  36746. ]
  36747. ))
  36748. characterMakers.push(() => makeCharacter(
  36749. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36750. {
  36751. front: {
  36752. height: math.unit(6, "feet"),
  36753. weight: math.unit(400, "lb"),
  36754. name: "Front",
  36755. image: {
  36756. source: "./media/characters/ellarby/front.svg",
  36757. extra: 1909/1763,
  36758. bottom: 80/1989
  36759. }
  36760. },
  36761. back: {
  36762. height: math.unit(6, "feet"),
  36763. weight: math.unit(400, "lb"),
  36764. name: "Back",
  36765. image: {
  36766. source: "./media/characters/ellarby/back.svg",
  36767. extra: 1914/1784,
  36768. bottom: 172/2086
  36769. }
  36770. },
  36771. },
  36772. [
  36773. {
  36774. name: "Mischief",
  36775. height: math.unit(18, "inches")
  36776. },
  36777. {
  36778. name: "Trouble",
  36779. height: math.unit(12, "feet")
  36780. },
  36781. {
  36782. name: "Havoc",
  36783. height: math.unit(200, "feet"),
  36784. default: true
  36785. },
  36786. {
  36787. name: "Pandemonium",
  36788. height: math.unit(1, "mile")
  36789. },
  36790. {
  36791. name: "Catastrophe",
  36792. height: math.unit(100, "miles")
  36793. },
  36794. ]
  36795. ))
  36796. characterMakers.push(() => makeCharacter(
  36797. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36798. {
  36799. front: {
  36800. height: math.unit(4.7, "meters"),
  36801. weight: math.unit(6500, "kg"),
  36802. name: "Front",
  36803. image: {
  36804. source: "./media/characters/vex/front.svg",
  36805. extra: 1288/1140,
  36806. bottom: 100/1388
  36807. }
  36808. },
  36809. },
  36810. [
  36811. {
  36812. name: "Normal",
  36813. height: math.unit(4.7, "meters"),
  36814. default: true
  36815. },
  36816. ]
  36817. ))
  36818. characterMakers.push(() => makeCharacter(
  36819. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36820. {
  36821. normal: {
  36822. height: math.unit(6, "feet"),
  36823. weight: math.unit(350, "lb"),
  36824. name: "Normal",
  36825. image: {
  36826. source: "./media/characters/teshy/normal.svg",
  36827. extra: 1795/1735,
  36828. bottom: 16/1811
  36829. }
  36830. },
  36831. monsterFront: {
  36832. height: math.unit(12, "feet"),
  36833. weight: math.unit(4700, "lb"),
  36834. name: "Monster (Front)",
  36835. image: {
  36836. source: "./media/characters/teshy/monster-front.svg",
  36837. extra: 2042/2034,
  36838. bottom: 128/2170
  36839. }
  36840. },
  36841. monsterSide: {
  36842. height: math.unit(12, "feet"),
  36843. weight: math.unit(4700, "lb"),
  36844. name: "Monster (Side)",
  36845. image: {
  36846. source: "./media/characters/teshy/monster-side.svg",
  36847. extra: 2067/2056,
  36848. bottom: 70/2137
  36849. }
  36850. },
  36851. monsterBack: {
  36852. height: math.unit(12, "feet"),
  36853. weight: math.unit(4700, "lb"),
  36854. name: "Monster (Back)",
  36855. image: {
  36856. source: "./media/characters/teshy/monster-back.svg",
  36857. extra: 1921/1914,
  36858. bottom: 171/2092
  36859. }
  36860. },
  36861. },
  36862. [
  36863. {
  36864. name: "Normal",
  36865. height: math.unit(6, "feet"),
  36866. default: true
  36867. },
  36868. ]
  36869. ))
  36870. characterMakers.push(() => makeCharacter(
  36871. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36872. {
  36873. front: {
  36874. height: math.unit(6, "feet"),
  36875. name: "Front",
  36876. image: {
  36877. source: "./media/characters/ramey/front.svg",
  36878. extra: 790/787,
  36879. bottom: 27/817
  36880. }
  36881. },
  36882. },
  36883. [
  36884. {
  36885. name: "Normal",
  36886. height: math.unit(6, "feet"),
  36887. default: true
  36888. },
  36889. ]
  36890. ))
  36891. characterMakers.push(() => makeCharacter(
  36892. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36893. {
  36894. front: {
  36895. height: math.unit(5 + 5/12, "feet"),
  36896. weight: math.unit(120, "lb"),
  36897. name: "Front",
  36898. image: {
  36899. source: "./media/characters/phirae/front.svg",
  36900. extra: 2491/2436,
  36901. bottom: 38/2529
  36902. }
  36903. },
  36904. },
  36905. [
  36906. {
  36907. name: "Normal",
  36908. height: math.unit(5 + 5/12, "feet"),
  36909. default: true
  36910. },
  36911. ]
  36912. ))
  36913. characterMakers.push(() => makeCharacter(
  36914. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36915. {
  36916. front: {
  36917. height: math.unit(5 + 3/12, "feet"),
  36918. name: "Front",
  36919. image: {
  36920. source: "./media/characters/stagglas/front.svg",
  36921. extra: 962/882,
  36922. bottom: 53/1015
  36923. }
  36924. },
  36925. feral: {
  36926. height: math.unit(335, "cm"),
  36927. name: "Feral",
  36928. image: {
  36929. source: "./media/characters/stagglas/feral.svg",
  36930. extra: 1732/1090,
  36931. bottom: 48/1780
  36932. }
  36933. },
  36934. },
  36935. [
  36936. {
  36937. name: "Normal",
  36938. height: math.unit(5 + 3/12, "feet"),
  36939. default: true
  36940. },
  36941. ]
  36942. ))
  36943. characterMakers.push(() => makeCharacter(
  36944. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  36945. {
  36946. front: {
  36947. height: math.unit(5 + 4/12, "feet"),
  36948. weight: math.unit(145, "lb"),
  36949. name: "Front",
  36950. image: {
  36951. source: "./media/characters/starra/front.svg",
  36952. extra: 1790/1691,
  36953. bottom: 91/1881
  36954. }
  36955. },
  36956. },
  36957. [
  36958. {
  36959. name: "Normal",
  36960. height: math.unit(5 + 4/12, "feet"),
  36961. default: true
  36962. },
  36963. ]
  36964. ))
  36965. characterMakers.push(() => makeCharacter(
  36966. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  36967. {
  36968. front: {
  36969. height: math.unit(3.5, "meters"),
  36970. name: "Front",
  36971. image: {
  36972. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  36973. extra: 1248/972,
  36974. bottom: 38/1286
  36975. }
  36976. },
  36977. },
  36978. [
  36979. {
  36980. name: "Normal",
  36981. height: math.unit(3.5, "meters"),
  36982. default: true
  36983. },
  36984. ]
  36985. ))
  36986. characterMakers.push(() => makeCharacter(
  36987. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  36988. {
  36989. side: {
  36990. height: math.unit(8 + 2/12, "feet"),
  36991. weight: math.unit(1240, "lb"),
  36992. name: "Side",
  36993. image: {
  36994. source: "./media/characters/mika-valentine/side.svg",
  36995. extra: 2670/2501,
  36996. bottom: 250/2920
  36997. }
  36998. },
  36999. },
  37000. [
  37001. {
  37002. name: "Normal",
  37003. height: math.unit(8 + 2/12, "feet"),
  37004. default: true
  37005. },
  37006. ]
  37007. ))
  37008. characterMakers.push(() => makeCharacter(
  37009. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37010. {
  37011. front: {
  37012. height: math.unit(7 + 2/12, "feet"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/xoltol/front.svg",
  37016. extra: 2212/2124,
  37017. bottom: 84/2296
  37018. }
  37019. },
  37020. side: {
  37021. height: math.unit(7 + 2/12, "feet"),
  37022. name: "Side",
  37023. image: {
  37024. source: "./media/characters/xoltol/side.svg",
  37025. extra: 2273/2197,
  37026. bottom: 26/2299
  37027. }
  37028. },
  37029. hand: {
  37030. height: math.unit(2.5, "feet"),
  37031. name: "Hand",
  37032. image: {
  37033. source: "./media/characters/xoltol/hand.svg"
  37034. }
  37035. },
  37036. },
  37037. [
  37038. {
  37039. name: "Small-ish",
  37040. height: math.unit(5 + 11/12, "feet")
  37041. },
  37042. {
  37043. name: "Normal",
  37044. height: math.unit(7 + 2/12, "feet")
  37045. },
  37046. {
  37047. name: "\"Macro\"",
  37048. height: math.unit(14 + 9/12, "feet"),
  37049. default: true
  37050. },
  37051. {
  37052. name: "Alternate Height",
  37053. height: math.unit(20, "feet")
  37054. },
  37055. {
  37056. name: "Actually Macro",
  37057. height: math.unit(100, "feet")
  37058. },
  37059. ]
  37060. ))
  37061. characterMakers.push(() => makeCharacter(
  37062. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37063. {
  37064. front: {
  37065. height: math.unit(5 + 2/12, "feet"),
  37066. weight: math.unit(75, "kg"),
  37067. name: "Front",
  37068. image: {
  37069. source: "./media/characters/kotetsu-redwood/front.svg",
  37070. extra: 1053/942,
  37071. bottom: 60/1113
  37072. }
  37073. },
  37074. },
  37075. [
  37076. {
  37077. name: "Normal",
  37078. height: math.unit(5 + 2/12, "feet"),
  37079. default: true
  37080. },
  37081. ]
  37082. ))
  37083. characterMakers.push(() => makeCharacter(
  37084. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37085. {
  37086. front: {
  37087. height: math.unit(2.4, "meters"),
  37088. weight: math.unit(125, "kg"),
  37089. name: "Front",
  37090. image: {
  37091. source: "./media/characters/lilith/front.svg",
  37092. extra: 1590/1513,
  37093. bottom: 203/1793
  37094. }
  37095. },
  37096. },
  37097. [
  37098. {
  37099. name: "Humanoid",
  37100. height: math.unit(2.4, "meters")
  37101. },
  37102. {
  37103. name: "Normal",
  37104. height: math.unit(6, "meters"),
  37105. default: true
  37106. },
  37107. {
  37108. name: "Largest",
  37109. height: math.unit(55, "meters")
  37110. },
  37111. ]
  37112. ))
  37113. characterMakers.push(() => makeCharacter(
  37114. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37115. {
  37116. front: {
  37117. height: math.unit(8 + 4/12, "feet"),
  37118. weight: math.unit(535, "lb"),
  37119. name: "Front",
  37120. image: {
  37121. source: "./media/characters/beh'kah-bolger/front.svg",
  37122. extra: 1660/1603,
  37123. bottom: 37/1697
  37124. }
  37125. },
  37126. },
  37127. [
  37128. {
  37129. name: "Normal",
  37130. height: math.unit(8 + 4/12, "feet"),
  37131. default: true
  37132. },
  37133. {
  37134. name: "Kaiju",
  37135. height: math.unit(250, "feet")
  37136. },
  37137. {
  37138. name: "Still Growing",
  37139. height: math.unit(10, "miles")
  37140. },
  37141. {
  37142. name: "Continental",
  37143. height: math.unit(5000, "miles")
  37144. },
  37145. {
  37146. name: "Final Form",
  37147. height: math.unit(2500000, "miles")
  37148. },
  37149. ]
  37150. ))
  37151. characterMakers.push(() => makeCharacter(
  37152. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37153. {
  37154. front: {
  37155. height: math.unit(7 + 2/12, "feet"),
  37156. weight: math.unit(230, "kg"),
  37157. name: "Front",
  37158. image: {
  37159. source: "./media/characters/tatyana-milewska/front.svg",
  37160. extra: 1199/1150,
  37161. bottom: 86/1285
  37162. }
  37163. },
  37164. },
  37165. [
  37166. {
  37167. name: "Normal",
  37168. height: math.unit(7 + 2/12, "feet"),
  37169. default: true
  37170. },
  37171. {
  37172. name: "Big",
  37173. height: math.unit(12, "feet")
  37174. },
  37175. {
  37176. name: "Minimacro",
  37177. height: math.unit(20, "feet")
  37178. },
  37179. {
  37180. name: "Macro",
  37181. height: math.unit(120, "feet")
  37182. },
  37183. ]
  37184. ))
  37185. characterMakers.push(() => makeCharacter(
  37186. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37187. {
  37188. front: {
  37189. height: math.unit(7 + 8/12, "feet"),
  37190. weight: math.unit(152, "kg"),
  37191. name: "Front",
  37192. image: {
  37193. source: "./media/characters/helen-arri/front.svg",
  37194. extra: 440/423,
  37195. bottom: 14/454
  37196. }
  37197. },
  37198. back: {
  37199. height: math.unit(7 + 8/12, "feet"),
  37200. weight: math.unit(152, "kg"),
  37201. name: "Back",
  37202. image: {
  37203. source: "./media/characters/helen-arri/back.svg",
  37204. extra: 443/426,
  37205. bottom: 8/451
  37206. }
  37207. },
  37208. },
  37209. [
  37210. {
  37211. name: "Normal",
  37212. height: math.unit(7 + 8/12, "feet"),
  37213. default: true
  37214. },
  37215. {
  37216. name: "Big",
  37217. height: math.unit(14, "feet")
  37218. },
  37219. {
  37220. name: "Minimacro",
  37221. height: math.unit(24, "feet")
  37222. },
  37223. {
  37224. name: "Macro",
  37225. height: math.unit(140, "feet")
  37226. },
  37227. ]
  37228. ))
  37229. characterMakers.push(() => makeCharacter(
  37230. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37231. {
  37232. front: {
  37233. height: math.unit(6, "meters"),
  37234. name: "Front",
  37235. image: {
  37236. source: "./media/characters/ehanu-rehu/front.svg",
  37237. extra: 1800/1800,
  37238. bottom: 59/1859
  37239. }
  37240. },
  37241. },
  37242. [
  37243. {
  37244. name: "Normal",
  37245. height: math.unit(6, "meters"),
  37246. default: true
  37247. },
  37248. ]
  37249. ))
  37250. characterMakers.push(() => makeCharacter(
  37251. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37252. {
  37253. front: {
  37254. height: math.unit(7 + 3/12, "feet"),
  37255. name: "Front",
  37256. image: {
  37257. source: "./media/characters/renholder/front.svg",
  37258. extra: 3096/2960,
  37259. bottom: 250/3346
  37260. }
  37261. },
  37262. },
  37263. [
  37264. {
  37265. name: "Normal Bat",
  37266. height: math.unit(7 + 3/12, "feet"),
  37267. default: true
  37268. },
  37269. {
  37270. name: "Slightly Tall Bat",
  37271. height: math.unit(100, "feet")
  37272. },
  37273. {
  37274. name: "Big Bat",
  37275. height: math.unit(1000, "feet")
  37276. },
  37277. {
  37278. name: "City-Sized Bat",
  37279. height: math.unit(200000, "feet")
  37280. },
  37281. {
  37282. name: "Bigger Bat",
  37283. height: math.unit(10000, "miles")
  37284. },
  37285. {
  37286. name: "Solar Sized Bat",
  37287. height: math.unit(100, "AU")
  37288. },
  37289. {
  37290. name: "Galactic Bat",
  37291. height: math.unit(200000, "lightyears")
  37292. },
  37293. {
  37294. name: "Universally Known Bat",
  37295. height: math.unit(1, "universe")
  37296. },
  37297. ]
  37298. ))
  37299. characterMakers.push(() => makeCharacter(
  37300. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37301. {
  37302. front: {
  37303. height: math.unit(6 + 11/12, "feet"),
  37304. weight: math.unit(250, "lb"),
  37305. name: "Front",
  37306. image: {
  37307. source: "./media/characters/cookiecat/front.svg",
  37308. extra: 893/827,
  37309. bottom: 14/907
  37310. }
  37311. },
  37312. },
  37313. [
  37314. {
  37315. name: "Micro",
  37316. height: math.unit(3, "inches")
  37317. },
  37318. {
  37319. name: "Normal",
  37320. height: math.unit(6 + 11/12, "feet"),
  37321. default: true
  37322. },
  37323. {
  37324. name: "Macro",
  37325. height: math.unit(100, "feet")
  37326. },
  37327. {
  37328. name: "Macro+",
  37329. height: math.unit(404, "feet")
  37330. },
  37331. {
  37332. name: "Megamacro",
  37333. height: math.unit(165, "miles")
  37334. },
  37335. {
  37336. name: "Planetary",
  37337. height: math.unit(4600, "miles")
  37338. },
  37339. ]
  37340. ))
  37341. characterMakers.push(() => makeCharacter(
  37342. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37343. {
  37344. front: {
  37345. height: math.unit(10 + 3/12, "feet"),
  37346. weight: math.unit(1500, "lb"),
  37347. name: "Front",
  37348. image: {
  37349. source: "./media/characters/tux-kusanagi/front.svg",
  37350. extra: 944/840,
  37351. bottom: 39/983
  37352. }
  37353. },
  37354. back: {
  37355. height: math.unit(10 + 3/12, "feet"),
  37356. weight: math.unit(1500, "lb"),
  37357. name: "Back",
  37358. image: {
  37359. source: "./media/characters/tux-kusanagi/back.svg",
  37360. extra: 941/842,
  37361. bottom: 28/969
  37362. }
  37363. },
  37364. rump: {
  37365. height: math.unit(5.25, "feet"),
  37366. name: "Rump",
  37367. image: {
  37368. source: "./media/characters/tux-kusanagi/rump.svg"
  37369. }
  37370. },
  37371. beak: {
  37372. height: math.unit(1.54, "feet"),
  37373. name: "Beak",
  37374. image: {
  37375. source: "./media/characters/tux-kusanagi/beak.svg"
  37376. }
  37377. },
  37378. },
  37379. [
  37380. {
  37381. name: "Normal",
  37382. height: math.unit(10 + 3/12, "feet"),
  37383. default: true
  37384. },
  37385. ]
  37386. ))
  37387. characterMakers.push(() => makeCharacter(
  37388. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37389. {
  37390. front: {
  37391. height: math.unit(58, "feet"),
  37392. weight: math.unit(200, "tons"),
  37393. name: "Front",
  37394. image: {
  37395. source: "./media/characters/uzarmazari/front.svg",
  37396. extra: 1575/1455,
  37397. bottom: 152/1727
  37398. }
  37399. },
  37400. back: {
  37401. height: math.unit(58, "feet"),
  37402. weight: math.unit(200, "tons"),
  37403. name: "Back",
  37404. image: {
  37405. source: "./media/characters/uzarmazari/back.svg",
  37406. extra: 1585/1510,
  37407. bottom: 157/1742
  37408. }
  37409. },
  37410. head: {
  37411. height: math.unit(26, "feet"),
  37412. name: "Head",
  37413. image: {
  37414. source: "./media/characters/uzarmazari/head.svg"
  37415. }
  37416. },
  37417. },
  37418. [
  37419. {
  37420. name: "Normal",
  37421. height: math.unit(58, "feet"),
  37422. default: true
  37423. },
  37424. ]
  37425. ))
  37426. characterMakers.push(() => makeCharacter(
  37427. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37428. {
  37429. side: {
  37430. height: math.unit(15, "feet"),
  37431. name: "Side",
  37432. image: {
  37433. source: "./media/characters/akitu/side.svg",
  37434. extra: 1421/1321,
  37435. bottom: 157/1578
  37436. }
  37437. },
  37438. front: {
  37439. height: math.unit(15, "feet"),
  37440. name: "Front",
  37441. image: {
  37442. source: "./media/characters/akitu/front.svg",
  37443. extra: 1435/1326,
  37444. bottom: 232/1667
  37445. }
  37446. },
  37447. },
  37448. [
  37449. {
  37450. name: "Normal",
  37451. height: math.unit(15, "feet"),
  37452. default: true
  37453. },
  37454. ]
  37455. ))
  37456. characterMakers.push(() => makeCharacter(
  37457. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37458. {
  37459. front: {
  37460. height: math.unit(10 + 8/12, "feet"),
  37461. name: "Front",
  37462. image: {
  37463. source: "./media/characters/azalie-croixland/front.svg",
  37464. extra: 1972/1856,
  37465. bottom: 31/2003
  37466. }
  37467. },
  37468. },
  37469. [
  37470. {
  37471. name: "Original Height",
  37472. height: math.unit(5 + 4/12, "feet")
  37473. },
  37474. {
  37475. name: "Normal Height",
  37476. height: math.unit(10 + 8/12, "feet"),
  37477. default: true
  37478. },
  37479. ]
  37480. ))
  37481. characterMakers.push(() => makeCharacter(
  37482. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37483. {
  37484. side: {
  37485. height: math.unit(7 + 1/12, "feet"),
  37486. weight: math.unit(245, "lb"),
  37487. name: "Side",
  37488. image: {
  37489. source: "./media/characters/kavus-kazian/side.svg",
  37490. extra: 349/342,
  37491. bottom: 15/364
  37492. }
  37493. },
  37494. },
  37495. [
  37496. {
  37497. name: "Normal",
  37498. height: math.unit(7 + 1/12, "feet"),
  37499. default: true
  37500. },
  37501. ]
  37502. ))
  37503. characterMakers.push(() => makeCharacter(
  37504. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37505. {
  37506. normalFront: {
  37507. height: math.unit(5 + 11/12, "feet"),
  37508. name: "Front",
  37509. image: {
  37510. source: "./media/characters/moonlight-rose/normal-front.svg",
  37511. extra: 1980/1825,
  37512. bottom: 18/1998
  37513. },
  37514. form: "normal",
  37515. default: true
  37516. },
  37517. normalBack: {
  37518. height: math.unit(5 + 11/12, "feet"),
  37519. name: "Back",
  37520. image: {
  37521. source: "./media/characters/moonlight-rose/normal-back.svg",
  37522. extra: 2010/1839,
  37523. bottom: 10/2020
  37524. },
  37525. form: "normal"
  37526. },
  37527. demonFront: {
  37528. height: math.unit(1.5, "earths"),
  37529. name: "Front",
  37530. image: {
  37531. source: "./media/characters/moonlight-rose/demon.svg",
  37532. extra: 1400/1294,
  37533. bottom: 45/1445
  37534. },
  37535. form: "demon",
  37536. default: true
  37537. },
  37538. terraFront: {
  37539. height: math.unit(1.5, "earths"),
  37540. name: "Front",
  37541. image: {
  37542. source: "./media/characters/moonlight-rose/terra.svg"
  37543. },
  37544. form: "terra",
  37545. default: true
  37546. },
  37547. jupiterFront: {
  37548. height: math.unit(69911*2, "km"),
  37549. name: "Front",
  37550. image: {
  37551. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37552. extra: 1367/1286,
  37553. bottom: 55/1422
  37554. },
  37555. form: "jupiter",
  37556. default: true
  37557. },
  37558. neptuneFront: {
  37559. height: math.unit(24622*2, "feet"),
  37560. name: "Front",
  37561. image: {
  37562. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37563. extra: 1851/1712,
  37564. bottom: 0/1851
  37565. },
  37566. form: "neptune",
  37567. default: true
  37568. },
  37569. },
  37570. [
  37571. {
  37572. name: "\"Natural\" Height",
  37573. height: math.unit(5 + 11/12, "feet"),
  37574. form: "normal"
  37575. },
  37576. {
  37577. name: "Smallest comfortable size",
  37578. height: math.unit(40, "meters"),
  37579. form: "normal"
  37580. },
  37581. {
  37582. name: "Common size",
  37583. height: math.unit(50, "km"),
  37584. form: "normal",
  37585. default: true
  37586. },
  37587. {
  37588. name: "Normal",
  37589. height: math.unit(1.5, "earths"),
  37590. form: "demon",
  37591. default: true
  37592. },
  37593. {
  37594. name: "Universal",
  37595. height: math.unit(15, "universes"),
  37596. form: "demon"
  37597. },
  37598. {
  37599. name: "Earth",
  37600. height: math.unit(1.5, "earths"),
  37601. form: "terra",
  37602. default: true
  37603. },
  37604. {
  37605. name: "Super Earth",
  37606. height: math.unit(67.5, "earths"),
  37607. form: "terra"
  37608. },
  37609. {
  37610. name: "Doesn't fit in a solar system...",
  37611. height: math.unit(1, "galaxy"),
  37612. form: "terra"
  37613. },
  37614. {
  37615. name: "Saturn",
  37616. height: math.unit(58232*2, "km"),
  37617. form: "jupiter"
  37618. },
  37619. {
  37620. name: "Jupiter",
  37621. height: math.unit(69911*2, "km"),
  37622. form: "jupiter",
  37623. default: true
  37624. },
  37625. {
  37626. name: "HD 100546 b",
  37627. height: math.unit(482938, "km"),
  37628. form: "jupiter"
  37629. },
  37630. {
  37631. name: "Enceladus",
  37632. height: math.unit(513*2, "km"),
  37633. form: "neptune"
  37634. },
  37635. {
  37636. name: "Europe",
  37637. height: math.unit(1560*2, "km"),
  37638. form: "neptune"
  37639. },
  37640. {
  37641. name: "Neptune",
  37642. height: math.unit(24622*2, "km"),
  37643. form: "neptune",
  37644. default: true
  37645. },
  37646. {
  37647. name: "CoRoT-9b",
  37648. height: math.unit(75067*2, "km"),
  37649. form: "neptune"
  37650. },
  37651. ],
  37652. {
  37653. "normal": {
  37654. name: "Normal",
  37655. default: true
  37656. },
  37657. "demon": {
  37658. name: "Demon"
  37659. },
  37660. "terra": {
  37661. name: "Terra"
  37662. },
  37663. "jupiter": {
  37664. name: "Jupiter"
  37665. },
  37666. "neptune": {
  37667. name: "Neptune"
  37668. }
  37669. }
  37670. ))
  37671. characterMakers.push(() => makeCharacter(
  37672. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37673. {
  37674. front: {
  37675. height: math.unit(16, "feet"),
  37676. weight: math.unit(610, "kg"),
  37677. name: "Front",
  37678. image: {
  37679. source: "./media/characters/huckle/front.svg",
  37680. extra: 1731/1625,
  37681. bottom: 33/1764
  37682. }
  37683. },
  37684. back: {
  37685. height: math.unit(16, "feet"),
  37686. weight: math.unit(610, "kg"),
  37687. name: "Back",
  37688. image: {
  37689. source: "./media/characters/huckle/back.svg",
  37690. extra: 1738/1651,
  37691. bottom: 37/1775
  37692. }
  37693. },
  37694. laughing: {
  37695. height: math.unit(3.75, "feet"),
  37696. name: "Laughing",
  37697. image: {
  37698. source: "./media/characters/huckle/laughing.svg"
  37699. }
  37700. },
  37701. angry: {
  37702. height: math.unit(4.15, "feet"),
  37703. name: "Angry",
  37704. image: {
  37705. source: "./media/characters/huckle/angry.svg"
  37706. }
  37707. },
  37708. },
  37709. [
  37710. {
  37711. name: "Normal",
  37712. height: math.unit(16, "feet"),
  37713. default: true
  37714. },
  37715. {
  37716. name: "Mini Macro",
  37717. height: math.unit(463, "feet")
  37718. },
  37719. {
  37720. name: "Macro",
  37721. height: math.unit(1680, "meters")
  37722. },
  37723. {
  37724. name: "Mega Macro",
  37725. height: math.unit(175, "km")
  37726. },
  37727. {
  37728. name: "Terra Macro",
  37729. height: math.unit(32, "gigameters")
  37730. },
  37731. {
  37732. name: "Multiverse+",
  37733. height: math.unit(2.56e23, "yottameters")
  37734. },
  37735. ]
  37736. ))
  37737. characterMakers.push(() => makeCharacter(
  37738. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37739. {
  37740. front: {
  37741. height: math.unit(6 + 9/12, "feet"),
  37742. weight: math.unit(280, "lb"),
  37743. name: "Front",
  37744. image: {
  37745. source: "./media/characters/candy/front.svg",
  37746. extra: 234/217,
  37747. bottom: 11/245
  37748. }
  37749. },
  37750. },
  37751. [
  37752. {
  37753. name: "Really Small",
  37754. height: math.unit(0.1, "nm")
  37755. },
  37756. {
  37757. name: "Micro",
  37758. height: math.unit(2, "inches")
  37759. },
  37760. {
  37761. name: "Normal",
  37762. height: math.unit(6 + 9/12, "feet"),
  37763. default: true
  37764. },
  37765. {
  37766. name: "Small Macro",
  37767. height: math.unit(69, "feet")
  37768. },
  37769. {
  37770. name: "Macro",
  37771. height: math.unit(160, "feet")
  37772. },
  37773. {
  37774. name: "Megamacro",
  37775. height: math.unit(22000, "miles")
  37776. },
  37777. {
  37778. name: "Gigamacro",
  37779. height: math.unit(50000, "miles")
  37780. },
  37781. ]
  37782. ))
  37783. characterMakers.push(() => makeCharacter(
  37784. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37785. {
  37786. front: {
  37787. height: math.unit(4, "feet"),
  37788. weight: math.unit(90, "lb"),
  37789. name: "Front",
  37790. image: {
  37791. source: "./media/characters/joey-mcdonald/front.svg",
  37792. extra: 1059/852,
  37793. bottom: 33/1092
  37794. }
  37795. },
  37796. back: {
  37797. height: math.unit(4, "feet"),
  37798. weight: math.unit(90, "lb"),
  37799. name: "Back",
  37800. image: {
  37801. source: "./media/characters/joey-mcdonald/back.svg",
  37802. extra: 1077/879,
  37803. bottom: 5/1082
  37804. }
  37805. },
  37806. frontKobold: {
  37807. height: math.unit(4, "feet"),
  37808. weight: math.unit(100, "lb"),
  37809. name: "Front-kobold",
  37810. image: {
  37811. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37812. extra: 1480/1367,
  37813. bottom: 0/1480
  37814. }
  37815. },
  37816. backKobold: {
  37817. height: math.unit(4, "feet"),
  37818. weight: math.unit(100, "lb"),
  37819. name: "Back-kobold",
  37820. image: {
  37821. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37822. extra: 1449/1361,
  37823. bottom: 0/1449
  37824. }
  37825. },
  37826. },
  37827. [
  37828. {
  37829. name: "Normal",
  37830. height: math.unit(4, "feet"),
  37831. default: true
  37832. },
  37833. ]
  37834. ))
  37835. characterMakers.push(() => makeCharacter(
  37836. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37837. {
  37838. front: {
  37839. height: math.unit(12 + 6/12, "feet"),
  37840. name: "Front",
  37841. image: {
  37842. source: "./media/characters/kass-lockheed/front.svg",
  37843. extra: 354/343,
  37844. bottom: 9/363
  37845. }
  37846. },
  37847. back: {
  37848. height: math.unit(12 + 6/12, "feet"),
  37849. name: "Back",
  37850. image: {
  37851. source: "./media/characters/kass-lockheed/back.svg",
  37852. extra: 364/352,
  37853. bottom: 3/367
  37854. }
  37855. },
  37856. dick: {
  37857. height: math.unit(3.12, "feet"),
  37858. name: "Dick",
  37859. image: {
  37860. source: "./media/characters/kass-lockheed/dick.svg"
  37861. }
  37862. },
  37863. head: {
  37864. height: math.unit(2.6, "feet"),
  37865. name: "Head",
  37866. image: {
  37867. source: "./media/characters/kass-lockheed/head.svg"
  37868. }
  37869. },
  37870. bleh: {
  37871. height: math.unit(2.85, "feet"),
  37872. name: "Bleh",
  37873. image: {
  37874. source: "./media/characters/kass-lockheed/bleh.svg"
  37875. }
  37876. },
  37877. smug: {
  37878. height: math.unit(2.85, "feet"),
  37879. name: "Smug",
  37880. image: {
  37881. source: "./media/characters/kass-lockheed/smug.svg"
  37882. }
  37883. },
  37884. },
  37885. [
  37886. {
  37887. name: "Normal",
  37888. height: math.unit(12 + 6/12, "feet"),
  37889. default: true
  37890. },
  37891. ]
  37892. ))
  37893. characterMakers.push(() => makeCharacter(
  37894. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37895. {
  37896. front: {
  37897. height: math.unit(6 + 2/12, "feet"),
  37898. name: "Front",
  37899. image: {
  37900. source: "./media/characters/taylor/front.svg",
  37901. extra: 639/495,
  37902. bottom: 12/651
  37903. }
  37904. },
  37905. },
  37906. [
  37907. {
  37908. name: "Normal",
  37909. height: math.unit(6 + 2/12, "feet"),
  37910. default: true
  37911. },
  37912. {
  37913. name: "Big",
  37914. height: math.unit(15, "feet")
  37915. },
  37916. {
  37917. name: "Lorg",
  37918. height: math.unit(80, "feet")
  37919. },
  37920. {
  37921. name: "Too Lorg",
  37922. height: math.unit(120, "feet")
  37923. },
  37924. ]
  37925. ))
  37926. characterMakers.push(() => makeCharacter(
  37927. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37928. {
  37929. front: {
  37930. height: math.unit(15, "feet"),
  37931. name: "Front",
  37932. image: {
  37933. source: "./media/characters/kaizer/front.svg",
  37934. extra: 1612/1436,
  37935. bottom: 43/1655
  37936. }
  37937. },
  37938. },
  37939. [
  37940. {
  37941. name: "Normal",
  37942. height: math.unit(15, "feet"),
  37943. default: true
  37944. },
  37945. ]
  37946. ))
  37947. characterMakers.push(() => makeCharacter(
  37948. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  37949. {
  37950. front: {
  37951. height: math.unit(2, "feet"),
  37952. weight: math.unit(30, "lb"),
  37953. name: "Front",
  37954. image: {
  37955. source: "./media/characters/sandy/front.svg",
  37956. extra: 1439/1307,
  37957. bottom: 194/1633
  37958. }
  37959. },
  37960. },
  37961. [
  37962. {
  37963. name: "Normal",
  37964. height: math.unit(2, "feet"),
  37965. default: true
  37966. },
  37967. ]
  37968. ))
  37969. characterMakers.push(() => makeCharacter(
  37970. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  37971. {
  37972. front: {
  37973. height: math.unit(3, "feet"),
  37974. name: "Front",
  37975. image: {
  37976. source: "./media/characters/mellvi/front.svg",
  37977. extra: 1831/1630,
  37978. bottom: 58/1889
  37979. }
  37980. },
  37981. },
  37982. [
  37983. {
  37984. name: "Normal",
  37985. height: math.unit(3, "feet"),
  37986. default: true
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(5 + 11/12, "feet"),
  37995. weight: math.unit(200, "lb"),
  37996. name: "Front",
  37997. image: {
  37998. source: "./media/characters/shirou/front.svg",
  37999. extra: 2491/2383,
  38000. bottom: 189/2680
  38001. }
  38002. },
  38003. back: {
  38004. height: math.unit(5 + 11/12, "feet"),
  38005. weight: math.unit(200, "lb"),
  38006. name: "Back",
  38007. image: {
  38008. source: "./media/characters/shirou/back.svg",
  38009. extra: 2554/2450,
  38010. bottom: 76/2630
  38011. }
  38012. },
  38013. },
  38014. [
  38015. {
  38016. name: "Normal",
  38017. height: math.unit(5 + 11/12, "feet"),
  38018. default: true
  38019. },
  38020. ]
  38021. ))
  38022. characterMakers.push(() => makeCharacter(
  38023. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38024. {
  38025. front: {
  38026. height: math.unit(6 + 3/12, "feet"),
  38027. weight: math.unit(177, "lb"),
  38028. name: "Front",
  38029. image: {
  38030. source: "./media/characters/noryu/front.svg",
  38031. extra: 973/885,
  38032. bottom: 10/983
  38033. }
  38034. },
  38035. },
  38036. [
  38037. {
  38038. name: "Normal",
  38039. height: math.unit(6 + 3/12, "feet"),
  38040. default: true
  38041. },
  38042. ]
  38043. ))
  38044. characterMakers.push(() => makeCharacter(
  38045. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38046. {
  38047. front: {
  38048. height: math.unit(5 + 6/12, "feet"),
  38049. weight: math.unit(170, "lb"),
  38050. name: "Front",
  38051. image: {
  38052. source: "./media/characters/mevolas-rubenido/front.svg",
  38053. extra: 2109/1901,
  38054. bottom: 96/2205
  38055. }
  38056. },
  38057. },
  38058. [
  38059. {
  38060. name: "Normal",
  38061. height: math.unit(5 + 6/12, "feet"),
  38062. default: true
  38063. },
  38064. ]
  38065. ))
  38066. characterMakers.push(() => makeCharacter(
  38067. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38068. {
  38069. front: {
  38070. height: math.unit(100, "feet"),
  38071. name: "Front",
  38072. image: {
  38073. source: "./media/characters/dee/front.svg",
  38074. extra: 2153/2036,
  38075. bottom: 59/2212
  38076. }
  38077. },
  38078. back: {
  38079. height: math.unit(100, "feet"),
  38080. name: "Back",
  38081. image: {
  38082. source: "./media/characters/dee/back.svg",
  38083. extra: 2183/2058,
  38084. bottom: 75/2258
  38085. }
  38086. },
  38087. foot: {
  38088. height: math.unit(19.43, "feet"),
  38089. name: "Foot",
  38090. image: {
  38091. source: "./media/characters/dee/foot.svg"
  38092. }
  38093. },
  38094. hoof: {
  38095. height: math.unit(20.6, "feet"),
  38096. name: "Hoof",
  38097. image: {
  38098. source: "./media/characters/dee/hoof.svg"
  38099. }
  38100. },
  38101. },
  38102. [
  38103. {
  38104. name: "Macro",
  38105. height: math.unit(100, "feet"),
  38106. default: true
  38107. },
  38108. ]
  38109. ))
  38110. characterMakers.push(() => makeCharacter(
  38111. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38112. {
  38113. front: {
  38114. height: math.unit(5 + 6/12, "feet"),
  38115. name: "Front",
  38116. image: {
  38117. source: "./media/characters/teh/front.svg",
  38118. extra: 1002/847,
  38119. bottom: 62/1064
  38120. }
  38121. },
  38122. },
  38123. [
  38124. {
  38125. name: "Normal",
  38126. height: math.unit(5 + 6/12, "feet"),
  38127. default: true
  38128. },
  38129. ]
  38130. ))
  38131. characterMakers.push(() => makeCharacter(
  38132. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38133. {
  38134. side: {
  38135. height: math.unit(6 + 1/12, "feet"),
  38136. weight: math.unit(204, "lb"),
  38137. name: "Side",
  38138. image: {
  38139. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38140. extra: 974/775,
  38141. bottom: 169/1143
  38142. }
  38143. },
  38144. sitting: {
  38145. height: math.unit(6 + 2/12, "feet"),
  38146. weight: math.unit(204, "lb"),
  38147. name: "Sitting",
  38148. image: {
  38149. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38150. extra: 1175/964,
  38151. bottom: 378/1553
  38152. }
  38153. },
  38154. },
  38155. [
  38156. {
  38157. name: "Normal",
  38158. height: math.unit(6 + 1/12, "feet"),
  38159. default: true
  38160. },
  38161. ]
  38162. ))
  38163. characterMakers.push(() => makeCharacter(
  38164. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38165. {
  38166. front: {
  38167. height: math.unit(6, "inches"),
  38168. name: "Front",
  38169. image: {
  38170. source: "./media/characters/tululi/front.svg",
  38171. extra: 1997/1876,
  38172. bottom: 20/2017
  38173. }
  38174. },
  38175. },
  38176. [
  38177. {
  38178. name: "Normal",
  38179. height: math.unit(6, "inches"),
  38180. default: true
  38181. },
  38182. ]
  38183. ))
  38184. characterMakers.push(() => makeCharacter(
  38185. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38186. {
  38187. front: {
  38188. height: math.unit(4 + 1/12, "feet"),
  38189. name: "Front",
  38190. image: {
  38191. source: "./media/characters/star/front.svg",
  38192. extra: 1493/1189,
  38193. bottom: 48/1541
  38194. }
  38195. },
  38196. },
  38197. [
  38198. {
  38199. name: "Normal",
  38200. height: math.unit(4 + 1/12, "feet"),
  38201. default: true
  38202. },
  38203. ]
  38204. ))
  38205. characterMakers.push(() => makeCharacter(
  38206. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38207. {
  38208. front: {
  38209. height: math.unit(6 + 3/12, "feet"),
  38210. name: "Front",
  38211. image: {
  38212. source: "./media/characters/comet/front.svg",
  38213. extra: 1681/1462,
  38214. bottom: 26/1707
  38215. }
  38216. },
  38217. },
  38218. [
  38219. {
  38220. name: "Normal",
  38221. height: math.unit(6 + 3/12, "feet"),
  38222. default: true
  38223. },
  38224. ]
  38225. ))
  38226. characterMakers.push(() => makeCharacter(
  38227. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38228. {
  38229. front: {
  38230. height: math.unit(950, "feet"),
  38231. name: "Front",
  38232. image: {
  38233. source: "./media/characters/vortex/front.svg",
  38234. extra: 1497/1434,
  38235. bottom: 56/1553
  38236. }
  38237. },
  38238. maw: {
  38239. height: math.unit(285, "feet"),
  38240. name: "Maw",
  38241. image: {
  38242. source: "./media/characters/vortex/maw.svg"
  38243. }
  38244. },
  38245. },
  38246. [
  38247. {
  38248. name: "Macro",
  38249. height: math.unit(950, "feet"),
  38250. default: true
  38251. },
  38252. ]
  38253. ))
  38254. characterMakers.push(() => makeCharacter(
  38255. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38256. {
  38257. front: {
  38258. height: math.unit(600, "feet"),
  38259. weight: math.unit(0.02, "grams"),
  38260. name: "Front",
  38261. image: {
  38262. source: "./media/characters/doodle/front.svg",
  38263. extra: 1578/1413,
  38264. bottom: 37/1615
  38265. }
  38266. },
  38267. },
  38268. [
  38269. {
  38270. name: "Macro",
  38271. height: math.unit(600, "feet"),
  38272. default: true
  38273. },
  38274. ]
  38275. ))
  38276. characterMakers.push(() => makeCharacter(
  38277. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38278. {
  38279. front: {
  38280. height: math.unit(6 + 6/12, "feet"),
  38281. name: "Front",
  38282. image: {
  38283. source: "./media/characters/jai/front.svg",
  38284. extra: 1645/1534,
  38285. bottom: 115/1760
  38286. }
  38287. },
  38288. },
  38289. [
  38290. {
  38291. name: "Normal",
  38292. height: math.unit(6 + 6/12, "feet"),
  38293. default: true
  38294. },
  38295. ]
  38296. ))
  38297. characterMakers.push(() => makeCharacter(
  38298. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38299. {
  38300. front: {
  38301. height: math.unit(6 + 8/12, "feet"),
  38302. name: "Front",
  38303. image: {
  38304. source: "./media/characters/pixel/front.svg",
  38305. extra: 1900/1735,
  38306. bottom: 63/1963
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Normal",
  38313. height: math.unit(6 + 8/12, "feet"),
  38314. default: true
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38320. {
  38321. back: {
  38322. height: math.unit(4 + 1/12, "feet"),
  38323. weight: math.unit(75, "lb"),
  38324. name: "Back",
  38325. image: {
  38326. source: "./media/characters/rhett/back.svg",
  38327. extra: 930/878,
  38328. bottom: 25/955
  38329. }
  38330. },
  38331. front: {
  38332. height: math.unit(4 + 1/12, "feet"),
  38333. weight: math.unit(75, "lb"),
  38334. name: "Front",
  38335. image: {
  38336. source: "./media/characters/rhett/front.svg",
  38337. extra: 1682/1586,
  38338. bottom: 92/1774
  38339. }
  38340. },
  38341. },
  38342. [
  38343. {
  38344. name: "Micro",
  38345. height: math.unit(8, "inches")
  38346. },
  38347. {
  38348. name: "Tiny",
  38349. height: math.unit(2, "feet")
  38350. },
  38351. {
  38352. name: "Normal",
  38353. height: math.unit(4 + 1/12, "feet"),
  38354. default: true
  38355. },
  38356. ]
  38357. ))
  38358. characterMakers.push(() => makeCharacter(
  38359. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38360. {
  38361. front: {
  38362. height: math.unit(3 + 3/12, "feet"),
  38363. name: "Front",
  38364. image: {
  38365. source: "./media/characters/penny/front.svg",
  38366. extra: 1406/1311,
  38367. bottom: 26/1432
  38368. }
  38369. },
  38370. },
  38371. [
  38372. {
  38373. name: "Normal",
  38374. height: math.unit(3 + 3/12, "feet"),
  38375. default: true
  38376. },
  38377. ]
  38378. ))
  38379. characterMakers.push(() => makeCharacter(
  38380. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38381. {
  38382. front: {
  38383. height: math.unit(4 + 11/12, "feet"),
  38384. name: "Front",
  38385. image: {
  38386. source: "./media/characters/monty/front.svg",
  38387. extra: 1479/1209,
  38388. bottom: 0/1479
  38389. }
  38390. },
  38391. },
  38392. [
  38393. {
  38394. name: "Normal",
  38395. height: math.unit(4 + 11/12, "feet"),
  38396. default: true
  38397. },
  38398. ]
  38399. ))
  38400. characterMakers.push(() => makeCharacter(
  38401. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38402. {
  38403. front: {
  38404. height: math.unit(8 + 4/12, "feet"),
  38405. name: "Front",
  38406. image: {
  38407. source: "./media/characters/sterling/front.svg",
  38408. extra: 1420/1236,
  38409. bottom: 27/1447
  38410. }
  38411. },
  38412. },
  38413. [
  38414. {
  38415. name: "Normal",
  38416. height: math.unit(8 + 4/12, "feet"),
  38417. default: true
  38418. },
  38419. ]
  38420. ))
  38421. characterMakers.push(() => makeCharacter(
  38422. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38423. {
  38424. front: {
  38425. height: math.unit(15, "feet"),
  38426. name: "Front",
  38427. image: {
  38428. source: "./media/characters/marble/front.svg",
  38429. extra: 973/937,
  38430. bottom: 32/1005
  38431. }
  38432. },
  38433. },
  38434. [
  38435. {
  38436. name: "Normal",
  38437. height: math.unit(15, "feet"),
  38438. default: true
  38439. },
  38440. ]
  38441. ))
  38442. characterMakers.push(() => makeCharacter(
  38443. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38444. {
  38445. front: {
  38446. height: math.unit(3, "inches"),
  38447. name: "Front",
  38448. image: {
  38449. source: "./media/characters/powder/front.svg",
  38450. extra: 1504/1334,
  38451. bottom: 518/2022
  38452. }
  38453. },
  38454. },
  38455. [
  38456. {
  38457. name: "Normal",
  38458. height: math.unit(3, "inches"),
  38459. default: true
  38460. },
  38461. ]
  38462. ))
  38463. characterMakers.push(() => makeCharacter(
  38464. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38465. {
  38466. front: {
  38467. height: math.unit(4 + 5/12, "feet"),
  38468. name: "Front",
  38469. image: {
  38470. source: "./media/characters/joey-raccoon/front.svg",
  38471. extra: 1273/1197,
  38472. bottom: 0/1273
  38473. }
  38474. },
  38475. },
  38476. [
  38477. {
  38478. name: "Normal",
  38479. height: math.unit(4 + 5/12, "feet"),
  38480. default: true
  38481. },
  38482. ]
  38483. ))
  38484. characterMakers.push(() => makeCharacter(
  38485. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38486. {
  38487. front: {
  38488. height: math.unit(8 + 4/12, "feet"),
  38489. name: "Front",
  38490. image: {
  38491. source: "./media/characters/vick/front.svg",
  38492. extra: 2187/2118,
  38493. bottom: 47/2234
  38494. }
  38495. },
  38496. },
  38497. [
  38498. {
  38499. name: "Normal",
  38500. height: math.unit(8 + 4/12, "feet"),
  38501. default: true
  38502. },
  38503. ]
  38504. ))
  38505. characterMakers.push(() => makeCharacter(
  38506. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38507. {
  38508. front: {
  38509. height: math.unit(5 + 5/12, "feet"),
  38510. name: "Front",
  38511. image: {
  38512. source: "./media/characters/mitsy/front.svg",
  38513. extra: 1842/1695,
  38514. bottom: 0/1842
  38515. }
  38516. },
  38517. },
  38518. [
  38519. {
  38520. name: "Normal",
  38521. height: math.unit(5 + 5/12, "feet"),
  38522. default: true
  38523. },
  38524. ]
  38525. ))
  38526. characterMakers.push(() => makeCharacter(
  38527. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38528. {
  38529. front: {
  38530. height: math.unit(6 + 3/12, "feet"),
  38531. name: "Front",
  38532. image: {
  38533. source: "./media/characters/silvy/front.svg",
  38534. extra: 1995/1836,
  38535. bottom: 225/2220
  38536. }
  38537. },
  38538. },
  38539. [
  38540. {
  38541. name: "Normal",
  38542. height: math.unit(6 + 3/12, "feet"),
  38543. default: true
  38544. },
  38545. ]
  38546. ))
  38547. characterMakers.push(() => makeCharacter(
  38548. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38549. {
  38550. front: {
  38551. height: math.unit(3 + 8/12, "feet"),
  38552. name: "Front",
  38553. image: {
  38554. source: "./media/characters/rodney/front.svg",
  38555. extra: 1956/1747,
  38556. bottom: 31/1987
  38557. }
  38558. },
  38559. frontDressed: {
  38560. height: math.unit(2.9, "feet"),
  38561. name: "Front (Dressed)",
  38562. image: {
  38563. source: "./media/characters/rodney/front-dressed.svg",
  38564. extra: 1382/1241,
  38565. bottom: 385/1767
  38566. }
  38567. },
  38568. },
  38569. [
  38570. {
  38571. name: "Normal",
  38572. height: math.unit(3 + 8/12, "feet"),
  38573. default: true
  38574. },
  38575. ]
  38576. ))
  38577. characterMakers.push(() => makeCharacter(
  38578. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38579. {
  38580. front: {
  38581. height: math.unit(5 + 9/12, "feet"),
  38582. weight: math.unit(194, "lbs"),
  38583. name: "Front",
  38584. image: {
  38585. source: "./media/characters/zakail-sudekai/front.svg",
  38586. extra: 2696/2533,
  38587. bottom: 248/2944
  38588. }
  38589. },
  38590. maw: {
  38591. height: math.unit(1.35, "feet"),
  38592. name: "Maw",
  38593. image: {
  38594. source: "./media/characters/zakail-sudekai/maw.svg"
  38595. }
  38596. },
  38597. },
  38598. [
  38599. {
  38600. name: "Normal",
  38601. height: math.unit(5 + 9/12, "feet"),
  38602. default: true
  38603. },
  38604. ]
  38605. ))
  38606. characterMakers.push(() => makeCharacter(
  38607. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38608. {
  38609. front: {
  38610. height: math.unit(8 + 4/12, "feet"),
  38611. weight: math.unit(1200, "lb"),
  38612. name: "Front",
  38613. image: {
  38614. source: "./media/characters/eleanor/front.svg",
  38615. extra: 1226/1192,
  38616. bottom: 52/1278
  38617. }
  38618. },
  38619. back: {
  38620. height: math.unit(8 + 4/12, "feet"),
  38621. weight: math.unit(1200, "lb"),
  38622. name: "Back",
  38623. image: {
  38624. source: "./media/characters/eleanor/back.svg",
  38625. extra: 1242/1184,
  38626. bottom: 60/1302
  38627. }
  38628. },
  38629. head: {
  38630. height: math.unit(2.62, "feet"),
  38631. name: "Head",
  38632. image: {
  38633. source: "./media/characters/eleanor/head.svg"
  38634. }
  38635. },
  38636. },
  38637. [
  38638. {
  38639. name: "Normal",
  38640. height: math.unit(8 + 4/12, "feet"),
  38641. default: true
  38642. },
  38643. ]
  38644. ))
  38645. characterMakers.push(() => makeCharacter(
  38646. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38647. {
  38648. front: {
  38649. height: math.unit(8 + 4/12, "feet"),
  38650. weight: math.unit(750, "lb"),
  38651. name: "Front",
  38652. image: {
  38653. source: "./media/characters/tanya/front.svg",
  38654. extra: 1749/1615,
  38655. bottom: 33/1782
  38656. }
  38657. },
  38658. },
  38659. [
  38660. {
  38661. name: "Normal",
  38662. height: math.unit(8 + 4/12, "feet"),
  38663. default: true
  38664. },
  38665. ]
  38666. ))
  38667. characterMakers.push(() => makeCharacter(
  38668. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38669. {
  38670. front: {
  38671. height: math.unit(5, "feet"),
  38672. weight: math.unit(225, "lb"),
  38673. name: "Front",
  38674. image: {
  38675. source: "./media/characters/cindy/front.svg",
  38676. extra: 1320/1250,
  38677. bottom: 42/1362
  38678. }
  38679. },
  38680. frontDressed: {
  38681. height: math.unit(5, "feet"),
  38682. weight: math.unit(225, "lb"),
  38683. name: "Front (Dressed)",
  38684. image: {
  38685. source: "./media/characters/cindy/front-dressed.svg",
  38686. extra: 1320/1250,
  38687. bottom: 42/1362
  38688. }
  38689. },
  38690. back: {
  38691. height: math.unit(5, "feet"),
  38692. weight: math.unit(225, "lb"),
  38693. name: "Back",
  38694. image: {
  38695. source: "./media/characters/cindy/back.svg",
  38696. extra: 1384/1346,
  38697. bottom: 14/1398
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Normal",
  38704. height: math.unit(5, "feet"),
  38705. default: true
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38711. {
  38712. front: {
  38713. height: math.unit(6 + 9/12, "feet"),
  38714. weight: math.unit(440, "lb"),
  38715. name: "Front",
  38716. image: {
  38717. source: "./media/characters/wilbur-owen/front.svg",
  38718. extra: 1575/1448,
  38719. bottom: 72/1647
  38720. }
  38721. },
  38722. back: {
  38723. height: math.unit(6 + 9/12, "feet"),
  38724. weight: math.unit(440, "lb"),
  38725. name: "Back",
  38726. image: {
  38727. source: "./media/characters/wilbur-owen/back.svg",
  38728. extra: 1578/1445,
  38729. bottom: 36/1614
  38730. }
  38731. },
  38732. },
  38733. [
  38734. {
  38735. name: "Normal",
  38736. height: math.unit(6 + 9/12, "feet"),
  38737. default: true
  38738. },
  38739. ]
  38740. ))
  38741. characterMakers.push(() => makeCharacter(
  38742. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38743. {
  38744. front: {
  38745. height: math.unit(6 + 5/12, "feet"),
  38746. weight: math.unit(650, "lb"),
  38747. name: "Front",
  38748. image: {
  38749. source: "./media/characters/keegan/front.svg",
  38750. extra: 2387/2198,
  38751. bottom: 33/2420
  38752. }
  38753. },
  38754. side: {
  38755. height: math.unit(6 + 5/12, "feet"),
  38756. weight: math.unit(650, "lb"),
  38757. name: "Side",
  38758. image: {
  38759. source: "./media/characters/keegan/side.svg",
  38760. extra: 2390/2202,
  38761. bottom: 47/2437
  38762. }
  38763. },
  38764. back: {
  38765. height: math.unit(6 + 5/12, "feet"),
  38766. weight: math.unit(650, "lb"),
  38767. name: "Back",
  38768. image: {
  38769. source: "./media/characters/keegan/back.svg",
  38770. extra: 2418/2268,
  38771. bottom: 15/2433
  38772. }
  38773. },
  38774. frontSfw: {
  38775. height: math.unit(6 + 5/12, "feet"),
  38776. weight: math.unit(650, "lb"),
  38777. name: "Front (SFW)",
  38778. image: {
  38779. source: "./media/characters/keegan/front-sfw.svg",
  38780. extra: 2387/2198,
  38781. bottom: 33/2420
  38782. }
  38783. },
  38784. beans: {
  38785. height: math.unit(1.85, "feet"),
  38786. name: "Beans",
  38787. image: {
  38788. source: "./media/characters/keegan/beans.svg"
  38789. }
  38790. },
  38791. },
  38792. [
  38793. {
  38794. name: "Normal",
  38795. height: math.unit(6 + 5/12, "feet"),
  38796. default: true
  38797. },
  38798. ]
  38799. ))
  38800. characterMakers.push(() => makeCharacter(
  38801. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38802. {
  38803. front: {
  38804. height: math.unit(9, "feet"),
  38805. name: "Front",
  38806. image: {
  38807. source: "./media/characters/colton/front.svg",
  38808. extra: 1589/1326,
  38809. bottom: 139/1728
  38810. }
  38811. },
  38812. },
  38813. [
  38814. {
  38815. name: "Normal",
  38816. height: math.unit(9, "feet"),
  38817. default: true
  38818. },
  38819. ]
  38820. ))
  38821. characterMakers.push(() => makeCharacter(
  38822. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38823. {
  38824. front: {
  38825. height: math.unit(2 + 9/12, "feet"),
  38826. name: "Front",
  38827. image: {
  38828. source: "./media/characters/bora/front.svg",
  38829. extra: 1265/1250,
  38830. bottom: 24/1289
  38831. }
  38832. },
  38833. },
  38834. [
  38835. {
  38836. name: "Normal",
  38837. height: math.unit(2 + 9/12, "feet"),
  38838. default: true
  38839. },
  38840. ]
  38841. ))
  38842. characterMakers.push(() => makeCharacter(
  38843. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38844. {
  38845. front: {
  38846. height: math.unit(8, "feet"),
  38847. name: "Front",
  38848. image: {
  38849. source: "./media/characters/myu-myu/front.svg",
  38850. extra: 1949/1857,
  38851. bottom: 90/2039
  38852. }
  38853. },
  38854. },
  38855. [
  38856. {
  38857. name: "Normal",
  38858. height: math.unit(8, "feet"),
  38859. default: true
  38860. },
  38861. {
  38862. name: "Big",
  38863. height: math.unit(15, "feet")
  38864. },
  38865. {
  38866. name: "BIG",
  38867. height: math.unit(25, "feet")
  38868. },
  38869. ]
  38870. ))
  38871. characterMakers.push(() => makeCharacter(
  38872. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38873. {
  38874. side: {
  38875. height: math.unit(7 + 5/12, "feet"),
  38876. weight: math.unit(2800, "lb"),
  38877. name: "Side",
  38878. image: {
  38879. source: "./media/characters/haloren/side.svg",
  38880. extra: 1793/409,
  38881. bottom: 59/1852
  38882. }
  38883. },
  38884. frontPaw: {
  38885. height: math.unit(2.36, "feet"),
  38886. name: "Front paw",
  38887. image: {
  38888. source: "./media/characters/haloren/front-paw.svg"
  38889. }
  38890. },
  38891. hindPaw: {
  38892. height: math.unit(3.18, "feet"),
  38893. name: "Hind paw",
  38894. image: {
  38895. source: "./media/characters/haloren/hind-paw.svg"
  38896. }
  38897. },
  38898. maw: {
  38899. height: math.unit(5.05, "feet"),
  38900. name: "Maw",
  38901. image: {
  38902. source: "./media/characters/haloren/maw.svg"
  38903. }
  38904. },
  38905. dick: {
  38906. height: math.unit(2.90, "feet"),
  38907. name: "Dick",
  38908. image: {
  38909. source: "./media/characters/haloren/dick.svg"
  38910. }
  38911. },
  38912. },
  38913. [
  38914. {
  38915. name: "Normal",
  38916. height: math.unit(7 + 5/12, "feet"),
  38917. default: true
  38918. },
  38919. {
  38920. name: "Enhanced",
  38921. height: math.unit(14 + 3/12, "feet")
  38922. },
  38923. ]
  38924. ))
  38925. characterMakers.push(() => makeCharacter(
  38926. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38927. {
  38928. front: {
  38929. height: math.unit(171, "cm"),
  38930. name: "Front",
  38931. image: {
  38932. source: "./media/characters/kimmy/front.svg",
  38933. extra: 1491/1435,
  38934. bottom: 53/1544
  38935. }
  38936. },
  38937. },
  38938. [
  38939. {
  38940. name: "Small",
  38941. height: math.unit(9, "cm")
  38942. },
  38943. {
  38944. name: "Normal",
  38945. height: math.unit(171, "cm"),
  38946. default: true
  38947. },
  38948. ]
  38949. ))
  38950. characterMakers.push(() => makeCharacter(
  38951. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  38952. {
  38953. front: {
  38954. height: math.unit(8, "feet"),
  38955. weight: math.unit(300, "lb"),
  38956. name: "Front",
  38957. image: {
  38958. source: "./media/characters/galeboomer/front.svg",
  38959. extra: 4651/4415,
  38960. bottom: 162/4813
  38961. }
  38962. },
  38963. back: {
  38964. height: math.unit(8, "feet"),
  38965. weight: math.unit(300, "lb"),
  38966. name: "Back",
  38967. image: {
  38968. source: "./media/characters/galeboomer/back.svg",
  38969. extra: 4544/4314,
  38970. bottom: 16/4560
  38971. }
  38972. },
  38973. frontAlt: {
  38974. height: math.unit(8, "feet"),
  38975. weight: math.unit(300, "lb"),
  38976. name: "Front (Alt)",
  38977. image: {
  38978. source: "./media/characters/galeboomer/front-alt.svg",
  38979. extra: 4458/4228,
  38980. bottom: 68/4526
  38981. }
  38982. },
  38983. maw: {
  38984. height: math.unit(1.2, "feet"),
  38985. name: "Maw",
  38986. image: {
  38987. source: "./media/characters/galeboomer/maw.svg"
  38988. }
  38989. },
  38990. },
  38991. [
  38992. {
  38993. name: "Normal",
  38994. height: math.unit(8, "feet"),
  38995. default: true
  38996. },
  38997. ]
  38998. ))
  38999. characterMakers.push(() => makeCharacter(
  39000. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39001. {
  39002. front: {
  39003. height: math.unit(5 + 9/12, "feet"),
  39004. weight: math.unit(120, "lb"),
  39005. name: "Front",
  39006. image: {
  39007. source: "./media/characters/chyr/front.svg",
  39008. extra: 1323/1254,
  39009. bottom: 63/1386
  39010. }
  39011. },
  39012. back: {
  39013. height: math.unit(5 + 9/12, "feet"),
  39014. weight: math.unit(120, "lb"),
  39015. name: "Back",
  39016. image: {
  39017. source: "./media/characters/chyr/back.svg",
  39018. extra: 1323/1252,
  39019. bottom: 48/1371
  39020. }
  39021. },
  39022. },
  39023. [
  39024. {
  39025. name: "Normal",
  39026. height: math.unit(5 + 9/12, "feet"),
  39027. default: true
  39028. },
  39029. ]
  39030. ))
  39031. characterMakers.push(() => makeCharacter(
  39032. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39033. {
  39034. front: {
  39035. height: math.unit(7, "feet"),
  39036. weight: math.unit(310, "lb"),
  39037. name: "Front",
  39038. image: {
  39039. source: "./media/characters/solarus/front.svg",
  39040. extra: 2415/2021,
  39041. bottom: 103/2518
  39042. }
  39043. },
  39044. back: {
  39045. height: math.unit(7, "feet"),
  39046. weight: math.unit(310, "lb"),
  39047. name: "Back",
  39048. image: {
  39049. source: "./media/characters/solarus/back.svg",
  39050. extra: 2463/2089,
  39051. bottom: 79/2542
  39052. }
  39053. },
  39054. },
  39055. [
  39056. {
  39057. name: "Normal",
  39058. height: math.unit(7, "feet"),
  39059. default: true
  39060. },
  39061. ]
  39062. ))
  39063. characterMakers.push(() => makeCharacter(
  39064. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39065. {
  39066. front: {
  39067. height: math.unit(16, "feet"),
  39068. name: "Front",
  39069. image: {
  39070. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39071. extra: 1844/1780,
  39072. bottom: 58/1902
  39073. }
  39074. },
  39075. winterCoat: {
  39076. height: math.unit(16, "feet"),
  39077. name: "Winter Coat",
  39078. image: {
  39079. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39080. extra: 1807/1775,
  39081. bottom: 69/1876
  39082. }
  39083. },
  39084. },
  39085. [
  39086. {
  39087. name: "Normal",
  39088. height: math.unit(16, "feet"),
  39089. default: true
  39090. },
  39091. {
  39092. name: "Chicago Size",
  39093. height: math.unit(560, "feet")
  39094. },
  39095. ]
  39096. ))
  39097. characterMakers.push(() => makeCharacter(
  39098. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39099. {
  39100. front: {
  39101. height: math.unit(11 + 6/12, "feet"),
  39102. weight: math.unit(1366, "lb"),
  39103. name: "Front",
  39104. image: {
  39105. source: "./media/characters/lexor/front.svg",
  39106. extra: 1560/1481,
  39107. bottom: 211/1771
  39108. }
  39109. },
  39110. back: {
  39111. height: math.unit(11 + 6/12, "feet"),
  39112. weight: math.unit(1366, "lb"),
  39113. name: "Back",
  39114. image: {
  39115. source: "./media/characters/lexor/back.svg",
  39116. extra: 1614/1533,
  39117. bottom: 76/1690
  39118. }
  39119. },
  39120. maw: {
  39121. height: math.unit(3, "feet"),
  39122. name: "Maw",
  39123. image: {
  39124. source: "./media/characters/lexor/maw.svg"
  39125. }
  39126. },
  39127. dick: {
  39128. height: math.unit(2.59, "feet"),
  39129. name: "Dick",
  39130. image: {
  39131. source: "./media/characters/lexor/dick.svg"
  39132. }
  39133. },
  39134. },
  39135. [
  39136. {
  39137. name: "Normal",
  39138. height: math.unit(11 + 6/12, "feet"),
  39139. default: true
  39140. },
  39141. ]
  39142. ))
  39143. characterMakers.push(() => makeCharacter(
  39144. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39145. {
  39146. front: {
  39147. height: math.unit(5 + 8/12, "feet"),
  39148. name: "Front",
  39149. image: {
  39150. source: "./media/characters/magnum/front.svg",
  39151. extra: 942/855,
  39152. bottom: 26/968
  39153. }
  39154. },
  39155. },
  39156. [
  39157. {
  39158. name: "Normal",
  39159. height: math.unit(5 + 8/12, "feet"),
  39160. default: true
  39161. },
  39162. ]
  39163. ))
  39164. characterMakers.push(() => makeCharacter(
  39165. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39166. {
  39167. front: {
  39168. height: math.unit(18 + 4/12, "feet"),
  39169. weight: math.unit(1500, "kg"),
  39170. name: "Front",
  39171. image: {
  39172. source: "./media/characters/solas-sharpsman/front.svg",
  39173. extra: 1698/1589,
  39174. bottom: 0/1698
  39175. }
  39176. },
  39177. },
  39178. [
  39179. {
  39180. name: "Normal",
  39181. height: math.unit(18 + 4/12, "feet"),
  39182. default: true
  39183. },
  39184. ]
  39185. ))
  39186. characterMakers.push(() => makeCharacter(
  39187. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39188. {
  39189. front: {
  39190. height: math.unit(5 + 5/12, "feet"),
  39191. weight: math.unit(180, "lb"),
  39192. name: "Front",
  39193. image: {
  39194. source: "./media/characters/october/front.svg",
  39195. extra: 1800/1650,
  39196. bottom: 0/1800
  39197. }
  39198. },
  39199. frontNsfw: {
  39200. height: math.unit(5 + 5/12, "feet"),
  39201. weight: math.unit(180, "lb"),
  39202. name: "Front (NSFW)",
  39203. image: {
  39204. source: "./media/characters/october/front-nsfw.svg",
  39205. extra: 1392/1307,
  39206. bottom: 42/1434
  39207. }
  39208. },
  39209. },
  39210. [
  39211. {
  39212. name: "Normal",
  39213. height: math.unit(5 + 5/12, "feet"),
  39214. default: true
  39215. },
  39216. ]
  39217. ))
  39218. characterMakers.push(() => makeCharacter(
  39219. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39220. {
  39221. front: {
  39222. height: math.unit(8 + 6/12, "feet"),
  39223. name: "Front",
  39224. image: {
  39225. source: "./media/characters/essynkardi/front.svg",
  39226. extra: 1541/1457,
  39227. bottom: 47/1588
  39228. }
  39229. },
  39230. },
  39231. [
  39232. {
  39233. name: "Normal",
  39234. height: math.unit(8 + 6/12, "feet"),
  39235. default: true
  39236. },
  39237. ]
  39238. ))
  39239. characterMakers.push(() => makeCharacter(
  39240. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39241. {
  39242. front: {
  39243. height: math.unit(6 + 6/12, "feet"),
  39244. weight: math.unit(7, "lb"),
  39245. name: "Front",
  39246. image: {
  39247. source: "./media/characters/icky/front.svg",
  39248. extra: 813/782,
  39249. bottom: 66/879
  39250. }
  39251. },
  39252. back: {
  39253. height: math.unit(6 + 6/12, "feet"),
  39254. weight: math.unit(7, "lb"),
  39255. name: "Back",
  39256. image: {
  39257. source: "./media/characters/icky/back.svg",
  39258. extra: 754/735,
  39259. bottom: 56/810
  39260. }
  39261. },
  39262. },
  39263. [
  39264. {
  39265. name: "Normal",
  39266. height: math.unit(6 + 6/12, "feet"),
  39267. default: true
  39268. },
  39269. ]
  39270. ))
  39271. characterMakers.push(() => makeCharacter(
  39272. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39273. {
  39274. front: {
  39275. height: math.unit(15, "feet"),
  39276. name: "Front",
  39277. image: {
  39278. source: "./media/characters/rojas/front.svg",
  39279. extra: 1462/1408,
  39280. bottom: 95/1557
  39281. }
  39282. },
  39283. back: {
  39284. height: math.unit(15, "feet"),
  39285. name: "Back",
  39286. image: {
  39287. source: "./media/characters/rojas/back.svg",
  39288. extra: 1023/954,
  39289. bottom: 28/1051
  39290. }
  39291. },
  39292. },
  39293. [
  39294. {
  39295. name: "Normal",
  39296. height: math.unit(15, "feet"),
  39297. default: true
  39298. },
  39299. ]
  39300. ))
  39301. characterMakers.push(() => makeCharacter(
  39302. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39303. {
  39304. frontHuman: {
  39305. height: math.unit(5 + 7/12, "feet"),
  39306. name: "Front (Human)",
  39307. image: {
  39308. source: "./media/characters/alek-dryagan/front-human.svg",
  39309. extra: 1687/1667,
  39310. bottom: 69/1756
  39311. }
  39312. },
  39313. backHuman: {
  39314. height: math.unit(5 + 7/12, "feet"),
  39315. name: "Back (Human)",
  39316. image: {
  39317. source: "./media/characters/alek-dryagan/back-human.svg",
  39318. extra: 1670/1649,
  39319. bottom: 65/1735
  39320. }
  39321. },
  39322. frontDemi: {
  39323. height: math.unit(65, "feet"),
  39324. name: "Front (Demi)",
  39325. image: {
  39326. source: "./media/characters/alek-dryagan/front-demi.svg",
  39327. extra: 1669/1642,
  39328. bottom: 49/1718
  39329. }
  39330. },
  39331. backDemi: {
  39332. height: math.unit(65, "feet"),
  39333. name: "Back (Demi)",
  39334. image: {
  39335. source: "./media/characters/alek-dryagan/back-demi.svg",
  39336. extra: 1658/1637,
  39337. bottom: 40/1698
  39338. }
  39339. },
  39340. mawHuman: {
  39341. height: math.unit(0.3, "feet"),
  39342. name: "Maw (Human)",
  39343. image: {
  39344. source: "./media/characters/alek-dryagan/maw-human.svg"
  39345. }
  39346. },
  39347. mawDemi: {
  39348. height: math.unit(3.8, "feet"),
  39349. name: "Maw (Demi)",
  39350. image: {
  39351. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39352. }
  39353. },
  39354. },
  39355. [
  39356. {
  39357. name: "Normal",
  39358. height: math.unit(5 + 7/12, "feet"),
  39359. default: true
  39360. },
  39361. ]
  39362. ))
  39363. characterMakers.push(() => makeCharacter(
  39364. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39365. {
  39366. frontHuman: {
  39367. height: math.unit(5 + 2/12, "feet"),
  39368. name: "Front (Human)",
  39369. image: {
  39370. source: "./media/characters/gen/front-human.svg",
  39371. extra: 1627/1538,
  39372. bottom: 71/1698
  39373. }
  39374. },
  39375. backHuman: {
  39376. height: math.unit(5 + 2/12, "feet"),
  39377. name: "Back (Human)",
  39378. image: {
  39379. source: "./media/characters/gen/back-human.svg",
  39380. extra: 1638/1548,
  39381. bottom: 69/1707
  39382. }
  39383. },
  39384. frontDemi: {
  39385. height: math.unit(5 + 2/12, "feet"),
  39386. name: "Front (Demi)",
  39387. image: {
  39388. source: "./media/characters/gen/front-demi.svg",
  39389. extra: 1627/1538,
  39390. bottom: 71/1698
  39391. }
  39392. },
  39393. backDemi: {
  39394. height: math.unit(5 + 2/12, "feet"),
  39395. name: "Back (Demi)",
  39396. image: {
  39397. source: "./media/characters/gen/back-demi.svg",
  39398. extra: 1638/1548,
  39399. bottom: 69/1707
  39400. }
  39401. },
  39402. },
  39403. [
  39404. {
  39405. name: "Normal",
  39406. height: math.unit(5 + 2/12, "feet"),
  39407. default: true
  39408. },
  39409. ]
  39410. ))
  39411. characterMakers.push(() => makeCharacter(
  39412. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39413. {
  39414. frontImp: {
  39415. height: math.unit(1 + 11/12, "feet"),
  39416. name: "Front (Imp)",
  39417. image: {
  39418. source: "./media/characters/max-kobold/front-imp.svg",
  39419. extra: 1238/1134,
  39420. bottom: 81/1319
  39421. }
  39422. },
  39423. backImp: {
  39424. height: math.unit(1 + 11/12, "feet"),
  39425. name: "Back (Imp)",
  39426. image: {
  39427. source: "./media/characters/max-kobold/back-imp.svg",
  39428. extra: 1334/1175,
  39429. bottom: 34/1368
  39430. }
  39431. },
  39432. frontDemi: {
  39433. height: math.unit(5 + 9/12, "feet"),
  39434. name: "Front (Demi)",
  39435. image: {
  39436. source: "./media/characters/max-kobold/front-demi.svg",
  39437. extra: 1715/1685,
  39438. bottom: 54/1769
  39439. }
  39440. },
  39441. backDemi: {
  39442. height: math.unit(5 + 9/12, "feet"),
  39443. name: "Back (Demi)",
  39444. image: {
  39445. source: "./media/characters/max-kobold/back-demi.svg",
  39446. extra: 1752/1729,
  39447. bottom: 41/1793
  39448. }
  39449. },
  39450. handImp: {
  39451. height: math.unit(0.45, "feet"),
  39452. name: "Hand (Imp)",
  39453. image: {
  39454. source: "./media/characters/max-kobold/hand.svg"
  39455. }
  39456. },
  39457. pawImp: {
  39458. height: math.unit(0.46, "feet"),
  39459. name: "Paw (Imp)",
  39460. image: {
  39461. source: "./media/characters/max-kobold/paw.svg"
  39462. }
  39463. },
  39464. handDemi: {
  39465. height: math.unit(0.80, "feet"),
  39466. name: "Hand (Demi)",
  39467. image: {
  39468. source: "./media/characters/max-kobold/hand.svg"
  39469. }
  39470. },
  39471. pawDemi: {
  39472. height: math.unit(1.1, "feet"),
  39473. name: "Paw (Demi)",
  39474. image: {
  39475. source: "./media/characters/max-kobold/paw.svg"
  39476. }
  39477. },
  39478. headImp: {
  39479. height: math.unit(1.33, "feet"),
  39480. name: "Head (Imp)",
  39481. image: {
  39482. source: "./media/characters/max-kobold/head-imp.svg"
  39483. }
  39484. },
  39485. mawImp: {
  39486. height: math.unit(0.75, "feet"),
  39487. name: "Maw (Imp)",
  39488. image: {
  39489. source: "./media/characters/max-kobold/maw-imp.svg"
  39490. }
  39491. },
  39492. mawDemi: {
  39493. height: math.unit(0.42, "feet"),
  39494. name: "Maw (Demi)",
  39495. image: {
  39496. source: "./media/characters/max-kobold/maw-demi.svg"
  39497. }
  39498. },
  39499. },
  39500. [
  39501. {
  39502. name: "Normal",
  39503. height: math.unit(1 + 11/12, "feet"),
  39504. default: true
  39505. },
  39506. ]
  39507. ))
  39508. characterMakers.push(() => makeCharacter(
  39509. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39510. {
  39511. front: {
  39512. height: math.unit(7 + 5/12, "feet"),
  39513. name: "Front",
  39514. image: {
  39515. source: "./media/characters/carbon/front.svg",
  39516. extra: 1754/1689,
  39517. bottom: 65/1819
  39518. }
  39519. },
  39520. back: {
  39521. height: math.unit(7 + 5/12, "feet"),
  39522. name: "Back",
  39523. image: {
  39524. source: "./media/characters/carbon/back.svg",
  39525. extra: 1762/1695,
  39526. bottom: 24/1786
  39527. }
  39528. },
  39529. frontGigantamax: {
  39530. height: math.unit(150, "feet"),
  39531. name: "Front (Gigantamax)",
  39532. image: {
  39533. source: "./media/characters/carbon/front-gigantamax.svg",
  39534. extra: 1826/1669,
  39535. bottom: 59/1885
  39536. }
  39537. },
  39538. backGigantamax: {
  39539. height: math.unit(150, "feet"),
  39540. name: "Back (Gigantamax)",
  39541. image: {
  39542. source: "./media/characters/carbon/back-gigantamax.svg",
  39543. extra: 1796/1653,
  39544. bottom: 53/1849
  39545. }
  39546. },
  39547. maw: {
  39548. height: math.unit(0.48, "feet"),
  39549. name: "Maw",
  39550. image: {
  39551. source: "./media/characters/carbon/maw.svg"
  39552. }
  39553. },
  39554. mawGigantamax: {
  39555. height: math.unit(7.5, "feet"),
  39556. name: "Maw (Gigantamax)",
  39557. image: {
  39558. source: "./media/characters/carbon/maw-gigantamax.svg"
  39559. }
  39560. },
  39561. },
  39562. [
  39563. {
  39564. name: "Normal",
  39565. height: math.unit(7 + 5/12, "feet"),
  39566. default: true
  39567. },
  39568. ]
  39569. ))
  39570. characterMakers.push(() => makeCharacter(
  39571. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39572. {
  39573. front: {
  39574. height: math.unit(6, "feet"),
  39575. name: "Front",
  39576. image: {
  39577. source: "./media/characters/maverick/front.svg",
  39578. extra: 1672/1661,
  39579. bottom: 85/1757
  39580. }
  39581. },
  39582. back: {
  39583. height: math.unit(6, "feet"),
  39584. name: "Back",
  39585. image: {
  39586. source: "./media/characters/maverick/back.svg",
  39587. extra: 1642/1631,
  39588. bottom: 38/1680
  39589. }
  39590. },
  39591. },
  39592. [
  39593. {
  39594. name: "Normal",
  39595. height: math.unit(6, "feet"),
  39596. default: true
  39597. },
  39598. ]
  39599. ))
  39600. characterMakers.push(() => makeCharacter(
  39601. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39602. {
  39603. front: {
  39604. height: math.unit(15, "feet"),
  39605. weight: math.unit(615, "lb"),
  39606. name: "Front",
  39607. image: {
  39608. source: "./media/characters/grockle/front.svg",
  39609. extra: 1535/1427,
  39610. bottom: 56/1591
  39611. }
  39612. },
  39613. },
  39614. [
  39615. {
  39616. name: "Normal",
  39617. height: math.unit(15, "feet"),
  39618. default: true
  39619. },
  39620. {
  39621. name: "Large",
  39622. height: math.unit(150, "feet")
  39623. },
  39624. {
  39625. name: "Macro",
  39626. height: math.unit(1876, "feet")
  39627. },
  39628. {
  39629. name: "Mega Macro",
  39630. height: math.unit(121940, "feet")
  39631. },
  39632. {
  39633. name: "Giga Macro",
  39634. height: math.unit(750, "km")
  39635. },
  39636. {
  39637. name: "Tera Macro",
  39638. height: math.unit(750000, "km")
  39639. },
  39640. {
  39641. name: "Galactic",
  39642. height: math.unit(1.4e5, "km")
  39643. },
  39644. {
  39645. name: "Godlike",
  39646. height: math.unit(9.8e280, "galaxies")
  39647. },
  39648. ]
  39649. ))
  39650. characterMakers.push(() => makeCharacter(
  39651. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39652. {
  39653. front: {
  39654. height: math.unit(11, "meters"),
  39655. weight: math.unit(20, "tonnes"),
  39656. name: "Front",
  39657. image: {
  39658. source: "./media/characters/alistair/front.svg",
  39659. extra: 1265/1009,
  39660. bottom: 93/1358
  39661. }
  39662. },
  39663. },
  39664. [
  39665. {
  39666. name: "Normal",
  39667. height: math.unit(11, "meters"),
  39668. default: true
  39669. },
  39670. ]
  39671. ))
  39672. characterMakers.push(() => makeCharacter(
  39673. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39674. {
  39675. front: {
  39676. height: math.unit(5 + 8/12, "feet"),
  39677. name: "Front",
  39678. image: {
  39679. source: "./media/characters/haruka/front.svg",
  39680. extra: 2012/1952,
  39681. bottom: 0/2012
  39682. }
  39683. },
  39684. },
  39685. [
  39686. {
  39687. name: "Normal",
  39688. height: math.unit(5 + 8/12, "feet"),
  39689. default: true
  39690. },
  39691. ]
  39692. ))
  39693. characterMakers.push(() => makeCharacter(
  39694. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39695. {
  39696. back: {
  39697. height: math.unit(9, "feet"),
  39698. name: "Back",
  39699. image: {
  39700. source: "./media/characters/vivian-sylveon/back.svg",
  39701. extra: 1853/1714,
  39702. bottom: 0/1853
  39703. }
  39704. },
  39705. hyper: {
  39706. height: math.unit(5.58, "feet"),
  39707. name: "Hyper",
  39708. preyCapacity: math.unit(2.80616218797, "m^3"),
  39709. image: {
  39710. source: "./media/characters/vivian-sylveon/hyper.svg",
  39711. extra: 999/676,
  39712. bottom: 697/1696
  39713. },
  39714. },
  39715. paw: {
  39716. height: math.unit(1.8, "feet"),
  39717. name: "Paw",
  39718. image: {
  39719. source: "./media/characters/vivian-sylveon/paw.svg"
  39720. }
  39721. },
  39722. danger: {
  39723. height: math.unit(7.5, "feet"),
  39724. name: "DANGER",
  39725. image: {
  39726. source: "./media/characters/vivian-sylveon/danger.svg"
  39727. }
  39728. },
  39729. },
  39730. [
  39731. {
  39732. name: "Normal",
  39733. height: math.unit(9, "feet"),
  39734. default: true
  39735. },
  39736. {
  39737. name: "Macro",
  39738. height: math.unit(500, "feet")
  39739. },
  39740. {
  39741. name: "Megamacro",
  39742. height: math.unit(600, "miles")
  39743. },
  39744. {
  39745. name: "Gigamacro",
  39746. height: math.unit(30000, "miles")
  39747. },
  39748. ]
  39749. ))
  39750. characterMakers.push(() => makeCharacter(
  39751. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39752. {
  39753. anthro: {
  39754. height: math.unit(5 + 10/12, "feet"),
  39755. weight: math.unit(100, "lb"),
  39756. name: "Anthro",
  39757. image: {
  39758. source: "./media/characters/daiki/anthro.svg",
  39759. extra: 1115/1027,
  39760. bottom: 69/1184
  39761. }
  39762. },
  39763. feral: {
  39764. height: math.unit(200, "feet"),
  39765. name: "Feral",
  39766. image: {
  39767. source: "./media/characters/daiki/feral.svg",
  39768. extra: 1256/313,
  39769. bottom: 39/1295
  39770. }
  39771. },
  39772. feralHead: {
  39773. height: math.unit(171, "feet"),
  39774. name: "Feral Head",
  39775. image: {
  39776. source: "./media/characters/daiki/feral-head.svg"
  39777. }
  39778. },
  39779. manaDragon: {
  39780. height: math.unit(170, "meters"),
  39781. name: "Mana-dragon",
  39782. image: {
  39783. source: "./media/characters/daiki/mana-dragon.svg",
  39784. extra: 763/420,
  39785. bottom: 97/860
  39786. }
  39787. },
  39788. },
  39789. [
  39790. {
  39791. name: "Normal",
  39792. height: math.unit(5 + 10/12, "feet"),
  39793. default: true
  39794. },
  39795. ]
  39796. ))
  39797. characterMakers.push(() => makeCharacter(
  39798. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39799. {
  39800. fullyEquippedFront: {
  39801. height: math.unit(3 + 1/12, "feet"),
  39802. weight: math.unit(24, "lb"),
  39803. name: "Fully Equipped (Front)",
  39804. image: {
  39805. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39806. extra: 687/605,
  39807. bottom: 18/705
  39808. }
  39809. },
  39810. fullyEquippedBack: {
  39811. height: math.unit(3 + 1/12, "feet"),
  39812. weight: math.unit(24, "lb"),
  39813. name: "Fully Equipped (Back)",
  39814. image: {
  39815. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39816. extra: 689/590,
  39817. bottom: 18/707
  39818. }
  39819. },
  39820. dailyWear: {
  39821. height: math.unit(3 + 1/12, "feet"),
  39822. weight: math.unit(24, "lb"),
  39823. name: "Daily Wear",
  39824. image: {
  39825. source: "./media/characters/tea-spot/daily-wear.svg",
  39826. extra: 701/620,
  39827. bottom: 21/722
  39828. }
  39829. },
  39830. maidWork: {
  39831. height: math.unit(3 + 1/12, "feet"),
  39832. weight: math.unit(24, "lb"),
  39833. name: "Maid Work",
  39834. image: {
  39835. source: "./media/characters/tea-spot/maid-work.svg",
  39836. extra: 693/609,
  39837. bottom: 15/708
  39838. }
  39839. },
  39840. },
  39841. [
  39842. {
  39843. name: "Normal",
  39844. height: math.unit(3 + 1/12, "feet"),
  39845. default: true
  39846. },
  39847. ]
  39848. ))
  39849. characterMakers.push(() => makeCharacter(
  39850. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39851. {
  39852. front: {
  39853. height: math.unit(175, "cm"),
  39854. weight: math.unit(75, "kg"),
  39855. name: "Front",
  39856. image: {
  39857. source: "./media/characters/chee/front.svg",
  39858. extra: 1796/1740,
  39859. bottom: 40/1836
  39860. }
  39861. },
  39862. },
  39863. [
  39864. {
  39865. name: "Micro-Micro",
  39866. height: math.unit(1, "nm")
  39867. },
  39868. {
  39869. name: "Micro-erst",
  39870. height: math.unit(1, "micrometer")
  39871. },
  39872. {
  39873. name: "Micro-er",
  39874. height: math.unit(1, "cm")
  39875. },
  39876. {
  39877. name: "Normal",
  39878. height: math.unit(175, "cm"),
  39879. default: true
  39880. },
  39881. {
  39882. name: "Macro",
  39883. height: math.unit(100, "m")
  39884. },
  39885. {
  39886. name: "Macro-er",
  39887. height: math.unit(1, "km")
  39888. },
  39889. {
  39890. name: "Macro-erst",
  39891. height: math.unit(10, "km")
  39892. },
  39893. {
  39894. name: "Macro-Macro",
  39895. height: math.unit(100, "km")
  39896. },
  39897. ]
  39898. ))
  39899. characterMakers.push(() => makeCharacter(
  39900. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39901. {
  39902. front: {
  39903. height: math.unit(11 + 9/12, "feet"),
  39904. weight: math.unit(935, "lb"),
  39905. name: "Front",
  39906. image: {
  39907. source: "./media/characters/kingsley/front.svg",
  39908. extra: 1803/1674,
  39909. bottom: 127/1930
  39910. }
  39911. },
  39912. frontNude: {
  39913. height: math.unit(11 + 9/12, "feet"),
  39914. weight: math.unit(935, "lb"),
  39915. name: "Front (Nude)",
  39916. image: {
  39917. source: "./media/characters/kingsley/front-nude.svg",
  39918. extra: 1803/1674,
  39919. bottom: 127/1930
  39920. }
  39921. },
  39922. },
  39923. [
  39924. {
  39925. name: "Normal",
  39926. height: math.unit(11 + 9/12, "feet"),
  39927. default: true
  39928. },
  39929. ]
  39930. ))
  39931. characterMakers.push(() => makeCharacter(
  39932. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39933. {
  39934. side: {
  39935. height: math.unit(9, "feet"),
  39936. name: "Side",
  39937. image: {
  39938. source: "./media/characters/rymel/side.svg",
  39939. extra: 792/469,
  39940. bottom: 121/913
  39941. }
  39942. },
  39943. maw: {
  39944. height: math.unit(2.4, "meters"),
  39945. name: "Maw",
  39946. image: {
  39947. source: "./media/characters/rymel/maw.svg"
  39948. }
  39949. },
  39950. },
  39951. [
  39952. {
  39953. name: "House Drake",
  39954. height: math.unit(2, "feet")
  39955. },
  39956. {
  39957. name: "Reduced",
  39958. height: math.unit(4.5, "feet")
  39959. },
  39960. {
  39961. name: "Normal",
  39962. height: math.unit(9, "feet"),
  39963. default: true
  39964. },
  39965. ]
  39966. ))
  39967. characterMakers.push(() => makeCharacter(
  39968. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  39969. {
  39970. front: {
  39971. height: math.unit(1.74, "meters"),
  39972. weight: math.unit(55, "kg"),
  39973. name: "Front",
  39974. image: {
  39975. source: "./media/characters/rubus/front.svg",
  39976. extra: 1894/1742,
  39977. bottom: 44/1938
  39978. }
  39979. },
  39980. },
  39981. [
  39982. {
  39983. name: "Normal",
  39984. height: math.unit(1.74, "meters"),
  39985. default: true
  39986. },
  39987. ]
  39988. ))
  39989. characterMakers.push(() => makeCharacter(
  39990. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  39991. {
  39992. front: {
  39993. height: math.unit(5 + 2/12, "feet"),
  39994. weight: math.unit(112, "lb"),
  39995. name: "Front",
  39996. image: {
  39997. source: "./media/characters/cassie-kingston/front.svg",
  39998. extra: 1438/1390,
  39999. bottom: 47/1485
  40000. }
  40001. },
  40002. },
  40003. [
  40004. {
  40005. name: "Normal",
  40006. height: math.unit(5 + 2/12, "feet"),
  40007. default: true
  40008. },
  40009. {
  40010. name: "Macro",
  40011. height: math.unit(128, "feet")
  40012. },
  40013. {
  40014. name: "Megamacro",
  40015. height: math.unit(2.56, "miles")
  40016. },
  40017. ]
  40018. ))
  40019. characterMakers.push(() => makeCharacter(
  40020. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40021. {
  40022. front: {
  40023. height: math.unit(7, "feet"),
  40024. name: "Front",
  40025. image: {
  40026. source: "./media/characters/fox/front.svg",
  40027. extra: 1798/1703,
  40028. bottom: 55/1853
  40029. }
  40030. },
  40031. back: {
  40032. height: math.unit(7, "feet"),
  40033. name: "Back",
  40034. image: {
  40035. source: "./media/characters/fox/back.svg",
  40036. extra: 1748/1649,
  40037. bottom: 32/1780
  40038. }
  40039. },
  40040. head: {
  40041. height: math.unit(1.95, "feet"),
  40042. name: "Head",
  40043. image: {
  40044. source: "./media/characters/fox/head.svg"
  40045. }
  40046. },
  40047. dick: {
  40048. height: math.unit(1.33, "feet"),
  40049. name: "Dick",
  40050. image: {
  40051. source: "./media/characters/fox/dick.svg"
  40052. }
  40053. },
  40054. foot: {
  40055. height: math.unit(1, "feet"),
  40056. name: "Foot",
  40057. image: {
  40058. source: "./media/characters/fox/foot.svg"
  40059. }
  40060. },
  40061. paw: {
  40062. height: math.unit(0.92, "feet"),
  40063. name: "Paw",
  40064. image: {
  40065. source: "./media/characters/fox/paw.svg"
  40066. }
  40067. },
  40068. },
  40069. [
  40070. {
  40071. name: "Small",
  40072. height: math.unit(3, "inches")
  40073. },
  40074. {
  40075. name: "\"Realistic\"",
  40076. height: math.unit(7, "feet")
  40077. },
  40078. {
  40079. name: "Normal",
  40080. height: math.unit(150, "feet"),
  40081. default: true
  40082. },
  40083. {
  40084. name: "BIG",
  40085. height: math.unit(1200, "feet")
  40086. },
  40087. {
  40088. name: "👀",
  40089. height: math.unit(5, "miles")
  40090. },
  40091. {
  40092. name: "👀👀👀",
  40093. height: math.unit(64, "miles")
  40094. },
  40095. ]
  40096. ))
  40097. characterMakers.push(() => makeCharacter(
  40098. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40099. {
  40100. front: {
  40101. height: math.unit(625, "feet"),
  40102. name: "Front",
  40103. image: {
  40104. source: "./media/characters/asonja-rossa/front.svg",
  40105. extra: 1833/1686,
  40106. bottom: 24/1857
  40107. }
  40108. },
  40109. back: {
  40110. height: math.unit(625, "feet"),
  40111. name: "Back",
  40112. image: {
  40113. source: "./media/characters/asonja-rossa/back.svg",
  40114. extra: 1852/1753,
  40115. bottom: 26/1878
  40116. }
  40117. },
  40118. },
  40119. [
  40120. {
  40121. name: "Macro",
  40122. height: math.unit(625, "feet"),
  40123. default: true
  40124. },
  40125. ]
  40126. ))
  40127. characterMakers.push(() => makeCharacter(
  40128. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40129. {
  40130. side: {
  40131. height: math.unit(8, "feet"),
  40132. name: "Side",
  40133. image: {
  40134. source: "./media/characters/rezukii/side.svg",
  40135. extra: 979/542,
  40136. bottom: 87/1066
  40137. }
  40138. },
  40139. sitting: {
  40140. height: math.unit(14.6, "feet"),
  40141. name: "Sitting",
  40142. image: {
  40143. source: "./media/characters/rezukii/sitting.svg",
  40144. extra: 1023/813,
  40145. bottom: 45/1068
  40146. }
  40147. },
  40148. },
  40149. [
  40150. {
  40151. name: "Tiny",
  40152. height: math.unit(2, "feet")
  40153. },
  40154. {
  40155. name: "Smol",
  40156. height: math.unit(4, "feet")
  40157. },
  40158. {
  40159. name: "Normal",
  40160. height: math.unit(8, "feet"),
  40161. default: true
  40162. },
  40163. {
  40164. name: "Big",
  40165. height: math.unit(12, "feet")
  40166. },
  40167. {
  40168. name: "Macro",
  40169. height: math.unit(30, "feet")
  40170. },
  40171. ]
  40172. ))
  40173. characterMakers.push(() => makeCharacter(
  40174. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40175. {
  40176. front: {
  40177. height: math.unit(14, "feet"),
  40178. weight: math.unit(9.5, "tonnes"),
  40179. name: "Front",
  40180. image: {
  40181. source: "./media/characters/dawnheart/front.svg",
  40182. extra: 2792/2675,
  40183. bottom: 64/2856
  40184. }
  40185. },
  40186. },
  40187. [
  40188. {
  40189. name: "Normal",
  40190. height: math.unit(14, "feet"),
  40191. default: true
  40192. },
  40193. ]
  40194. ))
  40195. characterMakers.push(() => makeCharacter(
  40196. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40197. {
  40198. front: {
  40199. height: math.unit(1.7, "m"),
  40200. name: "Front",
  40201. image: {
  40202. source: "./media/characters/gladi/front.svg",
  40203. extra: 1460/1362,
  40204. bottom: 19/1479
  40205. }
  40206. },
  40207. back: {
  40208. height: math.unit(1.7, "m"),
  40209. name: "Back",
  40210. image: {
  40211. source: "./media/characters/gladi/back.svg",
  40212. extra: 1459/1357,
  40213. bottom: 12/1471
  40214. }
  40215. },
  40216. feral: {
  40217. height: math.unit(2.05, "m"),
  40218. name: "Feral",
  40219. image: {
  40220. source: "./media/characters/gladi/feral.svg",
  40221. extra: 821/557,
  40222. bottom: 91/912
  40223. }
  40224. },
  40225. },
  40226. [
  40227. {
  40228. name: "Shortest",
  40229. height: math.unit(70, "cm")
  40230. },
  40231. {
  40232. name: "Normal",
  40233. height: math.unit(1.7, "m")
  40234. },
  40235. {
  40236. name: "Macro",
  40237. height: math.unit(10, "m"),
  40238. default: true
  40239. },
  40240. {
  40241. name: "Tallest",
  40242. height: math.unit(200, "m")
  40243. },
  40244. ]
  40245. ))
  40246. characterMakers.push(() => makeCharacter(
  40247. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40248. {
  40249. front: {
  40250. height: math.unit(5 + 7/12, "feet"),
  40251. weight: math.unit(2, "tons"),
  40252. name: "Front",
  40253. image: {
  40254. source: "./media/characters/erdno/front.svg",
  40255. extra: 1234/1129,
  40256. bottom: 35/1269
  40257. }
  40258. },
  40259. angled: {
  40260. height: math.unit(5 + 7/12, "feet"),
  40261. weight: math.unit(2, "tons"),
  40262. name: "Angled",
  40263. image: {
  40264. source: "./media/characters/erdno/angled.svg",
  40265. extra: 1185/1139,
  40266. bottom: 36/1221
  40267. }
  40268. },
  40269. side: {
  40270. height: math.unit(5 + 7/12, "feet"),
  40271. weight: math.unit(2, "tons"),
  40272. name: "Side",
  40273. image: {
  40274. source: "./media/characters/erdno/side.svg",
  40275. extra: 1191/1144,
  40276. bottom: 40/1231
  40277. }
  40278. },
  40279. back: {
  40280. height: math.unit(5 + 7/12, "feet"),
  40281. weight: math.unit(2, "tons"),
  40282. name: "Back",
  40283. image: {
  40284. source: "./media/characters/erdno/back.svg",
  40285. extra: 1202/1146,
  40286. bottom: 17/1219
  40287. }
  40288. },
  40289. frontNsfw: {
  40290. height: math.unit(5 + 7/12, "feet"),
  40291. weight: math.unit(2, "tons"),
  40292. name: "Front (NSFW)",
  40293. image: {
  40294. source: "./media/characters/erdno/front-nsfw.svg",
  40295. extra: 1234/1129,
  40296. bottom: 35/1269
  40297. }
  40298. },
  40299. angledNsfw: {
  40300. height: math.unit(5 + 7/12, "feet"),
  40301. weight: math.unit(2, "tons"),
  40302. name: "Angled (NSFW)",
  40303. image: {
  40304. source: "./media/characters/erdno/angled-nsfw.svg",
  40305. extra: 1185/1139,
  40306. bottom: 36/1221
  40307. }
  40308. },
  40309. sideNsfw: {
  40310. height: math.unit(5 + 7/12, "feet"),
  40311. weight: math.unit(2, "tons"),
  40312. name: "Side (NSFW)",
  40313. image: {
  40314. source: "./media/characters/erdno/side-nsfw.svg",
  40315. extra: 1191/1144,
  40316. bottom: 40/1231
  40317. }
  40318. },
  40319. backNsfw: {
  40320. height: math.unit(5 + 7/12, "feet"),
  40321. weight: math.unit(2, "tons"),
  40322. name: "Back (NSFW)",
  40323. image: {
  40324. source: "./media/characters/erdno/back-nsfw.svg",
  40325. extra: 1202/1146,
  40326. bottom: 17/1219
  40327. }
  40328. },
  40329. frontHyper: {
  40330. height: math.unit(5 + 7/12, "feet"),
  40331. weight: math.unit(2, "tons"),
  40332. name: "Front (Hyper)",
  40333. image: {
  40334. source: "./media/characters/erdno/front-hyper.svg",
  40335. extra: 1298/1136,
  40336. bottom: 35/1333
  40337. }
  40338. },
  40339. },
  40340. [
  40341. {
  40342. name: "Normal",
  40343. height: math.unit(5 + 7/12, "feet"),
  40344. default: true
  40345. },
  40346. {
  40347. name: "Big",
  40348. height: math.unit(5.7, "meters")
  40349. },
  40350. {
  40351. name: "Macro",
  40352. height: math.unit(5.7, "kilometers")
  40353. },
  40354. {
  40355. name: "Megamacro",
  40356. height: math.unit(5.7, "earths")
  40357. },
  40358. ]
  40359. ))
  40360. characterMakers.push(() => makeCharacter(
  40361. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40362. {
  40363. front: {
  40364. height: math.unit(5 + 10/12, "feet"),
  40365. weight: math.unit(150, "lb"),
  40366. name: "Front",
  40367. image: {
  40368. source: "./media/characters/jamie/front.svg",
  40369. extra: 1908/1768,
  40370. bottom: 19/1927
  40371. }
  40372. },
  40373. },
  40374. [
  40375. {
  40376. name: "Minimum",
  40377. height: math.unit(2, "cm")
  40378. },
  40379. {
  40380. name: "Micro",
  40381. height: math.unit(3, "inches")
  40382. },
  40383. {
  40384. name: "Normal",
  40385. height: math.unit(5 + 10/12, "feet"),
  40386. default: true
  40387. },
  40388. {
  40389. name: "Macro",
  40390. height: math.unit(150, "feet")
  40391. },
  40392. {
  40393. name: "Megamacro",
  40394. height: math.unit(10000, "m")
  40395. },
  40396. ]
  40397. ))
  40398. characterMakers.push(() => makeCharacter(
  40399. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40400. {
  40401. front: {
  40402. height: math.unit(2, "meters"),
  40403. weight: math.unit(100, "kg"),
  40404. name: "Front",
  40405. image: {
  40406. source: "./media/characters/shiron/front.svg",
  40407. extra: 2103/1985,
  40408. bottom: 98/2201
  40409. }
  40410. },
  40411. back: {
  40412. height: math.unit(2, "meters"),
  40413. weight: math.unit(100, "kg"),
  40414. name: "Back",
  40415. image: {
  40416. source: "./media/characters/shiron/back.svg",
  40417. extra: 2110/2015,
  40418. bottom: 89/2199
  40419. }
  40420. },
  40421. hand: {
  40422. height: math.unit(0.96, "feet"),
  40423. name: "Hand",
  40424. image: {
  40425. source: "./media/characters/shiron/hand.svg"
  40426. }
  40427. },
  40428. foot: {
  40429. height: math.unit(1.464, "feet"),
  40430. name: "Foot",
  40431. image: {
  40432. source: "./media/characters/shiron/foot.svg"
  40433. }
  40434. },
  40435. },
  40436. [
  40437. {
  40438. name: "Normal",
  40439. height: math.unit(2, "meters")
  40440. },
  40441. {
  40442. name: "Macro",
  40443. height: math.unit(500, "meters"),
  40444. default: true
  40445. },
  40446. {
  40447. name: "Megamacro",
  40448. height: math.unit(20, "km")
  40449. },
  40450. ]
  40451. ))
  40452. characterMakers.push(() => makeCharacter(
  40453. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40454. {
  40455. front: {
  40456. height: math.unit(6, "feet"),
  40457. name: "Front",
  40458. image: {
  40459. source: "./media/characters/sam/front.svg",
  40460. extra: 849/826,
  40461. bottom: 19/868
  40462. }
  40463. },
  40464. },
  40465. [
  40466. {
  40467. name: "Normal",
  40468. height: math.unit(6, "feet"),
  40469. default: true
  40470. },
  40471. ]
  40472. ))
  40473. characterMakers.push(() => makeCharacter(
  40474. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40475. {
  40476. front: {
  40477. height: math.unit(8 + 4/12, "feet"),
  40478. weight: math.unit(122, "kg"),
  40479. name: "Front",
  40480. image: {
  40481. source: "./media/characters/namori-kurogawa/front.svg",
  40482. extra: 1894/1576,
  40483. bottom: 34/1928
  40484. }
  40485. },
  40486. },
  40487. [
  40488. {
  40489. name: "Normal",
  40490. height: math.unit(8 + 4/12, "feet"),
  40491. default: true
  40492. },
  40493. ]
  40494. ))
  40495. characterMakers.push(() => makeCharacter(
  40496. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40497. {
  40498. front: {
  40499. height: math.unit(9, "feet"),
  40500. weight: math.unit(621, "lb"),
  40501. name: "Front",
  40502. image: {
  40503. source: "./media/characters/unmru/front.svg",
  40504. extra: 1853/1747,
  40505. bottom: 73/1926
  40506. }
  40507. },
  40508. side: {
  40509. height: math.unit(9, "feet"),
  40510. weight: math.unit(621, "lb"),
  40511. name: "Side",
  40512. image: {
  40513. source: "./media/characters/unmru/side.svg",
  40514. extra: 1781/1671,
  40515. bottom: 127/1908
  40516. }
  40517. },
  40518. back: {
  40519. height: math.unit(9, "feet"),
  40520. weight: math.unit(621, "lb"),
  40521. name: "Back",
  40522. image: {
  40523. source: "./media/characters/unmru/back.svg",
  40524. extra: 1894/1765,
  40525. bottom: 75/1969
  40526. }
  40527. },
  40528. dick: {
  40529. height: math.unit(3, "feet"),
  40530. weight: math.unit(35, "lb"),
  40531. name: "Dick",
  40532. image: {
  40533. source: "./media/characters/unmru/dick.svg"
  40534. }
  40535. },
  40536. },
  40537. [
  40538. {
  40539. name: "Normal",
  40540. height: math.unit(9, "feet")
  40541. },
  40542. {
  40543. name: "Natural",
  40544. height: math.unit(27, "feet"),
  40545. default: true
  40546. },
  40547. {
  40548. name: "Giant",
  40549. height: math.unit(90, "feet")
  40550. },
  40551. {
  40552. name: "Kaiju",
  40553. height: math.unit(270, "feet")
  40554. },
  40555. {
  40556. name: "Macro",
  40557. height: math.unit(900, "feet")
  40558. },
  40559. {
  40560. name: "Macro+",
  40561. height: math.unit(2700, "feet")
  40562. },
  40563. {
  40564. name: "Megamacro",
  40565. height: math.unit(9000, "feet")
  40566. },
  40567. {
  40568. name: "City-Crushing",
  40569. height: math.unit(27000, "feet")
  40570. },
  40571. {
  40572. name: "Mountain-Mashing",
  40573. height: math.unit(90000, "feet")
  40574. },
  40575. {
  40576. name: "Earth-Eclipsing",
  40577. height: math.unit(2.7e8, "feet")
  40578. },
  40579. {
  40580. name: "Sol-Swallowing",
  40581. height: math.unit(9e10, "feet")
  40582. },
  40583. {
  40584. name: "Majoris-Munching",
  40585. height: math.unit(2.7e13, "feet")
  40586. },
  40587. ]
  40588. ))
  40589. characterMakers.push(() => makeCharacter(
  40590. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40591. {
  40592. front: {
  40593. height: math.unit(1, "inch"),
  40594. name: "Front",
  40595. image: {
  40596. source: "./media/characters/squeaks-mouse/front.svg",
  40597. extra: 352/308,
  40598. bottom: 25/377
  40599. }
  40600. },
  40601. },
  40602. [
  40603. {
  40604. name: "Micro",
  40605. height: math.unit(1, "inch"),
  40606. default: true
  40607. },
  40608. ]
  40609. ))
  40610. characterMakers.push(() => makeCharacter(
  40611. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40612. {
  40613. side: {
  40614. height: math.unit(35, "feet"),
  40615. name: "Side",
  40616. image: {
  40617. source: "./media/characters/sayko/side.svg",
  40618. extra: 1697/1021,
  40619. bottom: 82/1779
  40620. }
  40621. },
  40622. head: {
  40623. height: math.unit(16, "feet"),
  40624. name: "Head",
  40625. image: {
  40626. source: "./media/characters/sayko/head.svg"
  40627. }
  40628. },
  40629. forepaw: {
  40630. height: math.unit(7.85, "feet"),
  40631. name: "Forepaw",
  40632. image: {
  40633. source: "./media/characters/sayko/forepaw.svg"
  40634. }
  40635. },
  40636. hindpaw: {
  40637. height: math.unit(8.8, "feet"),
  40638. name: "Hindpaw",
  40639. image: {
  40640. source: "./media/characters/sayko/hindpaw.svg"
  40641. }
  40642. },
  40643. },
  40644. [
  40645. {
  40646. name: "Normal",
  40647. height: math.unit(35, "feet"),
  40648. default: true
  40649. },
  40650. {
  40651. name: "Colossus",
  40652. height: math.unit(100, "meters")
  40653. },
  40654. {
  40655. name: "\"Small\" Deity",
  40656. height: math.unit(1, "km")
  40657. },
  40658. {
  40659. name: "\"Large\" Deity",
  40660. height: math.unit(15, "km")
  40661. },
  40662. ]
  40663. ))
  40664. characterMakers.push(() => makeCharacter(
  40665. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40666. {
  40667. front: {
  40668. height: math.unit(6, "feet"),
  40669. weight: math.unit(250, "lb"),
  40670. name: "Front",
  40671. image: {
  40672. source: "./media/characters/mukiro/front.svg",
  40673. extra: 1368/1310,
  40674. bottom: 34/1402
  40675. }
  40676. },
  40677. },
  40678. [
  40679. {
  40680. name: "Normal",
  40681. height: math.unit(6, "feet"),
  40682. default: true
  40683. },
  40684. ]
  40685. ))
  40686. characterMakers.push(() => makeCharacter(
  40687. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40688. {
  40689. front: {
  40690. height: math.unit(12 + 4/12, "feet"),
  40691. name: "Front",
  40692. image: {
  40693. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40694. extra: 1346/1311,
  40695. bottom: 65/1411
  40696. }
  40697. },
  40698. },
  40699. [
  40700. {
  40701. name: "Base",
  40702. height: math.unit(12 + 4/12, "feet"),
  40703. default: true
  40704. },
  40705. {
  40706. name: "Macro",
  40707. height: math.unit(150, "feet")
  40708. },
  40709. {
  40710. name: "Mega",
  40711. height: math.unit(2, "miles")
  40712. },
  40713. {
  40714. name: "Demi God",
  40715. height: math.unit(4, "AU")
  40716. },
  40717. {
  40718. name: "God Size",
  40719. height: math.unit(1, "universe")
  40720. },
  40721. ]
  40722. ))
  40723. characterMakers.push(() => makeCharacter(
  40724. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40725. {
  40726. front: {
  40727. height: math.unit(3 + 3/12, "feet"),
  40728. weight: math.unit(88, "lb"),
  40729. name: "Front",
  40730. image: {
  40731. source: "./media/characters/trey/front.svg",
  40732. extra: 1815/1509,
  40733. bottom: 60/1875
  40734. }
  40735. },
  40736. },
  40737. [
  40738. {
  40739. name: "Normal",
  40740. height: math.unit(3 + 3/12, "feet"),
  40741. default: true
  40742. },
  40743. ]
  40744. ))
  40745. characterMakers.push(() => makeCharacter(
  40746. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40747. {
  40748. front: {
  40749. height: math.unit(4, "meters"),
  40750. name: "Front",
  40751. image: {
  40752. source: "./media/characters/adelonda/front.svg",
  40753. extra: 1077/982,
  40754. bottom: 39/1116
  40755. }
  40756. },
  40757. back: {
  40758. height: math.unit(4, "meters"),
  40759. name: "Back",
  40760. image: {
  40761. source: "./media/characters/adelonda/back.svg",
  40762. extra: 1105/1003,
  40763. bottom: 25/1130
  40764. }
  40765. },
  40766. feral: {
  40767. height: math.unit(40/1.5, "meters"),
  40768. name: "Feral",
  40769. image: {
  40770. source: "./media/characters/adelonda/feral.svg",
  40771. extra: 597/271,
  40772. bottom: 387/984
  40773. }
  40774. },
  40775. },
  40776. [
  40777. {
  40778. name: "Normal",
  40779. height: math.unit(4, "meters"),
  40780. default: true
  40781. },
  40782. ]
  40783. ))
  40784. characterMakers.push(() => makeCharacter(
  40785. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40786. {
  40787. front: {
  40788. height: math.unit(8 + 4/12, "feet"),
  40789. weight: math.unit(670, "lb"),
  40790. name: "Front",
  40791. image: {
  40792. source: "./media/characters/acadiel/front.svg",
  40793. extra: 1901/1595,
  40794. bottom: 142/2043
  40795. }
  40796. },
  40797. },
  40798. [
  40799. {
  40800. name: "Normal",
  40801. height: math.unit(8 + 4/12, "feet"),
  40802. default: true
  40803. },
  40804. {
  40805. name: "Macro",
  40806. height: math.unit(200, "feet")
  40807. },
  40808. ]
  40809. ))
  40810. characterMakers.push(() => makeCharacter(
  40811. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40812. {
  40813. front: {
  40814. height: math.unit(6 + 2/12, "feet"),
  40815. weight: math.unit(185, "lb"),
  40816. name: "Front",
  40817. image: {
  40818. source: "./media/characters/kayne-ein/front.svg",
  40819. extra: 1780/1560,
  40820. bottom: 81/1861
  40821. }
  40822. },
  40823. },
  40824. [
  40825. {
  40826. name: "Normal",
  40827. height: math.unit(6 + 2/12, "feet"),
  40828. default: true
  40829. },
  40830. {
  40831. name: "Transformation Stage",
  40832. height: math.unit(15, "feet")
  40833. },
  40834. {
  40835. name: "Macro",
  40836. height: math.unit(150, "feet")
  40837. },
  40838. {
  40839. name: "Earth's Shadow",
  40840. height: math.unit(6200, "miles")
  40841. },
  40842. {
  40843. name: "Universal Demon",
  40844. height: math.unit(28e9, "parsecs")
  40845. },
  40846. {
  40847. name: "Multiverse God",
  40848. height: math.unit(3, "multiverses")
  40849. },
  40850. ]
  40851. ))
  40852. characterMakers.push(() => makeCharacter(
  40853. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40854. {
  40855. front: {
  40856. height: math.unit(5 + 5/12, "feet"),
  40857. name: "Front",
  40858. image: {
  40859. source: "./media/characters/fawn/front.svg",
  40860. extra: 1873/1731,
  40861. bottom: 95/1968
  40862. }
  40863. },
  40864. back: {
  40865. height: math.unit(5 + 5/12, "feet"),
  40866. name: "Back",
  40867. image: {
  40868. source: "./media/characters/fawn/back.svg",
  40869. extra: 1813/1700,
  40870. bottom: 14/1827
  40871. }
  40872. },
  40873. hoof: {
  40874. height: math.unit(1.45, "feet"),
  40875. name: "Hoof",
  40876. image: {
  40877. source: "./media/characters/fawn/hoof.svg"
  40878. }
  40879. },
  40880. },
  40881. [
  40882. {
  40883. name: "Normal",
  40884. height: math.unit(5 + 5/12, "feet"),
  40885. default: true
  40886. },
  40887. ]
  40888. ))
  40889. characterMakers.push(() => makeCharacter(
  40890. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40891. {
  40892. front: {
  40893. height: math.unit(2 + 5/12, "feet"),
  40894. name: "Front",
  40895. image: {
  40896. source: "./media/characters/orion/front.svg",
  40897. extra: 1366/1304,
  40898. bottom: 43/1409
  40899. }
  40900. },
  40901. paw: {
  40902. height: math.unit(0.52, "feet"),
  40903. name: "Paw",
  40904. image: {
  40905. source: "./media/characters/orion/paw.svg"
  40906. }
  40907. },
  40908. },
  40909. [
  40910. {
  40911. name: "Normal",
  40912. height: math.unit(2 + 5/12, "feet"),
  40913. default: true
  40914. },
  40915. ]
  40916. ))
  40917. characterMakers.push(() => makeCharacter(
  40918. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40919. {
  40920. front: {
  40921. height: math.unit(5 + 10/12, "feet"),
  40922. name: "Front",
  40923. image: {
  40924. source: "./media/characters/vera/front.svg",
  40925. extra: 1680/1575,
  40926. bottom: 49/1729
  40927. }
  40928. },
  40929. back: {
  40930. height: math.unit(5 + 10/12, "feet"),
  40931. name: "Back",
  40932. image: {
  40933. source: "./media/characters/vera/back.svg",
  40934. extra: 1700/1588,
  40935. bottom: 18/1718
  40936. }
  40937. },
  40938. arcanine: {
  40939. height: math.unit(6 + 8/12, "feet"),
  40940. name: "Arcanine",
  40941. image: {
  40942. source: "./media/characters/vera/arcanine.svg",
  40943. extra: 1590/1511,
  40944. bottom: 71/1661
  40945. }
  40946. },
  40947. maw: {
  40948. height: math.unit(0.82, "feet"),
  40949. name: "Maw",
  40950. image: {
  40951. source: "./media/characters/vera/maw.svg"
  40952. }
  40953. },
  40954. mawArcanine: {
  40955. height: math.unit(0.97, "feet"),
  40956. name: "Maw (Arcanine)",
  40957. image: {
  40958. source: "./media/characters/vera/maw-arcanine.svg"
  40959. }
  40960. },
  40961. paw: {
  40962. height: math.unit(0.75, "feet"),
  40963. name: "Paw",
  40964. image: {
  40965. source: "./media/characters/vera/paw.svg"
  40966. }
  40967. },
  40968. pawprint: {
  40969. height: math.unit(0.52, "feet"),
  40970. name: "Pawprint",
  40971. image: {
  40972. source: "./media/characters/vera/pawprint.svg"
  40973. }
  40974. },
  40975. },
  40976. [
  40977. {
  40978. name: "Normal",
  40979. height: math.unit(5 + 10/12, "feet"),
  40980. default: true
  40981. },
  40982. {
  40983. name: "Macro",
  40984. height: math.unit(75, "feet")
  40985. },
  40986. ]
  40987. ))
  40988. characterMakers.push(() => makeCharacter(
  40989. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  40990. {
  40991. front: {
  40992. height: math.unit(4, "feet"),
  40993. weight: math.unit(40, "lb"),
  40994. name: "Front",
  40995. image: {
  40996. source: "./media/characters/orvan-rabbit/front.svg",
  40997. extra: 1896/1642,
  40998. bottom: 29/1925
  40999. }
  41000. },
  41001. },
  41002. [
  41003. {
  41004. name: "Normal",
  41005. height: math.unit(4, "feet"),
  41006. default: true
  41007. },
  41008. ]
  41009. ))
  41010. characterMakers.push(() => makeCharacter(
  41011. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41012. {
  41013. front: {
  41014. height: math.unit(6, "feet"),
  41015. weight: math.unit(168, "lb"),
  41016. name: "Front",
  41017. image: {
  41018. source: "./media/characters/lisa/front.svg",
  41019. extra: 2065/1867,
  41020. bottom: 46/2111
  41021. }
  41022. },
  41023. back: {
  41024. height: math.unit(6, "feet"),
  41025. weight: math.unit(168, "lb"),
  41026. name: "Back",
  41027. image: {
  41028. source: "./media/characters/lisa/back.svg",
  41029. extra: 1982/1838,
  41030. bottom: 29/2011
  41031. }
  41032. },
  41033. maw: {
  41034. height: math.unit(0.81, "feet"),
  41035. name: "Maw",
  41036. image: {
  41037. source: "./media/characters/lisa/maw.svg"
  41038. }
  41039. },
  41040. paw: {
  41041. height: math.unit(0.9, "feet"),
  41042. name: "Paw",
  41043. image: {
  41044. source: "./media/characters/lisa/paw.svg"
  41045. }
  41046. },
  41047. caribousune: {
  41048. height: math.unit(7 + 2/12, "feet"),
  41049. weight: math.unit(268, "lb"),
  41050. name: "Caribousune",
  41051. image: {
  41052. source: "./media/characters/lisa/caribousune.svg",
  41053. extra: 1843/1633,
  41054. bottom: 29/1872
  41055. }
  41056. },
  41057. frontCaribousune: {
  41058. height: math.unit(7 + 2/12, "feet"),
  41059. weight: math.unit(268, "lb"),
  41060. name: "Front (Caribousune)",
  41061. image: {
  41062. source: "./media/characters/lisa/front-caribousune.svg",
  41063. extra: 1818/1638,
  41064. bottom: 52/1870
  41065. }
  41066. },
  41067. sideCaribousune: {
  41068. height: math.unit(7 + 2/12, "feet"),
  41069. weight: math.unit(268, "lb"),
  41070. name: "Side (Caribousune)",
  41071. image: {
  41072. source: "./media/characters/lisa/side-caribousune.svg",
  41073. extra: 1851/1635,
  41074. bottom: 16/1867
  41075. }
  41076. },
  41077. backCaribousune: {
  41078. height: math.unit(7 + 2/12, "feet"),
  41079. weight: math.unit(268, "lb"),
  41080. name: "Back (Caribousune)",
  41081. image: {
  41082. source: "./media/characters/lisa/back-caribousune.svg",
  41083. extra: 1801/1604,
  41084. bottom: 44/1845
  41085. }
  41086. },
  41087. caribou: {
  41088. height: math.unit(7 + 2/12, "feet"),
  41089. weight: math.unit(268, "lb"),
  41090. name: "Caribou",
  41091. image: {
  41092. source: "./media/characters/lisa/caribou.svg",
  41093. extra: 1843/1633,
  41094. bottom: 29/1872
  41095. }
  41096. },
  41097. frontCaribou: {
  41098. height: math.unit(7 + 2/12, "feet"),
  41099. weight: math.unit(268, "lb"),
  41100. name: "Front (Caribou)",
  41101. image: {
  41102. source: "./media/characters/lisa/front-caribou.svg",
  41103. extra: 1818/1638,
  41104. bottom: 52/1870
  41105. }
  41106. },
  41107. sideCaribou: {
  41108. height: math.unit(7 + 2/12, "feet"),
  41109. weight: math.unit(268, "lb"),
  41110. name: "Side (Caribou)",
  41111. image: {
  41112. source: "./media/characters/lisa/side-caribou.svg",
  41113. extra: 1851/1635,
  41114. bottom: 16/1867
  41115. }
  41116. },
  41117. backCaribou: {
  41118. height: math.unit(7 + 2/12, "feet"),
  41119. weight: math.unit(268, "lb"),
  41120. name: "Back (Caribou)",
  41121. image: {
  41122. source: "./media/characters/lisa/back-caribou.svg",
  41123. extra: 1801/1604,
  41124. bottom: 44/1845
  41125. }
  41126. },
  41127. mawCaribou: {
  41128. height: math.unit(1.45, "feet"),
  41129. name: "Maw (Caribou)",
  41130. image: {
  41131. source: "./media/characters/lisa/maw-caribou.svg"
  41132. }
  41133. },
  41134. mawCaribousune: {
  41135. height: math.unit(1.45, "feet"),
  41136. name: "Maw (Caribousune)",
  41137. image: {
  41138. source: "./media/characters/lisa/maw-caribousune.svg"
  41139. }
  41140. },
  41141. pawCaribousune: {
  41142. height: math.unit(1.61, "feet"),
  41143. name: "Paw (Caribou)",
  41144. image: {
  41145. source: "./media/characters/lisa/paw-caribousune.svg"
  41146. }
  41147. },
  41148. },
  41149. [
  41150. {
  41151. name: "Normal",
  41152. height: math.unit(6, "feet")
  41153. },
  41154. {
  41155. name: "God Size",
  41156. height: math.unit(72, "feet"),
  41157. default: true
  41158. },
  41159. {
  41160. name: "Towering",
  41161. height: math.unit(288, "feet")
  41162. },
  41163. {
  41164. name: "City Size",
  41165. height: math.unit(48384, "feet")
  41166. },
  41167. {
  41168. name: "Continental",
  41169. height: math.unit(4200, "miles")
  41170. },
  41171. {
  41172. name: "Planet Eater",
  41173. height: math.unit(42, "earths")
  41174. },
  41175. {
  41176. name: "Star Swallower",
  41177. height: math.unit(42, "solarradii")
  41178. },
  41179. {
  41180. name: "System Swallower",
  41181. height: math.unit(84000, "AU")
  41182. },
  41183. {
  41184. name: "Galaxy Gobbler",
  41185. height: math.unit(42, "galaxies")
  41186. },
  41187. {
  41188. name: "Universe Devourer",
  41189. height: math.unit(42, "universes")
  41190. },
  41191. {
  41192. name: "Multiverse Muncher",
  41193. height: math.unit(42, "multiverses")
  41194. },
  41195. ]
  41196. ))
  41197. characterMakers.push(() => makeCharacter(
  41198. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41199. {
  41200. front: {
  41201. height: math.unit(36, "feet"),
  41202. name: "Front",
  41203. image: {
  41204. source: "./media/characters/shadow-rat/front.svg",
  41205. extra: 1845/1758,
  41206. bottom: 83/1928
  41207. }
  41208. },
  41209. },
  41210. [
  41211. {
  41212. name: "Macro",
  41213. height: math.unit(36, "feet"),
  41214. default: true
  41215. },
  41216. ]
  41217. ))
  41218. characterMakers.push(() => makeCharacter(
  41219. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41220. {
  41221. side: {
  41222. height: math.unit(8, "feet"),
  41223. weight: math.unit(2630, "lb"),
  41224. name: "Side",
  41225. image: {
  41226. source: "./media/characters/torallia/side.svg",
  41227. extra: 2164/2021,
  41228. bottom: 371/2535
  41229. }
  41230. },
  41231. },
  41232. [
  41233. {
  41234. name: "Mortal Interaction",
  41235. height: math.unit(8, "feet")
  41236. },
  41237. {
  41238. name: "Natural",
  41239. height: math.unit(24, "feet"),
  41240. default: true
  41241. },
  41242. {
  41243. name: "Giant",
  41244. height: math.unit(80, "feet")
  41245. },
  41246. {
  41247. name: "Kaiju",
  41248. height: math.unit(240, "feet")
  41249. },
  41250. {
  41251. name: "Macro",
  41252. height: math.unit(800, "feet")
  41253. },
  41254. {
  41255. name: "Macro+",
  41256. height: math.unit(2400, "feet")
  41257. },
  41258. {
  41259. name: "Macro++",
  41260. height: math.unit(8000, "feet")
  41261. },
  41262. {
  41263. name: "City-Crushing",
  41264. height: math.unit(24000, "feet")
  41265. },
  41266. {
  41267. name: "Mountain-Mashing",
  41268. height: math.unit(80000, "feet")
  41269. },
  41270. {
  41271. name: "District Demolisher",
  41272. height: math.unit(240000, "feet")
  41273. },
  41274. {
  41275. name: "Tri-County Terror",
  41276. height: math.unit(800000, "feet")
  41277. },
  41278. {
  41279. name: "State Smasher",
  41280. height: math.unit(2.4e6, "feet")
  41281. },
  41282. {
  41283. name: "Nation Nemesis",
  41284. height: math.unit(8e6, "feet")
  41285. },
  41286. {
  41287. name: "Continent Cracker",
  41288. height: math.unit(2.4e7, "feet")
  41289. },
  41290. {
  41291. name: "Planet-Pillaging",
  41292. height: math.unit(8e7, "feet")
  41293. },
  41294. {
  41295. name: "Earth-Eclipsing",
  41296. height: math.unit(2.4e8, "feet")
  41297. },
  41298. {
  41299. name: "Jovian-Jostling",
  41300. height: math.unit(8e8, "feet")
  41301. },
  41302. {
  41303. name: "Gas Giant Gulper",
  41304. height: math.unit(2.4e9, "feet")
  41305. },
  41306. {
  41307. name: "Astral Annihilator",
  41308. height: math.unit(8e9, "feet")
  41309. },
  41310. {
  41311. name: "Celestial Conqueror",
  41312. height: math.unit(2.4e10, "feet")
  41313. },
  41314. {
  41315. name: "Sol-Swallowing",
  41316. height: math.unit(8e10, "feet")
  41317. },
  41318. {
  41319. name: "Hunter of the Heavens",
  41320. height: math.unit(2.4e13, "feet")
  41321. },
  41322. ]
  41323. ))
  41324. characterMakers.push(() => makeCharacter(
  41325. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41326. {
  41327. front: {
  41328. height: math.unit(6 + 8/12, "feet"),
  41329. weight: math.unit(250, "kilograms"),
  41330. volume: math.unit(28, "liters"),
  41331. name: "Front",
  41332. image: {
  41333. source: "./media/characters/rebecca-pawlson/front.svg",
  41334. extra: 1737/1596,
  41335. bottom: 107/1844
  41336. }
  41337. },
  41338. back: {
  41339. height: math.unit(6 + 8/12, "feet"),
  41340. weight: math.unit(250, "kilograms"),
  41341. volume: math.unit(28, "liters"),
  41342. name: "Back",
  41343. image: {
  41344. source: "./media/characters/rebecca-pawlson/back.svg",
  41345. extra: 1702/1523,
  41346. bottom: 86/1788
  41347. }
  41348. },
  41349. },
  41350. [
  41351. {
  41352. name: "Normal",
  41353. height: math.unit(6 + 8/12, "feet")
  41354. },
  41355. {
  41356. name: "Mini Macro",
  41357. height: math.unit(10, "feet"),
  41358. default: true
  41359. },
  41360. {
  41361. name: "Macro",
  41362. height: math.unit(100, "feet")
  41363. },
  41364. {
  41365. name: "Mega Macro",
  41366. height: math.unit(2500, "feet")
  41367. },
  41368. {
  41369. name: "Giga Macro",
  41370. height: math.unit(50, "miles")
  41371. },
  41372. ]
  41373. ))
  41374. characterMakers.push(() => makeCharacter(
  41375. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41376. {
  41377. front: {
  41378. height: math.unit(7 + 6/12, "feet"),
  41379. weight: math.unit(600, "lb"),
  41380. name: "Front",
  41381. image: {
  41382. source: "./media/characters/moxie-nova/front.svg",
  41383. extra: 1734/1652,
  41384. bottom: 41/1775
  41385. }
  41386. },
  41387. },
  41388. [
  41389. {
  41390. name: "Normal",
  41391. height: math.unit(7 + 6/12, "feet"),
  41392. default: true
  41393. },
  41394. ]
  41395. ))
  41396. characterMakers.push(() => makeCharacter(
  41397. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41398. {
  41399. goat: {
  41400. height: math.unit(4, "feet"),
  41401. weight: math.unit(180, "lb"),
  41402. name: "Goat",
  41403. image: {
  41404. source: "./media/characters/tiffany/goat.svg",
  41405. extra: 1845/1595,
  41406. bottom: 106/1951
  41407. }
  41408. },
  41409. front: {
  41410. height: math.unit(5, "feet"),
  41411. weight: math.unit(150, "lb"),
  41412. name: "Foxcoon",
  41413. image: {
  41414. source: "./media/characters/tiffany/foxcoon.svg",
  41415. extra: 1941/1845,
  41416. bottom: 58/1999
  41417. }
  41418. },
  41419. },
  41420. [
  41421. {
  41422. name: "Normal",
  41423. height: math.unit(5, "feet"),
  41424. default: true
  41425. },
  41426. ]
  41427. ))
  41428. characterMakers.push(() => makeCharacter(
  41429. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41430. {
  41431. front: {
  41432. height: math.unit(8, "feet"),
  41433. weight: math.unit(300, "lb"),
  41434. name: "Front",
  41435. image: {
  41436. source: "./media/characters/raxinath/front.svg",
  41437. extra: 1407/1309,
  41438. bottom: 39/1446
  41439. }
  41440. },
  41441. back: {
  41442. height: math.unit(8, "feet"),
  41443. weight: math.unit(300, "lb"),
  41444. name: "Back",
  41445. image: {
  41446. source: "./media/characters/raxinath/back.svg",
  41447. extra: 1405/1315,
  41448. bottom: 9/1414
  41449. }
  41450. },
  41451. },
  41452. [
  41453. {
  41454. name: "Speck",
  41455. height: math.unit(0.5, "nm")
  41456. },
  41457. {
  41458. name: "Micro",
  41459. height: math.unit(3, "inches")
  41460. },
  41461. {
  41462. name: "Kobold",
  41463. height: math.unit(3, "feet")
  41464. },
  41465. {
  41466. name: "Normal",
  41467. height: math.unit(8, "feet"),
  41468. default: true
  41469. },
  41470. {
  41471. name: "Giant",
  41472. height: math.unit(50, "feet")
  41473. },
  41474. {
  41475. name: "Macro",
  41476. height: math.unit(1000, "feet")
  41477. },
  41478. {
  41479. name: "Megamacro",
  41480. height: math.unit(1, "mile")
  41481. },
  41482. ]
  41483. ))
  41484. characterMakers.push(() => makeCharacter(
  41485. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41486. {
  41487. front: {
  41488. height: math.unit(10, "feet"),
  41489. weight: math.unit(1442, "lb"),
  41490. name: "Front",
  41491. image: {
  41492. source: "./media/characters/mal-dragon/front.svg",
  41493. extra: 1515/1444,
  41494. bottom: 113/1628
  41495. }
  41496. },
  41497. back: {
  41498. height: math.unit(10, "feet"),
  41499. weight: math.unit(1442, "lb"),
  41500. name: "Back",
  41501. image: {
  41502. source: "./media/characters/mal-dragon/back.svg",
  41503. extra: 1527/1434,
  41504. bottom: 25/1552
  41505. }
  41506. },
  41507. },
  41508. [
  41509. {
  41510. name: "Mortal Interaction",
  41511. height: math.unit(10, "feet"),
  41512. default: true
  41513. },
  41514. {
  41515. name: "Large",
  41516. height: math.unit(30, "feet")
  41517. },
  41518. {
  41519. name: "Kaiju",
  41520. height: math.unit(300, "feet")
  41521. },
  41522. {
  41523. name: "Megamacro",
  41524. height: math.unit(10000, "feet")
  41525. },
  41526. {
  41527. name: "Continent Cracker",
  41528. height: math.unit(30000000, "feet")
  41529. },
  41530. {
  41531. name: "Sol-Swallowing",
  41532. height: math.unit(1e11, "feet")
  41533. },
  41534. {
  41535. name: "Light Universal",
  41536. height: math.unit(5, "universes")
  41537. },
  41538. {
  41539. name: "Universe Atoms",
  41540. height: math.unit(1.829e9, "universes")
  41541. },
  41542. {
  41543. name: "Light Multiversal",
  41544. height: math.unit(5, "multiverses")
  41545. },
  41546. {
  41547. name: "Multiverse Atoms",
  41548. height: math.unit(1.829e9, "multiverses")
  41549. },
  41550. {
  41551. name: "Fabric of Time",
  41552. height: math.unit(1e262, "multiverses")
  41553. },
  41554. ]
  41555. ))
  41556. characterMakers.push(() => makeCharacter(
  41557. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41558. {
  41559. front: {
  41560. height: math.unit(9, "feet"),
  41561. weight: math.unit(1050, "lb"),
  41562. name: "Front",
  41563. image: {
  41564. source: "./media/characters/tabitha/front.svg",
  41565. extra: 2083/1994,
  41566. bottom: 68/2151
  41567. }
  41568. },
  41569. },
  41570. [
  41571. {
  41572. name: "Baseline",
  41573. height: math.unit(9, "feet"),
  41574. default: true
  41575. },
  41576. {
  41577. name: "Giant",
  41578. height: math.unit(90, "feet")
  41579. },
  41580. {
  41581. name: "Macro",
  41582. height: math.unit(900, "feet")
  41583. },
  41584. {
  41585. name: "Megamacro",
  41586. height: math.unit(9000, "feet")
  41587. },
  41588. {
  41589. name: "City-Crushing",
  41590. height: math.unit(27000, "feet")
  41591. },
  41592. {
  41593. name: "Mountain-Mashing",
  41594. height: math.unit(90000, "feet")
  41595. },
  41596. {
  41597. name: "Nation Nemesis",
  41598. height: math.unit(9e6, "feet")
  41599. },
  41600. {
  41601. name: "Continent Cracker",
  41602. height: math.unit(27e6, "feet")
  41603. },
  41604. {
  41605. name: "Earth-Eclipsing",
  41606. height: math.unit(2.7e8, "feet")
  41607. },
  41608. {
  41609. name: "Gas Giant Gulper",
  41610. height: math.unit(2.7e9, "feet")
  41611. },
  41612. {
  41613. name: "Sol-Swallowing",
  41614. height: math.unit(9e10, "feet")
  41615. },
  41616. {
  41617. name: "Galaxy Gulper",
  41618. height: math.unit(9, "galaxies")
  41619. },
  41620. {
  41621. name: "Cosmos Churner",
  41622. height: math.unit(9, "universes")
  41623. },
  41624. ]
  41625. ))
  41626. characterMakers.push(() => makeCharacter(
  41627. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41628. {
  41629. front: {
  41630. height: math.unit(160, "cm"),
  41631. weight: math.unit(55, "kg"),
  41632. name: "Front",
  41633. image: {
  41634. source: "./media/characters/tow/front.svg",
  41635. extra: 1751/1722,
  41636. bottom: 74/1825
  41637. }
  41638. },
  41639. },
  41640. [
  41641. {
  41642. name: "Norm",
  41643. height: math.unit(160, "cm")
  41644. },
  41645. {
  41646. name: "Casual",
  41647. height: math.unit(3200, "m"),
  41648. default: true
  41649. },
  41650. {
  41651. name: "Show-Off",
  41652. height: math.unit(160, "km")
  41653. },
  41654. ]
  41655. ))
  41656. characterMakers.push(() => makeCharacter(
  41657. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41658. {
  41659. front: {
  41660. height: math.unit(7 + 11/12, "feet"),
  41661. weight: math.unit(342.8, "lb"),
  41662. name: "Front",
  41663. image: {
  41664. source: "./media/characters/vivian-orca-dragon/front.svg",
  41665. extra: 1890/1865,
  41666. bottom: 28/1918
  41667. }
  41668. },
  41669. },
  41670. [
  41671. {
  41672. name: "Micro",
  41673. height: math.unit(5, "inches")
  41674. },
  41675. {
  41676. name: "Normal",
  41677. height: math.unit(7 + 11/12, "feet"),
  41678. default: true
  41679. },
  41680. {
  41681. name: "Macro",
  41682. height: math.unit(395 + 7/12, "feet")
  41683. },
  41684. ]
  41685. ))
  41686. characterMakers.push(() => makeCharacter(
  41687. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41688. {
  41689. side: {
  41690. height: math.unit(10, "feet"),
  41691. weight: math.unit(1442, "lb"),
  41692. name: "Side",
  41693. image: {
  41694. source: "./media/characters/lotherakon/side.svg",
  41695. extra: 1604/1497,
  41696. bottom: 89/1693
  41697. }
  41698. },
  41699. },
  41700. [
  41701. {
  41702. name: "Mortal Interaction",
  41703. height: math.unit(10, "feet")
  41704. },
  41705. {
  41706. name: "Large",
  41707. height: math.unit(30, "feet"),
  41708. default: true
  41709. },
  41710. {
  41711. name: "Giant",
  41712. height: math.unit(100, "feet")
  41713. },
  41714. {
  41715. name: "Kaiju",
  41716. height: math.unit(300, "feet")
  41717. },
  41718. {
  41719. name: "Macro",
  41720. height: math.unit(1000, "feet")
  41721. },
  41722. {
  41723. name: "Macro+",
  41724. height: math.unit(3000, "feet")
  41725. },
  41726. {
  41727. name: "Megamacro",
  41728. height: math.unit(10000, "feet")
  41729. },
  41730. {
  41731. name: "City-Crushing",
  41732. height: math.unit(30000, "feet")
  41733. },
  41734. {
  41735. name: "Continent Cracker",
  41736. height: math.unit(30e6, "feet")
  41737. },
  41738. {
  41739. name: "Earth Eclipsing",
  41740. height: math.unit(3e8, "feet")
  41741. },
  41742. {
  41743. name: "Gas Giant Gulper",
  41744. height: math.unit(3e9, "feet")
  41745. },
  41746. {
  41747. name: "Sol-Swallowing",
  41748. height: math.unit(1e11, "feet")
  41749. },
  41750. {
  41751. name: "System Swallower",
  41752. height: math.unit(3e14, "feet")
  41753. },
  41754. {
  41755. name: "Galaxy Gulper",
  41756. height: math.unit(10, "galaxies")
  41757. },
  41758. {
  41759. name: "Light Universal",
  41760. height: math.unit(5, "universes")
  41761. },
  41762. {
  41763. name: "Universe Palm",
  41764. height: math.unit(20, "universes")
  41765. },
  41766. {
  41767. name: "Light Multiversal",
  41768. height: math.unit(5, "multiverses")
  41769. },
  41770. {
  41771. name: "Multiverse Palm",
  41772. height: math.unit(20, "multiverses")
  41773. },
  41774. {
  41775. name: "Inferno Incarnate",
  41776. height: math.unit(1e7, "multiverses")
  41777. },
  41778. ]
  41779. ))
  41780. characterMakers.push(() => makeCharacter(
  41781. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41782. {
  41783. front: {
  41784. height: math.unit(8, "feet"),
  41785. weight: math.unit(1200, "lb"),
  41786. name: "Front",
  41787. image: {
  41788. source: "./media/characters/malithee/front.svg",
  41789. extra: 1675/1640,
  41790. bottom: 162/1837
  41791. }
  41792. },
  41793. },
  41794. [
  41795. {
  41796. name: "Mortal Interaction",
  41797. height: math.unit(8, "feet"),
  41798. default: true
  41799. },
  41800. {
  41801. name: "Large",
  41802. height: math.unit(24, "feet")
  41803. },
  41804. {
  41805. name: "Kaiju",
  41806. height: math.unit(240, "feet")
  41807. },
  41808. {
  41809. name: "Megamacro",
  41810. height: math.unit(8000, "feet")
  41811. },
  41812. {
  41813. name: "Continent Cracker",
  41814. height: math.unit(24e6, "feet")
  41815. },
  41816. {
  41817. name: "Earth-Eclipsing",
  41818. height: math.unit(2.4e8, "feet")
  41819. },
  41820. {
  41821. name: "Sol-Swallowing",
  41822. height: math.unit(8e10, "feet")
  41823. },
  41824. {
  41825. name: "Galaxy Gulper",
  41826. height: math.unit(8, "galaxies")
  41827. },
  41828. {
  41829. name: "Light Universal",
  41830. height: math.unit(4, "universes")
  41831. },
  41832. {
  41833. name: "Universe Atoms",
  41834. height: math.unit(1.829e9, "universes")
  41835. },
  41836. {
  41837. name: "Light Multiversal",
  41838. height: math.unit(4, "multiverses")
  41839. },
  41840. {
  41841. name: "Multiverse Atoms",
  41842. height: math.unit(1.829e9, "multiverses")
  41843. },
  41844. {
  41845. name: "Nigh-Omnipresence",
  41846. height: math.unit(8e261, "multiverses")
  41847. },
  41848. ]
  41849. ))
  41850. characterMakers.push(() => makeCharacter(
  41851. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41852. {
  41853. front: {
  41854. height: math.unit(10, "feet"),
  41855. weight: math.unit(1500, "lb"),
  41856. name: "Front",
  41857. image: {
  41858. source: "./media/characters/miles-thestia/front.svg",
  41859. extra: 1812/1727,
  41860. bottom: 86/1898
  41861. }
  41862. },
  41863. back: {
  41864. height: math.unit(10, "feet"),
  41865. weight: math.unit(1500, "lb"),
  41866. name: "Back",
  41867. image: {
  41868. source: "./media/characters/miles-thestia/back.svg",
  41869. extra: 1799/1690,
  41870. bottom: 47/1846
  41871. }
  41872. },
  41873. frontNsfw: {
  41874. height: math.unit(10, "feet"),
  41875. weight: math.unit(1500, "lb"),
  41876. name: "Front (NSFW)",
  41877. image: {
  41878. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41879. extra: 1812/1727,
  41880. bottom: 86/1898
  41881. }
  41882. },
  41883. },
  41884. [
  41885. {
  41886. name: "Mini-Macro",
  41887. height: math.unit(10, "feet"),
  41888. default: true
  41889. },
  41890. ]
  41891. ))
  41892. characterMakers.push(() => makeCharacter(
  41893. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41894. {
  41895. front: {
  41896. height: math.unit(25, "feet"),
  41897. name: "Front",
  41898. image: {
  41899. source: "./media/characters/titan-s-wulf/front.svg",
  41900. extra: 1560/1484,
  41901. bottom: 76/1636
  41902. }
  41903. },
  41904. },
  41905. [
  41906. {
  41907. name: "Smallest",
  41908. height: math.unit(25, "feet"),
  41909. default: true
  41910. },
  41911. {
  41912. name: "Normal",
  41913. height: math.unit(200, "feet")
  41914. },
  41915. {
  41916. name: "Macro",
  41917. height: math.unit(200000, "feet")
  41918. },
  41919. {
  41920. name: "Multiversal Original",
  41921. height: math.unit(10000, "multiverses")
  41922. },
  41923. ]
  41924. ))
  41925. characterMakers.push(() => makeCharacter(
  41926. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41927. {
  41928. front: {
  41929. height: math.unit(8, "feet"),
  41930. weight: math.unit(553, "lb"),
  41931. name: "Front",
  41932. image: {
  41933. source: "./media/characters/tawendeh/front.svg",
  41934. extra: 2365/2268,
  41935. bottom: 83/2448
  41936. }
  41937. },
  41938. frontClothed: {
  41939. height: math.unit(8, "feet"),
  41940. weight: math.unit(553, "lb"),
  41941. name: "Front (Clothed)",
  41942. image: {
  41943. source: "./media/characters/tawendeh/front-clothed.svg",
  41944. extra: 2365/2268,
  41945. bottom: 83/2448
  41946. }
  41947. },
  41948. back: {
  41949. height: math.unit(8, "feet"),
  41950. weight: math.unit(553, "lb"),
  41951. name: "Back",
  41952. image: {
  41953. source: "./media/characters/tawendeh/back.svg",
  41954. extra: 2397/2294,
  41955. bottom: 42/2439
  41956. }
  41957. },
  41958. },
  41959. [
  41960. {
  41961. name: "Mortal Interaction",
  41962. height: math.unit(8, "feet"),
  41963. default: true
  41964. },
  41965. {
  41966. name: "Giant",
  41967. height: math.unit(80, "feet")
  41968. },
  41969. {
  41970. name: "Macro",
  41971. height: math.unit(800, "feet")
  41972. },
  41973. {
  41974. name: "Megamacro",
  41975. height: math.unit(8000, "feet")
  41976. },
  41977. {
  41978. name: "City-Crushing",
  41979. height: math.unit(24000, "feet")
  41980. },
  41981. {
  41982. name: "Mountain-Mashing",
  41983. height: math.unit(80000, "feet")
  41984. },
  41985. {
  41986. name: "Nation Nemesis",
  41987. height: math.unit(8e6, "feet")
  41988. },
  41989. {
  41990. name: "Continent Cracker",
  41991. height: math.unit(24e6, "feet")
  41992. },
  41993. {
  41994. name: "Earth-Eclipsing",
  41995. height: math.unit(2.4e8, "feet")
  41996. },
  41997. {
  41998. name: "Gas Giant Gulper",
  41999. height: math.unit(2.4e9, "feet")
  42000. },
  42001. {
  42002. name: "Sol-Swallowing",
  42003. height: math.unit(8e10, "feet")
  42004. },
  42005. {
  42006. name: "Galaxy Gulper",
  42007. height: math.unit(8, "galaxies")
  42008. },
  42009. {
  42010. name: "Cosmos Churner",
  42011. height: math.unit(8, "universes")
  42012. },
  42013. {
  42014. name: "Omnipotent Otter",
  42015. height: math.unit(80, "universes")
  42016. },
  42017. ]
  42018. ))
  42019. characterMakers.push(() => makeCharacter(
  42020. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42021. {
  42022. front: {
  42023. height: math.unit(2.6, "meters"),
  42024. weight: math.unit(900, "kg"),
  42025. name: "Front",
  42026. image: {
  42027. source: "./media/characters/neesha/front.svg",
  42028. extra: 1803/1653,
  42029. bottom: 128/1931
  42030. }
  42031. },
  42032. },
  42033. [
  42034. {
  42035. name: "Normal",
  42036. height: math.unit(2.6, "meters"),
  42037. default: true
  42038. },
  42039. {
  42040. name: "Macro",
  42041. height: math.unit(50, "meters")
  42042. },
  42043. ]
  42044. ))
  42045. characterMakers.push(() => makeCharacter(
  42046. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42047. {
  42048. front: {
  42049. height: math.unit(5, "feet"),
  42050. weight: math.unit(185, "lb"),
  42051. name: "Front",
  42052. image: {
  42053. source: "./media/characters/kyera/front.svg",
  42054. extra: 1875/1790,
  42055. bottom: 96/1971
  42056. }
  42057. },
  42058. },
  42059. [
  42060. {
  42061. name: "Normal",
  42062. height: math.unit(5, "feet"),
  42063. default: true
  42064. },
  42065. ]
  42066. ))
  42067. characterMakers.push(() => makeCharacter(
  42068. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42069. {
  42070. front: {
  42071. height: math.unit(7 + 6/12, "feet"),
  42072. weight: math.unit(540, "lb"),
  42073. name: "Front",
  42074. image: {
  42075. source: "./media/characters/yuko/front.svg",
  42076. extra: 1282/1222,
  42077. bottom: 101/1383
  42078. }
  42079. },
  42080. frontClothed: {
  42081. height: math.unit(7 + 6/12, "feet"),
  42082. weight: math.unit(540, "lb"),
  42083. name: "Front (Clothed)",
  42084. image: {
  42085. source: "./media/characters/yuko/front-clothed.svg",
  42086. extra: 1282/1222,
  42087. bottom: 101/1383
  42088. }
  42089. },
  42090. },
  42091. [
  42092. {
  42093. name: "Normal",
  42094. height: math.unit(7 + 6/12, "feet"),
  42095. default: true
  42096. },
  42097. {
  42098. name: "Macro",
  42099. height: math.unit(26 + 9/12, "feet")
  42100. },
  42101. {
  42102. name: "Megamacro",
  42103. height: math.unit(300, "feet")
  42104. },
  42105. {
  42106. name: "Gigamacro",
  42107. height: math.unit(5000, "feet")
  42108. },
  42109. {
  42110. name: "Planetary",
  42111. height: math.unit(10000, "miles")
  42112. },
  42113. ]
  42114. ))
  42115. characterMakers.push(() => makeCharacter(
  42116. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42117. {
  42118. front: {
  42119. height: math.unit(8 + 2/12, "feet"),
  42120. weight: math.unit(600, "lb"),
  42121. name: "Front",
  42122. image: {
  42123. source: "./media/characters/deam-nitrel/front.svg",
  42124. extra: 1308/1234,
  42125. bottom: 125/1433
  42126. }
  42127. },
  42128. },
  42129. [
  42130. {
  42131. name: "Normal",
  42132. height: math.unit(8 + 2/12, "feet"),
  42133. default: true
  42134. },
  42135. ]
  42136. ))
  42137. characterMakers.push(() => makeCharacter(
  42138. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42139. {
  42140. front: {
  42141. height: math.unit(6.1, "feet"),
  42142. weight: math.unit(180, "lb"),
  42143. name: "Front",
  42144. image: {
  42145. source: "./media/characters/skyress/front.svg",
  42146. extra: 1045/915,
  42147. bottom: 28/1073
  42148. }
  42149. },
  42150. maw: {
  42151. height: math.unit(1, "feet"),
  42152. name: "Maw",
  42153. image: {
  42154. source: "./media/characters/skyress/maw.svg"
  42155. }
  42156. },
  42157. },
  42158. [
  42159. {
  42160. name: "Normal",
  42161. height: math.unit(6.1, "feet"),
  42162. default: true
  42163. },
  42164. {
  42165. name: "Macro",
  42166. height: math.unit(200, "feet")
  42167. },
  42168. ]
  42169. ))
  42170. characterMakers.push(() => makeCharacter(
  42171. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42172. {
  42173. front: {
  42174. height: math.unit(4 + 2/12, "feet"),
  42175. weight: math.unit(40, "kg"),
  42176. name: "Front",
  42177. image: {
  42178. source: "./media/characters/amethyst-jones/front.svg",
  42179. extra: 1220/1150,
  42180. bottom: 101/1321
  42181. }
  42182. },
  42183. },
  42184. [
  42185. {
  42186. name: "Normal",
  42187. height: math.unit(4 + 2/12, "feet"),
  42188. default: true
  42189. },
  42190. ]
  42191. ))
  42192. characterMakers.push(() => makeCharacter(
  42193. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42194. {
  42195. front: {
  42196. height: math.unit(1.7, "m"),
  42197. weight: math.unit(135, "lb"),
  42198. name: "Front",
  42199. image: {
  42200. source: "./media/characters/jade/front.svg",
  42201. extra: 1818/1767,
  42202. bottom: 32/1850
  42203. }
  42204. },
  42205. back: {
  42206. height: math.unit(1.7, "m"),
  42207. weight: math.unit(135, "lb"),
  42208. name: "Back",
  42209. image: {
  42210. source: "./media/characters/jade/back.svg",
  42211. extra: 1869/1809,
  42212. bottom: 35/1904
  42213. }
  42214. },
  42215. hand: {
  42216. height: math.unit(0.24, "m"),
  42217. name: "Hand",
  42218. image: {
  42219. source: "./media/characters/jade/hand.svg"
  42220. }
  42221. },
  42222. foot: {
  42223. height: math.unit(0.263, "m"),
  42224. name: "Foot",
  42225. image: {
  42226. source: "./media/characters/jade/foot.svg"
  42227. }
  42228. },
  42229. dick: {
  42230. height: math.unit(0.47, "m"),
  42231. name: "Dick",
  42232. image: {
  42233. source: "./media/characters/jade/dick.svg"
  42234. }
  42235. },
  42236. },
  42237. [
  42238. {
  42239. name: "Micro",
  42240. height: math.unit(22, "cm")
  42241. },
  42242. {
  42243. name: "Normal",
  42244. height: math.unit(1.7, "m"),
  42245. default: true
  42246. },
  42247. {
  42248. name: "Macro",
  42249. height: math.unit(152, "m")
  42250. },
  42251. ]
  42252. ))
  42253. characterMakers.push(() => makeCharacter(
  42254. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42255. {
  42256. front: {
  42257. height: math.unit(100, "miles"),
  42258. weight: math.unit(20000, "tons"),
  42259. name: "Front",
  42260. image: {
  42261. source: "./media/characters/cookie/front.svg",
  42262. extra: 1125/1070,
  42263. bottom: 30/1155
  42264. }
  42265. },
  42266. },
  42267. [
  42268. {
  42269. name: "Big",
  42270. height: math.unit(50, "feet")
  42271. },
  42272. {
  42273. name: "Macro",
  42274. height: math.unit(100, "miles"),
  42275. default: true
  42276. },
  42277. {
  42278. name: "Megamacro",
  42279. height: math.unit(90000, "miles")
  42280. },
  42281. ]
  42282. ))
  42283. characterMakers.push(() => makeCharacter(
  42284. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42285. {
  42286. front: {
  42287. height: math.unit(6, "feet"),
  42288. weight: math.unit(145, "lb"),
  42289. name: "Front",
  42290. image: {
  42291. source: "./media/characters/farzian/front.svg",
  42292. extra: 1902/1693,
  42293. bottom: 108/2010
  42294. }
  42295. },
  42296. },
  42297. [
  42298. {
  42299. name: "Macro",
  42300. height: math.unit(500, "feet"),
  42301. default: true
  42302. },
  42303. ]
  42304. ))
  42305. characterMakers.push(() => makeCharacter(
  42306. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42307. {
  42308. front: {
  42309. height: math.unit(3 + 6/12, "feet"),
  42310. weight: math.unit(50, "lb"),
  42311. name: "Front",
  42312. image: {
  42313. source: "./media/characters/kimberly-tilson/front.svg",
  42314. extra: 1400/1322,
  42315. bottom: 36/1436
  42316. }
  42317. },
  42318. back: {
  42319. height: math.unit(3 + 6/12, "feet"),
  42320. weight: math.unit(50, "lb"),
  42321. name: "Back",
  42322. image: {
  42323. source: "./media/characters/kimberly-tilson/back.svg",
  42324. extra: 1370/1307,
  42325. bottom: 20/1390
  42326. }
  42327. },
  42328. },
  42329. [
  42330. {
  42331. name: "Normal",
  42332. height: math.unit(3 + 6/12, "feet"),
  42333. default: true
  42334. },
  42335. ]
  42336. ))
  42337. characterMakers.push(() => makeCharacter(
  42338. { name: "Harthos", species: ["peacekeeper"], tags: ["anthro"] },
  42339. {
  42340. front: {
  42341. height: math.unit(1148, "feet"),
  42342. weight: math.unit(34057, "lb"),
  42343. name: "Front",
  42344. image: {
  42345. source: "./media/characters/harthos/front.svg",
  42346. extra: 1391/1339,
  42347. bottom: 13/1404
  42348. }
  42349. },
  42350. },
  42351. [
  42352. {
  42353. name: "Macro",
  42354. height: math.unit(1148, "feet"),
  42355. default: true
  42356. },
  42357. ]
  42358. ))
  42359. characterMakers.push(() => makeCharacter(
  42360. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42361. {
  42362. front: {
  42363. height: math.unit(15, "feet"),
  42364. name: "Front",
  42365. image: {
  42366. source: "./media/characters/hypatia/front.svg",
  42367. extra: 1653/1591,
  42368. bottom: 79/1732
  42369. }
  42370. },
  42371. },
  42372. [
  42373. {
  42374. name: "Normal",
  42375. height: math.unit(15, "feet")
  42376. },
  42377. {
  42378. name: "Small",
  42379. height: math.unit(300, "feet")
  42380. },
  42381. {
  42382. name: "Macro",
  42383. height: math.unit(2500, "feet"),
  42384. default: true
  42385. },
  42386. {
  42387. name: "Mega Macro",
  42388. height: math.unit(1500, "miles")
  42389. },
  42390. {
  42391. name: "Giga Macro",
  42392. height: math.unit(1.5e6, "miles")
  42393. },
  42394. ]
  42395. ))
  42396. characterMakers.push(() => makeCharacter(
  42397. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42398. {
  42399. front: {
  42400. height: math.unit(6, "feet"),
  42401. weight: math.unit(200, "lb"),
  42402. name: "Front",
  42403. image: {
  42404. source: "./media/characters/wulver/front.svg",
  42405. extra: 1724/1632,
  42406. bottom: 130/1854
  42407. }
  42408. },
  42409. frontNsfw: {
  42410. height: math.unit(6, "feet"),
  42411. weight: math.unit(200, "lb"),
  42412. name: "Front (NSFW)",
  42413. image: {
  42414. source: "./media/characters/wulver/front-nsfw.svg",
  42415. extra: 1724/1632,
  42416. bottom: 130/1854
  42417. }
  42418. },
  42419. },
  42420. [
  42421. {
  42422. name: "Human-Sized",
  42423. height: math.unit(6, "feet")
  42424. },
  42425. {
  42426. name: "Normal",
  42427. height: math.unit(4, "meters"),
  42428. default: true
  42429. },
  42430. {
  42431. name: "Large",
  42432. height: math.unit(6, "m")
  42433. },
  42434. ]
  42435. ))
  42436. characterMakers.push(() => makeCharacter(
  42437. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42438. {
  42439. front: {
  42440. height: math.unit(7, "feet"),
  42441. name: "Front",
  42442. image: {
  42443. source: "./media/characters/maru/front.svg",
  42444. extra: 1595/1570,
  42445. bottom: 0/1595
  42446. }
  42447. },
  42448. },
  42449. [
  42450. {
  42451. name: "Normal",
  42452. height: math.unit(7, "feet"),
  42453. default: true
  42454. },
  42455. {
  42456. name: "Macro",
  42457. height: math.unit(700, "feet")
  42458. },
  42459. {
  42460. name: "Mega Macro",
  42461. height: math.unit(25, "miles")
  42462. },
  42463. ]
  42464. ))
  42465. characterMakers.push(() => makeCharacter(
  42466. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42467. {
  42468. front: {
  42469. height: math.unit(6, "feet"),
  42470. weight: math.unit(170, "lb"),
  42471. name: "Front",
  42472. image: {
  42473. source: "./media/characters/xenon/front.svg",
  42474. extra: 1376/1305,
  42475. bottom: 56/1432
  42476. }
  42477. },
  42478. back: {
  42479. height: math.unit(6, "feet"),
  42480. weight: math.unit(170, "lb"),
  42481. name: "Back",
  42482. image: {
  42483. source: "./media/characters/xenon/back.svg",
  42484. extra: 1328/1259,
  42485. bottom: 95/1423
  42486. }
  42487. },
  42488. maw: {
  42489. height: math.unit(0.52, "feet"),
  42490. name: "Maw",
  42491. image: {
  42492. source: "./media/characters/xenon/maw.svg"
  42493. }
  42494. },
  42495. handLeft: {
  42496. height: math.unit(0.82 * 169 / 153, "feet"),
  42497. name: "Hand (Left)",
  42498. image: {
  42499. source: "./media/characters/xenon/hand-left.svg"
  42500. }
  42501. },
  42502. handRight: {
  42503. height: math.unit(0.82, "feet"),
  42504. name: "Hand (Right)",
  42505. image: {
  42506. source: "./media/characters/xenon/hand-right.svg"
  42507. }
  42508. },
  42509. footLeft: {
  42510. height: math.unit(1.13, "feet"),
  42511. name: "Foot (Left)",
  42512. image: {
  42513. source: "./media/characters/xenon/foot-left.svg"
  42514. }
  42515. },
  42516. footRight: {
  42517. height: math.unit(1.13 * 194 / 196, "feet"),
  42518. name: "Foot (Right)",
  42519. image: {
  42520. source: "./media/characters/xenon/foot-right.svg"
  42521. }
  42522. },
  42523. },
  42524. [
  42525. {
  42526. name: "Micro",
  42527. height: math.unit(0.8, "inches")
  42528. },
  42529. {
  42530. name: "Normal",
  42531. height: math.unit(6, "feet")
  42532. },
  42533. {
  42534. name: "Macro",
  42535. height: math.unit(50, "feet"),
  42536. default: true
  42537. },
  42538. {
  42539. name: "Macro+",
  42540. height: math.unit(250, "feet")
  42541. },
  42542. {
  42543. name: "Megamacro",
  42544. height: math.unit(1500, "feet")
  42545. },
  42546. ]
  42547. ))
  42548. characterMakers.push(() => makeCharacter(
  42549. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42550. {
  42551. front: {
  42552. height: math.unit(7 + 5/12, "feet"),
  42553. name: "Front",
  42554. image: {
  42555. source: "./media/characters/zane/front.svg",
  42556. extra: 1260/1203,
  42557. bottom: 94/1354
  42558. }
  42559. },
  42560. back: {
  42561. height: math.unit(5.05, "feet"),
  42562. name: "Back",
  42563. image: {
  42564. source: "./media/characters/zane/back.svg",
  42565. extra: 893/829,
  42566. bottom: 30/923
  42567. }
  42568. },
  42569. werewolf: {
  42570. height: math.unit(11, "feet"),
  42571. name: "Werewolf",
  42572. image: {
  42573. source: "./media/characters/zane/werewolf.svg",
  42574. extra: 1383/1323,
  42575. bottom: 89/1472
  42576. }
  42577. },
  42578. foot: {
  42579. height: math.unit(1.46, "feet"),
  42580. name: "Foot",
  42581. image: {
  42582. source: "./media/characters/zane/foot.svg"
  42583. }
  42584. },
  42585. footFront: {
  42586. height: math.unit(0.784, "feet"),
  42587. name: "Foot (Front)",
  42588. image: {
  42589. source: "./media/characters/zane/foot-front.svg"
  42590. }
  42591. },
  42592. dick: {
  42593. height: math.unit(1.95, "feet"),
  42594. name: "Dick",
  42595. image: {
  42596. source: "./media/characters/zane/dick.svg"
  42597. }
  42598. },
  42599. dickWerewolf: {
  42600. height: math.unit(3.77, "feet"),
  42601. name: "Dick (Werewolf)",
  42602. image: {
  42603. source: "./media/characters/zane/dick.svg"
  42604. }
  42605. },
  42606. },
  42607. [
  42608. {
  42609. name: "Normal",
  42610. height: math.unit(7 + 5/12, "feet"),
  42611. default: true
  42612. },
  42613. ]
  42614. ))
  42615. characterMakers.push(() => makeCharacter(
  42616. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42617. {
  42618. front: {
  42619. height: math.unit(6 + 2/12, "feet"),
  42620. weight: math.unit(284, "lb"),
  42621. name: "Front",
  42622. image: {
  42623. source: "./media/characters/benni-desparque/front.svg",
  42624. extra: 1353/1126,
  42625. bottom: 69/1422
  42626. }
  42627. },
  42628. },
  42629. [
  42630. {
  42631. name: "Civilian",
  42632. height: math.unit(6 + 2/12, "feet")
  42633. },
  42634. {
  42635. name: "Normal",
  42636. height: math.unit(98, "feet"),
  42637. default: true
  42638. },
  42639. {
  42640. name: "Kaiju Fighter",
  42641. height: math.unit(268, "feet")
  42642. },
  42643. ]
  42644. ))
  42645. characterMakers.push(() => makeCharacter(
  42646. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42647. {
  42648. front: {
  42649. height: math.unit(5, "feet"),
  42650. weight: math.unit(105, "lb"),
  42651. name: "Front",
  42652. image: {
  42653. source: "./media/characters/maxine/front.svg",
  42654. extra: 1386/1250,
  42655. bottom: 71/1457
  42656. }
  42657. },
  42658. },
  42659. [
  42660. {
  42661. name: "Normal",
  42662. height: math.unit(5, "feet"),
  42663. default: true
  42664. },
  42665. ]
  42666. ))
  42667. characterMakers.push(() => makeCharacter(
  42668. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42669. {
  42670. front: {
  42671. height: math.unit(11 + 7/12, "feet"),
  42672. weight: math.unit(9576, "lb"),
  42673. name: "Front",
  42674. image: {
  42675. source: "./media/characters/scaly/front.svg",
  42676. extra: 888/867,
  42677. bottom: 36/924
  42678. }
  42679. },
  42680. },
  42681. [
  42682. {
  42683. name: "Normal",
  42684. height: math.unit(11 + 7/12, "feet"),
  42685. default: true
  42686. },
  42687. ]
  42688. ))
  42689. characterMakers.push(() => makeCharacter(
  42690. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42691. {
  42692. front: {
  42693. height: math.unit(6 + 3/12, "feet"),
  42694. name: "Front",
  42695. image: {
  42696. source: "./media/characters/saelria/front.svg",
  42697. extra: 1243/1138,
  42698. bottom: 46/1289
  42699. }
  42700. },
  42701. },
  42702. [
  42703. {
  42704. name: "Micro",
  42705. height: math.unit(6, "inches"),
  42706. },
  42707. {
  42708. name: "Normal",
  42709. height: math.unit(6 + 3/12, "feet"),
  42710. default: true
  42711. },
  42712. {
  42713. name: "Macro",
  42714. height: math.unit(25, "feet")
  42715. },
  42716. ]
  42717. ))
  42718. characterMakers.push(() => makeCharacter(
  42719. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42720. {
  42721. front: {
  42722. height: math.unit(80, "meters"),
  42723. weight: math.unit(7000, "tonnes"),
  42724. name: "Front",
  42725. image: {
  42726. source: "./media/characters/tef/front.svg",
  42727. extra: 2036/1991,
  42728. bottom: 54/2090
  42729. }
  42730. },
  42731. back: {
  42732. height: math.unit(80, "meters"),
  42733. weight: math.unit(7000, "tonnes"),
  42734. name: "Back",
  42735. image: {
  42736. source: "./media/characters/tef/back.svg",
  42737. extra: 2036/1991,
  42738. bottom: 54/2090
  42739. }
  42740. },
  42741. },
  42742. [
  42743. {
  42744. name: "Macro",
  42745. height: math.unit(80, "meters"),
  42746. default: true
  42747. },
  42748. ]
  42749. ))
  42750. characterMakers.push(() => makeCharacter(
  42751. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42752. {
  42753. front: {
  42754. height: math.unit(13, "feet"),
  42755. weight: math.unit(6, "tons"),
  42756. name: "Front",
  42757. image: {
  42758. source: "./media/characters/rover/front.svg",
  42759. extra: 1233/1156,
  42760. bottom: 50/1283
  42761. }
  42762. },
  42763. back: {
  42764. height: math.unit(13, "feet"),
  42765. weight: math.unit(6, "tons"),
  42766. name: "Back",
  42767. image: {
  42768. source: "./media/characters/rover/back.svg",
  42769. extra: 1327/1258,
  42770. bottom: 39/1366
  42771. }
  42772. },
  42773. },
  42774. [
  42775. {
  42776. name: "Normal",
  42777. height: math.unit(13, "feet"),
  42778. default: true
  42779. },
  42780. {
  42781. name: "Macro",
  42782. height: math.unit(1300, "feet")
  42783. },
  42784. {
  42785. name: "Megamacro",
  42786. height: math.unit(1300, "miles")
  42787. },
  42788. {
  42789. name: "Gigamacro",
  42790. height: math.unit(1300000, "miles")
  42791. },
  42792. ]
  42793. ))
  42794. characterMakers.push(() => makeCharacter(
  42795. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42796. {
  42797. front: {
  42798. height: math.unit(6, "feet"),
  42799. weight: math.unit(150, "lb"),
  42800. name: "Front",
  42801. image: {
  42802. source: "./media/characters/ariz/front.svg",
  42803. extra: 1401/1346,
  42804. bottom: 5/1406
  42805. }
  42806. },
  42807. },
  42808. [
  42809. {
  42810. name: "Normal",
  42811. height: math.unit(10, "feet"),
  42812. default: true
  42813. },
  42814. ]
  42815. ))
  42816. characterMakers.push(() => makeCharacter(
  42817. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42818. {
  42819. front: {
  42820. height: math.unit(6, "feet"),
  42821. weight: math.unit(140, "lb"),
  42822. name: "Front",
  42823. image: {
  42824. source: "./media/characters/sigrun/front.svg",
  42825. extra: 1418/1359,
  42826. bottom: 27/1445
  42827. }
  42828. },
  42829. },
  42830. [
  42831. {
  42832. name: "Macro",
  42833. height: math.unit(35, "feet"),
  42834. default: true
  42835. },
  42836. ]
  42837. ))
  42838. characterMakers.push(() => makeCharacter(
  42839. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42840. {
  42841. front: {
  42842. height: math.unit(6, "feet"),
  42843. weight: math.unit(150, "lb"),
  42844. name: "Front",
  42845. image: {
  42846. source: "./media/characters/numin/front.svg",
  42847. extra: 1433/1388,
  42848. bottom: 12/1445
  42849. }
  42850. },
  42851. },
  42852. [
  42853. {
  42854. name: "Macro",
  42855. height: math.unit(21.5, "km"),
  42856. default: true
  42857. },
  42858. ]
  42859. ))
  42860. characterMakers.push(() => makeCharacter(
  42861. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42862. {
  42863. front: {
  42864. height: math.unit(6, "feet"),
  42865. weight: math.unit(463, "lb"),
  42866. name: "Front",
  42867. image: {
  42868. source: "./media/characters/melwa/front.svg",
  42869. extra: 1307/1248,
  42870. bottom: 93/1400
  42871. }
  42872. },
  42873. },
  42874. [
  42875. {
  42876. name: "Macro",
  42877. height: math.unit(50, "meters"),
  42878. default: true
  42879. },
  42880. ]
  42881. ))
  42882. characterMakers.push(() => makeCharacter(
  42883. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42884. {
  42885. front: {
  42886. height: math.unit(325, "feet"),
  42887. name: "Front",
  42888. image: {
  42889. source: "./media/characters/zorkaiju/front.svg",
  42890. extra: 1955/1814,
  42891. bottom: 40/1995
  42892. }
  42893. },
  42894. frontExtended: {
  42895. height: math.unit(325, "feet"),
  42896. name: "Front (Extended)",
  42897. image: {
  42898. source: "./media/characters/zorkaiju/front-extended.svg",
  42899. extra: 1955/1814,
  42900. bottom: 40/1995
  42901. }
  42902. },
  42903. side: {
  42904. height: math.unit(325, "feet"),
  42905. name: "Side",
  42906. image: {
  42907. source: "./media/characters/zorkaiju/side.svg",
  42908. extra: 1495/1396,
  42909. bottom: 17/1512
  42910. }
  42911. },
  42912. sideExtended: {
  42913. height: math.unit(325, "feet"),
  42914. name: "Side (Extended)",
  42915. image: {
  42916. source: "./media/characters/zorkaiju/side-extended.svg",
  42917. extra: 1495/1396,
  42918. bottom: 17/1512
  42919. }
  42920. },
  42921. back: {
  42922. height: math.unit(325, "feet"),
  42923. name: "Back",
  42924. image: {
  42925. source: "./media/characters/zorkaiju/back.svg",
  42926. extra: 1959/1821,
  42927. bottom: 31/1990
  42928. }
  42929. },
  42930. backExtended: {
  42931. height: math.unit(325, "feet"),
  42932. name: "Back (Extended)",
  42933. image: {
  42934. source: "./media/characters/zorkaiju/back-extended.svg",
  42935. extra: 1959/1821,
  42936. bottom: 31/1990
  42937. }
  42938. },
  42939. hand: {
  42940. height: math.unit(58.4, "feet"),
  42941. name: "Hand",
  42942. image: {
  42943. source: "./media/characters/zorkaiju/hand.svg"
  42944. }
  42945. },
  42946. handExtended: {
  42947. height: math.unit(61.4, "feet"),
  42948. name: "Hand (Extended)",
  42949. image: {
  42950. source: "./media/characters/zorkaiju/hand-extended.svg"
  42951. }
  42952. },
  42953. foot: {
  42954. height: math.unit(95, "feet"),
  42955. name: "Foot",
  42956. image: {
  42957. source: "./media/characters/zorkaiju/foot.svg"
  42958. }
  42959. },
  42960. leftArm: {
  42961. height: math.unit(59, "feet"),
  42962. name: "Left Arm",
  42963. image: {
  42964. source: "./media/characters/zorkaiju/left-arm.svg"
  42965. }
  42966. },
  42967. rightArm: {
  42968. height: math.unit(59, "feet"),
  42969. name: "Right Arm",
  42970. image: {
  42971. source: "./media/characters/zorkaiju/right-arm.svg"
  42972. }
  42973. },
  42974. leftArmExtended: {
  42975. height: math.unit(59 * 1.033546, "feet"),
  42976. name: "Left Arm (Extended)",
  42977. image: {
  42978. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  42979. }
  42980. },
  42981. rightArmExtended: {
  42982. height: math.unit(59 * 1.0496, "feet"),
  42983. name: "Right Arm (Extended)",
  42984. image: {
  42985. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  42986. }
  42987. },
  42988. tail: {
  42989. height: math.unit(104, "feet"),
  42990. name: "Tail",
  42991. image: {
  42992. source: "./media/characters/zorkaiju/tail.svg"
  42993. }
  42994. },
  42995. tailExtended: {
  42996. height: math.unit(104, "feet"),
  42997. name: "Tail (Extended)",
  42998. image: {
  42999. source: "./media/characters/zorkaiju/tail-extended.svg"
  43000. }
  43001. },
  43002. tailBottom: {
  43003. height: math.unit(104, "feet"),
  43004. name: "Tail Bottom",
  43005. image: {
  43006. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43007. }
  43008. },
  43009. crystal: {
  43010. height: math.unit(27.54, "feet"),
  43011. name: "Crystal",
  43012. image: {
  43013. source: "./media/characters/zorkaiju/crystal.svg"
  43014. }
  43015. },
  43016. },
  43017. [
  43018. {
  43019. name: "Kaiju",
  43020. height: math.unit(325, "feet"),
  43021. default: true
  43022. },
  43023. ]
  43024. ))
  43025. characterMakers.push(() => makeCharacter(
  43026. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43027. {
  43028. front: {
  43029. height: math.unit(6 + 1/12, "feet"),
  43030. weight: math.unit(115, "lb"),
  43031. name: "Front",
  43032. image: {
  43033. source: "./media/characters/bailey-belfry/front.svg",
  43034. extra: 1240/1121,
  43035. bottom: 101/1341
  43036. }
  43037. },
  43038. },
  43039. [
  43040. {
  43041. name: "Normal",
  43042. height: math.unit(6 + 1/12, "feet"),
  43043. default: true
  43044. },
  43045. ]
  43046. ))
  43047. characterMakers.push(() => makeCharacter(
  43048. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43049. {
  43050. side: {
  43051. height: math.unit(4, "meters"),
  43052. weight: math.unit(250, "kg"),
  43053. name: "Side",
  43054. image: {
  43055. source: "./media/characters/blacky/side.svg",
  43056. extra: 1027/919,
  43057. bottom: 43/1070
  43058. }
  43059. },
  43060. maw: {
  43061. height: math.unit(1, "meters"),
  43062. name: "Maw",
  43063. image: {
  43064. source: "./media/characters/blacky/maw.svg"
  43065. }
  43066. },
  43067. paw: {
  43068. height: math.unit(1, "meters"),
  43069. name: "Paw",
  43070. image: {
  43071. source: "./media/characters/blacky/paw.svg"
  43072. }
  43073. },
  43074. },
  43075. [
  43076. {
  43077. name: "Normal",
  43078. height: math.unit(4, "meters"),
  43079. default: true
  43080. },
  43081. ]
  43082. ))
  43083. characterMakers.push(() => makeCharacter(
  43084. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43085. {
  43086. front: {
  43087. height: math.unit(170, "cm"),
  43088. weight: math.unit(66, "kg"),
  43089. name: "Front",
  43090. image: {
  43091. source: "./media/characters/thux-ei/front.svg",
  43092. extra: 1109/1011,
  43093. bottom: 8/1117
  43094. }
  43095. },
  43096. },
  43097. [
  43098. {
  43099. name: "Normal",
  43100. height: math.unit(170, "cm"),
  43101. default: true
  43102. },
  43103. ]
  43104. ))
  43105. characterMakers.push(() => makeCharacter(
  43106. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43107. {
  43108. front: {
  43109. height: math.unit(5, "feet"),
  43110. weight: math.unit(120, "lb"),
  43111. name: "Front",
  43112. image: {
  43113. source: "./media/characters/roxanne-voltaire/front.svg",
  43114. extra: 1901/1779,
  43115. bottom: 53/1954
  43116. }
  43117. },
  43118. },
  43119. [
  43120. {
  43121. name: "Normal",
  43122. height: math.unit(5, "feet"),
  43123. default: true
  43124. },
  43125. {
  43126. name: "Giant",
  43127. height: math.unit(50, "feet")
  43128. },
  43129. {
  43130. name: "Titan",
  43131. height: math.unit(500, "feet")
  43132. },
  43133. {
  43134. name: "Macro",
  43135. height: math.unit(5000, "feet")
  43136. },
  43137. {
  43138. name: "Megamacro",
  43139. height: math.unit(50000, "feet")
  43140. },
  43141. {
  43142. name: "Gigamacro",
  43143. height: math.unit(500000, "feet")
  43144. },
  43145. {
  43146. name: "Teramacro",
  43147. height: math.unit(5e6, "feet")
  43148. },
  43149. ]
  43150. ))
  43151. characterMakers.push(() => makeCharacter(
  43152. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43153. {
  43154. front: {
  43155. height: math.unit(6 + 2/12, "feet"),
  43156. name: "Front",
  43157. image: {
  43158. source: "./media/characters/squeaks/front.svg",
  43159. extra: 1823/1768,
  43160. bottom: 138/1961
  43161. }
  43162. },
  43163. },
  43164. [
  43165. {
  43166. name: "Micro",
  43167. height: math.unit(0.5, "inches")
  43168. },
  43169. {
  43170. name: "Normal",
  43171. height: math.unit(6 + 2/12, "feet"),
  43172. default: true
  43173. },
  43174. {
  43175. name: "Macro",
  43176. height: math.unit(600, "feet")
  43177. },
  43178. ]
  43179. ))
  43180. characterMakers.push(() => makeCharacter(
  43181. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43182. {
  43183. front: {
  43184. height: math.unit(1.72, "meters"),
  43185. name: "Front",
  43186. image: {
  43187. source: "./media/characters/archinger/front.svg",
  43188. extra: 1861/1675,
  43189. bottom: 125/1986
  43190. }
  43191. },
  43192. back: {
  43193. height: math.unit(1.72, "meters"),
  43194. name: "Back",
  43195. image: {
  43196. source: "./media/characters/archinger/back.svg",
  43197. extra: 1844/1701,
  43198. bottom: 104/1948
  43199. }
  43200. },
  43201. cock: {
  43202. height: math.unit(0.59, "feet"),
  43203. name: "Cock",
  43204. image: {
  43205. source: "./media/characters/archinger/cock.svg"
  43206. }
  43207. },
  43208. },
  43209. [
  43210. {
  43211. name: "Normal",
  43212. height: math.unit(1.72, "meters"),
  43213. default: true
  43214. },
  43215. {
  43216. name: "Macro",
  43217. height: math.unit(84, "meters")
  43218. },
  43219. {
  43220. name: "Macro+",
  43221. height: math.unit(112, "meters")
  43222. },
  43223. {
  43224. name: "Macro++",
  43225. height: math.unit(960, "meters")
  43226. },
  43227. {
  43228. name: "Macro+++",
  43229. height: math.unit(4, "km")
  43230. },
  43231. {
  43232. name: "Macro++++",
  43233. height: math.unit(48, "km")
  43234. },
  43235. {
  43236. name: "Macro+++++",
  43237. height: math.unit(4500, "km")
  43238. },
  43239. ]
  43240. ))
  43241. characterMakers.push(() => makeCharacter(
  43242. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43243. {
  43244. front: {
  43245. height: math.unit(5 + 5/12, "feet"),
  43246. name: "Front",
  43247. image: {
  43248. source: "./media/characters/alsnapz/front.svg",
  43249. extra: 1157/1065,
  43250. bottom: 42/1199
  43251. }
  43252. },
  43253. },
  43254. [
  43255. {
  43256. name: "Normal",
  43257. height: math.unit(5 + 5/12, "feet"),
  43258. default: true
  43259. },
  43260. ]
  43261. ))
  43262. characterMakers.push(() => makeCharacter(
  43263. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43264. {
  43265. side: {
  43266. height: math.unit(3.2, "earths"),
  43267. name: "Side",
  43268. image: {
  43269. source: "./media/characters/mag/side.svg",
  43270. extra: 1331/1008,
  43271. bottom: 52/1383
  43272. }
  43273. },
  43274. wing: {
  43275. height: math.unit(1.94, "earths"),
  43276. name: "Wing",
  43277. image: {
  43278. source: "./media/characters/mag/wing.svg"
  43279. }
  43280. },
  43281. dick: {
  43282. height: math.unit(1.8, "earths"),
  43283. name: "Dick",
  43284. image: {
  43285. source: "./media/characters/mag/dick.svg"
  43286. }
  43287. },
  43288. ass: {
  43289. height: math.unit(1.33, "earths"),
  43290. name: "Ass",
  43291. image: {
  43292. source: "./media/characters/mag/ass.svg"
  43293. }
  43294. },
  43295. head: {
  43296. height: math.unit(1.1, "earths"),
  43297. name: "Head",
  43298. image: {
  43299. source: "./media/characters/mag/head.svg"
  43300. }
  43301. },
  43302. maw: {
  43303. height: math.unit(1.62, "earths"),
  43304. name: "Maw",
  43305. image: {
  43306. source: "./media/characters/mag/maw.svg"
  43307. }
  43308. },
  43309. },
  43310. [
  43311. {
  43312. name: "Small",
  43313. height: math.unit(162, "feet")
  43314. },
  43315. {
  43316. name: "Normal",
  43317. height: math.unit(3.2, "earths"),
  43318. default: true
  43319. },
  43320. ]
  43321. ))
  43322. characterMakers.push(() => makeCharacter(
  43323. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43324. {
  43325. front: {
  43326. height: math.unit(512, "feet"),
  43327. weight: math.unit(63509, "tonnes"),
  43328. name: "Front",
  43329. image: {
  43330. source: "./media/characters/vorrel-harroc/front.svg",
  43331. extra: 1075/1063,
  43332. bottom: 62/1137
  43333. }
  43334. },
  43335. },
  43336. [
  43337. {
  43338. name: "Normal",
  43339. height: math.unit(10, "feet")
  43340. },
  43341. {
  43342. name: "Macro",
  43343. height: math.unit(512, "feet"),
  43344. default: true
  43345. },
  43346. {
  43347. name: "Megamacro",
  43348. height: math.unit(256, "miles")
  43349. },
  43350. {
  43351. name: "Gigamacro",
  43352. height: math.unit(4096, "miles")
  43353. },
  43354. ]
  43355. ))
  43356. characterMakers.push(() => makeCharacter(
  43357. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43358. {
  43359. side: {
  43360. height: math.unit(50, "feet"),
  43361. name: "Side",
  43362. image: {
  43363. source: "./media/characters/froimar/side.svg",
  43364. extra: 855/638,
  43365. bottom: 99/954
  43366. }
  43367. },
  43368. },
  43369. [
  43370. {
  43371. name: "Macro",
  43372. height: math.unit(50, "feet"),
  43373. default: true
  43374. },
  43375. ]
  43376. ))
  43377. characterMakers.push(() => makeCharacter(
  43378. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43379. {
  43380. front: {
  43381. height: math.unit(210, "miles"),
  43382. name: "Front",
  43383. image: {
  43384. source: "./media/characters/timothy/front.svg",
  43385. extra: 1007/943,
  43386. bottom: 62/1069
  43387. }
  43388. },
  43389. frontSkirt: {
  43390. height: math.unit(210, "miles"),
  43391. name: "Front (Skirt)",
  43392. image: {
  43393. source: "./media/characters/timothy/front-skirt.svg",
  43394. extra: 1007/943,
  43395. bottom: 62/1069
  43396. }
  43397. },
  43398. frontCoat: {
  43399. height: math.unit(210, "miles"),
  43400. name: "Front (Coat)",
  43401. image: {
  43402. source: "./media/characters/timothy/front-coat.svg",
  43403. extra: 1007/943,
  43404. bottom: 62/1069
  43405. }
  43406. },
  43407. },
  43408. [
  43409. {
  43410. name: "Macro",
  43411. height: math.unit(210, "miles"),
  43412. default: true
  43413. },
  43414. {
  43415. name: "Megamacro",
  43416. height: math.unit(210000, "miles")
  43417. },
  43418. ]
  43419. ))
  43420. characterMakers.push(() => makeCharacter(
  43421. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43422. {
  43423. front: {
  43424. height: math.unit(188, "feet"),
  43425. name: "Front",
  43426. image: {
  43427. source: "./media/characters/pyotr/front.svg",
  43428. extra: 1912/1826,
  43429. bottom: 18/1930
  43430. }
  43431. },
  43432. },
  43433. [
  43434. {
  43435. name: "Macro",
  43436. height: math.unit(188, "feet"),
  43437. default: true
  43438. },
  43439. {
  43440. name: "Megamacro",
  43441. height: math.unit(8, "miles")
  43442. },
  43443. ]
  43444. ))
  43445. characterMakers.push(() => makeCharacter(
  43446. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43447. {
  43448. side: {
  43449. height: math.unit(10, "feet"),
  43450. weight: math.unit(4500, "lb"),
  43451. name: "Side",
  43452. image: {
  43453. source: "./media/characters/ackart/side.svg",
  43454. extra: 1776/1668,
  43455. bottom: 116/1892
  43456. }
  43457. },
  43458. },
  43459. [
  43460. {
  43461. name: "Normal",
  43462. height: math.unit(10, "feet"),
  43463. default: true
  43464. },
  43465. ]
  43466. ))
  43467. characterMakers.push(() => makeCharacter(
  43468. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43469. {
  43470. side: {
  43471. height: math.unit(21, "feet"),
  43472. name: "Side",
  43473. image: {
  43474. source: "./media/characters/nolow/side.svg",
  43475. extra: 1484/1434,
  43476. bottom: 85/1569
  43477. }
  43478. },
  43479. sideErect: {
  43480. height: math.unit(21, "feet"),
  43481. name: "Side-erect",
  43482. image: {
  43483. source: "./media/characters/nolow/side-erect.svg",
  43484. extra: 1484/1434,
  43485. bottom: 85/1569
  43486. }
  43487. },
  43488. },
  43489. [
  43490. {
  43491. name: "Regular",
  43492. height: math.unit(12, "feet")
  43493. },
  43494. {
  43495. name: "Big Chee",
  43496. height: math.unit(21, "feet"),
  43497. default: true
  43498. },
  43499. ]
  43500. ))
  43501. characterMakers.push(() => makeCharacter(
  43502. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43503. {
  43504. front: {
  43505. height: math.unit(7, "feet"),
  43506. weight: math.unit(250, "lb"),
  43507. name: "Front",
  43508. image: {
  43509. source: "./media/characters/nines/front.svg",
  43510. extra: 1741/1607,
  43511. bottom: 41/1782
  43512. }
  43513. },
  43514. side: {
  43515. height: math.unit(7, "feet"),
  43516. weight: math.unit(250, "lb"),
  43517. name: "Side",
  43518. image: {
  43519. source: "./media/characters/nines/side.svg",
  43520. extra: 1854/1735,
  43521. bottom: 93/1947
  43522. }
  43523. },
  43524. back: {
  43525. height: math.unit(7, "feet"),
  43526. weight: math.unit(250, "lb"),
  43527. name: "Back",
  43528. image: {
  43529. source: "./media/characters/nines/back.svg",
  43530. extra: 1748/1615,
  43531. bottom: 20/1768
  43532. }
  43533. },
  43534. },
  43535. [
  43536. {
  43537. name: "Megamacro",
  43538. height: math.unit(99, "km"),
  43539. default: true
  43540. },
  43541. ]
  43542. ))
  43543. characterMakers.push(() => makeCharacter(
  43544. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43545. {
  43546. front: {
  43547. height: math.unit(5 + 10/12, "feet"),
  43548. weight: math.unit(210, "lb"),
  43549. name: "Front",
  43550. image: {
  43551. source: "./media/characters/zenith/front.svg",
  43552. extra: 1531/1452,
  43553. bottom: 198/1729
  43554. }
  43555. },
  43556. back: {
  43557. height: math.unit(5 + 10/12, "feet"),
  43558. weight: math.unit(210, "lb"),
  43559. name: "Back",
  43560. image: {
  43561. source: "./media/characters/zenith/back.svg",
  43562. extra: 1571/1487,
  43563. bottom: 75/1646
  43564. }
  43565. },
  43566. },
  43567. [
  43568. {
  43569. name: "Normal",
  43570. height: math.unit(5 + 10/12, "feet"),
  43571. default: true
  43572. }
  43573. ]
  43574. ))
  43575. characterMakers.push(() => makeCharacter(
  43576. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43577. {
  43578. front: {
  43579. height: math.unit(4, "feet"),
  43580. weight: math.unit(60, "lb"),
  43581. name: "Front",
  43582. image: {
  43583. source: "./media/characters/jasper/front.svg",
  43584. extra: 1450/1379,
  43585. bottom: 19/1469
  43586. }
  43587. },
  43588. },
  43589. [
  43590. {
  43591. name: "Normal",
  43592. height: math.unit(4, "feet"),
  43593. default: true
  43594. },
  43595. ]
  43596. ))
  43597. characterMakers.push(() => makeCharacter(
  43598. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43599. {
  43600. front: {
  43601. height: math.unit(6 + 5/12, "feet"),
  43602. weight: math.unit(290, "lb"),
  43603. name: "Front",
  43604. image: {
  43605. source: "./media/characters/tiberius-thyben/front.svg",
  43606. extra: 757/739,
  43607. bottom: 39/796
  43608. }
  43609. },
  43610. },
  43611. [
  43612. {
  43613. name: "Micro",
  43614. height: math.unit(1.5, "inches")
  43615. },
  43616. {
  43617. name: "Normal",
  43618. height: math.unit(6 + 5/12, "feet"),
  43619. default: true
  43620. },
  43621. {
  43622. name: "Macro",
  43623. height: math.unit(300, "feet")
  43624. },
  43625. ]
  43626. ))
  43627. characterMakers.push(() => makeCharacter(
  43628. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43629. {
  43630. front: {
  43631. height: math.unit(5 + 6/12, "feet"),
  43632. weight: math.unit(60, "kg"),
  43633. name: "Front",
  43634. image: {
  43635. source: "./media/characters/sabre/front.svg",
  43636. extra: 738/671,
  43637. bottom: 27/765
  43638. }
  43639. },
  43640. },
  43641. [
  43642. {
  43643. name: "Teeny",
  43644. height: math.unit(2, "inches")
  43645. },
  43646. {
  43647. name: "Smol",
  43648. height: math.unit(8, "inches")
  43649. },
  43650. {
  43651. name: "Normal",
  43652. height: math.unit(5 + 6/12, "feet"),
  43653. default: true
  43654. },
  43655. {
  43656. name: "Mini-Macro",
  43657. height: math.unit(15, "feet")
  43658. },
  43659. {
  43660. name: "Macro",
  43661. height: math.unit(50, "feet")
  43662. },
  43663. ]
  43664. ))
  43665. characterMakers.push(() => makeCharacter(
  43666. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43667. {
  43668. front: {
  43669. height: math.unit(6 + 4/12, "feet"),
  43670. weight: math.unit(170, "lb"),
  43671. name: "Front",
  43672. image: {
  43673. source: "./media/characters/charlie/front.svg",
  43674. extra: 1348/1228,
  43675. bottom: 15/1363
  43676. }
  43677. },
  43678. },
  43679. [
  43680. {
  43681. name: "Macro",
  43682. height: math.unit(1700, "meters"),
  43683. default: true
  43684. },
  43685. {
  43686. name: "MegaMacro",
  43687. height: math.unit(20400, "meters")
  43688. },
  43689. ]
  43690. ))
  43691. characterMakers.push(() => makeCharacter(
  43692. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43693. {
  43694. front: {
  43695. height: math.unit(1.96, "meters"),
  43696. weight: math.unit(220, "lb"),
  43697. name: "Front",
  43698. image: {
  43699. source: "./media/characters/susan-grant/front.svg",
  43700. extra: 482/478,
  43701. bottom: 7/489
  43702. }
  43703. },
  43704. },
  43705. [
  43706. {
  43707. name: "Normal",
  43708. height: math.unit(1.96, "meters"),
  43709. default: true
  43710. },
  43711. {
  43712. name: "Macro",
  43713. height: math.unit(76.2, "meters")
  43714. },
  43715. {
  43716. name: "MegaMacro",
  43717. height: math.unit(305, "meters")
  43718. },
  43719. {
  43720. name: "GigaMacro",
  43721. height: math.unit(1220, "meters")
  43722. },
  43723. {
  43724. name: "SuperMacro",
  43725. height: math.unit(4878, "meters")
  43726. },
  43727. ]
  43728. ))
  43729. characterMakers.push(() => makeCharacter(
  43730. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43731. {
  43732. front: {
  43733. height: math.unit(5 + 4/12, "feet"),
  43734. weight: math.unit(110, "lb"),
  43735. name: "Front",
  43736. image: {
  43737. source: "./media/characters/axel-isanov/front.svg",
  43738. extra: 1096/1065,
  43739. bottom: 13/1109
  43740. }
  43741. },
  43742. },
  43743. [
  43744. {
  43745. name: "Normal",
  43746. height: math.unit(5 + 4/12, "feet"),
  43747. default: true
  43748. },
  43749. ]
  43750. ))
  43751. characterMakers.push(() => makeCharacter(
  43752. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43753. {
  43754. front: {
  43755. height: math.unit(9, "feet"),
  43756. weight: math.unit(467, "lb"),
  43757. name: "Front",
  43758. image: {
  43759. source: "./media/characters/necahual/front.svg",
  43760. extra: 920/873,
  43761. bottom: 26/946
  43762. }
  43763. },
  43764. back: {
  43765. height: math.unit(9, "feet"),
  43766. weight: math.unit(467, "lb"),
  43767. name: "Back",
  43768. image: {
  43769. source: "./media/characters/necahual/back.svg",
  43770. extra: 930/884,
  43771. bottom: 16/946
  43772. }
  43773. },
  43774. frontUnderwear: {
  43775. height: math.unit(9, "feet"),
  43776. weight: math.unit(467, "lb"),
  43777. name: "Front (Underwear)",
  43778. image: {
  43779. source: "./media/characters/necahual/front-underwear.svg",
  43780. extra: 920/873,
  43781. bottom: 26/946
  43782. }
  43783. },
  43784. frontDressed: {
  43785. height: math.unit(9, "feet"),
  43786. weight: math.unit(467, "lb"),
  43787. name: "Front (Dressed)",
  43788. image: {
  43789. source: "./media/characters/necahual/front-dressed.svg",
  43790. extra: 920/873,
  43791. bottom: 26/946
  43792. }
  43793. },
  43794. },
  43795. [
  43796. {
  43797. name: "Comprsesed",
  43798. height: math.unit(9, "feet")
  43799. },
  43800. {
  43801. name: "Natural",
  43802. height: math.unit(15, "feet"),
  43803. default: true
  43804. },
  43805. {
  43806. name: "Boosted",
  43807. height: math.unit(50, "feet")
  43808. },
  43809. {
  43810. name: "Boosted+",
  43811. height: math.unit(150, "feet")
  43812. },
  43813. {
  43814. name: "Max",
  43815. height: math.unit(500, "feet")
  43816. },
  43817. ]
  43818. ))
  43819. characterMakers.push(() => makeCharacter(
  43820. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43821. {
  43822. front: {
  43823. height: math.unit(22 + 1/12, "feet"),
  43824. weight: math.unit(3200, "lb"),
  43825. name: "Front",
  43826. image: {
  43827. source: "./media/characters/theo-acacia/front.svg",
  43828. extra: 1796/1741,
  43829. bottom: 83/1879
  43830. }
  43831. },
  43832. frontUnderwear: {
  43833. height: math.unit(22 + 1/12, "feet"),
  43834. weight: math.unit(3200, "lb"),
  43835. name: "Front (Underwear)",
  43836. image: {
  43837. source: "./media/characters/theo-acacia/front-underwear.svg",
  43838. extra: 1796/1741,
  43839. bottom: 83/1879
  43840. }
  43841. },
  43842. frontNude: {
  43843. height: math.unit(22 + 1/12, "feet"),
  43844. weight: math.unit(3200, "lb"),
  43845. name: "Front (Nude)",
  43846. image: {
  43847. source: "./media/characters/theo-acacia/front-nude.svg",
  43848. extra: 1796/1741,
  43849. bottom: 83/1879
  43850. }
  43851. },
  43852. },
  43853. [
  43854. {
  43855. name: "Normal",
  43856. height: math.unit(22 + 1/12, "feet"),
  43857. default: true
  43858. },
  43859. ]
  43860. ))
  43861. characterMakers.push(() => makeCharacter(
  43862. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43863. {
  43864. front: {
  43865. height: math.unit(20, "feet"),
  43866. name: "Front",
  43867. image: {
  43868. source: "./media/characters/astra/front.svg",
  43869. extra: 1850/1714,
  43870. bottom: 106/1956
  43871. }
  43872. },
  43873. frontUndressed: {
  43874. height: math.unit(20, "feet"),
  43875. name: "Front (Undressed)",
  43876. image: {
  43877. source: "./media/characters/astra/front-undressed.svg",
  43878. extra: 1926/1749,
  43879. bottom: 0/1926
  43880. }
  43881. },
  43882. hand: {
  43883. height: math.unit(1.53, "feet"),
  43884. name: "Hand",
  43885. image: {
  43886. source: "./media/characters/astra/hand.svg"
  43887. }
  43888. },
  43889. paw: {
  43890. height: math.unit(1.53, "feet"),
  43891. name: "Paw",
  43892. image: {
  43893. source: "./media/characters/astra/paw.svg"
  43894. }
  43895. },
  43896. },
  43897. [
  43898. {
  43899. name: "Smallest",
  43900. height: math.unit(20, "feet")
  43901. },
  43902. {
  43903. name: "Normal",
  43904. height: math.unit(1e9, "miles"),
  43905. default: true
  43906. },
  43907. {
  43908. name: "Larger",
  43909. height: math.unit(5, "multiverses")
  43910. },
  43911. {
  43912. name: "Largest",
  43913. height: math.unit(1e9, "multiverses")
  43914. },
  43915. ]
  43916. ))
  43917. characterMakers.push(() => makeCharacter(
  43918. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43919. {
  43920. front: {
  43921. height: math.unit(8, "feet"),
  43922. name: "Front",
  43923. image: {
  43924. source: "./media/characters/breanna/front.svg",
  43925. extra: 1912/1632,
  43926. bottom: 33/1945
  43927. }
  43928. },
  43929. },
  43930. [
  43931. {
  43932. name: "Smallest",
  43933. height: math.unit(8, "feet")
  43934. },
  43935. {
  43936. name: "Normal",
  43937. height: math.unit(1, "mile"),
  43938. default: true
  43939. },
  43940. {
  43941. name: "Maximum",
  43942. height: math.unit(1500000000000, "lightyears")
  43943. },
  43944. ]
  43945. ))
  43946. characterMakers.push(() => makeCharacter(
  43947. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  43948. {
  43949. front: {
  43950. height: math.unit(5 + 11/12, "feet"),
  43951. weight: math.unit(155, "lb"),
  43952. name: "Front",
  43953. image: {
  43954. source: "./media/characters/cai/front.svg",
  43955. extra: 1823/1702,
  43956. bottom: 32/1855
  43957. }
  43958. },
  43959. back: {
  43960. height: math.unit(5 + 11/12, "feet"),
  43961. weight: math.unit(155, "lb"),
  43962. name: "Back",
  43963. image: {
  43964. source: "./media/characters/cai/back.svg",
  43965. extra: 1809/1708,
  43966. bottom: 31/1840
  43967. }
  43968. },
  43969. },
  43970. [
  43971. {
  43972. name: "Normal",
  43973. height: math.unit(5 + 11/12, "feet"),
  43974. default: true
  43975. },
  43976. {
  43977. name: "Big",
  43978. height: math.unit(15, "feet")
  43979. },
  43980. {
  43981. name: "Macro",
  43982. height: math.unit(200, "feet")
  43983. },
  43984. ]
  43985. ))
  43986. characterMakers.push(() => makeCharacter(
  43987. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  43988. {
  43989. front: {
  43990. height: math.unit(5 + 6/12, "feet"),
  43991. weight: math.unit(160, "lb"),
  43992. name: "Front",
  43993. image: {
  43994. source: "./media/characters/zanna-virtuedòttir/front.svg",
  43995. extra: 1227/1174,
  43996. bottom: 37/1264
  43997. }
  43998. },
  43999. },
  44000. [
  44001. {
  44002. name: "Macro",
  44003. height: math.unit(444, "meters"),
  44004. default: true
  44005. },
  44006. ]
  44007. ))
  44008. characterMakers.push(() => makeCharacter(
  44009. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44010. {
  44011. front: {
  44012. height: math.unit(18 + 7/12, "feet"),
  44013. name: "Front",
  44014. image: {
  44015. source: "./media/characters/rex/front.svg",
  44016. extra: 1941/1807,
  44017. bottom: 66/2007
  44018. }
  44019. },
  44020. back: {
  44021. height: math.unit(18 + 7/12, "feet"),
  44022. name: "Back",
  44023. image: {
  44024. source: "./media/characters/rex/back.svg",
  44025. extra: 1937/1822,
  44026. bottom: 42/1979
  44027. }
  44028. },
  44029. boot: {
  44030. height: math.unit(3.45, "feet"),
  44031. name: "Boot",
  44032. image: {
  44033. source: "./media/characters/rex/boot.svg"
  44034. }
  44035. },
  44036. paw: {
  44037. height: math.unit(4.17, "feet"),
  44038. name: "Paw",
  44039. image: {
  44040. source: "./media/characters/rex/paw.svg"
  44041. }
  44042. },
  44043. head: {
  44044. height: math.unit(6.728, "feet"),
  44045. name: "Head",
  44046. image: {
  44047. source: "./media/characters/rex/head.svg"
  44048. }
  44049. },
  44050. },
  44051. [
  44052. {
  44053. name: "Nano",
  44054. height: math.unit(18 + 7/12, "feet")
  44055. },
  44056. {
  44057. name: "Micro",
  44058. height: math.unit(1.5, "megameters")
  44059. },
  44060. {
  44061. name: "Normal",
  44062. height: math.unit(440, "megameters"),
  44063. default: true
  44064. },
  44065. {
  44066. name: "Macro",
  44067. height: math.unit(2.5, "gigameters")
  44068. },
  44069. {
  44070. name: "Gigamacro",
  44071. height: math.unit(2, "galaxies")
  44072. },
  44073. ]
  44074. ))
  44075. characterMakers.push(() => makeCharacter(
  44076. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44077. {
  44078. side: {
  44079. height: math.unit(32, "feet"),
  44080. weight: math.unit(250000, "lb"),
  44081. name: "Side",
  44082. image: {
  44083. source: "./media/characters/silverwing/side.svg",
  44084. extra: 1100/1019,
  44085. bottom: 204/1304
  44086. }
  44087. },
  44088. },
  44089. [
  44090. {
  44091. name: "Normal",
  44092. height: math.unit(32, "feet"),
  44093. default: true
  44094. },
  44095. ]
  44096. ))
  44097. characterMakers.push(() => makeCharacter(
  44098. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44099. {
  44100. front: {
  44101. height: math.unit(6 + 6/12, "feet"),
  44102. weight: math.unit(350, "lb"),
  44103. name: "Front",
  44104. image: {
  44105. source: "./media/characters/tristan-hawthorne/front.svg",
  44106. extra: 1159/1124,
  44107. bottom: 37/1196
  44108. },
  44109. form: "labrador",
  44110. default: true
  44111. },
  44112. skunkFront: {
  44113. height: math.unit(4 + 6/12, "feet"),
  44114. weight: math.unit(120, "lb"),
  44115. name: "Front",
  44116. image: {
  44117. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44118. extra: 1609/1551,
  44119. bottom: 169/1778
  44120. },
  44121. form: "skunk",
  44122. default: true
  44123. },
  44124. },
  44125. [
  44126. {
  44127. name: "Normal",
  44128. height: math.unit(6 + 6/12, "feet"),
  44129. form: "labrador",
  44130. default: true
  44131. },
  44132. {
  44133. name: "Normal",
  44134. height: math.unit(4 + 6/12, "feet"),
  44135. form: "skunk",
  44136. default: true
  44137. },
  44138. ],
  44139. {
  44140. "labrador": {
  44141. name: "Labrador",
  44142. default: true
  44143. },
  44144. "skunk": {
  44145. name: "Skunk"
  44146. }
  44147. }
  44148. ))
  44149. characterMakers.push(() => makeCharacter(
  44150. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44151. {
  44152. front: {
  44153. height: math.unit(5 + 11/12, "feet"),
  44154. weight: math.unit(190, "lb"),
  44155. name: "Front",
  44156. image: {
  44157. source: "./media/characters/mizu/front.svg",
  44158. extra: 1988/1788,
  44159. bottom: 14/2002
  44160. }
  44161. },
  44162. },
  44163. [
  44164. {
  44165. name: "Normal",
  44166. height: math.unit(5 + 11/12, "feet"),
  44167. default: true
  44168. },
  44169. ]
  44170. ))
  44171. characterMakers.push(() => makeCharacter(
  44172. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44173. {
  44174. front: {
  44175. height: math.unit(1.7, "feet"),
  44176. weight: math.unit(50, "lb"),
  44177. name: "Front",
  44178. image: {
  44179. source: "./media/characters/dechroma/front.svg",
  44180. extra: 1095/859,
  44181. bottom: 64/1159
  44182. }
  44183. },
  44184. },
  44185. [
  44186. {
  44187. name: "Normal",
  44188. height: math.unit(1.7, "feet"),
  44189. default: true
  44190. },
  44191. ]
  44192. ))
  44193. characterMakers.push(() => makeCharacter(
  44194. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44195. {
  44196. side: {
  44197. height: math.unit(30, "feet"),
  44198. name: "Side",
  44199. image: {
  44200. source: "./media/characters/veluren-thanazel/side.svg",
  44201. extra: 1611/633,
  44202. bottom: 118/1729
  44203. }
  44204. },
  44205. front: {
  44206. height: math.unit(30, "feet"),
  44207. name: "Front",
  44208. image: {
  44209. source: "./media/characters/veluren-thanazel/front.svg",
  44210. extra: 1486/636,
  44211. bottom: 238/1724
  44212. }
  44213. },
  44214. head: {
  44215. height: math.unit(21.4, "feet"),
  44216. name: "Head",
  44217. image: {
  44218. source: "./media/characters/veluren-thanazel/head.svg"
  44219. }
  44220. },
  44221. genitals: {
  44222. height: math.unit(19.4, "feet"),
  44223. name: "Genitals",
  44224. image: {
  44225. source: "./media/characters/veluren-thanazel/genitals.svg"
  44226. }
  44227. },
  44228. },
  44229. [
  44230. {
  44231. name: "Social",
  44232. height: math.unit(6, "feet")
  44233. },
  44234. {
  44235. name: "Play",
  44236. height: math.unit(12, "feet")
  44237. },
  44238. {
  44239. name: "True",
  44240. height: math.unit(30, "feet"),
  44241. default: true
  44242. },
  44243. ]
  44244. ))
  44245. characterMakers.push(() => makeCharacter(
  44246. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44247. {
  44248. front: {
  44249. height: math.unit(7 + 6/12, "feet"),
  44250. weight: math.unit(500, "kg"),
  44251. name: "Front",
  44252. image: {
  44253. source: "./media/characters/arcturas/front.svg",
  44254. extra: 1700/1500,
  44255. bottom: 145/1845
  44256. }
  44257. },
  44258. },
  44259. [
  44260. {
  44261. name: "Normal",
  44262. height: math.unit(7 + 6/12, "feet"),
  44263. default: true
  44264. },
  44265. ]
  44266. ))
  44267. characterMakers.push(() => makeCharacter(
  44268. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44269. {
  44270. side: {
  44271. height: math.unit(6, "feet"),
  44272. weight: math.unit(2, "tons"),
  44273. name: "Side",
  44274. image: {
  44275. source: "./media/characters/vitaen/side.svg",
  44276. extra: 1157/617,
  44277. bottom: 122/1279
  44278. }
  44279. },
  44280. },
  44281. [
  44282. {
  44283. name: "Normal",
  44284. height: math.unit(6, "feet"),
  44285. default: true
  44286. },
  44287. ]
  44288. ))
  44289. characterMakers.push(() => makeCharacter(
  44290. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44291. {
  44292. front: {
  44293. height: math.unit(19, "feet"),
  44294. name: "Front",
  44295. image: {
  44296. source: "./media/characters/fia-dreamweaver/front.svg",
  44297. extra: 1630/1504,
  44298. bottom: 25/1655
  44299. }
  44300. },
  44301. },
  44302. [
  44303. {
  44304. name: "Normal",
  44305. height: math.unit(19, "feet"),
  44306. default: true
  44307. },
  44308. ]
  44309. ))
  44310. characterMakers.push(() => makeCharacter(
  44311. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44312. {
  44313. front: {
  44314. height: math.unit(5 + 4/12, "feet"),
  44315. name: "Front",
  44316. image: {
  44317. source: "./media/characters/artan/front.svg",
  44318. extra: 1618/1535,
  44319. bottom: 46/1664
  44320. }
  44321. },
  44322. back: {
  44323. height: math.unit(5 + 4/12, "feet"),
  44324. name: "Back",
  44325. image: {
  44326. source: "./media/characters/artan/back.svg",
  44327. extra: 1618/1543,
  44328. bottom: 31/1649
  44329. }
  44330. },
  44331. },
  44332. [
  44333. {
  44334. name: "Normal",
  44335. height: math.unit(5 + 4/12, "feet"),
  44336. default: true
  44337. },
  44338. ]
  44339. ))
  44340. characterMakers.push(() => makeCharacter(
  44341. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44342. {
  44343. side: {
  44344. height: math.unit(182, "cm"),
  44345. weight: math.unit(1000, "lb"),
  44346. name: "Side",
  44347. image: {
  44348. source: "./media/characters/silver-dragon/side.svg",
  44349. extra: 710/287,
  44350. bottom: 88/798
  44351. }
  44352. },
  44353. },
  44354. [
  44355. {
  44356. name: "Normal",
  44357. height: math.unit(182, "cm"),
  44358. default: true
  44359. },
  44360. ]
  44361. ))
  44362. characterMakers.push(() => makeCharacter(
  44363. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44364. {
  44365. side: {
  44366. height: math.unit(6 + 6/12, "feet"),
  44367. weight: math.unit(1.5, "tons"),
  44368. name: "Side",
  44369. image: {
  44370. source: "./media/characters/zephyr/side.svg",
  44371. extra: 1433/586,
  44372. bottom: 109/1542
  44373. }
  44374. },
  44375. },
  44376. [
  44377. {
  44378. name: "Normal",
  44379. height: math.unit(6 + 6/12, "feet"),
  44380. default: true
  44381. },
  44382. ]
  44383. ))
  44384. characterMakers.push(() => makeCharacter(
  44385. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44386. {
  44387. side: {
  44388. height: math.unit(1, "feet"),
  44389. name: "Side",
  44390. image: {
  44391. source: "./media/characters/vixye/side.svg",
  44392. extra: 632/541,
  44393. bottom: 0/632
  44394. }
  44395. },
  44396. },
  44397. [
  44398. {
  44399. name: "Normal",
  44400. height: math.unit(1, "feet"),
  44401. default: true
  44402. },
  44403. {
  44404. name: "True",
  44405. height: math.unit(1e15, "multiverses")
  44406. },
  44407. ]
  44408. ))
  44409. characterMakers.push(() => makeCharacter(
  44410. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44411. {
  44412. front: {
  44413. height: math.unit(8 + 2/12, "feet"),
  44414. weight: math.unit(650, "lb"),
  44415. name: "Front",
  44416. image: {
  44417. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44418. extra: 1174/1137,
  44419. bottom: 82/1256
  44420. }
  44421. },
  44422. back: {
  44423. height: math.unit(8 + 2/12, "feet"),
  44424. weight: math.unit(650, "lb"),
  44425. name: "Back",
  44426. image: {
  44427. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44428. extra: 1204/1157,
  44429. bottom: 46/1250
  44430. }
  44431. },
  44432. },
  44433. [
  44434. {
  44435. name: "Wildform",
  44436. height: math.unit(8 + 2/12, "feet"),
  44437. default: true
  44438. },
  44439. ]
  44440. ))
  44441. characterMakers.push(() => makeCharacter(
  44442. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44443. {
  44444. front: {
  44445. height: math.unit(18, "feet"),
  44446. name: "Front",
  44447. image: {
  44448. source: "./media/characters/cyphin/front.svg",
  44449. extra: 970/886,
  44450. bottom: 42/1012
  44451. }
  44452. },
  44453. back: {
  44454. height: math.unit(18, "feet"),
  44455. name: "Back",
  44456. image: {
  44457. source: "./media/characters/cyphin/back.svg",
  44458. extra: 1009/894,
  44459. bottom: 24/1033
  44460. }
  44461. },
  44462. head: {
  44463. height: math.unit(5.05, "feet"),
  44464. name: "Head",
  44465. image: {
  44466. source: "./media/characters/cyphin/head.svg"
  44467. }
  44468. },
  44469. tailbud: {
  44470. height: math.unit(5, "feet"),
  44471. name: "Tailbud",
  44472. image: {
  44473. source: "./media/characters/cyphin/tailbud.svg"
  44474. }
  44475. },
  44476. },
  44477. [
  44478. ]
  44479. ))
  44480. characterMakers.push(() => makeCharacter(
  44481. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44482. {
  44483. side: {
  44484. height: math.unit(10, "feet"),
  44485. weight: math.unit(6, "tons"),
  44486. name: "Side",
  44487. image: {
  44488. source: "./media/characters/raijin/side.svg",
  44489. extra: 1529/613,
  44490. bottom: 337/1866
  44491. }
  44492. },
  44493. },
  44494. [
  44495. {
  44496. name: "Normal",
  44497. height: math.unit(10, "feet"),
  44498. default: true
  44499. },
  44500. ]
  44501. ))
  44502. characterMakers.push(() => makeCharacter(
  44503. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44504. {
  44505. side: {
  44506. height: math.unit(9, "feet"),
  44507. name: "Side",
  44508. image: {
  44509. source: "./media/characters/nilghais/side.svg",
  44510. extra: 1047/744,
  44511. bottom: 91/1138
  44512. }
  44513. },
  44514. head: {
  44515. height: math.unit(3.14, "feet"),
  44516. name: "Head",
  44517. image: {
  44518. source: "./media/characters/nilghais/head.svg"
  44519. }
  44520. },
  44521. mouth: {
  44522. height: math.unit(4.6, "feet"),
  44523. name: "Mouth",
  44524. image: {
  44525. source: "./media/characters/nilghais/mouth.svg"
  44526. }
  44527. },
  44528. wings: {
  44529. height: math.unit(24, "feet"),
  44530. name: "Wings",
  44531. image: {
  44532. source: "./media/characters/nilghais/wings.svg"
  44533. }
  44534. },
  44535. ass: {
  44536. height: math.unit(6.12, "feet"),
  44537. name: "Ass",
  44538. image: {
  44539. source: "./media/characters/nilghais/ass.svg"
  44540. }
  44541. },
  44542. },
  44543. [
  44544. {
  44545. name: "Normal",
  44546. height: math.unit(9, "feet"),
  44547. default: true
  44548. },
  44549. ]
  44550. ))
  44551. characterMakers.push(() => makeCharacter(
  44552. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44553. {
  44554. regular: {
  44555. height: math.unit(16 + 2/12, "feet"),
  44556. weight: math.unit(2300, "lb"),
  44557. name: "Regular",
  44558. image: {
  44559. source: "./media/characters/zolgar/regular.svg",
  44560. extra: 1246/1004,
  44561. bottom: 124/1370
  44562. }
  44563. },
  44564. boxers: {
  44565. height: math.unit(16 + 2/12, "feet"),
  44566. weight: math.unit(2300, "lb"),
  44567. name: "Boxers",
  44568. image: {
  44569. source: "./media/characters/zolgar/boxers.svg",
  44570. extra: 1246/1004,
  44571. bottom: 124/1370
  44572. }
  44573. },
  44574. armored: {
  44575. height: math.unit(16 + 2/12, "feet"),
  44576. weight: math.unit(2300, "lb"),
  44577. name: "Armored",
  44578. image: {
  44579. source: "./media/characters/zolgar/armored.svg",
  44580. extra: 1246/1004,
  44581. bottom: 124/1370
  44582. }
  44583. },
  44584. goth: {
  44585. height: math.unit(16 + 2/12, "feet"),
  44586. weight: math.unit(2300, "lb"),
  44587. name: "Goth",
  44588. image: {
  44589. source: "./media/characters/zolgar/goth.svg",
  44590. extra: 1246/1004,
  44591. bottom: 124/1370
  44592. }
  44593. },
  44594. },
  44595. [
  44596. {
  44597. name: "Shrunken Down",
  44598. height: math.unit(9 + 2/12, "feet")
  44599. },
  44600. {
  44601. name: "Normal",
  44602. height: math.unit(16 + 2/12, "feet"),
  44603. default: true
  44604. },
  44605. ]
  44606. ))
  44607. characterMakers.push(() => makeCharacter(
  44608. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44609. {
  44610. front: {
  44611. height: math.unit(6, "feet"),
  44612. weight: math.unit(168, "lb"),
  44613. name: "Front",
  44614. image: {
  44615. source: "./media/characters/luca/front.svg",
  44616. extra: 841/667,
  44617. bottom: 102/943
  44618. }
  44619. },
  44620. },
  44621. [
  44622. {
  44623. name: "Normal",
  44624. height: math.unit(6, "feet"),
  44625. default: true
  44626. },
  44627. ]
  44628. ))
  44629. characterMakers.push(() => makeCharacter(
  44630. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44631. {
  44632. side: {
  44633. height: math.unit(7 + 3/12, "feet"),
  44634. weight: math.unit(312, "lb"),
  44635. name: "Side",
  44636. image: {
  44637. source: "./media/characters/zezo/side.svg",
  44638. extra: 1192/1067,
  44639. bottom: 63/1255
  44640. }
  44641. },
  44642. },
  44643. [
  44644. {
  44645. name: "Normal",
  44646. height: math.unit(7 + 3/12, "feet"),
  44647. default: true
  44648. },
  44649. ]
  44650. ))
  44651. characterMakers.push(() => makeCharacter(
  44652. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44653. {
  44654. front: {
  44655. height: math.unit(5 + 5/12, "feet"),
  44656. weight: math.unit(170, "lb"),
  44657. name: "Front",
  44658. image: {
  44659. source: "./media/characters/mayso/front.svg",
  44660. extra: 1215/1108,
  44661. bottom: 16/1231
  44662. }
  44663. },
  44664. },
  44665. [
  44666. {
  44667. name: "Normal",
  44668. height: math.unit(5 + 5/12, "feet"),
  44669. default: true
  44670. },
  44671. ]
  44672. ))
  44673. characterMakers.push(() => makeCharacter(
  44674. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44675. {
  44676. front: {
  44677. height: math.unit(4 + 3/12, "feet"),
  44678. weight: math.unit(80, "lb"),
  44679. name: "Front",
  44680. image: {
  44681. source: "./media/characters/hess/front.svg",
  44682. extra: 1200/1123,
  44683. bottom: 16/1216
  44684. }
  44685. },
  44686. },
  44687. [
  44688. {
  44689. name: "Normal",
  44690. height: math.unit(4 + 3/12, "feet"),
  44691. default: true
  44692. },
  44693. ]
  44694. ))
  44695. characterMakers.push(() => makeCharacter(
  44696. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44697. {
  44698. front: {
  44699. height: math.unit(1.9, "meters"),
  44700. name: "Front",
  44701. image: {
  44702. source: "./media/characters/ashgar/front.svg",
  44703. extra: 1177/1146,
  44704. bottom: 99/1276
  44705. }
  44706. },
  44707. back: {
  44708. height: math.unit(1.9, "meters"),
  44709. name: "Back",
  44710. image: {
  44711. source: "./media/characters/ashgar/back.svg",
  44712. extra: 1201/1183,
  44713. bottom: 53/1254
  44714. }
  44715. },
  44716. feral: {
  44717. height: math.unit(1.4, "meters"),
  44718. name: "Feral",
  44719. image: {
  44720. source: "./media/characters/ashgar/feral.svg",
  44721. extra: 370/345,
  44722. bottom: 45/415
  44723. }
  44724. },
  44725. },
  44726. [
  44727. {
  44728. name: "Normal",
  44729. height: math.unit(1.9, "meters"),
  44730. default: true
  44731. },
  44732. ]
  44733. ))
  44734. characterMakers.push(() => makeCharacter(
  44735. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44736. {
  44737. regular: {
  44738. height: math.unit(6, "feet"),
  44739. weight: math.unit(220, "lb"),
  44740. name: "Regular",
  44741. image: {
  44742. source: "./media/characters/phillip/regular.svg",
  44743. extra: 1373/1277,
  44744. bottom: 75/1448
  44745. }
  44746. },
  44747. dressed: {
  44748. height: math.unit(6, "feet"),
  44749. weight: math.unit(220, "lb"),
  44750. name: "Dressed",
  44751. image: {
  44752. source: "./media/characters/phillip/dressed.svg",
  44753. extra: 1373/1277,
  44754. bottom: 75/1448
  44755. }
  44756. },
  44757. paw: {
  44758. height: math.unit(1.44, "feet"),
  44759. name: "Paw",
  44760. image: {
  44761. source: "./media/characters/phillip/paw.svg"
  44762. }
  44763. },
  44764. },
  44765. [
  44766. {
  44767. name: "Normal",
  44768. height: math.unit(6, "feet"),
  44769. default: true
  44770. },
  44771. ]
  44772. ))
  44773. characterMakers.push(() => makeCharacter(
  44774. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44775. {
  44776. side: {
  44777. height: math.unit(42, "feet"),
  44778. name: "Side",
  44779. image: {
  44780. source: "./media/characters/uvula/side.svg",
  44781. extra: 683/586,
  44782. bottom: 60/743
  44783. }
  44784. },
  44785. front: {
  44786. height: math.unit(42, "feet"),
  44787. name: "Front",
  44788. image: {
  44789. source: "./media/characters/uvula/front.svg",
  44790. extra: 705/613,
  44791. bottom: 54/759
  44792. }
  44793. },
  44794. maw: {
  44795. height: math.unit(23.5, "feet"),
  44796. name: "Maw",
  44797. image: {
  44798. source: "./media/characters/uvula/maw.svg"
  44799. }
  44800. },
  44801. },
  44802. [
  44803. {
  44804. name: "Original Size",
  44805. height: math.unit(14, "inches")
  44806. },
  44807. {
  44808. name: "Human Size",
  44809. height: math.unit(6, "feet")
  44810. },
  44811. {
  44812. name: "Big",
  44813. height: math.unit(42, "feet"),
  44814. default: true
  44815. },
  44816. {
  44817. name: "Bigger",
  44818. height: math.unit(100, "feet")
  44819. },
  44820. ]
  44821. ))
  44822. characterMakers.push(() => makeCharacter(
  44823. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44824. {
  44825. front: {
  44826. height: math.unit(5 + 11/12, "feet"),
  44827. name: "Front",
  44828. image: {
  44829. source: "./media/characters/lannah/front.svg",
  44830. extra: 1208/1113,
  44831. bottom: 97/1305
  44832. }
  44833. },
  44834. },
  44835. [
  44836. {
  44837. name: "Normal",
  44838. height: math.unit(5 + 11/12, "feet"),
  44839. default: true
  44840. },
  44841. ]
  44842. ))
  44843. characterMakers.push(() => makeCharacter(
  44844. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44845. {
  44846. front: {
  44847. height: math.unit(6 + 3/12, "feet"),
  44848. weight: math.unit(3.5, "tons"),
  44849. name: "Front",
  44850. image: {
  44851. source: "./media/characters/emberflame/front.svg",
  44852. extra: 1198/672,
  44853. bottom: 82/1280
  44854. }
  44855. },
  44856. side: {
  44857. height: math.unit(6 + 3/12, "feet"),
  44858. weight: math.unit(3.5, "tons"),
  44859. name: "Side",
  44860. image: {
  44861. source: "./media/characters/emberflame/side.svg",
  44862. extra: 938/527,
  44863. bottom: 56/994
  44864. }
  44865. },
  44866. },
  44867. [
  44868. {
  44869. name: "Normal",
  44870. height: math.unit(6 + 3/12, "feet"),
  44871. default: true
  44872. },
  44873. ]
  44874. ))
  44875. characterMakers.push(() => makeCharacter(
  44876. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44877. {
  44878. side: {
  44879. height: math.unit(17.5, "feet"),
  44880. weight: math.unit(35, "tons"),
  44881. name: "Side",
  44882. image: {
  44883. source: "./media/characters/sophie-ambrose/side.svg",
  44884. extra: 1573/1242,
  44885. bottom: 71/1644
  44886. }
  44887. },
  44888. maw: {
  44889. height: math.unit(7.4, "feet"),
  44890. name: "Maw",
  44891. image: {
  44892. source: "./media/characters/sophie-ambrose/maw.svg"
  44893. }
  44894. },
  44895. },
  44896. [
  44897. {
  44898. name: "Normal",
  44899. height: math.unit(17.5, "feet"),
  44900. default: true
  44901. },
  44902. ]
  44903. ))
  44904. characterMakers.push(() => makeCharacter(
  44905. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44906. {
  44907. front: {
  44908. height: math.unit(280, "feet"),
  44909. weight: math.unit(550, "tons"),
  44910. name: "Front",
  44911. image: {
  44912. source: "./media/characters/king-mugi/front.svg",
  44913. extra: 1102/947,
  44914. bottom: 104/1206
  44915. }
  44916. },
  44917. },
  44918. [
  44919. {
  44920. name: "King Mugi",
  44921. height: math.unit(280, "feet"),
  44922. default: true
  44923. },
  44924. ]
  44925. ))
  44926. characterMakers.push(() => makeCharacter(
  44927. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  44928. {
  44929. front: {
  44930. height: math.unit(64, "meters"),
  44931. name: "Front",
  44932. image: {
  44933. source: "./media/characters/nova-fox/front.svg",
  44934. extra: 1310/1246,
  44935. bottom: 65/1375
  44936. }
  44937. },
  44938. },
  44939. [
  44940. {
  44941. name: "Macro",
  44942. height: math.unit(64, "meters"),
  44943. default: true
  44944. },
  44945. ]
  44946. ))
  44947. characterMakers.push(() => makeCharacter(
  44948. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  44949. {
  44950. front: {
  44951. height: math.unit(6 + 3/12, "feet"),
  44952. weight: math.unit(170, "lb"),
  44953. name: "Front",
  44954. image: {
  44955. source: "./media/characters/sam-bat/front.svg",
  44956. extra: 1601/1411,
  44957. bottom: 125/1726
  44958. }
  44959. },
  44960. back: {
  44961. height: math.unit(6 + 3/12, "feet"),
  44962. weight: math.unit(170, "lb"),
  44963. name: "Back",
  44964. image: {
  44965. source: "./media/characters/sam-bat/back.svg",
  44966. extra: 1577/1405,
  44967. bottom: 58/1635
  44968. }
  44969. },
  44970. },
  44971. [
  44972. {
  44973. name: "Normal",
  44974. height: math.unit(6 + 3/12, "feet"),
  44975. default: true
  44976. },
  44977. ]
  44978. ))
  44979. characterMakers.push(() => makeCharacter(
  44980. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  44981. {
  44982. front: {
  44983. height: math.unit(59, "feet"),
  44984. weight: math.unit(40000, "lb"),
  44985. name: "Front",
  44986. image: {
  44987. source: "./media/characters/inari/front.svg",
  44988. extra: 1884/1350,
  44989. bottom: 95/1979
  44990. }
  44991. },
  44992. },
  44993. [
  44994. {
  44995. name: "Gigantamax",
  44996. height: math.unit(59, "feet"),
  44997. default: true
  44998. },
  44999. ]
  45000. ))
  45001. characterMakers.push(() => makeCharacter(
  45002. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45003. {
  45004. front: {
  45005. height: math.unit(5 + 8/12, "feet"),
  45006. name: "Front",
  45007. image: {
  45008. source: "./media/characters/elizabeth/front.svg",
  45009. extra: 1395/1298,
  45010. bottom: 54/1449
  45011. }
  45012. },
  45013. mouth: {
  45014. height: math.unit(1.97, "feet"),
  45015. name: "Mouth",
  45016. image: {
  45017. source: "./media/characters/elizabeth/mouth.svg"
  45018. }
  45019. },
  45020. foot: {
  45021. height: math.unit(1.17, "feet"),
  45022. name: "Foot",
  45023. image: {
  45024. source: "./media/characters/elizabeth/foot.svg"
  45025. }
  45026. },
  45027. },
  45028. [
  45029. {
  45030. name: "Normal",
  45031. height: math.unit(5 + 8/12, "feet"),
  45032. default: true
  45033. },
  45034. {
  45035. name: "Minimacro",
  45036. height: math.unit(18, "feet")
  45037. },
  45038. {
  45039. name: "Macro",
  45040. height: math.unit(180, "feet")
  45041. },
  45042. ]
  45043. ))
  45044. characterMakers.push(() => makeCharacter(
  45045. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45046. {
  45047. front: {
  45048. height: math.unit(5 + 2/12, "feet"),
  45049. name: "Front",
  45050. image: {
  45051. source: "./media/characters/october-gossamer/front.svg",
  45052. extra: 505/454,
  45053. bottom: 7/512
  45054. }
  45055. },
  45056. back: {
  45057. height: math.unit(5 + 2/12, "feet"),
  45058. name: "Back",
  45059. image: {
  45060. source: "./media/characters/october-gossamer/back.svg",
  45061. extra: 501/454,
  45062. bottom: 11/512
  45063. }
  45064. },
  45065. },
  45066. [
  45067. {
  45068. name: "Normal",
  45069. height: math.unit(5 + 2/12, "feet"),
  45070. default: true
  45071. },
  45072. ]
  45073. ))
  45074. characterMakers.push(() => makeCharacter(
  45075. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45076. {
  45077. front: {
  45078. height: math.unit(5, "feet"),
  45079. name: "Front",
  45080. image: {
  45081. source: "./media/characters/epiglottis/front.svg",
  45082. extra: 923/849,
  45083. bottom: 17/940
  45084. }
  45085. },
  45086. },
  45087. [
  45088. {
  45089. name: "Original Size",
  45090. height: math.unit(10, "inches")
  45091. },
  45092. {
  45093. name: "Human Size",
  45094. height: math.unit(5, "feet"),
  45095. default: true
  45096. },
  45097. {
  45098. name: "Big",
  45099. height: math.unit(25, "feet")
  45100. },
  45101. {
  45102. name: "Bigger",
  45103. height: math.unit(50, "feet")
  45104. },
  45105. {
  45106. name: "oh lawd",
  45107. height: math.unit(75, "feet")
  45108. },
  45109. ]
  45110. ))
  45111. characterMakers.push(() => makeCharacter(
  45112. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45113. {
  45114. front: {
  45115. height: math.unit(2 + 4/12, "feet"),
  45116. weight: math.unit(60, "lb"),
  45117. name: "Front",
  45118. image: {
  45119. source: "./media/characters/lerm/front.svg",
  45120. extra: 796/790,
  45121. bottom: 79/875
  45122. }
  45123. },
  45124. },
  45125. [
  45126. {
  45127. name: "Normal",
  45128. height: math.unit(2 + 4/12, "feet"),
  45129. default: true
  45130. },
  45131. ]
  45132. ))
  45133. characterMakers.push(() => makeCharacter(
  45134. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45135. {
  45136. front: {
  45137. height: math.unit(5.5, "feet"),
  45138. weight: math.unit(130, "lb"),
  45139. name: "Front",
  45140. image: {
  45141. source: "./media/characters/xena-nebadon/front.svg",
  45142. extra: 1828/1730,
  45143. bottom: 79/1907
  45144. }
  45145. },
  45146. },
  45147. [
  45148. {
  45149. name: "Tiny Puppy",
  45150. height: math.unit(3, "inches")
  45151. },
  45152. {
  45153. name: "Normal",
  45154. height: math.unit(5.5, "feet"),
  45155. default: true
  45156. },
  45157. {
  45158. name: "Lotta Lady",
  45159. height: math.unit(12, "feet")
  45160. },
  45161. {
  45162. name: "Pretty Big",
  45163. height: math.unit(100, "feet")
  45164. },
  45165. {
  45166. name: "Big",
  45167. height: math.unit(500, "feet")
  45168. },
  45169. {
  45170. name: "Skyscraper Toys",
  45171. height: math.unit(2500, "feet")
  45172. },
  45173. {
  45174. name: "Plane Catcher",
  45175. height: math.unit(8, "miles")
  45176. },
  45177. {
  45178. name: "Planet Toys",
  45179. height: math.unit(15, "earths")
  45180. },
  45181. {
  45182. name: "Stardust",
  45183. height: math.unit(0.25, "galaxies")
  45184. },
  45185. {
  45186. name: "Snacks",
  45187. height: math.unit(70, "universes")
  45188. },
  45189. ]
  45190. ))
  45191. characterMakers.push(() => makeCharacter(
  45192. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45193. {
  45194. front: {
  45195. height: math.unit(1.6, "meters"),
  45196. weight: math.unit(60, "kg"),
  45197. name: "Front",
  45198. image: {
  45199. source: "./media/characters/bounty/front.svg",
  45200. extra: 1426/1308,
  45201. bottom: 15/1441
  45202. }
  45203. },
  45204. back: {
  45205. height: math.unit(1.6, "meters"),
  45206. weight: math.unit(60, "kg"),
  45207. name: "Back",
  45208. image: {
  45209. source: "./media/characters/bounty/back.svg",
  45210. extra: 1417/1307,
  45211. bottom: 8/1425
  45212. }
  45213. },
  45214. },
  45215. [
  45216. {
  45217. name: "Normal",
  45218. height: math.unit(1.6, "meters"),
  45219. default: true
  45220. },
  45221. {
  45222. name: "Macro",
  45223. height: math.unit(300, "meters")
  45224. },
  45225. ]
  45226. ))
  45227. characterMakers.push(() => makeCharacter(
  45228. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45229. {
  45230. front: {
  45231. height: math.unit(2 + 8/12, "feet"),
  45232. weight: math.unit(15, "lb"),
  45233. name: "Front",
  45234. image: {
  45235. source: "./media/characters/mochi/front.svg",
  45236. extra: 1022/852,
  45237. bottom: 435/1457
  45238. }
  45239. },
  45240. back: {
  45241. height: math.unit(2 + 8/12, "feet"),
  45242. weight: math.unit(15, "lb"),
  45243. name: "Back",
  45244. image: {
  45245. source: "./media/characters/mochi/back.svg",
  45246. extra: 1335/1119,
  45247. bottom: 39/1374
  45248. }
  45249. },
  45250. bird: {
  45251. height: math.unit(2 + 8/12, "feet"),
  45252. weight: math.unit(15, "lb"),
  45253. name: "Bird",
  45254. image: {
  45255. source: "./media/characters/mochi/bird.svg",
  45256. extra: 1251/1113,
  45257. bottom: 178/1429
  45258. }
  45259. },
  45260. kaiju: {
  45261. height: math.unit(154, "feet"),
  45262. weight: math.unit(1e7, "lb"),
  45263. name: "Kaiju",
  45264. image: {
  45265. source: "./media/characters/mochi/kaiju.svg",
  45266. extra: 460/324,
  45267. bottom: 40/500
  45268. }
  45269. },
  45270. head: {
  45271. height: math.unit(1.21, "feet"),
  45272. name: "Head",
  45273. image: {
  45274. source: "./media/characters/mochi/head.svg"
  45275. }
  45276. },
  45277. alternateTail: {
  45278. height: math.unit(2 + 8/12, "feet"),
  45279. weight: math.unit(45, "lb"),
  45280. name: "Alternate Tail",
  45281. image: {
  45282. source: "./media/characters/mochi/alternate-tail.svg",
  45283. extra: 139/76,
  45284. bottom: 45/184
  45285. }
  45286. },
  45287. },
  45288. [
  45289. {
  45290. name: "Micro",
  45291. height: math.unit(2, "inches")
  45292. },
  45293. {
  45294. name: "Normal",
  45295. height: math.unit(2 + 8/12, "feet"),
  45296. default: true
  45297. },
  45298. {
  45299. name: "Macro",
  45300. height: math.unit(106, "feet")
  45301. },
  45302. ]
  45303. ))
  45304. characterMakers.push(() => makeCharacter(
  45305. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45306. {
  45307. front: {
  45308. height: math.unit(5.67, "feet"),
  45309. weight: math.unit(135, "lb"),
  45310. name: "Front",
  45311. image: {
  45312. source: "./media/characters/sarel/front.svg",
  45313. extra: 865/788,
  45314. bottom: 97/962
  45315. }
  45316. },
  45317. back: {
  45318. height: math.unit(5.67, "feet"),
  45319. weight: math.unit(135, "lb"),
  45320. name: "Back",
  45321. image: {
  45322. source: "./media/characters/sarel/back.svg",
  45323. extra: 857/777,
  45324. bottom: 32/889
  45325. }
  45326. },
  45327. chozoan: {
  45328. height: math.unit(5.67, "feet"),
  45329. weight: math.unit(135, "lb"),
  45330. name: "Chozoan",
  45331. image: {
  45332. source: "./media/characters/sarel/chozoan.svg",
  45333. extra: 865/788,
  45334. bottom: 97/962
  45335. }
  45336. },
  45337. current: {
  45338. height: math.unit(5.67, "feet"),
  45339. weight: math.unit(135, "lb"),
  45340. name: "Current",
  45341. image: {
  45342. source: "./media/characters/sarel/current.svg",
  45343. extra: 865/788,
  45344. bottom: 97/962
  45345. }
  45346. },
  45347. head: {
  45348. height: math.unit(1.77, "feet"),
  45349. name: "Head",
  45350. image: {
  45351. source: "./media/characters/sarel/head.svg"
  45352. }
  45353. },
  45354. claws: {
  45355. height: math.unit(1.8, "feet"),
  45356. name: "Claws",
  45357. image: {
  45358. source: "./media/characters/sarel/claws.svg"
  45359. }
  45360. },
  45361. clawsAlt: {
  45362. height: math.unit(1.8, "feet"),
  45363. name: "Claws-alt",
  45364. image: {
  45365. source: "./media/characters/sarel/claws-alt.svg"
  45366. }
  45367. },
  45368. },
  45369. [
  45370. {
  45371. name: "Normal",
  45372. height: math.unit(5.67, "feet"),
  45373. default: true
  45374. },
  45375. ]
  45376. ))
  45377. characterMakers.push(() => makeCharacter(
  45378. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45379. {
  45380. front: {
  45381. height: math.unit(5500, "feet"),
  45382. name: "Front",
  45383. image: {
  45384. source: "./media/characters/alyonia/front.svg",
  45385. extra: 1200/1135,
  45386. bottom: 29/1229
  45387. }
  45388. },
  45389. back: {
  45390. height: math.unit(5500, "feet"),
  45391. name: "Back",
  45392. image: {
  45393. source: "./media/characters/alyonia/back.svg",
  45394. extra: 1205/1138,
  45395. bottom: 10/1215
  45396. }
  45397. },
  45398. },
  45399. [
  45400. {
  45401. name: "Small",
  45402. height: math.unit(10, "feet")
  45403. },
  45404. {
  45405. name: "Macro",
  45406. height: math.unit(500, "feet")
  45407. },
  45408. {
  45409. name: "Mega Macro",
  45410. height: math.unit(5500, "feet"),
  45411. default: true
  45412. },
  45413. {
  45414. name: "Mega Macro+",
  45415. height: math.unit(500000, "feet")
  45416. },
  45417. {
  45418. name: "Giga Macro",
  45419. height: math.unit(3000, "miles")
  45420. },
  45421. {
  45422. name: "Tera Macro",
  45423. height: math.unit(2.8e6, "miles")
  45424. },
  45425. {
  45426. name: "Galactic",
  45427. height: math.unit(120000, "lightyears")
  45428. },
  45429. ]
  45430. ))
  45431. characterMakers.push(() => makeCharacter(
  45432. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45433. {
  45434. werewolf: {
  45435. height: math.unit(8, "feet"),
  45436. weight: math.unit(425, "lb"),
  45437. name: "Werewolf",
  45438. image: {
  45439. source: "./media/characters/autumn/werewolf.svg",
  45440. extra: 2154/2031,
  45441. bottom: 160/2314
  45442. }
  45443. },
  45444. human: {
  45445. height: math.unit(5 + 8/12, "feet"),
  45446. weight: math.unit(150, "lb"),
  45447. name: "Human",
  45448. image: {
  45449. source: "./media/characters/autumn/human.svg",
  45450. extra: 1200/1149,
  45451. bottom: 30/1230
  45452. }
  45453. },
  45454. },
  45455. [
  45456. {
  45457. name: "Normal",
  45458. height: math.unit(8, "feet"),
  45459. default: true
  45460. },
  45461. ]
  45462. ))
  45463. characterMakers.push(() => makeCharacter(
  45464. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45465. {
  45466. front: {
  45467. height: math.unit(8 + 5/12, "feet"),
  45468. weight: math.unit(825, "lb"),
  45469. name: "Front",
  45470. image: {
  45471. source: "./media/characters/cobalt-charizard/front.svg",
  45472. extra: 1268/1155,
  45473. bottom: 122/1390
  45474. }
  45475. },
  45476. side: {
  45477. height: math.unit(8 + 5/12, "feet"),
  45478. weight: math.unit(825, "lb"),
  45479. name: "Side",
  45480. image: {
  45481. source: "./media/characters/cobalt-charizard/side.svg",
  45482. extra: 1348/1257,
  45483. bottom: 58/1406
  45484. }
  45485. },
  45486. gMax: {
  45487. height: math.unit(134 + 11/12, "feet"),
  45488. name: "G-Max",
  45489. image: {
  45490. source: "./media/characters/cobalt-charizard/g-max.svg",
  45491. extra: 1835/1541,
  45492. bottom: 151/1986
  45493. }
  45494. },
  45495. },
  45496. [
  45497. {
  45498. name: "Normal",
  45499. height: math.unit(8 + 5/12, "feet"),
  45500. default: true
  45501. },
  45502. ]
  45503. ))
  45504. characterMakers.push(() => makeCharacter(
  45505. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45506. {
  45507. front: {
  45508. height: math.unit(6 + 3/12, "feet"),
  45509. weight: math.unit(210, "lb"),
  45510. name: "Front",
  45511. image: {
  45512. source: "./media/characters/stella/front.svg",
  45513. extra: 3549/3335,
  45514. bottom: 51/3600
  45515. }
  45516. },
  45517. },
  45518. [
  45519. {
  45520. name: "Normal",
  45521. height: math.unit(6 + 3/12, "feet"),
  45522. default: true
  45523. },
  45524. ]
  45525. ))
  45526. characterMakers.push(() => makeCharacter(
  45527. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45528. {
  45529. front: {
  45530. height: math.unit(5, "feet"),
  45531. weight: math.unit(90, "lb"),
  45532. name: "Front",
  45533. image: {
  45534. source: "./media/characters/riley-bishop/front.svg",
  45535. extra: 1450/1428,
  45536. bottom: 152/1602
  45537. }
  45538. },
  45539. },
  45540. [
  45541. {
  45542. name: "Normal",
  45543. height: math.unit(5, "feet"),
  45544. default: true
  45545. },
  45546. ]
  45547. ))
  45548. characterMakers.push(() => makeCharacter(
  45549. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45550. {
  45551. side: {
  45552. height: math.unit(8 + 2/12, "feet"),
  45553. weight: math.unit(500, "kg"),
  45554. name: "Side",
  45555. image: {
  45556. source: "./media/characters/theo-arcanine/side.svg",
  45557. extra: 1342/1074,
  45558. bottom: 111/1453
  45559. }
  45560. },
  45561. },
  45562. [
  45563. {
  45564. name: "Normal",
  45565. height: math.unit(8 + 2/12, "feet"),
  45566. default: true
  45567. },
  45568. ]
  45569. ))
  45570. characterMakers.push(() => makeCharacter(
  45571. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45572. {
  45573. front: {
  45574. height: math.unit(4, "feet"),
  45575. name: "Front",
  45576. image: {
  45577. source: "./media/characters/kali/front.svg",
  45578. extra: 1074/867,
  45579. bottom: 34/1108
  45580. }
  45581. },
  45582. back: {
  45583. height: math.unit(4, "feet"),
  45584. name: "Back",
  45585. image: {
  45586. source: "./media/characters/kali/back.svg",
  45587. extra: 1068/863,
  45588. bottom: 26/1094
  45589. }
  45590. },
  45591. frontAlt: {
  45592. height: math.unit(4, "feet"),
  45593. name: "Front (Alt)",
  45594. image: {
  45595. source: "./media/characters/kali/front-alt.svg",
  45596. extra: 1921/1357,
  45597. bottom: 70/1991
  45598. }
  45599. },
  45600. },
  45601. [
  45602. {
  45603. name: "Normal",
  45604. height: math.unit(4, "feet"),
  45605. default: true
  45606. },
  45607. {
  45608. name: "Big'vali",
  45609. height: math.unit(11, "feet")
  45610. },
  45611. {
  45612. name: "Macro",
  45613. height: math.unit(32, "meters")
  45614. },
  45615. {
  45616. name: "Macro+",
  45617. height: math.unit(150, "meters")
  45618. },
  45619. {
  45620. name: "Megamacro",
  45621. height: math.unit(7500, "meters")
  45622. },
  45623. {
  45624. name: "Megamacro+",
  45625. height: math.unit(80, "kilometers")
  45626. },
  45627. ]
  45628. ))
  45629. characterMakers.push(() => makeCharacter(
  45630. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45631. {
  45632. side: {
  45633. height: math.unit(5 + 11/12, "feet"),
  45634. weight: math.unit(236, "lb"),
  45635. name: "Side",
  45636. image: {
  45637. source: "./media/characters/gapp/side.svg",
  45638. extra: 775/340,
  45639. bottom: 58/833
  45640. }
  45641. },
  45642. mouth: {
  45643. height: math.unit(2.98, "feet"),
  45644. name: "Mouth",
  45645. image: {
  45646. source: "./media/characters/gapp/mouth.svg"
  45647. }
  45648. },
  45649. },
  45650. [
  45651. {
  45652. name: "Normal",
  45653. height: math.unit(5 + 1/12, "feet"),
  45654. default: true
  45655. },
  45656. ]
  45657. ))
  45658. characterMakers.push(() => makeCharacter(
  45659. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45660. {
  45661. front: {
  45662. height: math.unit(6, "feet"),
  45663. name: "Front",
  45664. image: {
  45665. source: "./media/characters/persephone/front.svg",
  45666. extra: 1895/1717,
  45667. bottom: 96/1991
  45668. }
  45669. },
  45670. back: {
  45671. height: math.unit(6, "feet"),
  45672. name: "Back",
  45673. image: {
  45674. source: "./media/characters/persephone/back.svg",
  45675. extra: 1868/1679,
  45676. bottom: 26/1894
  45677. }
  45678. },
  45679. casual: {
  45680. height: math.unit(6, "feet"),
  45681. name: "Casual",
  45682. image: {
  45683. source: "./media/characters/persephone/casual.svg",
  45684. extra: 1713/1541,
  45685. bottom: 76/1789
  45686. }
  45687. },
  45688. gaming: {
  45689. height: math.unit(3.55, "feet"),
  45690. name: "Gaming",
  45691. image: {
  45692. source: "./media/characters/persephone/gaming.svg",
  45693. extra: 1242/1038,
  45694. bottom: 66/1308
  45695. }
  45696. },
  45697. head: {
  45698. height: math.unit(2.15, "feet"),
  45699. name: "😐",
  45700. image: {
  45701. source: "./media/characters/persephone/head.svg"
  45702. }
  45703. },
  45704. talking: {
  45705. height: math.unit(2.5, "feet"),
  45706. name: "💬",
  45707. image: {
  45708. source: "./media/characters/persephone/talking.svg"
  45709. }
  45710. },
  45711. hmm: {
  45712. height: math.unit(2.28, "feet"),
  45713. name: "🤨",
  45714. image: {
  45715. source: "./media/characters/persephone/hmm.svg"
  45716. }
  45717. },
  45718. },
  45719. [
  45720. {
  45721. name: "Human Size",
  45722. height: math.unit(6, "feet")
  45723. },
  45724. {
  45725. name: "Big Steppy",
  45726. height: math.unit(600, "meters"),
  45727. default: true
  45728. },
  45729. {
  45730. name: "Galaxy Brain",
  45731. height: math.unit(1, "zettameter")
  45732. },
  45733. ]
  45734. ))
  45735. characterMakers.push(() => makeCharacter(
  45736. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45737. {
  45738. front: {
  45739. height: math.unit(1.85, "meters"),
  45740. name: "Front",
  45741. image: {
  45742. source: "./media/characters/riley-foxthing/front.svg",
  45743. extra: 1495/1354,
  45744. bottom: 122/1617
  45745. }
  45746. },
  45747. frontAlt: {
  45748. height: math.unit(1.85, "meters"),
  45749. name: "Front (Alt)",
  45750. image: {
  45751. source: "./media/characters/riley-foxthing/front-alt.svg",
  45752. extra: 1572/1389,
  45753. bottom: 116/1688
  45754. }
  45755. },
  45756. },
  45757. [
  45758. {
  45759. name: "Normal Sized",
  45760. height: math.unit(1.85, "meters"),
  45761. default: true
  45762. },
  45763. {
  45764. name: "Quite Sizable",
  45765. height: math.unit(5, "meters")
  45766. },
  45767. {
  45768. name: "Rather Large",
  45769. height: math.unit(20, "meters")
  45770. },
  45771. {
  45772. name: "Macro",
  45773. height: math.unit(450, "meters")
  45774. },
  45775. {
  45776. name: "Giga",
  45777. height: math.unit(5, "km")
  45778. },
  45779. ]
  45780. ))
  45781. characterMakers.push(() => makeCharacter(
  45782. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45783. {
  45784. front: {
  45785. height: math.unit(6, "feet"),
  45786. weight: math.unit(200, "lb"),
  45787. name: "Front",
  45788. image: {
  45789. source: "./media/characters/blizzard/front.svg",
  45790. extra: 1136/990,
  45791. bottom: 136/1272
  45792. }
  45793. },
  45794. back: {
  45795. height: math.unit(6, "feet"),
  45796. weight: math.unit(200, "lb"),
  45797. name: "Back",
  45798. image: {
  45799. source: "./media/characters/blizzard/back.svg",
  45800. extra: 1175/1034,
  45801. bottom: 97/1272
  45802. }
  45803. },
  45804. sitting: {
  45805. height: math.unit(3.725, "feet"),
  45806. weight: math.unit(200, "lb"),
  45807. name: "Sitting",
  45808. image: {
  45809. source: "./media/characters/blizzard/sitting.svg",
  45810. extra: 581/485,
  45811. bottom: 90/671
  45812. }
  45813. },
  45814. frontWizard: {
  45815. height: math.unit(7.9, "feet"),
  45816. weight: math.unit(200, "lb"),
  45817. name: "Front (Wizard)",
  45818. image: {
  45819. source: "./media/characters/blizzard/front-wizard.svg"
  45820. }
  45821. },
  45822. backWizard: {
  45823. height: math.unit(7.9, "feet"),
  45824. weight: math.unit(200, "lb"),
  45825. name: "Back (Wizard)",
  45826. image: {
  45827. source: "./media/characters/blizzard/back-wizard.svg"
  45828. }
  45829. },
  45830. frontNsfw: {
  45831. height: math.unit(6, "feet"),
  45832. weight: math.unit(200, "lb"),
  45833. name: "Front (NSFW)",
  45834. image: {
  45835. source: "./media/characters/blizzard/front-nsfw.svg",
  45836. extra: 1136/990,
  45837. bottom: 136/1272
  45838. }
  45839. },
  45840. backNsfw: {
  45841. height: math.unit(6, "feet"),
  45842. weight: math.unit(200, "lb"),
  45843. name: "Back (NSFW)",
  45844. image: {
  45845. source: "./media/characters/blizzard/back-nsfw.svg",
  45846. extra: 1175/1034,
  45847. bottom: 97/1272
  45848. }
  45849. },
  45850. sittingNsfw: {
  45851. height: math.unit(3.725, "feet"),
  45852. weight: math.unit(200, "lb"),
  45853. name: "Sitting (NSFW)",
  45854. image: {
  45855. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45856. extra: 581/485,
  45857. bottom: 90/671
  45858. }
  45859. },
  45860. wizardFrontNsfw: {
  45861. height: math.unit(7.9, "feet"),
  45862. weight: math.unit(200, "lb"),
  45863. name: "Wizard (Front, NSFW)",
  45864. image: {
  45865. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45866. }
  45867. },
  45868. },
  45869. [
  45870. {
  45871. name: "Normal",
  45872. height: math.unit(6, "feet"),
  45873. default: true
  45874. },
  45875. ]
  45876. ))
  45877. characterMakers.push(() => makeCharacter(
  45878. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45879. {
  45880. front: {
  45881. height: math.unit(5 + 2/12, "feet"),
  45882. name: "Front",
  45883. image: {
  45884. source: "./media/characters/lumi/front.svg",
  45885. extra: 1328/1268,
  45886. bottom: 103/1431
  45887. }
  45888. },
  45889. back: {
  45890. height: math.unit(5 + 2/12, "feet"),
  45891. name: "Back",
  45892. image: {
  45893. source: "./media/characters/lumi/back.svg",
  45894. extra: 1381/1327,
  45895. bottom: 43/1424
  45896. }
  45897. },
  45898. },
  45899. [
  45900. {
  45901. name: "Normal",
  45902. height: math.unit(5 + 2/12, "feet"),
  45903. default: true
  45904. },
  45905. ]
  45906. ))
  45907. characterMakers.push(() => makeCharacter(
  45908. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  45909. {
  45910. front: {
  45911. height: math.unit(5 + 9/12, "feet"),
  45912. name: "Front",
  45913. image: {
  45914. source: "./media/characters/aliya-cotton/front.svg",
  45915. extra: 577/564,
  45916. bottom: 29/606
  45917. }
  45918. },
  45919. },
  45920. [
  45921. {
  45922. name: "Normal",
  45923. height: math.unit(5 + 9/12, "feet"),
  45924. default: true
  45925. },
  45926. ]
  45927. ))
  45928. characterMakers.push(() => makeCharacter(
  45929. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  45930. {
  45931. front: {
  45932. height: math.unit(2.7, "meters"),
  45933. weight: math.unit(25000, "lb"),
  45934. name: "Front",
  45935. image: {
  45936. source: "./media/characters/noah-luxray/front.svg",
  45937. extra: 1644/825,
  45938. bottom: 339/1983
  45939. }
  45940. },
  45941. side: {
  45942. height: math.unit(2.97, "meters"),
  45943. weight: math.unit(25000, "lb"),
  45944. name: "Side",
  45945. image: {
  45946. source: "./media/characters/noah-luxray/side.svg",
  45947. extra: 1319/650,
  45948. bottom: 163/1482
  45949. }
  45950. },
  45951. dick: {
  45952. height: math.unit(7.4, "feet"),
  45953. weight: math.unit(2500, "lb"),
  45954. name: "Dick",
  45955. image: {
  45956. source: "./media/characters/noah-luxray/dick.svg"
  45957. }
  45958. },
  45959. dickAlt: {
  45960. height: math.unit(10.83, "feet"),
  45961. weight: math.unit(2500, "lb"),
  45962. name: "Dick-alt",
  45963. image: {
  45964. source: "./media/characters/noah-luxray/dick-alt.svg"
  45965. }
  45966. },
  45967. },
  45968. [
  45969. {
  45970. name: "BIG",
  45971. height: math.unit(2.7, "meters"),
  45972. default: true
  45973. },
  45974. ]
  45975. ))
  45976. characterMakers.push(() => makeCharacter(
  45977. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  45978. {
  45979. standing: {
  45980. height: math.unit(183, "cm"),
  45981. weight: math.unit(68, "kg"),
  45982. name: "Standing",
  45983. image: {
  45984. source: "./media/characters/arion/standing.svg",
  45985. extra: 1869/1807,
  45986. bottom: 93/1962
  45987. }
  45988. },
  45989. reclining: {
  45990. height: math.unit(70.5, "cm"),
  45991. weight: math.unit(68, "lb"),
  45992. name: "Reclining",
  45993. image: {
  45994. source: "./media/characters/arion/reclining.svg",
  45995. extra: 937/870,
  45996. bottom: 63/1000
  45997. }
  45998. },
  45999. },
  46000. [
  46001. {
  46002. name: "Colossus Size, Low",
  46003. height: math.unit(33, "meters"),
  46004. default: true
  46005. },
  46006. {
  46007. name: "Colossus Size, Mid",
  46008. height: math.unit(52, "meters")
  46009. },
  46010. {
  46011. name: "Colossus Size, High",
  46012. height: math.unit(60, "meters")
  46013. },
  46014. {
  46015. name: "Titan Size, Low",
  46016. height: math.unit(91, "meters"),
  46017. },
  46018. {
  46019. name: "Titan Size, Mid",
  46020. height: math.unit(122, "meters")
  46021. },
  46022. {
  46023. name: "Titan Size, High",
  46024. height: math.unit(162, "meters")
  46025. },
  46026. ]
  46027. ))
  46028. characterMakers.push(() => makeCharacter(
  46029. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46030. {
  46031. front: {
  46032. height: math.unit(53, "meters"),
  46033. name: "Front",
  46034. image: {
  46035. source: "./media/characters/stellar-marbey/front.svg",
  46036. extra: 1913/1805,
  46037. bottom: 92/2005
  46038. }
  46039. },
  46040. back: {
  46041. height: math.unit(53, "meters"),
  46042. name: "Back",
  46043. image: {
  46044. source: "./media/characters/stellar-marbey/back.svg",
  46045. extra: 1960/1851,
  46046. bottom: 28/1988
  46047. }
  46048. },
  46049. mouth: {
  46050. height: math.unit(3.5, "meters"),
  46051. name: "Mouth",
  46052. image: {
  46053. source: "./media/characters/stellar-marbey/mouth.svg"
  46054. }
  46055. },
  46056. },
  46057. [
  46058. {
  46059. name: "Macro",
  46060. height: math.unit(53, "meters"),
  46061. default: true
  46062. },
  46063. ]
  46064. ))
  46065. characterMakers.push(() => makeCharacter(
  46066. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46067. {
  46068. front: {
  46069. height: math.unit(8 + 1/12, "feet"),
  46070. weight: math.unit(233, "lb"),
  46071. name: "Front",
  46072. image: {
  46073. source: "./media/characters/matsu/front.svg",
  46074. extra: 832/772,
  46075. bottom: 40/872
  46076. }
  46077. },
  46078. back: {
  46079. height: math.unit(8 + 1/12, "feet"),
  46080. weight: math.unit(233, "lb"),
  46081. name: "Back",
  46082. image: {
  46083. source: "./media/characters/matsu/back.svg",
  46084. extra: 839/780,
  46085. bottom: 47/886
  46086. }
  46087. },
  46088. },
  46089. [
  46090. {
  46091. name: "Normal",
  46092. height: math.unit(8 + 1/12, "feet"),
  46093. default: true
  46094. },
  46095. ]
  46096. ))
  46097. characterMakers.push(() => makeCharacter(
  46098. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46099. {
  46100. front: {
  46101. height: math.unit(4, "feet"),
  46102. weight: math.unit(148, "lb"),
  46103. name: "Front",
  46104. image: {
  46105. source: "./media/characters/thiz/front.svg",
  46106. extra: 1913/1748,
  46107. bottom: 62/1975
  46108. }
  46109. },
  46110. },
  46111. [
  46112. {
  46113. name: "Normal",
  46114. height: math.unit(4, "feet"),
  46115. default: true
  46116. },
  46117. ]
  46118. ))
  46119. characterMakers.push(() => makeCharacter(
  46120. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46121. {
  46122. front: {
  46123. height: math.unit(7 + 6/12, "feet"),
  46124. weight: math.unit(267, "lb"),
  46125. name: "Front",
  46126. image: {
  46127. source: "./media/characters/marcel/front.svg",
  46128. extra: 1221/1096,
  46129. bottom: 76/1297
  46130. }
  46131. },
  46132. },
  46133. [
  46134. {
  46135. name: "Normal",
  46136. height: math.unit(7 + 6/12, "feet"),
  46137. default: true
  46138. },
  46139. ]
  46140. ))
  46141. characterMakers.push(() => makeCharacter(
  46142. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46143. {
  46144. side: {
  46145. height: math.unit(42, "meters"),
  46146. name: "Side",
  46147. image: {
  46148. source: "./media/characters/flake/side.svg",
  46149. extra: 1525/1306,
  46150. bottom: 209/1734
  46151. }
  46152. },
  46153. },
  46154. [
  46155. {
  46156. name: "Normal",
  46157. height: math.unit(42, "meters"),
  46158. default: true
  46159. },
  46160. ]
  46161. ))
  46162. characterMakers.push(() => makeCharacter(
  46163. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46164. {
  46165. dressed: {
  46166. height: math.unit(6 + 4/12, "feet"),
  46167. weight: math.unit(520, "lb"),
  46168. name: "Dressed",
  46169. image: {
  46170. source: "./media/characters/someonne/dressed.svg",
  46171. extra: 1020/1010,
  46172. bottom: 178/1198
  46173. }
  46174. },
  46175. undressed: {
  46176. height: math.unit(6 + 4/12, "feet"),
  46177. weight: math.unit(520, "lb"),
  46178. name: "Undressed",
  46179. image: {
  46180. source: "./media/characters/someonne/undressed.svg",
  46181. extra: 1019/1014,
  46182. bottom: 169/1188
  46183. }
  46184. },
  46185. },
  46186. [
  46187. {
  46188. name: "Normal",
  46189. height: math.unit(6 + 4/12, "feet"),
  46190. default: true
  46191. },
  46192. ]
  46193. ))
  46194. characterMakers.push(() => makeCharacter(
  46195. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46196. {
  46197. front: {
  46198. height: math.unit(3, "feet"),
  46199. weight: math.unit(30, "lb"),
  46200. name: "Front",
  46201. image: {
  46202. source: "./media/characters/till/front.svg",
  46203. extra: 892/823,
  46204. bottom: 55/947
  46205. }
  46206. },
  46207. },
  46208. [
  46209. {
  46210. name: "Normal",
  46211. height: math.unit(3, "feet"),
  46212. default: true
  46213. },
  46214. ]
  46215. ))
  46216. characterMakers.push(() => makeCharacter(
  46217. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46218. {
  46219. front: {
  46220. height: math.unit(9 + 8/12, "feet"),
  46221. weight: math.unit(800, "lb"),
  46222. name: "Front",
  46223. image: {
  46224. source: "./media/characters/sydney-heki/front.svg",
  46225. extra: 1360/1300,
  46226. bottom: 22/1382
  46227. }
  46228. },
  46229. back: {
  46230. height: math.unit(9 + 8/12, "feet"),
  46231. weight: math.unit(800, "lb"),
  46232. name: "Back",
  46233. image: {
  46234. source: "./media/characters/sydney-heki/back.svg",
  46235. extra: 1356/1293,
  46236. bottom: 12/1368
  46237. }
  46238. },
  46239. frontDressed: {
  46240. height: math.unit(9 + 8/12, "feet"),
  46241. weight: math.unit(800, "lb"),
  46242. name: "Front-dressed",
  46243. image: {
  46244. source: "./media/characters/sydney-heki/front-dressed.svg",
  46245. extra: 1360/1300,
  46246. bottom: 22/1382
  46247. }
  46248. },
  46249. },
  46250. [
  46251. {
  46252. name: "Normal",
  46253. height: math.unit(9 + 8/12, "feet"),
  46254. default: true
  46255. },
  46256. {
  46257. name: "Macro",
  46258. height: math.unit(500, "feet")
  46259. },
  46260. {
  46261. name: "Megamacro",
  46262. height: math.unit(3.6, "miles")
  46263. },
  46264. ]
  46265. ))
  46266. characterMakers.push(() => makeCharacter(
  46267. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46268. {
  46269. front: {
  46270. height: math.unit(200, "cm"),
  46271. weight: math.unit(250, "lb"),
  46272. name: "Front",
  46273. image: {
  46274. source: "./media/characters/fowler-karlsson/front.svg",
  46275. extra: 897/845,
  46276. bottom: 123/1020
  46277. }
  46278. },
  46279. back: {
  46280. height: math.unit(200, "cm"),
  46281. weight: math.unit(250, "lb"),
  46282. name: "Back",
  46283. image: {
  46284. source: "./media/characters/fowler-karlsson/back.svg",
  46285. extra: 999/944,
  46286. bottom: 26/1025
  46287. }
  46288. },
  46289. dick: {
  46290. height: math.unit(1.92, "feet"),
  46291. weight: math.unit(150, "lb"),
  46292. name: "Dick",
  46293. image: {
  46294. source: "./media/characters/fowler-karlsson/dick.svg"
  46295. }
  46296. },
  46297. },
  46298. [
  46299. {
  46300. name: "Normal",
  46301. height: math.unit(200, "cm"),
  46302. default: true
  46303. },
  46304. {
  46305. name: "Smaller Macro",
  46306. height: math.unit(90, "m")
  46307. },
  46308. {
  46309. name: "Macro",
  46310. height: math.unit(150, "m")
  46311. },
  46312. {
  46313. name: "Bigger Macro",
  46314. height: math.unit(300, "m")
  46315. },
  46316. ]
  46317. ))
  46318. characterMakers.push(() => makeCharacter(
  46319. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46320. {
  46321. side: {
  46322. height: math.unit(8 + 2/12, "feet"),
  46323. weight: math.unit(1, "tonne"),
  46324. name: "Side",
  46325. image: {
  46326. source: "./media/characters/rylide/side.svg",
  46327. extra: 1318/1034,
  46328. bottom: 106/1424
  46329. }
  46330. },
  46331. sitting: {
  46332. height: math.unit(303, "cm"),
  46333. weight: math.unit(1, "tonne"),
  46334. name: "Sitting",
  46335. image: {
  46336. source: "./media/characters/rylide/sitting.svg",
  46337. extra: 1303/1103,
  46338. bottom: 36/1339
  46339. }
  46340. },
  46341. },
  46342. [
  46343. {
  46344. name: "Normal",
  46345. height: math.unit(8 + 2/12, "feet"),
  46346. default: true
  46347. },
  46348. ]
  46349. ))
  46350. characterMakers.push(() => makeCharacter(
  46351. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46352. {
  46353. front: {
  46354. height: math.unit(5 + 10/12, "feet"),
  46355. weight: math.unit(160, "lb"),
  46356. name: "Front",
  46357. image: {
  46358. source: "./media/characters/pudask/front.svg",
  46359. extra: 1616/1590,
  46360. bottom: 161/1777
  46361. }
  46362. },
  46363. },
  46364. [
  46365. {
  46366. name: "Ferret Height",
  46367. height: math.unit(2 + 5/12, "feet")
  46368. },
  46369. {
  46370. name: "Canon Height",
  46371. height: math.unit(5 + 10/12, "feet"),
  46372. default: true
  46373. },
  46374. ]
  46375. ))
  46376. characterMakers.push(() => makeCharacter(
  46377. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46378. {
  46379. front: {
  46380. height: math.unit(3 + 6/12, "feet"),
  46381. weight: math.unit(60, "lb"),
  46382. name: "Front",
  46383. image: {
  46384. source: "./media/characters/ramita/front.svg",
  46385. extra: 1402/1232,
  46386. bottom: 62/1464
  46387. }
  46388. },
  46389. dressed: {
  46390. height: math.unit(3 + 6/12, "feet"),
  46391. weight: math.unit(60, "lb"),
  46392. name: "Dressed",
  46393. image: {
  46394. source: "./media/characters/ramita/dressed.svg",
  46395. extra: 1534/1249,
  46396. bottom: 50/1584
  46397. }
  46398. },
  46399. },
  46400. [
  46401. {
  46402. name: "Normal",
  46403. height: math.unit(3 + 6/12, "feet"),
  46404. default: true
  46405. },
  46406. ]
  46407. ))
  46408. characterMakers.push(() => makeCharacter(
  46409. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46410. {
  46411. front: {
  46412. height: math.unit(8, "feet"),
  46413. name: "Front",
  46414. image: {
  46415. source: "./media/characters/ark/front.svg",
  46416. extra: 772/693,
  46417. bottom: 45/817
  46418. }
  46419. },
  46420. },
  46421. [
  46422. {
  46423. name: "Normal",
  46424. height: math.unit(8, "feet"),
  46425. default: true
  46426. },
  46427. ]
  46428. ))
  46429. characterMakers.push(() => makeCharacter(
  46430. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46431. {
  46432. front: {
  46433. height: math.unit(6, "feet"),
  46434. weight: math.unit(250, "lb"),
  46435. volume: math.unit(5/8, "gallons"),
  46436. name: "Front",
  46437. image: {
  46438. source: "./media/characters/ludwig-horn/front.svg",
  46439. extra: 1782/1635,
  46440. bottom: 96/1878
  46441. }
  46442. },
  46443. back: {
  46444. height: math.unit(6, "feet"),
  46445. weight: math.unit(250, "lb"),
  46446. volume: math.unit(5/8, "gallons"),
  46447. name: "Back",
  46448. image: {
  46449. source: "./media/characters/ludwig-horn/back.svg",
  46450. extra: 1874/1729,
  46451. bottom: 27/1901
  46452. }
  46453. },
  46454. dick: {
  46455. height: math.unit(1.05, "feet"),
  46456. weight: math.unit(15, "lb"),
  46457. volume: math.unit(5/8, "gallons"),
  46458. name: "Dick",
  46459. image: {
  46460. source: "./media/characters/ludwig-horn/dick.svg"
  46461. }
  46462. },
  46463. },
  46464. [
  46465. {
  46466. name: "Small",
  46467. height: math.unit(6, "feet")
  46468. },
  46469. {
  46470. name: "Typical",
  46471. height: math.unit(12, "feet"),
  46472. default: true
  46473. },
  46474. {
  46475. name: "Building",
  46476. height: math.unit(80, "feet")
  46477. },
  46478. {
  46479. name: "Town",
  46480. height: math.unit(800, "feet")
  46481. },
  46482. {
  46483. name: "Kingdom",
  46484. height: math.unit(80000, "feet")
  46485. },
  46486. {
  46487. name: "Planet",
  46488. height: math.unit(8000000, "feet")
  46489. },
  46490. {
  46491. name: "Universe",
  46492. height: math.unit(8000000000, "feet")
  46493. },
  46494. {
  46495. name: "Transcended",
  46496. height: math.unit(8e27, "feet")
  46497. },
  46498. ]
  46499. ))
  46500. characterMakers.push(() => makeCharacter(
  46501. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46502. {
  46503. front: {
  46504. height: math.unit(5, "feet"),
  46505. weight: math.unit(50, "kg"),
  46506. name: "Front",
  46507. image: {
  46508. source: "./media/characters/biot-avery/front.svg",
  46509. extra: 1295/1232,
  46510. bottom: 86/1381
  46511. }
  46512. },
  46513. },
  46514. [
  46515. {
  46516. name: "Normal",
  46517. height: math.unit(5, "feet"),
  46518. default: true
  46519. },
  46520. ]
  46521. ))
  46522. characterMakers.push(() => makeCharacter(
  46523. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46524. {
  46525. front: {
  46526. height: math.unit(6, "feet"),
  46527. name: "Front",
  46528. image: {
  46529. source: "./media/characters/kitsune-kiro/front.svg",
  46530. extra: 1270/1158,
  46531. bottom: 42/1312
  46532. }
  46533. },
  46534. frontAlt: {
  46535. height: math.unit(6, "feet"),
  46536. name: "Front-alt",
  46537. image: {
  46538. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46539. extra: 1130/1081,
  46540. bottom: 36/1166
  46541. }
  46542. },
  46543. },
  46544. [
  46545. {
  46546. name: "Smol",
  46547. height: math.unit(3, "feet")
  46548. },
  46549. {
  46550. name: "Normal",
  46551. height: math.unit(6, "feet"),
  46552. default: true
  46553. },
  46554. ]
  46555. ))
  46556. characterMakers.push(() => makeCharacter(
  46557. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46558. {
  46559. front: {
  46560. height: math.unit(6, "feet"),
  46561. weight: math.unit(125, "lb"),
  46562. name: "Front",
  46563. image: {
  46564. source: "./media/characters/jack-thatcher/front.svg",
  46565. extra: 1474/1370,
  46566. bottom: 26/1500
  46567. }
  46568. },
  46569. back: {
  46570. height: math.unit(6, "feet"),
  46571. weight: math.unit(125, "lb"),
  46572. name: "Back",
  46573. image: {
  46574. source: "./media/characters/jack-thatcher/back.svg",
  46575. extra: 1489/1384,
  46576. bottom: 18/1507
  46577. }
  46578. },
  46579. },
  46580. [
  46581. {
  46582. name: "Normal",
  46583. height: math.unit(6, "feet"),
  46584. default: true
  46585. },
  46586. {
  46587. name: "Macro",
  46588. height: math.unit(75, "feet")
  46589. },
  46590. {
  46591. name: "Macro-er",
  46592. height: math.unit(250, "feet")
  46593. },
  46594. ]
  46595. ))
  46596. characterMakers.push(() => makeCharacter(
  46597. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46598. {
  46599. front: {
  46600. height: math.unit(7, "feet"),
  46601. weight: math.unit(110, "kg"),
  46602. name: "Front",
  46603. image: {
  46604. source: "./media/characters/max-hyper/front.svg",
  46605. extra: 1969/1881,
  46606. bottom: 49/2018
  46607. }
  46608. },
  46609. },
  46610. [
  46611. {
  46612. name: "Normal",
  46613. height: math.unit(7, "feet"),
  46614. default: true
  46615. },
  46616. ]
  46617. ))
  46618. characterMakers.push(() => makeCharacter(
  46619. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46620. {
  46621. front: {
  46622. height: math.unit(5 + 5/12, "feet"),
  46623. weight: math.unit(160, "lb"),
  46624. name: "Front",
  46625. image: {
  46626. source: "./media/characters/spook/front.svg",
  46627. extra: 794/791,
  46628. bottom: 54/848
  46629. }
  46630. },
  46631. back: {
  46632. height: math.unit(5 + 5/12, "feet"),
  46633. weight: math.unit(160, "lb"),
  46634. name: "Back",
  46635. image: {
  46636. source: "./media/characters/spook/back.svg",
  46637. extra: 812/798,
  46638. bottom: 32/844
  46639. }
  46640. },
  46641. },
  46642. [
  46643. {
  46644. name: "Normal",
  46645. height: math.unit(5 + 5/12, "feet"),
  46646. default: true
  46647. },
  46648. ]
  46649. ))
  46650. characterMakers.push(() => makeCharacter(
  46651. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46652. {
  46653. front: {
  46654. height: math.unit(18, "feet"),
  46655. name: "Front",
  46656. image: {
  46657. source: "./media/characters/xeaduulix/front.svg",
  46658. extra: 1380/1166,
  46659. bottom: 110/1490
  46660. }
  46661. },
  46662. back: {
  46663. height: math.unit(18, "feet"),
  46664. name: "Back",
  46665. image: {
  46666. source: "./media/characters/xeaduulix/back.svg",
  46667. extra: 1592/1170,
  46668. bottom: 128/1720
  46669. }
  46670. },
  46671. frontNsfw: {
  46672. height: math.unit(18, "feet"),
  46673. name: "Front (NSFW)",
  46674. image: {
  46675. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46676. extra: 1380/1166,
  46677. bottom: 110/1490
  46678. }
  46679. },
  46680. backNsfw: {
  46681. height: math.unit(18, "feet"),
  46682. name: "Back (NSFW)",
  46683. image: {
  46684. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46685. extra: 1592/1170,
  46686. bottom: 128/1720
  46687. }
  46688. },
  46689. },
  46690. [
  46691. {
  46692. name: "Normal",
  46693. height: math.unit(18, "feet"),
  46694. default: true
  46695. },
  46696. ]
  46697. ))
  46698. characterMakers.push(() => makeCharacter(
  46699. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46700. {
  46701. spreadWings: {
  46702. height: math.unit(20, "feet"),
  46703. name: "Spread Wings",
  46704. image: {
  46705. source: "./media/characters/fledge/spread-wings.svg",
  46706. extra: 693/635,
  46707. bottom: 26/719
  46708. }
  46709. },
  46710. front: {
  46711. height: math.unit(20, "feet"),
  46712. name: "Front",
  46713. image: {
  46714. source: "./media/characters/fledge/front.svg",
  46715. extra: 684/637,
  46716. bottom: 18/702
  46717. }
  46718. },
  46719. frontAlt: {
  46720. height: math.unit(20, "feet"),
  46721. name: "Front (Alt)",
  46722. image: {
  46723. source: "./media/characters/fledge/front-alt.svg",
  46724. extra: 708/664,
  46725. bottom: 13/721
  46726. }
  46727. },
  46728. back: {
  46729. height: math.unit(20, "feet"),
  46730. name: "Back",
  46731. image: {
  46732. source: "./media/characters/fledge/back.svg",
  46733. extra: 718/634,
  46734. bottom: 22/740
  46735. }
  46736. },
  46737. head: {
  46738. height: math.unit(5.55, "feet"),
  46739. name: "Head",
  46740. image: {
  46741. source: "./media/characters/fledge/head.svg"
  46742. }
  46743. },
  46744. headAlt: {
  46745. height: math.unit(5.1, "feet"),
  46746. name: "Head (Alt)",
  46747. image: {
  46748. source: "./media/characters/fledge/head-alt.svg"
  46749. }
  46750. },
  46751. },
  46752. [
  46753. {
  46754. name: "Small",
  46755. height: math.unit(6 + 2/12, "feet")
  46756. },
  46757. {
  46758. name: "Big",
  46759. height: math.unit(20, "feet"),
  46760. default: true
  46761. },
  46762. {
  46763. name: "Giant",
  46764. height: math.unit(100, "feet")
  46765. },
  46766. {
  46767. name: "Macro",
  46768. height: math.unit(200, "feet")
  46769. },
  46770. ]
  46771. ))
  46772. characterMakers.push(() => makeCharacter(
  46773. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46774. {
  46775. front: {
  46776. height: math.unit(1, "meter"),
  46777. name: "Front",
  46778. image: {
  46779. source: "./media/characters/atlas-morenai/front.svg",
  46780. extra: 1275/1043,
  46781. bottom: 19/1294
  46782. }
  46783. },
  46784. back: {
  46785. height: math.unit(1, "meter"),
  46786. name: "Back",
  46787. image: {
  46788. source: "./media/characters/atlas-morenai/back.svg",
  46789. extra: 1141/1001,
  46790. bottom: 25/1166
  46791. }
  46792. },
  46793. },
  46794. [
  46795. {
  46796. name: "Normal",
  46797. height: math.unit(1, "meter"),
  46798. default: true
  46799. },
  46800. {
  46801. name: "Magic-Infused",
  46802. height: math.unit(5, "meters")
  46803. },
  46804. ]
  46805. ))
  46806. characterMakers.push(() => makeCharacter(
  46807. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46808. {
  46809. front: {
  46810. height: math.unit(5, "meters"),
  46811. name: "Front",
  46812. image: {
  46813. source: "./media/characters/cintia/front.svg",
  46814. extra: 1312/1228,
  46815. bottom: 38/1350
  46816. }
  46817. },
  46818. back: {
  46819. height: math.unit(5, "meters"),
  46820. name: "Back",
  46821. image: {
  46822. source: "./media/characters/cintia/back.svg",
  46823. extra: 1260/1166,
  46824. bottom: 98/1358
  46825. }
  46826. },
  46827. frontDick: {
  46828. height: math.unit(5, "meters"),
  46829. name: "Front (Dick)",
  46830. image: {
  46831. source: "./media/characters/cintia/front-dick.svg",
  46832. extra: 1312/1228,
  46833. bottom: 38/1350
  46834. }
  46835. },
  46836. backDick: {
  46837. height: math.unit(5, "meters"),
  46838. name: "Back (Dick)",
  46839. image: {
  46840. source: "./media/characters/cintia/back-dick.svg",
  46841. extra: 1260/1166,
  46842. bottom: 98/1358
  46843. }
  46844. },
  46845. bust: {
  46846. height: math.unit(1.97, "meters"),
  46847. name: "Bust",
  46848. image: {
  46849. source: "./media/characters/cintia/bust.svg",
  46850. extra: 617/565,
  46851. bottom: 0/617
  46852. }
  46853. },
  46854. },
  46855. [
  46856. {
  46857. name: "Normal",
  46858. height: math.unit(5, "meters"),
  46859. default: true
  46860. },
  46861. ]
  46862. ))
  46863. characterMakers.push(() => makeCharacter(
  46864. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46865. {
  46866. side: {
  46867. height: math.unit(100, "feet"),
  46868. name: "Side",
  46869. image: {
  46870. source: "./media/characters/denora/side.svg",
  46871. extra: 875/803,
  46872. bottom: 9/884
  46873. }
  46874. },
  46875. },
  46876. [
  46877. {
  46878. name: "Standard",
  46879. height: math.unit(100, "feet"),
  46880. default: true
  46881. },
  46882. {
  46883. name: "Grand",
  46884. height: math.unit(1000, "feet")
  46885. },
  46886. {
  46887. name: "Conquering",
  46888. height: math.unit(10000, "feet")
  46889. },
  46890. ]
  46891. ))
  46892. characterMakers.push(() => makeCharacter(
  46893. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46894. {
  46895. dressed: {
  46896. height: math.unit(8 + 5/12, "feet"),
  46897. weight: math.unit(700, "lb"),
  46898. name: "Dressed",
  46899. image: {
  46900. source: "./media/characters/kiva/dressed.svg",
  46901. extra: 1102/1055,
  46902. bottom: 60/1162
  46903. }
  46904. },
  46905. nude: {
  46906. height: math.unit(8 + 5/12, "feet"),
  46907. weight: math.unit(700, "lb"),
  46908. name: "Nude",
  46909. image: {
  46910. source: "./media/characters/kiva/nude.svg",
  46911. extra: 1102/1055,
  46912. bottom: 60/1162
  46913. }
  46914. },
  46915. },
  46916. [
  46917. {
  46918. name: "Base Height",
  46919. height: math.unit(8 + 5/12, "feet"),
  46920. default: true
  46921. },
  46922. {
  46923. name: "Macro",
  46924. height: math.unit(100, "feet")
  46925. },
  46926. {
  46927. name: "Max",
  46928. height: math.unit(3280, "feet")
  46929. },
  46930. ]
  46931. ))
  46932. characterMakers.push(() => makeCharacter(
  46933. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  46934. {
  46935. front: {
  46936. height: math.unit(6 + 8/12, "feet"),
  46937. weight: math.unit(250, "lb"),
  46938. name: "Front",
  46939. image: {
  46940. source: "./media/characters/ztragon/front.svg",
  46941. extra: 1825/1684,
  46942. bottom: 98/1923
  46943. }
  46944. },
  46945. },
  46946. [
  46947. {
  46948. name: "Normal",
  46949. height: math.unit(6 + 8/12, "feet"),
  46950. default: true
  46951. },
  46952. {
  46953. name: "Macro",
  46954. height: math.unit(80, "feet")
  46955. },
  46956. ]
  46957. ))
  46958. characterMakers.push(() => makeCharacter(
  46959. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  46960. {
  46961. front: {
  46962. height: math.unit(10.4, "feet"),
  46963. weight: math.unit(2, "tons"),
  46964. name: "Front",
  46965. image: {
  46966. source: "./media/characters/yesenia/front.svg",
  46967. extra: 1479/1474,
  46968. bottom: 233/1712
  46969. }
  46970. },
  46971. },
  46972. [
  46973. {
  46974. name: "Normal",
  46975. height: math.unit(10.4, "feet"),
  46976. default: true
  46977. },
  46978. ]
  46979. ))
  46980. characterMakers.push(() => makeCharacter(
  46981. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  46982. {
  46983. normal: {
  46984. height: math.unit(6 + 1/12, "feet"),
  46985. weight: math.unit(180, "lb"),
  46986. name: "Normal",
  46987. image: {
  46988. source: "./media/characters/leanne-lycheborne/normal.svg",
  46989. extra: 1748/1660,
  46990. bottom: 98/1846
  46991. }
  46992. },
  46993. were: {
  46994. height: math.unit(12, "feet"),
  46995. weight: math.unit(1600, "lb"),
  46996. name: "Were",
  46997. image: {
  46998. source: "./media/characters/leanne-lycheborne/were.svg",
  46999. extra: 1485/1432,
  47000. bottom: 66/1551
  47001. }
  47002. },
  47003. },
  47004. [
  47005. {
  47006. name: "Normal",
  47007. height: math.unit(6 + 1/12, "feet"),
  47008. default: true
  47009. },
  47010. ]
  47011. ))
  47012. characterMakers.push(() => makeCharacter(
  47013. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47014. {
  47015. side: {
  47016. height: math.unit(13, "feet"),
  47017. name: "Side",
  47018. image: {
  47019. source: "./media/characters/kira-tyler/side.svg",
  47020. extra: 693/393,
  47021. bottom: 58/751
  47022. }
  47023. },
  47024. },
  47025. [
  47026. {
  47027. name: "Normal",
  47028. height: math.unit(13, "feet"),
  47029. default: true
  47030. },
  47031. ]
  47032. ))
  47033. characterMakers.push(() => makeCharacter(
  47034. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47035. {
  47036. front: {
  47037. height: math.unit(10.3, "feet"),
  47038. weight: math.unit(150, "lb"),
  47039. name: "Front",
  47040. image: {
  47041. source: "./media/characters/blaze/front.svg",
  47042. extra: 1378/1286,
  47043. bottom: 172/1550
  47044. }
  47045. },
  47046. },
  47047. [
  47048. {
  47049. name: "Normal",
  47050. height: math.unit(10.3, "feet"),
  47051. default: true
  47052. },
  47053. ]
  47054. ))
  47055. characterMakers.push(() => makeCharacter(
  47056. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47057. {
  47058. side: {
  47059. height: math.unit(2, "meters"),
  47060. weight: math.unit(400, "kg"),
  47061. name: "Side",
  47062. image: {
  47063. source: "./media/characters/anu/side.svg",
  47064. extra: 506/394,
  47065. bottom: 18/524
  47066. }
  47067. },
  47068. },
  47069. [
  47070. {
  47071. name: "Humanoid",
  47072. height: math.unit(2, "meters")
  47073. },
  47074. {
  47075. name: "Normal",
  47076. height: math.unit(5, "meters"),
  47077. default: true
  47078. },
  47079. ]
  47080. ))
  47081. characterMakers.push(() => makeCharacter(
  47082. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47083. {
  47084. front: {
  47085. height: math.unit(5 + 5/12, "feet"),
  47086. weight: math.unit(170, "lb"),
  47087. name: "Front",
  47088. image: {
  47089. source: "./media/characters/synx-the-lynx/front.svg",
  47090. extra: 1893/1745,
  47091. bottom: 17/1910
  47092. }
  47093. },
  47094. side: {
  47095. height: math.unit(5 + 5/12, "feet"),
  47096. weight: math.unit(170, "lb"),
  47097. name: "Side",
  47098. image: {
  47099. source: "./media/characters/synx-the-lynx/side.svg",
  47100. extra: 1884/1740,
  47101. bottom: 39/1923
  47102. }
  47103. },
  47104. back: {
  47105. height: math.unit(5 + 5/12, "feet"),
  47106. weight: math.unit(170, "lb"),
  47107. name: "Back",
  47108. image: {
  47109. source: "./media/characters/synx-the-lynx/back.svg",
  47110. extra: 1903/1755,
  47111. bottom: 14/1917
  47112. }
  47113. },
  47114. },
  47115. [
  47116. {
  47117. name: "Normal",
  47118. height: math.unit(5 + 5/12, "feet"),
  47119. default: true
  47120. },
  47121. ]
  47122. ))
  47123. characterMakers.push(() => makeCharacter(
  47124. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47125. {
  47126. back: {
  47127. height: math.unit(15, "feet"),
  47128. name: "Back",
  47129. image: {
  47130. source: "./media/characters/nadezda-fex/back.svg",
  47131. extra: 1695/1481,
  47132. bottom: 25/1720
  47133. }
  47134. },
  47135. },
  47136. [
  47137. {
  47138. name: "Normal",
  47139. height: math.unit(15, "feet"),
  47140. default: true
  47141. },
  47142. {
  47143. name: "Macro",
  47144. height: math.unit(2.5, "miles")
  47145. },
  47146. {
  47147. name: "Goddess",
  47148. height: math.unit(2, "multiverses")
  47149. },
  47150. ]
  47151. ))
  47152. characterMakers.push(() => makeCharacter(
  47153. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47154. {
  47155. front: {
  47156. height: math.unit(216, "cm"),
  47157. name: "Front",
  47158. image: {
  47159. source: "./media/characters/lev/front.svg",
  47160. extra: 1728/1670,
  47161. bottom: 82/1810
  47162. }
  47163. },
  47164. back: {
  47165. height: math.unit(216, "cm"),
  47166. name: "Back",
  47167. image: {
  47168. source: "./media/characters/lev/back.svg",
  47169. extra: 1738/1675,
  47170. bottom: 24/1762
  47171. }
  47172. },
  47173. dressed: {
  47174. height: math.unit(216, "cm"),
  47175. name: "Dressed",
  47176. image: {
  47177. source: "./media/characters/lev/dressed.svg",
  47178. extra: 1397/1351,
  47179. bottom: 73/1470
  47180. }
  47181. },
  47182. head: {
  47183. height: math.unit(0.51, "meter"),
  47184. name: "Head",
  47185. image: {
  47186. source: "./media/characters/lev/head.svg"
  47187. }
  47188. },
  47189. },
  47190. [
  47191. {
  47192. name: "Normal",
  47193. height: math.unit(216, "cm"),
  47194. default: true
  47195. },
  47196. {
  47197. name: "Relatively Macro",
  47198. height: math.unit(80, "meters")
  47199. },
  47200. {
  47201. name: "Megamacro",
  47202. height: math.unit(21600, "meters")
  47203. },
  47204. {
  47205. name: "Megamacro+",
  47206. height: math.unit(64800, "meters")
  47207. },
  47208. ]
  47209. ))
  47210. characterMakers.push(() => makeCharacter(
  47211. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47212. {
  47213. front: {
  47214. height: math.unit(2, "meters"),
  47215. weight: math.unit(80, "kg"),
  47216. name: "Front",
  47217. image: {
  47218. source: "./media/characters/moka/front.svg",
  47219. extra: 1337/1255,
  47220. bottom: 58/1395
  47221. }
  47222. },
  47223. },
  47224. [
  47225. {
  47226. name: "Micro",
  47227. height: math.unit(15, "cm")
  47228. },
  47229. {
  47230. name: "Normal",
  47231. height: math.unit(2, "meters"),
  47232. default: true
  47233. },
  47234. {
  47235. name: "Macro",
  47236. height: math.unit(20, "meters"),
  47237. },
  47238. ]
  47239. ))
  47240. characterMakers.push(() => makeCharacter(
  47241. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47242. {
  47243. front: {
  47244. height: math.unit(9, "feet"),
  47245. weight: math.unit(240, "lb"),
  47246. name: "Front",
  47247. image: {
  47248. source: "./media/characters/kuzco/front.svg",
  47249. extra: 1593/1487,
  47250. bottom: 32/1625
  47251. }
  47252. },
  47253. side: {
  47254. height: math.unit(9, "feet"),
  47255. weight: math.unit(240, "lb"),
  47256. name: "Side",
  47257. image: {
  47258. source: "./media/characters/kuzco/side.svg",
  47259. extra: 1575/1485,
  47260. bottom: 30/1605
  47261. }
  47262. },
  47263. back: {
  47264. height: math.unit(9, "feet"),
  47265. weight: math.unit(240, "lb"),
  47266. name: "Back",
  47267. image: {
  47268. source: "./media/characters/kuzco/back.svg",
  47269. extra: 1603/1514,
  47270. bottom: 14/1617
  47271. }
  47272. },
  47273. },
  47274. [
  47275. {
  47276. name: "Normal",
  47277. height: math.unit(9, "feet"),
  47278. default: true
  47279. },
  47280. ]
  47281. ))
  47282. characterMakers.push(() => makeCharacter(
  47283. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47284. {
  47285. side: {
  47286. height: math.unit(2, "meters"),
  47287. weight: math.unit(300, "kg"),
  47288. name: "Side",
  47289. image: {
  47290. source: "./media/characters/ceruleus/side.svg",
  47291. extra: 1068/974,
  47292. bottom: 126/1194
  47293. }
  47294. },
  47295. maw: {
  47296. height: math.unit(0.8125, "meter"),
  47297. name: "Maw",
  47298. image: {
  47299. source: "./media/characters/ceruleus/maw.svg"
  47300. }
  47301. },
  47302. },
  47303. [
  47304. {
  47305. name: "Normal",
  47306. height: math.unit(16, "meters"),
  47307. default: true
  47308. },
  47309. ]
  47310. ))
  47311. characterMakers.push(() => makeCharacter(
  47312. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47313. {
  47314. front: {
  47315. height: math.unit(9, "feet"),
  47316. weight: math.unit(500, "kg"),
  47317. name: "Front",
  47318. image: {
  47319. source: "./media/characters/acouya/front.svg",
  47320. extra: 1660/1473,
  47321. bottom: 28/1688
  47322. }
  47323. },
  47324. },
  47325. [
  47326. {
  47327. name: "Normal",
  47328. height: math.unit(9, "feet"),
  47329. default: true
  47330. },
  47331. ]
  47332. ))
  47333. characterMakers.push(() => makeCharacter(
  47334. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47335. {
  47336. front: {
  47337. height: math.unit(5 + 6/12, "feet"),
  47338. weight: math.unit(195, "lb"),
  47339. name: "Front",
  47340. image: {
  47341. source: "./media/characters/vant/front.svg",
  47342. extra: 1396/1320,
  47343. bottom: 20/1416
  47344. }
  47345. },
  47346. back: {
  47347. height: math.unit(5 + 6/12, "feet"),
  47348. weight: math.unit(195, "lb"),
  47349. name: "Back",
  47350. image: {
  47351. source: "./media/characters/vant/back.svg",
  47352. extra: 1396/1320,
  47353. bottom: 20/1416
  47354. }
  47355. },
  47356. maw: {
  47357. height: math.unit(0.75, "feet"),
  47358. name: "Maw",
  47359. image: {
  47360. source: "./media/characters/vant/maw.svg"
  47361. }
  47362. },
  47363. paw: {
  47364. height: math.unit(1.07, "feet"),
  47365. name: "Paw",
  47366. image: {
  47367. source: "./media/characters/vant/paw.svg"
  47368. }
  47369. },
  47370. },
  47371. [
  47372. {
  47373. name: "Micro",
  47374. height: math.unit(0.25, "inches")
  47375. },
  47376. {
  47377. name: "Normal",
  47378. height: math.unit(5 + 6/12, "feet"),
  47379. default: true
  47380. },
  47381. {
  47382. name: "Macro",
  47383. height: math.unit(75, "feet")
  47384. },
  47385. ]
  47386. ))
  47387. characterMakers.push(() => makeCharacter(
  47388. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47389. {
  47390. front: {
  47391. height: math.unit(30, "meters"),
  47392. weight: math.unit(363, "tons"),
  47393. name: "Front",
  47394. image: {
  47395. source: "./media/characters/ahra/front.svg",
  47396. extra: 1914/1814,
  47397. bottom: 46/1960
  47398. }
  47399. },
  47400. },
  47401. [
  47402. {
  47403. name: "Macro",
  47404. height: math.unit(30, "meters"),
  47405. default: true
  47406. },
  47407. ]
  47408. ))
  47409. characterMakers.push(() => makeCharacter(
  47410. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47411. {
  47412. undressed: {
  47413. height: math.unit(2, "m"),
  47414. weight: math.unit(250, "kg"),
  47415. name: "Undressed",
  47416. image: {
  47417. source: "./media/characters/coriander/undressed.svg",
  47418. extra: 1757/1606,
  47419. bottom: 107/1864
  47420. }
  47421. },
  47422. dressed: {
  47423. height: math.unit(2, "m"),
  47424. weight: math.unit(250, "kg"),
  47425. name: "Dressed",
  47426. image: {
  47427. source: "./media/characters/coriander/dressed.svg",
  47428. extra: 1757/1606,
  47429. bottom: 107/1864
  47430. }
  47431. },
  47432. },
  47433. [
  47434. {
  47435. name: "Normal",
  47436. height: math.unit(4, "meters"),
  47437. default: true
  47438. },
  47439. {
  47440. name: "XL",
  47441. height: math.unit(6, "meters")
  47442. },
  47443. {
  47444. name: "XXL",
  47445. height: math.unit(8, "meters")
  47446. },
  47447. ]
  47448. ))
  47449. characterMakers.push(() => makeCharacter(
  47450. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47451. {
  47452. front: {
  47453. height: math.unit(6, "feet"),
  47454. name: "Front",
  47455. image: {
  47456. source: "./media/characters/syrinx/front.svg",
  47457. extra: 1557/1259,
  47458. bottom: 171/1728
  47459. }
  47460. },
  47461. },
  47462. [
  47463. {
  47464. name: "Normal",
  47465. height: math.unit(6 + 3/12, "feet"),
  47466. default: true
  47467. },
  47468. ]
  47469. ))
  47470. characterMakers.push(() => makeCharacter(
  47471. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47472. {
  47473. front: {
  47474. height: math.unit(11 + 6/12, "feet"),
  47475. weight: math.unit(1.5, "tons"),
  47476. name: "Front",
  47477. image: {
  47478. source: "./media/characters/bor/front.svg",
  47479. extra: 1189/1109,
  47480. bottom: 170/1359
  47481. }
  47482. },
  47483. },
  47484. [
  47485. {
  47486. name: "Normal",
  47487. height: math.unit(11 + 6/12, "feet"),
  47488. default: true
  47489. },
  47490. {
  47491. name: "Macro",
  47492. height: math.unit(32 + 9/12, "feet")
  47493. },
  47494. ]
  47495. ))
  47496. characterMakers.push(() => makeCharacter(
  47497. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47498. {
  47499. anthro: {
  47500. height: math.unit(9, "feet"),
  47501. weight: math.unit(2076, "lb"),
  47502. name: "Anthro",
  47503. image: {
  47504. source: "./media/characters/abacus/anthro.svg",
  47505. extra: 1540/1494,
  47506. bottom: 233/1773
  47507. }
  47508. },
  47509. pigeon: {
  47510. height: math.unit(1, "feet"),
  47511. name: "Pigeon",
  47512. image: {
  47513. source: "./media/characters/abacus/pigeon.svg",
  47514. extra: 528/525,
  47515. bottom: 46/574
  47516. }
  47517. },
  47518. },
  47519. [
  47520. {
  47521. name: "Normal",
  47522. height: math.unit(9, "feet"),
  47523. default: true
  47524. },
  47525. ]
  47526. ))
  47527. characterMakers.push(() => makeCharacter(
  47528. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47529. {
  47530. side: {
  47531. height: math.unit(6, "feet"),
  47532. name: "Side",
  47533. image: {
  47534. source: "./media/characters/delkhan/side.svg",
  47535. extra: 1884/1786,
  47536. bottom: 308/2192
  47537. }
  47538. },
  47539. head: {
  47540. height: math.unit(3.38, "feet"),
  47541. name: "Head",
  47542. image: {
  47543. source: "./media/characters/delkhan/head.svg"
  47544. }
  47545. },
  47546. },
  47547. [
  47548. {
  47549. name: "Normal",
  47550. height: math.unit(72, "feet"),
  47551. default: true
  47552. },
  47553. {
  47554. name: "Giant",
  47555. height: math.unit(172, "feet")
  47556. },
  47557. ]
  47558. ))
  47559. characterMakers.push(() => makeCharacter(
  47560. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47561. {
  47562. standing: {
  47563. height: math.unit(6, "feet"),
  47564. name: "Standing",
  47565. image: {
  47566. source: "./media/characters/euchidat/standing.svg",
  47567. extra: 1612/1553,
  47568. bottom: 116/1728
  47569. }
  47570. },
  47571. leaning: {
  47572. height: math.unit(6, "feet"),
  47573. name: "Leaning",
  47574. image: {
  47575. source: "./media/characters/euchidat/leaning.svg",
  47576. extra: 1719/1674,
  47577. bottom: 27/1746
  47578. }
  47579. },
  47580. },
  47581. [
  47582. {
  47583. name: "Normal",
  47584. height: math.unit(175, "feet"),
  47585. default: true
  47586. },
  47587. {
  47588. name: "Megamacro",
  47589. height: math.unit(190, "miles")
  47590. },
  47591. {
  47592. name: "Gigamacro",
  47593. height: math.unit(190000, "miles")
  47594. },
  47595. ]
  47596. ))
  47597. characterMakers.push(() => makeCharacter(
  47598. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47599. {
  47600. front: {
  47601. height: math.unit(6, "feet"),
  47602. weight: math.unit(150, "lb"),
  47603. name: "Front",
  47604. image: {
  47605. source: "./media/characters/rebecca-stack/front.svg",
  47606. extra: 1256/1201,
  47607. bottom: 18/1274
  47608. }
  47609. },
  47610. },
  47611. [
  47612. {
  47613. name: "Normal",
  47614. height: math.unit(5 + 8/12, "feet"),
  47615. default: true
  47616. },
  47617. {
  47618. name: "Demolitionist",
  47619. height: math.unit(200, "feet")
  47620. },
  47621. {
  47622. name: "Out of Control",
  47623. height: math.unit(2, "miles")
  47624. },
  47625. {
  47626. name: "Giga",
  47627. height: math.unit(7200, "miles")
  47628. },
  47629. ]
  47630. ))
  47631. characterMakers.push(() => makeCharacter(
  47632. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47633. {
  47634. front: {
  47635. height: math.unit(6, "feet"),
  47636. weight: math.unit(150, "lb"),
  47637. name: "Front",
  47638. image: {
  47639. source: "./media/characters/jenny-cartwright/front.svg",
  47640. extra: 1384/1376,
  47641. bottom: 58/1442
  47642. }
  47643. },
  47644. },
  47645. [
  47646. {
  47647. name: "Normal",
  47648. height: math.unit(6 + 7/12, "feet"),
  47649. default: true
  47650. },
  47651. {
  47652. name: "Librarian",
  47653. height: math.unit(55, "feet")
  47654. },
  47655. {
  47656. name: "Sightseer",
  47657. height: math.unit(50, "miles")
  47658. },
  47659. {
  47660. name: "Giga",
  47661. height: math.unit(30000, "miles")
  47662. },
  47663. ]
  47664. ))
  47665. characterMakers.push(() => makeCharacter(
  47666. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47667. {
  47668. nude: {
  47669. height: math.unit(8, "feet"),
  47670. weight: math.unit(225, "lb"),
  47671. name: "Nude",
  47672. image: {
  47673. source: "./media/characters/marvy/nude.svg",
  47674. extra: 1900/1683,
  47675. bottom: 89/1989
  47676. }
  47677. },
  47678. dressed: {
  47679. height: math.unit(8, "feet"),
  47680. weight: math.unit(225, "lb"),
  47681. name: "Dressed",
  47682. image: {
  47683. source: "./media/characters/marvy/dressed.svg",
  47684. extra: 1900/1683,
  47685. bottom: 89/1989
  47686. }
  47687. },
  47688. head: {
  47689. height: math.unit(2.85, "feet"),
  47690. name: "Head",
  47691. image: {
  47692. source: "./media/characters/marvy/head.svg"
  47693. }
  47694. },
  47695. },
  47696. [
  47697. {
  47698. name: "Normal",
  47699. height: math.unit(8, "feet"),
  47700. default: true
  47701. },
  47702. ]
  47703. ))
  47704. characterMakers.push(() => makeCharacter(
  47705. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47706. {
  47707. front: {
  47708. height: math.unit(8, "feet"),
  47709. weight: math.unit(250, "lb"),
  47710. name: "Front",
  47711. image: {
  47712. source: "./media/characters/leah/front.svg",
  47713. extra: 1257/1149,
  47714. bottom: 109/1366
  47715. }
  47716. },
  47717. },
  47718. [
  47719. {
  47720. name: "Normal",
  47721. height: math.unit(8, "feet"),
  47722. default: true
  47723. },
  47724. {
  47725. name: "Minimacro",
  47726. height: math.unit(40, "feet")
  47727. },
  47728. {
  47729. name: "Macro",
  47730. height: math.unit(124, "feet")
  47731. },
  47732. {
  47733. name: "Megamacro",
  47734. height: math.unit(850, "feet")
  47735. },
  47736. ]
  47737. ))
  47738. characterMakers.push(() => makeCharacter(
  47739. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47740. {
  47741. side: {
  47742. height: math.unit(13 + 6/12, "feet"),
  47743. weight: math.unit(3200, "lb"),
  47744. name: "Side",
  47745. image: {
  47746. source: "./media/characters/alvir/side.svg",
  47747. extra: 896/589,
  47748. bottom: 26/922
  47749. }
  47750. },
  47751. },
  47752. [
  47753. {
  47754. name: "Normal",
  47755. height: math.unit(13 + 6/12, "feet"),
  47756. default: true
  47757. },
  47758. ]
  47759. ))
  47760. characterMakers.push(() => makeCharacter(
  47761. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47762. {
  47763. front: {
  47764. height: math.unit(5 + 4/12, "feet"),
  47765. weight: math.unit(236, "lb"),
  47766. name: "Front",
  47767. image: {
  47768. source: "./media/characters/zaina-khalil/front.svg",
  47769. extra: 1533/1485,
  47770. bottom: 94/1627
  47771. }
  47772. },
  47773. side: {
  47774. height: math.unit(5 + 4/12, "feet"),
  47775. weight: math.unit(236, "lb"),
  47776. name: "Side",
  47777. image: {
  47778. source: "./media/characters/zaina-khalil/side.svg",
  47779. extra: 1537/1498,
  47780. bottom: 66/1603
  47781. }
  47782. },
  47783. back: {
  47784. height: math.unit(5 + 4/12, "feet"),
  47785. weight: math.unit(236, "lb"),
  47786. name: "Back",
  47787. image: {
  47788. source: "./media/characters/zaina-khalil/back.svg",
  47789. extra: 1546/1494,
  47790. bottom: 89/1635
  47791. }
  47792. },
  47793. },
  47794. [
  47795. {
  47796. name: "Normal",
  47797. height: math.unit(5 + 4/12, "feet"),
  47798. default: true
  47799. },
  47800. ]
  47801. ))
  47802. characterMakers.push(() => makeCharacter(
  47803. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47804. {
  47805. side: {
  47806. height: math.unit(12, "feet"),
  47807. weight: math.unit(4000, "lb"),
  47808. name: "Side",
  47809. image: {
  47810. source: "./media/characters/terry/side.svg",
  47811. extra: 1518/1439,
  47812. bottom: 149/1667
  47813. }
  47814. },
  47815. },
  47816. [
  47817. {
  47818. name: "Normal",
  47819. height: math.unit(12, "feet"),
  47820. default: true
  47821. },
  47822. ]
  47823. ))
  47824. characterMakers.push(() => makeCharacter(
  47825. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47826. {
  47827. front: {
  47828. height: math.unit(12, "feet"),
  47829. weight: math.unit(1500, "lb"),
  47830. name: "Front",
  47831. image: {
  47832. source: "./media/characters/kahea/front.svg",
  47833. extra: 1722/1617,
  47834. bottom: 179/1901
  47835. }
  47836. },
  47837. },
  47838. [
  47839. {
  47840. name: "Normal",
  47841. height: math.unit(12, "feet"),
  47842. default: true
  47843. },
  47844. ]
  47845. ))
  47846. characterMakers.push(() => makeCharacter(
  47847. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47848. {
  47849. demonFront: {
  47850. height: math.unit(36, "feet"),
  47851. name: "Front",
  47852. image: {
  47853. source: "./media/characters/alex-xuria/demon-front.svg",
  47854. extra: 1705/1673,
  47855. bottom: 198/1903
  47856. },
  47857. form: "demon",
  47858. default: true
  47859. },
  47860. demonBack: {
  47861. height: math.unit(36, "feet"),
  47862. name: "Back",
  47863. image: {
  47864. source: "./media/characters/alex-xuria/demon-back.svg",
  47865. extra: 1725/1693,
  47866. bottom: 70/1795
  47867. },
  47868. form: "demon"
  47869. },
  47870. demonHead: {
  47871. height: math.unit(2.14, "meters"),
  47872. name: "Head",
  47873. image: {
  47874. source: "./media/characters/alex-xuria/demon-head.svg"
  47875. },
  47876. form: "demon"
  47877. },
  47878. demonHand: {
  47879. height: math.unit(1.61, "meters"),
  47880. name: "Hand",
  47881. image: {
  47882. source: "./media/characters/alex-xuria/demon-hand.svg"
  47883. },
  47884. form: "demon"
  47885. },
  47886. demonPaw: {
  47887. height: math.unit(1.35, "meters"),
  47888. name: "Paw",
  47889. image: {
  47890. source: "./media/characters/alex-xuria/demon-paw.svg"
  47891. },
  47892. form: "demon"
  47893. },
  47894. demonFoot: {
  47895. height: math.unit(2.2, "meters"),
  47896. name: "Foot",
  47897. image: {
  47898. source: "./media/characters/alex-xuria/demon-foot.svg"
  47899. },
  47900. form: "demon"
  47901. },
  47902. demonCock: {
  47903. height: math.unit(1.74, "meters"),
  47904. name: "Cock",
  47905. image: {
  47906. source: "./media/characters/alex-xuria/demon-cock.svg"
  47907. },
  47908. form: "demon"
  47909. },
  47910. demonTailClosed: {
  47911. height: math.unit(1.47, "meters"),
  47912. name: "Tail (Closed)",
  47913. image: {
  47914. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  47915. },
  47916. form: "demon"
  47917. },
  47918. demonTailOpen: {
  47919. height: math.unit(2.85, "meters"),
  47920. name: "Tail (Open)",
  47921. image: {
  47922. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  47923. },
  47924. form: "demon"
  47925. },
  47926. incubusFront: {
  47927. height: math.unit(12, "feet"),
  47928. name: "Front",
  47929. image: {
  47930. source: "./media/characters/alex-xuria/incubus-front.svg",
  47931. extra: 1754/1677,
  47932. bottom: 125/1879
  47933. },
  47934. form: "incubus",
  47935. default: true
  47936. },
  47937. incubusBack: {
  47938. height: math.unit(12, "feet"),
  47939. name: "Back",
  47940. image: {
  47941. source: "./media/characters/alex-xuria/incubus-back.svg",
  47942. extra: 1702/1647,
  47943. bottom: 30/1732
  47944. },
  47945. form: "incubus"
  47946. },
  47947. incubusHead: {
  47948. height: math.unit(3.45, "feet"),
  47949. name: "Head",
  47950. image: {
  47951. source: "./media/characters/alex-xuria/incubus-head.svg"
  47952. },
  47953. form: "incubus"
  47954. },
  47955. rabbitFront: {
  47956. height: math.unit(6, "feet"),
  47957. name: "Front",
  47958. image: {
  47959. source: "./media/characters/alex-xuria/rabbit-front.svg",
  47960. extra: 1369/1349,
  47961. bottom: 45/1414
  47962. },
  47963. form: "rabbit",
  47964. default: true
  47965. },
  47966. rabbitSide: {
  47967. height: math.unit(6, "feet"),
  47968. name: "Side",
  47969. image: {
  47970. source: "./media/characters/alex-xuria/rabbit-side.svg",
  47971. extra: 1370/1356,
  47972. bottom: 37/1407
  47973. },
  47974. form: "rabbit"
  47975. },
  47976. rabbitBack: {
  47977. height: math.unit(6, "feet"),
  47978. name: "Back",
  47979. image: {
  47980. source: "./media/characters/alex-xuria/rabbit-back.svg",
  47981. extra: 1375/1358,
  47982. bottom: 43/1418
  47983. },
  47984. form: "rabbit"
  47985. },
  47986. },
  47987. [
  47988. {
  47989. name: "Normal",
  47990. height: math.unit(6, "feet"),
  47991. default: true,
  47992. form: "rabbit"
  47993. },
  47994. {
  47995. name: "Incubus",
  47996. height: math.unit(12, "feet"),
  47997. default: true,
  47998. form: "incubus"
  47999. },
  48000. {
  48001. name: "Demon",
  48002. height: math.unit(36, "feet"),
  48003. default: true,
  48004. form: "demon"
  48005. }
  48006. ],
  48007. {
  48008. "demon": {
  48009. name: "Demon",
  48010. default: true
  48011. },
  48012. "incubus": {
  48013. name: "Incubus",
  48014. },
  48015. "rabbit": {
  48016. name: "Rabbit"
  48017. }
  48018. }
  48019. ))
  48020. characterMakers.push(() => makeCharacter(
  48021. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48022. {
  48023. front: {
  48024. height: math.unit(7 + 5/12, "feet"),
  48025. weight: math.unit(510, "lb"),
  48026. name: "Front",
  48027. image: {
  48028. source: "./media/characters/syrup/front.svg",
  48029. extra: 932/916,
  48030. bottom: 26/958
  48031. }
  48032. },
  48033. },
  48034. [
  48035. {
  48036. name: "Normal",
  48037. height: math.unit(7 + 5/12, "feet"),
  48038. default: true
  48039. },
  48040. {
  48041. name: "Big",
  48042. height: math.unit(50, "feet")
  48043. },
  48044. {
  48045. name: "Macro",
  48046. height: math.unit(300, "feet")
  48047. },
  48048. {
  48049. name: "Megamacro",
  48050. height: math.unit(1, "mile")
  48051. },
  48052. ]
  48053. ))
  48054. characterMakers.push(() => makeCharacter(
  48055. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48056. {
  48057. front: {
  48058. height: math.unit(6 + 9/12, "feet"),
  48059. name: "Front",
  48060. image: {
  48061. source: "./media/characters/zeimne/front.svg",
  48062. extra: 1969/1806,
  48063. bottom: 53/2022
  48064. }
  48065. },
  48066. },
  48067. [
  48068. {
  48069. name: "Normal",
  48070. height: math.unit(6 + 9/12, "feet"),
  48071. default: true
  48072. },
  48073. {
  48074. name: "Giant",
  48075. height: math.unit(550, "feet")
  48076. },
  48077. {
  48078. name: "Mega",
  48079. height: math.unit(3, "miles")
  48080. },
  48081. {
  48082. name: "Giga",
  48083. height: math.unit(250, "miles")
  48084. },
  48085. {
  48086. name: "Tera",
  48087. height: math.unit(1, "AU")
  48088. },
  48089. ]
  48090. ))
  48091. characterMakers.push(() => makeCharacter(
  48092. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48093. {
  48094. front: {
  48095. height: math.unit(5 + 2/12, "feet"),
  48096. name: "Front",
  48097. image: {
  48098. source: "./media/characters/grar/front.svg",
  48099. extra: 1331/1119,
  48100. bottom: 60/1391
  48101. }
  48102. },
  48103. back: {
  48104. height: math.unit(5 + 2/12, "feet"),
  48105. name: "Back",
  48106. image: {
  48107. source: "./media/characters/grar/back.svg",
  48108. extra: 1385/1169,
  48109. bottom: 23/1408
  48110. }
  48111. },
  48112. },
  48113. [
  48114. {
  48115. name: "Normal",
  48116. height: math.unit(5 + 2/12, "feet"),
  48117. default: true
  48118. },
  48119. ]
  48120. ))
  48121. characterMakers.push(() => makeCharacter(
  48122. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48123. {
  48124. front: {
  48125. height: math.unit(13 + 7/12, "feet"),
  48126. weight: math.unit(2200, "lb"),
  48127. name: "Front",
  48128. image: {
  48129. source: "./media/characters/endraya/front.svg",
  48130. extra: 1289/1215,
  48131. bottom: 50/1339
  48132. }
  48133. },
  48134. nude: {
  48135. height: math.unit(13 + 7/12, "feet"),
  48136. weight: math.unit(2200, "lb"),
  48137. name: "Nude",
  48138. image: {
  48139. source: "./media/characters/endraya/nude.svg",
  48140. extra: 1247/1171,
  48141. bottom: 40/1287
  48142. }
  48143. },
  48144. head: {
  48145. height: math.unit(2.6, "feet"),
  48146. name: "Head",
  48147. image: {
  48148. source: "./media/characters/endraya/head.svg"
  48149. }
  48150. },
  48151. slit: {
  48152. height: math.unit(3.4, "feet"),
  48153. name: "Slit",
  48154. image: {
  48155. source: "./media/characters/endraya/slit.svg"
  48156. }
  48157. },
  48158. },
  48159. [
  48160. {
  48161. name: "Normal",
  48162. height: math.unit(13 + 7/12, "feet"),
  48163. default: true
  48164. },
  48165. {
  48166. name: "Macro",
  48167. height: math.unit(200, "feet")
  48168. },
  48169. ]
  48170. ))
  48171. characterMakers.push(() => makeCharacter(
  48172. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48173. {
  48174. front: {
  48175. height: math.unit(1.81, "meters"),
  48176. weight: math.unit(69, "kg"),
  48177. name: "Front",
  48178. image: {
  48179. source: "./media/characters/rodryana/front.svg",
  48180. extra: 2002/1921,
  48181. bottom: 53/2055
  48182. }
  48183. },
  48184. back: {
  48185. height: math.unit(1.81, "meters"),
  48186. weight: math.unit(69, "kg"),
  48187. name: "Back",
  48188. image: {
  48189. source: "./media/characters/rodryana/back.svg",
  48190. extra: 1993/1926,
  48191. bottom: 48/2041
  48192. }
  48193. },
  48194. maw: {
  48195. height: math.unit(0.19769417475, "meters"),
  48196. name: "Maw",
  48197. image: {
  48198. source: "./media/characters/rodryana/maw.svg"
  48199. }
  48200. },
  48201. slit: {
  48202. height: math.unit(0.31631067961, "meters"),
  48203. name: "Slit",
  48204. image: {
  48205. source: "./media/characters/rodryana/slit.svg"
  48206. }
  48207. },
  48208. },
  48209. [
  48210. {
  48211. name: "Normal",
  48212. height: math.unit(1.81, "meters")
  48213. },
  48214. {
  48215. name: "Mini Macro",
  48216. height: math.unit(181, "meters")
  48217. },
  48218. {
  48219. name: "Macro",
  48220. height: math.unit(452, "meters"),
  48221. default: true
  48222. },
  48223. {
  48224. name: "Mega Macro",
  48225. height: math.unit(1.375, "km")
  48226. },
  48227. {
  48228. name: "Giga Macro",
  48229. height: math.unit(13.575, "km")
  48230. },
  48231. ]
  48232. ))
  48233. characterMakers.push(() => makeCharacter(
  48234. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48235. {
  48236. front: {
  48237. height: math.unit(6, "feet"),
  48238. weight: math.unit(1000, "lb"),
  48239. name: "Front",
  48240. image: {
  48241. source: "./media/characters/asaya/front.svg",
  48242. extra: 1460/1200,
  48243. bottom: 71/1531
  48244. }
  48245. },
  48246. },
  48247. [
  48248. {
  48249. name: "Normal",
  48250. height: math.unit(8, "km"),
  48251. default: true
  48252. },
  48253. ]
  48254. ))
  48255. characterMakers.push(() => makeCharacter(
  48256. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48257. {
  48258. front: {
  48259. height: math.unit(3.5, "meters"),
  48260. name: "Front",
  48261. image: {
  48262. source: "./media/characters/sarzu-and-israz/front.svg",
  48263. extra: 1570/1558,
  48264. bottom: 150/1720
  48265. },
  48266. },
  48267. back: {
  48268. height: math.unit(3.5, "meters"),
  48269. name: "Back",
  48270. image: {
  48271. source: "./media/characters/sarzu-and-israz/back.svg",
  48272. extra: 1523/1509,
  48273. bottom: 132/1655
  48274. },
  48275. },
  48276. frontFemale: {
  48277. height: math.unit(3.5, "meters"),
  48278. name: "Front (Female)",
  48279. image: {
  48280. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48281. extra: 1570/1558,
  48282. bottom: 150/1720
  48283. },
  48284. },
  48285. frontHerm: {
  48286. height: math.unit(3.5, "meters"),
  48287. name: "Front (Herm)",
  48288. image: {
  48289. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48290. extra: 1570/1558,
  48291. bottom: 150/1720
  48292. },
  48293. },
  48294. },
  48295. [
  48296. {
  48297. name: "Normal",
  48298. height: math.unit(3.5, "meters"),
  48299. default: true,
  48300. },
  48301. {
  48302. name: "Macro",
  48303. height: math.unit(65.5, "meters"),
  48304. },
  48305. ],
  48306. ))
  48307. characterMakers.push(() => makeCharacter(
  48308. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48309. {
  48310. front: {
  48311. height: math.unit(6, "feet"),
  48312. weight: math.unit(250, "lb"),
  48313. name: "Front",
  48314. image: {
  48315. source: "./media/characters/zenimma/front.svg",
  48316. extra: 1346/1320,
  48317. bottom: 58/1404
  48318. }
  48319. },
  48320. back: {
  48321. height: math.unit(6, "feet"),
  48322. weight: math.unit(250, "lb"),
  48323. name: "Back",
  48324. image: {
  48325. source: "./media/characters/zenimma/back.svg",
  48326. extra: 1324/1308,
  48327. bottom: 44/1368
  48328. }
  48329. },
  48330. dick: {
  48331. height: math.unit(1.44, "feet"),
  48332. name: "Dick",
  48333. image: {
  48334. source: "./media/characters/zenimma/dick.svg"
  48335. }
  48336. },
  48337. },
  48338. [
  48339. {
  48340. name: "Canon Height",
  48341. height: math.unit(66, "miles"),
  48342. default: true
  48343. },
  48344. ]
  48345. ))
  48346. characterMakers.push(() => makeCharacter(
  48347. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48348. {
  48349. nude: {
  48350. height: math.unit(6, "feet"),
  48351. weight: math.unit(150, "lb"),
  48352. name: "Nude",
  48353. image: {
  48354. source: "./media/characters/shavon/nude.svg",
  48355. extra: 1242/1096,
  48356. bottom: 98/1340
  48357. }
  48358. },
  48359. dressed: {
  48360. height: math.unit(6, "feet"),
  48361. weight: math.unit(150, "lb"),
  48362. name: "Dressed",
  48363. image: {
  48364. source: "./media/characters/shavon/dressed.svg",
  48365. extra: 1242/1096,
  48366. bottom: 98/1340
  48367. }
  48368. },
  48369. },
  48370. [
  48371. {
  48372. name: "Macro",
  48373. height: math.unit(255, "feet"),
  48374. default: true
  48375. },
  48376. ]
  48377. ))
  48378. characterMakers.push(() => makeCharacter(
  48379. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48380. {
  48381. front: {
  48382. height: math.unit(6, "feet"),
  48383. name: "Front",
  48384. image: {
  48385. source: "./media/characters/steph/front.svg",
  48386. extra: 1430/1330,
  48387. bottom: 54/1484
  48388. }
  48389. },
  48390. },
  48391. [
  48392. {
  48393. name: "Normal",
  48394. height: math.unit(6, "feet"),
  48395. default: true
  48396. },
  48397. ]
  48398. ))
  48399. characterMakers.push(() => makeCharacter(
  48400. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48401. {
  48402. front: {
  48403. height: math.unit(9, "feet"),
  48404. weight: math.unit(400, "lb"),
  48405. name: "Front",
  48406. image: {
  48407. source: "./media/characters/kil'aman/front.svg",
  48408. extra: 1210/1159,
  48409. bottom: 109/1319
  48410. }
  48411. },
  48412. head: {
  48413. height: math.unit(2.14, "feet"),
  48414. name: "Head",
  48415. image: {
  48416. source: "./media/characters/kil'aman/head.svg"
  48417. }
  48418. },
  48419. maw: {
  48420. height: math.unit(1.21, "feet"),
  48421. name: "Maw",
  48422. image: {
  48423. source: "./media/characters/kil'aman/maw.svg"
  48424. }
  48425. },
  48426. foot: {
  48427. height: math.unit(1.7, "feet"),
  48428. name: "Foot",
  48429. image: {
  48430. source: "./media/characters/kil'aman/foot.svg"
  48431. }
  48432. },
  48433. dick: {
  48434. height: math.unit(2.1, "feet"),
  48435. name: "Dick",
  48436. image: {
  48437. source: "./media/characters/kil'aman/dick.svg"
  48438. }
  48439. },
  48440. },
  48441. [
  48442. {
  48443. name: "Normal",
  48444. height: math.unit(9, "feet")
  48445. },
  48446. {
  48447. name: "Canon Height",
  48448. height: math.unit(10, "miles"),
  48449. default: true
  48450. },
  48451. {
  48452. name: "Maximum",
  48453. height: math.unit(6e9, "miles")
  48454. },
  48455. ]
  48456. ))
  48457. characterMakers.push(() => makeCharacter(
  48458. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48459. {
  48460. front: {
  48461. height: math.unit(90, "feet"),
  48462. weight: math.unit(675000, "lb"),
  48463. name: "Front",
  48464. image: {
  48465. source: "./media/characters/qadan/front.svg",
  48466. extra: 1012/1004,
  48467. bottom: 78/1090
  48468. }
  48469. },
  48470. back: {
  48471. height: math.unit(90, "feet"),
  48472. weight: math.unit(675000, "lb"),
  48473. name: "Back",
  48474. image: {
  48475. source: "./media/characters/qadan/back.svg",
  48476. extra: 1042/1031,
  48477. bottom: 55/1097
  48478. }
  48479. },
  48480. armored: {
  48481. height: math.unit(90, "feet"),
  48482. weight: math.unit(675000, "lb"),
  48483. name: "Armored",
  48484. image: {
  48485. source: "./media/characters/qadan/armored.svg",
  48486. extra: 1047/1037,
  48487. bottom: 48/1095
  48488. }
  48489. },
  48490. },
  48491. [
  48492. {
  48493. name: "Normal",
  48494. height: math.unit(90, "feet"),
  48495. default: true
  48496. },
  48497. ]
  48498. ))
  48499. characterMakers.push(() => makeCharacter(
  48500. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48501. {
  48502. front: {
  48503. height: math.unit(6, "feet"),
  48504. weight: math.unit(225, "lb"),
  48505. name: "Front",
  48506. image: {
  48507. source: "./media/characters/brooke/front.svg",
  48508. extra: 1050/1010,
  48509. bottom: 66/1116
  48510. }
  48511. },
  48512. back: {
  48513. height: math.unit(6, "feet"),
  48514. weight: math.unit(225, "lb"),
  48515. name: "Back",
  48516. image: {
  48517. source: "./media/characters/brooke/back.svg",
  48518. extra: 1053/1013,
  48519. bottom: 41/1094
  48520. }
  48521. },
  48522. dressed: {
  48523. height: math.unit(6, "feet"),
  48524. weight: math.unit(225, "lb"),
  48525. name: "Dressed",
  48526. image: {
  48527. source: "./media/characters/brooke/dressed.svg",
  48528. extra: 1050/1010,
  48529. bottom: 66/1116
  48530. }
  48531. },
  48532. },
  48533. [
  48534. {
  48535. name: "Canon Height",
  48536. height: math.unit(500, "miles"),
  48537. default: true
  48538. },
  48539. ]
  48540. ))
  48541. characterMakers.push(() => makeCharacter(
  48542. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48543. {
  48544. front: {
  48545. height: math.unit(6 + 2/12, "feet"),
  48546. weight: math.unit(210, "lb"),
  48547. name: "Front",
  48548. image: {
  48549. source: "./media/characters/wubs/front.svg",
  48550. extra: 1345/1325,
  48551. bottom: 70/1415
  48552. }
  48553. },
  48554. back: {
  48555. height: math.unit(6 + 2/12, "feet"),
  48556. weight: math.unit(210, "lb"),
  48557. name: "Back",
  48558. image: {
  48559. source: "./media/characters/wubs/back.svg",
  48560. extra: 1296/1275,
  48561. bottom: 58/1354
  48562. }
  48563. },
  48564. },
  48565. [
  48566. {
  48567. name: "Normal",
  48568. height: math.unit(6 + 2/12, "feet"),
  48569. default: true
  48570. },
  48571. {
  48572. name: "Macro",
  48573. height: math.unit(1000, "feet")
  48574. },
  48575. {
  48576. name: "Megamacro",
  48577. height: math.unit(1, "mile")
  48578. },
  48579. ]
  48580. ))
  48581. characterMakers.push(() => makeCharacter(
  48582. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48583. {
  48584. front: {
  48585. height: math.unit(4, "feet"),
  48586. weight: math.unit(120, "lb"),
  48587. name: "Front",
  48588. image: {
  48589. source: "./media/characters/blue/front.svg",
  48590. extra: 1636/1525,
  48591. bottom: 43/1679
  48592. }
  48593. },
  48594. back: {
  48595. height: math.unit(4, "feet"),
  48596. weight: math.unit(120, "lb"),
  48597. name: "Back",
  48598. image: {
  48599. source: "./media/characters/blue/back.svg",
  48600. extra: 1660/1560,
  48601. bottom: 57/1717
  48602. }
  48603. },
  48604. paws: {
  48605. height: math.unit(0.826, "feet"),
  48606. name: "Paws",
  48607. image: {
  48608. source: "./media/characters/blue/paws.svg"
  48609. }
  48610. },
  48611. },
  48612. [
  48613. {
  48614. name: "Micro",
  48615. height: math.unit(3, "inches")
  48616. },
  48617. {
  48618. name: "Normal",
  48619. height: math.unit(4, "feet"),
  48620. default: true
  48621. },
  48622. {
  48623. name: "Femenine Form",
  48624. height: math.unit(14, "feet")
  48625. },
  48626. {
  48627. name: "Werebat Form",
  48628. height: math.unit(18, "feet")
  48629. },
  48630. ]
  48631. ))
  48632. characterMakers.push(() => makeCharacter(
  48633. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48634. {
  48635. female: {
  48636. height: math.unit(7 + 4/12, "feet"),
  48637. weight: math.unit(243, "lb"),
  48638. name: "Female",
  48639. image: {
  48640. source: "./media/characters/kaya/female.svg",
  48641. extra: 975/898,
  48642. bottom: 34/1009
  48643. }
  48644. },
  48645. herm: {
  48646. height: math.unit(7 + 4/12, "feet"),
  48647. weight: math.unit(243, "lb"),
  48648. name: "Herm",
  48649. image: {
  48650. source: "./media/characters/kaya/herm.svg",
  48651. extra: 975/898,
  48652. bottom: 34/1009
  48653. }
  48654. },
  48655. },
  48656. [
  48657. {
  48658. name: "Normal",
  48659. height: math.unit(7 + 4/12, "feet"),
  48660. default: true
  48661. },
  48662. ]
  48663. ))
  48664. characterMakers.push(() => makeCharacter(
  48665. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48666. {
  48667. female: {
  48668. height: math.unit(9 + 4/12, "feet"),
  48669. weight: math.unit(398, "lb"),
  48670. name: "Female",
  48671. image: {
  48672. source: "./media/characters/kassandra/female.svg",
  48673. extra: 908/839,
  48674. bottom: 61/969
  48675. }
  48676. },
  48677. intersex: {
  48678. height: math.unit(9 + 4/12, "feet"),
  48679. weight: math.unit(398, "lb"),
  48680. name: "Intersex",
  48681. image: {
  48682. source: "./media/characters/kassandra/intersex.svg",
  48683. extra: 908/839,
  48684. bottom: 61/969
  48685. }
  48686. },
  48687. },
  48688. [
  48689. {
  48690. name: "Normal",
  48691. height: math.unit(9 + 4/12, "feet"),
  48692. default: true
  48693. },
  48694. ]
  48695. ))
  48696. characterMakers.push(() => makeCharacter(
  48697. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48698. {
  48699. front: {
  48700. height: math.unit(3, "meters"),
  48701. name: "Front",
  48702. image: {
  48703. source: "./media/characters/amy/front.svg",
  48704. extra: 1380/1343,
  48705. bottom: 70/1450
  48706. }
  48707. },
  48708. back: {
  48709. height: math.unit(3, "meters"),
  48710. name: "Back",
  48711. image: {
  48712. source: "./media/characters/amy/back.svg",
  48713. extra: 1380/1347,
  48714. bottom: 66/1446
  48715. }
  48716. },
  48717. },
  48718. [
  48719. {
  48720. name: "Normal",
  48721. height: math.unit(3, "meters"),
  48722. default: true
  48723. },
  48724. ]
  48725. ))
  48726. characterMakers.push(() => makeCharacter(
  48727. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48728. {
  48729. side: {
  48730. height: math.unit(47, "cm"),
  48731. weight: math.unit(10.8, "kg"),
  48732. name: "Side",
  48733. image: {
  48734. source: "./media/characters/alphaschakal/side.svg",
  48735. extra: 1058/568,
  48736. bottom: 62/1120
  48737. }
  48738. },
  48739. back: {
  48740. height: math.unit(78, "cm"),
  48741. weight: math.unit(10.8, "kg"),
  48742. name: "Back",
  48743. image: {
  48744. source: "./media/characters/alphaschakal/back.svg",
  48745. extra: 1102/942,
  48746. bottom: 185/1287
  48747. }
  48748. },
  48749. head: {
  48750. height: math.unit(28, "cm"),
  48751. name: "Head",
  48752. image: {
  48753. source: "./media/characters/alphaschakal/head.svg",
  48754. extra: 696/508,
  48755. bottom: 0/696
  48756. }
  48757. },
  48758. paw: {
  48759. height: math.unit(16, "cm"),
  48760. name: "Paw",
  48761. image: {
  48762. source: "./media/characters/alphaschakal/paw.svg"
  48763. }
  48764. },
  48765. },
  48766. [
  48767. {
  48768. name: "Normal",
  48769. height: math.unit(47, "cm"),
  48770. default: true
  48771. },
  48772. {
  48773. name: "Macro",
  48774. height: math.unit(340, "cm")
  48775. },
  48776. ]
  48777. ))
  48778. characterMakers.push(() => makeCharacter(
  48779. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48780. {
  48781. front: {
  48782. height: math.unit(36, "earths"),
  48783. name: "Front",
  48784. image: {
  48785. source: "./media/characters/ecobyss/front.svg",
  48786. extra: 1282/1215,
  48787. bottom: 11/1293
  48788. }
  48789. },
  48790. back: {
  48791. height: math.unit(36, "earths"),
  48792. name: "Back",
  48793. image: {
  48794. source: "./media/characters/ecobyss/back.svg",
  48795. extra: 1291/1222,
  48796. bottom: 8/1299
  48797. }
  48798. },
  48799. },
  48800. [
  48801. {
  48802. name: "Normal",
  48803. height: math.unit(36, "earths"),
  48804. default: true
  48805. },
  48806. ]
  48807. ))
  48808. characterMakers.push(() => makeCharacter(
  48809. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48810. {
  48811. front: {
  48812. height: math.unit(12, "feet"),
  48813. name: "Front",
  48814. image: {
  48815. source: "./media/characters/vasuk/front.svg",
  48816. extra: 1326/1207,
  48817. bottom: 64/1390
  48818. }
  48819. },
  48820. },
  48821. [
  48822. {
  48823. name: "Normal",
  48824. height: math.unit(12, "feet"),
  48825. default: true
  48826. },
  48827. ]
  48828. ))
  48829. characterMakers.push(() => makeCharacter(
  48830. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48831. {
  48832. side: {
  48833. height: math.unit(100, "feet"),
  48834. name: "Side",
  48835. image: {
  48836. source: "./media/characters/linneaus/side.svg",
  48837. extra: 987/807,
  48838. bottom: 47/1034
  48839. }
  48840. },
  48841. },
  48842. [
  48843. {
  48844. name: "Macro",
  48845. height: math.unit(100, "feet"),
  48846. default: true
  48847. },
  48848. ]
  48849. ))
  48850. characterMakers.push(() => makeCharacter(
  48851. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48852. {
  48853. front: {
  48854. height: math.unit(8, "feet"),
  48855. weight: math.unit(1200, "lb"),
  48856. name: "Front",
  48857. image: {
  48858. source: "./media/characters/nyterious-daligdig/front.svg",
  48859. extra: 1284/1094,
  48860. bottom: 84/1368
  48861. }
  48862. },
  48863. back: {
  48864. height: math.unit(8, "feet"),
  48865. weight: math.unit(1200, "lb"),
  48866. name: "Back",
  48867. image: {
  48868. source: "./media/characters/nyterious-daligdig/back.svg",
  48869. extra: 1301/1121,
  48870. bottom: 129/1430
  48871. }
  48872. },
  48873. mouth: {
  48874. height: math.unit(1.464, "feet"),
  48875. name: "Mouth",
  48876. image: {
  48877. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48878. }
  48879. },
  48880. },
  48881. [
  48882. {
  48883. name: "Small",
  48884. height: math.unit(8, "feet"),
  48885. default: true
  48886. },
  48887. {
  48888. name: "Normal",
  48889. height: math.unit(15, "feet")
  48890. },
  48891. {
  48892. name: "Macro",
  48893. height: math.unit(90, "feet")
  48894. },
  48895. ]
  48896. ))
  48897. characterMakers.push(() => makeCharacter(
  48898. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48899. {
  48900. front: {
  48901. height: math.unit(7 + 4/12, "feet"),
  48902. weight: math.unit(252, "lb"),
  48903. name: "Front",
  48904. image: {
  48905. source: "./media/characters/bandel/front.svg",
  48906. extra: 1946/1775,
  48907. bottom: 26/1972
  48908. }
  48909. },
  48910. back: {
  48911. height: math.unit(7 + 4/12, "feet"),
  48912. weight: math.unit(252, "lb"),
  48913. name: "Back",
  48914. image: {
  48915. source: "./media/characters/bandel/back.svg",
  48916. extra: 1940/1770,
  48917. bottom: 25/1965
  48918. }
  48919. },
  48920. maw: {
  48921. height: math.unit(2.15, "feet"),
  48922. name: "Maw",
  48923. image: {
  48924. source: "./media/characters/bandel/maw.svg"
  48925. }
  48926. },
  48927. stomach: {
  48928. height: math.unit(1.95, "feet"),
  48929. name: "Stomach",
  48930. image: {
  48931. source: "./media/characters/bandel/stomach.svg"
  48932. }
  48933. },
  48934. },
  48935. [
  48936. {
  48937. name: "Normal",
  48938. height: math.unit(7 + 4/12, "feet"),
  48939. default: true
  48940. },
  48941. ]
  48942. ))
  48943. characterMakers.push(() => makeCharacter(
  48944. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  48945. {
  48946. front: {
  48947. height: math.unit(10 + 5/12, "feet"),
  48948. weight: math.unit(773.5, "kg"),
  48949. name: "Front",
  48950. image: {
  48951. source: "./media/characters/zed/front.svg",
  48952. extra: 987/941,
  48953. bottom: 52/1039
  48954. }
  48955. },
  48956. },
  48957. [
  48958. {
  48959. name: "Short",
  48960. height: math.unit(5 + 4/12, "feet")
  48961. },
  48962. {
  48963. name: "Average",
  48964. height: math.unit(10 + 5/12, "feet"),
  48965. default: true
  48966. },
  48967. {
  48968. name: "Mini-Macro",
  48969. height: math.unit(24 + 9/12, "feet")
  48970. },
  48971. {
  48972. name: "Macro",
  48973. height: math.unit(249, "feet")
  48974. },
  48975. {
  48976. name: "Mega-Macro",
  48977. height: math.unit(12490, "feet")
  48978. },
  48979. {
  48980. name: "Giga-Macro",
  48981. height: math.unit(24.9, "miles")
  48982. },
  48983. {
  48984. name: "Tera-Macro",
  48985. height: math.unit(24900, "miles")
  48986. },
  48987. {
  48988. name: "Cosmic Scale",
  48989. height: math.unit(38.9, "lightyears")
  48990. },
  48991. {
  48992. name: "Universal Scale",
  48993. height: math.unit(138e12, "lightyears")
  48994. },
  48995. ]
  48996. ))
  48997. characterMakers.push(() => makeCharacter(
  48998. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  48999. {
  49000. front: {
  49001. height: math.unit(1561, "inches"),
  49002. name: "Front",
  49003. image: {
  49004. source: "./media/characters/ivan/front.svg",
  49005. extra: 1126/1071,
  49006. bottom: 26/1152
  49007. }
  49008. },
  49009. back: {
  49010. height: math.unit(1561, "inches"),
  49011. name: "Back",
  49012. image: {
  49013. source: "./media/characters/ivan/back.svg",
  49014. extra: 1134/1079,
  49015. bottom: 30/1164
  49016. }
  49017. },
  49018. },
  49019. [
  49020. {
  49021. name: "Normal",
  49022. height: math.unit(1561, "inches"),
  49023. default: true
  49024. },
  49025. ]
  49026. ))
  49027. characterMakers.push(() => makeCharacter(
  49028. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49029. {
  49030. front: {
  49031. height: math.unit(5 + 7/12, "feet"),
  49032. weight: math.unit(150, "lb"),
  49033. name: "Front",
  49034. image: {
  49035. source: "./media/characters/robin-arctic-hare/front.svg",
  49036. extra: 1148/974,
  49037. bottom: 20/1168
  49038. }
  49039. },
  49040. },
  49041. [
  49042. {
  49043. name: "Normal",
  49044. height: math.unit(5 + 7/12, "feet"),
  49045. default: true
  49046. },
  49047. ]
  49048. ))
  49049. characterMakers.push(() => makeCharacter(
  49050. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49051. {
  49052. side: {
  49053. height: math.unit(5, "feet"),
  49054. name: "Side",
  49055. image: {
  49056. source: "./media/characters/birch/side.svg",
  49057. extra: 985/796,
  49058. bottom: 111/1096
  49059. }
  49060. },
  49061. },
  49062. [
  49063. {
  49064. name: "Normal",
  49065. height: math.unit(5, "feet"),
  49066. default: true
  49067. },
  49068. ]
  49069. ))
  49070. characterMakers.push(() => makeCharacter(
  49071. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49072. {
  49073. front: {
  49074. height: math.unit(4, "feet"),
  49075. name: "Front",
  49076. image: {
  49077. source: "./media/characters/rasp/front.svg",
  49078. extra: 561/478,
  49079. bottom: 74/635
  49080. }
  49081. },
  49082. },
  49083. [
  49084. {
  49085. name: "Normal",
  49086. height: math.unit(4, "feet"),
  49087. default: true
  49088. },
  49089. ]
  49090. ))
  49091. characterMakers.push(() => makeCharacter(
  49092. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49093. {
  49094. front: {
  49095. height: math.unit(4 + 6/12, "feet"),
  49096. name: "Front",
  49097. image: {
  49098. source: "./media/characters/agatha/front.svg",
  49099. extra: 947/933,
  49100. bottom: 42/989
  49101. }
  49102. },
  49103. back: {
  49104. height: math.unit(4 + 6/12, "feet"),
  49105. name: "Back",
  49106. image: {
  49107. source: "./media/characters/agatha/back.svg",
  49108. extra: 935/922,
  49109. bottom: 48/983
  49110. }
  49111. },
  49112. },
  49113. [
  49114. {
  49115. name: "Normal",
  49116. height: math.unit(4 + 6 /12, "feet"),
  49117. default: true
  49118. },
  49119. {
  49120. name: "Max Size",
  49121. height: math.unit(500, "feet")
  49122. },
  49123. ]
  49124. ))
  49125. characterMakers.push(() => makeCharacter(
  49126. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49127. {
  49128. side: {
  49129. height: math.unit(30, "feet"),
  49130. name: "Side",
  49131. image: {
  49132. source: "./media/characters/roggy/side.svg",
  49133. extra: 909/643,
  49134. bottom: 63/972
  49135. }
  49136. },
  49137. lounging: {
  49138. height: math.unit(20, "feet"),
  49139. name: "Lounging",
  49140. image: {
  49141. source: "./media/characters/roggy/lounging.svg",
  49142. extra: 643/479,
  49143. bottom: 145/788
  49144. }
  49145. },
  49146. handpaw: {
  49147. height: math.unit(13.1, "feet"),
  49148. name: "Handpaw",
  49149. image: {
  49150. source: "./media/characters/roggy/handpaw.svg"
  49151. }
  49152. },
  49153. footpaw: {
  49154. height: math.unit(15.8, "feet"),
  49155. name: "Footpaw",
  49156. image: {
  49157. source: "./media/characters/roggy/footpaw.svg"
  49158. }
  49159. },
  49160. },
  49161. [
  49162. {
  49163. name: "Menacing",
  49164. height: math.unit(30, "feet"),
  49165. default: true
  49166. },
  49167. ]
  49168. ))
  49169. characterMakers.push(() => makeCharacter(
  49170. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49171. {
  49172. front: {
  49173. height: math.unit(5 + 7/12, "feet"),
  49174. weight: math.unit(135, "lb"),
  49175. name: "Front",
  49176. image: {
  49177. source: "./media/characters/naomi/front.svg",
  49178. extra: 1209/1154,
  49179. bottom: 129/1338
  49180. }
  49181. },
  49182. back: {
  49183. height: math.unit(5 + 7/12, "feet"),
  49184. weight: math.unit(135, "lb"),
  49185. name: "Back",
  49186. image: {
  49187. source: "./media/characters/naomi/back.svg",
  49188. extra: 1252/1190,
  49189. bottom: 23/1275
  49190. }
  49191. },
  49192. },
  49193. [
  49194. {
  49195. name: "Normal",
  49196. height: math.unit(5 + 7 /12, "feet"),
  49197. default: true
  49198. },
  49199. ]
  49200. ))
  49201. characterMakers.push(() => makeCharacter(
  49202. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49203. {
  49204. side: {
  49205. height: math.unit(35, "meters"),
  49206. name: "Side",
  49207. image: {
  49208. source: "./media/characters/kimpi/side.svg",
  49209. extra: 419/382,
  49210. bottom: 63/482
  49211. }
  49212. },
  49213. hand: {
  49214. height: math.unit(8.96, "meters"),
  49215. name: "Hand",
  49216. image: {
  49217. source: "./media/characters/kimpi/hand.svg"
  49218. }
  49219. },
  49220. },
  49221. [
  49222. {
  49223. name: "Normal",
  49224. height: math.unit(35, "meters"),
  49225. default: true
  49226. },
  49227. ]
  49228. ))
  49229. characterMakers.push(() => makeCharacter(
  49230. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49231. {
  49232. front: {
  49233. height: math.unit(4 + 4/12, "feet"),
  49234. name: "Front",
  49235. image: {
  49236. source: "./media/characters/pepper-purrloin/front.svg",
  49237. extra: 1141/1024,
  49238. bottom: 21/1162
  49239. }
  49240. },
  49241. },
  49242. [
  49243. {
  49244. name: "Normal",
  49245. height: math.unit(4 + 4/12, "feet"),
  49246. default: true
  49247. },
  49248. ]
  49249. ))
  49250. characterMakers.push(() => makeCharacter(
  49251. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49252. {
  49253. front: {
  49254. height: math.unit(6 + 2/12, "feet"),
  49255. name: "Front",
  49256. image: {
  49257. source: "./media/characters/raphael/front.svg",
  49258. extra: 1101/962,
  49259. bottom: 59/1160
  49260. }
  49261. },
  49262. },
  49263. [
  49264. {
  49265. name: "Normal",
  49266. height: math.unit(6 + 2/12, "feet"),
  49267. default: true
  49268. },
  49269. ]
  49270. ))
  49271. characterMakers.push(() => makeCharacter(
  49272. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49273. {
  49274. front: {
  49275. height: math.unit(6, "feet"),
  49276. weight: math.unit(150, "lb"),
  49277. name: "Front",
  49278. image: {
  49279. source: "./media/characters/victor-williams/front.svg",
  49280. extra: 1894/1825,
  49281. bottom: 67/1961
  49282. }
  49283. },
  49284. },
  49285. [
  49286. {
  49287. name: "Normal",
  49288. height: math.unit(6, "feet"),
  49289. default: true
  49290. },
  49291. ]
  49292. ))
  49293. characterMakers.push(() => makeCharacter(
  49294. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49295. {
  49296. front: {
  49297. height: math.unit(5 + 8/12, "feet"),
  49298. weight: math.unit(150, "lb"),
  49299. name: "Front",
  49300. image: {
  49301. source: "./media/characters/rachel/front.svg",
  49302. extra: 1902/1787,
  49303. bottom: 46/1948
  49304. }
  49305. },
  49306. },
  49307. [
  49308. {
  49309. name: "Base Height",
  49310. height: math.unit(5 + 8/12, "feet"),
  49311. default: true
  49312. },
  49313. {
  49314. name: "Macro",
  49315. height: math.unit(200, "feet")
  49316. },
  49317. {
  49318. name: "Mega Macro",
  49319. height: math.unit(1, "mile")
  49320. },
  49321. {
  49322. name: "Giga Macro",
  49323. height: math.unit(1500, "miles")
  49324. },
  49325. {
  49326. name: "Tera Macro",
  49327. height: math.unit(8000, "miles")
  49328. },
  49329. {
  49330. name: "Tera Macro+",
  49331. height: math.unit(2e5, "miles")
  49332. },
  49333. ]
  49334. ))
  49335. characterMakers.push(() => makeCharacter(
  49336. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49337. {
  49338. front: {
  49339. height: math.unit(6.5, "feet"),
  49340. name: "Front",
  49341. image: {
  49342. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49343. extra: 860/819,
  49344. bottom: 307/1167
  49345. }
  49346. },
  49347. back: {
  49348. height: math.unit(6.5, "feet"),
  49349. name: "Back",
  49350. image: {
  49351. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49352. extra: 880/837,
  49353. bottom: 395/1275
  49354. }
  49355. },
  49356. sleeping: {
  49357. height: math.unit(2.79, "feet"),
  49358. name: "Sleeping",
  49359. image: {
  49360. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49361. extra: 465/383,
  49362. bottom: 263/728
  49363. }
  49364. },
  49365. maw: {
  49366. height: math.unit(2.52, "feet"),
  49367. name: "Maw",
  49368. image: {
  49369. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49370. }
  49371. },
  49372. },
  49373. [
  49374. {
  49375. name: "Normal",
  49376. height: math.unit(6.5, "feet"),
  49377. default: true
  49378. },
  49379. ]
  49380. ))
  49381. characterMakers.push(() => makeCharacter(
  49382. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49383. {
  49384. front: {
  49385. height: math.unit(5, "feet"),
  49386. name: "Front",
  49387. image: {
  49388. source: "./media/characters/nova-nerium/front.svg",
  49389. extra: 1548/1392,
  49390. bottom: 374/1922
  49391. }
  49392. },
  49393. back: {
  49394. height: math.unit(5, "feet"),
  49395. name: "Back",
  49396. image: {
  49397. source: "./media/characters/nova-nerium/back.svg",
  49398. extra: 1658/1468,
  49399. bottom: 257/1915
  49400. }
  49401. },
  49402. },
  49403. [
  49404. {
  49405. name: "Normal",
  49406. height: math.unit(5, "feet"),
  49407. default: true
  49408. },
  49409. ]
  49410. ))
  49411. characterMakers.push(() => makeCharacter(
  49412. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49413. {
  49414. front: {
  49415. height: math.unit(5 + 4/12, "feet"),
  49416. name: "Front",
  49417. image: {
  49418. source: "./media/characters/ashe-pyriph/front.svg",
  49419. extra: 1935/1747,
  49420. bottom: 60/1995
  49421. }
  49422. },
  49423. },
  49424. [
  49425. {
  49426. name: "Normal",
  49427. height: math.unit(5 + 4/12, "feet"),
  49428. default: true
  49429. },
  49430. ]
  49431. ))
  49432. characterMakers.push(() => makeCharacter(
  49433. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49434. {
  49435. front: {
  49436. height: math.unit(8.7, "feet"),
  49437. name: "Front",
  49438. image: {
  49439. source: "./media/characters/flicker-wisp/front.svg",
  49440. extra: 1835/1613,
  49441. bottom: 449/2284
  49442. }
  49443. },
  49444. side: {
  49445. height: math.unit(8.7, "feet"),
  49446. name: "Side",
  49447. image: {
  49448. source: "./media/characters/flicker-wisp/side.svg",
  49449. extra: 1841/1642,
  49450. bottom: 336/2177
  49451. },
  49452. default: true
  49453. },
  49454. maw: {
  49455. height: math.unit(3.35, "feet"),
  49456. name: "Maw",
  49457. image: {
  49458. source: "./media/characters/flicker-wisp/maw.svg",
  49459. extra: 2338/1506,
  49460. bottom: 0/2338
  49461. }
  49462. },
  49463. ovipositor: {
  49464. height: math.unit(4.95, "feet"),
  49465. name: "Ovipositor",
  49466. image: {
  49467. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49468. }
  49469. },
  49470. egg: {
  49471. height: math.unit(0.385, "feet"),
  49472. weight: math.unit(2, "lb"),
  49473. name: "Egg",
  49474. image: {
  49475. source: "./media/characters/flicker-wisp/egg.svg"
  49476. }
  49477. },
  49478. },
  49479. [
  49480. {
  49481. name: "Normal",
  49482. height: math.unit(8.7, "feet"),
  49483. default: true
  49484. },
  49485. ]
  49486. ))
  49487. characterMakers.push(() => makeCharacter(
  49488. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49489. {
  49490. side: {
  49491. height: math.unit(11, "feet"),
  49492. name: "Side",
  49493. image: {
  49494. source: "./media/characters/faefnul/side.svg",
  49495. extra: 1100/1007,
  49496. bottom: 0/1100
  49497. }
  49498. },
  49499. },
  49500. [
  49501. {
  49502. name: "Normal",
  49503. height: math.unit(11, "feet"),
  49504. default: true
  49505. },
  49506. ]
  49507. ))
  49508. characterMakers.push(() => makeCharacter(
  49509. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49510. {
  49511. front: {
  49512. height: math.unit(6 + 2/12, "feet"),
  49513. name: "Front",
  49514. image: {
  49515. source: "./media/characters/shady/front.svg",
  49516. extra: 502/461,
  49517. bottom: 9/511
  49518. }
  49519. },
  49520. kneeling: {
  49521. height: math.unit(4.6, "feet"),
  49522. name: "Kneeling",
  49523. image: {
  49524. source: "./media/characters/shady/kneeling.svg",
  49525. extra: 1328/1219,
  49526. bottom: 117/1445
  49527. }
  49528. },
  49529. maw: {
  49530. height: math.unit(2, "feet"),
  49531. name: "Maw",
  49532. image: {
  49533. source: "./media/characters/shady/maw.svg"
  49534. }
  49535. },
  49536. },
  49537. [
  49538. {
  49539. name: "Nano",
  49540. height: math.unit(1, "mm")
  49541. },
  49542. {
  49543. name: "Micro",
  49544. height: math.unit(12, "mm")
  49545. },
  49546. {
  49547. name: "Tiny",
  49548. height: math.unit(3, "inches")
  49549. },
  49550. {
  49551. name: "Normal",
  49552. height: math.unit(6 + 2/12, "feet"),
  49553. default: true
  49554. },
  49555. {
  49556. name: "Big",
  49557. height: math.unit(15, "feet")
  49558. },
  49559. {
  49560. name: "Macro",
  49561. height: math.unit(150, "feet")
  49562. },
  49563. {
  49564. name: "Titanic",
  49565. height: math.unit(500, "feet")
  49566. },
  49567. ]
  49568. ))
  49569. characterMakers.push(() => makeCharacter(
  49570. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49571. {
  49572. front: {
  49573. height: math.unit(12, "feet"),
  49574. name: "Front",
  49575. image: {
  49576. source: "./media/characters/fenrir/front.svg",
  49577. extra: 968/875,
  49578. bottom: 22/990
  49579. }
  49580. },
  49581. },
  49582. [
  49583. {
  49584. name: "Big",
  49585. height: math.unit(12, "feet"),
  49586. default: true
  49587. },
  49588. ]
  49589. ))
  49590. characterMakers.push(() => makeCharacter(
  49591. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49592. {
  49593. front: {
  49594. height: math.unit(5 + 4/12, "feet"),
  49595. name: "Front",
  49596. image: {
  49597. source: "./media/characters/makar/front.svg",
  49598. extra: 1181/1112,
  49599. bottom: 78/1259
  49600. }
  49601. },
  49602. },
  49603. [
  49604. {
  49605. name: "Normal",
  49606. height: math.unit(5 + 4/12, "feet"),
  49607. default: true
  49608. },
  49609. ]
  49610. ))
  49611. characterMakers.push(() => makeCharacter(
  49612. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49613. {
  49614. front: {
  49615. height: math.unit(5 + 7/12, "feet"),
  49616. name: "Front",
  49617. image: {
  49618. source: "./media/characters/callow/front.svg",
  49619. extra: 1482/1304,
  49620. bottom: 23/1505
  49621. }
  49622. },
  49623. back: {
  49624. height: math.unit(5 + 7/12, "feet"),
  49625. name: "Back",
  49626. image: {
  49627. source: "./media/characters/callow/back.svg",
  49628. extra: 1484/1296,
  49629. bottom: 25/1509
  49630. }
  49631. },
  49632. },
  49633. [
  49634. {
  49635. name: "Micro",
  49636. height: math.unit(3, "inches"),
  49637. default: true
  49638. },
  49639. {
  49640. name: "Normal",
  49641. height: math.unit(5 + 7/12, "feet")
  49642. },
  49643. ]
  49644. ))
  49645. characterMakers.push(() => makeCharacter(
  49646. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49647. {
  49648. front: {
  49649. height: math.unit(6 + 2/12, "feet"),
  49650. name: "Front",
  49651. image: {
  49652. source: "./media/characters/natel/front.svg",
  49653. extra: 1833/1692,
  49654. bottom: 166/1999
  49655. }
  49656. },
  49657. },
  49658. [
  49659. {
  49660. name: "Normal",
  49661. height: math.unit(6 + 2/12, "feet"),
  49662. default: true
  49663. },
  49664. ]
  49665. ))
  49666. characterMakers.push(() => makeCharacter(
  49667. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49668. {
  49669. front: {
  49670. height: math.unit(1.75, "meters"),
  49671. name: "Front",
  49672. image: {
  49673. source: "./media/characters/misu/front.svg",
  49674. extra: 1690/1558,
  49675. bottom: 234/1924
  49676. }
  49677. },
  49678. back: {
  49679. height: math.unit(1.75, "meters"),
  49680. name: "Back",
  49681. image: {
  49682. source: "./media/characters/misu/back.svg",
  49683. extra: 1762/1618,
  49684. bottom: 146/1908
  49685. }
  49686. },
  49687. frontNude: {
  49688. height: math.unit(1.75, "meters"),
  49689. name: "Front (Nude)",
  49690. image: {
  49691. source: "./media/characters/misu/front-nude.svg",
  49692. extra: 1690/1558,
  49693. bottom: 234/1924
  49694. }
  49695. },
  49696. backNude: {
  49697. height: math.unit(1.75, "meters"),
  49698. name: "Back (Nude)",
  49699. image: {
  49700. source: "./media/characters/misu/back-nude.svg",
  49701. extra: 1762/1618,
  49702. bottom: 146/1908
  49703. }
  49704. },
  49705. frontErect: {
  49706. height: math.unit(1.75, "meters"),
  49707. name: "Front (Erect)",
  49708. image: {
  49709. source: "./media/characters/misu/front-erect.svg",
  49710. extra: 1690/1558,
  49711. bottom: 234/1924
  49712. }
  49713. },
  49714. maw: {
  49715. height: math.unit(0.47, "meters"),
  49716. name: "Maw",
  49717. image: {
  49718. source: "./media/characters/misu/maw.svg"
  49719. }
  49720. },
  49721. head: {
  49722. height: math.unit(0.35, "meters"),
  49723. name: "Head",
  49724. image: {
  49725. source: "./media/characters/misu/head.svg"
  49726. }
  49727. },
  49728. rear: {
  49729. height: math.unit(0.47, "meters"),
  49730. name: "Rear",
  49731. image: {
  49732. source: "./media/characters/misu/rear.svg"
  49733. }
  49734. },
  49735. },
  49736. [
  49737. {
  49738. name: "Normal",
  49739. height: math.unit(1.75, "meters")
  49740. },
  49741. {
  49742. name: "Not good for the people",
  49743. height: math.unit(42, "meters")
  49744. },
  49745. {
  49746. name: "Not good for the neighborhood",
  49747. height: math.unit(135, "meters")
  49748. },
  49749. {
  49750. name: "Bit bigger problem",
  49751. height: math.unit(380, "meters"),
  49752. default: true
  49753. },
  49754. {
  49755. name: "Not good for the city",
  49756. height: math.unit(1.5, "km")
  49757. },
  49758. {
  49759. name: "Not good for the county",
  49760. height: math.unit(5.5, "km")
  49761. },
  49762. {
  49763. name: "Not good for the state",
  49764. height: math.unit(25, "km")
  49765. },
  49766. {
  49767. name: "Not good for the country",
  49768. height: math.unit(125, "km")
  49769. },
  49770. {
  49771. name: "Not good for the continent",
  49772. height: math.unit(2100, "km")
  49773. },
  49774. {
  49775. name: "Not good for the planet",
  49776. height: math.unit(35000, "km")
  49777. },
  49778. {
  49779. name: "Just no",
  49780. height: math.unit(8.5e18, "km")
  49781. },
  49782. ]
  49783. ))
  49784. characterMakers.push(() => makeCharacter(
  49785. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49786. {
  49787. front: {
  49788. height: math.unit(6.5, "feet"),
  49789. name: "Front",
  49790. image: {
  49791. source: "./media/characters/poppy/front.svg",
  49792. extra: 1878/1812,
  49793. bottom: 43/1921
  49794. }
  49795. },
  49796. feet: {
  49797. height: math.unit(1.06, "feet"),
  49798. name: "Feet",
  49799. image: {
  49800. source: "./media/characters/poppy/feet.svg",
  49801. extra: 1083/1083,
  49802. bottom: 87/1170
  49803. }
  49804. },
  49805. },
  49806. [
  49807. {
  49808. name: "Human",
  49809. height: math.unit(6.5, "feet")
  49810. },
  49811. {
  49812. name: "Default",
  49813. height: math.unit(300, "feet"),
  49814. default: true
  49815. },
  49816. {
  49817. name: "Huge",
  49818. height: math.unit(850, "feet")
  49819. },
  49820. {
  49821. name: "Mega",
  49822. height: math.unit(8000, "feet")
  49823. },
  49824. {
  49825. name: "Giga",
  49826. height: math.unit(300, "miles")
  49827. },
  49828. ]
  49829. ))
  49830. characterMakers.push(() => makeCharacter(
  49831. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49832. {
  49833. bipedal: {
  49834. height: math.unit(7, "feet"),
  49835. name: "Bipedal",
  49836. image: {
  49837. source: "./media/characters/zener/bipedal.svg",
  49838. extra: 874/805,
  49839. bottom: 109/983
  49840. }
  49841. },
  49842. quadrupedal: {
  49843. height: math.unit(4.64, "feet"),
  49844. name: "Quadrupedal",
  49845. image: {
  49846. source: "./media/characters/zener/quadrupedal.svg",
  49847. extra: 638/507,
  49848. bottom: 190/828
  49849. }
  49850. },
  49851. cock: {
  49852. height: math.unit(18, "inches"),
  49853. name: "Cock",
  49854. image: {
  49855. source: "./media/characters/zener/cock.svg"
  49856. }
  49857. },
  49858. },
  49859. [
  49860. {
  49861. name: "Normal",
  49862. height: math.unit(7, "feet"),
  49863. default: true
  49864. },
  49865. ]
  49866. ))
  49867. characterMakers.push(() => makeCharacter(
  49868. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49869. {
  49870. nude: {
  49871. height: math.unit(5 + 6/12, "feet"),
  49872. name: "Nude",
  49873. image: {
  49874. source: "./media/characters/charlie-dog/nude.svg",
  49875. extra: 768/734,
  49876. bottom: 26/794
  49877. }
  49878. },
  49879. dressed: {
  49880. height: math.unit(5 + 6/12, "feet"),
  49881. name: "Dressed",
  49882. image: {
  49883. source: "./media/characters/charlie-dog/dressed.svg",
  49884. extra: 768/734,
  49885. bottom: 26/794
  49886. }
  49887. },
  49888. },
  49889. [
  49890. {
  49891. name: "Normal",
  49892. height: math.unit(5 + 6/12, "feet"),
  49893. default: true
  49894. },
  49895. ]
  49896. ))
  49897. characterMakers.push(() => makeCharacter(
  49898. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49899. {
  49900. front: {
  49901. height: math.unit(6 + 4/12, "feet"),
  49902. name: "Front",
  49903. image: {
  49904. source: "./media/characters/ir'istrasz/front.svg",
  49905. extra: 1014/977,
  49906. bottom: 65/1079
  49907. }
  49908. },
  49909. back: {
  49910. height: math.unit(6 + 4/12, "feet"),
  49911. name: "Back",
  49912. image: {
  49913. source: "./media/characters/ir'istrasz/back.svg",
  49914. extra: 1024/992,
  49915. bottom: 34/1058
  49916. }
  49917. },
  49918. },
  49919. [
  49920. {
  49921. name: "Normal",
  49922. height: math.unit(6 + 4/12, "feet"),
  49923. default: true
  49924. },
  49925. ]
  49926. ))
  49927. characterMakers.push(() => makeCharacter(
  49928. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  49929. {
  49930. front: {
  49931. height: math.unit(5 + 8/12, "feet"),
  49932. name: "Front",
  49933. image: {
  49934. source: "./media/characters/dee-ditto/front.svg",
  49935. extra: 1874/1785,
  49936. bottom: 68/1942
  49937. }
  49938. },
  49939. back: {
  49940. height: math.unit(5 + 8/12, "feet"),
  49941. name: "Back",
  49942. image: {
  49943. source: "./media/characters/dee-ditto/back.svg",
  49944. extra: 1870/1783,
  49945. bottom: 77/1947
  49946. }
  49947. },
  49948. },
  49949. [
  49950. {
  49951. name: "Normal",
  49952. height: math.unit(5 + 8/12, "feet"),
  49953. default: true
  49954. },
  49955. ]
  49956. ))
  49957. characterMakers.push(() => makeCharacter(
  49958. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  49959. {
  49960. front: {
  49961. height: math.unit(7 + 6/12, "feet"),
  49962. name: "Front",
  49963. image: {
  49964. source: "./media/characters/fey/front.svg",
  49965. extra: 995/979,
  49966. bottom: 30/1025
  49967. }
  49968. },
  49969. back: {
  49970. height: math.unit(7 + 6/12, "feet"),
  49971. name: "Back",
  49972. image: {
  49973. source: "./media/characters/fey/back.svg",
  49974. extra: 1079/1008,
  49975. bottom: 5/1084
  49976. }
  49977. },
  49978. dressed: {
  49979. height: math.unit(7 + 6/12, "feet"),
  49980. name: "Dressed",
  49981. image: {
  49982. source: "./media/characters/fey/dressed.svg",
  49983. extra: 995/979,
  49984. bottom: 30/1025
  49985. }
  49986. },
  49987. },
  49988. [
  49989. {
  49990. name: "Normal",
  49991. height: math.unit(7 + 6/12, "feet"),
  49992. default: true
  49993. },
  49994. ]
  49995. ))
  49996. characterMakers.push(() => makeCharacter(
  49997. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  49998. {
  49999. standing: {
  50000. height: math.unit(17, "feet"),
  50001. name: "Standing",
  50002. image: {
  50003. source: "./media/characters/aster/standing.svg",
  50004. extra: 1798/1598,
  50005. bottom: 117/1915
  50006. }
  50007. },
  50008. },
  50009. [
  50010. {
  50011. name: "Normal",
  50012. height: math.unit(17, "feet"),
  50013. default: true
  50014. },
  50015. {
  50016. name: "Homewrecker",
  50017. height: math.unit(95, "feet")
  50018. },
  50019. {
  50020. name: "Planet Devourer",
  50021. height: math.unit(1008000, "miles")
  50022. },
  50023. ]
  50024. ))
  50025. characterMakers.push(() => makeCharacter(
  50026. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50027. {
  50028. front: {
  50029. height: math.unit(6 + 5/12, "feet"),
  50030. weight: math.unit(265, "lb"),
  50031. name: "Front",
  50032. image: {
  50033. source: "./media/characters/devon-childs/front.svg",
  50034. extra: 1795/1721,
  50035. bottom: 41/1836
  50036. }
  50037. },
  50038. side: {
  50039. height: math.unit(6 + 5/12, "feet"),
  50040. weight: math.unit(265, "lb"),
  50041. name: "Side",
  50042. image: {
  50043. source: "./media/characters/devon-childs/side.svg",
  50044. extra: 1812/1738,
  50045. bottom: 30/1842
  50046. }
  50047. },
  50048. back: {
  50049. height: math.unit(6 + 5/12, "feet"),
  50050. weight: math.unit(265, "lb"),
  50051. name: "Back",
  50052. image: {
  50053. source: "./media/characters/devon-childs/back.svg",
  50054. extra: 1808/1735,
  50055. bottom: 23/1831
  50056. }
  50057. },
  50058. hand: {
  50059. height: math.unit(1.464, "feet"),
  50060. name: "Hand",
  50061. image: {
  50062. source: "./media/characters/devon-childs/hand.svg"
  50063. }
  50064. },
  50065. foot: {
  50066. height: math.unit(1.6, "feet"),
  50067. name: "Foot",
  50068. image: {
  50069. source: "./media/characters/devon-childs/foot.svg"
  50070. }
  50071. },
  50072. },
  50073. [
  50074. {
  50075. name: "Micro",
  50076. height: math.unit(7, "cm")
  50077. },
  50078. {
  50079. name: "Normal",
  50080. height: math.unit(6 + 5/12, "feet"),
  50081. default: true
  50082. },
  50083. {
  50084. name: "Macro",
  50085. height: math.unit(154, "feet")
  50086. },
  50087. ]
  50088. ))
  50089. characterMakers.push(() => makeCharacter(
  50090. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50091. {
  50092. front: {
  50093. height: math.unit(6, "feet"),
  50094. weight: math.unit(180, "lb"),
  50095. name: "Front",
  50096. image: {
  50097. source: "./media/characters/lydemox-vir/front.svg",
  50098. extra: 1632/1435,
  50099. bottom: 58/1690
  50100. }
  50101. },
  50102. frontSFW: {
  50103. height: math.unit(6, "feet"),
  50104. weight: math.unit(180, "lb"),
  50105. name: "Front (SFW)",
  50106. image: {
  50107. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50108. extra: 1632/1435,
  50109. bottom: 58/1690
  50110. }
  50111. },
  50112. back: {
  50113. height: math.unit(6, "feet"),
  50114. weight: math.unit(180, "lb"),
  50115. name: "Back",
  50116. image: {
  50117. source: "./media/characters/lydemox-vir/back.svg",
  50118. extra: 1593/1408,
  50119. bottom: 31/1624
  50120. }
  50121. },
  50122. paw: {
  50123. height: math.unit(1.85, "feet"),
  50124. name: "Paw",
  50125. image: {
  50126. source: "./media/characters/lydemox-vir/paw.svg"
  50127. }
  50128. },
  50129. dick: {
  50130. height: math.unit(1.8, "feet"),
  50131. name: "Dick",
  50132. image: {
  50133. source: "./media/characters/lydemox-vir/dick.svg"
  50134. }
  50135. },
  50136. },
  50137. [
  50138. {
  50139. name: "Macro",
  50140. height: math.unit(100, "feet"),
  50141. default: true
  50142. },
  50143. {
  50144. name: "Teramacro",
  50145. height: math.unit(1, "earth")
  50146. },
  50147. {
  50148. name: "Planetary",
  50149. height: math.unit(20, "earths")
  50150. },
  50151. ]
  50152. ))
  50153. characterMakers.push(() => makeCharacter(
  50154. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50155. {
  50156. front: {
  50157. height: math.unit(15 + 8/12, "feet"),
  50158. weight: math.unit(1237, "kg"),
  50159. name: "Front",
  50160. image: {
  50161. source: "./media/characters/mia/front.svg",
  50162. extra: 1573/1446,
  50163. bottom: 58/1631
  50164. }
  50165. },
  50166. },
  50167. [
  50168. {
  50169. name: "Small",
  50170. height: math.unit(9 + 5/12, "feet")
  50171. },
  50172. {
  50173. name: "Normal",
  50174. height: math.unit(15 + 8/12, "feet"),
  50175. default: true
  50176. },
  50177. ]
  50178. ))
  50179. characterMakers.push(() => makeCharacter(
  50180. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50181. {
  50182. front: {
  50183. height: math.unit(10 + 6/12, "feet"),
  50184. weight: math.unit(1.3, "tons"),
  50185. name: "Front",
  50186. image: {
  50187. source: "./media/characters/mr-graves/front.svg",
  50188. extra: 1779/1695,
  50189. bottom: 198/1977
  50190. }
  50191. },
  50192. },
  50193. [
  50194. {
  50195. name: "Normal",
  50196. height: math.unit(10 + 6 /12, "feet"),
  50197. default: true
  50198. },
  50199. ]
  50200. ))
  50201. characterMakers.push(() => makeCharacter(
  50202. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50203. {
  50204. dressedFront: {
  50205. height: math.unit(5 + 8/12, "feet"),
  50206. weight: math.unit(125, "lb"),
  50207. name: "Dressed (Front)",
  50208. image: {
  50209. source: "./media/characters/jess/dressed-front.svg",
  50210. extra: 1176/1152,
  50211. bottom: 42/1218
  50212. }
  50213. },
  50214. dressedSide: {
  50215. height: math.unit(5 + 8/12, "feet"),
  50216. weight: math.unit(125, "lb"),
  50217. name: "Dressed (Side)",
  50218. image: {
  50219. source: "./media/characters/jess/dressed-side.svg",
  50220. extra: 1204/1190,
  50221. bottom: 6/1210
  50222. }
  50223. },
  50224. nudeFront: {
  50225. height: math.unit(5 + 8/12, "feet"),
  50226. weight: math.unit(125, "lb"),
  50227. name: "Nude (Front)",
  50228. image: {
  50229. source: "./media/characters/jess/nude-front.svg",
  50230. extra: 1176/1152,
  50231. bottom: 42/1218
  50232. }
  50233. },
  50234. nudeSide: {
  50235. height: math.unit(5 + 8/12, "feet"),
  50236. weight: math.unit(125, "lb"),
  50237. name: "Nude (Side)",
  50238. image: {
  50239. source: "./media/characters/jess/nude-side.svg",
  50240. extra: 1204/1190,
  50241. bottom: 6/1210
  50242. }
  50243. },
  50244. organsFront: {
  50245. height: math.unit(2.83799342105, "feet"),
  50246. name: "Organs (Front)",
  50247. image: {
  50248. source: "./media/characters/jess/organs-front.svg"
  50249. }
  50250. },
  50251. organsSide: {
  50252. height: math.unit(2.64225290474, "feet"),
  50253. name: "Organs (Side)",
  50254. image: {
  50255. source: "./media/characters/jess/organs-side.svg"
  50256. }
  50257. },
  50258. digestiveTractFront: {
  50259. height: math.unit(2.8106580871, "feet"),
  50260. name: "Digestive Tract (Front)",
  50261. image: {
  50262. source: "./media/characters/jess/digestive-tract-front.svg"
  50263. }
  50264. },
  50265. digestiveTractSide: {
  50266. height: math.unit(2.54365045014, "feet"),
  50267. name: "Digestive Tract (Side)",
  50268. image: {
  50269. source: "./media/characters/jess/digestive-tract-side.svg"
  50270. }
  50271. },
  50272. respiratorySystemFront: {
  50273. height: math.unit(1.11196233456, "feet"),
  50274. name: "Respiratory System (Front)",
  50275. image: {
  50276. source: "./media/characters/jess/respiratory-system-front.svg"
  50277. }
  50278. },
  50279. respiratorySystemSide: {
  50280. height: math.unit(0.89327966297, "feet"),
  50281. name: "Respiratory System (Side)",
  50282. image: {
  50283. source: "./media/characters/jess/respiratory-system-side.svg"
  50284. }
  50285. },
  50286. urinaryTractFront: {
  50287. height: math.unit(1.16126356186, "feet"),
  50288. name: "Urinary Tract (Front)",
  50289. image: {
  50290. source: "./media/characters/jess/urinary-tract-front.svg"
  50291. }
  50292. },
  50293. urinaryTractSide: {
  50294. height: math.unit(1.20910039627, "feet"),
  50295. name: "Urinary Tract (Side)",
  50296. image: {
  50297. source: "./media/characters/jess/urinary-tract-side.svg"
  50298. }
  50299. },
  50300. reproductiveOrgansFront: {
  50301. height: math.unit(0.48422591566, "feet"),
  50302. name: "Reproductive Organs (Front)",
  50303. image: {
  50304. source: "./media/characters/jess/reproductive-organs-front.svg"
  50305. }
  50306. },
  50307. reproductiveOrgansSide: {
  50308. height: math.unit(0.61553314481, "feet"),
  50309. name: "Reproductive Organs (Side)",
  50310. image: {
  50311. source: "./media/characters/jess/reproductive-organs-side.svg"
  50312. }
  50313. },
  50314. breastsFront: {
  50315. height: math.unit(0.47690395121, "feet"),
  50316. name: "Breasts (Front)",
  50317. image: {
  50318. source: "./media/characters/jess/breasts-front.svg"
  50319. }
  50320. },
  50321. breastsSide: {
  50322. height: math.unit(0.30556998307, "feet"),
  50323. name: "Breasts (Side)",
  50324. image: {
  50325. source: "./media/characters/jess/breasts-side.svg"
  50326. }
  50327. },
  50328. heartFront: {
  50329. height: math.unit(0.53011022622, "feet"),
  50330. name: "Heart (Front)",
  50331. image: {
  50332. source: "./media/characters/jess/heart-front.svg"
  50333. }
  50334. },
  50335. heartSide: {
  50336. height: math.unit(0.51790695213, "feet"),
  50337. name: "Heart (Side)",
  50338. image: {
  50339. source: "./media/characters/jess/heart-side.svg"
  50340. }
  50341. },
  50342. earsAndNoseFront: {
  50343. height: math.unit(0.29385483995, "feet"),
  50344. name: "Ears and Nose (Front)",
  50345. image: {
  50346. source: "./media/characters/jess/ears-and-nose-front.svg"
  50347. }
  50348. },
  50349. earsAndNoseSide: {
  50350. height: math.unit(0.18109658741, "feet"),
  50351. name: "Ears and Nose (Side)",
  50352. image: {
  50353. source: "./media/characters/jess/ears-and-nose-side.svg"
  50354. }
  50355. },
  50356. },
  50357. [
  50358. {
  50359. name: "Normal",
  50360. height: math.unit(5 + 8/12, "feet"),
  50361. default: true
  50362. },
  50363. ]
  50364. ))
  50365. characterMakers.push(() => makeCharacter(
  50366. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50367. {
  50368. front: {
  50369. height: math.unit(6, "feet"),
  50370. weight: math.unit(6.64467e-7, "grams"),
  50371. name: "Front",
  50372. image: {
  50373. source: "./media/characters/wimpering/front.svg",
  50374. extra: 597/587,
  50375. bottom: 34/631
  50376. }
  50377. },
  50378. },
  50379. [
  50380. {
  50381. name: "Micro",
  50382. height: math.unit(0.4, "mm"),
  50383. default: true
  50384. },
  50385. ]
  50386. ))
  50387. characterMakers.push(() => makeCharacter(
  50388. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50389. {
  50390. front: {
  50391. height: math.unit(5 + 2/12, "feet"),
  50392. weight: math.unit(110, "lb"),
  50393. name: "Front",
  50394. image: {
  50395. source: "./media/characters/keltre/front.svg",
  50396. extra: 1099/1057,
  50397. bottom: 22/1121
  50398. }
  50399. },
  50400. back: {
  50401. height: math.unit(5 + 2/12, "feet"),
  50402. weight: math.unit(110, "lb"),
  50403. name: "Back",
  50404. image: {
  50405. source: "./media/characters/keltre/back.svg",
  50406. extra: 1095/1053,
  50407. bottom: 17/1112
  50408. }
  50409. },
  50410. dressed: {
  50411. height: math.unit(5 + 2/12, "feet"),
  50412. weight: math.unit(110, "lb"),
  50413. name: "Dressed",
  50414. image: {
  50415. source: "./media/characters/keltre/dressed.svg",
  50416. extra: 1099/1057,
  50417. bottom: 22/1121
  50418. }
  50419. },
  50420. winter: {
  50421. height: math.unit(5 + 2/12, "feet"),
  50422. weight: math.unit(110, "lb"),
  50423. name: "Winter",
  50424. image: {
  50425. source: "./media/characters/keltre/winter.svg",
  50426. extra: 1099/1057,
  50427. bottom: 22/1121
  50428. }
  50429. },
  50430. head: {
  50431. height: math.unit(1.61 * 0.86, "feet"),
  50432. name: "Head",
  50433. image: {
  50434. source: "./media/characters/keltre/head.svg",
  50435. extra: 534/421,
  50436. bottom: 0/534
  50437. }
  50438. },
  50439. hand: {
  50440. height: math.unit(1.3 * 0.86, "feet"),
  50441. name: "Hand",
  50442. image: {
  50443. source: "./media/characters/keltre/hand.svg"
  50444. }
  50445. },
  50446. foot: {
  50447. height: math.unit(1.8 * 0.86, "feet"),
  50448. name: "Foot",
  50449. image: {
  50450. source: "./media/characters/keltre/foot.svg"
  50451. }
  50452. },
  50453. },
  50454. [
  50455. {
  50456. name: "Fine",
  50457. height: math.unit(1, "inch")
  50458. },
  50459. {
  50460. name: "Dimnutive",
  50461. height: math.unit(4, "inches")
  50462. },
  50463. {
  50464. name: "Tiny",
  50465. height: math.unit(1, "foot")
  50466. },
  50467. {
  50468. name: "Small",
  50469. height: math.unit(3, "feet")
  50470. },
  50471. {
  50472. name: "Normal",
  50473. height: math.unit(5 + 2/12, "feet"),
  50474. default: true
  50475. },
  50476. ]
  50477. ))
  50478. characterMakers.push(() => makeCharacter(
  50479. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50480. {
  50481. front: {
  50482. height: math.unit(6 + 2/12, "feet"),
  50483. name: "Front",
  50484. image: {
  50485. source: "./media/characters/nox/front.svg",
  50486. extra: 1917/1830,
  50487. bottom: 74/1991
  50488. }
  50489. },
  50490. back: {
  50491. height: math.unit(6 + 2/12, "feet"),
  50492. name: "Back",
  50493. image: {
  50494. source: "./media/characters/nox/back.svg",
  50495. extra: 1896/1815,
  50496. bottom: 21/1917
  50497. }
  50498. },
  50499. head: {
  50500. height: math.unit(1.1, "feet"),
  50501. name: "Head",
  50502. image: {
  50503. source: "./media/characters/nox/head.svg",
  50504. extra: 874/704,
  50505. bottom: 0/874
  50506. }
  50507. },
  50508. tattoo: {
  50509. height: math.unit(0.729, "feet"),
  50510. name: "Tattoo",
  50511. image: {
  50512. source: "./media/characters/nox/tattoo.svg"
  50513. }
  50514. },
  50515. },
  50516. [
  50517. {
  50518. name: "Normal",
  50519. height: math.unit(6 + 2/12, "feet")
  50520. },
  50521. {
  50522. name: "Gigamacro",
  50523. height: math.unit(2, "earths"),
  50524. default: true
  50525. },
  50526. {
  50527. name: "Cosmic",
  50528. height: math.unit(867, "yottameters")
  50529. },
  50530. ]
  50531. ))
  50532. characterMakers.push(() => makeCharacter(
  50533. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50534. {
  50535. front: {
  50536. height: math.unit(6, "feet"),
  50537. weight: math.unit(150, "lb"),
  50538. name: "Front",
  50539. image: {
  50540. source: "./media/characters/caspian/front.svg",
  50541. extra: 1443/1359,
  50542. bottom: 0/1443
  50543. }
  50544. },
  50545. back: {
  50546. height: math.unit(6, "feet"),
  50547. weight: math.unit(150, "lb"),
  50548. name: "Back",
  50549. image: {
  50550. source: "./media/characters/caspian/back.svg",
  50551. extra: 1379/1309,
  50552. bottom: 0/1379
  50553. }
  50554. },
  50555. head: {
  50556. height: math.unit(0.9, "feet"),
  50557. name: "Head",
  50558. image: {
  50559. source: "./media/characters/caspian/head.svg",
  50560. extra: 692/492,
  50561. bottom: 0/692
  50562. }
  50563. },
  50564. headAlt: {
  50565. height: math.unit(0.95, "feet"),
  50566. name: "Head (Alt)",
  50567. image: {
  50568. source: "./media/characters/caspian/head-alt.svg",
  50569. extra: 668/508,
  50570. bottom: 0/668
  50571. }
  50572. },
  50573. hand: {
  50574. height: math.unit(0.8, "feet"),
  50575. name: "Hand",
  50576. image: {
  50577. source: "./media/characters/caspian/hand.svg"
  50578. }
  50579. },
  50580. paw: {
  50581. height: math.unit(0.95, "feet"),
  50582. name: "Paw",
  50583. image: {
  50584. source: "./media/characters/caspian/paw.svg"
  50585. }
  50586. },
  50587. },
  50588. [
  50589. {
  50590. name: "Normal",
  50591. height: math.unit(162, "feet"),
  50592. default: true
  50593. },
  50594. ]
  50595. ))
  50596. characterMakers.push(() => makeCharacter(
  50597. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50598. {
  50599. front: {
  50600. height: math.unit(6, "feet"),
  50601. name: "Front",
  50602. image: {
  50603. source: "./media/characters/myra-aisling/front.svg",
  50604. extra: 1268/1166,
  50605. bottom: 73/1341
  50606. }
  50607. },
  50608. back: {
  50609. height: math.unit(6, "feet"),
  50610. name: "Back",
  50611. image: {
  50612. source: "./media/characters/myra-aisling/back.svg",
  50613. extra: 1249/1149,
  50614. bottom: 79/1328
  50615. }
  50616. },
  50617. dressed: {
  50618. height: math.unit(6, "feet"),
  50619. name: "Dressed",
  50620. image: {
  50621. source: "./media/characters/myra-aisling/dressed.svg",
  50622. extra: 1290/1189,
  50623. bottom: 47/1337
  50624. }
  50625. },
  50626. hand: {
  50627. height: math.unit(1.1, "feet"),
  50628. name: "Hand",
  50629. image: {
  50630. source: "./media/characters/myra-aisling/hand.svg"
  50631. }
  50632. },
  50633. paw: {
  50634. height: math.unit(1.23, "feet"),
  50635. name: "Paw",
  50636. image: {
  50637. source: "./media/characters/myra-aisling/paw.svg"
  50638. }
  50639. },
  50640. },
  50641. [
  50642. {
  50643. name: "Normal",
  50644. height: math.unit(160, "feet"),
  50645. default: true
  50646. },
  50647. ]
  50648. ))
  50649. characterMakers.push(() => makeCharacter(
  50650. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50651. {
  50652. front: {
  50653. height: math.unit(6, "feet"),
  50654. name: "Front",
  50655. image: {
  50656. source: "./media/characters/tenley-sidero/front.svg",
  50657. extra: 1365/1276,
  50658. bottom: 47/1412
  50659. }
  50660. },
  50661. back: {
  50662. height: math.unit(6, "feet"),
  50663. name: "Back",
  50664. image: {
  50665. source: "./media/characters/tenley-sidero/back.svg",
  50666. extra: 1383/1283,
  50667. bottom: 35/1418
  50668. }
  50669. },
  50670. dressed: {
  50671. height: math.unit(6, "feet"),
  50672. name: "Dressed",
  50673. image: {
  50674. source: "./media/characters/tenley-sidero/dressed.svg",
  50675. extra: 1364/1275,
  50676. bottom: 42/1406
  50677. }
  50678. },
  50679. head: {
  50680. height: math.unit(1.47, "feet"),
  50681. name: "Head",
  50682. image: {
  50683. source: "./media/characters/tenley-sidero/head.svg",
  50684. extra: 610/490,
  50685. bottom: 0/610
  50686. }
  50687. },
  50688. },
  50689. [
  50690. {
  50691. name: "Normal",
  50692. height: math.unit(154, "feet"),
  50693. default: true
  50694. },
  50695. ]
  50696. ))
  50697. characterMakers.push(() => makeCharacter(
  50698. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50699. {
  50700. front: {
  50701. height: math.unit(5, "inches"),
  50702. name: "Front",
  50703. image: {
  50704. source: "./media/characters/mallory/front.svg",
  50705. extra: 1919/1678,
  50706. bottom: 29/1948
  50707. }
  50708. },
  50709. hand: {
  50710. height: math.unit(0.73, "inches"),
  50711. name: "Hand",
  50712. image: {
  50713. source: "./media/characters/mallory/hand.svg"
  50714. }
  50715. },
  50716. paw: {
  50717. height: math.unit(0.68, "inches"),
  50718. name: "Paw",
  50719. image: {
  50720. source: "./media/characters/mallory/paw.svg"
  50721. }
  50722. },
  50723. },
  50724. [
  50725. {
  50726. name: "Small",
  50727. height: math.unit(5, "inches"),
  50728. default: true
  50729. },
  50730. ]
  50731. ))
  50732. characterMakers.push(() => makeCharacter(
  50733. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50734. {
  50735. naked: {
  50736. height: math.unit(6, "feet"),
  50737. name: "Naked",
  50738. image: {
  50739. source: "./media/characters/mab/naked.svg",
  50740. extra: 1855/1757,
  50741. bottom: 208/2063
  50742. }
  50743. },
  50744. outside: {
  50745. height: math.unit(6, "feet"),
  50746. name: "Outside",
  50747. image: {
  50748. source: "./media/characters/mab/outside.svg",
  50749. extra: 1855/1757,
  50750. bottom: 208/2063
  50751. }
  50752. },
  50753. party: {
  50754. height: math.unit(6, "feet"),
  50755. name: "Party",
  50756. image: {
  50757. source: "./media/characters/mab/party.svg",
  50758. extra: 1855/1757,
  50759. bottom: 208/2063
  50760. }
  50761. },
  50762. },
  50763. [
  50764. {
  50765. name: "Normal",
  50766. height: math.unit(165, "feet"),
  50767. default: true
  50768. },
  50769. ]
  50770. ))
  50771. characterMakers.push(() => makeCharacter(
  50772. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50773. {
  50774. feral: {
  50775. height: math.unit(12, "feet"),
  50776. weight: math.unit(20000, "lb"),
  50777. name: "Side",
  50778. image: {
  50779. source: "./media/characters/winter/feral.svg",
  50780. extra: 1286/943,
  50781. bottom: 112/1398
  50782. },
  50783. form: "feral",
  50784. default: true
  50785. },
  50786. feralNsfw: {
  50787. height: math.unit(12, "feet"),
  50788. weight: math.unit(20000, "lb"),
  50789. name: "Side (NSFW)",
  50790. image: {
  50791. source: "./media/characters/winter/feral-nsfw.svg",
  50792. extra: 1286/943,
  50793. bottom: 112/1398
  50794. },
  50795. form: "feral"
  50796. },
  50797. dick: {
  50798. height: math.unit(3.79, "feet"),
  50799. name: "Dick",
  50800. image: {
  50801. source: "./media/characters/winter/dick.svg"
  50802. },
  50803. form: "feral"
  50804. },
  50805. anthro: {
  50806. height: math.unit(12, "feet"),
  50807. weight: math.unit(10, "tons"),
  50808. name: "Anthro",
  50809. image: {
  50810. source: "./media/characters/winter/anthro.svg",
  50811. extra: 1701/1553,
  50812. bottom: 64/1765
  50813. },
  50814. form: "anthro",
  50815. default: true
  50816. },
  50817. },
  50818. [
  50819. {
  50820. name: "Big",
  50821. height: math.unit(12, "feet"),
  50822. default: true,
  50823. form: "feral"
  50824. },
  50825. {
  50826. name: "Big",
  50827. height: math.unit(12, "feet"),
  50828. default: true,
  50829. form: "anthro"
  50830. },
  50831. ],
  50832. {
  50833. "feral": {
  50834. name: "Feral",
  50835. default: true
  50836. },
  50837. "anthro": {
  50838. name: "Anthro"
  50839. }
  50840. }
  50841. ))
  50842. characterMakers.push(() => makeCharacter(
  50843. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50844. {
  50845. front: {
  50846. height: math.unit(4.1, "inches"),
  50847. name: "Front",
  50848. image: {
  50849. source: "./media/characters/alto/front.svg",
  50850. extra: 736/627,
  50851. bottom: 90/826
  50852. }
  50853. },
  50854. },
  50855. [
  50856. {
  50857. name: "Normal",
  50858. height: math.unit(4.1, "inches"),
  50859. default: true
  50860. },
  50861. ]
  50862. ))
  50863. characterMakers.push(() => makeCharacter(
  50864. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50865. {
  50866. sitting: {
  50867. height: math.unit(3, "feet"),
  50868. name: "Sitting",
  50869. image: {
  50870. source: "./media/characters/ratstrid-v/sitting.svg",
  50871. extra: 355/310,
  50872. bottom: 136/491
  50873. }
  50874. },
  50875. },
  50876. [
  50877. {
  50878. name: "Normal",
  50879. height: math.unit(3, "feet"),
  50880. default: true
  50881. },
  50882. ]
  50883. ))
  50884. characterMakers.push(() => makeCharacter(
  50885. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50886. {
  50887. back: {
  50888. height: math.unit(6, "feet"),
  50889. weight: math.unit(450, "lb"),
  50890. name: "Back",
  50891. image: {
  50892. source: "./media/characters/siz/back.svg",
  50893. extra: 1449/1274,
  50894. bottom: 13/1462
  50895. }
  50896. },
  50897. },
  50898. [
  50899. {
  50900. name: "Smallest",
  50901. height: math.unit(18 + 3/12, "feet")
  50902. },
  50903. {
  50904. name: "Modest",
  50905. height: math.unit(56 + 8/12, "feet"),
  50906. default: true
  50907. },
  50908. {
  50909. name: "Largest",
  50910. height: math.unit(3590, "feet")
  50911. },
  50912. ]
  50913. ))
  50914. characterMakers.push(() => makeCharacter(
  50915. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  50916. {
  50917. front: {
  50918. height: math.unit(5 + 9/12, "feet"),
  50919. weight: math.unit(150, "lb"),
  50920. name: "Front",
  50921. image: {
  50922. source: "./media/characters/ven/front.svg",
  50923. extra: 1372/1320,
  50924. bottom: 73/1445
  50925. }
  50926. },
  50927. side: {
  50928. height: math.unit(5 + 9/12, "feet"),
  50929. weight: math.unit(1150, "lb"),
  50930. name: "Side",
  50931. image: {
  50932. source: "./media/characters/ven/side.svg",
  50933. extra: 1119/1070,
  50934. bottom: 42/1161
  50935. },
  50936. default: true
  50937. },
  50938. },
  50939. [
  50940. {
  50941. name: "Normal",
  50942. height: math.unit(5 + 9/12, "feet"),
  50943. default: true
  50944. },
  50945. ]
  50946. ))
  50947. characterMakers.push(() => makeCharacter(
  50948. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  50949. {
  50950. front: {
  50951. height: math.unit(12, "feet"),
  50952. weight: math.unit(1000, "kg"),
  50953. name: "Front",
  50954. image: {
  50955. source: "./media/characters/maple/front.svg",
  50956. extra: 1193/1081,
  50957. bottom: 22/1215
  50958. }
  50959. },
  50960. },
  50961. [
  50962. {
  50963. name: "Compressed",
  50964. height: math.unit(7, "feet")
  50965. },
  50966. {
  50967. name: "Normal",
  50968. height: math.unit(12, "feet"),
  50969. default: true
  50970. },
  50971. ]
  50972. ))
  50973. characterMakers.push(() => makeCharacter(
  50974. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  50975. {
  50976. front: {
  50977. height: math.unit(9, "feet"),
  50978. weight: math.unit(1500, "lb"),
  50979. name: "Front",
  50980. image: {
  50981. source: "./media/characters/nora/front.svg",
  50982. extra: 1348/1286,
  50983. bottom: 218/1566
  50984. }
  50985. },
  50986. erect: {
  50987. height: math.unit(9, "feet"),
  50988. weight: math.unit(11500, "lb"),
  50989. name: "Erect",
  50990. image: {
  50991. source: "./media/characters/nora/erect.svg",
  50992. extra: 1488/1433,
  50993. bottom: 133/1621
  50994. }
  50995. },
  50996. },
  50997. [
  50998. {
  50999. name: "Normal",
  51000. height: math.unit(9, "feet"),
  51001. default: true
  51002. },
  51003. ]
  51004. ))
  51005. characterMakers.push(() => makeCharacter(
  51006. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51007. {
  51008. front: {
  51009. height: math.unit(25, "feet"),
  51010. weight: math.unit(27500, "lb"),
  51011. name: "Front",
  51012. image: {
  51013. source: "./media/characters/north-caudin/front.svg",
  51014. extra: 1184/1082,
  51015. bottom: 23/1207
  51016. }
  51017. },
  51018. },
  51019. [
  51020. {
  51021. name: "Compressed",
  51022. height: math.unit(10, "feet")
  51023. },
  51024. {
  51025. name: "Normal",
  51026. height: math.unit(25, "feet"),
  51027. default: true
  51028. },
  51029. ]
  51030. ))
  51031. characterMakers.push(() => makeCharacter(
  51032. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51033. {
  51034. front: {
  51035. height: math.unit(9, "feet"),
  51036. weight: math.unit(1250, "lb"),
  51037. name: "Front",
  51038. image: {
  51039. source: "./media/characters/merrian/front.svg",
  51040. extra: 2393/2304,
  51041. bottom: 40/2433
  51042. }
  51043. },
  51044. },
  51045. [
  51046. {
  51047. name: "Normal",
  51048. height: math.unit(9, "feet"),
  51049. default: true
  51050. },
  51051. ]
  51052. ))
  51053. characterMakers.push(() => makeCharacter(
  51054. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51055. {
  51056. front: {
  51057. height: math.unit(9, "feet"),
  51058. weight: math.unit(1000, "lb"),
  51059. name: "Front",
  51060. image: {
  51061. source: "./media/characters/hazel/front.svg",
  51062. extra: 2351/2298,
  51063. bottom: 38/2389
  51064. }
  51065. },
  51066. },
  51067. [
  51068. {
  51069. name: "Normal",
  51070. height: math.unit(9, "feet"),
  51071. default: true
  51072. },
  51073. ]
  51074. ))
  51075. characterMakers.push(() => makeCharacter(
  51076. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51077. {
  51078. front: {
  51079. height: math.unit(13, "feet"),
  51080. weight: math.unit(3200, "lb"),
  51081. name: "Front",
  51082. image: {
  51083. source: "./media/characters/emma/front.svg",
  51084. extra: 2263/2029,
  51085. bottom: 68/2331
  51086. }
  51087. },
  51088. },
  51089. [
  51090. {
  51091. name: "Normal",
  51092. height: math.unit(13, "feet"),
  51093. default: true
  51094. },
  51095. ]
  51096. ))
  51097. characterMakers.push(() => makeCharacter(
  51098. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51099. {
  51100. front: {
  51101. height: math.unit(11 + 9/12, "feet"),
  51102. weight: math.unit(2500, "lb"),
  51103. name: "Front",
  51104. image: {
  51105. source: "./media/characters/ilumina/front.svg",
  51106. extra: 2248/2209,
  51107. bottom: 164/2412
  51108. }
  51109. },
  51110. },
  51111. [
  51112. {
  51113. name: "Normal",
  51114. height: math.unit(11 + 9/12, "feet"),
  51115. default: true
  51116. },
  51117. ]
  51118. ))
  51119. characterMakers.push(() => makeCharacter(
  51120. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51121. {
  51122. front: {
  51123. height: math.unit(8 + 10/12, "feet"),
  51124. weight: math.unit(1350, "lb"),
  51125. name: "Front",
  51126. image: {
  51127. source: "./media/characters/moonshine/front.svg",
  51128. extra: 2395/2288,
  51129. bottom: 40/2435
  51130. }
  51131. },
  51132. },
  51133. [
  51134. {
  51135. name: "Normal",
  51136. height: math.unit(8 + 10/12, "feet"),
  51137. default: true
  51138. },
  51139. ]
  51140. ))
  51141. characterMakers.push(() => makeCharacter(
  51142. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51143. {
  51144. front: {
  51145. height: math.unit(14, "feet"),
  51146. weight: math.unit(3400, "lb"),
  51147. name: "Front",
  51148. image: {
  51149. source: "./media/characters/aletia/front.svg",
  51150. extra: 1185/1052,
  51151. bottom: 21/1206
  51152. }
  51153. },
  51154. },
  51155. [
  51156. {
  51157. name: "Compressed",
  51158. height: math.unit(8, "feet")
  51159. },
  51160. {
  51161. name: "Normal",
  51162. height: math.unit(14, "feet"),
  51163. default: true
  51164. },
  51165. ]
  51166. ))
  51167. characterMakers.push(() => makeCharacter(
  51168. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51169. {
  51170. front: {
  51171. height: math.unit(17, "feet"),
  51172. weight: math.unit(6500, "lb"),
  51173. name: "Front",
  51174. image: {
  51175. source: "./media/characters/deidra/front.svg",
  51176. extra: 1201/1081,
  51177. bottom: 16/1217
  51178. }
  51179. },
  51180. },
  51181. [
  51182. {
  51183. name: "Compressed",
  51184. height: math.unit(9 + 6/12, "feet")
  51185. },
  51186. {
  51187. name: "Normal",
  51188. height: math.unit(17, "feet"),
  51189. default: true
  51190. },
  51191. ]
  51192. ))
  51193. characterMakers.push(() => makeCharacter(
  51194. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51195. {
  51196. front: {
  51197. height: math.unit(7 + 4/12, "feet"),
  51198. weight: math.unit(280, "lb"),
  51199. name: "Front",
  51200. image: {
  51201. source: "./media/characters/freki-yrmori/front.svg",
  51202. extra: 1286/1182,
  51203. bottom: 29/1315
  51204. }
  51205. },
  51206. maw: {
  51207. height: math.unit(0.9, "feet"),
  51208. name: "Maw",
  51209. image: {
  51210. source: "./media/characters/freki-yrmori/maw.svg"
  51211. }
  51212. },
  51213. },
  51214. [
  51215. {
  51216. name: "Normal",
  51217. height: math.unit(7 + 4/12, "feet"),
  51218. default: true
  51219. },
  51220. {
  51221. name: "Macro",
  51222. height: math.unit(38.5, "meters")
  51223. },
  51224. ]
  51225. ))
  51226. characterMakers.push(() => makeCharacter(
  51227. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51228. {
  51229. side: {
  51230. height: math.unit(47.2, "meters"),
  51231. weight: math.unit(10000, "tons"),
  51232. name: "Side",
  51233. image: {
  51234. source: "./media/characters/aetherios/side.svg",
  51235. extra: 2363/642,
  51236. bottom: 221/2584
  51237. }
  51238. },
  51239. top: {
  51240. height: math.unit(240, "meters"),
  51241. weight: math.unit(10000, "tons"),
  51242. name: "Top",
  51243. image: {
  51244. source: "./media/characters/aetherios/top.svg"
  51245. }
  51246. },
  51247. bottom: {
  51248. height: math.unit(240, "meters"),
  51249. weight: math.unit(10000, "tons"),
  51250. name: "Bottom",
  51251. image: {
  51252. source: "./media/characters/aetherios/bottom.svg"
  51253. }
  51254. },
  51255. head: {
  51256. height: math.unit(38.6, "meters"),
  51257. name: "Head",
  51258. image: {
  51259. source: "./media/characters/aetherios/head.svg",
  51260. extra: 1335/1112,
  51261. bottom: 0/1335
  51262. }
  51263. },
  51264. front: {
  51265. height: math.unit(29, "meters"),
  51266. name: "Front",
  51267. image: {
  51268. source: "./media/characters/aetherios/front.svg",
  51269. extra: 1266/953,
  51270. bottom: 158/1424
  51271. }
  51272. },
  51273. maw: {
  51274. height: math.unit(16.37, "meters"),
  51275. name: "Maw",
  51276. image: {
  51277. source: "./media/characters/aetherios/maw.svg",
  51278. extra: 748/637,
  51279. bottom: 0/748
  51280. },
  51281. extraAttributes: {
  51282. preyCapacity: {
  51283. name: "Capacity",
  51284. power: 3,
  51285. type: "volume",
  51286. base: math.unit(1000, "people")
  51287. },
  51288. tongueSize: {
  51289. name: "Tongue Size",
  51290. power: 2,
  51291. type: "area",
  51292. base: math.unit(21, "m^2")
  51293. }
  51294. }
  51295. },
  51296. forepaw: {
  51297. height: math.unit(18, "meters"),
  51298. name: "Forepaw",
  51299. image: {
  51300. source: "./media/characters/aetherios/forepaw.svg"
  51301. }
  51302. },
  51303. hindpaw: {
  51304. height: math.unit(23, "meters"),
  51305. name: "Hindpaw",
  51306. image: {
  51307. source: "./media/characters/aetherios/hindpaw.svg"
  51308. }
  51309. },
  51310. genitals: {
  51311. height: math.unit(42, "meters"),
  51312. name: "Genitals",
  51313. image: {
  51314. source: "./media/characters/aetherios/genitals.svg"
  51315. }
  51316. },
  51317. },
  51318. [
  51319. {
  51320. name: "Normal",
  51321. height: math.unit(47.2, "meters"),
  51322. default: true
  51323. },
  51324. {
  51325. name: "Macro",
  51326. height: math.unit(160, "meters")
  51327. },
  51328. {
  51329. name: "Mega",
  51330. height: math.unit(1.87, "km")
  51331. },
  51332. {
  51333. name: "Giga",
  51334. height: math.unit(40000, "km")
  51335. },
  51336. {
  51337. name: "Stellar",
  51338. height: math.unit(158000000, "km")
  51339. },
  51340. {
  51341. name: "Cosmic",
  51342. height: math.unit(9.46e12, "km")
  51343. },
  51344. ]
  51345. ))
  51346. characterMakers.push(() => makeCharacter(
  51347. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51348. {
  51349. front: {
  51350. height: math.unit(5 + 4/12, "feet"),
  51351. weight: math.unit(80, "lb"),
  51352. name: "Front",
  51353. image: {
  51354. source: "./media/characters/mizu-gieeg/front.svg",
  51355. extra: 850/709,
  51356. bottom: 52/902
  51357. }
  51358. },
  51359. back: {
  51360. height: math.unit(5 + 4/12, "feet"),
  51361. weight: math.unit(80, "lb"),
  51362. name: "Back",
  51363. image: {
  51364. source: "./media/characters/mizu-gieeg/back.svg",
  51365. extra: 882/745,
  51366. bottom: 25/907
  51367. }
  51368. },
  51369. },
  51370. [
  51371. {
  51372. name: "Normal",
  51373. height: math.unit(5 + 4/12, "feet"),
  51374. default: true
  51375. },
  51376. ]
  51377. ))
  51378. characterMakers.push(() => makeCharacter(
  51379. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51380. {
  51381. front: {
  51382. height: math.unit(6, "feet"),
  51383. name: "Front",
  51384. image: {
  51385. source: "./media/characters/roselle-st-papier/front.svg",
  51386. extra: 1430/1280,
  51387. bottom: 37/1467
  51388. }
  51389. },
  51390. back: {
  51391. height: math.unit(6, "feet"),
  51392. name: "Back",
  51393. image: {
  51394. source: "./media/characters/roselle-st-papier/back.svg",
  51395. extra: 1491/1296,
  51396. bottom: 23/1514
  51397. }
  51398. },
  51399. ear: {
  51400. height: math.unit(1.26, "feet"),
  51401. name: "Ear",
  51402. image: {
  51403. source: "./media/characters/roselle-st-papier/ear.svg"
  51404. }
  51405. },
  51406. },
  51407. [
  51408. {
  51409. name: "Normal",
  51410. height: math.unit(150, "feet"),
  51411. default: true
  51412. },
  51413. ]
  51414. ))
  51415. characterMakers.push(() => makeCharacter(
  51416. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51417. {
  51418. front: {
  51419. height: math.unit(1, "inches"),
  51420. name: "Front",
  51421. image: {
  51422. source: "./media/characters/valargent/front.svg",
  51423. extra: 1825/1694,
  51424. bottom: 62/1887
  51425. }
  51426. },
  51427. back: {
  51428. height: math.unit(1, "inches"),
  51429. name: "Back",
  51430. image: {
  51431. source: "./media/characters/valargent/back.svg",
  51432. extra: 1775/1682,
  51433. bottom: 88/1863
  51434. }
  51435. },
  51436. },
  51437. [
  51438. {
  51439. name: "Micro",
  51440. height: math.unit(1, "inch"),
  51441. default: true
  51442. },
  51443. ]
  51444. ))
  51445. characterMakers.push(() => makeCharacter(
  51446. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51447. {
  51448. front: {
  51449. height: math.unit(3.4, "meters"),
  51450. name: "Front",
  51451. image: {
  51452. source: "./media/characters/zarina/front.svg",
  51453. extra: 1733/1425,
  51454. bottom: 93/1826
  51455. }
  51456. },
  51457. squatting: {
  51458. height: math.unit(2.14, "meters"),
  51459. name: "Squatting",
  51460. image: {
  51461. source: "./media/characters/zarina/squatting.svg",
  51462. extra: 1073/788,
  51463. bottom: 63/1136
  51464. }
  51465. },
  51466. back: {
  51467. height: math.unit(2.14, "meters"),
  51468. name: "Back",
  51469. image: {
  51470. source: "./media/characters/zarina/back.svg",
  51471. extra: 1128/885,
  51472. bottom: 0/1128
  51473. }
  51474. },
  51475. },
  51476. [
  51477. {
  51478. name: "Normal",
  51479. height: math.unit(3.4, "meters"),
  51480. default: true
  51481. },
  51482. {
  51483. name: "Big",
  51484. height: math.unit(5, "meters")
  51485. },
  51486. {
  51487. name: "Macro",
  51488. height: math.unit(110, "meters")
  51489. },
  51490. ]
  51491. ))
  51492. characterMakers.push(() => makeCharacter(
  51493. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51494. {
  51495. front: {
  51496. height: math.unit(7, "feet"),
  51497. name: "Front",
  51498. image: {
  51499. source: "./media/characters/ventus-astro-fox/front.svg",
  51500. extra: 1792/1623,
  51501. bottom: 28/1820
  51502. }
  51503. },
  51504. back: {
  51505. height: math.unit(7, "feet"),
  51506. name: "Back",
  51507. image: {
  51508. source: "./media/characters/ventus-astro-fox/back.svg",
  51509. extra: 1789/1620,
  51510. bottom: 31/1820
  51511. }
  51512. },
  51513. outfit: {
  51514. height: math.unit(7, "feet"),
  51515. name: "Outfit",
  51516. image: {
  51517. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51518. extra: 1054/925,
  51519. bottom: 15/1069
  51520. }
  51521. },
  51522. head: {
  51523. height: math.unit(1.12, "feet"),
  51524. name: "Head",
  51525. image: {
  51526. source: "./media/characters/ventus-astro-fox/head.svg",
  51527. extra: 866/504,
  51528. bottom: 0/866
  51529. }
  51530. },
  51531. hand: {
  51532. height: math.unit(1, "feet"),
  51533. name: "Hand",
  51534. image: {
  51535. source: "./media/characters/ventus-astro-fox/hand.svg"
  51536. }
  51537. },
  51538. paw: {
  51539. height: math.unit(1.5, "feet"),
  51540. name: "Paw",
  51541. image: {
  51542. source: "./media/characters/ventus-astro-fox/paw.svg"
  51543. }
  51544. },
  51545. },
  51546. [
  51547. {
  51548. name: "Normal",
  51549. height: math.unit(7, "feet"),
  51550. default: true
  51551. },
  51552. {
  51553. name: "Macro",
  51554. height: math.unit(200, "feet")
  51555. },
  51556. {
  51557. name: "Cosmic",
  51558. height: math.unit(3, "universes")
  51559. },
  51560. ]
  51561. ))
  51562. characterMakers.push(() => makeCharacter(
  51563. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51564. {
  51565. front: {
  51566. height: math.unit(3, "meters"),
  51567. weight: math.unit(7000, "lb"),
  51568. name: "Front",
  51569. image: {
  51570. source: "./media/characters/core-t/front.svg",
  51571. extra: 5729/4941,
  51572. bottom: 1129/6858
  51573. }
  51574. },
  51575. },
  51576. [
  51577. {
  51578. name: "Big",
  51579. height: math.unit(3, "meters"),
  51580. default: true
  51581. },
  51582. ]
  51583. ))
  51584. characterMakers.push(() => makeCharacter(
  51585. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51586. {
  51587. normal: {
  51588. height: math.unit(6 + 6/12, "feet"),
  51589. weight: math.unit(275, "lb"),
  51590. name: "Front",
  51591. image: {
  51592. source: "./media/characters/cadbunny/normal.svg",
  51593. extra: 1129/947,
  51594. bottom: 93/1222
  51595. },
  51596. default: true,
  51597. form: "normal"
  51598. },
  51599. gigantamax: {
  51600. height: math.unit(26, "feet"),
  51601. weight: math.unit(16000, "lb"),
  51602. name: "Front",
  51603. image: {
  51604. source: "./media/characters/cadbunny/gigantamax.svg",
  51605. extra: 1133/944,
  51606. bottom: 90/1223
  51607. },
  51608. default: true,
  51609. form: "gigantamax"
  51610. },
  51611. },
  51612. [
  51613. {
  51614. name: "Normal",
  51615. height: math.unit(6 + 6/12, "feet"),
  51616. default: true,
  51617. form: "normal"
  51618. },
  51619. {
  51620. name: "Small",
  51621. height: math.unit(26, "feet"),
  51622. default: true,
  51623. form: "gigantamax"
  51624. },
  51625. {
  51626. name: "Large",
  51627. height: math.unit(78, "feet"),
  51628. form: "gigantamax"
  51629. },
  51630. ],
  51631. {
  51632. "normal": {
  51633. name: "Normal",
  51634. default: true
  51635. },
  51636. "gigantamax": {
  51637. name: "Gigantamax"
  51638. }
  51639. }
  51640. ))
  51641. characterMakers.push(() => makeCharacter(
  51642. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51643. {
  51644. anthroFront: {
  51645. height: math.unit(8, "feet"),
  51646. weight: math.unit(300, "lb"),
  51647. name: "Front",
  51648. image: {
  51649. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51650. extra: 1272/1176,
  51651. bottom: 53/1325
  51652. },
  51653. form: "anthro",
  51654. default: true
  51655. },
  51656. feralSide: {
  51657. height: math.unit(4, "feet"),
  51658. weight: math.unit(250, "lb"),
  51659. name: "Side",
  51660. image: {
  51661. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51662. extra: 731/621,
  51663. bottom: 0/731
  51664. },
  51665. form: "feral",
  51666. default: true
  51667. },
  51668. },
  51669. [
  51670. {
  51671. name: "Regular",
  51672. height: math.unit(8, "feet"),
  51673. form: "anthro"
  51674. },
  51675. {
  51676. name: "Macro",
  51677. height: math.unit(250, "feet"),
  51678. form: "anthro",
  51679. default: true
  51680. },
  51681. {
  51682. name: "Regular",
  51683. height: math.unit(4, "feet"),
  51684. form: "feral"
  51685. },
  51686. {
  51687. name: "Macro",
  51688. height: math.unit(125, "feet"),
  51689. form: "feral",
  51690. default: true
  51691. },
  51692. ],
  51693. {
  51694. "anthro": {
  51695. name: "Anthro",
  51696. default: true
  51697. },
  51698. "feral": {
  51699. name: "Feral",
  51700. },
  51701. }
  51702. ))
  51703. characterMakers.push(() => makeCharacter(
  51704. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51705. {
  51706. front: {
  51707. height: math.unit(11 + 10/12, "feet"),
  51708. weight: math.unit(1587, "kg"),
  51709. name: "Front",
  51710. image: {
  51711. source: "./media/characters/maple-javira-dragon/front.svg",
  51712. extra: 1136/744,
  51713. bottom: 73/1209
  51714. }
  51715. },
  51716. side: {
  51717. height: math.unit(11 + 10/12, "feet"),
  51718. weight: math.unit(1587, "kg"),
  51719. name: "Side",
  51720. image: {
  51721. source: "./media/characters/maple-javira-dragon/side.svg",
  51722. extra: 712/505,
  51723. bottom: 17/729
  51724. }
  51725. },
  51726. head: {
  51727. height: math.unit(8.05, "feet"),
  51728. name: "Head",
  51729. image: {
  51730. source: "./media/characters/maple-javira-dragon/head.svg",
  51731. extra: 1420/1344,
  51732. bottom: 0/1420
  51733. }
  51734. },
  51735. },
  51736. [
  51737. {
  51738. name: "Normal",
  51739. height: math.unit(11 + 10/12, "feet"),
  51740. default: true
  51741. },
  51742. ]
  51743. ))
  51744. characterMakers.push(() => makeCharacter(
  51745. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51746. {
  51747. front: {
  51748. height: math.unit(117, "cm"),
  51749. weight: math.unit(50, "kg"),
  51750. name: "Front",
  51751. image: {
  51752. source: "./media/characters/sonia-wyverntail/front.svg",
  51753. extra: 708/592,
  51754. bottom: 25/733
  51755. }
  51756. },
  51757. },
  51758. [
  51759. {
  51760. name: "Normal",
  51761. height: math.unit(117, "cm"),
  51762. default: true
  51763. },
  51764. ]
  51765. ))
  51766. characterMakers.push(() => makeCharacter(
  51767. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51768. {
  51769. front: {
  51770. height: math.unit(6 + 5/12, "feet"),
  51771. name: "Front",
  51772. image: {
  51773. source: "./media/characters/micah/front.svg",
  51774. extra: 1758/1546,
  51775. bottom: 214/1972
  51776. }
  51777. },
  51778. },
  51779. [
  51780. {
  51781. name: "Normal",
  51782. height: math.unit(6 + 5/12, "feet"),
  51783. default: true
  51784. },
  51785. ]
  51786. ))
  51787. characterMakers.push(() => makeCharacter(
  51788. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51789. {
  51790. front: {
  51791. height: math.unit(1.75, "meters"),
  51792. weight: math.unit(100, "kg"),
  51793. name: "Front",
  51794. image: {
  51795. source: "./media/characters/zarya/front.svg",
  51796. extra: 741/735,
  51797. bottom: 44/785
  51798. },
  51799. extraAttributes: {
  51800. "tailLength": {
  51801. name: "Tail Length",
  51802. power: 1,
  51803. type: "length",
  51804. base: math.unit(180, "cm")
  51805. },
  51806. "pawLength": {
  51807. name: "Paw Length",
  51808. power: 1,
  51809. type: "length",
  51810. base: math.unit(31, "cm")
  51811. },
  51812. }
  51813. },
  51814. side: {
  51815. height: math.unit(1.75, "meters"),
  51816. weight: math.unit(100, "kg"),
  51817. name: "Side",
  51818. image: {
  51819. source: "./media/characters/zarya/side.svg",
  51820. extra: 776/770,
  51821. bottom: 17/793
  51822. },
  51823. extraAttributes: {
  51824. "tailLength": {
  51825. name: "Tail Length",
  51826. power: 1,
  51827. type: "length",
  51828. base: math.unit(180, "cm")
  51829. },
  51830. "pawLength": {
  51831. name: "Paw Length",
  51832. power: 1,
  51833. type: "length",
  51834. base: math.unit(31, "cm")
  51835. },
  51836. }
  51837. },
  51838. back: {
  51839. height: math.unit(1.75, "meters"),
  51840. weight: math.unit(100, "kg"),
  51841. name: "Back",
  51842. image: {
  51843. source: "./media/characters/zarya/back.svg",
  51844. extra: 741/735,
  51845. bottom: 44/785
  51846. },
  51847. extraAttributes: {
  51848. "tailLength": {
  51849. name: "Tail Length",
  51850. power: 1,
  51851. type: "length",
  51852. base: math.unit(180, "cm")
  51853. },
  51854. "pawLength": {
  51855. name: "Paw Length",
  51856. power: 1,
  51857. type: "length",
  51858. base: math.unit(31, "cm")
  51859. },
  51860. }
  51861. },
  51862. frontNoTail: {
  51863. height: math.unit(1.75, "meters"),
  51864. weight: math.unit(100, "kg"),
  51865. name: "Front (No Tail)",
  51866. image: {
  51867. source: "./media/characters/zarya/front-no-tail.svg",
  51868. extra: 741/735,
  51869. bottom: 44/785
  51870. },
  51871. extraAttributes: {
  51872. "tailLength": {
  51873. name: "Tail Length",
  51874. power: 1,
  51875. type: "length",
  51876. base: math.unit(180, "cm")
  51877. },
  51878. "pawLength": {
  51879. name: "Paw Length",
  51880. power: 1,
  51881. type: "length",
  51882. base: math.unit(31, "cm")
  51883. },
  51884. }
  51885. },
  51886. dressed: {
  51887. height: math.unit(1.75, "meters"),
  51888. weight: math.unit(100, "kg"),
  51889. name: "Dressed",
  51890. image: {
  51891. source: "./media/characters/zarya/dressed.svg",
  51892. extra: 683/672,
  51893. bottom: 79/762
  51894. },
  51895. extraAttributes: {
  51896. "tailLength": {
  51897. name: "Tail Length",
  51898. power: 1,
  51899. type: "length",
  51900. base: math.unit(180, "cm")
  51901. },
  51902. "pawLength": {
  51903. name: "Paw Length",
  51904. power: 1,
  51905. type: "length",
  51906. base: math.unit(31, "cm")
  51907. },
  51908. }
  51909. },
  51910. },
  51911. [
  51912. {
  51913. name: "Micro",
  51914. height: math.unit(5, "cm")
  51915. },
  51916. {
  51917. name: "Normal",
  51918. height: math.unit(1.75, "meters"),
  51919. default: true
  51920. },
  51921. {
  51922. name: "Macro",
  51923. height: math.unit(122, "meters")
  51924. },
  51925. ]
  51926. ))
  51927. characterMakers.push(() => makeCharacter(
  51928. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  51929. {
  51930. front: {
  51931. height: math.unit(7.5, "feet"),
  51932. name: "Front",
  51933. image: {
  51934. source: "./media/characters/sven-hatisson/front.svg",
  51935. extra: 917/857,
  51936. bottom: 42/959
  51937. }
  51938. },
  51939. back: {
  51940. height: math.unit(7.5, "feet"),
  51941. name: "Back",
  51942. image: {
  51943. source: "./media/characters/sven-hatisson/back.svg",
  51944. extra: 903/856,
  51945. bottom: 15/918
  51946. }
  51947. },
  51948. },
  51949. [
  51950. {
  51951. name: "Base Height",
  51952. height: math.unit(7.5, "feet")
  51953. },
  51954. {
  51955. name: "Usual Height",
  51956. height: math.unit(13.5, "feet"),
  51957. default: true
  51958. },
  51959. {
  51960. name: "Smaller Macro",
  51961. height: math.unit(85, "feet")
  51962. },
  51963. {
  51964. name: "Moderate Macro",
  51965. height: math.unit(320, "feet")
  51966. },
  51967. {
  51968. name: "Large Macro",
  51969. height: math.unit(1000, "feet")
  51970. },
  51971. {
  51972. name: "Largest Size",
  51973. height: math.unit(2, "miles")
  51974. },
  51975. ]
  51976. ))
  51977. characterMakers.push(() => makeCharacter(
  51978. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  51979. {
  51980. side: {
  51981. height: math.unit(1.8, "meters"),
  51982. weight: math.unit(275, "kg"),
  51983. name: "Side",
  51984. image: {
  51985. source: "./media/characters/terra/side.svg",
  51986. extra: 1273/1147,
  51987. bottom: 0/1273
  51988. }
  51989. },
  51990. },
  51991. [
  51992. {
  51993. name: "Normal",
  51994. height: math.unit(16.2, "meters"),
  51995. default: true
  51996. },
  51997. ]
  51998. ))
  51999. characterMakers.push(() => makeCharacter(
  52000. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52001. {
  52002. borzoiFront: {
  52003. height: math.unit(6 + 9/12, "feet"),
  52004. name: "Front",
  52005. image: {
  52006. source: "./media/characters/rae/borzoi-front.svg",
  52007. extra: 1161/1098,
  52008. bottom: 31/1192
  52009. },
  52010. form: "borzoi",
  52011. default: true
  52012. },
  52013. werewolfFront: {
  52014. height: math.unit(8 + 7/12, "feet"),
  52015. name: "Front",
  52016. image: {
  52017. source: "./media/characters/rae/werewolf-front.svg",
  52018. extra: 1411/1334,
  52019. bottom: 127/1538
  52020. },
  52021. form: "werewolf",
  52022. default: true
  52023. },
  52024. },
  52025. [
  52026. {
  52027. name: "Normal",
  52028. height: math.unit(6 + 9/12, "feet"),
  52029. default: true,
  52030. form: "borzoi"
  52031. },
  52032. {
  52033. name: "Normal",
  52034. height: math.unit(8 + 7/12, "feet"),
  52035. default: true,
  52036. form: "werewolf"
  52037. },
  52038. ],
  52039. {
  52040. "borzoi": {
  52041. name: "Borzoi",
  52042. default: true
  52043. },
  52044. "werewolf": {
  52045. name: "Werewolf",
  52046. },
  52047. }
  52048. ))
  52049. characterMakers.push(() => makeCharacter(
  52050. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52051. {
  52052. front: {
  52053. height: math.unit(8 + 7/12, "feet"),
  52054. weight: math.unit(482, "lb"),
  52055. name: "Front",
  52056. image: {
  52057. source: "./media/characters/kit/front.svg",
  52058. extra: 1247/1103,
  52059. bottom: 41/1288
  52060. }
  52061. },
  52062. back: {
  52063. height: math.unit(8 + 7/12, "feet"),
  52064. weight: math.unit(482, "lb"),
  52065. name: "Back",
  52066. image: {
  52067. source: "./media/characters/kit/back.svg",
  52068. extra: 1252/1123,
  52069. bottom: 21/1273
  52070. }
  52071. },
  52072. paw: {
  52073. height: math.unit(1.46, "feet"),
  52074. name: "Paw",
  52075. image: {
  52076. source: "./media/characters/kit/paw.svg"
  52077. }
  52078. },
  52079. },
  52080. [
  52081. {
  52082. name: "Normal",
  52083. height: math.unit(2.61, "meters"),
  52084. default: true
  52085. },
  52086. {
  52087. name: "\"Tall\"",
  52088. height: math.unit(8.21, "meters")
  52089. },
  52090. {
  52091. name: "Tall",
  52092. height: math.unit(19.6, "meters")
  52093. },
  52094. {
  52095. name: "Very Tall",
  52096. height: math.unit(57.91, "meters")
  52097. },
  52098. {
  52099. name: "Semi-Macro",
  52100. height: math.unit(138.64, "meters")
  52101. },
  52102. {
  52103. name: "Macro",
  52104. height: math.unit(831.99, "meters")
  52105. },
  52106. {
  52107. name: "EX-Macro",
  52108. height: math.unit(96451121, "meters")
  52109. },
  52110. {
  52111. name: "S1-Omnipotent",
  52112. height: math.unit(4.42074e+9, "meters")
  52113. },
  52114. {
  52115. name: "S2-Omnipotent",
  52116. height: math.unit(9.42074e+17, "meters")
  52117. },
  52118. {
  52119. name: "Omnipotent",
  52120. height: math.unit(4.23112e+24, "meters")
  52121. },
  52122. {
  52123. name: "Hypergod",
  52124. height: math.unit(5.05176e+27, "meters")
  52125. },
  52126. {
  52127. name: "Hypergod-EX",
  52128. height: math.unit(9.45532e+49, "meters")
  52129. },
  52130. {
  52131. name: "Hypergod-SP",
  52132. height: math.unit(9.45532e+195, "meters")
  52133. },
  52134. ]
  52135. ))
  52136. characterMakers.push(() => makeCharacter(
  52137. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52138. {
  52139. side: {
  52140. height: math.unit(0.6, "meters"),
  52141. weight: math.unit(24, "kg"),
  52142. name: "Side",
  52143. image: {
  52144. source: "./media/characters/celeste/side.svg",
  52145. extra: 810/517,
  52146. bottom: 53/863
  52147. }
  52148. },
  52149. },
  52150. [
  52151. {
  52152. name: "Velociraptor",
  52153. height: math.unit(0.6, "meters"),
  52154. default: true
  52155. },
  52156. {
  52157. name: "Utahraptor",
  52158. height: math.unit(1.8, "meters")
  52159. },
  52160. {
  52161. name: "Gallimimus",
  52162. height: math.unit(4.0, "meters")
  52163. },
  52164. {
  52165. name: "Large",
  52166. height: math.unit(20, "meters")
  52167. },
  52168. {
  52169. name: "Planetary",
  52170. height: math.unit(50, "megameters")
  52171. },
  52172. {
  52173. name: "Stellar",
  52174. height: math.unit(1.5, "gigameters")
  52175. },
  52176. {
  52177. name: "Galactic",
  52178. height: math.unit(100, "exameters")
  52179. },
  52180. ]
  52181. ))
  52182. characterMakers.push(() => makeCharacter(
  52183. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52184. {
  52185. front: {
  52186. height: math.unit(6, "feet"),
  52187. weight: math.unit(210, "lb"),
  52188. name: "Front",
  52189. image: {
  52190. source: "./media/characters/glacia/front.svg",
  52191. extra: 958/901,
  52192. bottom: 45/1003
  52193. }
  52194. },
  52195. },
  52196. [
  52197. {
  52198. name: "Macro",
  52199. height: math.unit(1000, "meters"),
  52200. default: true
  52201. },
  52202. ]
  52203. ))
  52204. characterMakers.push(() => makeCharacter(
  52205. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52206. {
  52207. front: {
  52208. height: math.unit(4, "meters"),
  52209. name: "Front",
  52210. image: {
  52211. source: "./media/characters/giri/front.svg",
  52212. extra: 966/894,
  52213. bottom: 21/987
  52214. }
  52215. },
  52216. },
  52217. [
  52218. {
  52219. name: "Normal",
  52220. height: math.unit(4, "meters"),
  52221. default: true
  52222. },
  52223. ]
  52224. ))
  52225. characterMakers.push(() => makeCharacter(
  52226. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52227. {
  52228. back: {
  52229. height: math.unit(4, "feet"),
  52230. weight: math.unit(37, "lb"),
  52231. name: "Back",
  52232. image: {
  52233. source: "./media/characters/tin/back.svg",
  52234. extra: 845/780,
  52235. bottom: 28/873
  52236. }
  52237. },
  52238. },
  52239. [
  52240. {
  52241. name: "Normal",
  52242. height: math.unit(4, "feet"),
  52243. default: true
  52244. },
  52245. ]
  52246. ))
  52247. characterMakers.push(() => makeCharacter(
  52248. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52249. {
  52250. front: {
  52251. height: math.unit(25, "feet"),
  52252. name: "Front",
  52253. image: {
  52254. source: "./media/characters/cadenza-vivace/front.svg",
  52255. extra: 1842/1578,
  52256. bottom: 30/1872
  52257. }
  52258. },
  52259. },
  52260. [
  52261. {
  52262. name: "Macro",
  52263. height: math.unit(25, "feet"),
  52264. default: true
  52265. },
  52266. ]
  52267. ))
  52268. characterMakers.push(() => makeCharacter(
  52269. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52270. {
  52271. front: {
  52272. height: math.unit(10, "feet"),
  52273. weight: math.unit(625, "kg"),
  52274. name: "Front",
  52275. image: {
  52276. source: "./media/characters/zain/front.svg",
  52277. extra: 1682/1498,
  52278. bottom: 223/1905
  52279. }
  52280. },
  52281. back: {
  52282. height: math.unit(10, "feet"),
  52283. weight: math.unit(625, "kg"),
  52284. name: "Back",
  52285. image: {
  52286. source: "./media/characters/zain/back.svg",
  52287. extra: 1814/1657,
  52288. bottom: 152/1966
  52289. }
  52290. },
  52291. head: {
  52292. height: math.unit(10, "feet"),
  52293. weight: math.unit(625, "kg"),
  52294. name: "Head",
  52295. image: {
  52296. source: "./media/characters/zain/head.svg",
  52297. extra: 1059/762,
  52298. bottom: 0/1059
  52299. }
  52300. },
  52301. },
  52302. [
  52303. {
  52304. name: "Normal",
  52305. height: math.unit(10, "feet"),
  52306. default: true
  52307. },
  52308. ]
  52309. ))
  52310. characterMakers.push(() => makeCharacter(
  52311. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52312. {
  52313. front: {
  52314. height: math.unit(6 + 5/12, "feet"),
  52315. weight: math.unit(750, "lb"),
  52316. name: "Front",
  52317. image: {
  52318. source: "./media/characters/ruchex/front.svg",
  52319. extra: 877/820,
  52320. bottom: 17/894
  52321. },
  52322. extraAttributes: {
  52323. "width": {
  52324. name: "Width",
  52325. power: 1,
  52326. type: "length",
  52327. base: math.unit(4.757, "feet")
  52328. },
  52329. }
  52330. },
  52331. },
  52332. [
  52333. {
  52334. name: "Normal",
  52335. height: math.unit(6 + 5/12, "feet"),
  52336. default: true
  52337. },
  52338. ]
  52339. ))
  52340. characterMakers.push(() => makeCharacter(
  52341. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52342. {
  52343. dressedFront: {
  52344. height: math.unit(191, "cm"),
  52345. weight: math.unit(80, "kg"),
  52346. name: "Front",
  52347. image: {
  52348. source: "./media/characters/buster/dressed-front.svg",
  52349. extra: 1022/973,
  52350. bottom: 69/1091
  52351. }
  52352. },
  52353. dressedBack: {
  52354. height: math.unit(191, "cm"),
  52355. weight: math.unit(80, "kg"),
  52356. name: "Back",
  52357. image: {
  52358. source: "./media/characters/buster/dressed-back.svg",
  52359. extra: 1018/970,
  52360. bottom: 55/1073
  52361. }
  52362. },
  52363. nudeFront: {
  52364. height: math.unit(191, "cm"),
  52365. weight: math.unit(80, "kg"),
  52366. name: "Front (Nude)",
  52367. image: {
  52368. source: "./media/characters/buster/nude-front.svg",
  52369. extra: 1022/973,
  52370. bottom: 69/1091
  52371. }
  52372. },
  52373. nudeBack: {
  52374. height: math.unit(191, "cm"),
  52375. weight: math.unit(80, "kg"),
  52376. name: "Back (Nude)",
  52377. image: {
  52378. source: "./media/characters/buster/nude-back.svg",
  52379. extra: 1018/970,
  52380. bottom: 55/1073
  52381. }
  52382. },
  52383. dick: {
  52384. height: math.unit(2.59, "feet"),
  52385. name: "Dick",
  52386. image: {
  52387. source: "./media/characters/buster/dick.svg"
  52388. }
  52389. },
  52390. ass: {
  52391. height: math.unit(1.2, "feet"),
  52392. name: "Ass",
  52393. image: {
  52394. source: "./media/characters/buster/ass.svg"
  52395. }
  52396. },
  52397. },
  52398. [
  52399. {
  52400. name: "Normal",
  52401. height: math.unit(191, "cm"),
  52402. default: true
  52403. },
  52404. ]
  52405. ))
  52406. characterMakers.push(() => makeCharacter(
  52407. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52408. {
  52409. side: {
  52410. height: math.unit(8.1, "feet"),
  52411. weight: math.unit(3500, "lb"),
  52412. name: "Side",
  52413. image: {
  52414. source: "./media/characters/sonya/side.svg",
  52415. extra: 1730/1317,
  52416. bottom: 86/1816
  52417. }
  52418. },
  52419. },
  52420. [
  52421. {
  52422. name: "Normal",
  52423. height: math.unit(8.1, "feet"),
  52424. default: true
  52425. },
  52426. ]
  52427. ))
  52428. characterMakers.push(() => makeCharacter(
  52429. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52430. {
  52431. front: {
  52432. height: math.unit(6, "feet"),
  52433. weight: math.unit(150, "lb"),
  52434. name: "Front",
  52435. image: {
  52436. source: "./media/characters/cadence-andrysiak/front.svg",
  52437. extra: 1164/1121,
  52438. bottom: 60/1224
  52439. }
  52440. },
  52441. back: {
  52442. height: math.unit(6, "feet"),
  52443. weight: math.unit(150, "lb"),
  52444. name: "Back",
  52445. image: {
  52446. source: "./media/characters/cadence-andrysiak/back.svg",
  52447. extra: 1200/1165,
  52448. bottom: 9/1209
  52449. }
  52450. },
  52451. dressed: {
  52452. height: math.unit(6, "feet"),
  52453. weight: math.unit(150, "lb"),
  52454. name: "Dressed",
  52455. image: {
  52456. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52457. extra: 1164/1121,
  52458. bottom: 60/1224
  52459. }
  52460. },
  52461. },
  52462. [
  52463. {
  52464. name: "Micro",
  52465. height: math.unit(1, "mm")
  52466. },
  52467. {
  52468. name: "Normal",
  52469. height: math.unit(6, "feet"),
  52470. default: true
  52471. },
  52472. ]
  52473. ))
  52474. characterMakers.push(() => makeCharacter(
  52475. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52476. {
  52477. front: {
  52478. height: math.unit(60, "inches"),
  52479. weight: math.unit(16, "lb"),
  52480. preyCapacity: math.unit(80, "liters"),
  52481. name: "Front",
  52482. image: {
  52483. source: "./media/characters/penny-lynx/front.svg",
  52484. extra: 1959/1769,
  52485. bottom: 49/2008
  52486. }
  52487. },
  52488. },
  52489. [
  52490. {
  52491. name: "Nokia",
  52492. height: math.unit(2, "inches")
  52493. },
  52494. {
  52495. name: "Desktop",
  52496. height: math.unit(24, "inches")
  52497. },
  52498. {
  52499. name: "TV",
  52500. height: math.unit(60, "inches")
  52501. },
  52502. {
  52503. name: "Jumbotron",
  52504. height: math.unit(12, "feet")
  52505. },
  52506. {
  52507. name: "Billboard",
  52508. height: math.unit(48, "feet"),
  52509. default: true
  52510. },
  52511. {
  52512. name: "IMAX",
  52513. height: math.unit(96, "feet")
  52514. },
  52515. {
  52516. name: "SINGULARITY",
  52517. height: math.unit(864938, "miles")
  52518. },
  52519. ]
  52520. ))
  52521. characterMakers.push(() => makeCharacter(
  52522. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52523. {
  52524. front: {
  52525. height: math.unit(5 + 4/12, "feet"),
  52526. weight: math.unit(230, "lb"),
  52527. name: "Front",
  52528. image: {
  52529. source: "./media/characters/sukebe/front.svg",
  52530. extra: 2130/2038,
  52531. bottom: 90/2220
  52532. }
  52533. },
  52534. back: {
  52535. height: math.unit(3.48, "feet"),
  52536. weight: math.unit(230, "lb"),
  52537. name: "Back",
  52538. image: {
  52539. source: "./media/characters/sukebe/back.svg",
  52540. extra: 1670/1604,
  52541. bottom: 0/1670
  52542. }
  52543. },
  52544. },
  52545. [
  52546. {
  52547. name: "Normal",
  52548. height: math.unit(5 + 4/12, "feet"),
  52549. default: true
  52550. },
  52551. ]
  52552. ))
  52553. characterMakers.push(() => makeCharacter(
  52554. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52555. {
  52556. front: {
  52557. height: math.unit(6, "feet"),
  52558. name: "Front",
  52559. image: {
  52560. source: "./media/characters/nylla/front.svg",
  52561. extra: 1868/1699,
  52562. bottom: 97/1965
  52563. }
  52564. },
  52565. back: {
  52566. height: math.unit(6, "feet"),
  52567. name: "Back",
  52568. image: {
  52569. source: "./media/characters/nylla/back.svg",
  52570. extra: 1889/1712,
  52571. bottom: 93/1982
  52572. }
  52573. },
  52574. frontNsfw: {
  52575. height: math.unit(6, "feet"),
  52576. name: "Front (NSFW)",
  52577. image: {
  52578. source: "./media/characters/nylla/front-nsfw.svg",
  52579. extra: 1868/1699,
  52580. bottom: 97/1965
  52581. },
  52582. extraAttributes: {
  52583. "dickLength": {
  52584. name: "Dick Length",
  52585. power: 1,
  52586. type: "length",
  52587. base: math.unit(1.4, "feet")
  52588. },
  52589. "cumVolume": {
  52590. name: "Cum Volume",
  52591. power: 3,
  52592. type: "volume",
  52593. base: math.unit(100, "mL")
  52594. },
  52595. }
  52596. },
  52597. backNsfw: {
  52598. height: math.unit(6, "feet"),
  52599. name: "Back (NSFW)",
  52600. image: {
  52601. source: "./media/characters/nylla/back-nsfw.svg",
  52602. extra: 1889/1712,
  52603. bottom: 93/1982
  52604. }
  52605. },
  52606. maw: {
  52607. height: math.unit(2.10, "feet"),
  52608. name: "Maw",
  52609. image: {
  52610. source: "./media/characters/nylla/maw.svg"
  52611. }
  52612. },
  52613. paws: {
  52614. height: math.unit(2.06, "feet"),
  52615. name: "Paws",
  52616. image: {
  52617. source: "./media/characters/nylla/paws.svg"
  52618. }
  52619. },
  52620. muzzle: {
  52621. height: math.unit(0.61, "feet"),
  52622. name: "Muzzle",
  52623. image: {
  52624. source: "./media/characters/nylla/muzzle.svg"
  52625. }
  52626. },
  52627. sheath: {
  52628. height: math.unit(1.305, "feet"),
  52629. name: "Sheath",
  52630. image: {
  52631. source: "./media/characters/nylla/sheath.svg"
  52632. }
  52633. },
  52634. },
  52635. [
  52636. {
  52637. name: "Micro",
  52638. height: math.unit(7.5, "inches")
  52639. },
  52640. {
  52641. name: "Normal",
  52642. height: math.unit(7, "feet"),
  52643. default: true
  52644. },
  52645. {
  52646. name: "Macro",
  52647. height: math.unit(60, "feet")
  52648. },
  52649. {
  52650. name: "Mega",
  52651. height: math.unit(200, "feet")
  52652. },
  52653. ]
  52654. ))
  52655. characterMakers.push(() => makeCharacter(
  52656. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52657. {
  52658. front: {
  52659. height: math.unit(10, "feet"),
  52660. weight: math.unit(2300, "lb"),
  52661. name: "Front",
  52662. image: {
  52663. source: "./media/characters/hunt3r/front.svg",
  52664. extra: 1909/1742,
  52665. bottom: 46/1955
  52666. }
  52667. },
  52668. },
  52669. [
  52670. {
  52671. name: "Normal",
  52672. height: math.unit(10, "feet"),
  52673. default: true
  52674. },
  52675. ]
  52676. ))
  52677. characterMakers.push(() => makeCharacter(
  52678. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52679. {
  52680. dressed: {
  52681. height: math.unit(11, "feet"),
  52682. weight: math.unit(18500, "lb"),
  52683. preyCapacity: math.unit(9, "people"),
  52684. name: "Dressed",
  52685. image: {
  52686. source: "./media/characters/cylphis/dressed.svg",
  52687. extra: 1028/1003,
  52688. bottom: 75/1103
  52689. },
  52690. },
  52691. undressed: {
  52692. height: math.unit(11, "feet"),
  52693. weight: math.unit(18500, "lb"),
  52694. preyCapacity: math.unit(9, "people"),
  52695. name: "Undressed",
  52696. image: {
  52697. source: "./media/characters/cylphis/undressed.svg",
  52698. extra: 1028/1003,
  52699. bottom: 75/1103
  52700. }
  52701. },
  52702. full: {
  52703. height: math.unit(11, "feet"),
  52704. weight: math.unit(18500 + 150*9, "lb"),
  52705. preyCapacity: math.unit(9, "people"),
  52706. name: "Full",
  52707. image: {
  52708. source: "./media/characters/cylphis/full.svg",
  52709. extra: 1028/1003,
  52710. bottom: 75/1103
  52711. }
  52712. },
  52713. },
  52714. [
  52715. {
  52716. name: "Small",
  52717. height: math.unit(8, "feet")
  52718. },
  52719. {
  52720. name: "Normal",
  52721. height: math.unit(11, "feet"),
  52722. default: true
  52723. },
  52724. ]
  52725. ))
  52726. characterMakers.push(() => makeCharacter(
  52727. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52728. {
  52729. front: {
  52730. height: math.unit(2 + 7/12, "feet"),
  52731. name: "Front",
  52732. image: {
  52733. source: "./media/characters/orishan/front.svg",
  52734. extra: 1058/1023,
  52735. bottom: 23/1081
  52736. }
  52737. },
  52738. back: {
  52739. height: math.unit(2 + 7/12, "feet"),
  52740. name: "Back",
  52741. image: {
  52742. source: "./media/characters/orishan/back.svg",
  52743. extra: 1058/1023,
  52744. bottom: 23/1081
  52745. }
  52746. },
  52747. },
  52748. [
  52749. {
  52750. name: "Micro",
  52751. height: math.unit(2, "cm")
  52752. },
  52753. {
  52754. name: "Normal",
  52755. height: math.unit(2 + 7/12, "feet"),
  52756. default: true
  52757. },
  52758. ]
  52759. ))
  52760. characterMakers.push(() => makeCharacter(
  52761. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52762. {
  52763. front: {
  52764. height: math.unit(3, "meters"),
  52765. weight: math.unit(508, "kg"),
  52766. name: "Front",
  52767. image: {
  52768. source: "./media/characters/seranis/front.svg",
  52769. extra: 1478/1454,
  52770. bottom: 41/1519
  52771. }
  52772. },
  52773. },
  52774. [
  52775. {
  52776. name: "Normal",
  52777. height: math.unit(3, "meters"),
  52778. default: true
  52779. },
  52780. {
  52781. name: "Macro",
  52782. height: math.unit(108, "meters")
  52783. },
  52784. {
  52785. name: "Megamacro",
  52786. height: math.unit(1250, "meters")
  52787. },
  52788. ]
  52789. ))
  52790. characterMakers.push(() => makeCharacter(
  52791. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52792. {
  52793. undressed: {
  52794. height: math.unit(5 + 3/12, "feet"),
  52795. name: "Undressed",
  52796. image: {
  52797. source: "./media/characters/ankou/undressed.svg",
  52798. extra: 1301/1213,
  52799. bottom: 87/1388
  52800. }
  52801. },
  52802. dressed: {
  52803. height: math.unit(5 + 3/12, "feet"),
  52804. name: "Dressed",
  52805. image: {
  52806. source: "./media/characters/ankou/dressed.svg",
  52807. extra: 1301/1213,
  52808. bottom: 87/1388
  52809. }
  52810. },
  52811. head: {
  52812. height: math.unit(1.61, "feet"),
  52813. name: "Head",
  52814. image: {
  52815. source: "./media/characters/ankou/head.svg"
  52816. }
  52817. },
  52818. },
  52819. [
  52820. {
  52821. name: "Normal",
  52822. height: math.unit(5 + 3/12, "feet"),
  52823. default: true
  52824. },
  52825. ]
  52826. ))
  52827. characterMakers.push(() => makeCharacter(
  52828. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52829. {
  52830. side: {
  52831. height: math.unit(6 + 3/12, "feet"),
  52832. weight: math.unit(200, "kg"),
  52833. name: "Side",
  52834. image: {
  52835. source: "./media/characters/juniper-skunktaur/side.svg",
  52836. extra: 1574/1229,
  52837. bottom: 38/1612
  52838. }
  52839. },
  52840. front: {
  52841. height: math.unit(6 + 3/12, "feet"),
  52842. weight: math.unit(200, "kg"),
  52843. name: "Front",
  52844. image: {
  52845. source: "./media/characters/juniper-skunktaur/front.svg",
  52846. extra: 1337/1278,
  52847. bottom: 22/1359
  52848. }
  52849. },
  52850. back: {
  52851. height: math.unit(6 + 3/12, "feet"),
  52852. weight: math.unit(200, "kg"),
  52853. name: "Back",
  52854. image: {
  52855. source: "./media/characters/juniper-skunktaur/back.svg",
  52856. extra: 1618/1273,
  52857. bottom: 13/1631
  52858. }
  52859. },
  52860. top: {
  52861. height: math.unit(2.62, "feet"),
  52862. weight: math.unit(200, "kg"),
  52863. name: "Top",
  52864. image: {
  52865. source: "./media/characters/juniper-skunktaur/top.svg"
  52866. }
  52867. },
  52868. },
  52869. [
  52870. {
  52871. name: "Normal",
  52872. height: math.unit(6 + 3/12, "feet"),
  52873. default: true
  52874. },
  52875. ]
  52876. ))
  52877. characterMakers.push(() => makeCharacter(
  52878. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52879. {
  52880. front: {
  52881. height: math.unit(20.5, "feet"),
  52882. name: "Front",
  52883. image: {
  52884. source: "./media/characters/rei/front.svg",
  52885. extra: 1349/1195,
  52886. bottom: 31/1380
  52887. }
  52888. },
  52889. back: {
  52890. height: math.unit(20.5, "feet"),
  52891. name: "Back",
  52892. image: {
  52893. source: "./media/characters/rei/back.svg",
  52894. extra: 1358/1204,
  52895. bottom: 22/1380
  52896. }
  52897. },
  52898. pawsDigi: {
  52899. height: math.unit(3.45, "feet"),
  52900. name: "Paws (Digi)",
  52901. image: {
  52902. source: "./media/characters/rei/paws-digi.svg"
  52903. }
  52904. },
  52905. pawsPlanti: {
  52906. height: math.unit(3.45, "feet"),
  52907. name: "Paws (Planti)",
  52908. image: {
  52909. source: "./media/characters/rei/paws-planti.svg"
  52910. }
  52911. },
  52912. },
  52913. [
  52914. {
  52915. name: "Normal",
  52916. height: math.unit(20.5, "feet"),
  52917. default: true
  52918. },
  52919. ]
  52920. ))
  52921. characterMakers.push(() => makeCharacter(
  52922. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  52923. {
  52924. front: {
  52925. height: math.unit(5 + 11/12, "feet"),
  52926. name: "Front",
  52927. image: {
  52928. source: "./media/characters/carina/front.svg",
  52929. extra: 1720/1449,
  52930. bottom: 14/1734
  52931. }
  52932. },
  52933. back: {
  52934. height: math.unit(5 + 11/12, "feet"),
  52935. name: "Back",
  52936. image: {
  52937. source: "./media/characters/carina/back.svg",
  52938. extra: 1493/1445,
  52939. bottom: 17/1510
  52940. }
  52941. },
  52942. paw: {
  52943. height: math.unit(0.92, "feet"),
  52944. name: "Paw",
  52945. image: {
  52946. source: "./media/characters/carina/paw.svg"
  52947. }
  52948. },
  52949. },
  52950. [
  52951. {
  52952. name: "Normal",
  52953. height: math.unit(5 + 11/12, "feet"),
  52954. default: true
  52955. },
  52956. ]
  52957. ))
  52958. characterMakers.push(() => makeCharacter(
  52959. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  52960. {
  52961. normal_front: {
  52962. height: math.unit(4.88, "meters"),
  52963. name: "Front",
  52964. image: {
  52965. source: "./media/characters/maya/normal-front.svg",
  52966. extra: 1222/1145,
  52967. bottom: 57/1279
  52968. },
  52969. form: "normal",
  52970. default: true
  52971. },
  52972. monstrous_front: {
  52973. height: math.unit(10, "meters"),
  52974. name: "Front",
  52975. image: {
  52976. source: "./media/characters/maya/monstrous-front.svg",
  52977. extra: 1523/1109,
  52978. bottom: 113/1636
  52979. },
  52980. form: "monstrous",
  52981. extraAttributes: {
  52982. "swallowSize": {
  52983. name: "Tailmaw Bite Size",
  52984. power: 3,
  52985. type: "volume",
  52986. base: math.unit(43000, "liters")
  52987. },
  52988. }
  52989. },
  52990. taur_front: {
  52991. height: math.unit(10, "meters"),
  52992. name: "Front",
  52993. image: {
  52994. source: "./media/characters/maya/taur-front.svg",
  52995. extra: 743/506,
  52996. bottom: 101/844
  52997. },
  52998. form: "taur",
  52999. },
  53000. },
  53001. [
  53002. {
  53003. name: "Normal",
  53004. height: math.unit(4.88, "meters"),
  53005. default: true,
  53006. form: "normal"
  53007. },
  53008. {
  53009. name: "Macro",
  53010. height: math.unit(38.1, "meters"),
  53011. form: "normal"
  53012. },
  53013. {
  53014. name: "Macro+",
  53015. height: math.unit(152.4, "meters"),
  53016. form: "normal"
  53017. },
  53018. {
  53019. name: "Macro++",
  53020. height: math.unit(16.09, "km"),
  53021. form: "normal"
  53022. },
  53023. {
  53024. name: "Mega-macro",
  53025. height: math.unit(700, "megameters"),
  53026. form: "normal"
  53027. },
  53028. {
  53029. name: "Satiated",
  53030. height: math.unit(10, "meters"),
  53031. default: true,
  53032. form: "monstrous"
  53033. },
  53034. {
  53035. name: "Hungry",
  53036. height: math.unit(75, "meters"),
  53037. form: "monstrous"
  53038. },
  53039. {
  53040. name: "Ravenous",
  53041. height: math.unit(500, "meters"),
  53042. form: "monstrous"
  53043. },
  53044. {
  53045. name: "\"Normal\"",
  53046. height: math.unit(10, "meters"),
  53047. form: "taur"
  53048. },
  53049. {
  53050. name: "Macro",
  53051. height: math.unit(50, "meters"),
  53052. form: "taur"
  53053. },
  53054. ],
  53055. {
  53056. "normal": {
  53057. name: "Normal",
  53058. default: true
  53059. },
  53060. "monstrous": {
  53061. name: "Monstrous",
  53062. },
  53063. "taur": {
  53064. name: "Taur",
  53065. },
  53066. }
  53067. ))
  53068. characterMakers.push(() => makeCharacter(
  53069. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53070. {
  53071. front: {
  53072. height: math.unit(6 + 2/12, "feet"),
  53073. weight: math.unit(500, "lb"),
  53074. preyCapacity: math.unit(4, "people"),
  53075. name: "Front",
  53076. image: {
  53077. source: "./media/characters/yepir/front.svg"
  53078. }
  53079. },
  53080. side: {
  53081. height: math.unit(6 + 2/12, "feet"),
  53082. weight: math.unit(500, "lb"),
  53083. preyCapacity: math.unit(4, "people"),
  53084. name: "Side",
  53085. image: {
  53086. source: "./media/characters/yepir/side.svg"
  53087. }
  53088. },
  53089. paw: {
  53090. height: math.unit(1.05, "feet"),
  53091. name: "Paw",
  53092. image: {
  53093. source: "./media/characters/yepir/paw.svg"
  53094. }
  53095. },
  53096. },
  53097. [
  53098. {
  53099. name: "Normal",
  53100. height: math.unit(6 + 2/12, "feet"),
  53101. default: true
  53102. },
  53103. ]
  53104. ))
  53105. characterMakers.push(() => makeCharacter(
  53106. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53107. {
  53108. front: {
  53109. height: math.unit(5 + 4/12, "feet"),
  53110. name: "Front",
  53111. image: {
  53112. source: "./media/characters/russec/front.svg",
  53113. extra: 1926/1626,
  53114. bottom: 72/1998
  53115. }
  53116. },
  53117. back: {
  53118. height: math.unit(5 + 4/12, "feet"),
  53119. name: "Back",
  53120. image: {
  53121. source: "./media/characters/russec/back.svg",
  53122. extra: 1910/1591,
  53123. bottom: 48/1958
  53124. }
  53125. },
  53126. },
  53127. [
  53128. {
  53129. name: "Small",
  53130. height: math.unit(5 + 4/12, "feet")
  53131. },
  53132. {
  53133. name: "Normal",
  53134. height: math.unit(72, "feet"),
  53135. default: true
  53136. },
  53137. ]
  53138. ))
  53139. characterMakers.push(() => makeCharacter(
  53140. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53141. {
  53142. side: {
  53143. height: math.unit(12, "feet"),
  53144. name: "Side",
  53145. image: {
  53146. source: "./media/characters/cianus/side.svg",
  53147. extra: 808/526,
  53148. bottom: 61/869
  53149. }
  53150. },
  53151. },
  53152. [
  53153. {
  53154. name: "Normal",
  53155. height: math.unit(12, "feet"),
  53156. default: true
  53157. },
  53158. ]
  53159. ))
  53160. characterMakers.push(() => makeCharacter(
  53161. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53162. {
  53163. front: {
  53164. height: math.unit(9 + 6/12, "feet"),
  53165. weight: math.unit(300, "lb"),
  53166. name: "Front",
  53167. image: {
  53168. source: "./media/characters/ahab/front.svg",
  53169. extra: 1897/1868,
  53170. bottom: 121/2018
  53171. }
  53172. },
  53173. frontNsfw: {
  53174. height: math.unit(9 + 6/12, "feet"),
  53175. weight: math.unit(300, "lb"),
  53176. name: "Front-nsfw",
  53177. image: {
  53178. source: "./media/characters/ahab/front-nsfw.svg",
  53179. extra: 1897/1868,
  53180. bottom: 121/2018
  53181. }
  53182. },
  53183. },
  53184. [
  53185. {
  53186. name: "Normal",
  53187. height: math.unit(9 + 6/12, "feet")
  53188. },
  53189. {
  53190. name: "Macro",
  53191. height: math.unit(657, "feet"),
  53192. default: true
  53193. },
  53194. ]
  53195. ))
  53196. characterMakers.push(() => makeCharacter(
  53197. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53198. {
  53199. front: {
  53200. height: math.unit(2.69, "meters"),
  53201. weight: math.unit(132, "kg"),
  53202. name: "Front",
  53203. image: {
  53204. source: "./media/characters/aarkus/front.svg",
  53205. extra: 1400/1231,
  53206. bottom: 34/1434
  53207. }
  53208. },
  53209. back: {
  53210. height: math.unit(2.69, "meters"),
  53211. weight: math.unit(132, "kg"),
  53212. name: "Back",
  53213. image: {
  53214. source: "./media/characters/aarkus/back.svg",
  53215. extra: 1381/1218,
  53216. bottom: 30/1411
  53217. }
  53218. },
  53219. frontNsfw: {
  53220. height: math.unit(2.69, "meters"),
  53221. weight: math.unit(132, "kg"),
  53222. name: "Front (NSFW)",
  53223. image: {
  53224. source: "./media/characters/aarkus/front-nsfw.svg",
  53225. extra: 1400/1231,
  53226. bottom: 34/1434
  53227. }
  53228. },
  53229. foot: {
  53230. height: math.unit(1.45, "feet"),
  53231. name: "Foot",
  53232. image: {
  53233. source: "./media/characters/aarkus/foot.svg"
  53234. }
  53235. },
  53236. head: {
  53237. height: math.unit(2.85, "feet"),
  53238. name: "Head",
  53239. image: {
  53240. source: "./media/characters/aarkus/head.svg"
  53241. }
  53242. },
  53243. headAlt: {
  53244. height: math.unit(3.07, "feet"),
  53245. name: "Head (Alt)",
  53246. image: {
  53247. source: "./media/characters/aarkus/head-alt.svg"
  53248. }
  53249. },
  53250. mouth: {
  53251. height: math.unit(1.25, "feet"),
  53252. name: "Mouth",
  53253. image: {
  53254. source: "./media/characters/aarkus/mouth.svg"
  53255. }
  53256. },
  53257. dick: {
  53258. height: math.unit(1.77, "feet"),
  53259. name: "Dick",
  53260. image: {
  53261. source: "./media/characters/aarkus/dick.svg"
  53262. }
  53263. },
  53264. },
  53265. [
  53266. {
  53267. name: "Normal",
  53268. height: math.unit(2.69, "meters"),
  53269. default: true
  53270. },
  53271. {
  53272. name: "Macro",
  53273. height: math.unit(269, "meters")
  53274. },
  53275. {
  53276. name: "Macro+",
  53277. height: math.unit(672.5, "meters")
  53278. },
  53279. {
  53280. name: "Megamacro",
  53281. height: math.unit(2.017, "km")
  53282. },
  53283. ]
  53284. ))
  53285. characterMakers.push(() => makeCharacter(
  53286. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53287. {
  53288. front: {
  53289. height: math.unit(23.47, "cm"),
  53290. weight: math.unit(600, "grams"),
  53291. name: "Front",
  53292. image: {
  53293. source: "./media/characters/diode/front.svg",
  53294. extra: 1778/1396,
  53295. bottom: 95/1873
  53296. }
  53297. },
  53298. side: {
  53299. height: math.unit(23.47, "cm"),
  53300. weight: math.unit(600, "grams"),
  53301. name: "Side",
  53302. image: {
  53303. source: "./media/characters/diode/side.svg",
  53304. extra: 1831/1404,
  53305. bottom: 86/1917
  53306. }
  53307. },
  53308. wings: {
  53309. height: math.unit(0.683, "feet"),
  53310. name: "Wings",
  53311. image: {
  53312. source: "./media/characters/diode/wings.svg"
  53313. }
  53314. },
  53315. },
  53316. [
  53317. {
  53318. name: "Normal",
  53319. height: math.unit(23.47, "cm"),
  53320. default: true
  53321. },
  53322. ]
  53323. ))
  53324. characterMakers.push(() => makeCharacter(
  53325. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53326. {
  53327. front: {
  53328. height: math.unit(6 + 3/12, "feet"),
  53329. weight: math.unit(250, "lb"),
  53330. name: "Front",
  53331. image: {
  53332. source: "./media/characters/reika/front.svg",
  53333. extra: 1120/1078,
  53334. bottom: 86/1206
  53335. }
  53336. },
  53337. },
  53338. [
  53339. {
  53340. name: "Normal",
  53341. height: math.unit(6 + 3/12, "feet"),
  53342. default: true
  53343. },
  53344. ]
  53345. ))
  53346. characterMakers.push(() => makeCharacter(
  53347. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53348. {
  53349. front: {
  53350. height: math.unit(16 + 8/12, "feet"),
  53351. weight: math.unit(9000, "lb"),
  53352. name: "Front",
  53353. image: {
  53354. source: "./media/characters/lokuto-takama/front.svg",
  53355. extra: 1774/1632,
  53356. bottom: 147/1921
  53357. },
  53358. extraAttributes: {
  53359. "bustWidth": {
  53360. name: "Bust Width",
  53361. power: 1,
  53362. type: "length",
  53363. base: math.unit(2.4, "meters")
  53364. },
  53365. "breastWeight": {
  53366. name: "Breast Weight",
  53367. power: 3,
  53368. type: "mass",
  53369. base: math.unit(1000, "kg")
  53370. },
  53371. }
  53372. },
  53373. },
  53374. [
  53375. {
  53376. name: "Normal",
  53377. height: math.unit(16 + 8/12, "feet"),
  53378. default: true
  53379. },
  53380. ]
  53381. ))
  53382. characterMakers.push(() => makeCharacter(
  53383. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53384. {
  53385. front: {
  53386. height: math.unit(10, "cm"),
  53387. weight: math.unit(850, "grams"),
  53388. name: "Front",
  53389. image: {
  53390. source: "./media/characters/owak-bone/front.svg",
  53391. extra: 1965/1801,
  53392. bottom: 31/1996
  53393. }
  53394. },
  53395. },
  53396. [
  53397. {
  53398. name: "Normal",
  53399. height: math.unit(10, "cm"),
  53400. default: true
  53401. },
  53402. ]
  53403. ))
  53404. characterMakers.push(() => makeCharacter(
  53405. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53406. {
  53407. front: {
  53408. height: math.unit(2 + 6/12, "feet"),
  53409. weight: math.unit(9, "lb"),
  53410. name: "Front",
  53411. image: {
  53412. source: "./media/characters/muffin/front.svg",
  53413. extra: 1220/1195,
  53414. bottom: 84/1304
  53415. }
  53416. },
  53417. },
  53418. [
  53419. {
  53420. name: "Normal",
  53421. height: math.unit(2 + 6/12, "feet"),
  53422. default: true
  53423. },
  53424. ]
  53425. ))
  53426. characterMakers.push(() => makeCharacter(
  53427. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53428. {
  53429. front: {
  53430. height: math.unit(7, "feet"),
  53431. name: "Front",
  53432. image: {
  53433. source: "./media/characters/chimera/front.svg",
  53434. extra: 1752/1614,
  53435. bottom: 68/1820
  53436. }
  53437. },
  53438. },
  53439. [
  53440. {
  53441. name: "Normal",
  53442. height: math.unit(7, "feet")
  53443. },
  53444. {
  53445. name: "Gigamacro",
  53446. height: math.unit(2.9, "gigameters"),
  53447. default: true
  53448. },
  53449. {
  53450. name: "Universal",
  53451. height: math.unit(1.56e26, "yottameters")
  53452. },
  53453. ]
  53454. ))
  53455. characterMakers.push(() => makeCharacter(
  53456. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53457. {
  53458. front: {
  53459. height: math.unit(3, "feet"),
  53460. weight: math.unit(20, "lb"),
  53461. name: "Front",
  53462. image: {
  53463. source: "./media/characters/kit-fennec-fox/front.svg",
  53464. extra: 1027/932,
  53465. bottom: 16/1043
  53466. }
  53467. },
  53468. back: {
  53469. height: math.unit(3, "feet"),
  53470. weight: math.unit(20, "lb"),
  53471. name: "Back",
  53472. image: {
  53473. source: "./media/characters/kit-fennec-fox/back.svg",
  53474. extra: 1027/932,
  53475. bottom: 16/1043
  53476. }
  53477. },
  53478. },
  53479. [
  53480. {
  53481. name: "Normal",
  53482. height: math.unit(3, "feet"),
  53483. default: true
  53484. },
  53485. ]
  53486. ))
  53487. characterMakers.push(() => makeCharacter(
  53488. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53489. {
  53490. front: {
  53491. height: math.unit(167, "cm"),
  53492. name: "Front",
  53493. image: {
  53494. source: "./media/characters/blue-otter/front.svg",
  53495. extra: 1951/1920,
  53496. bottom: 31/1982
  53497. }
  53498. },
  53499. },
  53500. [
  53501. {
  53502. name: "Otter-Sized",
  53503. height: math.unit(100, "cm")
  53504. },
  53505. {
  53506. name: "Normal",
  53507. height: math.unit(167, "cm"),
  53508. default: true
  53509. },
  53510. ]
  53511. ))
  53512. characterMakers.push(() => makeCharacter(
  53513. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53514. {
  53515. front: {
  53516. height: math.unit(4 + 4/12, "feet"),
  53517. name: "Front",
  53518. image: {
  53519. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53520. extra: 1072/1067,
  53521. bottom: 117/1189
  53522. }
  53523. },
  53524. back: {
  53525. height: math.unit(4 + 4/12, "feet"),
  53526. name: "Back",
  53527. image: {
  53528. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53529. extra: 1135/1129,
  53530. bottom: 57/1192
  53531. }
  53532. },
  53533. head: {
  53534. height: math.unit(1.77, "feet"),
  53535. name: "Head",
  53536. image: {
  53537. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53538. }
  53539. },
  53540. },
  53541. [
  53542. {
  53543. name: "Normal",
  53544. height: math.unit(4 + 4/12, "feet"),
  53545. default: true
  53546. },
  53547. ]
  53548. ))
  53549. characterMakers.push(() => makeCharacter(
  53550. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53551. {
  53552. front: {
  53553. height: math.unit(2, "inches"),
  53554. name: "Front",
  53555. image: {
  53556. source: "./media/characters/carley-hartford/front.svg",
  53557. extra: 1035/988,
  53558. bottom: 23/1058
  53559. }
  53560. },
  53561. back: {
  53562. height: math.unit(2, "inches"),
  53563. name: "Back",
  53564. image: {
  53565. source: "./media/characters/carley-hartford/back.svg",
  53566. extra: 1035/988,
  53567. bottom: 23/1058
  53568. }
  53569. },
  53570. dressed: {
  53571. height: math.unit(2, "inches"),
  53572. name: "Dressed",
  53573. image: {
  53574. source: "./media/characters/carley-hartford/dressed.svg",
  53575. extra: 651/620,
  53576. bottom: 0/651
  53577. }
  53578. },
  53579. },
  53580. [
  53581. {
  53582. name: "Micro",
  53583. height: math.unit(2, "inches"),
  53584. default: true
  53585. },
  53586. {
  53587. name: "Macro",
  53588. height: math.unit(6 + 3/12, "feet")
  53589. },
  53590. ]
  53591. ))
  53592. characterMakers.push(() => makeCharacter(
  53593. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53594. {
  53595. front: {
  53596. height: math.unit(2 + 3/12, "feet"),
  53597. weight: math.unit(15 + 7/16, "lb"),
  53598. name: "Front",
  53599. image: {
  53600. source: "./media/characters/duke/front.svg",
  53601. extra: 910/815,
  53602. bottom: 30/940
  53603. }
  53604. },
  53605. },
  53606. [
  53607. {
  53608. name: "Normal",
  53609. height: math.unit(2 + 3/12, "feet"),
  53610. default: true
  53611. },
  53612. ]
  53613. ))
  53614. characterMakers.push(() => makeCharacter(
  53615. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53616. {
  53617. front: {
  53618. height: math.unit(5 + 4/12, "feet"),
  53619. weight: math.unit(156, "lb"),
  53620. name: "Front",
  53621. image: {
  53622. source: "./media/characters/dein/front.svg",
  53623. extra: 855/815,
  53624. bottom: 48/903
  53625. }
  53626. },
  53627. side: {
  53628. height: math.unit(5 + 4/12, "feet"),
  53629. weight: math.unit(156, "lb"),
  53630. name: "side",
  53631. image: {
  53632. source: "./media/characters/dein/side.svg",
  53633. extra: 846/803,
  53634. bottom: 25/871
  53635. }
  53636. },
  53637. maw: {
  53638. height: math.unit(1.45, "feet"),
  53639. name: "Maw",
  53640. image: {
  53641. source: "./media/characters/dein/maw.svg"
  53642. }
  53643. },
  53644. },
  53645. [
  53646. {
  53647. name: "Ferret Sized",
  53648. height: math.unit(2 + 5/12, "feet")
  53649. },
  53650. {
  53651. name: "Normal",
  53652. height: math.unit(5 + 4/12, "feet"),
  53653. default: true
  53654. },
  53655. ]
  53656. ))
  53657. characterMakers.push(() => makeCharacter(
  53658. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53659. {
  53660. front: {
  53661. height: math.unit(84 + 8/12, "feet"),
  53662. weight: math.unit(942180, "lb"),
  53663. name: "Front",
  53664. image: {
  53665. source: "./media/characters/daurine-arima/front.svg",
  53666. extra: 1989/1782,
  53667. bottom: 37/2026
  53668. }
  53669. },
  53670. side: {
  53671. height: math.unit(84 + 8/12, "feet"),
  53672. weight: math.unit(942180, "lb"),
  53673. name: "Side",
  53674. image: {
  53675. source: "./media/characters/daurine-arima/side.svg",
  53676. extra: 1997/1790,
  53677. bottom: 21/2018
  53678. }
  53679. },
  53680. back: {
  53681. height: math.unit(84 + 8/12, "feet"),
  53682. weight: math.unit(942180, "lb"),
  53683. name: "Back",
  53684. image: {
  53685. source: "./media/characters/daurine-arima/back.svg",
  53686. extra: 1992/1800,
  53687. bottom: 12/2004
  53688. }
  53689. },
  53690. head: {
  53691. height: math.unit(15.5, "feet"),
  53692. name: "Head",
  53693. image: {
  53694. source: "./media/characters/daurine-arima/head.svg"
  53695. }
  53696. },
  53697. headAlt: {
  53698. height: math.unit(19.19, "feet"),
  53699. name: "Head (Alt)",
  53700. image: {
  53701. source: "./media/characters/daurine-arima/head-alt.svg"
  53702. }
  53703. },
  53704. },
  53705. [
  53706. {
  53707. name: "Minimum height",
  53708. height: math.unit(8 + 10/12, "feet")
  53709. },
  53710. {
  53711. name: "Comfort height",
  53712. height: math.unit(19 + 6 /12, "feet")
  53713. },
  53714. {
  53715. name: "\"Normal\" height",
  53716. height: math.unit(28 + 10/12, "feet")
  53717. },
  53718. {
  53719. name: "Base height",
  53720. height: math.unit(84 + 8/12, "feet"),
  53721. default: true
  53722. },
  53723. {
  53724. name: "Mini-macro",
  53725. height: math.unit(2360, "feet")
  53726. },
  53727. {
  53728. name: "Macro",
  53729. height: math.unit(10, "miles")
  53730. },
  53731. {
  53732. name: "Goddess",
  53733. height: math.unit(9.99e40, "yottameters")
  53734. },
  53735. ]
  53736. ))
  53737. characterMakers.push(() => makeCharacter(
  53738. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53739. {
  53740. front: {
  53741. height: math.unit(2.3, "meters"),
  53742. name: "Front",
  53743. image: {
  53744. source: "./media/characters/cilenomon/front.svg",
  53745. extra: 1963/1778,
  53746. bottom: 54/2017
  53747. }
  53748. },
  53749. },
  53750. [
  53751. {
  53752. name: "Normal",
  53753. height: math.unit(2.3, "meters"),
  53754. default: true
  53755. },
  53756. {
  53757. name: "Big",
  53758. height: math.unit(5, "meters")
  53759. },
  53760. {
  53761. name: "Macro",
  53762. height: math.unit(30, "meters")
  53763. },
  53764. {
  53765. name: "True",
  53766. height: math.unit(1, "universe")
  53767. },
  53768. ]
  53769. ))
  53770. characterMakers.push(() => makeCharacter(
  53771. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53772. {
  53773. front: {
  53774. height: math.unit(5, "feet"),
  53775. name: "Front",
  53776. image: {
  53777. source: "./media/characters/sen-mink/front.svg",
  53778. extra: 1727/1675,
  53779. bottom: 35/1762
  53780. }
  53781. },
  53782. },
  53783. [
  53784. {
  53785. name: "Normal",
  53786. height: math.unit(5, "feet"),
  53787. default: true
  53788. },
  53789. ]
  53790. ))
  53791. characterMakers.push(() => makeCharacter(
  53792. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53793. {
  53794. front: {
  53795. height: math.unit(5.42999, "feet"),
  53796. weight: math.unit(100, "lb"),
  53797. name: "Front",
  53798. image: {
  53799. source: "./media/characters/ophois/front.svg",
  53800. extra: 1429/1286,
  53801. bottom: 60/1489
  53802. }
  53803. },
  53804. },
  53805. [
  53806. {
  53807. name: "Normal",
  53808. height: math.unit(5.42999, "feet"),
  53809. default: true
  53810. },
  53811. ]
  53812. ))
  53813. characterMakers.push(() => makeCharacter(
  53814. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53815. {
  53816. front: {
  53817. height: math.unit(2, "meters"),
  53818. name: "Front",
  53819. image: {
  53820. source: "./media/characters/riley/front.svg",
  53821. extra: 1779/1754,
  53822. bottom: 139/1918
  53823. }
  53824. },
  53825. },
  53826. [
  53827. {
  53828. name: "Normal",
  53829. height: math.unit(2, "meters"),
  53830. default: true
  53831. },
  53832. ]
  53833. ))
  53834. characterMakers.push(() => makeCharacter(
  53835. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53836. {
  53837. front: {
  53838. height: math.unit(6 + 2/12, "feet"),
  53839. weight: math.unit(195, "lb"),
  53840. preyCapacity: math.unit(6, "people"),
  53841. name: "Front",
  53842. image: {
  53843. source: "./media/characters/shuken-flash/front.svg",
  53844. extra: 1905/1739,
  53845. bottom: 65/1970
  53846. }
  53847. },
  53848. back: {
  53849. height: math.unit(6 + 2/12, "feet"),
  53850. weight: math.unit(195, "lb"),
  53851. preyCapacity: math.unit(6, "people"),
  53852. name: "Back",
  53853. image: {
  53854. source: "./media/characters/shuken-flash/back.svg",
  53855. extra: 1912/1751,
  53856. bottom: 13/1925
  53857. }
  53858. },
  53859. },
  53860. [
  53861. {
  53862. name: "Normal",
  53863. height: math.unit(6 + 2/12, "feet"),
  53864. default: true
  53865. },
  53866. ]
  53867. ))
  53868. characterMakers.push(() => makeCharacter(
  53869. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53870. {
  53871. front: {
  53872. height: math.unit(5 + 9/12, "feet"),
  53873. weight: math.unit(150, "lb"),
  53874. name: "Front",
  53875. image: {
  53876. source: "./media/characters/plat/front.svg",
  53877. extra: 1816/1703,
  53878. bottom: 43/1859
  53879. }
  53880. },
  53881. side: {
  53882. height: math.unit(5 + 9/12, "feet"),
  53883. weight: math.unit(300, "lb"),
  53884. name: "Side",
  53885. image: {
  53886. source: "./media/characters/plat/side.svg",
  53887. extra: 1824/1699,
  53888. bottom: 18/1842
  53889. }
  53890. },
  53891. },
  53892. [
  53893. {
  53894. name: "Normal",
  53895. height: math.unit(5 + 9/12, "feet"),
  53896. default: true
  53897. },
  53898. ]
  53899. ))
  53900. characterMakers.push(() => makeCharacter(
  53901. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53902. {
  53903. front: {
  53904. height: math.unit(9, "feet"),
  53905. weight: math.unit(1800, "lb"),
  53906. name: "Front",
  53907. image: {
  53908. source: "./media/characters/elaine/front.svg",
  53909. extra: 1833/1354,
  53910. bottom: 25/1858
  53911. }
  53912. },
  53913. back: {
  53914. height: math.unit(8.8, "feet"),
  53915. weight: math.unit(1800, "lb"),
  53916. name: "Back",
  53917. image: {
  53918. source: "./media/characters/elaine/back.svg",
  53919. extra: 1641/1233,
  53920. bottom: 53/1694
  53921. }
  53922. },
  53923. },
  53924. [
  53925. {
  53926. name: "Normal",
  53927. height: math.unit(9, "feet"),
  53928. default: true
  53929. },
  53930. ]
  53931. ))
  53932. characterMakers.push(() => makeCharacter(
  53933. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  53934. {
  53935. front: {
  53936. height: math.unit(17 + 9/12, "feet"),
  53937. weight: math.unit(8000, "lb"),
  53938. name: "Front",
  53939. image: {
  53940. source: "./media/characters/vera-raven/front.svg",
  53941. extra: 1457/1412,
  53942. bottom: 121/1578
  53943. }
  53944. },
  53945. side: {
  53946. height: math.unit(17 + 9/12, "feet"),
  53947. weight: math.unit(8000, "lb"),
  53948. name: "Side",
  53949. image: {
  53950. source: "./media/characters/vera-raven/side.svg",
  53951. extra: 1510/1464,
  53952. bottom: 54/1564
  53953. }
  53954. },
  53955. },
  53956. [
  53957. {
  53958. name: "Normal",
  53959. height: math.unit(17 + 9/12, "feet"),
  53960. default: true
  53961. },
  53962. ]
  53963. ))
  53964. characterMakers.push(() => makeCharacter(
  53965. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  53966. {
  53967. dressed: {
  53968. height: math.unit(6 + 9/12, "feet"),
  53969. name: "Dressed",
  53970. image: {
  53971. source: "./media/characters/nakisha/dressed.svg",
  53972. extra: 1909/1757,
  53973. bottom: 48/1957
  53974. }
  53975. },
  53976. nude: {
  53977. height: math.unit(6 + 9/12, "feet"),
  53978. name: "Nude",
  53979. image: {
  53980. source: "./media/characters/nakisha/nude.svg",
  53981. extra: 1917/1765,
  53982. bottom: 34/1951
  53983. }
  53984. },
  53985. },
  53986. [
  53987. {
  53988. name: "Normal",
  53989. height: math.unit(6 + 9/12, "feet"),
  53990. default: true
  53991. },
  53992. ]
  53993. ))
  53994. characterMakers.push(() => makeCharacter(
  53995. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  53996. {
  53997. front: {
  53998. height: math.unit(87, "meters"),
  53999. name: "Front",
  54000. image: {
  54001. source: "./media/characters/serafin/front.svg",
  54002. extra: 1919/1776,
  54003. bottom: 65/1984
  54004. }
  54005. },
  54006. },
  54007. [
  54008. {
  54009. name: "Normal",
  54010. height: math.unit(87, "meters"),
  54011. default: true
  54012. },
  54013. ]
  54014. ))
  54015. characterMakers.push(() => makeCharacter(
  54016. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54017. {
  54018. front: {
  54019. height: math.unit(6, "feet"),
  54020. weight: math.unit(200, "lb"),
  54021. name: "Front",
  54022. image: {
  54023. source: "./media/characters/poptart/front.svg",
  54024. extra: 615/583,
  54025. bottom: 23/638
  54026. }
  54027. },
  54028. back: {
  54029. height: math.unit(6, "feet"),
  54030. weight: math.unit(200, "lb"),
  54031. name: "Back",
  54032. image: {
  54033. source: "./media/characters/poptart/back.svg",
  54034. extra: 617/584,
  54035. bottom: 22/639
  54036. }
  54037. },
  54038. frontNsfw: {
  54039. height: math.unit(6, "feet"),
  54040. weight: math.unit(200, "lb"),
  54041. name: "Front (NSFW)",
  54042. image: {
  54043. source: "./media/characters/poptart/front-nsfw.svg",
  54044. extra: 615/583,
  54045. bottom: 23/638
  54046. }
  54047. },
  54048. backNsfw: {
  54049. height: math.unit(6, "feet"),
  54050. weight: math.unit(200, "lb"),
  54051. name: "Back (NSFW)",
  54052. image: {
  54053. source: "./media/characters/poptart/back-nsfw.svg",
  54054. extra: 617/584,
  54055. bottom: 22/639
  54056. }
  54057. },
  54058. hand: {
  54059. height: math.unit(1.14, "feet"),
  54060. name: "Hand",
  54061. image: {
  54062. source: "./media/characters/poptart/hand.svg"
  54063. }
  54064. },
  54065. foot: {
  54066. height: math.unit(1.5, "feet"),
  54067. name: "Foot",
  54068. image: {
  54069. source: "./media/characters/poptart/foot.svg"
  54070. }
  54071. },
  54072. },
  54073. [
  54074. {
  54075. name: "Normal",
  54076. height: math.unit(6, "feet"),
  54077. default: true
  54078. },
  54079. {
  54080. name: "Grande",
  54081. height: math.unit(350, "feet")
  54082. },
  54083. {
  54084. name: "Massif",
  54085. height: math.unit(967, "feet")
  54086. },
  54087. ]
  54088. ))
  54089. characterMakers.push(() => makeCharacter(
  54090. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54091. {
  54092. hyenaSide: {
  54093. height: math.unit(120, "cm"),
  54094. weight: math.unit(120, "lb"),
  54095. name: "Side",
  54096. image: {
  54097. source: "./media/characters/trance/hyena-side.svg",
  54098. extra: 998/904,
  54099. bottom: 76/1074
  54100. }
  54101. },
  54102. },
  54103. [
  54104. {
  54105. name: "Normal",
  54106. height: math.unit(120, "cm"),
  54107. default: true
  54108. },
  54109. {
  54110. name: "Dire",
  54111. height: math.unit(230, "cm")
  54112. },
  54113. {
  54114. name: "Macro",
  54115. height: math.unit(37, "feet")
  54116. },
  54117. ]
  54118. ))
  54119. characterMakers.push(() => makeCharacter(
  54120. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54121. {
  54122. front: {
  54123. height: math.unit(6 + 3/12, "feet"),
  54124. name: "Front",
  54125. image: {
  54126. source: "./media/characters/michael-berretta/front.svg",
  54127. extra: 515/494,
  54128. bottom: 20/535
  54129. }
  54130. },
  54131. back: {
  54132. height: math.unit(6 + 3/12, "feet"),
  54133. name: "Back",
  54134. image: {
  54135. source: "./media/characters/michael-berretta/back.svg",
  54136. extra: 520/497,
  54137. bottom: 21/541
  54138. }
  54139. },
  54140. frontNsfw: {
  54141. height: math.unit(6 + 3/12, "feet"),
  54142. name: "Front (NSFW)",
  54143. image: {
  54144. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54145. extra: 515/494,
  54146. bottom: 20/535
  54147. }
  54148. },
  54149. dick: {
  54150. height: math.unit(1, "feet"),
  54151. name: "Dick",
  54152. image: {
  54153. source: "./media/characters/michael-berretta/dick.svg"
  54154. }
  54155. },
  54156. },
  54157. [
  54158. {
  54159. name: "Normal",
  54160. height: math.unit(6 + 3/12, "feet"),
  54161. default: true
  54162. },
  54163. {
  54164. name: "Big",
  54165. height: math.unit(12, "feet")
  54166. },
  54167. {
  54168. name: "Macro",
  54169. height: math.unit(187.5, "feet")
  54170. },
  54171. ]
  54172. ))
  54173. characterMakers.push(() => makeCharacter(
  54174. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54175. {
  54176. front: {
  54177. height: math.unit(9 + 9/12, "feet"),
  54178. weight: math.unit(1244, "lb"),
  54179. name: "Front",
  54180. image: {
  54181. source: "./media/characters/stella-edgecomb/front.svg",
  54182. extra: 1835/1706,
  54183. bottom: 49/1884
  54184. }
  54185. },
  54186. pen: {
  54187. height: math.unit(0.95, "feet"),
  54188. name: "Pen",
  54189. image: {
  54190. source: "./media/characters/stella-edgecomb/pen.svg"
  54191. }
  54192. },
  54193. },
  54194. [
  54195. {
  54196. name: "Cozy Bear",
  54197. height: math.unit(0.5, "inches")
  54198. },
  54199. {
  54200. name: "Normal",
  54201. height: math.unit(9 + 9/12, "feet"),
  54202. default: true
  54203. },
  54204. {
  54205. name: "Giga Bear",
  54206. height: math.unit(1, "mile")
  54207. },
  54208. {
  54209. name: "Great Bear",
  54210. height: math.unit(53, "miles")
  54211. },
  54212. {
  54213. name: "Goddess Bear",
  54214. height: math.unit(40000, "miles")
  54215. },
  54216. {
  54217. name: "Sun Bear",
  54218. height: math.unit(900000, "miles")
  54219. },
  54220. ]
  54221. ))
  54222. characterMakers.push(() => makeCharacter(
  54223. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54224. {
  54225. anthroFront: {
  54226. height: math.unit(556, "cm"),
  54227. weight: math.unit(2650, "kg"),
  54228. preyCapacity: math.unit(3, "people"),
  54229. name: "Front",
  54230. image: {
  54231. source: "./media/characters/ash´iika/front.svg",
  54232. extra: 710/673,
  54233. bottom: 15/725
  54234. },
  54235. form: "anthro",
  54236. default: true
  54237. },
  54238. anthroSide: {
  54239. height: math.unit(556, "cm"),
  54240. weight: math.unit(2650, "kg"),
  54241. preyCapacity: math.unit(3, "people"),
  54242. name: "Side",
  54243. image: {
  54244. source: "./media/characters/ash´iika/side.svg",
  54245. extra: 696/676,
  54246. bottom: 13/709
  54247. },
  54248. form: "anthro"
  54249. },
  54250. anthroDressed: {
  54251. height: math.unit(556, "cm"),
  54252. weight: math.unit(2650, "kg"),
  54253. preyCapacity: math.unit(3, "people"),
  54254. name: "Dressed",
  54255. image: {
  54256. source: "./media/characters/ash´iika/dressed.svg",
  54257. extra: 710/673,
  54258. bottom: 15/725
  54259. },
  54260. form: "anthro"
  54261. },
  54262. anthroHead: {
  54263. height: math.unit(3.5, "feet"),
  54264. name: "Head",
  54265. image: {
  54266. source: "./media/characters/ash´iika/head.svg",
  54267. extra: 348/291,
  54268. bottom: 45/393
  54269. },
  54270. form: "anthro"
  54271. },
  54272. feralSide: {
  54273. height: math.unit(870, "cm"),
  54274. weight: math.unit(17500, "kg"),
  54275. preyCapacity: math.unit(15, "people"),
  54276. name: "Side",
  54277. image: {
  54278. source: "./media/characters/ash´iika/feral.svg",
  54279. extra: 595/199,
  54280. bottom: 7/602
  54281. },
  54282. form: "feral",
  54283. default: true,
  54284. },
  54285. },
  54286. [
  54287. {
  54288. name: "Normal",
  54289. height: math.unit(556, "cm"),
  54290. default: true,
  54291. form: "anthro"
  54292. },
  54293. {
  54294. name: "Macro",
  54295. height: math.unit(88, "meters"),
  54296. form: "anthro"
  54297. },
  54298. {
  54299. name: "Normal",
  54300. height: math.unit(870, "cm"),
  54301. default: true,
  54302. form: "feral"
  54303. },
  54304. {
  54305. name: "Large",
  54306. height: math.unit(25, "meters"),
  54307. form: "feral"
  54308. },
  54309. ],
  54310. {
  54311. "anthro": {
  54312. name: "Anthro",
  54313. default: true
  54314. },
  54315. "feral": {
  54316. name: "Feral",
  54317. },
  54318. }
  54319. ))
  54320. characterMakers.push(() => makeCharacter(
  54321. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54322. {
  54323. front: {
  54324. height: math.unit(10, "feet"),
  54325. weight: math.unit(800, "lb"),
  54326. name: "Front",
  54327. image: {
  54328. source: "./media/characters/yen/front.svg",
  54329. extra: 443/411,
  54330. bottom: 6/449
  54331. }
  54332. },
  54333. sleeping: {
  54334. height: math.unit(10, "feet"),
  54335. weight: math.unit(800, "lb"),
  54336. name: "Sleeping",
  54337. image: {
  54338. source: "./media/characters/yen/sleeping.svg",
  54339. extra: 470/422,
  54340. bottom: 0/470
  54341. }
  54342. },
  54343. head: {
  54344. height: math.unit(2.2, "feet"),
  54345. name: "Head",
  54346. image: {
  54347. source: "./media/characters/yen/head.svg"
  54348. }
  54349. },
  54350. headAlt: {
  54351. height: math.unit(2.1, "feet"),
  54352. name: "Head (Alt)",
  54353. image: {
  54354. source: "./media/characters/yen/head-alt.svg"
  54355. }
  54356. },
  54357. },
  54358. [
  54359. {
  54360. name: "Normal",
  54361. height: math.unit(10, "feet"),
  54362. default: true
  54363. },
  54364. ]
  54365. ))
  54366. characterMakers.push(() => makeCharacter(
  54367. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54368. {
  54369. front: {
  54370. height: math.unit(12, "feet"),
  54371. name: "Front",
  54372. image: {
  54373. source: "./media/characters/citra/front.svg",
  54374. extra: 1950/1710,
  54375. bottom: 47/1997
  54376. }
  54377. },
  54378. },
  54379. [
  54380. {
  54381. name: "Normal",
  54382. height: math.unit(12, "feet"),
  54383. default: true
  54384. },
  54385. ]
  54386. ))
  54387. characterMakers.push(() => makeCharacter(
  54388. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54389. {
  54390. side: {
  54391. height: math.unit(7 + 10/12, "feet"),
  54392. name: "Side",
  54393. image: {
  54394. source: "./media/characters/sholstim/side.svg",
  54395. extra: 786/682,
  54396. bottom: 40/826
  54397. }
  54398. },
  54399. },
  54400. [
  54401. {
  54402. name: "Normal",
  54403. height: math.unit(7 + 10/12, "feet"),
  54404. default: true
  54405. },
  54406. ]
  54407. ))
  54408. characterMakers.push(() => makeCharacter(
  54409. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54410. {
  54411. front: {
  54412. height: math.unit(3.10, "meters"),
  54413. name: "Front",
  54414. image: {
  54415. source: "./media/characters/aggyn/front.svg",
  54416. extra: 1188/963,
  54417. bottom: 24/1212
  54418. }
  54419. },
  54420. },
  54421. [
  54422. {
  54423. name: "Normal",
  54424. height: math.unit(3.10, "meters"),
  54425. default: true
  54426. },
  54427. ]
  54428. ))
  54429. characterMakers.push(() => makeCharacter(
  54430. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54431. {
  54432. front: {
  54433. height: math.unit(7 + 5/12, "feet"),
  54434. weight: math.unit(687, "lb"),
  54435. name: "Front",
  54436. image: {
  54437. source: "./media/characters/alsandair-hergenroether/front.svg",
  54438. extra: 1251/1186,
  54439. bottom: 75/1326
  54440. }
  54441. },
  54442. back: {
  54443. height: math.unit(7 + 5/12, "feet"),
  54444. weight: math.unit(687, "lb"),
  54445. name: "Back",
  54446. image: {
  54447. source: "./media/characters/alsandair-hergenroether/back.svg",
  54448. extra: 1290/1229,
  54449. bottom: 17/1307
  54450. }
  54451. },
  54452. },
  54453. [
  54454. {
  54455. name: "Max Compression",
  54456. height: math.unit(7 + 5/12, "feet"),
  54457. default: true
  54458. },
  54459. {
  54460. name: "\"Normal\"",
  54461. height: math.unit(2, "universes")
  54462. },
  54463. ]
  54464. ))
  54465. characterMakers.push(() => makeCharacter(
  54466. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54467. {
  54468. front: {
  54469. height: math.unit(4 + 1/12, "feet"),
  54470. weight: math.unit(92, "lb"),
  54471. name: "Front",
  54472. image: {
  54473. source: "./media/characters/ie/front.svg",
  54474. extra: 1585/1352,
  54475. bottom: 91/1676
  54476. }
  54477. },
  54478. },
  54479. [
  54480. {
  54481. name: "Normal",
  54482. height: math.unit(4 + 1/12, "feet"),
  54483. default: true
  54484. },
  54485. ]
  54486. ))
  54487. characterMakers.push(() => makeCharacter(
  54488. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54489. {
  54490. anthro: {
  54491. height: math.unit(6, "feet"),
  54492. weight: math.unit(150, "lb"),
  54493. name: "Front",
  54494. image: {
  54495. source: "./media/characters/willow/anthro.svg",
  54496. extra: 1073/986,
  54497. bottom: 34/1107
  54498. },
  54499. form: "anthro",
  54500. default: true
  54501. },
  54502. taur: {
  54503. height: math.unit(6, "feet"),
  54504. weight: math.unit(150, "lb"),
  54505. name: "Side",
  54506. image: {
  54507. source: "./media/characters/willow/taur.svg",
  54508. extra: 647/512,
  54509. bottom: 136/783
  54510. },
  54511. form: "taur",
  54512. default: true
  54513. },
  54514. },
  54515. [
  54516. {
  54517. name: "Humanoid",
  54518. height: math.unit(2.7, "meters"),
  54519. form: "anthro"
  54520. },
  54521. {
  54522. name: "Normal",
  54523. height: math.unit(9, "meters"),
  54524. form: "anthro",
  54525. default: true
  54526. },
  54527. {
  54528. name: "Humanoid",
  54529. height: math.unit(2.1, "meters"),
  54530. form: "taur"
  54531. },
  54532. {
  54533. name: "Normal",
  54534. height: math.unit(7, "meters"),
  54535. form: "taur",
  54536. default: true
  54537. },
  54538. ],
  54539. {
  54540. "anthro": {
  54541. name: "Anthro",
  54542. default: true
  54543. },
  54544. "taur": {
  54545. name: "Taur",
  54546. },
  54547. }
  54548. ))
  54549. characterMakers.push(() => makeCharacter(
  54550. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54551. {
  54552. front: {
  54553. height: math.unit(2 + 5/12, "feet"),
  54554. name: "Front",
  54555. image: {
  54556. source: "./media/characters/kyan/front.svg",
  54557. extra: 460/334,
  54558. bottom: 23/483
  54559. },
  54560. extraAttributes: {
  54561. "toeLength": {
  54562. name: "Toe Length",
  54563. power: 1,
  54564. type: "length",
  54565. base: math.unit(7, "cm")
  54566. },
  54567. "toeclawLength": {
  54568. name: "Toeclaw Length",
  54569. power: 1,
  54570. type: "length",
  54571. base: math.unit(4.7, "cm")
  54572. },
  54573. "earHeight": {
  54574. name: "Ear Height",
  54575. power: 1,
  54576. type: "length",
  54577. base: math.unit(14.1, "cm")
  54578. },
  54579. }
  54580. },
  54581. paws: {
  54582. height: math.unit(0.45, "feet"),
  54583. name: "Paws",
  54584. image: {
  54585. source: "./media/characters/kyan/paws.svg",
  54586. extra: 581/581,
  54587. bottom: 114/695
  54588. }
  54589. },
  54590. },
  54591. [
  54592. {
  54593. name: "Normal",
  54594. height: math.unit(2 + 5/12, "feet"),
  54595. default: true
  54596. },
  54597. ]
  54598. ))
  54599. characterMakers.push(() => makeCharacter(
  54600. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54601. {
  54602. front: {
  54603. height: math.unit(2 + 2/3, "feet"),
  54604. name: "Front",
  54605. image: {
  54606. source: "./media/characters/xazzon/front.svg",
  54607. extra: 1109/984,
  54608. bottom: 42/1151
  54609. }
  54610. },
  54611. back: {
  54612. height: math.unit(2 + 2/3, "feet"),
  54613. name: "Back",
  54614. image: {
  54615. source: "./media/characters/xazzon/back.svg",
  54616. extra: 1095/971,
  54617. bottom: 23/1118
  54618. }
  54619. },
  54620. },
  54621. [
  54622. {
  54623. name: "Normal",
  54624. height: math.unit(2 + 2/3, "feet"),
  54625. default: true
  54626. },
  54627. ]
  54628. ))
  54629. characterMakers.push(() => makeCharacter(
  54630. { name: "Aurora Beagsidhe", species: ["catgirl"], tags: ["anthro"] },
  54631. {
  54632. dressed: {
  54633. height: math.unit(5 + 7/12, "feet"),
  54634. weight: math.unit(173, "lb"),
  54635. name: "Dressed",
  54636. image: {
  54637. source: "./media/characters/aurora-beagsidhe/dressed.svg",
  54638. extra: 3262/2862,
  54639. bottom: 188/3450
  54640. }
  54641. },
  54642. undressed: {
  54643. height: math.unit(5 + 7/12, "feet"),
  54644. weight: math.unit(173, "lb"),
  54645. name: "Undressed",
  54646. image: {
  54647. source: "./media/characters/aurora-beagsidhe/undressed.svg",
  54648. extra: 3262/2862,
  54649. bottom: 188/3450
  54650. }
  54651. },
  54652. },
  54653. [
  54654. {
  54655. name: "The void",
  54656. height: math.unit(7.29193e-34, "angstroms")
  54657. },
  54658. {
  54659. name: "Uh-Oh.",
  54660. height: math.unit(5.734e-7, "angstroms")
  54661. },
  54662. {
  54663. name: "Pico",
  54664. height: math.unit(0.876, "angstroms")
  54665. },
  54666. {
  54667. name: "Nano",
  54668. height: math.unit(0.000134200, "mm")
  54669. },
  54670. {
  54671. name: "Micro",
  54672. height: math.unit(0.0673020, "mm")
  54673. },
  54674. {
  54675. name: "Tiny",
  54676. height: math.unit(2.4, "mm")
  54677. },
  54678. {
  54679. name: "Actual Normal",
  54680. height: math.unit(3, "inches"),
  54681. default: true
  54682. },
  54683. {
  54684. name: "Normal",
  54685. height: math.unit(5 + 8/12, "feet")
  54686. },
  54687. {
  54688. name: "Giant",
  54689. height: math.unit(12, "feet")
  54690. },
  54691. {
  54692. name: "City Ruler",
  54693. height: math.unit(270, "meters")
  54694. },
  54695. {
  54696. name: "Giga",
  54697. height: math.unit(1117.6, "km")
  54698. },
  54699. {
  54700. name: "All-Powerful Queen",
  54701. height: math.unit(70.8, "gigameters")
  54702. },
  54703. {
  54704. name: "'Goddess'",
  54705. height: math.unit(600, "yottameters")
  54706. },
  54707. {
  54708. name: "Biggest!",
  54709. height: math.unit(4.23e5, "yottameters")
  54710. },
  54711. ]
  54712. ))
  54713. characterMakers.push(() => makeCharacter(
  54714. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54715. {
  54716. front: {
  54717. height: math.unit(8, "feet"),
  54718. weight: math.unit(300, "lb"),
  54719. name: "Front",
  54720. image: {
  54721. source: "./media/characters/khyla-shadowsong/front.svg",
  54722. extra: 861/798,
  54723. bottom: 32/893
  54724. }
  54725. },
  54726. side: {
  54727. height: math.unit(8, "feet"),
  54728. weight: math.unit(300, "lb"),
  54729. name: "Side",
  54730. image: {
  54731. source: "./media/characters/khyla-shadowsong/side.svg",
  54732. extra: 790/750,
  54733. bottom: 87/877
  54734. }
  54735. },
  54736. back: {
  54737. height: math.unit(8, "feet"),
  54738. weight: math.unit(300, "lb"),
  54739. name: "Back",
  54740. image: {
  54741. source: "./media/characters/khyla-shadowsong/back.svg",
  54742. extra: 855/808,
  54743. bottom: 14/869
  54744. }
  54745. },
  54746. head: {
  54747. height: math.unit(2.7, "feet"),
  54748. name: "Head",
  54749. image: {
  54750. source: "./media/characters/khyla-shadowsong/head.svg"
  54751. }
  54752. },
  54753. },
  54754. [
  54755. {
  54756. name: "Micro",
  54757. height: math.unit(6, "inches")
  54758. },
  54759. {
  54760. name: "Normal",
  54761. height: math.unit(8, "feet"),
  54762. default: true
  54763. },
  54764. ]
  54765. ))
  54766. characterMakers.push(() => makeCharacter(
  54767. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54768. {
  54769. hyperFront: {
  54770. height: math.unit(9 + 4/12, "feet"),
  54771. weight: math.unit(2000, "lb"),
  54772. name: "Front",
  54773. image: {
  54774. source: "./media/characters/tiden/hyper-front.svg",
  54775. extra: 400/382,
  54776. bottom: 6/406
  54777. },
  54778. form: "hyper",
  54779. },
  54780. regularFront: {
  54781. height: math.unit(7 + 10/12, "feet"),
  54782. weight: math.unit(470, "lb"),
  54783. name: "Front",
  54784. image: {
  54785. source: "./media/characters/tiden/regular-front.svg",
  54786. extra: 468/442,
  54787. bottom: 6/474
  54788. },
  54789. form: "regular",
  54790. },
  54791. },
  54792. [
  54793. {
  54794. name: "Normal",
  54795. height: math.unit(9 + 4/12, "feet"),
  54796. default: true,
  54797. form: "hyper"
  54798. },
  54799. {
  54800. name: "Normal",
  54801. height: math.unit(7 + 10/12, "feet"),
  54802. default: true,
  54803. form: "regular"
  54804. },
  54805. ],
  54806. {
  54807. "hyper": {
  54808. name: "Hyper",
  54809. default: true
  54810. },
  54811. "regular": {
  54812. name: "Regular",
  54813. },
  54814. }
  54815. ))
  54816. characterMakers.push(() => makeCharacter(
  54817. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54818. {
  54819. side: {
  54820. height: math.unit(6, "feet"),
  54821. weight: math.unit(150, "lb"),
  54822. name: "Side",
  54823. image: {
  54824. source: "./media/characters/jason-crowe/side.svg",
  54825. extra: 1771/766,
  54826. bottom: 219/1990
  54827. }
  54828. },
  54829. },
  54830. [
  54831. {
  54832. name: "Pocket Gryphon",
  54833. height: math.unit(6, "cm")
  54834. },
  54835. {
  54836. name: "Raven",
  54837. height: math.unit(60, "cm")
  54838. },
  54839. {
  54840. name: "Normal",
  54841. height: math.unit(1, "meter"),
  54842. default: true
  54843. },
  54844. ]
  54845. ))
  54846. characterMakers.push(() => makeCharacter(
  54847. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54848. {
  54849. front: {
  54850. height: math.unit(9 + 6/12, "feet"),
  54851. weight: math.unit(1100, "lb"),
  54852. name: "Front",
  54853. image: {
  54854. source: "./media/characters/django/front.svg",
  54855. extra: 1231/1136,
  54856. bottom: 34/1265
  54857. }
  54858. },
  54859. side: {
  54860. height: math.unit(9 + 6/12, "feet"),
  54861. weight: math.unit(1100, "lb"),
  54862. name: "Side",
  54863. image: {
  54864. source: "./media/characters/django/side.svg",
  54865. extra: 1267/1174,
  54866. bottom: 9/1276
  54867. }
  54868. },
  54869. },
  54870. [
  54871. {
  54872. name: "Normal",
  54873. height: math.unit(9 + 6/12, "feet"),
  54874. default: true
  54875. },
  54876. {
  54877. name: "Macro 1",
  54878. height: math.unit(50, "feet")
  54879. },
  54880. {
  54881. name: "Macro 2",
  54882. height: math.unit(500, "feet")
  54883. },
  54884. {
  54885. name: "Mega Macro",
  54886. height: math.unit(5300, "feet")
  54887. },
  54888. ]
  54889. ))
  54890. characterMakers.push(() => makeCharacter(
  54891. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54892. {
  54893. frontSfw: {
  54894. height: math.unit(120, "cm"),
  54895. weight: math.unit(15, "kg"),
  54896. name: "Front (SFW)",
  54897. image: {
  54898. source: "./media/characters/eri/front-sfw.svg",
  54899. extra: 1014/939,
  54900. bottom: 37/1051
  54901. },
  54902. form: "moth",
  54903. },
  54904. frontNsfw: {
  54905. height: math.unit(120, "cm"),
  54906. weight: math.unit(15, "kg"),
  54907. name: "Front (NSFW)",
  54908. image: {
  54909. source: "./media/characters/eri/front-nsfw.svg",
  54910. extra: 1014/939,
  54911. bottom: 37/1051
  54912. },
  54913. form: "moth",
  54914. default: true
  54915. },
  54916. egg: {
  54917. height: math.unit(10, "cm"),
  54918. name: "Egg",
  54919. image: {
  54920. source: "./media/characters/eri/egg.svg"
  54921. },
  54922. form: "egg",
  54923. default: true
  54924. },
  54925. },
  54926. [
  54927. {
  54928. name: "Normal",
  54929. height: math.unit(120, "cm"),
  54930. default: true,
  54931. form: "moth"
  54932. },
  54933. {
  54934. name: "Normal",
  54935. height: math.unit(10, "cm"),
  54936. default: true,
  54937. form: "egg"
  54938. },
  54939. ],
  54940. {
  54941. "moth": {
  54942. name: "Moth",
  54943. default: true
  54944. },
  54945. "egg": {
  54946. name: "Egg",
  54947. },
  54948. }
  54949. ))
  54950. characterMakers.push(() => makeCharacter(
  54951. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54952. {
  54953. front: {
  54954. height: math.unit(200, "feet"),
  54955. name: "Front",
  54956. image: {
  54957. source: "./media/characters/bishop-dowser/front.svg",
  54958. extra: 933/868,
  54959. bottom: 106/1039
  54960. }
  54961. },
  54962. },
  54963. [
  54964. {
  54965. name: "Giant",
  54966. height: math.unit(200, "feet"),
  54967. default: true
  54968. },
  54969. ]
  54970. ))
  54971. characterMakers.push(() => makeCharacter(
  54972. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54973. {
  54974. front: {
  54975. height: math.unit(2, "meters"),
  54976. preyCapacity: math.unit(3, "people"),
  54977. name: "Front",
  54978. image: {
  54979. source: "./media/characters/fryra/front.svg",
  54980. extra: 1025/948,
  54981. bottom: 30/1055
  54982. },
  54983. extraAttributes: {
  54984. "breastVolume": {
  54985. name: "Breast Volume",
  54986. power: 3,
  54987. type: "volume",
  54988. base: math.unit(8, "liters")
  54989. },
  54990. }
  54991. },
  54992. back: {
  54993. height: math.unit(2, "meters"),
  54994. preyCapacity: math.unit(3, "people"),
  54995. name: "Back",
  54996. image: {
  54997. source: "./media/characters/fryra/back.svg",
  54998. extra: 993/938,
  54999. bottom: 38/1031
  55000. },
  55001. extraAttributes: {
  55002. "breastVolume": {
  55003. name: "Breast Volume",
  55004. power: 3,
  55005. type: "volume",
  55006. base: math.unit(8, "liters")
  55007. },
  55008. }
  55009. },
  55010. head: {
  55011. height: math.unit(1.33, "feet"),
  55012. name: "Head",
  55013. image: {
  55014. source: "./media/characters/fryra/head.svg"
  55015. }
  55016. },
  55017. maw: {
  55018. height: math.unit(0.56, "feet"),
  55019. name: "Maw",
  55020. image: {
  55021. source: "./media/characters/fryra/maw.svg"
  55022. }
  55023. },
  55024. },
  55025. [
  55026. {
  55027. name: "Micro",
  55028. height: math.unit(5, "cm")
  55029. },
  55030. {
  55031. name: "Normal",
  55032. height: math.unit(2, "meters"),
  55033. default: true
  55034. },
  55035. {
  55036. name: "Small Macro",
  55037. height: math.unit(8, "meters")
  55038. },
  55039. {
  55040. name: "Macro",
  55041. height: math.unit(50, "meters")
  55042. },
  55043. {
  55044. name: "Megamacro",
  55045. height: math.unit(1, "km")
  55046. },
  55047. {
  55048. name: "Planetary",
  55049. height: math.unit(300000, "km")
  55050. },
  55051. {
  55052. name: "Universal",
  55053. height: math.unit(250, "lightyears")
  55054. },
  55055. {
  55056. name: "Fabric of Reality",
  55057. height: math.unit(1000, "multiverses")
  55058. },
  55059. ]
  55060. ))
  55061. characterMakers.push(() => makeCharacter(
  55062. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55063. {
  55064. frontDressed: {
  55065. height: math.unit(6 + 2/12, "feet"),
  55066. name: "Front (Dressed)",
  55067. image: {
  55068. source: "./media/characters/fiera/front-dressed.svg",
  55069. extra: 1883/1793,
  55070. bottom: 70/1953
  55071. }
  55072. },
  55073. backDressed: {
  55074. height: math.unit(6 + 2/12, "feet"),
  55075. name: "Back (Dressed)",
  55076. image: {
  55077. source: "./media/characters/fiera/back-dressed.svg",
  55078. extra: 1847/1780,
  55079. bottom: 70/1917
  55080. }
  55081. },
  55082. frontNude: {
  55083. height: math.unit(6 + 2/12, "feet"),
  55084. name: "Front (Nude)",
  55085. image: {
  55086. source: "./media/characters/fiera/front-nude.svg",
  55087. extra: 1875/1785,
  55088. bottom: 66/1941
  55089. }
  55090. },
  55091. backNude: {
  55092. height: math.unit(6 + 2/12, "feet"),
  55093. name: "Back (Nude)",
  55094. image: {
  55095. source: "./media/characters/fiera/back-nude.svg",
  55096. extra: 1855/1788,
  55097. bottom: 44/1899
  55098. }
  55099. },
  55100. maw: {
  55101. height: math.unit(1.3, "feet"),
  55102. name: "Maw",
  55103. image: {
  55104. source: "./media/characters/fiera/maw.svg"
  55105. }
  55106. },
  55107. paw: {
  55108. height: math.unit(1, "feet"),
  55109. name: "Paw",
  55110. image: {
  55111. source: "./media/characters/fiera/paw.svg"
  55112. }
  55113. },
  55114. shoe: {
  55115. height: math.unit(1.05, "feet"),
  55116. name: "Shoe",
  55117. image: {
  55118. source: "./media/characters/fiera/shoe.svg"
  55119. }
  55120. },
  55121. },
  55122. [
  55123. {
  55124. name: "Normal",
  55125. height: math.unit(6 + 2/12, "feet"),
  55126. default: true
  55127. },
  55128. {
  55129. name: "Size Difference",
  55130. height: math.unit(13, "feet")
  55131. },
  55132. {
  55133. name: "Macro",
  55134. height: math.unit(60, "feet")
  55135. },
  55136. {
  55137. name: "Mega Macro",
  55138. height: math.unit(200, "feet")
  55139. },
  55140. ]
  55141. ))
  55142. characterMakers.push(() => makeCharacter(
  55143. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55144. {
  55145. back: {
  55146. height: math.unit(6, "feet"),
  55147. name: "Back",
  55148. image: {
  55149. source: "./media/characters/flare/back.svg",
  55150. extra: 1883/1765,
  55151. bottom: 32/1915
  55152. }
  55153. },
  55154. },
  55155. [
  55156. {
  55157. name: "Normal",
  55158. height: math.unit(6 + 2/12, "feet"),
  55159. default: true
  55160. },
  55161. {
  55162. name: "Size Difference",
  55163. height: math.unit(13, "feet")
  55164. },
  55165. {
  55166. name: "Macro",
  55167. height: math.unit(60, "feet")
  55168. },
  55169. {
  55170. name: "Macro 2",
  55171. height: math.unit(100, "feet")
  55172. },
  55173. {
  55174. name: "Mega Macro",
  55175. height: math.unit(200, "feet")
  55176. },
  55177. ]
  55178. ))
  55179. characterMakers.push(() => makeCharacter(
  55180. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55181. {
  55182. front: {
  55183. height: math.unit(2.2, "m"),
  55184. weight: math.unit(300, "kg"),
  55185. name: "Front",
  55186. image: {
  55187. source: "./media/characters/hanna/front.svg",
  55188. extra: 1696/1502,
  55189. bottom: 206/1902
  55190. }
  55191. },
  55192. },
  55193. [
  55194. {
  55195. name: "Humanoid",
  55196. height: math.unit(2.2, "meters")
  55197. },
  55198. {
  55199. name: "Normal",
  55200. height: math.unit(4.8, "meters"),
  55201. default: true
  55202. },
  55203. ]
  55204. ))
  55205. characterMakers.push(() => makeCharacter(
  55206. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55207. {
  55208. front: {
  55209. height: math.unit(2.8, "meters"),
  55210. name: "Front",
  55211. image: {
  55212. source: "./media/characters/argo/front.svg",
  55213. extra: 731/518,
  55214. bottom: 84/815
  55215. }
  55216. },
  55217. },
  55218. [
  55219. {
  55220. name: "Normal",
  55221. height: math.unit(3, "meters"),
  55222. default: true
  55223. },
  55224. ]
  55225. ))
  55226. characterMakers.push(() => makeCharacter(
  55227. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55228. {
  55229. side: {
  55230. height: math.unit(3.8, "meters"),
  55231. name: "Side",
  55232. image: {
  55233. source: "./media/characters/sybil/side.svg",
  55234. extra: 382/361,
  55235. bottom: 25/407
  55236. }
  55237. },
  55238. },
  55239. [
  55240. {
  55241. name: "Normal",
  55242. height: math.unit(3.8, "meters"),
  55243. default: true
  55244. },
  55245. ]
  55246. ))
  55247. characterMakers.push(() => makeCharacter(
  55248. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55249. {
  55250. side: {
  55251. height: math.unit(6, "meters"),
  55252. name: "Side",
  55253. image: {
  55254. source: "./media/characters/plum/side.svg",
  55255. extra: 858/755,
  55256. bottom: 45/903
  55257. },
  55258. form: "taur",
  55259. default: true
  55260. },
  55261. back: {
  55262. height: math.unit(6.3, "meters"),
  55263. name: "Back",
  55264. image: {
  55265. source: "./media/characters/plum/back.svg",
  55266. extra: 887/813,
  55267. bottom: 32/919
  55268. },
  55269. form: "taur",
  55270. },
  55271. feral: {
  55272. height: math.unit(5.5, "meter"),
  55273. name: "Front",
  55274. image: {
  55275. source: "./media/characters/plum/feral.svg",
  55276. extra: 568/403,
  55277. bottom: 51/619
  55278. },
  55279. form: "feral",
  55280. default: true
  55281. },
  55282. head: {
  55283. height: math.unit(1.46, "meter"),
  55284. name: "Head",
  55285. image: {
  55286. source: "./media/characters/plum/head.svg"
  55287. },
  55288. form: "taur"
  55289. },
  55290. tailTop: {
  55291. height: math.unit(5.6, "meter"),
  55292. name: "Tail (Top)",
  55293. image: {
  55294. source: "./media/characters/plum/tail-top.svg"
  55295. },
  55296. form: "taur",
  55297. },
  55298. tailBottom: {
  55299. height: math.unit(5.6, "meter"),
  55300. name: "Tail (Bottom)",
  55301. image: {
  55302. source: "./media/characters/plum/tail-bottom.svg"
  55303. },
  55304. form: "taur",
  55305. },
  55306. feralHead: {
  55307. height: math.unit(2.56549521, "meter"),
  55308. name: "Head",
  55309. image: {
  55310. source: "./media/characters/plum/head.svg"
  55311. },
  55312. form: "feral"
  55313. },
  55314. feralTailTop: {
  55315. height: math.unit(5.44728435, "meter"),
  55316. name: "Tail (Top)",
  55317. image: {
  55318. source: "./media/characters/plum/tail-top.svg"
  55319. },
  55320. form: "feral",
  55321. },
  55322. feralTailBottom: {
  55323. height: math.unit(5.44728435, "meter"),
  55324. name: "Tail (Bottom)",
  55325. image: {
  55326. source: "./media/characters/plum/tail-bottom.svg"
  55327. },
  55328. form: "feral",
  55329. },
  55330. },
  55331. [
  55332. {
  55333. name: "Normal",
  55334. height: math.unit(6, "meters"),
  55335. default: true,
  55336. form: "taur"
  55337. },
  55338. {
  55339. name: "Normal",
  55340. height: math.unit(5.5, "meters"),
  55341. default: true,
  55342. form: "feral"
  55343. },
  55344. ],
  55345. {
  55346. "taur": {
  55347. name: "Taur",
  55348. default: true
  55349. },
  55350. "feral": {
  55351. name: "Feral",
  55352. },
  55353. }
  55354. ))
  55355. characterMakers.push(() => makeCharacter(
  55356. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55357. {
  55358. front: {
  55359. height: math.unit(6, "feet"),
  55360. weight: math.unit(115, "lb"),
  55361. name: "Front",
  55362. image: {
  55363. source: "./media/characters/celeste-kitsune/front.svg",
  55364. extra: 393/366,
  55365. bottom: 7/400
  55366. }
  55367. },
  55368. side: {
  55369. height: math.unit(6, "feet"),
  55370. weight: math.unit(115, "lb"),
  55371. name: "Side",
  55372. image: {
  55373. source: "./media/characters/celeste-kitsune/side.svg",
  55374. extra: 818/765,
  55375. bottom: 40/858
  55376. }
  55377. },
  55378. },
  55379. [
  55380. {
  55381. name: "Megamacro",
  55382. height: math.unit(1500, "miles"),
  55383. default: true
  55384. },
  55385. ]
  55386. ))
  55387. characterMakers.push(() => makeCharacter(
  55388. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55389. {
  55390. front: {
  55391. height: math.unit(8, "meters"),
  55392. name: "Front",
  55393. image: {
  55394. source: "./media/characters/io/front.svg",
  55395. extra: 865/722,
  55396. bottom: 58/923
  55397. }
  55398. },
  55399. back: {
  55400. height: math.unit(8, "meters"),
  55401. name: "Back",
  55402. image: {
  55403. source: "./media/characters/io/back.svg",
  55404. extra: 920/776,
  55405. bottom: 42/962
  55406. }
  55407. },
  55408. head: {
  55409. height: math.unit(5.09, "meters"),
  55410. name: "Head",
  55411. image: {
  55412. source: "./media/characters/io/head.svg"
  55413. }
  55414. },
  55415. hand: {
  55416. height: math.unit(1.6, "meters"),
  55417. name: "Hand",
  55418. image: {
  55419. source: "./media/characters/io/hand.svg"
  55420. }
  55421. },
  55422. foot: {
  55423. height: math.unit(2.4, "meters"),
  55424. name: "Foot",
  55425. image: {
  55426. source: "./media/characters/io/foot.svg"
  55427. }
  55428. },
  55429. },
  55430. [
  55431. {
  55432. name: "Normal",
  55433. height: math.unit(8, "meters"),
  55434. default: true
  55435. },
  55436. ]
  55437. ))
  55438. characterMakers.push(() => makeCharacter(
  55439. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55440. {
  55441. side: {
  55442. height: math.unit(6 + 3/12, "feet"),
  55443. weight: math.unit(225, "lb"),
  55444. name: "Side",
  55445. image: {
  55446. source: "./media/characters/silas/side.svg",
  55447. extra: 703/653,
  55448. bottom: 23/726
  55449. },
  55450. extraAttributes: {
  55451. "pawLength": {
  55452. name: "Paw Length",
  55453. power: 1,
  55454. type: "length",
  55455. base: math.unit(12, "inches")
  55456. },
  55457. "pawWidth": {
  55458. name: "Paw Width",
  55459. power: 1,
  55460. type: "length",
  55461. base: math.unit(4.5, "inches")
  55462. },
  55463. "pawArea": {
  55464. name: "Paw Area",
  55465. power: 2,
  55466. type: "area",
  55467. base: math.unit(12 * 4.5, "inches^2")
  55468. },
  55469. }
  55470. },
  55471. },
  55472. [
  55473. {
  55474. name: "Normal",
  55475. height: math.unit(6 + 3/12, "feet"),
  55476. default: true
  55477. },
  55478. ]
  55479. ))
  55480. characterMakers.push(() => makeCharacter(
  55481. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55482. {
  55483. back: {
  55484. height: math.unit(1.6, "meters"),
  55485. weight: math.unit(150, "lb"),
  55486. name: "Back",
  55487. image: {
  55488. source: "./media/characters/zari/back.svg",
  55489. extra: 424/411,
  55490. bottom: 32/456
  55491. },
  55492. extraAttributes: {
  55493. "bladderCapacity": {
  55494. name: "Bladder Size",
  55495. power: 3,
  55496. type: "volume",
  55497. base: math.unit(500, "mL")
  55498. },
  55499. "bladderFlow": {
  55500. name: "Flow Rate",
  55501. power: 3,
  55502. type: "volume",
  55503. base: math.unit(25, "mL")
  55504. },
  55505. }
  55506. },
  55507. },
  55508. [
  55509. {
  55510. name: "Normal",
  55511. height: math.unit(1.6, "meters"),
  55512. default: true
  55513. },
  55514. ]
  55515. ))
  55516. characterMakers.push(() => makeCharacter(
  55517. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55518. {
  55519. front: {
  55520. height: math.unit(25, "feet"),
  55521. weight: math.unit(5, "tons"),
  55522. name: "Front",
  55523. image: {
  55524. source: "./media/characters/charlie-human/front.svg",
  55525. extra: 1870/1740,
  55526. bottom: 102/1972
  55527. },
  55528. extraAttributes: {
  55529. "dickLength": {
  55530. name: "Dick Length",
  55531. power: 1,
  55532. type: "length",
  55533. base: math.unit(9, "feet")
  55534. },
  55535. }
  55536. },
  55537. back: {
  55538. height: math.unit(25, "feet"),
  55539. weight: math.unit(5, "tons"),
  55540. name: "Back",
  55541. image: {
  55542. source: "./media/characters/charlie-human/back.svg",
  55543. extra: 1858/1733,
  55544. bottom: 105/1963
  55545. },
  55546. extraAttributes: {
  55547. "dickLength": {
  55548. name: "Dick Length",
  55549. power: 1,
  55550. type: "length",
  55551. base: math.unit(9, "feet")
  55552. },
  55553. }
  55554. },
  55555. },
  55556. [
  55557. {
  55558. name: "\"Normal\"",
  55559. height: math.unit(6 + 4/12, "feet")
  55560. },
  55561. {
  55562. name: "Big",
  55563. height: math.unit(25, "feet"),
  55564. default: true
  55565. },
  55566. ]
  55567. ))
  55568. characterMakers.push(() => makeCharacter(
  55569. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55570. {
  55571. front: {
  55572. height: math.unit(6 + 4/12, "feet"),
  55573. weight: math.unit(320, "lb"),
  55574. name: "Front",
  55575. image: {
  55576. source: "./media/characters/ookitsu/front.svg",
  55577. extra: 1160/976,
  55578. bottom: 38/1198
  55579. }
  55580. },
  55581. frontNsfw: {
  55582. height: math.unit(6 + 4/12, "feet"),
  55583. weight: math.unit(320, "lb"),
  55584. name: "Front (NSFW)",
  55585. image: {
  55586. source: "./media/characters/ookitsu/front-nsfw.svg",
  55587. extra: 1160/976,
  55588. bottom: 38/1198
  55589. }
  55590. },
  55591. back: {
  55592. height: math.unit(6 + 4/12, "feet"),
  55593. weight: math.unit(320, "lb"),
  55594. name: "Back",
  55595. image: {
  55596. source: "./media/characters/ookitsu/back.svg",
  55597. extra: 1030/975,
  55598. bottom: 70/1100
  55599. }
  55600. },
  55601. head: {
  55602. height: math.unit(1.79, "feet"),
  55603. name: "Head",
  55604. image: {
  55605. source: "./media/characters/ookitsu/head.svg"
  55606. }
  55607. },
  55608. hand: {
  55609. height: math.unit(0.92, "feet"),
  55610. name: "Hand",
  55611. image: {
  55612. source: "./media/characters/ookitsu/hand.svg"
  55613. }
  55614. },
  55615. tails: {
  55616. height: math.unit(3.3, "feet"),
  55617. name: "Tails",
  55618. image: {
  55619. source: "./media/characters/ookitsu/tails.svg"
  55620. }
  55621. },
  55622. dick: {
  55623. height: math.unit(1.10833, "feet"),
  55624. name: "Dick",
  55625. image: {
  55626. source: "./media/characters/ookitsu/dick.svg"
  55627. }
  55628. },
  55629. },
  55630. [
  55631. {
  55632. name: "Normal",
  55633. height: math.unit(6 + 4/12, "feet"),
  55634. default: true
  55635. },
  55636. {
  55637. name: "Macro",
  55638. height: math.unit(30, "feet")
  55639. },
  55640. ]
  55641. ))
  55642. characterMakers.push(() => makeCharacter(
  55643. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55644. {
  55645. anthroFront: {
  55646. height: math.unit(6, "feet"),
  55647. weight: math.unit(250, "lb"),
  55648. name: "Front",
  55649. image: {
  55650. source: "./media/characters/jhusky/anthro-front.svg",
  55651. extra: 474/439,
  55652. bottom: 7/481
  55653. },
  55654. form: "anthro",
  55655. default: true
  55656. },
  55657. taurSideSfw: {
  55658. height: math.unit(6 + 4/12, "feet"),
  55659. weight: math.unit(500, "lb"),
  55660. name: "Side (SFW)",
  55661. image: {
  55662. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55663. extra: 1741/1629,
  55664. bottom: 196/1937
  55665. },
  55666. form: "taur",
  55667. default: true
  55668. },
  55669. taurSideNsfw: {
  55670. height: math.unit(6 + 4/12, "feet"),
  55671. weight: math.unit(500, "lb"),
  55672. name: "Taur (NSFW)",
  55673. image: {
  55674. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55675. extra: 1741/1629,
  55676. bottom: 196/1937
  55677. },
  55678. form: "taur",
  55679. },
  55680. },
  55681. [
  55682. {
  55683. name: "Huge",
  55684. height: math.unit(500, "feet"),
  55685. form: "anthro"
  55686. },
  55687. {
  55688. name: "Macro",
  55689. height: math.unit(1000, "feet"),
  55690. default: true,
  55691. form: "anthro"
  55692. },
  55693. {
  55694. name: "Megamacro",
  55695. height: math.unit(10000, "feet"),
  55696. form: "anthro"
  55697. },
  55698. {
  55699. name: "Huge",
  55700. height: math.unit(528, "feet"),
  55701. form: "taur"
  55702. },
  55703. {
  55704. name: "Macro",
  55705. height: math.unit(1056, "feet"),
  55706. default: true,
  55707. form: "taur"
  55708. },
  55709. {
  55710. name: "Megamacro",
  55711. height: math.unit(10556, "feet"),
  55712. form: "taur"
  55713. },
  55714. ],
  55715. {
  55716. "anthro": {
  55717. name: "Anthro",
  55718. default: true
  55719. },
  55720. "taur": {
  55721. name: "Taur",
  55722. },
  55723. }
  55724. ))
  55725. characterMakers.push(() => makeCharacter(
  55726. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55727. {
  55728. front: {
  55729. height: math.unit(8, "feet"),
  55730. weight: math.unit(500, "lb"),
  55731. name: "Front",
  55732. image: {
  55733. source: "./media/characters/armail/front.svg",
  55734. extra: 1753/1669,
  55735. bottom: 155/1908
  55736. }
  55737. },
  55738. back: {
  55739. height: math.unit(8, "feet"),
  55740. weight: math.unit(500, "lb"),
  55741. name: "Back",
  55742. image: {
  55743. source: "./media/characters/armail/back.svg",
  55744. extra: 1872/1803,
  55745. bottom: 63/1935
  55746. }
  55747. },
  55748. },
  55749. [
  55750. {
  55751. name: "Micro",
  55752. height: math.unit(0.25, "feet")
  55753. },
  55754. {
  55755. name: "Normal",
  55756. height: math.unit(8, "feet"),
  55757. default: true
  55758. },
  55759. {
  55760. name: "Mini-macro",
  55761. height: math.unit(30, "feet")
  55762. },
  55763. {
  55764. name: "Macro",
  55765. height: math.unit(400, "feet")
  55766. },
  55767. {
  55768. name: "Mega-macro",
  55769. height: math.unit(6000, "feet")
  55770. },
  55771. ]
  55772. ))
  55773. characterMakers.push(() => makeCharacter(
  55774. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55775. {
  55776. front: {
  55777. height: math.unit(6 + 7/12, "feet"),
  55778. weight: math.unit(210, "lb"),
  55779. name: "Front",
  55780. image: {
  55781. source: "./media/characters/wilfred-t-buxton/front.svg",
  55782. extra: 1068/882,
  55783. bottom: 28/1096
  55784. }
  55785. },
  55786. },
  55787. [
  55788. {
  55789. name: "Normal",
  55790. height: math.unit(6 + 7/12, "feet"),
  55791. default: true
  55792. },
  55793. ]
  55794. ))
  55795. characterMakers.push(() => makeCharacter(
  55796. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55797. {
  55798. front: {
  55799. height: math.unit(5 + 2/12, "feet"),
  55800. weight: math.unit(120, "lb"),
  55801. name: "Front",
  55802. image: {
  55803. source: "./media/characters/leighton-marrow/front.svg",
  55804. extra: 441/409,
  55805. bottom: 37/478
  55806. }
  55807. },
  55808. },
  55809. [
  55810. {
  55811. name: "Normal",
  55812. height: math.unit(5 + 2/12, "feet"),
  55813. default: true
  55814. },
  55815. ]
  55816. ))
  55817. characterMakers.push(() => makeCharacter(
  55818. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55819. {
  55820. front: {
  55821. height: math.unit(4, "meters"),
  55822. weight: math.unit(1200, "kg"),
  55823. name: "Front",
  55824. image: {
  55825. source: "./media/characters/licos/front.svg",
  55826. extra: 1727/1604,
  55827. bottom: 101/1828
  55828. },
  55829. form: "anthro",
  55830. default: true
  55831. },
  55832. taur_side: {
  55833. height: math.unit(20, "meters"),
  55834. weight: math.unit(1100000, "kg"),
  55835. name: "Side",
  55836. image: {
  55837. source: "./media/characters/licos/taur.svg",
  55838. extra: 1158/1091,
  55839. bottom: 80/1238
  55840. },
  55841. form: "taur",
  55842. default: true
  55843. },
  55844. },
  55845. [
  55846. {
  55847. name: "Normal",
  55848. height: math.unit(4, "meters"),
  55849. default: true,
  55850. form: "anthro"
  55851. },
  55852. {
  55853. name: "Normal",
  55854. height: math.unit(20, "meters"),
  55855. default: true,
  55856. form: "taur"
  55857. },
  55858. ],
  55859. {
  55860. "anthro": {
  55861. name: "Anthro",
  55862. default: true
  55863. },
  55864. "taur": {
  55865. name: "Taur",
  55866. },
  55867. }
  55868. ))
  55869. characterMakers.push(() => makeCharacter(
  55870. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55871. {
  55872. front: {
  55873. height: math.unit(10 + 3/12, "feet"),
  55874. name: "Front",
  55875. image: {
  55876. source: "./media/characters/theo-monkey/front.svg",
  55877. extra: 1735/1658,
  55878. bottom: 73/1808
  55879. }
  55880. },
  55881. back: {
  55882. height: math.unit(10 + 3/12, "feet"),
  55883. name: "Back",
  55884. image: {
  55885. source: "./media/characters/theo-monkey/back.svg",
  55886. extra: 1742/1664,
  55887. bottom: 33/1775
  55888. }
  55889. },
  55890. head: {
  55891. height: math.unit(2.29, "feet"),
  55892. name: "Head",
  55893. image: {
  55894. source: "./media/characters/theo-monkey/head.svg"
  55895. }
  55896. },
  55897. handPalm: {
  55898. height: math.unit(1.73, "feet"),
  55899. name: "Hand (Palm)",
  55900. image: {
  55901. source: "./media/characters/theo-monkey/hand-palm.svg"
  55902. }
  55903. },
  55904. handBack: {
  55905. height: math.unit(1.63, "feet"),
  55906. name: "Hand (Back)",
  55907. image: {
  55908. source: "./media/characters/theo-monkey/hand-back.svg"
  55909. }
  55910. },
  55911. footSole: {
  55912. height: math.unit(2.15, "feet"),
  55913. name: "Foot (Sole)",
  55914. image: {
  55915. source: "./media/characters/theo-monkey/foot-sole.svg"
  55916. }
  55917. },
  55918. footSide: {
  55919. height: math.unit(1.6, "feet"),
  55920. name: "Foot (Side)",
  55921. image: {
  55922. source: "./media/characters/theo-monkey/foot-side.svg"
  55923. }
  55924. },
  55925. },
  55926. [
  55927. {
  55928. name: "Normal",
  55929. height: math.unit(10 + 3/12, "feet"),
  55930. default: true
  55931. },
  55932. ]
  55933. ))
  55934. characterMakers.push(() => makeCharacter(
  55935. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55936. {
  55937. front: {
  55938. height: math.unit(11, "feet"),
  55939. weight: math.unit(3000, "lb"),
  55940. preyCapacity: math.unit(10, "people"),
  55941. name: "Front",
  55942. image: {
  55943. source: "./media/characters/brook/front.svg",
  55944. extra: 909/835,
  55945. bottom: 108/1017
  55946. }
  55947. },
  55948. back: {
  55949. height: math.unit(11, "feet"),
  55950. weight: math.unit(3000, "lb"),
  55951. preyCapacity: math.unit(10, "people"),
  55952. name: "Back",
  55953. image: {
  55954. source: "./media/characters/brook/back.svg",
  55955. extra: 976/916,
  55956. bottom: 34/1010
  55957. }
  55958. },
  55959. backAlt: {
  55960. height: math.unit(11, "feet"),
  55961. weight: math.unit(3000, "lb"),
  55962. preyCapacity: math.unit(10, "people"),
  55963. name: "Back (Alt)",
  55964. image: {
  55965. source: "./media/characters/brook/back-alt.svg",
  55966. extra: 1283/1213,
  55967. bottom: 35/1318
  55968. }
  55969. },
  55970. bust: {
  55971. height: math.unit(9.0859030837, "feet"),
  55972. weight: math.unit(3000, "lb"),
  55973. preyCapacity: math.unit(10, "people"),
  55974. name: "Bust",
  55975. image: {
  55976. source: "./media/characters/brook/bust.svg",
  55977. extra: 2043/1923,
  55978. bottom: 0/2043
  55979. }
  55980. },
  55981. },
  55982. [
  55983. {
  55984. name: "Small",
  55985. height: math.unit(11, "feet"),
  55986. default: true
  55987. },
  55988. {
  55989. name: "Towering",
  55990. height: math.unit(5, "km")
  55991. },
  55992. {
  55993. name: "Enormous",
  55994. height: math.unit(25, "earths")
  55995. },
  55996. ]
  55997. ))
  55998. characterMakers.push(() => makeCharacter(
  55999. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56000. {
  56001. front: {
  56002. height: math.unit(4, "feet"),
  56003. weight: math.unit(150, "lb"),
  56004. name: "Front",
  56005. image: {
  56006. source: "./media/characters/squishi/front.svg",
  56007. extra: 1428/1271,
  56008. bottom: 30/1458
  56009. },
  56010. extraAttributes: {
  56011. "pawSize": {
  56012. name: "Paw Size",
  56013. power: 1,
  56014. type: "length",
  56015. base: math.unit(14, "ShoeSizeMensUS"),
  56016. defaultUnit: "ShoeSizeMensUS"
  56017. },
  56018. }
  56019. },
  56020. side: {
  56021. height: math.unit(4, "feet"),
  56022. weight: math.unit(150, "lb"),
  56023. name: "Side",
  56024. image: {
  56025. source: "./media/characters/squishi/side.svg",
  56026. extra: 1428/1271,
  56027. bottom: 30/1458
  56028. },
  56029. extraAttributes: {
  56030. "pawSize": {
  56031. name: "Paw Size",
  56032. power: 1,
  56033. type: "length",
  56034. base: math.unit(14, "ShoeSizeMensUS"),
  56035. defaultUnit: "ShoeSizeMensUS"
  56036. },
  56037. }
  56038. },
  56039. back: {
  56040. height: math.unit(4, "feet"),
  56041. weight: math.unit(150, "lb"),
  56042. name: "Back",
  56043. image: {
  56044. source: "./media/characters/squishi/back.svg",
  56045. extra: 1428/1271,
  56046. bottom: 30/1458
  56047. },
  56048. extraAttributes: {
  56049. "pawSize": {
  56050. name: "Paw Size",
  56051. power: 1,
  56052. type: "length",
  56053. base: math.unit(14, "ShoeSizeMensUS"),
  56054. defaultUnit: "ShoeSizeMensUS"
  56055. },
  56056. }
  56057. },
  56058. },
  56059. [
  56060. {
  56061. name: "Normal",
  56062. height: math.unit(4, "feet"),
  56063. default: true
  56064. },
  56065. ]
  56066. ))
  56067. characterMakers.push(() => makeCharacter(
  56068. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56069. {
  56070. front: {
  56071. height: math.unit(7 + 8/12, "feet"),
  56072. weight: math.unit(333, "lb"),
  56073. name: "Front",
  56074. image: {
  56075. source: "./media/characters/vincent-vasroc/front.svg",
  56076. extra: 1962/1860,
  56077. bottom: 41/2003
  56078. }
  56079. },
  56080. back: {
  56081. height: math.unit(7 + 8/12, "feet"),
  56082. weight: math.unit(333, "lb"),
  56083. name: "Back",
  56084. image: {
  56085. source: "./media/characters/vincent-vasroc/back.svg",
  56086. extra: 1952/1815,
  56087. bottom: 33/1985
  56088. }
  56089. },
  56090. paw: {
  56091. height: math.unit(1.24, "feet"),
  56092. name: "Paw",
  56093. image: {
  56094. source: "./media/characters/vincent-vasroc/paw.svg"
  56095. }
  56096. },
  56097. ear: {
  56098. height: math.unit(0.75, "feet"),
  56099. name: "Ear",
  56100. image: {
  56101. source: "./media/characters/vincent-vasroc/ear.svg"
  56102. }
  56103. },
  56104. },
  56105. [
  56106. {
  56107. name: "Nano",
  56108. height: math.unit(92, "micrometers")
  56109. },
  56110. {
  56111. name: "Normal",
  56112. height: math.unit(7 + 8/12, "feet"),
  56113. default: true
  56114. },
  56115. ]
  56116. ))
  56117. characterMakers.push(() => makeCharacter(
  56118. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56119. {
  56120. frontNsfw: {
  56121. height: math.unit(40, "feet"),
  56122. weight: math.unit(58, "tons"),
  56123. name: "Front (NSFW)",
  56124. image: {
  56125. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56126. extra: 1265/965,
  56127. bottom: 155/1420
  56128. }
  56129. },
  56130. frontSfw: {
  56131. height: math.unit(40, "feet"),
  56132. weight: math.unit(58, "tons"),
  56133. name: "Front (SFW)",
  56134. image: {
  56135. source: "./media/characters/ru-kahn/front-sfw.svg",
  56136. extra: 1265/965,
  56137. bottom: 80/1345
  56138. }
  56139. },
  56140. },
  56141. [
  56142. {
  56143. name: "Small",
  56144. height: math.unit(4, "feet")
  56145. },
  56146. {
  56147. name: "Normal",
  56148. height: math.unit(40, "feet"),
  56149. default: true
  56150. },
  56151. {
  56152. name: "Macro",
  56153. height: math.unit(400, "feet")
  56154. },
  56155. ]
  56156. ))
  56157. characterMakers.push(() => makeCharacter(
  56158. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56159. {
  56160. frontNude: {
  56161. height: math.unit(6 + 5/12, "feet"),
  56162. name: "Front (Nude)",
  56163. image: {
  56164. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56165. extra: 1369/1366,
  56166. bottom: 68/1437
  56167. }
  56168. },
  56169. frontDressed: {
  56170. height: math.unit(6 + 5/12, "feet"),
  56171. name: "Front (Dressed)",
  56172. image: {
  56173. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56174. extra: 1369/1366,
  56175. bottom: 68/1437
  56176. }
  56177. },
  56178. },
  56179. [
  56180. {
  56181. name: "Normal",
  56182. height: math.unit(6 + 5/12, "feet"),
  56183. default: true
  56184. },
  56185. {
  56186. name: "Maximum",
  56187. height: math.unit(1930, "feet")
  56188. },
  56189. ]
  56190. ))
  56191. characterMakers.push(() => makeCharacter(
  56192. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56193. {
  56194. front: {
  56195. height: math.unit(5 + 6/12, "feet"),
  56196. name: "Front",
  56197. image: {
  56198. source: "./media/characters/kaja/front.svg",
  56199. extra: 1874/1514,
  56200. bottom: 117/1991
  56201. }
  56202. },
  56203. },
  56204. [
  56205. {
  56206. name: "Normal",
  56207. height: math.unit(5 + 6/12, "feet"),
  56208. default: true
  56209. },
  56210. ]
  56211. ))
  56212. characterMakers.push(() => makeCharacter(
  56213. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56214. {
  56215. front: {
  56216. height: math.unit(5 + 9/12, "feet"),
  56217. weight: math.unit(200, "lb"),
  56218. name: "Front",
  56219. image: {
  56220. source: "./media/characters/mark-smith/front.svg",
  56221. extra: 1004/943,
  56222. bottom: 58/1062
  56223. }
  56224. },
  56225. back: {
  56226. height: math.unit(5 + 9/12, "feet"),
  56227. weight: math.unit(200, "lb"),
  56228. name: "Back",
  56229. image: {
  56230. source: "./media/characters/mark-smith/back.svg",
  56231. extra: 1023/953,
  56232. bottom: 24/1047
  56233. }
  56234. },
  56235. head: {
  56236. height: math.unit(1.82, "feet"),
  56237. name: "Head",
  56238. image: {
  56239. source: "./media/characters/mark-smith/head.svg"
  56240. }
  56241. },
  56242. hand: {
  56243. height: math.unit(1.4, "feet"),
  56244. name: "Hand",
  56245. image: {
  56246. source: "./media/characters/mark-smith/hand.svg"
  56247. }
  56248. },
  56249. paw: {
  56250. height: math.unit(1.69, "feet"),
  56251. name: "Paw",
  56252. image: {
  56253. source: "./media/characters/mark-smith/paw.svg"
  56254. }
  56255. },
  56256. },
  56257. [
  56258. {
  56259. name: "Micro",
  56260. height: math.unit(0.25, "inches")
  56261. },
  56262. {
  56263. name: "Normal",
  56264. height: math.unit(5 + 9/12, "feet"),
  56265. default: true
  56266. },
  56267. {
  56268. name: "Macro",
  56269. height: math.unit(500, "feet")
  56270. },
  56271. ]
  56272. ))
  56273. characterMakers.push(() => makeCharacter(
  56274. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56275. {
  56276. frontNude: {
  56277. height: math.unit(6, "feet"),
  56278. name: "Front (Nude)",
  56279. image: {
  56280. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56281. extra: 1384/1321,
  56282. bottom: 57/1441
  56283. }
  56284. },
  56285. frontDressed: {
  56286. height: math.unit(6, "feet"),
  56287. name: "Front (Dressed)",
  56288. image: {
  56289. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56290. extra: 1384/1321,
  56291. bottom: 57/1441
  56292. }
  56293. },
  56294. },
  56295. [
  56296. {
  56297. name: "Normal",
  56298. height: math.unit(6, "feet"),
  56299. default: true
  56300. },
  56301. {
  56302. name: "Maximum",
  56303. height: math.unit(1776, "feet")
  56304. },
  56305. ]
  56306. ))
  56307. characterMakers.push(() => makeCharacter(
  56308. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56309. {
  56310. front: {
  56311. height: math.unit(2 + 4/12, "feet"),
  56312. weight: math.unit(350, "lb"),
  56313. name: "Front",
  56314. image: {
  56315. source: "./media/characters/devos/front.svg",
  56316. extra: 958/852,
  56317. bottom: 143/1101
  56318. }
  56319. },
  56320. },
  56321. [
  56322. {
  56323. name: "Base",
  56324. height: math.unit(2 + 4/12, "feet"),
  56325. default: true
  56326. },
  56327. ]
  56328. ))
  56329. characterMakers.push(() => makeCharacter(
  56330. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56331. {
  56332. front: {
  56333. height: math.unit(9 + 2/12, "feet"),
  56334. name: "Front",
  56335. image: {
  56336. source: "./media/characters/hiveheart/front.svg",
  56337. extra: 394/364,
  56338. bottom: 65/459
  56339. }
  56340. },
  56341. back: {
  56342. height: math.unit(9 + 2/12, "feet"),
  56343. name: "Back",
  56344. image: {
  56345. source: "./media/characters/hiveheart/back.svg",
  56346. extra: 374/357,
  56347. bottom: 63/437
  56348. }
  56349. },
  56350. },
  56351. [
  56352. {
  56353. name: "Base",
  56354. height: math.unit(9 + 2/12, "feet"),
  56355. default: true
  56356. },
  56357. ]
  56358. ))
  56359. characterMakers.push(() => makeCharacter(
  56360. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56361. {
  56362. front: {
  56363. height: math.unit(2.5, "inches"),
  56364. weight: math.unit(0.6, "oz"),
  56365. name: "Front",
  56366. image: {
  56367. source: "./media/characters/bryn/front.svg",
  56368. extra: 1480/1205,
  56369. bottom: 27/1507
  56370. }
  56371. },
  56372. back: {
  56373. height: math.unit(2.5, "inches"),
  56374. weight: math.unit(0.6, "oz"),
  56375. name: "Back",
  56376. image: {
  56377. source: "./media/characters/bryn/back.svg",
  56378. extra: 1475/1201,
  56379. bottom: 39/1514
  56380. }
  56381. },
  56382. foot: {
  56383. height: math.unit(0.4, "inches"),
  56384. name: "Foot",
  56385. image: {
  56386. source: "./media/characters/bryn/foot.svg"
  56387. }
  56388. },
  56389. },
  56390. [
  56391. {
  56392. name: "Normal",
  56393. height: math.unit(2.5, "inches"),
  56394. default: true
  56395. },
  56396. ]
  56397. ))
  56398. characterMakers.push(() => makeCharacter(
  56399. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56400. {
  56401. side: {
  56402. height: math.unit(7, "feet"),
  56403. weight: math.unit(657, "kg"),
  56404. name: "Side",
  56405. image: {
  56406. source: "./media/characters/delta/side.svg",
  56407. extra: 781/212,
  56408. bottom: 7/788
  56409. },
  56410. extraAttributes: {
  56411. "wingspan": {
  56412. name: "Wingspan",
  56413. power: 1,
  56414. type: "length",
  56415. base: math.unit(48, "feet")
  56416. },
  56417. "length": {
  56418. name: "Length",
  56419. power: 1,
  56420. type: "length",
  56421. base: math.unit(21, "feet")
  56422. },
  56423. "pawSize": {
  56424. name: "Paw Size",
  56425. power: 2,
  56426. type: "area",
  56427. base: math.unit(1.5*1.4, "feet^2")
  56428. },
  56429. }
  56430. },
  56431. },
  56432. [
  56433. {
  56434. name: "Normal",
  56435. height: math.unit(6, "feet"),
  56436. default: true
  56437. },
  56438. ]
  56439. ))
  56440. characterMakers.push(() => makeCharacter(
  56441. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56442. {
  56443. front: {
  56444. height: math.unit(6, "feet"),
  56445. name: "Front",
  56446. image: {
  56447. source: "./media/characters/pyrow/front.svg",
  56448. extra: 513/486,
  56449. bottom: 14/527
  56450. }
  56451. },
  56452. frontWing: {
  56453. height: math.unit(6, "feet"),
  56454. name: "Front (Wing)",
  56455. image: {
  56456. source: "./media/characters/pyrow/front-wing.svg",
  56457. extra: 539/383,
  56458. bottom: 20/559
  56459. }
  56460. },
  56461. back: {
  56462. height: math.unit(6, "feet"),
  56463. name: "Back",
  56464. image: {
  56465. source: "./media/characters/pyrow/back.svg",
  56466. extra: 500/473,
  56467. bottom: 9/509
  56468. }
  56469. },
  56470. },
  56471. [
  56472. {
  56473. name: "Normal",
  56474. height: math.unit(6, "feet"),
  56475. default: true
  56476. },
  56477. ]
  56478. ))
  56479. characterMakers.push(() => makeCharacter(
  56480. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56481. {
  56482. front: {
  56483. height: math.unit(5, "meters"),
  56484. weight: math.unit(3, "tonnes"),
  56485. name: "Front",
  56486. image: {
  56487. source: "./media/characters/velikan/front.svg",
  56488. extra: 867/744,
  56489. bottom: 71/938
  56490. },
  56491. extraAttributes: {
  56492. "shoeSize": {
  56493. name: "Shoe Size",
  56494. power: 1,
  56495. type: "length",
  56496. base: math.unit(135, "ShoeSizeUK"),
  56497. defaultUnit: "ShoeSizeUK"
  56498. },
  56499. }
  56500. },
  56501. },
  56502. [
  56503. {
  56504. name: "Normal",
  56505. height: math.unit(5, "meters"),
  56506. default: true
  56507. },
  56508. {
  56509. name: "Macro",
  56510. height: math.unit(1, "km")
  56511. },
  56512. {
  56513. name: "Mega Macro",
  56514. height: math.unit(100, "km")
  56515. },
  56516. {
  56517. name: "Giga Macro",
  56518. height: math.unit(2, "megameters")
  56519. },
  56520. {
  56521. name: "Planetary",
  56522. height: math.unit(22, "megameters")
  56523. },
  56524. {
  56525. name: "Solar",
  56526. height: math.unit(8, "gigameters")
  56527. },
  56528. {
  56529. name: "Cosmic",
  56530. height: math.unit(10, "zettameters")
  56531. },
  56532. {
  56533. name: "Omni",
  56534. height: math.unit(9e260, "multiverses")
  56535. },
  56536. ]
  56537. ))
  56538. characterMakers.push(() => makeCharacter(
  56539. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56540. {
  56541. front: {
  56542. height: math.unit(4 + 3/12, "feet"),
  56543. weight: math.unit(90, "lb"),
  56544. name: "Front",
  56545. image: {
  56546. source: "./media/characters/sabiki/front.svg",
  56547. extra: 1662/1423,
  56548. bottom: 65/1727
  56549. }
  56550. },
  56551. },
  56552. [
  56553. {
  56554. name: "Normal",
  56555. height: math.unit(4 + 3/12, "feet"),
  56556. default: true
  56557. },
  56558. ]
  56559. ))
  56560. characterMakers.push(() => makeCharacter(
  56561. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56562. {
  56563. frontSfw: {
  56564. height: math.unit(2, "mm"),
  56565. name: "Front (SFW)",
  56566. image: {
  56567. source: "./media/characters/carmel/front-sfw.svg",
  56568. extra: 1131/1006,
  56569. bottom: 66/1197
  56570. }
  56571. },
  56572. frontNsfw: {
  56573. height: math.unit(2, "mm"),
  56574. name: "Front (NSFW)",
  56575. image: {
  56576. source: "./media/characters/carmel/front-nsfw.svg",
  56577. extra: 1131/1006,
  56578. bottom: 66/1197
  56579. }
  56580. },
  56581. foot: {
  56582. height: math.unit(0.3, "mm"),
  56583. name: "Foot",
  56584. image: {
  56585. source: "./media/characters/carmel/foot.svg"
  56586. }
  56587. },
  56588. tongue: {
  56589. height: math.unit(0.71, "mm"),
  56590. name: "Tongue",
  56591. image: {
  56592. source: "./media/characters/carmel/tongue.svg"
  56593. }
  56594. },
  56595. dick: {
  56596. height: math.unit(0.085, "mm"),
  56597. name: "Dick",
  56598. image: {
  56599. source: "./media/characters/carmel/dick.svg"
  56600. }
  56601. },
  56602. },
  56603. [
  56604. {
  56605. name: "Micro",
  56606. height: math.unit(2, "mm"),
  56607. default: true
  56608. },
  56609. {
  56610. name: "Normal",
  56611. height: math.unit(4 + 8/12, "feet")
  56612. },
  56613. {
  56614. name: "Mega Macro",
  56615. height: math.unit(250, "feet")
  56616. },
  56617. {
  56618. name: "BIGGER",
  56619. height: math.unit(1000, "feet")
  56620. },
  56621. {
  56622. name: "BIGGEST",
  56623. height: math.unit(2, "miles")
  56624. },
  56625. ]
  56626. ))
  56627. characterMakers.push(() => makeCharacter(
  56628. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56629. {
  56630. front: {
  56631. height: math.unit(6.5, "feet"),
  56632. weight: math.unit(198, "lb"),
  56633. name: "Front",
  56634. image: {
  56635. source: "./media/characters/tamani/anthro.svg",
  56636. extra: 930/890,
  56637. bottom: 34/964
  56638. },
  56639. form: "anthro",
  56640. default: true
  56641. },
  56642. side: {
  56643. height: math.unit(6, "feet"),
  56644. weight: math.unit(198*2, "lb"),
  56645. name: "Side",
  56646. image: {
  56647. source: "./media/characters/tamani/feral.svg",
  56648. extra: 559/519,
  56649. bottom: 43/602
  56650. },
  56651. form: "feral"
  56652. },
  56653. },
  56654. [
  56655. {
  56656. name: "Normal",
  56657. height: math.unit(6.5, "feet"),
  56658. default: true,
  56659. form: "anthro"
  56660. },
  56661. {
  56662. name: "Normal",
  56663. height: math.unit(6, "feet"),
  56664. default: true,
  56665. form: "feral"
  56666. },
  56667. ],
  56668. {
  56669. "anthro": {
  56670. name: "Anthro",
  56671. default: true
  56672. },
  56673. "feral": {
  56674. name: "Feral",
  56675. },
  56676. }
  56677. ))
  56678. characterMakers.push(() => makeCharacter(
  56679. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56680. {
  56681. front: {
  56682. height: math.unit(4 + 1/12, "feet"),
  56683. weight: math.unit(114, "lb"),
  56684. name: "Front",
  56685. image: {
  56686. source: "./media/characters/dex/front.svg",
  56687. extra: 787/680,
  56688. bottom: 18/805
  56689. }
  56690. },
  56691. side: {
  56692. height: math.unit(4 + 1/12, "feet"),
  56693. weight: math.unit(114, "lb"),
  56694. name: "Side",
  56695. image: {
  56696. source: "./media/characters/dex/side.svg",
  56697. extra: 785/680,
  56698. bottom: 12/797
  56699. }
  56700. },
  56701. back: {
  56702. height: math.unit(4 + 1/12, "feet"),
  56703. weight: math.unit(114, "lb"),
  56704. name: "Back",
  56705. image: {
  56706. source: "./media/characters/dex/back.svg",
  56707. extra: 785/681,
  56708. bottom: 17/802
  56709. }
  56710. },
  56711. loungewear: {
  56712. height: math.unit(4 + 1/12, "feet"),
  56713. weight: math.unit(114, "lb"),
  56714. name: "Loungewear",
  56715. image: {
  56716. source: "./media/characters/dex/loungewear.svg",
  56717. extra: 787/680,
  56718. bottom: 18/805
  56719. }
  56720. },
  56721. workout: {
  56722. height: math.unit(4 + 1/12, "feet"),
  56723. weight: math.unit(114, "lb"),
  56724. name: "Workout",
  56725. image: {
  56726. source: "./media/characters/dex/workout.svg",
  56727. extra: 787/680,
  56728. bottom: 18/805
  56729. }
  56730. },
  56731. schoolUniform: {
  56732. height: math.unit(4 + 1/12, "feet"),
  56733. weight: math.unit(114, "lb"),
  56734. name: "School-uniform",
  56735. image: {
  56736. source: "./media/characters/dex/school-uniform.svg",
  56737. extra: 787/680,
  56738. bottom: 18/805
  56739. }
  56740. },
  56741. maw: {
  56742. height: math.unit(0.55, "feet"),
  56743. name: "Maw",
  56744. image: {
  56745. source: "./media/characters/dex/maw.svg"
  56746. }
  56747. },
  56748. paw: {
  56749. height: math.unit(0.87, "feet"),
  56750. name: "Paw",
  56751. image: {
  56752. source: "./media/characters/dex/paw.svg"
  56753. }
  56754. },
  56755. bust: {
  56756. height: math.unit(1.67, "feet"),
  56757. name: "Bust",
  56758. image: {
  56759. source: "./media/characters/dex/bust.svg"
  56760. }
  56761. },
  56762. },
  56763. [
  56764. {
  56765. name: "Normal",
  56766. height: math.unit(4 + 1/12, "feet"),
  56767. default: true
  56768. },
  56769. ]
  56770. ))
  56771. characterMakers.push(() => makeCharacter(
  56772. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56773. {
  56774. front: {
  56775. height: math.unit(4 + 3/12, "feet"),
  56776. weight: math.unit(60, "lb"),
  56777. name: "Front",
  56778. image: {
  56779. source: "./media/characters/silke/front.svg",
  56780. extra: 1334/1122,
  56781. bottom: 21/1355
  56782. }
  56783. },
  56784. back: {
  56785. height: math.unit(4 + 3/12, "feet"),
  56786. weight: math.unit(60, "lb"),
  56787. name: "Back",
  56788. image: {
  56789. source: "./media/characters/silke/back.svg",
  56790. extra: 1328/1092,
  56791. bottom: 16/1344
  56792. }
  56793. },
  56794. dressed: {
  56795. height: math.unit(4 + 3/12, "feet"),
  56796. weight: math.unit(60, "lb"),
  56797. name: "Dressed",
  56798. image: {
  56799. source: "./media/characters/silke/dressed.svg",
  56800. extra: 1334/1122,
  56801. bottom: 43/1377
  56802. }
  56803. },
  56804. },
  56805. [
  56806. {
  56807. name: "Normal",
  56808. height: math.unit(4 + 3/12, "feet"),
  56809. default: true
  56810. },
  56811. ]
  56812. ))
  56813. characterMakers.push(() => makeCharacter(
  56814. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56815. {
  56816. front: {
  56817. height: math.unit(1.58, "meters"),
  56818. weight: math.unit(47, "kg"),
  56819. name: "Front",
  56820. image: {
  56821. source: "./media/characters/wireshark/front.svg",
  56822. extra: 883/838,
  56823. bottom: 66/949
  56824. }
  56825. },
  56826. },
  56827. [
  56828. {
  56829. name: "Normal",
  56830. height: math.unit(1.58, "meters"),
  56831. default: true
  56832. },
  56833. ]
  56834. ))
  56835. characterMakers.push(() => makeCharacter(
  56836. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56837. {
  56838. front: {
  56839. height: math.unit(6, "meters"),
  56840. weight: math.unit(15000, "kg"),
  56841. name: "Front",
  56842. image: {
  56843. source: "./media/characters/gallagher/front.svg",
  56844. extra: 532/493,
  56845. bottom: 0/532
  56846. }
  56847. },
  56848. },
  56849. [
  56850. {
  56851. name: "Normal",
  56852. height: math.unit(6, "meters"),
  56853. default: true
  56854. },
  56855. ]
  56856. ))
  56857. characterMakers.push(() => makeCharacter(
  56858. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56859. {
  56860. front: {
  56861. height: math.unit(2.4, "meters"),
  56862. weight: math.unit(270, "kg"),
  56863. name: "Front",
  56864. image: {
  56865. source: "./media/characters/alice/front.svg",
  56866. extra: 950/900,
  56867. bottom: 36/986
  56868. }
  56869. },
  56870. side: {
  56871. height: math.unit(2.4, "meters"),
  56872. weight: math.unit(270, "kg"),
  56873. name: "Side",
  56874. image: {
  56875. source: "./media/characters/alice/side.svg",
  56876. extra: 921/876,
  56877. bottom: 19/940
  56878. }
  56879. },
  56880. dressed: {
  56881. height: math.unit(2.4, "meters"),
  56882. weight: math.unit(270, "kg"),
  56883. name: "Dressed",
  56884. image: {
  56885. source: "./media/characters/alice/dressed.svg",
  56886. extra: 905/850,
  56887. bottom: 81/986
  56888. }
  56889. },
  56890. fishnet: {
  56891. height: math.unit(2.4, "meters"),
  56892. weight: math.unit(270, "kg"),
  56893. name: "Fishnet",
  56894. image: {
  56895. source: "./media/characters/alice/fishnet.svg",
  56896. extra: 905/850,
  56897. bottom: 81/986
  56898. }
  56899. },
  56900. },
  56901. [
  56902. {
  56903. name: "Normal",
  56904. height: math.unit(2.4, "meters"),
  56905. default: true
  56906. },
  56907. ]
  56908. ))
  56909. characterMakers.push(() => makeCharacter(
  56910. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56911. {
  56912. front: {
  56913. height: math.unit(175.25, "feet"),
  56914. name: "Front",
  56915. image: {
  56916. source: "./media/characters/fio/front.svg",
  56917. extra: 1883/1591,
  56918. bottom: 34/1917
  56919. }
  56920. },
  56921. },
  56922. [
  56923. {
  56924. name: "Normal",
  56925. height: math.unit(175.25, "cm"),
  56926. default: true
  56927. },
  56928. ]
  56929. ))
  56930. characterMakers.push(() => makeCharacter(
  56931. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56932. {
  56933. side: {
  56934. height: math.unit(6, "meters"),
  56935. weight: math.unit(3400, "kg"),
  56936. preyCapacity: math.unit(1700, "liters"),
  56937. name: "Side",
  56938. image: {
  56939. source: "./media/characters/hass/side.svg",
  56940. extra: 1058/997,
  56941. bottom: 177/1235
  56942. }
  56943. },
  56944. feeding: {
  56945. height: math.unit(6*0.63, "meters"),
  56946. weight: math.unit(3400, "kg"),
  56947. preyCapacity: math.unit(1700, "liters"),
  56948. name: "Feeding",
  56949. image: {
  56950. source: "./media/characters/hass/feeding.svg",
  56951. extra: 689/579,
  56952. bottom: 146/835
  56953. }
  56954. },
  56955. guts: {
  56956. height: math.unit(6, "meters"),
  56957. weight: math.unit(3400, "kg"),
  56958. name: "Guts",
  56959. image: {
  56960. source: "./media/characters/hass/guts.svg",
  56961. extra: 1223/1198,
  56962. bottom: 182/1405
  56963. }
  56964. },
  56965. dickFront: {
  56966. height: math.unit(1.4, "meters"),
  56967. name: "Dick (Front)",
  56968. image: {
  56969. source: "./media/characters/hass/dick-front.svg"
  56970. }
  56971. },
  56972. dickSide: {
  56973. height: math.unit(1.3, "meters"),
  56974. name: "Dick (Side)",
  56975. image: {
  56976. source: "./media/characters/hass/dick-side.svg"
  56977. }
  56978. },
  56979. dickBack: {
  56980. height: math.unit(1.4, "meters"),
  56981. name: "Dick (Back)",
  56982. image: {
  56983. source: "./media/characters/hass/dick-back.svg"
  56984. }
  56985. },
  56986. },
  56987. [
  56988. {
  56989. name: "Normal",
  56990. height: math.unit(6, "meters"),
  56991. default: true
  56992. },
  56993. ]
  56994. ))
  56995. characterMakers.push(() => makeCharacter(
  56996. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  56997. {
  56998. front: {
  56999. height: math.unit(4, "feet"),
  57000. weight: math.unit(60, "lb"),
  57001. name: "Front",
  57002. image: {
  57003. source: "./media/characters/hickory-finnegan/front.svg",
  57004. extra: 444/411,
  57005. bottom: 10/454
  57006. }
  57007. },
  57008. side: {
  57009. height: math.unit(4, "feet"),
  57010. weight: math.unit(60, "lb"),
  57011. name: "Side",
  57012. image: {
  57013. source: "./media/characters/hickory-finnegan/side.svg",
  57014. extra: 444/411,
  57015. bottom: 10/454
  57016. }
  57017. },
  57018. back: {
  57019. height: math.unit(4, "feet"),
  57020. weight: math.unit(60, "lb"),
  57021. name: "Back",
  57022. image: {
  57023. source: "./media/characters/hickory-finnegan/back.svg",
  57024. extra: 444/411,
  57025. bottom: 10/454
  57026. }
  57027. },
  57028. },
  57029. [
  57030. {
  57031. name: "Normal",
  57032. height: math.unit(4, "feet"),
  57033. default: true
  57034. },
  57035. ]
  57036. ))
  57037. characterMakers.push(() => makeCharacter(
  57038. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57039. {
  57040. snivy_front: {
  57041. height: math.unit(2, "feet"),
  57042. weight: math.unit(17.9, "lb"),
  57043. name: "Front",
  57044. image: {
  57045. source: "./media/characters/robin-phox/snivy-front.svg",
  57046. extra: 569/504,
  57047. bottom: 33/602
  57048. },
  57049. form: "snivy",
  57050. default: true
  57051. },
  57052. snivy_frontNsfw: {
  57053. height: math.unit(2, "feet"),
  57054. weight: math.unit(17.9, "lb"),
  57055. name: "Front (NSFW)",
  57056. image: {
  57057. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57058. extra: 569/504,
  57059. bottom: 33/602
  57060. },
  57061. form: "snivy",
  57062. },
  57063. snivy_back: {
  57064. height: math.unit(2, "feet"),
  57065. weight: math.unit(17.9, "lb"),
  57066. name: "Back",
  57067. image: {
  57068. source: "./media/characters/robin-phox/snivy-back.svg",
  57069. extra: 577/508,
  57070. bottom: 21/598
  57071. },
  57072. form: "snivy",
  57073. },
  57074. snivy_foot: {
  57075. height: math.unit(0.68, "feet"),
  57076. name: "Foot",
  57077. image: {
  57078. source: "./media/characters/robin-phox/snivy-foot.svg"
  57079. },
  57080. form: "snivy",
  57081. },
  57082. snivy_sole: {
  57083. height: math.unit(0.68, "feet"),
  57084. name: "Sole",
  57085. image: {
  57086. source: "./media/characters/robin-phox/snivy-sole.svg"
  57087. },
  57088. form: "snivy",
  57089. },
  57090. yoshi_front: {
  57091. height: math.unit(6, "feet"),
  57092. weight: math.unit(150, "lb"),
  57093. name: "Front",
  57094. image: {
  57095. source: "./media/characters/robin-phox/yoshi-front.svg",
  57096. extra: 890/792,
  57097. bottom: 29/919
  57098. },
  57099. form: "yoshi",
  57100. default: true
  57101. },
  57102. yoshi_frontNsfw: {
  57103. height: math.unit(6, "feet"),
  57104. weight: math.unit(150, "lb"),
  57105. name: "Front (NSFW)",
  57106. image: {
  57107. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57108. extra: 890/792,
  57109. bottom: 29/919
  57110. },
  57111. form: "yoshi",
  57112. },
  57113. yoshi_back: {
  57114. height: math.unit(6, "feet"),
  57115. weight: math.unit(150, "lb"),
  57116. name: "Back",
  57117. image: {
  57118. source: "./media/characters/robin-phox/yoshi-back.svg",
  57119. extra: 890/792,
  57120. bottom: 29/919
  57121. },
  57122. form: "yoshi",
  57123. },
  57124. yoshi_foot: {
  57125. height: math.unit(1.5, "feet"),
  57126. name: "Foot",
  57127. image: {
  57128. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57129. },
  57130. form: "yoshi",
  57131. },
  57132. delphox_front: {
  57133. height: math.unit(4 + 11/12, "feet"),
  57134. weight: math.unit(86, "lb"),
  57135. name: "Front",
  57136. image: {
  57137. source: "./media/characters/robin-phox/delphox-front.svg",
  57138. extra: 1266/1069,
  57139. bottom: 32/1298
  57140. },
  57141. form: "delphox",
  57142. default: true
  57143. },
  57144. delphox_frontNsfw: {
  57145. height: math.unit(4 + 11/12, "feet"),
  57146. weight: math.unit(86, "lb"),
  57147. name: "Front (NSFW)",
  57148. image: {
  57149. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57150. extra: 1266/1069,
  57151. bottom: 32/1298
  57152. },
  57153. form: "delphox",
  57154. },
  57155. delphox_back: {
  57156. height: math.unit(4 + 11/12, "feet"),
  57157. weight: math.unit(86, "lb"),
  57158. name: "Back",
  57159. image: {
  57160. source: "./media/characters/robin-phox/delphox-back.svg",
  57161. extra: 1269/1083,
  57162. bottom: 15/1284
  57163. },
  57164. form: "delphox",
  57165. },
  57166. mienshao_front: {
  57167. height: math.unit(4 + 7/12, "feet"),
  57168. weight: math.unit(78.3, "lb"),
  57169. name: "Front",
  57170. image: {
  57171. source: "./media/characters/robin-phox/mienshao-front.svg",
  57172. extra: 1052/970,
  57173. bottom: 108/1160
  57174. },
  57175. form: "mienshao",
  57176. default: true
  57177. },
  57178. mienshao_frontNsfw: {
  57179. height: math.unit(4 + 7/12, "feet"),
  57180. weight: math.unit(78.3, "lb"),
  57181. name: "Front (NSFW)",
  57182. image: {
  57183. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57184. extra: 1052/970,
  57185. bottom: 108/1160
  57186. },
  57187. form: "mienshao",
  57188. },
  57189. mienshao_back: {
  57190. height: math.unit(4 + 7/12, "feet"),
  57191. weight: math.unit(78.3, "lb"),
  57192. name: "Back",
  57193. image: {
  57194. source: "./media/characters/robin-phox/mienshao-back.svg",
  57195. extra: 1102/982,
  57196. bottom: 32/1134
  57197. },
  57198. form: "mienshao",
  57199. },
  57200. inteleon_front: {
  57201. height: math.unit(6 + 3/12, "feet"),
  57202. weight: math.unit(99.6, "lb"),
  57203. name: "Front",
  57204. image: {
  57205. source: "./media/characters/robin-phox/inteleon-front.svg",
  57206. extra: 910/799,
  57207. bottom: 76/986
  57208. },
  57209. form: "inteleon",
  57210. default: true
  57211. },
  57212. inteleon_frontNsfw: {
  57213. height: math.unit(6 + 3/12, "feet"),
  57214. weight: math.unit(99.6, "lb"),
  57215. name: "Front (NSFW)",
  57216. image: {
  57217. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57218. extra: 910/799,
  57219. bottom: 76/986
  57220. },
  57221. form: "inteleon",
  57222. },
  57223. inteleon_back: {
  57224. height: math.unit(6 + 3/12, "feet"),
  57225. weight: math.unit(99.6, "lb"),
  57226. name: "Back",
  57227. image: {
  57228. source: "./media/characters/robin-phox/inteleon-back.svg",
  57229. extra: 907/796,
  57230. bottom: 25/932
  57231. },
  57232. form: "inteleon",
  57233. },
  57234. reshiram_front: {
  57235. height: math.unit(10 + 6/12, "feet"),
  57236. weight: math.unit(727.5, "lb"),
  57237. name: "Front",
  57238. image: {
  57239. source: "./media/characters/robin-phox/reshiram-front.svg",
  57240. extra: 1198/940,
  57241. bottom: 123/1321
  57242. },
  57243. form: "reshiram",
  57244. },
  57245. reshiram_frontNsfw: {
  57246. height: math.unit(10 + 6/12, "feet"),
  57247. weight: math.unit(727.5, "lb"),
  57248. name: "Front-nsfw",
  57249. image: {
  57250. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57251. extra: 1198/940,
  57252. bottom: 123/1321
  57253. },
  57254. form: "reshiram",
  57255. },
  57256. reshiram_back: {
  57257. height: math.unit(10 + 6/12, "feet"),
  57258. weight: math.unit(727.5, "lb"),
  57259. name: "Back",
  57260. image: {
  57261. source: "./media/characters/robin-phox/reshiram-back.svg",
  57262. extra: 1024/904,
  57263. bottom: 85/1109
  57264. },
  57265. form: "reshiram",
  57266. },
  57267. samurott_front: {
  57268. height: math.unit(8, "feet"),
  57269. weight: math.unit(208.6, "lb"),
  57270. name: "Front",
  57271. image: {
  57272. source: "./media/characters/robin-phox/samurott-front.svg",
  57273. extra: 1048/984,
  57274. bottom: 100/1148
  57275. },
  57276. form: "samurott",
  57277. },
  57278. samurott_frontNsfw: {
  57279. height: math.unit(8, "feet"),
  57280. weight: math.unit(208.6, "lb"),
  57281. name: "Front-nsfw",
  57282. image: {
  57283. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57284. extra: 1048/984,
  57285. bottom: 100/1148
  57286. },
  57287. form: "samurott",
  57288. },
  57289. samurott_back: {
  57290. height: math.unit(8, "feet"),
  57291. weight: math.unit(208.6, "lb"),
  57292. name: "Back",
  57293. image: {
  57294. source: "./media/characters/robin-phox/samurott-back.svg",
  57295. extra: 1110/1042,
  57296. bottom: 12/1122
  57297. },
  57298. form: "samurott",
  57299. },
  57300. samurott_feral: {
  57301. height: math.unit(4 + 11/12, "feet"),
  57302. weight: math.unit(208.6, "lb"),
  57303. name: "Feral",
  57304. image: {
  57305. source: "./media/characters/robin-phox/samurott-feral.svg",
  57306. extra: 766/681,
  57307. bottom: 108/874
  57308. },
  57309. form: "samurott",
  57310. },
  57311. },
  57312. [
  57313. {
  57314. name: "Normal",
  57315. height: math.unit(2, "feet"),
  57316. default: true,
  57317. form: "snivy"
  57318. },
  57319. {
  57320. name: "Normal",
  57321. height: math.unit(6, "feet"),
  57322. default: true,
  57323. form: "yoshi"
  57324. },
  57325. {
  57326. name: "Normal",
  57327. height: math.unit(4 + 11/12, "feet"),
  57328. default: true,
  57329. form: "delphox"
  57330. },
  57331. {
  57332. name: "Normal",
  57333. height: math.unit(4 + 7/12, "feet"),
  57334. default: true,
  57335. form: "mienshao"
  57336. },
  57337. {
  57338. name: "Normal",
  57339. height: math.unit(6 + 3/12, "feet"),
  57340. default: true,
  57341. form: "inteleon"
  57342. },
  57343. {
  57344. name: "Normal",
  57345. height: math.unit(10 + 6/12, "feet"),
  57346. default: true,
  57347. form: "reshiram"
  57348. },
  57349. {
  57350. name: "Normal",
  57351. height: math.unit(8, "feet"),
  57352. default: true,
  57353. form: "samurott"
  57354. },
  57355. {
  57356. name: "Macro",
  57357. height: math.unit(500, "feet"),
  57358. allForms: true
  57359. },
  57360. {
  57361. name: "Mega Macro",
  57362. height: math.unit(10, "earths"),
  57363. allForms: true
  57364. },
  57365. {
  57366. name: "Giga Macro",
  57367. height: math.unit(1, "galaxy"),
  57368. allForms: true
  57369. },
  57370. {
  57371. name: "Godly Macro",
  57372. height: math.unit(1e10, "multiverses"),
  57373. allForms: true
  57374. },
  57375. ],
  57376. {
  57377. "snivy": {
  57378. name: "Snivy",
  57379. default: true
  57380. },
  57381. "yoshi": {
  57382. name: "Yoshi",
  57383. },
  57384. "delphox": {
  57385. name: "Delphox",
  57386. },
  57387. "mienshao": {
  57388. name: "Mienshao",
  57389. },
  57390. "inteleon": {
  57391. name: "Inteleon",
  57392. },
  57393. "reshiram": {
  57394. name: "Reshiram",
  57395. },
  57396. "samurott": {
  57397. name: "Samurott",
  57398. },
  57399. }
  57400. ))
  57401. characterMakers.push(() => makeCharacter(
  57402. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57403. {
  57404. front: {
  57405. height: math.unit(4, "feet"),
  57406. name: "Front",
  57407. image: {
  57408. source: "./media/characters/ash-leung/front.svg",
  57409. extra: 1916/1792,
  57410. bottom: 50/1966
  57411. }
  57412. },
  57413. },
  57414. [
  57415. {
  57416. name: "Atomic",
  57417. height: math.unit(1, "angstrom")
  57418. },
  57419. {
  57420. name: "Microscopic",
  57421. height: math.unit(4000, "angstroms")
  57422. },
  57423. {
  57424. name: "Speck",
  57425. height: math.unit(1, "mm")
  57426. },
  57427. {
  57428. name: "Small",
  57429. height: math.unit(1, "inch")
  57430. },
  57431. {
  57432. name: "Normal",
  57433. height: math.unit(4, "feet"),
  57434. default: true
  57435. },
  57436. ]
  57437. ))
  57438. characterMakers.push(() => makeCharacter(
  57439. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57440. {
  57441. frontDressed: {
  57442. height: math.unit(2.08, "meters"),
  57443. weight: math.unit(175, "lb"),
  57444. name: "Front (Dressed)",
  57445. image: {
  57446. source: "./media/characters/carie/front-dressed.svg",
  57447. extra: 456/417,
  57448. bottom: 7/463
  57449. }
  57450. },
  57451. backDressed: {
  57452. height: math.unit(2.08, "meters"),
  57453. weight: math.unit(175, "lb"),
  57454. name: "Back (Dressed)",
  57455. image: {
  57456. source: "./media/characters/carie/back-dressed.svg",
  57457. extra: 455/414,
  57458. bottom: 11/466
  57459. }
  57460. },
  57461. front: {
  57462. height: math.unit(2, "meters"),
  57463. weight: math.unit(175, "lb"),
  57464. name: "Front",
  57465. image: {
  57466. source: "./media/characters/carie/front.svg",
  57467. extra: 438/399,
  57468. bottom: 12/450
  57469. }
  57470. },
  57471. back: {
  57472. height: math.unit(2, "meters"),
  57473. weight: math.unit(175, "lb"),
  57474. name: "Back",
  57475. image: {
  57476. source: "./media/characters/carie/back.svg",
  57477. extra: 438/397,
  57478. bottom: 7/445
  57479. }
  57480. },
  57481. },
  57482. [
  57483. {
  57484. name: "Normal",
  57485. height: math.unit(2.08, "meters"),
  57486. default: true
  57487. },
  57488. {
  57489. name: "Macro",
  57490. height: math.unit(2.08e3, "meters")
  57491. },
  57492. {
  57493. name: "Mega Macro",
  57494. height: math.unit(2.08e6, "meters")
  57495. },
  57496. {
  57497. name: "Giga Macro",
  57498. height: math.unit(2.08e9, "meters")
  57499. },
  57500. {
  57501. name: "Tera Macro",
  57502. height: math.unit(2.08e12, "meters")
  57503. },
  57504. {
  57505. name: "Peta Macro",
  57506. height: math.unit(2.08e15, "meters")
  57507. },
  57508. {
  57509. name: "Exa Macro",
  57510. height: math.unit(2.08e18, "meters")
  57511. },
  57512. {
  57513. name: "Zetta Macro",
  57514. height: math.unit(2.08e21, "meters")
  57515. },
  57516. {
  57517. name: "Yotta Macro",
  57518. height: math.unit(2.08e24, "meters")
  57519. },
  57520. ]
  57521. ))
  57522. characterMakers.push(() => makeCharacter(
  57523. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57524. {
  57525. front: {
  57526. height: math.unit(5 + 2/12, "feet"),
  57527. weight: math.unit(120, "lb"),
  57528. name: "Front",
  57529. image: {
  57530. source: "./media/characters/sai-bree/front.svg",
  57531. extra: 1843/1702,
  57532. bottom: 91/1934
  57533. }
  57534. },
  57535. back: {
  57536. height: math.unit(5 + 2/12, "feet"),
  57537. weight: math.unit(120, "lb"),
  57538. name: "Back",
  57539. image: {
  57540. source: "./media/characters/sai-bree/back.svg",
  57541. extra: 1809/1637,
  57542. bottom: 56/1865
  57543. }
  57544. },
  57545. },
  57546. [
  57547. {
  57548. name: "Normal",
  57549. height: math.unit(5 + 2/12, "feet"),
  57550. default: true
  57551. },
  57552. {
  57553. name: "Macro",
  57554. height: math.unit(500, "feet")
  57555. },
  57556. ]
  57557. ))
  57558. characterMakers.push(() => makeCharacter(
  57559. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57560. {
  57561. side: {
  57562. height: math.unit(0.77, "meters"),
  57563. weight: math.unit(120, "lb"),
  57564. name: "Side",
  57565. image: {
  57566. source: "./media/characters/davwyn/side.svg",
  57567. extra: 1557/1225,
  57568. bottom: 131/1688
  57569. }
  57570. },
  57571. front: {
  57572. height: math.unit(0.835410, "meters"),
  57573. weight: math.unit(120, "lb"),
  57574. name: "Front",
  57575. image: {
  57576. source: "./media/characters/davwyn/front.svg",
  57577. extra: 870/843,
  57578. bottom: 175/1045
  57579. }
  57580. },
  57581. },
  57582. [
  57583. {
  57584. name: "Minidrake",
  57585. height: math.unit(0.77/4, "meters")
  57586. },
  57587. {
  57588. name: "Normal",
  57589. height: math.unit(0.77, "meters"),
  57590. default: true
  57591. },
  57592. ]
  57593. ))
  57594. characterMakers.push(() => makeCharacter(
  57595. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57596. {
  57597. front: {
  57598. height: math.unit(10 + 3/12, "feet"),
  57599. weight: math.unit(2857, "lb"),
  57600. name: "Front",
  57601. image: {
  57602. source: "./media/characters/balans/front.svg",
  57603. extra: 427/402,
  57604. bottom: 26/453
  57605. }
  57606. },
  57607. side: {
  57608. height: math.unit(10 + 3/12, "feet"),
  57609. weight: math.unit(2857, "lb"),
  57610. name: "Side",
  57611. image: {
  57612. source: "./media/characters/balans/side.svg",
  57613. extra: 397/371,
  57614. bottom: 17/414
  57615. }
  57616. },
  57617. back: {
  57618. height: math.unit(10 + 3/12, "feet"),
  57619. weight: math.unit(2857, "lb"),
  57620. name: "Back",
  57621. image: {
  57622. source: "./media/characters/balans/back.svg",
  57623. extra: 408/381,
  57624. bottom: 14/422
  57625. }
  57626. },
  57627. hand: {
  57628. height: math.unit(1.15, "feet"),
  57629. name: "Hand",
  57630. image: {
  57631. source: "./media/characters/balans/hand.svg"
  57632. }
  57633. },
  57634. footRest: {
  57635. height: math.unit(3.1, "feet"),
  57636. name: "Foot (Rest)",
  57637. image: {
  57638. source: "./media/characters/balans/foot-rest.svg"
  57639. }
  57640. },
  57641. footActive: {
  57642. height: math.unit(3.5, "feet"),
  57643. name: "Foot (Active)",
  57644. image: {
  57645. source: "./media/characters/balans/foot-active.svg"
  57646. }
  57647. },
  57648. },
  57649. [
  57650. {
  57651. name: "Normal",
  57652. height: math.unit(10 + 3/12, "feet"),
  57653. default: true
  57654. },
  57655. ]
  57656. ))
  57657. characterMakers.push(() => makeCharacter(
  57658. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57659. {
  57660. side: {
  57661. height: math.unit(9, "meters"),
  57662. weight: math.unit(114, "tonnes"),
  57663. name: "Side",
  57664. image: {
  57665. source: "./media/characters/eldkveikir/side.svg",
  57666. extra: 1927/338,
  57667. bottom: 42/1969
  57668. }
  57669. },
  57670. sitting: {
  57671. height: math.unit(13.4, "meters"),
  57672. weight: math.unit(114, "tonnes"),
  57673. name: "Sitting",
  57674. image: {
  57675. source: "./media/characters/eldkveikir/sitting.svg",
  57676. extra: 1108/963,
  57677. bottom: 610/1718
  57678. }
  57679. },
  57680. maw: {
  57681. height: math.unit(8.36, "meters"),
  57682. name: "Maw",
  57683. image: {
  57684. source: "./media/characters/eldkveikir/maw.svg"
  57685. }
  57686. },
  57687. hand: {
  57688. height: math.unit(4.84, "meters"),
  57689. name: "Hand",
  57690. image: {
  57691. source: "./media/characters/eldkveikir/hand.svg"
  57692. }
  57693. },
  57694. foot: {
  57695. height: math.unit(6.9, "meters"),
  57696. name: "Foot",
  57697. image: {
  57698. source: "./media/characters/eldkveikir/foot.svg"
  57699. }
  57700. },
  57701. genitals: {
  57702. height: math.unit(9.6, "meters"),
  57703. name: "Genitals",
  57704. image: {
  57705. source: "./media/characters/eldkveikir/genitals.svg"
  57706. }
  57707. },
  57708. },
  57709. [
  57710. {
  57711. name: "Normal",
  57712. height: math.unit(9, "meters"),
  57713. default: true
  57714. },
  57715. ]
  57716. ))
  57717. characterMakers.push(() => makeCharacter(
  57718. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57719. {
  57720. front: {
  57721. height: math.unit(14, "feet"),
  57722. weight: math.unit(4100, "lb"),
  57723. name: "Front",
  57724. image: {
  57725. source: "./media/characters/arrow/front.svg",
  57726. extra: 330/318,
  57727. bottom: 56/386
  57728. }
  57729. },
  57730. },
  57731. [
  57732. {
  57733. name: "Normal",
  57734. height: math.unit(14, "feet"),
  57735. default: true
  57736. },
  57737. {
  57738. name: "Minimacro",
  57739. height: math.unit(63, "feet")
  57740. },
  57741. {
  57742. name: "Macro",
  57743. height: math.unit(630, "feet")
  57744. },
  57745. {
  57746. name: "Megamacro",
  57747. height: math.unit(12600, "feet")
  57748. },
  57749. {
  57750. name: "Gigamacro",
  57751. height: math.unit(18000, "miles")
  57752. },
  57753. ]
  57754. ))
  57755. characterMakers.push(() => makeCharacter(
  57756. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57757. {
  57758. front: {
  57759. height: math.unit(10, "feet"),
  57760. weight: math.unit(2.4, "tons"),
  57761. name: "Front",
  57762. image: {
  57763. source: "./media/characters/3yk-k0-unit/front.svg",
  57764. extra: 573/561,
  57765. bottom: 33/606
  57766. }
  57767. },
  57768. back: {
  57769. height: math.unit(10, "feet"),
  57770. weight: math.unit(2.4, "tons"),
  57771. name: "Back",
  57772. image: {
  57773. source: "./media/characters/3yk-k0-unit/back.svg",
  57774. extra: 614/573,
  57775. bottom: 32/646
  57776. }
  57777. },
  57778. maw: {
  57779. height: math.unit(2.15, "feet"),
  57780. name: "Maw",
  57781. image: {
  57782. source: "./media/characters/3yk-k0-unit/maw.svg"
  57783. }
  57784. },
  57785. },
  57786. [
  57787. {
  57788. name: "Normal",
  57789. height: math.unit(10, "feet"),
  57790. default: true
  57791. },
  57792. ]
  57793. ))
  57794. characterMakers.push(() => makeCharacter(
  57795. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57796. {
  57797. front: {
  57798. height: math.unit(8 + 8/12, "feet"),
  57799. name: "Front",
  57800. image: {
  57801. source: "./media/characters/nemo/front.svg",
  57802. extra: 1308/1217,
  57803. bottom: 57/1365
  57804. }
  57805. },
  57806. },
  57807. [
  57808. {
  57809. name: "Normal",
  57810. height: math.unit(8 + 8/12, "feet"),
  57811. default: true
  57812. },
  57813. ]
  57814. ))
  57815. characterMakers.push(() => makeCharacter(
  57816. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57817. {
  57818. front: {
  57819. height: math.unit(8, "feet"),
  57820. weight: math.unit(760, "lb"),
  57821. name: "Front",
  57822. image: {
  57823. source: "./media/characters/rexx/front.svg",
  57824. extra: 786/750,
  57825. bottom: 17/803
  57826. },
  57827. extraAttributes: {
  57828. "pawLength": {
  57829. name: "Paw Length",
  57830. power: 1,
  57831. type: "length",
  57832. base: math.unit(27, "inches")
  57833. },
  57834. }
  57835. },
  57836. },
  57837. [
  57838. {
  57839. name: "Micro",
  57840. height: math.unit(2, "inches")
  57841. },
  57842. {
  57843. name: "Normal",
  57844. height: math.unit(8, "feet"),
  57845. default: true
  57846. },
  57847. {
  57848. name: "Macro",
  57849. height: math.unit(150, "feet")
  57850. },
  57851. ]
  57852. ))
  57853. characterMakers.push(() => makeCharacter(
  57854. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57855. {
  57856. front: {
  57857. height: math.unit(18, "feet"),
  57858. weight: math.unit(1975, "lb"),
  57859. name: "Front",
  57860. image: {
  57861. source: "./media/characters/draco/front.svg",
  57862. extra: 1325/1241,
  57863. bottom: 83/1408
  57864. }
  57865. },
  57866. back: {
  57867. height: math.unit(18, "feet"),
  57868. weight: math.unit(1975, "lb"),
  57869. name: "Back",
  57870. image: {
  57871. source: "./media/characters/draco/back.svg",
  57872. extra: 1332/1250,
  57873. bottom: 43/1375
  57874. }
  57875. },
  57876. dick: {
  57877. height: math.unit(7.5, "feet"),
  57878. name: "Dick",
  57879. image: {
  57880. source: "./media/characters/draco/dick.svg"
  57881. }
  57882. },
  57883. },
  57884. [
  57885. {
  57886. name: "Normal",
  57887. height: math.unit(18, "feet"),
  57888. default: true
  57889. },
  57890. ]
  57891. ))
  57892. characterMakers.push(() => makeCharacter(
  57893. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57894. {
  57895. front: {
  57896. height: math.unit(3.2, "meters"),
  57897. name: "Front",
  57898. image: {
  57899. source: "./media/characters/harriett/front.svg",
  57900. extra: 1966/1915,
  57901. bottom: 9/1975
  57902. }
  57903. },
  57904. },
  57905. [
  57906. {
  57907. name: "Normal",
  57908. height: math.unit(3.2, "meters"),
  57909. default: true
  57910. },
  57911. ]
  57912. ))
  57913. characterMakers.push(() => makeCharacter(
  57914. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57915. {
  57916. sitting: {
  57917. height: math.unit(0.8, "meter"),
  57918. name: "Sitting",
  57919. image: {
  57920. source: "./media/characters/serpentus/sitting.svg",
  57921. extra: 293/290,
  57922. bottom: 140/433
  57923. }
  57924. },
  57925. },
  57926. [
  57927. {
  57928. name: "Normal",
  57929. height: math.unit(0.8, "meter"),
  57930. default: true
  57931. },
  57932. ]
  57933. ))
  57934. characterMakers.push(() => makeCharacter(
  57935. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57936. {
  57937. front: {
  57938. height: math.unit(5.7174385736, "feet"),
  57939. name: "Front",
  57940. image: {
  57941. source: "./media/characters/nova-polecat/front.svg",
  57942. extra: 1317/1216,
  57943. bottom: 92/1409
  57944. }
  57945. },
  57946. },
  57947. [
  57948. {
  57949. name: "Normal",
  57950. height: math.unit(5.7174385736, "feet"),
  57951. default: true
  57952. },
  57953. ]
  57954. ))
  57955. characterMakers.push(() => makeCharacter(
  57956. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57957. {
  57958. front: {
  57959. height: math.unit(5 + 4/12, "feet"),
  57960. weight: math.unit(250, "lb"),
  57961. name: "Front",
  57962. image: {
  57963. source: "./media/characters/mook/front.svg",
  57964. extra: 1088/1037,
  57965. bottom: 132/1220
  57966. }
  57967. },
  57968. back: {
  57969. height: math.unit(5 + 1/12, "feet"),
  57970. weight: math.unit(250, "lb"),
  57971. name: "Back",
  57972. image: {
  57973. source: "./media/characters/mook/back.svg",
  57974. extra: 1184/905,
  57975. bottom: 96/1280
  57976. }
  57977. },
  57978. head: {
  57979. height: math.unit(1.85, "feet"),
  57980. name: "Head",
  57981. image: {
  57982. source: "./media/characters/mook/head.svg"
  57983. }
  57984. },
  57985. hand: {
  57986. height: math.unit(1.9, "feet"),
  57987. name: "Hand",
  57988. image: {
  57989. source: "./media/characters/mook/hand.svg"
  57990. }
  57991. },
  57992. palm: {
  57993. height: math.unit(1.84, "feet"),
  57994. name: "Palm",
  57995. image: {
  57996. source: "./media/characters/mook/palm.svg"
  57997. }
  57998. },
  57999. foot: {
  58000. height: math.unit(1.44, "feet"),
  58001. name: "Foot",
  58002. image: {
  58003. source: "./media/characters/mook/foot.svg"
  58004. }
  58005. },
  58006. sole: {
  58007. height: math.unit(1.44, "feet"),
  58008. name: "Sole",
  58009. image: {
  58010. source: "./media/characters/mook/sole.svg"
  58011. }
  58012. },
  58013. },
  58014. [
  58015. {
  58016. name: "Normal",
  58017. height: math.unit(5 + 4/12, "feet"),
  58018. default: true
  58019. },
  58020. {
  58021. name: "Big",
  58022. height: math.unit(12, "feet")
  58023. },
  58024. ]
  58025. ))
  58026. characterMakers.push(() => makeCharacter(
  58027. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58028. {
  58029. front: {
  58030. height: math.unit(6 + 10/12, "feet"),
  58031. weight: math.unit(233, "lb"),
  58032. name: "Front",
  58033. image: {
  58034. source: "./media/characters/kayla/front.svg",
  58035. extra: 1850/1775,
  58036. bottom: 65/1915
  58037. }
  58038. },
  58039. },
  58040. [
  58041. {
  58042. name: "Normal",
  58043. height: math.unit(6 + 10/12, "feet"),
  58044. default: true
  58045. },
  58046. {
  58047. name: "Amazonian",
  58048. height: math.unit(12 + 5/12, "feet")
  58049. },
  58050. {
  58051. name: "Mini Giantess",
  58052. height: math.unit(26, "feet")
  58053. },
  58054. {
  58055. name: "Giantess",
  58056. height: math.unit(200, "feet")
  58057. },
  58058. {
  58059. name: "Mega Giantess",
  58060. height: math.unit(2500, "feet")
  58061. },
  58062. {
  58063. name: "City Sized",
  58064. height: math.unit(50, "miles")
  58065. },
  58066. {
  58067. name: "Country Sized",
  58068. height: math.unit(500, "miles")
  58069. },
  58070. {
  58071. name: "Continent Sized",
  58072. height: math.unit(2500, "miles")
  58073. },
  58074. {
  58075. name: "Planet Sized",
  58076. height: math.unit(10000, "miles")
  58077. },
  58078. {
  58079. name: "Star Sized",
  58080. height: math.unit(5e6, "miles")
  58081. },
  58082. {
  58083. name: "Solar System Sized",
  58084. height: math.unit(125, "AU")
  58085. },
  58086. {
  58087. name: "Galaxy Sized",
  58088. height: math.unit(300e3, "lightyears")
  58089. },
  58090. {
  58091. name: "Universe Sized",
  58092. height: math.unit(200e9, "lightyears")
  58093. },
  58094. {
  58095. name: "Multiverse Sized",
  58096. height: math.unit(20, "exauniverses")
  58097. },
  58098. {
  58099. name: "Mother of Existence",
  58100. height: math.unit(1e6, "yottauniverses")
  58101. },
  58102. ]
  58103. ))
  58104. characterMakers.push(() => makeCharacter(
  58105. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58106. {
  58107. side: {
  58108. height: math.unit(9.5, "meters"),
  58109. name: "Side",
  58110. image: {
  58111. source: "./media/characters/kulve-ragnarok/side.svg",
  58112. extra: 364/326,
  58113. bottom: 50/414
  58114. }
  58115. },
  58116. },
  58117. [
  58118. {
  58119. name: "Normal",
  58120. height: math.unit(9.5, "meters"),
  58121. default: true
  58122. },
  58123. ]
  58124. ))
  58125. characterMakers.push(() => makeCharacter(
  58126. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58127. {
  58128. front: {
  58129. height: math.unit(8 + 9/12, "feet"),
  58130. name: "Front",
  58131. image: {
  58132. source: "./media/characters/atlas-goat/front.svg",
  58133. extra: 1462/1323,
  58134. bottom: 12/1474
  58135. }
  58136. },
  58137. },
  58138. [
  58139. {
  58140. name: "Normal",
  58141. height: math.unit(8 + 9/12, "feet"),
  58142. default: true
  58143. },
  58144. {
  58145. name: "Skyline",
  58146. height: math.unit(845, "feet")
  58147. },
  58148. {
  58149. name: "Orbital",
  58150. height: math.unit(93000, "miles")
  58151. },
  58152. {
  58153. name: "Constellation",
  58154. height: math.unit(27000, "lightyears")
  58155. },
  58156. ]
  58157. ))
  58158. characterMakers.push(() => makeCharacter(
  58159. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58160. {
  58161. side: {
  58162. height: math.unit(1.8, "meters"),
  58163. weight: math.unit(120, "kg"),
  58164. name: "Side",
  58165. image: {
  58166. source: "./media/characters/xie-ling/side.svg",
  58167. extra: 646/574,
  58168. bottom: 44/690
  58169. }
  58170. },
  58171. },
  58172. [
  58173. {
  58174. name: "Tiny",
  58175. height: math.unit(1.80, "meters")
  58176. },
  58177. {
  58178. name: "Small",
  58179. height: math.unit(6, "meters")
  58180. },
  58181. {
  58182. name: "Medium",
  58183. height: math.unit(15, "meters")
  58184. },
  58185. {
  58186. name: "Normal",
  58187. height: math.unit(30, "meters"),
  58188. default: true
  58189. },
  58190. {
  58191. name: "Above Normal",
  58192. height: math.unit(60, "meters")
  58193. },
  58194. {
  58195. name: "Big",
  58196. height: math.unit(220, "meters")
  58197. },
  58198. {
  58199. name: "Giant",
  58200. height: math.unit(2.2, "km")
  58201. },
  58202. {
  58203. name: "Macro",
  58204. height: math.unit(25, "km")
  58205. },
  58206. {
  58207. name: "Mega Macro",
  58208. height: math.unit(350, "km")
  58209. },
  58210. {
  58211. name: "Mega Macro+",
  58212. height: math.unit(5000, "km")
  58213. },
  58214. {
  58215. name: "Goddess",
  58216. height: math.unit(3, "multiverses")
  58217. },
  58218. ]
  58219. ))
  58220. characterMakers.push(() => makeCharacter(
  58221. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58222. {
  58223. frontSfw: {
  58224. height: math.unit(5 + 11/12, "feet"),
  58225. weight: math.unit(210, "lb"),
  58226. name: "Front",
  58227. image: {
  58228. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58229. extra: 1928/1821,
  58230. bottom: 45/1973
  58231. }
  58232. },
  58233. backSfw: {
  58234. height: math.unit(5 + 11/12, "feet"),
  58235. weight: math.unit(210, "lb"),
  58236. name: "Back",
  58237. image: {
  58238. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58239. extra: 1920/1813,
  58240. bottom: 34/1954
  58241. }
  58242. },
  58243. frontNsfw: {
  58244. height: math.unit(5 + 11/12, "feet"),
  58245. weight: math.unit(210, "lb"),
  58246. name: "Front (NSFW)",
  58247. image: {
  58248. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58249. extra: 1928/1821,
  58250. bottom: 45/1973
  58251. }
  58252. },
  58253. backNsfw: {
  58254. height: math.unit(5 + 11/12, "feet"),
  58255. weight: math.unit(210, "lb"),
  58256. name: "Back (NSFW)",
  58257. image: {
  58258. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58259. extra: 1920/1813,
  58260. bottom: 34/1954
  58261. }
  58262. },
  58263. },
  58264. [
  58265. {
  58266. name: "Normal",
  58267. height: math.unit(5 + 11/12, "feet"),
  58268. default: true
  58269. },
  58270. {
  58271. name: "Goddess",
  58272. height: math.unit(20 + 3/12, "feet")
  58273. },
  58274. {
  58275. name: "Breaker of Man",
  58276. height: math.unit(329 + 9/12, "feet")
  58277. },
  58278. {
  58279. name: "Solar Justice",
  58280. height: math.unit(0.6, "solarradii")
  58281. },
  58282. {
  58283. name: "She Who Judges",
  58284. height: math.unit(1, "universe")
  58285. },
  58286. ]
  58287. ))
  58288. characterMakers.push(() => makeCharacter(
  58289. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58290. {
  58291. casual_front: {
  58292. height: math.unit(6 + 1/12, "feet"),
  58293. weight: math.unit(190, "lb"),
  58294. preyCapacity: math.unit(1, "people"),
  58295. name: "Front",
  58296. image: {
  58297. source: "./media/characters/managarmr/casual-front.svg",
  58298. extra: 411/381,
  58299. bottom: 15/426
  58300. },
  58301. extraAttributes: {
  58302. "pawSize": {
  58303. name: "Paw Size",
  58304. power: 1,
  58305. type: "length",
  58306. base: math.unit(0.2, "meters")
  58307. },
  58308. },
  58309. form: "casual",
  58310. },
  58311. casual_back: {
  58312. height: math.unit(6 + 1/12, "feet"),
  58313. weight: math.unit(190, "lb"),
  58314. preyCapacity: math.unit(1, "people"),
  58315. name: "Back",
  58316. image: {
  58317. source: "./media/characters/managarmr/casual-back.svg",
  58318. extra: 413/383,
  58319. bottom: 13/426
  58320. },
  58321. extraAttributes: {
  58322. "pawSize": {
  58323. name: "Paw Size",
  58324. power: 1,
  58325. type: "length",
  58326. base: math.unit(0.2, "meters")
  58327. },
  58328. },
  58329. form: "casual",
  58330. },
  58331. base_front: {
  58332. height: math.unit(7, "feet"),
  58333. weight: math.unit(210, "lb"),
  58334. preyCapacity: math.unit(2, "people"),
  58335. name: "Front",
  58336. image: {
  58337. source: "./media/characters/managarmr/base-front.svg",
  58338. extra: 580/485,
  58339. bottom: 32/612
  58340. },
  58341. extraAttributes: {
  58342. "wingspan": {
  58343. name: "Wingspan",
  58344. power: 1,
  58345. type: "length",
  58346. base: math.unit(4, "meters")
  58347. },
  58348. "pawSize": {
  58349. name: "Paw Size",
  58350. power: 1,
  58351. type: "length",
  58352. base: math.unit(0.2, "meters")
  58353. },
  58354. },
  58355. form: "base",
  58356. },
  58357. "true-divine_front": {
  58358. height: math.unit(40, "feet"),
  58359. weight: math.unit(39000, "lb"),
  58360. preyCapacity: math.unit(375, "people"),
  58361. name: "Front",
  58362. image: {
  58363. source: "./media/characters/managarmr/true-divine-front.svg",
  58364. extra: 725/573,
  58365. bottom: 120/845
  58366. },
  58367. extraAttributes: {
  58368. "wingspan": {
  58369. name: "Wingspan",
  58370. power: 1,
  58371. type: "length",
  58372. base: math.unit(20, "meters")
  58373. },
  58374. "pawSize": {
  58375. name: "Paw Size",
  58376. power: 1,
  58377. type: "length",
  58378. base: math.unit(1.5, "meters")
  58379. },
  58380. },
  58381. form: "true-divine",
  58382. },
  58383. },
  58384. [
  58385. {
  58386. name: "Normal",
  58387. height: math.unit(6 + 1/12, "feet"),
  58388. form: "casual",
  58389. default: true
  58390. },
  58391. {
  58392. name: "Normal",
  58393. height: math.unit(7, "feet"),
  58394. form: "base",
  58395. default: true
  58396. },
  58397. ],
  58398. {
  58399. "casual": {
  58400. name: "Casual",
  58401. default: true
  58402. },
  58403. "base": {
  58404. name: "Base",
  58405. },
  58406. "true-divine": {
  58407. name: "True Divine",
  58408. },
  58409. }
  58410. ))
  58411. characterMakers.push(() => makeCharacter(
  58412. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58413. {
  58414. front: {
  58415. height: math.unit(1.8, "meters"),
  58416. weight: math.unit(110, "kg"),
  58417. name: "Front",
  58418. image: {
  58419. source: "./media/characters/mystra/front.svg",
  58420. extra: 529/442,
  58421. bottom: 31/560
  58422. }
  58423. },
  58424. frontLewd: {
  58425. height: math.unit(1.8, "meters"),
  58426. weight: math.unit(110, "kg"),
  58427. name: "Front (Lewd)",
  58428. image: {
  58429. source: "./media/characters/mystra/front-lewd.svg",
  58430. extra: 529/442,
  58431. bottom: 31/560
  58432. }
  58433. },
  58434. head: {
  58435. height: math.unit(1.63, "feet"),
  58436. name: "Head",
  58437. image: {
  58438. source: "./media/characters/mystra/head.svg"
  58439. }
  58440. },
  58441. paw: {
  58442. height: math.unit(1.9, "feet"),
  58443. name: "Paw",
  58444. image: {
  58445. source: "./media/characters/mystra/paw.svg"
  58446. }
  58447. },
  58448. },
  58449. [
  58450. {
  58451. name: "Incognito",
  58452. height: math.unit(2.3, "meters")
  58453. },
  58454. {
  58455. name: "Small Macro",
  58456. height: math.unit(300, "meters")
  58457. },
  58458. {
  58459. name: "Small Mega",
  58460. height: math.unit(2, "km")
  58461. },
  58462. {
  58463. name: "Mega",
  58464. height: math.unit(30, "km")
  58465. },
  58466. {
  58467. name: "Small Giga",
  58468. height: math.unit(100, "km")
  58469. },
  58470. {
  58471. name: "Giga",
  58472. height: math.unit(1000, "km"),
  58473. default: true
  58474. },
  58475. {
  58476. name: "Continental",
  58477. height: math.unit(5000, "km")
  58478. },
  58479. {
  58480. name: "Terra",
  58481. height: math.unit(20000, "km")
  58482. },
  58483. {
  58484. name: "Solar",
  58485. height: math.unit(2e6, "km")
  58486. },
  58487. {
  58488. name: "Galactic",
  58489. height: math.unit(528502, "lightyears")
  58490. },
  58491. {
  58492. name: "Universal",
  58493. height: math.unit(20, "universes")
  58494. },
  58495. ]
  58496. ))
  58497. characterMakers.push(() => makeCharacter(
  58498. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58499. {
  58500. front: {
  58501. height: math.unit(2, "meters"),
  58502. weight: math.unit(140, "kg"),
  58503. name: "Front",
  58504. image: {
  58505. source: "./media/characters/caleb/front.svg",
  58506. extra: 873/817,
  58507. bottom: 47/920
  58508. }
  58509. },
  58510. back: {
  58511. height: math.unit(2, "meters"),
  58512. weight: math.unit(140, "kg"),
  58513. name: "Back",
  58514. image: {
  58515. source: "./media/characters/caleb/back.svg",
  58516. extra: 877/828,
  58517. bottom: 24/901
  58518. }
  58519. },
  58520. snakeTail: {
  58521. height: math.unit(1.44, "feet"),
  58522. name: "Snake Tail",
  58523. image: {
  58524. source: "./media/characters/caleb/snake-tail.svg"
  58525. }
  58526. },
  58527. dick: {
  58528. height: math.unit(2.6, "feet"),
  58529. name: "Dick",
  58530. image: {
  58531. source: "./media/characters/caleb/dick.svg"
  58532. }
  58533. },
  58534. },
  58535. [
  58536. {
  58537. name: "Incognito",
  58538. height: math.unit(3, "meters")
  58539. },
  58540. {
  58541. name: "Home Size",
  58542. height: math.unit(200, "meters"),
  58543. default: true
  58544. },
  58545. {
  58546. name: "Macro",
  58547. height: math.unit(500, "meters")
  58548. },
  58549. {
  58550. name: "Big Macro",
  58551. height: math.unit(5, "km")
  58552. },
  58553. {
  58554. name: "Giga",
  58555. height: math.unit(250, "km")
  58556. },
  58557. {
  58558. name: "Giga+",
  58559. height: math.unit(5000, "km")
  58560. },
  58561. {
  58562. name: "Small Terra",
  58563. height: math.unit(35e3, "km")
  58564. },
  58565. {
  58566. name: "Terra",
  58567. height: math.unit(2e6, "km")
  58568. },
  58569. {
  58570. name: "Terra+",
  58571. height: math.unit(1.5e6, "km")
  58572. },
  58573. ]
  58574. ))
  58575. characterMakers.push(() => makeCharacter(
  58576. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58577. {
  58578. front: {
  58579. height: math.unit(2, "meters"),
  58580. weight: math.unit(120, "kg"),
  58581. name: "Front",
  58582. image: {
  58583. source: "./media/characters/gilirian/front.svg",
  58584. extra: 805/737,
  58585. bottom: 13/818
  58586. }
  58587. },
  58588. side: {
  58589. height: math.unit(2, "meters"),
  58590. weight: math.unit(120, "kg"),
  58591. name: "Side",
  58592. image: {
  58593. source: "./media/characters/gilirian/side.svg",
  58594. extra: 810/746,
  58595. bottom: 6/816
  58596. }
  58597. },
  58598. back: {
  58599. height: math.unit(2, "meters"),
  58600. weight: math.unit(120, "kg"),
  58601. name: "Back",
  58602. image: {
  58603. source: "./media/characters/gilirian/back.svg",
  58604. extra: 815/745,
  58605. bottom: 15/830
  58606. }
  58607. },
  58608. frontNsfw: {
  58609. height: math.unit(2, "meters"),
  58610. weight: math.unit(120, "kg"),
  58611. name: "Front (NSFW)",
  58612. image: {
  58613. source: "./media/characters/gilirian/front-nsfw.svg",
  58614. extra: 805/737,
  58615. bottom: 13/818
  58616. }
  58617. },
  58618. sideNsfw: {
  58619. height: math.unit(2, "meters"),
  58620. weight: math.unit(120, "kg"),
  58621. name: "Side (NSFW)",
  58622. image: {
  58623. source: "./media/characters/gilirian/side-nsfw.svg",
  58624. extra: 810/746,
  58625. bottom: 6/816
  58626. }
  58627. },
  58628. },
  58629. [
  58630. {
  58631. name: "Incognito",
  58632. height: math.unit(2, "meters"),
  58633. default: true
  58634. },
  58635. {
  58636. name: "Macro",
  58637. height: math.unit(250, "meters")
  58638. },
  58639. {
  58640. name: "Big Macro",
  58641. height: math.unit(1500, "meters")
  58642. },
  58643. {
  58644. name: "Mega",
  58645. height: math.unit(40, "km")
  58646. },
  58647. {
  58648. name: "Giga",
  58649. height: math.unit(300, "km")
  58650. },
  58651. {
  58652. name: "Extra Giga",
  58653. height: math.unit(5000, "km")
  58654. },
  58655. {
  58656. name: "Small Terra",
  58657. height: math.unit(10e3, "km")
  58658. },
  58659. {
  58660. name: "Terra",
  58661. height: math.unit(3e5, "km")
  58662. },
  58663. {
  58664. name: "Galactic",
  58665. height: math.unit(369950, "lightyears")
  58666. },
  58667. ]
  58668. ))
  58669. characterMakers.push(() => makeCharacter(
  58670. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58671. {
  58672. front: {
  58673. height: math.unit(2.5, "meters"),
  58674. weight: math.unit(230, "lb"),
  58675. name: "Front",
  58676. image: {
  58677. source: "./media/characters/tarken/front.svg",
  58678. extra: 764/720,
  58679. bottom: 49/813
  58680. }
  58681. },
  58682. back: {
  58683. height: math.unit(2.5, "meters"),
  58684. weight: math.unit(230, "lb"),
  58685. name: "Back",
  58686. image: {
  58687. source: "./media/characters/tarken/back.svg",
  58688. extra: 756/720,
  58689. bottom: 35/791
  58690. }
  58691. },
  58692. frontNsfw: {
  58693. height: math.unit(2.5, "meters"),
  58694. weight: math.unit(230, "lb"),
  58695. name: "Front (NSFW)",
  58696. image: {
  58697. source: "./media/characters/tarken/front-nsfw.svg",
  58698. extra: 764/720,
  58699. bottom: 49/813
  58700. }
  58701. },
  58702. backNsfw: {
  58703. height: math.unit(2.5, "meters"),
  58704. weight: math.unit(230, "lb"),
  58705. name: "Back (NSFW)",
  58706. image: {
  58707. source: "./media/characters/tarken/back-nsfw.svg",
  58708. extra: 756/720,
  58709. bottom: 35/791
  58710. }
  58711. },
  58712. head: {
  58713. height: math.unit(2.22, "feet"),
  58714. name: "Head",
  58715. image: {
  58716. source: "./media/characters/tarken/head.svg"
  58717. }
  58718. },
  58719. tail: {
  58720. height: math.unit(5.25, "feet"),
  58721. name: "Tail",
  58722. image: {
  58723. source: "./media/characters/tarken/tail.svg"
  58724. }
  58725. },
  58726. dick: {
  58727. height: math.unit(1.95, "feet"),
  58728. name: "Dick",
  58729. image: {
  58730. source: "./media/characters/tarken/dick.svg"
  58731. }
  58732. },
  58733. hand: {
  58734. height: math.unit(1.78, "feet"),
  58735. name: "Hand",
  58736. image: {
  58737. source: "./media/characters/tarken/hand.svg"
  58738. }
  58739. },
  58740. beam: {
  58741. height: math.unit(1.5, "feet"),
  58742. name: "Beam",
  58743. image: {
  58744. source: "./media/characters/tarken/beam.svg"
  58745. }
  58746. },
  58747. },
  58748. [
  58749. {
  58750. name: "Original Size",
  58751. height: math.unit(2.5, "meters")
  58752. },
  58753. {
  58754. name: "Macro",
  58755. height: math.unit(150, "meters"),
  58756. default: true
  58757. },
  58758. {
  58759. name: "Macro+",
  58760. height: math.unit(300, "meters")
  58761. },
  58762. {
  58763. name: "Mega",
  58764. height: math.unit(2, "km")
  58765. },
  58766. {
  58767. name: "Mega+",
  58768. height: math.unit(35, "km")
  58769. },
  58770.  {
  58771. name: "Mega++",
  58772. height: math.unit(60, "km")
  58773. },
  58774. {
  58775. name: "Giga",
  58776. height: math.unit(200, "km")
  58777. },
  58778. {
  58779. name: "Giga+",
  58780. height: math.unit(2500, "km")
  58781. },
  58782. {
  58783. name: "Giga++",
  58784. height: math.unit(6600, "km")
  58785. },
  58786. {
  58787. name: "Terra",
  58788. height: math.unit(20000, "km")
  58789. },
  58790. {
  58791. name: "Terra+",
  58792. height: math.unit(300000, "km")
  58793. },
  58794. ]
  58795. ))
  58796. characterMakers.push(() => makeCharacter(
  58797. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58798. {
  58799. magpie_dressed: {
  58800. height: math.unit(1.7, "meters"),
  58801. weight: math.unit(70, "kg"),
  58802. name: "Dressed",
  58803. image: {
  58804. source: "./media/characters/otreus/magpie-dressed.svg",
  58805. extra: 691/672,
  58806. bottom: 116/807
  58807. },
  58808. form: "magpie",
  58809. default: true
  58810. },
  58811. magpie_nude: {
  58812. height: math.unit(1.7, "meters"),
  58813. weight: math.unit(70, "kg"),
  58814. name: "Nude",
  58815. image: {
  58816. source: "./media/characters/otreus/magpie-nude.svg",
  58817. extra: 691/672,
  58818. bottom: 116/807
  58819. },
  58820. form: "magpie",
  58821. },
  58822. magpie_dressedLewd: {
  58823. height: math.unit(1.7, "meters"),
  58824. weight: math.unit(70, "kg"),
  58825. name: "Dressed (Lewd)",
  58826. image: {
  58827. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58828. extra: 691/672,
  58829. bottom: 116/807
  58830. },
  58831. form: "magpie",
  58832. },
  58833. magpie_nudeLewd: {
  58834. height: math.unit(1.7, "meters"),
  58835. weight: math.unit(70, "kg"),
  58836. name: "Nude (Lewd)",
  58837. image: {
  58838. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58839. extra: 691/672,
  58840. bottom: 116/807
  58841. },
  58842. form: "magpie",
  58843. },
  58844. magpie_leftFoot: {
  58845. height: math.unit(1.58, "feet"),
  58846. name: "Left Foot",
  58847. image: {
  58848. source: "./media/characters/otreus/magpie-left-foot.svg"
  58849. },
  58850. form: "magpie",
  58851. },
  58852. magpie_rightFoot: {
  58853. height: math.unit(1.58, "feet"),
  58854. name: "Right Foot",
  58855. image: {
  58856. source: "./media/characters/otreus/magpie-right-foot.svg"
  58857. },
  58858. form: "magpie",
  58859. },
  58860. magpie_wingspan: {
  58861. height: math.unit(2, "meters"),
  58862. weight: math.unit(70, "kg"),
  58863. name: "Wingspan",
  58864. image: {
  58865. source: "./media/characters/otreus/magpie-wingspan.svg"
  58866. },
  58867. extraAttributes: {
  58868. "wingspan": {
  58869. name: "Wingspan",
  58870. power: 1,
  58871. type: "length",
  58872. base: math.unit(3.35, "meters")
  58873. },
  58874. },
  58875. form: "magpie",
  58876. },
  58877. hippogriff_dressed: {
  58878. height: math.unit(1.7, "meters"),
  58879. weight: math.unit(70, "kg"),
  58880. name: "Dressed",
  58881. image: {
  58882. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58883. extra: 710/689,
  58884. bottom: 67/777
  58885. },
  58886. form: "hippogriff",
  58887. default: true
  58888. },
  58889. hippogriff_nude: {
  58890. height: math.unit(1.7, "meters"),
  58891. weight: math.unit(70, "kg"),
  58892. name: "Nude",
  58893. image: {
  58894. source: "./media/characters/otreus/hippogriff-nude.svg",
  58895. extra: 710/689,
  58896. bottom: 67/777
  58897. },
  58898. form: "hippogriff",
  58899. },
  58900. hippogriff_dressedLewd: {
  58901. height: math.unit(1.7, "meters"),
  58902. weight: math.unit(70, "kg"),
  58903. name: "Dressed (Lewd)",
  58904. image: {
  58905. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58906. extra: 710/689,
  58907. bottom: 67/777
  58908. },
  58909. form: "hippogriff",
  58910. },
  58911. hippogriff_nudeLewd: {
  58912. height: math.unit(1.7, "meters"),
  58913. weight: math.unit(70, "kg"),
  58914. name: "Nude (Lewd)",
  58915. image: {
  58916. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58917. extra: 710/689,
  58918. bottom: 67/777
  58919. },
  58920. form: "hippogriff",
  58921. },
  58922. },
  58923. [
  58924. {
  58925. name: "Original Size",
  58926. height: math.unit(1.7, "meters"),
  58927. allForms: true
  58928. },
  58929. {
  58930. name: "Incognito Size",
  58931. height: math.unit(2, "meters"),
  58932. allForms: true
  58933. },
  58934. {
  58935. name: "Mega",
  58936. height: math.unit(2, "km"),
  58937. allForms: true
  58938. },
  58939. {
  58940. name: "Mega+",
  58941. height: math.unit(40, "km"),
  58942. allForms: true
  58943. },
  58944. {
  58945. name: "Giga",
  58946. height: math.unit(250, "km"),
  58947. allForms: true
  58948. },
  58949. {
  58950. name: "Giga+",
  58951. height: math.unit(3000, "km"),
  58952. allForms: true
  58953. },
  58954. {
  58955. name: "Terra",
  58956. height: math.unit(20000, "km"),
  58957. allForms: true
  58958. },
  58959. {
  58960. name: "Solar (Home Size)",
  58961. height: math.unit(3e6, "km"),
  58962. allForms: true,
  58963. default: true
  58964. },
  58965. ],
  58966. {
  58967. "magpie": {
  58968. name: "Magpie",
  58969. default: true
  58970. },
  58971. "hippogriff": {
  58972. name: "Hippogriff",
  58973. },
  58974. }
  58975. ))
  58976. characterMakers.push(() => makeCharacter(
  58977. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58978. {
  58979. frontDressed: {
  58980. height: math.unit(1.8, "meters"),
  58981. weight: math.unit(90, "kg"),
  58982. name: "Front (Dressed)",
  58983. image: {
  58984. source: "./media/characters/thalia/front-dressed.svg",
  58985. extra: 478/402,
  58986. bottom: 55/533
  58987. }
  58988. },
  58989. backDressed: {
  58990. height: math.unit(1.8, "meters"),
  58991. weight: math.unit(90, "kg"),
  58992. name: "Back (Dressed)",
  58993. image: {
  58994. source: "./media/characters/thalia/back-dressed.svg",
  58995. extra: 500/424,
  58996. bottom: 15/515
  58997. }
  58998. },
  58999. frontNude: {
  59000. height: math.unit(1.8, "meters"),
  59001. weight: math.unit(90, "kg"),
  59002. name: "Front (Nude)",
  59003. image: {
  59004. source: "./media/characters/thalia/front-nude.svg",
  59005. extra: 478/402,
  59006. bottom: 55/533
  59007. }
  59008. },
  59009. backNude: {
  59010. height: math.unit(1.8, "meters"),
  59011. weight: math.unit(90, "kg"),
  59012. name: "Back (Nude)",
  59013. image: {
  59014. source: "./media/characters/thalia/back-nude.svg",
  59015. extra: 500/424,
  59016. bottom: 15/515
  59017. }
  59018. },
  59019. },
  59020. [
  59021. {
  59022. name: "Incognito",
  59023. height: math.unit(3, "meters")
  59024. },
  59025. {
  59026. name: "Macro",
  59027. height: math.unit(500, "meters")
  59028. },
  59029. {
  59030. name: "Mega",
  59031. height: math.unit(5, "km")
  59032. },
  59033. {
  59034. name: "Mega+",
  59035. height: math.unit(30, "km")
  59036. },
  59037. {
  59038. name: "Giga",
  59039. height: math.unit(350, "km")
  59040. },
  59041. {
  59042. name: "Giga+",
  59043. height: math.unit(4000, "km")
  59044. },
  59045. {
  59046. name: "Terra",
  59047. height: math.unit(35000, "km")
  59048. },
  59049. {
  59050. name: "Original Size",
  59051. height: math.unit(130000, "km")
  59052. },
  59053. {
  59054. name: "Solar (Home Size)",
  59055. height: math.unit(4e6, "km"),
  59056. default: true
  59057. },
  59058. ]
  59059. ))
  59060. characterMakers.push(() => makeCharacter(
  59061. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59062. {
  59063. front: {
  59064. height: math.unit(1.8, "meters"),
  59065. weight: math.unit(95, "kg"),
  59066. name: "Front",
  59067. image: {
  59068. source: "./media/characters/shango/front.svg",
  59069. extra: 1925/1774,
  59070. bottom: 67/1992
  59071. }
  59072. },
  59073. back: {
  59074. height: math.unit(1.8, "meters"),
  59075. weight: math.unit(95, "kg"),
  59076. name: "Back",
  59077. image: {
  59078. source: "./media/characters/shango/back.svg",
  59079. extra: 1915/1766,
  59080. bottom: 52/1967
  59081. }
  59082. },
  59083. frontLewd: {
  59084. height: math.unit(1.8, "meters"),
  59085. weight: math.unit(95, "kg"),
  59086. name: "Front (Lewd)",
  59087. image: {
  59088. source: "./media/characters/shango/front-lewd.svg",
  59089. extra: 1925/1774,
  59090. bottom: 67/1992
  59091. }
  59092. },
  59093. backLewd: {
  59094. height: math.unit(1.8, "meters"),
  59095. weight: math.unit(95, "kg"),
  59096. name: "Back (Lewd)",
  59097. image: {
  59098. source: "./media/characters/shango/back-lewd.svg",
  59099. extra: 1915/1766,
  59100. bottom: 52/1967
  59101. }
  59102. },
  59103. maw: {
  59104. height: math.unit(1.64, "feet"),
  59105. name: "Maw",
  59106. image: {
  59107. source: "./media/characters/shango/maw.svg"
  59108. }
  59109. },
  59110. dick: {
  59111. height: math.unit(2.14, "feet"),
  59112. name: "Dick",
  59113. image: {
  59114. source: "./media/characters/shango/dick.svg"
  59115. }
  59116. },
  59117. },
  59118. [
  59119. {
  59120. name: "Incognito",
  59121. height: math.unit(1.8, "meters")
  59122. },
  59123. {
  59124. name: "Home Size",
  59125. height: math.unit(60, "meters"),
  59126. default: true
  59127. },
  59128. {
  59129. name: "Macro",
  59130. height: math.unit(450, "meters")
  59131. },
  59132. {
  59133. name: "Mega",
  59134. height: math.unit(6, "km")
  59135. },
  59136. {
  59137. name: "Mega+",
  59138. height: math.unit(35, "km")
  59139. },
  59140. {
  59141. name: "Giga",
  59142. height: math.unit(500, "km")
  59143. },
  59144. {
  59145. name: "Giga+",
  59146. height: math.unit(5000, "km")
  59147. },
  59148. {
  59149. name: "Terra",
  59150. height: math.unit(60000, "km")
  59151. },
  59152. {
  59153. name: "Terra+",
  59154. height: math.unit(400000, "km")
  59155. },
  59156. ]
  59157. ))
  59158. characterMakers.push(() => makeCharacter(
  59159. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59160. {
  59161. front: {
  59162. height: math.unit(2, "meters"),
  59163. weight: math.unit(95, "kg"),
  59164. name: "Front",
  59165. image: {
  59166. source: "./media/characters/osiris-gryphon/front.svg",
  59167. extra: 1508/1313,
  59168. bottom: 87/1595
  59169. }
  59170. },
  59171. back: {
  59172. height: math.unit(2, "meters"),
  59173. weight: math.unit(95, "kg"),
  59174. name: "Back",
  59175. image: {
  59176. source: "./media/characters/osiris-gryphon/back.svg",
  59177. extra: 1436/1309,
  59178. bottom: 64/1500
  59179. }
  59180. },
  59181. frontLewd: {
  59182. height: math.unit(2, "meters"),
  59183. weight: math.unit(95, "kg"),
  59184. name: "Front-lewd",
  59185. image: {
  59186. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59187. extra: 1508/1313,
  59188. bottom: 87/1595
  59189. }
  59190. },
  59191. wing: {
  59192. height: math.unit(6.3333, "feet"),
  59193. name: "Wing",
  59194. image: {
  59195. source: "./media/characters/osiris-gryphon/wing.svg"
  59196. }
  59197. },
  59198. },
  59199. [
  59200. {
  59201. name: "Incognito",
  59202. height: math.unit(2, "meters")
  59203. },
  59204. {
  59205. name: "Home Size",
  59206. height: math.unit(30, "meters"),
  59207. default: true
  59208. },
  59209. {
  59210. name: "Macro",
  59211. height: math.unit(100, "meters")
  59212. },
  59213. {
  59214. name: "Macro+",
  59215. height: math.unit(350, "meters")
  59216. },
  59217. {
  59218. name: "Mega",
  59219. height: math.unit(40, "km")
  59220. },
  59221. {
  59222. name: "Giga",
  59223. height: math.unit(300, "km")
  59224. },
  59225. {
  59226. name: "Giga+",
  59227. height: math.unit(2000, "km")
  59228. },
  59229. {
  59230. name: "Terra",
  59231. height: math.unit(30000, "km")
  59232. },
  59233. ]
  59234. ))
  59235. characterMakers.push(() => makeCharacter(
  59236. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59237. {
  59238. front: {
  59239. height: math.unit(2.5, "meters"),
  59240. weight: math.unit(200, "kg"),
  59241. name: "Front",
  59242. image: {
  59243. source: "./media/characters/atlas-dragon/front.svg",
  59244. extra: 745/462,
  59245. bottom: 36/781
  59246. }
  59247. },
  59248. back: {
  59249. height: math.unit(2.5, "meters"),
  59250. weight: math.unit(200, "kg"),
  59251. name: "Back",
  59252. image: {
  59253. source: "./media/characters/atlas-dragon/back.svg",
  59254. extra: 848/822,
  59255. bottom: 57/905
  59256. }
  59257. },
  59258. frontLewd: {
  59259. height: math.unit(2.5, "meters"),
  59260. weight: math.unit(200, "kg"),
  59261. name: "Front (Lewd)",
  59262. image: {
  59263. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59264. extra: 745/462,
  59265. bottom: 36/781
  59266. }
  59267. },
  59268. backLewd: {
  59269. height: math.unit(2.5, "meters"),
  59270. weight: math.unit(200, "kg"),
  59271. name: "Back (Lewd)",
  59272. image: {
  59273. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59274. extra: 848/822,
  59275. bottom: 57/905
  59276. }
  59277. },
  59278. },
  59279. [
  59280. {
  59281. name: "Incognito",
  59282. height: math.unit(2.5, "meters")
  59283. },
  59284. {
  59285. name: "Small Macro",
  59286. height: math.unit(50, "meters")
  59287. },
  59288. {
  59289. name: "Macro",
  59290. height: math.unit(350, "meters")
  59291. },
  59292. {
  59293. name: "Mega",
  59294. height: math.unit(5.5, "kilometers")
  59295. },
  59296. {
  59297. name: "Mega+",
  59298. height: math.unit(50, "km")
  59299. },
  59300. {
  59301. name: "Giga",
  59302. height: math.unit(350, "km")
  59303. },
  59304. {
  59305. name: "Giga+",
  59306. height: math.unit(2000, "km")
  59307. },
  59308. {
  59309. name: "Giga++",
  59310. height: math.unit(6500, "km")
  59311. },
  59312. {
  59313. name: "Terra",
  59314. height: math.unit(30000, "km")
  59315. },
  59316. {
  59317. name: "Terra+",
  59318. height: math.unit(250000, "km")
  59319. },
  59320. {
  59321. name: "True Size",
  59322. height: math.unit(100, "multiverses"),
  59323. default: true
  59324. },
  59325. ]
  59326. ))
  59327. characterMakers.push(() => makeCharacter(
  59328. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59329. {
  59330. front: {
  59331. height: math.unit(1.8, "m"),
  59332. weight: math.unit(120, "kg"),
  59333. name: "Front",
  59334. image: {
  59335. source: "./media/characters/chey/front.svg",
  59336. extra: 1359/1270,
  59337. bottom: 18/1377
  59338. }
  59339. },
  59340. arm: {
  59341. height: math.unit(2.05, "feet"),
  59342. name: "Arm",
  59343. image: {
  59344. source: "./media/characters/chey/arm.svg"
  59345. }
  59346. },
  59347. head: {
  59348. height: math.unit(1.89, "feet"),
  59349. name: "Head",
  59350. image: {
  59351. source: "./media/characters/chey/head.svg"
  59352. }
  59353. },
  59354. },
  59355. [
  59356. {
  59357. name: "Original Size",
  59358. height: math.unit(5, "cm")
  59359. },
  59360. {
  59361. name: "Incognito Size",
  59362. height: math.unit(2.4, "m")
  59363. },
  59364. {
  59365. name: "Home Size",
  59366. height: math.unit(200, "meters"),
  59367. default: true
  59368. },
  59369. {
  59370. name: "Mega",
  59371. height: math.unit(2, "km")
  59372. },
  59373. {
  59374. name: "Giga (Preferred Size)",
  59375. height: math.unit(2000, "km")
  59376. },
  59377. {
  59378. name: "Giga+",
  59379. height: math.unit(6000, "km")
  59380. },
  59381. {
  59382. name: "Terra",
  59383. height: math.unit(17000, "km")
  59384. },
  59385. {
  59386. name: "Terra+",
  59387. height: math.unit(75000, "km")
  59388. },
  59389. {
  59390. name: "Terra++",
  59391. height: math.unit(225000, "km")
  59392. },
  59393. ]
  59394. ))
  59395. characterMakers.push(() => makeCharacter(
  59396. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59397. {
  59398. side: {
  59399. height: math.unit(7.8, "meters"),
  59400. name: "Side",
  59401. image: {
  59402. source: "./media/characters/ragnarok/side.svg",
  59403. extra: 725/621,
  59404. bottom: 72/797
  59405. }
  59406. },
  59407. },
  59408. [
  59409. {
  59410. name: "Normal",
  59411. height: math.unit(7.8, "meters"),
  59412. default: true
  59413. },
  59414. ]
  59415. ))
  59416. characterMakers.push(() => makeCharacter(
  59417. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59418. {
  59419. hyena_front: {
  59420. height: math.unit(2.1, "meters"),
  59421. weight: math.unit(110, "kg"),
  59422. name: "Front",
  59423. image: {
  59424. source: "./media/characters/nima/hyena-front.svg",
  59425. extra: 1904/1796,
  59426. bottom: 67/1971
  59427. },
  59428. form: "hyena",
  59429. },
  59430. hyena_back: {
  59431. height: math.unit(2.1, "meters"),
  59432. weight: math.unit(110, "kg"),
  59433. name: "Back",
  59434. image: {
  59435. source: "./media/characters/nima/hyena-back.svg",
  59436. extra: 1964/1884,
  59437. bottom: 35/1999
  59438. },
  59439. form: "hyena",
  59440. },
  59441. shark_front: {
  59442. height: math.unit(1.95, "meters"),
  59443. weight: math.unit(110, "kg"),
  59444. name: "Front",
  59445. image: {
  59446. source: "./media/characters/nima/shark-front.svg",
  59447. extra: 2238/2013,
  59448. bottom: 0/223
  59449. },
  59450. form: "shark",
  59451. },
  59452. paw: {
  59453. height: math.unit(1, "feet"),
  59454. name: "Paw",
  59455. image: {
  59456. source: "./media/characters/nima/paw.svg"
  59457. }
  59458. },
  59459. circlet: {
  59460. height: math.unit(0.3, "feet"),
  59461. name: "Circlet",
  59462. image: {
  59463. source: "./media/characters/nima/circlet.svg"
  59464. }
  59465. },
  59466. necklace: {
  59467. height: math.unit(1.2, "feet"),
  59468. name: "Necklace",
  59469. image: {
  59470. source: "./media/characters/nima/necklace.svg"
  59471. }
  59472. },
  59473. bracelet: {
  59474. height: math.unit(0.51, "feet"),
  59475. name: "Bracelet",
  59476. image: {
  59477. source: "./media/characters/nima/bracelet.svg"
  59478. }
  59479. },
  59480. armband: {
  59481. height: math.unit(1.3, "feet"),
  59482. name: "Armband",
  59483. image: {
  59484. source: "./media/characters/nima/armband.svg"
  59485. }
  59486. },
  59487. },
  59488. [
  59489. {
  59490. name: "Incognito",
  59491. height: math.unit(2.1, "meters"),
  59492. allForms: true
  59493. },
  59494. {
  59495. name: "Small Macro",
  59496. height: math.unit(50, "meters"),
  59497. allForms: true
  59498. },
  59499. {
  59500. name: "Macro",
  59501. height: math.unit(200, "meters"),
  59502. allForms: true
  59503. },
  59504. {
  59505. name: "Mega",
  59506. height: math.unit(2.5, "km"),
  59507. allForms: true
  59508. },
  59509. {
  59510. name: "Mega+",
  59511. height: math.unit(30, "km"),
  59512. allForms: true
  59513. },
  59514. {
  59515. name: "Giga (Home Size)",
  59516. height: math.unit(400, "km"),
  59517. allForms: true,
  59518. default: true
  59519. },
  59520. {
  59521. name: "Giga+",
  59522. height: math.unit(2500, "km"),
  59523. allForms: true
  59524. },
  59525. {
  59526. name: "Giga++",
  59527. height: math.unit(8000, "km"),
  59528. allForms: true
  59529. },
  59530. {
  59531. name: "Terra",
  59532. height: math.unit(20000, "km"),
  59533. allForms: true
  59534. },
  59535. {
  59536. name: "Terra+",
  59537. height: math.unit(70000, "km"),
  59538. allForms: true
  59539. },
  59540. {
  59541. name: "Terra++",
  59542. height: math.unit(600000, "km"),
  59543. allForms: true
  59544. },
  59545. {
  59546. name: "Galactic",
  59547. height: math.unit(40, "galaxies"),
  59548. allForms: true
  59549. },
  59550. {
  59551. name: "Universal",
  59552. height: math.unit(40, "universes"),
  59553. allForms: true
  59554. },
  59555. ],
  59556. {
  59557. "hyena": {
  59558. name: "Hyena",
  59559. default: true
  59560. },
  59561. "shark": {
  59562. name: "Shark",
  59563. },
  59564. }
  59565. ))
  59566. characterMakers.push(() => makeCharacter(
  59567. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59568. {
  59569. anthro_front: {
  59570. height: math.unit(1.5, "meters"),
  59571. name: "Front",
  59572. image: {
  59573. source: "./media/characters/adelaide/anthro-front.svg",
  59574. extra: 860/783,
  59575. bottom: 60/920
  59576. },
  59577. form: "anthro",
  59578. default: true
  59579. },
  59580. hand: {
  59581. height: math.unit(0.65, "feet"),
  59582. name: "Hand",
  59583. image: {
  59584. source: "./media/characters/adelaide/hand.svg"
  59585. },
  59586. form: "anthro"
  59587. },
  59588. foot: {
  59589. height: math.unit(1.38 * 259 / 314, "feet"),
  59590. name: "Foot",
  59591. image: {
  59592. source: "./media/characters/adelaide/foot.svg",
  59593. extra: 259/259,
  59594. bottom: 55/314
  59595. },
  59596. form: "anthro"
  59597. },
  59598. feather: {
  59599. height: math.unit(0.85, "feet"),
  59600. name: "Feather",
  59601. image: {
  59602. source: "./media/characters/adelaide/feather.svg"
  59603. },
  59604. form: "anthro"
  59605. },
  59606. feral_side: {
  59607. height: math.unit(1, "meters"),
  59608. name: "Side",
  59609. image: {
  59610. source: "./media/characters/adelaide/feral-side.svg",
  59611. extra: 550/467,
  59612. bottom: 37/587
  59613. },
  59614. form: "feral",
  59615. default: true
  59616. },
  59617. feral_hand: {
  59618. height: math.unit(0.58, "feet"),
  59619. name: "Hand",
  59620. image: {
  59621. source: "./media/characters/adelaide/hand.svg"
  59622. },
  59623. form: "feral"
  59624. },
  59625. feral_foot: {
  59626. height: math.unit(1.2 * 259 / 314, "feet"),
  59627. name: "Foot",
  59628. image: {
  59629. source: "./media/characters/adelaide/foot.svg",
  59630. extra: 259/259,
  59631. bottom: 55/314
  59632. },
  59633. form: "feral"
  59634. },
  59635. feral_feather: {
  59636. height: math.unit(0.63, "feet"),
  59637. name: "Feather",
  59638. image: {
  59639. source: "./media/characters/adelaide/feather.svg"
  59640. },
  59641. form: "feral"
  59642. },
  59643. },
  59644. [
  59645. {
  59646. name: "Normal",
  59647. height: math.unit(1.5, "meters"),
  59648. form: "anthro",
  59649. default: true
  59650. },
  59651. {
  59652. name: "Normal",
  59653. height: math.unit(1, "meters"),
  59654. form: "feral",
  59655. default: true
  59656. },
  59657. ],
  59658. {
  59659. "anthro": {
  59660. name: "Anthro",
  59661. default: true
  59662. },
  59663. "feral": {
  59664. name: "Feral",
  59665. },
  59666. }
  59667. ))
  59668. characterMakers.push(() => makeCharacter(
  59669. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59670. {
  59671. front: {
  59672. height: math.unit(2.5, "meters"),
  59673. name: "Front",
  59674. image: {
  59675. source: "./media/characters/goa/front.svg",
  59676. extra: 1109/1013,
  59677. bottom: 150/1259
  59678. }
  59679. },
  59680. },
  59681. [
  59682. {
  59683. name: "Normal",
  59684. height: math.unit(2.5, "meters"),
  59685. default: true
  59686. },
  59687. ]
  59688. ))
  59689. characterMakers.push(() => makeCharacter(
  59690. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59691. {
  59692. front: {
  59693. height: math.unit(2, "meters"),
  59694. weight: math.unit(100, "kg"),
  59695. name: "Front",
  59696. image: {
  59697. source: "./media/characters/kiki-weavile/front.svg",
  59698. extra: 357/332,
  59699. bottom: 60/417
  59700. }
  59701. },
  59702. },
  59703. [
  59704. {
  59705. name: "Normal",
  59706. height: math.unit(2, "meters"),
  59707. default: true
  59708. },
  59709. ]
  59710. ))
  59711. characterMakers.push(() => makeCharacter(
  59712. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59713. {
  59714. side: {
  59715. height: math.unit(1.6, "meters"),
  59716. name: "Side",
  59717. image: {
  59718. source: "./media/characters/liza/side.svg",
  59719. extra: 943/915,
  59720. bottom: 72/1015
  59721. }
  59722. },
  59723. },
  59724. [
  59725. {
  59726. name: "Normal",
  59727. height: math.unit(1.6, "meters"),
  59728. default: true
  59729. },
  59730. ]
  59731. ))
  59732. characterMakers.push(() => makeCharacter(
  59733. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59734. {
  59735. side: {
  59736. height: math.unit(2.5, "meters"),
  59737. preyCapacity: math.unit(1, "people"),
  59738. name: "Side",
  59739. image: {
  59740. source: "./media/characters/persephone-sweetbreath/side.svg",
  59741. extra: 796/700,
  59742. bottom: 44/840
  59743. }
  59744. },
  59745. sideVore: {
  59746. height: math.unit(2.5, "meters"),
  59747. preyCapacity: math.unit(1, "people"),
  59748. name: "Side (Full)",
  59749. image: {
  59750. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59751. extra: 796/700,
  59752. bottom: 44/840
  59753. }
  59754. },
  59755. },
  59756. [
  59757. {
  59758. name: "Normal",
  59759. height: math.unit(2.5, "meters"),
  59760. default: true
  59761. },
  59762. ]
  59763. ))
  59764. characterMakers.push(() => makeCharacter(
  59765. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59766. {
  59767. front: {
  59768. height: math.unit(32, "meters"),
  59769. name: "Front",
  59770. image: {
  59771. source: "./media/characters/pierce/front.svg",
  59772. extra: 1695/1475,
  59773. bottom: 185/1880
  59774. }
  59775. },
  59776. side: {
  59777. height: math.unit(32, "meters"),
  59778. name: "Side",
  59779. image: {
  59780. source: "./media/characters/pierce/side.svg",
  59781. extra: 974/859,
  59782. bottom: 43/1017
  59783. }
  59784. },
  59785. frontWingless: {
  59786. height: math.unit(32, "meters"),
  59787. name: "Front (Wingless)",
  59788. image: {
  59789. source: "./media/characters/pierce/front-wingless.svg",
  59790. extra: 1695/1475,
  59791. bottom: 185/1880
  59792. }
  59793. },
  59794. sideWingless: {
  59795. height: math.unit(32, "meters"),
  59796. name: "Side (Wingless)",
  59797. image: {
  59798. source: "./media/characters/pierce/side-wingless.svg",
  59799. extra: 974/859,
  59800. bottom: 43/1017
  59801. }
  59802. },
  59803. maw: {
  59804. height: math.unit(19.3, "meters"),
  59805. name: "Maw",
  59806. image: {
  59807. source: "./media/characters/pierce/maw.svg"
  59808. }
  59809. },
  59810. },
  59811. [
  59812. {
  59813. name: "Small",
  59814. height: math.unit(8.5, "meters")
  59815. },
  59816. {
  59817. name: "Normal",
  59818. height: math.unit(32, "meters"),
  59819. default: true
  59820. },
  59821. ]
  59822. ))
  59823. characterMakers.push(() => makeCharacter(
  59824. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59825. {
  59826. front: {
  59827. height: math.unit(2.3, "meters"),
  59828. weight: math.unit(165, "kg"),
  59829. name: "Front",
  59830. image: {
  59831. source: "./media/characters/shira/front.svg",
  59832. extra: 924/919,
  59833. bottom: 17/941
  59834. },
  59835. form: "cobra",
  59836. default: true
  59837. },
  59838. back: {
  59839. height: math.unit(2.3, "meters"),
  59840. weight: math.unit(165, "kg"),
  59841. name: "Back",
  59842. image: {
  59843. source: "./media/characters/shira/back.svg",
  59844. extra: 928/922,
  59845. bottom: 18/946
  59846. },
  59847. form: "cobra"
  59848. },
  59849. frontLewd: {
  59850. height: math.unit(2.3, "meters"),
  59851. weight: math.unit(165, "kg"),
  59852. name: "Front (Lewd)",
  59853. image: {
  59854. source: "./media/characters/shira/front-lewd.svg",
  59855. extra: 924/919,
  59856. bottom: 17/941
  59857. },
  59858. form: "cobra"
  59859. },
  59860. backLewd: {
  59861. height: math.unit(2.3, "meters"),
  59862. weight: math.unit(165, "kg"),
  59863. name: "Back (Lewd)",
  59864. image: {
  59865. source: "./media/characters/shira/back-lewd.svg",
  59866. extra: 928/922,
  59867. bottom: 18/946
  59868. },
  59869. form: "cobra"
  59870. },
  59871. maw: {
  59872. height: math.unit(1.14, "feet"),
  59873. name: "Maw",
  59874. image: {
  59875. source: "./media/characters/shira/maw.svg"
  59876. },
  59877. form: "cobra"
  59878. },
  59879. magma_front: {
  59880. height: math.unit(2.3, "meters"),
  59881. weight: math.unit(165, "kg"),
  59882. name: "Front",
  59883. image: {
  59884. source: "./media/characters/shira/magma-front.svg",
  59885. extra: 1870/1693,
  59886. bottom: 24/1894
  59887. },
  59888. form: "magma",
  59889. },
  59890. magma_back: {
  59891. height: math.unit(2.3, "meters"),
  59892. weight: math.unit(165, "kg"),
  59893. name: "Back",
  59894. image: {
  59895. source: "./media/characters/shira/magma-back.svg",
  59896. extra: 1918/1756,
  59897. bottom: 46/1964
  59898. },
  59899. form: "magma",
  59900. },
  59901. },
  59902. [
  59903. {
  59904. name: "Incognito",
  59905. height: math.unit(2.3, "meters"),
  59906. allForms: true
  59907. },
  59908. {
  59909. name: "Home Size",
  59910. height: math.unit(150, "meters"),
  59911. default: true,
  59912. allForms: true
  59913. },
  59914. {
  59915. name: "Macro",
  59916. height: math.unit(2, "km"),
  59917. allForms: true
  59918. },
  59919. {
  59920. name: "Mega",
  59921. height: math.unit(30, "km"),
  59922. allForms: true
  59923. },
  59924. {
  59925. name: "Giga",
  59926. height: math.unit(450, "km"),
  59927. allForms: true
  59928. },
  59929. {
  59930. name: "Giga+",
  59931. height: math.unit(3000, "km"),
  59932. allForms: true
  59933. },
  59934. {
  59935. name: "Giga++",
  59936. height: math.unit(6000, "km"),
  59937. allForms: true
  59938. },
  59939. {
  59940. name: "Terra",
  59941. height: math.unit(80000, "km"),
  59942. allForms: true
  59943. },
  59944. {
  59945. name: "Terra+",
  59946. height: math.unit(350000, "km"),
  59947. allForms: true
  59948. },
  59949. {
  59950. name: "Solar",
  59951. height: math.unit(1e6, "km"),
  59952. allForms: true
  59953. },
  59954. ],
  59955. {
  59956. "cobra": {
  59957. name: "Cobra",
  59958. default: true
  59959. },
  59960. "magma": {
  59961. name: "Magma Dragon",
  59962. },
  59963. }
  59964. ))
  59965. characterMakers.push(() => makeCharacter(
  59966. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59967. {
  59968. front: {
  59969. height: math.unit(2, "meters"),
  59970. weight: math.unit(160, "kg"),
  59971. name: "Front",
  59972. image: {
  59973. source: "./media/characters/daxerios/front.svg",
  59974. extra: 1334/1277,
  59975. bottom: 45/1379
  59976. }
  59977. },
  59978. frontLewd: {
  59979. height: math.unit(2, "meters"),
  59980. weight: math.unit(160, "kg"),
  59981. name: "Front (Lewd)",
  59982. image: {
  59983. source: "./media/characters/daxerios/front-lewd.svg",
  59984. extra: 1334/1277,
  59985. bottom: 45/1379
  59986. }
  59987. },
  59988. dick: {
  59989. height: math.unit(2.35, "feet"),
  59990. name: "Dick",
  59991. image: {
  59992. source: "./media/characters/daxerios/dick.svg"
  59993. }
  59994. },
  59995. },
  59996. [
  59997. {
  59998. name: "\"Small\"",
  59999. height: math.unit(5, "meters")
  60000. },
  60001. {
  60002. name: "Original Size",
  60003. height: math.unit(500, "meters"),
  60004. default: true
  60005. },
  60006. {
  60007. name: "Mega",
  60008. height: math.unit(2, "km")
  60009. },
  60010. {
  60011. name: "Mega+",
  60012. height: math.unit(35, "km")
  60013. },
  60014. {
  60015. name: "Giga",
  60016. height: math.unit(250, "km")
  60017. },
  60018. {
  60019. name: "Giga+",
  60020. height: math.unit(3000, "km")
  60021. },
  60022. {
  60023. name: "Terra",
  60024. height: math.unit(25000, "km")
  60025. },
  60026. {
  60027. name: "Terra+",
  60028. height: math.unit(300000, "km")
  60029. },
  60030. {
  60031. name: "Solar",
  60032. height: math.unit(1e6, "km")
  60033. },
  60034. ]
  60035. ))
  60036. characterMakers.push(() => makeCharacter(
  60037. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60038. {
  60039. front: {
  60040. height: math.unit(8 + 4/12, "feet"),
  60041. weight: math.unit(464, "lb"),
  60042. name: "Front",
  60043. image: {
  60044. source: "./media/characters/caveat/front.svg",
  60045. extra: 1861/1678,
  60046. bottom: 40/1901
  60047. }
  60048. },
  60049. },
  60050. [
  60051. {
  60052. name: "Normal",
  60053. height: math.unit(8 + 4/12, "feet"),
  60054. default: true
  60055. },
  60056. ]
  60057. ))
  60058. characterMakers.push(() => makeCharacter(
  60059. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60060. {
  60061. front: {
  60062. height: math.unit(12, "feet"),
  60063. weight: math.unit(1800, "lb"),
  60064. name: "Front",
  60065. image: {
  60066. source: "./media/characters/centbair/front.svg",
  60067. extra: 781/663,
  60068. bottom: 25/806
  60069. }
  60070. },
  60071. frontNsfw: {
  60072. height: math.unit(12, "feet"),
  60073. weight: math.unit(1800, "lb"),
  60074. name: "Front (NSFW)",
  60075. image: {
  60076. source: "./media/characters/centbair/front-nsfw.svg",
  60077. extra: 781/663,
  60078. bottom: 25/806
  60079. }
  60080. },
  60081. back: {
  60082. height: math.unit(12, "feet"),
  60083. weight: math.unit(1800, "lb"),
  60084. name: "Back",
  60085. image: {
  60086. source: "./media/characters/centbair/back.svg",
  60087. extra: 808/761,
  60088. bottom: 19/827
  60089. }
  60090. },
  60091. dick: {
  60092. height: math.unit(6.5, "feet"),
  60093. name: "Dick",
  60094. image: {
  60095. source: "./media/characters/centbair/dick.svg"
  60096. }
  60097. },
  60098. slit: {
  60099. height: math.unit(3.25, "feet"),
  60100. name: "Slit",
  60101. image: {
  60102. source: "./media/characters/centbair/slit.svg"
  60103. }
  60104. },
  60105. },
  60106. [
  60107. {
  60108. name: "Normal",
  60109. height: math.unit(12, "feet"),
  60110. default: true
  60111. },
  60112. ]
  60113. ))
  60114. characterMakers.push(() => makeCharacter(
  60115. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60116. {
  60117. front: {
  60118. height: math.unit(5 + 7/12, "feet"),
  60119. name: "Front",
  60120. image: {
  60121. source: "./media/characters/andy/front.svg",
  60122. extra: 634/588,
  60123. bottom: 36/670
  60124. },
  60125. extraAttributes: {
  60126. "pawLength": {
  60127. name: "Paw Length",
  60128. power: 1,
  60129. type: "length",
  60130. base: math.unit(1, "feet")
  60131. },
  60132. }
  60133. },
  60134. side: {
  60135. height: math.unit(5 + 7/12, "feet"),
  60136. name: "Side",
  60137. image: {
  60138. source: "./media/characters/andy/side.svg",
  60139. extra: 641/596,
  60140. bottom: 34/675
  60141. },
  60142. extraAttributes: {
  60143. "pawLength": {
  60144. name: "Paw Length",
  60145. power: 1,
  60146. type: "length",
  60147. base: math.unit(1, "feet")
  60148. },
  60149. }
  60150. },
  60151. back: {
  60152. height: math.unit(5 + 7/12, "feet"),
  60153. name: "Back",
  60154. image: {
  60155. source: "./media/characters/andy/back.svg",
  60156. extra: 618/583,
  60157. bottom: 39/657
  60158. },
  60159. extraAttributes: {
  60160. "pawLength": {
  60161. name: "Paw Length",
  60162. power: 1,
  60163. type: "length",
  60164. base: math.unit(1, "feet")
  60165. },
  60166. }
  60167. },
  60168. paw: {
  60169. height: math.unit(1.13, "feet"),
  60170. name: "Paw",
  60171. image: {
  60172. source: "./media/characters/andy/paw.svg"
  60173. }
  60174. },
  60175. },
  60176. [
  60177. {
  60178. name: "Micro",
  60179. height: math.unit(4, "inches")
  60180. },
  60181. {
  60182. name: "Normal",
  60183. height: math.unit(5 + 7/12, "feet"),
  60184. default: true
  60185. },
  60186. {
  60187. name: "Macro",
  60188. height: math.unit(390.42, "feet")
  60189. },
  60190. ]
  60191. ))
  60192. characterMakers.push(() => makeCharacter(
  60193. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60194. {
  60195. front: {
  60196. height: math.unit(7, "feet"),
  60197. weight: math.unit(250, "lb"),
  60198. name: "Front",
  60199. image: {
  60200. source: "./media/characters/vix-titan/front.svg",
  60201. extra: 460/428,
  60202. bottom: 15/475
  60203. },
  60204. extraAttributes: {
  60205. "pawWidth": {
  60206. name: "Paw Width",
  60207. power: 1,
  60208. type: "length",
  60209. base: math.unit(0.75, "feet")
  60210. },
  60211. }
  60212. },
  60213. },
  60214. [
  60215. {
  60216. name: "Normal",
  60217. height: math.unit(7, "feet"),
  60218. default: true
  60219. },
  60220. {
  60221. name: "Giant",
  60222. height: math.unit(1500, "feet")
  60223. },
  60224. {
  60225. name: "Mega",
  60226. height: math.unit(10, "miles")
  60227. },
  60228. {
  60229. name: "Giga",
  60230. height: math.unit(150, "miles")
  60231. },
  60232. {
  60233. name: "Tera",
  60234. height: math.unit(144000, "miles")
  60235. },
  60236. ]
  60237. ))
  60238. characterMakers.push(() => makeCharacter(
  60239. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60240. {
  60241. front: {
  60242. height: math.unit(6 + 2/12, "feet"),
  60243. name: "Front",
  60244. image: {
  60245. source: "./media/characters/reiku/front.svg",
  60246. extra: 1910/1757,
  60247. bottom: 103/2013
  60248. },
  60249. extraAttributes: {
  60250. "thighThickness": {
  60251. name: "Thigh Thickness",
  60252. power: 1,
  60253. type: "length",
  60254. base: math.unit(1.12, "feet")
  60255. },
  60256. "assThickness": {
  60257. name: "Ass Thickness",
  60258. power: 1,
  60259. type: "length",
  60260. base: math.unit(1.12*2, "feet")
  60261. },
  60262. }
  60263. },
  60264. side: {
  60265. height: math.unit(6 + 2/12, "feet"),
  60266. name: "Side",
  60267. image: {
  60268. source: "./media/characters/reiku/side.svg",
  60269. extra: 1846/1748,
  60270. bottom: 99/1945
  60271. },
  60272. extraAttributes: {
  60273. "thighThickness": {
  60274. name: "Thigh Thickness",
  60275. power: 1,
  60276. type: "length",
  60277. base: math.unit(1.12, "feet")
  60278. },
  60279. "assThickness": {
  60280. name: "Ass Thickness",
  60281. power: 1,
  60282. type: "length",
  60283. base: math.unit(1.12*2, "feet")
  60284. },
  60285. }
  60286. },
  60287. back: {
  60288. height: math.unit(6 + 2/12, "feet"),
  60289. name: "Back",
  60290. image: {
  60291. source: "./media/characters/reiku/back.svg",
  60292. extra: 1941/1786,
  60293. bottom: 34/1975
  60294. },
  60295. extraAttributes: {
  60296. "thighThickness": {
  60297. name: "Thigh Thickness",
  60298. power: 1,
  60299. type: "length",
  60300. base: math.unit(1.12, "feet")
  60301. },
  60302. "assThickness": {
  60303. name: "Ass Thickness",
  60304. power: 1,
  60305. type: "length",
  60306. base: math.unit(1.12*2, "feet")
  60307. },
  60308. }
  60309. },
  60310. head: {
  60311. height: math.unit(1.8, "feet"),
  60312. name: "Head",
  60313. image: {
  60314. source: "./media/characters/reiku/head.svg"
  60315. }
  60316. },
  60317. tailTop: {
  60318. height: math.unit(8.4, "feet"),
  60319. name: "Tail (Top)",
  60320. image: {
  60321. source: "./media/characters/reiku/tail-top.svg"
  60322. }
  60323. },
  60324. tailBottom: {
  60325. height: math.unit(8.4, "feet"),
  60326. name: "Tail (Bottom)",
  60327. image: {
  60328. source: "./media/characters/reiku/tail-bottom.svg"
  60329. }
  60330. },
  60331. foot: {
  60332. height: math.unit(2.6, "feet"),
  60333. name: "Foot",
  60334. image: {
  60335. source: "./media/characters/reiku/foot.svg"
  60336. }
  60337. },
  60338. footCurled: {
  60339. height: math.unit(2.3, "feet"),
  60340. name: "Foot (Curled)",
  60341. image: {
  60342. source: "./media/characters/reiku/foot-curled.svg"
  60343. }
  60344. },
  60345. footSide: {
  60346. height: math.unit(1.26, "feet"),
  60347. name: "Foot (Side)",
  60348. image: {
  60349. source: "./media/characters/reiku/foot-side.svg"
  60350. }
  60351. },
  60352. },
  60353. [
  60354. {
  60355. name: "Normal",
  60356. height: math.unit(6 + 2/12, "feet"),
  60357. default: true
  60358. },
  60359. ]
  60360. ))
  60361. characterMakers.push(() => makeCharacter(
  60362. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60363. {
  60364. front: {
  60365. height: math.unit(7, "feet"),
  60366. weight: math.unit(500, "kg"),
  60367. name: "Front",
  60368. image: {
  60369. source: "./media/characters/cialda/front.svg",
  60370. extra: 912/745,
  60371. bottom: 55/967
  60372. }
  60373. },
  60374. },
  60375. [
  60376. {
  60377. name: "Normal",
  60378. height: math.unit(7, "feet"),
  60379. default: true
  60380. },
  60381. ]
  60382. ))
  60383. characterMakers.push(() => makeCharacter(
  60384. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60385. {
  60386. side: {
  60387. height: math.unit(6, "feet"),
  60388. weight: math.unit(600, "lb"),
  60389. preyCapacity: math.unit(25, "liters"),
  60390. name: "Side",
  60391. image: {
  60392. source: "./media/characters/darkkin/side.svg",
  60393. extra: 1597/1447,
  60394. bottom: 101/1698
  60395. }
  60396. },
  60397. },
  60398. [
  60399. {
  60400. name: "Canon Height",
  60401. height: math.unit(568, "feet"),
  60402. default: true
  60403. },
  60404. ]
  60405. ))
  60406. characterMakers.push(() => makeCharacter(
  60407. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60408. {
  60409. front: {
  60410. height: math.unit(6, "feet"),
  60411. weight: math.unit(1500, "lb"),
  60412. preyCapacity: math.unit(3, "people"),
  60413. name: "Front",
  60414. image: {
  60415. source: "./media/characters/livnia/front.svg",
  60416. extra: 934/932,
  60417. bottom: 83/1017
  60418. }
  60419. },
  60420. back: {
  60421. height: math.unit(6, "feet"),
  60422. weight: math.unit(1500, "lb"),
  60423. preyCapacity: math.unit(3, "people"),
  60424. name: "Back",
  60425. image: {
  60426. source: "./media/characters/livnia/back.svg",
  60427. extra: 916/915,
  60428. bottom: 58/974
  60429. }
  60430. },
  60431. head: {
  60432. height: math.unit(1.53, "feet"),
  60433. name: "Head",
  60434. image: {
  60435. source: "./media/characters/livnia/head.svg"
  60436. }
  60437. },
  60438. maw: {
  60439. height: math.unit(0.78, "feet"),
  60440. name: "Maw",
  60441. image: {
  60442. source: "./media/characters/livnia/maw.svg"
  60443. }
  60444. },
  60445. genitals: {
  60446. height: math.unit(0.35, "feet"),
  60447. name: "Genitals",
  60448. image: {
  60449. source: "./media/characters/livnia/genitals.svg"
  60450. }
  60451. },
  60452. },
  60453. [
  60454. {
  60455. name: "Normal",
  60456. height: math.unit(1000, "feet"),
  60457. default: true
  60458. },
  60459. ]
  60460. ))
  60461. characterMakers.push(() => makeCharacter(
  60462. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60463. {
  60464. front: {
  60465. height: math.unit(4, "feet"),
  60466. weight: math.unit(73, "lb"),
  60467. name: "Front",
  60468. image: {
  60469. source: "./media/characters/hayaku/front.svg",
  60470. extra: 1011/888,
  60471. bottom: 33/1044
  60472. }
  60473. },
  60474. back: {
  60475. height: math.unit(4, "feet"),
  60476. weight: math.unit(73, "lb"),
  60477. name: "Back",
  60478. image: {
  60479. source: "./media/characters/hayaku/back.svg",
  60480. extra: 1040/930,
  60481. bottom: 20/1060
  60482. }
  60483. },
  60484. },
  60485. [
  60486. {
  60487. name: "Normal",
  60488. height: math.unit(4, "feet"),
  60489. default: true
  60490. },
  60491. ]
  60492. ))
  60493. characterMakers.push(() => makeCharacter(
  60494. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60495. {
  60496. front: {
  60497. height: math.unit(6 + 7/12, "feet"),
  60498. weight: math.unit(300, "lb"),
  60499. name: "Front",
  60500. image: {
  60501. source: "./media/characters/athena-bryzant/front.svg",
  60502. extra: 870/835,
  60503. bottom: 33/903
  60504. }
  60505. },
  60506. back: {
  60507. height: math.unit(6 + 7/12, "feet"),
  60508. weight: math.unit(300, "lb"),
  60509. name: "Back",
  60510. image: {
  60511. source: "./media/characters/athena-bryzant/back.svg",
  60512. extra: 858/823,
  60513. bottom: 30/888
  60514. }
  60515. },
  60516. head: {
  60517. height: math.unit(2.38, "feet"),
  60518. name: "Head",
  60519. image: {
  60520. source: "./media/characters/athena-bryzant/head.svg"
  60521. }
  60522. },
  60523. wings: {
  60524. height: math.unit(2.85, "feet"),
  60525. name: "Wings",
  60526. image: {
  60527. source: "./media/characters/athena-bryzant/wings.svg"
  60528. }
  60529. },
  60530. },
  60531. [
  60532. {
  60533. name: "Normal",
  60534. height: math.unit(6 + 7/12, "feet"),
  60535. default: true
  60536. },
  60537. {
  60538. name: "Big",
  60539. height: math.unit(8, "feet")
  60540. },
  60541. {
  60542. name: "Very Big",
  60543. height: math.unit(11, "feet")
  60544. },
  60545. ]
  60546. ))
  60547. characterMakers.push(() => makeCharacter(
  60548. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60549. {
  60550. side: {
  60551. height: math.unit(3, "meters"),
  60552. weight: math.unit(7500, "kg"),
  60553. preyCapacity: math.unit(1e12, "people"),
  60554. name: "Side",
  60555. image: {
  60556. source: "./media/characters/zel-kesh/side.svg",
  60557. extra: 910/407,
  60558. bottom: 147/1057
  60559. }
  60560. },
  60561. },
  60562. [
  60563. {
  60564. name: "Normal",
  60565. height: math.unit(3, "meters"),
  60566. default: true
  60567. },
  60568. ]
  60569. ))
  60570. characterMakers.push(() => makeCharacter(
  60571. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60572. {
  60573. front: {
  60574. height: math.unit(2, "meters"),
  60575. weight: math.unit(95, "kg"),
  60576. name: "Front",
  60577. image: {
  60578. source: "./media/characters/kane-fox/front.svg",
  60579. extra: 945/888,
  60580. bottom: 27/972
  60581. }
  60582. },
  60583. back: {
  60584. height: math.unit(2, "meters"),
  60585. weight: math.unit(95, "kg"),
  60586. name: "Back",
  60587. image: {
  60588. source: "./media/characters/kane-fox/back.svg",
  60589. extra: 959/914,
  60590. bottom: 15/974
  60591. }
  60592. },
  60593. frontLewd: {
  60594. height: math.unit(2, "meters"),
  60595. weight: math.unit(95, "kg"),
  60596. name: "Front (Lewd)",
  60597. image: {
  60598. source: "./media/characters/kane-fox/front-lewd.svg",
  60599. extra: 945/888,
  60600. bottom: 27/972
  60601. }
  60602. },
  60603. },
  60604. [
  60605. {
  60606. name: "Home Size",
  60607. height: math.unit(2, "meters"),
  60608. default: true
  60609. },
  60610. {
  60611. name: "Macro",
  60612. height: math.unit(200, "meters")
  60613. },
  60614. {
  60615. name: "Small Mega",
  60616. height: math.unit(3, "km")
  60617. },
  60618. {
  60619. name: "Mega",
  60620. height: math.unit(50, "km")
  60621. },
  60622. {
  60623. name: "Giga",
  60624. height: math.unit(200, "km")
  60625. },
  60626. {
  60627. name: "Giga+",
  60628. height: math.unit(2500, "km")
  60629. },
  60630. {
  60631. name: "Terra",
  60632. height: math.unit(70000, "km")
  60633. },
  60634. {
  60635. name: "Terra+",
  60636. height: math.unit(150000, "km")
  60637. },
  60638. {
  60639. name: "Terra++",
  60640. height: math.unit(400000, "km")
  60641. },
  60642. ]
  60643. ))
  60644. characterMakers.push(() => makeCharacter(
  60645. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60646. {
  60647. otter_front: {
  60648. height: math.unit(1.8, "meters"),
  60649. weight: math.unit(90, "kg"),
  60650. name: "Front",
  60651. image: {
  60652. source: "./media/characters/ayranus/otter-front.svg",
  60653. extra: 468/452,
  60654. bottom: 43/511
  60655. },
  60656. form: "otter",
  60657. },
  60658. otter_frontLewd: {
  60659. height: math.unit(1.8, "meters"),
  60660. weight: math.unit(90, "kg"),
  60661. name: "Front (Lewd)",
  60662. image: {
  60663. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60664. extra: 468/452,
  60665. bottom: 43/511
  60666. },
  60667. form: "otter",
  60668. },
  60669. lionbat_front: {
  60670. height: math.unit(1.8, "meters"),
  60671. weight: math.unit(90, "kg"),
  60672. name: "Front (Lewd)",
  60673. image: {
  60674. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60675. extra: 797/740,
  60676. bottom: 78/875
  60677. },
  60678. form: "lionbat",
  60679. },
  60680. paw: {
  60681. height: math.unit(1.5, "feet"),
  60682. name: "Paw",
  60683. image: {
  60684. source: "./media/characters/ayranus/paw.svg"
  60685. },
  60686. },
  60687. },
  60688. [
  60689. {
  60690. name: "Incognito",
  60691. height: math.unit(1.8, "meters"),
  60692. allForms: true
  60693. },
  60694. {
  60695. name: "Macro",
  60696. height: math.unit(60, "meters"),
  60697. allForms: true
  60698. },
  60699. {
  60700. name: "Macro+",
  60701. height: math.unit(200, "meters"),
  60702. allForms: true
  60703. },
  60704. {
  60705. name: "Mega",
  60706. height: math.unit(35, "km"),
  60707. allForms: true
  60708. },
  60709. {
  60710. name: "Giga",
  60711. height: math.unit(220, "km"),
  60712. allForms: true
  60713. },
  60714. {
  60715. name: "Giga+",
  60716. height: math.unit(1500, "km"),
  60717. allForms: true
  60718. },
  60719. {
  60720. name: "Terra",
  60721. height: math.unit(13000, "km"),
  60722. allForms: true
  60723. },
  60724. {
  60725. name: "Terra+",
  60726. height: math.unit(500000, "km"),
  60727. allForms: true
  60728. },
  60729. {
  60730. name: "Galactic",
  60731. height: math.unit(486080, "parsecs"),
  60732. default: true,
  60733. allForms: true
  60734. },
  60735. ],
  60736. {
  60737. "otter": {
  60738. name: "Otter",
  60739. default: true
  60740. },
  60741. "lionbat": {
  60742. name: "Lionbat",
  60743. },
  60744. }
  60745. ))
  60746. characterMakers.push(() => makeCharacter(
  60747. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60748. {
  60749. front: {
  60750. height: math.unit(7 + 4/12, "feet"),
  60751. weight: math.unit(400, "lb"),
  60752. name: "Front",
  60753. image: {
  60754. source: "./media/characters/proxy/front.svg",
  60755. extra: 1605/1542,
  60756. bottom: 55/1660
  60757. }
  60758. },
  60759. side: {
  60760. height: math.unit(7 + 4/12, "feet"),
  60761. weight: math.unit(400, "lb"),
  60762. name: "Side",
  60763. image: {
  60764. source: "./media/characters/proxy/side.svg",
  60765. extra: 794/759,
  60766. bottom: 6/800
  60767. }
  60768. },
  60769. hand: {
  60770. height: math.unit(1.54, "feet"),
  60771. name: "Hand",
  60772. image: {
  60773. source: "./media/characters/proxy/hand.svg"
  60774. }
  60775. },
  60776. paw: {
  60777. height: math.unit(1.53, "feet"),
  60778. name: "Paw",
  60779. image: {
  60780. source: "./media/characters/proxy/paw.svg"
  60781. }
  60782. },
  60783. maw: {
  60784. height: math.unit(1.9, "feet"),
  60785. name: "Maw",
  60786. image: {
  60787. source: "./media/characters/proxy/maw.svg"
  60788. }
  60789. },
  60790. },
  60791. [
  60792. {
  60793. name: "Normal",
  60794. height: math.unit(7 + 4/12, "feet"),
  60795. default: true
  60796. },
  60797. ]
  60798. ))
  60799. characterMakers.push(() => makeCharacter(
  60800. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60801. {
  60802. front: {
  60803. height: math.unit(4, "meters"),
  60804. name: "Front",
  60805. image: {
  60806. source: "./media/characters/crocozilla/front.svg",
  60807. extra: 1790/1742,
  60808. bottom: 78/1868
  60809. }
  60810. },
  60811. },
  60812. [
  60813. {
  60814. name: "Normal",
  60815. height: math.unit(4, "meters"),
  60816. default: true
  60817. },
  60818. ]
  60819. ))
  60820. characterMakers.push(() => makeCharacter(
  60821. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60822. {
  60823. front: {
  60824. height: math.unit(1.8, "meters"),
  60825. weight: math.unit(120, "kg"),
  60826. name: "Front",
  60827. image: {
  60828. source: "./media/characters/kurz/front.svg",
  60829. extra: 1960/1824,
  60830. bottom: 41/2001
  60831. }
  60832. },
  60833. back: {
  60834. height: math.unit(1.8, "meters"),
  60835. weight: math.unit(120, "kg"),
  60836. name: "Back",
  60837. image: {
  60838. source: "./media/characters/kurz/back.svg",
  60839. extra: 1906/1787,
  60840. bottom: 60/1966
  60841. }
  60842. },
  60843. frontLewd: {
  60844. height: math.unit(1.8, "meters"),
  60845. weight: math.unit(120, "kg"),
  60846. name: "Front (Lewd)",
  60847. image: {
  60848. source: "./media/characters/kurz/front-lewd.svg",
  60849. extra: 1960/1824,
  60850. bottom: 41/2001
  60851. }
  60852. },
  60853. maw: {
  60854. height: math.unit(0.69, "meters"),
  60855. name: "Maw",
  60856. image: {
  60857. source: "./media/characters/kurz/maw.svg"
  60858. }
  60859. },
  60860. },
  60861. [
  60862. {
  60863. name: "Original Size",
  60864. height: math.unit(1.8, "meters")
  60865. },
  60866. {
  60867. name: "Incognito Size",
  60868. height: math.unit(2.4, "meters"),
  60869. default: true
  60870. },
  60871. {
  60872. name: "Macro",
  60873. height: math.unit(30, "meters")
  60874. },
  60875. {
  60876. name: "Macro+",
  60877. height: math.unit(250, "meters")
  60878. },
  60879. {
  60880. name: "Mega",
  60881. height: math.unit(2, "km")
  60882. },
  60883. {
  60884. name: "Mega+",
  60885. height: math.unit(35, "km")
  60886. },
  60887. {
  60888. name: "Mega++",
  60889. height: math.unit(75, "km")
  60890. },
  60891. {
  60892. name: "Giga",
  60893. height: math.unit(250, "km")
  60894. },
  60895. {
  60896. name: "Terra",
  60897. height: math.unit(15000, "km")
  60898. },
  60899. {
  60900. name: "Terra+",
  60901. height: math.unit(2250000, "km")
  60902. },
  60903. ]
  60904. ))
  60905. characterMakers.push(() => makeCharacter(
  60906. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60907. {
  60908. front: {
  60909. height: math.unit(16 + 3/12, "feet"),
  60910. weight: math.unit(3575, "lb"),
  60911. name: "Front",
  60912. image: {
  60913. source: "./media/characters/nikita/front.svg",
  60914. extra: 1064/955,
  60915. bottom: 47/1111
  60916. }
  60917. },
  60918. },
  60919. [
  60920. {
  60921. name: "Normal",
  60922. height: math.unit(16 + 3/12, "feet"),
  60923. default: true
  60924. },
  60925. {
  60926. name: "Big",
  60927. height: math.unit(21, "feet")
  60928. },
  60929. {
  60930. name: "Biggest",
  60931. height: math.unit(50, "feet")
  60932. },
  60933. ]
  60934. ))
  60935. characterMakers.push(() => makeCharacter(
  60936. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60937. {
  60938. front: {
  60939. height: math.unit(1.92, "m"),
  60940. weight: math.unit(76, "kg"),
  60941. name: "Front",
  60942. image: {
  60943. source: "./media/characters/kyara/front.svg",
  60944. extra: 1550/1438,
  60945. bottom: 139/1689
  60946. }
  60947. },
  60948. back: {
  60949. height: math.unit(1.92, "m"),
  60950. weight: math.unit(76, "kg"),
  60951. name: "Back",
  60952. image: {
  60953. source: "./media/characters/kyara/back.svg",
  60954. extra: 1523/1427,
  60955. bottom: 83/1606
  60956. }
  60957. },
  60958. head: {
  60959. height: math.unit(1.22, "feet"),
  60960. name: "Head",
  60961. image: {
  60962. source: "./media/characters/kyara/head.svg"
  60963. }
  60964. },
  60965. maw: {
  60966. height: math.unit(0.73, "feet"),
  60967. name: "Maw",
  60968. image: {
  60969. source: "./media/characters/kyara/maw.svg"
  60970. }
  60971. },
  60972. paws: {
  60973. height: math.unit(0.95, "feet"),
  60974. name: "Paws",
  60975. image: {
  60976. source: "./media/characters/kyara/paws.svg"
  60977. }
  60978. },
  60979. },
  60980. [
  60981. {
  60982. name: "Normal",
  60983. height: math.unit(1.92, "meters"),
  60984. default: true
  60985. },
  60986. {
  60987. name: "Mini Macro",
  60988. height: math.unit(192, "meters")
  60989. },
  60990. {
  60991. name: "Macro",
  60992. height: math.unit(480, "meters")
  60993. },
  60994. {
  60995. name: "Mega Macro",
  60996. height: math.unit(1440, "meters")
  60997. },
  60998. ]
  60999. ))
  61000. characterMakers.push(() => makeCharacter(
  61001. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61002. {
  61003. front: {
  61004. height: math.unit(6, "feet"),
  61005. weight: math.unit(160, "lbs"),
  61006. preyCapacity: math.unit(0.05, "people"),
  61007. name: "Front",
  61008. image: {
  61009. source: "./media/characters/layla-amari/front.svg",
  61010. extra: 1922/1723,
  61011. bottom: 90/2012
  61012. }
  61013. },
  61014. back: {
  61015. height: math.unit(6, "feet"),
  61016. weight: math.unit(160, "lbs"),
  61017. preyCapacity: math.unit(0.05, "people"),
  61018. name: "Back",
  61019. image: {
  61020. source: "./media/characters/layla-amari/back.svg",
  61021. extra: 1917/1718,
  61022. bottom: 50/1967
  61023. }
  61024. },
  61025. frontDressed: {
  61026. height: math.unit(6, "feet"),
  61027. weight: math.unit(160, "lbs"),
  61028. preyCapacity: math.unit(0.05, "people"),
  61029. name: "Front (Dressed)",
  61030. image: {
  61031. source: "./media/characters/layla-amari/front-dressed.svg",
  61032. extra: 1922/1723,
  61033. bottom: 90/2012
  61034. }
  61035. },
  61036. face: {
  61037. height: math.unit(0.93, "feet"),
  61038. name: "Face",
  61039. image: {
  61040. source: "./media/characters/layla-amari/face.svg"
  61041. }
  61042. },
  61043. hand: {
  61044. height: math.unit(0.66 , "feet"),
  61045. name: "Hand",
  61046. image: {
  61047. source: "./media/characters/layla-amari/hand.svg"
  61048. }
  61049. },
  61050. foot: {
  61051. height: math.unit(1, "feet"),
  61052. name: "Foot",
  61053. image: {
  61054. source: "./media/characters/layla-amari/foot.svg"
  61055. }
  61056. },
  61057. necklace: {
  61058. height: math.unit(0.32, "feet"),
  61059. name: "Necklace",
  61060. image: {
  61061. source: "./media/characters/layla-amari/necklace.svg"
  61062. }
  61063. },
  61064. nipple: {
  61065. height: math.unit(0.2, "feet"),
  61066. name: "Nipple",
  61067. image: {
  61068. source: "./media/characters/layla-amari/nipple.svg"
  61069. }
  61070. },
  61071. slit: {
  61072. height: math.unit(0.26, "feet"),
  61073. name: "Slit",
  61074. image: {
  61075. source: "./media/characters/layla-amari/slit.svg"
  61076. }
  61077. },
  61078. },
  61079. [
  61080. {
  61081. name: "Natural",
  61082. height: math.unit(825, "feet"),
  61083. default: true
  61084. },
  61085. {
  61086. name: "Enhanced",
  61087. height: math.unit(8250, "feet")
  61088. },
  61089. {
  61090. name: "Apparent Size",
  61091. height: math.unit(9.04363e+8, "meters")
  61092. },
  61093. ]
  61094. ))
  61095. characterMakers.push(() => makeCharacter(
  61096. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61097. {
  61098. front: {
  61099. height: math.unit(1.3, "meters"),
  61100. name: "Front",
  61101. image: {
  61102. source: "./media/characters/percy/front.svg",
  61103. extra: 1444/1289,
  61104. bottom: 54/1498
  61105. }
  61106. },
  61107. },
  61108. [
  61109. {
  61110. name: "Normal",
  61111. height: math.unit(1.3, "meters"),
  61112. default: true
  61113. },
  61114. ]
  61115. ))
  61116. characterMakers.push(() => makeCharacter(
  61117. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61118. {
  61119. side: {
  61120. height: math.unit(10, "meters"),
  61121. name: "Side",
  61122. image: {
  61123. source: "./media/characters/grev/side.svg",
  61124. extra: 653/266,
  61125. bottom: 77/730
  61126. }
  61127. },
  61128. head: {
  61129. height: math.unit(16.2, "m"),
  61130. name: "Head",
  61131. image: {
  61132. source: "./media/characters/grev/head.svg"
  61133. }
  61134. },
  61135. dick: {
  61136. height: math.unit(2.8135932034, "m"),
  61137. name: "Dick",
  61138. image: {
  61139. source: "./media/characters/grev/dick.svg"
  61140. }
  61141. },
  61142. },
  61143. [
  61144. {
  61145. name: "Friend-Sized",
  61146. height: math.unit(80, "cm")
  61147. },
  61148. {
  61149. name: "Normal",
  61150. height: math.unit(10, "meters"),
  61151. default: true
  61152. },
  61153. {
  61154. name: "Macro",
  61155. height: math.unit(200, "meters")
  61156. },
  61157. ]
  61158. ))
  61159. characterMakers.push(() => makeCharacter(
  61160. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61161. {
  61162. front: {
  61163. height: math.unit(19.75, "feet"),
  61164. weight: math.unit(20000, "lb"),
  61165. name: "Front",
  61166. image: {
  61167. source: "./media/characters/azuuca/front.svg",
  61168. extra: 1593/1511,
  61169. bottom: 55/1648
  61170. }
  61171. },
  61172. },
  61173. [
  61174. {
  61175. name: "Normal",
  61176. height: math.unit(19.75, "feet"),
  61177. default: true
  61178. },
  61179. ]
  61180. ))
  61181. characterMakers.push(() => makeCharacter(
  61182. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61183. {
  61184. front: {
  61185. height: math.unit(15, "feet"),
  61186. weight: math.unit(1500, "lb"),
  61187. name: "Front",
  61188. image: {
  61189. source: "./media/characters/valuria/front.svg",
  61190. extra: 1588/1486,
  61191. bottom: 31/1619
  61192. }
  61193. },
  61194. },
  61195. [
  61196. {
  61197. name: "Normal",
  61198. height: math.unit(15, "feet"),
  61199. default: true
  61200. },
  61201. {
  61202. name: "Small",
  61203. height: math.unit(500, "feet")
  61204. },
  61205. {
  61206. name: "Macro",
  61207. height: math.unit(4000, "feet")
  61208. },
  61209. {
  61210. name: "Mega Macro",
  61211. height: math.unit(2000, "miles")
  61212. },
  61213. {
  61214. name: "Giga Macro",
  61215. height: math.unit(3e6, "miles")
  61216. },
  61217. ]
  61218. ))
  61219. characterMakers.push(() => makeCharacter(
  61220. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61221. {
  61222. front: {
  61223. height: math.unit(3500, "solarradii"),
  61224. name: "Front",
  61225. image: {
  61226. source: "./media/characters/terigaia/front.svg",
  61227. extra: 1531/1451,
  61228. bottom: 98/1629
  61229. }
  61230. },
  61231. },
  61232. [
  61233. {
  61234. name: "Normal",
  61235. height: math.unit(3500, "solarradii"),
  61236. default: true
  61237. },
  61238. ]
  61239. ))
  61240. characterMakers.push(() => makeCharacter(
  61241. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61242. {
  61243. front: {
  61244. height: math.unit(9.34, "feet"),
  61245. weight: math.unit(600, "lb"),
  61246. name: "Front",
  61247. image: {
  61248. source: "./media/characters/blair-blaziken/front.svg",
  61249. extra: 1557/1462,
  61250. bottom: 55/1612
  61251. }
  61252. },
  61253. },
  61254. [
  61255. {
  61256. name: "Normal",
  61257. height: math.unit(9.34, "feet"),
  61258. default: true
  61259. },
  61260. ]
  61261. ))
  61262. characterMakers.push(() => makeCharacter(
  61263. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61264. {
  61265. pistrogre_front: {
  61266. height: math.unit(10, "feet"),
  61267. weight: math.unit(10, "tons"),
  61268. name: "Front",
  61269. image: {
  61270. source: "./media/characters/braxia/pistrogre-front.svg",
  61271. extra: 1531/1334,
  61272. bottom: 114/1645
  61273. },
  61274. form: "pistrogre",
  61275. default: true
  61276. },
  61277. human_front: {
  61278. height: math.unit(10, "feet"),
  61279. weight: math.unit(10, "tons"),
  61280. name: "Front",
  61281. image: {
  61282. source: "./media/characters/braxia/human-front.svg",
  61283. extra: 1574/1501,
  61284. bottom: 37/1611
  61285. },
  61286. form: "human",
  61287. default: true
  61288. },
  61289. },
  61290. [
  61291. {
  61292. name: "Normal",
  61293. height: math.unit(10, "feet"),
  61294. default: true,
  61295. allForms: true
  61296. },
  61297. {
  61298. name: "Macro",
  61299. height: math.unit(1000, "feet"),
  61300. allForms: true
  61301. },
  61302. {
  61303. name: "Mega Macro",
  61304. height: math.unit(100, "miles"),
  61305. allForms: true
  61306. },
  61307. {
  61308. name: "Cosmic",
  61309. height: math.unit(1000000, "lightyears"),
  61310. allForms: true
  61311. },
  61312. {
  61313. name: "ϐѮԆԬӁꭍϞԢ",
  61314. height: math.unit(1000, "multiverses"),
  61315. allForms: true
  61316. },
  61317. ],
  61318. {
  61319. "pistrogre": {
  61320. name: "Pistrogre",
  61321. default: true
  61322. },
  61323. "human": {
  61324. name: "Human",
  61325. },
  61326. }
  61327. ))
  61328. characterMakers.push(() => makeCharacter(
  61329. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61330. {
  61331. front: {
  61332. height: math.unit(6 + 1/12, "feet"),
  61333. weight: math.unit(280, "lb"),
  61334. name: "Front",
  61335. image: {
  61336. source: "./media/characters/kiriga-yato/front.svg",
  61337. extra: 445/394,
  61338. bottom: 11/456
  61339. }
  61340. },
  61341. },
  61342. [
  61343. {
  61344. name: "Descended",
  61345. height: math.unit(3, "feet")
  61346. },
  61347. {
  61348. name: "Average",
  61349. height: math.unit(6 + 1/12, "feet"),
  61350. default: true
  61351. },
  61352. {
  61353. name: "Ascended",
  61354. height: math.unit(9 + 2/12, "feet")
  61355. },
  61356. ]
  61357. ))
  61358. characterMakers.push(() => makeCharacter(
  61359. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61360. {
  61361. front: {
  61362. height: math.unit(6, "feet"),
  61363. weight: math.unit(150, "lb"),
  61364. name: "Front",
  61365. image: {
  61366. source: "./media/characters/kylie/front.svg",
  61367. extra: 1114/1046,
  61368. bottom: 65/1179
  61369. },
  61370. extraAttributes: {
  61371. "hoofSize": {
  61372. name: "Hoof Size",
  61373. power: 2,
  61374. type: "area",
  61375. base: math.unit(0.034, "m^2")
  61376. },
  61377. "footSize": {
  61378. name: "Foot Size",
  61379. power: 2,
  61380. type: "area",
  61381. base: math.unit(0.75, "m^2")
  61382. },
  61383. }
  61384. },
  61385. side: {
  61386. height: math.unit(6, "feet"),
  61387. weight: math.unit(150, "lb"),
  61388. name: "Side",
  61389. image: {
  61390. source: "./media/characters/kylie/side.svg",
  61391. extra: 1178/1110,
  61392. bottom: 21/1199
  61393. },
  61394. extraAttributes: {
  61395. "hoofSize": {
  61396. name: "Hoof Size",
  61397. power: 2,
  61398. type: "area",
  61399. base: math.unit(0.034, "m^2")
  61400. },
  61401. "footSize": {
  61402. name: "Foot Size",
  61403. power: 2,
  61404. type: "area",
  61405. base: math.unit(0.75, "m^2")
  61406. },
  61407. }
  61408. },
  61409. back: {
  61410. height: math.unit(6, "feet"),
  61411. weight: math.unit(150, "lb"),
  61412. name: "Back",
  61413. image: {
  61414. source: "./media/characters/kylie/back.svg",
  61415. extra: 1115/1047,
  61416. bottom: 66/1181
  61417. },
  61418. extraAttributes: {
  61419. "hoofSize": {
  61420. name: "Hoof Size",
  61421. power: 2,
  61422. type: "area",
  61423. base: math.unit(0.034, "m^2")
  61424. },
  61425. "footSize": {
  61426. name: "Foot Size",
  61427. power: 2,
  61428. type: "area",
  61429. base: math.unit(0.75, "m^2")
  61430. },
  61431. }
  61432. },
  61433. head: {
  61434. height: math.unit(1.85, "feet"),
  61435. name: "Head",
  61436. image: {
  61437. source: "./media/characters/kylie/head.svg"
  61438. }
  61439. },
  61440. },
  61441. [
  61442. {
  61443. name: "Normal",
  61444. height: math.unit(90, "meters"),
  61445. default: true
  61446. },
  61447. ]
  61448. ))
  61449. characterMakers.push(() => makeCharacter(
  61450. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61451. {
  61452. front: {
  61453. height: math.unit(245, "feet"),
  61454. weight: math.unit(400000, "lb"),
  61455. name: "Front",
  61456. image: {
  61457. source: "./media/characters/sabado/front.svg",
  61458. extra: 1309/1164,
  61459. bottom: 29/1338
  61460. }
  61461. },
  61462. },
  61463. [
  61464. {
  61465. name: "Normal",
  61466. height: math.unit(245, "feet"),
  61467. default: true
  61468. },
  61469. ]
  61470. ))
  61471. characterMakers.push(() => makeCharacter(
  61472. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61473. {
  61474. shark_front: {
  61475. height: math.unit(2, "meters"),
  61476. weight: math.unit(200, "kg"),
  61477. name: "Front",
  61478. image: {
  61479. source: "./media/characters/zechal/shark-front.svg",
  61480. extra: 969/925,
  61481. bottom: 74/1043
  61482. },
  61483. form: "shark",
  61484. },
  61485. shark_back: {
  61486. height: math.unit(2, "meters"),
  61487. weight: math.unit(200, "kg"),
  61488. name: "Back",
  61489. image: {
  61490. source: "./media/characters/zechal/shark-back.svg",
  61491. extra: 994/949,
  61492. bottom: 176/1170
  61493. },
  61494. form: "shark",
  61495. },
  61496. shark_frontLewd: {
  61497. height: math.unit(2, "meters"),
  61498. weight: math.unit(200, "kg"),
  61499. name: "Front (Lewd)",
  61500. image: {
  61501. source: "./media/characters/zechal/shark-front-lewd.svg",
  61502. extra: 969/925,
  61503. bottom: 74/1043
  61504. },
  61505. form: "shark",
  61506. },
  61507. shark_side: {
  61508. height: math.unit(1.56, "meters"),
  61509. weight: math.unit(200, "kg"),
  61510. name: "Side",
  61511. image: {
  61512. source: "./media/characters/zechal/shark-side.svg"
  61513. },
  61514. form: "shark",
  61515. },
  61516. dragon_front: {
  61517. height: math.unit(2, "meters"),
  61518. weight: math.unit(200, "kg"),
  61519. name: "Front",
  61520. image: {
  61521. source: "./media/characters/zechal/dragon-front.svg",
  61522. extra: 1041/925,
  61523. bottom: 74/1115
  61524. },
  61525. form: "dragon",
  61526. },
  61527. dragon_back: {
  61528. height: math.unit(2, "meters"),
  61529. weight: math.unit(200, "kg"),
  61530. name: "Back",
  61531. image: {
  61532. source: "./media/characters/zechal/dragon-back.svg",
  61533. extra: 1061/949,
  61534. bottom: 176/1237
  61535. },
  61536. form: "dragon",
  61537. },
  61538. dragon_frontLewd: {
  61539. height: math.unit(2, "meters"),
  61540. weight: math.unit(200, "kg"),
  61541. name: "Front (Lewd)",
  61542. image: {
  61543. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61544. extra: 1041/925,
  61545. bottom: 74/1115
  61546. },
  61547. form: "dragon",
  61548. },
  61549. dragon_side: {
  61550. height: math.unit(1.56, "meters"),
  61551. weight: math.unit(200, "kg"),
  61552. name: "Side",
  61553. image: {
  61554. source: "./media/characters/zechal/dragon-side.svg"
  61555. },
  61556. form: "dragon",
  61557. },
  61558. foot: {
  61559. height: math.unit(0.5, "meters"),
  61560. name: "Foot",
  61561. image: {
  61562. source: "./media/characters/zechal/foot.svg"
  61563. }
  61564. },
  61565. sheathFront: {
  61566. height: math.unit(0.45, "meters"),
  61567. name: "Sheath (Front)",
  61568. image: {
  61569. source: "./media/characters/zechal/sheath-front.svg"
  61570. }
  61571. },
  61572. sheathSide: {
  61573. height: math.unit(0.45, "meters"),
  61574. name: "Sheath (Side)",
  61575. image: {
  61576. source: "./media/characters/zechal/sheath-side.svg"
  61577. }
  61578. },
  61579. },
  61580. [
  61581. {
  61582. name: "Incognito",
  61583. height: math.unit(2, "meters"),
  61584. allForms: true
  61585. },
  61586. {
  61587. name: "Small Rampage",
  61588. height: math.unit(25, "meters"),
  61589. allForms: true
  61590. },
  61591. {
  61592. name: "Home Size",
  61593. height: math.unit(250, "meters"),
  61594. allForms: true,
  61595. default: true
  61596. },
  61597. {
  61598. name: "Macro+",
  61599. height: math.unit(700, "meters"),
  61600. allForms: true
  61601. },
  61602. {
  61603. name: "Small Mega",
  61604. height: math.unit(3, "km"),
  61605. allForms: true
  61606. },
  61607. {
  61608. name: "Mega",
  61609. height: math.unit(15, "km"),
  61610. allForms: true
  61611. },
  61612. {
  61613. name: "Giga",
  61614. height: math.unit(300, "km"),
  61615. allForms: true
  61616. },
  61617. {
  61618. name: "Giga+",
  61619. height: math.unit(1750, "km"),
  61620. allForms: true
  61621. },
  61622. {
  61623. name: "Continental",
  61624. height: math.unit(5000, "km"),
  61625. allForms: true
  61626. },
  61627. {
  61628. name: "Terra",
  61629. height: math.unit(20000, "km"),
  61630. allForms: true
  61631. },
  61632. {
  61633. name: "Terra+",
  61634. height: math.unit(300000, "km"),
  61635. allForms: true
  61636. },
  61637. {
  61638. name: "Solar",
  61639. height: math.unit(40000000, "km"),
  61640. allForms: true
  61641. },
  61642. {
  61643. name: "Galactic",
  61644. height: math.unit(810133, "parsecs"),
  61645. allForms: true
  61646. },
  61647. {
  61648. name: "Universal",
  61649. height: math.unit(25, "universes"),
  61650. allForms: true
  61651. },
  61652. ],
  61653. {
  61654. "shark": {
  61655. name: "Shark",
  61656. default: true
  61657. },
  61658. "dragon": {
  61659. name: "Dragon",
  61660. },
  61661. }
  61662. ))
  61663. characterMakers.push(() => makeCharacter(
  61664. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61665. {
  61666. front: {
  61667. height: math.unit(2.2, "meters"),
  61668. weight: math.unit(150, "kg"),
  61669. name: "Front",
  61670. image: {
  61671. source: "./media/characters/sergis/front.svg",
  61672. extra: 1314/1312,
  61673. bottom: 112/1426
  61674. }
  61675. },
  61676. back: {
  61677. height: math.unit(2.2, "meters"),
  61678. weight: math.unit(150, "kg"),
  61679. name: "Back",
  61680. image: {
  61681. source: "./media/characters/sergis/back.svg",
  61682. extra: 1335/1333,
  61683. bottom: 19/1354
  61684. }
  61685. },
  61686. frontLewd: {
  61687. height: math.unit(2.2, "meters"),
  61688. weight: math.unit(150, "kg"),
  61689. name: "Front (Lewd)",
  61690. image: {
  61691. source: "./media/characters/sergis/front-lewd.svg",
  61692. extra: 1314/1312,
  61693. bottom: 112/1426
  61694. }
  61695. },
  61696. frontDressed: {
  61697. height: math.unit(2.2, "meters"),
  61698. weight: math.unit(150, "kg"),
  61699. name: "Front (Dressed)",
  61700. image: {
  61701. source: "./media/characters/sergis/front-dressed.svg",
  61702. extra: 1330/1328,
  61703. bottom: 95/1425
  61704. }
  61705. },
  61706. frontDressedLewd: {
  61707. height: math.unit(2.2, "meters"),
  61708. weight: math.unit(150, "kg"),
  61709. name: "Front (Dressed, Lewd)",
  61710. image: {
  61711. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61712. extra: 1330/1328,
  61713. bottom: 95/1425
  61714. }
  61715. },
  61716. maw: {
  61717. height: math.unit(0.48, "meters"),
  61718. name: "Maw",
  61719. image: {
  61720. source: "./media/characters/sergis/maw.svg"
  61721. }
  61722. },
  61723. sheath: {
  61724. height: math.unit(0.38, "meters"),
  61725. name: "Sheath",
  61726. image: {
  61727. source: "./media/characters/sergis/sheath.svg"
  61728. }
  61729. },
  61730. },
  61731. [
  61732. {
  61733. name: "Incognito Size",
  61734. height: math.unit(2.2, "meters")
  61735. },
  61736. {
  61737. name: "Small Macro",
  61738. height: math.unit(40, "meters")
  61739. },
  61740. {
  61741. name: "Macro",
  61742. height: math.unit(150, "meters")
  61743. },
  61744. {
  61745. name: "Macro+",
  61746. height: math.unit(300, "meters")
  61747. },
  61748. {
  61749. name: "Mega",
  61750. height: math.unit(2.5, "km")
  61751. },
  61752. {
  61753. name: "Mega+",
  61754. height: math.unit(30, "km")
  61755. },
  61756. {
  61757. name: "Home Size",
  61758. height: math.unit(300, "km"),
  61759. default: true
  61760. },
  61761. {
  61762. name: "Giga+",
  61763. height: math.unit(1000, "km")
  61764. },
  61765. {
  61766. name: "Giga++",
  61767. height: math.unit(6000, "km")
  61768. },
  61769. {
  61770. name: "Terra",
  61771. height: math.unit(70000, "km")
  61772. },
  61773. {
  61774. name: "Terra+",
  61775. height: math.unit(200000, "km")
  61776. },
  61777. {
  61778. name: "Galactic",
  61779. height: math.unit(634200, "lightyears")
  61780. },
  61781. ]
  61782. ))
  61783. characterMakers.push(() => makeCharacter(
  61784. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61785. {
  61786. standard: {
  61787. height: math.unit(1 + 5/12, "feet"),
  61788. name: "Standard",
  61789. image: {
  61790. source: "./media/characters/spade/standard.svg",
  61791. extra: 1794/1703,
  61792. bottom: 115/1909
  61793. }
  61794. },
  61795. disguised: {
  61796. height: math.unit(1 + 5/12, "feet"),
  61797. name: "Disguised",
  61798. image: {
  61799. source: "./media/characters/spade/disguised.svg",
  61800. extra: 1794/1700,
  61801. bottom: 98/1892
  61802. }
  61803. },
  61804. },
  61805. [
  61806. {
  61807. name: "Normal",
  61808. height: math.unit(1 + 5/12, "feet"),
  61809. default: true
  61810. },
  61811. ]
  61812. ))
  61813. characterMakers.push(() => makeCharacter(
  61814. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61815. {
  61816. frontNsfw: {
  61817. height: math.unit(5, "meters"),
  61818. weight: math.unit(2000, "kg"),
  61819. preyCapacity: math.unit(5, "people"),
  61820. name: "Front (NSFW)",
  61821. image: {
  61822. source: "./media/characters/zeanlain/front-nsfw.svg",
  61823. extra: 1087/938,
  61824. bottom: 93/1180
  61825. },
  61826. extraAttributes: {
  61827. "wingspan": {
  61828. name: "Wingspan",
  61829. power: 1,
  61830. type: "length",
  61831. base: math.unit(10, "meters")
  61832. },
  61833. "footSize": {
  61834. name: "Foot Size",
  61835. power: 1,
  61836. type: "length",
  61837. base: math.unit(0.68, "meters")
  61838. },
  61839. "cockLength": {
  61840. name: "Cock Length",
  61841. power: 1,
  61842. type: "length",
  61843. base: math.unit(1.69, "meters")
  61844. },
  61845. "ballVolume": {
  61846. name: "Ball Volume",
  61847. power: 3,
  61848. type: "volume",
  61849. base: math.unit(0.028, "m^3")
  61850. },
  61851. }
  61852. },
  61853. front: {
  61854. height: math.unit(5, "meters"),
  61855. weight: math.unit(2000, "kg"),
  61856. preyCapacity: math.unit(3, "people"),
  61857. name: "Front",
  61858. image: {
  61859. source: "./media/characters/zeanlain/front.svg",
  61860. extra: 1087/938,
  61861. bottom: 93/1180
  61862. },
  61863. extraAttributes: {
  61864. "wingspan": {
  61865. name: "Wingspan",
  61866. power: 1,
  61867. type: "length",
  61868. base: math.unit(10, "meters")
  61869. },
  61870. "footSize": {
  61871. name: "Foot Size",
  61872. power: 1,
  61873. type: "length",
  61874. base: math.unit(0.68, "meters")
  61875. },
  61876. }
  61877. },
  61878. },
  61879. [
  61880. {
  61881. name: "Normal",
  61882. height: math.unit(5, "meters"),
  61883. default: true
  61884. },
  61885. ]
  61886. ))
  61887. characterMakers.push(() => makeCharacter(
  61888. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61889. {
  61890. front: {
  61891. height: math.unit(10, "meters"),
  61892. weight: math.unit(250000, "kg"),
  61893. name: "Front",
  61894. image: {
  61895. source: "./media/characters/airamis/front.svg",
  61896. extra: 865/835,
  61897. bottom: 13/878
  61898. }
  61899. },
  61900. },
  61901. [
  61902. {
  61903. name: "Normal",
  61904. height: math.unit(10, "meters"),
  61905. default: true
  61906. },
  61907. ]
  61908. ))
  61909. characterMakers.push(() => makeCharacter(
  61910. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61911. {
  61912. front: {
  61913. height: math.unit(3 + 3/12, "feet"),
  61914. weight: math.unit(75, "lb"),
  61915. name: "Front",
  61916. image: {
  61917. source: "./media/characters/corra-tourmaline/front.svg",
  61918. extra: 1037/864,
  61919. bottom: 39/1076
  61920. }
  61921. },
  61922. back: {
  61923. height: math.unit(3 + 3/12, "feet"),
  61924. weight: math.unit(75, "lb"),
  61925. name: "Back",
  61926. image: {
  61927. source: "./media/characters/corra-tourmaline/back.svg",
  61928. extra: 1022/849,
  61929. bottom: 26/1048
  61930. }
  61931. },
  61932. dressed: {
  61933. height: math.unit(3 + 3/12, "feet"),
  61934. weight: math.unit(75, "lb"),
  61935. name: "Dressed",
  61936. image: {
  61937. source: "./media/characters/corra-tourmaline/dressed.svg",
  61938. extra: 1037/864,
  61939. bottom: 39/1076
  61940. }
  61941. },
  61942. beans: {
  61943. height: math.unit(0.37, "feet"),
  61944. name: "Beans",
  61945. image: {
  61946. source: "./media/characters/corra-tourmaline/beans.svg"
  61947. }
  61948. },
  61949. },
  61950. [
  61951. {
  61952. name: "Normal",
  61953. height: math.unit(3 + 3/12, "feet"),
  61954. default: true
  61955. },
  61956. {
  61957. name: "Macro",
  61958. height: math.unit(32, "feet")
  61959. },
  61960. ]
  61961. ))
  61962. characterMakers.push(() => makeCharacter(
  61963. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61964. {
  61965. front: {
  61966. height: math.unit(6 + 2/12, "feet"),
  61967. weight: math.unit(203, "lb"),
  61968. name: "Front",
  61969. image: {
  61970. source: "./media/characters/maki-kawa/front.svg",
  61971. extra: 950/890,
  61972. bottom: 62/1012
  61973. }
  61974. },
  61975. back: {
  61976. height: math.unit(6 + 2/12, "feet"),
  61977. weight: math.unit(203, "lb"),
  61978. name: "Back",
  61979. image: {
  61980. source: "./media/characters/maki-kawa/back.svg",
  61981. extra: 953/878,
  61982. bottom: 49/1002
  61983. }
  61984. },
  61985. frontBarista: {
  61986. height: math.unit(6 + 2/12, "feet"),
  61987. weight: math.unit(203, "lb"),
  61988. name: "Front (Barista)",
  61989. image: {
  61990. source: "./media/characters/maki-kawa/front-barista.svg",
  61991. extra: 943/883,
  61992. bottom: 69/1012
  61993. }
  61994. },
  61995. backBarista: {
  61996. height: math.unit(6 + 2/12, "feet"),
  61997. weight: math.unit(203, "lb"),
  61998. name: "Back (Barista)",
  61999. image: {
  62000. source: "./media/characters/maki-kawa/back-barista.svg",
  62001. extra: 953/878,
  62002. bottom: 49/1002
  62003. }
  62004. },
  62005. frontWrestler: {
  62006. height: math.unit(6 + 2/12, "feet"),
  62007. weight: math.unit(203, "lb"),
  62008. name: "Front (Wrestler)",
  62009. image: {
  62010. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62011. extra: 950/890,
  62012. bottom: 62/1012
  62013. }
  62014. },
  62015. backWrestler: {
  62016. height: math.unit(6 + 2/12, "feet"),
  62017. weight: math.unit(203, "lb"),
  62018. name: "Back (Wrestler)",
  62019. image: {
  62020. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62021. extra: 953/878,
  62022. bottom: 49/1002
  62023. }
  62024. },
  62025. headFront: {
  62026. height: math.unit(1.64, "feet"),
  62027. name: "Head (Front)",
  62028. image: {
  62029. source: "./media/characters/maki-kawa/head-front.svg"
  62030. }
  62031. },
  62032. headSide: {
  62033. height: math.unit(1.59, "feet"),
  62034. name: "Head (Side)",
  62035. image: {
  62036. source: "./media/characters/maki-kawa/head-side.svg"
  62037. }
  62038. },
  62039. paw: {
  62040. height: math.unit(0.9, "feet"),
  62041. name: "Paw",
  62042. image: {
  62043. source: "./media/characters/maki-kawa/paw.svg"
  62044. }
  62045. },
  62046. },
  62047. [
  62048. {
  62049. name: "Normal",
  62050. height: math.unit(6 + 2/12, "feet"),
  62051. default: true
  62052. },
  62053. {
  62054. name: "Macro",
  62055. height: math.unit(617, "feet")
  62056. },
  62057. ]
  62058. ))
  62059. characterMakers.push(() => makeCharacter(
  62060. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62061. {
  62062. front: {
  62063. height: math.unit(10, "feet"),
  62064. weight: math.unit(1500, "lb"),
  62065. name: "Front",
  62066. image: {
  62067. source: "./media/characters/lennox/front.svg",
  62068. extra: 1623/1496,
  62069. bottom: 18/1641
  62070. }
  62071. },
  62072. back: {
  62073. height: math.unit(10, "feet"),
  62074. weight: math.unit(1500, "lb"),
  62075. name: "Back",
  62076. image: {
  62077. source: "./media/characters/lennox/back.svg",
  62078. extra: 1641/1481,
  62079. bottom: 13/1654
  62080. }
  62081. },
  62082. maw: {
  62083. height: math.unit(2.94, "feet"),
  62084. name: "Maw",
  62085. image: {
  62086. source: "./media/characters/lennox/maw.svg"
  62087. }
  62088. },
  62089. },
  62090. [
  62091. {
  62092. name: "Micro",
  62093. height: math.unit(1, "inch")
  62094. },
  62095. {
  62096. name: "Normal",
  62097. height: math.unit(10, "feet"),
  62098. default: true
  62099. },
  62100. {
  62101. name: "Macro",
  62102. height: math.unit(200, "feet")
  62103. },
  62104. ]
  62105. ))
  62106. characterMakers.push(() => makeCharacter(
  62107. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62108. {
  62109. frontDressed: {
  62110. height: math.unit(15 + 7/12, "feet"),
  62111. weight: math.unit(5000, "lb"),
  62112. name: "Front (Dressed)",
  62113. image: {
  62114. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62115. extra: 1136/1023,
  62116. bottom: 51/1187
  62117. }
  62118. },
  62119. backDressed: {
  62120. height: math.unit(15 + 7/12, "feet"),
  62121. weight: math.unit(5000, "lb"),
  62122. name: "Back (Dressed)",
  62123. image: {
  62124. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62125. extra: 2359/2143,
  62126. bottom: 103/2462
  62127. }
  62128. },
  62129. front: {
  62130. height: math.unit(15 + 7/12, "feet"),
  62131. weight: math.unit(5000, "lb"),
  62132. name: "Front",
  62133. image: {
  62134. source: "./media/characters/vyse-iron-thunder/front.svg",
  62135. extra: 1136/1023,
  62136. bottom: 51/1187
  62137. }
  62138. },
  62139. hand: {
  62140. height: math.unit(2.36, "feet"),
  62141. name: "Hand",
  62142. image: {
  62143. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62144. }
  62145. },
  62146. foot: {
  62147. height: math.unit(1.72, "feet"),
  62148. name: "Foot",
  62149. image: {
  62150. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62151. }
  62152. },
  62153. mouth: {
  62154. height: math.unit(2, "feet"),
  62155. name: "Mouth",
  62156. image: {
  62157. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62158. }
  62159. },
  62160. eye: {
  62161. height: math.unit(0.58, "feet"),
  62162. name: "Eye",
  62163. image: {
  62164. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62165. }
  62166. },
  62167. },
  62168. [
  62169. {
  62170. name: "Normal",
  62171. height: math.unit(15 + 7/12, "feet"),
  62172. default: true
  62173. },
  62174. {
  62175. name: "Macro",
  62176. height: math.unit(157, "feet")
  62177. },
  62178. {
  62179. name: "Macro+",
  62180. height: math.unit(1570, "feet")
  62181. },
  62182. {
  62183. name: "Macro++",
  62184. height: math.unit(15700, "feet")
  62185. },
  62186. {
  62187. name: "Macro+++",
  62188. height: math.unit(157000, "feet")
  62189. },
  62190. {
  62191. name: "Macro++++",
  62192. height: math.unit(1570000, "feet")
  62193. },
  62194. ]
  62195. ))
  62196. characterMakers.push(() => makeCharacter(
  62197. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62198. {
  62199. side: {
  62200. height: math.unit(6, "feet"),
  62201. weight: math.unit(115, "lb"),
  62202. name: "Side",
  62203. image: {
  62204. source: "./media/characters/moonbeam/side.svg",
  62205. extra: 839/485,
  62206. bottom: 60/899
  62207. }
  62208. },
  62209. },
  62210. [
  62211. {
  62212. name: "Normal",
  62213. height: math.unit(6, "feet"),
  62214. default: true
  62215. },
  62216. ]
  62217. ))
  62218. characterMakers.push(() => makeCharacter(
  62219. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62220. {
  62221. front: {
  62222. height: math.unit(3500, "miles"),
  62223. weight: math.unit(1659, "petatonnes"),
  62224. name: "Front",
  62225. image: {
  62226. source: "./media/characters/baltica/front.svg",
  62227. extra: 429/428,
  62228. bottom: 41/470
  62229. }
  62230. },
  62231. back: {
  62232. height: math.unit(3500, "miles"),
  62233. weight: math.unit(1659, "petatonnes"),
  62234. name: "Back",
  62235. image: {
  62236. source: "./media/characters/baltica/back.svg",
  62237. extra: 452/451,
  62238. bottom: 8/460
  62239. }
  62240. },
  62241. },
  62242. [
  62243. {
  62244. name: "Gigamacro",
  62245. height: math.unit(3500, "miles"),
  62246. default: true
  62247. },
  62248. ]
  62249. ))
  62250. characterMakers.push(() => makeCharacter(
  62251. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62252. {
  62253. front: {
  62254. height: math.unit(6 + 10/12, "feet"),
  62255. weight: math.unit(200, "lb"),
  62256. name: "Front",
  62257. image: {
  62258. source: "./media/characters/shadow-wolf/front.svg",
  62259. extra: 1931/1760,
  62260. bottom: 88/2019
  62261. }
  62262. },
  62263. },
  62264. [
  62265. {
  62266. name: "Normal",
  62267. height: math.unit(6 + 10/12, "feet"),
  62268. default: true
  62269. },
  62270. ]
  62271. ))
  62272. characterMakers.push(() => makeCharacter(
  62273. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62274. {
  62275. front: {
  62276. height: math.unit(5 + 10/12, "feet"),
  62277. name: "Front",
  62278. image: {
  62279. source: "./media/characters/quincy-praying-mantis/front.svg",
  62280. extra: 1055/891,
  62281. bottom: 92/1147
  62282. }
  62283. },
  62284. soles: {
  62285. height: math.unit(0.85, "feet"),
  62286. name: "Soles",
  62287. image: {
  62288. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62289. extra: 429/324,
  62290. bottom: 89/518
  62291. },
  62292. extraAttributes: {
  62293. "shoeSize": {
  62294. name: "Shoe Size",
  62295. power: 1,
  62296. type: "length",
  62297. base: math.unit(23, "ShoeSizeMensUS"),
  62298. defaultUnit: "ShoeSizeMensUS"
  62299. },
  62300. }
  62301. },
  62302. foot: {
  62303. height: math.unit(0.72, "feet"),
  62304. name: "Foot",
  62305. image: {
  62306. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62307. extra: 349/349,
  62308. bottom: 76/425
  62309. }
  62310. },
  62311. },
  62312. [
  62313. {
  62314. name: "Normal",
  62315. height: math.unit(5 + 10/12, "feet"),
  62316. default: true
  62317. },
  62318. ]
  62319. ))
  62320. characterMakers.push(() => makeCharacter(
  62321. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62322. {
  62323. front: {
  62324. height: math.unit(6, "feet"),
  62325. name: "Front",
  62326. image: {
  62327. source: "./media/characters/christopher-redwood/front.svg",
  62328. extra: 1402/1341,
  62329. bottom: 23/1425
  62330. }
  62331. },
  62332. back: {
  62333. height: math.unit(6, "feet"),
  62334. name: "Back",
  62335. image: {
  62336. source: "./media/characters/christopher-redwood/back.svg",
  62337. extra: 1406/1345,
  62338. bottom: 36/1442
  62339. }
  62340. },
  62341. head: {
  62342. height: math.unit(1.685, "feet"),
  62343. name: "Head",
  62344. image: {
  62345. source: "./media/characters/christopher-redwood/head.svg"
  62346. }
  62347. },
  62348. },
  62349. [
  62350. {
  62351. name: "Normal",
  62352. height: math.unit(6, "feet"),
  62353. default: true
  62354. },
  62355. ]
  62356. ))
  62357. characterMakers.push(() => makeCharacter(
  62358. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62359. {
  62360. front: {
  62361. height: math.unit(1.9, "meters"),
  62362. weight: math.unit(140, "lb"),
  62363. name: "Front",
  62364. image: {
  62365. source: "./media/characters/kara-fox/front.svg",
  62366. extra: 766/711,
  62367. bottom: 41/807
  62368. }
  62369. },
  62370. back: {
  62371. height: math.unit(1.9, "meters"),
  62372. weight: math.unit(140, "lb"),
  62373. name: "Back",
  62374. image: {
  62375. source: "./media/characters/kara-fox/back.svg",
  62376. extra: 766/596,
  62377. bottom: 29/795
  62378. }
  62379. },
  62380. maw: {
  62381. height: math.unit(0.78, "feet"),
  62382. name: "Maw",
  62383. image: {
  62384. source: "./media/characters/kara-fox/maw.svg"
  62385. }
  62386. },
  62387. pawpads: {
  62388. height: math.unit(0.96, "feet"),
  62389. name: "Pawpads",
  62390. image: {
  62391. source: "./media/characters/kara-fox/pawpads.svg"
  62392. }
  62393. },
  62394. },
  62395. [
  62396. {
  62397. name: "Normal",
  62398. height: math.unit(1.9, "meters"),
  62399. default: true
  62400. },
  62401. {
  62402. name: "Giantess",
  62403. height: math.unit(80, "meters")
  62404. },
  62405. ]
  62406. ))
  62407. characterMakers.push(() => makeCharacter(
  62408. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62409. {
  62410. front: {
  62411. height: math.unit(12, "feet"),
  62412. name: "Front",
  62413. image: {
  62414. source: "./media/characters/naomi-espeon/front.svg",
  62415. extra: 892/797,
  62416. bottom: 5/897
  62417. }
  62418. },
  62419. back: {
  62420. height: math.unit(12, "feet"),
  62421. name: "Back",
  62422. image: {
  62423. source: "./media/characters/naomi-espeon/back.svg",
  62424. extra: 890/785,
  62425. bottom: 12/902
  62426. }
  62427. },
  62428. },
  62429. [
  62430. {
  62431. name: "Normal",
  62432. height: math.unit(12, "feet"),
  62433. default: true
  62434. },
  62435. ]
  62436. ))
  62437. characterMakers.push(() => makeCharacter(
  62438. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62439. {
  62440. anthro_front: {
  62441. height: math.unit(8, "feet"),
  62442. weight: math.unit(625, "lb"),
  62443. name: "Front",
  62444. image: {
  62445. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62446. extra: 638/574,
  62447. bottom: 73/711
  62448. },
  62449. form: "anthro",
  62450. default: true
  62451. },
  62452. anthro_back: {
  62453. height: math.unit(8, "feet"),
  62454. weight: math.unit(625, "lb"),
  62455. name: "Back",
  62456. image: {
  62457. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62458. extra: 674/614,
  62459. bottom: 7/681
  62460. },
  62461. form: "anthro",
  62462. },
  62463. taur_side: {
  62464. height: math.unit(16, "feet"),
  62465. weight: math.unit(4.5, "tons"),
  62466. name: "Side",
  62467. image: {
  62468. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62469. extra: 704/646,
  62470. bottom: 132/836
  62471. },
  62472. form: "taur",
  62473. default: true
  62474. },
  62475. },
  62476. [
  62477. {
  62478. name: "Normal",
  62479. height: math.unit(8, "feet"),
  62480. default: true,
  62481. form: "anthro"
  62482. },
  62483. {
  62484. name: "Normal",
  62485. height: math.unit(16, "feet"),
  62486. default: true,
  62487. form: "taur"
  62488. },
  62489. ],
  62490. {
  62491. "anthro": {
  62492. name: "Anthro",
  62493. default: true
  62494. },
  62495. "taur": {
  62496. name: "Taur",
  62497. },
  62498. }
  62499. ))
  62500. characterMakers.push(() => makeCharacter(
  62501. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62502. {
  62503. front: {
  62504. height: math.unit(190, "cm"),
  62505. weight: math.unit(110, "kg"),
  62506. name: "Front",
  62507. image: {
  62508. source: "./media/characters/amelie/front.svg",
  62509. extra: 530/442,
  62510. bottom: 35/565
  62511. }
  62512. },
  62513. },
  62514. [
  62515. {
  62516. name: "Normal",
  62517. height: math.unit(190, "cm"),
  62518. default: true
  62519. },
  62520. ]
  62521. ))
  62522. characterMakers.push(() => makeCharacter(
  62523. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62524. {
  62525. front: {
  62526. height: math.unit(21, "feet"),
  62527. weight: math.unit(30000, "lb"),
  62528. name: "Front",
  62529. image: {
  62530. source: "./media/characters/valence/front.svg",
  62531. extra: 1430/1306,
  62532. bottom: 51/1481
  62533. }
  62534. },
  62535. },
  62536. [
  62537. {
  62538. name: "Normal",
  62539. height: math.unit(21, "feet"),
  62540. default: true
  62541. },
  62542. ]
  62543. ))
  62544. //characters
  62545. function makeCharacters() {
  62546. const results = [];
  62547. characterMakers.forEach(character => {
  62548. results.push(character());
  62549. });
  62550. return results;
  62551. }