less copy protection, more size visualization
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 

64566 строки
1.6 MiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes, forms) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. form: value.form,
  16. name: value.name,
  17. info: value.info,
  18. rename: value.rename,
  19. default: value.default
  20. }
  21. if (value.weight) {
  22. views[key].attributes.weight = {
  23. name: "Mass",
  24. power: 3,
  25. type: "mass",
  26. base: value.weight
  27. };
  28. }
  29. if (value.volume) {
  30. views[key].attributes.volume = {
  31. name: "Volume",
  32. power: 3,
  33. type: "volume",
  34. base: value.volume
  35. };
  36. }
  37. if (value.capacity) {
  38. views[key].attributes.capacity = {
  39. name: "Capacity",
  40. power: 3,
  41. type: "volume",
  42. base: value.capacity
  43. }
  44. }
  45. if (value.preyCapacity) {
  46. views[key].attributes.preyCapacity = {
  47. name: "Prey Capacity",
  48. power: 3,
  49. type: "volume",
  50. base: value.preyCapacity,
  51. defaultUnit: "people"
  52. }
  53. }
  54. if (value.energyNeed) {
  55. views[key].attributes.capacity = {
  56. name: "Food Intake",
  57. power: 3 * 3 / 4,
  58. type: "energy",
  59. base: value.energyNeed
  60. }
  61. }
  62. if (value.extraAttributes) {
  63. Object.entries(value.extraAttributes).forEach(([attrKey, attrValue]) => {
  64. views[key].attributes[attrKey] = attrValue
  65. })
  66. }
  67. });
  68. return createEntityMaker(info, views, defaultSizes, forms);
  69. }
  70. const speciesData = {
  71. animal: {
  72. name: "Animal"
  73. },
  74. dog: {
  75. name: "Dog",
  76. parents: [
  77. "canine"
  78. ]
  79. },
  80. canine: {
  81. name: "Canine",
  82. parents: [
  83. "mammal"
  84. ]
  85. },
  86. crux: {
  87. name: "Crux",
  88. parents: [
  89. "mammal"
  90. ]
  91. },
  92. mammal: {
  93. name: "Mammal",
  94. parents: [
  95. "animal"
  96. ]
  97. },
  98. "rough-collie": {
  99. name: "Rough Collie",
  100. parents: [
  101. "dog"
  102. ]
  103. },
  104. dragon: {
  105. name: "Dragon",
  106. parents: [
  107. "reptile"
  108. ]
  109. },
  110. reptile: {
  111. name: "Reptile",
  112. parents: [
  113. "animal"
  114. ]
  115. },
  116. woodpecker: {
  117. name: "Woodpecker",
  118. parents: [
  119. "avian"
  120. ]
  121. },
  122. avian: {
  123. name: "Avian",
  124. parents: [
  125. "animal"
  126. ]
  127. },
  128. kitsune: {
  129. name: "Kitsune",
  130. parents: [
  131. "fox"
  132. ]
  133. },
  134. fox: {
  135. name: "Fox",
  136. parents: [
  137. "mammal"
  138. ]
  139. },
  140. pokemon: {
  141. name: "Pokemon",
  142. parents: [
  143. "video-games"
  144. ]
  145. },
  146. tiger: {
  147. name: "Tiger",
  148. parents: [
  149. "cat"
  150. ]
  151. },
  152. cat: {
  153. name: "Cat",
  154. parents: [
  155. "feliform"
  156. ]
  157. },
  158. "blue-jay": {
  159. name: "Blue Jay",
  160. parents: [
  161. "corvid"
  162. ]
  163. },
  164. wolf: {
  165. name: "Wolf",
  166. parents: [
  167. "mammal"
  168. ]
  169. },
  170. coyote: {
  171. name: "Coyote",
  172. parents: [
  173. "mammal"
  174. ]
  175. },
  176. raccoon: {
  177. name: "Raccoon",
  178. parents: [
  179. "mammal"
  180. ]
  181. },
  182. weasel: {
  183. name: "Weasel",
  184. parents: [
  185. "mustelid"
  186. ]
  187. },
  188. "red-panda": {
  189. name: "Red Panda",
  190. parents: [
  191. "mammal"
  192. ]
  193. },
  194. dolphin: {
  195. name: "Dolphin",
  196. parents: [
  197. "mammal"
  198. ]
  199. },
  200. "african-wild-dog": {
  201. name: "African Wild Dog",
  202. parents: [
  203. "canine"
  204. ]
  205. },
  206. "hyena": {
  207. name: "Hyena",
  208. parents: [
  209. "feliform"
  210. ]
  211. },
  212. "carbuncle": {
  213. name: "Carbuncle",
  214. parents: [
  215. "animal"
  216. ]
  217. },
  218. bat: {
  219. name: "Bat",
  220. parents: [
  221. "mammal"
  222. ]
  223. },
  224. "leaf-nosed-bat": {
  225. name: "Leaf-Nosed Bat",
  226. parents: [
  227. "bat"
  228. ]
  229. },
  230. "fish": {
  231. name: "Fish",
  232. parents: [
  233. "animal",
  234. "aquatic"
  235. ]
  236. },
  237. "ram": {
  238. name: "Ram",
  239. parents: [
  240. "mammal"
  241. ]
  242. },
  243. "demon": {
  244. name: "Demon",
  245. parents: [
  246. "supernatural"
  247. ]
  248. },
  249. "cougar": {
  250. name: "Cougar",
  251. parents: [
  252. "cat"
  253. ]
  254. },
  255. "goat": {
  256. name: "Goat",
  257. parents: [
  258. "mammal"
  259. ]
  260. },
  261. "lion": {
  262. name: "Lion",
  263. parents: [
  264. "cat"
  265. ]
  266. },
  267. "harpy-eager": {
  268. name: "Harpy Eagle",
  269. parents: [
  270. "avian"
  271. ]
  272. },
  273. "deer": {
  274. name: "Deer",
  275. parents: [
  276. "mammal"
  277. ]
  278. },
  279. "phoenix": {
  280. name: "Phoenix",
  281. parents: [
  282. "avian"
  283. ]
  284. },
  285. "aeromorph": {
  286. name: "Aeromorph",
  287. parents: [
  288. "machine"
  289. ]
  290. },
  291. "machine": {
  292. name: "Machine",
  293. },
  294. "android": {
  295. name: "Android",
  296. parents: [
  297. "machine"
  298. ]
  299. },
  300. "jackal": {
  301. name: "Jackal",
  302. parents: [
  303. "canine"
  304. ]
  305. },
  306. "corvid": {
  307. name: "Corvid",
  308. parents: [
  309. "passerine"
  310. ]
  311. },
  312. "pharaoh-hound": {
  313. name: "Pharaoh Hound",
  314. parents: [
  315. "dog"
  316. ]
  317. },
  318. "skunk": {
  319. name: "Skunk",
  320. parents: [
  321. "mammal"
  322. ]
  323. },
  324. "shark": {
  325. name: "Shark",
  326. parents: [
  327. "fish"
  328. ]
  329. },
  330. "black-panther": {
  331. name: "Black Panther",
  332. parents: [
  333. "cat"
  334. ]
  335. },
  336. "umbra": {
  337. name: "Umbra",
  338. parents: [
  339. "animal"
  340. ]
  341. },
  342. "raven": {
  343. name: "Raven",
  344. parents: [
  345. "corvid"
  346. ]
  347. },
  348. "snow-leopard": {
  349. name: "Snow Leopard",
  350. parents: [
  351. "cat"
  352. ]
  353. },
  354. "barbary-lion": {
  355. name: "Barbary Lion",
  356. parents: [
  357. "lion"
  358. ]
  359. },
  360. "dra'gal": {
  361. name: "Dra'Gal",
  362. parents: [
  363. "mammal"
  364. ]
  365. },
  366. "german-shepherd": {
  367. name: "German Shepherd",
  368. parents: [
  369. "dog"
  370. ]
  371. },
  372. "bayleef": {
  373. name: "Bayleef",
  374. parents: [
  375. "pokemon",
  376. "plant",
  377. "animal"
  378. ]
  379. },
  380. "mouse": {
  381. name: "Mouse",
  382. parents: [
  383. "rodent"
  384. ]
  385. },
  386. "rat": {
  387. name: "Rat",
  388. parents: [
  389. "mammal"
  390. ]
  391. },
  392. "hoshiko-beast": {
  393. name: "Hoshiko Beast",
  394. parents: ["animal"]
  395. },
  396. "snow-jugani": {
  397. name: "Snow Jugani",
  398. parents: ["cat"]
  399. },
  400. "patamon": {
  401. name: "Patamon",
  402. parents: ["digimon", "guinea-pig"]
  403. },
  404. "digimon": {
  405. name: "Digimon",
  406. parents: [
  407. "video-games"
  408. ]
  409. },
  410. "jugani": {
  411. name: "Jugani",
  412. parents: ["cat"]
  413. },
  414. "luxray": {
  415. name: "Luxray",
  416. parents: ["pokemon", "lion"]
  417. },
  418. "mech": {
  419. name: "Mech",
  420. parents: ["machine"]
  421. },
  422. "zoid": {
  423. name: "Zoid",
  424. parents: ["mech"]
  425. },
  426. "monster": {
  427. name: "Monster",
  428. parents: ["animal"]
  429. },
  430. "foo-dog": {
  431. name: "Foo Dog",
  432. parents: ["mammal"]
  433. },
  434. "elephant": {
  435. name: "Elephant",
  436. parents: ["mammal"]
  437. },
  438. "eagle": {
  439. name: "Eagle",
  440. parents: ["bird-of-prey"]
  441. },
  442. "cow": {
  443. name: "Cow",
  444. parents: ["mammal"]
  445. },
  446. "crocodile": {
  447. name: "Crocodile",
  448. parents: ["reptile"]
  449. },
  450. "borzoi": {
  451. name: "Borzoi",
  452. parents: ["dog"]
  453. },
  454. "snake": {
  455. name: "Snake",
  456. parents: ["reptile"]
  457. },
  458. "horned-bush-viper": {
  459. name: "Horned Bush Viper",
  460. parents: ["viper"]
  461. },
  462. "cobra": {
  463. name: "Cobra",
  464. parents: ["snake"]
  465. },
  466. "harpy-eagle": {
  467. name: "Harpy Eagle",
  468. parents: ["eagle"]
  469. },
  470. "raptor": {
  471. name: "Raptor",
  472. parents: ["dinosaur"]
  473. },
  474. "dinosaur": {
  475. name: "Dinosaur",
  476. parents: ["saurian"]
  477. },
  478. "saurian": {
  479. name: "Saurian",
  480. parents: ["lizard"]
  481. },
  482. "veilhound": {
  483. name: "Veilhound",
  484. parents: ["hellhound"]
  485. },
  486. "hellhound": {
  487. name: "Hellhound",
  488. parents: ["canine", "demon"]
  489. },
  490. "insect": {
  491. name: "Insect",
  492. parents: ["animal"]
  493. },
  494. "beetle": {
  495. name: "Beetle",
  496. parents: ["insect"]
  497. },
  498. "moth": {
  499. name: "Moth",
  500. parents: ["insect"]
  501. },
  502. "eastern-dragon": {
  503. name: "Eastern Dragon",
  504. parents: ["dragon"]
  505. },
  506. "jaguar": {
  507. name: "Jaguar",
  508. parents: ["cat"]
  509. },
  510. "horse": {
  511. name: "Horse",
  512. parents: ["mammal"]
  513. },
  514. "sergal": {
  515. name: "Sergal",
  516. parents: ["mammal", "avian", "vilous"]
  517. },
  518. "gryphon": {
  519. name: "Gryphon",
  520. parents: ["lion", "eagle"]
  521. },
  522. "robot": {
  523. name: "Robot",
  524. parents: ["machine"]
  525. },
  526. "medihound": {
  527. name: "Medihound",
  528. parents: ["robot", "dog"]
  529. },
  530. "sylveon": {
  531. name: "Sylveon",
  532. parents: ["pokemon"]
  533. },
  534. "catgirl": {
  535. name: "Catgirl",
  536. parents: ["mammal"]
  537. },
  538. "cowgirl": {
  539. name: "Cowgirl",
  540. parents: ["mammal"]
  541. },
  542. "pony": {
  543. name: "Pony",
  544. parents: ["horse"]
  545. },
  546. "rabbit": {
  547. name: "Rabbit",
  548. parents: ["leporidae"]
  549. },
  550. "fennec-fox": {
  551. name: "Fennec Fox",
  552. parents: ["fox"]
  553. },
  554. "azodian": {
  555. name: "Azodian",
  556. parents: ["mouse"]
  557. },
  558. "shiba-inu": {
  559. name: "Shiba Inu",
  560. parents: ["dog"]
  561. },
  562. "changeling": {
  563. name: "Changeling",
  564. parents: ["insect"]
  565. },
  566. "cheetah": {
  567. name: "Cheetah",
  568. parents: ["cat"]
  569. },
  570. "golden-jackal": {
  571. name: "Golden Jackal",
  572. parents: ["jackal"]
  573. },
  574. "manectric": {
  575. name: "Manectric",
  576. parents: ["pokemon", "wolf"]
  577. },
  578. "rat": {
  579. name: "Rat",
  580. parents: ["rodent"]
  581. },
  582. "rodent": {
  583. name: "Rodent",
  584. parents: ["mammal"]
  585. },
  586. "octocoon": {
  587. name: "Octocoon",
  588. parents: ["raccoon", "octopus"]
  589. },
  590. "octopus": {
  591. name: "Octopus",
  592. parents: ["fish"]
  593. },
  594. "werewolf": {
  595. name: "Werewolf",
  596. parents: ["wolf", "werebeast"]
  597. },
  598. "werebeast": {
  599. name: "Werebeast",
  600. parents: ["monster"]
  601. },
  602. "meerkat": {
  603. name: "Meerkat",
  604. parents: ["mammal"]
  605. },
  606. "human": {
  607. name: "Human",
  608. parents: ["mammal", "humanoid"]
  609. },
  610. "geth": {
  611. name: "Geth",
  612. parents: ["android"]
  613. },
  614. "husky": {
  615. name: "Husky",
  616. parents: ["dog"]
  617. },
  618. "long-eared-bat": {
  619. name: "Long Eared Bat",
  620. parents: ["bat"]
  621. },
  622. "lizard": {
  623. name: "Lizard",
  624. parents: ["reptile"]
  625. },
  626. "salamander": {
  627. name: "Salamander",
  628. parents: ["lizard"]
  629. },
  630. "chameleon": {
  631. name: "Chameleon",
  632. parents: ["lizard"]
  633. },
  634. "gecko": {
  635. name: "Gecko",
  636. parents: ["lizard"]
  637. },
  638. "kobold": {
  639. name: "Kobold",
  640. parents: ["reptile"]
  641. },
  642. "charizard": {
  643. name: "Charizard",
  644. parents: ["pokemon", "dragon"]
  645. },
  646. "lugia": {
  647. name: "Lugia",
  648. parents: ["pokemon", "avian"]
  649. },
  650. "cerberus": {
  651. name: "Cerberus",
  652. parents: ["dog"]
  653. },
  654. "tyrantrum": {
  655. name: "Tyrantrum",
  656. parents: ["pokemon"]
  657. },
  658. "lemur": {
  659. name: "Lemur",
  660. parents: ["mammal"]
  661. },
  662. "kelpie": {
  663. name: "Kelpie",
  664. parents: ["horse", "monster"]
  665. },
  666. "labrador": {
  667. name: "Labrador",
  668. parents: ["dog"]
  669. },
  670. "sylveon": {
  671. name: "Sylveon",
  672. parents: ["eeveelution"]
  673. },
  674. "eeveelution": {
  675. name: "Eeveelution",
  676. parents: ["pokemon", "cat"]
  677. },
  678. "polar-bear": {
  679. name: "Polar Bear",
  680. parents: ["bear"]
  681. },
  682. "bear": {
  683. name: "Bear",
  684. parents: ["mammal"]
  685. },
  686. "absol": {
  687. name: "Absol",
  688. parents: ["pokemon", "cat"]
  689. },
  690. "wolver": {
  691. name: "Wolver",
  692. parents: ["mammal"]
  693. },
  694. "rottweiler": {
  695. name: "Rottweiler",
  696. parents: ["dog"]
  697. },
  698. "zebra": {
  699. name: "Zebra",
  700. parents: ["horse"]
  701. },
  702. "yoshi": {
  703. name: "Yoshi",
  704. parents: ["dinosaur"]
  705. },
  706. "lynx": {
  707. name: "Lynx",
  708. parents: ["cat"]
  709. },
  710. "unknown": {
  711. name: "Unknown",
  712. parents: []
  713. },
  714. "thylacine": {
  715. name: "Thylacine",
  716. parents: ["mammal"]
  717. },
  718. "gabumon": {
  719. name: "Gabumon",
  720. parents: ["digimon"]
  721. },
  722. "border-collie": {
  723. name: "Border Collie",
  724. parents: ["dog"]
  725. },
  726. "imp": {
  727. name: "Imp",
  728. parents: ["demon"]
  729. },
  730. "kangaroo": {
  731. name: "Kangaroo",
  732. parents: ["marsupial"]
  733. },
  734. "renamon": {
  735. name: "Renamon",
  736. parents: ["digimon", "fox"]
  737. },
  738. "candy-orca-dragon": {
  739. name: "Candy Orca Dragon",
  740. parents: ["fish", "dragon", "candy"]
  741. },
  742. "sabertooth-tiger": {
  743. name: "Sabertooth Tiger",
  744. parents: ["cat"]
  745. },
  746. "espurr": {
  747. name: "Espurr",
  748. parents: ["pokemon", "cat"]
  749. },
  750. "otter": {
  751. name: "Otter",
  752. parents: ["mustelid"]
  753. },
  754. "elemental": {
  755. name: "Elemental",
  756. parents: ["mammal"]
  757. },
  758. "mew": {
  759. name: "Mew",
  760. parents: ["pokemon"]
  761. },
  762. "goodra": {
  763. name: "Goodra",
  764. parents: ["pokemon"]
  765. },
  766. "fairy": {
  767. name: "Fairy",
  768. parents: ["magical"]
  769. },
  770. "typhlosion": {
  771. name: "Typhlosion",
  772. parents: ["pokemon"]
  773. },
  774. "magical": {
  775. name: "Magical",
  776. parents: []
  777. },
  778. "xenomorph": {
  779. name: "Xenomorph",
  780. parents: ["monster", "alien"]
  781. },
  782. "charr": {
  783. name: "Charr",
  784. parents: ["cat"]
  785. },
  786. "siberian-husky": {
  787. name: "Siberian Husky",
  788. parents: ["husky"]
  789. },
  790. "alligator": {
  791. name: "Alligator",
  792. parents: ["reptile"]
  793. },
  794. "bernese-mountain-dog": {
  795. name: "Bernese Mountain Dog",
  796. parents: ["dog"]
  797. },
  798. "reshiram": {
  799. name: "Reshiram",
  800. parents: ["pokemon", "dragon"]
  801. },
  802. "grizzly-bear": {
  803. name: "Grizzly Bear",
  804. parents: ["bear"]
  805. },
  806. "water-monitor": {
  807. name: "Water Monitor",
  808. parents: ["lizard"]
  809. },
  810. "banchofossa": {
  811. name: "Banchofossa",
  812. parents: ["mammal"]
  813. },
  814. "kirin": {
  815. name: "Kirin",
  816. parents: ["monster"]
  817. },
  818. "quilava": {
  819. name: "Quilava",
  820. parents: ["pokemon"]
  821. },
  822. "seviper": {
  823. name: "Seviper",
  824. parents: ["pokemon", "viper"]
  825. },
  826. "flying-fox": {
  827. name: "Flying Fox",
  828. parents: ["bat"]
  829. },
  830. "keynain": {
  831. name: "Keynain",
  832. parents: ["avian"]
  833. },
  834. "lucario": {
  835. name: "Lucario",
  836. parents: ["pokemon", "jackal"]
  837. },
  838. "siamese-cat": {
  839. name: "Siamese Cat",
  840. parents: ["cat"]
  841. },
  842. "spider": {
  843. name: "Spider",
  844. parents: ["insect"]
  845. },
  846. "samurott": {
  847. name: "Samurott",
  848. parents: ["pokemon", "otter"]
  849. },
  850. "megalodon": {
  851. name: "Megalodon",
  852. parents: ["shark"]
  853. },
  854. "unicorn": {
  855. name: "Unicorn",
  856. parents: ["horse"]
  857. },
  858. "greninja": {
  859. name: "Greninja",
  860. parents: ["pokemon", "frog"]
  861. },
  862. "water-dragon": {
  863. name: "Water Dragon",
  864. parents: ["dragon"]
  865. },
  866. "cross-fox": {
  867. name: "Cross Fox",
  868. parents: ["fox"]
  869. },
  870. "synth": {
  871. name: "Synth",
  872. parents: ["machine"]
  873. },
  874. "construct": {
  875. name: "Construct",
  876. parents: []
  877. },
  878. "mexican-wolf": {
  879. name: "Mexican Wolf",
  880. parents: ["wolf"]
  881. },
  882. "leopard": {
  883. name: "Leopard",
  884. parents: ["cat"]
  885. },
  886. "pig": {
  887. name: "Pig",
  888. parents: ["mammal"]
  889. },
  890. "ampharos": {
  891. name: "Ampharos",
  892. parents: ["pokemon", "sheep"]
  893. },
  894. "orca": {
  895. name: "Orca",
  896. parents: ["fish"]
  897. },
  898. "lycanroc": {
  899. name: "Lycanroc",
  900. parents: ["pokemon", "wolf"]
  901. },
  902. "surkanu": {
  903. name: "Surkanu",
  904. parents: ["monster"]
  905. },
  906. "seal": {
  907. name: "Seal",
  908. parents: ["mammal"]
  909. },
  910. "keldeo": {
  911. name: "Keldeo",
  912. parents: ["pokemon"]
  913. },
  914. "great-dane": {
  915. name: "Great Dane",
  916. parents: ["dog"]
  917. },
  918. "black-backed-jackal": {
  919. name: "Black Backed Jackal",
  920. parents: ["jackal"]
  921. },
  922. "sheep": {
  923. name: "Sheep",
  924. parents: ["mammal"]
  925. },
  926. "leopard-seal": {
  927. name: "Leopard Seal",
  928. parents: ["seal"]
  929. },
  930. "zoroark": {
  931. name: "Zoroark",
  932. parents: ["pokemon", "fox"]
  933. },
  934. "maned-wolf": {
  935. name: "Maned Wolf",
  936. parents: ["canine"]
  937. },
  938. "dracha": {
  939. name: "Dracha",
  940. parents: ["dragon"]
  941. },
  942. "wolxi": {
  943. name: "Wolxi",
  944. parents: ["mammal", "alien"]
  945. },
  946. "dratini": {
  947. name: "Dratini",
  948. parents: ["pokemon", "dragon"]
  949. },
  950. "skaven": {
  951. name: "Skaven",
  952. parents: ["rat"]
  953. },
  954. "mongoose": {
  955. name: "Mongoose",
  956. parents: ["mammal"]
  957. },
  958. "lopunny": {
  959. name: "Lopunny",
  960. parents: ["pokemon", "rabbit"]
  961. },
  962. "feraligatr": {
  963. name: "Feraligatr",
  964. parents: ["pokemon", "alligator"]
  965. },
  966. "houndoom": {
  967. name: "Houndoom",
  968. parents: ["pokemon", "dog"]
  969. },
  970. "protogen": {
  971. name: "Protogen",
  972. parents: ["machine"]
  973. },
  974. "saint-bernard": {
  975. name: "Saint Bernard",
  976. parents: ["dog"]
  977. },
  978. "crow": {
  979. name: "Crow",
  980. parents: ["corvid"]
  981. },
  982. "delphox": {
  983. name: "Delphox",
  984. parents: ["pokemon", "fox"]
  985. },
  986. "moose": {
  987. name: "Moose",
  988. parents: ["mammal"]
  989. },
  990. "joraxian": {
  991. name: "Joraxian",
  992. parents: ["monster", "canine", "demon"]
  993. },
  994. "nimbat": {
  995. name: "Nimbat",
  996. parents: ["mammal"]
  997. },
  998. "aardwolf": {
  999. name: "Aardwolf",
  1000. parents: ["canine"]
  1001. },
  1002. "fluudrani": {
  1003. name: "Fluudrani",
  1004. parents: ["animal"]
  1005. },
  1006. "arcanine": {
  1007. name: "Arcanine",
  1008. parents: ["pokemon", "dog"]
  1009. },
  1010. "inteleon": {
  1011. name: "Inteleon",
  1012. parents: ["pokemon", "fish"]
  1013. },
  1014. "ninetales": {
  1015. name: "Ninetales",
  1016. parents: ["pokemon", "kitsune"]
  1017. },
  1018. "tigrex": {
  1019. name: "Tigrex",
  1020. parents: ["wyvern", "monster-hunter"]
  1021. },
  1022. "zorua": {
  1023. name: "Zorua",
  1024. parents: ["pokemon", "fox"]
  1025. },
  1026. "vulpix": {
  1027. name: "Vulpix",
  1028. parents: ["pokemon", "fox"]
  1029. },
  1030. "barghest": {
  1031. name: "Barghest",
  1032. parents: ["monster"]
  1033. },
  1034. "gray-wolf": {
  1035. name: "Gray Wolf",
  1036. parents: ["wolf"]
  1037. },
  1038. "ruppells-fox": {
  1039. name: "Rüppell's Fox",
  1040. parents: ["fox"]
  1041. },
  1042. "bull-terrier": {
  1043. name: "Bull Terrier",
  1044. parents: ["dog"]
  1045. },
  1046. "european-honey-buzzard": {
  1047. name: "European Honey Buzzard",
  1048. parents: ["avian"]
  1049. },
  1050. "t-rex": {
  1051. name: "Tyrannosaurus Rex",
  1052. parents: ["theropod"]
  1053. },
  1054. "mactarian": {
  1055. name: "Mactarian",
  1056. parents: ["shark", "monster"]
  1057. },
  1058. "mewtwo-y": {
  1059. name: "Mewtwo Y",
  1060. parents: ["mewtwo"]
  1061. },
  1062. "mewtwo": {
  1063. name: "Mewtwo",
  1064. parents: ["pokemon"]
  1065. },
  1066. "eevee": {
  1067. name: "Eevee",
  1068. parents: ["eeveelution"]
  1069. },
  1070. "mienshao": {
  1071. name: "Mienshao",
  1072. parents: ["pokemon"]
  1073. },
  1074. "sugar-glider": {
  1075. name: "Sugar Glider",
  1076. parents: ["opossum"]
  1077. },
  1078. "spectral-bat": {
  1079. name: "Spectral Bat",
  1080. parents: ["bat"]
  1081. },
  1082. "scolipede": {
  1083. name: "Scolipede",
  1084. parents: ["pokemon", "insect"]
  1085. },
  1086. "jackalope": {
  1087. name: "Jackalope",
  1088. parents: ["rabbit", "antelope"]
  1089. },
  1090. "caracal": {
  1091. name: "Caracal",
  1092. parents: ["cat"]
  1093. },
  1094. "stoat": {
  1095. name: "Stoat",
  1096. parents: ["mammal"]
  1097. },
  1098. "african-golden-cat": {
  1099. name: "African Golden Cat",
  1100. parents: ["cat"]
  1101. },
  1102. "gigantosaurus": {
  1103. name: "Gigantosaurus",
  1104. parents: ["dinosaur"]
  1105. },
  1106. "zorgoia": {
  1107. name: "Zorgoia",
  1108. parents: ["mammal"]
  1109. },
  1110. "monitor-lizard": {
  1111. name: "Monitor Lizard",
  1112. parents: ["lizard"]
  1113. },
  1114. "ziralkia": {
  1115. name: "Ziralkia",
  1116. parents: ["mammal"]
  1117. },
  1118. "kiiasi": {
  1119. name: "Kiiasi",
  1120. parents: ["animal"]
  1121. },
  1122. "synx": {
  1123. name: "Synx",
  1124. parents: ["monster"]
  1125. },
  1126. "panther": {
  1127. name: "Panther",
  1128. parents: ["cat"]
  1129. },
  1130. "azumarill": {
  1131. name: "Azumarill",
  1132. parents: ["pokemon"]
  1133. },
  1134. "river-snaptail": {
  1135. name: "River Snaptail",
  1136. parents: ["otter", "crocodile"]
  1137. },
  1138. "great-blue-heron": {
  1139. name: "Great Blue Heron",
  1140. parents: ["avian"]
  1141. },
  1142. "smeargle": {
  1143. name: "Smeargle",
  1144. parents: ["pokemon"]
  1145. },
  1146. "vendeilen": {
  1147. name: "Vendeilen",
  1148. parents: ["monster"]
  1149. },
  1150. "ventura": {
  1151. name: "Ventura",
  1152. parents: ["canine"]
  1153. },
  1154. "clouded-leopard": {
  1155. name: "Clouded Leopard",
  1156. parents: ["leopard"]
  1157. },
  1158. "argonian": {
  1159. name: "Argonian",
  1160. parents: ["lizard"]
  1161. },
  1162. "salazzle": {
  1163. name: "Salazzle",
  1164. parents: ["pokemon", "lizard"]
  1165. },
  1166. "je-stoff-drachen": {
  1167. name: "Je-Stoff Drachen",
  1168. parents: ["dragon"]
  1169. },
  1170. "finnish-spitz-dog": {
  1171. name: "Finnish Spitz Dog",
  1172. parents: ["dog"]
  1173. },
  1174. "gray-fox": {
  1175. name: "Gray Fox",
  1176. parents: ["fox"]
  1177. },
  1178. "opossum": {
  1179. name: "Opossum",
  1180. parents: ["mammal"]
  1181. },
  1182. "antelope": {
  1183. name: "Antelope",
  1184. parents: ["mammal"]
  1185. },
  1186. "weavile": {
  1187. name: "Weavile",
  1188. parents: ["pokemon"]
  1189. },
  1190. "pikachu": {
  1191. name: "Pikachu",
  1192. parents: ["pokemon", "mouse"]
  1193. },
  1194. "grovyle": {
  1195. name: "Grovyle",
  1196. parents: ["pokemon", "plant"]
  1197. },
  1198. "sthara": {
  1199. name: "Sthara",
  1200. parents: ["snow-leopard", "reptile"]
  1201. },
  1202. "star-warrior": {
  1203. name: "Star Warrior",
  1204. parents: ["magical"]
  1205. },
  1206. "dragonoid": {
  1207. name: "Dragonoid",
  1208. parents: ["dragon"]
  1209. },
  1210. "suicune": {
  1211. name: "Suicune",
  1212. parents: ["pokemon"]
  1213. },
  1214. "vole": {
  1215. name: "Vole",
  1216. parents: ["mammal"]
  1217. },
  1218. "blaziken": {
  1219. name: "Blaziken",
  1220. parents: ["pokemon", "avian"]
  1221. },
  1222. "buizel": {
  1223. name: "Buizel",
  1224. parents: ["pokemon", "fish"]
  1225. },
  1226. "floatzel": {
  1227. name: "Floatzel",
  1228. parents: ["pokemon", "fish"]
  1229. },
  1230. "umok": {
  1231. name: "Umok",
  1232. parents: ["avian"]
  1233. },
  1234. "sea-monster": {
  1235. name: "Sea Monster",
  1236. parents: ["monster", "fish"]
  1237. },
  1238. "egyptian-vulture": {
  1239. name: "Egyptian Vulture",
  1240. parents: ["avian"]
  1241. },
  1242. "doberman": {
  1243. name: "Doberman",
  1244. parents: ["dog"]
  1245. },
  1246. "zangoose": {
  1247. name: "Zangoose",
  1248. parents: ["pokemon", "mongoose"]
  1249. },
  1250. "mongoose": {
  1251. name: "Mongoose",
  1252. parents: ["mammal"]
  1253. },
  1254. "wickerbeast": {
  1255. name: "Wickerbeast",
  1256. parents: ["monster"]
  1257. },
  1258. "zenari": {
  1259. name: "Zenari",
  1260. parents: ["lizard"]
  1261. },
  1262. "plant": {
  1263. name: "Plant",
  1264. parents: []
  1265. },
  1266. "raskatox": {
  1267. name: "Raskatox",
  1268. parents: ["raccoon", "skunk", "cat", "fox"]
  1269. },
  1270. "mikromare": {
  1271. name: "mikromare",
  1272. parents: ["alien"]
  1273. },
  1274. "alien": {
  1275. name: "Alien",
  1276. parents: ["animal"]
  1277. },
  1278. "deity": {
  1279. name: "Deity",
  1280. parents: []
  1281. },
  1282. "skarlan": {
  1283. name: "Skarlan",
  1284. parents: ["slug", "dragon"]
  1285. },
  1286. "slug": {
  1287. name: "Slug",
  1288. parents: ["mollusk"]
  1289. },
  1290. "mollusk": {
  1291. name: "Mollusk",
  1292. parents: ["animal"]
  1293. },
  1294. "chimera": {
  1295. name: "Chimera",
  1296. parents: ["monster"]
  1297. },
  1298. "gestalt": {
  1299. name: "Gestalt",
  1300. parents: ["construct"]
  1301. },
  1302. "mimic": {
  1303. name: "Mimic",
  1304. parents: ["monster"]
  1305. },
  1306. "calico-rat": {
  1307. name: "Calico Rat",
  1308. parents: ["rat"]
  1309. },
  1310. "panda": {
  1311. name: "Panda",
  1312. parents: ["mammal"]
  1313. },
  1314. "oni": {
  1315. name: "Oni",
  1316. parents: ["monster"]
  1317. },
  1318. "pegasus": {
  1319. name: "Pegasus",
  1320. parents: ["horse"]
  1321. },
  1322. "vulpera": {
  1323. name: "Vulpera",
  1324. parents: ["fennec-fox"]
  1325. },
  1326. "ceratosaurus": {
  1327. name: "Ceratosaurus",
  1328. parents: ["dinosaur"]
  1329. },
  1330. "nykur": {
  1331. name: "Nykur",
  1332. parents: ["horse", "monster"]
  1333. },
  1334. "giraffe": {
  1335. name: "Giraffe",
  1336. parents: ["mammal"]
  1337. },
  1338. "tauren": {
  1339. name: "Tauren",
  1340. parents: ["cow"]
  1341. },
  1342. "draconi": {
  1343. name: "Draconi",
  1344. parents: ["alien", "cat", "cyborg"]
  1345. },
  1346. "dire-wolf": {
  1347. name: "Dire Wolf",
  1348. parents: ["wolf"]
  1349. },
  1350. "ferromorph": {
  1351. name: "Ferromorph",
  1352. parents: ["construct"]
  1353. },
  1354. "meowth": {
  1355. name: "Meowth",
  1356. parents: ["cat", "pokemon"]
  1357. },
  1358. "pavodragon": {
  1359. name: "Pavodragon",
  1360. parents: ["dragon"]
  1361. },
  1362. "aaltranae": {
  1363. name: "Aaltranae",
  1364. parents: ["dragon"]
  1365. },
  1366. "cyborg": {
  1367. name: "Cyborg",
  1368. parents: ["machine"]
  1369. },
  1370. "draptor": {
  1371. name: "Draptor",
  1372. parents: ["dragon"]
  1373. },
  1374. "candy": {
  1375. name: "Candy",
  1376. parents: []
  1377. },
  1378. "drenath": {
  1379. name: "Drenath",
  1380. parents: ["dragon", "snake", "rabbit"]
  1381. },
  1382. "coyju": {
  1383. name: "Coyju",
  1384. parents: ["coyote", "kaiju"]
  1385. },
  1386. "kaiju": {
  1387. name: "Kaiju",
  1388. parents: ["monster"]
  1389. },
  1390. "nickit": {
  1391. name: "Nickit",
  1392. parents: ["pokemon", "cat"]
  1393. },
  1394. "lopunny": {
  1395. name: "Lopunny",
  1396. parents: ["pokemon", "rabbit"]
  1397. },
  1398. "korean-jindo-dog": {
  1399. name: "Korean Jindo Dog",
  1400. parents: ["dog"]
  1401. },
  1402. "naga": {
  1403. name: "Naga",
  1404. parents: ["snake", "monster"]
  1405. },
  1406. "undead": {
  1407. name: "Undead",
  1408. parents: ["monster"]
  1409. },
  1410. "whale": {
  1411. name: "Whale",
  1412. parents: ["fish"]
  1413. },
  1414. "gelato-bee": {
  1415. name: "Gelato Bee",
  1416. parents: ["bee"]
  1417. },
  1418. "bee": {
  1419. name: "Bee",
  1420. parents: ["insect"]
  1421. },
  1422. "gardevoir": {
  1423. name: "Gardevoir",
  1424. parents: ["pokemon"]
  1425. },
  1426. "ant": {
  1427. name: "Ant",
  1428. parents: ["insect"]
  1429. },
  1430. "frog": {
  1431. name: "Frog",
  1432. parents: ["amphibian"]
  1433. },
  1434. "amphibian": {
  1435. name: "Amphibian",
  1436. parents: ["animal", "aquatic"]
  1437. },
  1438. "pangolin": {
  1439. name: "Pangolin",
  1440. parents: ["mammal"]
  1441. },
  1442. "uragi'viidorn": {
  1443. name: "Uragi'viidorn",
  1444. parents: ["avian", "bear"]
  1445. },
  1446. "gryphdelphais": {
  1447. name: "Gryphdelphais",
  1448. parents: ["dolphin", "gryphon"]
  1449. },
  1450. "plush": {
  1451. name: "Plush",
  1452. parents: ["construct"]
  1453. },
  1454. "draiger": {
  1455. name: "Draiger",
  1456. parents: ["dragon","tiger"]
  1457. },
  1458. "foxsky": {
  1459. name: "Foxsky",
  1460. parents: ["fox", "husky"]
  1461. },
  1462. "umbreon": {
  1463. name: "Umbreon",
  1464. parents: ["eeveelution"]
  1465. },
  1466. "slime-dragon": {
  1467. name: "Slime Dragon",
  1468. parents: ["dragon", "goo"]
  1469. },
  1470. "enderman": {
  1471. name: "Enderman",
  1472. parents: ["monster"]
  1473. },
  1474. "gremlin": {
  1475. name: "Gremlin",
  1476. parents: ["monster"]
  1477. },
  1478. "dragonsune": {
  1479. name: "Dragonsune",
  1480. parents: ["dragon", "kitsune"]
  1481. },
  1482. "ghost": {
  1483. name: "Ghost",
  1484. parents: ["supernatural"]
  1485. },
  1486. "false-vampire-bat": {
  1487. name: "False Vampire Bat",
  1488. parents: ["bat"]
  1489. },
  1490. "succubus": {
  1491. name: "Succubus",
  1492. parents: ["demon"]
  1493. },
  1494. "mia": {
  1495. name: "Mia",
  1496. parents: ["canine"]
  1497. },
  1498. "rainbow": {
  1499. name: "Rainbow",
  1500. parents: ["monster"]
  1501. },
  1502. "solgaleo": {
  1503. name: "Solgaleo",
  1504. parents: ["pokemon"]
  1505. },
  1506. "lucent-nargacuga": {
  1507. name: "Lucent Nargacuga",
  1508. parents: ["nargacuga"]
  1509. },
  1510. "monster-hunter": {
  1511. name: "Monster Hunter",
  1512. parents: ["monster", "video-games"]
  1513. },
  1514. "leviathan": {
  1515. "name": "Leviathan",
  1516. "url": "sea-monster"
  1517. },
  1518. "bull": {
  1519. name: "Bull",
  1520. parents: ["mammal"]
  1521. },
  1522. "tanuki": {
  1523. name: "Tanuki",
  1524. parents: ["monster"]
  1525. },
  1526. "chakat": {
  1527. name: "Chakat",
  1528. parents: ["cat"]
  1529. },
  1530. "hydra": {
  1531. name: "Hydra",
  1532. parents: ["monster"]
  1533. },
  1534. "zigzagoon": {
  1535. name: "Zigzagoon",
  1536. parents: ["raccoon", "pokemon"]
  1537. },
  1538. "vulture": {
  1539. name: "Vulture",
  1540. parents: ["avian"]
  1541. },
  1542. "eastern-dragon": {
  1543. name: "Eastern Dragon",
  1544. parents: ["dragon"]
  1545. },
  1546. "gryffon": {
  1547. name: "Gryffon",
  1548. parents: ["phoenix", "red-panda"]
  1549. },
  1550. "amtsvane": {
  1551. name: "Amtsvane",
  1552. parents: ["reptile"]
  1553. },
  1554. "kigavi": {
  1555. name: "Kigavi",
  1556. parents: ["avian"]
  1557. },
  1558. "turian": {
  1559. name: "Turian",
  1560. parents: ["avian"]
  1561. },
  1562. "zeraora": {
  1563. name: "Zeraora",
  1564. parents: ["pokemon", "cat"]
  1565. },
  1566. "sandshrew": {
  1567. name: "Sandshrew",
  1568. parents: ["pokemon", "pangolin"]
  1569. },
  1570. "valais-blacknose-sheep": {
  1571. name: "Valais Blacknose Sheep",
  1572. parents: ["sheep"]
  1573. },
  1574. "novaleit": {
  1575. name: "Novaleit",
  1576. parents: ["mammal"]
  1577. },
  1578. "dunnoh": {
  1579. name: "Dunnoh",
  1580. parents: ["mammal"]
  1581. },
  1582. "lunaral-dragon": {
  1583. name: "Lunaral Dragon",
  1584. parents: ["dragon"]
  1585. },
  1586. "arctic-wolf": {
  1587. name: "Arctic Wolf",
  1588. parents: ["wolf"]
  1589. },
  1590. "donkey": {
  1591. name: "Donkey",
  1592. parents: ["horse"]
  1593. },
  1594. "chinchilla": {
  1595. name: "Chinchilla",
  1596. parents: ["rodent"]
  1597. },
  1598. "felkin": {
  1599. name: "Felkin",
  1600. parents: ["dragon"]
  1601. },
  1602. "tykeriel": {
  1603. name: "Tykeriel",
  1604. parents: ["avian"]
  1605. },
  1606. "folf": {
  1607. name: "Folf",
  1608. parents: ["fox", "wolf"]
  1609. },
  1610. "pooltoy": {
  1611. name: "Pooltoy",
  1612. parents: ["construct"]
  1613. },
  1614. "demi": {
  1615. name: "Demi",
  1616. parents: ["human"]
  1617. },
  1618. "stegosaurus": {
  1619. name: "Stegosaurus",
  1620. parents: ["dinosaur"]
  1621. },
  1622. "computer-virus": {
  1623. name: "Computer Virus",
  1624. parents: ["program"]
  1625. },
  1626. "program": {
  1627. name: "Program",
  1628. parents: ["construct"]
  1629. },
  1630. "space-springhare": {
  1631. name: "Space Springhare",
  1632. parents: ["hare"]
  1633. },
  1634. "river-drake": {
  1635. name: "River Drake",
  1636. parents: ["dragon"]
  1637. },
  1638. "djinn": {
  1639. "name": "Djinn",
  1640. "url": "supernatural"
  1641. },
  1642. "supernatural": {
  1643. name: "Supernatural",
  1644. parents: ["monster"]
  1645. },
  1646. "grasshopper-mouse": {
  1647. name: "Grasshopper Mouse",
  1648. parents: ["mouse"]
  1649. },
  1650. "somali-cat": {
  1651. name: "Somali Cat",
  1652. parents: ["cat"]
  1653. },
  1654. "minccino": {
  1655. name: "Minccino",
  1656. parents: ["pokemon", "chinchilla"]
  1657. },
  1658. "pine-marten": {
  1659. name: "Pine Marten",
  1660. parents: ["marten"]
  1661. },
  1662. "marten": {
  1663. name: "Marten",
  1664. parents: ["mustelid"]
  1665. },
  1666. "mustelid": {
  1667. name: "Mustelid",
  1668. parents: ["mammal"]
  1669. },
  1670. "caribou": {
  1671. name: "Caribou",
  1672. parents: ["deer"]
  1673. },
  1674. "gnoll": {
  1675. name: "Gnoll",
  1676. parents: ["hyena", "monster"]
  1677. },
  1678. "peacekeeper": {
  1679. name: "Peacekeeper",
  1680. parents: ["human"]
  1681. },
  1682. "river-otter": {
  1683. name: "River Otter",
  1684. parents: ["otter"]
  1685. },
  1686. "dhole": {
  1687. name: "Dhole",
  1688. parents: ["canine"]
  1689. },
  1690. "springbok": {
  1691. name: "Springbok",
  1692. parents: ["antelope"]
  1693. },
  1694. "marsupial": {
  1695. name: "Marsupial",
  1696. parents: ["mammal"]
  1697. },
  1698. "townsend-big-eared-bat": {
  1699. name: "Townsend Big-eared Bat",
  1700. parents: ["bat"]
  1701. },
  1702. "squirrel": {
  1703. name: "Squirrel",
  1704. parents: ["rodent"]
  1705. },
  1706. "magpie": {
  1707. name: "Magpie",
  1708. parents: ["corvid"]
  1709. },
  1710. "civet": {
  1711. name: "Civet",
  1712. parents: ["feliform"]
  1713. },
  1714. "feliform": {
  1715. name: "Feliform",
  1716. parents: ["mammal"]
  1717. },
  1718. "tiefling": {
  1719. name: "Tiefling",
  1720. parents: ["devil"]
  1721. },
  1722. "devil": {
  1723. name: "Devil",
  1724. parents: ["supernatural"]
  1725. },
  1726. "sika-deer": {
  1727. name: "Sika Deer",
  1728. parents: ["deer"]
  1729. },
  1730. "vaporeon": {
  1731. name: "Vaporeon",
  1732. parents: ["eeveelution"]
  1733. },
  1734. "leafeon": {
  1735. name: "Leafeon",
  1736. parents: ["eeveelution"]
  1737. },
  1738. "jolteon": {
  1739. name: "Jolteon",
  1740. parents: ["eeveelution"]
  1741. },
  1742. "spireborn": {
  1743. name: "Spireborn",
  1744. parents: ["zorgoia"]
  1745. },
  1746. "vampire": {
  1747. name: "Vampire",
  1748. parents: ["monster"]
  1749. },
  1750. "extraplanar": {
  1751. name: "Extraplanar",
  1752. parents: []
  1753. },
  1754. "goo": {
  1755. name: "Goo",
  1756. parents: []
  1757. },
  1758. "skink": {
  1759. name: "Skink",
  1760. parents: ["lizard"]
  1761. },
  1762. "bat-eared-fox": {
  1763. name: "Bat-eared Fox",
  1764. parents: ["fox"]
  1765. },
  1766. "belted-kingfisher": {
  1767. name: "Belted Kingfisher",
  1768. parents: ["avian"]
  1769. },
  1770. "omnifalcon": {
  1771. name: "Omnifalcon",
  1772. parents: ["gryphon", "falcon", "harpy-eagle"]
  1773. },
  1774. "falcon": {
  1775. name: "Falcon",
  1776. parents: ["bird-of-prey"]
  1777. },
  1778. "avali": {
  1779. name: "Avali",
  1780. parents: ["avian", "alien"]
  1781. },
  1782. "arctic-fox": {
  1783. name: "Arctic Fox",
  1784. parents: ["fox"]
  1785. },
  1786. "snow-tiger": {
  1787. name: "Snow Tiger",
  1788. parents: ["tiger"]
  1789. },
  1790. "marble-fox": {
  1791. name: "Marble Fox",
  1792. parents: ["fox"]
  1793. },
  1794. "king-wickerbeast": {
  1795. name: "King Wickerbeast",
  1796. parents: ["wickerbeast"]
  1797. },
  1798. "wickerbeast": {
  1799. name: "Wickerbeast",
  1800. parents: ["mammal"]
  1801. },
  1802. "european-polecat": {
  1803. name: "European Polecat",
  1804. parents: ["polecat"]
  1805. },
  1806. "polecat": {
  1807. name: "Polecat",
  1808. parents: ["mustelid"]
  1809. },
  1810. "teshari": {
  1811. name: "Teshari",
  1812. parents: ["avian", "raptor"]
  1813. },
  1814. "alicorn": {
  1815. name: "Alicorn",
  1816. parents: ["horse"]
  1817. },
  1818. "atlas-moth": {
  1819. name: "Atlas Moth",
  1820. parents: ["moth"]
  1821. },
  1822. "owlbear": {
  1823. name: "Owlbear",
  1824. parents: ["owl", "bear", "monster"]
  1825. },
  1826. "owl": {
  1827. name: "Owl",
  1828. parents: ["avian"]
  1829. },
  1830. "silvertongue": {
  1831. name: "Silvertongue",
  1832. parents: ["reptile"]
  1833. },
  1834. "ahuizotl": {
  1835. name: "Ahuizotl",
  1836. parents: ["monster"]
  1837. },
  1838. "ender-dragon": {
  1839. name: "Ender Dragon",
  1840. parents: ["dragon"]
  1841. },
  1842. "bruhathkayosaurus": {
  1843. name: "Bruhathkayosaurus",
  1844. parents: ["sauropod"]
  1845. },
  1846. "sauropod": {
  1847. name: "Sauropod",
  1848. parents: ["dinosaur"]
  1849. },
  1850. "black-sable-antelope": {
  1851. name: "Black Sable Antelope",
  1852. parents: ["antelope"]
  1853. },
  1854. "slime": {
  1855. name: "Slime",
  1856. parents: ["goo"]
  1857. },
  1858. "utahraptor": {
  1859. name: "Utahraptor",
  1860. parents: ["raptor"]
  1861. },
  1862. "indian-giant-squirrel": {
  1863. name: "Indian Giant Squirrel",
  1864. parents: ["squirrel"]
  1865. },
  1866. "golden-retriever": {
  1867. name: "Golden Retriever",
  1868. parents: ["dog"]
  1869. },
  1870. "triceratops": {
  1871. name: "Triceratops",
  1872. parents: ["dinosaur"]
  1873. },
  1874. "drake": {
  1875. name: "Drake",
  1876. parents: ["dragon"]
  1877. },
  1878. "okapi": {
  1879. name: "Okapi",
  1880. parents: ["giraffe"]
  1881. },
  1882. "arctic-hare": {
  1883. name: "Arctic Hare",
  1884. parents: ["hare"]
  1885. },
  1886. "hare": {
  1887. name: "Hare",
  1888. parents: ["leporidae"]
  1889. },
  1890. "leporidae": {
  1891. name: "Leporidae",
  1892. parents: ["mammal"]
  1893. },
  1894. "leopard-gecko": {
  1895. name: "Leopard Gecko",
  1896. parents: ["gecko"]
  1897. },
  1898. "dreamspawn": {
  1899. name: "Dreamspawn",
  1900. parents: ["illusion"]
  1901. },
  1902. "illusion": {
  1903. name: "Illusion",
  1904. parents: []
  1905. },
  1906. "purrloin": {
  1907. name: "Purrloin",
  1908. parents: ["cat", "pokemon"]
  1909. },
  1910. "noivern": {
  1911. name: "Noivern",
  1912. parents: ["bat", "dragon", "pokemon"]
  1913. },
  1914. "hedgehog": {
  1915. name: "Hedgehog",
  1916. parents: ["mammal"]
  1917. },
  1918. "liger": {
  1919. name: "Liger",
  1920. parents: ["lion", "tiger", "hybrid"]
  1921. },
  1922. "hybrid": {
  1923. name: "Hybrid",
  1924. parents: []
  1925. },
  1926. "drider": {
  1927. name: "Drider",
  1928. parents: ["spider"]
  1929. },
  1930. "sabresune": {
  1931. name: "Sabresune",
  1932. parents: ["kitsune", "sabertooth-tiger"]
  1933. },
  1934. "ditto": {
  1935. name: "Ditto",
  1936. parents: ["pokemon", "goo"]
  1937. },
  1938. "amogus": {
  1939. name: "Amogus",
  1940. parents: ["deity"]
  1941. },
  1942. "ferret": {
  1943. name: "Ferret",
  1944. parents: ["mustelid"]
  1945. },
  1946. "guinea-pig": {
  1947. name: "Guinea Pig",
  1948. parents: ["rodent"]
  1949. },
  1950. "viper": {
  1951. name: "Viper",
  1952. parents: ["snake"]
  1953. },
  1954. "cinderace": {
  1955. name: "Cinderace",
  1956. parents: ["pokemon", "rabbit"]
  1957. },
  1958. "caudin": {
  1959. name: "Caudin",
  1960. parents: ["dragon"]
  1961. },
  1962. "red-winged-blackbird": {
  1963. name: "Red-Winged Blackbird",
  1964. parents: ["avian"]
  1965. },
  1966. "hooded-wheater": {
  1967. name: "Hooded Wheater",
  1968. parents: ["passerine"]
  1969. },
  1970. "passerine": {
  1971. name: "Passerine",
  1972. parents: ["avian"]
  1973. },
  1974. "gieeg": {
  1975. name: "Gieeg",
  1976. parents: ["alien"]
  1977. },
  1978. "ringtail": {
  1979. name: "Ringtail",
  1980. parents: ["raccoon"]
  1981. },
  1982. "hisuian-zoroark": {
  1983. name: "Hisuian Zoroark",
  1984. parents: ["zoroark", "hisuian"]
  1985. },
  1986. "hisuian": {
  1987. name: "Hisuian",
  1988. parents: ["regional-pokemon"]
  1989. },
  1990. "regional-pokemon": {
  1991. name: "Regional Pokemon",
  1992. parents: ["pokemon"]
  1993. },
  1994. "cybeast": {
  1995. name: "Cybeast",
  1996. parents: ["computer-virus"]
  1997. },
  1998. "javira-dragon": {
  1999. name: "Javira Dragon",
  2000. parents: ["dragon"]
  2001. },
  2002. "koopew": {
  2003. name: "Koopew",
  2004. parents: ["dragon", "alien"]
  2005. },
  2006. "nevrean": {
  2007. name: "Nevrean",
  2008. parents: ["avian", "vilous"]
  2009. },
  2010. "vilous": {
  2011. name: "Vilous Species",
  2012. parents: []
  2013. },
  2014. "titanoboa": {
  2015. name: "Titanoboa",
  2016. parents: ["snake"]
  2017. },
  2018. "raichu": {
  2019. name: "Raichu",
  2020. parents: ["pikachu"]
  2021. },
  2022. "taur": {
  2023. name: "Taur",
  2024. parents: []
  2025. },
  2026. "continental-giant-rabbit": {
  2027. name: "Continental Giant Rabbit",
  2028. parents: ["rabbit"]
  2029. },
  2030. "demigryph": {
  2031. name: "Demigryph",
  2032. parents: ["lion", "eagle"]
  2033. },
  2034. "bald-eagle": {
  2035. name: "Bald Eagle",
  2036. parents: ["eagle"]
  2037. },
  2038. "kestrel": {
  2039. name: "Kestrel",
  2040. parents: ["falcon"]
  2041. },
  2042. "mockingbird": {
  2043. name: "Mockingbird",
  2044. parents: ["songbird"]
  2045. },
  2046. "songbird": {
  2047. name: "Songbird",
  2048. parents: ["avian"]
  2049. },
  2050. "bird-of-prey": {
  2051. name: "Bird of Prey",
  2052. parents: ["avian"]
  2053. },
  2054. "marowak": {
  2055. name: "Marowak",
  2056. parents: ["pokemon", "reptile"]
  2057. },
  2058. "joltik": {
  2059. name: "Joltik",
  2060. parents: ["pokemon", "insect"]
  2061. },
  2062. "mink": {
  2063. name: "Mink",
  2064. parents: ["mustelid"]
  2065. },
  2066. "sandcat": {
  2067. name: "Sandcat",
  2068. parents: ["cat"]
  2069. },
  2070. "hrothgar": {
  2071. name: "Hrothgar",
  2072. parents: ["cat"]
  2073. },
  2074. "garchomp": {
  2075. name: "Garchomp",
  2076. parents: ["dragon", "pokemon"]
  2077. },
  2078. "nargacuga": {
  2079. name: "Nargacuga",
  2080. parents: ["monster-hunter"]
  2081. },
  2082. "sable": {
  2083. name: "Sable",
  2084. parents: ["marten"]
  2085. },
  2086. "deino": {
  2087. name: "Deino",
  2088. parents: ["pokemon", "dinosaur"]
  2089. },
  2090. "housecat": {
  2091. name: "Housecat",
  2092. parents: ["cat"]
  2093. },
  2094. "bombay-cat": {
  2095. name: "Bombay Cat",
  2096. parents: ["housecat"]
  2097. },
  2098. "maine-coon": {
  2099. name: "Maine Coon",
  2100. parents: ["housecat"]
  2101. },
  2102. "coelacanth": {
  2103. name: "Coelacanth",
  2104. parents: ["fish"]
  2105. },
  2106. "silvally": {
  2107. name: "Silvally",
  2108. parents: ["legendary-pokemon"]
  2109. },
  2110. "legendary-pokemon": {
  2111. name: "Legendary Pokemon",
  2112. parents: ["pokemon"]
  2113. },
  2114. "great-maccao": {
  2115. name: "Great Maccao",
  2116. parents: ["monster-hunter", "raptor"]
  2117. },
  2118. "shapeshifter": {
  2119. name: "shapeshifter",
  2120. parents: []
  2121. },
  2122. "obstagoon": {
  2123. name: "Obstagoon",
  2124. parents: ["zigzagoon"]
  2125. },
  2126. "thomsons-gazelle": {
  2127. name: "Thomsons Gazelle",
  2128. parents: ["gazelle"]
  2129. },
  2130. "gazelle": {
  2131. name: "Gazelle",
  2132. parents: ["antelope"]
  2133. },
  2134. "monkey": {
  2135. name: "Monkey",
  2136. parents: ["primate"]
  2137. },
  2138. "serval": {
  2139. name: "Serval",
  2140. parents: ["cat"]
  2141. },
  2142. "swampert": {
  2143. name: "Swampert",
  2144. parents: ["pokemon"]
  2145. },
  2146. "red-fox": {
  2147. name: "Red Fox",
  2148. parents: ["fox"]
  2149. },
  2150. "sliver": {
  2151. name: "Sliver",
  2152. parents: ["alien"]
  2153. },
  2154. "sergix": {
  2155. name: "Sergix",
  2156. parents: ["demon", "sergal", "phoenix"]
  2157. },
  2158. "behemoth": {
  2159. name: "Behemoth",
  2160. parents: ["monster", "dragon", "final-fantasy"]
  2161. },
  2162. "final-fantasy": {
  2163. name: "Final Fantasy",
  2164. parents: ["video-games"]
  2165. },
  2166. "video-games": {
  2167. name: "Video Games",
  2168. parents: []
  2169. },
  2170. "eastern-cottontail-rabbit": {
  2171. name: "Eastern Cottontail Rabbit",
  2172. parents: ["rabbit"]
  2173. },
  2174. "thresher-shark": {
  2175. name: "Thresher Shark",
  2176. parents: ["shark"]
  2177. },
  2178. "ai": {
  2179. name: "AI",
  2180. parents: []
  2181. },
  2182. "black-tip-reef-shark": {
  2183. name: "Black Tip Reef Shark",
  2184. parents: ["shark"]
  2185. },
  2186. "quetzalcoatlus-northropi": {
  2187. name: "Quetzalcoatlus Northropi",
  2188. parents: ["dinosaur"]
  2189. },
  2190. "snivy": {
  2191. name: "Snivy",
  2192. parents: ["pokemon", "snake"]
  2193. },
  2194. "nedynvor": {
  2195. name: "Nedynvor",
  2196. parents: ["avian"]
  2197. },
  2198. "marbled-polecat": {
  2199. name: "Marbled Polecat",
  2200. parents: ["polecat"]
  2201. },
  2202. "ape": {
  2203. name: "Ape",
  2204. parents: ["primate"]
  2205. },
  2206. "primate": {
  2207. name: "Primate",
  2208. parents: ["mammal"]
  2209. },
  2210. "kulve-taroth": {
  2211. name: "Kulve Taroth",
  2212. parents: ["monster-hunter", "dragon"]
  2213. },
  2214. "irthos": {
  2215. name: "Irthos",
  2216. parents: ["dragon"]
  2217. },
  2218. "furred-dragon": {
  2219. name: "Furred Dragon",
  2220. parents: ["dragon"]
  2221. },
  2222. "hippogriff": {
  2223. name: "Hippogriff",
  2224. parents: ["gryphon", "horse"]
  2225. },
  2226. "peregrine-falcon": {
  2227. name: "Peregrine Falcon",
  2228. parents: ["falcon"]
  2229. },
  2230. "deinonychus": {
  2231. name: "Deinonychus",
  2232. parents: ["theropod"]
  2233. },
  2234. "theropod": {
  2235. name: "Theropod",
  2236. parents: ["dinosaur"]
  2237. },
  2238. "chocobo": {
  2239. name: "Chocobo",
  2240. parents: ["avian"]
  2241. },
  2242. "stilio": {
  2243. name: "Stilio",
  2244. parents: ["snake"]
  2245. },
  2246. "kardox": {
  2247. name: "Kardox",
  2248. parents: ["wolf", "dragon", "horse"]
  2249. },
  2250. "food": {
  2251. name: "Food",
  2252. parents: ["object"]
  2253. },
  2254. "object": {
  2255. name: "Object",
  2256. parents: []
  2257. },
  2258. "honey-badger": {
  2259. name: "honey-badger",
  2260. parents: ["badger"]
  2261. },
  2262. "badger": {
  2263. name: "Badger",
  2264. parents: ["mustelid"]
  2265. },
  2266. "rattlesnake": {
  2267. name: "Rattlesnake",
  2268. parents: ["snake"]
  2269. },
  2270. "diamondback": {
  2271. name: "Diamondback",
  2272. parents: ["snake"]
  2273. },
  2274. "spidox": {
  2275. name: "Spidox",
  2276. parents: ["spider", "fox"]
  2277. },
  2278. "kodiak-bear": {
  2279. name: "Kodiak Bear",
  2280. parents: ["bear"]
  2281. },
  2282. "alurean": {
  2283. name: "Alurean",
  2284. parents: ["saurian", "aquatic", "alien"]
  2285. },
  2286. "aquatic": {
  2287. name: "Aquatic",
  2288. parents: []
  2289. },
  2290. "wyvern": {
  2291. name: "Wyvern",
  2292. parents: ["dragon"]
  2293. },
  2294. "catfish": {
  2295. name: "Catfish",
  2296. parents: ["fish"]
  2297. },
  2298. "vesempress": {
  2299. name: "Vesempress",
  2300. parents: ["vespiquen"]
  2301. },
  2302. "vespiquen": {
  2303. name: "Vespiquen",
  2304. parents: ["pokemon", "bee"]
  2305. },
  2306. "gaelterranian": {
  2307. name: "Gaelterranian",
  2308. parents: ["alien"]
  2309. },
  2310. "pistrogre": {
  2311. name: "Pistrogre",
  2312. parents: ["alien", "deity", "insect", "reptile"]
  2313. },
  2314. "komodo-dragon": {
  2315. name: "Komodo Dragon",
  2316. parents: ["lizard"]
  2317. },
  2318. "shiny": {
  2319. name: "Shiny",
  2320. parents: ["pokemon"]
  2321. },
  2322. "latex": {
  2323. name: "Latex",
  2324. parents: []
  2325. },
  2326. "praying-mantis": {
  2327. name: "Praying Mantis",
  2328. parents: ["insect"]
  2329. },
  2330. "espeon": {
  2331. name: "Espeon",
  2332. parents: ["eeveelution"]
  2333. },
  2334. "skullwolf": {
  2335. name: "Skullwolf",
  2336. parents: ["wolf", "skullmonster"]
  2337. },
  2338. "skulldragon": {
  2339. name: "Skulldragon",
  2340. parents: ["dragon", "skullmonster"]
  2341. },
  2342. "skullmonster": {
  2343. name: "Skullmonster",
  2344. parents: ["monster"]
  2345. },
  2346. "ferrin": {
  2347. name: "Ferrin",
  2348. parents: ["dragon"]
  2349. },
  2350. "rusty-spotted-cat": {
  2351. name: "Rusty-Spotted Cat",
  2352. parents: ["cat"]
  2353. },
  2354. "elf": {
  2355. name: "Elf",
  2356. parents: ["humanoid"]
  2357. },
  2358. "humanoid": {
  2359. name: "Humanoid",
  2360. parents: []
  2361. },
  2362. "allusus": {
  2363. name: "Allusus",
  2364. parents: ["humanoid"]
  2365. },
  2366. }
  2367. //species
  2368. function getSpeciesInfo(speciesList) {
  2369. let result = new Set();
  2370. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  2371. result.add(entry)
  2372. });
  2373. return Array.from(result);
  2374. };
  2375. function getSpeciesInfoHelper(species) {
  2376. if (!speciesData[species]) {
  2377. console.warn(species + " doesn't exist");
  2378. return [];
  2379. }
  2380. if (speciesData[species].parents) {
  2381. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  2382. } else {
  2383. return [species];
  2384. }
  2385. }
  2386. characterMakers.push(() => makeCharacter(
  2387. {
  2388. name: "Fen",
  2389. species: ["crux"],
  2390. description: {
  2391. title: "Bio",
  2392. text: "Very furry. Sheds on everything."
  2393. },
  2394. tags: [
  2395. "anthro",
  2396. "goo"
  2397. ]
  2398. },
  2399. {
  2400. front: {
  2401. height: math.unit(12, "feet"),
  2402. weight: math.unit(2400, "lb"),
  2403. preyCapacity: math.unit(1, "people"),
  2404. name: "Front",
  2405. image: {
  2406. source: "./media/characters/fen/front.svg",
  2407. extra: 1804/1562,
  2408. bottom: 205/2009
  2409. },
  2410. extraAttributes: {
  2411. pawSize: {
  2412. name: "Paw Size",
  2413. power: 2,
  2414. type: "area",
  2415. base: math.unit(0.35, "m^2")
  2416. }
  2417. }
  2418. },
  2419. diving: {
  2420. height: math.unit(4.9, "meters"),
  2421. weight: math.unit(2400, "lb"),
  2422. name: "Diving",
  2423. image: {
  2424. source: "./media/characters/fen/diving.svg"
  2425. }
  2426. },
  2427. sleeby: {
  2428. height: math.unit(3.45, "meters"),
  2429. weight: math.unit(2400, "lb"),
  2430. name: "Sleeby",
  2431. image: {
  2432. source: "./media/characters/fen/sleeby.svg"
  2433. }
  2434. },
  2435. goo: {
  2436. height: math.unit(12, "feet"),
  2437. weight: math.unit(3600, "lb"),
  2438. volume: math.unit(1000, "liters"),
  2439. preyCapacity: math.unit(6, "people"),
  2440. name: "Goo",
  2441. image: {
  2442. source: "./media/characters/fen/goo.svg",
  2443. extra: 1307/1071,
  2444. bottom: 134/1441
  2445. }
  2446. },
  2447. horror: {
  2448. height: math.unit(13.6, "feet"),
  2449. weight: math.unit(2400, "lb"),
  2450. preyCapacity: math.unit(1, "people"),
  2451. name: "Horror",
  2452. image: {
  2453. source: "./media/characters/fen/horror.svg",
  2454. extra: 893/797,
  2455. bottom: 0/893
  2456. }
  2457. },
  2458. gooNsfw: {
  2459. height: math.unit(12, "feet"),
  2460. weight: math.unit(3750, "lb"),
  2461. volume: math.unit(1000, "liters"),
  2462. preyCapacity: math.unit(6, "people"),
  2463. name: "Goo (NSFW)",
  2464. image: {
  2465. source: "./media/characters/fen/goo-nsfw.svg",
  2466. extra: 1875/1734,
  2467. bottom: 122/1997
  2468. }
  2469. },
  2470. maw: {
  2471. height: math.unit(5.03, "feet"),
  2472. name: "Maw",
  2473. image: {
  2474. source: "./media/characters/fen/maw.svg"
  2475. }
  2476. },
  2477. gooCeiling: {
  2478. height: math.unit(6.6, "feet"),
  2479. weight: math.unit(3000, "lb"),
  2480. volume: math.unit(1000, "liters"),
  2481. preyCapacity: math.unit(6, "people"),
  2482. name: "Maw (Goo)",
  2483. image: {
  2484. source: "./media/characters/fen/goo-maw.svg"
  2485. }
  2486. },
  2487. paw: {
  2488. height: math.unit(3.77, "feet"),
  2489. name: "Paw",
  2490. image: {
  2491. source: "./media/characters/fen/paw.svg"
  2492. },
  2493. extraAttributes: {
  2494. "toeSize": {
  2495. name: "Toe Size",
  2496. power: 2,
  2497. type: "area",
  2498. base: math.unit(0.02875, "m^2")
  2499. },
  2500. "pawSize": {
  2501. name: "Paw Size",
  2502. power: 2,
  2503. type: "area",
  2504. base: math.unit(0.378, "m^2")
  2505. },
  2506. }
  2507. },
  2508. tail: {
  2509. height: math.unit(12.1, "feet"),
  2510. name: "Tail",
  2511. image: {
  2512. source: "./media/characters/fen/tail.svg"
  2513. }
  2514. },
  2515. tailFull: {
  2516. height: math.unit(12.1, "feet"),
  2517. name: "Full Tail",
  2518. image: {
  2519. source: "./media/characters/fen/tail-full.svg"
  2520. }
  2521. },
  2522. back: {
  2523. height: math.unit(12, "feet"),
  2524. weight: math.unit(2400, "lb"),
  2525. name: "Back",
  2526. image: {
  2527. source: "./media/characters/fen/back.svg",
  2528. },
  2529. info: {
  2530. description: {
  2531. mode: "append",
  2532. text: "\n\nHe is not currently looking at you."
  2533. }
  2534. }
  2535. },
  2536. full: {
  2537. height: math.unit(1.85, "meter"),
  2538. weight: math.unit(3200, "lb"),
  2539. preyCapacity: math.unit(3, "people"),
  2540. name: "Full",
  2541. image: {
  2542. source: "./media/characters/fen/full.svg",
  2543. extra: 1133/859,
  2544. bottom: 145/1278
  2545. },
  2546. info: {
  2547. description: {
  2548. mode: "append",
  2549. text: "\n\nMunch."
  2550. }
  2551. }
  2552. },
  2553. gooLounging: {
  2554. height: math.unit(4.53, "feet"),
  2555. weight: math.unit(3000, "lb"),
  2556. preyCapacity: math.unit(6, "people"),
  2557. name: "Goo (Lounging)",
  2558. image: {
  2559. source: "./media/characters/fen/goo-lounging.svg",
  2560. bottom: 116 / 613
  2561. }
  2562. },
  2563. lounging: {
  2564. height: math.unit(10.52, "feet"),
  2565. weight: math.unit(2400, "lb"),
  2566. name: "Lounging",
  2567. image: {
  2568. source: "./media/characters/fen/lounging.svg"
  2569. }
  2570. },
  2571. },
  2572. [
  2573. {
  2574. name: "Small",
  2575. height: math.unit(2.2428, "meter")
  2576. },
  2577. {
  2578. name: "Normal",
  2579. height: math.unit(12, "feet"),
  2580. default: true,
  2581. },
  2582. {
  2583. name: "Big",
  2584. height: math.unit(20, "feet")
  2585. },
  2586. {
  2587. name: "Minimacro",
  2588. height: math.unit(40, "feet"),
  2589. info: {
  2590. description: {
  2591. mode: "append",
  2592. text: "\n\nTOO DAMN BIG"
  2593. }
  2594. }
  2595. },
  2596. {
  2597. name: "Macro",
  2598. height: math.unit(100, "feet"),
  2599. info: {
  2600. description: {
  2601. mode: "append",
  2602. text: "\n\nTOO DAMN BIG"
  2603. }
  2604. }
  2605. },
  2606. {
  2607. name: "Megamacro",
  2608. height: math.unit(2, "miles")
  2609. },
  2610. {
  2611. name: "Gigamacro",
  2612. height: math.unit(10, "earths")
  2613. },
  2614. ]
  2615. ))
  2616. characterMakers.push(() => makeCharacter(
  2617. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  2618. {
  2619. front: {
  2620. height: math.unit(183, "cm"),
  2621. weight: math.unit(80, "kg"),
  2622. name: "Front",
  2623. image: {
  2624. source: "./media/characters/sofia-fluttertail/front.svg",
  2625. bottom: 0.01,
  2626. extra: 2154 / 2081
  2627. }
  2628. },
  2629. frontAlt: {
  2630. height: math.unit(183, "cm"),
  2631. weight: math.unit(80, "kg"),
  2632. name: "Front (alt)",
  2633. image: {
  2634. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  2635. }
  2636. },
  2637. back: {
  2638. height: math.unit(183, "cm"),
  2639. weight: math.unit(80, "kg"),
  2640. name: "Back",
  2641. image: {
  2642. source: "./media/characters/sofia-fluttertail/back.svg"
  2643. }
  2644. },
  2645. kneeling: {
  2646. height: math.unit(125, "cm"),
  2647. weight: math.unit(80, "kg"),
  2648. name: "Kneeling",
  2649. image: {
  2650. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  2651. extra: 1033 / 977,
  2652. bottom: 23.7 / 1057
  2653. }
  2654. },
  2655. maw: {
  2656. height: math.unit(183 / 5, "cm"),
  2657. name: "Maw",
  2658. image: {
  2659. source: "./media/characters/sofia-fluttertail/maw.svg"
  2660. }
  2661. },
  2662. mawcloseup: {
  2663. height: math.unit(183 / 5 * 0.41, "cm"),
  2664. name: "Maw (Closeup)",
  2665. image: {
  2666. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  2667. }
  2668. },
  2669. paws: {
  2670. height: math.unit(1.17, "feet"),
  2671. name: "Paws",
  2672. image: {
  2673. source: "./media/characters/sofia-fluttertail/paws.svg",
  2674. extra: 851 / 851,
  2675. bottom: 17 / 868
  2676. }
  2677. },
  2678. },
  2679. [
  2680. {
  2681. name: "Normal",
  2682. height: math.unit(1.83, "meter")
  2683. },
  2684. {
  2685. name: "Size Thief",
  2686. height: math.unit(18, "feet")
  2687. },
  2688. {
  2689. name: "50 Foot Collie",
  2690. height: math.unit(50, "feet")
  2691. },
  2692. {
  2693. name: "Macro",
  2694. height: math.unit(96, "feet"),
  2695. default: true
  2696. },
  2697. {
  2698. name: "Megamerger",
  2699. height: math.unit(650, "feet")
  2700. },
  2701. ]
  2702. ))
  2703. characterMakers.push(() => makeCharacter(
  2704. { name: "March", species: ["dragon"], tags: ["anthro"] },
  2705. {
  2706. front: {
  2707. height: math.unit(7, "feet"),
  2708. weight: math.unit(100, "kg"),
  2709. name: "Front",
  2710. image: {
  2711. source: "./media/characters/march/front.svg",
  2712. extra: 1992/1851,
  2713. bottom: 39/2031
  2714. }
  2715. },
  2716. foot: {
  2717. height: math.unit(0.9, "feet"),
  2718. name: "Foot",
  2719. image: {
  2720. source: "./media/characters/march/foot.svg"
  2721. }
  2722. },
  2723. },
  2724. [
  2725. {
  2726. name: "Normal",
  2727. height: math.unit(7.9, "feet")
  2728. },
  2729. {
  2730. name: "Macro",
  2731. height: math.unit(220, "meters")
  2732. },
  2733. {
  2734. name: "Megamacro",
  2735. height: math.unit(2.98, "km"),
  2736. default: true
  2737. },
  2738. {
  2739. name: "Gigamacro",
  2740. height: math.unit(15963, "km")
  2741. },
  2742. {
  2743. name: "Teramacro",
  2744. height: math.unit(2980000000, "km")
  2745. },
  2746. {
  2747. name: "Examacro",
  2748. height: math.unit(250, "parsecs")
  2749. },
  2750. ]
  2751. ))
  2752. characterMakers.push(() => makeCharacter(
  2753. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  2754. {
  2755. front: {
  2756. height: math.unit(6, "feet"),
  2757. weight: math.unit(60, "kg"),
  2758. name: "Front",
  2759. image: {
  2760. source: "./media/characters/noir/front.svg",
  2761. extra: 1,
  2762. bottom: 0.032
  2763. }
  2764. },
  2765. },
  2766. [
  2767. {
  2768. name: "Normal",
  2769. height: math.unit(6.6, "feet")
  2770. },
  2771. {
  2772. name: "Macro",
  2773. height: math.unit(500, "feet")
  2774. },
  2775. {
  2776. name: "Megamacro",
  2777. height: math.unit(2.5, "km"),
  2778. default: true
  2779. },
  2780. {
  2781. name: "Gigamacro",
  2782. height: math.unit(22500, "km")
  2783. },
  2784. {
  2785. name: "Teramacro",
  2786. height: math.unit(2500000000, "km")
  2787. },
  2788. {
  2789. name: "Examacro",
  2790. height: math.unit(200, "parsecs")
  2791. },
  2792. ]
  2793. ))
  2794. characterMakers.push(() => makeCharacter(
  2795. { name: "Okuri", species: ["sabresune"], tags: ["anthro"] },
  2796. {
  2797. front: {
  2798. height: math.unit(7, "feet"),
  2799. weight: math.unit(100, "kg"),
  2800. name: "Front",
  2801. image: {
  2802. source: "./media/characters/okuri/front.svg",
  2803. extra: 739/665,
  2804. bottom: 39/778
  2805. }
  2806. },
  2807. back: {
  2808. height: math.unit(7, "feet"),
  2809. weight: math.unit(100, "kg"),
  2810. name: "Back",
  2811. image: {
  2812. source: "./media/characters/okuri/back.svg",
  2813. extra: 734/653,
  2814. bottom: 13/747
  2815. }
  2816. },
  2817. sitting: {
  2818. height: math.unit(2.95, "feet"),
  2819. weight: math.unit(100, "kg"),
  2820. name: "Sitting",
  2821. image: {
  2822. source: "./media/characters/okuri/sitting.svg",
  2823. extra: 370/318,
  2824. bottom: 99/469
  2825. }
  2826. },
  2827. },
  2828. [
  2829. {
  2830. name: "Smallest",
  2831. height: math.unit(5 + 2/12, "feet")
  2832. },
  2833. {
  2834. name: "Smaller",
  2835. height: math.unit(300, "feet")
  2836. },
  2837. {
  2838. name: "Small",
  2839. height: math.unit(1000, "feet")
  2840. },
  2841. {
  2842. name: "Macro",
  2843. height: math.unit(1, "mile")
  2844. },
  2845. {
  2846. name: "Mega Macro (Small)",
  2847. height: math.unit(20, "km")
  2848. },
  2849. {
  2850. name: "Mega Macro (Large)",
  2851. height: math.unit(600, "km")
  2852. },
  2853. {
  2854. name: "Giga Macro",
  2855. height: math.unit(10000, "km")
  2856. },
  2857. {
  2858. name: "Normal",
  2859. height: math.unit(577560, "km"),
  2860. default: true
  2861. },
  2862. {
  2863. name: "Large",
  2864. height: math.unit(4, "galaxies")
  2865. },
  2866. {
  2867. name: "Largest",
  2868. height: math.unit(15, "multiverses")
  2869. },
  2870. ]
  2871. ))
  2872. characterMakers.push(() => makeCharacter(
  2873. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  2874. {
  2875. front: {
  2876. height: math.unit(7, "feet"),
  2877. weight: math.unit(100, "kg"),
  2878. name: "Front",
  2879. image: {
  2880. source: "./media/characters/manny/front.svg",
  2881. extra: 1,
  2882. bottom: 0.06
  2883. }
  2884. },
  2885. back: {
  2886. height: math.unit(7, "feet"),
  2887. weight: math.unit(100, "kg"),
  2888. name: "Back",
  2889. image: {
  2890. source: "./media/characters/manny/back.svg",
  2891. extra: 1,
  2892. bottom: 0.014
  2893. }
  2894. },
  2895. },
  2896. [
  2897. {
  2898. name: "Normal",
  2899. height: math.unit(7, "feet"),
  2900. },
  2901. {
  2902. name: "Macro",
  2903. height: math.unit(78, "feet"),
  2904. default: true
  2905. },
  2906. {
  2907. name: "Macro+",
  2908. height: math.unit(300, "meters")
  2909. },
  2910. {
  2911. name: "Macro++",
  2912. height: math.unit(2400, "meters")
  2913. },
  2914. {
  2915. name: "Megamacro",
  2916. height: math.unit(5167, "meters")
  2917. },
  2918. {
  2919. name: "Gigamacro",
  2920. height: math.unit(41769, "miles")
  2921. },
  2922. ]
  2923. ))
  2924. characterMakers.push(() => makeCharacter(
  2925. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  2926. {
  2927. front: {
  2928. height: math.unit(7, "feet"),
  2929. weight: math.unit(100, "kg"),
  2930. name: "Front",
  2931. image: {
  2932. source: "./media/characters/adake/front-1.svg"
  2933. }
  2934. },
  2935. frontAlt: {
  2936. height: math.unit(7, "feet"),
  2937. weight: math.unit(100, "kg"),
  2938. name: "Front (Alt)",
  2939. image: {
  2940. source: "./media/characters/adake/front-2.svg",
  2941. extra: 1,
  2942. bottom: 0.01
  2943. }
  2944. },
  2945. back: {
  2946. height: math.unit(7, "feet"),
  2947. weight: math.unit(100, "kg"),
  2948. name: "Back",
  2949. image: {
  2950. source: "./media/characters/adake/back.svg",
  2951. }
  2952. },
  2953. kneel: {
  2954. height: math.unit(5.385, "feet"),
  2955. weight: math.unit(100, "kg"),
  2956. name: "Kneeling",
  2957. image: {
  2958. source: "./media/characters/adake/kneel.svg",
  2959. bottom: 0.052
  2960. }
  2961. },
  2962. },
  2963. [
  2964. {
  2965. name: "Normal",
  2966. height: math.unit(7, "feet"),
  2967. },
  2968. {
  2969. name: "Macro",
  2970. height: math.unit(78, "feet"),
  2971. default: true
  2972. },
  2973. {
  2974. name: "Macro+",
  2975. height: math.unit(300, "meters")
  2976. },
  2977. {
  2978. name: "Macro++",
  2979. height: math.unit(2400, "meters")
  2980. },
  2981. {
  2982. name: "Megamacro",
  2983. height: math.unit(5167, "meters")
  2984. },
  2985. {
  2986. name: "Gigamacro",
  2987. height: math.unit(41769, "miles")
  2988. },
  2989. ]
  2990. ))
  2991. characterMakers.push(() => makeCharacter(
  2992. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2993. {
  2994. front: {
  2995. height: math.unit(1.65, "meters"),
  2996. weight: math.unit(50, "kg"),
  2997. name: "Front",
  2998. image: {
  2999. source: "./media/characters/elijah/front.svg",
  3000. extra: 858 / 830,
  3001. bottom: 95.5 / 953.8559
  3002. }
  3003. },
  3004. back: {
  3005. height: math.unit(1.65, "meters"),
  3006. weight: math.unit(50, "kg"),
  3007. name: "Back",
  3008. image: {
  3009. source: "./media/characters/elijah/back.svg",
  3010. extra: 895 / 850,
  3011. bottom: 5.3 / 897.956
  3012. }
  3013. },
  3014. frontNsfw: {
  3015. height: math.unit(1.65, "meters"),
  3016. weight: math.unit(50, "kg"),
  3017. name: "Front (NSFW)",
  3018. image: {
  3019. source: "./media/characters/elijah/front-nsfw.svg",
  3020. extra: 858 / 830,
  3021. bottom: 95.5 / 953.8559
  3022. }
  3023. },
  3024. backNsfw: {
  3025. height: math.unit(1.65, "meters"),
  3026. weight: math.unit(50, "kg"),
  3027. name: "Back (NSFW)",
  3028. image: {
  3029. source: "./media/characters/elijah/back-nsfw.svg",
  3030. extra: 895 / 850,
  3031. bottom: 5.3 / 897.956
  3032. }
  3033. },
  3034. dick: {
  3035. height: math.unit(1, "feet"),
  3036. name: "Dick",
  3037. image: {
  3038. source: "./media/characters/elijah/dick.svg"
  3039. }
  3040. },
  3041. beakOpen: {
  3042. height: math.unit(1.25, "feet"),
  3043. name: "Beak (Open)",
  3044. image: {
  3045. source: "./media/characters/elijah/beak-open.svg"
  3046. }
  3047. },
  3048. beakShut: {
  3049. height: math.unit(1.25, "feet"),
  3050. name: "Beak (Shut)",
  3051. image: {
  3052. source: "./media/characters/elijah/beak-shut.svg"
  3053. }
  3054. },
  3055. footFlexing: {
  3056. height: math.unit(1.61, "feet"),
  3057. name: "Foot (Flexing)",
  3058. image: {
  3059. source: "./media/characters/elijah/foot-flexing.svg"
  3060. }
  3061. },
  3062. footStepping: {
  3063. height: math.unit(1.44, "feet"),
  3064. name: "Foot (Stepping)",
  3065. image: {
  3066. source: "./media/characters/elijah/foot-stepping.svg"
  3067. }
  3068. },
  3069. plantigradeLeg: {
  3070. height: math.unit(2.34, "feet"),
  3071. name: "Plantigrade Leg",
  3072. image: {
  3073. source: "./media/characters/elijah/plantigrade-leg.svg"
  3074. }
  3075. },
  3076. plantigradeFootLeft: {
  3077. height: math.unit(0.9, "feet"),
  3078. name: "Plantigrade Foot (Left)",
  3079. image: {
  3080. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  3081. }
  3082. },
  3083. plantigradeFootRight: {
  3084. height: math.unit(0.9, "feet"),
  3085. name: "Plantigrade Foot (Right)",
  3086. image: {
  3087. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  3088. }
  3089. },
  3090. },
  3091. [
  3092. {
  3093. name: "Normal",
  3094. height: math.unit(1.65, "meters")
  3095. },
  3096. {
  3097. name: "Macro",
  3098. height: math.unit(55, "meters"),
  3099. default: true
  3100. },
  3101. {
  3102. name: "Macro+",
  3103. height: math.unit(105, "meters")
  3104. },
  3105. ]
  3106. ))
  3107. characterMakers.push(() => makeCharacter(
  3108. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  3109. {
  3110. front: {
  3111. height: math.unit(7 + 2/12, "feet"),
  3112. weight: math.unit(320, "kg"),
  3113. preyCapacity: math.unit(0.276549935, "people"),
  3114. name: "Front",
  3115. image: {
  3116. source: "./media/characters/rai/front.svg",
  3117. extra: 1802/1696,
  3118. bottom: 68/1870
  3119. },
  3120. form: "anthro",
  3121. default: true
  3122. },
  3123. frontDressed: {
  3124. height: math.unit(7 + 2/12, "feet"),
  3125. weight: math.unit(320, "kg"),
  3126. preyCapacity: math.unit(0.276549935, "people"),
  3127. name: "Front (Dressed)",
  3128. image: {
  3129. source: "./media/characters/rai/front-dressed.svg",
  3130. extra: 1802/1696,
  3131. bottom: 68/1870
  3132. },
  3133. form: "anthro"
  3134. },
  3135. side: {
  3136. height: math.unit(7 + 2/12, "feet"),
  3137. weight: math.unit(320, "kg"),
  3138. preyCapacity: math.unit(0.276549935, "people"),
  3139. name: "Side",
  3140. image: {
  3141. source: "./media/characters/rai/side.svg",
  3142. extra: 1789/1710,
  3143. bottom: 115/1904
  3144. },
  3145. form: "anthro"
  3146. },
  3147. back: {
  3148. height: math.unit(7 + 2/12, "feet"),
  3149. weight: math.unit(320, "kg"),
  3150. preyCapacity: math.unit(0.276549935, "people"),
  3151. name: "Back",
  3152. image: {
  3153. source: "./media/characters/rai/back.svg",
  3154. extra: 1770/1707,
  3155. bottom: 28/1798
  3156. },
  3157. form: "anthro"
  3158. },
  3159. feral: {
  3160. height: math.unit(9.5, "feet"),
  3161. weight: math.unit(640, "kg"),
  3162. preyCapacity: math.unit(4, "people"),
  3163. name: "Feral",
  3164. image: {
  3165. source: "./media/characters/rai/feral.svg",
  3166. extra: 945/553,
  3167. bottom: 176/1121
  3168. },
  3169. form: "feral",
  3170. default: true
  3171. },
  3172. dragon: {
  3173. height: math.unit(23, "feet"),
  3174. weight: math.unit(50000, "lb"),
  3175. name: "Dragon",
  3176. image: {
  3177. source: "./media/characters/rai/dragon.svg",
  3178. extra: 2498 / 2030,
  3179. bottom: 85.2 / 2584
  3180. },
  3181. form: "dragon",
  3182. default: true
  3183. },
  3184. maw: {
  3185. height: math.unit(1.69, "feet"),
  3186. name: "Maw",
  3187. image: {
  3188. source: "./media/characters/rai/maw.svg"
  3189. },
  3190. form: "anthro"
  3191. },
  3192. },
  3193. [
  3194. {
  3195. name: "Normal",
  3196. height: math.unit(7 + 2/12, "feet"),
  3197. form: "anthro"
  3198. },
  3199. {
  3200. name: "Big",
  3201. height: math.unit(11, "feet"),
  3202. form: "anthro"
  3203. },
  3204. {
  3205. name: "Minimacro",
  3206. height: math.unit(77, "feet"),
  3207. form: "anthro"
  3208. },
  3209. {
  3210. name: "Macro",
  3211. height: math.unit(302, "feet"),
  3212. default: true,
  3213. form: "anthro"
  3214. },
  3215. {
  3216. name: "Normal",
  3217. height: math.unit(9.5, "feet"),
  3218. form: "feral",
  3219. default: true
  3220. },
  3221. {
  3222. name: "Normal",
  3223. height: math.unit(23, "feet"),
  3224. form: "dragon",
  3225. default: true
  3226. }
  3227. ],
  3228. {
  3229. "anthro": {
  3230. name: "Anthro",
  3231. default: true
  3232. },
  3233. "feral": {
  3234. name: "Feral",
  3235. },
  3236. "dragon": {
  3237. name: "Dragon",
  3238. },
  3239. }
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  3243. {
  3244. frontDressed: {
  3245. height: math.unit(216, "feet"),
  3246. weight: math.unit(7000000, "lb"),
  3247. preyCapacity: math.unit(1321, "people"),
  3248. name: "Front (Dressed)",
  3249. image: {
  3250. source: "./media/characters/jazzy/front-dressed.svg",
  3251. extra: 2738 / 2651,
  3252. bottom: 41.8 / 2786
  3253. }
  3254. },
  3255. backDressed: {
  3256. height: math.unit(216, "feet"),
  3257. weight: math.unit(7000000, "lb"),
  3258. preyCapacity: math.unit(1321, "people"),
  3259. name: "Back (Dressed)",
  3260. image: {
  3261. source: "./media/characters/jazzy/back-dressed.svg",
  3262. extra: 2775 / 2673,
  3263. bottom: 36.8 / 2817
  3264. }
  3265. },
  3266. front: {
  3267. height: math.unit(216, "feet"),
  3268. weight: math.unit(7000000, "lb"),
  3269. preyCapacity: math.unit(1321, "people"),
  3270. name: "Front",
  3271. image: {
  3272. source: "./media/characters/jazzy/front.svg",
  3273. extra: 2738 / 2651,
  3274. bottom: 41.8 / 2786
  3275. }
  3276. },
  3277. back: {
  3278. height: math.unit(216, "feet"),
  3279. weight: math.unit(7000000, "lb"),
  3280. preyCapacity: math.unit(1321, "people"),
  3281. name: "Back",
  3282. image: {
  3283. source: "./media/characters/jazzy/back.svg",
  3284. extra: 2775 / 2673,
  3285. bottom: 36.8 / 2817
  3286. }
  3287. },
  3288. maw: {
  3289. height: math.unit(20, "feet"),
  3290. name: "Maw",
  3291. image: {
  3292. source: "./media/characters/jazzy/maw.svg"
  3293. }
  3294. },
  3295. paws: {
  3296. height: math.unit(27.5, "feet"),
  3297. name: "Paws",
  3298. image: {
  3299. source: "./media/characters/jazzy/paws.svg"
  3300. }
  3301. },
  3302. eye: {
  3303. height: math.unit(4.4, "feet"),
  3304. name: "Eye",
  3305. image: {
  3306. source: "./media/characters/jazzy/eye.svg"
  3307. }
  3308. },
  3309. droneOffense: {
  3310. height: math.unit(9.5, "inches"),
  3311. name: "Drone (Offense)",
  3312. image: {
  3313. source: "./media/characters/jazzy/drone-offense.svg"
  3314. }
  3315. },
  3316. droneRecon: {
  3317. height: math.unit(9.5, "inches"),
  3318. name: "Drone (Recon)",
  3319. image: {
  3320. source: "./media/characters/jazzy/drone-recon.svg"
  3321. }
  3322. },
  3323. droneDefense: {
  3324. height: math.unit(9.5, "inches"),
  3325. name: "Drone (Defense)",
  3326. image: {
  3327. source: "./media/characters/jazzy/drone-defense.svg"
  3328. }
  3329. },
  3330. },
  3331. [
  3332. {
  3333. name: "Macro",
  3334. height: math.unit(216, "feet"),
  3335. default: true
  3336. },
  3337. ]
  3338. ))
  3339. characterMakers.push(() => makeCharacter(
  3340. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  3341. {
  3342. front: {
  3343. height: math.unit(9 + 6/12, "feet"),
  3344. weight: math.unit(700, "lb"),
  3345. name: "Front",
  3346. image: {
  3347. source: "./media/characters/flamm/front.svg",
  3348. extra: 1736/1596,
  3349. bottom: 93/1829
  3350. }
  3351. },
  3352. buff: {
  3353. height: math.unit(9 + 6/12, "feet"),
  3354. weight: math.unit(950, "lb"),
  3355. name: "Buff",
  3356. image: {
  3357. source: "./media/characters/flamm/buff.svg",
  3358. extra: 3018/2874,
  3359. bottom: 221/3239
  3360. }
  3361. },
  3362. },
  3363. [
  3364. {
  3365. name: "Normal",
  3366. height: math.unit(9.5, "feet")
  3367. },
  3368. {
  3369. name: "Macro",
  3370. height: math.unit(200, "feet"),
  3371. default: true
  3372. },
  3373. ]
  3374. ))
  3375. characterMakers.push(() => makeCharacter(
  3376. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  3377. {
  3378. front: {
  3379. height: math.unit(5 + 3/12, "feet"),
  3380. weight: math.unit(60, "kg"),
  3381. name: "Front",
  3382. image: {
  3383. source: "./media/characters/zephiro/front.svg",
  3384. extra: 1873/1761,
  3385. bottom: 147/2020
  3386. }
  3387. },
  3388. side: {
  3389. height: math.unit(5 + 3/12, "feet"),
  3390. weight: math.unit(60, "kg"),
  3391. name: "Side",
  3392. image: {
  3393. source: "./media/characters/zephiro/side.svg",
  3394. extra: 1929/1827,
  3395. bottom: 65/1994
  3396. }
  3397. },
  3398. back: {
  3399. height: math.unit(5 + 3/12, "feet"),
  3400. weight: math.unit(60, "kg"),
  3401. name: "Back",
  3402. image: {
  3403. source: "./media/characters/zephiro/back.svg",
  3404. extra: 1926/1816,
  3405. bottom: 41/1967
  3406. }
  3407. },
  3408. hand: {
  3409. height: math.unit(0.68, "feet"),
  3410. name: "Hand",
  3411. image: {
  3412. source: "./media/characters/zephiro/hand.svg"
  3413. }
  3414. },
  3415. paw: {
  3416. height: math.unit(1, "feet"),
  3417. name: "Paw",
  3418. image: {
  3419. source: "./media/characters/zephiro/paw.svg"
  3420. }
  3421. },
  3422. beans: {
  3423. height: math.unit(0.93, "feet"),
  3424. name: "Beans",
  3425. image: {
  3426. source: "./media/characters/zephiro/beans.svg"
  3427. }
  3428. },
  3429. },
  3430. [
  3431. {
  3432. name: "Micro",
  3433. height: math.unit(3, "inches")
  3434. },
  3435. {
  3436. name: "Normal",
  3437. height: math.unit(5 + 3 / 12, "feet"),
  3438. default: true
  3439. },
  3440. {
  3441. name: "Macro",
  3442. height: math.unit(118, "feet")
  3443. },
  3444. ]
  3445. ))
  3446. characterMakers.push(() => makeCharacter(
  3447. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  3448. {
  3449. front: {
  3450. height: math.unit(5, "feet"),
  3451. weight: math.unit(90, "kg"),
  3452. preyCapacity: math.unit(14, "people"),
  3453. name: "Front",
  3454. image: {
  3455. source: "./media/characters/fory/front.svg",
  3456. extra: 2862 / 2674,
  3457. bottom: 180 / 3043.8
  3458. },
  3459. form: "weaselbun",
  3460. default: true,
  3461. extraAttributes: {
  3462. "pawSize": {
  3463. name: "Paw Size",
  3464. power: 2,
  3465. type: "area",
  3466. base: math.unit(0.1596, "m^2")
  3467. },
  3468. "pawLength": {
  3469. name: "Paw Length",
  3470. power: 1,
  3471. type: "length",
  3472. base: math.unit(0.7, "m")
  3473. }
  3474. }
  3475. },
  3476. back: {
  3477. height: math.unit(5, "feet"),
  3478. weight: math.unit(90, "kg"),
  3479. preyCapacity: math.unit(14, "people"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/fory/back.svg",
  3483. extra: 1790/1672,
  3484. bottom: 84/1874
  3485. },
  3486. form: "weaselbun",
  3487. extraAttributes: {
  3488. "pawSize": {
  3489. name: "Paw Size",
  3490. power: 2,
  3491. type: "area",
  3492. base: math.unit(0.1596, "m^2")
  3493. },
  3494. "pawLength": {
  3495. name: "Paw Length",
  3496. power: 1,
  3497. type: "length",
  3498. base: math.unit(0.7, "m")
  3499. }
  3500. }
  3501. },
  3502. paw: {
  3503. height: math.unit(2.14, "feet"),
  3504. name: "Paw",
  3505. image: {
  3506. source: "./media/characters/fory/paw.svg"
  3507. },
  3508. form: "weaselbun",
  3509. extraAttributes: {
  3510. "pawSize": {
  3511. name: "Paw Size",
  3512. power: 2,
  3513. type: "area",
  3514. base: math.unit(0.1596, "m^2")
  3515. },
  3516. "pawLength": {
  3517. name: "Paw Length",
  3518. power: 1,
  3519. type: "length",
  3520. base: math.unit(0.48, "m")
  3521. }
  3522. }
  3523. },
  3524. bunBack: {
  3525. height: math.unit(3, "feet"),
  3526. weight: math.unit(20, "kg"),
  3527. preyCapacity: math.unit(3, "people"),
  3528. name: "Back",
  3529. image: {
  3530. source: "./media/characters/fory/bun-back.svg",
  3531. extra: 1749/1564,
  3532. bottom: 246/1995
  3533. },
  3534. form: "bun",
  3535. default: true,
  3536. extraAttributes: {
  3537. "pawSize": {
  3538. name: "Paw Size",
  3539. power: 2,
  3540. type: "area",
  3541. base: math.unit(0.072, "m^2")
  3542. },
  3543. "pawLength": {
  3544. name: "Paw Length",
  3545. power: 1,
  3546. type: "length",
  3547. base: math.unit(0.45, "m")
  3548. }
  3549. }
  3550. },
  3551. },
  3552. [
  3553. {
  3554. name: "Normal",
  3555. height: math.unit(5, "feet"),
  3556. form: "weaselbun"
  3557. },
  3558. {
  3559. name: "Macro",
  3560. height: math.unit(50, "feet"),
  3561. default: true,
  3562. form: "weaselbun"
  3563. },
  3564. {
  3565. name: "Megamacro",
  3566. height: math.unit(10, "miles"),
  3567. form: "weaselbun"
  3568. },
  3569. {
  3570. name: "Gigamacro",
  3571. height: math.unit(5, "earths"),
  3572. form: "weaselbun"
  3573. },
  3574. {
  3575. name: "Normal",
  3576. height: math.unit(3, "feet"),
  3577. default: true,
  3578. form: "bun"
  3579. },
  3580. {
  3581. name: "Fun-Size",
  3582. height: math.unit(12, "feet"),
  3583. form: "bun"
  3584. },
  3585. {
  3586. name: "Macro",
  3587. height: math.unit(100, "feet"),
  3588. form: "bun"
  3589. },
  3590. {
  3591. name: "Planetary",
  3592. height: math.unit(3, "earths"),
  3593. form: "bun"
  3594. },
  3595. ],
  3596. {
  3597. "weaselbun": {
  3598. name: "Weaselbun",
  3599. default: true
  3600. },
  3601. "bun": {
  3602. name: "Bun",
  3603. },
  3604. }
  3605. ))
  3606. characterMakers.push(() => makeCharacter(
  3607. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  3608. {
  3609. front: {
  3610. height: math.unit(7, "feet"),
  3611. weight: math.unit(90, "kg"),
  3612. name: "Front",
  3613. image: {
  3614. source: "./media/characters/kurrikage/front.svg",
  3615. extra: 1845/1733,
  3616. bottom: 119/1964
  3617. }
  3618. },
  3619. back: {
  3620. height: math.unit(7, "feet"),
  3621. weight: math.unit(90, "kg"),
  3622. name: "Back",
  3623. image: {
  3624. source: "./media/characters/kurrikage/back.svg",
  3625. extra: 1790/1677,
  3626. bottom: 61/1851
  3627. }
  3628. },
  3629. dressed: {
  3630. height: math.unit(7, "feet"),
  3631. weight: math.unit(90, "kg"),
  3632. name: "Dressed",
  3633. image: {
  3634. source: "./media/characters/kurrikage/dressed.svg",
  3635. extra: 1845/1733,
  3636. bottom: 119/1964
  3637. }
  3638. },
  3639. foot: {
  3640. height: math.unit(1.5, "feet"),
  3641. name: "Foot",
  3642. image: {
  3643. source: "./media/characters/kurrikage/foot.svg"
  3644. }
  3645. },
  3646. staff: {
  3647. height: math.unit(6.7, "feet"),
  3648. name: "Staff",
  3649. image: {
  3650. source: "./media/characters/kurrikage/staff.svg"
  3651. }
  3652. },
  3653. peek: {
  3654. height: math.unit(1.05, "feet"),
  3655. name: "Peeking",
  3656. image: {
  3657. source: "./media/characters/kurrikage/peek.svg",
  3658. bottom: 0.08
  3659. }
  3660. },
  3661. },
  3662. [
  3663. {
  3664. name: "Normal",
  3665. height: math.unit(12, "feet"),
  3666. default: true
  3667. },
  3668. {
  3669. name: "Big",
  3670. height: math.unit(20, "feet")
  3671. },
  3672. {
  3673. name: "Macro",
  3674. height: math.unit(500, "feet")
  3675. },
  3676. {
  3677. name: "Megamacro",
  3678. height: math.unit(20, "miles")
  3679. },
  3680. ]
  3681. ))
  3682. characterMakers.push(() => makeCharacter(
  3683. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  3684. {
  3685. front: {
  3686. height: math.unit(6, "feet"),
  3687. weight: math.unit(75, "kg"),
  3688. name: "Front",
  3689. image: {
  3690. source: "./media/characters/shingo/front.svg",
  3691. extra: 1900/1825,
  3692. bottom: 82/1982
  3693. }
  3694. },
  3695. side: {
  3696. height: math.unit(6, "feet"),
  3697. weight: math.unit(75, "kg"),
  3698. name: "Side",
  3699. image: {
  3700. source: "./media/characters/shingo/side.svg",
  3701. extra: 1930/1865,
  3702. bottom: 16/1946
  3703. }
  3704. },
  3705. back: {
  3706. height: math.unit(6, "feet"),
  3707. weight: math.unit(75, "kg"),
  3708. name: "Back",
  3709. image: {
  3710. source: "./media/characters/shingo/back.svg",
  3711. extra: 1922/1852,
  3712. bottom: 16/1938
  3713. }
  3714. },
  3715. frontDressed: {
  3716. height: math.unit(6, "feet"),
  3717. weight: math.unit(150, "lb"),
  3718. name: "Front-dressed",
  3719. image: {
  3720. source: "./media/characters/shingo/front-dressed.svg",
  3721. extra: 1900/1825,
  3722. bottom: 82/1982
  3723. }
  3724. },
  3725. paw: {
  3726. height: math.unit(1.29, "feet"),
  3727. name: "Paw",
  3728. image: {
  3729. source: "./media/characters/shingo/paw.svg"
  3730. }
  3731. },
  3732. hand: {
  3733. height: math.unit(1.07, "feet"),
  3734. name: "Hand",
  3735. image: {
  3736. source: "./media/characters/shingo/hand.svg"
  3737. }
  3738. },
  3739. frontAlt: {
  3740. height: math.unit(6, "feet"),
  3741. weight: math.unit(75, "kg"),
  3742. name: "Front (Alt)",
  3743. image: {
  3744. source: "./media/characters/shingo/front-alt.svg",
  3745. extra: 3511 / 3338,
  3746. bottom: 0.005
  3747. }
  3748. },
  3749. frontAlt2: {
  3750. height: math.unit(6, "feet"),
  3751. weight: math.unit(75, "kg"),
  3752. name: "Front (Alt 2)",
  3753. image: {
  3754. source: "./media/characters/shingo/front-alt-2.svg",
  3755. extra: 706/681,
  3756. bottom: 11/717
  3757. }
  3758. },
  3759. pawAlt: {
  3760. height: math.unit(1, "feet"),
  3761. name: "Paw (Alt)",
  3762. image: {
  3763. source: "./media/characters/shingo/paw-alt.svg"
  3764. }
  3765. },
  3766. },
  3767. [
  3768. {
  3769. name: "Micro",
  3770. height: math.unit(4, "inches")
  3771. },
  3772. {
  3773. name: "Normal",
  3774. height: math.unit(6, "feet"),
  3775. default: true
  3776. },
  3777. {
  3778. name: "Macro",
  3779. height: math.unit(108, "feet")
  3780. },
  3781. {
  3782. name: "Macro+",
  3783. height: math.unit(1500, "feet")
  3784. },
  3785. ]
  3786. ))
  3787. characterMakers.push(() => makeCharacter(
  3788. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  3789. {
  3790. side: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(75, "kg"),
  3793. name: "Side",
  3794. image: {
  3795. source: "./media/characters/aigey/side.svg"
  3796. }
  3797. },
  3798. },
  3799. [
  3800. {
  3801. name: "Macro",
  3802. height: math.unit(200, "feet"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Megamacro",
  3807. height: math.unit(100, "miles")
  3808. },
  3809. ]
  3810. )
  3811. )
  3812. characterMakers.push(() => makeCharacter(
  3813. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  3814. {
  3815. front: {
  3816. height: math.unit(5 + 5 / 12, "feet"),
  3817. weight: math.unit(75, "kg"),
  3818. name: "Front",
  3819. image: {
  3820. source: "./media/characters/natasha/front.svg",
  3821. extra: 859 / 824,
  3822. bottom: 23 / 879.6
  3823. }
  3824. },
  3825. frontNsfw: {
  3826. height: math.unit(5 + 5 / 12, "feet"),
  3827. weight: math.unit(75, "kg"),
  3828. name: "Front (NSFW)",
  3829. image: {
  3830. source: "./media/characters/natasha/front-nsfw.svg",
  3831. extra: 859 / 824,
  3832. bottom: 23 / 879.6
  3833. }
  3834. },
  3835. frontErect: {
  3836. height: math.unit(5 + 5 / 12, "feet"),
  3837. weight: math.unit(75, "kg"),
  3838. name: "Front (Erect)",
  3839. image: {
  3840. source: "./media/characters/natasha/front-erect.svg",
  3841. extra: 859 / 824,
  3842. bottom: 23 / 879.6
  3843. }
  3844. },
  3845. back: {
  3846. height: math.unit(5 + 5 / 12, "feet"),
  3847. weight: math.unit(75, "kg"),
  3848. name: "Back",
  3849. image: {
  3850. source: "./media/characters/natasha/back.svg",
  3851. extra: 887.9 / 852.6,
  3852. bottom: 9.7 / 896.4
  3853. }
  3854. },
  3855. backAlt: {
  3856. height: math.unit(5 + 5 / 12, "feet"),
  3857. weight: math.unit(75, "kg"),
  3858. name: "Back (Alt)",
  3859. image: {
  3860. source: "./media/characters/natasha/back-alt.svg",
  3861. extra: 1236.7 / 1192,
  3862. bottom: 22.3 / 1258.2
  3863. }
  3864. },
  3865. dick: {
  3866. height: math.unit(1.772, "feet"),
  3867. name: "Dick",
  3868. image: {
  3869. source: "./media/characters/natasha/dick.svg"
  3870. }
  3871. },
  3872. paw: {
  3873. height: math.unit(0.250, "meters"),
  3874. name: "Paw",
  3875. image: {
  3876. source: "./media/characters/natasha/paw.svg"
  3877. },
  3878. extraAttributes: {
  3879. "toeSize": {
  3880. name: "Toe Size",
  3881. power: 2,
  3882. type: "area",
  3883. base: math.unit(0.0024, "m^2")
  3884. },
  3885. "padSize": {
  3886. name: "Pad Size",
  3887. power: 2,
  3888. type: "area",
  3889. base: math.unit(0.00889, "m^2")
  3890. },
  3891. "pawSize": {
  3892. name: "Paw Size",
  3893. power: 2,
  3894. type: "area",
  3895. base: math.unit(0.023667, "m^2")
  3896. },
  3897. }
  3898. },
  3899. },
  3900. [
  3901. {
  3902. name: "Shortstack",
  3903. height: math.unit(3, "feet"),
  3904. default: true
  3905. },
  3906. {
  3907. name: "Normal",
  3908. height: math.unit(5 + 5 / 12, "feet")
  3909. },
  3910. {
  3911. name: "Large",
  3912. height: math.unit(12, "feet")
  3913. },
  3914. {
  3915. name: "Macro",
  3916. height: math.unit(100, "feet")
  3917. },
  3918. {
  3919. name: "Macro+",
  3920. height: math.unit(260, "feet")
  3921. },
  3922. {
  3923. name: "Macro++",
  3924. height: math.unit(1, "mile")
  3925. },
  3926. ]
  3927. ))
  3928. characterMakers.push(() => makeCharacter(
  3929. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  3930. {
  3931. front: {
  3932. height: math.unit(6, "feet"),
  3933. weight: math.unit(75, "kg"),
  3934. name: "Front",
  3935. image: {
  3936. source: "./media/characters/malik/front.svg",
  3937. extra: 1750/1561,
  3938. bottom: 80/1830
  3939. },
  3940. extraAttributes: {
  3941. "toeSize": {
  3942. name: "Toe Size",
  3943. power: 2,
  3944. type: "area",
  3945. base: math.unit(0.0159, "m^2")
  3946. },
  3947. "pawSize": {
  3948. name: "Paw Size",
  3949. power: 2,
  3950. type: "area",
  3951. base: math.unit(0.09834, "m^2")
  3952. },
  3953. }
  3954. },
  3955. side: {
  3956. height: math.unit(6, "feet"),
  3957. weight: math.unit(75, "kg"),
  3958. name: "Side",
  3959. image: {
  3960. source: "./media/characters/malik/side.svg",
  3961. extra: 1802/1685,
  3962. bottom: 42/1844
  3963. },
  3964. extraAttributes: {
  3965. "toeSize": {
  3966. name: "Toe Size",
  3967. power: 2,
  3968. type: "area",
  3969. base: math.unit(0.0159, "m^2")
  3970. },
  3971. "pawSize": {
  3972. name: "Paw Size",
  3973. power: 2,
  3974. type: "area",
  3975. base: math.unit(0.09834, "m^2")
  3976. },
  3977. }
  3978. },
  3979. back: {
  3980. height: math.unit(6, "feet"),
  3981. weight: math.unit(75, "kg"),
  3982. name: "Back",
  3983. image: {
  3984. source: "./media/characters/malik/back.svg",
  3985. extra: 1803/1607,
  3986. bottom: 33/1836
  3987. },
  3988. extraAttributes: {
  3989. "toeSize": {
  3990. name: "Toe Size",
  3991. power: 2,
  3992. type: "area",
  3993. base: math.unit(0.0159, "m^2")
  3994. },
  3995. "pawSize": {
  3996. name: "Paw Size",
  3997. power: 2,
  3998. type: "area",
  3999. base: math.unit(0.09834, "m^2")
  4000. },
  4001. }
  4002. },
  4003. },
  4004. [
  4005. {
  4006. name: "Macro",
  4007. height: math.unit(156, "feet"),
  4008. default: true
  4009. },
  4010. {
  4011. name: "Macro+",
  4012. height: math.unit(1188, "feet")
  4013. },
  4014. ]
  4015. ))
  4016. characterMakers.push(() => makeCharacter(
  4017. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  4018. {
  4019. front: {
  4020. height: math.unit(6, "feet"),
  4021. weight: math.unit(75, "kg"),
  4022. name: "Front",
  4023. image: {
  4024. source: "./media/characters/sefer/front.svg",
  4025. extra: 848 / 659,
  4026. bottom: 28.3 / 876.442
  4027. }
  4028. },
  4029. back: {
  4030. height: math.unit(6, "feet"),
  4031. weight: math.unit(75, "kg"),
  4032. name: "Back",
  4033. image: {
  4034. source: "./media/characters/sefer/back.svg",
  4035. extra: 864 / 695,
  4036. bottom: 10 / 871
  4037. }
  4038. },
  4039. frontDressed: {
  4040. height: math.unit(6, "feet"),
  4041. weight: math.unit(75, "kg"),
  4042. name: "Dressed",
  4043. image: {
  4044. source: "./media/characters/sefer/dressed.svg",
  4045. extra: 839 / 653,
  4046. bottom: 37.6 / 878
  4047. }
  4048. },
  4049. },
  4050. [
  4051. {
  4052. name: "Normal",
  4053. height: math.unit(6, "feet"),
  4054. default: true
  4055. },
  4056. {
  4057. name: "Big",
  4058. height: math.unit(8, "meters")
  4059. },
  4060. ]
  4061. ))
  4062. characterMakers.push(() => makeCharacter(
  4063. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  4064. {
  4065. body: {
  4066. height: math.unit(2.2428, "meter"),
  4067. weight: math.unit(124.738, "kg"),
  4068. name: "Body",
  4069. image: {
  4070. extra: 1225 / 1050,
  4071. source: "./media/characters/north/front.svg"
  4072. }
  4073. }
  4074. },
  4075. [
  4076. {
  4077. name: "Micro",
  4078. height: math.unit(4, "inches")
  4079. },
  4080. {
  4081. name: "Macro",
  4082. height: math.unit(63, "meters")
  4083. },
  4084. {
  4085. name: "Megamacro",
  4086. height: math.unit(101, "miles"),
  4087. default: true
  4088. }
  4089. ]
  4090. ))
  4091. characterMakers.push(() => makeCharacter(
  4092. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  4093. {
  4094. angled: {
  4095. height: math.unit(4, "meter"),
  4096. weight: math.unit(150, "kg"),
  4097. name: "Angled",
  4098. image: {
  4099. source: "./media/characters/talan/angled-sfw.svg",
  4100. bottom: 29 / 3734
  4101. }
  4102. },
  4103. angledNsfw: {
  4104. height: math.unit(4, "meter"),
  4105. weight: math.unit(150, "kg"),
  4106. name: "Angled (NSFW)",
  4107. image: {
  4108. source: "./media/characters/talan/angled-nsfw.svg",
  4109. bottom: 29 / 3734
  4110. }
  4111. },
  4112. frontNsfw: {
  4113. height: math.unit(4, "meter"),
  4114. weight: math.unit(150, "kg"),
  4115. name: "Front (NSFW)",
  4116. image: {
  4117. source: "./media/characters/talan/front-nsfw.svg",
  4118. bottom: 29 / 3734
  4119. }
  4120. },
  4121. sideNsfw: {
  4122. height: math.unit(4, "meter"),
  4123. weight: math.unit(150, "kg"),
  4124. name: "Side (NSFW)",
  4125. image: {
  4126. source: "./media/characters/talan/side-nsfw.svg",
  4127. bottom: 29 / 3734
  4128. }
  4129. },
  4130. back: {
  4131. height: math.unit(4, "meter"),
  4132. weight: math.unit(150, "kg"),
  4133. name: "Back",
  4134. image: {
  4135. source: "./media/characters/talan/back.svg"
  4136. }
  4137. },
  4138. dickBottom: {
  4139. height: math.unit(0.621, "meter"),
  4140. name: "Dick (Bottom)",
  4141. image: {
  4142. source: "./media/characters/talan/dick-bottom.svg"
  4143. }
  4144. },
  4145. dickTop: {
  4146. height: math.unit(0.621, "meter"),
  4147. name: "Dick (Top)",
  4148. image: {
  4149. source: "./media/characters/talan/dick-top.svg"
  4150. }
  4151. },
  4152. dickSide: {
  4153. height: math.unit(0.305, "meter"),
  4154. name: "Dick (Side)",
  4155. image: {
  4156. source: "./media/characters/talan/dick-side.svg"
  4157. }
  4158. },
  4159. dickFront: {
  4160. height: math.unit(0.305, "meter"),
  4161. name: "Dick (Front)",
  4162. image: {
  4163. source: "./media/characters/talan/dick-front.svg"
  4164. }
  4165. },
  4166. },
  4167. [
  4168. {
  4169. name: "Normal",
  4170. height: math.unit(4, "meters")
  4171. },
  4172. {
  4173. name: "Macro",
  4174. height: math.unit(100, "meters")
  4175. },
  4176. {
  4177. name: "Megamacro",
  4178. height: math.unit(2, "miles"),
  4179. default: true
  4180. },
  4181. {
  4182. name: "Gigamacro",
  4183. height: math.unit(5000, "miles")
  4184. },
  4185. {
  4186. name: "Teramacro",
  4187. height: math.unit(100, "parsecs")
  4188. }
  4189. ]
  4190. ))
  4191. characterMakers.push(() => makeCharacter(
  4192. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  4193. {
  4194. front: {
  4195. height: math.unit(2, "meter"),
  4196. weight: math.unit(90, "kg"),
  4197. name: "Front",
  4198. image: {
  4199. source: "./media/characters/gael'rathus/front.svg"
  4200. }
  4201. },
  4202. frontAlt: {
  4203. height: math.unit(2, "meter"),
  4204. weight: math.unit(90, "kg"),
  4205. name: "Front (alt)",
  4206. image: {
  4207. source: "./media/characters/gael'rathus/front-alt.svg"
  4208. }
  4209. },
  4210. frontAlt2: {
  4211. height: math.unit(2, "meter"),
  4212. weight: math.unit(90, "kg"),
  4213. name: "Front (alt 2)",
  4214. image: {
  4215. source: "./media/characters/gael'rathus/front-alt-2.svg"
  4216. }
  4217. }
  4218. },
  4219. [
  4220. {
  4221. name: "Normal",
  4222. height: math.unit(9, "feet"),
  4223. default: true
  4224. },
  4225. {
  4226. name: "Large",
  4227. height: math.unit(25, "feet")
  4228. },
  4229. {
  4230. name: "Macro",
  4231. height: math.unit(0.25, "miles")
  4232. },
  4233. {
  4234. name: "Megamacro",
  4235. height: math.unit(10, "miles")
  4236. }
  4237. ]
  4238. ))
  4239. characterMakers.push(() => makeCharacter(
  4240. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  4241. {
  4242. side: {
  4243. height: math.unit(2, "meter"),
  4244. weight: math.unit(140, "kg"),
  4245. name: "Side",
  4246. image: {
  4247. source: "./media/characters/sosha/side.svg",
  4248. extra: 1170/1006,
  4249. bottom: 94/1264
  4250. }
  4251. },
  4252. maw: {
  4253. height: math.unit(2.87, "feet"),
  4254. name: "Maw",
  4255. image: {
  4256. source: "./media/characters/sosha/maw.svg",
  4257. extra: 966/865,
  4258. bottom: 0/966
  4259. }
  4260. },
  4261. cooch: {
  4262. height: math.unit(5.6, "feet"),
  4263. name: "Cooch",
  4264. image: {
  4265. source: "./media/characters/sosha/cooch.svg"
  4266. }
  4267. },
  4268. },
  4269. [
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(12, "feet"),
  4273. default: true
  4274. }
  4275. ]
  4276. ))
  4277. characterMakers.push(() => makeCharacter(
  4278. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  4279. {
  4280. side: {
  4281. height: math.unit(5 + 5 / 12, "feet"),
  4282. weight: math.unit(170, "kg"),
  4283. name: "Side",
  4284. image: {
  4285. source: "./media/characters/runnola/side.svg",
  4286. extra: 741 / 448,
  4287. bottom: 0.05
  4288. }
  4289. },
  4290. },
  4291. [
  4292. {
  4293. name: "Small",
  4294. height: math.unit(3, "feet")
  4295. },
  4296. {
  4297. name: "Normal",
  4298. height: math.unit(5 + 5 / 12, "feet"),
  4299. default: true
  4300. },
  4301. {
  4302. name: "Big",
  4303. height: math.unit(10, "feet")
  4304. },
  4305. ]
  4306. ))
  4307. characterMakers.push(() => makeCharacter(
  4308. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  4309. {
  4310. front: {
  4311. height: math.unit(2, "meter"),
  4312. weight: math.unit(50, "kg"),
  4313. name: "Front",
  4314. image: {
  4315. source: "./media/characters/kurribird/front.svg",
  4316. bottom: 0.015
  4317. }
  4318. },
  4319. frontAlt: {
  4320. height: math.unit(1.5, "meter"),
  4321. weight: math.unit(50, "kg"),
  4322. name: "Front (Alt)",
  4323. image: {
  4324. source: "./media/characters/kurribird/front-alt.svg",
  4325. extra: 1.45
  4326. }
  4327. },
  4328. },
  4329. [
  4330. {
  4331. name: "Normal",
  4332. height: math.unit(7, "feet")
  4333. },
  4334. {
  4335. name: "Big",
  4336. height: math.unit(12, "feet"),
  4337. default: true
  4338. },
  4339. {
  4340. name: "Macro",
  4341. height: math.unit(1500, "feet")
  4342. },
  4343. {
  4344. name: "Megamacro",
  4345. height: math.unit(2, "miles")
  4346. }
  4347. ]
  4348. ))
  4349. characterMakers.push(() => makeCharacter(
  4350. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  4351. {
  4352. front: {
  4353. height: math.unit(2, "meter"),
  4354. weight: math.unit(80, "kg"),
  4355. name: "Front",
  4356. image: {
  4357. source: "./media/characters/elbial/front.svg",
  4358. extra: 1643 / 1556,
  4359. bottom: 60.2 / 1696
  4360. }
  4361. },
  4362. side: {
  4363. height: math.unit(2, "meter"),
  4364. weight: math.unit(80, "kg"),
  4365. name: "Side",
  4366. image: {
  4367. source: "./media/characters/elbial/side.svg",
  4368. extra: 1601/1528,
  4369. bottom: 97/1698
  4370. }
  4371. },
  4372. back: {
  4373. height: math.unit(2, "meter"),
  4374. weight: math.unit(80, "kg"),
  4375. name: "Back",
  4376. image: {
  4377. source: "./media/characters/elbial/back.svg",
  4378. extra: 1653/1569,
  4379. bottom: 20/1673
  4380. }
  4381. },
  4382. frontDressed: {
  4383. height: math.unit(2, "meter"),
  4384. weight: math.unit(80, "kg"),
  4385. name: "Front (Dressed)",
  4386. image: {
  4387. source: "./media/characters/elbial/front-dressed.svg",
  4388. extra: 1638/1569,
  4389. bottom: 70/1708
  4390. }
  4391. },
  4392. genitals: {
  4393. height: math.unit(2 / 3.367, "meter"),
  4394. name: "Genitals",
  4395. image: {
  4396. source: "./media/characters/elbial/genitals.svg"
  4397. }
  4398. },
  4399. },
  4400. [
  4401. {
  4402. name: "Large",
  4403. height: math.unit(100, "feet")
  4404. },
  4405. {
  4406. name: "Macro",
  4407. height: math.unit(500, "feet"),
  4408. default: true
  4409. },
  4410. {
  4411. name: "Megamacro",
  4412. height: math.unit(10, "miles")
  4413. },
  4414. {
  4415. name: "Gigamacro",
  4416. height: math.unit(25000, "miles")
  4417. },
  4418. {
  4419. name: "Full-Size",
  4420. height: math.unit(8000000, "gigaparsecs")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  4426. {
  4427. front: {
  4428. height: math.unit(2, "meter"),
  4429. weight: math.unit(60, "kg"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/noah/front.svg",
  4433. extra: 1383/1313,
  4434. bottom: 104/1487
  4435. }
  4436. },
  4437. hand: {
  4438. height: math.unit(0.6, "feet"),
  4439. name: "Hand",
  4440. image: {
  4441. source: "./media/characters/noah/hand.svg"
  4442. }
  4443. },
  4444. talons: {
  4445. height: math.unit(1.385, "feet"),
  4446. name: "Talons",
  4447. image: {
  4448. source: "./media/characters/noah/talons.svg"
  4449. }
  4450. },
  4451. beak: {
  4452. height: math.unit(0.43, "feet"),
  4453. name: "Beak",
  4454. image: {
  4455. source: "./media/characters/noah/beak.svg"
  4456. }
  4457. },
  4458. collar: {
  4459. height: math.unit(0.88, "feet"),
  4460. name: "Collar",
  4461. image: {
  4462. source: "./media/characters/noah/collar.svg"
  4463. }
  4464. },
  4465. eyeNarrow: {
  4466. height: math.unit(0.18, "feet"),
  4467. name: "Eye (Narrow)",
  4468. image: {
  4469. source: "./media/characters/noah/eye-narrow.svg"
  4470. }
  4471. },
  4472. eyeNormal: {
  4473. height: math.unit(0.18, "feet"),
  4474. name: "Eye (Normal)",
  4475. image: {
  4476. source: "./media/characters/noah/eye-normal.svg"
  4477. }
  4478. },
  4479. eyeWide: {
  4480. height: math.unit(0.18, "feet"),
  4481. name: "Eye (Wide)",
  4482. image: {
  4483. source: "./media/characters/noah/eye-wide.svg"
  4484. }
  4485. },
  4486. ear: {
  4487. height: math.unit(0.64, "feet"),
  4488. name: "Ear",
  4489. image: {
  4490. source: "./media/characters/noah/ear.svg"
  4491. }
  4492. },
  4493. },
  4494. [
  4495. {
  4496. name: "Large",
  4497. height: math.unit(50, "feet")
  4498. },
  4499. {
  4500. name: "Macro",
  4501. height: math.unit(750, "feet"),
  4502. default: true
  4503. },
  4504. {
  4505. name: "Megamacro",
  4506. height: math.unit(50, "miles")
  4507. },
  4508. {
  4509. name: "Gigamacro",
  4510. height: math.unit(100000, "miles")
  4511. },
  4512. {
  4513. name: "Full-Size",
  4514. height: math.unit(3000000000, "miles")
  4515. }
  4516. ]
  4517. ))
  4518. characterMakers.push(() => makeCharacter(
  4519. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  4520. {
  4521. front: {
  4522. height: math.unit(2, "meter"),
  4523. weight: math.unit(80, "kg"),
  4524. name: "Front",
  4525. image: {
  4526. source: "./media/characters/natalya/front.svg"
  4527. }
  4528. },
  4529. back: {
  4530. height: math.unit(2, "meter"),
  4531. weight: math.unit(80, "kg"),
  4532. name: "Back",
  4533. image: {
  4534. source: "./media/characters/natalya/back.svg"
  4535. }
  4536. }
  4537. },
  4538. [
  4539. {
  4540. name: "Normal",
  4541. height: math.unit(150, "feet"),
  4542. default: true
  4543. },
  4544. {
  4545. name: "Megamacro",
  4546. height: math.unit(5, "miles")
  4547. },
  4548. {
  4549. name: "Full-Size",
  4550. height: math.unit(600, "kiloparsecs")
  4551. }
  4552. ]
  4553. ))
  4554. characterMakers.push(() => makeCharacter(
  4555. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  4556. {
  4557. front: {
  4558. height: math.unit(2, "meter"),
  4559. weight: math.unit(50, "kg"),
  4560. name: "Front",
  4561. image: {
  4562. source: "./media/characters/erestrebah/front.svg",
  4563. extra: 1262/1162,
  4564. bottom: 96/1358
  4565. }
  4566. },
  4567. back: {
  4568. height: math.unit(2, "meter"),
  4569. weight: math.unit(50, "kg"),
  4570. name: "Back",
  4571. image: {
  4572. source: "./media/characters/erestrebah/back.svg",
  4573. extra: 1257/1139,
  4574. bottom: 13/1270
  4575. }
  4576. },
  4577. wing: {
  4578. height: math.unit(2, "meter"),
  4579. weight: math.unit(50, "kg"),
  4580. name: "Wing",
  4581. image: {
  4582. source: "./media/characters/erestrebah/wing.svg",
  4583. extra: 1262/1162,
  4584. bottom: 96/1358
  4585. }
  4586. },
  4587. mouth: {
  4588. height: math.unit(0.39, "feet"),
  4589. name: "Mouth",
  4590. image: {
  4591. source: "./media/characters/erestrebah/mouth.svg"
  4592. }
  4593. }
  4594. },
  4595. [
  4596. {
  4597. name: "Normal",
  4598. height: math.unit(10, "feet")
  4599. },
  4600. {
  4601. name: "Large",
  4602. height: math.unit(50, "feet"),
  4603. default: true
  4604. },
  4605. {
  4606. name: "Macro",
  4607. height: math.unit(300, "feet")
  4608. },
  4609. {
  4610. name: "Macro+",
  4611. height: math.unit(750, "feet")
  4612. },
  4613. {
  4614. name: "Megamacro",
  4615. height: math.unit(3, "miles")
  4616. }
  4617. ]
  4618. ))
  4619. characterMakers.push(() => makeCharacter(
  4620. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  4621. {
  4622. front: {
  4623. height: math.unit(2, "meter"),
  4624. weight: math.unit(80, "kg"),
  4625. name: "Front",
  4626. image: {
  4627. source: "./media/characters/jennifer/front.svg",
  4628. bottom: 0.11,
  4629. extra: 1.16
  4630. }
  4631. },
  4632. frontAlt: {
  4633. height: math.unit(2, "meter"),
  4634. weight: math.unit(80, "kg"),
  4635. name: "Front (Alt)",
  4636. image: {
  4637. source: "./media/characters/jennifer/front-alt.svg"
  4638. }
  4639. }
  4640. },
  4641. [
  4642. {
  4643. name: "Canon Height",
  4644. height: math.unit(120, "feet"),
  4645. default: true
  4646. },
  4647. {
  4648. name: "Macro+",
  4649. height: math.unit(300, "feet")
  4650. },
  4651. {
  4652. name: "Megamacro",
  4653. height: math.unit(20000, "feet")
  4654. }
  4655. ]
  4656. ))
  4657. characterMakers.push(() => makeCharacter(
  4658. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  4659. {
  4660. front: {
  4661. height: math.unit(2, "meter"),
  4662. weight: math.unit(50, "kg"),
  4663. name: "Front",
  4664. image: {
  4665. source: "./media/characters/kalista/front.svg",
  4666. extra: 1314/1145,
  4667. bottom: 101/1415
  4668. }
  4669. },
  4670. back: {
  4671. height: math.unit(2, "meter"),
  4672. weight: math.unit(50, "kg"),
  4673. name: "Back",
  4674. image: {
  4675. source: "./media/characters/kalista/back.svg",
  4676. extra: 1366 / 1156,
  4677. bottom: 33.9 / 1362.78
  4678. }
  4679. }
  4680. },
  4681. [
  4682. {
  4683. name: "Uncomfortably Small",
  4684. height: math.unit(10, "feet")
  4685. },
  4686. {
  4687. name: "Small",
  4688. height: math.unit(30, "feet")
  4689. },
  4690. {
  4691. name: "Macro",
  4692. height: math.unit(100, "feet"),
  4693. default: true
  4694. },
  4695. {
  4696. name: "Macro+",
  4697. height: math.unit(2000, "feet")
  4698. },
  4699. {
  4700. name: "True Form",
  4701. height: math.unit(8924, "miles")
  4702. }
  4703. ]
  4704. ))
  4705. characterMakers.push(() => makeCharacter(
  4706. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  4707. {
  4708. front: {
  4709. height: math.unit(2, "meter"),
  4710. weight: math.unit(120, "kg"),
  4711. name: "Front",
  4712. image: {
  4713. source: "./media/characters/ggv/front.svg"
  4714. }
  4715. },
  4716. side: {
  4717. height: math.unit(2, "meter"),
  4718. weight: math.unit(120, "kg"),
  4719. name: "Side",
  4720. image: {
  4721. source: "./media/characters/ggv/side.svg"
  4722. }
  4723. }
  4724. },
  4725. [
  4726. {
  4727. name: "Extremely Puny",
  4728. height: math.unit(9 + 5 / 12, "feet")
  4729. },
  4730. {
  4731. name: "Horribly Small",
  4732. height: math.unit(47.7, "miles"),
  4733. default: true
  4734. },
  4735. {
  4736. name: "Reasonably Sized",
  4737. height: math.unit(25000, "parsecs")
  4738. },
  4739. {
  4740. name: "Slightly Uncompressed",
  4741. height: math.unit(7.77e31, "parsecs")
  4742. },
  4743. {
  4744. name: "Omniversal",
  4745. height: math.unit(1e300, "meters")
  4746. },
  4747. ]
  4748. ))
  4749. characterMakers.push(() => makeCharacter(
  4750. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  4751. {
  4752. front: {
  4753. height: math.unit(2, "meter"),
  4754. weight: math.unit(75, "lb"),
  4755. name: "Front",
  4756. image: {
  4757. source: "./media/characters/napalm/front.svg"
  4758. }
  4759. },
  4760. back: {
  4761. height: math.unit(2, "meter"),
  4762. weight: math.unit(75, "lb"),
  4763. name: "Back",
  4764. image: {
  4765. source: "./media/characters/napalm/back.svg"
  4766. }
  4767. }
  4768. },
  4769. [
  4770. {
  4771. name: "Standard",
  4772. height: math.unit(55, "feet"),
  4773. default: true
  4774. }
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  4779. {
  4780. front: {
  4781. height: math.unit(7 + 5 / 6, "feet"),
  4782. weight: math.unit(325, "lb"),
  4783. name: "Front",
  4784. image: {
  4785. source: "./media/characters/asana/front.svg",
  4786. extra: 1133 / 1060,
  4787. bottom: 15.2 / 1148.6
  4788. }
  4789. },
  4790. back: {
  4791. height: math.unit(7 + 5 / 6, "feet"),
  4792. weight: math.unit(325, "lb"),
  4793. name: "Back",
  4794. image: {
  4795. source: "./media/characters/asana/back.svg",
  4796. extra: 1114 / 1043,
  4797. bottom: 5 / 1120
  4798. }
  4799. },
  4800. dressedDark: {
  4801. height: math.unit(7 + 5 / 6, "feet"),
  4802. weight: math.unit(325, "lb"),
  4803. name: "Dressed (Dark)",
  4804. image: {
  4805. source: "./media/characters/asana/dressed-dark.svg",
  4806. extra: 1133 / 1060,
  4807. bottom: 15.2 / 1148.6
  4808. }
  4809. },
  4810. dressedLight: {
  4811. height: math.unit(7 + 5 / 6, "feet"),
  4812. weight: math.unit(325, "lb"),
  4813. name: "Dressed (Light)",
  4814. image: {
  4815. source: "./media/characters/asana/dressed-light.svg",
  4816. extra: 1133 / 1060,
  4817. bottom: 15.2 / 1148.6
  4818. }
  4819. },
  4820. },
  4821. [
  4822. {
  4823. name: "Standard",
  4824. height: math.unit(7 + 5 / 6, "feet"),
  4825. default: true
  4826. },
  4827. {
  4828. name: "Large",
  4829. height: math.unit(10, "meters")
  4830. },
  4831. {
  4832. name: "Macro",
  4833. height: math.unit(2500, "meters")
  4834. },
  4835. {
  4836. name: "Megamacro",
  4837. height: math.unit(5e6, "meters")
  4838. },
  4839. {
  4840. name: "Examacro",
  4841. height: math.unit(5e12, "lightyears")
  4842. },
  4843. {
  4844. name: "Max Size",
  4845. height: math.unit(1e31, "lightyears")
  4846. }
  4847. ]
  4848. ))
  4849. characterMakers.push(() => makeCharacter(
  4850. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  4851. {
  4852. front: {
  4853. height: math.unit(2, "meter"),
  4854. weight: math.unit(60, "kg"),
  4855. name: "Front",
  4856. image: {
  4857. source: "./media/characters/ebony/front.svg",
  4858. bottom: 0.03,
  4859. extra: 1045 / 810 + 0.03
  4860. }
  4861. },
  4862. side: {
  4863. height: math.unit(2, "meter"),
  4864. weight: math.unit(60, "kg"),
  4865. name: "Side",
  4866. image: {
  4867. source: "./media/characters/ebony/side.svg",
  4868. bottom: 0.03,
  4869. extra: 1045 / 810 + 0.03
  4870. }
  4871. },
  4872. back: {
  4873. height: math.unit(2, "meter"),
  4874. weight: math.unit(60, "kg"),
  4875. name: "Back",
  4876. image: {
  4877. source: "./media/characters/ebony/back.svg",
  4878. bottom: 0.01,
  4879. extra: 1045 / 810 + 0.01
  4880. }
  4881. },
  4882. },
  4883. [
  4884. // TODO check why I did this lol
  4885. {
  4886. name: "Standard",
  4887. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  4888. default: true
  4889. },
  4890. {
  4891. name: "Macro",
  4892. height: math.unit(200, "feet")
  4893. },
  4894. {
  4895. name: "Gigamacro",
  4896. height: math.unit(13000, "km")
  4897. }
  4898. ]
  4899. ))
  4900. characterMakers.push(() => makeCharacter(
  4901. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  4902. {
  4903. front: {
  4904. height: math.unit(6, "feet"),
  4905. weight: math.unit(175, "lb"),
  4906. name: "Front",
  4907. image: {
  4908. source: "./media/characters/mountain/front.svg",
  4909. extra: 972 / 955,
  4910. bottom: 64 / 1036.6
  4911. }
  4912. },
  4913. back: {
  4914. height: math.unit(6, "feet"),
  4915. weight: math.unit(175, "lb"),
  4916. name: "Back",
  4917. image: {
  4918. source: "./media/characters/mountain/back.svg",
  4919. extra: 970 / 950,
  4920. bottom: 28.25 / 999
  4921. }
  4922. },
  4923. },
  4924. [
  4925. {
  4926. name: "Large",
  4927. height: math.unit(20, "meters")
  4928. },
  4929. {
  4930. name: "Macro",
  4931. height: math.unit(300, "meters")
  4932. },
  4933. {
  4934. name: "Gigamacro",
  4935. height: math.unit(10000, "km"),
  4936. default: true
  4937. },
  4938. {
  4939. name: "Examacro",
  4940. height: math.unit(10e9, "lightyears")
  4941. }
  4942. ]
  4943. ))
  4944. characterMakers.push(() => makeCharacter(
  4945. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  4946. {
  4947. front: {
  4948. height: math.unit(8, "feet"),
  4949. weight: math.unit(500, "lb"),
  4950. name: "Front",
  4951. image: {
  4952. source: "./media/characters/rick/front.svg"
  4953. }
  4954. }
  4955. },
  4956. [
  4957. {
  4958. name: "Normal",
  4959. height: math.unit(8, "feet"),
  4960. default: true
  4961. },
  4962. {
  4963. name: "Macro",
  4964. height: math.unit(5, "km")
  4965. }
  4966. ]
  4967. ))
  4968. characterMakers.push(() => makeCharacter(
  4969. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  4970. {
  4971. front: {
  4972. height: math.unit(8, "feet"),
  4973. weight: math.unit(120, "lb"),
  4974. name: "Front",
  4975. image: {
  4976. source: "./media/characters/ona/front.svg"
  4977. }
  4978. },
  4979. frontAlt: {
  4980. height: math.unit(8, "feet"),
  4981. weight: math.unit(120, "lb"),
  4982. name: "Front (Alt)",
  4983. image: {
  4984. source: "./media/characters/ona/front-alt.svg"
  4985. }
  4986. },
  4987. back: {
  4988. height: math.unit(8, "feet"),
  4989. weight: math.unit(120, "lb"),
  4990. name: "Back",
  4991. image: {
  4992. source: "./media/characters/ona/back.svg"
  4993. }
  4994. },
  4995. foot: {
  4996. height: math.unit(1.1, "feet"),
  4997. name: "Foot",
  4998. image: {
  4999. source: "./media/characters/ona/foot.svg"
  5000. }
  5001. }
  5002. },
  5003. [
  5004. {
  5005. name: "Megamacro",
  5006. height: math.unit(70, "km"),
  5007. default: true
  5008. },
  5009. {
  5010. name: "Gigamacro",
  5011. height: math.unit(681818, "miles")
  5012. },
  5013. {
  5014. name: "Examacro",
  5015. height: math.unit(3800000, "lightyears")
  5016. },
  5017. ]
  5018. ))
  5019. characterMakers.push(() => makeCharacter(
  5020. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  5021. {
  5022. front: {
  5023. height: math.unit(12, "feet"),
  5024. weight: math.unit(3000, "lb"),
  5025. name: "Front",
  5026. image: {
  5027. source: "./media/characters/mech/front.svg",
  5028. extra: 2900 / 2770,
  5029. bottom: 110 / 3010
  5030. }
  5031. },
  5032. back: {
  5033. height: math.unit(12, "feet"),
  5034. weight: math.unit(3000, "lb"),
  5035. name: "Back",
  5036. image: {
  5037. source: "./media/characters/mech/back.svg",
  5038. extra: 3011 / 2890,
  5039. bottom: 94 / 3105
  5040. }
  5041. },
  5042. maw: {
  5043. height: math.unit(3.07, "feet"),
  5044. name: "Maw",
  5045. image: {
  5046. source: "./media/characters/mech/maw.svg"
  5047. }
  5048. },
  5049. head: {
  5050. height: math.unit(3.07, "feet"),
  5051. name: "Head",
  5052. image: {
  5053. source: "./media/characters/mech/head.svg"
  5054. }
  5055. },
  5056. dick: {
  5057. height: math.unit(1.43, "feet"),
  5058. name: "Dick",
  5059. image: {
  5060. source: "./media/characters/mech/dick.svg"
  5061. }
  5062. },
  5063. },
  5064. [
  5065. {
  5066. name: "Normal",
  5067. height: math.unit(12, "feet")
  5068. },
  5069. {
  5070. name: "Macro",
  5071. height: math.unit(300, "feet"),
  5072. default: true
  5073. },
  5074. {
  5075. name: "Macro+",
  5076. height: math.unit(1500, "feet")
  5077. },
  5078. ]
  5079. ))
  5080. characterMakers.push(() => makeCharacter(
  5081. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  5082. {
  5083. front: {
  5084. height: math.unit(1.3, "meter"),
  5085. weight: math.unit(30, "kg"),
  5086. name: "Front",
  5087. image: {
  5088. source: "./media/characters/gregory/front.svg",
  5089. }
  5090. }
  5091. },
  5092. [
  5093. {
  5094. name: "Normal",
  5095. height: math.unit(1.3, "meter"),
  5096. default: true
  5097. },
  5098. {
  5099. name: "Macro",
  5100. height: math.unit(20, "meter")
  5101. }
  5102. ]
  5103. ))
  5104. characterMakers.push(() => makeCharacter(
  5105. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  5106. {
  5107. front: {
  5108. height: math.unit(2.8, "meter"),
  5109. weight: math.unit(200, "kg"),
  5110. name: "Front",
  5111. image: {
  5112. source: "./media/characters/elory/front.svg",
  5113. }
  5114. }
  5115. },
  5116. [
  5117. {
  5118. name: "Normal",
  5119. height: math.unit(2.8, "meter"),
  5120. default: true
  5121. },
  5122. {
  5123. name: "Macro",
  5124. height: math.unit(38, "meter")
  5125. }
  5126. ]
  5127. ))
  5128. characterMakers.push(() => makeCharacter(
  5129. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  5130. {
  5131. front: {
  5132. height: math.unit(470, "feet"),
  5133. weight: math.unit(924, "tons"),
  5134. name: "Front",
  5135. image: {
  5136. source: "./media/characters/angelpatamon/front.svg",
  5137. }
  5138. }
  5139. },
  5140. [
  5141. {
  5142. name: "Normal",
  5143. height: math.unit(470, "feet"),
  5144. default: true
  5145. },
  5146. {
  5147. name: "Deity Size I",
  5148. height: math.unit(28651.2, "km")
  5149. },
  5150. {
  5151. name: "Deity Size II",
  5152. height: math.unit(171907.2, "km")
  5153. }
  5154. ]
  5155. ))
  5156. characterMakers.push(() => makeCharacter(
  5157. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  5158. {
  5159. side: {
  5160. height: math.unit(7.2, "meter"),
  5161. weight: math.unit(8.2, "tons"),
  5162. name: "Side",
  5163. image: {
  5164. source: "./media/characters/cryae/side.svg",
  5165. extra: 3500 / 1500
  5166. }
  5167. }
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(7.2, "meter"),
  5173. default: true
  5174. }
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  5179. {
  5180. front: {
  5181. height: math.unit(6, "feet"),
  5182. weight: math.unit(175, "lb"),
  5183. name: "Front",
  5184. image: {
  5185. source: "./media/characters/xera/front.svg",
  5186. extra: 2377 / 1972,
  5187. bottom: 75.5 / 2452
  5188. }
  5189. },
  5190. side: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(175, "lb"),
  5193. name: "Side",
  5194. image: {
  5195. source: "./media/characters/xera/side.svg",
  5196. extra: 2345 / 2019,
  5197. bottom: 39.7 / 2384
  5198. }
  5199. },
  5200. back: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(175, "lb"),
  5203. name: "Back",
  5204. image: {
  5205. source: "./media/characters/xera/back.svg",
  5206. extra: 2095 / 1984,
  5207. bottom: 67 / 2166
  5208. }
  5209. },
  5210. },
  5211. [
  5212. {
  5213. name: "Small",
  5214. height: math.unit(10, "feet")
  5215. },
  5216. {
  5217. name: "Macro",
  5218. height: math.unit(500, "meters"),
  5219. default: true
  5220. },
  5221. {
  5222. name: "Macro+",
  5223. height: math.unit(10, "km")
  5224. },
  5225. {
  5226. name: "Gigamacro",
  5227. height: math.unit(25000, "km")
  5228. },
  5229. {
  5230. name: "Teramacro",
  5231. height: math.unit(3e6, "km")
  5232. }
  5233. ]
  5234. ))
  5235. characterMakers.push(() => makeCharacter(
  5236. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  5237. {
  5238. front: {
  5239. height: math.unit(6, "feet"),
  5240. weight: math.unit(175, "lb"),
  5241. name: "Front",
  5242. image: {
  5243. source: "./media/characters/nebula/front.svg",
  5244. extra: 2566 / 2362,
  5245. bottom: 81 / 2644
  5246. }
  5247. }
  5248. },
  5249. [
  5250. {
  5251. name: "Small",
  5252. height: math.unit(4.5, "meters")
  5253. },
  5254. {
  5255. name: "Macro",
  5256. height: math.unit(1500, "meters"),
  5257. default: true
  5258. },
  5259. {
  5260. name: "Megamacro",
  5261. height: math.unit(150, "km")
  5262. },
  5263. {
  5264. name: "Gigamacro",
  5265. height: math.unit(27000, "km")
  5266. }
  5267. ]
  5268. ))
  5269. characterMakers.push(() => makeCharacter(
  5270. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  5271. {
  5272. front: {
  5273. height: math.unit(6, "feet"),
  5274. weight: math.unit(225, "lb"),
  5275. name: "Front",
  5276. image: {
  5277. source: "./media/characters/abysgar/front.svg",
  5278. extra: 1739/1614,
  5279. bottom: 71/1810
  5280. }
  5281. },
  5282. frontNsfw: {
  5283. height: math.unit(6, "feet"),
  5284. weight: math.unit(225, "lb"),
  5285. name: "Front (NSFW)",
  5286. image: {
  5287. source: "./media/characters/abysgar/front-nsfw.svg",
  5288. extra: 1739/1614,
  5289. bottom: 71/1810
  5290. }
  5291. },
  5292. back: {
  5293. height: math.unit(4.6, "feet"),
  5294. weight: math.unit(225, "lb"),
  5295. name: "Back",
  5296. image: {
  5297. source: "./media/characters/abysgar/back.svg",
  5298. extra: 1384/1327,
  5299. bottom: 0/1384
  5300. }
  5301. },
  5302. head: {
  5303. height: math.unit(1.25, "feet"),
  5304. name: "Head",
  5305. image: {
  5306. source: "./media/characters/abysgar/head.svg",
  5307. extra: 669/569,
  5308. bottom: 0/669
  5309. }
  5310. },
  5311. },
  5312. [
  5313. {
  5314. name: "Small",
  5315. height: math.unit(4.5, "meters")
  5316. },
  5317. {
  5318. name: "Macro",
  5319. height: math.unit(1250, "meters"),
  5320. default: true
  5321. },
  5322. {
  5323. name: "Megamacro",
  5324. height: math.unit(125, "km")
  5325. },
  5326. {
  5327. name: "Gigamacro",
  5328. height: math.unit(26000, "km")
  5329. }
  5330. ]
  5331. ))
  5332. characterMakers.push(() => makeCharacter(
  5333. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  5334. {
  5335. front: {
  5336. height: math.unit(6, "feet"),
  5337. weight: math.unit(180, "lb"),
  5338. name: "Front",
  5339. image: {
  5340. source: "./media/characters/yakuz/front.svg"
  5341. }
  5342. }
  5343. },
  5344. [
  5345. {
  5346. name: "Small",
  5347. height: math.unit(5, "meters")
  5348. },
  5349. {
  5350. name: "Macro",
  5351. height: math.unit(1500, "meters"),
  5352. default: true
  5353. },
  5354. {
  5355. name: "Megamacro",
  5356. height: math.unit(200, "km")
  5357. },
  5358. {
  5359. name: "Gigamacro",
  5360. height: math.unit(100000, "km")
  5361. }
  5362. ]
  5363. ))
  5364. characterMakers.push(() => makeCharacter(
  5365. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  5366. {
  5367. front: {
  5368. height: math.unit(6, "feet"),
  5369. weight: math.unit(175, "lb"),
  5370. name: "Front",
  5371. image: {
  5372. source: "./media/characters/mirova/front.svg",
  5373. extra: 3334 / 3071,
  5374. bottom: 42 / 3375.6
  5375. }
  5376. }
  5377. },
  5378. [
  5379. {
  5380. name: "Small",
  5381. height: math.unit(5, "meters")
  5382. },
  5383. {
  5384. name: "Macro",
  5385. height: math.unit(900, "meters"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Megamacro",
  5390. height: math.unit(135, "km")
  5391. },
  5392. {
  5393. name: "Gigamacro",
  5394. height: math.unit(20000, "km")
  5395. }
  5396. ]
  5397. ))
  5398. characterMakers.push(() => makeCharacter(
  5399. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  5400. {
  5401. side: {
  5402. height: math.unit(28.35, "feet"),
  5403. weight: math.unit(99.75, "tons"),
  5404. name: "Side",
  5405. image: {
  5406. source: "./media/characters/asana-mech/side.svg",
  5407. extra: 923 / 699,
  5408. bottom: 50 / 975
  5409. }
  5410. },
  5411. chaingun: {
  5412. height: math.unit(7, "feet"),
  5413. weight: math.unit(2400, "lb"),
  5414. name: "Chaingun",
  5415. image: {
  5416. source: "./media/characters/asana-mech/chaingun.svg"
  5417. }
  5418. },
  5419. laser: {
  5420. height: math.unit(7.12, "feet"),
  5421. weight: math.unit(2000, "lb"),
  5422. name: "Laser",
  5423. image: {
  5424. source: "./media/characters/asana-mech/laser.svg"
  5425. }
  5426. },
  5427. },
  5428. [
  5429. {
  5430. name: "Normal",
  5431. height: math.unit(28.35, "feet"),
  5432. default: true
  5433. },
  5434. {
  5435. name: "Macro",
  5436. height: math.unit(2500, "feet")
  5437. },
  5438. {
  5439. name: "Megamacro",
  5440. height: math.unit(25, "miles")
  5441. },
  5442. {
  5443. name: "Examacro",
  5444. height: math.unit(6e8, "lightyears")
  5445. },
  5446. ]
  5447. ))
  5448. characterMakers.push(() => makeCharacter(
  5449. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  5450. {
  5451. front: {
  5452. height: math.unit(5, "meters"),
  5453. weight: math.unit(1000, "kg"),
  5454. name: "Front",
  5455. image: {
  5456. source: "./media/characters/asche/front.svg",
  5457. extra: 1258 / 1190,
  5458. bottom: 47 / 1305
  5459. }
  5460. },
  5461. frontUnderwear: {
  5462. height: math.unit(5, "meters"),
  5463. weight: math.unit(1000, "kg"),
  5464. name: "Front (Underwear)",
  5465. image: {
  5466. source: "./media/characters/asche/front-underwear.svg",
  5467. extra: 1258 / 1190,
  5468. bottom: 47 / 1305
  5469. }
  5470. },
  5471. frontDressed: {
  5472. height: math.unit(5, "meters"),
  5473. weight: math.unit(1000, "kg"),
  5474. name: "Front (Dressed)",
  5475. image: {
  5476. source: "./media/characters/asche/front-dressed.svg",
  5477. extra: 1258 / 1190,
  5478. bottom: 47 / 1305
  5479. }
  5480. },
  5481. frontArmor: {
  5482. height: math.unit(5, "meters"),
  5483. weight: math.unit(1000, "kg"),
  5484. name: "Front (Armored)",
  5485. image: {
  5486. source: "./media/characters/asche/front-armored.svg",
  5487. extra: 1374 / 1308,
  5488. bottom: 23 / 1397
  5489. }
  5490. },
  5491. mp724: {
  5492. height: math.unit(0.96, "meters"),
  5493. weight: math.unit(38, "kg"),
  5494. name: "H&K MP724",
  5495. image: {
  5496. source: "./media/characters/asche/h&k-mp724.svg"
  5497. }
  5498. },
  5499. side: {
  5500. height: math.unit(5, "meters"),
  5501. weight: math.unit(1000, "kg"),
  5502. name: "Side",
  5503. image: {
  5504. source: "./media/characters/asche/side.svg",
  5505. extra: 1717 / 1609,
  5506. bottom: 0.005
  5507. }
  5508. },
  5509. back: {
  5510. height: math.unit(5, "meters"),
  5511. weight: math.unit(1000, "kg"),
  5512. name: "Back",
  5513. image: {
  5514. source: "./media/characters/asche/back.svg",
  5515. extra: 1570 / 1501
  5516. }
  5517. },
  5518. },
  5519. [
  5520. {
  5521. name: "DEFCON 5",
  5522. height: math.unit(5, "meters")
  5523. },
  5524. {
  5525. name: "DEFCON 4",
  5526. height: math.unit(500, "meters"),
  5527. default: true
  5528. },
  5529. {
  5530. name: "DEFCON 3",
  5531. height: math.unit(5, "km")
  5532. },
  5533. {
  5534. name: "DEFCON 2",
  5535. height: math.unit(500, "km")
  5536. },
  5537. {
  5538. name: "DEFCON 1",
  5539. height: math.unit(500000, "km")
  5540. },
  5541. {
  5542. name: "DEFCON 0",
  5543. height: math.unit(3, "gigaparsecs")
  5544. },
  5545. ]
  5546. ))
  5547. characterMakers.push(() => makeCharacter(
  5548. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  5549. {
  5550. front: {
  5551. height: math.unit(7, "feet"),
  5552. weight: math.unit(92.7, "kg"),
  5553. name: "Front",
  5554. image: {
  5555. source: "./media/characters/gale/front.svg",
  5556. extra: 977/919,
  5557. bottom: 105/1082
  5558. }
  5559. },
  5560. side: {
  5561. height: math.unit(6.7, "feet"),
  5562. weight: math.unit(92.7, "kg"),
  5563. name: "Side",
  5564. image: {
  5565. source: "./media/characters/gale/side.svg",
  5566. extra: 978/922,
  5567. bottom: 140/1118
  5568. }
  5569. },
  5570. back: {
  5571. height: math.unit(7, "feet"),
  5572. weight: math.unit(92.7, "kg"),
  5573. name: "Back",
  5574. image: {
  5575. source: "./media/characters/gale/back.svg",
  5576. extra: 966/920,
  5577. bottom: 61/1027
  5578. }
  5579. },
  5580. maw: {
  5581. height: math.unit(2.23, "feet"),
  5582. name: "Maw",
  5583. image: {
  5584. source: "./media/characters/gale/maw.svg"
  5585. }
  5586. },
  5587. foot: {
  5588. height: math.unit(2.1, "feet"),
  5589. name: "Foot",
  5590. image: {
  5591. source: "./media/characters/gale/foot.svg"
  5592. }
  5593. },
  5594. },
  5595. [
  5596. {
  5597. name: "Normal",
  5598. height: math.unit(7, "feet")
  5599. },
  5600. {
  5601. name: "Macro",
  5602. height: math.unit(150, "feet"),
  5603. default: true
  5604. },
  5605. {
  5606. name: "Macro+",
  5607. height: math.unit(300, "feet")
  5608. },
  5609. ]
  5610. ))
  5611. characterMakers.push(() => makeCharacter(
  5612. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  5613. {
  5614. front: {
  5615. height: math.unit(5 + 10/12, "feet"),
  5616. weight: math.unit(67, "kg"),
  5617. name: "Front",
  5618. image: {
  5619. source: "./media/characters/draylen/front.svg",
  5620. extra: 832/777,
  5621. bottom: 85/917
  5622. }
  5623. }
  5624. },
  5625. [
  5626. {
  5627. name: "Normal",
  5628. height: math.unit(5 + 10/12, "feet")
  5629. },
  5630. {
  5631. name: "Macro",
  5632. height: math.unit(150, "feet"),
  5633. default: true
  5634. }
  5635. ]
  5636. ))
  5637. characterMakers.push(() => makeCharacter(
  5638. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  5639. {
  5640. front: {
  5641. height: math.unit(7 + 9 / 12, "feet"),
  5642. weight: math.unit(379, "lbs"),
  5643. name: "Front",
  5644. image: {
  5645. source: "./media/characters/chez/front.svg"
  5646. }
  5647. },
  5648. side: {
  5649. height: math.unit(7 + 9 / 12, "feet"),
  5650. weight: math.unit(379, "lbs"),
  5651. name: "Side",
  5652. image: {
  5653. source: "./media/characters/chez/side.svg"
  5654. }
  5655. }
  5656. },
  5657. [
  5658. {
  5659. name: "Normal",
  5660. height: math.unit(7 + 9 / 12, "feet"),
  5661. default: true
  5662. },
  5663. {
  5664. name: "God King",
  5665. height: math.unit(9750000, "meters")
  5666. }
  5667. ]
  5668. ))
  5669. characterMakers.push(() => makeCharacter(
  5670. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  5671. {
  5672. front: {
  5673. height: math.unit(6, "feet"),
  5674. weight: math.unit(275, "lbs"),
  5675. name: "Front",
  5676. image: {
  5677. source: "./media/characters/kaylum/front.svg",
  5678. bottom: 0.01,
  5679. extra: 1166 / 1031
  5680. }
  5681. },
  5682. frontWingless: {
  5683. height: math.unit(6, "feet"),
  5684. weight: math.unit(275, "lbs"),
  5685. name: "Front (Wingless)",
  5686. image: {
  5687. source: "./media/characters/kaylum/front-wingless.svg",
  5688. bottom: 0.01,
  5689. extra: 1117 / 1031
  5690. }
  5691. }
  5692. },
  5693. [
  5694. {
  5695. name: "Normal",
  5696. height: math.unit(3.05, "meters")
  5697. },
  5698. {
  5699. name: "Master",
  5700. height: math.unit(5.5, "meters")
  5701. },
  5702. {
  5703. name: "Rampage",
  5704. height: math.unit(19, "meters")
  5705. },
  5706. {
  5707. name: "Macro Lite",
  5708. height: math.unit(37, "meters")
  5709. },
  5710. {
  5711. name: "Hyper Predator",
  5712. height: math.unit(61, "meters")
  5713. },
  5714. {
  5715. name: "Macro",
  5716. height: math.unit(138, "meters"),
  5717. default: true
  5718. }
  5719. ]
  5720. ))
  5721. characterMakers.push(() => makeCharacter(
  5722. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  5723. {
  5724. front: {
  5725. height: math.unit(5 + 5 / 12, "feet"),
  5726. weight: math.unit(120, "lbs"),
  5727. name: "Front",
  5728. image: {
  5729. source: "./media/characters/geta/front.svg",
  5730. extra: 1003/933,
  5731. bottom: 21/1024
  5732. }
  5733. },
  5734. paw: {
  5735. height: math.unit(0.35, "feet"),
  5736. name: "Paw",
  5737. image: {
  5738. source: "./media/characters/geta/paw.svg"
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Micro",
  5745. height: math.unit(3, "inches"),
  5746. default: true
  5747. },
  5748. {
  5749. name: "Normal",
  5750. height: math.unit(5 + 5 / 12, "feet")
  5751. }
  5752. ]
  5753. ))
  5754. characterMakers.push(() => makeCharacter(
  5755. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  5756. {
  5757. front: {
  5758. height: math.unit(6, "feet"),
  5759. weight: math.unit(300, "lbs"),
  5760. name: "Front",
  5761. image: {
  5762. source: "./media/characters/tyrnn/front.svg"
  5763. }
  5764. }
  5765. },
  5766. [
  5767. {
  5768. name: "Main Height",
  5769. height: math.unit(355, "feet"),
  5770. default: true
  5771. },
  5772. {
  5773. name: "Fave. Height",
  5774. height: math.unit(2400, "feet")
  5775. }
  5776. ]
  5777. ))
  5778. characterMakers.push(() => makeCharacter(
  5779. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  5780. {
  5781. front: {
  5782. height: math.unit(6, "feet"),
  5783. weight: math.unit(300, "lbs"),
  5784. name: "Front",
  5785. image: {
  5786. source: "./media/characters/appledectomy/front.svg"
  5787. }
  5788. }
  5789. },
  5790. [
  5791. {
  5792. name: "Macro",
  5793. height: math.unit(2500, "feet")
  5794. },
  5795. {
  5796. name: "Megamacro",
  5797. height: math.unit(50, "miles"),
  5798. default: true
  5799. },
  5800. {
  5801. name: "Gigamacro",
  5802. height: math.unit(5000, "miles")
  5803. },
  5804. {
  5805. name: "Teramacro",
  5806. height: math.unit(250000, "miles")
  5807. },
  5808. ]
  5809. ))
  5810. characterMakers.push(() => makeCharacter(
  5811. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  5812. {
  5813. front: {
  5814. height: math.unit(6, "feet"),
  5815. weight: math.unit(200, "lbs"),
  5816. name: "Front",
  5817. image: {
  5818. source: "./media/characters/vulpes/front.svg",
  5819. extra: 573 / 543,
  5820. bottom: 0.033
  5821. }
  5822. },
  5823. side: {
  5824. height: math.unit(6, "feet"),
  5825. weight: math.unit(200, "lbs"),
  5826. name: "Side",
  5827. image: {
  5828. source: "./media/characters/vulpes/side.svg",
  5829. extra: 577 / 549,
  5830. bottom: 11 / 588
  5831. }
  5832. },
  5833. back: {
  5834. height: math.unit(6, "feet"),
  5835. weight: math.unit(200, "lbs"),
  5836. name: "Back",
  5837. image: {
  5838. source: "./media/characters/vulpes/back.svg",
  5839. extra: 573 / 549,
  5840. bottom: 20 / 593
  5841. }
  5842. },
  5843. feet: {
  5844. height: math.unit(1.276, "feet"),
  5845. name: "Feet",
  5846. image: {
  5847. source: "./media/characters/vulpes/feet.svg"
  5848. }
  5849. },
  5850. maw: {
  5851. height: math.unit(1.18, "feet"),
  5852. name: "Maw",
  5853. image: {
  5854. source: "./media/characters/vulpes/maw.svg"
  5855. }
  5856. },
  5857. },
  5858. [
  5859. {
  5860. name: "Micro",
  5861. height: math.unit(2, "inches")
  5862. },
  5863. {
  5864. name: "Normal",
  5865. height: math.unit(6.3, "feet")
  5866. },
  5867. {
  5868. name: "Macro",
  5869. height: math.unit(850, "feet")
  5870. },
  5871. {
  5872. name: "Megamacro",
  5873. height: math.unit(7500, "feet"),
  5874. default: true
  5875. },
  5876. {
  5877. name: "Gigamacro",
  5878. height: math.unit(570000, "miles")
  5879. }
  5880. ]
  5881. ))
  5882. characterMakers.push(() => makeCharacter(
  5883. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  5884. {
  5885. front: {
  5886. height: math.unit(6, "feet"),
  5887. weight: math.unit(210, "lbs"),
  5888. name: "Front",
  5889. image: {
  5890. source: "./media/characters/rain-fallen/front.svg"
  5891. }
  5892. },
  5893. side: {
  5894. height: math.unit(6, "feet"),
  5895. weight: math.unit(210, "lbs"),
  5896. name: "Side",
  5897. image: {
  5898. source: "./media/characters/rain-fallen/side.svg"
  5899. }
  5900. },
  5901. back: {
  5902. height: math.unit(6, "feet"),
  5903. weight: math.unit(210, "lbs"),
  5904. name: "Back",
  5905. image: {
  5906. source: "./media/characters/rain-fallen/back.svg"
  5907. }
  5908. },
  5909. feral: {
  5910. height: math.unit(9, "feet"),
  5911. weight: math.unit(700, "lbs"),
  5912. name: "Feral",
  5913. image: {
  5914. source: "./media/characters/rain-fallen/feral.svg"
  5915. }
  5916. },
  5917. },
  5918. [
  5919. {
  5920. name: "Meddling with Mortals",
  5921. height: math.unit(8 + 8/12, "feet")
  5922. },
  5923. {
  5924. name: "Normal",
  5925. height: math.unit(5, "meter")
  5926. },
  5927. {
  5928. name: "Macro",
  5929. height: math.unit(150, "meter"),
  5930. default: true
  5931. },
  5932. {
  5933. name: "Megamacro",
  5934. height: math.unit(278e6, "meter")
  5935. },
  5936. {
  5937. name: "Gigamacro",
  5938. height: math.unit(2e9, "meter")
  5939. },
  5940. {
  5941. name: "Teramacro",
  5942. height: math.unit(8e12, "meter")
  5943. },
  5944. {
  5945. name: "Devourer",
  5946. height: math.unit(14, "zettameters")
  5947. },
  5948. {
  5949. name: "Scarlet King",
  5950. height: math.unit(18, "yottameters")
  5951. },
  5952. {
  5953. name: "Void",
  5954. height: math.unit(1e88, "yottameters")
  5955. }
  5956. ]
  5957. ))
  5958. characterMakers.push(() => makeCharacter(
  5959. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  5960. {
  5961. standing: {
  5962. height: math.unit(6, "feet"),
  5963. weight: math.unit(180, "lbs"),
  5964. name: "Standing",
  5965. image: {
  5966. source: "./media/characters/zaakira/standing.svg",
  5967. extra: 1599/1504,
  5968. bottom: 39/1638
  5969. }
  5970. },
  5971. laying: {
  5972. height: math.unit(3.3, "feet"),
  5973. weight: math.unit(180, "lbs"),
  5974. name: "Laying",
  5975. image: {
  5976. source: "./media/characters/zaakira/laying.svg"
  5977. }
  5978. },
  5979. },
  5980. [
  5981. {
  5982. name: "Normal",
  5983. height: math.unit(12, "feet")
  5984. },
  5985. {
  5986. name: "Macro",
  5987. height: math.unit(279, "feet"),
  5988. default: true
  5989. }
  5990. ]
  5991. ))
  5992. characterMakers.push(() => makeCharacter(
  5993. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  5994. {
  5995. femSfw: {
  5996. height: math.unit(8, "feet"),
  5997. weight: math.unit(350, "lb"),
  5998. name: "Fem",
  5999. image: {
  6000. source: "./media/characters/sigvald/fem-sfw.svg",
  6001. extra: 182 / 164,
  6002. bottom: 8.7 / 190.5
  6003. }
  6004. },
  6005. femNsfw: {
  6006. height: math.unit(8, "feet"),
  6007. weight: math.unit(350, "lb"),
  6008. name: "Fem (NSFW)",
  6009. image: {
  6010. source: "./media/characters/sigvald/fem-nsfw.svg",
  6011. extra: 182 / 164,
  6012. bottom: 8.7 / 190.5
  6013. }
  6014. },
  6015. maleNsfw: {
  6016. height: math.unit(8, "feet"),
  6017. weight: math.unit(350, "lb"),
  6018. name: "Male (NSFW)",
  6019. image: {
  6020. source: "./media/characters/sigvald/male-nsfw.svg",
  6021. extra: 182 / 164,
  6022. bottom: 8.7 / 190.5
  6023. }
  6024. },
  6025. hermNsfw: {
  6026. height: math.unit(8, "feet"),
  6027. weight: math.unit(350, "lb"),
  6028. name: "Herm (NSFW)",
  6029. image: {
  6030. source: "./media/characters/sigvald/herm-nsfw.svg",
  6031. extra: 182 / 164,
  6032. bottom: 8.7 / 190.5
  6033. }
  6034. },
  6035. dick: {
  6036. height: math.unit(2.36, "feet"),
  6037. name: "Dick",
  6038. image: {
  6039. source: "./media/characters/sigvald/dick.svg"
  6040. }
  6041. },
  6042. eye: {
  6043. height: math.unit(0.31, "feet"),
  6044. name: "Eye",
  6045. image: {
  6046. source: "./media/characters/sigvald/eye.svg"
  6047. }
  6048. },
  6049. mouth: {
  6050. height: math.unit(0.92, "feet"),
  6051. name: "Mouth",
  6052. image: {
  6053. source: "./media/characters/sigvald/mouth.svg"
  6054. }
  6055. },
  6056. paws: {
  6057. height: math.unit(2.2, "feet"),
  6058. name: "Paws",
  6059. image: {
  6060. source: "./media/characters/sigvald/paws.svg"
  6061. }
  6062. }
  6063. },
  6064. [
  6065. {
  6066. name: "Normal",
  6067. height: math.unit(8, "feet")
  6068. },
  6069. {
  6070. name: "Large",
  6071. height: math.unit(12, "feet")
  6072. },
  6073. {
  6074. name: "Larger",
  6075. height: math.unit(20, "feet")
  6076. },
  6077. {
  6078. name: "Macro",
  6079. height: math.unit(150, "feet")
  6080. },
  6081. {
  6082. name: "Macro+",
  6083. height: math.unit(200, "feet"),
  6084. default: true
  6085. },
  6086. ]
  6087. ))
  6088. characterMakers.push(() => makeCharacter(
  6089. { name: "Scott", species: ["fox"], tags: ["taur"] },
  6090. {
  6091. side: {
  6092. height: math.unit(12, "feet"),
  6093. weight: math.unit(2000, "kg"),
  6094. name: "Side",
  6095. image: {
  6096. source: "./media/characters/scott/side.svg",
  6097. extra: 754 / 724,
  6098. bottom: 0.069
  6099. }
  6100. },
  6101. upright: {
  6102. height: math.unit(12, "feet"),
  6103. weight: math.unit(2000, "kg"),
  6104. name: "Upright",
  6105. image: {
  6106. source: "./media/characters/scott/upright.svg",
  6107. extra: 3881 / 3722,
  6108. bottom: 0.05
  6109. }
  6110. },
  6111. },
  6112. [
  6113. {
  6114. name: "Normal",
  6115. height: math.unit(12, "feet"),
  6116. default: true
  6117. },
  6118. ]
  6119. ))
  6120. characterMakers.push(() => makeCharacter(
  6121. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  6122. {
  6123. side: {
  6124. height: math.unit(8, "meters"),
  6125. weight: math.unit(84755, "lbs"),
  6126. name: "Side",
  6127. image: {
  6128. source: "./media/characters/tobias/side.svg",
  6129. extra: 1474 / 1096,
  6130. bottom: 38.9 / 1513.1235
  6131. }
  6132. },
  6133. maw: {
  6134. height: math.unit(2.3, "meters"),
  6135. name: "Maw",
  6136. image: {
  6137. source: "./media/characters/tobias/maw.svg"
  6138. }
  6139. },
  6140. burp: {
  6141. height: math.unit(2.85, "meters"),
  6142. name: "Burp",
  6143. image: {
  6144. source: "./media/characters/tobias/burp.svg"
  6145. }
  6146. },
  6147. },
  6148. [
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(8, "meters"),
  6152. default: true
  6153. },
  6154. ]
  6155. ))
  6156. characterMakers.push(() => makeCharacter(
  6157. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  6158. {
  6159. front: {
  6160. height: math.unit(5.5, "feet"),
  6161. weight: math.unit(400, "lbs"),
  6162. name: "Front",
  6163. image: {
  6164. source: "./media/characters/kieran/front.svg",
  6165. extra: 2694 / 2364,
  6166. bottom: 217 / 2908
  6167. }
  6168. },
  6169. side: {
  6170. height: math.unit(5.5, "feet"),
  6171. weight: math.unit(400, "lbs"),
  6172. name: "Side",
  6173. image: {
  6174. source: "./media/characters/kieran/side.svg",
  6175. extra: 875 / 777,
  6176. bottom: 84.6 / 959
  6177. }
  6178. },
  6179. },
  6180. [
  6181. {
  6182. name: "Normal",
  6183. height: math.unit(5.5, "feet"),
  6184. default: true
  6185. },
  6186. ]
  6187. ))
  6188. characterMakers.push(() => makeCharacter(
  6189. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  6190. {
  6191. side: {
  6192. height: math.unit(2, "meters"),
  6193. weight: math.unit(70, "kg"),
  6194. name: "Side",
  6195. image: {
  6196. source: "./media/characters/sanya/side.svg",
  6197. bottom: 0.02,
  6198. extra: 1.02
  6199. }
  6200. },
  6201. },
  6202. [
  6203. {
  6204. name: "Small",
  6205. height: math.unit(2, "meters")
  6206. },
  6207. {
  6208. name: "Normal",
  6209. height: math.unit(3, "meters")
  6210. },
  6211. {
  6212. name: "Macro",
  6213. height: math.unit(16, "meters"),
  6214. default: true
  6215. },
  6216. ]
  6217. ))
  6218. characterMakers.push(() => makeCharacter(
  6219. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  6220. {
  6221. front: {
  6222. height: math.unit(2, "meters"),
  6223. weight: math.unit(120, "kg"),
  6224. name: "Front",
  6225. image: {
  6226. source: "./media/characters/miranda/front.svg",
  6227. extra: 195 / 185,
  6228. bottom: 10.9 / 206.5
  6229. }
  6230. },
  6231. back: {
  6232. height: math.unit(2, "meters"),
  6233. weight: math.unit(120, "kg"),
  6234. name: "Back",
  6235. image: {
  6236. source: "./media/characters/miranda/back.svg",
  6237. extra: 201 / 193,
  6238. bottom: 2.3 / 203.7
  6239. }
  6240. },
  6241. },
  6242. [
  6243. {
  6244. name: "Normal",
  6245. height: math.unit(10, "feet"),
  6246. default: true
  6247. }
  6248. ]
  6249. ))
  6250. characterMakers.push(() => makeCharacter(
  6251. { name: "James", species: ["deer"], tags: ["anthro"] },
  6252. {
  6253. side: {
  6254. height: math.unit(2, "meters"),
  6255. weight: math.unit(100, "kg"),
  6256. name: "Front",
  6257. image: {
  6258. source: "./media/characters/james/front.svg",
  6259. extra: 10 / 8.5
  6260. }
  6261. },
  6262. },
  6263. [
  6264. {
  6265. name: "Normal",
  6266. height: math.unit(8.5, "feet"),
  6267. default: true
  6268. }
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Heather", species: ["cow"], tags: ["taur"] },
  6273. {
  6274. side: {
  6275. height: math.unit(9.5, "feet"),
  6276. weight: math.unit(2500, "lbs"),
  6277. name: "Side",
  6278. image: {
  6279. source: "./media/characters/heather/side.svg"
  6280. }
  6281. },
  6282. },
  6283. [
  6284. {
  6285. name: "Normal",
  6286. height: math.unit(9.5, "feet"),
  6287. default: true
  6288. }
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  6293. {
  6294. side: {
  6295. height: math.unit(6.5, "feet"),
  6296. weight: math.unit(400, "lbs"),
  6297. name: "Side",
  6298. image: {
  6299. source: "./media/characters/lukas/side.svg",
  6300. extra: 7.25 / 6.5
  6301. }
  6302. },
  6303. },
  6304. [
  6305. {
  6306. name: "Normal",
  6307. height: math.unit(6.5, "feet"),
  6308. default: true
  6309. }
  6310. ]
  6311. ))
  6312. characterMakers.push(() => makeCharacter(
  6313. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  6314. {
  6315. side: {
  6316. height: math.unit(5, "feet"),
  6317. weight: math.unit(3000, "lbs"),
  6318. name: "Side",
  6319. image: {
  6320. source: "./media/characters/louise/side.svg"
  6321. }
  6322. },
  6323. },
  6324. [
  6325. {
  6326. name: "Normal",
  6327. height: math.unit(5, "feet"),
  6328. default: true
  6329. }
  6330. ]
  6331. ))
  6332. characterMakers.push(() => makeCharacter(
  6333. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  6334. {
  6335. side: {
  6336. height: math.unit(6, "feet"),
  6337. weight: math.unit(150, "lbs"),
  6338. name: "Side",
  6339. image: {
  6340. source: "./media/characters/ramona/side.svg",
  6341. extra: 871/854,
  6342. bottom: 41/912
  6343. }
  6344. },
  6345. },
  6346. [
  6347. {
  6348. name: "Normal",
  6349. height: math.unit(6 + 4/12, "feet")
  6350. },
  6351. {
  6352. name: "Minimacro",
  6353. height: math.unit(5.3, "meters"),
  6354. default: true
  6355. },
  6356. {
  6357. name: "Macro",
  6358. height: math.unit(20, "stories")
  6359. },
  6360. {
  6361. name: "Macro+",
  6362. height: math.unit(50, "stories")
  6363. },
  6364. ]
  6365. ))
  6366. characterMakers.push(() => makeCharacter(
  6367. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  6368. {
  6369. standing: {
  6370. height: math.unit(5.75, "feet"),
  6371. weight: math.unit(160, "lbs"),
  6372. name: "Standing",
  6373. image: {
  6374. source: "./media/characters/deerpuff/standing.svg",
  6375. extra: 682 / 624
  6376. }
  6377. },
  6378. sitting: {
  6379. height: math.unit(5.75 / 1.79, "feet"),
  6380. weight: math.unit(160, "lbs"),
  6381. name: "Sitting",
  6382. image: {
  6383. source: "./media/characters/deerpuff/sitting.svg",
  6384. bottom: 44 / 400,
  6385. extra: 1
  6386. }
  6387. },
  6388. taurLaying: {
  6389. height: math.unit(6, "feet"),
  6390. weight: math.unit(400, "lbs"),
  6391. name: "Taur (Laying)",
  6392. image: {
  6393. source: "./media/characters/deerpuff/taur-laying.svg"
  6394. }
  6395. },
  6396. },
  6397. [
  6398. {
  6399. name: "Puffball",
  6400. height: math.unit(6, "inches")
  6401. },
  6402. {
  6403. name: "Normalpuff",
  6404. height: math.unit(5.75, "feet")
  6405. },
  6406. {
  6407. name: "Macropuff",
  6408. height: math.unit(1500, "feet"),
  6409. default: true
  6410. },
  6411. {
  6412. name: "Megapuff",
  6413. height: math.unit(500, "miles")
  6414. },
  6415. {
  6416. name: "Gigapuff",
  6417. height: math.unit(250000, "miles")
  6418. },
  6419. {
  6420. name: "Omegapuff",
  6421. height: math.unit(1000, "lightyears")
  6422. },
  6423. ]
  6424. ))
  6425. characterMakers.push(() => makeCharacter(
  6426. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  6427. {
  6428. stomping: {
  6429. height: math.unit(6, "feet"),
  6430. weight: math.unit(170, "lbs"),
  6431. name: "Stomping",
  6432. image: {
  6433. source: "./media/characters/vivian/stomping.svg"
  6434. }
  6435. },
  6436. sitting: {
  6437. height: math.unit(6 / 1.75, "feet"),
  6438. weight: math.unit(170, "lbs"),
  6439. name: "Sitting",
  6440. image: {
  6441. source: "./media/characters/vivian/sitting.svg",
  6442. bottom: 1 / 6.4,
  6443. extra: 1,
  6444. }
  6445. },
  6446. },
  6447. [
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(7, "feet"),
  6451. default: true
  6452. },
  6453. {
  6454. name: "Macro",
  6455. height: math.unit(10, "stories")
  6456. },
  6457. {
  6458. name: "Macro+",
  6459. height: math.unit(30, "stories")
  6460. },
  6461. {
  6462. name: "Megamacro",
  6463. height: math.unit(10, "miles")
  6464. },
  6465. {
  6466. name: "Megamacro+",
  6467. height: math.unit(2750000, "meters")
  6468. },
  6469. ]
  6470. ))
  6471. characterMakers.push(() => makeCharacter(
  6472. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  6473. {
  6474. front: {
  6475. height: math.unit(6, "feet"),
  6476. weight: math.unit(160, "lbs"),
  6477. name: "Front",
  6478. image: {
  6479. source: "./media/characters/prince/front.svg",
  6480. extra: 1938/1682,
  6481. bottom: 45/1983
  6482. }
  6483. },
  6484. back: {
  6485. height: math.unit(6, "feet"),
  6486. weight: math.unit(160, "lbs"),
  6487. name: "Back",
  6488. image: {
  6489. source: "./media/characters/prince/back.svg",
  6490. extra: 1955/1726,
  6491. bottom: 6/1961
  6492. }
  6493. },
  6494. },
  6495. [
  6496. {
  6497. name: "Normal",
  6498. height: math.unit(7.75, "feet"),
  6499. default: true
  6500. },
  6501. {
  6502. name: "Not cute",
  6503. height: math.unit(17, "feet")
  6504. },
  6505. {
  6506. name: "I said NOT",
  6507. height: math.unit(91, "feet")
  6508. },
  6509. {
  6510. name: "Please stop",
  6511. height: math.unit(560, "feet")
  6512. },
  6513. {
  6514. name: "What have you done",
  6515. height: math.unit(2200, "feet")
  6516. },
  6517. {
  6518. name: "Deer God",
  6519. height: math.unit(3.6, "miles")
  6520. },
  6521. ]
  6522. ))
  6523. characterMakers.push(() => makeCharacter(
  6524. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  6525. {
  6526. standing: {
  6527. height: math.unit(6, "feet"),
  6528. weight: math.unit(300, "lbs"),
  6529. name: "Standing",
  6530. image: {
  6531. source: "./media/characters/psymon/standing.svg",
  6532. extra: 1888 / 1810,
  6533. bottom: 0.05
  6534. }
  6535. },
  6536. slithering: {
  6537. height: math.unit(6, "feet"),
  6538. weight: math.unit(300, "lbs"),
  6539. name: "Slithering",
  6540. image: {
  6541. source: "./media/characters/psymon/slithering.svg",
  6542. extra: 1330 / 1224
  6543. }
  6544. },
  6545. slitheringAlt: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(300, "lbs"),
  6548. name: "Slithering (Alt)",
  6549. image: {
  6550. source: "./media/characters/psymon/slithering-alt.svg",
  6551. extra: 1330 / 1224
  6552. }
  6553. },
  6554. },
  6555. [
  6556. {
  6557. name: "Normal",
  6558. height: math.unit(11.25, "feet"),
  6559. default: true
  6560. },
  6561. {
  6562. name: "Large",
  6563. height: math.unit(27, "feet")
  6564. },
  6565. {
  6566. name: "Giant",
  6567. height: math.unit(87, "feet")
  6568. },
  6569. {
  6570. name: "Macro",
  6571. height: math.unit(365, "feet")
  6572. },
  6573. {
  6574. name: "Megamacro",
  6575. height: math.unit(3, "miles")
  6576. },
  6577. {
  6578. name: "World Serpent",
  6579. height: math.unit(8000, "miles")
  6580. },
  6581. ]
  6582. ))
  6583. characterMakers.push(() => makeCharacter(
  6584. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  6585. {
  6586. front: {
  6587. height: math.unit(6, "feet"),
  6588. weight: math.unit(180, "lbs"),
  6589. name: "Front",
  6590. image: {
  6591. source: "./media/characters/daimos/front.svg",
  6592. extra: 4160 / 3897,
  6593. bottom: 0.021
  6594. }
  6595. }
  6596. },
  6597. [
  6598. {
  6599. name: "Normal",
  6600. height: math.unit(8, "feet"),
  6601. default: true
  6602. },
  6603. {
  6604. name: "Big Dog",
  6605. height: math.unit(22, "feet")
  6606. },
  6607. {
  6608. name: "Macro",
  6609. height: math.unit(127, "feet")
  6610. },
  6611. {
  6612. name: "Megamacro",
  6613. height: math.unit(3600, "feet")
  6614. },
  6615. ]
  6616. ))
  6617. characterMakers.push(() => makeCharacter(
  6618. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  6619. {
  6620. side: {
  6621. height: math.unit(6, "feet"),
  6622. weight: math.unit(180, "lbs"),
  6623. name: "Side",
  6624. image: {
  6625. source: "./media/characters/blake/side.svg",
  6626. extra: 1212 / 1120,
  6627. bottom: 0.05
  6628. }
  6629. },
  6630. crouched: {
  6631. height: math.unit(6 * 0.57, "feet"),
  6632. weight: math.unit(180, "lbs"),
  6633. name: "Crouched",
  6634. image: {
  6635. source: "./media/characters/blake/crouched.svg",
  6636. extra: 840 / 587,
  6637. bottom: 0.04
  6638. }
  6639. },
  6640. bent: {
  6641. height: math.unit(6 * 0.75, "feet"),
  6642. weight: math.unit(180, "lbs"),
  6643. name: "Bent",
  6644. image: {
  6645. source: "./media/characters/blake/bent.svg",
  6646. extra: 592 / 544,
  6647. bottom: 0.035
  6648. }
  6649. },
  6650. },
  6651. [
  6652. {
  6653. name: "Normal",
  6654. height: math.unit(8 + 1 / 6, "feet"),
  6655. default: true
  6656. },
  6657. {
  6658. name: "Big Backside",
  6659. height: math.unit(37, "feet")
  6660. },
  6661. {
  6662. name: "Subway Shredder",
  6663. height: math.unit(72, "feet")
  6664. },
  6665. {
  6666. name: "City Carver",
  6667. height: math.unit(1675, "feet")
  6668. },
  6669. {
  6670. name: "Tectonic Tweaker",
  6671. height: math.unit(2300, "miles")
  6672. },
  6673. ]
  6674. ))
  6675. characterMakers.push(() => makeCharacter(
  6676. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  6677. {
  6678. front: {
  6679. height: math.unit(6, "feet"),
  6680. weight: math.unit(180, "lbs"),
  6681. name: "Front",
  6682. image: {
  6683. source: "./media/characters/guisetto/front.svg",
  6684. extra: 856 / 817,
  6685. bottom: 0.06
  6686. }
  6687. },
  6688. airborne: {
  6689. height: math.unit(6, "feet"),
  6690. weight: math.unit(180, "lbs"),
  6691. name: "Airborne",
  6692. image: {
  6693. source: "./media/characters/guisetto/airborne.svg",
  6694. extra: 584 / 525
  6695. }
  6696. },
  6697. },
  6698. [
  6699. {
  6700. name: "Normal",
  6701. height: math.unit(10 + 11 / 12, "feet"),
  6702. default: true
  6703. },
  6704. {
  6705. name: "Large",
  6706. height: math.unit(35, "feet")
  6707. },
  6708. {
  6709. name: "Macro",
  6710. height: math.unit(475, "feet")
  6711. },
  6712. ]
  6713. ))
  6714. characterMakers.push(() => makeCharacter(
  6715. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  6716. {
  6717. front: {
  6718. height: math.unit(6, "feet"),
  6719. weight: math.unit(180, "lbs"),
  6720. name: "Front",
  6721. image: {
  6722. source: "./media/characters/luxor/front.svg",
  6723. extra: 2940 / 2152
  6724. }
  6725. },
  6726. back: {
  6727. height: math.unit(6, "feet"),
  6728. weight: math.unit(180, "lbs"),
  6729. name: "Back",
  6730. image: {
  6731. source: "./media/characters/luxor/back.svg",
  6732. extra: 1083 / 960
  6733. }
  6734. },
  6735. },
  6736. [
  6737. {
  6738. name: "Normal",
  6739. height: math.unit(5 + 5 / 6, "feet"),
  6740. default: true
  6741. },
  6742. {
  6743. name: "Lamp",
  6744. height: math.unit(50, "feet")
  6745. },
  6746. {
  6747. name: "Lämp",
  6748. height: math.unit(300, "feet")
  6749. },
  6750. {
  6751. name: "The sun is a lamp",
  6752. height: math.unit(250000, "miles")
  6753. },
  6754. ]
  6755. ))
  6756. characterMakers.push(() => makeCharacter(
  6757. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  6758. {
  6759. front: {
  6760. height: math.unit(6, "feet"),
  6761. weight: math.unit(50, "lbs"),
  6762. name: "Front",
  6763. image: {
  6764. source: "./media/characters/huoyan/front.svg"
  6765. }
  6766. },
  6767. side: {
  6768. height: math.unit(6, "feet"),
  6769. weight: math.unit(180, "lbs"),
  6770. name: "Side",
  6771. image: {
  6772. source: "./media/characters/huoyan/side.svg"
  6773. }
  6774. },
  6775. },
  6776. [
  6777. {
  6778. name: "Chef",
  6779. height: math.unit(9, "feet")
  6780. },
  6781. {
  6782. name: "Normal",
  6783. height: math.unit(65, "feet"),
  6784. default: true
  6785. },
  6786. {
  6787. name: "Macro",
  6788. height: math.unit(780, "feet")
  6789. },
  6790. {
  6791. name: "Flaming Mountain",
  6792. height: math.unit(4.8, "miles")
  6793. },
  6794. {
  6795. name: "Celestial",
  6796. height: math.unit(765000, "miles")
  6797. },
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(5 + 3 / 4, "feet"),
  6805. weight: math.unit(120, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/tails/front.svg"
  6809. }
  6810. }
  6811. },
  6812. [
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(5 + 3 / 4, "feet"),
  6816. default: true
  6817. }
  6818. ]
  6819. ))
  6820. characterMakers.push(() => makeCharacter(
  6821. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  6822. {
  6823. front: {
  6824. height: math.unit(4, "feet"),
  6825. weight: math.unit(50, "lbs"),
  6826. name: "Front",
  6827. image: {
  6828. source: "./media/characters/rainy/front.svg"
  6829. }
  6830. }
  6831. },
  6832. [
  6833. {
  6834. name: "Macro",
  6835. height: math.unit(800, "feet"),
  6836. default: true
  6837. }
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(150, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/rainier/front.svg"
  6849. }
  6850. }
  6851. },
  6852. [
  6853. {
  6854. name: "Micro",
  6855. height: math.unit(2, "mm"),
  6856. default: true
  6857. }
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Andy Renard", species: ["fox"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(8 + 4/12, "feet"),
  6865. weight: math.unit(450, "kilograms"),
  6866. volume: math.unit(5, "cups"),
  6867. name: "Front",
  6868. image: {
  6869. source: "./media/characters/andy-renard/front.svg",
  6870. extra: 1839/1726,
  6871. bottom: 134/1973
  6872. }
  6873. },
  6874. back: {
  6875. height: math.unit(8 + 4/12, "feet"),
  6876. weight: math.unit(450, "kilograms"),
  6877. volume: math.unit(5, "cups"),
  6878. name: "Back",
  6879. image: {
  6880. source: "./media/characters/andy-renard/back.svg",
  6881. extra: 1838/1710,
  6882. bottom: 105/1943
  6883. }
  6884. },
  6885. },
  6886. [
  6887. {
  6888. name: "Tall",
  6889. height: math.unit(8 + 4/12, "feet")
  6890. },
  6891. {
  6892. name: "Mini Macro",
  6893. height: math.unit(15, "feet"),
  6894. default: true
  6895. },
  6896. {
  6897. name: "Macro",
  6898. height: math.unit(100, "feet")
  6899. },
  6900. {
  6901. name: "Mega Macro",
  6902. height: math.unit(1000, "feet")
  6903. },
  6904. {
  6905. name: "Giga Macro",
  6906. height: math.unit(10, "miles")
  6907. },
  6908. {
  6909. name: "God Macro",
  6910. height: math.unit(1, "multiverse")
  6911. },
  6912. ]
  6913. ))
  6914. characterMakers.push(() => makeCharacter(
  6915. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  6916. {
  6917. front: {
  6918. height: math.unit(6, "feet"),
  6919. weight: math.unit(210, "lbs"),
  6920. name: "Front",
  6921. image: {
  6922. source: "./media/characters/cimmaron/front-sfw.svg",
  6923. extra: 701 / 676,
  6924. bottom: 0.046
  6925. }
  6926. },
  6927. back: {
  6928. height: math.unit(6, "feet"),
  6929. weight: math.unit(210, "lbs"),
  6930. name: "Back",
  6931. image: {
  6932. source: "./media/characters/cimmaron/back-sfw.svg",
  6933. extra: 701 / 676,
  6934. bottom: 0.046
  6935. }
  6936. },
  6937. frontNsfw: {
  6938. height: math.unit(6, "feet"),
  6939. weight: math.unit(210, "lbs"),
  6940. name: "Front (NSFW)",
  6941. image: {
  6942. source: "./media/characters/cimmaron/front-nsfw.svg",
  6943. extra: 701 / 676,
  6944. bottom: 0.046
  6945. }
  6946. },
  6947. backNsfw: {
  6948. height: math.unit(6, "feet"),
  6949. weight: math.unit(210, "lbs"),
  6950. name: "Back (NSFW)",
  6951. image: {
  6952. source: "./media/characters/cimmaron/back-nsfw.svg",
  6953. extra: 701 / 676,
  6954. bottom: 0.046
  6955. }
  6956. },
  6957. dick: {
  6958. height: math.unit(1.714, "feet"),
  6959. name: "Dick",
  6960. image: {
  6961. source: "./media/characters/cimmaron/dick.svg"
  6962. }
  6963. },
  6964. },
  6965. [
  6966. {
  6967. name: "Normal",
  6968. height: math.unit(6, "feet"),
  6969. default: true
  6970. },
  6971. {
  6972. name: "Macro Mayor",
  6973. height: math.unit(350, "meters")
  6974. },
  6975. ]
  6976. ))
  6977. characterMakers.push(() => makeCharacter(
  6978. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  6979. {
  6980. front: {
  6981. height: math.unit(6, "feet"),
  6982. weight: math.unit(200, "lbs"),
  6983. name: "Front",
  6984. image: {
  6985. source: "./media/characters/akari/front.svg",
  6986. extra: 962 / 901,
  6987. bottom: 0.04
  6988. }
  6989. }
  6990. },
  6991. [
  6992. {
  6993. name: "Micro",
  6994. height: math.unit(5, "inches"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Normal",
  6999. height: math.unit(7, "feet")
  7000. },
  7001. ]
  7002. ))
  7003. characterMakers.push(() => makeCharacter(
  7004. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  7005. {
  7006. front: {
  7007. height: math.unit(6, "feet"),
  7008. weight: math.unit(140, "lbs"),
  7009. name: "Front",
  7010. image: {
  7011. source: "./media/characters/cynosura/front.svg",
  7012. extra: 437/410,
  7013. bottom: 9/446
  7014. }
  7015. },
  7016. back: {
  7017. height: math.unit(6, "feet"),
  7018. weight: math.unit(140, "lbs"),
  7019. name: "Back",
  7020. image: {
  7021. source: "./media/characters/cynosura/back.svg",
  7022. extra: 1304/1160,
  7023. bottom: 71/1375
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Micro",
  7030. height: math.unit(4, "inches")
  7031. },
  7032. {
  7033. name: "Normal",
  7034. height: math.unit(5.75, "feet"),
  7035. default: true
  7036. },
  7037. {
  7038. name: "Tall",
  7039. height: math.unit(10, "feet")
  7040. },
  7041. {
  7042. name: "Big",
  7043. height: math.unit(20, "feet")
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(50, "feet")
  7048. },
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(13 + 2/12, "feet"),
  7056. weight: math.unit(800, "kg"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/gin/front.svg",
  7060. extra: 1312/1191,
  7061. bottom: 45/1357
  7062. }
  7063. },
  7064. mouth: {
  7065. height: math.unit(2.39 * 1.8, "feet"),
  7066. name: "Mouth",
  7067. image: {
  7068. source: "./media/characters/gin/mouth.svg"
  7069. }
  7070. },
  7071. hand: {
  7072. height: math.unit(1.57 * 2.19, "feet"),
  7073. name: "Hand",
  7074. image: {
  7075. source: "./media/characters/gin/hand.svg"
  7076. }
  7077. },
  7078. foot: {
  7079. height: math.unit(6 / 4.25 * 2.19, "feet"),
  7080. name: "Foot",
  7081. image: {
  7082. source: "./media/characters/gin/foot.svg"
  7083. }
  7084. },
  7085. sole: {
  7086. height: math.unit(6 / 4.40 * 2.19, "feet"),
  7087. name: "Sole",
  7088. image: {
  7089. source: "./media/characters/gin/sole.svg"
  7090. }
  7091. },
  7092. },
  7093. [
  7094. {
  7095. name: "Very Small",
  7096. height: math.unit(13 + 2 / 12, "feet")
  7097. },
  7098. {
  7099. name: "Micro",
  7100. height: math.unit(600, "miles")
  7101. },
  7102. {
  7103. name: "Regular",
  7104. height: math.unit(20, "earths"),
  7105. default: true
  7106. },
  7107. {
  7108. name: "Macro",
  7109. height: math.unit(2.2, "solarradii")
  7110. },
  7111. {
  7112. name: "Teramacro",
  7113. height: math.unit(1.2, "galaxies")
  7114. },
  7115. {
  7116. name: "Omegamacro",
  7117. height: math.unit(200, "universes")
  7118. },
  7119. ]
  7120. ))
  7121. characterMakers.push(() => makeCharacter(
  7122. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  7123. {
  7124. front: {
  7125. height: math.unit(6 + 1 / 6, "feet"),
  7126. weight: math.unit(178, "lbs"),
  7127. name: "Front",
  7128. image: {
  7129. source: "./media/characters/guy/front.svg"
  7130. }
  7131. }
  7132. },
  7133. [
  7134. {
  7135. name: "Normal",
  7136. height: math.unit(6 + 1 / 6, "feet"),
  7137. default: true
  7138. },
  7139. {
  7140. name: "Large",
  7141. height: math.unit(25 + 7 / 12, "feet")
  7142. },
  7143. {
  7144. name: "Macro",
  7145. height: math.unit(60 + 9 / 12, "feet")
  7146. },
  7147. {
  7148. name: "Macro+",
  7149. height: math.unit(246, "feet")
  7150. },
  7151. {
  7152. name: "Macro++",
  7153. height: math.unit(878, "feet")
  7154. }
  7155. ]
  7156. ))
  7157. characterMakers.push(() => makeCharacter(
  7158. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  7159. {
  7160. front: {
  7161. height: math.unit(9, "feet"),
  7162. weight: math.unit(800, "lbs"),
  7163. name: "Front",
  7164. image: {
  7165. source: "./media/characters/tiberius/front.svg",
  7166. extra: 2295 / 2071
  7167. }
  7168. },
  7169. back: {
  7170. height: math.unit(9, "feet"),
  7171. weight: math.unit(800, "lbs"),
  7172. name: "Back",
  7173. image: {
  7174. source: "./media/characters/tiberius/back.svg",
  7175. extra: 2373 / 2160
  7176. }
  7177. },
  7178. },
  7179. [
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(9, "feet"),
  7183. default: true
  7184. }
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  7189. {
  7190. front: {
  7191. height: math.unit(6, "feet"),
  7192. weight: math.unit(600, "lbs"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/surgo/front.svg",
  7196. extra: 3591 / 2227
  7197. }
  7198. },
  7199. back: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(600, "lbs"),
  7202. name: "Back",
  7203. image: {
  7204. source: "./media/characters/surgo/back.svg",
  7205. extra: 3557 / 2228
  7206. }
  7207. },
  7208. laying: {
  7209. height: math.unit(6 * 0.85, "feet"),
  7210. weight: math.unit(600, "lbs"),
  7211. name: "Laying",
  7212. image: {
  7213. source: "./media/characters/surgo/laying.svg"
  7214. }
  7215. },
  7216. },
  7217. [
  7218. {
  7219. name: "Normal",
  7220. height: math.unit(6, "feet"),
  7221. default: true
  7222. }
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  7227. {
  7228. side: {
  7229. height: math.unit(6, "feet"),
  7230. weight: math.unit(150, "lbs"),
  7231. name: "Side",
  7232. image: {
  7233. source: "./media/characters/cibus/side.svg",
  7234. extra: 800 / 400
  7235. }
  7236. },
  7237. },
  7238. [
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(6, "feet"),
  7242. default: true
  7243. }
  7244. ]
  7245. ))
  7246. characterMakers.push(() => makeCharacter(
  7247. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  7248. {
  7249. front: {
  7250. height: math.unit(6, "feet"),
  7251. weight: math.unit(240, "lbs"),
  7252. name: "Front",
  7253. image: {
  7254. source: "./media/characters/nibbles/front.svg"
  7255. }
  7256. },
  7257. side: {
  7258. height: math.unit(6, "feet"),
  7259. weight: math.unit(240, "lbs"),
  7260. name: "Side",
  7261. image: {
  7262. source: "./media/characters/nibbles/side.svg"
  7263. }
  7264. },
  7265. },
  7266. [
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(9, "feet"),
  7270. default: true
  7271. }
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  7276. {
  7277. side: {
  7278. height: math.unit(5 + 1 / 6, "feet"),
  7279. weight: math.unit(130, "lbs"),
  7280. name: "Side",
  7281. image: {
  7282. source: "./media/characters/rikky/side.svg",
  7283. extra: 851 / 801
  7284. }
  7285. },
  7286. },
  7287. [
  7288. {
  7289. name: "Normal",
  7290. height: math.unit(5 + 1 / 6, "feet")
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(152, "feet"),
  7295. default: true
  7296. },
  7297. {
  7298. name: "Megamacro",
  7299. height: math.unit(7, "miles")
  7300. }
  7301. ]
  7302. ))
  7303. characterMakers.push(() => makeCharacter(
  7304. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  7305. {
  7306. side: {
  7307. height: math.unit(370, "cm"),
  7308. weight: math.unit(350, "lbs"),
  7309. name: "Side",
  7310. image: {
  7311. source: "./media/characters/malfressa/side.svg"
  7312. }
  7313. },
  7314. walking: {
  7315. height: math.unit(370, "cm"),
  7316. weight: math.unit(350, "lbs"),
  7317. name: "Walking",
  7318. image: {
  7319. source: "./media/characters/malfressa/walking.svg"
  7320. }
  7321. },
  7322. feral: {
  7323. height: math.unit(2500, "cm"),
  7324. weight: math.unit(100000, "lbs"),
  7325. name: "Feral",
  7326. image: {
  7327. source: "./media/characters/malfressa/feral.svg",
  7328. extra: 2108 / 837,
  7329. bottom: 0.02
  7330. }
  7331. },
  7332. },
  7333. [
  7334. {
  7335. name: "Normal",
  7336. height: math.unit(370, "cm")
  7337. },
  7338. {
  7339. name: "Macro",
  7340. height: math.unit(300, "meters"),
  7341. default: true
  7342. }
  7343. ]
  7344. ))
  7345. characterMakers.push(() => makeCharacter(
  7346. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  7347. {
  7348. front: {
  7349. height: math.unit(6, "feet"),
  7350. weight: math.unit(60, "kg"),
  7351. name: "Front",
  7352. image: {
  7353. source: "./media/characters/jaro/front.svg",
  7354. extra: 845/817,
  7355. bottom: 45/890
  7356. }
  7357. },
  7358. back: {
  7359. height: math.unit(6, "feet"),
  7360. weight: math.unit(60, "kg"),
  7361. name: "Back",
  7362. image: {
  7363. source: "./media/characters/jaro/back.svg",
  7364. extra: 847/817,
  7365. bottom: 34/881
  7366. }
  7367. },
  7368. },
  7369. [
  7370. {
  7371. name: "Micro",
  7372. height: math.unit(7, "inches")
  7373. },
  7374. {
  7375. name: "Normal",
  7376. height: math.unit(5.5, "feet"),
  7377. default: true
  7378. },
  7379. {
  7380. name: "Minimacro",
  7381. height: math.unit(20, "feet")
  7382. },
  7383. {
  7384. name: "Macro",
  7385. height: math.unit(200, "meters")
  7386. }
  7387. ]
  7388. ))
  7389. characterMakers.push(() => makeCharacter(
  7390. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  7391. {
  7392. front: {
  7393. height: math.unit(6, "feet"),
  7394. weight: math.unit(195, "lb"),
  7395. name: "Front",
  7396. image: {
  7397. source: "./media/characters/rogue/front.svg"
  7398. }
  7399. },
  7400. },
  7401. [
  7402. {
  7403. name: "Macro",
  7404. height: math.unit(90, "feet"),
  7405. default: true
  7406. },
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  7411. {
  7412. standing: {
  7413. height: math.unit(5 + 8 / 12, "feet"),
  7414. weight: math.unit(140, "lb"),
  7415. name: "Standing",
  7416. image: {
  7417. source: "./media/characters/piper/standing.svg",
  7418. extra: 1440/1284,
  7419. bottom: 66/1506
  7420. }
  7421. },
  7422. running: {
  7423. height: math.unit(5 + 8 / 12, "feet"),
  7424. weight: math.unit(140, "lb"),
  7425. name: "Running",
  7426. image: {
  7427. source: "./media/characters/piper/running.svg",
  7428. extra: 3948/3655,
  7429. bottom: 0/3948
  7430. }
  7431. },
  7432. sole: {
  7433. height: math.unit(0.81, "feet"),
  7434. weight: math.unit(2, "kg"),
  7435. name: "Sole",
  7436. image: {
  7437. source: "./media/characters/piper/sole.svg"
  7438. }
  7439. },
  7440. nipple: {
  7441. height: math.unit(0.25, "feet"),
  7442. weight: math.unit(1.5, "lb"),
  7443. name: "Nipple",
  7444. image: {
  7445. source: "./media/characters/piper/nipple.svg"
  7446. }
  7447. },
  7448. head: {
  7449. height: math.unit(1.1, "feet"),
  7450. name: "Head",
  7451. image: {
  7452. source: "./media/characters/piper/head.svg"
  7453. }
  7454. },
  7455. },
  7456. [
  7457. {
  7458. name: "Micro",
  7459. height: math.unit(2, "inches")
  7460. },
  7461. {
  7462. name: "Normal",
  7463. height: math.unit(5 + 8 / 12, "feet")
  7464. },
  7465. {
  7466. name: "Macro",
  7467. height: math.unit(250, "feet"),
  7468. default: true
  7469. },
  7470. {
  7471. name: "Megamacro",
  7472. height: math.unit(7, "miles")
  7473. },
  7474. ]
  7475. ))
  7476. characterMakers.push(() => makeCharacter(
  7477. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  7478. {
  7479. front: {
  7480. height: math.unit(6, "feet"),
  7481. weight: math.unit(220, "lb"),
  7482. name: "Front",
  7483. image: {
  7484. source: "./media/characters/gemini/front.svg"
  7485. }
  7486. },
  7487. back: {
  7488. height: math.unit(6, "feet"),
  7489. weight: math.unit(220, "lb"),
  7490. name: "Back",
  7491. image: {
  7492. source: "./media/characters/gemini/back.svg"
  7493. }
  7494. },
  7495. kneeling: {
  7496. height: math.unit(6 / 1.5, "feet"),
  7497. weight: math.unit(220, "lb"),
  7498. name: "Kneeling",
  7499. image: {
  7500. source: "./media/characters/gemini/kneeling.svg",
  7501. bottom: 0.02
  7502. }
  7503. },
  7504. },
  7505. [
  7506. {
  7507. name: "Macro",
  7508. height: math.unit(300, "meters"),
  7509. default: true
  7510. },
  7511. {
  7512. name: "Megamacro",
  7513. height: math.unit(6900, "meters")
  7514. },
  7515. ]
  7516. ))
  7517. characterMakers.push(() => makeCharacter(
  7518. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  7519. {
  7520. anthro: {
  7521. height: math.unit(2.35, "meters"),
  7522. weight: math.unit(73, "kg"),
  7523. name: "Anthro",
  7524. image: {
  7525. source: "./media/characters/alicia/anthro.svg",
  7526. extra: 2571 / 2385,
  7527. bottom: 75 / 2648
  7528. }
  7529. },
  7530. paw: {
  7531. height: math.unit(1.32, "feet"),
  7532. name: "Paw",
  7533. image: {
  7534. source: "./media/characters/alicia/paw.svg"
  7535. }
  7536. },
  7537. feral: {
  7538. height: math.unit(1.69, "meters"),
  7539. weight: math.unit(73, "kg"),
  7540. name: "Feral",
  7541. image: {
  7542. source: "./media/characters/alicia/feral.svg",
  7543. extra: 2123 / 1715,
  7544. bottom: 222 / 2349
  7545. }
  7546. },
  7547. },
  7548. [
  7549. {
  7550. name: "Normal",
  7551. height: math.unit(2.35, "meters")
  7552. },
  7553. {
  7554. name: "Macro",
  7555. height: math.unit(60, "meters"),
  7556. default: true
  7557. },
  7558. {
  7559. name: "Megamacro",
  7560. height: math.unit(10000, "kilometers")
  7561. },
  7562. ]
  7563. ))
  7564. characterMakers.push(() => makeCharacter(
  7565. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  7566. {
  7567. front: {
  7568. height: math.unit(7, "feet"),
  7569. weight: math.unit(250, "lbs"),
  7570. name: "Front",
  7571. image: {
  7572. source: "./media/characters/archy/front.svg"
  7573. }
  7574. }
  7575. },
  7576. [
  7577. {
  7578. name: "Micro",
  7579. height: math.unit(1, "inch")
  7580. },
  7581. {
  7582. name: "Shorty",
  7583. height: math.unit(5, "feet")
  7584. },
  7585. {
  7586. name: "Normal",
  7587. height: math.unit(7, "feet")
  7588. },
  7589. {
  7590. name: "Macro",
  7591. height: math.unit(600, "meters"),
  7592. default: true
  7593. },
  7594. {
  7595. name: "Megamacro",
  7596. height: math.unit(1, "mile")
  7597. },
  7598. ]
  7599. ))
  7600. characterMakers.push(() => makeCharacter(
  7601. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  7602. {
  7603. front: {
  7604. height: math.unit(1.65, "meters"),
  7605. weight: math.unit(74, "kg"),
  7606. name: "Front",
  7607. image: {
  7608. source: "./media/characters/berri/front.svg",
  7609. extra: 857 / 837,
  7610. bottom: 18 / 877
  7611. }
  7612. },
  7613. bum: {
  7614. height: math.unit(1.46, "feet"),
  7615. name: "Bum",
  7616. image: {
  7617. source: "./media/characters/berri/bum.svg"
  7618. }
  7619. },
  7620. mouth: {
  7621. height: math.unit(0.44, "feet"),
  7622. name: "Mouth",
  7623. image: {
  7624. source: "./media/characters/berri/mouth.svg"
  7625. }
  7626. },
  7627. paw: {
  7628. height: math.unit(0.826, "feet"),
  7629. name: "Paw",
  7630. image: {
  7631. source: "./media/characters/berri/paw.svg"
  7632. }
  7633. },
  7634. },
  7635. [
  7636. {
  7637. name: "Normal",
  7638. height: math.unit(1.65, "meters")
  7639. },
  7640. {
  7641. name: "Macro",
  7642. height: math.unit(60, "m"),
  7643. default: true
  7644. },
  7645. {
  7646. name: "Megamacro",
  7647. height: math.unit(9.213, "km")
  7648. },
  7649. {
  7650. name: "Planet Eater",
  7651. height: math.unit(489, "megameters")
  7652. },
  7653. {
  7654. name: "Teramacro",
  7655. height: math.unit(2471635000000, "meters")
  7656. },
  7657. {
  7658. name: "Examacro",
  7659. height: math.unit(8.0624e+26, "meters")
  7660. }
  7661. ]
  7662. ))
  7663. characterMakers.push(() => makeCharacter(
  7664. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  7665. {
  7666. front: {
  7667. height: math.unit(1.72, "meters"),
  7668. weight: math.unit(68, "kg"),
  7669. name: "Front",
  7670. image: {
  7671. source: "./media/characters/lexi/front.svg"
  7672. }
  7673. }
  7674. },
  7675. [
  7676. {
  7677. name: "Very Smol",
  7678. height: math.unit(10, "mm")
  7679. },
  7680. {
  7681. name: "Micro",
  7682. height: math.unit(6.8, "cm"),
  7683. default: true
  7684. },
  7685. {
  7686. name: "Normal",
  7687. height: math.unit(1.72, "m")
  7688. }
  7689. ]
  7690. ))
  7691. characterMakers.push(() => makeCharacter(
  7692. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  7693. {
  7694. front: {
  7695. height: math.unit(1.69, "meters"),
  7696. weight: math.unit(68, "kg"),
  7697. name: "Front",
  7698. image: {
  7699. source: "./media/characters/martin/front.svg",
  7700. extra: 596 / 581
  7701. }
  7702. }
  7703. },
  7704. [
  7705. {
  7706. name: "Micro",
  7707. height: math.unit(6.85, "cm"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Normal",
  7712. height: math.unit(1.69, "m")
  7713. }
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  7718. {
  7719. front: {
  7720. height: math.unit(1.69, "meters"),
  7721. weight: math.unit(68, "kg"),
  7722. name: "Front",
  7723. image: {
  7724. source: "./media/characters/juno/front.svg"
  7725. }
  7726. }
  7727. },
  7728. [
  7729. {
  7730. name: "Micro",
  7731. height: math.unit(7, "cm")
  7732. },
  7733. {
  7734. name: "Normal",
  7735. height: math.unit(1.89, "m")
  7736. },
  7737. {
  7738. name: "Macro",
  7739. height: math.unit(353, "meters"),
  7740. default: true
  7741. }
  7742. ]
  7743. ))
  7744. characterMakers.push(() => makeCharacter(
  7745. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  7746. {
  7747. front: {
  7748. height: math.unit(1.93, "meters"),
  7749. weight: math.unit(83, "kg"),
  7750. name: "Front",
  7751. image: {
  7752. source: "./media/characters/samantha/front.svg"
  7753. }
  7754. },
  7755. frontClothed: {
  7756. height: math.unit(1.93, "meters"),
  7757. weight: math.unit(83, "kg"),
  7758. name: "Front (Clothed)",
  7759. image: {
  7760. source: "./media/characters/samantha/front-clothed.svg"
  7761. }
  7762. },
  7763. back: {
  7764. height: math.unit(1.93, "meters"),
  7765. weight: math.unit(83, "kg"),
  7766. name: "Back",
  7767. image: {
  7768. source: "./media/characters/samantha/back.svg"
  7769. }
  7770. },
  7771. },
  7772. [
  7773. {
  7774. name: "Normal",
  7775. height: math.unit(1.93, "m")
  7776. },
  7777. {
  7778. name: "Macro",
  7779. height: math.unit(74, "meters"),
  7780. default: true
  7781. },
  7782. {
  7783. name: "Macro+",
  7784. height: math.unit(223, "meters"),
  7785. },
  7786. {
  7787. name: "Megamacro",
  7788. height: math.unit(8381, "meters"),
  7789. },
  7790. {
  7791. name: "Megamacro+",
  7792. height: math.unit(12000, "kilometers")
  7793. },
  7794. ]
  7795. ))
  7796. characterMakers.push(() => makeCharacter(
  7797. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  7798. {
  7799. front: {
  7800. height: math.unit(1.92, "meters"),
  7801. weight: math.unit(80, "kg"),
  7802. name: "Front",
  7803. image: {
  7804. source: "./media/characters/dr-clay/front.svg"
  7805. }
  7806. },
  7807. frontClothed: {
  7808. height: math.unit(1.92, "meters"),
  7809. weight: math.unit(80, "kg"),
  7810. name: "Front (Clothed)",
  7811. image: {
  7812. source: "./media/characters/dr-clay/front-clothed.svg"
  7813. }
  7814. }
  7815. },
  7816. [
  7817. {
  7818. name: "Normal",
  7819. height: math.unit(1.92, "m")
  7820. },
  7821. {
  7822. name: "Macro",
  7823. height: math.unit(214, "meters"),
  7824. default: true
  7825. },
  7826. {
  7827. name: "Macro+",
  7828. height: math.unit(12.237, "meters"),
  7829. },
  7830. {
  7831. name: "Megamacro",
  7832. height: math.unit(557, "megameters"),
  7833. },
  7834. {
  7835. name: "Unimaginable",
  7836. height: math.unit(120e9, "lightyears")
  7837. },
  7838. ]
  7839. ))
  7840. characterMakers.push(() => makeCharacter(
  7841. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  7842. {
  7843. front: {
  7844. height: math.unit(2, "meters"),
  7845. weight: math.unit(80, "kg"),
  7846. name: "Front",
  7847. image: {
  7848. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  7849. }
  7850. }
  7851. },
  7852. [
  7853. {
  7854. name: "Teramacro",
  7855. height: math.unit(500000, "lightyears"),
  7856. default: true
  7857. },
  7858. ]
  7859. ))
  7860. characterMakers.push(() => makeCharacter(
  7861. { name: "Vemus", species: ["crux", "skunk", "tanuki"], tags: ["anthro", "goo"] },
  7862. {
  7863. crux: {
  7864. height: math.unit(2, "meters"),
  7865. weight: math.unit(150, "kg"),
  7866. name: "Crux",
  7867. image: {
  7868. source: "./media/characters/vemus/crux.svg",
  7869. extra: 1074/936,
  7870. bottom: 23/1097
  7871. }
  7872. },
  7873. skunkTanuki: {
  7874. height: math.unit(2, "meters"),
  7875. weight: math.unit(150, "kg"),
  7876. name: "Skunk-Tanuki",
  7877. image: {
  7878. source: "./media/characters/vemus/skunk-tanuki.svg",
  7879. extra: 926/893,
  7880. bottom: 20/946
  7881. }
  7882. },
  7883. },
  7884. [
  7885. {
  7886. name: "Normal",
  7887. height: math.unit(4, "meters"),
  7888. default: true
  7889. },
  7890. {
  7891. name: "Big",
  7892. height: math.unit(8, "meters")
  7893. },
  7894. {
  7895. name: "Macro",
  7896. height: math.unit(100, "meters")
  7897. },
  7898. {
  7899. name: "Macro+",
  7900. height: math.unit(1500, "meters")
  7901. },
  7902. {
  7903. name: "Stellar",
  7904. height: math.unit(14e8, "meters")
  7905. },
  7906. ]
  7907. ))
  7908. characterMakers.push(() => makeCharacter(
  7909. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  7910. {
  7911. front: {
  7912. height: math.unit(2, "meters"),
  7913. weight: math.unit(70, "kg"),
  7914. name: "Front",
  7915. image: {
  7916. source: "./media/characters/beherit/front.svg",
  7917. extra: 1234/1109,
  7918. bottom: 55/1289
  7919. }
  7920. }
  7921. },
  7922. [
  7923. {
  7924. name: "Normal",
  7925. height: math.unit(6, "feet")
  7926. },
  7927. {
  7928. name: "Lorg",
  7929. height: math.unit(25, "feet"),
  7930. default: true
  7931. },
  7932. {
  7933. name: "Lorger",
  7934. height: math.unit(75, "feet")
  7935. },
  7936. {
  7937. name: "Macro",
  7938. height: math.unit(200, "meters")
  7939. },
  7940. ]
  7941. ))
  7942. characterMakers.push(() => makeCharacter(
  7943. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  7944. {
  7945. front: {
  7946. height: math.unit(2, "meters"),
  7947. weight: math.unit(150, "kg"),
  7948. name: "Front",
  7949. image: {
  7950. source: "./media/characters/everett/front.svg",
  7951. extra: 1017/866,
  7952. bottom: 86/1103
  7953. }
  7954. },
  7955. paw: {
  7956. height: math.unit(2 / 3.6, "meters"),
  7957. name: "Paw",
  7958. image: {
  7959. source: "./media/characters/everett/paw.svg"
  7960. }
  7961. },
  7962. },
  7963. [
  7964. {
  7965. name: "Normal",
  7966. height: math.unit(15, "feet"),
  7967. default: true
  7968. },
  7969. {
  7970. name: "Lorg",
  7971. height: math.unit(70, "feet"),
  7972. default: true
  7973. },
  7974. {
  7975. name: "Lorger",
  7976. height: math.unit(250, "feet")
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(500, "meters")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  7986. {
  7987. front: {
  7988. height: math.unit(2, "meters"),
  7989. weight: math.unit(86, "kg"),
  7990. name: "Front",
  7991. image: {
  7992. source: "./media/characters/rose/front.svg",
  7993. extra: 1785/1636,
  7994. bottom: 30/1815
  7995. },
  7996. form: "liom",
  7997. default: true
  7998. },
  7999. frontSporty: {
  8000. height: math.unit(2, "meters"),
  8001. weight: math.unit(86, "kg"),
  8002. name: "Front (Sporty)",
  8003. image: {
  8004. source: "./media/characters/rose/front-sporty.svg",
  8005. extra: 350/335,
  8006. bottom: 10/360
  8007. },
  8008. form: "liom"
  8009. },
  8010. frontAlt: {
  8011. height: math.unit(1.6, "meters"),
  8012. weight: math.unit(86, "kg"),
  8013. name: "Front (Alt)",
  8014. image: {
  8015. source: "./media/characters/rose/front-alt.svg",
  8016. extra: 299/283,
  8017. bottom: 3/302
  8018. },
  8019. form: "liom"
  8020. },
  8021. plush: {
  8022. height: math.unit(2, "meters"),
  8023. weight: math.unit(86/3, "kg"),
  8024. name: "Plush",
  8025. image: {
  8026. source: "./media/characters/rose/plush.svg",
  8027. extra: 361/337,
  8028. bottom: 11/372
  8029. },
  8030. form: "plush",
  8031. default: true
  8032. },
  8033. faeStanding: {
  8034. height: math.unit(10, "cm"),
  8035. weight: math.unit(10, "grams"),
  8036. name: "Standing",
  8037. image: {
  8038. source: "./media/characters/rose/fae-standing.svg",
  8039. extra: 1189/1060,
  8040. bottom: 27/1216
  8041. },
  8042. form: "fae",
  8043. default: true
  8044. },
  8045. faeSitting: {
  8046. height: math.unit(5, "cm"),
  8047. weight: math.unit(10, "grams"),
  8048. name: "Sitting",
  8049. image: {
  8050. source: "./media/characters/rose/fae-sitting.svg",
  8051. extra: 737/577,
  8052. bottom: 356/1093
  8053. },
  8054. form: "fae"
  8055. },
  8056. faePaw: {
  8057. height: math.unit(1.35, "cm"),
  8058. name: "Paw",
  8059. image: {
  8060. source: "./media/characters/rose/fae-paw.svg"
  8061. },
  8062. form: "fae"
  8063. },
  8064. },
  8065. [
  8066. {
  8067. name: "True Micro",
  8068. height: math.unit(9, "cm"),
  8069. form: "liom"
  8070. },
  8071. {
  8072. name: "Micro",
  8073. height: math.unit(16, "cm"),
  8074. form: "liom"
  8075. },
  8076. {
  8077. name: "Normal",
  8078. height: math.unit(1.85, "meters"),
  8079. default: true,
  8080. form: "liom"
  8081. },
  8082. {
  8083. name: "Mini-Macro",
  8084. height: math.unit(5, "meters"),
  8085. form: "liom"
  8086. },
  8087. {
  8088. name: "Macro",
  8089. height: math.unit(15, "meters"),
  8090. form: "liom"
  8091. },
  8092. {
  8093. name: "True Macro",
  8094. height: math.unit(40, "meters"),
  8095. form: "liom"
  8096. },
  8097. {
  8098. name: "City Scale",
  8099. height: math.unit(1, "km"),
  8100. form: "liom"
  8101. },
  8102. {
  8103. name: "Plushie",
  8104. height: math.unit(9, "cm"),
  8105. form: "plush",
  8106. default: true
  8107. },
  8108. {
  8109. name: "Fae",
  8110. height: math.unit(10, "cm"),
  8111. form: "fae",
  8112. default: true
  8113. },
  8114. ],
  8115. {
  8116. "liom": {
  8117. name: "Liom"
  8118. },
  8119. "plush": {
  8120. name: "Plush"
  8121. },
  8122. "fae": {
  8123. name: "Fae Fox",
  8124. default: true
  8125. }
  8126. }
  8127. ))
  8128. characterMakers.push(() => makeCharacter(
  8129. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  8130. {
  8131. front: {
  8132. height: math.unit(2, "meters"),
  8133. weight: math.unit(350, "lbs"),
  8134. name: "Front",
  8135. image: {
  8136. source: "./media/characters/regal/front.svg"
  8137. }
  8138. },
  8139. back: {
  8140. height: math.unit(2, "meters"),
  8141. weight: math.unit(350, "lbs"),
  8142. name: "Back",
  8143. image: {
  8144. source: "./media/characters/regal/back.svg"
  8145. }
  8146. },
  8147. },
  8148. [
  8149. {
  8150. name: "Macro",
  8151. height: math.unit(350, "feet"),
  8152. default: true
  8153. }
  8154. ]
  8155. ))
  8156. characterMakers.push(() => makeCharacter(
  8157. { name: "Opal", species: ["rabbit", "deity"], tags: ["anthro"] },
  8158. {
  8159. standing: {
  8160. height: math.unit(4 + 11/12, "feet"),
  8161. weight: math.unit(100, "lb"),
  8162. name: "Standing",
  8163. image: {
  8164. source: "./media/characters/opal/standing.svg",
  8165. extra: 1588/1513,
  8166. bottom: 23/1611
  8167. }
  8168. },
  8169. sitting: {
  8170. height: math.unit(2.3, "feet"),
  8171. weight: math.unit(100, "lb"),
  8172. name: "Sitting",
  8173. image: {
  8174. source: "./media/characters/opal/sitting.svg",
  8175. extra: 1031/892,
  8176. bottom: 142/1173
  8177. }
  8178. },
  8179. hand: {
  8180. height: math.unit(0.59, "feet"),
  8181. name: "Hand",
  8182. image: {
  8183. source: "./media/characters/opal/hand.svg"
  8184. }
  8185. },
  8186. foot: {
  8187. height: math.unit(0.61, "feet"),
  8188. name: "Foot",
  8189. image: {
  8190. source: "./media/characters/opal/foot.svg"
  8191. }
  8192. },
  8193. },
  8194. [
  8195. {
  8196. name: "Small",
  8197. height: math.unit(4 + 11 / 12, "feet")
  8198. },
  8199. {
  8200. name: "Normal",
  8201. height: math.unit(20, "feet"),
  8202. default: true
  8203. },
  8204. {
  8205. name: "Macro",
  8206. height: math.unit(120, "feet")
  8207. },
  8208. {
  8209. name: "Megamacro",
  8210. height: math.unit(80, "miles")
  8211. },
  8212. {
  8213. name: "True Size",
  8214. height: math.unit(100000, "lightyears")
  8215. },
  8216. ]
  8217. ))
  8218. characterMakers.push(() => makeCharacter(
  8219. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  8220. {
  8221. front: {
  8222. height: math.unit(6, "feet"),
  8223. weight: math.unit(200, "lbs"),
  8224. name: "Front",
  8225. image: {
  8226. source: "./media/characters/vector-wuff/front.svg"
  8227. }
  8228. }
  8229. },
  8230. [
  8231. {
  8232. name: "Normal",
  8233. height: math.unit(2.8, "meters")
  8234. },
  8235. {
  8236. name: "Macro",
  8237. height: math.unit(450, "meters"),
  8238. default: true
  8239. },
  8240. {
  8241. name: "Megamacro",
  8242. height: math.unit(15, "kilometers")
  8243. }
  8244. ]
  8245. ))
  8246. characterMakers.push(() => makeCharacter(
  8247. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  8248. {
  8249. front: {
  8250. height: math.unit(6, "feet"),
  8251. weight: math.unit(256, "lbs"),
  8252. name: "Front",
  8253. image: {
  8254. source: "./media/characters/dannik/front.svg"
  8255. }
  8256. }
  8257. },
  8258. [
  8259. {
  8260. name: "Macro",
  8261. height: math.unit(69.57, "meters"),
  8262. default: true
  8263. },
  8264. ]
  8265. ))
  8266. characterMakers.push(() => makeCharacter(
  8267. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  8268. {
  8269. front: {
  8270. height: math.unit(6, "feet"),
  8271. weight: math.unit(120, "lbs"),
  8272. name: "Front",
  8273. image: {
  8274. source: "./media/characters/azura-saharah/front.svg"
  8275. }
  8276. },
  8277. back: {
  8278. height: math.unit(6, "feet"),
  8279. weight: math.unit(120, "lbs"),
  8280. name: "Back",
  8281. image: {
  8282. source: "./media/characters/azura-saharah/back.svg"
  8283. }
  8284. },
  8285. },
  8286. [
  8287. {
  8288. name: "Macro",
  8289. height: math.unit(100, "feet"),
  8290. default: true
  8291. },
  8292. ]
  8293. ))
  8294. characterMakers.push(() => makeCharacter(
  8295. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  8296. {
  8297. side: {
  8298. height: math.unit(5 + 4 / 12, "feet"),
  8299. weight: math.unit(163, "lbs"),
  8300. name: "Side",
  8301. image: {
  8302. source: "./media/characters/kennedy/side.svg"
  8303. }
  8304. }
  8305. },
  8306. [
  8307. {
  8308. name: "Standard Doggo",
  8309. height: math.unit(5 + 4 / 12, "feet")
  8310. },
  8311. {
  8312. name: "Big Doggo",
  8313. height: math.unit(25 + 3 / 12, "feet"),
  8314. default: true
  8315. },
  8316. ]
  8317. ))
  8318. characterMakers.push(() => makeCharacter(
  8319. { name: "Odios De Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  8320. {
  8321. front: {
  8322. height: math.unit(5 + 5/12, "feet"),
  8323. weight: math.unit(100, "lbs"),
  8324. name: "Front",
  8325. image: {
  8326. source: "./media/characters/odios-de-lunar/front.svg",
  8327. extra: 1468/1323,
  8328. bottom: 22/1490
  8329. }
  8330. }
  8331. },
  8332. [
  8333. {
  8334. name: "Micro",
  8335. height: math.unit(3, "inches")
  8336. },
  8337. {
  8338. name: "Normal",
  8339. height: math.unit(5.5, "feet"),
  8340. default: true
  8341. },
  8342. {
  8343. name: "Macro",
  8344. height: math.unit(100, "feet")
  8345. },
  8346. ]
  8347. ))
  8348. characterMakers.push(() => makeCharacter(
  8349. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  8350. {
  8351. back: {
  8352. height: math.unit(6, "feet"),
  8353. weight: math.unit(220, "lbs"),
  8354. name: "Back",
  8355. image: {
  8356. source: "./media/characters/mandake/back.svg"
  8357. }
  8358. }
  8359. },
  8360. [
  8361. {
  8362. name: "Normal",
  8363. height: math.unit(7, "feet"),
  8364. default: true
  8365. },
  8366. {
  8367. name: "Macro",
  8368. height: math.unit(78, "feet")
  8369. },
  8370. {
  8371. name: "Macro+",
  8372. height: math.unit(300, "meters")
  8373. },
  8374. {
  8375. name: "Macro++",
  8376. height: math.unit(2400, "feet")
  8377. },
  8378. {
  8379. name: "Megamacro",
  8380. height: math.unit(5167, "meters")
  8381. },
  8382. {
  8383. name: "Gigamacro",
  8384. height: math.unit(41769, "miles")
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(6, "feet"),
  8393. weight: math.unit(120, "lbs"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/yozey/front.svg"
  8397. }
  8398. },
  8399. frontAlt: {
  8400. height: math.unit(6, "feet"),
  8401. weight: math.unit(120, "lbs"),
  8402. name: "Front (Alt)",
  8403. image: {
  8404. source: "./media/characters/yozey/front-alt.svg"
  8405. }
  8406. },
  8407. side: {
  8408. height: math.unit(6, "feet"),
  8409. weight: math.unit(120, "lbs"),
  8410. name: "Side",
  8411. image: {
  8412. source: "./media/characters/yozey/side.svg"
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Micro",
  8419. height: math.unit(3, "inches"),
  8420. default: true
  8421. },
  8422. {
  8423. name: "Normal",
  8424. height: math.unit(6, "feet")
  8425. }
  8426. ]
  8427. ))
  8428. characterMakers.push(() => makeCharacter(
  8429. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  8430. {
  8431. front: {
  8432. height: math.unit(6, "feet"),
  8433. weight: math.unit(103, "lbs"),
  8434. name: "Front",
  8435. image: {
  8436. source: "./media/characters/valeska-voss/front.svg"
  8437. }
  8438. }
  8439. },
  8440. [
  8441. {
  8442. name: "Mini-Sized Sub",
  8443. height: math.unit(3.1, "inches")
  8444. },
  8445. {
  8446. name: "Mid-Sized Sub",
  8447. height: math.unit(6.2, "inches")
  8448. },
  8449. {
  8450. name: "Full-Sized Sub",
  8451. height: math.unit(9.3, "inches")
  8452. },
  8453. {
  8454. name: "Normal",
  8455. height: math.unit(5 + 2 / 12, "foot"),
  8456. default: true
  8457. },
  8458. ]
  8459. ))
  8460. characterMakers.push(() => makeCharacter(
  8461. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  8462. {
  8463. front: {
  8464. height: math.unit(6, "feet"),
  8465. weight: math.unit(160, "lbs"),
  8466. name: "Front",
  8467. image: {
  8468. source: "./media/characters/gene-zeta/front.svg",
  8469. extra: 3006 / 2826,
  8470. bottom: 182 / 3188
  8471. }
  8472. }
  8473. },
  8474. [
  8475. {
  8476. name: "Micro",
  8477. height: math.unit(6, "inches")
  8478. },
  8479. {
  8480. name: "Normal",
  8481. height: math.unit(5 + 11 / 12, "foot"),
  8482. default: true
  8483. },
  8484. {
  8485. name: "Macro",
  8486. height: math.unit(140, "feet")
  8487. },
  8488. {
  8489. name: "Supercharged",
  8490. height: math.unit(2500, "feet")
  8491. },
  8492. ]
  8493. ))
  8494. characterMakers.push(() => makeCharacter(
  8495. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  8496. {
  8497. front: {
  8498. height: math.unit(6, "feet"),
  8499. weight: math.unit(350, "lbs"),
  8500. name: "Front",
  8501. image: {
  8502. source: "./media/characters/razinox/front.svg",
  8503. extra: 1686 / 1548,
  8504. bottom: 28.2 / 1868
  8505. }
  8506. },
  8507. back: {
  8508. height: math.unit(6, "feet"),
  8509. weight: math.unit(350, "lbs"),
  8510. name: "Back",
  8511. image: {
  8512. source: "./media/characters/razinox/back.svg",
  8513. extra: 1660 / 1590,
  8514. bottom: 15 / 1665
  8515. }
  8516. },
  8517. },
  8518. [
  8519. {
  8520. name: "Normal",
  8521. height: math.unit(10 + 8 / 12, "foot")
  8522. },
  8523. {
  8524. name: "Minimacro",
  8525. height: math.unit(15, "foot")
  8526. },
  8527. {
  8528. name: "Macro",
  8529. height: math.unit(60, "foot"),
  8530. default: true
  8531. },
  8532. {
  8533. name: "Megamacro",
  8534. height: math.unit(5, "miles")
  8535. },
  8536. {
  8537. name: "Gigamacro",
  8538. height: math.unit(6000, "miles")
  8539. },
  8540. ]
  8541. ))
  8542. characterMakers.push(() => makeCharacter(
  8543. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  8544. {
  8545. front: {
  8546. height: math.unit(6, "feet"),
  8547. weight: math.unit(150, "lbs"),
  8548. name: "Front",
  8549. image: {
  8550. source: "./media/characters/cobalt/front.svg"
  8551. }
  8552. }
  8553. },
  8554. [
  8555. {
  8556. name: "Normal",
  8557. height: math.unit(8 + 1 / 12, "foot")
  8558. },
  8559. {
  8560. name: "Macro",
  8561. height: math.unit(111, "foot"),
  8562. default: true
  8563. },
  8564. {
  8565. name: "Supracosmic",
  8566. height: math.unit(1e42, "feet")
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(5, "inches"),
  8575. name: "Front",
  8576. image: {
  8577. source: "./media/characters/amanda/front.svg",
  8578. extra: 926/791,
  8579. bottom: 38/964
  8580. }
  8581. },
  8582. back: {
  8583. height: math.unit(5, "inches"),
  8584. name: "Back",
  8585. image: {
  8586. source: "./media/characters/amanda/back.svg",
  8587. extra: 909/805,
  8588. bottom: 43/952
  8589. }
  8590. },
  8591. },
  8592. [
  8593. {
  8594. name: "Micro",
  8595. height: math.unit(5, "inches"),
  8596. default: true
  8597. },
  8598. ]
  8599. ))
  8600. characterMakers.push(() => makeCharacter(
  8601. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  8602. {
  8603. front: {
  8604. height: math.unit(2.75, "meters"),
  8605. weight: math.unit(1200, "lb"),
  8606. name: "Front",
  8607. image: {
  8608. source: "./media/characters/teal/front.svg",
  8609. extra: 2463 / 2320,
  8610. bottom: 166 / 2629
  8611. }
  8612. },
  8613. back: {
  8614. height: math.unit(2.75, "meters"),
  8615. weight: math.unit(1200, "lb"),
  8616. name: "Back",
  8617. image: {
  8618. source: "./media/characters/teal/back.svg",
  8619. extra: 2580 / 2489,
  8620. bottom: 151 / 2731
  8621. }
  8622. },
  8623. sitting: {
  8624. height: math.unit(1.9, "meters"),
  8625. weight: math.unit(1200, "lb"),
  8626. name: "Sitting",
  8627. image: {
  8628. source: "./media/characters/teal/sitting.svg",
  8629. extra: 623 / 590,
  8630. bottom: 121 / 744
  8631. }
  8632. },
  8633. standing: {
  8634. height: math.unit(2.75, "meters"),
  8635. weight: math.unit(1200, "lb"),
  8636. name: "Standing",
  8637. image: {
  8638. source: "./media/characters/teal/standing.svg",
  8639. extra: 923 / 893,
  8640. bottom: 60 / 983
  8641. }
  8642. },
  8643. stretching: {
  8644. height: math.unit(3.65, "meters"),
  8645. weight: math.unit(1200, "lb"),
  8646. name: "Stretching",
  8647. image: {
  8648. source: "./media/characters/teal/stretching.svg",
  8649. extra: 1276 / 1244,
  8650. bottom: 0 / 1276
  8651. }
  8652. },
  8653. legged: {
  8654. height: math.unit(1.3, "meters"),
  8655. weight: math.unit(100, "lb"),
  8656. name: "Legged",
  8657. image: {
  8658. source: "./media/characters/teal/legged.svg",
  8659. extra: 462 / 437,
  8660. bottom: 24 / 486
  8661. }
  8662. },
  8663. naga: {
  8664. height: math.unit(5.4, "meters"),
  8665. weight: math.unit(4000, "lb"),
  8666. name: "Naga",
  8667. image: {
  8668. source: "./media/characters/teal/naga.svg",
  8669. extra: 1902 / 1858,
  8670. bottom: 0 / 1902
  8671. }
  8672. },
  8673. hand: {
  8674. height: math.unit(0.52, "meters"),
  8675. name: "Hand",
  8676. image: {
  8677. source: "./media/characters/teal/hand.svg"
  8678. }
  8679. },
  8680. maw: {
  8681. height: math.unit(0.43, "meters"),
  8682. name: "Maw",
  8683. image: {
  8684. source: "./media/characters/teal/maw.svg"
  8685. }
  8686. },
  8687. slit: {
  8688. height: math.unit(0.25, "meters"),
  8689. name: "Slit",
  8690. image: {
  8691. source: "./media/characters/teal/slit.svg"
  8692. }
  8693. },
  8694. },
  8695. [
  8696. {
  8697. name: "Normal",
  8698. height: math.unit(2.75, "meters"),
  8699. default: true
  8700. },
  8701. {
  8702. name: "Macro",
  8703. height: math.unit(300, "feet")
  8704. },
  8705. {
  8706. name: "Macro+",
  8707. height: math.unit(2000, "feet")
  8708. },
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  8713. {
  8714. frontCat: {
  8715. height: math.unit(6, "feet"),
  8716. weight: math.unit(180, "lbs"),
  8717. name: "Front (Cat)",
  8718. image: {
  8719. source: "./media/characters/ravin-amulet/front-cat.svg"
  8720. }
  8721. },
  8722. frontCatAlt: {
  8723. height: math.unit(6, "feet"),
  8724. weight: math.unit(180, "lbs"),
  8725. name: "Front (Alt, Cat)",
  8726. image: {
  8727. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  8728. }
  8729. },
  8730. frontWerewolf: {
  8731. height: math.unit(6 * 1.2, "feet"),
  8732. weight: math.unit(225, "lbs"),
  8733. name: "Front (Werewolf)",
  8734. image: {
  8735. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  8736. }
  8737. },
  8738. backWerewolf: {
  8739. height: math.unit(6 * 1.2, "feet"),
  8740. weight: math.unit(225, "lbs"),
  8741. name: "Back (Werewolf)",
  8742. image: {
  8743. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  8744. }
  8745. },
  8746. },
  8747. [
  8748. {
  8749. name: "Nano",
  8750. height: math.unit(1, "micrometer")
  8751. },
  8752. {
  8753. name: "Micro",
  8754. height: math.unit(1, "inch")
  8755. },
  8756. {
  8757. name: "Normal",
  8758. height: math.unit(6, "feet"),
  8759. default: true
  8760. },
  8761. {
  8762. name: "Macro",
  8763. height: math.unit(60, "feet")
  8764. }
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(6, "feet"),
  8772. weight: math.unit(165, "lbs"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/fluoresce/front.svg"
  8776. }
  8777. }
  8778. },
  8779. [
  8780. {
  8781. name: "Micro",
  8782. height: math.unit(6, "cm")
  8783. },
  8784. {
  8785. name: "Normal",
  8786. height: math.unit(5 + 7 / 12, "feet"),
  8787. default: true
  8788. },
  8789. {
  8790. name: "Macro",
  8791. height: math.unit(56, "feet")
  8792. },
  8793. {
  8794. name: "Megamacro",
  8795. height: math.unit(1.9, "miles")
  8796. },
  8797. ]
  8798. ))
  8799. characterMakers.push(() => makeCharacter(
  8800. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  8801. {
  8802. front: {
  8803. height: math.unit(9 + 6 / 12, "feet"),
  8804. weight: math.unit(523, "lbs"),
  8805. name: "Side",
  8806. image: {
  8807. source: "./media/characters/aurora/side.svg",
  8808. extra: 474/393,
  8809. bottom: 5/479
  8810. }
  8811. }
  8812. },
  8813. [
  8814. {
  8815. name: "Normal",
  8816. height: math.unit(9 + 6 / 12, "feet")
  8817. },
  8818. {
  8819. name: "Macro",
  8820. height: math.unit(96, "feet"),
  8821. default: true
  8822. },
  8823. {
  8824. name: "Macro+",
  8825. height: math.unit(243, "feet")
  8826. },
  8827. ]
  8828. ))
  8829. characterMakers.push(() => makeCharacter(
  8830. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  8831. {
  8832. front: {
  8833. height: math.unit(194, "cm"),
  8834. weight: math.unit(90, "kg"),
  8835. name: "Front",
  8836. image: {
  8837. source: "./media/characters/ranek/front.svg",
  8838. extra: 1862/1791,
  8839. bottom: 80/1942
  8840. }
  8841. },
  8842. back: {
  8843. height: math.unit(194, "cm"),
  8844. weight: math.unit(90, "kg"),
  8845. name: "Back",
  8846. image: {
  8847. source: "./media/characters/ranek/back.svg",
  8848. extra: 1853/1787,
  8849. bottom: 74/1927
  8850. }
  8851. },
  8852. feral: {
  8853. height: math.unit(30, "cm"),
  8854. weight: math.unit(1.6, "lbs"),
  8855. name: "Feral",
  8856. image: {
  8857. source: "./media/characters/ranek/feral.svg",
  8858. extra: 990/631,
  8859. bottom: 29/1019
  8860. }
  8861. },
  8862. },
  8863. [
  8864. {
  8865. name: "Normal",
  8866. height: math.unit(194, "cm"),
  8867. default: true
  8868. },
  8869. {
  8870. name: "Macro",
  8871. height: math.unit(100, "meters")
  8872. },
  8873. ]
  8874. ))
  8875. characterMakers.push(() => makeCharacter(
  8876. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  8877. {
  8878. front: {
  8879. height: math.unit(5 + 6 / 12, "feet"),
  8880. weight: math.unit(153, "lbs"),
  8881. name: "Front",
  8882. image: {
  8883. source: "./media/characters/andrew-cooper/front.svg"
  8884. }
  8885. },
  8886. },
  8887. [
  8888. {
  8889. name: "Nano",
  8890. height: math.unit(1, "mm")
  8891. },
  8892. {
  8893. name: "Micro",
  8894. height: math.unit(2, "inches")
  8895. },
  8896. {
  8897. name: "Normal",
  8898. height: math.unit(5 + 6 / 12, "feet"),
  8899. default: true
  8900. }
  8901. ]
  8902. ))
  8903. characterMakers.push(() => makeCharacter(
  8904. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  8905. {
  8906. front: {
  8907. height: math.unit(6, "feet"),
  8908. weight: math.unit(180, "lbs"),
  8909. name: "Front",
  8910. image: {
  8911. source: "./media/characters/akane-sato/front.svg",
  8912. extra: 1219 / 1140
  8913. }
  8914. },
  8915. back: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(180, "lbs"),
  8918. name: "Back",
  8919. image: {
  8920. source: "./media/characters/akane-sato/back.svg",
  8921. extra: 1219 / 1170
  8922. }
  8923. },
  8924. },
  8925. [
  8926. {
  8927. name: "Normal",
  8928. height: math.unit(2.5, "meters")
  8929. },
  8930. {
  8931. name: "Macro",
  8932. height: math.unit(250, "meters"),
  8933. default: true
  8934. },
  8935. {
  8936. name: "Megamacro",
  8937. height: math.unit(25, "km")
  8938. },
  8939. ]
  8940. ))
  8941. characterMakers.push(() => makeCharacter(
  8942. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  8943. {
  8944. front: {
  8945. height: math.unit(6, "feet"),
  8946. weight: math.unit(65, "kg"),
  8947. name: "Front",
  8948. image: {
  8949. source: "./media/characters/rook/front.svg",
  8950. extra: 960 / 950
  8951. }
  8952. }
  8953. },
  8954. [
  8955. {
  8956. name: "Normal",
  8957. height: math.unit(8.8, "feet")
  8958. },
  8959. {
  8960. name: "Macro",
  8961. height: math.unit(88, "feet"),
  8962. default: true
  8963. },
  8964. {
  8965. name: "Megamacro",
  8966. height: math.unit(8, "miles")
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(12 + 2 / 12, "feet"),
  8975. weight: math.unit(808, "lbs"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/prodigy/front.svg"
  8979. }
  8980. }
  8981. },
  8982. [
  8983. {
  8984. name: "Normal",
  8985. height: math.unit(12 + 2 / 12, "feet"),
  8986. default: true
  8987. },
  8988. {
  8989. name: "Macro",
  8990. height: math.unit(143, "feet")
  8991. },
  8992. {
  8993. name: "Macro+",
  8994. height: math.unit(400, "feet")
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  9000. {
  9001. front: {
  9002. height: math.unit(6, "feet"),
  9003. weight: math.unit(225, "lbs"),
  9004. name: "Front",
  9005. image: {
  9006. source: "./media/characters/daniel/front.svg"
  9007. }
  9008. },
  9009. leaning: {
  9010. height: math.unit(6, "feet"),
  9011. weight: math.unit(225, "lbs"),
  9012. name: "Leaning",
  9013. image: {
  9014. source: "./media/characters/daniel/leaning.svg"
  9015. }
  9016. },
  9017. },
  9018. [
  9019. {
  9020. name: "Macro",
  9021. height: math.unit(1000, "feet"),
  9022. default: true
  9023. },
  9024. ]
  9025. ))
  9026. characterMakers.push(() => makeCharacter(
  9027. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  9028. {
  9029. front: {
  9030. height: math.unit(6, "feet"),
  9031. weight: math.unit(88, "lbs"),
  9032. name: "Front",
  9033. image: {
  9034. source: "./media/characters/chiros/front.svg",
  9035. extra: 306 / 226
  9036. }
  9037. },
  9038. side: {
  9039. height: math.unit(6, "feet"),
  9040. weight: math.unit(88, "lbs"),
  9041. name: "Side",
  9042. image: {
  9043. source: "./media/characters/chiros/side.svg",
  9044. extra: 306 / 226
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(6, "cm"),
  9052. default: true
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Selka", species: ["snake"], tags: ["naga"] },
  9058. {
  9059. front: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(100, "lbs"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/selka/front.svg",
  9065. extra: 947 / 887
  9066. }
  9067. }
  9068. },
  9069. [
  9070. {
  9071. name: "Normal",
  9072. height: math.unit(5, "cm"),
  9073. default: true
  9074. },
  9075. ]
  9076. ))
  9077. characterMakers.push(() => makeCharacter(
  9078. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  9079. {
  9080. front: {
  9081. height: math.unit(8 + 3 / 12, "feet"),
  9082. weight: math.unit(424, "lbs"),
  9083. name: "Front",
  9084. image: {
  9085. source: "./media/characters/verin/front.svg",
  9086. extra: 1845 / 1550
  9087. }
  9088. },
  9089. frontArmored: {
  9090. height: math.unit(8 + 3 / 12, "feet"),
  9091. weight: math.unit(424, "lbs"),
  9092. name: "Front (Armored)",
  9093. image: {
  9094. source: "./media/characters/verin/front-armor.svg",
  9095. extra: 1845 / 1550,
  9096. bottom: 0.01
  9097. }
  9098. },
  9099. back: {
  9100. height: math.unit(8 + 3 / 12, "feet"),
  9101. weight: math.unit(424, "lbs"),
  9102. name: "Back",
  9103. image: {
  9104. source: "./media/characters/verin/back.svg",
  9105. bottom: 0.1,
  9106. extra: 1
  9107. }
  9108. },
  9109. foot: {
  9110. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  9111. name: "Foot",
  9112. image: {
  9113. source: "./media/characters/verin/foot.svg"
  9114. }
  9115. },
  9116. },
  9117. [
  9118. {
  9119. name: "Normal",
  9120. height: math.unit(8 + 3 / 12, "feet")
  9121. },
  9122. {
  9123. name: "Minimacro",
  9124. height: math.unit(21, "feet"),
  9125. default: true
  9126. },
  9127. {
  9128. name: "Macro",
  9129. height: math.unit(626, "feet")
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  9135. {
  9136. front: {
  9137. height: math.unit(2.718, "meters"),
  9138. weight: math.unit(150, "lbs"),
  9139. name: "Front",
  9140. image: {
  9141. source: "./media/characters/sovrim-terraquian/front.svg",
  9142. extra: 1752/1689,
  9143. bottom: 36/1788
  9144. }
  9145. },
  9146. back: {
  9147. height: math.unit(2.718, "meters"),
  9148. weight: math.unit(150, "lbs"),
  9149. name: "Back",
  9150. image: {
  9151. source: "./media/characters/sovrim-terraquian/back.svg",
  9152. extra: 1698/1657,
  9153. bottom: 58/1756
  9154. }
  9155. },
  9156. tongue: {
  9157. height: math.unit(2.865, "feet"),
  9158. name: "Tongue",
  9159. image: {
  9160. source: "./media/characters/sovrim-terraquian/tongue.svg"
  9161. }
  9162. },
  9163. hand: {
  9164. height: math.unit(1.61, "feet"),
  9165. name: "Hand",
  9166. image: {
  9167. source: "./media/characters/sovrim-terraquian/hand.svg"
  9168. }
  9169. },
  9170. foot: {
  9171. height: math.unit(1.05, "feet"),
  9172. name: "Foot",
  9173. image: {
  9174. source: "./media/characters/sovrim-terraquian/foot.svg"
  9175. }
  9176. },
  9177. footAlt: {
  9178. height: math.unit(0.88, "feet"),
  9179. name: "Foot (Alt)",
  9180. image: {
  9181. source: "./media/characters/sovrim-terraquian/foot-alt.svg"
  9182. }
  9183. },
  9184. },
  9185. [
  9186. {
  9187. name: "Micro",
  9188. height: math.unit(2, "inches")
  9189. },
  9190. {
  9191. name: "Small",
  9192. height: math.unit(1, "meter")
  9193. },
  9194. {
  9195. name: "Normal",
  9196. height: math.unit(Math.E, "meters"),
  9197. default: true
  9198. },
  9199. {
  9200. name: "Macro",
  9201. height: math.unit(20, "meters")
  9202. },
  9203. {
  9204. name: "Macro+",
  9205. height: math.unit(400, "meters")
  9206. },
  9207. ]
  9208. ))
  9209. characterMakers.push(() => makeCharacter(
  9210. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  9211. {
  9212. front: {
  9213. height: math.unit(7, "feet"),
  9214. weight: math.unit(489, "lbs"),
  9215. name: "Front",
  9216. image: {
  9217. source: "./media/characters/reece-silvermane/front.svg",
  9218. bottom: 0.02,
  9219. extra: 1
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Macro",
  9226. height: math.unit(1.5, "miles"),
  9227. default: true
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  9233. {
  9234. front: {
  9235. height: math.unit(6, "feet"),
  9236. weight: math.unit(78, "kg"),
  9237. name: "Front",
  9238. image: {
  9239. source: "./media/characters/kane/front.svg",
  9240. extra: 978 / 899
  9241. }
  9242. },
  9243. back: {
  9244. height: math.unit(6, "feet"),
  9245. weight: math.unit(78, "kg"),
  9246. name: "Back",
  9247. image: {
  9248. source: "./media/characters/kane/back.svg",
  9249. extra: 1966/1800,
  9250. bottom: 0/1966
  9251. }
  9252. },
  9253. head: {
  9254. height: math.unit(1.4, "feet"),
  9255. name: "Head",
  9256. image: {
  9257. source: "./media/characters/kane/head.svg"
  9258. }
  9259. },
  9260. },
  9261. [
  9262. {
  9263. name: "Normal",
  9264. height: math.unit(2.1, "m"),
  9265. },
  9266. {
  9267. name: "Macro",
  9268. height: math.unit(1, "km"),
  9269. default: true
  9270. },
  9271. ]
  9272. ))
  9273. characterMakers.push(() => makeCharacter(
  9274. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  9275. {
  9276. front: {
  9277. height: math.unit(6, "feet"),
  9278. weight: math.unit(200, "kg"),
  9279. name: "Front",
  9280. image: {
  9281. source: "./media/characters/tegon/front.svg",
  9282. bottom: 0.01,
  9283. extra: 1
  9284. }
  9285. },
  9286. },
  9287. [
  9288. {
  9289. name: "Micro",
  9290. height: math.unit(1, "inch")
  9291. },
  9292. {
  9293. name: "Normal",
  9294. height: math.unit(6 + 3 / 12, "feet"),
  9295. default: true
  9296. },
  9297. {
  9298. name: "Macro",
  9299. height: math.unit(300, "feet")
  9300. },
  9301. {
  9302. name: "Megamacro",
  9303. height: math.unit(69, "miles")
  9304. },
  9305. ]
  9306. ))
  9307. characterMakers.push(() => makeCharacter(
  9308. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  9309. {
  9310. side: {
  9311. height: math.unit(6, "feet"),
  9312. weight: math.unit(2304, "lbs"),
  9313. name: "Side",
  9314. image: {
  9315. source: "./media/characters/arcturax/side.svg",
  9316. extra: 790 / 376,
  9317. bottom: 0.01
  9318. }
  9319. },
  9320. },
  9321. [
  9322. {
  9323. name: "Micro",
  9324. height: math.unit(2, "inch")
  9325. },
  9326. {
  9327. name: "Normal",
  9328. height: math.unit(6, "feet")
  9329. },
  9330. {
  9331. name: "Macro",
  9332. height: math.unit(39, "feet"),
  9333. default: true
  9334. },
  9335. {
  9336. name: "Megamacro",
  9337. height: math.unit(7, "miles")
  9338. },
  9339. ]
  9340. ))
  9341. characterMakers.push(() => makeCharacter(
  9342. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  9343. {
  9344. front: {
  9345. height: math.unit(6, "feet"),
  9346. weight: math.unit(50, "lbs"),
  9347. name: "Front",
  9348. image: {
  9349. source: "./media/characters/sentri/front.svg",
  9350. extra: 1750 / 1570,
  9351. bottom: 0.025
  9352. }
  9353. },
  9354. frontAlt: {
  9355. height: math.unit(6, "feet"),
  9356. weight: math.unit(50, "lbs"),
  9357. name: "Front (Alt)",
  9358. image: {
  9359. source: "./media/characters/sentri/front-alt.svg",
  9360. extra: 1750 / 1570,
  9361. bottom: 0.025
  9362. }
  9363. },
  9364. },
  9365. [
  9366. {
  9367. name: "Normal",
  9368. height: math.unit(15, "feet"),
  9369. default: true
  9370. },
  9371. {
  9372. name: "Macro",
  9373. height: math.unit(2500, "feet")
  9374. }
  9375. ]
  9376. ))
  9377. characterMakers.push(() => makeCharacter(
  9378. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  9379. {
  9380. front: {
  9381. height: math.unit(5 + 8 / 12, "feet"),
  9382. weight: math.unit(130, "lbs"),
  9383. name: "Front",
  9384. image: {
  9385. source: "./media/characters/corvin/front.svg",
  9386. extra: 1803 / 1629
  9387. }
  9388. },
  9389. frontShirt: {
  9390. height: math.unit(5 + 8 / 12, "feet"),
  9391. weight: math.unit(130, "lbs"),
  9392. name: "Front (Shirt)",
  9393. image: {
  9394. source: "./media/characters/corvin/front-shirt.svg",
  9395. extra: 1803 / 1629
  9396. }
  9397. },
  9398. frontPoncho: {
  9399. height: math.unit(5 + 8 / 12, "feet"),
  9400. weight: math.unit(130, "lbs"),
  9401. name: "Front (Poncho)",
  9402. image: {
  9403. source: "./media/characters/corvin/front-poncho.svg",
  9404. extra: 1803 / 1629
  9405. }
  9406. },
  9407. side: {
  9408. height: math.unit(5 + 8 / 12, "feet"),
  9409. weight: math.unit(130, "lbs"),
  9410. name: "Side",
  9411. image: {
  9412. source: "./media/characters/corvin/side.svg",
  9413. extra: 1012 / 945
  9414. }
  9415. },
  9416. back: {
  9417. height: math.unit(5 + 8 / 12, "feet"),
  9418. weight: math.unit(130, "lbs"),
  9419. name: "Back",
  9420. image: {
  9421. source: "./media/characters/corvin/back.svg",
  9422. extra: 1803 / 1629
  9423. }
  9424. },
  9425. },
  9426. [
  9427. {
  9428. name: "Micro",
  9429. height: math.unit(3, "inches")
  9430. },
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(5 + 8 / 12, "feet")
  9434. },
  9435. {
  9436. name: "Macro",
  9437. height: math.unit(300, "feet"),
  9438. default: true
  9439. },
  9440. {
  9441. name: "Megamacro",
  9442. height: math.unit(500, "miles")
  9443. }
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(6, "feet"),
  9451. weight: math.unit(135, "lbs"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/q/front.svg",
  9455. extra: 854 / 752,
  9456. bottom: 0.005
  9457. }
  9458. },
  9459. back: {
  9460. height: math.unit(6, "feet"),
  9461. weight: math.unit(130, "lbs"),
  9462. name: "Back",
  9463. image: {
  9464. source: "./media/characters/q/back.svg",
  9465. extra: 854 / 752
  9466. }
  9467. },
  9468. },
  9469. [
  9470. {
  9471. name: "Macro",
  9472. height: math.unit(90, "feet"),
  9473. default: true
  9474. },
  9475. {
  9476. name: "Extra Macro",
  9477. height: math.unit(300, "feet"),
  9478. },
  9479. {
  9480. name: "BIG WALF",
  9481. height: math.unit(750, "feet"),
  9482. },
  9483. ]
  9484. ))
  9485. characterMakers.push(() => makeCharacter(
  9486. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  9487. {
  9488. front: {
  9489. height: math.unit(3, "feet"),
  9490. weight: math.unit(28, "lbs"),
  9491. name: "Front",
  9492. image: {
  9493. source: "./media/characters/citrine/front.svg"
  9494. }
  9495. }
  9496. },
  9497. [
  9498. {
  9499. name: "Normal",
  9500. height: math.unit(3, "feet"),
  9501. default: true
  9502. }
  9503. ]
  9504. ))
  9505. characterMakers.push(() => makeCharacter(
  9506. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  9507. {
  9508. front: {
  9509. height: math.unit(14, "feet"),
  9510. weight: math.unit(1450, "kg"),
  9511. preyCapacity: math.unit(15, "people"),
  9512. name: "Front",
  9513. image: {
  9514. source: "./media/characters/aura-starwind/front.svg",
  9515. extra: 1440/1327,
  9516. bottom: 11/1451
  9517. }
  9518. },
  9519. side: {
  9520. height: math.unit(14, "feet"),
  9521. weight: math.unit(1450, "kg"),
  9522. preyCapacity: math.unit(15, "people"),
  9523. name: "Side",
  9524. image: {
  9525. source: "./media/characters/aura-starwind/side.svg",
  9526. extra: 1654 / 1497
  9527. }
  9528. },
  9529. taur: {
  9530. height: math.unit(18, "feet"),
  9531. weight: math.unit(5500, "kg"),
  9532. preyCapacity: math.unit(50, "people"),
  9533. name: "Taur",
  9534. image: {
  9535. source: "./media/characters/aura-starwind/taur.svg",
  9536. extra: 1760 / 1650
  9537. }
  9538. },
  9539. feral: {
  9540. height: math.unit(46, "feet"),
  9541. weight: math.unit(25000, "kg"),
  9542. preyCapacity: math.unit(120, "people"),
  9543. name: "Feral",
  9544. image: {
  9545. source: "./media/characters/aura-starwind/feral.svg"
  9546. }
  9547. },
  9548. },
  9549. [
  9550. {
  9551. name: "Normal",
  9552. height: math.unit(14, "feet"),
  9553. default: true
  9554. },
  9555. {
  9556. name: "Macro",
  9557. height: math.unit(50, "meters")
  9558. },
  9559. {
  9560. name: "Megamacro",
  9561. height: math.unit(5000, "meters")
  9562. },
  9563. {
  9564. name: "Gigamacro",
  9565. height: math.unit(100000, "kilometers")
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(2 + 7 / 12, "feet"),
  9574. weight: math.unit(32, "lbs"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/rivet/front.svg",
  9578. extra: 1716 / 1658,
  9579. bottom: 0.03
  9580. }
  9581. },
  9582. foot: {
  9583. height: math.unit(0.551, "feet"),
  9584. name: "Rivet's Foot",
  9585. image: {
  9586. source: "./media/characters/rivet/foot.svg"
  9587. },
  9588. rename: true
  9589. }
  9590. },
  9591. [
  9592. {
  9593. name: "Micro",
  9594. height: math.unit(1.5, "inches"),
  9595. },
  9596. {
  9597. name: "Normal",
  9598. height: math.unit(2 + 7 / 12, "feet"),
  9599. default: true
  9600. },
  9601. {
  9602. name: "Macro",
  9603. height: math.unit(85, "feet")
  9604. },
  9605. {
  9606. name: "Megamacro",
  9607. height: math.unit(2.2, "km")
  9608. }
  9609. ]
  9610. ))
  9611. characterMakers.push(() => makeCharacter(
  9612. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  9613. {
  9614. front: {
  9615. height: math.unit(5 + 9 / 12, "feet"),
  9616. weight: math.unit(150, "lbs"),
  9617. name: "Front",
  9618. image: {
  9619. source: "./media/characters/coffee/front.svg",
  9620. extra: 946/880,
  9621. bottom: 66/1012
  9622. }
  9623. },
  9624. foot: {
  9625. height: math.unit(1.29, "feet"),
  9626. name: "Foot",
  9627. image: {
  9628. source: "./media/characters/coffee/foot.svg"
  9629. }
  9630. },
  9631. },
  9632. [
  9633. {
  9634. name: "Micro",
  9635. height: math.unit(2, "inches"),
  9636. },
  9637. {
  9638. name: "Normal",
  9639. height: math.unit(5 + 9 / 12, "feet"),
  9640. default: true
  9641. },
  9642. {
  9643. name: "Macro",
  9644. height: math.unit(800, "feet")
  9645. },
  9646. {
  9647. name: "Megamacro",
  9648. height: math.unit(25, "miles")
  9649. }
  9650. ]
  9651. ))
  9652. characterMakers.push(() => makeCharacter(
  9653. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  9654. {
  9655. front: {
  9656. height: math.unit(6, "feet"),
  9657. weight: math.unit(200, "lbs"),
  9658. name: "Front",
  9659. image: {
  9660. source: "./media/characters/chari-gal/front.svg",
  9661. extra: 735/649,
  9662. bottom: 55/790
  9663. },
  9664. form: "normal",
  9665. default: true
  9666. },
  9667. back: {
  9668. height: math.unit(6, "feet"),
  9669. weight: math.unit(200, "lb"),
  9670. name: "Back",
  9671. image: {
  9672. source: "./media/characters/chari-gal/back.svg",
  9673. extra: 762/666,
  9674. bottom: 31/793
  9675. },
  9676. form: "normal"
  9677. },
  9678. mouth: {
  9679. height: math.unit(1.35, "feet"),
  9680. name: "Mouth",
  9681. image: {
  9682. source: "./media/characters/chari-gal/mouth.svg"
  9683. },
  9684. form: "normal"
  9685. },
  9686. gigantamax: {
  9687. height: math.unit(6 * 16, "feet"),
  9688. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  9689. name: "Gigantamax",
  9690. image: {
  9691. source: "./media/characters/chari-gal/gigantamax-front.svg",
  9692. extra: 1507/1149,
  9693. bottom: 254/1761
  9694. },
  9695. form: "gigantamax",
  9696. default: true
  9697. },
  9698. },
  9699. [
  9700. {
  9701. name: "Normal",
  9702. height: math.unit(5 + 7 / 12, "feet"),
  9703. form: "normal",
  9704. },
  9705. {
  9706. name: "Macro",
  9707. height: math.unit(200, "feet"),
  9708. default: true,
  9709. form: "normal"
  9710. },
  9711. {
  9712. name: "Normal",
  9713. height: math.unit(16 * (5 + 7 / 12), "feet"),
  9714. form: "gigantamax",
  9715. },
  9716. {
  9717. name: "Macro",
  9718. height: math.unit(16 * 200, "feet"),
  9719. default: true,
  9720. form: "gigantamax"
  9721. },
  9722. ],
  9723. {
  9724. "normal": {
  9725. name: "Normal",
  9726. default: true
  9727. },
  9728. "gigantamax": {
  9729. name: "Gigantamax",
  9730. },
  9731. }
  9732. ))
  9733. characterMakers.push(() => makeCharacter(
  9734. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  9735. {
  9736. front: {
  9737. height: math.unit(6, "feet"),
  9738. weight: math.unit(150, "lbs"),
  9739. name: "Front",
  9740. image: {
  9741. source: "./media/characters/nova/front.svg",
  9742. extra: 5000 / 4722,
  9743. bottom: 0.02
  9744. }
  9745. }
  9746. },
  9747. [
  9748. {
  9749. name: "Micro-",
  9750. height: math.unit(0.8, "inches")
  9751. },
  9752. {
  9753. name: "Micro",
  9754. height: math.unit(2, "inches"),
  9755. default: true
  9756. },
  9757. ]
  9758. ))
  9759. characterMakers.push(() => makeCharacter(
  9760. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  9761. {
  9762. koboldFront: {
  9763. height: math.unit(3 + 1 / 12, "feet"),
  9764. weight: math.unit(21.7, "lbs"),
  9765. name: "Front",
  9766. image: {
  9767. source: "./media/characters/argent/kobold-front.svg",
  9768. extra: 1471 / 1331,
  9769. bottom: 100.8 / 1575.5
  9770. },
  9771. form: "kobold",
  9772. default: true
  9773. },
  9774. dragonFront: {
  9775. height: math.unit(75, "inches"),
  9776. name: "Front",
  9777. image: {
  9778. source: "./media/characters/argent/dragon-front.svg",
  9779. extra: 1389/1248,
  9780. bottom: 54/1443
  9781. },
  9782. form: "dragon",
  9783. },
  9784. dragonBack: {
  9785. height: math.unit(75, "inches"),
  9786. name: "Back",
  9787. image: {
  9788. source: "./media/characters/argent/dragon-back.svg",
  9789. extra: 1399/1271,
  9790. bottom: 23/1422
  9791. },
  9792. form: "dragon",
  9793. },
  9794. dragonDressed: {
  9795. height: math.unit(75, "inches"),
  9796. name: "Dressed",
  9797. image: {
  9798. source: "./media/characters/argent/dragon-dressed.svg",
  9799. extra: 1350/1215,
  9800. bottom: 26/1376
  9801. },
  9802. form: "dragon"
  9803. },
  9804. dragonHead: {
  9805. height: math.unit(23.5, "inches"),
  9806. name: "Head",
  9807. image: {
  9808. source: "./media/characters/argent/dragon-head.svg"
  9809. },
  9810. form: "dragon",
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Micro",
  9816. height: math.unit(2, "inches"),
  9817. form: "kobold",
  9818. },
  9819. {
  9820. name: "Normal",
  9821. height: math.unit(3 + 1 / 12, "feet"),
  9822. form: "kobold",
  9823. default: true
  9824. },
  9825. {
  9826. name: "Macro",
  9827. height: math.unit(120, "feet"),
  9828. form: "kobold",
  9829. },
  9830. {
  9831. name: "Speck",
  9832. height: math.unit(1, "mm"),
  9833. form: "dragon",
  9834. },
  9835. {
  9836. name: "Tiny",
  9837. height: math.unit(1, "cm"),
  9838. form: "dragon",
  9839. },
  9840. {
  9841. name: "Micro",
  9842. height: math.unit(5, "cm"),
  9843. form: "dragon",
  9844. },
  9845. {
  9846. name: "Normal",
  9847. height: math.unit(75, "inches"),
  9848. form: "dragon",
  9849. default: true
  9850. },
  9851. {
  9852. name: "Extra Tall",
  9853. height: math.unit(9, "feet"),
  9854. form: "dragon",
  9855. },
  9856. {
  9857. name: "Inconvenient",
  9858. height: math.unit(5, "meters"),
  9859. form: "dragon",
  9860. },
  9861. {
  9862. name: "Macro",
  9863. height: math.unit(70, "meters"),
  9864. form: "dragon",
  9865. },
  9866. {
  9867. name: "Macro+",
  9868. height: math.unit(250, "meters"),
  9869. form: "dragon",
  9870. },
  9871. {
  9872. name: "Megamacro",
  9873. height: math.unit(20, "km"),
  9874. form: "dragon",
  9875. },
  9876. {
  9877. name: "Mountainous",
  9878. height: math.unit(100, "km"),
  9879. form: "dragon",
  9880. },
  9881. {
  9882. name: "Continental",
  9883. height: math.unit(2, "megameters"),
  9884. form: "dragon",
  9885. },
  9886. {
  9887. name: "Too Big",
  9888. height: math.unit(900, "megameters"),
  9889. form: "dragon",
  9890. },
  9891. ],
  9892. {
  9893. "kobold": {
  9894. name: "Kobold",
  9895. default: true
  9896. },
  9897. "dragon": {
  9898. name: "Dragon",
  9899. },
  9900. }
  9901. ))
  9902. characterMakers.push(() => makeCharacter(
  9903. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  9904. {
  9905. lamp: {
  9906. height: math.unit(7 * 1559 / 989, "feet"),
  9907. name: "Magic Lamp",
  9908. image: {
  9909. source: "./media/characters/mira-al-cul/lamp.svg",
  9910. extra: 1617 / 1559
  9911. }
  9912. },
  9913. front: {
  9914. height: math.unit(7, "feet"),
  9915. name: "Front",
  9916. image: {
  9917. source: "./media/characters/mira-al-cul/front.svg",
  9918. extra: 1044 / 990
  9919. }
  9920. },
  9921. },
  9922. [
  9923. {
  9924. name: "Heavily Restricted",
  9925. height: math.unit(7 * 1559 / 989, "feet")
  9926. },
  9927. {
  9928. name: "Freshly Freed",
  9929. height: math.unit(50 * 1559 / 989, "feet")
  9930. },
  9931. {
  9932. name: "World Encompassing",
  9933. height: math.unit(10000 * 1559 / 989, "miles")
  9934. },
  9935. {
  9936. name: "Galactic",
  9937. height: math.unit(1.433 * 1559 / 989, "zettameters")
  9938. },
  9939. {
  9940. name: "Palmed Universe",
  9941. height: math.unit(6000 * 1559 / 989, "yottameters"),
  9942. default: true
  9943. },
  9944. {
  9945. name: "Multiversal Matriarch",
  9946. height: math.unit(8.87e10, "yottameters")
  9947. },
  9948. {
  9949. name: "Void Mother",
  9950. height: math.unit(3.14e110, "yottaparsecs")
  9951. },
  9952. {
  9953. name: "Toying with Transcendence",
  9954. height: math.unit(1e307, "meters")
  9955. },
  9956. ]
  9957. ))
  9958. characterMakers.push(() => makeCharacter(
  9959. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  9960. {
  9961. front: {
  9962. height: math.unit(17 + 1 / 12, "feet"),
  9963. weight: math.unit(476.2 * 5, "lbs"),
  9964. name: "Front",
  9965. image: {
  9966. source: "./media/characters/kuro-shi-uchū/front.svg",
  9967. extra: 2329 / 1835,
  9968. bottom: 0.02
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Micro",
  9975. height: math.unit(2, "inches")
  9976. },
  9977. {
  9978. name: "Normal",
  9979. height: math.unit(12, "meters")
  9980. },
  9981. {
  9982. name: "Planetary",
  9983. height: math.unit(0.00929, "AU"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Universal",
  9988. height: math.unit(20, "gigaparsecs")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(5 + 2 / 12, "feet"),
  9997. weight: math.unit(120, "lbs"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/katherine/front.svg",
  10001. extra: 2075 / 1969
  10002. }
  10003. },
  10004. dress: {
  10005. height: math.unit(5 + 2 / 12, "feet"),
  10006. weight: math.unit(120, "lbs"),
  10007. name: "Dress",
  10008. image: {
  10009. source: "./media/characters/katherine/dress.svg",
  10010. extra: 2258 / 2064
  10011. }
  10012. },
  10013. },
  10014. [
  10015. {
  10016. name: "Micro",
  10017. height: math.unit(1, "inches"),
  10018. default: true
  10019. },
  10020. {
  10021. name: "Normal",
  10022. height: math.unit(5 + 2 / 12, "feet")
  10023. },
  10024. {
  10025. name: "Macro",
  10026. height: math.unit(100, "meters")
  10027. },
  10028. {
  10029. name: "Megamacro",
  10030. height: math.unit(80, "miles")
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  10036. {
  10037. front: {
  10038. height: math.unit(7 + 8 / 12, "feet"),
  10039. weight: math.unit(250, "lbs"),
  10040. name: "Front",
  10041. image: {
  10042. source: "./media/characters/yevis/front.svg",
  10043. extra: 1938 / 1755
  10044. }
  10045. }
  10046. },
  10047. [
  10048. {
  10049. name: "Mortal",
  10050. height: math.unit(7 + 8 / 12, "feet")
  10051. },
  10052. {
  10053. name: "Battle",
  10054. height: math.unit(25 + 11 / 12, "feet")
  10055. },
  10056. {
  10057. name: "Wrath",
  10058. height: math.unit(1654 + 11 / 12, "feet")
  10059. },
  10060. {
  10061. name: "Planet Destroyer",
  10062. height: math.unit(12000, "miles")
  10063. },
  10064. {
  10065. name: "Galaxy Conqueror",
  10066. height: math.unit(1.45, "zettameters"),
  10067. default: true
  10068. },
  10069. {
  10070. name: "Universal War",
  10071. height: math.unit(184, "gigaparsecs")
  10072. },
  10073. {
  10074. name: "Eternity War",
  10075. height: math.unit(1.98e55, "yottaparsecs")
  10076. },
  10077. ]
  10078. ))
  10079. characterMakers.push(() => makeCharacter(
  10080. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  10081. {
  10082. front: {
  10083. height: math.unit(5 + 8 / 12, "feet"),
  10084. weight: math.unit(63, "kg"),
  10085. name: "Front",
  10086. image: {
  10087. source: "./media/characters/xavier/front.svg",
  10088. extra: 944 / 883
  10089. }
  10090. },
  10091. frontStretch: {
  10092. height: math.unit(5 + 8 / 12, "feet"),
  10093. weight: math.unit(63, "kg"),
  10094. name: "Stretching",
  10095. image: {
  10096. source: "./media/characters/xavier/front-stretch.svg",
  10097. extra: 962 / 820
  10098. }
  10099. },
  10100. },
  10101. [
  10102. {
  10103. name: "Normal",
  10104. height: math.unit(5 + 8 / 12, "feet")
  10105. },
  10106. {
  10107. name: "Macro",
  10108. height: math.unit(100, "meters"),
  10109. default: true
  10110. },
  10111. {
  10112. name: "McLargeHuge",
  10113. height: math.unit(10, "miles")
  10114. },
  10115. ]
  10116. ))
  10117. characterMakers.push(() => makeCharacter(
  10118. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  10119. {
  10120. front: {
  10121. height: math.unit(5 + 5 / 12, "feet"),
  10122. weight: math.unit(150, "lb"),
  10123. name: "Front",
  10124. image: {
  10125. source: "./media/characters/joshii/front.svg",
  10126. extra: 765 / 653,
  10127. bottom: 51 / 816
  10128. }
  10129. },
  10130. foot: {
  10131. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  10132. name: "Foot",
  10133. image: {
  10134. source: "./media/characters/joshii/foot.svg"
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Micro",
  10141. height: math.unit(2, "inches")
  10142. },
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(5 + 5 / 12, "feet")
  10146. },
  10147. {
  10148. name: "Macro",
  10149. height: math.unit(785, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Megamacro",
  10154. height: math.unit(24.5, "miles")
  10155. },
  10156. ]
  10157. ))
  10158. characterMakers.push(() => makeCharacter(
  10159. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  10160. {
  10161. front: {
  10162. height: math.unit(6, "feet"),
  10163. weight: math.unit(150, "lb"),
  10164. name: "Front",
  10165. image: {
  10166. source: "./media/characters/goddess-elizabeth/front.svg",
  10167. extra: 1800 / 1525,
  10168. bottom: 0.005
  10169. }
  10170. },
  10171. foot: {
  10172. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  10173. name: "Foot",
  10174. image: {
  10175. source: "./media/characters/goddess-elizabeth/foot.svg"
  10176. }
  10177. },
  10178. mouth: {
  10179. height: math.unit(6, "feet"),
  10180. name: "Mouth",
  10181. image: {
  10182. source: "./media/characters/goddess-elizabeth/mouth.svg"
  10183. }
  10184. },
  10185. },
  10186. [
  10187. {
  10188. name: "Micro",
  10189. height: math.unit(12, "feet")
  10190. },
  10191. {
  10192. name: "Normal",
  10193. height: math.unit(80, "miles"),
  10194. default: true
  10195. },
  10196. {
  10197. name: "Macro",
  10198. height: math.unit(15000, "parsecs")
  10199. },
  10200. ]
  10201. ))
  10202. characterMakers.push(() => makeCharacter(
  10203. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  10204. {
  10205. front: {
  10206. height: math.unit(5 + 9 / 12, "feet"),
  10207. weight: math.unit(144, "lb"),
  10208. name: "Front",
  10209. image: {
  10210. source: "./media/characters/kara/front.svg"
  10211. }
  10212. },
  10213. feet: {
  10214. height: math.unit(6 / 6.765, "feet"),
  10215. name: "Kara's Feet",
  10216. rename: true,
  10217. image: {
  10218. source: "./media/characters/kara/feet.svg"
  10219. }
  10220. },
  10221. },
  10222. [
  10223. {
  10224. name: "Normal",
  10225. height: math.unit(5 + 9 / 12, "feet")
  10226. },
  10227. {
  10228. name: "Macro",
  10229. height: math.unit(174, "feet"),
  10230. default: true
  10231. },
  10232. ]
  10233. ))
  10234. characterMakers.push(() => makeCharacter(
  10235. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  10236. {
  10237. front: {
  10238. height: math.unit(18, "feet"),
  10239. weight: math.unit(4050, "lb"),
  10240. name: "Front",
  10241. image: {
  10242. source: "./media/characters/tyrone/front.svg",
  10243. extra: 2405 / 2270,
  10244. bottom: 182 / 2587
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(18, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(300, "feet")
  10257. },
  10258. {
  10259. name: "Megamacro",
  10260. height: math.unit(15, "km")
  10261. },
  10262. {
  10263. name: "Gigamacro",
  10264. height: math.unit(500, "km")
  10265. },
  10266. {
  10267. name: "Teramacro",
  10268. height: math.unit(0.5, "gigameters")
  10269. },
  10270. {
  10271. name: "Omnimacro",
  10272. height: math.unit(1e252, "yottauniverse")
  10273. },
  10274. ]
  10275. ))
  10276. characterMakers.push(() => makeCharacter(
  10277. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  10278. {
  10279. front: {
  10280. height: math.unit(7 + 8 / 12, "feet"),
  10281. weight: math.unit(120, "lb"),
  10282. name: "Front",
  10283. image: {
  10284. source: "./media/characters/danny/front.svg",
  10285. extra: 1490 / 1350
  10286. }
  10287. },
  10288. back: {
  10289. height: math.unit(7 + 8 / 12, "feet"),
  10290. weight: math.unit(120, "lb"),
  10291. name: "Back",
  10292. image: {
  10293. source: "./media/characters/danny/back.svg",
  10294. extra: 1490 / 1350
  10295. }
  10296. },
  10297. },
  10298. [
  10299. {
  10300. name: "Normal",
  10301. height: math.unit(7 + 8 / 12, "feet"),
  10302. default: true
  10303. },
  10304. ]
  10305. ))
  10306. characterMakers.push(() => makeCharacter(
  10307. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  10308. {
  10309. front: {
  10310. height: math.unit(3.5, "inches"),
  10311. weight: math.unit(19, "grams"),
  10312. name: "Front",
  10313. image: {
  10314. source: "./media/characters/mallow/front.svg",
  10315. extra: 471 / 431
  10316. }
  10317. },
  10318. back: {
  10319. height: math.unit(3.5, "inches"),
  10320. weight: math.unit(19, "grams"),
  10321. name: "Back",
  10322. image: {
  10323. source: "./media/characters/mallow/back.svg",
  10324. extra: 471 / 431
  10325. }
  10326. },
  10327. },
  10328. [
  10329. {
  10330. name: "Normal",
  10331. height: math.unit(3.5, "inches"),
  10332. default: true
  10333. },
  10334. ]
  10335. ))
  10336. characterMakers.push(() => makeCharacter(
  10337. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  10338. {
  10339. front: {
  10340. height: math.unit(9, "feet"),
  10341. weight: math.unit(230, "kg"),
  10342. name: "Front",
  10343. image: {
  10344. source: "./media/characters/starry-aqua/front.svg"
  10345. }
  10346. },
  10347. back: {
  10348. height: math.unit(9, "feet"),
  10349. weight: math.unit(230, "kg"),
  10350. name: "Back",
  10351. image: {
  10352. source: "./media/characters/starry-aqua/back.svg"
  10353. }
  10354. },
  10355. hand: {
  10356. height: math.unit(9 * 0.1168, "feet"),
  10357. name: "Hand",
  10358. image: {
  10359. source: "./media/characters/starry-aqua/hand.svg"
  10360. }
  10361. },
  10362. foot: {
  10363. height: math.unit(9 * 0.18, "feet"),
  10364. name: "Foot",
  10365. image: {
  10366. source: "./media/characters/starry-aqua/foot.svg"
  10367. }
  10368. }
  10369. },
  10370. [
  10371. {
  10372. name: "Micro",
  10373. height: math.unit(3, "inches")
  10374. },
  10375. {
  10376. name: "Normal",
  10377. height: math.unit(9, "feet")
  10378. },
  10379. {
  10380. name: "Macro",
  10381. height: math.unit(300, "feet"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Megamacro",
  10386. height: math.unit(3200, "feet")
  10387. }
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Luka Towers", species: ["kangaroo"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(15, "feet"),
  10395. weight: math.unit(5026, "lb"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/luka-towers/front.svg",
  10399. extra: 1269/1133,
  10400. bottom: 51/1320
  10401. }
  10402. },
  10403. },
  10404. [
  10405. {
  10406. name: "Normal",
  10407. height: math.unit(15, "feet"),
  10408. default: true
  10409. },
  10410. {
  10411. name: "Minimacro",
  10412. height: math.unit(25, "feet")
  10413. },
  10414. {
  10415. name: "Macro",
  10416. height: math.unit(320, "feet")
  10417. },
  10418. {
  10419. name: "Megamacro",
  10420. height: math.unit(35000, "feet")
  10421. },
  10422. {
  10423. name: "Gigamacro",
  10424. height: math.unit(4000, "miles")
  10425. },
  10426. {
  10427. name: "Teramacro",
  10428. height: math.unit(15000, "miles")
  10429. },
  10430. ]
  10431. ))
  10432. characterMakers.push(() => makeCharacter(
  10433. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  10434. {
  10435. front: {
  10436. height: math.unit(6, "feet"),
  10437. weight: math.unit(150, "lb"),
  10438. name: "Front",
  10439. image: {
  10440. source: "./media/characters/natalie-nightring/front.svg",
  10441. extra: 1,
  10442. bottom: 0.06
  10443. }
  10444. },
  10445. },
  10446. [
  10447. {
  10448. name: "Uh Oh",
  10449. height: math.unit(0.1, "mm")
  10450. },
  10451. {
  10452. name: "Small",
  10453. height: math.unit(3, "inches")
  10454. },
  10455. {
  10456. name: "Human Scale",
  10457. height: math.unit(6, "feet")
  10458. },
  10459. {
  10460. name: "Librarian",
  10461. height: math.unit(50, "feet"),
  10462. default: true
  10463. },
  10464. {
  10465. name: "Immense",
  10466. height: math.unit(200, "miles")
  10467. },
  10468. ]
  10469. ))
  10470. characterMakers.push(() => makeCharacter(
  10471. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  10472. {
  10473. front: {
  10474. height: math.unit(6, "feet"),
  10475. weight: math.unit(180, "lbs"),
  10476. name: "Front",
  10477. image: {
  10478. source: "./media/characters/danni-rosie/front.svg",
  10479. extra: 1260 / 1128,
  10480. bottom: 0.022
  10481. }
  10482. },
  10483. },
  10484. [
  10485. {
  10486. name: "Micro",
  10487. height: math.unit(2, "inches"),
  10488. default: true
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(5 + 9 / 12, "feet"),
  10497. weight: math.unit(220, "lb"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/samantha-kruse/front.svg",
  10501. extra: (985 / 935),
  10502. bottom: 0.03
  10503. }
  10504. },
  10505. frontUndressed: {
  10506. height: math.unit(5 + 9 / 12, "feet"),
  10507. weight: math.unit(220, "lb"),
  10508. name: "Front (Undressed)",
  10509. image: {
  10510. source: "./media/characters/samantha-kruse/front-undressed.svg",
  10511. extra: (973 / 923),
  10512. bottom: 0.025
  10513. }
  10514. },
  10515. fat: {
  10516. height: math.unit(5 + 9 / 12, "feet"),
  10517. weight: math.unit(900, "lb"),
  10518. name: "Front (Fat)",
  10519. image: {
  10520. source: "./media/characters/samantha-kruse/fat.svg",
  10521. extra: 2688 / 2561
  10522. }
  10523. },
  10524. },
  10525. [
  10526. {
  10527. name: "Normal",
  10528. height: math.unit(5 + 9 / 12, "feet"),
  10529. default: true
  10530. }
  10531. ]
  10532. ))
  10533. characterMakers.push(() => makeCharacter(
  10534. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  10535. {
  10536. back: {
  10537. height: math.unit(5 + 4 / 12, "feet"),
  10538. weight: math.unit(4963, "lb"),
  10539. name: "Back",
  10540. image: {
  10541. source: "./media/characters/amelia-rosie/back.svg",
  10542. extra: 1113 / 963,
  10543. bottom: 0.01
  10544. }
  10545. },
  10546. },
  10547. [
  10548. {
  10549. name: "Level 0",
  10550. height: math.unit(5 + 4 / 12, "feet")
  10551. },
  10552. {
  10553. name: "Level 1",
  10554. height: math.unit(164597, "feet"),
  10555. default: true
  10556. },
  10557. {
  10558. name: "Level 2",
  10559. height: math.unit(956243, "miles")
  10560. },
  10561. {
  10562. name: "Level 3",
  10563. height: math.unit(29421709423, "miles")
  10564. },
  10565. {
  10566. name: "Level 4",
  10567. height: math.unit(154, "lightyears")
  10568. },
  10569. {
  10570. name: "Level 5",
  10571. height: math.unit(4738272, "lightyears")
  10572. },
  10573. {
  10574. name: "Level 6",
  10575. height: math.unit(145787152896, "lightyears")
  10576. },
  10577. ]
  10578. ))
  10579. characterMakers.push(() => makeCharacter(
  10580. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  10581. {
  10582. front: {
  10583. height: math.unit(5 + 11 / 12, "feet"),
  10584. weight: math.unit(65, "kg"),
  10585. name: "Front",
  10586. image: {
  10587. source: "./media/characters/rook-kitara/front.svg",
  10588. extra: 1347 / 1274,
  10589. bottom: 0.005
  10590. }
  10591. },
  10592. },
  10593. [
  10594. {
  10595. name: "Totally Unfair",
  10596. height: math.unit(1.8, "mm")
  10597. },
  10598. {
  10599. name: "Lap Rookie",
  10600. height: math.unit(1.4, "feet")
  10601. },
  10602. {
  10603. name: "Normal",
  10604. height: math.unit(5 + 11 / 12, "feet"),
  10605. default: true
  10606. },
  10607. {
  10608. name: "How Did This Happen",
  10609. height: math.unit(80, "miles")
  10610. }
  10611. ]
  10612. ))
  10613. characterMakers.push(() => makeCharacter(
  10614. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  10615. {
  10616. front: {
  10617. height: math.unit(7, "feet"),
  10618. weight: math.unit(300, "lb"),
  10619. name: "Front",
  10620. image: {
  10621. source: "./media/characters/pisces/front.svg",
  10622. extra: 2255 / 2115,
  10623. bottom: 0.03
  10624. }
  10625. },
  10626. back: {
  10627. height: math.unit(7, "feet"),
  10628. weight: math.unit(300, "lb"),
  10629. name: "Back",
  10630. image: {
  10631. source: "./media/characters/pisces/back.svg",
  10632. extra: 2146 / 2055,
  10633. bottom: 0.04
  10634. }
  10635. },
  10636. },
  10637. [
  10638. {
  10639. name: "Normal",
  10640. height: math.unit(7, "feet"),
  10641. default: true
  10642. },
  10643. {
  10644. name: "Swimming Pool",
  10645. height: math.unit(12.2, "meters")
  10646. },
  10647. {
  10648. name: "Olympic Swimming Pool",
  10649. height: math.unit(56.3, "meters")
  10650. },
  10651. {
  10652. name: "Lake Superior",
  10653. height: math.unit(93900, "meters")
  10654. },
  10655. {
  10656. name: "Mediterranean Sea",
  10657. height: math.unit(644457, "meters")
  10658. },
  10659. {
  10660. name: "World's Oceans",
  10661. height: math.unit(4567491, "meters")
  10662. },
  10663. ]
  10664. ))
  10665. characterMakers.push(() => makeCharacter(
  10666. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  10667. {
  10668. front: {
  10669. height: math.unit(2.3, "meters"),
  10670. weight: math.unit(120, "kg"),
  10671. name: "Front",
  10672. image: {
  10673. source: "./media/characters/zelas/front.svg"
  10674. }
  10675. },
  10676. side: {
  10677. height: math.unit(2.3, "meters"),
  10678. weight: math.unit(120, "kg"),
  10679. name: "Side",
  10680. image: {
  10681. source: "./media/characters/zelas/side.svg"
  10682. }
  10683. },
  10684. back: {
  10685. height: math.unit(2.3, "meters"),
  10686. weight: math.unit(120, "kg"),
  10687. name: "Back",
  10688. image: {
  10689. source: "./media/characters/zelas/back.svg"
  10690. }
  10691. },
  10692. foot: {
  10693. height: math.unit(1.116, "feet"),
  10694. name: "Foot",
  10695. image: {
  10696. source: "./media/characters/zelas/foot.svg"
  10697. }
  10698. },
  10699. },
  10700. [
  10701. {
  10702. name: "Normal",
  10703. height: math.unit(2.3, "meters")
  10704. },
  10705. {
  10706. name: "Macro",
  10707. height: math.unit(30, "meters"),
  10708. default: true
  10709. },
  10710. ]
  10711. ))
  10712. characterMakers.push(() => makeCharacter(
  10713. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  10714. {
  10715. front: {
  10716. height: math.unit(1, "inch"),
  10717. weight: math.unit(0.21, "grams"),
  10718. name: "Front",
  10719. image: {
  10720. source: "./media/characters/talbot/front.svg",
  10721. extra: 594 / 544
  10722. }
  10723. },
  10724. },
  10725. [
  10726. {
  10727. name: "Micro",
  10728. height: math.unit(1, "inch"),
  10729. default: true
  10730. },
  10731. ]
  10732. ))
  10733. characterMakers.push(() => makeCharacter(
  10734. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  10735. {
  10736. front: {
  10737. height: math.unit(3 + 3 / 12, "feet"),
  10738. weight: math.unit(51.8, "lb"),
  10739. name: "Front",
  10740. image: {
  10741. source: "./media/characters/fliss/front.svg",
  10742. extra: 840 / 640
  10743. }
  10744. },
  10745. },
  10746. [
  10747. {
  10748. name: "Teeny Tiny",
  10749. height: math.unit(1, "mm")
  10750. },
  10751. {
  10752. name: "Small",
  10753. height: math.unit(1, "inch"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Standard Sylveon",
  10758. height: math.unit(3 + 3 / 12, "feet")
  10759. },
  10760. {
  10761. name: "Large Nuisance",
  10762. height: math.unit(33, "feet")
  10763. },
  10764. {
  10765. name: "City Filler",
  10766. height: math.unit(3000, "feet")
  10767. },
  10768. {
  10769. name: "New Horizon",
  10770. height: math.unit(6000, "miles")
  10771. },
  10772. ]
  10773. ))
  10774. characterMakers.push(() => makeCharacter(
  10775. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  10776. {
  10777. front: {
  10778. height: math.unit(5, "cm"),
  10779. weight: math.unit(1.94, "g"),
  10780. name: "Front",
  10781. image: {
  10782. source: "./media/characters/fleta/front.svg",
  10783. extra: 835 / 803
  10784. }
  10785. },
  10786. back: {
  10787. height: math.unit(5, "cm"),
  10788. weight: math.unit(1.94, "g"),
  10789. name: "Back",
  10790. image: {
  10791. source: "./media/characters/fleta/back.svg",
  10792. extra: 835 / 803
  10793. }
  10794. },
  10795. },
  10796. [
  10797. {
  10798. name: "Micro",
  10799. height: math.unit(5, "cm"),
  10800. default: true
  10801. },
  10802. ]
  10803. ))
  10804. characterMakers.push(() => makeCharacter(
  10805. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  10806. {
  10807. front: {
  10808. height: math.unit(6, "feet"),
  10809. weight: math.unit(225, "lb"),
  10810. name: "Front",
  10811. image: {
  10812. source: "./media/characters/dominic/front.svg",
  10813. extra: 1770 / 1620,
  10814. bottom: 0.025
  10815. }
  10816. },
  10817. back: {
  10818. height: math.unit(6, "feet"),
  10819. weight: math.unit(225, "lb"),
  10820. name: "Back",
  10821. image: {
  10822. source: "./media/characters/dominic/back.svg",
  10823. extra: 1745 / 1620,
  10824. bottom: 0.065
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Nano",
  10831. height: math.unit(0.1, "mm")
  10832. },
  10833. {
  10834. name: "Micro-",
  10835. height: math.unit(1, "mm")
  10836. },
  10837. {
  10838. name: "Micro",
  10839. height: math.unit(4, "inches")
  10840. },
  10841. {
  10842. name: "Normal",
  10843. height: math.unit(6 + 4 / 12, "feet"),
  10844. default: true
  10845. },
  10846. {
  10847. name: "Macro",
  10848. height: math.unit(115, "feet")
  10849. },
  10850. {
  10851. name: "Macro+",
  10852. height: math.unit(955, "feet")
  10853. },
  10854. {
  10855. name: "Megamacro",
  10856. height: math.unit(8990, "feet")
  10857. },
  10858. {
  10859. name: "Gigmacro",
  10860. height: math.unit(9310, "miles")
  10861. },
  10862. {
  10863. name: "Teramacro",
  10864. height: math.unit(1567005010, "miles")
  10865. },
  10866. {
  10867. name: "Examacro",
  10868. height: math.unit(1425, "parsecs")
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  10874. {
  10875. front: {
  10876. height: math.unit(400, "feet"),
  10877. weight: math.unit(44444444, "lb"),
  10878. name: "Front",
  10879. image: {
  10880. source: "./media/characters/major-colonel/front.svg"
  10881. }
  10882. },
  10883. back: {
  10884. height: math.unit(400, "feet"),
  10885. weight: math.unit(44444444, "lb"),
  10886. name: "Back",
  10887. image: {
  10888. source: "./media/characters/major-colonel/back.svg"
  10889. }
  10890. },
  10891. },
  10892. [
  10893. {
  10894. name: "Macro",
  10895. height: math.unit(400, "feet"),
  10896. default: true
  10897. },
  10898. ]
  10899. ))
  10900. characterMakers.push(() => makeCharacter(
  10901. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  10902. {
  10903. catFront: {
  10904. height: math.unit(6, "feet"),
  10905. weight: math.unit(120, "lb"),
  10906. name: "Front (Cat Side)",
  10907. image: {
  10908. source: "./media/characters/axel-lycan/cat-front.svg",
  10909. extra: 430 / 402,
  10910. bottom: 43 / 472.35
  10911. }
  10912. },
  10913. catBack: {
  10914. height: math.unit(6, "feet"),
  10915. weight: math.unit(120, "lb"),
  10916. name: "Back (Cat Side)",
  10917. image: {
  10918. source: "./media/characters/axel-lycan/cat-back.svg",
  10919. extra: 447 / 419,
  10920. bottom: 23.3 / 469
  10921. }
  10922. },
  10923. wolfFront: {
  10924. height: math.unit(6, "feet"),
  10925. weight: math.unit(120, "lb"),
  10926. name: "Front (Wolf Side)",
  10927. image: {
  10928. source: "./media/characters/axel-lycan/wolf-front.svg",
  10929. extra: 485 / 456,
  10930. bottom: 19 / 504
  10931. }
  10932. },
  10933. wolfBack: {
  10934. height: math.unit(6, "feet"),
  10935. weight: math.unit(120, "lb"),
  10936. name: "Back (Wolf Side)",
  10937. image: {
  10938. source: "./media/characters/axel-lycan/wolf-back.svg",
  10939. extra: 475 / 438,
  10940. bottom: 39.2 / 514
  10941. }
  10942. },
  10943. },
  10944. [
  10945. {
  10946. name: "Macro",
  10947. height: math.unit(1, "km"),
  10948. default: true
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(5 + 9 / 12, "feet"),
  10957. weight: math.unit(175, "lb"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/vanrel-hyena/front.svg",
  10961. extra: 1086 / 1010,
  10962. bottom: 0.04
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(5 + 9 / 12, "feet"),
  10970. default: true
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  10976. {
  10977. front: {
  10978. height: math.unit(6, "feet"),
  10979. weight: math.unit(103, "lb"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/abbott-absol/front.svg",
  10983. extra: 765/694,
  10984. bottom: 47/812
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Megamicro",
  10991. height: math.unit(0.1, "mm")
  10992. },
  10993. {
  10994. name: "Micro",
  10995. height: math.unit(1, "inch")
  10996. },
  10997. {
  10998. name: "Normal",
  10999. height: math.unit(6, "feet"),
  11000. default: true
  11001. },
  11002. ]
  11003. ))
  11004. characterMakers.push(() => makeCharacter(
  11005. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  11006. {
  11007. front: {
  11008. height: math.unit(6, "feet"),
  11009. weight: math.unit(264, "lb"),
  11010. name: "Front",
  11011. image: {
  11012. source: "./media/characters/hector/front.svg",
  11013. extra: 2280 / 2130,
  11014. bottom: 0.07
  11015. }
  11016. },
  11017. },
  11018. [
  11019. {
  11020. name: "Normal",
  11021. height: math.unit(12.25, "foot"),
  11022. default: true
  11023. },
  11024. {
  11025. name: "Macro",
  11026. height: math.unit(160, "feet")
  11027. },
  11028. ]
  11029. ))
  11030. characterMakers.push(() => makeCharacter(
  11031. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  11032. {
  11033. front: {
  11034. height: math.unit(6, "feet"),
  11035. weight: math.unit(150, "lb"),
  11036. name: "Front",
  11037. image: {
  11038. source: "./media/characters/sal/front.svg",
  11039. extra: 1846 / 1699,
  11040. bottom: 0.04
  11041. }
  11042. },
  11043. },
  11044. [
  11045. {
  11046. name: "Megamacro",
  11047. height: math.unit(10, "miles"),
  11048. default: true
  11049. },
  11050. ]
  11051. ))
  11052. characterMakers.push(() => makeCharacter(
  11053. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  11054. {
  11055. front: {
  11056. height: math.unit(3, "meters"),
  11057. weight: math.unit(450, "kg"),
  11058. name: "front",
  11059. image: {
  11060. source: "./media/characters/ranger/front.svg",
  11061. extra: 2401 / 2243,
  11062. bottom: 0.05
  11063. }
  11064. },
  11065. },
  11066. [
  11067. {
  11068. name: "Normal",
  11069. height: math.unit(3, "meters"),
  11070. default: true
  11071. },
  11072. ]
  11073. ))
  11074. characterMakers.push(() => makeCharacter(
  11075. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  11076. {
  11077. front: {
  11078. height: math.unit(14, "feet"),
  11079. weight: math.unit(800, "kg"),
  11080. name: "Front",
  11081. image: {
  11082. source: "./media/characters/theresa/front.svg",
  11083. extra: 3575 / 3346,
  11084. bottom: 0.03
  11085. }
  11086. },
  11087. },
  11088. [
  11089. {
  11090. name: "Normal",
  11091. height: math.unit(14, "feet"),
  11092. default: true
  11093. },
  11094. ]
  11095. ))
  11096. characterMakers.push(() => makeCharacter(
  11097. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  11098. {
  11099. front: {
  11100. height: math.unit(6, "feet"),
  11101. weight: math.unit(3, "kg"),
  11102. name: "Front",
  11103. image: {
  11104. source: "./media/characters/ine/front.svg",
  11105. extra: 678 / 539,
  11106. bottom: 0.023
  11107. }
  11108. },
  11109. },
  11110. [
  11111. {
  11112. name: "Normal",
  11113. height: math.unit(2.265, "feet"),
  11114. default: true
  11115. },
  11116. ]
  11117. ))
  11118. characterMakers.push(() => makeCharacter(
  11119. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  11120. {
  11121. front: {
  11122. height: math.unit(5, "feet"),
  11123. weight: math.unit(30, "kg"),
  11124. name: "Front",
  11125. image: {
  11126. source: "./media/characters/vial/front.svg",
  11127. extra: 1365 / 1277,
  11128. bottom: 0.04
  11129. }
  11130. },
  11131. },
  11132. [
  11133. {
  11134. name: "Normal",
  11135. height: math.unit(5, "feet"),
  11136. default: true
  11137. },
  11138. ]
  11139. ))
  11140. characterMakers.push(() => makeCharacter(
  11141. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  11142. {
  11143. side: {
  11144. height: math.unit(3.4, "meters"),
  11145. weight: math.unit(1000, "lb"),
  11146. name: "Side",
  11147. image: {
  11148. source: "./media/characters/rovoska/side.svg",
  11149. extra: 4403 / 1515
  11150. }
  11151. },
  11152. },
  11153. [
  11154. {
  11155. name: "Normal",
  11156. height: math.unit(3.4, "meters"),
  11157. default: true
  11158. },
  11159. ]
  11160. ))
  11161. characterMakers.push(() => makeCharacter(
  11162. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  11163. {
  11164. front: {
  11165. height: math.unit(8, "feet"),
  11166. weight: math.unit(315, "lb"),
  11167. name: "Front",
  11168. image: {
  11169. source: "./media/characters/gunner-rotthbauer/front.svg"
  11170. }
  11171. },
  11172. back: {
  11173. height: math.unit(8, "feet"),
  11174. weight: math.unit(315, "lb"),
  11175. name: "Back",
  11176. image: {
  11177. source: "./media/characters/gunner-rotthbauer/back.svg"
  11178. }
  11179. },
  11180. },
  11181. [
  11182. {
  11183. name: "Micro",
  11184. height: math.unit(3.5, "inches")
  11185. },
  11186. {
  11187. name: "Normal",
  11188. height: math.unit(8, "feet"),
  11189. default: true
  11190. },
  11191. {
  11192. name: "Macro",
  11193. height: math.unit(250, "feet")
  11194. },
  11195. {
  11196. name: "Megamacro",
  11197. height: math.unit(1, "AU")
  11198. },
  11199. ]
  11200. ))
  11201. characterMakers.push(() => makeCharacter(
  11202. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  11203. {
  11204. front: {
  11205. height: math.unit(5 + 5 / 12, "feet"),
  11206. weight: math.unit(140, "lb"),
  11207. name: "Front",
  11208. image: {
  11209. source: "./media/characters/allatia/front.svg",
  11210. extra: 1227 / 1180,
  11211. bottom: 0.027
  11212. }
  11213. },
  11214. },
  11215. [
  11216. {
  11217. name: "Normal",
  11218. height: math.unit(5 + 5 / 12, "feet")
  11219. },
  11220. {
  11221. name: "Macro",
  11222. height: math.unit(250, "feet"),
  11223. default: true
  11224. },
  11225. {
  11226. name: "Megamacro",
  11227. height: math.unit(8, "miles")
  11228. }
  11229. ]
  11230. ))
  11231. characterMakers.push(() => makeCharacter(
  11232. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  11233. {
  11234. front: {
  11235. height: math.unit(6, "feet"),
  11236. weight: math.unit(120, "lb"),
  11237. name: "Front",
  11238. image: {
  11239. source: "./media/characters/tene/front.svg",
  11240. extra: 814/750,
  11241. bottom: 36/850
  11242. }
  11243. },
  11244. stomping: {
  11245. height: math.unit(2.025, "meters"),
  11246. weight: math.unit(120, "lb"),
  11247. name: "Stomping",
  11248. image: {
  11249. source: "./media/characters/tene/stomping.svg",
  11250. extra: 885/821,
  11251. bottom: 15/900
  11252. }
  11253. },
  11254. sitting: {
  11255. height: math.unit(1, "meter"),
  11256. weight: math.unit(120, "lb"),
  11257. name: "Sitting",
  11258. image: {
  11259. source: "./media/characters/tene/sitting.svg",
  11260. extra: 396/366,
  11261. bottom: 79/475
  11262. }
  11263. },
  11264. smiling: {
  11265. height: math.unit(1.2, "feet"),
  11266. name: "Smiling",
  11267. image: {
  11268. source: "./media/characters/tene/smiling.svg",
  11269. extra: 1364/1071,
  11270. bottom: 0/1364
  11271. }
  11272. },
  11273. smug: {
  11274. height: math.unit(1.3, "feet"),
  11275. name: "Smug",
  11276. image: {
  11277. source: "./media/characters/tene/smug.svg",
  11278. extra: 1323/1082,
  11279. bottom: 0/1323
  11280. }
  11281. },
  11282. feral: {
  11283. height: math.unit(3.9, "feet"),
  11284. weight: math.unit(250, "lb"),
  11285. name: "Feral",
  11286. image: {
  11287. source: "./media/characters/tene/feral.svg",
  11288. extra: 717 / 458,
  11289. bottom: 0.179
  11290. }
  11291. },
  11292. },
  11293. [
  11294. {
  11295. name: "Normal",
  11296. height: math.unit(6, "feet")
  11297. },
  11298. {
  11299. name: "Macro",
  11300. height: math.unit(300, "feet"),
  11301. default: true
  11302. },
  11303. {
  11304. name: "Megamacro",
  11305. height: math.unit(5, "miles")
  11306. },
  11307. ]
  11308. ))
  11309. characterMakers.push(() => makeCharacter(
  11310. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  11311. {
  11312. side: {
  11313. height: math.unit(6, "feet"),
  11314. name: "Side",
  11315. image: {
  11316. source: "./media/characters/evander/side.svg",
  11317. extra: 877 / 477
  11318. }
  11319. },
  11320. },
  11321. [
  11322. {
  11323. name: "Normal",
  11324. height: math.unit(0.83, "meters"),
  11325. default: true
  11326. },
  11327. ]
  11328. ))
  11329. characterMakers.push(() => makeCharacter(
  11330. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  11331. {
  11332. front: {
  11333. height: math.unit(12, "feet"),
  11334. weight: math.unit(1000, "lb"),
  11335. name: "Front",
  11336. image: {
  11337. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  11338. extra: 1762 / 1611
  11339. }
  11340. },
  11341. back: {
  11342. height: math.unit(12, "feet"),
  11343. weight: math.unit(1000, "lb"),
  11344. name: "Back",
  11345. image: {
  11346. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  11347. extra: 1762 / 1611
  11348. }
  11349. },
  11350. },
  11351. [
  11352. {
  11353. name: "Normal",
  11354. height: math.unit(12, "feet"),
  11355. default: true
  11356. },
  11357. {
  11358. name: "Kaiju",
  11359. height: math.unit(150, "feet")
  11360. },
  11361. ]
  11362. ))
  11363. characterMakers.push(() => makeCharacter(
  11364. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  11365. {
  11366. front: {
  11367. height: math.unit(6, "feet"),
  11368. weight: math.unit(150, "lb"),
  11369. name: "Front",
  11370. image: {
  11371. source: "./media/characters/zero-alurus/front.svg"
  11372. }
  11373. },
  11374. back: {
  11375. height: math.unit(6, "feet"),
  11376. weight: math.unit(150, "lb"),
  11377. name: "Back",
  11378. image: {
  11379. source: "./media/characters/zero-alurus/back.svg"
  11380. }
  11381. },
  11382. },
  11383. [
  11384. {
  11385. name: "Normal",
  11386. height: math.unit(5 + 10 / 12, "feet")
  11387. },
  11388. {
  11389. name: "Macro",
  11390. height: math.unit(60, "feet"),
  11391. default: true
  11392. },
  11393. {
  11394. name: "Macro+",
  11395. height: math.unit(450, "feet")
  11396. },
  11397. ]
  11398. ))
  11399. characterMakers.push(() => makeCharacter(
  11400. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  11401. {
  11402. front: {
  11403. height: math.unit(6, "feet"),
  11404. weight: math.unit(200, "lb"),
  11405. name: "Front",
  11406. image: {
  11407. source: "./media/characters/mega-shi/front.svg",
  11408. extra: 1279 / 1250,
  11409. bottom: 0.02
  11410. }
  11411. },
  11412. back: {
  11413. height: math.unit(6, "feet"),
  11414. weight: math.unit(200, "lb"),
  11415. name: "Back",
  11416. image: {
  11417. source: "./media/characters/mega-shi/back.svg",
  11418. extra: 1279 / 1250,
  11419. bottom: 0.02
  11420. }
  11421. },
  11422. },
  11423. [
  11424. {
  11425. name: "Micro",
  11426. height: math.unit(16 + 6 / 12, "feet")
  11427. },
  11428. {
  11429. name: "Third Dimension",
  11430. height: math.unit(40, "meters")
  11431. },
  11432. {
  11433. name: "Normal",
  11434. height: math.unit(660, "feet"),
  11435. default: true
  11436. },
  11437. {
  11438. name: "Megamacro",
  11439. height: math.unit(10, "miles")
  11440. },
  11441. {
  11442. name: "Planetary Launch",
  11443. height: math.unit(500, "miles")
  11444. },
  11445. {
  11446. name: "Interstellar",
  11447. height: math.unit(1e9, "miles")
  11448. },
  11449. {
  11450. name: "Leaving the Universe",
  11451. height: math.unit(1, "gigaparsec")
  11452. },
  11453. {
  11454. name: "Travelling Universes",
  11455. height: math.unit(30e15, "parsecs")
  11456. },
  11457. ]
  11458. ))
  11459. characterMakers.push(() => makeCharacter(
  11460. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  11461. {
  11462. front: {
  11463. height: math.unit(5 + 4/12, "feet"),
  11464. weight: math.unit(120, "lb"),
  11465. name: "Front",
  11466. image: {
  11467. source: "./media/characters/odyssey/front.svg",
  11468. extra: 1747/1571,
  11469. bottom: 47/1794
  11470. }
  11471. },
  11472. side: {
  11473. height: math.unit(5.1, "feet"),
  11474. weight: math.unit(120, "lb"),
  11475. name: "Side",
  11476. image: {
  11477. source: "./media/characters/odyssey/side.svg",
  11478. extra: 1847/1619,
  11479. bottom: 47/1894
  11480. }
  11481. },
  11482. lounging: {
  11483. height: math.unit(1.464, "feet"),
  11484. weight: math.unit(120, "lb"),
  11485. name: "Lounging",
  11486. image: {
  11487. source: "./media/characters/odyssey/lounging.svg",
  11488. extra: 1235/837,
  11489. bottom: 551/1786
  11490. }
  11491. },
  11492. },
  11493. [
  11494. {
  11495. name: "Normal",
  11496. height: math.unit(5 + 4 / 12, "feet")
  11497. },
  11498. {
  11499. name: "Macro",
  11500. height: math.unit(1, "km")
  11501. },
  11502. {
  11503. name: "Megamacro",
  11504. height: math.unit(3000, "km")
  11505. },
  11506. {
  11507. name: "Gigamacro",
  11508. height: math.unit(1, "AU"),
  11509. default: true
  11510. },
  11511. {
  11512. name: "Omniversal",
  11513. height: math.unit(100e14, "lightyears")
  11514. },
  11515. ]
  11516. ))
  11517. characterMakers.push(() => makeCharacter(
  11518. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  11519. {
  11520. front: {
  11521. height: math.unit(5 + 10/12, "feet"),
  11522. name: "Front",
  11523. image: {
  11524. source: "./media/characters/mekuto/front.svg",
  11525. extra: 875/835,
  11526. bottom: 46/921
  11527. }
  11528. },
  11529. },
  11530. [
  11531. {
  11532. name: "Minimicro",
  11533. height: math.unit(0.2, "inches")
  11534. },
  11535. {
  11536. name: "Micro",
  11537. height: math.unit(1.5, "inches")
  11538. },
  11539. {
  11540. name: "Normal",
  11541. height: math.unit(5 + 10 / 12, "feet"),
  11542. default: true
  11543. },
  11544. {
  11545. name: "Minimacro",
  11546. height: math.unit(17 + 9 / 12, "feet")
  11547. },
  11548. {
  11549. name: "Macro",
  11550. height: math.unit(177.5, "feet")
  11551. },
  11552. {
  11553. name: "Megamacro",
  11554. height: math.unit(152, "miles")
  11555. },
  11556. ]
  11557. ))
  11558. characterMakers.push(() => makeCharacter(
  11559. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  11560. {
  11561. front: {
  11562. height: math.unit(6.5, "inches"),
  11563. weight: math.unit(13, "oz"),
  11564. name: "Front",
  11565. image: {
  11566. source: "./media/characters/dafydd-tomos/front.svg",
  11567. extra: 2990 / 2603,
  11568. bottom: 0.03
  11569. }
  11570. },
  11571. },
  11572. [
  11573. {
  11574. name: "Micro",
  11575. height: math.unit(6.5, "inches"),
  11576. default: true
  11577. },
  11578. ]
  11579. ))
  11580. characterMakers.push(() => makeCharacter(
  11581. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  11582. {
  11583. front: {
  11584. height: math.unit(6, "feet"),
  11585. weight: math.unit(150, "lb"),
  11586. name: "Front",
  11587. image: {
  11588. source: "./media/characters/splinter/front.svg",
  11589. extra: 2990 / 2882,
  11590. bottom: 0.04
  11591. }
  11592. },
  11593. back: {
  11594. height: math.unit(6, "feet"),
  11595. weight: math.unit(150, "lb"),
  11596. name: "Back",
  11597. image: {
  11598. source: "./media/characters/splinter/back.svg",
  11599. extra: 2990 / 2882,
  11600. bottom: 0.04
  11601. }
  11602. },
  11603. },
  11604. [
  11605. {
  11606. name: "Normal",
  11607. height: math.unit(6, "feet")
  11608. },
  11609. {
  11610. name: "Macro",
  11611. height: math.unit(230, "meters"),
  11612. default: true
  11613. },
  11614. ]
  11615. ))
  11616. characterMakers.push(() => makeCharacter(
  11617. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  11618. {
  11619. front: {
  11620. height: math.unit(4 + 10 / 12, "feet"),
  11621. weight: math.unit(480, "lb"),
  11622. name: "Front",
  11623. image: {
  11624. source: "./media/characters/snow-gabumon/front.svg",
  11625. extra: 1140 / 963,
  11626. bottom: 0.058
  11627. }
  11628. },
  11629. back: {
  11630. height: math.unit(4 + 10 / 12, "feet"),
  11631. weight: math.unit(480, "lb"),
  11632. name: "Back",
  11633. image: {
  11634. source: "./media/characters/snow-gabumon/back.svg",
  11635. extra: 1115 / 962,
  11636. bottom: 0.041
  11637. }
  11638. },
  11639. frontUndresed: {
  11640. height: math.unit(4 + 10 / 12, "feet"),
  11641. weight: math.unit(480, "lb"),
  11642. name: "Front (Undressed)",
  11643. image: {
  11644. source: "./media/characters/snow-gabumon/front-undressed.svg",
  11645. extra: 1061 / 960,
  11646. bottom: 0.045
  11647. }
  11648. },
  11649. },
  11650. [
  11651. {
  11652. name: "Micro",
  11653. height: math.unit(1, "inch")
  11654. },
  11655. {
  11656. name: "Normal",
  11657. height: math.unit(4 + 10 / 12, "feet"),
  11658. default: true
  11659. },
  11660. {
  11661. name: "Macro",
  11662. height: math.unit(200, "feet")
  11663. },
  11664. {
  11665. name: "Megamacro",
  11666. height: math.unit(120, "miles")
  11667. },
  11668. {
  11669. name: "Gigamacro",
  11670. height: math.unit(9800, "miles")
  11671. },
  11672. ]
  11673. ))
  11674. characterMakers.push(() => makeCharacter(
  11675. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  11676. {
  11677. front: {
  11678. height: math.unit(1.7, "meters"),
  11679. weight: math.unit(140, "lb"),
  11680. name: "Front",
  11681. image: {
  11682. source: "./media/characters/moody/front.svg",
  11683. extra: 3226 / 3007,
  11684. bottom: 0.087
  11685. }
  11686. },
  11687. },
  11688. [
  11689. {
  11690. name: "Micro",
  11691. height: math.unit(1, "mm")
  11692. },
  11693. {
  11694. name: "Normal",
  11695. height: math.unit(1.7, "meters"),
  11696. default: true
  11697. },
  11698. {
  11699. name: "Macro",
  11700. height: math.unit(80, "meters")
  11701. },
  11702. {
  11703. name: "Macro+",
  11704. height: math.unit(500, "meters")
  11705. },
  11706. ]
  11707. ))
  11708. characterMakers.push(() => makeCharacter(
  11709. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  11710. {
  11711. front: {
  11712. height: math.unit(6, "feet"),
  11713. weight: math.unit(150, "lb"),
  11714. name: "Front",
  11715. image: {
  11716. source: "./media/characters/zyas/front.svg",
  11717. extra: 1180 / 1120,
  11718. bottom: 0.045
  11719. }
  11720. },
  11721. },
  11722. [
  11723. {
  11724. name: "Normal",
  11725. height: math.unit(10, "feet"),
  11726. default: true
  11727. },
  11728. {
  11729. name: "Macro",
  11730. height: math.unit(500, "feet")
  11731. },
  11732. {
  11733. name: "Megamacro",
  11734. height: math.unit(5, "miles")
  11735. },
  11736. {
  11737. name: "Teramacro",
  11738. height: math.unit(150000, "miles")
  11739. },
  11740. ]
  11741. ))
  11742. characterMakers.push(() => makeCharacter(
  11743. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  11744. {
  11745. front: {
  11746. height: math.unit(6, "feet"),
  11747. weight: math.unit(150, "lb"),
  11748. name: "Front",
  11749. image: {
  11750. source: "./media/characters/cuon/front.svg",
  11751. extra: 1390 / 1320,
  11752. bottom: 0.008
  11753. }
  11754. },
  11755. },
  11756. [
  11757. {
  11758. name: "Micro",
  11759. height: math.unit(3, "inches")
  11760. },
  11761. {
  11762. name: "Normal",
  11763. height: math.unit(18 + 9 / 12, "feet"),
  11764. default: true
  11765. },
  11766. {
  11767. name: "Macro",
  11768. height: math.unit(360, "feet")
  11769. },
  11770. {
  11771. name: "Megamacro",
  11772. height: math.unit(360, "miles")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(2.4, "meters"),
  11781. weight: math.unit(70, "kg"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/nyanuxk/front.svg",
  11785. extra: 1172 / 1084,
  11786. bottom: 0.065
  11787. }
  11788. },
  11789. side: {
  11790. height: math.unit(2.4, "meters"),
  11791. weight: math.unit(70, "kg"),
  11792. name: "Side",
  11793. image: {
  11794. source: "./media/characters/nyanuxk/side.svg",
  11795. extra: 1190 / 1132,
  11796. bottom: 0.007
  11797. }
  11798. },
  11799. back: {
  11800. height: math.unit(2.4, "meters"),
  11801. weight: math.unit(70, "kg"),
  11802. name: "Back",
  11803. image: {
  11804. source: "./media/characters/nyanuxk/back.svg",
  11805. extra: 1200 / 1141,
  11806. bottom: 0.015
  11807. }
  11808. },
  11809. foot: {
  11810. height: math.unit(0.52, "meters"),
  11811. name: "Foot",
  11812. image: {
  11813. source: "./media/characters/nyanuxk/foot.svg"
  11814. }
  11815. },
  11816. },
  11817. [
  11818. {
  11819. name: "Micro",
  11820. height: math.unit(2, "cm")
  11821. },
  11822. {
  11823. name: "Normal",
  11824. height: math.unit(2.4, "meters"),
  11825. default: true
  11826. },
  11827. {
  11828. name: "Smaller Macro",
  11829. height: math.unit(120, "meters")
  11830. },
  11831. {
  11832. name: "Bigger Macro",
  11833. height: math.unit(1.2, "km")
  11834. },
  11835. {
  11836. name: "Megamacro",
  11837. height: math.unit(15, "kilometers")
  11838. },
  11839. {
  11840. name: "Gigamacro",
  11841. height: math.unit(2000, "km")
  11842. },
  11843. {
  11844. name: "Teramacro",
  11845. height: math.unit(500000, "km")
  11846. },
  11847. ]
  11848. ))
  11849. characterMakers.push(() => makeCharacter(
  11850. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  11851. {
  11852. side: {
  11853. height: math.unit(6, "feet"),
  11854. name: "Side",
  11855. image: {
  11856. source: "./media/characters/ailbhe/side.svg",
  11857. extra: 757 / 464,
  11858. bottom: 0.041
  11859. }
  11860. },
  11861. },
  11862. [
  11863. {
  11864. name: "Normal",
  11865. height: math.unit(1.07, "meters"),
  11866. default: true
  11867. },
  11868. ]
  11869. ))
  11870. characterMakers.push(() => makeCharacter(
  11871. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  11872. {
  11873. front: {
  11874. height: math.unit(6, "feet"),
  11875. weight: math.unit(120, "kg"),
  11876. name: "Front",
  11877. image: {
  11878. source: "./media/characters/zevulfius/front.svg",
  11879. extra: 965 / 903
  11880. }
  11881. },
  11882. side: {
  11883. height: math.unit(6, "feet"),
  11884. weight: math.unit(120, "kg"),
  11885. name: "Side",
  11886. image: {
  11887. source: "./media/characters/zevulfius/side.svg",
  11888. extra: 939 / 900
  11889. }
  11890. },
  11891. back: {
  11892. height: math.unit(6, "feet"),
  11893. weight: math.unit(120, "kg"),
  11894. name: "Back",
  11895. image: {
  11896. source: "./media/characters/zevulfius/back.svg",
  11897. extra: 918 / 854,
  11898. bottom: 0.005
  11899. }
  11900. },
  11901. foot: {
  11902. height: math.unit(6 / 3.72, "feet"),
  11903. name: "Foot",
  11904. image: {
  11905. source: "./media/characters/zevulfius/foot.svg"
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Macro",
  11912. height: math.unit(750, "meters")
  11913. },
  11914. {
  11915. name: "Megamacro",
  11916. height: math.unit(20, "km"),
  11917. default: true
  11918. },
  11919. {
  11920. name: "Gigamacro",
  11921. height: math.unit(2000, "km")
  11922. },
  11923. {
  11924. name: "Teramacro",
  11925. height: math.unit(250000, "km")
  11926. },
  11927. ]
  11928. ))
  11929. characterMakers.push(() => makeCharacter(
  11930. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  11931. {
  11932. front: {
  11933. height: math.unit(100, "feet"),
  11934. weight: math.unit(350, "kg"),
  11935. name: "Front",
  11936. image: {
  11937. source: "./media/characters/rikes/front.svg",
  11938. extra: 1565 / 1483,
  11939. bottom: 0.017
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Macro",
  11946. height: math.unit(100, "feet"),
  11947. default: true
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  11953. {
  11954. front: {
  11955. height: math.unit(8, "feet"),
  11956. weight: math.unit(356, "lb"),
  11957. name: "Front",
  11958. image: {
  11959. source: "./media/characters/adam-silver-mane/front.svg",
  11960. extra: 1036/937,
  11961. bottom: 63/1099
  11962. }
  11963. },
  11964. side: {
  11965. height: math.unit(8, "feet"),
  11966. weight: math.unit(356, "lb"),
  11967. name: "Side",
  11968. image: {
  11969. source: "./media/characters/adam-silver-mane/side.svg",
  11970. extra: 997/901,
  11971. bottom: 59/1056
  11972. }
  11973. },
  11974. frontNsfw: {
  11975. height: math.unit(8, "feet"),
  11976. weight: math.unit(356, "lb"),
  11977. name: "Front (NSFW)",
  11978. image: {
  11979. source: "./media/characters/adam-silver-mane/front-nsfw.svg",
  11980. extra: 1036/937,
  11981. bottom: 63/1099
  11982. }
  11983. },
  11984. sideNsfw: {
  11985. height: math.unit(8, "feet"),
  11986. weight: math.unit(356, "lb"),
  11987. name: "Side (NSFW)",
  11988. image: {
  11989. source: "./media/characters/adam-silver-mane/side-nsfw.svg",
  11990. extra: 997/901,
  11991. bottom: 59/1056
  11992. }
  11993. },
  11994. dick: {
  11995. height: math.unit(2.1, "feet"),
  11996. name: "Dick",
  11997. image: {
  11998. source: "./media/characters/adam-silver-mane/dick.svg"
  11999. }
  12000. },
  12001. taur: {
  12002. height: math.unit(16, "feet"),
  12003. weight: math.unit(1500, "kg"),
  12004. name: "Taur",
  12005. image: {
  12006. source: "./media/characters/adam-silver-mane/taur.svg",
  12007. extra: 1713 / 1571,
  12008. bottom: 0.01
  12009. }
  12010. },
  12011. },
  12012. [
  12013. {
  12014. name: "Normal",
  12015. height: math.unit(8, "feet")
  12016. },
  12017. {
  12018. name: "Minimacro",
  12019. height: math.unit(80, "feet")
  12020. },
  12021. {
  12022. name: "MDA",
  12023. height: math.unit(80, "meters")
  12024. },
  12025. {
  12026. name: "Macro",
  12027. height: math.unit(800, "feet"),
  12028. default: true
  12029. },
  12030. {
  12031. name: "Megamacro",
  12032. height: math.unit(8000, "feet")
  12033. },
  12034. {
  12035. name: "Gigamacro",
  12036. height: math.unit(800, "miles")
  12037. },
  12038. {
  12039. name: "Teramacro",
  12040. height: math.unit(80000, "miles")
  12041. },
  12042. {
  12043. name: "Celestial",
  12044. height: math.unit(8e6, "miles")
  12045. },
  12046. {
  12047. name: "Star Dragon",
  12048. height: math.unit(800000, "parsecs")
  12049. },
  12050. {
  12051. name: "Godly",
  12052. height: math.unit(800, "teraparsecs")
  12053. },
  12054. ]
  12055. ))
  12056. characterMakers.push(() => makeCharacter(
  12057. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  12058. {
  12059. front: {
  12060. height: math.unit(6, "feet"),
  12061. weight: math.unit(150, "lb"),
  12062. name: "Front",
  12063. image: {
  12064. source: "./media/characters/ky'owin/front.svg",
  12065. extra: 3862/3053,
  12066. bottom: 74/3936
  12067. }
  12068. },
  12069. },
  12070. [
  12071. {
  12072. name: "Normal",
  12073. height: math.unit(6 + 8 / 12, "feet")
  12074. },
  12075. {
  12076. name: "Large",
  12077. height: math.unit(68, "feet")
  12078. },
  12079. {
  12080. name: "Macro",
  12081. height: math.unit(132, "feet")
  12082. },
  12083. {
  12084. name: "Macro+",
  12085. height: math.unit(340, "feet")
  12086. },
  12087. {
  12088. name: "Macro++",
  12089. height: math.unit(680, "feet"),
  12090. default: true
  12091. },
  12092. {
  12093. name: "Megamacro",
  12094. height: math.unit(1, "mile")
  12095. },
  12096. {
  12097. name: "Megamacro+",
  12098. height: math.unit(10, "miles")
  12099. },
  12100. ]
  12101. ))
  12102. characterMakers.push(() => makeCharacter(
  12103. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  12104. {
  12105. front: {
  12106. height: math.unit(4, "feet"),
  12107. weight: math.unit(50, "lb"),
  12108. name: "Front",
  12109. image: {
  12110. source: "./media/characters/mal/front.svg",
  12111. extra: 785 / 724,
  12112. bottom: 0.07
  12113. }
  12114. },
  12115. },
  12116. [
  12117. {
  12118. name: "Micro",
  12119. height: math.unit(4, "inches")
  12120. },
  12121. {
  12122. name: "Normal",
  12123. height: math.unit(4, "feet"),
  12124. default: true
  12125. },
  12126. {
  12127. name: "Macro",
  12128. height: math.unit(200, "feet")
  12129. },
  12130. ]
  12131. ))
  12132. characterMakers.push(() => makeCharacter(
  12133. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  12134. {
  12135. front: {
  12136. height: math.unit(6, "feet"),
  12137. weight: math.unit(150, "lb"),
  12138. name: "Front",
  12139. image: {
  12140. source: "./media/characters/jordan-deware/front.svg",
  12141. extra: 1191 / 1012
  12142. }
  12143. },
  12144. },
  12145. [
  12146. {
  12147. name: "Nano",
  12148. height: math.unit(0.01, "mm")
  12149. },
  12150. {
  12151. name: "Minimicro",
  12152. height: math.unit(1, "mm")
  12153. },
  12154. {
  12155. name: "Micro",
  12156. height: math.unit(0.5, "inches")
  12157. },
  12158. {
  12159. name: "Normal",
  12160. height: math.unit(4, "feet"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Minimacro",
  12165. height: math.unit(40, "meters")
  12166. },
  12167. {
  12168. name: "Small Macro",
  12169. height: math.unit(400, "meters")
  12170. },
  12171. {
  12172. name: "Macro",
  12173. height: math.unit(4, "miles")
  12174. },
  12175. {
  12176. name: "Megamacro",
  12177. height: math.unit(40, "miles")
  12178. },
  12179. {
  12180. name: "Megamacro+",
  12181. height: math.unit(400, "miles")
  12182. },
  12183. {
  12184. name: "Gigamacro",
  12185. height: math.unit(400000, "miles")
  12186. },
  12187. ]
  12188. ))
  12189. characterMakers.push(() => makeCharacter(
  12190. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  12191. {
  12192. side: {
  12193. height: math.unit(6, "feet"),
  12194. weight: math.unit(150, "lb"),
  12195. name: "Side",
  12196. image: {
  12197. source: "./media/characters/kimiko/side.svg",
  12198. extra: 600 / 358
  12199. }
  12200. },
  12201. },
  12202. [
  12203. {
  12204. name: "Normal",
  12205. height: math.unit(15, "feet"),
  12206. default: true
  12207. },
  12208. {
  12209. name: "Macro",
  12210. height: math.unit(220, "feet")
  12211. },
  12212. {
  12213. name: "Macro+",
  12214. height: math.unit(1450, "feet")
  12215. },
  12216. {
  12217. name: "Megamacro",
  12218. height: math.unit(11500, "feet")
  12219. },
  12220. {
  12221. name: "Gigamacro",
  12222. height: math.unit(9500, "miles")
  12223. },
  12224. {
  12225. name: "Teramacro",
  12226. height: math.unit(2208005005, "miles")
  12227. },
  12228. {
  12229. name: "Examacro",
  12230. height: math.unit(2750, "parsecs")
  12231. },
  12232. {
  12233. name: "Zettamacro",
  12234. height: math.unit(101500, "parsecs")
  12235. },
  12236. ]
  12237. ))
  12238. characterMakers.push(() => makeCharacter(
  12239. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  12240. {
  12241. front: {
  12242. height: math.unit(6, "feet"),
  12243. weight: math.unit(70, "kg"),
  12244. name: "Front",
  12245. image: {
  12246. source: "./media/characters/andrew-sleepy/front.svg"
  12247. }
  12248. },
  12249. side: {
  12250. height: math.unit(6, "feet"),
  12251. weight: math.unit(70, "kg"),
  12252. name: "Side",
  12253. image: {
  12254. source: "./media/characters/andrew-sleepy/side.svg"
  12255. }
  12256. },
  12257. },
  12258. [
  12259. {
  12260. name: "Micro",
  12261. height: math.unit(1, "mm"),
  12262. default: true
  12263. },
  12264. ]
  12265. ))
  12266. characterMakers.push(() => makeCharacter(
  12267. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  12268. {
  12269. front: {
  12270. height: math.unit(6, "feet"),
  12271. weight: math.unit(150, "lb"),
  12272. name: "Front",
  12273. image: {
  12274. source: "./media/characters/judio/front.svg",
  12275. extra: 1258 / 1110
  12276. }
  12277. },
  12278. },
  12279. [
  12280. {
  12281. name: "Normal",
  12282. height: math.unit(5 + 6 / 12, "feet")
  12283. },
  12284. {
  12285. name: "Macro",
  12286. height: math.unit(1000, "feet"),
  12287. default: true
  12288. },
  12289. {
  12290. name: "Megamacro",
  12291. height: math.unit(10, "miles")
  12292. },
  12293. ]
  12294. ))
  12295. characterMakers.push(() => makeCharacter(
  12296. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  12297. {
  12298. frontDressed: {
  12299. height: math.unit(6, "feet"),
  12300. weight: math.unit(68, "kg"),
  12301. name: "Front (Dressed)",
  12302. image: {
  12303. source: "./media/characters/nomaxice/front-dressed.svg",
  12304. extra: 1137/824,
  12305. bottom: 74/1211
  12306. }
  12307. },
  12308. frontShorts: {
  12309. height: math.unit(6, "feet"),
  12310. weight: math.unit(68, "kg"),
  12311. name: "Front (Shorts)",
  12312. image: {
  12313. source: "./media/characters/nomaxice/front-shorts.svg",
  12314. extra: 1137/824,
  12315. bottom: 74/1211
  12316. }
  12317. },
  12318. back: {
  12319. height: math.unit(6, "feet"),
  12320. weight: math.unit(68, "kg"),
  12321. name: "Back",
  12322. image: {
  12323. source: "./media/characters/nomaxice/back.svg",
  12324. extra: 822/786,
  12325. bottom: 39/861
  12326. }
  12327. },
  12328. hand: {
  12329. height: math.unit(0.565, "feet"),
  12330. name: "Hand",
  12331. image: {
  12332. source: "./media/characters/nomaxice/hand.svg"
  12333. }
  12334. },
  12335. foot: {
  12336. height: math.unit(1, "feet"),
  12337. name: "Foot",
  12338. image: {
  12339. source: "./media/characters/nomaxice/foot.svg"
  12340. }
  12341. },
  12342. },
  12343. [
  12344. {
  12345. name: "Micro",
  12346. height: math.unit(8, "cm")
  12347. },
  12348. {
  12349. name: "Norm",
  12350. height: math.unit(1.82, "m")
  12351. },
  12352. {
  12353. name: "Norm+",
  12354. height: math.unit(8.8, "feet"),
  12355. default: true
  12356. },
  12357. {
  12358. name: "Big",
  12359. height: math.unit(8, "meters")
  12360. },
  12361. {
  12362. name: "Macro",
  12363. height: math.unit(18, "meters")
  12364. },
  12365. {
  12366. name: "Macro+",
  12367. height: math.unit(88, "meters")
  12368. },
  12369. ]
  12370. ))
  12371. characterMakers.push(() => makeCharacter(
  12372. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  12373. {
  12374. front: {
  12375. height: math.unit(12, "feet"),
  12376. weight: math.unit(1.5, "tons"),
  12377. name: "Front",
  12378. image: {
  12379. source: "./media/characters/dydros/front.svg",
  12380. extra: 863 / 800,
  12381. bottom: 0.015
  12382. }
  12383. },
  12384. back: {
  12385. height: math.unit(12, "feet"),
  12386. weight: math.unit(1.5, "tons"),
  12387. name: "Back",
  12388. image: {
  12389. source: "./media/characters/dydros/back.svg",
  12390. extra: 900 / 843,
  12391. bottom: 0.005
  12392. }
  12393. },
  12394. },
  12395. [
  12396. {
  12397. name: "Normal",
  12398. height: math.unit(12, "feet"),
  12399. default: true
  12400. },
  12401. ]
  12402. ))
  12403. characterMakers.push(() => makeCharacter(
  12404. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  12405. {
  12406. front: {
  12407. height: math.unit(6, "feet"),
  12408. weight: math.unit(100, "kg"),
  12409. name: "Front",
  12410. image: {
  12411. source: "./media/characters/riggi/front.svg",
  12412. extra: 5787 / 5303
  12413. }
  12414. },
  12415. hyper: {
  12416. height: math.unit(6 * 5 / 3, "feet"),
  12417. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  12418. name: "Hyper",
  12419. image: {
  12420. source: "./media/characters/riggi/hyper.svg",
  12421. extra: 3595 / 3485
  12422. }
  12423. },
  12424. },
  12425. [
  12426. {
  12427. name: "Small Macro",
  12428. height: math.unit(50, "feet")
  12429. },
  12430. {
  12431. name: "Default",
  12432. height: math.unit(200, "feet"),
  12433. default: true
  12434. },
  12435. {
  12436. name: "Loom",
  12437. height: math.unit(10000, "feet")
  12438. },
  12439. {
  12440. name: "Cruising Altitude",
  12441. height: math.unit(30000, "feet")
  12442. },
  12443. {
  12444. name: "Megamacro",
  12445. height: math.unit(100, "miles")
  12446. },
  12447. {
  12448. name: "Continent Sized",
  12449. height: math.unit(2800, "miles")
  12450. },
  12451. {
  12452. name: "Earth Sized",
  12453. height: math.unit(8000, "miles")
  12454. },
  12455. ]
  12456. ))
  12457. characterMakers.push(() => makeCharacter(
  12458. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  12459. {
  12460. front: {
  12461. height: math.unit(6, "feet"),
  12462. weight: math.unit(250, "lb"),
  12463. name: "Front",
  12464. image: {
  12465. source: "./media/characters/alexi/front.svg",
  12466. extra: 3483 / 3291,
  12467. bottom: 0.04
  12468. }
  12469. },
  12470. back: {
  12471. height: math.unit(6, "feet"),
  12472. weight: math.unit(250, "lb"),
  12473. name: "Back",
  12474. image: {
  12475. source: "./media/characters/alexi/back.svg",
  12476. extra: 3533 / 3356,
  12477. bottom: 0.021
  12478. }
  12479. },
  12480. frontTransforming: {
  12481. height: math.unit(8.58, "feet"),
  12482. weight: math.unit(1300, "lb"),
  12483. name: "Transforming",
  12484. image: {
  12485. source: "./media/characters/alexi/front-transforming.svg",
  12486. extra: 437 / 409,
  12487. bottom: 19 / 458.66
  12488. }
  12489. },
  12490. frontTransformed: {
  12491. height: math.unit(12.5, "feet"),
  12492. weight: math.unit(4000, "lb"),
  12493. name: "Transformed",
  12494. image: {
  12495. source: "./media/characters/alexi/front-transformed.svg",
  12496. extra: 639 / 614,
  12497. bottom: 30.55 / 671
  12498. }
  12499. },
  12500. },
  12501. [
  12502. {
  12503. name: "Normal",
  12504. height: math.unit(14, "feet"),
  12505. default: true
  12506. },
  12507. {
  12508. name: "Minimacro",
  12509. height: math.unit(30, "meters")
  12510. },
  12511. {
  12512. name: "Macro",
  12513. height: math.unit(500, "meters")
  12514. },
  12515. {
  12516. name: "Megamacro",
  12517. height: math.unit(9000, "km")
  12518. },
  12519. {
  12520. name: "Teramacro",
  12521. height: math.unit(384000, "km")
  12522. },
  12523. ]
  12524. ))
  12525. characterMakers.push(() => makeCharacter(
  12526. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  12527. {
  12528. front: {
  12529. height: math.unit(6, "feet"),
  12530. weight: math.unit(150, "lb"),
  12531. name: "Front",
  12532. image: {
  12533. source: "./media/characters/kayroo/front.svg",
  12534. extra: 1153 / 1038,
  12535. bottom: 0.06
  12536. }
  12537. },
  12538. foot: {
  12539. height: math.unit(6, "feet"),
  12540. weight: math.unit(150, "lb"),
  12541. name: "Foot",
  12542. image: {
  12543. source: "./media/characters/kayroo/foot.svg"
  12544. }
  12545. },
  12546. },
  12547. [
  12548. {
  12549. name: "Normal",
  12550. height: math.unit(8, "feet"),
  12551. default: true
  12552. },
  12553. {
  12554. name: "Minimacro",
  12555. height: math.unit(250, "feet")
  12556. },
  12557. {
  12558. name: "Macro",
  12559. height: math.unit(2800, "feet")
  12560. },
  12561. {
  12562. name: "Megamacro",
  12563. height: math.unit(5200, "feet")
  12564. },
  12565. {
  12566. name: "Gigamacro",
  12567. height: math.unit(27000, "feet")
  12568. },
  12569. {
  12570. name: "Omega",
  12571. height: math.unit(45000, "feet")
  12572. },
  12573. ]
  12574. ))
  12575. characterMakers.push(() => makeCharacter(
  12576. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  12577. {
  12578. front: {
  12579. height: math.unit(18, "feet"),
  12580. weight: math.unit(5800, "lb"),
  12581. name: "Front",
  12582. image: {
  12583. source: "./media/characters/rhys/front.svg",
  12584. extra: 3386 / 3090,
  12585. bottom: 0.07
  12586. }
  12587. },
  12588. },
  12589. [
  12590. {
  12591. name: "Normal",
  12592. height: math.unit(18, "feet"),
  12593. default: true
  12594. },
  12595. {
  12596. name: "Working Size",
  12597. height: math.unit(200, "feet")
  12598. },
  12599. {
  12600. name: "Demolition Size",
  12601. height: math.unit(2000, "feet")
  12602. },
  12603. {
  12604. name: "Maximum Licensed Size",
  12605. height: math.unit(5, "miles")
  12606. },
  12607. {
  12608. name: "Maximum Observed Size",
  12609. height: math.unit(10, "yottameters")
  12610. },
  12611. ]
  12612. ))
  12613. characterMakers.push(() => makeCharacter(
  12614. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  12615. {
  12616. front: {
  12617. height: math.unit(6, "feet"),
  12618. weight: math.unit(250, "lb"),
  12619. name: "Front",
  12620. image: {
  12621. source: "./media/characters/toto/front.svg",
  12622. extra: 527 / 479,
  12623. bottom: 0.05
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Micro",
  12630. height: math.unit(3, "feet")
  12631. },
  12632. {
  12633. name: "Normal",
  12634. height: math.unit(10, "feet")
  12635. },
  12636. {
  12637. name: "Macro",
  12638. height: math.unit(150, "feet"),
  12639. default: true
  12640. },
  12641. {
  12642. name: "Megamacro",
  12643. height: math.unit(1200, "feet")
  12644. },
  12645. ]
  12646. ))
  12647. characterMakers.push(() => makeCharacter(
  12648. { name: "King", species: ["lion"], tags: ["anthro"] },
  12649. {
  12650. back: {
  12651. height: math.unit(6, "feet"),
  12652. weight: math.unit(150, "lb"),
  12653. name: "Back",
  12654. image: {
  12655. source: "./media/characters/king/back.svg"
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Micro",
  12662. height: math.unit(2, "inches")
  12663. },
  12664. {
  12665. name: "Normal",
  12666. height: math.unit(8, "feet")
  12667. },
  12668. {
  12669. name: "Macro",
  12670. height: math.unit(200, "feet"),
  12671. default: true
  12672. },
  12673. {
  12674. name: "Megamacro",
  12675. height: math.unit(50, "miles")
  12676. },
  12677. ]
  12678. ))
  12679. characterMakers.push(() => makeCharacter(
  12680. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  12681. {
  12682. front: {
  12683. height: math.unit(11, "feet"),
  12684. weight: math.unit(1400, "lb"),
  12685. name: "Front",
  12686. image: {
  12687. source: "./media/characters/cordite/front.svg",
  12688. extra: 1919/1827,
  12689. bottom: 40/1959
  12690. }
  12691. },
  12692. side: {
  12693. height: math.unit(11, "feet"),
  12694. weight: math.unit(1400, "lb"),
  12695. name: "Side",
  12696. image: {
  12697. source: "./media/characters/cordite/side.svg",
  12698. extra: 1908/1793,
  12699. bottom: 38/1946
  12700. }
  12701. },
  12702. back: {
  12703. height: math.unit(11, "feet"),
  12704. weight: math.unit(1400, "lb"),
  12705. name: "Back",
  12706. image: {
  12707. source: "./media/characters/cordite/back.svg",
  12708. extra: 1938/1837,
  12709. bottom: 10/1948
  12710. }
  12711. },
  12712. feral: {
  12713. height: math.unit(2, "feet"),
  12714. weight: math.unit(90, "lb"),
  12715. name: "Feral",
  12716. image: {
  12717. source: "./media/characters/cordite/feral.svg",
  12718. extra: 1260 / 755,
  12719. bottom: 0.05
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Normal",
  12726. height: math.unit(11, "feet"),
  12727. default: true
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(150, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/pianostrong/front.svg",
  12740. extra: 6577 / 6254,
  12741. bottom: 0.02
  12742. }
  12743. },
  12744. side: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Side",
  12748. image: {
  12749. source: "./media/characters/pianostrong/side.svg",
  12750. extra: 6106 / 5730
  12751. }
  12752. },
  12753. back: {
  12754. height: math.unit(6, "feet"),
  12755. weight: math.unit(150, "lb"),
  12756. name: "Back",
  12757. image: {
  12758. source: "./media/characters/pianostrong/back.svg",
  12759. extra: 6085 / 5733,
  12760. bottom: 0.01
  12761. }
  12762. },
  12763. },
  12764. [
  12765. {
  12766. name: "Macro",
  12767. height: math.unit(100, "feet")
  12768. },
  12769. {
  12770. name: "Macro+",
  12771. height: math.unit(300, "feet"),
  12772. default: true
  12773. },
  12774. {
  12775. name: "Macro++",
  12776. height: math.unit(1000, "feet")
  12777. },
  12778. ]
  12779. ))
  12780. characterMakers.push(() => makeCharacter(
  12781. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  12782. {
  12783. front: {
  12784. height: math.unit(6, "feet"),
  12785. weight: math.unit(150, "lb"),
  12786. name: "Front",
  12787. image: {
  12788. source: "./media/characters/kona/front.svg",
  12789. extra: 2960 / 2629,
  12790. bottom: 0.005
  12791. }
  12792. },
  12793. },
  12794. [
  12795. {
  12796. name: "Normal",
  12797. height: math.unit(11 + 8 / 12, "feet")
  12798. },
  12799. {
  12800. name: "Macro",
  12801. height: math.unit(850, "feet"),
  12802. default: true
  12803. },
  12804. {
  12805. name: "Macro+",
  12806. height: math.unit(1.5, "km"),
  12807. default: true
  12808. },
  12809. {
  12810. name: "Megamacro",
  12811. height: math.unit(80, "miles")
  12812. },
  12813. {
  12814. name: "Gigamacro",
  12815. height: math.unit(3500, "miles")
  12816. },
  12817. ]
  12818. ))
  12819. characterMakers.push(() => makeCharacter(
  12820. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  12821. {
  12822. side: {
  12823. height: math.unit(1.9, "meters"),
  12824. weight: math.unit(326, "kg"),
  12825. name: "Side",
  12826. image: {
  12827. source: "./media/characters/levi/side.svg",
  12828. extra: 1704 / 1334,
  12829. bottom: 0.02
  12830. }
  12831. },
  12832. },
  12833. [
  12834. {
  12835. name: "Normal",
  12836. height: math.unit(1.9, "meters"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Macro",
  12841. height: math.unit(20, "meters")
  12842. },
  12843. {
  12844. name: "Macro+",
  12845. height: math.unit(200, "meters")
  12846. },
  12847. {
  12848. name: "Megamacro",
  12849. height: math.unit(2, "km")
  12850. },
  12851. {
  12852. name: "Megamacro+",
  12853. height: math.unit(20, "km")
  12854. },
  12855. {
  12856. name: "Gigamacro",
  12857. height: math.unit(2500, "km")
  12858. },
  12859. {
  12860. name: "Gigamacro+",
  12861. height: math.unit(120000, "km")
  12862. },
  12863. {
  12864. name: "Teramacro",
  12865. height: math.unit(7.77e6, "km")
  12866. },
  12867. ]
  12868. ))
  12869. characterMakers.push(() => makeCharacter(
  12870. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  12871. {
  12872. front: {
  12873. height: math.unit(6 + 4/12, "feet"),
  12874. weight: math.unit(190, "lb"),
  12875. name: "Front",
  12876. image: {
  12877. source: "./media/characters/bmc/front.svg",
  12878. extra: 1626/1472,
  12879. bottom: 79/1705
  12880. }
  12881. },
  12882. back: {
  12883. height: math.unit(6 + 4/12, "feet"),
  12884. weight: math.unit(190, "lb"),
  12885. name: "Back",
  12886. image: {
  12887. source: "./media/characters/bmc/back.svg",
  12888. extra: 1640/1479,
  12889. bottom: 45/1685
  12890. }
  12891. },
  12892. frontArmor: {
  12893. height: math.unit(6 + 4/12, "feet"),
  12894. weight: math.unit(190, "lb"),
  12895. name: "Front-armor",
  12896. image: {
  12897. source: "./media/characters/bmc/front-armor.svg",
  12898. extra: 1538/1468,
  12899. bottom: 79/1617
  12900. }
  12901. },
  12902. },
  12903. [
  12904. {
  12905. name: "Human-sized",
  12906. height: math.unit(6 + 4 / 12, "feet")
  12907. },
  12908. {
  12909. name: "Interactive Size",
  12910. height: math.unit(25, "feet")
  12911. },
  12912. {
  12913. name: "Small",
  12914. height: math.unit(250, "feet")
  12915. },
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(1250, "feet"),
  12919. default: true
  12920. },
  12921. {
  12922. name: "Good Day",
  12923. height: math.unit(88, "miles")
  12924. },
  12925. {
  12926. name: "Largest Measured Size",
  12927. height: math.unit(105.960, "galaxies")
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  12933. {
  12934. front: {
  12935. height: math.unit(20, "feet"),
  12936. weight: math.unit(2016, "kg"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/sven-the-kaiju/front.svg",
  12940. extra: 1277/1250,
  12941. bottom: 35/1312
  12942. }
  12943. },
  12944. mouth: {
  12945. height: math.unit(1.85, "feet"),
  12946. name: "Mouth",
  12947. image: {
  12948. source: "./media/characters/sven-the-kaiju/mouth.svg"
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Fairy",
  12955. height: math.unit(6, "inches")
  12956. },
  12957. {
  12958. name: "Normal",
  12959. height: math.unit(20, "feet"),
  12960. default: true
  12961. },
  12962. {
  12963. name: "Rampage",
  12964. height: math.unit(200, "feet")
  12965. },
  12966. {
  12967. name: "Archfey Forest Guardian",
  12968. height: math.unit(1, "mile")
  12969. },
  12970. ]
  12971. ))
  12972. characterMakers.push(() => makeCharacter(
  12973. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  12974. {
  12975. front: {
  12976. height: math.unit(4, "meters"),
  12977. weight: math.unit(2, "tons"),
  12978. name: "Front",
  12979. image: {
  12980. source: "./media/characters/marik/front.svg",
  12981. extra: 1057 / 1003,
  12982. bottom: 0.08
  12983. }
  12984. },
  12985. },
  12986. [
  12987. {
  12988. name: "Normal",
  12989. height: math.unit(4, "meters"),
  12990. default: true
  12991. },
  12992. {
  12993. name: "Macro",
  12994. height: math.unit(20, "meters")
  12995. },
  12996. {
  12997. name: "Megamacro",
  12998. height: math.unit(50, "km")
  12999. },
  13000. {
  13001. name: "Gigamacro",
  13002. height: math.unit(100, "km")
  13003. },
  13004. {
  13005. name: "Alpha Macro",
  13006. height: math.unit(7.88e7, "yottameters")
  13007. },
  13008. ]
  13009. ))
  13010. characterMakers.push(() => makeCharacter(
  13011. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  13012. {
  13013. front: {
  13014. height: math.unit(6, "feet"),
  13015. weight: math.unit(110, "lb"),
  13016. name: "Front",
  13017. image: {
  13018. source: "./media/characters/mel/front.svg",
  13019. extra: 736 / 617,
  13020. bottom: 0.017
  13021. }
  13022. },
  13023. },
  13024. [
  13025. {
  13026. name: "Pico",
  13027. height: math.unit(3, "pm")
  13028. },
  13029. {
  13030. name: "Nano",
  13031. height: math.unit(3, "nm")
  13032. },
  13033. {
  13034. name: "Micro",
  13035. height: math.unit(0.3, "mm"),
  13036. default: true
  13037. },
  13038. {
  13039. name: "Micro+",
  13040. height: math.unit(3, "mm")
  13041. },
  13042. {
  13043. name: "Normal",
  13044. height: math.unit(5 + 10.5 / 12, "feet")
  13045. },
  13046. ]
  13047. ))
  13048. characterMakers.push(() => makeCharacter(
  13049. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  13050. {
  13051. kaiju: {
  13052. height: math.unit(1.75, "meters"),
  13053. weight: math.unit(55, "kg"),
  13054. name: "Kaiju",
  13055. image: {
  13056. source: "./media/characters/lykonous/kaiju.svg",
  13057. extra: 1055 / 946,
  13058. bottom: 0.135
  13059. }
  13060. },
  13061. },
  13062. [
  13063. {
  13064. name: "Normal",
  13065. height: math.unit(2.5, "meters"),
  13066. default: true
  13067. },
  13068. {
  13069. name: "Kaiju Dragon",
  13070. height: math.unit(60, "meters")
  13071. },
  13072. {
  13073. name: "Mega Kaiju",
  13074. height: math.unit(120, "km")
  13075. },
  13076. {
  13077. name: "Giga Kaiju",
  13078. height: math.unit(200, "megameters")
  13079. },
  13080. {
  13081. name: "Terra Kaiju",
  13082. height: math.unit(400, "gigameters")
  13083. },
  13084. {
  13085. name: "Kaiju Dragon God",
  13086. height: math.unit(13000, "exaparsecs")
  13087. },
  13088. ]
  13089. ))
  13090. characterMakers.push(() => makeCharacter(
  13091. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  13092. {
  13093. front: {
  13094. height: math.unit(6, "feet"),
  13095. weight: math.unit(150, "lb"),
  13096. name: "Front",
  13097. image: {
  13098. source: "./media/characters/blü/front.svg",
  13099. extra: 1883 / 1564,
  13100. bottom: 0.031
  13101. }
  13102. },
  13103. },
  13104. [
  13105. {
  13106. name: "Normal",
  13107. height: math.unit(13, "feet"),
  13108. default: true
  13109. },
  13110. {
  13111. name: "Big Boi",
  13112. height: math.unit(150, "meters")
  13113. },
  13114. {
  13115. name: "Mini Stomper",
  13116. height: math.unit(300, "meters")
  13117. },
  13118. {
  13119. name: "Macro",
  13120. height: math.unit(1000, "meters")
  13121. },
  13122. {
  13123. name: "Megamacro",
  13124. height: math.unit(11000, "meters")
  13125. },
  13126. {
  13127. name: "Gigamacro",
  13128. height: math.unit(11000, "km")
  13129. },
  13130. {
  13131. name: "Teramacro",
  13132. height: math.unit(420000, "km")
  13133. },
  13134. {
  13135. name: "Examacro",
  13136. height: math.unit(120, "parsecs")
  13137. },
  13138. {
  13139. name: "God Tho",
  13140. height: math.unit(98000000000, "parsecs")
  13141. },
  13142. ]
  13143. ))
  13144. characterMakers.push(() => makeCharacter(
  13145. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  13146. {
  13147. taurFront: {
  13148. height: math.unit(6, "feet"),
  13149. weight: math.unit(200, "lb"),
  13150. name: "Taur (Front)",
  13151. image: {
  13152. source: "./media/characters/scales/taur-front.svg",
  13153. extra: 1,
  13154. bottom: 0.05
  13155. }
  13156. },
  13157. taurBack: {
  13158. height: math.unit(6, "feet"),
  13159. weight: math.unit(200, "lb"),
  13160. name: "Taur (Back)",
  13161. image: {
  13162. source: "./media/characters/scales/taur-back.svg",
  13163. extra: 1,
  13164. bottom: 0.08
  13165. }
  13166. },
  13167. anthro: {
  13168. height: math.unit(6 * 7 / 12, "feet"),
  13169. weight: math.unit(100, "lb"),
  13170. name: "Anthro",
  13171. image: {
  13172. source: "./media/characters/scales/anthro.svg",
  13173. extra: 1,
  13174. bottom: 0.06
  13175. }
  13176. },
  13177. },
  13178. [
  13179. {
  13180. name: "Normal",
  13181. height: math.unit(12, "feet"),
  13182. default: true
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  13188. {
  13189. front: {
  13190. height: math.unit(6, "feet"),
  13191. weight: math.unit(150, "lb"),
  13192. name: "Front",
  13193. image: {
  13194. source: "./media/characters/koragos/front.svg",
  13195. extra: 841 / 794,
  13196. bottom: 0.035
  13197. }
  13198. },
  13199. back: {
  13200. height: math.unit(6, "feet"),
  13201. weight: math.unit(150, "lb"),
  13202. name: "Back",
  13203. image: {
  13204. source: "./media/characters/koragos/back.svg",
  13205. extra: 841 / 810,
  13206. bottom: 0.022
  13207. }
  13208. },
  13209. },
  13210. [
  13211. {
  13212. name: "Normal",
  13213. height: math.unit(6 + 11 / 12, "feet"),
  13214. default: true
  13215. },
  13216. {
  13217. name: "Macro",
  13218. height: math.unit(490, "feet")
  13219. },
  13220. {
  13221. name: "Megamacro",
  13222. height: math.unit(10, "miles")
  13223. },
  13224. {
  13225. name: "Gigamacro",
  13226. height: math.unit(50, "miles")
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(6, "feet"),
  13235. weight: math.unit(250, "lb"),
  13236. name: "Front",
  13237. image: {
  13238. source: "./media/characters/xylrem/front.svg",
  13239. extra: 3323 / 3050,
  13240. bottom: 0.065
  13241. }
  13242. },
  13243. },
  13244. [
  13245. {
  13246. name: "Micro",
  13247. height: math.unit(4, "feet")
  13248. },
  13249. {
  13250. name: "Normal",
  13251. height: math.unit(16, "feet"),
  13252. default: true
  13253. },
  13254. {
  13255. name: "Macro",
  13256. height: math.unit(2720, "feet")
  13257. },
  13258. {
  13259. name: "Megamacro",
  13260. height: math.unit(25000, "miles")
  13261. },
  13262. ]
  13263. ))
  13264. characterMakers.push(() => makeCharacter(
  13265. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  13266. {
  13267. front: {
  13268. height: math.unit(8, "feet"),
  13269. weight: math.unit(250, "kg"),
  13270. name: "Front",
  13271. image: {
  13272. source: "./media/characters/ikideru/front.svg",
  13273. extra: 930 / 870,
  13274. bottom: 0.087
  13275. }
  13276. },
  13277. back: {
  13278. height: math.unit(8, "feet"),
  13279. weight: math.unit(250, "kg"),
  13280. name: "Back",
  13281. image: {
  13282. source: "./media/characters/ikideru/back.svg",
  13283. extra: 919 / 852,
  13284. bottom: 0.055
  13285. }
  13286. },
  13287. },
  13288. [
  13289. {
  13290. name: "Rare",
  13291. height: math.unit(8, "feet"),
  13292. default: true
  13293. },
  13294. {
  13295. name: "Playful Loom",
  13296. height: math.unit(80, "feet")
  13297. },
  13298. {
  13299. name: "City Leaner",
  13300. height: math.unit(230, "feet")
  13301. },
  13302. {
  13303. name: "Megamacro",
  13304. height: math.unit(2500, "feet")
  13305. },
  13306. {
  13307. name: "Gigamacro",
  13308. height: math.unit(26400, "feet")
  13309. },
  13310. {
  13311. name: "Tectonic Shifter",
  13312. height: math.unit(1.7, "megameters")
  13313. },
  13314. {
  13315. name: "Planet Carer",
  13316. height: math.unit(21, "megameters")
  13317. },
  13318. {
  13319. name: "God",
  13320. height: math.unit(11157.22, "parsecs")
  13321. },
  13322. ]
  13323. ))
  13324. characterMakers.push(() => makeCharacter(
  13325. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  13326. {
  13327. front: {
  13328. height: math.unit(6, "feet"),
  13329. weight: math.unit(120, "lb"),
  13330. name: "Front",
  13331. image: {
  13332. source: "./media/characters/neo/front.svg"
  13333. }
  13334. },
  13335. },
  13336. [
  13337. {
  13338. name: "Micro",
  13339. height: math.unit(2, "inches"),
  13340. default: true
  13341. },
  13342. {
  13343. name: "Human Size",
  13344. height: math.unit(5 + 8 / 12, "feet")
  13345. },
  13346. ]
  13347. ))
  13348. characterMakers.push(() => makeCharacter(
  13349. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  13350. {
  13351. front: {
  13352. height: math.unit(13 + 10 / 12, "feet"),
  13353. weight: math.unit(5320, "lb"),
  13354. name: "Front",
  13355. image: {
  13356. source: "./media/characters/chauncey-chantz/front.svg",
  13357. extra: 1587 / 1435,
  13358. bottom: 0.02
  13359. }
  13360. },
  13361. },
  13362. [
  13363. {
  13364. name: "Normal",
  13365. height: math.unit(13 + 10 / 12, "feet"),
  13366. default: true
  13367. },
  13368. {
  13369. name: "Macro",
  13370. height: math.unit(45, "feet")
  13371. },
  13372. {
  13373. name: "Megamacro",
  13374. height: math.unit(250, "miles")
  13375. },
  13376. {
  13377. name: "Planetary",
  13378. height: math.unit(10000, "miles")
  13379. },
  13380. {
  13381. name: "Galactic",
  13382. height: math.unit(40000, "parsecs")
  13383. },
  13384. {
  13385. name: "Universal",
  13386. height: math.unit(1, "yottameter")
  13387. },
  13388. ]
  13389. ))
  13390. characterMakers.push(() => makeCharacter(
  13391. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  13392. {
  13393. front: {
  13394. height: math.unit(6, "feet"),
  13395. weight: math.unit(150, "lb"),
  13396. name: "Front",
  13397. image: {
  13398. source: "./media/characters/epifox/front.svg",
  13399. extra: 1,
  13400. bottom: 0.075
  13401. }
  13402. },
  13403. },
  13404. [
  13405. {
  13406. name: "Micro",
  13407. height: math.unit(6, "inches")
  13408. },
  13409. {
  13410. name: "Normal",
  13411. height: math.unit(12, "feet"),
  13412. default: true
  13413. },
  13414. {
  13415. name: "Macro",
  13416. height: math.unit(3810, "feet")
  13417. },
  13418. {
  13419. name: "Megamacro",
  13420. height: math.unit(500, "miles")
  13421. },
  13422. ]
  13423. ))
  13424. characterMakers.push(() => makeCharacter(
  13425. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  13426. {
  13427. front: {
  13428. height: math.unit(1.8796, "m"),
  13429. weight: math.unit(230, "lb"),
  13430. name: "Front",
  13431. image: {
  13432. source: "./media/characters/colin-t/front.svg",
  13433. extra: 1272 / 1193,
  13434. bottom: 0.07
  13435. }
  13436. },
  13437. },
  13438. [
  13439. {
  13440. name: "Micro",
  13441. height: math.unit(0.571, "meters")
  13442. },
  13443. {
  13444. name: "Normal",
  13445. height: math.unit(1.8796, "meters"),
  13446. default: true
  13447. },
  13448. {
  13449. name: "Tall",
  13450. height: math.unit(4, "meters")
  13451. },
  13452. {
  13453. name: "Macro",
  13454. height: math.unit(67.241, "meters")
  13455. },
  13456. {
  13457. name: "Megamacro",
  13458. height: math.unit(371.856, "meters")
  13459. },
  13460. {
  13461. name: "Planetary",
  13462. height: math.unit(12631.5689, "km")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(1.85, "meters"),
  13471. weight: math.unit(80, "kg"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/matvei/front.svg",
  13475. extra: 456/447,
  13476. bottom: 8/464
  13477. }
  13478. },
  13479. back: {
  13480. height: math.unit(1.85, "meters"),
  13481. weight: math.unit(80, "kg"),
  13482. name: "Back",
  13483. image: {
  13484. source: "./media/characters/matvei/back.svg",
  13485. extra: 434/427,
  13486. bottom: 11/445
  13487. }
  13488. },
  13489. },
  13490. [
  13491. {
  13492. name: "Normal",
  13493. height: math.unit(1.85, "meters"),
  13494. default: true
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(5 + 9 / 12, "feet"),
  13503. weight: math.unit(70, "lb"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/quincy/front.svg",
  13507. extra: 3041 / 2751
  13508. }
  13509. },
  13510. back: {
  13511. height: math.unit(5 + 9 / 12, "feet"),
  13512. weight: math.unit(70, "lb"),
  13513. name: "Back",
  13514. image: {
  13515. source: "./media/characters/quincy/back.svg",
  13516. extra: 3041 / 2751
  13517. }
  13518. },
  13519. flying: {
  13520. height: math.unit(5 + 4 / 12, "feet"),
  13521. weight: math.unit(70, "lb"),
  13522. name: "Flying",
  13523. image: {
  13524. source: "./media/characters/quincy/flying.svg",
  13525. extra: 1044 / 930
  13526. }
  13527. },
  13528. },
  13529. [
  13530. {
  13531. name: "Micro",
  13532. height: math.unit(3, "cm")
  13533. },
  13534. {
  13535. name: "Normal",
  13536. height: math.unit(5 + 9 / 12, "feet")
  13537. },
  13538. {
  13539. name: "Macro",
  13540. height: math.unit(200, "meters"),
  13541. default: true
  13542. },
  13543. {
  13544. name: "Megamacro",
  13545. height: math.unit(1000, "meters")
  13546. },
  13547. ]
  13548. ))
  13549. characterMakers.push(() => makeCharacter(
  13550. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  13551. {
  13552. front: {
  13553. height: math.unit(3 + 11/12, "feet"),
  13554. weight: math.unit(50, "lb"),
  13555. name: "Front",
  13556. image: {
  13557. source: "./media/characters/vanrel/front.svg",
  13558. extra: 1104/949,
  13559. bottom: 52/1156
  13560. }
  13561. },
  13562. back: {
  13563. height: math.unit(3 + 11/12, "feet"),
  13564. weight: math.unit(50, "lb"),
  13565. name: "Back",
  13566. image: {
  13567. source: "./media/characters/vanrel/back.svg",
  13568. extra: 1119/976,
  13569. bottom: 37/1156
  13570. }
  13571. },
  13572. tome: {
  13573. height: math.unit(1.35, "feet"),
  13574. weight: math.unit(10, "lb"),
  13575. name: "Vanrel's Tome",
  13576. rename: true,
  13577. image: {
  13578. source: "./media/characters/vanrel/tome.svg"
  13579. }
  13580. },
  13581. beans: {
  13582. height: math.unit(0.89, "feet"),
  13583. name: "Beans",
  13584. image: {
  13585. source: "./media/characters/vanrel/beans.svg"
  13586. }
  13587. },
  13588. },
  13589. [
  13590. {
  13591. name: "Normal",
  13592. height: math.unit(3 + 11/12, "feet"),
  13593. default: true
  13594. },
  13595. ]
  13596. ))
  13597. characterMakers.push(() => makeCharacter(
  13598. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  13599. {
  13600. front: {
  13601. height: math.unit(7 + 5 / 12, "feet"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/kuiper-vanrel/front.svg",
  13605. extra: 1219/1169,
  13606. bottom: 69/1288
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(7 + 5 / 12, "feet"),
  13611. name: "Back",
  13612. image: {
  13613. source: "./media/characters/kuiper-vanrel/back.svg",
  13614. extra: 1236/1193,
  13615. bottom: 27/1263
  13616. }
  13617. },
  13618. foot: {
  13619. height: math.unit(0.55, "meters"),
  13620. name: "Foot",
  13621. image: {
  13622. source: "./media/characters/kuiper-vanrel/foot.svg",
  13623. }
  13624. },
  13625. battle: {
  13626. height: math.unit(6.824, "feet"),
  13627. name: "Battle",
  13628. image: {
  13629. source: "./media/characters/kuiper-vanrel/battle.svg",
  13630. extra: 1466 / 1327,
  13631. bottom: 29 / 1492.5
  13632. }
  13633. },
  13634. meerkui: {
  13635. height: math.unit(18, "inches"),
  13636. name: "Meerkui",
  13637. image: {
  13638. source: "./media/characters/kuiper-vanrel/meerkui.svg",
  13639. extra: 1354/1289,
  13640. bottom: 69/1423
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Normal",
  13647. height: math.unit(7 + 5 / 12, "feet"),
  13648. default: true
  13649. },
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(8 + 5 / 12, "feet"),
  13657. name: "Front",
  13658. image: {
  13659. source: "./media/characters/keset-vanrel/front.svg",
  13660. extra: 1231/1148,
  13661. bottom: 82/1313
  13662. }
  13663. },
  13664. back: {
  13665. height: math.unit(8 + 5 / 12, "feet"),
  13666. name: "Back",
  13667. image: {
  13668. source: "./media/characters/keset-vanrel/back.svg",
  13669. extra: 1240/1174,
  13670. bottom: 33/1273
  13671. }
  13672. },
  13673. hand: {
  13674. height: math.unit(0.6, "meters"),
  13675. name: "Hand",
  13676. image: {
  13677. source: "./media/characters/keset-vanrel/hand.svg"
  13678. }
  13679. },
  13680. foot: {
  13681. height: math.unit(0.94978, "meters"),
  13682. name: "Foot",
  13683. image: {
  13684. source: "./media/characters/keset-vanrel/foot.svg"
  13685. }
  13686. },
  13687. battle: {
  13688. height: math.unit(7.408, "feet"),
  13689. name: "Battle",
  13690. image: {
  13691. source: "./media/characters/keset-vanrel/battle.svg",
  13692. extra: 1890 / 1386,
  13693. bottom: 73.28 / 1970
  13694. }
  13695. },
  13696. },
  13697. [
  13698. {
  13699. name: "Normal",
  13700. height: math.unit(8 + 5 / 12, "feet"),
  13701. default: true
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  13707. {
  13708. front: {
  13709. height: math.unit(6, "feet"),
  13710. weight: math.unit(150, "lb"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/neos/front.svg",
  13714. extra: 1696 / 992,
  13715. bottom: 0.14
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Normal",
  13722. height: math.unit(54, "cm"),
  13723. default: true
  13724. },
  13725. {
  13726. name: "Macro",
  13727. height: math.unit(100, "m")
  13728. },
  13729. {
  13730. name: "Megamacro",
  13731. height: math.unit(10, "km")
  13732. },
  13733. {
  13734. name: "Megamacro+",
  13735. height: math.unit(100, "km")
  13736. },
  13737. {
  13738. name: "Gigamacro",
  13739. height: math.unit(100, "Mm")
  13740. },
  13741. {
  13742. name: "Teramacro",
  13743. height: math.unit(100, "Gm")
  13744. },
  13745. {
  13746. name: "Examacro",
  13747. height: math.unit(100, "Em")
  13748. },
  13749. {
  13750. name: "Godly",
  13751. height: math.unit(10000, "Ym")
  13752. },
  13753. {
  13754. name: "Beyond Godly",
  13755. height: math.unit(25, "multiverses")
  13756. },
  13757. ]
  13758. ))
  13759. characterMakers.push(() => makeCharacter(
  13760. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  13761. {
  13762. feminine: {
  13763. height: math.unit(5, "feet"),
  13764. weight: math.unit(100, "lb"),
  13765. name: "Feminine",
  13766. image: {
  13767. source: "./media/characters/sammy-mouse/feminine.svg",
  13768. extra: 2526 / 2425,
  13769. bottom: 0.123
  13770. }
  13771. },
  13772. masculine: {
  13773. height: math.unit(5, "feet"),
  13774. weight: math.unit(100, "lb"),
  13775. name: "Masculine",
  13776. image: {
  13777. source: "./media/characters/sammy-mouse/masculine.svg",
  13778. extra: 2526 / 2425,
  13779. bottom: 0.123
  13780. }
  13781. },
  13782. },
  13783. [
  13784. {
  13785. name: "Micro",
  13786. height: math.unit(5, "inches")
  13787. },
  13788. {
  13789. name: "Normal",
  13790. height: math.unit(5, "feet"),
  13791. default: true
  13792. },
  13793. {
  13794. name: "Macro",
  13795. height: math.unit(60, "feet")
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(4, "feet"),
  13804. weight: math.unit(50, "lb"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/kole/front.svg",
  13808. extra: 1423 / 1303,
  13809. bottom: 0.025
  13810. }
  13811. },
  13812. back: {
  13813. height: math.unit(4, "feet"),
  13814. weight: math.unit(50, "lb"),
  13815. name: "Back",
  13816. image: {
  13817. source: "./media/characters/kole/back.svg",
  13818. extra: 1426 / 1280,
  13819. bottom: 0.02
  13820. }
  13821. },
  13822. },
  13823. [
  13824. {
  13825. name: "Normal",
  13826. height: math.unit(4, "feet"),
  13827. default: true
  13828. },
  13829. ]
  13830. ))
  13831. characterMakers.push(() => makeCharacter(
  13832. { name: "Rufran", species: ["moth", "avian", "kobold"], tags: ["anthro"] },
  13833. {
  13834. front: {
  13835. height: math.unit(2.5, "feet"),
  13836. weight: math.unit(32, "lb"),
  13837. name: "Front",
  13838. image: {
  13839. source: "./media/characters/rufran/front.svg",
  13840. extra: 1313/885,
  13841. bottom: 94/1407
  13842. }
  13843. },
  13844. side: {
  13845. height: math.unit(2.5, "feet"),
  13846. weight: math.unit(32, "lb"),
  13847. name: "Side",
  13848. image: {
  13849. source: "./media/characters/rufran/side.svg",
  13850. extra: 1109/852,
  13851. bottom: 118/1227
  13852. }
  13853. },
  13854. back: {
  13855. height: math.unit(2.5, "feet"),
  13856. weight: math.unit(32, "lb"),
  13857. name: "Back",
  13858. image: {
  13859. source: "./media/characters/rufran/back.svg",
  13860. extra: 1280/878,
  13861. bottom: 131/1411
  13862. }
  13863. },
  13864. mouth: {
  13865. height: math.unit(1.13, "feet"),
  13866. name: "Mouth",
  13867. image: {
  13868. source: "./media/characters/rufran/mouth.svg"
  13869. }
  13870. },
  13871. foot: {
  13872. height: math.unit(1.33, "feet"),
  13873. name: "Foot",
  13874. image: {
  13875. source: "./media/characters/rufran/foot.svg"
  13876. }
  13877. },
  13878. koboldFront: {
  13879. height: math.unit(2 + 6 / 12, "feet"),
  13880. weight: math.unit(20, "lb"),
  13881. name: "Front (Kobold)",
  13882. image: {
  13883. source: "./media/characters/rufran/kobold-front.svg",
  13884. extra: 2041 / 1839,
  13885. bottom: 0.055
  13886. }
  13887. },
  13888. koboldBack: {
  13889. height: math.unit(2 + 6 / 12, "feet"),
  13890. weight: math.unit(20, "lb"),
  13891. name: "Back (Kobold)",
  13892. image: {
  13893. source: "./media/characters/rufran/kobold-back.svg",
  13894. extra: 2054 / 1839,
  13895. bottom: 0.01
  13896. }
  13897. },
  13898. koboldHand: {
  13899. height: math.unit(0.2166, "meters"),
  13900. name: "Hand (Kobold)",
  13901. image: {
  13902. source: "./media/characters/rufran/kobold-hand.svg"
  13903. }
  13904. },
  13905. koboldFoot: {
  13906. height: math.unit(0.185, "meters"),
  13907. name: "Foot (Kobold)",
  13908. image: {
  13909. source: "./media/characters/rufran/kobold-foot.svg"
  13910. }
  13911. },
  13912. },
  13913. [
  13914. {
  13915. name: "Micro",
  13916. height: math.unit(1, "inch")
  13917. },
  13918. {
  13919. name: "Normal",
  13920. height: math.unit(2 + 6 / 12, "feet"),
  13921. default: true
  13922. },
  13923. {
  13924. name: "Big",
  13925. height: math.unit(60, "feet")
  13926. },
  13927. {
  13928. name: "Macro",
  13929. height: math.unit(325, "feet")
  13930. },
  13931. ]
  13932. ))
  13933. characterMakers.push(() => makeCharacter(
  13934. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  13935. {
  13936. front: {
  13937. height: math.unit(0.3, "meters"),
  13938. weight: math.unit(3.5, "kg"),
  13939. name: "Front",
  13940. image: {
  13941. source: "./media/characters/chip/front.svg",
  13942. extra: 748 / 674
  13943. }
  13944. },
  13945. },
  13946. [
  13947. {
  13948. name: "Micro",
  13949. height: math.unit(1, "inch"),
  13950. default: true
  13951. },
  13952. ]
  13953. ))
  13954. characterMakers.push(() => makeCharacter(
  13955. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  13956. {
  13957. side: {
  13958. height: math.unit(2.3, "meters"),
  13959. weight: math.unit(3500, "lb"),
  13960. name: "Side",
  13961. image: {
  13962. source: "./media/characters/torvid/side.svg",
  13963. extra: 1972 / 722,
  13964. bottom: 0.035
  13965. }
  13966. },
  13967. },
  13968. [
  13969. {
  13970. name: "Normal",
  13971. height: math.unit(2.3, "meters"),
  13972. default: true
  13973. },
  13974. ]
  13975. ))
  13976. characterMakers.push(() => makeCharacter(
  13977. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  13978. {
  13979. front: {
  13980. height: math.unit(2, "meters"),
  13981. weight: math.unit(150.5, "kg"),
  13982. name: "Front",
  13983. image: {
  13984. source: "./media/characters/susan/front.svg",
  13985. extra: 693 / 635,
  13986. bottom: 0.05
  13987. }
  13988. },
  13989. },
  13990. [
  13991. {
  13992. name: "Megamacro",
  13993. height: math.unit(505, "miles"),
  13994. default: true
  13995. },
  13996. ]
  13997. ))
  13998. characterMakers.push(() => makeCharacter(
  13999. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  14000. {
  14001. front: {
  14002. height: math.unit(6, "feet"),
  14003. weight: math.unit(150, "lb"),
  14004. name: "Front",
  14005. image: {
  14006. source: "./media/characters/raindrops/front.svg",
  14007. extra: 2655 / 2461,
  14008. bottom: 49 / 2705
  14009. }
  14010. },
  14011. back: {
  14012. height: math.unit(6, "feet"),
  14013. weight: math.unit(150, "lb"),
  14014. name: "Back",
  14015. image: {
  14016. source: "./media/characters/raindrops/back.svg",
  14017. extra: 2574 / 2400,
  14018. bottom: 65 / 2634
  14019. }
  14020. },
  14021. },
  14022. [
  14023. {
  14024. name: "Micro",
  14025. height: math.unit(6, "inches")
  14026. },
  14027. {
  14028. name: "Normal",
  14029. height: math.unit(6 + 2 / 12, "feet")
  14030. },
  14031. {
  14032. name: "Macro",
  14033. height: math.unit(131, "feet"),
  14034. default: true
  14035. },
  14036. {
  14037. name: "Megamacro",
  14038. height: math.unit(15, "miles")
  14039. },
  14040. {
  14041. name: "Gigamacro",
  14042. height: math.unit(4000, "miles")
  14043. },
  14044. {
  14045. name: "Teramacro",
  14046. height: math.unit(315000, "miles")
  14047. },
  14048. ]
  14049. ))
  14050. characterMakers.push(() => makeCharacter(
  14051. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  14052. {
  14053. front: {
  14054. height: math.unit(2.794, "meters"),
  14055. weight: math.unit(325, "kg"),
  14056. name: "Front",
  14057. image: {
  14058. source: "./media/characters/tezwa/front.svg",
  14059. extra: 2083 / 1906,
  14060. bottom: 0.031
  14061. }
  14062. },
  14063. foot: {
  14064. height: math.unit(0.687, "meters"),
  14065. name: "Foot",
  14066. image: {
  14067. source: "./media/characters/tezwa/foot.svg"
  14068. }
  14069. },
  14070. },
  14071. [
  14072. {
  14073. name: "Normal",
  14074. height: math.unit(9 + 2 / 12, "feet"),
  14075. default: true
  14076. },
  14077. ]
  14078. ))
  14079. characterMakers.push(() => makeCharacter(
  14080. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  14081. {
  14082. front: {
  14083. height: math.unit(58, "feet"),
  14084. weight: math.unit(89000, "lb"),
  14085. name: "Front",
  14086. image: {
  14087. source: "./media/characters/typhus/front.svg",
  14088. extra: 816 / 800,
  14089. bottom: 0.065
  14090. }
  14091. },
  14092. },
  14093. [
  14094. {
  14095. name: "Macro",
  14096. height: math.unit(58, "feet"),
  14097. default: true
  14098. },
  14099. ]
  14100. ))
  14101. characterMakers.push(() => makeCharacter(
  14102. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  14103. {
  14104. front: {
  14105. height: math.unit(12, "feet"),
  14106. weight: math.unit(6, "tonnes"),
  14107. name: "Front",
  14108. image: {
  14109. source: "./media/characters/lyra-von-wulf/front.svg",
  14110. extra: 1,
  14111. bottom: 0.10
  14112. }
  14113. },
  14114. frontMecha: {
  14115. height: math.unit(12, "feet"),
  14116. weight: math.unit(12, "tonnes"),
  14117. name: "Front (Mecha)",
  14118. image: {
  14119. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  14120. extra: 1,
  14121. bottom: 0.042
  14122. }
  14123. },
  14124. maw: {
  14125. height: math.unit(2.2, "feet"),
  14126. name: "Maw",
  14127. image: {
  14128. source: "./media/characters/lyra-von-wulf/maw.svg"
  14129. }
  14130. },
  14131. },
  14132. [
  14133. {
  14134. name: "Normal",
  14135. height: math.unit(12, "feet"),
  14136. default: true
  14137. },
  14138. {
  14139. name: "Classic",
  14140. height: math.unit(50, "feet")
  14141. },
  14142. {
  14143. name: "Macro",
  14144. height: math.unit(500, "feet")
  14145. },
  14146. {
  14147. name: "Megamacro",
  14148. height: math.unit(1, "mile")
  14149. },
  14150. {
  14151. name: "Gigamacro",
  14152. height: math.unit(400, "miles")
  14153. },
  14154. {
  14155. name: "Teramacro",
  14156. height: math.unit(22000, "miles")
  14157. },
  14158. {
  14159. name: "Solarmacro",
  14160. height: math.unit(8600000, "miles")
  14161. },
  14162. {
  14163. name: "Galactic",
  14164. height: math.unit(1057000, "lightyears")
  14165. },
  14166. ]
  14167. ))
  14168. characterMakers.push(() => makeCharacter(
  14169. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  14170. {
  14171. front: {
  14172. height: math.unit(6 + 10 / 12, "feet"),
  14173. weight: math.unit(150, "lb"),
  14174. name: "Front",
  14175. image: {
  14176. source: "./media/characters/dixon/front.svg",
  14177. extra: 3361 / 3209,
  14178. bottom: 0.01
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Normal",
  14185. height: math.unit(6 + 10 / 12, "feet"),
  14186. default: true
  14187. },
  14188. {
  14189. name: "Big",
  14190. height: math.unit(12, "meters")
  14191. },
  14192. {
  14193. name: "Macro",
  14194. height: math.unit(500, "meters")
  14195. },
  14196. {
  14197. name: "Megamacro",
  14198. height: math.unit(2, "km")
  14199. },
  14200. ]
  14201. ))
  14202. characterMakers.push(() => makeCharacter(
  14203. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  14204. {
  14205. front: {
  14206. height: math.unit(185, "cm"),
  14207. weight: math.unit(68, "kg"),
  14208. name: "Front",
  14209. image: {
  14210. source: "./media/characters/kauko/front.svg",
  14211. extra: 1455 / 1421,
  14212. bottom: 0.03
  14213. }
  14214. },
  14215. back: {
  14216. height: math.unit(185, "cm"),
  14217. weight: math.unit(68, "kg"),
  14218. name: "Back",
  14219. image: {
  14220. source: "./media/characters/kauko/back.svg",
  14221. extra: 1455 / 1421,
  14222. bottom: 0.004
  14223. }
  14224. },
  14225. },
  14226. [
  14227. {
  14228. name: "Normal",
  14229. height: math.unit(185, "cm"),
  14230. default: true
  14231. },
  14232. ]
  14233. ))
  14234. characterMakers.push(() => makeCharacter(
  14235. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  14236. {
  14237. frontSfw: {
  14238. height: math.unit(5, "meters"),
  14239. weight: math.unit(4250, "lb"),
  14240. name: "Front",
  14241. image: {
  14242. source: "./media/characters/varg/front-sfw.svg",
  14243. extra: 1103/1010,
  14244. bottom: 50/1153
  14245. },
  14246. form: "anthro",
  14247. default: true
  14248. },
  14249. backSfw: {
  14250. height: math.unit(5, "meters"),
  14251. weight: math.unit(4250, "lb"),
  14252. name: "Back",
  14253. image: {
  14254. source: "./media/characters/varg/back-sfw.svg",
  14255. extra: 1038/1022,
  14256. bottom: 36/1074
  14257. },
  14258. form: "anthro"
  14259. },
  14260. frontNsfw: {
  14261. height: math.unit(5, "meters"),
  14262. weight: math.unit(4250, "lb"),
  14263. name: "Front (NSFW)",
  14264. image: {
  14265. source: "./media/characters/varg/front-nsfw.svg",
  14266. extra: 1103/1010,
  14267. bottom: 50/1153
  14268. },
  14269. form: "anthro"
  14270. },
  14271. sheath: {
  14272. height: math.unit(3.8, "feet"),
  14273. weight: math.unit(90, "kilograms"),
  14274. name: "Sheath",
  14275. image: {
  14276. source: "./media/characters/varg/sheath.svg"
  14277. },
  14278. form: "anthro"
  14279. },
  14280. dick: {
  14281. height: math.unit(4.6, "feet"),
  14282. weight: math.unit(451, "kilograms"),
  14283. name: "Dick",
  14284. image: {
  14285. source: "./media/characters/varg/dick.svg"
  14286. },
  14287. form: "anthro"
  14288. },
  14289. feralSfw: {
  14290. height: math.unit(5, "meters"),
  14291. weight: math.unit(100000, "lb"),
  14292. name: "Side",
  14293. image: {
  14294. source: "./media/characters/varg/feral-sfw.svg",
  14295. extra: 1065/511,
  14296. bottom: 211/1276
  14297. },
  14298. form: "feral",
  14299. default: true
  14300. },
  14301. feralNsfw: {
  14302. height: math.unit(5, "meters"),
  14303. weight: math.unit(100000, "lb"),
  14304. name: "Side (NSFW)",
  14305. image: {
  14306. source: "./media/characters/varg/feral-nsfw.svg",
  14307. extra: 1065/511,
  14308. bottom: 211/1276
  14309. },
  14310. form: "feral",
  14311. },
  14312. feralSheath: {
  14313. height: math.unit(9.8, "feet"),
  14314. weight: math.unit(2000, "kilograms"),
  14315. name: "Sheath",
  14316. image: {
  14317. source: "./media/characters/varg/sheath.svg"
  14318. },
  14319. form: "feral"
  14320. },
  14321. feralDick: {
  14322. height: math.unit(13.11, "feet"),
  14323. weight: math.unit(10440, "kilograms"),
  14324. name: "Dick",
  14325. image: {
  14326. source: "./media/characters/varg/dick.svg"
  14327. },
  14328. form: "feral"
  14329. },
  14330. },
  14331. [
  14332. {
  14333. name: "Normal",
  14334. height: math.unit(5, "meters"),
  14335. form: "anthro"
  14336. },
  14337. {
  14338. name: "Macro",
  14339. height: math.unit(200, "meters"),
  14340. form: "anthro"
  14341. },
  14342. {
  14343. name: "Megamacro",
  14344. height: math.unit(20, "kilometers"),
  14345. form: "anthro"
  14346. },
  14347. {
  14348. name: "True Size",
  14349. height: math.unit(211, "km"),
  14350. form: "anthro",
  14351. default: true
  14352. },
  14353. {
  14354. name: "Gigamacro",
  14355. height: math.unit(1000, "km"),
  14356. form: "anthro"
  14357. },
  14358. {
  14359. name: "Gigamacro+",
  14360. height: math.unit(8000, "km"),
  14361. form: "anthro"
  14362. },
  14363. {
  14364. name: "Teramacro",
  14365. height: math.unit(1000000, "km"),
  14366. form: "anthro"
  14367. },
  14368. {
  14369. name: "Normal",
  14370. height: math.unit(5, "meters"),
  14371. form: "feral"
  14372. },
  14373. {
  14374. name: "Macro",
  14375. height: math.unit(200, "meters"),
  14376. form: "feral"
  14377. },
  14378. {
  14379. name: "Megamacro",
  14380. height: math.unit(20, "kilometers"),
  14381. form: "feral"
  14382. },
  14383. {
  14384. name: "True Size",
  14385. height: math.unit(211, "km"),
  14386. form: "feral",
  14387. default: true
  14388. },
  14389. {
  14390. name: "Gigamacro",
  14391. height: math.unit(1000, "km"),
  14392. form: "feral"
  14393. },
  14394. {
  14395. name: "Gigamacro+",
  14396. height: math.unit(8000, "km"),
  14397. form: "feral"
  14398. },
  14399. {
  14400. name: "Teramacro",
  14401. height: math.unit(1000000, "km"),
  14402. form: "feral"
  14403. },
  14404. ],
  14405. {
  14406. "anthro": {
  14407. name: "Anthro",
  14408. default: true
  14409. },
  14410. "feral": {
  14411. name: "Feral",
  14412. },
  14413. }
  14414. ))
  14415. characterMakers.push(() => makeCharacter(
  14416. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  14417. {
  14418. front: {
  14419. height: math.unit(7 + 7 / 12, "feet"),
  14420. weight: math.unit(267, "lb"),
  14421. name: "Front",
  14422. image: {
  14423. source: "./media/characters/dayza/front.svg",
  14424. extra: 1262 / 1200,
  14425. bottom: 0.035
  14426. }
  14427. },
  14428. side: {
  14429. height: math.unit(7 + 7 / 12, "feet"),
  14430. weight: math.unit(267, "lb"),
  14431. name: "Side",
  14432. image: {
  14433. source: "./media/characters/dayza/side.svg",
  14434. extra: 1295 / 1245,
  14435. bottom: 0.05
  14436. }
  14437. },
  14438. back: {
  14439. height: math.unit(7 + 7 / 12, "feet"),
  14440. weight: math.unit(267, "lb"),
  14441. name: "Back",
  14442. image: {
  14443. source: "./media/characters/dayza/back.svg",
  14444. extra: 1241 / 1170
  14445. }
  14446. },
  14447. },
  14448. [
  14449. {
  14450. name: "Normal",
  14451. height: math.unit(7 + 7 / 12, "feet"),
  14452. default: true
  14453. },
  14454. {
  14455. name: "Macro",
  14456. height: math.unit(155, "feet")
  14457. },
  14458. ]
  14459. ))
  14460. characterMakers.push(() => makeCharacter(
  14461. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  14462. {
  14463. front: {
  14464. height: math.unit(6 + 5 / 12, "feet"),
  14465. weight: math.unit(160, "lb"),
  14466. name: "Front",
  14467. image: {
  14468. source: "./media/characters/xanthos/front.svg",
  14469. extra: 1,
  14470. bottom: 0.04
  14471. }
  14472. },
  14473. back: {
  14474. height: math.unit(6 + 5 / 12, "feet"),
  14475. weight: math.unit(160, "lb"),
  14476. name: "Back",
  14477. image: {
  14478. source: "./media/characters/xanthos/back.svg",
  14479. extra: 1,
  14480. bottom: 0.03
  14481. }
  14482. },
  14483. hand: {
  14484. height: math.unit(0.928, "feet"),
  14485. name: "Hand",
  14486. image: {
  14487. source: "./media/characters/xanthos/hand.svg"
  14488. }
  14489. },
  14490. foot: {
  14491. height: math.unit(1.286, "feet"),
  14492. name: "Foot",
  14493. image: {
  14494. source: "./media/characters/xanthos/foot.svg"
  14495. }
  14496. },
  14497. },
  14498. [
  14499. {
  14500. name: "Normal",
  14501. height: math.unit(6 + 5 / 12, "feet"),
  14502. default: true
  14503. },
  14504. {
  14505. name: "Normal+",
  14506. height: math.unit(6, "meters")
  14507. },
  14508. {
  14509. name: "Macro",
  14510. height: math.unit(40, "feet")
  14511. },
  14512. {
  14513. name: "Macro+",
  14514. height: math.unit(200, "meters")
  14515. },
  14516. {
  14517. name: "Megamacro",
  14518. height: math.unit(20, "km")
  14519. },
  14520. {
  14521. name: "Megamacro+",
  14522. height: math.unit(100, "km")
  14523. },
  14524. {
  14525. name: "Gigamacro",
  14526. height: math.unit(200, "megameters")
  14527. },
  14528. {
  14529. name: "Gigamacro+",
  14530. height: math.unit(1.5, "gigameters")
  14531. },
  14532. ]
  14533. ))
  14534. characterMakers.push(() => makeCharacter(
  14535. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  14536. {
  14537. front: {
  14538. height: math.unit(6 + 3 / 12, "feet"),
  14539. weight: math.unit(215, "lb"),
  14540. name: "Front",
  14541. image: {
  14542. source: "./media/characters/grynn/front.svg",
  14543. extra: 4627 / 4209,
  14544. bottom: 0.047
  14545. }
  14546. },
  14547. },
  14548. [
  14549. {
  14550. name: "Micro",
  14551. height: math.unit(6, "inches")
  14552. },
  14553. {
  14554. name: "Normal",
  14555. height: math.unit(6 + 3 / 12, "feet"),
  14556. default: true
  14557. },
  14558. {
  14559. name: "Big",
  14560. height: math.unit(104, "feet")
  14561. },
  14562. {
  14563. name: "Macro",
  14564. height: math.unit(944, "feet")
  14565. },
  14566. {
  14567. name: "Macro+",
  14568. height: math.unit(9480, "feet")
  14569. },
  14570. {
  14571. name: "Megamacro",
  14572. height: math.unit(78752, "feet")
  14573. },
  14574. {
  14575. name: "Megamacro+",
  14576. height: math.unit(630128, "feet")
  14577. },
  14578. {
  14579. name: "Megamacro++",
  14580. height: math.unit(3150695, "feet")
  14581. },
  14582. ]
  14583. ))
  14584. characterMakers.push(() => makeCharacter(
  14585. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  14586. {
  14587. front: {
  14588. height: math.unit(7 + 5 / 12, "feet"),
  14589. weight: math.unit(450, "lb"),
  14590. name: "Front",
  14591. image: {
  14592. source: "./media/characters/mocha-aura/front.svg",
  14593. extra: 1907 / 1817,
  14594. bottom: 0.04
  14595. }
  14596. },
  14597. back: {
  14598. height: math.unit(7 + 5 / 12, "feet"),
  14599. weight: math.unit(450, "lb"),
  14600. name: "Back",
  14601. image: {
  14602. source: "./media/characters/mocha-aura/back.svg",
  14603. extra: 1900 / 1825,
  14604. bottom: 0.045
  14605. }
  14606. },
  14607. },
  14608. [
  14609. {
  14610. name: "Nano",
  14611. height: math.unit(1, "nm")
  14612. },
  14613. {
  14614. name: "Megamicro",
  14615. height: math.unit(1, "mm")
  14616. },
  14617. {
  14618. name: "Micro",
  14619. height: math.unit(3, "inches")
  14620. },
  14621. {
  14622. name: "Normal",
  14623. height: math.unit(7 + 5 / 12, "feet"),
  14624. default: true
  14625. },
  14626. {
  14627. name: "Macro",
  14628. height: math.unit(30, "feet")
  14629. },
  14630. {
  14631. name: "Megamacro",
  14632. height: math.unit(3500, "feet")
  14633. },
  14634. {
  14635. name: "Teramacro",
  14636. height: math.unit(500000, "miles")
  14637. },
  14638. {
  14639. name: "Petamacro",
  14640. height: math.unit(50000000000000000, "parsecs")
  14641. },
  14642. ]
  14643. ))
  14644. characterMakers.push(() => makeCharacter(
  14645. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  14646. {
  14647. front: {
  14648. height: math.unit(6, "feet"),
  14649. weight: math.unit(150, "lb"),
  14650. name: "Front",
  14651. image: {
  14652. source: "./media/characters/ilisha-devya/front.svg",
  14653. extra: 1053/1049,
  14654. bottom: 270/1323
  14655. }
  14656. },
  14657. back: {
  14658. height: math.unit(6, "feet"),
  14659. weight: math.unit(150, "lb"),
  14660. name: "Back",
  14661. image: {
  14662. source: "./media/characters/ilisha-devya/back.svg",
  14663. extra: 1131/1128,
  14664. bottom: 39/1170
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Macro",
  14671. height: math.unit(500, "feet"),
  14672. default: true
  14673. },
  14674. {
  14675. name: "Megamacro",
  14676. height: math.unit(10, "miles")
  14677. },
  14678. {
  14679. name: "Gigamacro",
  14680. height: math.unit(100000, "miles")
  14681. },
  14682. {
  14683. name: "Examacro",
  14684. height: math.unit(1e9, "lightyears")
  14685. },
  14686. {
  14687. name: "Omniversal",
  14688. height: math.unit(1e33, "lightyears")
  14689. },
  14690. {
  14691. name: "Beyond Infinite",
  14692. height: math.unit(1e100, "lightyears")
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  14698. {
  14699. Side: {
  14700. height: math.unit(6, "feet"),
  14701. weight: math.unit(150, "lb"),
  14702. name: "Side",
  14703. image: {
  14704. source: "./media/characters/mira/side.svg",
  14705. extra: 900 / 799,
  14706. bottom: 0.02
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Human Size",
  14713. height: math.unit(6, "feet")
  14714. },
  14715. {
  14716. name: "Macro",
  14717. height: math.unit(100, "feet"),
  14718. default: true
  14719. },
  14720. {
  14721. name: "Megamacro",
  14722. height: math.unit(10, "miles")
  14723. },
  14724. {
  14725. name: "Gigamacro",
  14726. height: math.unit(25000, "miles")
  14727. },
  14728. {
  14729. name: "Teramacro",
  14730. height: math.unit(300, "AU")
  14731. },
  14732. {
  14733. name: "Full Size",
  14734. height: math.unit(4.5e10, "lightyears")
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  14740. {
  14741. front: {
  14742. height: math.unit(6, "feet"),
  14743. weight: math.unit(150, "lb"),
  14744. name: "Front",
  14745. image: {
  14746. source: "./media/characters/holly/front.svg",
  14747. extra: 639 / 606
  14748. }
  14749. },
  14750. back: {
  14751. height: math.unit(6, "feet"),
  14752. weight: math.unit(150, "lb"),
  14753. name: "Back",
  14754. image: {
  14755. source: "./media/characters/holly/back.svg",
  14756. extra: 623 / 598
  14757. }
  14758. },
  14759. frontWorking: {
  14760. height: math.unit(6, "feet"),
  14761. weight: math.unit(150, "lb"),
  14762. name: "Front (Working)",
  14763. image: {
  14764. source: "./media/characters/holly/front-working.svg",
  14765. extra: 607 / 577,
  14766. bottom: 0.048
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(12 + 3 / 12, "feet"),
  14774. default: true
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(6, "feet"),
  14783. weight: math.unit(150, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/porter/front.svg",
  14787. extra: 1,
  14788. bottom: 0.01
  14789. }
  14790. },
  14791. frontRobes: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Front (Robes)",
  14795. image: {
  14796. source: "./media/characters/porter/front-robes.svg",
  14797. extra: 1.01,
  14798. bottom: 0.01
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(11 + 9 / 12, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  14812. {
  14813. legendary: {
  14814. height: math.unit(6, "feet"),
  14815. weight: math.unit(150, "lb"),
  14816. name: "Legendary",
  14817. image: {
  14818. source: "./media/characters/lucy/legendary.svg",
  14819. extra: 1355 / 1100,
  14820. bottom: 0.045
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Legendary",
  14827. height: math.unit(86882 * 2, "miles"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(6, "feet"),
  14837. weight: math.unit(150, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/drusilla/front.svg",
  14841. extra: 678 / 635,
  14842. bottom: 0.03
  14843. }
  14844. },
  14845. back: {
  14846. height: math.unit(6, "feet"),
  14847. weight: math.unit(150, "lb"),
  14848. name: "Back",
  14849. image: {
  14850. source: "./media/characters/drusilla/back.svg",
  14851. extra: 678 / 635,
  14852. bottom: 0.005
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Macro",
  14859. height: math.unit(100, "feet")
  14860. },
  14861. {
  14862. name: "Canon Height",
  14863. height: math.unit(2000, "feet"),
  14864. default: true
  14865. },
  14866. ]
  14867. ))
  14868. characterMakers.push(() => makeCharacter(
  14869. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  14870. {
  14871. front: {
  14872. height: math.unit(6, "feet"),
  14873. weight: math.unit(180, "lb"),
  14874. name: "Front",
  14875. image: {
  14876. source: "./media/characters/renard-thatch/front.svg",
  14877. extra: 2411 / 2275,
  14878. bottom: 0.01
  14879. }
  14880. },
  14881. frontPosing: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(180, "lb"),
  14884. name: "Front (Posing)",
  14885. image: {
  14886. source: "./media/characters/renard-thatch/front-posing.svg",
  14887. extra: 2381 / 2261,
  14888. bottom: 0.01
  14889. }
  14890. },
  14891. back: {
  14892. height: math.unit(6, "feet"),
  14893. weight: math.unit(180, "lb"),
  14894. name: "Back",
  14895. image: {
  14896. source: "./media/characters/renard-thatch/back.svg",
  14897. extra: 2428 / 2288
  14898. }
  14899. },
  14900. },
  14901. [
  14902. {
  14903. name: "Micro",
  14904. height: math.unit(3, "inches")
  14905. },
  14906. {
  14907. name: "Default",
  14908. height: math.unit(6, "feet"),
  14909. default: true
  14910. },
  14911. {
  14912. name: "Macro",
  14913. height: math.unit(75, "feet")
  14914. },
  14915. ]
  14916. ))
  14917. characterMakers.push(() => makeCharacter(
  14918. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  14919. {
  14920. front: {
  14921. height: math.unit(1450, "feet"),
  14922. weight: math.unit(1.21e6, "tons"),
  14923. name: "Front",
  14924. image: {
  14925. source: "./media/characters/sekvra/front.svg",
  14926. extra: 1193/1190,
  14927. bottom: 78/1271
  14928. }
  14929. },
  14930. side: {
  14931. height: math.unit(1450, "feet"),
  14932. weight: math.unit(1.21e6, "tons"),
  14933. name: "Side",
  14934. image: {
  14935. source: "./media/characters/sekvra/side.svg",
  14936. extra: 1193/1190,
  14937. bottom: 52/1245
  14938. }
  14939. },
  14940. back: {
  14941. height: math.unit(1450, "feet"),
  14942. weight: math.unit(1.21e6, "tons"),
  14943. name: "Back",
  14944. image: {
  14945. source: "./media/characters/sekvra/back.svg",
  14946. extra: 1219/1216,
  14947. bottom: 21/1240
  14948. }
  14949. },
  14950. frontClothed: {
  14951. height: math.unit(1450, "feet"),
  14952. weight: math.unit(1.21e6, "tons"),
  14953. name: "Front (Clothed)",
  14954. image: {
  14955. source: "./media/characters/sekvra/front-clothed.svg",
  14956. extra: 1192/1189,
  14957. bottom: 79/1271
  14958. }
  14959. },
  14960. },
  14961. [
  14962. {
  14963. name: "Macro",
  14964. height: math.unit(1450, "feet"),
  14965. default: true
  14966. },
  14967. {
  14968. name: "Megamacro",
  14969. height: math.unit(15000, "feet")
  14970. },
  14971. ]
  14972. ))
  14973. characterMakers.push(() => makeCharacter(
  14974. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  14975. {
  14976. front: {
  14977. height: math.unit(6, "feet"),
  14978. weight: math.unit(150, "lb"),
  14979. name: "Front",
  14980. image: {
  14981. source: "./media/characters/carmine/front.svg",
  14982. extra: 1557/1538,
  14983. bottom: 68/1625
  14984. }
  14985. },
  14986. frontArmor: {
  14987. height: math.unit(6, "feet"),
  14988. weight: math.unit(150, "lb"),
  14989. name: "Front (Armor)",
  14990. image: {
  14991. source: "./media/characters/carmine/front-armor.svg",
  14992. extra: 1549/1530,
  14993. bottom: 82/1631
  14994. }
  14995. },
  14996. mouth: {
  14997. height: math.unit(0.55, "feet"),
  14998. name: "Mouth",
  14999. image: {
  15000. source: "./media/characters/carmine/mouth.svg"
  15001. }
  15002. },
  15003. hand: {
  15004. height: math.unit(1.05, "feet"),
  15005. name: "Hand",
  15006. image: {
  15007. source: "./media/characters/carmine/hand.svg"
  15008. }
  15009. },
  15010. foot: {
  15011. height: math.unit(0.6, "feet"),
  15012. name: "Foot",
  15013. image: {
  15014. source: "./media/characters/carmine/foot.svg"
  15015. }
  15016. },
  15017. },
  15018. [
  15019. {
  15020. name: "Large",
  15021. height: math.unit(1, "mile")
  15022. },
  15023. {
  15024. name: "Huge",
  15025. height: math.unit(40, "miles"),
  15026. default: true
  15027. },
  15028. {
  15029. name: "Colossal",
  15030. height: math.unit(2500, "miles")
  15031. },
  15032. ]
  15033. ))
  15034. characterMakers.push(() => makeCharacter(
  15035. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  15036. {
  15037. front: {
  15038. height: math.unit(6, "feet"),
  15039. weight: math.unit(150, "lb"),
  15040. name: "Front",
  15041. image: {
  15042. source: "./media/characters/elyssia/front.svg",
  15043. extra: 2201 / 2035,
  15044. bottom: 0.05
  15045. }
  15046. },
  15047. frontClothed: {
  15048. height: math.unit(6, "feet"),
  15049. weight: math.unit(150, "lb"),
  15050. name: "Front (Clothed)",
  15051. image: {
  15052. source: "./media/characters/elyssia/front-clothed.svg",
  15053. extra: 2201 / 2035,
  15054. bottom: 0.05
  15055. }
  15056. },
  15057. back: {
  15058. height: math.unit(6, "feet"),
  15059. weight: math.unit(150, "lb"),
  15060. name: "Back",
  15061. image: {
  15062. source: "./media/characters/elyssia/back.svg",
  15063. extra: 2201 / 2035,
  15064. bottom: 0.013
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Smaller",
  15071. height: math.unit(150, "feet")
  15072. },
  15073. {
  15074. name: "Standard",
  15075. height: math.unit(1400, "feet"),
  15076. default: true
  15077. },
  15078. {
  15079. name: "Distracted",
  15080. height: math.unit(15000, "feet")
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  15086. {
  15087. front: {
  15088. height: math.unit(7 + 4/12, "feet"),
  15089. weight: math.unit(690, "lb"),
  15090. name: "Front",
  15091. image: {
  15092. source: "./media/characters/geno-maxwell/front.svg",
  15093. extra: 984/856,
  15094. bottom: 87/1071
  15095. }
  15096. },
  15097. back: {
  15098. height: math.unit(7 + 4/12, "feet"),
  15099. weight: math.unit(690, "lb"),
  15100. name: "Back",
  15101. image: {
  15102. source: "./media/characters/geno-maxwell/back.svg",
  15103. extra: 981/854,
  15104. bottom: 57/1038
  15105. }
  15106. },
  15107. frontCostume: {
  15108. height: math.unit(7 + 4/12, "feet"),
  15109. weight: math.unit(690, "lb"),
  15110. name: "Front (Costume)",
  15111. image: {
  15112. source: "./media/characters/geno-maxwell/front-costume.svg",
  15113. extra: 984/856,
  15114. bottom: 87/1071
  15115. }
  15116. },
  15117. backcostume: {
  15118. height: math.unit(7 + 4/12, "feet"),
  15119. weight: math.unit(690, "lb"),
  15120. name: "Back (Costume)",
  15121. image: {
  15122. source: "./media/characters/geno-maxwell/back-costume.svg",
  15123. extra: 981/854,
  15124. bottom: 57/1038
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Micro",
  15131. height: math.unit(3, "inches")
  15132. },
  15133. {
  15134. name: "Normal",
  15135. height: math.unit(7 + 4 / 12, "feet"),
  15136. default: true
  15137. },
  15138. {
  15139. name: "Macro",
  15140. height: math.unit(220, "feet")
  15141. },
  15142. {
  15143. name: "Megamacro",
  15144. height: math.unit(11, "miles")
  15145. },
  15146. ]
  15147. ))
  15148. characterMakers.push(() => makeCharacter(
  15149. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  15150. {
  15151. front: {
  15152. height: math.unit(7 + 4/12, "feet"),
  15153. weight: math.unit(750, "lb"),
  15154. name: "Front",
  15155. image: {
  15156. source: "./media/characters/regena-maxwell/front.svg",
  15157. extra: 984/856,
  15158. bottom: 87/1071
  15159. }
  15160. },
  15161. back: {
  15162. height: math.unit(7 + 4/12, "feet"),
  15163. weight: math.unit(750, "lb"),
  15164. name: "Back",
  15165. image: {
  15166. source: "./media/characters/regena-maxwell/back.svg",
  15167. extra: 981/854,
  15168. bottom: 57/1038
  15169. }
  15170. },
  15171. frontCostume: {
  15172. height: math.unit(7 + 4/12, "feet"),
  15173. weight: math.unit(750, "lb"),
  15174. name: "Front (Costume)",
  15175. image: {
  15176. source: "./media/characters/regena-maxwell/front-costume.svg",
  15177. extra: 984/856,
  15178. bottom: 87/1071
  15179. }
  15180. },
  15181. backcostume: {
  15182. height: math.unit(7 + 4/12, "feet"),
  15183. weight: math.unit(750, "lb"),
  15184. name: "Back (Costume)",
  15185. image: {
  15186. source: "./media/characters/regena-maxwell/back-costume.svg",
  15187. extra: 981/854,
  15188. bottom: 57/1038
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(7 + 4 / 12, "feet"),
  15196. default: true
  15197. },
  15198. {
  15199. name: "Macro",
  15200. height: math.unit(220, "feet")
  15201. },
  15202. {
  15203. name: "Megamacro",
  15204. height: math.unit(11, "miles")
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(6, "feet"),
  15213. weight: math.unit(150, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/x-gliding-dragon-x/front.svg",
  15217. extra: 860 / 690,
  15218. bottom: 0.03
  15219. }
  15220. },
  15221. },
  15222. [
  15223. {
  15224. name: "Normal",
  15225. height: math.unit(1.7, "meters"),
  15226. default: true
  15227. },
  15228. ]
  15229. ))
  15230. characterMakers.push(() => makeCharacter(
  15231. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  15232. {
  15233. front: {
  15234. height: math.unit(6, "feet"),
  15235. weight: math.unit(150, "lb"),
  15236. name: "Front",
  15237. image: {
  15238. source: "./media/characters/quilly/front.svg",
  15239. extra: 890 / 776
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Gigamacro",
  15246. height: math.unit(404090, "miles"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(7 + 8 / 12, "feet"),
  15256. weight: math.unit(350, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/tempest/front.svg",
  15260. extra: 1175 / 1086,
  15261. bottom: 0.02
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(7 + 8 / 12, "feet"),
  15269. default: true
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  15275. {
  15276. side: {
  15277. height: math.unit(4 + 5 / 12, "feet"),
  15278. weight: math.unit(80, "lb"),
  15279. name: "Side",
  15280. image: {
  15281. source: "./media/characters/rodger/side.svg",
  15282. extra: 1235 / 1118
  15283. }
  15284. },
  15285. },
  15286. [
  15287. {
  15288. name: "Micro",
  15289. height: math.unit(1, "inch")
  15290. },
  15291. {
  15292. name: "Normal",
  15293. height: math.unit(4 + 5 / 12, "feet"),
  15294. default: true
  15295. },
  15296. {
  15297. name: "Macro",
  15298. height: math.unit(120, "feet")
  15299. },
  15300. ]
  15301. ))
  15302. characterMakers.push(() => makeCharacter(
  15303. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  15304. {
  15305. front: {
  15306. height: math.unit(6, "feet"),
  15307. weight: math.unit(150, "lb"),
  15308. name: "Front",
  15309. image: {
  15310. source: "./media/characters/danyel/front.svg",
  15311. extra: 1185 / 1123,
  15312. bottom: 0.05
  15313. }
  15314. },
  15315. },
  15316. [
  15317. {
  15318. name: "Shrunken",
  15319. height: math.unit(0.5, "mm")
  15320. },
  15321. {
  15322. name: "Micro",
  15323. height: math.unit(1, "mm"),
  15324. default: true
  15325. },
  15326. {
  15327. name: "Upsized",
  15328. height: math.unit(5 + 5 / 12, "feet")
  15329. },
  15330. ]
  15331. ))
  15332. characterMakers.push(() => makeCharacter(
  15333. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  15334. {
  15335. front: {
  15336. height: math.unit(5 + 6 / 12, "feet"),
  15337. weight: math.unit(200, "lb"),
  15338. name: "Front",
  15339. image: {
  15340. source: "./media/characters/vivian-bijoux/front.svg",
  15341. extra: 1217/1209,
  15342. bottom: 76/1293
  15343. }
  15344. },
  15345. back: {
  15346. height: math.unit(5 + 6 / 12, "feet"),
  15347. weight: math.unit(200, "lb"),
  15348. name: "Back",
  15349. image: {
  15350. source: "./media/characters/vivian-bijoux/back.svg",
  15351. extra: 1214/1208,
  15352. bottom: 51/1265
  15353. }
  15354. },
  15355. dressed: {
  15356. height: math.unit(5 + 6 / 12, "feet"),
  15357. weight: math.unit(200, "lb"),
  15358. name: "Dressed",
  15359. image: {
  15360. source: "./media/characters/vivian-bijoux/dressed.svg",
  15361. extra: 1217/1209,
  15362. bottom: 76/1293
  15363. }
  15364. },
  15365. },
  15366. [
  15367. {
  15368. name: "Normal",
  15369. height: math.unit(5 + 6 / 12, "feet"),
  15370. default: true
  15371. },
  15372. {
  15373. name: "Bad Dream",
  15374. height: math.unit(500, "feet")
  15375. },
  15376. {
  15377. name: "Nightmare",
  15378. height: math.unit(500, "miles")
  15379. },
  15380. ]
  15381. ))
  15382. characterMakers.push(() => makeCharacter(
  15383. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  15384. {
  15385. front: {
  15386. height: math.unit(6 + 1 / 12, "feet"),
  15387. weight: math.unit(260, "lb"),
  15388. name: "Front",
  15389. image: {
  15390. source: "./media/characters/zeta/front.svg",
  15391. extra: 1968 / 1889,
  15392. bottom: 0.06
  15393. }
  15394. },
  15395. back: {
  15396. height: math.unit(6 + 1 / 12, "feet"),
  15397. weight: math.unit(260, "lb"),
  15398. name: "Back",
  15399. image: {
  15400. source: "./media/characters/zeta/back.svg",
  15401. extra: 1944 / 1858,
  15402. bottom: 0.03
  15403. }
  15404. },
  15405. hand: {
  15406. height: math.unit(1.112, "feet"),
  15407. name: "Hand",
  15408. image: {
  15409. source: "./media/characters/zeta/hand.svg"
  15410. }
  15411. },
  15412. foot: {
  15413. height: math.unit(1.48, "feet"),
  15414. name: "Foot",
  15415. image: {
  15416. source: "./media/characters/zeta/foot.svg"
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Micro",
  15423. height: math.unit(6, "inches")
  15424. },
  15425. {
  15426. name: "Normal",
  15427. height: math.unit(6 + 1 / 12, "feet"),
  15428. default: true
  15429. },
  15430. {
  15431. name: "Macro",
  15432. height: math.unit(20, "feet")
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(6, "feet"),
  15441. weight: math.unit(150, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/jamie-larsen/front.svg",
  15445. extra: 962 / 933,
  15446. bottom: 0.02
  15447. }
  15448. },
  15449. back: {
  15450. height: math.unit(6, "feet"),
  15451. weight: math.unit(150, "lb"),
  15452. name: "Back",
  15453. image: {
  15454. source: "./media/characters/jamie-larsen/back.svg",
  15455. extra: 997 / 946
  15456. }
  15457. },
  15458. },
  15459. [
  15460. {
  15461. name: "Macro",
  15462. height: math.unit(28 + 7 / 12, "feet"),
  15463. default: true
  15464. },
  15465. {
  15466. name: "Macro+",
  15467. height: math.unit(180, "feet")
  15468. },
  15469. {
  15470. name: "Megamacro",
  15471. height: math.unit(10, "miles")
  15472. },
  15473. {
  15474. name: "Gigamacro",
  15475. height: math.unit(200000, "miles")
  15476. },
  15477. ]
  15478. ))
  15479. characterMakers.push(() => makeCharacter(
  15480. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  15481. {
  15482. front: {
  15483. height: math.unit(6, "feet"),
  15484. weight: math.unit(120, "lb"),
  15485. name: "Front",
  15486. image: {
  15487. source: "./media/characters/vance/front.svg",
  15488. extra: 1980 / 1890,
  15489. bottom: 0.09
  15490. }
  15491. },
  15492. back: {
  15493. height: math.unit(6, "feet"),
  15494. weight: math.unit(120, "lb"),
  15495. name: "Back",
  15496. image: {
  15497. source: "./media/characters/vance/back.svg",
  15498. extra: 2081 / 1994,
  15499. bottom: 0.014
  15500. }
  15501. },
  15502. hand: {
  15503. height: math.unit(0.88, "feet"),
  15504. name: "Hand",
  15505. image: {
  15506. source: "./media/characters/vance/hand.svg"
  15507. }
  15508. },
  15509. foot: {
  15510. height: math.unit(0.64, "feet"),
  15511. name: "Foot",
  15512. image: {
  15513. source: "./media/characters/vance/foot.svg"
  15514. }
  15515. },
  15516. },
  15517. [
  15518. {
  15519. name: "Small",
  15520. height: math.unit(90, "feet"),
  15521. default: true
  15522. },
  15523. {
  15524. name: "Macro",
  15525. height: math.unit(100, "meters")
  15526. },
  15527. {
  15528. name: "Megamacro",
  15529. height: math.unit(15, "miles")
  15530. },
  15531. ]
  15532. ))
  15533. characterMakers.push(() => makeCharacter(
  15534. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  15535. {
  15536. front: {
  15537. height: math.unit(6, "feet"),
  15538. weight: math.unit(180, "lb"),
  15539. name: "Front",
  15540. image: {
  15541. source: "./media/characters/xochitl/front.svg",
  15542. extra: 2297 / 2261,
  15543. bottom: 0.065
  15544. }
  15545. },
  15546. back: {
  15547. height: math.unit(6, "feet"),
  15548. weight: math.unit(180, "lb"),
  15549. name: "Back",
  15550. image: {
  15551. source: "./media/characters/xochitl/back.svg",
  15552. extra: 2386 / 2354,
  15553. bottom: 0.01
  15554. }
  15555. },
  15556. foot: {
  15557. height: math.unit(6 / 5 * 1.15, "feet"),
  15558. weight: math.unit(150, "lb"),
  15559. name: "Foot",
  15560. image: {
  15561. source: "./media/characters/xochitl/foot.svg"
  15562. }
  15563. },
  15564. },
  15565. [
  15566. {
  15567. name: "Macro",
  15568. height: math.unit(80, "feet")
  15569. },
  15570. {
  15571. name: "Macro+",
  15572. height: math.unit(400, "feet"),
  15573. default: true
  15574. },
  15575. {
  15576. name: "Gigamacro",
  15577. height: math.unit(80000, "miles")
  15578. },
  15579. {
  15580. name: "Gigamacro+",
  15581. height: math.unit(400000, "miles")
  15582. },
  15583. {
  15584. name: "Teramacro",
  15585. height: math.unit(300, "AU")
  15586. },
  15587. ]
  15588. ))
  15589. characterMakers.push(() => makeCharacter(
  15590. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  15591. {
  15592. front: {
  15593. height: math.unit(6, "feet"),
  15594. weight: math.unit(150, "lb"),
  15595. name: "Front",
  15596. image: {
  15597. source: "./media/characters/vincent/front.svg",
  15598. extra: 1130 / 1080,
  15599. bottom: 0.055
  15600. }
  15601. },
  15602. beak: {
  15603. height: math.unit(6 * 0.1, "feet"),
  15604. name: "Beak",
  15605. image: {
  15606. source: "./media/characters/vincent/beak.svg"
  15607. }
  15608. },
  15609. hand: {
  15610. height: math.unit(6 * 0.85, "feet"),
  15611. weight: math.unit(150, "lb"),
  15612. name: "Hand",
  15613. image: {
  15614. source: "./media/characters/vincent/hand.svg"
  15615. }
  15616. },
  15617. foot: {
  15618. height: math.unit(6 * 0.19, "feet"),
  15619. weight: math.unit(150, "lb"),
  15620. name: "Foot",
  15621. image: {
  15622. source: "./media/characters/vincent/foot.svg"
  15623. }
  15624. },
  15625. },
  15626. [
  15627. {
  15628. name: "Base",
  15629. height: math.unit(6 + 5 / 12, "feet"),
  15630. default: true
  15631. },
  15632. {
  15633. name: "Macro",
  15634. height: math.unit(300, "feet")
  15635. },
  15636. {
  15637. name: "Megamacro",
  15638. height: math.unit(2, "miles")
  15639. },
  15640. {
  15641. name: "Gigamacro",
  15642. height: math.unit(1000, "miles")
  15643. },
  15644. ]
  15645. ))
  15646. characterMakers.push(() => makeCharacter(
  15647. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  15648. {
  15649. front: {
  15650. height: math.unit(2, "meters"),
  15651. weight: math.unit(500, "kg"),
  15652. name: "Front",
  15653. image: {
  15654. source: "./media/characters/coatl/front.svg",
  15655. extra: 3948 / 3500,
  15656. bottom: 0.082
  15657. }
  15658. },
  15659. },
  15660. [
  15661. {
  15662. name: "Normal",
  15663. height: math.unit(4, "meters")
  15664. },
  15665. {
  15666. name: "Macro",
  15667. height: math.unit(100, "meters"),
  15668. default: true
  15669. },
  15670. {
  15671. name: "Macro+",
  15672. height: math.unit(300, "meters")
  15673. },
  15674. {
  15675. name: "Megamacro",
  15676. height: math.unit(3, "gigameters")
  15677. },
  15678. {
  15679. name: "Megamacro+",
  15680. height: math.unit(300, "terameters")
  15681. },
  15682. {
  15683. name: "Megamacro++",
  15684. height: math.unit(3, "lightyears")
  15685. },
  15686. ]
  15687. ))
  15688. characterMakers.push(() => makeCharacter(
  15689. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  15690. {
  15691. front: {
  15692. height: math.unit(6, "feet"),
  15693. weight: math.unit(50, "kg"),
  15694. name: "front",
  15695. image: {
  15696. source: "./media/characters/shiroryu/front.svg",
  15697. extra: 1990 / 1935
  15698. }
  15699. },
  15700. },
  15701. [
  15702. {
  15703. name: "Mortal Mingling",
  15704. height: math.unit(3, "meters")
  15705. },
  15706. {
  15707. name: "Kaiju-ish",
  15708. height: math.unit(250, "meters")
  15709. },
  15710. {
  15711. name: "Somewhat Godly",
  15712. height: math.unit(400, "km"),
  15713. default: true
  15714. },
  15715. {
  15716. name: "Planetary",
  15717. height: math.unit(300, "megameters")
  15718. },
  15719. {
  15720. name: "Galaxy-dwarfing",
  15721. height: math.unit(450, "kiloparsecs")
  15722. },
  15723. {
  15724. name: "Universe Eater",
  15725. height: math.unit(150, "gigaparsecs")
  15726. },
  15727. {
  15728. name: "Almost Immeasurable",
  15729. height: math.unit(1.3e266, "yottaparsecs")
  15730. },
  15731. ]
  15732. ))
  15733. characterMakers.push(() => makeCharacter(
  15734. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  15735. {
  15736. front: {
  15737. height: math.unit(6, "feet"),
  15738. weight: math.unit(150, "lb"),
  15739. name: "Front",
  15740. image: {
  15741. source: "./media/characters/umeko/front.svg",
  15742. extra: 1,
  15743. bottom: 0.019
  15744. }
  15745. },
  15746. frontArmored: {
  15747. height: math.unit(6, "feet"),
  15748. weight: math.unit(150, "lb"),
  15749. name: "Front (Armored)",
  15750. image: {
  15751. source: "./media/characters/umeko/front-armored.svg",
  15752. extra: 1,
  15753. bottom: 0.021
  15754. }
  15755. },
  15756. },
  15757. [
  15758. {
  15759. name: "Macro",
  15760. height: math.unit(220, "feet"),
  15761. default: true
  15762. },
  15763. {
  15764. name: "Guardian Dragon",
  15765. height: math.unit(50, "miles")
  15766. },
  15767. {
  15768. name: "Cosmic",
  15769. height: math.unit(800000, "miles")
  15770. },
  15771. ]
  15772. ))
  15773. characterMakers.push(() => makeCharacter(
  15774. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  15775. {
  15776. front: {
  15777. height: math.unit(6, "feet"),
  15778. weight: math.unit(150, "lb"),
  15779. name: "Front",
  15780. image: {
  15781. source: "./media/characters/cassidy/front.svg",
  15782. extra: 810/808,
  15783. bottom: 41/851
  15784. }
  15785. },
  15786. },
  15787. [
  15788. {
  15789. name: "Canon Height",
  15790. height: math.unit(120, "feet"),
  15791. default: true
  15792. },
  15793. {
  15794. name: "Macro+",
  15795. height: math.unit(400, "feet")
  15796. },
  15797. {
  15798. name: "Macro++",
  15799. height: math.unit(4000, "feet")
  15800. },
  15801. {
  15802. name: "Megamacro",
  15803. height: math.unit(3, "miles")
  15804. },
  15805. ]
  15806. ))
  15807. characterMakers.push(() => makeCharacter(
  15808. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  15809. {
  15810. front: {
  15811. height: math.unit(6, "feet"),
  15812. weight: math.unit(150, "lb"),
  15813. name: "Front",
  15814. image: {
  15815. source: "./media/characters/isaac/front.svg",
  15816. extra: 896 / 815,
  15817. bottom: 0.11
  15818. }
  15819. },
  15820. },
  15821. [
  15822. {
  15823. name: "Human Size",
  15824. height: math.unit(8, "feet"),
  15825. default: true
  15826. },
  15827. {
  15828. name: "Macro",
  15829. height: math.unit(400, "feet")
  15830. },
  15831. {
  15832. name: "Megamacro",
  15833. height: math.unit(50, "miles")
  15834. },
  15835. {
  15836. name: "Canon Height",
  15837. height: math.unit(200, "AU")
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(72, "kg"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/sleekit/front.svg",
  15850. extra: 4693 / 4487,
  15851. bottom: 0.012
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Minimum Height",
  15858. height: math.unit(10, "meters")
  15859. },
  15860. {
  15861. name: "Smaller",
  15862. height: math.unit(25, "meters")
  15863. },
  15864. {
  15865. name: "Larger",
  15866. height: math.unit(38, "meters"),
  15867. default: true
  15868. },
  15869. {
  15870. name: "Maximum height",
  15871. height: math.unit(100, "meters")
  15872. },
  15873. ]
  15874. ))
  15875. characterMakers.push(() => makeCharacter(
  15876. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  15877. {
  15878. front: {
  15879. height: math.unit(6, "feet"),
  15880. weight: math.unit(150, "lb"),
  15881. name: "Front",
  15882. image: {
  15883. source: "./media/characters/nillia/front.svg",
  15884. extra: 719/665,
  15885. bottom: 6/725
  15886. }
  15887. },
  15888. back: {
  15889. height: math.unit(6, "feet"),
  15890. weight: math.unit(150, "lb"),
  15891. name: "Back",
  15892. image: {
  15893. source: "./media/characters/nillia/back.svg",
  15894. extra: 705/651,
  15895. bottom: 5/710
  15896. }
  15897. },
  15898. },
  15899. [
  15900. {
  15901. name: "Canon Height",
  15902. height: math.unit(489, "feet"),
  15903. default: true
  15904. }
  15905. ]
  15906. ))
  15907. characterMakers.push(() => makeCharacter(
  15908. { name: "Mesmyriza", species: ["shark", "dragon", "robot", "deity"], tags: ["anthro"] },
  15909. {
  15910. front: {
  15911. height: math.unit(6, "feet"),
  15912. weight: math.unit(150, "lb"),
  15913. name: "Front",
  15914. image: {
  15915. source: "./media/characters/mesmyriza/front.svg",
  15916. extra: 1541/1291,
  15917. bottom: 87/1628
  15918. }
  15919. },
  15920. foot: {
  15921. height: math.unit(6 / (250 / 35), "feet"),
  15922. name: "Foot",
  15923. image: {
  15924. source: "./media/characters/mesmyriza/foot.svg"
  15925. }
  15926. },
  15927. },
  15928. [
  15929. {
  15930. name: "Macro",
  15931. height: math.unit(457, "meters"),
  15932. default: true
  15933. },
  15934. {
  15935. name: "Megamacro",
  15936. height: math.unit(8, "megameters")
  15937. },
  15938. ]
  15939. ))
  15940. characterMakers.push(() => makeCharacter(
  15941. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  15942. {
  15943. front: {
  15944. height: math.unit(6, "feet"),
  15945. weight: math.unit(250, "lb"),
  15946. name: "Front",
  15947. image: {
  15948. source: "./media/characters/saudade/front.svg",
  15949. extra: 1172 / 1139,
  15950. bottom: 0.035
  15951. }
  15952. },
  15953. },
  15954. [
  15955. {
  15956. name: "Micro",
  15957. height: math.unit(3, "inches")
  15958. },
  15959. {
  15960. name: "Normal",
  15961. height: math.unit(6, "feet"),
  15962. default: true
  15963. },
  15964. {
  15965. name: "Macro",
  15966. height: math.unit(50, "feet")
  15967. },
  15968. {
  15969. name: "Megamacro",
  15970. height: math.unit(2800, "feet")
  15971. },
  15972. ]
  15973. ))
  15974. characterMakers.push(() => makeCharacter(
  15975. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  15976. {
  15977. front: {
  15978. height: math.unit(5 + 4 / 12, "feet"),
  15979. weight: math.unit(100, "lb"),
  15980. name: "Front",
  15981. image: {
  15982. source: "./media/characters/keireer/front.svg",
  15983. extra: 716 / 666,
  15984. bottom: 0.05
  15985. }
  15986. },
  15987. },
  15988. [
  15989. {
  15990. name: "Normal",
  15991. height: math.unit(5 + 4 / 12, "feet"),
  15992. default: true
  15993. },
  15994. ]
  15995. ))
  15996. characterMakers.push(() => makeCharacter(
  15997. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  15998. {
  15999. front: {
  16000. height: math.unit(5.5, "feet"),
  16001. weight: math.unit(90, "kg"),
  16002. name: "Front",
  16003. image: {
  16004. source: "./media/characters/mirja/front.svg",
  16005. extra: 1452/1262,
  16006. bottom: 67/1519
  16007. }
  16008. },
  16009. frontDressed: {
  16010. height: math.unit(5.5, "feet"),
  16011. weight: math.unit(90, "lb"),
  16012. name: "Front (Dressed)",
  16013. image: {
  16014. source: "./media/characters/mirja/dressed.svg",
  16015. extra: 1452/1262,
  16016. bottom: 67/1519
  16017. }
  16018. },
  16019. back: {
  16020. height: math.unit(6, "feet"),
  16021. weight: math.unit(90, "lb"),
  16022. name: "Back",
  16023. image: {
  16024. source: "./media/characters/mirja/back.svg",
  16025. extra: 1892/1795,
  16026. bottom: 48/1940
  16027. }
  16028. },
  16029. maw: {
  16030. height: math.unit(1.312, "feet"),
  16031. name: "Maw",
  16032. image: {
  16033. source: "./media/characters/mirja/maw.svg"
  16034. }
  16035. },
  16036. paw: {
  16037. height: math.unit(1.15, "feet"),
  16038. name: "Paw",
  16039. image: {
  16040. source: "./media/characters/mirja/paw.svg"
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "\"Incognito\"",
  16047. height: math.unit(3, "meters")
  16048. },
  16049. {
  16050. name: "Strolling Size",
  16051. height: math.unit(15, "km")
  16052. },
  16053. {
  16054. name: "Larger Strolling Size",
  16055. height: math.unit(400, "km")
  16056. },
  16057. {
  16058. name: "Preferred Size",
  16059. height: math.unit(5000, "km"),
  16060. default: true
  16061. },
  16062. {
  16063. name: "True Size",
  16064. height: math.unit(30657809462086840000000000000000, "parsecs"),
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(15, "feet"),
  16073. weight: math.unit(880, "kg"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/nightraver/front.svg",
  16077. extra: 2444 / 2160,
  16078. bottom: 0.027
  16079. }
  16080. },
  16081. back: {
  16082. height: math.unit(15, "feet"),
  16083. weight: math.unit(880, "kg"),
  16084. name: "Back",
  16085. image: {
  16086. source: "./media/characters/nightraver/back.svg",
  16087. extra: 2309 / 2180,
  16088. bottom: 0.005
  16089. }
  16090. },
  16091. sole: {
  16092. height: math.unit(2.878, "feet"),
  16093. name: "Sole",
  16094. image: {
  16095. source: "./media/characters/nightraver/sole.svg"
  16096. }
  16097. },
  16098. foot: {
  16099. height: math.unit(2.285, "feet"),
  16100. name: "Foot",
  16101. image: {
  16102. source: "./media/characters/nightraver/foot.svg"
  16103. }
  16104. },
  16105. maw: {
  16106. height: math.unit(2.67, "feet"),
  16107. name: "Maw",
  16108. image: {
  16109. source: "./media/characters/nightraver/maw.svg"
  16110. }
  16111. },
  16112. },
  16113. [
  16114. {
  16115. name: "Micro",
  16116. height: math.unit(1, "cm")
  16117. },
  16118. {
  16119. name: "Normal",
  16120. height: math.unit(15, "feet"),
  16121. default: true
  16122. },
  16123. {
  16124. name: "Macro",
  16125. height: math.unit(300, "feet")
  16126. },
  16127. {
  16128. name: "Megamacro",
  16129. height: math.unit(300, "miles")
  16130. },
  16131. {
  16132. name: "Gigamacro",
  16133. height: math.unit(10000, "miles")
  16134. },
  16135. ]
  16136. ))
  16137. characterMakers.push(() => makeCharacter(
  16138. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  16139. {
  16140. side: {
  16141. height: math.unit(2, "inches"),
  16142. weight: math.unit(5, "grams"),
  16143. name: "Side",
  16144. image: {
  16145. source: "./media/characters/arc/side.svg"
  16146. }
  16147. },
  16148. },
  16149. [
  16150. {
  16151. name: "Micro",
  16152. height: math.unit(2, "inches"),
  16153. default: true
  16154. },
  16155. ]
  16156. ))
  16157. characterMakers.push(() => makeCharacter(
  16158. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  16159. {
  16160. front: {
  16161. height: math.unit(1.1938, "meters"),
  16162. weight: math.unit(54, "kg"),
  16163. name: "Front",
  16164. image: {
  16165. source: "./media/characters/nebula-shahar/front.svg",
  16166. extra: 1642 / 1436,
  16167. bottom: 0.06
  16168. }
  16169. },
  16170. },
  16171. [
  16172. {
  16173. name: "Megamicro",
  16174. height: math.unit(0.3, "mm")
  16175. },
  16176. {
  16177. name: "Micro",
  16178. height: math.unit(3, "cm")
  16179. },
  16180. {
  16181. name: "Normal",
  16182. height: math.unit(138, "cm"),
  16183. default: true
  16184. },
  16185. {
  16186. name: "Macro",
  16187. height: math.unit(30, "m")
  16188. },
  16189. ]
  16190. ))
  16191. characterMakers.push(() => makeCharacter(
  16192. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  16193. {
  16194. front: {
  16195. height: math.unit(5.24, "feet"),
  16196. weight: math.unit(150, "lb"),
  16197. name: "Front",
  16198. image: {
  16199. source: "./media/characters/shayla/front.svg",
  16200. extra: 1512 / 1414,
  16201. bottom: 0.01
  16202. }
  16203. },
  16204. back: {
  16205. height: math.unit(5.24, "feet"),
  16206. weight: math.unit(150, "lb"),
  16207. name: "Back",
  16208. image: {
  16209. source: "./media/characters/shayla/back.svg",
  16210. extra: 1512 / 1414
  16211. }
  16212. },
  16213. hand: {
  16214. height: math.unit(0.7781496062992126, "feet"),
  16215. name: "Hand",
  16216. image: {
  16217. source: "./media/characters/shayla/hand.svg"
  16218. }
  16219. },
  16220. foot: {
  16221. height: math.unit(1.4206036745406823, "feet"),
  16222. name: "Foot",
  16223. image: {
  16224. source: "./media/characters/shayla/foot.svg"
  16225. }
  16226. },
  16227. },
  16228. [
  16229. {
  16230. name: "Micro",
  16231. height: math.unit(0.32, "feet")
  16232. },
  16233. {
  16234. name: "Normal",
  16235. height: math.unit(5.24, "feet"),
  16236. default: true
  16237. },
  16238. {
  16239. name: "Macro",
  16240. height: math.unit(492.12, "feet")
  16241. },
  16242. {
  16243. name: "Megamacro",
  16244. height: math.unit(186.41, "miles")
  16245. },
  16246. ]
  16247. ))
  16248. characterMakers.push(() => makeCharacter(
  16249. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  16250. {
  16251. front: {
  16252. height: math.unit(2.2, "m"),
  16253. weight: math.unit(120, "kg"),
  16254. name: "Front",
  16255. image: {
  16256. source: "./media/characters/pia-jr/front.svg",
  16257. extra: 1000 / 970,
  16258. bottom: 0.035
  16259. }
  16260. },
  16261. hand: {
  16262. height: math.unit(0.759 * 7.21 / 6, "feet"),
  16263. name: "Hand",
  16264. image: {
  16265. source: "./media/characters/pia-jr/hand.svg"
  16266. }
  16267. },
  16268. paw: {
  16269. height: math.unit(1.185 * 7.21 / 6, "feet"),
  16270. name: "Paw",
  16271. image: {
  16272. source: "./media/characters/pia-jr/paw.svg"
  16273. }
  16274. },
  16275. },
  16276. [
  16277. {
  16278. name: "Micro",
  16279. height: math.unit(1.2, "cm")
  16280. },
  16281. {
  16282. name: "Normal",
  16283. height: math.unit(2.2, "m"),
  16284. default: true
  16285. },
  16286. {
  16287. name: "Macro",
  16288. height: math.unit(180, "m")
  16289. },
  16290. {
  16291. name: "Megamacro",
  16292. height: math.unit(420, "km")
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(2, "m"),
  16301. weight: math.unit(115, "kg"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/pia-sr/front.svg",
  16305. extra: 760 / 730,
  16306. bottom: 0.015
  16307. }
  16308. },
  16309. back: {
  16310. height: math.unit(2, "m"),
  16311. weight: math.unit(115, "kg"),
  16312. name: "Back",
  16313. image: {
  16314. source: "./media/characters/pia-sr/back.svg",
  16315. extra: 760 / 730,
  16316. bottom: 0.01
  16317. }
  16318. },
  16319. hand: {
  16320. height: math.unit(0.89 * 6.56 / 6, "feet"),
  16321. name: "Hand",
  16322. image: {
  16323. source: "./media/characters/pia-sr/hand.svg"
  16324. }
  16325. },
  16326. foot: {
  16327. height: math.unit(1.83, "feet"),
  16328. name: "Foot",
  16329. image: {
  16330. source: "./media/characters/pia-sr/foot.svg"
  16331. }
  16332. },
  16333. },
  16334. [
  16335. {
  16336. name: "Micro",
  16337. height: math.unit(88, "mm")
  16338. },
  16339. {
  16340. name: "Normal",
  16341. height: math.unit(2, "m"),
  16342. default: true
  16343. },
  16344. {
  16345. name: "Macro",
  16346. height: math.unit(200, "m")
  16347. },
  16348. {
  16349. name: "Megamacro",
  16350. height: math.unit(420, "km")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(8 + 2 / 12, "feet"),
  16359. weight: math.unit(300, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/kibibyte/front.svg",
  16363. extra: 2221 / 2098,
  16364. bottom: 0.04
  16365. }
  16366. },
  16367. },
  16368. [
  16369. {
  16370. name: "Normal",
  16371. height: math.unit(8 + 2 / 12, "feet"),
  16372. default: true
  16373. },
  16374. {
  16375. name: "Socialable Macro",
  16376. height: math.unit(50, "feet")
  16377. },
  16378. {
  16379. name: "Macro",
  16380. height: math.unit(300, "feet")
  16381. },
  16382. {
  16383. name: "Megamacro",
  16384. height: math.unit(500, "miles")
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  16390. {
  16391. front: {
  16392. height: math.unit(6, "feet"),
  16393. weight: math.unit(150, "lb"),
  16394. name: "Front",
  16395. image: {
  16396. source: "./media/characters/felix/front.svg",
  16397. extra: 762 / 722,
  16398. bottom: 0.02
  16399. }
  16400. },
  16401. frontClothed: {
  16402. height: math.unit(6, "feet"),
  16403. weight: math.unit(150, "lb"),
  16404. name: "Front (Clothed)",
  16405. image: {
  16406. source: "./media/characters/felix/front-clothed.svg",
  16407. extra: 762 / 722,
  16408. bottom: 0.02
  16409. }
  16410. },
  16411. },
  16412. [
  16413. {
  16414. name: "Normal",
  16415. height: math.unit(6 + 8 / 12, "feet"),
  16416. default: true
  16417. },
  16418. {
  16419. name: "Macro",
  16420. height: math.unit(2600, "feet")
  16421. },
  16422. {
  16423. name: "Megamacro",
  16424. height: math.unit(450, "miles")
  16425. },
  16426. ]
  16427. ))
  16428. characterMakers.push(() => makeCharacter(
  16429. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  16430. {
  16431. front: {
  16432. height: math.unit(6 + 1 / 12, "feet"),
  16433. weight: math.unit(250, "lb"),
  16434. name: "Front",
  16435. image: {
  16436. source: "./media/characters/tobo/front.svg",
  16437. extra: 608 / 586,
  16438. bottom: 0.023
  16439. }
  16440. },
  16441. back: {
  16442. height: math.unit(6 + 1 / 12, "feet"),
  16443. weight: math.unit(250, "lb"),
  16444. name: "Back",
  16445. image: {
  16446. source: "./media/characters/tobo/back.svg",
  16447. extra: 608 / 586
  16448. }
  16449. },
  16450. },
  16451. [
  16452. {
  16453. name: "Nano",
  16454. height: math.unit(2, "nm")
  16455. },
  16456. {
  16457. name: "Megamicro",
  16458. height: math.unit(0.1, "mm")
  16459. },
  16460. {
  16461. name: "Micro",
  16462. height: math.unit(1, "inch"),
  16463. default: true
  16464. },
  16465. {
  16466. name: "Human-sized",
  16467. height: math.unit(6 + 1 / 12, "feet")
  16468. },
  16469. {
  16470. name: "Macro",
  16471. height: math.unit(250, "feet")
  16472. },
  16473. {
  16474. name: "Megamacro",
  16475. height: math.unit(75, "miles")
  16476. },
  16477. {
  16478. name: "Texas-sized",
  16479. height: math.unit(750, "miles")
  16480. },
  16481. {
  16482. name: "Teramacro",
  16483. height: math.unit(50000, "miles")
  16484. },
  16485. ]
  16486. ))
  16487. characterMakers.push(() => makeCharacter(
  16488. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  16489. {
  16490. front: {
  16491. height: math.unit(6, "feet"),
  16492. weight: math.unit(269, "lb"),
  16493. name: "Front",
  16494. image: {
  16495. source: "./media/characters/danny-kapowsky/front.svg",
  16496. extra: 766 / 736,
  16497. bottom: 0.044
  16498. }
  16499. },
  16500. back: {
  16501. height: math.unit(6, "feet"),
  16502. weight: math.unit(269, "lb"),
  16503. name: "Back",
  16504. image: {
  16505. source: "./media/characters/danny-kapowsky/back.svg",
  16506. extra: 797 / 760,
  16507. bottom: 0.025
  16508. }
  16509. },
  16510. },
  16511. [
  16512. {
  16513. name: "Macro",
  16514. height: math.unit(150, "feet"),
  16515. default: true
  16516. },
  16517. {
  16518. name: "Macro+",
  16519. height: math.unit(200, "feet")
  16520. },
  16521. {
  16522. name: "Macro++",
  16523. height: math.unit(300, "feet")
  16524. },
  16525. {
  16526. name: "Macro+++",
  16527. height: math.unit(400, "feet")
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  16533. {
  16534. side: {
  16535. height: math.unit(6, "feet"),
  16536. weight: math.unit(170, "lb"),
  16537. name: "Side",
  16538. image: {
  16539. source: "./media/characters/finn/side.svg",
  16540. extra: 1953 / 1807,
  16541. bottom: 0.057
  16542. }
  16543. },
  16544. },
  16545. [
  16546. {
  16547. name: "Megamacro",
  16548. height: math.unit(14445, "feet"),
  16549. default: true
  16550. },
  16551. ]
  16552. ))
  16553. characterMakers.push(() => makeCharacter(
  16554. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  16555. {
  16556. front: {
  16557. height: math.unit(5 + 6 / 12, "feet"),
  16558. weight: math.unit(125, "lb"),
  16559. name: "Front",
  16560. image: {
  16561. source: "./media/characters/roy/front.svg",
  16562. extra: 1,
  16563. bottom: 0.11
  16564. }
  16565. },
  16566. },
  16567. [
  16568. {
  16569. name: "Micro",
  16570. height: math.unit(3, "inches"),
  16571. default: true
  16572. },
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(5 + 6 / 12, "feet")
  16576. },
  16577. {
  16578. name: "Lesser Macro",
  16579. height: math.unit(60, "feet")
  16580. },
  16581. {
  16582. name: "Greater Macro",
  16583. height: math.unit(120, "feet")
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  16589. {
  16590. front: {
  16591. height: math.unit(6, "feet"),
  16592. weight: math.unit(100, "lb"),
  16593. name: "Front",
  16594. image: {
  16595. source: "./media/characters/aevsivs/front.svg",
  16596. extra: 1,
  16597. bottom: 0.03
  16598. }
  16599. },
  16600. back: {
  16601. height: math.unit(6, "feet"),
  16602. weight: math.unit(100, "lb"),
  16603. name: "Back",
  16604. image: {
  16605. source: "./media/characters/aevsivs/back.svg"
  16606. }
  16607. },
  16608. },
  16609. [
  16610. {
  16611. name: "Micro",
  16612. height: math.unit(2, "inches"),
  16613. default: true
  16614. },
  16615. {
  16616. name: "Normal",
  16617. height: math.unit(5, "feet")
  16618. },
  16619. ]
  16620. ))
  16621. characterMakers.push(() => makeCharacter(
  16622. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  16623. {
  16624. front: {
  16625. height: math.unit(5 + 7 / 12, "feet"),
  16626. weight: math.unit(159, "lb"),
  16627. name: "Front",
  16628. image: {
  16629. source: "./media/characters/hildegard/front.svg",
  16630. extra: 289 / 269,
  16631. bottom: 7.63 / 297.8
  16632. }
  16633. },
  16634. back: {
  16635. height: math.unit(5 + 7 / 12, "feet"),
  16636. weight: math.unit(159, "lb"),
  16637. name: "Back",
  16638. image: {
  16639. source: "./media/characters/hildegard/back.svg",
  16640. extra: 280 / 260,
  16641. bottom: 2.3 / 282
  16642. }
  16643. },
  16644. },
  16645. [
  16646. {
  16647. name: "Normal",
  16648. height: math.unit(5 + 7 / 12, "feet"),
  16649. default: true
  16650. },
  16651. ]
  16652. ))
  16653. characterMakers.push(() => makeCharacter(
  16654. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  16655. {
  16656. bernard: {
  16657. height: math.unit(2 + 7 / 12, "feet"),
  16658. weight: math.unit(66, "lb"),
  16659. name: "Bernard",
  16660. rename: true,
  16661. image: {
  16662. source: "./media/characters/bernard-wilder/bernard.svg",
  16663. extra: 192 / 128,
  16664. bottom: 0.05
  16665. }
  16666. },
  16667. wilder: {
  16668. height: math.unit(5 + 8 / 12, "feet"),
  16669. weight: math.unit(143, "lb"),
  16670. name: "Wilder",
  16671. rename: true,
  16672. image: {
  16673. source: "./media/characters/bernard-wilder/wilder.svg",
  16674. extra: 361 / 312,
  16675. bottom: 0.02
  16676. }
  16677. },
  16678. },
  16679. [
  16680. {
  16681. name: "Normal",
  16682. height: math.unit(2 + 7 / 12, "feet"),
  16683. default: true
  16684. },
  16685. ]
  16686. ))
  16687. characterMakers.push(() => makeCharacter(
  16688. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  16689. {
  16690. anthro: {
  16691. height: math.unit(6 + 1 / 12, "feet"),
  16692. weight: math.unit(155, "lb"),
  16693. name: "Anthro",
  16694. image: {
  16695. source: "./media/characters/hearth/anthro.svg",
  16696. extra: 1178/1136,
  16697. bottom: 28/1206
  16698. }
  16699. },
  16700. feral: {
  16701. height: math.unit(3.78, "feet"),
  16702. weight: math.unit(35, "kg"),
  16703. name: "Feral",
  16704. image: {
  16705. source: "./media/characters/hearth/feral.svg",
  16706. extra: 153 / 135,
  16707. bottom: 0.03
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(6 + 1 / 12, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(6, "feet"),
  16724. weight: math.unit(182, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/ingrid/front.svg",
  16728. extra: 294 / 268,
  16729. bottom: 0.027
  16730. }
  16731. },
  16732. },
  16733. [
  16734. {
  16735. name: "Normal",
  16736. height: math.unit(6, "feet"),
  16737. default: true
  16738. },
  16739. ]
  16740. ))
  16741. characterMakers.push(() => makeCharacter(
  16742. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  16743. {
  16744. eevee: {
  16745. height: math.unit(2 + 10 / 12, "feet"),
  16746. weight: math.unit(86, "lb"),
  16747. name: "Malgam",
  16748. image: {
  16749. source: "./media/characters/malgam/eevee.svg",
  16750. extra: 952/784,
  16751. bottom: 38/990
  16752. }
  16753. },
  16754. sylveon: {
  16755. height: math.unit(4, "feet"),
  16756. weight: math.unit(101, "lb"),
  16757. name: "Future Malgam",
  16758. rename: true,
  16759. image: {
  16760. source: "./media/characters/malgam/sylveon.svg",
  16761. extra: 371 / 325,
  16762. bottom: 0.015
  16763. }
  16764. },
  16765. gigantamax: {
  16766. height: math.unit(50, "feet"),
  16767. name: "Gigantamax Malgam",
  16768. rename: true,
  16769. image: {
  16770. source: "./media/characters/malgam/gigantamax.svg"
  16771. }
  16772. },
  16773. },
  16774. [
  16775. {
  16776. name: "Normal",
  16777. height: math.unit(2 + 10 / 12, "feet"),
  16778. default: true
  16779. },
  16780. ]
  16781. ))
  16782. characterMakers.push(() => makeCharacter(
  16783. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  16784. {
  16785. front: {
  16786. height: math.unit(5 + 11 / 12, "feet"),
  16787. weight: math.unit(188, "lb"),
  16788. name: "Front",
  16789. image: {
  16790. source: "./media/characters/fleur/front.svg",
  16791. extra: 309 / 283,
  16792. bottom: 0.007
  16793. }
  16794. },
  16795. },
  16796. [
  16797. {
  16798. name: "Normal",
  16799. height: math.unit(5 + 11 / 12, "feet"),
  16800. default: true
  16801. },
  16802. ]
  16803. ))
  16804. characterMakers.push(() => makeCharacter(
  16805. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  16806. {
  16807. front: {
  16808. height: math.unit(5 + 4 / 12, "feet"),
  16809. weight: math.unit(122, "lb"),
  16810. name: "Front",
  16811. image: {
  16812. source: "./media/characters/jude/front.svg",
  16813. extra: 288 / 273,
  16814. bottom: 0.03
  16815. }
  16816. },
  16817. },
  16818. [
  16819. {
  16820. name: "Normal",
  16821. height: math.unit(5 + 4 / 12, "feet"),
  16822. default: true
  16823. },
  16824. ]
  16825. ))
  16826. characterMakers.push(() => makeCharacter(
  16827. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  16828. {
  16829. front: {
  16830. height: math.unit(5 + 11 / 12, "feet"),
  16831. weight: math.unit(190, "lb"),
  16832. name: "Front",
  16833. image: {
  16834. source: "./media/characters/seara/front.svg",
  16835. extra: 1,
  16836. bottom: 0.05
  16837. }
  16838. },
  16839. },
  16840. [
  16841. {
  16842. name: "Normal",
  16843. height: math.unit(5 + 11 / 12, "feet"),
  16844. default: true
  16845. },
  16846. ]
  16847. ))
  16848. characterMakers.push(() => makeCharacter(
  16849. { name: "Caspian (Lugia)", species: ["lugia"], tags: ["anthro"] },
  16850. {
  16851. front: {
  16852. height: math.unit(16 + 5 / 12, "feet"),
  16853. weight: math.unit(524, "lb"),
  16854. name: "Front",
  16855. image: {
  16856. source: "./media/characters/caspian-lugia/front.svg",
  16857. extra: 1,
  16858. bottom: 0.04
  16859. }
  16860. },
  16861. },
  16862. [
  16863. {
  16864. name: "Normal",
  16865. height: math.unit(16 + 5 / 12, "feet"),
  16866. default: true
  16867. },
  16868. ]
  16869. ))
  16870. characterMakers.push(() => makeCharacter(
  16871. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  16872. {
  16873. front: {
  16874. height: math.unit(5 + 7 / 12, "feet"),
  16875. weight: math.unit(170, "lb"),
  16876. name: "Front",
  16877. image: {
  16878. source: "./media/characters/mika/front.svg",
  16879. extra: 1,
  16880. bottom: 0.016
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Normal",
  16887. height: math.unit(5 + 7 / 12, "feet"),
  16888. default: true
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  16894. {
  16895. front: {
  16896. height: math.unit(6 + 2 / 12, "feet"),
  16897. weight: math.unit(268, "lb"),
  16898. name: "Front",
  16899. image: {
  16900. source: "./media/characters/sol/front.svg",
  16901. extra: 247 / 231,
  16902. bottom: 0.05
  16903. }
  16904. },
  16905. },
  16906. [
  16907. {
  16908. name: "Normal",
  16909. height: math.unit(6 + 2 / 12, "feet"),
  16910. default: true
  16911. },
  16912. ]
  16913. ))
  16914. characterMakers.push(() => makeCharacter(
  16915. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  16916. {
  16917. buizel: {
  16918. height: math.unit(2 + 5 / 12, "feet"),
  16919. weight: math.unit(87, "lb"),
  16920. name: "Front",
  16921. image: {
  16922. source: "./media/characters/umiko/buizel.svg",
  16923. extra: 172 / 157,
  16924. bottom: 0.01
  16925. },
  16926. form: "buizel",
  16927. default: true
  16928. },
  16929. floatzel: {
  16930. height: math.unit(5 + 9 / 12, "feet"),
  16931. weight: math.unit(250, "lb"),
  16932. name: "Front",
  16933. image: {
  16934. source: "./media/characters/umiko/floatzel.svg",
  16935. extra: 1076/1006,
  16936. bottom: 15/1091
  16937. },
  16938. form: "floatzel",
  16939. default: true
  16940. },
  16941. },
  16942. [
  16943. {
  16944. name: "Normal",
  16945. height: math.unit(2 + 5 / 12, "feet"),
  16946. form: "buizel",
  16947. default: true
  16948. },
  16949. {
  16950. name: "Normal",
  16951. height: math.unit(5 + 9 / 12, "feet"),
  16952. form: "floatzel",
  16953. default: true
  16954. },
  16955. ],
  16956. {
  16957. "buizel": {
  16958. name: "Buizel"
  16959. },
  16960. "floatzel": {
  16961. name: "Floatzel",
  16962. default: true
  16963. }
  16964. }
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  16968. {
  16969. front: {
  16970. height: math.unit(6 + 2 / 12, "feet"),
  16971. weight: math.unit(146, "lb"),
  16972. name: "Front",
  16973. image: {
  16974. source: "./media/characters/iliac/front.svg",
  16975. extra: 389 / 365,
  16976. bottom: 0.035
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(6 + 2 / 12, "feet"),
  16984. default: true
  16985. },
  16986. ]
  16987. ))
  16988. characterMakers.push(() => makeCharacter(
  16989. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  16990. {
  16991. front: {
  16992. height: math.unit(6, "feet"),
  16993. weight: math.unit(170, "lb"),
  16994. name: "Front",
  16995. image: {
  16996. source: "./media/characters/topaz/front.svg",
  16997. extra: 317 / 303,
  16998. bottom: 0.055
  16999. }
  17000. },
  17001. },
  17002. [
  17003. {
  17004. name: "Normal",
  17005. height: math.unit(6, "feet"),
  17006. default: true
  17007. },
  17008. ]
  17009. ))
  17010. characterMakers.push(() => makeCharacter(
  17011. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  17012. {
  17013. front: {
  17014. height: math.unit(5 + 11 / 12, "feet"),
  17015. weight: math.unit(144, "lb"),
  17016. name: "Front",
  17017. image: {
  17018. source: "./media/characters/gabriel/front.svg",
  17019. extra: 285 / 262,
  17020. bottom: 0.004
  17021. }
  17022. },
  17023. },
  17024. [
  17025. {
  17026. name: "Normal",
  17027. height: math.unit(5 + 11 / 12, "feet"),
  17028. default: true
  17029. },
  17030. ]
  17031. ))
  17032. characterMakers.push(() => makeCharacter(
  17033. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  17034. {
  17035. side: {
  17036. height: math.unit(6 + 5 / 12, "feet"),
  17037. weight: math.unit(300, "lb"),
  17038. name: "Side",
  17039. image: {
  17040. source: "./media/characters/tempest-suicune/side.svg",
  17041. extra: 195 / 154,
  17042. bottom: 0.04
  17043. }
  17044. },
  17045. },
  17046. [
  17047. {
  17048. name: "Normal",
  17049. height: math.unit(6 + 5 / 12, "feet"),
  17050. default: true
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  17056. {
  17057. front: {
  17058. height: math.unit(7 + 2 / 12, "feet"),
  17059. weight: math.unit(322, "lb"),
  17060. name: "Front",
  17061. image: {
  17062. source: "./media/characters/vulcan/front.svg",
  17063. extra: 154 / 147,
  17064. bottom: 0.04
  17065. }
  17066. },
  17067. },
  17068. [
  17069. {
  17070. name: "Normal",
  17071. height: math.unit(7 + 2 / 12, "feet"),
  17072. default: true
  17073. },
  17074. ]
  17075. ))
  17076. characterMakers.push(() => makeCharacter(
  17077. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  17078. {
  17079. front: {
  17080. height: math.unit(5 + 10 / 12, "feet"),
  17081. weight: math.unit(264, "lb"),
  17082. name: "Front",
  17083. image: {
  17084. source: "./media/characters/gault/front.svg",
  17085. extra: 161 / 140,
  17086. bottom: 0.028
  17087. }
  17088. },
  17089. },
  17090. [
  17091. {
  17092. name: "Normal",
  17093. height: math.unit(5 + 10 / 12, "feet"),
  17094. default: true
  17095. },
  17096. ]
  17097. ))
  17098. characterMakers.push(() => makeCharacter(
  17099. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  17100. {
  17101. front: {
  17102. height: math.unit(6, "feet"),
  17103. weight: math.unit(150, "lb"),
  17104. name: "Front",
  17105. image: {
  17106. source: "./media/characters/shard/front.svg",
  17107. extra: 273 / 238,
  17108. bottom: 0.02
  17109. }
  17110. },
  17111. },
  17112. [
  17113. {
  17114. name: "Normal",
  17115. height: math.unit(3 + 6 / 12, "feet"),
  17116. default: true
  17117. },
  17118. ]
  17119. ))
  17120. characterMakers.push(() => makeCharacter(
  17121. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  17122. {
  17123. front: {
  17124. height: math.unit(5 + 11 / 12, "feet"),
  17125. weight: math.unit(146, "lb"),
  17126. name: "Front",
  17127. image: {
  17128. source: "./media/characters/ashe/front.svg",
  17129. extra: 400 / 373,
  17130. bottom: 0.01
  17131. }
  17132. },
  17133. },
  17134. [
  17135. {
  17136. name: "Normal",
  17137. height: math.unit(5 + 11 / 12, "feet"),
  17138. default: true
  17139. },
  17140. ]
  17141. ))
  17142. characterMakers.push(() => makeCharacter(
  17143. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  17144. {
  17145. front: {
  17146. height: math.unit(5 + 5 / 12, "feet"),
  17147. weight: math.unit(135, "lb"),
  17148. name: "Front",
  17149. image: {
  17150. source: "./media/characters/beatrix/front.svg",
  17151. extra: 392 / 379,
  17152. bottom: 0.01
  17153. }
  17154. },
  17155. },
  17156. [
  17157. {
  17158. name: "Normal",
  17159. height: math.unit(6, "feet"),
  17160. default: true
  17161. },
  17162. ]
  17163. ))
  17164. characterMakers.push(() => makeCharacter(
  17165. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  17166. {
  17167. front: {
  17168. height: math.unit(6 + 2/12, "feet"),
  17169. weight: math.unit(135, "lb"),
  17170. name: "Front",
  17171. image: {
  17172. source: "./media/characters/ignatius/front.svg",
  17173. extra: 1380/1259,
  17174. bottom: 27/1407
  17175. }
  17176. },
  17177. },
  17178. [
  17179. {
  17180. name: "Normal",
  17181. height: math.unit(6 + 2/12, "feet"),
  17182. default: true
  17183. },
  17184. ]
  17185. ))
  17186. characterMakers.push(() => makeCharacter(
  17187. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  17188. {
  17189. front: {
  17190. height: math.unit(6 + 2 / 12, "feet"),
  17191. weight: math.unit(138, "lb"),
  17192. name: "Front",
  17193. image: {
  17194. source: "./media/characters/mei-li/front.svg",
  17195. extra: 237 / 229,
  17196. bottom: 0.03
  17197. }
  17198. },
  17199. },
  17200. [
  17201. {
  17202. name: "Normal",
  17203. height: math.unit(6 + 2 / 12, "feet"),
  17204. default: true
  17205. },
  17206. ]
  17207. ))
  17208. characterMakers.push(() => makeCharacter(
  17209. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  17210. {
  17211. front: {
  17212. height: math.unit(2 + 4 / 12, "feet"),
  17213. weight: math.unit(62, "lb"),
  17214. name: "Front",
  17215. image: {
  17216. source: "./media/characters/puru/front.svg",
  17217. extra: 206 / 149,
  17218. bottom: 0.06
  17219. }
  17220. },
  17221. },
  17222. [
  17223. {
  17224. name: "Normal",
  17225. height: math.unit(2 + 4 / 12, "feet"),
  17226. default: true
  17227. },
  17228. ]
  17229. ))
  17230. characterMakers.push(() => makeCharacter(
  17231. { name: "Kee", species: ["aardwolf"], tags: ["anthro", "taur"] },
  17232. {
  17233. anthro: {
  17234. height: math.unit(5 + 8/12, "feet"),
  17235. weight: math.unit(200, "lb"),
  17236. energyNeed: math.unit(2000, "kcal"),
  17237. name: "Anthro",
  17238. image: {
  17239. source: "./media/characters/kee/anthro.svg",
  17240. extra: 3251/3184,
  17241. bottom: 250/3501
  17242. }
  17243. },
  17244. taur: {
  17245. height: math.unit(11, "feet"),
  17246. weight: math.unit(500, "lb"),
  17247. energyNeed: math.unit(5000, "kcal"),
  17248. name: "Taur",
  17249. image: {
  17250. source: "./media/characters/kee/taur.svg",
  17251. extra: 1362/1320,
  17252. bottom: 83/1445
  17253. }
  17254. },
  17255. },
  17256. [
  17257. {
  17258. name: "Normal",
  17259. height: math.unit(5 + 8/12, "feet"),
  17260. default: true
  17261. },
  17262. {
  17263. name: "Macro",
  17264. height: math.unit(35, "feet")
  17265. },
  17266. ]
  17267. ))
  17268. characterMakers.push(() => makeCharacter(
  17269. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  17270. {
  17271. anthro: {
  17272. height: math.unit(7, "feet"),
  17273. weight: math.unit(190, "lb"),
  17274. name: "Anthro",
  17275. image: {
  17276. source: "./media/characters/cobalt-dracha/anthro.svg",
  17277. extra: 231 / 225,
  17278. bottom: 0.04
  17279. }
  17280. },
  17281. feral: {
  17282. height: math.unit(9 + 7 / 12, "feet"),
  17283. weight: math.unit(294, "lb"),
  17284. name: "Feral",
  17285. image: {
  17286. source: "./media/characters/cobalt-dracha/feral.svg",
  17287. extra: 692 / 633,
  17288. bottom: 0.05
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(7, "feet"),
  17296. default: true
  17297. },
  17298. ]
  17299. ))
  17300. characterMakers.push(() => makeCharacter(
  17301. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  17302. {
  17303. fallen: {
  17304. height: math.unit(11 + 8 / 12, "feet"),
  17305. weight: math.unit(485, "lb"),
  17306. name: "Java (Fallen)",
  17307. rename: true,
  17308. image: {
  17309. source: "./media/characters/java/fallen.svg",
  17310. extra: 226 / 208,
  17311. bottom: 0.005
  17312. }
  17313. },
  17314. godkin: {
  17315. height: math.unit(10 + 6 / 12, "feet"),
  17316. weight: math.unit(328, "lb"),
  17317. name: "Java (Godkin)",
  17318. rename: true,
  17319. image: {
  17320. source: "./media/characters/java/godkin.svg",
  17321. extra: 1104/1068,
  17322. bottom: 36/1140
  17323. }
  17324. },
  17325. },
  17326. [
  17327. {
  17328. name: "Normal",
  17329. height: math.unit(11 + 8 / 12, "feet"),
  17330. default: true
  17331. },
  17332. ]
  17333. ))
  17334. characterMakers.push(() => makeCharacter(
  17335. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  17336. {
  17337. front: {
  17338. height: math.unit(5 + 9 / 12, "feet"),
  17339. weight: math.unit(170, "lb"),
  17340. name: "Front",
  17341. image: {
  17342. source: "./media/characters/purna/front.svg",
  17343. extra: 239 / 229,
  17344. bottom: 0.01
  17345. }
  17346. },
  17347. },
  17348. [
  17349. {
  17350. name: "Normal",
  17351. height: math.unit(5 + 9 / 12, "feet"),
  17352. default: true
  17353. },
  17354. ]
  17355. ))
  17356. characterMakers.push(() => makeCharacter(
  17357. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  17358. {
  17359. front: {
  17360. height: math.unit(5 + 9 / 12, "feet"),
  17361. weight: math.unit(142, "lb"),
  17362. name: "Front",
  17363. image: {
  17364. source: "./media/characters/kuva/front.svg",
  17365. extra: 281 / 271,
  17366. bottom: 0.006
  17367. }
  17368. },
  17369. },
  17370. [
  17371. {
  17372. name: "Normal",
  17373. height: math.unit(5 + 9 / 12, "feet"),
  17374. default: true
  17375. },
  17376. ]
  17377. ))
  17378. characterMakers.push(() => makeCharacter(
  17379. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  17380. {
  17381. anthro: {
  17382. height: math.unit(9 + 2 / 12, "feet"),
  17383. weight: math.unit(270, "lb"),
  17384. name: "Anthro",
  17385. image: {
  17386. source: "./media/characters/embra/anthro.svg",
  17387. extra: 200 / 187,
  17388. bottom: 0.02
  17389. }
  17390. },
  17391. feral: {
  17392. height: math.unit(18 + 8 / 12, "feet"),
  17393. weight: math.unit(576, "lb"),
  17394. name: "Feral",
  17395. image: {
  17396. source: "./media/characters/embra/feral.svg",
  17397. extra: 152 / 137,
  17398. bottom: 0.037
  17399. }
  17400. },
  17401. },
  17402. [
  17403. {
  17404. name: "Normal",
  17405. height: math.unit(9 + 2 / 12, "feet"),
  17406. default: true
  17407. },
  17408. ]
  17409. ))
  17410. characterMakers.push(() => makeCharacter(
  17411. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  17412. {
  17413. anthro: {
  17414. height: math.unit(10 + 9 / 12, "feet"),
  17415. weight: math.unit(224, "lb"),
  17416. name: "Anthro",
  17417. image: {
  17418. source: "./media/characters/grottos/anthro.svg",
  17419. extra: 350 / 332,
  17420. bottom: 0.045
  17421. }
  17422. },
  17423. feral: {
  17424. height: math.unit(20 + 7 / 12, "feet"),
  17425. weight: math.unit(629, "lb"),
  17426. name: "Feral",
  17427. image: {
  17428. source: "./media/characters/grottos/feral.svg",
  17429. extra: 207 / 190,
  17430. bottom: 0.05
  17431. }
  17432. },
  17433. },
  17434. [
  17435. {
  17436. name: "Normal",
  17437. height: math.unit(10 + 9 / 12, "feet"),
  17438. default: true
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  17444. {
  17445. anthro: {
  17446. height: math.unit(9 + 6 / 12, "feet"),
  17447. weight: math.unit(298, "lb"),
  17448. name: "Anthro",
  17449. image: {
  17450. source: "./media/characters/frifna/anthro.svg",
  17451. extra: 282 / 269,
  17452. bottom: 0.015
  17453. }
  17454. },
  17455. feral: {
  17456. height: math.unit(16 + 2 / 12, "feet"),
  17457. weight: math.unit(624, "lb"),
  17458. name: "Feral",
  17459. image: {
  17460. source: "./media/characters/frifna/feral.svg"
  17461. }
  17462. },
  17463. },
  17464. [
  17465. {
  17466. name: "Normal",
  17467. height: math.unit(9 + 6 / 12, "feet"),
  17468. default: true
  17469. },
  17470. ]
  17471. ))
  17472. characterMakers.push(() => makeCharacter(
  17473. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  17474. {
  17475. front: {
  17476. height: math.unit(6 + 2 / 12, "feet"),
  17477. weight: math.unit(168, "lb"),
  17478. name: "Front",
  17479. image: {
  17480. source: "./media/characters/elise/front.svg",
  17481. extra: 276 / 271
  17482. }
  17483. },
  17484. },
  17485. [
  17486. {
  17487. name: "Normal",
  17488. height: math.unit(6 + 2 / 12, "feet"),
  17489. default: true
  17490. },
  17491. ]
  17492. ))
  17493. characterMakers.push(() => makeCharacter(
  17494. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  17495. {
  17496. front: {
  17497. height: math.unit(5 + 10 / 12, "feet"),
  17498. weight: math.unit(210, "lb"),
  17499. name: "Front",
  17500. image: {
  17501. source: "./media/characters/glade/front.svg",
  17502. extra: 258 / 247,
  17503. bottom: 0.008
  17504. }
  17505. },
  17506. },
  17507. [
  17508. {
  17509. name: "Normal",
  17510. height: math.unit(5 + 10 / 12, "feet"),
  17511. default: true
  17512. },
  17513. ]
  17514. ))
  17515. characterMakers.push(() => makeCharacter(
  17516. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  17517. {
  17518. front: {
  17519. height: math.unit(5 + 10 / 12, "feet"),
  17520. weight: math.unit(129, "lb"),
  17521. name: "Front",
  17522. image: {
  17523. source: "./media/characters/rina/front.svg",
  17524. extra: 266 / 255,
  17525. bottom: 0.005
  17526. }
  17527. },
  17528. },
  17529. [
  17530. {
  17531. name: "Normal",
  17532. height: math.unit(5 + 10 / 12, "feet"),
  17533. default: true
  17534. },
  17535. ]
  17536. ))
  17537. characterMakers.push(() => makeCharacter(
  17538. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  17539. {
  17540. front: {
  17541. height: math.unit(6 + 1 / 12, "feet"),
  17542. weight: math.unit(192, "lb"),
  17543. name: "Front",
  17544. image: {
  17545. source: "./media/characters/veronica/front.svg",
  17546. extra: 319 / 309,
  17547. bottom: 0.005
  17548. }
  17549. },
  17550. },
  17551. [
  17552. {
  17553. name: "Normal",
  17554. height: math.unit(6 + 1 / 12, "feet"),
  17555. default: true
  17556. },
  17557. ]
  17558. ))
  17559. characterMakers.push(() => makeCharacter(
  17560. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  17561. {
  17562. front: {
  17563. height: math.unit(9 + 3 / 12, "feet"),
  17564. weight: math.unit(1100, "lb"),
  17565. name: "Front",
  17566. image: {
  17567. source: "./media/characters/braxton/front.svg",
  17568. extra: 1057 / 984,
  17569. bottom: 0.05
  17570. }
  17571. },
  17572. },
  17573. [
  17574. {
  17575. name: "Normal",
  17576. height: math.unit(9 + 3 / 12, "feet")
  17577. },
  17578. {
  17579. name: "Giant",
  17580. height: math.unit(300, "feet"),
  17581. default: true
  17582. },
  17583. {
  17584. name: "Macro",
  17585. height: math.unit(700, "feet")
  17586. },
  17587. {
  17588. name: "Megamacro",
  17589. height: math.unit(6000, "feet")
  17590. },
  17591. ]
  17592. ))
  17593. characterMakers.push(() => makeCharacter(
  17594. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  17595. {
  17596. front: {
  17597. height: math.unit(6 + 7 / 12, "feet"),
  17598. weight: math.unit(150, "lb"),
  17599. name: "Front",
  17600. image: {
  17601. source: "./media/characters/blue-feyonics/front.svg",
  17602. extra: 1403 / 1306,
  17603. bottom: 0.047
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(6 + 7 / 12, "feet"),
  17611. default: true
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  17617. {
  17618. front: {
  17619. height: math.unit(1.8, "meters"),
  17620. weight: math.unit(60, "kg"),
  17621. name: "Front",
  17622. image: {
  17623. source: "./media/characters/maxwell/front.svg",
  17624. extra: 2060 / 1873
  17625. }
  17626. },
  17627. },
  17628. [
  17629. {
  17630. name: "Micro",
  17631. height: math.unit(1, "mm")
  17632. },
  17633. {
  17634. name: "Normal",
  17635. height: math.unit(1.8, "meter"),
  17636. default: true
  17637. },
  17638. {
  17639. name: "Macro",
  17640. height: math.unit(30, "meters")
  17641. },
  17642. {
  17643. name: "Megamacro",
  17644. height: math.unit(10, "km")
  17645. },
  17646. ]
  17647. ))
  17648. characterMakers.push(() => makeCharacter(
  17649. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  17650. {
  17651. front: {
  17652. height: math.unit(6, "feet"),
  17653. weight: math.unit(150, "lb"),
  17654. name: "Front",
  17655. image: {
  17656. source: "./media/characters/jack/front.svg",
  17657. extra: 1754 / 1640,
  17658. bottom: 0.01
  17659. }
  17660. },
  17661. },
  17662. [
  17663. {
  17664. name: "Normal",
  17665. height: math.unit(80000, "feet"),
  17666. default: true
  17667. },
  17668. {
  17669. name: "Max size",
  17670. height: math.unit(10, "lightyears")
  17671. },
  17672. ]
  17673. ))
  17674. characterMakers.push(() => makeCharacter(
  17675. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  17676. {
  17677. urban: {
  17678. height: math.unit(5, "feet"),
  17679. weight: math.unit(240, "lb"),
  17680. name: "Urban",
  17681. image: {
  17682. source: "./media/characters/cafat/urban.svg",
  17683. extra: 1223/1126,
  17684. bottom: 205/1428
  17685. }
  17686. },
  17687. summer: {
  17688. height: math.unit(5, "feet"),
  17689. weight: math.unit(240, "lb"),
  17690. name: "Summer",
  17691. image: {
  17692. source: "./media/characters/cafat/summer.svg",
  17693. extra: 1223/1126,
  17694. bottom: 205/1428
  17695. }
  17696. },
  17697. winter: {
  17698. height: math.unit(5, "feet"),
  17699. weight: math.unit(240, "lb"),
  17700. name: "Winter",
  17701. image: {
  17702. source: "./media/characters/cafat/winter.svg",
  17703. extra: 1223/1126,
  17704. bottom: 205/1428
  17705. }
  17706. },
  17707. lingerie: {
  17708. height: math.unit(5, "feet"),
  17709. weight: math.unit(240, "lb"),
  17710. name: "Lingerie",
  17711. image: {
  17712. source: "./media/characters/cafat/lingerie.svg",
  17713. extra: 1223/1126,
  17714. bottom: 205/1428
  17715. }
  17716. },
  17717. upright: {
  17718. height: math.unit(6.3, "feet"),
  17719. weight: math.unit(240, "lb"),
  17720. name: "Upright",
  17721. image: {
  17722. source: "./media/characters/cafat/upright.svg",
  17723. bottom: 0.01
  17724. }
  17725. },
  17726. uprightFull: {
  17727. height: math.unit(6.3, "feet"),
  17728. weight: math.unit(240, "lb"),
  17729. name: "Upright (Full)",
  17730. image: {
  17731. source: "./media/characters/cafat/upright-full.svg",
  17732. bottom: 0.01
  17733. }
  17734. },
  17735. },
  17736. [
  17737. {
  17738. name: "Small",
  17739. height: math.unit(5, "feet"),
  17740. default: true
  17741. },
  17742. {
  17743. name: "Large",
  17744. height: math.unit(13, "feet")
  17745. },
  17746. ]
  17747. ))
  17748. characterMakers.push(() => makeCharacter(
  17749. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  17750. {
  17751. front: {
  17752. height: math.unit(6, "feet"),
  17753. weight: math.unit(150, "lb"),
  17754. name: "Front",
  17755. image: {
  17756. source: "./media/characters/verin-raharra/front.svg",
  17757. extra: 5019 / 4835,
  17758. bottom: 0.023
  17759. }
  17760. },
  17761. },
  17762. [
  17763. {
  17764. name: "Normal",
  17765. height: math.unit(7 + 5 / 12, "feet"),
  17766. default: true
  17767. },
  17768. {
  17769. name: "Upsized",
  17770. height: math.unit(20, "feet")
  17771. },
  17772. ]
  17773. ))
  17774. characterMakers.push(() => makeCharacter(
  17775. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  17776. {
  17777. front: {
  17778. height: math.unit(7, "feet"),
  17779. weight: math.unit(230, "lb"),
  17780. name: "Front",
  17781. image: {
  17782. source: "./media/characters/nakata/front.svg",
  17783. extra: 1.005,
  17784. bottom: 0.01
  17785. }
  17786. },
  17787. },
  17788. [
  17789. {
  17790. name: "Normal",
  17791. height: math.unit(7, "feet"),
  17792. default: true
  17793. },
  17794. {
  17795. name: "Big",
  17796. height: math.unit(14, "feet")
  17797. },
  17798. {
  17799. name: "Macro",
  17800. height: math.unit(400, "feet")
  17801. },
  17802. ]
  17803. ))
  17804. characterMakers.push(() => makeCharacter(
  17805. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  17806. {
  17807. front: {
  17808. height: math.unit(4.91, "feet"),
  17809. weight: math.unit(100, "lb"),
  17810. name: "Front",
  17811. image: {
  17812. source: "./media/characters/lily/front.svg",
  17813. extra: 1585 / 1415,
  17814. bottom: 0.02
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(4.91, "feet"),
  17822. default: true
  17823. },
  17824. ]
  17825. ))
  17826. characterMakers.push(() => makeCharacter(
  17827. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  17828. {
  17829. laying: {
  17830. height: math.unit(4 + 4 / 12, "feet"),
  17831. weight: math.unit(600, "lb"),
  17832. name: "Laying",
  17833. image: {
  17834. source: "./media/characters/sheila/laying.svg",
  17835. extra: 1333 / 1265,
  17836. bottom: 0.16
  17837. }
  17838. },
  17839. },
  17840. [
  17841. {
  17842. name: "Normal",
  17843. height: math.unit(4 + 4 / 12, "feet"),
  17844. default: true
  17845. },
  17846. ]
  17847. ))
  17848. characterMakers.push(() => makeCharacter(
  17849. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  17850. {
  17851. front: {
  17852. height: math.unit(6, "feet"),
  17853. weight: math.unit(190, "lb"),
  17854. name: "Front",
  17855. image: {
  17856. source: "./media/characters/sax/front.svg",
  17857. extra: 1187 / 973,
  17858. bottom: 0.042
  17859. }
  17860. },
  17861. },
  17862. [
  17863. {
  17864. name: "Micro",
  17865. height: math.unit(4, "inches"),
  17866. default: true
  17867. },
  17868. ]
  17869. ))
  17870. characterMakers.push(() => makeCharacter(
  17871. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  17872. {
  17873. front: {
  17874. height: math.unit(6, "feet"),
  17875. weight: math.unit(150, "lb"),
  17876. name: "Front",
  17877. image: {
  17878. source: "./media/characters/pandora/front.svg",
  17879. extra: 2720 / 2556,
  17880. bottom: 0.015
  17881. }
  17882. },
  17883. back: {
  17884. height: math.unit(6, "feet"),
  17885. weight: math.unit(150, "lb"),
  17886. name: "Back",
  17887. image: {
  17888. source: "./media/characters/pandora/back.svg",
  17889. extra: 2720 / 2556,
  17890. bottom: 0.01
  17891. }
  17892. },
  17893. beans: {
  17894. height: math.unit(6 / 8, "feet"),
  17895. name: "Beans",
  17896. image: {
  17897. source: "./media/characters/pandora/beans.svg"
  17898. }
  17899. },
  17900. collar: {
  17901. height: math.unit(0.31, "feet"),
  17902. name: "Collar",
  17903. image: {
  17904. source: "./media/characters/pandora/collar.svg"
  17905. }
  17906. },
  17907. skirt: {
  17908. height: math.unit(6, "feet"),
  17909. weight: math.unit(150, "lb"),
  17910. name: "Skirt",
  17911. image: {
  17912. source: "./media/characters/pandora/skirt.svg",
  17913. extra: 1622 / 1525,
  17914. bottom: 0.015
  17915. }
  17916. },
  17917. hoodie: {
  17918. height: math.unit(6, "feet"),
  17919. weight: math.unit(150, "lb"),
  17920. name: "Hoodie",
  17921. image: {
  17922. source: "./media/characters/pandora/hoodie.svg",
  17923. extra: 1622 / 1525,
  17924. bottom: 0.015
  17925. }
  17926. },
  17927. casual: {
  17928. height: math.unit(6, "feet"),
  17929. weight: math.unit(150, "lb"),
  17930. name: "Casual",
  17931. image: {
  17932. source: "./media/characters/pandora/casual.svg",
  17933. extra: 1622 / 1525,
  17934. bottom: 0.015
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Normal",
  17941. height: math.unit(6, "feet")
  17942. },
  17943. {
  17944. name: "Big Steppy",
  17945. height: math.unit(1, "km"),
  17946. default: true
  17947. },
  17948. {
  17949. name: "Galactic Steppy",
  17950. height: math.unit(2, "gigameters")
  17951. },
  17952. ]
  17953. ))
  17954. characterMakers.push(() => makeCharacter(
  17955. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  17956. {
  17957. side: {
  17958. height: math.unit(10, "feet"),
  17959. weight: math.unit(800, "kg"),
  17960. name: "Side",
  17961. image: {
  17962. source: "./media/characters/venio-darcony/side.svg",
  17963. extra: 1373 / 1003,
  17964. bottom: 0.037
  17965. }
  17966. },
  17967. front: {
  17968. height: math.unit(19, "feet"),
  17969. weight: math.unit(800, "kg"),
  17970. name: "Front",
  17971. image: {
  17972. source: "./media/characters/venio-darcony/front.svg"
  17973. }
  17974. },
  17975. back: {
  17976. height: math.unit(19, "feet"),
  17977. weight: math.unit(800, "kg"),
  17978. name: "Back",
  17979. image: {
  17980. source: "./media/characters/venio-darcony/back.svg"
  17981. }
  17982. },
  17983. sideNsfw: {
  17984. height: math.unit(10, "feet"),
  17985. weight: math.unit(800, "kg"),
  17986. name: "Side (NSFW)",
  17987. image: {
  17988. source: "./media/characters/venio-darcony/side-nsfw.svg",
  17989. extra: 1373 / 1003,
  17990. bottom: 0.037
  17991. }
  17992. },
  17993. frontNsfw: {
  17994. height: math.unit(19, "feet"),
  17995. weight: math.unit(800, "kg"),
  17996. name: "Front (NSFW)",
  17997. image: {
  17998. source: "./media/characters/venio-darcony/front-nsfw.svg"
  17999. }
  18000. },
  18001. backNsfw: {
  18002. height: math.unit(19, "feet"),
  18003. weight: math.unit(800, "kg"),
  18004. name: "Back (NSFW)",
  18005. image: {
  18006. source: "./media/characters/venio-darcony/back-nsfw.svg"
  18007. }
  18008. },
  18009. sideArmored: {
  18010. height: math.unit(10, "feet"),
  18011. weight: math.unit(800, "kg"),
  18012. name: "Side (Armored)",
  18013. image: {
  18014. source: "./media/characters/venio-darcony/side-armored.svg",
  18015. extra: 1373 / 1003,
  18016. bottom: 0.037
  18017. }
  18018. },
  18019. frontArmored: {
  18020. height: math.unit(19, "feet"),
  18021. weight: math.unit(900, "kg"),
  18022. name: "Front (Armored)",
  18023. image: {
  18024. source: "./media/characters/venio-darcony/front-armored.svg"
  18025. }
  18026. },
  18027. backArmored: {
  18028. height: math.unit(19, "feet"),
  18029. weight: math.unit(900, "kg"),
  18030. name: "Back (Armored)",
  18031. image: {
  18032. source: "./media/characters/venio-darcony/back-armored.svg"
  18033. }
  18034. },
  18035. sword: {
  18036. height: math.unit(10, "feet"),
  18037. weight: math.unit(50, "lb"),
  18038. name: "Sword",
  18039. image: {
  18040. source: "./media/characters/venio-darcony/sword.svg"
  18041. }
  18042. },
  18043. },
  18044. [
  18045. {
  18046. name: "Normal",
  18047. height: math.unit(10, "feet")
  18048. },
  18049. {
  18050. name: "Macro",
  18051. height: math.unit(130, "feet"),
  18052. default: true
  18053. },
  18054. {
  18055. name: "Macro+",
  18056. height: math.unit(240, "feet")
  18057. },
  18058. ]
  18059. ))
  18060. characterMakers.push(() => makeCharacter(
  18061. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  18062. {
  18063. front: {
  18064. height: math.unit(6, "feet"),
  18065. weight: math.unit(150, "lb"),
  18066. name: "Front",
  18067. image: {
  18068. source: "./media/characters/veski/front.svg",
  18069. extra: 1299 / 1225,
  18070. bottom: 0.04
  18071. }
  18072. },
  18073. back: {
  18074. height: math.unit(6, "feet"),
  18075. weight: math.unit(150, "lb"),
  18076. name: "Back",
  18077. image: {
  18078. source: "./media/characters/veski/back.svg",
  18079. extra: 1299 / 1225,
  18080. bottom: 0.008
  18081. }
  18082. },
  18083. maw: {
  18084. height: math.unit(1.5 * 1.21, "feet"),
  18085. name: "Maw",
  18086. image: {
  18087. source: "./media/characters/veski/maw.svg"
  18088. }
  18089. },
  18090. },
  18091. [
  18092. {
  18093. name: "Macro",
  18094. height: math.unit(2, "km"),
  18095. default: true
  18096. },
  18097. ]
  18098. ))
  18099. characterMakers.push(() => makeCharacter(
  18100. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  18101. {
  18102. front: {
  18103. height: math.unit(5 + 7 / 12, "feet"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/isabelle/front.svg",
  18107. extra: 2130 / 1976,
  18108. bottom: 0.05
  18109. }
  18110. },
  18111. },
  18112. [
  18113. {
  18114. name: "Supermicro",
  18115. height: math.unit(10, "micrometers")
  18116. },
  18117. {
  18118. name: "Micro",
  18119. height: math.unit(1, "inch")
  18120. },
  18121. {
  18122. name: "Tiny",
  18123. height: math.unit(5, "inches")
  18124. },
  18125. {
  18126. name: "Standard",
  18127. height: math.unit(5 + 7 / 12, "inches")
  18128. },
  18129. {
  18130. name: "Macro",
  18131. height: math.unit(80, "meters"),
  18132. default: true
  18133. },
  18134. {
  18135. name: "Megamacro",
  18136. height: math.unit(250, "meters")
  18137. },
  18138. {
  18139. name: "Gigamacro",
  18140. height: math.unit(5, "km")
  18141. },
  18142. {
  18143. name: "Cosmic",
  18144. height: math.unit(2.5e6, "miles")
  18145. },
  18146. ]
  18147. ))
  18148. characterMakers.push(() => makeCharacter(
  18149. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  18150. {
  18151. front: {
  18152. height: math.unit(6, "feet"),
  18153. weight: math.unit(150, "lb"),
  18154. name: "Front",
  18155. image: {
  18156. source: "./media/characters/hanzo/front.svg",
  18157. extra: 374 / 344,
  18158. bottom: 0.02
  18159. }
  18160. },
  18161. },
  18162. [
  18163. {
  18164. name: "Normal",
  18165. height: math.unit(8, "feet"),
  18166. default: true
  18167. },
  18168. ]
  18169. ))
  18170. characterMakers.push(() => makeCharacter(
  18171. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  18172. {
  18173. front: {
  18174. height: math.unit(7, "feet"),
  18175. weight: math.unit(130, "lb"),
  18176. name: "Front",
  18177. image: {
  18178. source: "./media/characters/anna/front.svg",
  18179. extra: 169 / 145,
  18180. bottom: 0.06
  18181. }
  18182. },
  18183. full: {
  18184. height: math.unit(4.96, "feet"),
  18185. weight: math.unit(220, "lb"),
  18186. name: "Full",
  18187. image: {
  18188. source: "./media/characters/anna/full.svg",
  18189. extra: 138 / 114,
  18190. bottom: 0.15
  18191. }
  18192. },
  18193. tongue: {
  18194. height: math.unit(2.53, "feet"),
  18195. name: "Tongue",
  18196. image: {
  18197. source: "./media/characters/anna/tongue.svg"
  18198. }
  18199. },
  18200. },
  18201. [
  18202. {
  18203. name: "Normal",
  18204. height: math.unit(7, "feet"),
  18205. default: true
  18206. },
  18207. ]
  18208. ))
  18209. characterMakers.push(() => makeCharacter(
  18210. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  18211. {
  18212. front: {
  18213. height: math.unit(7, "feet"),
  18214. weight: math.unit(150, "lb"),
  18215. name: "Front",
  18216. image: {
  18217. source: "./media/characters/ian-corvid/front.svg",
  18218. extra: 150 / 142,
  18219. bottom: 0.02
  18220. }
  18221. },
  18222. back: {
  18223. height: math.unit(7, "feet"),
  18224. weight: math.unit(150, "lb"),
  18225. name: "Back",
  18226. image: {
  18227. source: "./media/characters/ian-corvid/back.svg",
  18228. extra: 150 / 143,
  18229. bottom: 0.01
  18230. }
  18231. },
  18232. stomping: {
  18233. height: math.unit(7, "feet"),
  18234. weight: math.unit(150, "lb"),
  18235. name: "Stomping",
  18236. image: {
  18237. source: "./media/characters/ian-corvid/stomping.svg",
  18238. extra: 76 / 72
  18239. }
  18240. },
  18241. sitting: {
  18242. height: math.unit(7 / 1.8, "feet"),
  18243. weight: math.unit(150, "lb"),
  18244. name: "Sitting",
  18245. image: {
  18246. source: "./media/characters/ian-corvid/sitting.svg",
  18247. extra: 1400 / 1269,
  18248. bottom: 0.15
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Tiny Microw",
  18255. height: math.unit(1, "inch")
  18256. },
  18257. {
  18258. name: "Microw",
  18259. height: math.unit(6, "inches")
  18260. },
  18261. {
  18262. name: "Crow",
  18263. height: math.unit(7 + 1 / 12, "feet"),
  18264. default: true
  18265. },
  18266. {
  18267. name: "Macrow",
  18268. height: math.unit(176, "feet")
  18269. },
  18270. ]
  18271. ))
  18272. characterMakers.push(() => makeCharacter(
  18273. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  18274. {
  18275. front: {
  18276. height: math.unit(5 + 7 / 12, "feet"),
  18277. weight: math.unit(147, "lb"),
  18278. name: "Front",
  18279. image: {
  18280. source: "./media/characters/natalie-kellon/front.svg",
  18281. extra: 1214 / 1141,
  18282. bottom: 0.02
  18283. }
  18284. },
  18285. },
  18286. [
  18287. {
  18288. name: "Micro",
  18289. height: math.unit(1 / 16, "inch")
  18290. },
  18291. {
  18292. name: "Tiny",
  18293. height: math.unit(4, "inches")
  18294. },
  18295. {
  18296. name: "Normal",
  18297. height: math.unit(5 + 7 / 12, "feet"),
  18298. default: true
  18299. },
  18300. {
  18301. name: "Amazon",
  18302. height: math.unit(12, "feet")
  18303. },
  18304. {
  18305. name: "Giantess",
  18306. height: math.unit(160, "meters")
  18307. },
  18308. {
  18309. name: "Titaness",
  18310. height: math.unit(800, "meters")
  18311. },
  18312. ]
  18313. ))
  18314. characterMakers.push(() => makeCharacter(
  18315. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  18316. {
  18317. front: {
  18318. height: math.unit(6, "feet"),
  18319. weight: math.unit(150, "lb"),
  18320. name: "Front",
  18321. image: {
  18322. source: "./media/characters/alluria/front.svg",
  18323. extra: 806 / 738,
  18324. bottom: 0.01
  18325. }
  18326. },
  18327. side: {
  18328. height: math.unit(6, "feet"),
  18329. weight: math.unit(150, "lb"),
  18330. name: "Side",
  18331. image: {
  18332. source: "./media/characters/alluria/side.svg",
  18333. extra: 800 / 750,
  18334. }
  18335. },
  18336. back: {
  18337. height: math.unit(6, "feet"),
  18338. weight: math.unit(150, "lb"),
  18339. name: "Back",
  18340. image: {
  18341. source: "./media/characters/alluria/back.svg",
  18342. extra: 806 / 738,
  18343. }
  18344. },
  18345. frontMaid: {
  18346. height: math.unit(6, "feet"),
  18347. weight: math.unit(150, "lb"),
  18348. name: "Front (Maid)",
  18349. image: {
  18350. source: "./media/characters/alluria/front-maid.svg",
  18351. extra: 806 / 738,
  18352. bottom: 0.01
  18353. }
  18354. },
  18355. sideMaid: {
  18356. height: math.unit(6, "feet"),
  18357. weight: math.unit(150, "lb"),
  18358. name: "Side (Maid)",
  18359. image: {
  18360. source: "./media/characters/alluria/side-maid.svg",
  18361. extra: 800 / 750,
  18362. bottom: 0.005
  18363. }
  18364. },
  18365. backMaid: {
  18366. height: math.unit(6, "feet"),
  18367. weight: math.unit(150, "lb"),
  18368. name: "Back (Maid)",
  18369. image: {
  18370. source: "./media/characters/alluria/back-maid.svg",
  18371. extra: 806 / 738,
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Micro",
  18378. height: math.unit(6, "inches"),
  18379. default: true
  18380. },
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(6, "feet"),
  18388. weight: math.unit(150, "lb"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/kyle/front.svg",
  18392. extra: 1069 / 962,
  18393. bottom: 77.228 / 1727.45
  18394. }
  18395. },
  18396. },
  18397. [
  18398. {
  18399. name: "Macro",
  18400. height: math.unit(150, "feet"),
  18401. default: true
  18402. },
  18403. ]
  18404. ))
  18405. characterMakers.push(() => makeCharacter(
  18406. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  18407. {
  18408. front: {
  18409. height: math.unit(6, "feet"),
  18410. weight: math.unit(300, "lb"),
  18411. name: "Front",
  18412. image: {
  18413. source: "./media/characters/duncan/front.svg",
  18414. extra: 1650 / 1482,
  18415. bottom: 0.05
  18416. }
  18417. },
  18418. },
  18419. [
  18420. {
  18421. name: "Macro",
  18422. height: math.unit(100, "feet"),
  18423. default: true
  18424. },
  18425. ]
  18426. ))
  18427. characterMakers.push(() => makeCharacter(
  18428. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  18429. {
  18430. front: {
  18431. height: math.unit(5 + 4 / 12, "feet"),
  18432. weight: math.unit(220, "lb"),
  18433. name: "Front",
  18434. image: {
  18435. source: "./media/characters/memory/front.svg",
  18436. extra: 3641 / 3545,
  18437. bottom: 0.03
  18438. }
  18439. },
  18440. back: {
  18441. height: math.unit(5 + 4 / 12, "feet"),
  18442. weight: math.unit(220, "lb"),
  18443. name: "Back",
  18444. image: {
  18445. source: "./media/characters/memory/back.svg",
  18446. extra: 3641 / 3545,
  18447. bottom: 0.025
  18448. }
  18449. },
  18450. frontSkirt: {
  18451. height: math.unit(5 + 4 / 12, "feet"),
  18452. weight: math.unit(220, "lb"),
  18453. name: "Front (Skirt)",
  18454. image: {
  18455. source: "./media/characters/memory/front-skirt.svg",
  18456. extra: 3641 / 3545,
  18457. bottom: 0.03
  18458. }
  18459. },
  18460. frontDress: {
  18461. height: math.unit(5 + 4 / 12, "feet"),
  18462. weight: math.unit(220, "lb"),
  18463. name: "Front (Dress)",
  18464. image: {
  18465. source: "./media/characters/memory/front-dress.svg",
  18466. extra: 3641 / 3545,
  18467. bottom: 0.03
  18468. }
  18469. },
  18470. },
  18471. [
  18472. {
  18473. name: "Micro",
  18474. height: math.unit(6, "inches"),
  18475. default: true
  18476. },
  18477. {
  18478. name: "Normal",
  18479. height: math.unit(5 + 4 / 12, "feet")
  18480. },
  18481. ]
  18482. ))
  18483. characterMakers.push(() => makeCharacter(
  18484. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  18485. {
  18486. front: {
  18487. height: math.unit(4 + 11 / 12, "feet"),
  18488. weight: math.unit(100, "lb"),
  18489. name: "Front",
  18490. image: {
  18491. source: "./media/characters/luno/front.svg",
  18492. extra: 1535 / 1487,
  18493. bottom: 0.03
  18494. }
  18495. },
  18496. },
  18497. [
  18498. {
  18499. name: "Micro",
  18500. height: math.unit(3, "inches")
  18501. },
  18502. {
  18503. name: "Normal",
  18504. height: math.unit(4 + 11 / 12, "feet"),
  18505. default: true
  18506. },
  18507. {
  18508. name: "Macro",
  18509. height: math.unit(300, "feet")
  18510. },
  18511. {
  18512. name: "Megamacro",
  18513. height: math.unit(700, "miles")
  18514. },
  18515. ]
  18516. ))
  18517. characterMakers.push(() => makeCharacter(
  18518. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  18519. {
  18520. front: {
  18521. height: math.unit(6 + 2 / 12, "feet"),
  18522. weight: math.unit(170, "lb"),
  18523. name: "Front",
  18524. image: {
  18525. source: "./media/characters/jamesy/front.svg",
  18526. extra: 440 / 382,
  18527. bottom: 0.005
  18528. }
  18529. },
  18530. },
  18531. [
  18532. {
  18533. name: "Micro",
  18534. height: math.unit(3, "inches")
  18535. },
  18536. {
  18537. name: "Normal",
  18538. height: math.unit(6 + 2 / 12, "feet"),
  18539. default: true
  18540. },
  18541. {
  18542. name: "Macro",
  18543. height: math.unit(300, "feet")
  18544. },
  18545. {
  18546. name: "Megamacro",
  18547. height: math.unit(700, "miles")
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  18553. {
  18554. front: {
  18555. height: math.unit(6, "feet"),
  18556. weight: math.unit(160, "lb"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/mark/front.svg",
  18560. extra: 3300 / 3100,
  18561. bottom: 136.42 / 3440.47
  18562. }
  18563. },
  18564. },
  18565. [
  18566. {
  18567. name: "Macro",
  18568. height: math.unit(120, "meters")
  18569. },
  18570. {
  18571. name: "Bigger Macro",
  18572. height: math.unit(350, "meters")
  18573. },
  18574. {
  18575. name: "Megamacro",
  18576. height: math.unit(8, "km"),
  18577. default: true
  18578. },
  18579. {
  18580. name: "Continental",
  18581. height: math.unit(4550, "km")
  18582. },
  18583. {
  18584. name: "Planetary",
  18585. height: math.unit(65000, "km")
  18586. },
  18587. ]
  18588. ))
  18589. characterMakers.push(() => makeCharacter(
  18590. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  18591. {
  18592. front: {
  18593. height: math.unit(6, "feet"),
  18594. weight: math.unit(400, "lb"),
  18595. name: "Front",
  18596. image: {
  18597. source: "./media/characters/mac/front.svg",
  18598. extra: 1048 / 987.7,
  18599. bottom: 60 / 1107.6,
  18600. }
  18601. },
  18602. },
  18603. [
  18604. {
  18605. name: "Macro",
  18606. height: math.unit(500, "feet"),
  18607. default: true
  18608. },
  18609. ]
  18610. ))
  18611. characterMakers.push(() => makeCharacter(
  18612. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  18613. {
  18614. front: {
  18615. height: math.unit(5 + 2 / 12, "feet"),
  18616. weight: math.unit(190, "lb"),
  18617. name: "Front",
  18618. image: {
  18619. source: "./media/characters/bari/front.svg",
  18620. extra: 3156 / 2880,
  18621. bottom: 0.03
  18622. }
  18623. },
  18624. back: {
  18625. height: math.unit(5 + 2 / 12, "feet"),
  18626. weight: math.unit(190, "lb"),
  18627. name: "Back",
  18628. image: {
  18629. source: "./media/characters/bari/back.svg",
  18630. extra: 3260 / 2834,
  18631. bottom: 0.025
  18632. }
  18633. },
  18634. frontPlush: {
  18635. height: math.unit(5 + 2 / 12, "feet"),
  18636. weight: math.unit(190, "lb"),
  18637. name: "Front (Plush)",
  18638. image: {
  18639. source: "./media/characters/bari/front-plush.svg",
  18640. extra: 1112 / 1061,
  18641. bottom: 0.002
  18642. }
  18643. },
  18644. },
  18645. [
  18646. {
  18647. name: "Micro",
  18648. height: math.unit(3, "inches")
  18649. },
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(5 + 2 / 12, "feet"),
  18653. default: true
  18654. },
  18655. {
  18656. name: "Macro",
  18657. height: math.unit(20, "feet")
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  18663. {
  18664. front: {
  18665. height: math.unit(6 + 1 / 12, "feet"),
  18666. weight: math.unit(275, "lb"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/hunter-misha-raven/front.svg"
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Mortal",
  18676. height: math.unit(6 + 1 / 12, "feet")
  18677. },
  18678. {
  18679. name: "Divine",
  18680. height: math.unit(1.12134e34, "parsecs"),
  18681. default: true
  18682. },
  18683. ]
  18684. ))
  18685. characterMakers.push(() => makeCharacter(
  18686. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  18687. {
  18688. front: {
  18689. height: math.unit(6 + 3 / 12, "feet"),
  18690. weight: math.unit(220, "lb"),
  18691. name: "Front",
  18692. image: {
  18693. source: "./media/characters/max-calore/front.svg",
  18694. extra: 1700 / 1648,
  18695. bottom: 0.01
  18696. }
  18697. },
  18698. back: {
  18699. height: math.unit(6 + 3 / 12, "feet"),
  18700. weight: math.unit(220, "lb"),
  18701. name: "Back",
  18702. image: {
  18703. source: "./media/characters/max-calore/back.svg",
  18704. extra: 1700 / 1648,
  18705. bottom: 0.01
  18706. }
  18707. },
  18708. },
  18709. [
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(6 + 3 / 12, "feet"),
  18713. default: true
  18714. },
  18715. ]
  18716. ))
  18717. characterMakers.push(() => makeCharacter(
  18718. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  18719. {
  18720. side: {
  18721. height: math.unit(2 + 8 / 12, "feet"),
  18722. weight: math.unit(99, "lb"),
  18723. name: "Side",
  18724. image: {
  18725. source: "./media/characters/aspen/side.svg",
  18726. extra: 152 / 138,
  18727. bottom: 0.032
  18728. }
  18729. },
  18730. },
  18731. [
  18732. {
  18733. name: "Normal",
  18734. height: math.unit(2 + 8 / 12, "feet"),
  18735. default: true
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  18741. {
  18742. side: {
  18743. height: math.unit(3 + 2 / 12, "feet"),
  18744. weight: math.unit(224, "lb"),
  18745. name: "Side",
  18746. image: {
  18747. source: "./media/characters/sheila-feral-wolf/side.svg",
  18748. extra: 179 / 166,
  18749. bottom: 0.03
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(3 + 2 / 12, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  18763. {
  18764. side: {
  18765. height: math.unit(1 + 9 / 12, "feet"),
  18766. weight: math.unit(38, "lb"),
  18767. name: "Side",
  18768. image: {
  18769. source: "./media/characters/michelle/side.svg",
  18770. extra: 147 / 136.7,
  18771. bottom: 0.03
  18772. }
  18773. },
  18774. },
  18775. [
  18776. {
  18777. name: "Normal",
  18778. height: math.unit(1 + 9 / 12, "feet"),
  18779. default: true
  18780. },
  18781. ]
  18782. ))
  18783. characterMakers.push(() => makeCharacter(
  18784. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  18785. {
  18786. front: {
  18787. height: math.unit(1.54, "feet"),
  18788. weight: math.unit(50, "lb"),
  18789. name: "Front",
  18790. image: {
  18791. source: "./media/characters/nino/front.svg"
  18792. }
  18793. },
  18794. },
  18795. [
  18796. {
  18797. name: "Normal",
  18798. height: math.unit(1.54, "feet"),
  18799. default: true
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(1.49, "feet"),
  18808. weight: math.unit(45, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/viola/front.svg"
  18812. }
  18813. },
  18814. },
  18815. [
  18816. {
  18817. name: "Normal",
  18818. height: math.unit(1.49, "feet"),
  18819. default: true
  18820. },
  18821. ]
  18822. ))
  18823. characterMakers.push(() => makeCharacter(
  18824. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  18825. {
  18826. front: {
  18827. height: math.unit(6 + 5 / 12, "feet"),
  18828. weight: math.unit(580, "lb"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/atlas/front.svg",
  18832. extra: 298.5 / 290,
  18833. bottom: 0.015
  18834. }
  18835. },
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(6 + 5 / 12, "feet"),
  18841. default: true
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Davy", species: ["cat"], tags: ["feral"] },
  18847. {
  18848. side: {
  18849. height: math.unit(15.6, "inches"),
  18850. weight: math.unit(10, "lb"),
  18851. name: "Side",
  18852. image: {
  18853. source: "./media/characters/davy/side.svg",
  18854. extra: 200 / 170,
  18855. bottom: 0.01
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Normal",
  18862. height: math.unit(15.6, "inches"),
  18863. default: true
  18864. },
  18865. ]
  18866. ))
  18867. characterMakers.push(() => makeCharacter(
  18868. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  18869. {
  18870. side: {
  18871. height: math.unit(4 + 8 / 12, "feet"),
  18872. weight: math.unit(166, "lb"),
  18873. name: "Side",
  18874. image: {
  18875. source: "./media/characters/fiona/side.svg",
  18876. extra: 232 / 220,
  18877. bottom: 0.03
  18878. }
  18879. },
  18880. },
  18881. [
  18882. {
  18883. name: "Normal",
  18884. height: math.unit(4 + 8 / 12, "feet"),
  18885. default: true
  18886. },
  18887. ]
  18888. ))
  18889. characterMakers.push(() => makeCharacter(
  18890. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  18891. {
  18892. front: {
  18893. height: math.unit(26, "inches"),
  18894. weight: math.unit(35, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/lyla/front.svg",
  18898. bottom: 0.1
  18899. }
  18900. },
  18901. },
  18902. [
  18903. {
  18904. name: "Normal",
  18905. height: math.unit(3, "feet"),
  18906. default: true
  18907. },
  18908. ]
  18909. ))
  18910. characterMakers.push(() => makeCharacter(
  18911. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  18912. {
  18913. side: {
  18914. height: math.unit(1.8, "feet"),
  18915. weight: math.unit(44, "lb"),
  18916. name: "Side",
  18917. image: {
  18918. source: "./media/characters/perseus/side.svg",
  18919. bottom: 0.21
  18920. }
  18921. },
  18922. },
  18923. [
  18924. {
  18925. name: "Normal",
  18926. height: math.unit(1.8, "feet"),
  18927. default: true
  18928. },
  18929. ]
  18930. ))
  18931. characterMakers.push(() => makeCharacter(
  18932. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  18933. {
  18934. side: {
  18935. height: math.unit(4 + 2 / 12, "feet"),
  18936. weight: math.unit(20, "lb"),
  18937. name: "Side",
  18938. image: {
  18939. source: "./media/characters/remus/side.svg"
  18940. }
  18941. },
  18942. },
  18943. [
  18944. {
  18945. name: "Normal",
  18946. height: math.unit(4 + 2 / 12, "feet"),
  18947. default: true
  18948. },
  18949. ]
  18950. ))
  18951. characterMakers.push(() => makeCharacter(
  18952. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  18953. {
  18954. front: {
  18955. height: math.unit(4 + 11 / 12, "feet"),
  18956. weight: math.unit(114, "lb"),
  18957. name: "Front",
  18958. image: {
  18959. source: "./media/characters/raf/front.svg",
  18960. extra: 1504/1339,
  18961. bottom: 26/1530
  18962. }
  18963. },
  18964. side: {
  18965. height: math.unit(4 + 11 / 12, "feet"),
  18966. weight: math.unit(114, "lb"),
  18967. name: "Side",
  18968. image: {
  18969. source: "./media/characters/raf/side.svg",
  18970. extra: 1466/1316,
  18971. bottom: 29/1495
  18972. }
  18973. },
  18974. paw: {
  18975. height: math.unit(1.45, "feet"),
  18976. name: "Paw",
  18977. image: {
  18978. source: "./media/characters/raf/paw.svg"
  18979. },
  18980. extraAttributes: {
  18981. "toeSize": {
  18982. name: "Toe Size",
  18983. power: 2,
  18984. type: "area",
  18985. base: math.unit(0.004, "m^2")
  18986. },
  18987. "padSize": {
  18988. name: "Pad Size",
  18989. power: 2,
  18990. type: "area",
  18991. base: math.unit(0.04, "m^2")
  18992. },
  18993. "footSize": {
  18994. name: "Foot Size",
  18995. power: 2,
  18996. type: "area",
  18997. base: math.unit(0.08, "m^2")
  18998. },
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Micro",
  19005. height: math.unit(2, "inches")
  19006. },
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(4 + 11 / 12, "feet"),
  19010. default: true
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(70, "feet")
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(1.5, "meters"),
  19023. weight: math.unit(68, "kg"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/liam-einarr/front.svg",
  19027. extra: 2822 / 2666
  19028. }
  19029. },
  19030. back: {
  19031. height: math.unit(1.5, "meters"),
  19032. weight: math.unit(68, "kg"),
  19033. name: "Back",
  19034. image: {
  19035. source: "./media/characters/liam-einarr/back.svg",
  19036. extra: 2822 / 2666,
  19037. bottom: 0.015
  19038. }
  19039. },
  19040. },
  19041. [
  19042. {
  19043. name: "Normal",
  19044. height: math.unit(1.5, "meters"),
  19045. default: true
  19046. },
  19047. {
  19048. name: "Macro",
  19049. height: math.unit(150, "meters")
  19050. },
  19051. {
  19052. name: "Megamacro",
  19053. height: math.unit(35, "km")
  19054. },
  19055. ]
  19056. ))
  19057. characterMakers.push(() => makeCharacter(
  19058. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  19059. {
  19060. front: {
  19061. height: math.unit(6, "feet"),
  19062. weight: math.unit(75, "kg"),
  19063. name: "Front",
  19064. image: {
  19065. source: "./media/characters/linda/front.svg",
  19066. extra: 930 / 874,
  19067. bottom: 0.004
  19068. }
  19069. },
  19070. },
  19071. [
  19072. {
  19073. name: "Normal",
  19074. height: math.unit(6, "feet"),
  19075. default: true
  19076. },
  19077. ]
  19078. ))
  19079. characterMakers.push(() => makeCharacter(
  19080. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  19081. {
  19082. front: {
  19083. height: math.unit(6 + 8 / 12, "feet"),
  19084. weight: math.unit(220, "lb"),
  19085. name: "Front",
  19086. image: {
  19087. source: "./media/characters/caylex/front.svg",
  19088. extra: 821 / 772,
  19089. bottom: 0.07
  19090. }
  19091. },
  19092. back: {
  19093. height: math.unit(6 + 8 / 12, "feet"),
  19094. weight: math.unit(220, "lb"),
  19095. name: "Back",
  19096. image: {
  19097. source: "./media/characters/caylex/back.svg",
  19098. extra: 821 / 772,
  19099. bottom: 0.022
  19100. }
  19101. },
  19102. hand: {
  19103. height: math.unit(1.25, "feet"),
  19104. name: "Hand",
  19105. image: {
  19106. source: "./media/characters/caylex/hand.svg"
  19107. }
  19108. },
  19109. foot: {
  19110. height: math.unit(1.6, "feet"),
  19111. name: "Foot",
  19112. image: {
  19113. source: "./media/characters/caylex/foot.svg"
  19114. }
  19115. },
  19116. armored: {
  19117. height: math.unit(6 + 8 / 12, "feet"),
  19118. weight: math.unit(250, "lb"),
  19119. name: "Armored",
  19120. image: {
  19121. source: "./media/characters/caylex/armored.svg",
  19122. extra: 1420 / 1310,
  19123. bottom: 0.045
  19124. }
  19125. },
  19126. },
  19127. [
  19128. {
  19129. name: "Normal",
  19130. height: math.unit(6 + 8 / 12, "feet"),
  19131. default: true
  19132. },
  19133. {
  19134. name: "Normal+",
  19135. height: math.unit(12, "feet")
  19136. },
  19137. ]
  19138. ))
  19139. characterMakers.push(() => makeCharacter(
  19140. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  19141. {
  19142. front: {
  19143. height: math.unit(7 + 6 / 12, "feet"),
  19144. weight: math.unit(288, "lb"),
  19145. name: "Front",
  19146. image: {
  19147. source: "./media/characters/alana/front.svg",
  19148. extra: 679 / 653,
  19149. bottom: 22.5 / 701
  19150. }
  19151. },
  19152. },
  19153. [
  19154. {
  19155. name: "Normal",
  19156. height: math.unit(7 + 6 / 12, "feet")
  19157. },
  19158. {
  19159. name: "Large",
  19160. height: math.unit(50, "feet")
  19161. },
  19162. {
  19163. name: "Macro",
  19164. height: math.unit(100, "feet"),
  19165. default: true
  19166. },
  19167. {
  19168. name: "Macro+",
  19169. height: math.unit(200, "feet")
  19170. },
  19171. ]
  19172. ))
  19173. characterMakers.push(() => makeCharacter(
  19174. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  19175. {
  19176. front: {
  19177. height: math.unit(6 + 1 / 12, "feet"),
  19178. weight: math.unit(210, "lb"),
  19179. name: "Front",
  19180. image: {
  19181. source: "./media/characters/hasani/front.svg",
  19182. extra: 244 / 232,
  19183. bottom: 0.01
  19184. }
  19185. },
  19186. back: {
  19187. height: math.unit(6 + 1 / 12, "feet"),
  19188. weight: math.unit(210, "lb"),
  19189. name: "Back",
  19190. image: {
  19191. source: "./media/characters/hasani/back.svg",
  19192. extra: 244 / 232,
  19193. bottom: 0.01
  19194. }
  19195. },
  19196. },
  19197. [
  19198. {
  19199. name: "Normal",
  19200. height: math.unit(6 + 1 / 12, "feet")
  19201. },
  19202. {
  19203. name: "Macro",
  19204. height: math.unit(175, "feet"),
  19205. default: true
  19206. },
  19207. ]
  19208. ))
  19209. characterMakers.push(() => makeCharacter(
  19210. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  19211. {
  19212. front: {
  19213. height: math.unit(1.82, "meters"),
  19214. weight: math.unit(140, "lb"),
  19215. name: "Front",
  19216. image: {
  19217. source: "./media/characters/nita/front.svg",
  19218. extra: 2473 / 2363,
  19219. bottom: 0.01
  19220. }
  19221. },
  19222. },
  19223. [
  19224. {
  19225. name: "Normal",
  19226. height: math.unit(1.82, "m")
  19227. },
  19228. {
  19229. name: "Macro",
  19230. height: math.unit(300, "m")
  19231. },
  19232. {
  19233. name: "Mistake Canon",
  19234. height: math.unit(0.5, "miles"),
  19235. default: true
  19236. },
  19237. {
  19238. name: "Big Mistake",
  19239. height: math.unit(13, "miles")
  19240. },
  19241. {
  19242. name: "Playing God",
  19243. height: math.unit(2450, "miles")
  19244. },
  19245. ]
  19246. ))
  19247. characterMakers.push(() => makeCharacter(
  19248. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  19249. {
  19250. front: {
  19251. height: math.unit(4, "feet"),
  19252. weight: math.unit(120, "lb"),
  19253. name: "Front",
  19254. image: {
  19255. source: "./media/characters/shiriko/front.svg",
  19256. extra: 970/934,
  19257. bottom: 5/975
  19258. }
  19259. },
  19260. },
  19261. [
  19262. {
  19263. name: "Normal",
  19264. height: math.unit(4, "feet"),
  19265. default: true
  19266. },
  19267. ]
  19268. ))
  19269. characterMakers.push(() => makeCharacter(
  19270. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  19271. {
  19272. front: {
  19273. height: math.unit(6, "feet"),
  19274. name: "front",
  19275. image: {
  19276. source: "./media/characters/deja/front.svg",
  19277. extra: 926 / 840,
  19278. bottom: 0.07
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Planck Length",
  19285. height: math.unit(1.6e-35, "meters")
  19286. },
  19287. {
  19288. name: "Normal",
  19289. height: math.unit(30.48, "meters"),
  19290. default: true
  19291. },
  19292. {
  19293. name: "Universal",
  19294. height: math.unit(8.8e26, "meters")
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  19300. {
  19301. side: {
  19302. height: math.unit(8, "feet"),
  19303. weight: math.unit(6300, "lb"),
  19304. name: "Side",
  19305. image: {
  19306. source: "./media/characters/anima/side.svg",
  19307. bottom: 0.035
  19308. }
  19309. },
  19310. },
  19311. [
  19312. {
  19313. name: "Normal",
  19314. height: math.unit(8, "feet"),
  19315. default: true
  19316. },
  19317. ]
  19318. ))
  19319. characterMakers.push(() => makeCharacter(
  19320. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  19321. {
  19322. front: {
  19323. height: math.unit(8, "feet"),
  19324. weight: math.unit(350, "lb"),
  19325. name: "Front",
  19326. image: {
  19327. source: "./media/characters/bianca/front.svg",
  19328. extra: 234 / 225,
  19329. bottom: 0.03
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(8, "feet"),
  19337. default: true
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(11 + 5/12, "feet"),
  19346. weight: math.unit(1200, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/adinia/front.svg",
  19350. extra: 1767/1641,
  19351. bottom: 44/1811
  19352. },
  19353. extraAttributes: {
  19354. "energyIntake": {
  19355. name: "Energy Intake",
  19356. power: 3,
  19357. type: "energy",
  19358. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19359. },
  19360. }
  19361. },
  19362. back: {
  19363. height: math.unit(11 + 5/12, "feet"),
  19364. weight: math.unit(1200, "lb"),
  19365. name: "Back",
  19366. image: {
  19367. source: "./media/characters/adinia/back.svg",
  19368. extra: 1834/1684,
  19369. bottom: 14/1848
  19370. },
  19371. extraAttributes: {
  19372. "energyIntake": {
  19373. name: "Energy Intake",
  19374. power: 3,
  19375. type: "energy",
  19376. base: math.unit(2000 * 5 * 1200 / 150, "kcal")
  19377. },
  19378. }
  19379. },
  19380. maw: {
  19381. height: math.unit(3.79, "feet"),
  19382. name: "Maw",
  19383. image: {
  19384. source: "./media/characters/adinia/maw.svg"
  19385. }
  19386. },
  19387. rump: {
  19388. height: math.unit(4.6, "feet"),
  19389. name: "Rump",
  19390. image: {
  19391. source: "./media/characters/adinia/rump.svg"
  19392. }
  19393. },
  19394. },
  19395. [
  19396. {
  19397. name: "Normal",
  19398. height: math.unit(11 + 5 / 12, "feet"),
  19399. default: true
  19400. },
  19401. ]
  19402. ))
  19403. characterMakers.push(() => makeCharacter(
  19404. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  19405. {
  19406. front: {
  19407. height: math.unit(3, "meters"),
  19408. weight: math.unit(200, "kg"),
  19409. name: "Front",
  19410. image: {
  19411. source: "./media/characters/lykasa/front.svg",
  19412. extra: 1076 / 976,
  19413. bottom: 0.06
  19414. }
  19415. },
  19416. },
  19417. [
  19418. {
  19419. name: "Normal",
  19420. height: math.unit(3, "meters")
  19421. },
  19422. {
  19423. name: "Kaiju",
  19424. height: math.unit(120, "meters"),
  19425. default: true
  19426. },
  19427. {
  19428. name: "Mega Kaiju",
  19429. height: math.unit(240, "km")
  19430. },
  19431. {
  19432. name: "Giga Kaiju",
  19433. height: math.unit(400, "megameters")
  19434. },
  19435. {
  19436. name: "Tera Kaiju",
  19437. height: math.unit(800, "gigameters")
  19438. },
  19439. {
  19440. name: "Kaiju Dragon Goddess",
  19441. height: math.unit(26, "zettaparsecs")
  19442. },
  19443. ]
  19444. ))
  19445. characterMakers.push(() => makeCharacter(
  19446. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  19447. {
  19448. side: {
  19449. height: math.unit(283 / 124 * 6, "feet"),
  19450. weight: math.unit(35000, "lb"),
  19451. name: "Side",
  19452. image: {
  19453. source: "./media/characters/malfaren/side.svg",
  19454. extra: 1310/529,
  19455. bottom: 24/1334
  19456. }
  19457. },
  19458. front: {
  19459. height: math.unit(22.36, "feet"),
  19460. weight: math.unit(35000, "lb"),
  19461. name: "Front",
  19462. image: {
  19463. source: "./media/characters/malfaren/front.svg",
  19464. extra: 1237/1115,
  19465. bottom: 32/1269
  19466. }
  19467. },
  19468. maw: {
  19469. height: math.unit(6.9, "feet"),
  19470. name: "Maw",
  19471. image: {
  19472. source: "./media/characters/malfaren/maw.svg"
  19473. }
  19474. },
  19475. dick: {
  19476. height: math.unit(6.19, "feet"),
  19477. name: "Dick",
  19478. image: {
  19479. source: "./media/characters/malfaren/dick.svg"
  19480. }
  19481. },
  19482. eye: {
  19483. height: math.unit(0.69, "feet"),
  19484. name: "Eye",
  19485. image: {
  19486. source: "./media/characters/malfaren/eye.svg"
  19487. }
  19488. },
  19489. },
  19490. [
  19491. {
  19492. name: "Big",
  19493. height: math.unit(283 / 162 * 6, "feet"),
  19494. },
  19495. {
  19496. name: "Bigger",
  19497. height: math.unit(283 / 124 * 6, "feet")
  19498. },
  19499. {
  19500. name: "Massive",
  19501. height: math.unit(283 / 92 * 6, "feet"),
  19502. default: true
  19503. },
  19504. {
  19505. name: "👀💦",
  19506. height: math.unit(283 / 73 * 6, "feet"),
  19507. },
  19508. ]
  19509. ))
  19510. characterMakers.push(() => makeCharacter(
  19511. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  19512. {
  19513. front: {
  19514. height: math.unit(1.7, "m"),
  19515. weight: math.unit(70, "kg"),
  19516. name: "Front",
  19517. image: {
  19518. source: "./media/characters/kernel/front.svg",
  19519. extra: 222 / 210,
  19520. bottom: 0.007
  19521. }
  19522. },
  19523. },
  19524. [
  19525. {
  19526. name: "Nano",
  19527. height: math.unit(17, "micrometers")
  19528. },
  19529. {
  19530. name: "Micro",
  19531. height: math.unit(1.7, "mm")
  19532. },
  19533. {
  19534. name: "Small",
  19535. height: math.unit(1.7, "cm")
  19536. },
  19537. {
  19538. name: "Normal",
  19539. height: math.unit(1.7, "m"),
  19540. default: true
  19541. },
  19542. ]
  19543. ))
  19544. characterMakers.push(() => makeCharacter(
  19545. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  19546. {
  19547. front: {
  19548. height: math.unit(1.75, "meters"),
  19549. weight: math.unit(65, "kg"),
  19550. name: "Front",
  19551. image: {
  19552. source: "./media/characters/jayne-folest/front.svg",
  19553. extra: 2115 / 2007,
  19554. bottom: 0.02
  19555. }
  19556. },
  19557. back: {
  19558. height: math.unit(1.75, "meters"),
  19559. weight: math.unit(65, "kg"),
  19560. name: "Back",
  19561. image: {
  19562. source: "./media/characters/jayne-folest/back.svg",
  19563. extra: 2115 / 2007,
  19564. bottom: 0.005
  19565. }
  19566. },
  19567. frontClothed: {
  19568. height: math.unit(1.75, "meters"),
  19569. weight: math.unit(65, "kg"),
  19570. name: "Front (Clothed)",
  19571. image: {
  19572. source: "./media/characters/jayne-folest/front-clothed.svg",
  19573. extra: 2115 / 2007,
  19574. bottom: 0.035
  19575. }
  19576. },
  19577. hand: {
  19578. height: math.unit(1 / 1.260, "feet"),
  19579. name: "Hand",
  19580. image: {
  19581. source: "./media/characters/jayne-folest/hand.svg"
  19582. }
  19583. },
  19584. foot: {
  19585. height: math.unit(1 / 0.918, "feet"),
  19586. name: "Foot",
  19587. image: {
  19588. source: "./media/characters/jayne-folest/foot.svg"
  19589. }
  19590. },
  19591. },
  19592. [
  19593. {
  19594. name: "Micro",
  19595. height: math.unit(4, "cm")
  19596. },
  19597. {
  19598. name: "Normal",
  19599. height: math.unit(1.75, "meters")
  19600. },
  19601. {
  19602. name: "Macro",
  19603. height: math.unit(47.5, "meters"),
  19604. default: true
  19605. },
  19606. ]
  19607. ))
  19608. characterMakers.push(() => makeCharacter(
  19609. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  19610. {
  19611. front: {
  19612. height: math.unit(180, "cm"),
  19613. weight: math.unit(70, "kg"),
  19614. name: "Front",
  19615. image: {
  19616. source: "./media/characters/algier/front.svg",
  19617. extra: 596 / 572,
  19618. bottom: 0.04
  19619. }
  19620. },
  19621. back: {
  19622. height: math.unit(180, "cm"),
  19623. weight: math.unit(70, "kg"),
  19624. name: "Back",
  19625. image: {
  19626. source: "./media/characters/algier/back.svg",
  19627. extra: 596 / 572,
  19628. bottom: 0.025
  19629. }
  19630. },
  19631. frontdressed: {
  19632. height: math.unit(180, "cm"),
  19633. weight: math.unit(150, "kg"),
  19634. name: "Front-dressed",
  19635. image: {
  19636. source: "./media/characters/algier/front-dressed.svg",
  19637. extra: 596 / 572,
  19638. bottom: 0.038
  19639. }
  19640. },
  19641. },
  19642. [
  19643. {
  19644. name: "Micro",
  19645. height: math.unit(5, "cm")
  19646. },
  19647. {
  19648. name: "Normal",
  19649. height: math.unit(180, "cm"),
  19650. default: true
  19651. },
  19652. {
  19653. name: "Macro",
  19654. height: math.unit(64, "m")
  19655. },
  19656. ]
  19657. ))
  19658. characterMakers.push(() => makeCharacter(
  19659. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  19660. {
  19661. upright: {
  19662. height: math.unit(7, "feet"),
  19663. weight: math.unit(300, "lb"),
  19664. name: "Upright",
  19665. image: {
  19666. source: "./media/characters/pretzel/upright.svg",
  19667. extra: 534 / 522,
  19668. bottom: 0.065
  19669. }
  19670. },
  19671. sprawling: {
  19672. height: math.unit(3.75, "feet"),
  19673. weight: math.unit(300, "lb"),
  19674. name: "Sprawling",
  19675. image: {
  19676. source: "./media/characters/pretzel/sprawling.svg",
  19677. extra: 314 / 281,
  19678. bottom: 0.1
  19679. }
  19680. },
  19681. tongue: {
  19682. height: math.unit(2, "feet"),
  19683. name: "Tongue",
  19684. image: {
  19685. source: "./media/characters/pretzel/tongue.svg"
  19686. }
  19687. },
  19688. },
  19689. [
  19690. {
  19691. name: "Normal",
  19692. height: math.unit(7, "feet"),
  19693. default: true
  19694. },
  19695. {
  19696. name: "Oversized",
  19697. height: math.unit(15, "feet")
  19698. },
  19699. {
  19700. name: "Huge",
  19701. height: math.unit(30, "feet")
  19702. },
  19703. {
  19704. name: "Macro",
  19705. height: math.unit(250, "feet")
  19706. },
  19707. ]
  19708. ))
  19709. characterMakers.push(() => makeCharacter(
  19710. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  19711. {
  19712. sideFront: {
  19713. height: math.unit(5 + 2 / 12, "feet"),
  19714. weight: math.unit(120, "lb"),
  19715. name: "Front Side",
  19716. image: {
  19717. source: "./media/characters/roxi/side-front.svg",
  19718. extra: 2924 / 2717,
  19719. bottom: 0.08
  19720. }
  19721. },
  19722. sideBack: {
  19723. height: math.unit(5 + 2 / 12, "feet"),
  19724. weight: math.unit(120, "lb"),
  19725. name: "Back Side",
  19726. image: {
  19727. source: "./media/characters/roxi/side-back.svg",
  19728. extra: 2904 / 2693,
  19729. bottom: 0.06
  19730. }
  19731. },
  19732. front: {
  19733. height: math.unit(5 + 2 / 12, "feet"),
  19734. weight: math.unit(120, "lb"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/roxi/front.svg",
  19738. extra: 2028 / 1907,
  19739. bottom: 0.01
  19740. }
  19741. },
  19742. frontAlt: {
  19743. height: math.unit(5 + 2 / 12, "feet"),
  19744. weight: math.unit(120, "lb"),
  19745. name: "Front (Alt)",
  19746. image: {
  19747. source: "./media/characters/roxi/front-alt.svg",
  19748. extra: 1828 / 1798,
  19749. bottom: 0.01
  19750. }
  19751. },
  19752. sitting: {
  19753. height: math.unit(2.8, "feet"),
  19754. weight: math.unit(120, "lb"),
  19755. name: "Sitting",
  19756. image: {
  19757. source: "./media/characters/roxi/sitting.svg",
  19758. extra: 2660 / 2462,
  19759. bottom: 0.1
  19760. }
  19761. },
  19762. },
  19763. [
  19764. {
  19765. name: "Normal",
  19766. height: math.unit(5 + 2 / 12, "feet"),
  19767. default: true
  19768. },
  19769. ]
  19770. ))
  19771. characterMakers.push(() => makeCharacter(
  19772. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  19773. {
  19774. side: {
  19775. height: math.unit(55, "feet"),
  19776. weight: math.unit(153, "tons"),
  19777. name: "Side",
  19778. image: {
  19779. source: "./media/characters/shadow/side.svg",
  19780. extra: 701 / 628,
  19781. bottom: 0.02
  19782. }
  19783. },
  19784. flying: {
  19785. height: math.unit(145, "feet"),
  19786. weight: math.unit(153, "tons"),
  19787. name: "Flying",
  19788. image: {
  19789. source: "./media/characters/shadow/flying.svg"
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Normal",
  19796. height: math.unit(55, "feet"),
  19797. default: true
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  19803. {
  19804. front: {
  19805. height: math.unit(6, "feet"),
  19806. weight: math.unit(200, "lb"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/marcie/front.svg",
  19810. extra: 960 / 876,
  19811. bottom: 58 / 1017.87
  19812. }
  19813. },
  19814. },
  19815. [
  19816. {
  19817. name: "Macro",
  19818. height: math.unit(1, "mile"),
  19819. default: true
  19820. },
  19821. ]
  19822. ))
  19823. characterMakers.push(() => makeCharacter(
  19824. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  19825. {
  19826. front: {
  19827. height: math.unit(7, "feet"),
  19828. weight: math.unit(200, "lb"),
  19829. name: "Front",
  19830. image: {
  19831. source: "./media/characters/kachina/front.svg",
  19832. extra: 1290.68 / 1119,
  19833. bottom: 36.5 / 1327.18
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(7, "feet"),
  19841. default: true
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Kash", species: ["canine"], tags: ["feral"] },
  19847. {
  19848. looking: {
  19849. height: math.unit(2, "meters"),
  19850. weight: math.unit(300, "kg"),
  19851. name: "Looking",
  19852. image: {
  19853. source: "./media/characters/kash/looking.svg",
  19854. extra: 474 / 344,
  19855. bottom: 0.03
  19856. }
  19857. },
  19858. side: {
  19859. height: math.unit(2, "meters"),
  19860. weight: math.unit(300, "kg"),
  19861. name: "Side",
  19862. image: {
  19863. source: "./media/characters/kash/side.svg",
  19864. extra: 302 / 251,
  19865. bottom: 0.03
  19866. }
  19867. },
  19868. front: {
  19869. height: math.unit(2, "meters"),
  19870. weight: math.unit(300, "kg"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/kash/front.svg",
  19874. extra: 495 / 360,
  19875. bottom: 0.015
  19876. }
  19877. },
  19878. },
  19879. [
  19880. {
  19881. name: "Normal",
  19882. height: math.unit(2, "meters"),
  19883. default: true
  19884. },
  19885. {
  19886. name: "Big",
  19887. height: math.unit(3, "meters")
  19888. },
  19889. {
  19890. name: "Large",
  19891. height: math.unit(5, "meters")
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  19897. {
  19898. feeding: {
  19899. height: math.unit(6.7, "feet"),
  19900. weight: math.unit(350, "lb"),
  19901. name: "Feeding",
  19902. image: {
  19903. source: "./media/characters/lalim/feeding.svg",
  19904. }
  19905. },
  19906. },
  19907. [
  19908. {
  19909. name: "Normal",
  19910. height: math.unit(6.7, "feet"),
  19911. default: true
  19912. },
  19913. ]
  19914. ))
  19915. characterMakers.push(() => makeCharacter(
  19916. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  19917. {
  19918. front: {
  19919. height: math.unit(9.5, "feet"),
  19920. weight: math.unit(600, "lb"),
  19921. name: "Front",
  19922. image: {
  19923. source: "./media/characters/de'vout/front.svg",
  19924. extra: 1443 / 1328,
  19925. bottom: 0.025
  19926. }
  19927. },
  19928. back: {
  19929. height: math.unit(9.5, "feet"),
  19930. weight: math.unit(600, "lb"),
  19931. name: "Back",
  19932. image: {
  19933. source: "./media/characters/de'vout/back.svg",
  19934. extra: 1443 / 1328
  19935. }
  19936. },
  19937. frontDressed: {
  19938. height: math.unit(9.5, "feet"),
  19939. weight: math.unit(600, "lb"),
  19940. name: "Front (Dressed",
  19941. image: {
  19942. source: "./media/characters/de'vout/front-dressed.svg",
  19943. extra: 1443 / 1328,
  19944. bottom: 0.025
  19945. }
  19946. },
  19947. backDressed: {
  19948. height: math.unit(9.5, "feet"),
  19949. weight: math.unit(600, "lb"),
  19950. name: "Back (Dressed",
  19951. image: {
  19952. source: "./media/characters/de'vout/back-dressed.svg",
  19953. extra: 1443 / 1328
  19954. }
  19955. },
  19956. },
  19957. [
  19958. {
  19959. name: "Normal",
  19960. height: math.unit(9.5, "feet"),
  19961. default: true
  19962. },
  19963. ]
  19964. ))
  19965. characterMakers.push(() => makeCharacter(
  19966. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  19967. {
  19968. front: {
  19969. height: math.unit(8, "feet"),
  19970. weight: math.unit(225, "lb"),
  19971. name: "Front",
  19972. image: {
  19973. source: "./media/characters/talana/front.svg",
  19974. extra: 1410 / 1300,
  19975. bottom: 0.015
  19976. }
  19977. },
  19978. frontDressed: {
  19979. height: math.unit(8, "feet"),
  19980. weight: math.unit(225, "lb"),
  19981. name: "Front (Dressed",
  19982. image: {
  19983. source: "./media/characters/talana/front-dressed.svg",
  19984. extra: 1410 / 1300,
  19985. bottom: 0.015
  19986. }
  19987. },
  19988. },
  19989. [
  19990. {
  19991. name: "Normal",
  19992. height: math.unit(8, "feet"),
  19993. default: true
  19994. },
  19995. ]
  19996. ))
  19997. characterMakers.push(() => makeCharacter(
  19998. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  19999. {
  20000. side: {
  20001. height: math.unit(7.2, "feet"),
  20002. weight: math.unit(150, "lb"),
  20003. name: "Side",
  20004. image: {
  20005. source: "./media/characters/xeauvok/side.svg",
  20006. extra: 1975 / 1523,
  20007. bottom: 0.07
  20008. }
  20009. },
  20010. },
  20011. [
  20012. {
  20013. name: "Normal",
  20014. height: math.unit(7.2, "feet"),
  20015. default: true
  20016. },
  20017. ]
  20018. ))
  20019. characterMakers.push(() => makeCharacter(
  20020. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  20021. {
  20022. side: {
  20023. height: math.unit(4, "meters"),
  20024. weight: math.unit(2200, "kg"),
  20025. name: "Side",
  20026. image: {
  20027. source: "./media/characters/zara/side.svg",
  20028. extra: 765/744,
  20029. bottom: 156/921
  20030. }
  20031. },
  20032. },
  20033. [
  20034. {
  20035. name: "Normal",
  20036. height: math.unit(4, "meters"),
  20037. default: true
  20038. },
  20039. ]
  20040. ))
  20041. characterMakers.push(() => makeCharacter(
  20042. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  20043. {
  20044. side: {
  20045. height: math.unit(6, "feet"),
  20046. weight: math.unit(150, "lb"),
  20047. name: "Side",
  20048. image: {
  20049. source: "./media/characters/richard-dragon/side.svg",
  20050. extra: 845 / 340,
  20051. bottom: 0.017
  20052. }
  20053. },
  20054. maw: {
  20055. height: math.unit(2.97, "feet"),
  20056. name: "Maw",
  20057. image: {
  20058. source: "./media/characters/richard-dragon/maw.svg"
  20059. }
  20060. },
  20061. },
  20062. [
  20063. ]
  20064. ))
  20065. characterMakers.push(() => makeCharacter(
  20066. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  20067. {
  20068. front: {
  20069. height: math.unit(4, "feet"),
  20070. weight: math.unit(100, "lb"),
  20071. name: "Front",
  20072. image: {
  20073. source: "./media/characters/richard-smeargle/front.svg",
  20074. extra: 2952 / 2820,
  20075. bottom: 0.028
  20076. }
  20077. },
  20078. },
  20079. [
  20080. {
  20081. name: "Normal",
  20082. height: math.unit(4, "feet"),
  20083. default: true
  20084. },
  20085. {
  20086. name: "Dynamax",
  20087. height: math.unit(20, "meters")
  20088. },
  20089. ]
  20090. ))
  20091. characterMakers.push(() => makeCharacter(
  20092. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  20093. {
  20094. front: {
  20095. height: math.unit(6, "feet"),
  20096. weight: math.unit(110, "lb"),
  20097. name: "Front",
  20098. image: {
  20099. source: "./media/characters/klay/front.svg",
  20100. extra: 962 / 883,
  20101. bottom: 0.04
  20102. }
  20103. },
  20104. back: {
  20105. height: math.unit(6, "feet"),
  20106. weight: math.unit(110, "lb"),
  20107. name: "Back",
  20108. image: {
  20109. source: "./media/characters/klay/back.svg",
  20110. extra: 962 / 883
  20111. }
  20112. },
  20113. beans: {
  20114. height: math.unit(1.15, "feet"),
  20115. name: "Beans",
  20116. image: {
  20117. source: "./media/characters/klay/beans.svg"
  20118. }
  20119. },
  20120. },
  20121. [
  20122. {
  20123. name: "Micro",
  20124. height: math.unit(6, "inches")
  20125. },
  20126. {
  20127. name: "Mini",
  20128. height: math.unit(3, "feet")
  20129. },
  20130. {
  20131. name: "Normal",
  20132. height: math.unit(6, "feet"),
  20133. default: true
  20134. },
  20135. {
  20136. name: "Big",
  20137. height: math.unit(25, "feet")
  20138. },
  20139. {
  20140. name: "Macro",
  20141. height: math.unit(100, "feet")
  20142. },
  20143. {
  20144. name: "Megamacro",
  20145. height: math.unit(400, "feet")
  20146. },
  20147. ]
  20148. ))
  20149. characterMakers.push(() => makeCharacter(
  20150. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  20151. {
  20152. front: {
  20153. height: math.unit(6, "feet"),
  20154. weight: math.unit(160, "lb"),
  20155. name: "Front",
  20156. image: {
  20157. source: "./media/characters/marcus/front.svg",
  20158. extra: 734 / 676,
  20159. bottom: 0.03
  20160. }
  20161. },
  20162. },
  20163. [
  20164. {
  20165. name: "Little",
  20166. height: math.unit(6, "feet")
  20167. },
  20168. {
  20169. name: "Normal",
  20170. height: math.unit(110, "feet"),
  20171. default: true
  20172. },
  20173. {
  20174. name: "Macro",
  20175. height: math.unit(250, "feet")
  20176. },
  20177. {
  20178. name: "Megamacro",
  20179. height: math.unit(1000, "feet")
  20180. },
  20181. ]
  20182. ))
  20183. characterMakers.push(() => makeCharacter(
  20184. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  20185. {
  20186. front: {
  20187. height: math.unit(7, "feet"),
  20188. weight: math.unit(275, "lb"),
  20189. name: "Front",
  20190. image: {
  20191. source: "./media/characters/claude-delroute/front.svg",
  20192. extra: 902/827,
  20193. bottom: 26/928
  20194. }
  20195. },
  20196. side: {
  20197. height: math.unit(7, "feet"),
  20198. weight: math.unit(275, "lb"),
  20199. name: "Side",
  20200. image: {
  20201. source: "./media/characters/claude-delroute/side.svg",
  20202. extra: 908/853,
  20203. bottom: 16/924
  20204. }
  20205. },
  20206. back: {
  20207. height: math.unit(7, "feet"),
  20208. weight: math.unit(275, "lb"),
  20209. name: "Back",
  20210. image: {
  20211. source: "./media/characters/claude-delroute/back.svg",
  20212. extra: 911/829,
  20213. bottom: 18/929
  20214. }
  20215. },
  20216. maw: {
  20217. height: math.unit(0.6407, "meters"),
  20218. name: "Maw",
  20219. image: {
  20220. source: "./media/characters/claude-delroute/maw.svg"
  20221. }
  20222. },
  20223. },
  20224. [
  20225. {
  20226. name: "Normal",
  20227. height: math.unit(7, "feet"),
  20228. default: true
  20229. },
  20230. {
  20231. name: "Lorge",
  20232. height: math.unit(20, "feet")
  20233. },
  20234. ]
  20235. ))
  20236. characterMakers.push(() => makeCharacter(
  20237. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  20238. {
  20239. front: {
  20240. height: math.unit(8 + 4 / 12, "feet"),
  20241. weight: math.unit(600, "lb"),
  20242. name: "Front",
  20243. image: {
  20244. source: "./media/characters/dragonien/front.svg",
  20245. extra: 100 / 94,
  20246. bottom: 3.3 / 103.3445
  20247. }
  20248. },
  20249. back: {
  20250. height: math.unit(8 + 4 / 12, "feet"),
  20251. weight: math.unit(600, "lb"),
  20252. name: "Back",
  20253. image: {
  20254. source: "./media/characters/dragonien/back.svg",
  20255. extra: 776 / 746,
  20256. bottom: 6.4 / 782.0616
  20257. }
  20258. },
  20259. foot: {
  20260. height: math.unit(1.54, "feet"),
  20261. name: "Foot",
  20262. image: {
  20263. source: "./media/characters/dragonien/foot.svg",
  20264. }
  20265. },
  20266. },
  20267. [
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(8 + 4 / 12, "feet"),
  20271. default: true
  20272. },
  20273. {
  20274. name: "Macro",
  20275. height: math.unit(200, "feet")
  20276. },
  20277. {
  20278. name: "Megamacro",
  20279. height: math.unit(1, "mile")
  20280. },
  20281. {
  20282. name: "Gigamacro",
  20283. height: math.unit(1000, "miles")
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(5 + 2 / 12, "feet"),
  20292. weight: math.unit(110, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/desta/front.svg",
  20296. extra: 767 / 726,
  20297. bottom: 11.7 / 779
  20298. }
  20299. },
  20300. back: {
  20301. height: math.unit(5 + 2 / 12, "feet"),
  20302. weight: math.unit(110, "lb"),
  20303. name: "Back",
  20304. image: {
  20305. source: "./media/characters/desta/back.svg",
  20306. extra: 777 / 728,
  20307. bottom: 6 / 784
  20308. }
  20309. },
  20310. frontAlt: {
  20311. height: math.unit(5 + 2 / 12, "feet"),
  20312. weight: math.unit(110, "lb"),
  20313. name: "Front",
  20314. image: {
  20315. source: "./media/characters/desta/front-alt.svg",
  20316. extra: 1482 / 1417
  20317. }
  20318. },
  20319. side: {
  20320. height: math.unit(5 + 2 / 12, "feet"),
  20321. weight: math.unit(110, "lb"),
  20322. name: "Side",
  20323. image: {
  20324. source: "./media/characters/desta/side.svg",
  20325. extra: 2579 / 2491,
  20326. bottom: 0.053
  20327. }
  20328. },
  20329. },
  20330. [
  20331. {
  20332. name: "Micro",
  20333. height: math.unit(6, "inches")
  20334. },
  20335. {
  20336. name: "Normal",
  20337. height: math.unit(5 + 2 / 12, "feet"),
  20338. default: true
  20339. },
  20340. {
  20341. name: "Macro",
  20342. height: math.unit(62, "feet")
  20343. },
  20344. {
  20345. name: "Megamacro",
  20346. height: math.unit(1800, "feet")
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  20352. {
  20353. front: {
  20354. height: math.unit(10, "feet"),
  20355. weight: math.unit(700, "lb"),
  20356. name: "Front",
  20357. image: {
  20358. source: "./media/characters/storm-alystar/front.svg",
  20359. extra: 2112 / 1898,
  20360. bottom: 0.034
  20361. }
  20362. },
  20363. },
  20364. [
  20365. {
  20366. name: "Micro",
  20367. height: math.unit(3.5, "inches")
  20368. },
  20369. {
  20370. name: "Normal",
  20371. height: math.unit(10, "feet"),
  20372. default: true
  20373. },
  20374. {
  20375. name: "Macro",
  20376. height: math.unit(400, "feet")
  20377. },
  20378. {
  20379. name: "Deific",
  20380. height: math.unit(60, "miles")
  20381. },
  20382. ]
  20383. ))
  20384. characterMakers.push(() => makeCharacter(
  20385. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  20386. {
  20387. front: {
  20388. height: math.unit(2.35, "meters"),
  20389. weight: math.unit(119, "kg"),
  20390. name: "Front",
  20391. image: {
  20392. source: "./media/characters/ilia/front.svg",
  20393. extra: 1285 / 1255,
  20394. bottom: 0.06
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Normal",
  20401. height: math.unit(2.35, "meters")
  20402. },
  20403. {
  20404. name: "Macro",
  20405. height: math.unit(140, "meters"),
  20406. default: true
  20407. },
  20408. {
  20409. name: "Megamacro",
  20410. height: math.unit(100, "miles")
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(6 + 5 / 12, "feet"),
  20419. weight: math.unit(190, "lb"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/kingdead/front.svg",
  20423. extra: 1228 / 1177
  20424. }
  20425. },
  20426. },
  20427. [
  20428. {
  20429. name: "Micro",
  20430. height: math.unit(7, "inches")
  20431. },
  20432. {
  20433. name: "Normal",
  20434. height: math.unit(6 + 5 / 12, "feet")
  20435. },
  20436. {
  20437. name: "Macro",
  20438. height: math.unit(150, "feet"),
  20439. default: true
  20440. },
  20441. {
  20442. name: "Megamacro",
  20443. height: math.unit(200, "miles")
  20444. },
  20445. ]
  20446. ))
  20447. characterMakers.push(() => makeCharacter(
  20448. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  20449. {
  20450. front: {
  20451. height: math.unit(8, "feet"),
  20452. weight: math.unit(600, "lb"),
  20453. name: "Front",
  20454. image: {
  20455. source: "./media/characters/kyrehx/front.svg",
  20456. extra: 1195 / 1095,
  20457. bottom: 0.034
  20458. }
  20459. },
  20460. },
  20461. [
  20462. {
  20463. name: "Micro",
  20464. height: math.unit(2, "inches")
  20465. },
  20466. {
  20467. name: "Normal",
  20468. height: math.unit(8, "feet"),
  20469. default: true
  20470. },
  20471. {
  20472. name: "Macro",
  20473. height: math.unit(255, "feet")
  20474. },
  20475. ]
  20476. ))
  20477. characterMakers.push(() => makeCharacter(
  20478. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  20479. {
  20480. front: {
  20481. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20482. weight: math.unit(184, "lb"),
  20483. name: "Front",
  20484. image: {
  20485. source: "./media/characters/xang/front.svg",
  20486. extra: 845 / 755
  20487. }
  20488. },
  20489. },
  20490. [
  20491. {
  20492. name: "Normal",
  20493. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  20494. default: true
  20495. },
  20496. {
  20497. name: "Macro",
  20498. height: math.unit(0.935 * 146, "feet")
  20499. },
  20500. {
  20501. name: "Megamacro",
  20502. height: math.unit(0.935 * 3, "miles")
  20503. },
  20504. ]
  20505. ))
  20506. characterMakers.push(() => makeCharacter(
  20507. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  20508. {
  20509. frontDressed: {
  20510. height: math.unit(5 + 7 / 12, "feet"),
  20511. weight: math.unit(140, "lb"),
  20512. name: "Front (Dressed)",
  20513. image: {
  20514. source: "./media/characters/doc-weardno/front-dressed.svg",
  20515. extra: 263 / 234
  20516. }
  20517. },
  20518. backDressed: {
  20519. height: math.unit(5 + 7 / 12, "feet"),
  20520. weight: math.unit(140, "lb"),
  20521. name: "Back (Dressed)",
  20522. image: {
  20523. source: "./media/characters/doc-weardno/back-dressed.svg",
  20524. extra: 266 / 238
  20525. }
  20526. },
  20527. front: {
  20528. height: math.unit(5 + 7 / 12, "feet"),
  20529. weight: math.unit(140, "lb"),
  20530. name: "Front",
  20531. image: {
  20532. source: "./media/characters/doc-weardno/front.svg",
  20533. extra: 254 / 233
  20534. }
  20535. },
  20536. },
  20537. [
  20538. {
  20539. name: "Micro",
  20540. height: math.unit(3, "inches")
  20541. },
  20542. {
  20543. name: "Normal",
  20544. height: math.unit(5 + 7 / 12, "feet"),
  20545. default: true
  20546. },
  20547. {
  20548. name: "Macro",
  20549. height: math.unit(25, "feet")
  20550. },
  20551. {
  20552. name: "Megamacro",
  20553. height: math.unit(2, "miles")
  20554. },
  20555. ]
  20556. ))
  20557. characterMakers.push(() => makeCharacter(
  20558. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  20559. {
  20560. front: {
  20561. height: math.unit(6 + 2 / 12, "feet"),
  20562. weight: math.unit(153, "lb"),
  20563. name: "Front",
  20564. image: {
  20565. source: "./media/characters/seth-whilst/front.svg",
  20566. bottom: 0.07
  20567. }
  20568. },
  20569. },
  20570. [
  20571. {
  20572. name: "Micro",
  20573. height: math.unit(5, "inches")
  20574. },
  20575. {
  20576. name: "Normal",
  20577. height: math.unit(6 + 2 / 12, "feet"),
  20578. default: true
  20579. },
  20580. ]
  20581. ))
  20582. characterMakers.push(() => makeCharacter(
  20583. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  20584. {
  20585. front: {
  20586. height: math.unit(3, "inches"),
  20587. weight: math.unit(8, "grams"),
  20588. name: "Front",
  20589. image: {
  20590. source: "./media/characters/pocket-jabari/front.svg",
  20591. extra: 1024 / 974,
  20592. bottom: 0.039
  20593. }
  20594. },
  20595. },
  20596. [
  20597. {
  20598. name: "Minimicro",
  20599. height: math.unit(8, "mm")
  20600. },
  20601. {
  20602. name: "Micro",
  20603. height: math.unit(3, "inches"),
  20604. default: true
  20605. },
  20606. {
  20607. name: "Normal",
  20608. height: math.unit(3, "feet")
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  20614. {
  20615. frontDressed: {
  20616. height: math.unit(15, "feet"),
  20617. weight: math.unit(3280, "lb"),
  20618. name: "Front (Dressed)",
  20619. image: {
  20620. source: "./media/characters/sapphy/front-dressed.svg",
  20621. extra: 1951/1654,
  20622. bottom: 194/2145
  20623. },
  20624. form: "anthro",
  20625. default: true
  20626. },
  20627. backDressed: {
  20628. height: math.unit(15, "feet"),
  20629. weight: math.unit(3280, "lb"),
  20630. name: "Back (Dressed)",
  20631. image: {
  20632. source: "./media/characters/sapphy/back-dressed.svg",
  20633. extra: 2058/1918,
  20634. bottom: 125/2183
  20635. },
  20636. form: "anthro"
  20637. },
  20638. frontNude: {
  20639. height: math.unit(15, "feet"),
  20640. weight: math.unit(3280, "lb"),
  20641. name: "Front (Nude)",
  20642. image: {
  20643. source: "./media/characters/sapphy/front-nude.svg",
  20644. extra: 1951/1654,
  20645. bottom: 194/2145
  20646. },
  20647. form: "anthro"
  20648. },
  20649. backNude: {
  20650. height: math.unit(15, "feet"),
  20651. weight: math.unit(3280, "lb"),
  20652. name: "Back (Nude)",
  20653. image: {
  20654. source: "./media/characters/sapphy/back-nude.svg",
  20655. extra: 2058/1918,
  20656. bottom: 125/2183
  20657. },
  20658. form: "anthro"
  20659. },
  20660. full: {
  20661. height: math.unit(15, "feet"),
  20662. weight: math.unit(3280, "lb"),
  20663. name: "Full",
  20664. image: {
  20665. source: "./media/characters/sapphy/full.svg",
  20666. extra: 1396/1317,
  20667. bottom: 44/1440
  20668. },
  20669. form: "anthro"
  20670. },
  20671. dick: {
  20672. height: math.unit(3.8, "feet"),
  20673. name: "Dick",
  20674. image: {
  20675. source: "./media/characters/sapphy/dick.svg"
  20676. },
  20677. form: "anthro"
  20678. },
  20679. feral: {
  20680. height: math.unit(35, "feet"),
  20681. weight: math.unit(160, "tons"),
  20682. name: "Feral",
  20683. image: {
  20684. source: "./media/characters/sapphy/feral.svg",
  20685. extra: 1050/573,
  20686. bottom: 60/1110
  20687. },
  20688. form: "feral",
  20689. default: true
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(15, "feet"),
  20696. form: "anthro"
  20697. },
  20698. {
  20699. name: "Casual Macro",
  20700. height: math.unit(120, "feet"),
  20701. form: "anthro"
  20702. },
  20703. {
  20704. name: "Macro",
  20705. height: math.unit(2150, "feet"),
  20706. default: true,
  20707. form: "anthro"
  20708. },
  20709. {
  20710. name: "Megamacro",
  20711. height: math.unit(8, "miles"),
  20712. form: "anthro"
  20713. },
  20714. {
  20715. name: "Galaxy Mom",
  20716. height: math.unit(6, "megalightyears"),
  20717. form: "anthro"
  20718. },
  20719. {
  20720. name: "Normal",
  20721. height: math.unit(35, "feet"),
  20722. form: "feral",
  20723. default: true
  20724. },
  20725. {
  20726. name: "Macro",
  20727. height: math.unit(300, "feet"),
  20728. form: "feral"
  20729. },
  20730. {
  20731. name: "Galaxy Mom",
  20732. height: math.unit(10, "megalightyears"),
  20733. form: "feral"
  20734. },
  20735. ],
  20736. {
  20737. "anthro": {
  20738. name: "Anthro",
  20739. default: true
  20740. },
  20741. "feral": {
  20742. name: "Feral"
  20743. }
  20744. }
  20745. ))
  20746. characterMakers.push(() => makeCharacter(
  20747. { name: "Kiro", species: ["folf", "hyena"], tags: ["anthro"] },
  20748. {
  20749. hyenaFront: {
  20750. height: math.unit(6, "feet"),
  20751. weight: math.unit(190, "lb"),
  20752. name: "Front",
  20753. image: {
  20754. source: "./media/characters/kiro/hyena-front.svg",
  20755. extra: 927/839,
  20756. bottom: 91/1018
  20757. },
  20758. form: "hyena",
  20759. default: true
  20760. },
  20761. front: {
  20762. height: math.unit(6, "feet"),
  20763. weight: math.unit(170, "lb"),
  20764. name: "Front",
  20765. image: {
  20766. source: "./media/characters/kiro/front.svg",
  20767. extra: 1064 / 1012,
  20768. bottom: 0.052
  20769. },
  20770. form: "folf",
  20771. default: true
  20772. },
  20773. },
  20774. [
  20775. {
  20776. name: "Micro",
  20777. height: math.unit(6, "inches"),
  20778. form: "folf"
  20779. },
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(6, "feet"),
  20783. form: "folf",
  20784. default: true
  20785. },
  20786. {
  20787. name: "Macro",
  20788. height: math.unit(72, "feet"),
  20789. form: "folf"
  20790. },
  20791. {
  20792. name: "Micro",
  20793. height: math.unit(6, "inches"),
  20794. form: "hyena"
  20795. },
  20796. {
  20797. name: "Normal",
  20798. height: math.unit(6, "feet"),
  20799. form: "hyena",
  20800. default: true
  20801. },
  20802. {
  20803. name: "Macro",
  20804. height: math.unit(72, "feet"),
  20805. form: "hyena"
  20806. },
  20807. ],
  20808. {
  20809. "hyena": {
  20810. name: "Hyena",
  20811. default: true
  20812. },
  20813. "folf": {
  20814. name: "Folf",
  20815. },
  20816. }
  20817. ))
  20818. characterMakers.push(() => makeCharacter(
  20819. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  20820. {
  20821. front: {
  20822. height: math.unit(5 + 9 / 12, "feet"),
  20823. weight: math.unit(175, "lb"),
  20824. name: "Front",
  20825. image: {
  20826. source: "./media/characters/irishfox/front.svg",
  20827. extra: 1912 / 1680,
  20828. bottom: 0.02
  20829. }
  20830. },
  20831. },
  20832. [
  20833. {
  20834. name: "Nano",
  20835. height: math.unit(1, "mm")
  20836. },
  20837. {
  20838. name: "Micro",
  20839. height: math.unit(2, "inches")
  20840. },
  20841. {
  20842. name: "Normal",
  20843. height: math.unit(5 + 9 / 12, "feet"),
  20844. default: true
  20845. },
  20846. {
  20847. name: "Macro",
  20848. height: math.unit(45, "feet")
  20849. },
  20850. ]
  20851. ))
  20852. characterMakers.push(() => makeCharacter(
  20853. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  20854. {
  20855. front: {
  20856. height: math.unit(6 + 1 / 12, "feet"),
  20857. weight: math.unit(75, "lb"),
  20858. name: "Front",
  20859. image: {
  20860. source: "./media/characters/aronai-sieyes/front.svg",
  20861. extra: 1532/1450,
  20862. bottom: 42/1574
  20863. }
  20864. },
  20865. side: {
  20866. height: math.unit(6 + 1 / 12, "feet"),
  20867. weight: math.unit(75, "lb"),
  20868. name: "Side",
  20869. image: {
  20870. source: "./media/characters/aronai-sieyes/side.svg",
  20871. extra: 1422/1365,
  20872. bottom: 148/1570
  20873. }
  20874. },
  20875. back: {
  20876. height: math.unit(6 + 1 / 12, "feet"),
  20877. weight: math.unit(75, "lb"),
  20878. name: "Back",
  20879. image: {
  20880. source: "./media/characters/aronai-sieyes/back.svg",
  20881. extra: 1526/1464,
  20882. bottom: 51/1577
  20883. }
  20884. },
  20885. dressed: {
  20886. height: math.unit(6 + 1 / 12, "feet"),
  20887. weight: math.unit(75, "lb"),
  20888. name: "Dressed",
  20889. image: {
  20890. source: "./media/characters/aronai-sieyes/dressed.svg",
  20891. extra: 1559/1483,
  20892. bottom: 39/1598
  20893. }
  20894. },
  20895. slit: {
  20896. height: math.unit(1.3, "feet"),
  20897. name: "Slit",
  20898. image: {
  20899. source: "./media/characters/aronai-sieyes/slit.svg"
  20900. }
  20901. },
  20902. slitSpread: {
  20903. height: math.unit(0.9, "feet"),
  20904. name: "Slit (Spread)",
  20905. image: {
  20906. source: "./media/characters/aronai-sieyes/slit-spread.svg"
  20907. }
  20908. },
  20909. rump: {
  20910. height: math.unit(1.3, "feet"),
  20911. name: "Rump",
  20912. image: {
  20913. source: "./media/characters/aronai-sieyes/rump.svg"
  20914. }
  20915. },
  20916. maw: {
  20917. height: math.unit(1.25, "feet"),
  20918. name: "Maw",
  20919. image: {
  20920. source: "./media/characters/aronai-sieyes/maw.svg"
  20921. }
  20922. },
  20923. feral: {
  20924. height: math.unit(18, "feet"),
  20925. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  20926. name: "Feral",
  20927. image: {
  20928. source: "./media/characters/aronai-sieyes/feral.svg",
  20929. extra: 1530 / 1240,
  20930. bottom: 0.035
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Micro",
  20937. height: math.unit(2, "inches")
  20938. },
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(6 + 1 / 12, "feet"),
  20942. default: true
  20943. }
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  20948. {
  20949. front: {
  20950. height: math.unit(12, "feet"),
  20951. weight: math.unit(410, "kg"),
  20952. name: "Front",
  20953. image: {
  20954. source: "./media/characters/xuna/front.svg",
  20955. extra: 2184 / 1980
  20956. }
  20957. },
  20958. side: {
  20959. height: math.unit(12, "feet"),
  20960. weight: math.unit(410, "kg"),
  20961. name: "Side",
  20962. image: {
  20963. source: "./media/characters/xuna/side.svg",
  20964. extra: 2184 / 1980
  20965. }
  20966. },
  20967. back: {
  20968. height: math.unit(12, "feet"),
  20969. weight: math.unit(410, "kg"),
  20970. name: "Back",
  20971. image: {
  20972. source: "./media/characters/xuna/back.svg",
  20973. extra: 2184 / 1980
  20974. }
  20975. },
  20976. },
  20977. [
  20978. {
  20979. name: "Nano glow",
  20980. height: math.unit(10, "nm")
  20981. },
  20982. {
  20983. name: "Micro floof",
  20984. height: math.unit(0.3, "m")
  20985. },
  20986. {
  20987. name: "Huggable softy boi",
  20988. height: math.unit(3.6576, "m"),
  20989. default: true
  20990. },
  20991. {
  20992. name: "Admirable floof",
  20993. height: math.unit(80, "meters")
  20994. },
  20995. {
  20996. name: "Gentle macro",
  20997. height: math.unit(300, "meters")
  20998. },
  20999. {
  21000. name: "Very careful floof",
  21001. height: math.unit(3200, "meters")
  21002. },
  21003. {
  21004. name: "The mega floof",
  21005. height: math.unit(36000, "meters")
  21006. },
  21007. {
  21008. name: "Giga-fur-Wicker",
  21009. height: math.unit(4800000, "meters")
  21010. },
  21011. {
  21012. name: "Licky world",
  21013. height: math.unit(20000000, "meters")
  21014. },
  21015. {
  21016. name: "Floofy cyan sun",
  21017. height: math.unit(1500000000, "meters")
  21018. },
  21019. {
  21020. name: "Milky Wicker",
  21021. height: math.unit(1000000000000000000000, "meters")
  21022. },
  21023. {
  21024. name: "The observing Wicker",
  21025. height: math.unit(999999999999999999999999999, "meters")
  21026. },
  21027. ]
  21028. ))
  21029. characterMakers.push(() => makeCharacter(
  21030. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21031. {
  21032. front: {
  21033. height: math.unit(5 + 9 / 12, "feet"),
  21034. weight: math.unit(150, "lb"),
  21035. name: "Front",
  21036. image: {
  21037. source: "./media/characters/arokha-sieyes/front.svg",
  21038. extra: 1425 / 1284,
  21039. bottom: 0.05
  21040. }
  21041. },
  21042. },
  21043. [
  21044. {
  21045. name: "Normal",
  21046. height: math.unit(5 + 9 / 12, "feet")
  21047. },
  21048. {
  21049. name: "Macro",
  21050. height: math.unit(30, "meters"),
  21051. default: true
  21052. },
  21053. ]
  21054. ))
  21055. characterMakers.push(() => makeCharacter(
  21056. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  21057. {
  21058. front: {
  21059. height: math.unit(6, "feet"),
  21060. weight: math.unit(180, "lb"),
  21061. name: "Front",
  21062. image: {
  21063. source: "./media/characters/arokh-sieyes/front.svg",
  21064. extra: 1830 / 1769,
  21065. bottom: 0.01
  21066. }
  21067. },
  21068. },
  21069. [
  21070. {
  21071. name: "Normal",
  21072. height: math.unit(6, "feet")
  21073. },
  21074. {
  21075. name: "Macro",
  21076. height: math.unit(30, "meters"),
  21077. default: true
  21078. },
  21079. ]
  21080. ))
  21081. characterMakers.push(() => makeCharacter(
  21082. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  21083. {
  21084. side: {
  21085. height: math.unit(13 + 1 / 12, "feet"),
  21086. weight: math.unit(8.5, "tonnes"),
  21087. preyCapacity: math.unit(36, "people"),
  21088. name: "Side",
  21089. image: {
  21090. source: "./media/characters/goldeneye/side.svg",
  21091. extra: 1139/741,
  21092. bottom: 98/1237
  21093. }
  21094. },
  21095. front: {
  21096. height: math.unit(5.1, "feet"),
  21097. weight: math.unit(8.5, "tonnes"),
  21098. preyCapacity: math.unit(36, "people"),
  21099. name: "Front",
  21100. image: {
  21101. source: "./media/characters/goldeneye/front.svg",
  21102. extra: 635/365,
  21103. bottom: 598/1233
  21104. }
  21105. },
  21106. maw: {
  21107. height: math.unit(6.6, "feet"),
  21108. name: "Maw",
  21109. image: {
  21110. source: "./media/characters/goldeneye/maw.svg"
  21111. }
  21112. },
  21113. headFront: {
  21114. height: math.unit(8, "feet"),
  21115. name: "Head (Front)",
  21116. image: {
  21117. source: "./media/characters/goldeneye/head-front.svg"
  21118. }
  21119. },
  21120. headSide: {
  21121. height: math.unit(6, "feet"),
  21122. name: "Head (Side)",
  21123. image: {
  21124. source: "./media/characters/goldeneye/head-side.svg"
  21125. }
  21126. },
  21127. headBack: {
  21128. height: math.unit(8, "feet"),
  21129. name: "Head (Back)",
  21130. image: {
  21131. source: "./media/characters/goldeneye/head-back.svg"
  21132. }
  21133. },
  21134. paw: {
  21135. height: math.unit(3.4, "feet"),
  21136. name: "Paw",
  21137. image: {
  21138. source: "./media/characters/goldeneye/paw.svg"
  21139. }
  21140. },
  21141. toering: {
  21142. height: math.unit(0.45, "feet"),
  21143. name: "Toering",
  21144. image: {
  21145. source: "./media/characters/goldeneye/toering.svg"
  21146. }
  21147. },
  21148. eyes: {
  21149. height: math.unit(0.5, "feet"),
  21150. name: "Eyes",
  21151. image: {
  21152. source: "./media/characters/goldeneye/eyes.svg"
  21153. }
  21154. },
  21155. },
  21156. [
  21157. {
  21158. name: "Normal",
  21159. height: math.unit(13 + 1 / 12, "feet"),
  21160. default: true
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest", "werebeast"], tags: ["anthro", "feral", "taur"] },
  21166. {
  21167. front: {
  21168. height: math.unit(6 + 1 / 12, "feet"),
  21169. weight: math.unit(210, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/leonardo-lycheborne/front.svg",
  21173. extra: 776/723,
  21174. bottom: 34/810
  21175. }
  21176. },
  21177. side: {
  21178. height: math.unit(6 + 1 / 12, "feet"),
  21179. weight: math.unit(210, "lb"),
  21180. name: "Side",
  21181. image: {
  21182. source: "./media/characters/leonardo-lycheborne/side.svg",
  21183. extra: 780/728,
  21184. bottom: 12/792
  21185. }
  21186. },
  21187. back: {
  21188. height: math.unit(6 + 1 / 12, "feet"),
  21189. weight: math.unit(210, "lb"),
  21190. name: "Back",
  21191. image: {
  21192. source: "./media/characters/leonardo-lycheborne/back.svg",
  21193. extra: 775/721,
  21194. bottom: 17/792
  21195. }
  21196. },
  21197. hand: {
  21198. height: math.unit(1.08, "feet"),
  21199. name: "Hand",
  21200. image: {
  21201. source: "./media/characters/leonardo-lycheborne/hand.svg"
  21202. }
  21203. },
  21204. foot: {
  21205. height: math.unit(1.32, "feet"),
  21206. name: "Foot",
  21207. image: {
  21208. source: "./media/characters/leonardo-lycheborne/foot.svg"
  21209. }
  21210. },
  21211. maw: {
  21212. height: math.unit(1, "feet"),
  21213. name: "Maw",
  21214. image: {
  21215. source: "./media/characters/leonardo-lycheborne/maw.svg"
  21216. }
  21217. },
  21218. were: {
  21219. height: math.unit(20, "feet"),
  21220. weight: math.unit(7800, "lb"),
  21221. name: "Were",
  21222. image: {
  21223. source: "./media/characters/leonardo-lycheborne/were.svg",
  21224. extra: 1224/1165,
  21225. bottom: 72/1296
  21226. }
  21227. },
  21228. feral: {
  21229. height: math.unit(7.5, "feet"),
  21230. weight: math.unit(600, "lb"),
  21231. name: "Feral",
  21232. image: {
  21233. source: "./media/characters/leonardo-lycheborne/feral.svg",
  21234. extra: 797/702,
  21235. bottom: 139/936
  21236. }
  21237. },
  21238. taur: {
  21239. height: math.unit(11, "feet"),
  21240. weight: math.unit(3300, "lb"),
  21241. name: "Taur",
  21242. image: {
  21243. source: "./media/characters/leonardo-lycheborne/taur.svg",
  21244. extra: 1271/1197,
  21245. bottom: 47/1318
  21246. }
  21247. },
  21248. barghest: {
  21249. height: math.unit(11, "feet"),
  21250. weight: math.unit(1300, "lb"),
  21251. name: "Barghest",
  21252. image: {
  21253. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  21254. extra: 1291/1204,
  21255. bottom: 37/1328
  21256. }
  21257. },
  21258. dick: {
  21259. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  21260. name: "Dick",
  21261. image: {
  21262. source: "./media/characters/leonardo-lycheborne/dick.svg"
  21263. }
  21264. },
  21265. dickWere: {
  21266. height: math.unit((20) / 3.8, "feet"),
  21267. name: "Dick (Were)",
  21268. image: {
  21269. source: "./media/characters/leonardo-lycheborne/dick-were.svg"
  21270. }
  21271. },
  21272. },
  21273. [
  21274. {
  21275. name: "Normal",
  21276. height: math.unit(6 + 1 / 12, "feet"),
  21277. default: true
  21278. },
  21279. ]
  21280. ))
  21281. characterMakers.push(() => makeCharacter(
  21282. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  21283. {
  21284. front: {
  21285. height: math.unit(10, "feet"),
  21286. weight: math.unit(350, "lb"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/jet/front.svg",
  21290. extra: 2050 / 1980,
  21291. bottom: 0.013
  21292. }
  21293. },
  21294. back: {
  21295. height: math.unit(10, "feet"),
  21296. weight: math.unit(350, "lb"),
  21297. name: "Back",
  21298. image: {
  21299. source: "./media/characters/jet/back.svg",
  21300. extra: 2050 / 1980,
  21301. bottom: 0.013
  21302. }
  21303. },
  21304. },
  21305. [
  21306. {
  21307. name: "Micro",
  21308. height: math.unit(6, "inches")
  21309. },
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(10, "feet"),
  21313. default: true
  21314. },
  21315. {
  21316. name: "Macro",
  21317. height: math.unit(100, "feet")
  21318. },
  21319. ]
  21320. ))
  21321. characterMakers.push(() => makeCharacter(
  21322. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  21323. {
  21324. front: {
  21325. height: math.unit(15, "feet"),
  21326. weight: math.unit(2800, "lb"),
  21327. name: "Front",
  21328. image: {
  21329. source: "./media/characters/tanarath/front.svg",
  21330. extra: 2392 / 2220,
  21331. bottom: 0.03
  21332. }
  21333. },
  21334. back: {
  21335. height: math.unit(15, "feet"),
  21336. weight: math.unit(2800, "lb"),
  21337. name: "Back",
  21338. image: {
  21339. source: "./media/characters/tanarath/back.svg",
  21340. extra: 2392 / 2220,
  21341. bottom: 0.03
  21342. }
  21343. },
  21344. },
  21345. [
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(15, "feet"),
  21349. default: true
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  21355. {
  21356. front: {
  21357. height: math.unit(7 + 1 / 12, "feet"),
  21358. weight: math.unit(175, "lb"),
  21359. name: "Front",
  21360. image: {
  21361. source: "./media/characters/patty-cattybatty/front.svg",
  21362. extra: 908 / 874,
  21363. bottom: 0.025
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Micro",
  21370. height: math.unit(1, "inch")
  21371. },
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(7 + 1 / 12, "feet")
  21375. },
  21376. {
  21377. name: "Mini Macro",
  21378. height: math.unit(155, "feet")
  21379. },
  21380. {
  21381. name: "Macro",
  21382. height: math.unit(1077, "feet")
  21383. },
  21384. {
  21385. name: "Mega Macro",
  21386. height: math.unit(47650, "feet"),
  21387. default: true
  21388. },
  21389. {
  21390. name: "Giga Macro",
  21391. height: math.unit(440, "miles")
  21392. },
  21393. {
  21394. name: "Tera Macro",
  21395. height: math.unit(8700, "miles")
  21396. },
  21397. {
  21398. name: "Planetary Macro",
  21399. height: math.unit(32700, "miles")
  21400. },
  21401. {
  21402. name: "Solar Macro",
  21403. height: math.unit(550000, "miles")
  21404. },
  21405. {
  21406. name: "Celestial Macro",
  21407. height: math.unit(2.5, "AU")
  21408. },
  21409. ]
  21410. ))
  21411. characterMakers.push(() => makeCharacter(
  21412. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  21413. {
  21414. front: {
  21415. height: math.unit(4 + 5 / 12, "feet"),
  21416. weight: math.unit(90, "lb"),
  21417. name: "Front",
  21418. image: {
  21419. source: "./media/characters/cappu/front.svg",
  21420. extra: 1247 / 1152,
  21421. bottom: 0.012
  21422. }
  21423. },
  21424. },
  21425. [
  21426. {
  21427. name: "Normal",
  21428. height: math.unit(4 + 5 / 12, "feet"),
  21429. default: true
  21430. },
  21431. ]
  21432. ))
  21433. characterMakers.push(() => makeCharacter(
  21434. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  21435. {
  21436. frontDressed: {
  21437. height: math.unit(70, "cm"),
  21438. weight: math.unit(6, "kg"),
  21439. name: "Front (Dressed)",
  21440. image: {
  21441. source: "./media/characters/sebi/front-dressed.svg",
  21442. extra: 713.5 / 686.5,
  21443. bottom: 0.003
  21444. }
  21445. },
  21446. front: {
  21447. height: math.unit(70, "cm"),
  21448. weight: math.unit(5, "kg"),
  21449. name: "Front",
  21450. image: {
  21451. source: "./media/characters/sebi/front.svg",
  21452. extra: 713.5 / 686.5,
  21453. bottom: 0.003
  21454. }
  21455. }
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(70, "cm"),
  21461. default: true
  21462. },
  21463. {
  21464. name: "Macro",
  21465. height: math.unit(8, "meters")
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  21471. {
  21472. front: {
  21473. height: math.unit(6, "feet"),
  21474. weight: math.unit(150, "lb"),
  21475. name: "Front",
  21476. image: {
  21477. source: "./media/characters/typhek/front.svg",
  21478. extra: 1948 / 1929,
  21479. bottom: 0.025
  21480. }
  21481. },
  21482. side: {
  21483. height: math.unit(6, "feet"),
  21484. weight: math.unit(150, "lb"),
  21485. name: "Side",
  21486. image: {
  21487. source: "./media/characters/typhek/side.svg",
  21488. extra: 2034 / 2010,
  21489. bottom: 0.003
  21490. }
  21491. },
  21492. back: {
  21493. height: math.unit(6, "feet"),
  21494. weight: math.unit(150, "lb"),
  21495. name: "Back",
  21496. image: {
  21497. source: "./media/characters/typhek/back.svg",
  21498. extra: 2005 / 1978,
  21499. bottom: 0.004
  21500. }
  21501. },
  21502. palm: {
  21503. height: math.unit(1.2, "feet"),
  21504. name: "Palm",
  21505. image: {
  21506. source: "./media/characters/typhek/palm.svg"
  21507. }
  21508. },
  21509. fist: {
  21510. height: math.unit(1.1, "feet"),
  21511. name: "Fist",
  21512. image: {
  21513. source: "./media/characters/typhek/fist.svg"
  21514. }
  21515. },
  21516. foot: {
  21517. height: math.unit(1.57, "feet"),
  21518. name: "Foot",
  21519. image: {
  21520. source: "./media/characters/typhek/foot.svg"
  21521. }
  21522. },
  21523. sole: {
  21524. height: math.unit(2.05, "feet"),
  21525. name: "Sole",
  21526. image: {
  21527. source: "./media/characters/typhek/sole.svg"
  21528. }
  21529. },
  21530. },
  21531. [
  21532. {
  21533. name: "Macro",
  21534. height: math.unit(40, "stories"),
  21535. default: true
  21536. },
  21537. {
  21538. name: "Megamacro",
  21539. height: math.unit(1, "mile")
  21540. },
  21541. {
  21542. name: "Gigamacro",
  21543. height: math.unit(4000, "solarradii")
  21544. },
  21545. {
  21546. name: "Universal",
  21547. height: math.unit(1.1, "universes")
  21548. }
  21549. ]
  21550. ))
  21551. characterMakers.push(() => makeCharacter(
  21552. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  21553. {
  21554. side: {
  21555. height: math.unit(5 + 7 / 12, "feet"),
  21556. weight: math.unit(150, "lb"),
  21557. name: "Side",
  21558. image: {
  21559. source: "./media/characters/kassy/side.svg",
  21560. extra: 1280 / 1225,
  21561. bottom: 0.002
  21562. }
  21563. },
  21564. front: {
  21565. height: math.unit(5 + 7 / 12, "feet"),
  21566. weight: math.unit(150, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/kassy/front.svg",
  21570. extra: 1280 / 1225,
  21571. bottom: 0.025
  21572. }
  21573. },
  21574. back: {
  21575. height: math.unit(5 + 7 / 12, "feet"),
  21576. weight: math.unit(150, "lb"),
  21577. name: "Back",
  21578. image: {
  21579. source: "./media/characters/kassy/back.svg",
  21580. extra: 1280 / 1225,
  21581. bottom: 0.002
  21582. }
  21583. },
  21584. foot: {
  21585. height: math.unit(1.266, "feet"),
  21586. name: "Foot",
  21587. image: {
  21588. source: "./media/characters/kassy/foot.svg"
  21589. }
  21590. },
  21591. },
  21592. [
  21593. {
  21594. name: "Normal",
  21595. height: math.unit(5 + 7 / 12, "feet")
  21596. },
  21597. {
  21598. name: "Macro",
  21599. height: math.unit(137, "feet"),
  21600. default: true
  21601. },
  21602. {
  21603. name: "Megamacro",
  21604. height: math.unit(1, "mile")
  21605. },
  21606. ]
  21607. ))
  21608. characterMakers.push(() => makeCharacter(
  21609. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  21610. {
  21611. front: {
  21612. height: math.unit(6 + 1 / 12, "feet"),
  21613. weight: math.unit(200, "lb"),
  21614. name: "Front",
  21615. image: {
  21616. source: "./media/characters/neil/front.svg",
  21617. extra: 1326 / 1250,
  21618. bottom: 0.023
  21619. }
  21620. },
  21621. },
  21622. [
  21623. {
  21624. name: "Normal",
  21625. height: math.unit(6 + 1 / 12, "feet"),
  21626. default: true
  21627. },
  21628. {
  21629. name: "Macro",
  21630. height: math.unit(200, "feet")
  21631. },
  21632. ]
  21633. ))
  21634. characterMakers.push(() => makeCharacter(
  21635. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  21636. {
  21637. front: {
  21638. height: math.unit(5 + 9 / 12, "feet"),
  21639. weight: math.unit(190, "lb"),
  21640. name: "Front",
  21641. image: {
  21642. source: "./media/characters/atticus/front.svg",
  21643. extra: 2934 / 2785,
  21644. bottom: 0.025
  21645. }
  21646. },
  21647. },
  21648. [
  21649. {
  21650. name: "Normal",
  21651. height: math.unit(5 + 9 / 12, "feet"),
  21652. default: true
  21653. },
  21654. {
  21655. name: "Macro",
  21656. height: math.unit(180, "feet")
  21657. },
  21658. ]
  21659. ))
  21660. characterMakers.push(() => makeCharacter(
  21661. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  21662. {
  21663. side: {
  21664. height: math.unit(9, "feet"),
  21665. weight: math.unit(650, "lb"),
  21666. name: "Side",
  21667. image: {
  21668. source: "./media/characters/milo/side.svg",
  21669. extra: 2644 / 2310,
  21670. bottom: 0.032
  21671. }
  21672. },
  21673. },
  21674. [
  21675. {
  21676. name: "Normal",
  21677. height: math.unit(9, "feet"),
  21678. default: true
  21679. },
  21680. {
  21681. name: "Macro",
  21682. height: math.unit(300, "feet")
  21683. },
  21684. ]
  21685. ))
  21686. characterMakers.push(() => makeCharacter(
  21687. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  21688. {
  21689. side: {
  21690. height: math.unit(8, "meters"),
  21691. weight: math.unit(90000, "kg"),
  21692. name: "Side",
  21693. image: {
  21694. source: "./media/characters/ijzer/side.svg",
  21695. extra: 2756 / 1600,
  21696. bottom: 0.01
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Small",
  21703. height: math.unit(3, "meters")
  21704. },
  21705. {
  21706. name: "Normal",
  21707. height: math.unit(8, "meters"),
  21708. default: true
  21709. },
  21710. {
  21711. name: "Normal+",
  21712. height: math.unit(10, "meters")
  21713. },
  21714. {
  21715. name: "Bigger",
  21716. height: math.unit(24, "meters")
  21717. },
  21718. {
  21719. name: "Huge",
  21720. height: math.unit(80, "meters")
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  21726. {
  21727. front: {
  21728. height: math.unit(6 + 2 / 12, "feet"),
  21729. weight: math.unit(153, "lb"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/luca-cervicum/front.svg",
  21733. extra: 370 / 327,
  21734. bottom: 0.015
  21735. }
  21736. },
  21737. back: {
  21738. height: math.unit(6 + 2 / 12, "feet"),
  21739. weight: math.unit(153, "lb"),
  21740. name: "Back",
  21741. image: {
  21742. source: "./media/characters/luca-cervicum/back.svg",
  21743. extra: 367 / 333,
  21744. bottom: 0.005
  21745. }
  21746. },
  21747. frontGear: {
  21748. height: math.unit(6 + 2 / 12, "feet"),
  21749. weight: math.unit(173, "lb"),
  21750. name: "Front (Gear)",
  21751. image: {
  21752. source: "./media/characters/luca-cervicum/front-gear.svg",
  21753. extra: 377 / 333,
  21754. bottom: 0.006
  21755. }
  21756. },
  21757. },
  21758. [
  21759. {
  21760. name: "Normal",
  21761. height: math.unit(6 + 2 / 12, "feet"),
  21762. default: true
  21763. },
  21764. ]
  21765. ))
  21766. characterMakers.push(() => makeCharacter(
  21767. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  21768. {
  21769. front: {
  21770. height: math.unit(6 + 1 / 12, "feet"),
  21771. weight: math.unit(304, "lb"),
  21772. name: "Front",
  21773. image: {
  21774. source: "./media/characters/oliver/front.svg",
  21775. extra: 157 / 143,
  21776. bottom: 0.08
  21777. }
  21778. },
  21779. },
  21780. [
  21781. {
  21782. name: "Normal",
  21783. height: math.unit(6 + 1 / 12, "feet"),
  21784. default: true
  21785. },
  21786. ]
  21787. ))
  21788. characterMakers.push(() => makeCharacter(
  21789. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  21790. {
  21791. front: {
  21792. height: math.unit(5 + 7 / 12, "feet"),
  21793. weight: math.unit(140, "lb"),
  21794. name: "Front",
  21795. image: {
  21796. source: "./media/characters/shane/front.svg",
  21797. extra: 304 / 289,
  21798. bottom: 0.005
  21799. }
  21800. },
  21801. },
  21802. [
  21803. {
  21804. name: "Normal",
  21805. height: math.unit(5 + 7 / 12, "feet"),
  21806. default: true
  21807. },
  21808. ]
  21809. ))
  21810. characterMakers.push(() => makeCharacter(
  21811. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  21812. {
  21813. front: {
  21814. height: math.unit(5 + 9 / 12, "feet"),
  21815. weight: math.unit(178, "lb"),
  21816. name: "Front",
  21817. image: {
  21818. source: "./media/characters/shin/front.svg",
  21819. extra: 159 / 151,
  21820. bottom: 0.015
  21821. }
  21822. },
  21823. },
  21824. [
  21825. {
  21826. name: "Normal",
  21827. height: math.unit(5 + 9 / 12, "feet"),
  21828. default: true
  21829. },
  21830. ]
  21831. ))
  21832. characterMakers.push(() => makeCharacter(
  21833. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  21834. {
  21835. front: {
  21836. height: math.unit(5 + 10 / 12, "feet"),
  21837. weight: math.unit(168, "lb"),
  21838. name: "Front",
  21839. image: {
  21840. source: "./media/characters/xerxes/front.svg",
  21841. extra: 282 / 260,
  21842. bottom: 0.045
  21843. }
  21844. },
  21845. },
  21846. [
  21847. {
  21848. name: "Normal",
  21849. height: math.unit(5 + 10 / 12, "feet"),
  21850. default: true
  21851. },
  21852. ]
  21853. ))
  21854. characterMakers.push(() => makeCharacter(
  21855. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  21856. {
  21857. front: {
  21858. height: math.unit(6 + 7 / 12, "feet"),
  21859. weight: math.unit(208, "lb"),
  21860. name: "Front",
  21861. image: {
  21862. source: "./media/characters/chaska/front.svg",
  21863. extra: 332 / 319,
  21864. bottom: 0.015
  21865. }
  21866. },
  21867. },
  21868. [
  21869. {
  21870. name: "Normal",
  21871. height: math.unit(6 + 7 / 12, "feet"),
  21872. default: true
  21873. },
  21874. ]
  21875. ))
  21876. characterMakers.push(() => makeCharacter(
  21877. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  21878. {
  21879. front: {
  21880. height: math.unit(5 + 8 / 12, "feet"),
  21881. weight: math.unit(208, "lb"),
  21882. name: "Front",
  21883. image: {
  21884. source: "./media/characters/enuk/front.svg",
  21885. extra: 437 / 406,
  21886. bottom: 0.02
  21887. }
  21888. },
  21889. },
  21890. [
  21891. {
  21892. name: "Normal",
  21893. height: math.unit(5 + 8 / 12, "feet"),
  21894. default: true
  21895. },
  21896. ]
  21897. ))
  21898. characterMakers.push(() => makeCharacter(
  21899. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  21900. {
  21901. front: {
  21902. height: math.unit(5 + 10 / 12, "feet"),
  21903. weight: math.unit(252, "lb"),
  21904. name: "Front",
  21905. image: {
  21906. source: "./media/characters/bruun/front.svg",
  21907. extra: 197 / 187,
  21908. bottom: 0.012
  21909. }
  21910. },
  21911. },
  21912. [
  21913. {
  21914. name: "Normal",
  21915. height: math.unit(5 + 10 / 12, "feet"),
  21916. default: true
  21917. },
  21918. ]
  21919. ))
  21920. characterMakers.push(() => makeCharacter(
  21921. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  21922. {
  21923. front: {
  21924. height: math.unit(6 + 10 / 12, "feet"),
  21925. weight: math.unit(255, "lb"),
  21926. name: "Front",
  21927. image: {
  21928. source: "./media/characters/alexeev/front.svg",
  21929. extra: 213 / 200,
  21930. bottom: 0.05
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Normal",
  21937. height: math.unit(6 + 10 / 12, "feet"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  21944. {
  21945. front: {
  21946. height: math.unit(2 + 8 / 12, "feet"),
  21947. weight: math.unit(22, "lb"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/evelyn/front.svg",
  21951. extra: 208 / 180
  21952. }
  21953. },
  21954. },
  21955. [
  21956. {
  21957. name: "Normal",
  21958. height: math.unit(2 + 8 / 12, "feet"),
  21959. default: true
  21960. },
  21961. ]
  21962. ))
  21963. characterMakers.push(() => makeCharacter(
  21964. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  21965. {
  21966. front: {
  21967. height: math.unit(5 + 9 / 12, "feet"),
  21968. weight: math.unit(139, "lb"),
  21969. name: "Front",
  21970. image: {
  21971. source: "./media/characters/inca/front.svg",
  21972. extra: 294 / 291,
  21973. bottom: 0.03
  21974. }
  21975. },
  21976. },
  21977. [
  21978. {
  21979. name: "Normal",
  21980. height: math.unit(5 + 9 / 12, "feet"),
  21981. default: true
  21982. },
  21983. ]
  21984. ))
  21985. characterMakers.push(() => makeCharacter(
  21986. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  21987. {
  21988. front: {
  21989. height: math.unit(6 + 3 / 12, "feet"),
  21990. weight: math.unit(185, "lb"),
  21991. name: "Front",
  21992. image: {
  21993. source: "./media/characters/mera/front.svg",
  21994. extra: 291 / 277,
  21995. bottom: 0.03
  21996. }
  21997. },
  21998. },
  21999. [
  22000. {
  22001. name: "Normal",
  22002. height: math.unit(6 + 3 / 12, "feet"),
  22003. default: true
  22004. },
  22005. ]
  22006. ))
  22007. characterMakers.push(() => makeCharacter(
  22008. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  22009. {
  22010. front: {
  22011. height: math.unit(6 + 7 / 12, "feet"),
  22012. weight: math.unit(160, "lb"),
  22013. name: "Front",
  22014. image: {
  22015. source: "./media/characters/ceres/front.svg",
  22016. extra: 1023 / 950,
  22017. bottom: 0.027
  22018. }
  22019. },
  22020. back: {
  22021. height: math.unit(6 + 7 / 12, "feet"),
  22022. weight: math.unit(160, "lb"),
  22023. name: "Back",
  22024. image: {
  22025. source: "./media/characters/ceres/back.svg",
  22026. extra: 1023 / 950
  22027. }
  22028. },
  22029. },
  22030. [
  22031. {
  22032. name: "Normal",
  22033. height: math.unit(6 + 7 / 12, "feet"),
  22034. default: true
  22035. },
  22036. ]
  22037. ))
  22038. characterMakers.push(() => makeCharacter(
  22039. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  22040. {
  22041. front: {
  22042. height: math.unit(5 + 10 / 12, "feet"),
  22043. weight: math.unit(150, "lb"),
  22044. name: "Front",
  22045. image: {
  22046. source: "./media/characters/kris/front.svg",
  22047. extra: 885 / 803,
  22048. bottom: 0.03
  22049. }
  22050. },
  22051. },
  22052. [
  22053. {
  22054. name: "Normal",
  22055. height: math.unit(5 + 10 / 12, "feet"),
  22056. default: true
  22057. },
  22058. ]
  22059. ))
  22060. characterMakers.push(() => makeCharacter(
  22061. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  22062. {
  22063. dragon_front: {
  22064. height: math.unit(5, "feet"),
  22065. name: "Front",
  22066. image: {
  22067. source: "./media/characters/taluthus/dragon-front.svg",
  22068. extra: 1203/1098,
  22069. bottom: 46/1249
  22070. },
  22071. form: "dragon",
  22072. default: true
  22073. },
  22074. dragon_maw: {
  22075. height: math.unit(2.35, "feet"),
  22076. name: "Maw",
  22077. image: {
  22078. source: "./media/characters/taluthus/dragon-maw.svg"
  22079. },
  22080. form: "dragon",
  22081. },
  22082. kitsune_front: {
  22083. height: math.unit(7, "feet"),
  22084. name: "Front",
  22085. image: {
  22086. source: "./media/characters/taluthus/kitsune-front.svg",
  22087. extra: 900/841,
  22088. bottom: 65/965
  22089. },
  22090. form: "kitsune",
  22091. default: true
  22092. },
  22093. },
  22094. [
  22095. {
  22096. name: "Normal",
  22097. height: math.unit(5, "feet"),
  22098. form: "dragon",
  22099. default: true,
  22100. },
  22101. {
  22102. name: "Normal",
  22103. height: math.unit(7, "feet"),
  22104. form: "kitsune",
  22105. default: true
  22106. },
  22107. {
  22108. name: "Macro",
  22109. height: math.unit(300, "feet"),
  22110. allForms: true
  22111. },
  22112. ],
  22113. {
  22114. "dragon": {
  22115. name: "Dragon",
  22116. default: true
  22117. },
  22118. "kitsune": {
  22119. name: "Kitsune",
  22120. },
  22121. }
  22122. ))
  22123. characterMakers.push(() => makeCharacter(
  22124. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  22125. {
  22126. front: {
  22127. height: math.unit(5 + 9 / 12, "feet"),
  22128. weight: math.unit(145, "lb"),
  22129. name: "Front",
  22130. image: {
  22131. source: "./media/characters/dawn/front.svg",
  22132. extra: 2094 / 2016,
  22133. bottom: 0.025
  22134. }
  22135. },
  22136. back: {
  22137. height: math.unit(5 + 9 / 12, "feet"),
  22138. weight: math.unit(160, "lb"),
  22139. name: "Back",
  22140. image: {
  22141. source: "./media/characters/dawn/back.svg",
  22142. extra: 2112 / 2080,
  22143. bottom: 0.005
  22144. }
  22145. },
  22146. },
  22147. [
  22148. {
  22149. name: "Normal",
  22150. height: math.unit(6 + 7 / 12, "feet"),
  22151. default: true
  22152. },
  22153. ]
  22154. ))
  22155. characterMakers.push(() => makeCharacter(
  22156. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  22157. {
  22158. anthro: {
  22159. height: math.unit(8 + 3 / 12, "feet"),
  22160. weight: math.unit(450, "lb"),
  22161. name: "Anthro",
  22162. image: {
  22163. source: "./media/characters/arador/anthro.svg",
  22164. extra: 1835 / 1718,
  22165. bottom: 0.025
  22166. }
  22167. },
  22168. feral: {
  22169. height: math.unit(4, "feet"),
  22170. weight: math.unit(200, "lb"),
  22171. name: "Feral",
  22172. image: {
  22173. source: "./media/characters/arador/feral.svg",
  22174. extra: 1683 / 1514,
  22175. bottom: 0.07
  22176. }
  22177. },
  22178. },
  22179. [
  22180. {
  22181. name: "Normal",
  22182. height: math.unit(8 + 3 / 12, "feet")
  22183. },
  22184. {
  22185. name: "Macro",
  22186. height: math.unit(82.5, "feet"),
  22187. default: true
  22188. },
  22189. ]
  22190. ))
  22191. characterMakers.push(() => makeCharacter(
  22192. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  22193. {
  22194. front: {
  22195. height: math.unit(5 + 10 / 12, "feet"),
  22196. weight: math.unit(125, "lb"),
  22197. name: "Front",
  22198. image: {
  22199. source: "./media/characters/dharsi/front.svg",
  22200. extra: 716 / 630,
  22201. bottom: 0.035
  22202. }
  22203. },
  22204. },
  22205. [
  22206. {
  22207. name: "Nano",
  22208. height: math.unit(100, "nm")
  22209. },
  22210. {
  22211. name: "Micro",
  22212. height: math.unit(2, "inches")
  22213. },
  22214. {
  22215. name: "Normal",
  22216. height: math.unit(5 + 10 / 12, "feet"),
  22217. default: true
  22218. },
  22219. {
  22220. name: "Macro",
  22221. height: math.unit(1000, "feet")
  22222. },
  22223. {
  22224. name: "Megamacro",
  22225. height: math.unit(10, "miles")
  22226. },
  22227. {
  22228. name: "Gigamacro",
  22229. height: math.unit(3000, "miles")
  22230. },
  22231. {
  22232. name: "Teramacro",
  22233. height: math.unit(500000, "miles")
  22234. },
  22235. {
  22236. name: "Teramacro+",
  22237. height: math.unit(30, "galaxies")
  22238. },
  22239. ]
  22240. ))
  22241. characterMakers.push(() => makeCharacter(
  22242. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  22243. {
  22244. front: {
  22245. height: math.unit(6, "feet"),
  22246. weight: math.unit(150, "lb"),
  22247. name: "Front",
  22248. image: {
  22249. source: "./media/characters/deathy/front.svg",
  22250. extra: 1552 / 1463,
  22251. bottom: 0.025
  22252. }
  22253. },
  22254. side: {
  22255. height: math.unit(6, "feet"),
  22256. weight: math.unit(150, "lb"),
  22257. name: "Side",
  22258. image: {
  22259. source: "./media/characters/deathy/side.svg",
  22260. extra: 1604 / 1455,
  22261. bottom: 0.025
  22262. }
  22263. },
  22264. back: {
  22265. height: math.unit(6, "feet"),
  22266. weight: math.unit(150, "lb"),
  22267. name: "Back",
  22268. image: {
  22269. source: "./media/characters/deathy/back.svg",
  22270. extra: 1580 / 1463,
  22271. bottom: 0.005
  22272. }
  22273. },
  22274. },
  22275. [
  22276. {
  22277. name: "Micro",
  22278. height: math.unit(5, "millimeters")
  22279. },
  22280. {
  22281. name: "Normal",
  22282. height: math.unit(6 + 5 / 12, "feet"),
  22283. default: true
  22284. },
  22285. ]
  22286. ))
  22287. characterMakers.push(() => makeCharacter(
  22288. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  22289. {
  22290. front: {
  22291. height: math.unit(16, "feet"),
  22292. weight: math.unit(4000, "lb"),
  22293. name: "Front",
  22294. image: {
  22295. source: "./media/characters/juniper/front.svg",
  22296. bottom: 0.04
  22297. }
  22298. },
  22299. },
  22300. [
  22301. {
  22302. name: "Normal",
  22303. height: math.unit(16, "feet"),
  22304. default: true
  22305. },
  22306. ]
  22307. ))
  22308. characterMakers.push(() => makeCharacter(
  22309. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  22310. {
  22311. front: {
  22312. height: math.unit(6, "feet"),
  22313. weight: math.unit(150, "lb"),
  22314. name: "Front",
  22315. image: {
  22316. source: "./media/characters/hipster/front.svg",
  22317. extra: 1312 / 1209,
  22318. bottom: 0.025
  22319. }
  22320. },
  22321. back: {
  22322. height: math.unit(6, "feet"),
  22323. weight: math.unit(150, "lb"),
  22324. name: "Back",
  22325. image: {
  22326. source: "./media/characters/hipster/back.svg",
  22327. extra: 1281 / 1196,
  22328. bottom: 0.01
  22329. }
  22330. },
  22331. },
  22332. [
  22333. {
  22334. name: "Micro",
  22335. height: math.unit(1, "mm")
  22336. },
  22337. {
  22338. name: "Normal",
  22339. height: math.unit(4, "inches"),
  22340. default: true
  22341. },
  22342. {
  22343. name: "Macro",
  22344. height: math.unit(500, "feet")
  22345. },
  22346. {
  22347. name: "Megamacro",
  22348. height: math.unit(1000, "miles")
  22349. },
  22350. ]
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  22354. {
  22355. front: {
  22356. height: math.unit(6, "feet"),
  22357. weight: math.unit(150, "lb"),
  22358. name: "Front",
  22359. image: {
  22360. source: "./media/characters/tendirmuldr/front.svg",
  22361. extra: 1878 / 1772,
  22362. bottom: 0.015
  22363. }
  22364. },
  22365. },
  22366. [
  22367. {
  22368. name: "Megamacro",
  22369. height: math.unit(1500, "miles"),
  22370. default: true
  22371. },
  22372. ]
  22373. ))
  22374. characterMakers.push(() => makeCharacter(
  22375. { name: "Mort", species: ["demon"], tags: ["feral"] },
  22376. {
  22377. front: {
  22378. height: math.unit(14, "feet"),
  22379. weight: math.unit(12000, "lb"),
  22380. name: "Front",
  22381. image: {
  22382. source: "./media/characters/mort/front.svg",
  22383. extra: 365 / 318,
  22384. bottom: 0.01
  22385. }
  22386. },
  22387. side: {
  22388. height: math.unit(14, "feet"),
  22389. weight: math.unit(12000, "lb"),
  22390. name: "Side",
  22391. image: {
  22392. source: "./media/characters/mort/side.svg",
  22393. extra: 365 / 318,
  22394. bottom: 0.052
  22395. },
  22396. default: true
  22397. },
  22398. back: {
  22399. height: math.unit(14, "feet"),
  22400. weight: math.unit(12000, "lb"),
  22401. name: "Back",
  22402. image: {
  22403. source: "./media/characters/mort/back.svg",
  22404. extra: 371 / 332,
  22405. bottom: 0.18
  22406. }
  22407. },
  22408. },
  22409. [
  22410. {
  22411. name: "Normal",
  22412. height: math.unit(14, "feet"),
  22413. default: true
  22414. },
  22415. ]
  22416. ))
  22417. characterMakers.push(() => makeCharacter(
  22418. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  22419. {
  22420. front: {
  22421. height: math.unit(8, "feet"),
  22422. weight: math.unit(1, "ton"),
  22423. name: "Front",
  22424. image: {
  22425. source: "./media/characters/lycoa/front.svg",
  22426. extra: 1836/1728,
  22427. bottom: 81/1917
  22428. }
  22429. },
  22430. back: {
  22431. height: math.unit(8, "feet"),
  22432. weight: math.unit(1, "ton"),
  22433. name: "Back",
  22434. image: {
  22435. source: "./media/characters/lycoa/back.svg",
  22436. extra: 1785/1720,
  22437. bottom: 91/1876
  22438. }
  22439. },
  22440. head: {
  22441. height: math.unit(1.6243, "feet"),
  22442. name: "Head",
  22443. image: {
  22444. source: "./media/characters/lycoa/head.svg",
  22445. extra: 1011/782,
  22446. bottom: 0/1011
  22447. }
  22448. },
  22449. tailmaw: {
  22450. height: math.unit(1.9, "feet"),
  22451. name: "Tailmaw",
  22452. image: {
  22453. source: "./media/characters/lycoa/tailmaw.svg"
  22454. }
  22455. },
  22456. tentacles: {
  22457. height: math.unit(2.1, "feet"),
  22458. name: "Tentacles",
  22459. image: {
  22460. source: "./media/characters/lycoa/tentacles.svg"
  22461. }
  22462. },
  22463. dick: {
  22464. height: math.unit(1.73, "feet"),
  22465. name: "Dick",
  22466. image: {
  22467. source: "./media/characters/lycoa/dick.svg"
  22468. }
  22469. },
  22470. },
  22471. [
  22472. {
  22473. name: "Normal",
  22474. height: math.unit(8, "feet"),
  22475. default: true
  22476. },
  22477. {
  22478. name: "Macro",
  22479. height: math.unit(30, "feet")
  22480. },
  22481. ]
  22482. ))
  22483. characterMakers.push(() => makeCharacter(
  22484. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  22485. {
  22486. front: {
  22487. height: math.unit(4 + 2 / 12, "feet"),
  22488. weight: math.unit(70, "lb"),
  22489. name: "Front",
  22490. image: {
  22491. source: "./media/characters/naldara/front.svg",
  22492. extra: 1664/1387,
  22493. bottom: 81/1745
  22494. },
  22495. form: "anthro",
  22496. default: true
  22497. },
  22498. naga: {
  22499. height: math.unit(20, "feet"),
  22500. weight: math.unit(15000, "kg"),
  22501. name: "Front",
  22502. image: {
  22503. source: "./media/characters/naldara/naga.svg",
  22504. extra: 1590/1396,
  22505. bottom: 285/1875
  22506. },
  22507. form: "naga",
  22508. default: true
  22509. },
  22510. },
  22511. [
  22512. {
  22513. name: "Normal",
  22514. height: math.unit(4 + 2 / 12, "feet"),
  22515. form: "anthro",
  22516. default: true
  22517. },
  22518. {
  22519. name: "Normal",
  22520. height: math.unit(20, "feet"),
  22521. form: "naga",
  22522. default: true
  22523. },
  22524. ],
  22525. {
  22526. "anthro": {
  22527. name: "Anthro",
  22528. default: true
  22529. },
  22530. "naga": {
  22531. name: "Naga"
  22532. }
  22533. }
  22534. ))
  22535. characterMakers.push(() => makeCharacter(
  22536. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  22537. {
  22538. front: {
  22539. height: math.unit(13 + 7 / 12, "feet"),
  22540. weight: math.unit(1500, "lb"),
  22541. name: "Front",
  22542. image: {
  22543. source: "./media/characters/briar/front.svg",
  22544. extra: 1223/1157,
  22545. bottom: 123/1346
  22546. }
  22547. },
  22548. },
  22549. [
  22550. {
  22551. name: "Normal",
  22552. height: math.unit(13 + 7 / 12, "feet"),
  22553. default: true
  22554. },
  22555. ]
  22556. ))
  22557. characterMakers.push(() => makeCharacter(
  22558. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  22559. {
  22560. side: {
  22561. height: math.unit(16, "feet"),
  22562. weight: math.unit(500, "lb"),
  22563. name: "Side",
  22564. image: {
  22565. source: "./media/characters/vanguard/side.svg",
  22566. extra: 1022/914,
  22567. bottom: 30/1052
  22568. }
  22569. },
  22570. sideAlt: {
  22571. height: math.unit(10, "feet"),
  22572. weight: math.unit(500, "lb"),
  22573. name: "Side (Alt)",
  22574. image: {
  22575. source: "./media/characters/vanguard/side-alt.svg",
  22576. extra: 502 / 425,
  22577. bottom: 0.087
  22578. }
  22579. },
  22580. },
  22581. [
  22582. {
  22583. name: "Normal",
  22584. height: math.unit(17.71, "feet"),
  22585. default: true
  22586. },
  22587. ]
  22588. ))
  22589. characterMakers.push(() => makeCharacter(
  22590. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  22591. {
  22592. front: {
  22593. height: math.unit(7.5, "feet"),
  22594. weight: math.unit(2, "lb"),
  22595. name: "Front",
  22596. image: {
  22597. source: "./media/characters/artemis/work-safe-front.svg",
  22598. extra: 1192 / 1075,
  22599. bottom: 0.07
  22600. },
  22601. form: "work-safe",
  22602. default: true
  22603. },
  22604. frontNsfw: {
  22605. height: math.unit(7.5, "feet"),
  22606. weight: math.unit(2, "lb"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/artemis/calibrating-front.svg",
  22610. extra: 1192 / 1075,
  22611. bottom: 0.07
  22612. },
  22613. form: "calibrating",
  22614. default: true
  22615. },
  22616. frontNsfwer: {
  22617. height: math.unit(7.5, "feet"),
  22618. weight: math.unit(2, "lb"),
  22619. name: "Front",
  22620. image: {
  22621. source: "./media/characters/artemis/oversize-load-front.svg",
  22622. extra: 1192 / 1075,
  22623. bottom: 0.07
  22624. },
  22625. form: "oversize-load",
  22626. default: true
  22627. },
  22628. side: {
  22629. height: math.unit(7.5, "feet"),
  22630. weight: math.unit(2, "lb"),
  22631. name: "Side",
  22632. image: {
  22633. source: "./media/characters/artemis/work-safe-side.svg",
  22634. extra: 1192 / 1075,
  22635. bottom: 0.07
  22636. },
  22637. form: "work-safe"
  22638. },
  22639. sideNsfw: {
  22640. height: math.unit(7.5, "feet"),
  22641. weight: math.unit(2, "lb"),
  22642. name: "Side",
  22643. image: {
  22644. source: "./media/characters/artemis/calibrating-side.svg",
  22645. extra: 1192 / 1075,
  22646. bottom: 0.07
  22647. },
  22648. form: "calibrating"
  22649. },
  22650. sideNsfwer: {
  22651. height: math.unit(7.5, "feet"),
  22652. weight: math.unit(2, "lb"),
  22653. name: "Side",
  22654. image: {
  22655. source: "./media/characters/artemis/oversize-load-side.svg",
  22656. extra: 1192 / 1075,
  22657. bottom: 0.07
  22658. },
  22659. form: "oversize-load"
  22660. },
  22661. maw: {
  22662. height: math.unit(1.1, "feet"),
  22663. name: "Maw",
  22664. image: {
  22665. source: "./media/characters/artemis/maw.svg"
  22666. },
  22667. form: "work-safe"
  22668. },
  22669. stomach: {
  22670. height: math.unit(0.95, "feet"),
  22671. name: "Stomach",
  22672. image: {
  22673. source: "./media/characters/artemis/stomach.svg"
  22674. },
  22675. form: "work-safe"
  22676. },
  22677. dickCanine: {
  22678. height: math.unit(1, "feet"),
  22679. name: "Dick (Canine)",
  22680. image: {
  22681. source: "./media/characters/artemis/dick-canine.svg"
  22682. },
  22683. form: "calibrating"
  22684. },
  22685. dickEquine: {
  22686. height: math.unit(0.85, "feet"),
  22687. name: "Dick (Equine)",
  22688. image: {
  22689. source: "./media/characters/artemis/dick-equine.svg"
  22690. },
  22691. form: "calibrating"
  22692. },
  22693. dickExotic: {
  22694. height: math.unit(0.85, "feet"),
  22695. name: "Dick (Exotic)",
  22696. image: {
  22697. source: "./media/characters/artemis/dick-exotic.svg"
  22698. },
  22699. form: "calibrating"
  22700. },
  22701. dickCanineBigger: {
  22702. height: math.unit(1 * 1.33, "feet"),
  22703. name: "Dick (Canine)",
  22704. image: {
  22705. source: "./media/characters/artemis/dick-canine.svg"
  22706. },
  22707. form: "oversize-load"
  22708. },
  22709. dickEquineBigger: {
  22710. height: math.unit(0.85 * 1.33, "feet"),
  22711. name: "Dick (Equine)",
  22712. image: {
  22713. source: "./media/characters/artemis/dick-equine.svg"
  22714. },
  22715. form: "oversize-load"
  22716. },
  22717. dickExoticBigger: {
  22718. height: math.unit(0.85 * 1.33, "feet"),
  22719. name: "Dick (Exotic)",
  22720. image: {
  22721. source: "./media/characters/artemis/dick-exotic.svg"
  22722. },
  22723. form: "oversize-load"
  22724. },
  22725. },
  22726. [
  22727. {
  22728. name: "Normal",
  22729. height: math.unit(7.5, "feet"),
  22730. form: "work-safe",
  22731. default: true
  22732. },
  22733. {
  22734. name: "Normal",
  22735. height: math.unit(7.5, "feet"),
  22736. form: "calibrating",
  22737. default: true
  22738. },
  22739. {
  22740. name: "Normal",
  22741. height: math.unit(7.5, "feet"),
  22742. form: "oversize-load",
  22743. default: true
  22744. },
  22745. {
  22746. name: "Enlarged",
  22747. height: math.unit(12, "feet"),
  22748. form: "work-safe",
  22749. },
  22750. {
  22751. name: "Enlarged",
  22752. height: math.unit(12, "feet"),
  22753. form: "calibrating",
  22754. },
  22755. {
  22756. name: "Enlarged",
  22757. height: math.unit(12, "feet"),
  22758. form: "oversize-load",
  22759. },
  22760. ],
  22761. {
  22762. "work-safe": {
  22763. name: "Work-Safe",
  22764. default: true
  22765. },
  22766. "calibrating": {
  22767. name: "Calibrating"
  22768. },
  22769. "oversize-load": {
  22770. name: "Oversize Load"
  22771. }
  22772. }
  22773. ))
  22774. characterMakers.push(() => makeCharacter(
  22775. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  22776. {
  22777. front: {
  22778. height: math.unit(5 + 3 / 12, "feet"),
  22779. weight: math.unit(160, "lb"),
  22780. name: "Front",
  22781. image: {
  22782. source: "./media/characters/kira/front.svg",
  22783. extra: 906 / 786,
  22784. bottom: 0.01
  22785. }
  22786. },
  22787. back: {
  22788. height: math.unit(5 + 3 / 12, "feet"),
  22789. weight: math.unit(160, "lb"),
  22790. name: "Back",
  22791. image: {
  22792. source: "./media/characters/kira/back.svg",
  22793. extra: 882 / 757,
  22794. bottom: 0.005
  22795. }
  22796. },
  22797. frontDressed: {
  22798. height: math.unit(5 + 3 / 12, "feet"),
  22799. weight: math.unit(160, "lb"),
  22800. name: "Front (Dressed)",
  22801. image: {
  22802. source: "./media/characters/kira/front-dressed.svg",
  22803. extra: 906 / 786,
  22804. bottom: 0.01
  22805. }
  22806. },
  22807. beans: {
  22808. height: math.unit(0.92, "feet"),
  22809. name: "Beans",
  22810. image: {
  22811. source: "./media/characters/kira/beans.svg"
  22812. }
  22813. },
  22814. },
  22815. [
  22816. {
  22817. name: "Normal",
  22818. height: math.unit(5 + 3 / 12, "feet"),
  22819. default: true
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  22825. {
  22826. front: {
  22827. height: math.unit(5 + 4 / 12, "feet"),
  22828. weight: math.unit(145, "lb"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/scramble/front.svg",
  22832. extra: 763 / 727,
  22833. bottom: 0.05
  22834. }
  22835. },
  22836. back: {
  22837. height: math.unit(5 + 4 / 12, "feet"),
  22838. weight: math.unit(145, "lb"),
  22839. name: "Back",
  22840. image: {
  22841. source: "./media/characters/scramble/back.svg",
  22842. extra: 826 / 737,
  22843. bottom: 0.002
  22844. }
  22845. },
  22846. },
  22847. [
  22848. {
  22849. name: "Normal",
  22850. height: math.unit(5 + 4 / 12, "feet"),
  22851. default: true
  22852. },
  22853. ]
  22854. ))
  22855. characterMakers.push(() => makeCharacter(
  22856. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  22857. {
  22858. side: {
  22859. height: math.unit(6 + 2 / 12, "feet"),
  22860. weight: math.unit(190, "lb"),
  22861. name: "Side",
  22862. image: {
  22863. source: "./media/characters/biscuit/side.svg",
  22864. extra: 858 / 791,
  22865. bottom: 0.044
  22866. }
  22867. },
  22868. },
  22869. [
  22870. {
  22871. name: "Normal",
  22872. height: math.unit(6 + 2 / 12, "feet"),
  22873. default: true
  22874. },
  22875. ]
  22876. ))
  22877. characterMakers.push(() => makeCharacter(
  22878. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  22879. {
  22880. front: {
  22881. height: math.unit(5 + 2 / 12, "feet"),
  22882. weight: math.unit(120, "lb"),
  22883. name: "Front",
  22884. image: {
  22885. source: "./media/characters/poffin/front.svg",
  22886. extra: 786 / 680,
  22887. bottom: 0.005
  22888. }
  22889. },
  22890. },
  22891. [
  22892. {
  22893. name: "Normal",
  22894. height: math.unit(5 + 2 / 12, "feet"),
  22895. default: true
  22896. },
  22897. ]
  22898. ))
  22899. characterMakers.push(() => makeCharacter(
  22900. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  22901. {
  22902. front: {
  22903. height: math.unit(6 + 3 / 12, "feet"),
  22904. weight: math.unit(519, "lb"),
  22905. name: "Front",
  22906. image: {
  22907. source: "./media/characters/dhari/front.svg",
  22908. extra: 1048 / 946,
  22909. bottom: 0.015
  22910. }
  22911. },
  22912. back: {
  22913. height: math.unit(6 + 3 / 12, "feet"),
  22914. weight: math.unit(519, "lb"),
  22915. name: "Back",
  22916. image: {
  22917. source: "./media/characters/dhari/back.svg",
  22918. extra: 1048 / 931,
  22919. bottom: 0.005
  22920. }
  22921. },
  22922. frontDressed: {
  22923. height: math.unit(6 + 3 / 12, "feet"),
  22924. weight: math.unit(519, "lb"),
  22925. name: "Front (Dressed)",
  22926. image: {
  22927. source: "./media/characters/dhari/front-dressed.svg",
  22928. extra: 1713 / 1546,
  22929. bottom: 0.02
  22930. }
  22931. },
  22932. backDressed: {
  22933. height: math.unit(6 + 3 / 12, "feet"),
  22934. weight: math.unit(519, "lb"),
  22935. name: "Back (Dressed)",
  22936. image: {
  22937. source: "./media/characters/dhari/back-dressed.svg",
  22938. extra: 1699 / 1537,
  22939. bottom: 0.01
  22940. }
  22941. },
  22942. maw: {
  22943. height: math.unit(0.95, "feet"),
  22944. name: "Maw",
  22945. image: {
  22946. source: "./media/characters/dhari/maw.svg"
  22947. }
  22948. },
  22949. wereFront: {
  22950. height: math.unit(12 + 8 / 12, "feet"),
  22951. weight: math.unit(4000, "lb"),
  22952. name: "Front (Were)",
  22953. image: {
  22954. source: "./media/characters/dhari/were-front.svg",
  22955. extra: 1065 / 969,
  22956. bottom: 0.015
  22957. }
  22958. },
  22959. wereBack: {
  22960. height: math.unit(12 + 8 / 12, "feet"),
  22961. weight: math.unit(4000, "lb"),
  22962. name: "Back (Were)",
  22963. image: {
  22964. source: "./media/characters/dhari/were-back.svg",
  22965. extra: 1065 / 969,
  22966. bottom: 0.012
  22967. }
  22968. },
  22969. wereMaw: {
  22970. height: math.unit(0.625, "meters"),
  22971. name: "Maw (Were)",
  22972. image: {
  22973. source: "./media/characters/dhari/were-maw.svg"
  22974. }
  22975. },
  22976. },
  22977. [
  22978. {
  22979. name: "Normal",
  22980. height: math.unit(6 + 3 / 12, "feet"),
  22981. default: true
  22982. },
  22983. ]
  22984. ))
  22985. characterMakers.push(() => makeCharacter(
  22986. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  22987. {
  22988. anthro: {
  22989. height: math.unit(5 + 7 / 12, "feet"),
  22990. weight: math.unit(175, "lb"),
  22991. name: "Anthro",
  22992. image: {
  22993. source: "./media/characters/rena-dyne/anthro.svg",
  22994. extra: 1849 / 1785,
  22995. bottom: 0.005
  22996. }
  22997. },
  22998. taur: {
  22999. height: math.unit(15 + 6 / 12, "feet"),
  23000. weight: math.unit(8000, "lb"),
  23001. name: "Taur",
  23002. image: {
  23003. source: "./media/characters/rena-dyne/taur.svg",
  23004. extra: 2315 / 2234,
  23005. bottom: 0.033
  23006. }
  23007. },
  23008. },
  23009. [
  23010. {
  23011. name: "Normal",
  23012. height: math.unit(5 + 7 / 12, "feet"),
  23013. default: true
  23014. },
  23015. ]
  23016. ))
  23017. characterMakers.push(() => makeCharacter(
  23018. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  23019. {
  23020. front: {
  23021. height: math.unit(8, "feet"),
  23022. weight: math.unit(600, "lb"),
  23023. name: "Front",
  23024. image: {
  23025. source: "./media/characters/weremeep/front.svg",
  23026. extra: 970/849,
  23027. bottom: 7/977
  23028. }
  23029. },
  23030. },
  23031. [
  23032. {
  23033. name: "Normal",
  23034. height: math.unit(8, "feet"),
  23035. default: true
  23036. },
  23037. {
  23038. name: "Lorg",
  23039. height: math.unit(12, "feet")
  23040. },
  23041. {
  23042. name: "Oh Lawd She Comin'",
  23043. height: math.unit(20, "feet")
  23044. },
  23045. ]
  23046. ))
  23047. characterMakers.push(() => makeCharacter(
  23048. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  23049. {
  23050. front: {
  23051. height: math.unit(4, "feet"),
  23052. weight: math.unit(90, "lb"),
  23053. name: "Front",
  23054. image: {
  23055. source: "./media/characters/reza/front.svg",
  23056. extra: 1183 / 1111,
  23057. bottom: 0.017
  23058. }
  23059. },
  23060. back: {
  23061. height: math.unit(4, "feet"),
  23062. weight: math.unit(90, "lb"),
  23063. name: "Back",
  23064. image: {
  23065. source: "./media/characters/reza/back.svg",
  23066. extra: 1183 / 1111,
  23067. bottom: 0.01
  23068. }
  23069. },
  23070. drake: {
  23071. height: math.unit(30, "feet"),
  23072. weight: math.unit(246960, "lb"),
  23073. name: "Drake",
  23074. image: {
  23075. source: "./media/characters/reza/drake.svg",
  23076. extra: 2350 / 2024,
  23077. bottom: 60.7 / 2403
  23078. }
  23079. },
  23080. },
  23081. [
  23082. {
  23083. name: "Normal",
  23084. height: math.unit(4, "feet"),
  23085. default: true
  23086. },
  23087. ]
  23088. ))
  23089. characterMakers.push(() => makeCharacter(
  23090. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  23091. {
  23092. side: {
  23093. height: math.unit(15, "feet"),
  23094. weight: math.unit(14, "tons"),
  23095. name: "Side",
  23096. image: {
  23097. source: "./media/characters/athea/side.svg",
  23098. extra: 960 / 540,
  23099. bottom: 0.003
  23100. }
  23101. },
  23102. sitting: {
  23103. height: math.unit(6 * 2.85, "feet"),
  23104. weight: math.unit(14, "tons"),
  23105. name: "Sitting",
  23106. image: {
  23107. source: "./media/characters/athea/sitting.svg",
  23108. extra: 621 / 581,
  23109. bottom: 0.075
  23110. }
  23111. },
  23112. maw: {
  23113. height: math.unit(7.59498031496063, "feet"),
  23114. name: "Maw",
  23115. image: {
  23116. source: "./media/characters/athea/maw.svg"
  23117. }
  23118. },
  23119. },
  23120. [
  23121. {
  23122. name: "Lap Cat",
  23123. height: math.unit(2.5, "feet")
  23124. },
  23125. {
  23126. name: "Minimacro",
  23127. height: math.unit(15, "feet"),
  23128. default: true
  23129. },
  23130. {
  23131. name: "Macro",
  23132. height: math.unit(120, "feet")
  23133. },
  23134. {
  23135. name: "Macro+",
  23136. height: math.unit(640, "feet")
  23137. },
  23138. {
  23139. name: "Colossus",
  23140. height: math.unit(2.2, "miles")
  23141. },
  23142. ]
  23143. ))
  23144. characterMakers.push(() => makeCharacter(
  23145. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  23146. {
  23147. front: {
  23148. height: math.unit(8 + 8 / 12, "feet"),
  23149. weight: math.unit(130, "kg"),
  23150. name: "Front",
  23151. image: {
  23152. source: "./media/characters/seroko/front.svg",
  23153. extra: 1385 / 1280,
  23154. bottom: 0.025
  23155. }
  23156. },
  23157. back: {
  23158. height: math.unit(8 + 8 / 12, "feet"),
  23159. weight: math.unit(130, "kg"),
  23160. name: "Back",
  23161. image: {
  23162. source: "./media/characters/seroko/back.svg",
  23163. extra: 1369 / 1238,
  23164. bottom: 0.018
  23165. }
  23166. },
  23167. frontDressed: {
  23168. height: math.unit(8 + 8 / 12, "feet"),
  23169. weight: math.unit(130, "kg"),
  23170. name: "Front (Dressed)",
  23171. image: {
  23172. source: "./media/characters/seroko/front-dressed.svg",
  23173. extra: 1366 / 1275,
  23174. bottom: 0.03
  23175. }
  23176. },
  23177. },
  23178. [
  23179. {
  23180. name: "Normal",
  23181. height: math.unit(8 + 8 / 12, "feet"),
  23182. default: true
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(5.5, "feet"),
  23191. weight: math.unit(160, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/quatzi/front.svg",
  23195. extra: 2346 / 2242,
  23196. bottom: 0.015
  23197. }
  23198. },
  23199. },
  23200. [
  23201. {
  23202. name: "Normal",
  23203. height: math.unit(5.5, "feet"),
  23204. default: true
  23205. },
  23206. {
  23207. name: "Big",
  23208. height: math.unit(7.7, "feet")
  23209. },
  23210. ]
  23211. ))
  23212. characterMakers.push(() => makeCharacter(
  23213. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  23214. {
  23215. front: {
  23216. height: math.unit(5 + 11 / 12, "feet"),
  23217. weight: math.unit(180, "lb"),
  23218. name: "Front",
  23219. image: {
  23220. source: "./media/characters/sen/front.svg",
  23221. extra: 1321 / 1254,
  23222. bottom: 0.015
  23223. }
  23224. },
  23225. side: {
  23226. height: math.unit(5 + 11 / 12, "feet"),
  23227. weight: math.unit(180, "lb"),
  23228. name: "Side",
  23229. image: {
  23230. source: "./media/characters/sen/side.svg",
  23231. extra: 1321 / 1254,
  23232. bottom: 0.007
  23233. }
  23234. },
  23235. back: {
  23236. height: math.unit(5 + 11 / 12, "feet"),
  23237. weight: math.unit(180, "lb"),
  23238. name: "Back",
  23239. image: {
  23240. source: "./media/characters/sen/back.svg",
  23241. extra: 1321 / 1254
  23242. }
  23243. },
  23244. },
  23245. [
  23246. {
  23247. name: "Normal",
  23248. height: math.unit(5 + 11 / 12, "feet"),
  23249. default: true
  23250. },
  23251. ]
  23252. ))
  23253. characterMakers.push(() => makeCharacter(
  23254. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  23255. {
  23256. front: {
  23257. height: math.unit(166.6, "cm"),
  23258. weight: math.unit(66.6, "kg"),
  23259. name: "Front",
  23260. image: {
  23261. source: "./media/characters/fruity/front.svg",
  23262. extra: 1510 / 1386,
  23263. bottom: 0.04
  23264. }
  23265. },
  23266. back: {
  23267. height: math.unit(166.6, "cm"),
  23268. weight: math.unit(66.6, "lb"),
  23269. name: "Back",
  23270. image: {
  23271. source: "./media/characters/fruity/back.svg",
  23272. extra: 1563 / 1435,
  23273. bottom: 0.005
  23274. }
  23275. },
  23276. },
  23277. [
  23278. {
  23279. name: "Normal",
  23280. height: math.unit(166.6, "cm"),
  23281. default: true
  23282. },
  23283. {
  23284. name: "Demonic",
  23285. height: math.unit(166.6, "feet")
  23286. },
  23287. ]
  23288. ))
  23289. characterMakers.push(() => makeCharacter(
  23290. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  23291. {
  23292. side: {
  23293. height: math.unit(10, "feet"),
  23294. weight: math.unit(500, "lb"),
  23295. name: "Side",
  23296. image: {
  23297. source: "./media/characters/zost/side.svg",
  23298. extra: 2870/2533,
  23299. bottom: 252/3122
  23300. }
  23301. },
  23302. mawFront: {
  23303. height: math.unit(1.08, "meters"),
  23304. name: "Maw (Front)",
  23305. image: {
  23306. source: "./media/characters/zost/maw-front.svg"
  23307. }
  23308. },
  23309. mawSide: {
  23310. height: math.unit(2.66, "feet"),
  23311. name: "Maw (Side)",
  23312. image: {
  23313. source: "./media/characters/zost/maw-side.svg"
  23314. }
  23315. },
  23316. wingspan: {
  23317. height: math.unit(7.4, "feet"),
  23318. name: "Wingspan",
  23319. image: {
  23320. source: "./media/characters/zost/wingspan.svg"
  23321. }
  23322. },
  23323. },
  23324. [
  23325. {
  23326. name: "Normal",
  23327. height: math.unit(10, "feet"),
  23328. default: true
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  23334. {
  23335. front: {
  23336. height: math.unit(5 + 4 / 12, "feet"),
  23337. weight: math.unit(120, "lb"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/luci/front.svg",
  23341. extra: 1985 / 1884,
  23342. bottom: 0.04
  23343. }
  23344. },
  23345. back: {
  23346. height: math.unit(5 + 4 / 12, "feet"),
  23347. weight: math.unit(120, "lb"),
  23348. name: "Back",
  23349. image: {
  23350. source: "./media/characters/luci/back.svg",
  23351. extra: 1892 / 1791,
  23352. bottom: 0.002
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Normal",
  23359. height: math.unit(5 + 4 / 12, "feet"),
  23360. default: true
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "2th", species: ["monster"], tags: ["anthro"] },
  23366. {
  23367. front: {
  23368. height: math.unit(1500, "feet"),
  23369. weight: math.unit(3.8e6, "tons"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/2th/front.svg",
  23373. extra: 3489 / 3350,
  23374. bottom: 0.1
  23375. }
  23376. },
  23377. foot: {
  23378. height: math.unit(461, "feet"),
  23379. name: "Foot",
  23380. image: {
  23381. source: "./media/characters/2th/foot.svg"
  23382. }
  23383. },
  23384. },
  23385. [
  23386. {
  23387. name: "\"Micro\"",
  23388. height: math.unit(15 + 7 / 12, "feet")
  23389. },
  23390. {
  23391. name: "Normal",
  23392. height: math.unit(1500, "feet"),
  23393. default: true
  23394. },
  23395. {
  23396. name: "Macro",
  23397. height: math.unit(5000, "feet")
  23398. },
  23399. {
  23400. name: "Megamacro",
  23401. height: math.unit(15, "miles")
  23402. },
  23403. {
  23404. name: "Gigamacro",
  23405. height: math.unit(4000, "miles")
  23406. },
  23407. {
  23408. name: "Galactic",
  23409. height: math.unit(50, "AU")
  23410. },
  23411. ]
  23412. ))
  23413. characterMakers.push(() => makeCharacter(
  23414. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  23415. {
  23416. front: {
  23417. height: math.unit(5 + 6 / 12, "feet"),
  23418. weight: math.unit(220, "lb"),
  23419. name: "Front",
  23420. image: {
  23421. source: "./media/characters/amethyst/front.svg",
  23422. extra: 2078 / 2040,
  23423. bottom: 0.045
  23424. }
  23425. },
  23426. back: {
  23427. height: math.unit(5 + 6 / 12, "feet"),
  23428. weight: math.unit(220, "lb"),
  23429. name: "Back",
  23430. image: {
  23431. source: "./media/characters/amethyst/back.svg",
  23432. extra: 2021 / 1989,
  23433. bottom: 0.02
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(5 + 6 / 12, "feet"),
  23441. default: true
  23442. },
  23443. ]
  23444. ))
  23445. characterMakers.push(() => makeCharacter(
  23446. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  23447. {
  23448. front: {
  23449. height: math.unit(4 + 11 / 12, "feet"),
  23450. weight: math.unit(120, "lb"),
  23451. name: "Front",
  23452. image: {
  23453. source: "./media/characters/yumi-akiyama/front.svg",
  23454. extra: 1327 / 1235,
  23455. bottom: 0.02
  23456. }
  23457. },
  23458. back: {
  23459. height: math.unit(4 + 11 / 12, "feet"),
  23460. weight: math.unit(120, "lb"),
  23461. name: "Back",
  23462. image: {
  23463. source: "./media/characters/yumi-akiyama/back.svg",
  23464. extra: 1287 / 1245,
  23465. bottom: 0.002
  23466. }
  23467. },
  23468. },
  23469. [
  23470. {
  23471. name: "Galactic",
  23472. height: math.unit(50, "galaxies"),
  23473. default: true
  23474. },
  23475. {
  23476. name: "Universal",
  23477. height: math.unit(100, "universes")
  23478. },
  23479. ]
  23480. ))
  23481. characterMakers.push(() => makeCharacter(
  23482. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  23483. {
  23484. front: {
  23485. height: math.unit(8, "feet"),
  23486. weight: math.unit(500, "lb"),
  23487. name: "Front",
  23488. image: {
  23489. source: "./media/characters/rifter-yrmori/front.svg",
  23490. extra: 1180 / 1125,
  23491. bottom: 0.02
  23492. }
  23493. },
  23494. back: {
  23495. height: math.unit(8, "feet"),
  23496. weight: math.unit(500, "lb"),
  23497. name: "Back",
  23498. image: {
  23499. source: "./media/characters/rifter-yrmori/back.svg",
  23500. extra: 1190 / 1145,
  23501. bottom: 0.001
  23502. }
  23503. },
  23504. wings: {
  23505. height: math.unit(7.75, "feet"),
  23506. weight: math.unit(500, "lb"),
  23507. name: "Wings",
  23508. image: {
  23509. source: "./media/characters/rifter-yrmori/wings.svg",
  23510. extra: 1357 / 1285
  23511. }
  23512. },
  23513. maw: {
  23514. height: math.unit(0.8, "feet"),
  23515. name: "Maw",
  23516. image: {
  23517. source: "./media/characters/rifter-yrmori/maw.svg"
  23518. }
  23519. },
  23520. mawfront: {
  23521. height: math.unit(1.45, "feet"),
  23522. name: "Maw (Front)",
  23523. image: {
  23524. source: "./media/characters/rifter-yrmori/maw-front.svg"
  23525. }
  23526. },
  23527. },
  23528. [
  23529. {
  23530. name: "Normal",
  23531. height: math.unit(8, "feet"),
  23532. default: true
  23533. },
  23534. {
  23535. name: "Macro",
  23536. height: math.unit(42, "meters")
  23537. },
  23538. ]
  23539. ))
  23540. characterMakers.push(() => makeCharacter(
  23541. { name: "Tahajin", species: ["werebeast", "monster", "star-warrior", "fluudrani", "fish", "snake", "construct", "demi"], tags: ["anthro", "naga"] },
  23542. {
  23543. were: {
  23544. height: math.unit(25 + 6 / 12, "feet"),
  23545. weight: math.unit(10000, "lb"),
  23546. name: "Were",
  23547. image: {
  23548. source: "./media/characters/tahajin/were.svg",
  23549. extra: 801 / 770,
  23550. bottom: 0.042
  23551. }
  23552. },
  23553. aquatic: {
  23554. height: math.unit(6 + 4 / 12, "feet"),
  23555. weight: math.unit(160, "lb"),
  23556. name: "Aquatic",
  23557. image: {
  23558. source: "./media/characters/tahajin/aquatic.svg",
  23559. extra: 572 / 542,
  23560. bottom: 0.04
  23561. }
  23562. },
  23563. chow: {
  23564. height: math.unit(8 + 11 / 12, "feet"),
  23565. weight: math.unit(450, "lb"),
  23566. name: "Chow",
  23567. image: {
  23568. source: "./media/characters/tahajin/chow.svg",
  23569. extra: 660 / 640,
  23570. bottom: 0.015
  23571. }
  23572. },
  23573. demiNaga: {
  23574. height: math.unit(6 + 8 / 12, "feet"),
  23575. weight: math.unit(300, "lb"),
  23576. name: "Demi Naga",
  23577. image: {
  23578. source: "./media/characters/tahajin/demi-naga.svg",
  23579. extra: 643 / 615,
  23580. bottom: 0.1
  23581. }
  23582. },
  23583. data: {
  23584. height: math.unit(5, "inches"),
  23585. weight: math.unit(0.1, "lb"),
  23586. name: "Data",
  23587. image: {
  23588. source: "./media/characters/tahajin/data.svg"
  23589. }
  23590. },
  23591. fluu: {
  23592. height: math.unit(5 + 7 / 12, "feet"),
  23593. weight: math.unit(140, "lb"),
  23594. name: "Fluu",
  23595. image: {
  23596. source: "./media/characters/tahajin/fluu.svg",
  23597. extra: 628 / 592,
  23598. bottom: 0.02
  23599. }
  23600. },
  23601. starWarrior: {
  23602. height: math.unit(4 + 5 / 12, "feet"),
  23603. weight: math.unit(50, "lb"),
  23604. name: "Star Warrior",
  23605. image: {
  23606. source: "./media/characters/tahajin/star-warrior.svg"
  23607. }
  23608. },
  23609. },
  23610. [
  23611. {
  23612. name: "Normal",
  23613. height: math.unit(25 + 6 / 12, "feet"),
  23614. default: true
  23615. },
  23616. ]
  23617. ))
  23618. characterMakers.push(() => makeCharacter(
  23619. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  23620. {
  23621. front: {
  23622. height: math.unit(8, "feet"),
  23623. weight: math.unit(350, "lb"),
  23624. name: "Front",
  23625. image: {
  23626. source: "./media/characters/gabira/front.svg",
  23627. extra: 1261/1154,
  23628. bottom: 51/1312
  23629. }
  23630. },
  23631. back: {
  23632. height: math.unit(8, "feet"),
  23633. weight: math.unit(350, "lb"),
  23634. name: "Back",
  23635. image: {
  23636. source: "./media/characters/gabira/back.svg",
  23637. extra: 1265/1163,
  23638. bottom: 46/1311
  23639. }
  23640. },
  23641. head: {
  23642. height: math.unit(2.85, "feet"),
  23643. name: "Head",
  23644. image: {
  23645. source: "./media/characters/gabira/head.svg"
  23646. }
  23647. },
  23648. },
  23649. [
  23650. {
  23651. name: "Normal",
  23652. height: math.unit(8, "feet"),
  23653. default: true
  23654. },
  23655. ]
  23656. ))
  23657. characterMakers.push(() => makeCharacter(
  23658. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  23659. {
  23660. front: {
  23661. height: math.unit(5 + 3 / 12, "feet"),
  23662. weight: math.unit(137, "lb"),
  23663. name: "Front",
  23664. image: {
  23665. source: "./media/characters/sasha-katraine/front.svg",
  23666. extra: 1745/1694,
  23667. bottom: 37/1782
  23668. }
  23669. },
  23670. back: {
  23671. height: math.unit(5 + 3 / 12, "feet"),
  23672. weight: math.unit(137, "lb"),
  23673. name: "Back",
  23674. image: {
  23675. source: "./media/characters/sasha-katraine/back.svg",
  23676. extra: 1776/1699,
  23677. bottom: 26/1802
  23678. }
  23679. },
  23680. },
  23681. [
  23682. {
  23683. name: "Micro",
  23684. height: math.unit(5, "inches")
  23685. },
  23686. {
  23687. name: "Normal",
  23688. height: math.unit(5 + 3 / 12, "feet"),
  23689. default: true
  23690. },
  23691. ]
  23692. ))
  23693. characterMakers.push(() => makeCharacter(
  23694. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  23695. {
  23696. side: {
  23697. height: math.unit(4, "inches"),
  23698. weight: math.unit(200, "grams"),
  23699. name: "Side",
  23700. image: {
  23701. source: "./media/characters/der/side.svg",
  23702. extra: 719 / 400,
  23703. bottom: 30.6 / 749.9187
  23704. }
  23705. },
  23706. },
  23707. [
  23708. {
  23709. name: "Micro",
  23710. height: math.unit(4, "inches"),
  23711. default: true
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  23717. {
  23718. side: {
  23719. height: math.unit(30, "meters"),
  23720. weight: math.unit(700, "tonnes"),
  23721. name: "Side",
  23722. image: {
  23723. source: "./media/characters/fixerdragon/side.svg",
  23724. extra: (1293.0514 - 116.03) / 1106.86,
  23725. bottom: 116.03 / 1293.0514
  23726. }
  23727. },
  23728. },
  23729. [
  23730. {
  23731. name: "Planck",
  23732. height: math.unit(1.6e-35, "meters")
  23733. },
  23734. {
  23735. name: "Micro",
  23736. height: math.unit(0.4, "meters")
  23737. },
  23738. {
  23739. name: "Normal",
  23740. height: math.unit(30, "meters"),
  23741. default: true
  23742. },
  23743. {
  23744. name: "Megamacro",
  23745. height: math.unit(1.2, "megameters")
  23746. },
  23747. {
  23748. name: "Teramacro",
  23749. height: math.unit(130, "terameters")
  23750. },
  23751. {
  23752. name: "Yottamacro",
  23753. height: math.unit(6200, "yottameters")
  23754. },
  23755. ]
  23756. ));
  23757. characterMakers.push(() => makeCharacter(
  23758. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  23759. {
  23760. front: {
  23761. height: math.unit(8, "feet"),
  23762. weight: math.unit(250, "lb"),
  23763. name: "Front",
  23764. image: {
  23765. source: "./media/characters/kite/front.svg",
  23766. extra: 2796 / 2659,
  23767. bottom: 0.002
  23768. }
  23769. },
  23770. },
  23771. [
  23772. {
  23773. name: "Normal",
  23774. height: math.unit(8, "feet"),
  23775. default: true
  23776. },
  23777. {
  23778. name: "Macro",
  23779. height: math.unit(360, "feet")
  23780. },
  23781. {
  23782. name: "Megamacro",
  23783. height: math.unit(1500, "feet")
  23784. },
  23785. ]
  23786. ))
  23787. characterMakers.push(() => makeCharacter(
  23788. { name: "Poojawa Vynar", species: ["sabresune"], tags: ["anthro"] },
  23789. {
  23790. anthro_front: {
  23791. height: math.unit(5 + 11/12, "feet"),
  23792. weight: math.unit(170, "lb"),
  23793. name: "Front",
  23794. image: {
  23795. source: "./media/characters/poojawa-vynar/anthro-front.svg",
  23796. extra: 1735/1585,
  23797. bottom: 96/1831
  23798. },
  23799. form: "anthro",
  23800. default: true
  23801. },
  23802. anthro_back: {
  23803. height: math.unit(5 + 11/12, "feet"),
  23804. weight: math.unit(170, "lb"),
  23805. name: "Back",
  23806. image: {
  23807. source: "./media/characters/poojawa-vynar/anthro-back.svg",
  23808. extra: 1749/1607,
  23809. bottom: 28/1777
  23810. },
  23811. form: "anthro"
  23812. },
  23813. anthro_male: {
  23814. height: math.unit(5 + 11/12, "feet"),
  23815. weight: math.unit(170, "lb"),
  23816. name: "Male",
  23817. image: {
  23818. source: "./media/characters/poojawa-vynar/anthro-front-male.svg",
  23819. extra: 1855/1713,
  23820. bottom: 63/1918
  23821. },
  23822. form: "anthro"
  23823. },
  23824. taur_front: {
  23825. height: math.unit(5 + 7/12, "feet"),
  23826. weight: math.unit(170, "lb"),
  23827. name: "Front",
  23828. image: {
  23829. source: "./media/characters/poojawa-vynar/taur-front.svg",
  23830. extra: 1151/1059,
  23831. bottom: 356/1507
  23832. },
  23833. form: "taur",
  23834. default: true
  23835. },
  23836. anthro_frontDressed: {
  23837. height: math.unit(5 + 11/12, "feet"),
  23838. weight: math.unit(170, "lb"),
  23839. name: "Front (Dressed)",
  23840. image: {
  23841. source: "./media/characters/poojawa-vynar/anthro-front-dressed.svg",
  23842. extra: 1735/1585,
  23843. bottom: 96/1831
  23844. },
  23845. form: "anthro"
  23846. },
  23847. anthro_backDressed: {
  23848. height: math.unit(5 + 11/12, "feet"),
  23849. weight: math.unit(170, "lb"),
  23850. name: "Back (Dressed)",
  23851. image: {
  23852. source: "./media/characters/poojawa-vynar/anthro-back-dressed.svg",
  23853. extra: 1749/1607,
  23854. bottom: 28/1777
  23855. },
  23856. form: "anthro"
  23857. },
  23858. anthro_maleDressed: {
  23859. height: math.unit(5 + 11/12, "feet"),
  23860. weight: math.unit(170, "lb"),
  23861. name: "Male (Dressed)",
  23862. image: {
  23863. source: "./media/characters/poojawa-vynar/anthro-front-male-dressed.svg",
  23864. extra: 1855/1713,
  23865. bottom: 63/1918
  23866. },
  23867. form: "anthro"
  23868. },
  23869. taur_frontDressed: {
  23870. height: math.unit(5 + 7/12, "feet"),
  23871. weight: math.unit(170, "lb"),
  23872. name: "Front (Dressed)",
  23873. image: {
  23874. source: "./media/characters/poojawa-vynar/taur-front-dressed.svg",
  23875. extra: 1151/1059,
  23876. bottom: 356/1507
  23877. },
  23878. form: "taur"
  23879. },
  23880. maw: {
  23881. height: math.unit(1.46, "feet"),
  23882. name: "Maw",
  23883. image: {
  23884. source: "./media/characters/poojawa-vynar/maw.svg"
  23885. },
  23886. allForms: true
  23887. },
  23888. head: {
  23889. height: math.unit(2.34, "feet"),
  23890. name: "Head",
  23891. image: {
  23892. source: "./media/characters/poojawa-vynar/head.svg"
  23893. },
  23894. allForms: true
  23895. },
  23896. leftPaw: {
  23897. height: math.unit(1.72, "feet"),
  23898. name: "Left Paw",
  23899. image: {
  23900. source: "./media/characters/poojawa-vynar/paw-left.svg"
  23901. },
  23902. allForms: true
  23903. },
  23904. rightPaw: {
  23905. height: math.unit(1.61, "feet"),
  23906. name: "Right Paw",
  23907. image: {
  23908. source: "./media/characters/poojawa-vynar/paw-right.svg"
  23909. },
  23910. allForms: true
  23911. },
  23912. toering: {
  23913. height: math.unit(2.9, "inches"),
  23914. name: "Toering",
  23915. image: {
  23916. source: "./media/characters/poojawa-vynar/toering.svg"
  23917. },
  23918. allForms: true
  23919. },
  23920. shaft: {
  23921. height: math.unit(0.625, "feet"),
  23922. name: "Shaft",
  23923. image: {
  23924. source: "./media/characters/poojawa-vynar/shaft.svg"
  23925. },
  23926. allForms: true
  23927. },
  23928. spade: {
  23929. height: math.unit(0.42, "feet"),
  23930. name: "Spade",
  23931. image: {
  23932. source: "./media/characters/poojawa-vynar/spade.svg"
  23933. },
  23934. allForms: true
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Shortstack",
  23940. height: math.unit(4, "feet"),
  23941. form: "anthro"
  23942. },
  23943. {
  23944. name: "Normal",
  23945. height: math.unit(5 + 11 / 12, "feet"),
  23946. form: "anthro",
  23947. default: true
  23948. },
  23949. {
  23950. name: "Tauric",
  23951. height: math.unit(4, "meters"),
  23952. form: "taur",
  23953. default: true
  23954. },
  23955. ],
  23956. {
  23957. "anthro": {
  23958. name: "Anthro",
  23959. default: true
  23960. },
  23961. "taur": {
  23962. name: "Taur",
  23963. },
  23964. }
  23965. ))
  23966. characterMakers.push(() => makeCharacter(
  23967. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  23968. {
  23969. front: {
  23970. height: math.unit(293, "meters"),
  23971. weight: math.unit(70400, "tons"),
  23972. name: "Front",
  23973. image: {
  23974. source: "./media/characters/violette/front.svg",
  23975. extra: 1227 / 1180,
  23976. bottom: 0.005
  23977. }
  23978. },
  23979. back: {
  23980. height: math.unit(293, "meters"),
  23981. weight: math.unit(70400, "tons"),
  23982. name: "Back",
  23983. image: {
  23984. source: "./media/characters/violette/back.svg",
  23985. extra: 1227 / 1180,
  23986. bottom: 0.005
  23987. }
  23988. },
  23989. },
  23990. [
  23991. {
  23992. name: "Macro",
  23993. height: math.unit(293, "meters"),
  23994. default: true
  23995. },
  23996. ]
  23997. ))
  23998. characterMakers.push(() => makeCharacter(
  23999. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  24000. {
  24001. front: {
  24002. height: math.unit(1050, "feet"),
  24003. weight: math.unit(200000, "tons"),
  24004. name: "Front",
  24005. image: {
  24006. source: "./media/characters/alessandra/front.svg",
  24007. extra: 960 / 912,
  24008. bottom: 0.06
  24009. }
  24010. },
  24011. },
  24012. [
  24013. {
  24014. name: "Macro",
  24015. height: math.unit(1050, "feet")
  24016. },
  24017. {
  24018. name: "Macro+",
  24019. height: math.unit(900, "meters"),
  24020. default: true
  24021. },
  24022. ]
  24023. ))
  24024. characterMakers.push(() => makeCharacter(
  24025. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  24026. {
  24027. front: {
  24028. height: math.unit(5, "feet"),
  24029. weight: math.unit(187, "lb"),
  24030. name: "Front",
  24031. image: {
  24032. source: "./media/characters/person/front.svg",
  24033. extra: 3087 / 2945,
  24034. bottom: 91 / 3181
  24035. }
  24036. },
  24037. },
  24038. [
  24039. {
  24040. name: "Micro",
  24041. height: math.unit(3, "inches")
  24042. },
  24043. {
  24044. name: "Normal",
  24045. height: math.unit(5, "feet"),
  24046. default: true
  24047. },
  24048. {
  24049. name: "Macro",
  24050. height: math.unit(90, "feet")
  24051. },
  24052. {
  24053. name: "Max Size",
  24054. height: math.unit(280, "feet")
  24055. },
  24056. ]
  24057. ))
  24058. characterMakers.push(() => makeCharacter(
  24059. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  24060. {
  24061. front: {
  24062. height: math.unit(4.5, "meters"),
  24063. weight: math.unit(3200, "lb"),
  24064. name: "Front",
  24065. image: {
  24066. source: "./media/characters/ty/front.svg",
  24067. extra: 1038 / 960,
  24068. bottom: 31.156 / 1068
  24069. }
  24070. },
  24071. back: {
  24072. height: math.unit(4.5, "meters"),
  24073. weight: math.unit(3200, "lb"),
  24074. name: "Back",
  24075. image: {
  24076. source: "./media/characters/ty/back.svg",
  24077. extra: 1044 / 966,
  24078. bottom: 7.48 / 1049
  24079. }
  24080. },
  24081. },
  24082. [
  24083. {
  24084. name: "Normal",
  24085. height: math.unit(4.5, "meters"),
  24086. default: true
  24087. },
  24088. ]
  24089. ))
  24090. characterMakers.push(() => makeCharacter(
  24091. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  24092. {
  24093. front: {
  24094. height: math.unit(5 + 4 / 12, "feet"),
  24095. weight: math.unit(115, "lb"),
  24096. name: "Front",
  24097. image: {
  24098. source: "./media/characters/rocky/front.svg",
  24099. extra: 1012 / 975,
  24100. bottom: 54 / 1066
  24101. }
  24102. },
  24103. },
  24104. [
  24105. {
  24106. name: "Normal",
  24107. height: math.unit(5 + 4 / 12, "feet"),
  24108. default: true
  24109. },
  24110. ]
  24111. ))
  24112. characterMakers.push(() => makeCharacter(
  24113. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  24114. {
  24115. upright: {
  24116. height: math.unit(6, "meters"),
  24117. weight: math.unit(4000, "kg"),
  24118. name: "Upright",
  24119. image: {
  24120. source: "./media/characters/ruin/upright.svg",
  24121. extra: 668 / 661,
  24122. bottom: 42 / 799.8396
  24123. }
  24124. },
  24125. },
  24126. [
  24127. {
  24128. name: "Normal",
  24129. height: math.unit(6, "meters"),
  24130. default: true
  24131. },
  24132. ]
  24133. ))
  24134. characterMakers.push(() => makeCharacter(
  24135. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  24136. {
  24137. front: {
  24138. height: math.unit(5, "feet"),
  24139. weight: math.unit(106, "lb"),
  24140. name: "Front",
  24141. image: {
  24142. source: "./media/characters/robin/front.svg",
  24143. extra: 862 / 799,
  24144. bottom: 42.4 / 914.8856
  24145. }
  24146. },
  24147. },
  24148. [
  24149. {
  24150. name: "Normal",
  24151. height: math.unit(5, "feet"),
  24152. default: true
  24153. },
  24154. ]
  24155. ))
  24156. characterMakers.push(() => makeCharacter(
  24157. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  24158. {
  24159. side: {
  24160. height: math.unit(3, "feet"),
  24161. weight: math.unit(225, "lb"),
  24162. name: "Side",
  24163. image: {
  24164. source: "./media/characters/saian/side.svg",
  24165. extra: 566 / 356,
  24166. bottom: 79.7 / 643
  24167. }
  24168. },
  24169. maw: {
  24170. height: math.unit(2.85, "feet"),
  24171. name: "Maw",
  24172. image: {
  24173. source: "./media/characters/saian/maw.svg"
  24174. }
  24175. },
  24176. },
  24177. [
  24178. {
  24179. name: "Normal",
  24180. height: math.unit(3, "feet"),
  24181. default: true
  24182. },
  24183. ]
  24184. ))
  24185. characterMakers.push(() => makeCharacter(
  24186. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  24187. {
  24188. side: {
  24189. height: math.unit(8, "feet"),
  24190. weight: math.unit(300, "lb"),
  24191. name: "Side",
  24192. image: {
  24193. source: "./media/characters/equus-silvermane/side.svg",
  24194. extra: 2176 / 2050,
  24195. bottom: 65.7 / 2245
  24196. }
  24197. },
  24198. front: {
  24199. height: math.unit(8, "feet"),
  24200. weight: math.unit(300, "lb"),
  24201. name: "Front",
  24202. image: {
  24203. source: "./media/characters/equus-silvermane/front.svg",
  24204. extra: 4633 / 4400,
  24205. bottom: 71.3 / 4706.915
  24206. }
  24207. },
  24208. sideStepping: {
  24209. height: math.unit(8, "feet"),
  24210. weight: math.unit(300, "lb"),
  24211. name: "Side (Stepping)",
  24212. image: {
  24213. source: "./media/characters/equus-silvermane/side-stepping.svg",
  24214. extra: 1968 / 1860,
  24215. bottom: 16.4 / 1989
  24216. }
  24217. },
  24218. },
  24219. [
  24220. {
  24221. name: "Normal",
  24222. height: math.unit(8, "feet")
  24223. },
  24224. {
  24225. name: "Minimacro",
  24226. height: math.unit(75, "feet"),
  24227. default: true
  24228. },
  24229. {
  24230. name: "Macro",
  24231. height: math.unit(150, "feet")
  24232. },
  24233. {
  24234. name: "Macro+",
  24235. height: math.unit(1000, "feet")
  24236. },
  24237. {
  24238. name: "Megamacro",
  24239. height: math.unit(1, "mile")
  24240. },
  24241. ]
  24242. ))
  24243. characterMakers.push(() => makeCharacter(
  24244. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  24245. {
  24246. side: {
  24247. height: math.unit(20, "feet"),
  24248. weight: math.unit(30000, "kg"),
  24249. name: "Side",
  24250. image: {
  24251. source: "./media/characters/windar/side.svg",
  24252. extra: 1491 / 1248,
  24253. bottom: 82.56 / 1568
  24254. }
  24255. },
  24256. },
  24257. [
  24258. {
  24259. name: "Normal",
  24260. height: math.unit(20, "feet"),
  24261. default: true
  24262. },
  24263. ]
  24264. ))
  24265. characterMakers.push(() => makeCharacter(
  24266. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  24267. {
  24268. side: {
  24269. height: math.unit(15.66, "feet"),
  24270. weight: math.unit(150, "lb"),
  24271. name: "Side",
  24272. image: {
  24273. source: "./media/characters/melody/side.svg",
  24274. extra: 1097 / 944,
  24275. bottom: 11.8 / 1109
  24276. }
  24277. },
  24278. sideOutfit: {
  24279. height: math.unit(15.66, "feet"),
  24280. weight: math.unit(150, "lb"),
  24281. name: "Side (Outfit)",
  24282. image: {
  24283. source: "./media/characters/melody/side-outfit.svg",
  24284. extra: 1097 / 944,
  24285. bottom: 11.8 / 1109
  24286. }
  24287. },
  24288. },
  24289. [
  24290. {
  24291. name: "Normal",
  24292. height: math.unit(15.66, "feet"),
  24293. default: true
  24294. },
  24295. ]
  24296. ))
  24297. characterMakers.push(() => makeCharacter(
  24298. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  24299. {
  24300. armoredFront: {
  24301. height: math.unit(8, "feet"),
  24302. weight: math.unit(325, "lb"),
  24303. name: "Front",
  24304. image: {
  24305. source: "./media/characters/windera/armored-front.svg",
  24306. extra: 1830/1598,
  24307. bottom: 151/1981
  24308. },
  24309. form: "armored",
  24310. default: true
  24311. },
  24312. macroFront: {
  24313. height: math.unit(70, "feet"),
  24314. weight: math.unit(315453, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/windera/macro-front.svg",
  24318. extra: 963/883,
  24319. bottom: 23/986
  24320. },
  24321. form: "macro",
  24322. default: true
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(8, "feet"),
  24329. default: true,
  24330. form: "armored"
  24331. },
  24332. {
  24333. name: "Normal",
  24334. height: math.unit(70, "feet"),
  24335. default: true,
  24336. form: "macro"
  24337. },
  24338. ],
  24339. {
  24340. "armored": {
  24341. name: "Armored",
  24342. default: true
  24343. },
  24344. "macro": {
  24345. name: "Macro",
  24346. },
  24347. }
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  24351. {
  24352. front: {
  24353. height: math.unit(28.75, "feet"),
  24354. weight: math.unit(2000, "kg"),
  24355. name: "Front",
  24356. image: {
  24357. source: "./media/characters/sonear/front.svg",
  24358. extra: 1041.1 / 964.9,
  24359. bottom: 53.7 / 1096.6
  24360. }
  24361. },
  24362. },
  24363. [
  24364. {
  24365. name: "Normal",
  24366. height: math.unit(28.75, "feet"),
  24367. default: true
  24368. },
  24369. ]
  24370. ))
  24371. characterMakers.push(() => makeCharacter(
  24372. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  24373. {
  24374. side: {
  24375. height: math.unit(25.5, "feet"),
  24376. weight: math.unit(23000, "kg"),
  24377. name: "Side",
  24378. image: {
  24379. source: "./media/characters/kanara/side.svg"
  24380. }
  24381. },
  24382. },
  24383. [
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(25.5, "feet"),
  24387. default: true
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  24393. {
  24394. side: {
  24395. height: math.unit(10, "feet"),
  24396. weight: math.unit(1000, "kg"),
  24397. name: "Side",
  24398. image: {
  24399. source: "./media/characters/ereus/side.svg",
  24400. extra: 1157 / 959,
  24401. bottom: 153 / 1312.5
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Normal",
  24408. height: math.unit(10, "feet"),
  24409. default: true
  24410. },
  24411. ]
  24412. ))
  24413. characterMakers.push(() => makeCharacter(
  24414. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  24415. {
  24416. side: {
  24417. height: math.unit(4.5, "feet"),
  24418. weight: math.unit(500, "lb"),
  24419. name: "Side",
  24420. image: {
  24421. source: "./media/characters/e-ter/side.svg",
  24422. extra: 1550 / 1248,
  24423. bottom: 146 / 1694
  24424. }
  24425. },
  24426. },
  24427. [
  24428. {
  24429. name: "Normal",
  24430. height: math.unit(4.5, "feet"),
  24431. default: true
  24432. },
  24433. ]
  24434. ))
  24435. characterMakers.push(() => makeCharacter(
  24436. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  24437. {
  24438. side: {
  24439. height: math.unit(9.7, "feet"),
  24440. weight: math.unit(4000, "kg"),
  24441. name: "Side",
  24442. image: {
  24443. source: "./media/characters/yamie/side.svg"
  24444. }
  24445. },
  24446. },
  24447. [
  24448. {
  24449. name: "Normal",
  24450. height: math.unit(9.7, "feet"),
  24451. default: true
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  24457. {
  24458. front: {
  24459. height: math.unit(50, "feet"),
  24460. weight: math.unit(50000, "kg"),
  24461. name: "Front",
  24462. image: {
  24463. source: "./media/characters/anders/front.svg",
  24464. extra: 570 / 539,
  24465. bottom: 14.7 / 586.7
  24466. }
  24467. },
  24468. },
  24469. [
  24470. {
  24471. name: "Large",
  24472. height: math.unit(50, "feet")
  24473. },
  24474. {
  24475. name: "Macro",
  24476. height: math.unit(2000, "feet"),
  24477. default: true
  24478. },
  24479. {
  24480. name: "Megamacro",
  24481. height: math.unit(12, "miles")
  24482. },
  24483. ]
  24484. ))
  24485. characterMakers.push(() => makeCharacter(
  24486. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  24487. {
  24488. front: {
  24489. height: math.unit(7 + 2 / 12, "feet"),
  24490. weight: math.unit(300, "lb"),
  24491. name: "Front",
  24492. image: {
  24493. source: "./media/characters/reban/front.svg",
  24494. extra: 1287/1212,
  24495. bottom: 148/1435
  24496. }
  24497. },
  24498. head: {
  24499. height: math.unit(1.95, "feet"),
  24500. name: "Head",
  24501. image: {
  24502. source: "./media/characters/reban/head.svg"
  24503. }
  24504. },
  24505. maw: {
  24506. height: math.unit(0.95, "feet"),
  24507. name: "Maw",
  24508. image: {
  24509. source: "./media/characters/reban/maw.svg"
  24510. }
  24511. },
  24512. foot: {
  24513. height: math.unit(1.65, "feet"),
  24514. name: "Foot",
  24515. image: {
  24516. source: "./media/characters/reban/foot.svg"
  24517. }
  24518. },
  24519. dick: {
  24520. height: math.unit(7 / 5, "feet"),
  24521. name: "Dick",
  24522. image: {
  24523. source: "./media/characters/reban/dick.svg"
  24524. }
  24525. },
  24526. },
  24527. [
  24528. {
  24529. name: "Natural Height",
  24530. height: math.unit(7 + 2 / 12, "feet")
  24531. },
  24532. {
  24533. name: "Macro",
  24534. height: math.unit(500, "feet"),
  24535. default: true
  24536. },
  24537. {
  24538. name: "Canon Height",
  24539. height: math.unit(50, "AU")
  24540. },
  24541. ]
  24542. ))
  24543. characterMakers.push(() => makeCharacter(
  24544. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  24545. {
  24546. front: {
  24547. height: math.unit(6, "feet"),
  24548. weight: math.unit(150, "lb"),
  24549. name: "Front",
  24550. image: {
  24551. source: "./media/characters/terrance-keayes/front.svg",
  24552. extra: 1.005,
  24553. bottom: 151 / 1615
  24554. }
  24555. },
  24556. side: {
  24557. height: math.unit(6, "feet"),
  24558. weight: math.unit(150, "lb"),
  24559. name: "Side",
  24560. image: {
  24561. source: "./media/characters/terrance-keayes/side.svg",
  24562. extra: 1.005,
  24563. bottom: 129.4 / 1544
  24564. }
  24565. },
  24566. back: {
  24567. height: math.unit(6, "feet"),
  24568. weight: math.unit(150, "lb"),
  24569. name: "Back",
  24570. image: {
  24571. source: "./media/characters/terrance-keayes/back.svg",
  24572. extra: 1.005,
  24573. bottom: 58.4 / 1557.3
  24574. }
  24575. },
  24576. dick: {
  24577. height: math.unit(6 * 0.208, "feet"),
  24578. name: "Dick",
  24579. image: {
  24580. source: "./media/characters/terrance-keayes/dick.svg"
  24581. }
  24582. },
  24583. },
  24584. [
  24585. {
  24586. name: "Canon Height",
  24587. height: math.unit(35, "miles"),
  24588. default: true
  24589. },
  24590. ]
  24591. ))
  24592. characterMakers.push(() => makeCharacter(
  24593. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  24594. {
  24595. front: {
  24596. height: math.unit(6, "feet"),
  24597. weight: math.unit(150, "lb"),
  24598. name: "Front",
  24599. image: {
  24600. source: "./media/characters/ofelia/front.svg",
  24601. extra: 1130/1117,
  24602. bottom: 91/1221
  24603. }
  24604. },
  24605. back: {
  24606. height: math.unit(6, "feet"),
  24607. weight: math.unit(150, "lb"),
  24608. name: "Back",
  24609. image: {
  24610. source: "./media/characters/ofelia/back.svg",
  24611. extra: 1172/1159,
  24612. bottom: 28/1200
  24613. }
  24614. },
  24615. maw: {
  24616. height: math.unit(1, "feet"),
  24617. name: "Maw",
  24618. image: {
  24619. source: "./media/characters/ofelia/maw.svg"
  24620. }
  24621. },
  24622. foot: {
  24623. height: math.unit(1.949, "feet"),
  24624. name: "Foot",
  24625. image: {
  24626. source: "./media/characters/ofelia/foot.svg"
  24627. }
  24628. },
  24629. },
  24630. [
  24631. {
  24632. name: "Canon Height",
  24633. height: math.unit(2000, "miles"),
  24634. default: true
  24635. },
  24636. ]
  24637. ))
  24638. characterMakers.push(() => makeCharacter(
  24639. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  24640. {
  24641. front: {
  24642. height: math.unit(6, "feet"),
  24643. weight: math.unit(150, "lb"),
  24644. name: "Front",
  24645. image: {
  24646. source: "./media/characters/samuel/front.svg",
  24647. extra: 265 / 258,
  24648. bottom: 2 / 266.1566
  24649. }
  24650. },
  24651. },
  24652. [
  24653. {
  24654. name: "Macro",
  24655. height: math.unit(100, "feet"),
  24656. default: true
  24657. },
  24658. {
  24659. name: "Full Size",
  24660. height: math.unit(1000, "miles")
  24661. },
  24662. ]
  24663. ))
  24664. characterMakers.push(() => makeCharacter(
  24665. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  24666. {
  24667. front: {
  24668. height: math.unit(6, "feet"),
  24669. weight: math.unit(300, "lb"),
  24670. name: "Front",
  24671. image: {
  24672. source: "./media/characters/beishir-kiel/front.svg",
  24673. extra: 569 / 547,
  24674. bottom: 41.9 / 609
  24675. }
  24676. },
  24677. maw: {
  24678. height: math.unit(6 * 0.202, "feet"),
  24679. name: "Maw",
  24680. image: {
  24681. source: "./media/characters/beishir-kiel/maw.svg"
  24682. }
  24683. },
  24684. },
  24685. [
  24686. {
  24687. name: "Macro",
  24688. height: math.unit(300, "feet"),
  24689. default: true
  24690. },
  24691. ]
  24692. ))
  24693. characterMakers.push(() => makeCharacter(
  24694. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  24695. {
  24696. front: {
  24697. height: math.unit(5 + 7/12, "feet"),
  24698. weight: math.unit(120, "lb"),
  24699. name: "Front",
  24700. image: {
  24701. source: "./media/characters/logan-grey/front.svg",
  24702. extra: 1836/1738,
  24703. bottom: 108/1944
  24704. }
  24705. },
  24706. back: {
  24707. height: math.unit(5 + 7/12, "feet"),
  24708. weight: math.unit(120, "lb"),
  24709. name: "Back",
  24710. image: {
  24711. source: "./media/characters/logan-grey/back.svg",
  24712. extra: 1880/1794,
  24713. bottom: 24/1904
  24714. }
  24715. },
  24716. frontSfw: {
  24717. height: math.unit(5 + 7/12, "feet"),
  24718. weight: math.unit(120, "lb"),
  24719. name: "Front (SFW)",
  24720. image: {
  24721. source: "./media/characters/logan-grey/front-sfw.svg",
  24722. extra: 1836/1738,
  24723. bottom: 108/1944
  24724. }
  24725. },
  24726. backSfw: {
  24727. height: math.unit(5 + 7/12, "feet"),
  24728. weight: math.unit(120, "lb"),
  24729. name: "Back (SFW)",
  24730. image: {
  24731. source: "./media/characters/logan-grey/back-sfw.svg",
  24732. extra: 1880/1794,
  24733. bottom: 24/1904
  24734. }
  24735. },
  24736. hands: {
  24737. height: math.unit(0.84, "feet"),
  24738. name: "Hands",
  24739. image: {
  24740. source: "./media/characters/logan-grey/hands.svg"
  24741. }
  24742. },
  24743. paws: {
  24744. height: math.unit(0.72, "feet"),
  24745. name: "Paws",
  24746. image: {
  24747. source: "./media/characters/logan-grey/paws.svg"
  24748. }
  24749. },
  24750. cock: {
  24751. height: math.unit(1.45, "feet"),
  24752. name: "Cock",
  24753. image: {
  24754. source: "./media/characters/logan-grey/cock.svg"
  24755. }
  24756. },
  24757. cockAlt: {
  24758. height: math.unit(1.437, "feet"),
  24759. name: "Cock (alt)",
  24760. image: {
  24761. source: "./media/characters/logan-grey/cock-alt.svg"
  24762. }
  24763. },
  24764. },
  24765. [
  24766. {
  24767. name: "Normal",
  24768. height: math.unit(5 + 8 / 12, "feet")
  24769. },
  24770. {
  24771. name: "The 500 Foot Femboy",
  24772. height: math.unit(500, "feet"),
  24773. default: true
  24774. },
  24775. {
  24776. name: "Megmacro",
  24777. height: math.unit(20, "miles")
  24778. },
  24779. ]
  24780. ))
  24781. characterMakers.push(() => makeCharacter(
  24782. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  24783. {
  24784. front: {
  24785. height: math.unit(8 + 2 / 12, "feet"),
  24786. weight: math.unit(275, "lb"),
  24787. name: "Front",
  24788. image: {
  24789. source: "./media/characters/draganta/front.svg",
  24790. extra: 1177 / 1135,
  24791. bottom: 33.46 / 1212.1
  24792. }
  24793. },
  24794. },
  24795. [
  24796. {
  24797. name: "Normal",
  24798. height: math.unit(8 + 6 / 12, "feet"),
  24799. default: true
  24800. },
  24801. {
  24802. name: "Macro",
  24803. height: math.unit(150, "feet")
  24804. },
  24805. {
  24806. name: "Megamacro",
  24807. height: math.unit(1000, "miles")
  24808. },
  24809. ]
  24810. ))
  24811. characterMakers.push(() => makeCharacter(
  24812. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  24813. {
  24814. front: {
  24815. height: math.unit(1.72, "m"),
  24816. weight: math.unit(80, "lb"),
  24817. name: "Front",
  24818. image: {
  24819. source: "./media/characters/voski/front.svg",
  24820. extra: 2076.22 / 2022.4,
  24821. bottom: 102.7 / 2177.3866
  24822. }
  24823. },
  24824. frontFlaccid: {
  24825. height: math.unit(1.72, "m"),
  24826. weight: math.unit(80, "lb"),
  24827. name: "Front (Flaccid)",
  24828. image: {
  24829. source: "./media/characters/voski/front-flaccid.svg",
  24830. extra: 2076.22 / 2022.4,
  24831. bottom: 102.7 / 2177.3866
  24832. }
  24833. },
  24834. frontErect: {
  24835. height: math.unit(1.72, "m"),
  24836. weight: math.unit(80, "lb"),
  24837. name: "Front (Erect)",
  24838. image: {
  24839. source: "./media/characters/voski/front-erect.svg",
  24840. extra: 2076.22 / 2022.4,
  24841. bottom: 102.7 / 2177.3866
  24842. }
  24843. },
  24844. back: {
  24845. height: math.unit(1.72, "m"),
  24846. weight: math.unit(80, "lb"),
  24847. name: "Back",
  24848. image: {
  24849. source: "./media/characters/voski/back.svg",
  24850. extra: 2104 / 2051,
  24851. bottom: 10.45 / 2113.63
  24852. }
  24853. },
  24854. },
  24855. [
  24856. {
  24857. name: "Normal",
  24858. height: math.unit(1.72, "m")
  24859. },
  24860. {
  24861. name: "Macro",
  24862. height: math.unit(55, "m"),
  24863. default: true
  24864. },
  24865. {
  24866. name: "Macro+",
  24867. height: math.unit(300, "m")
  24868. },
  24869. {
  24870. name: "Macro++",
  24871. height: math.unit(700, "m")
  24872. },
  24873. {
  24874. name: "Macro+++",
  24875. height: math.unit(4500, "m")
  24876. },
  24877. {
  24878. name: "Macro++++",
  24879. height: math.unit(45, "km")
  24880. },
  24881. {
  24882. name: "Macro+++++",
  24883. height: math.unit(1220, "km")
  24884. },
  24885. ]
  24886. ))
  24887. characterMakers.push(() => makeCharacter(
  24888. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  24889. {
  24890. front: {
  24891. height: math.unit(2.3, "m"),
  24892. weight: math.unit(304, "kg"),
  24893. name: "Front",
  24894. image: {
  24895. source: "./media/characters/icowom-lee/front.svg",
  24896. extra: 985 / 955,
  24897. bottom: 25.4 / 1012
  24898. }
  24899. },
  24900. fronttentacles: {
  24901. height: math.unit(2.3, "m"),
  24902. weight: math.unit(304, "kg"),
  24903. name: "Front-tentacles",
  24904. image: {
  24905. source: "./media/characters/icowom-lee/front-tentacles.svg",
  24906. extra: 985 / 955,
  24907. bottom: 25.4 / 1012
  24908. }
  24909. },
  24910. back: {
  24911. height: math.unit(2.3, "m"),
  24912. weight: math.unit(304, "kg"),
  24913. name: "Back",
  24914. image: {
  24915. source: "./media/characters/icowom-lee/back.svg",
  24916. extra: 975 / 954,
  24917. bottom: 9.5 / 985
  24918. }
  24919. },
  24920. backtentacles: {
  24921. height: math.unit(2.3, "m"),
  24922. weight: math.unit(304, "kg"),
  24923. name: "Back-tentacles",
  24924. image: {
  24925. source: "./media/characters/icowom-lee/back-tentacles.svg",
  24926. extra: 975 / 954,
  24927. bottom: 9.5 / 985
  24928. }
  24929. },
  24930. frontDressed: {
  24931. height: math.unit(2.3, "m"),
  24932. weight: math.unit(304, "kg"),
  24933. name: "Front (Dressed)",
  24934. image: {
  24935. source: "./media/characters/icowom-lee/front-dressed.svg",
  24936. extra: 3076 / 2933,
  24937. bottom: 51.4 / 3125.1889
  24938. }
  24939. },
  24940. rump: {
  24941. height: math.unit(0.776, "meters"),
  24942. name: "Rump",
  24943. image: {
  24944. source: "./media/characters/icowom-lee/rump.svg"
  24945. }
  24946. },
  24947. genitals: {
  24948. height: math.unit(0.78, "meters"),
  24949. name: "Genitals",
  24950. image: {
  24951. source: "./media/characters/icowom-lee/genitals.svg"
  24952. }
  24953. },
  24954. },
  24955. [
  24956. {
  24957. name: "Normal",
  24958. height: math.unit(2.3, "meters"),
  24959. default: true
  24960. },
  24961. {
  24962. name: "Macro",
  24963. height: math.unit(94, "meters"),
  24964. default: true
  24965. },
  24966. ]
  24967. ))
  24968. characterMakers.push(() => makeCharacter(
  24969. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  24970. {
  24971. front: {
  24972. height: math.unit(22, "meters"),
  24973. weight: math.unit(21000, "kg"),
  24974. name: "Front",
  24975. image: {
  24976. source: "./media/characters/shock-diamond/front.svg",
  24977. extra: 2204 / 2053,
  24978. bottom: 65 / 2239.47
  24979. }
  24980. },
  24981. frontNude: {
  24982. height: math.unit(22, "meters"),
  24983. weight: math.unit(21000, "kg"),
  24984. name: "Front (Nude)",
  24985. image: {
  24986. source: "./media/characters/shock-diamond/front-nude.svg",
  24987. extra: 2514 / 2285,
  24988. bottom: 13 / 2527.56
  24989. }
  24990. },
  24991. },
  24992. [
  24993. {
  24994. name: "Normal",
  24995. height: math.unit(3, "meters")
  24996. },
  24997. {
  24998. name: "Macro",
  24999. height: math.unit(22, "meters"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(5 + 4/12, "feet"),
  25009. weight: math.unit(125, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/rory/front.svg",
  25013. extra: 1790/1681,
  25014. bottom: 66/1856
  25015. },
  25016. form: "normal",
  25017. default: true
  25018. },
  25019. back: {
  25020. height: math.unit(5 + 4/12, "feet"),
  25021. weight: math.unit(125, "lb"),
  25022. name: "Back",
  25023. image: {
  25024. source: "./media/characters/rory/back.svg",
  25025. extra: 1805/1690,
  25026. bottom: 56/1861
  25027. },
  25028. form: "normal"
  25029. },
  25030. frontDressed: {
  25031. height: math.unit(5 + 4/12, "feet"),
  25032. weight: math.unit(125, "lb"),
  25033. name: "Front (Dressed)",
  25034. image: {
  25035. source: "./media/characters/rory/front-dressed.svg",
  25036. extra: 1790/1681,
  25037. bottom: 66/1856
  25038. },
  25039. form: "normal"
  25040. },
  25041. backDressed: {
  25042. height: math.unit(5 + 4/12, "feet"),
  25043. weight: math.unit(125, "lb"),
  25044. name: "Back (Dressed)",
  25045. image: {
  25046. source: "./media/characters/rory/back-dressed.svg",
  25047. extra: 1805/1690,
  25048. bottom: 56/1861
  25049. },
  25050. form: "normal"
  25051. },
  25052. frontNsfw: {
  25053. height: math.unit(5 + 4/12, "feet"),
  25054. weight: math.unit(125, "lb"),
  25055. name: "Front (NSFW)",
  25056. image: {
  25057. source: "./media/characters/rory/front-nsfw.svg",
  25058. extra: 1790/1681,
  25059. bottom: 66/1856
  25060. },
  25061. form: "normal"
  25062. },
  25063. backNsfw: {
  25064. height: math.unit(5 + 4/12, "feet"),
  25065. weight: math.unit(125, "lb"),
  25066. name: "Back (NSFW)",
  25067. image: {
  25068. source: "./media/characters/rory/back-nsfw.svg",
  25069. extra: 1805/1690,
  25070. bottom: 56/1861
  25071. },
  25072. form: "normal"
  25073. },
  25074. dick: {
  25075. height: math.unit(0.8, "feet"),
  25076. name: "Dick",
  25077. image: {
  25078. source: "./media/characters/rory/dick.svg"
  25079. },
  25080. form: "normal"
  25081. },
  25082. thicc_front: {
  25083. height: math.unit(5 + 4/12, "feet"),
  25084. weight: math.unit(195, "lb"),
  25085. name: "Front",
  25086. image: {
  25087. source: "./media/characters/rory/thicc-front.svg",
  25088. extra: 1220/1100,
  25089. bottom: 103/1323
  25090. },
  25091. form: "thicc",
  25092. default: true
  25093. },
  25094. thicc_back: {
  25095. height: math.unit(5 + 4/12, "feet"),
  25096. weight: math.unit(195, "lb"),
  25097. name: "Back",
  25098. image: {
  25099. source: "./media/characters/rory/thicc-back.svg",
  25100. extra: 1166/1086,
  25101. bottom: 35/1201
  25102. },
  25103. form: "thicc"
  25104. },
  25105. },
  25106. [
  25107. {
  25108. name: "Micro",
  25109. height: math.unit(3, "inches"),
  25110. allForms: true
  25111. },
  25112. {
  25113. name: "Normal",
  25114. height: math.unit(5 + 4/12, "feet"),
  25115. allForms: true,
  25116. default: true
  25117. },
  25118. {
  25119. name: "Macro",
  25120. height: math.unit(90, "feet"),
  25121. allForms: true
  25122. },
  25123. {
  25124. name: "Supercharged",
  25125. height: math.unit(270, "feet"),
  25126. allForms: true
  25127. },
  25128. ],
  25129. {
  25130. "normal": {
  25131. name: "Normal",
  25132. default: true
  25133. },
  25134. "thicc": {
  25135. name: "Thicc",
  25136. },
  25137. }
  25138. ))
  25139. characterMakers.push(() => makeCharacter(
  25140. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  25141. {
  25142. front: {
  25143. height: math.unit(5 + 9 / 12, "feet"),
  25144. weight: math.unit(190, "lb"),
  25145. name: "Front",
  25146. image: {
  25147. source: "./media/characters/sprisk/front.svg",
  25148. extra: 1225 / 1180,
  25149. bottom: 42.7 / 1266.4
  25150. }
  25151. },
  25152. frontNsfw: {
  25153. height: math.unit(5 + 9 / 12, "feet"),
  25154. weight: math.unit(190, "lb"),
  25155. name: "Front (NSFW)",
  25156. image: {
  25157. source: "./media/characters/sprisk/front-nsfw.svg",
  25158. extra: 1225 / 1180,
  25159. bottom: 42.7 / 1266.4
  25160. }
  25161. },
  25162. back: {
  25163. height: math.unit(5 + 9 / 12, "feet"),
  25164. weight: math.unit(190, "lb"),
  25165. name: "Back",
  25166. image: {
  25167. source: "./media/characters/sprisk/back.svg",
  25168. extra: 1247 / 1200,
  25169. bottom: 5.6 / 1253.04
  25170. }
  25171. },
  25172. },
  25173. [
  25174. {
  25175. name: "Tiny",
  25176. height: math.unit(2, "inches")
  25177. },
  25178. {
  25179. name: "Normal",
  25180. height: math.unit(5 + 9 / 12, "feet"),
  25181. default: true
  25182. },
  25183. {
  25184. name: "Mini Macro",
  25185. height: math.unit(18, "feet")
  25186. },
  25187. {
  25188. name: "Macro",
  25189. height: math.unit(100, "feet")
  25190. },
  25191. {
  25192. name: "MACRO",
  25193. height: math.unit(50, "miles")
  25194. },
  25195. {
  25196. name: "M A C R O",
  25197. height: math.unit(300, "miles")
  25198. },
  25199. ]
  25200. ))
  25201. characterMakers.push(() => makeCharacter(
  25202. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  25203. {
  25204. side: {
  25205. height: math.unit(15.6, "meters"),
  25206. weight: math.unit(700000, "kg"),
  25207. name: "Side",
  25208. image: {
  25209. source: "./media/characters/bunsen/side.svg",
  25210. extra: 1644 / 358
  25211. }
  25212. },
  25213. foot: {
  25214. height: math.unit(1.611 * 1644 / 358, "meter"),
  25215. name: "Foot",
  25216. image: {
  25217. source: "./media/characters/bunsen/foot.svg"
  25218. }
  25219. },
  25220. },
  25221. [
  25222. {
  25223. name: "Small",
  25224. height: math.unit(10, "feet")
  25225. },
  25226. {
  25227. name: "Normal",
  25228. height: math.unit(15.6, "meters"),
  25229. default: true
  25230. },
  25231. ]
  25232. ))
  25233. characterMakers.push(() => makeCharacter(
  25234. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  25235. {
  25236. front: {
  25237. height: math.unit(4 + 11 / 12, "feet"),
  25238. weight: math.unit(140, "lb"),
  25239. name: "Front",
  25240. image: {
  25241. source: "./media/characters/sesh/front.svg",
  25242. extra: 3420 / 3231,
  25243. bottom: 72 / 3949.5
  25244. }
  25245. },
  25246. },
  25247. [
  25248. {
  25249. name: "Normal",
  25250. height: math.unit(4 + 11 / 12, "feet")
  25251. },
  25252. {
  25253. name: "Grown",
  25254. height: math.unit(15, "feet"),
  25255. default: true
  25256. },
  25257. {
  25258. name: "Macro",
  25259. height: math.unit(1500, "feet")
  25260. },
  25261. {
  25262. name: "Megamacro",
  25263. height: math.unit(30, "miles")
  25264. },
  25265. {
  25266. name: "Continental",
  25267. height: math.unit(3000, "miles")
  25268. },
  25269. {
  25270. name: "Gravity Mass",
  25271. height: math.unit(300000, "miles")
  25272. },
  25273. {
  25274. name: "Planet Buster",
  25275. height: math.unit(30000000, "miles")
  25276. },
  25277. {
  25278. name: "Big",
  25279. height: math.unit(3000000000, "miles")
  25280. },
  25281. ]
  25282. ))
  25283. characterMakers.push(() => makeCharacter(
  25284. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  25285. {
  25286. front: {
  25287. height: math.unit(9, "feet"),
  25288. weight: math.unit(350, "lb"),
  25289. name: "Front",
  25290. image: {
  25291. source: "./media/characters/pepper/front.svg",
  25292. extra: 1448 / 1312,
  25293. bottom: 9.4 / 1457.88
  25294. }
  25295. },
  25296. back: {
  25297. height: math.unit(9, "feet"),
  25298. weight: math.unit(350, "lb"),
  25299. name: "Back",
  25300. image: {
  25301. source: "./media/characters/pepper/back.svg",
  25302. extra: 1423 / 1300,
  25303. bottom: 4.6 / 1429
  25304. }
  25305. },
  25306. maw: {
  25307. height: math.unit(0.932, "feet"),
  25308. name: "Maw",
  25309. image: {
  25310. source: "./media/characters/pepper/maw.svg"
  25311. }
  25312. },
  25313. },
  25314. [
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(9, "feet"),
  25318. default: true
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  25324. {
  25325. front: {
  25326. height: math.unit(6, "feet"),
  25327. weight: math.unit(150, "lb"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/maelstrom/front.svg",
  25331. extra: 2100 / 1883,
  25332. bottom: 94 / 2196.7
  25333. }
  25334. },
  25335. },
  25336. [
  25337. {
  25338. name: "Less Kaiju",
  25339. height: math.unit(200, "feet")
  25340. },
  25341. {
  25342. name: "Kaiju",
  25343. height: math.unit(400, "feet"),
  25344. default: true
  25345. },
  25346. {
  25347. name: "Kaiju-er",
  25348. height: math.unit(600, "feet")
  25349. },
  25350. ]
  25351. ))
  25352. characterMakers.push(() => makeCharacter(
  25353. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  25354. {
  25355. front: {
  25356. height: math.unit(6 + 5 / 12, "feet"),
  25357. weight: math.unit(180, "lb"),
  25358. name: "Front",
  25359. image: {
  25360. source: "./media/characters/lexir/front.svg",
  25361. extra: 180 / 172,
  25362. bottom: 12 / 192
  25363. }
  25364. },
  25365. back: {
  25366. height: math.unit(6 + 5 / 12, "feet"),
  25367. weight: math.unit(180, "lb"),
  25368. name: "Back",
  25369. image: {
  25370. source: "./media/characters/lexir/back.svg",
  25371. extra: 1273/1201,
  25372. bottom: 39/1312
  25373. }
  25374. },
  25375. },
  25376. [
  25377. {
  25378. name: "Very Smal",
  25379. height: math.unit(1, "nm")
  25380. },
  25381. {
  25382. name: "Normal",
  25383. height: math.unit(6 + 5 / 12, "feet"),
  25384. default: true
  25385. },
  25386. {
  25387. name: "Macro",
  25388. height: math.unit(1, "mile")
  25389. },
  25390. {
  25391. name: "Megamacro",
  25392. height: math.unit(50, "miles")
  25393. },
  25394. ]
  25395. ))
  25396. characterMakers.push(() => makeCharacter(
  25397. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  25398. {
  25399. front: {
  25400. height: math.unit(1.5, "meters"),
  25401. weight: math.unit(100, "lb"),
  25402. name: "Front",
  25403. image: {
  25404. source: "./media/characters/maksio/front.svg",
  25405. extra: 1549 / 1531,
  25406. bottom: 123.7 / 1674.5429
  25407. }
  25408. },
  25409. back: {
  25410. height: math.unit(1.5, "meters"),
  25411. weight: math.unit(100, "lb"),
  25412. name: "Back",
  25413. image: {
  25414. source: "./media/characters/maksio/back.svg",
  25415. extra: 1541 / 1509,
  25416. bottom: 97 / 1639
  25417. }
  25418. },
  25419. hand: {
  25420. height: math.unit(0.621, "feet"),
  25421. name: "Hand",
  25422. image: {
  25423. source: "./media/characters/maksio/hand.svg"
  25424. }
  25425. },
  25426. foot: {
  25427. height: math.unit(1.611, "feet"),
  25428. name: "Foot",
  25429. image: {
  25430. source: "./media/characters/maksio/foot.svg"
  25431. }
  25432. },
  25433. },
  25434. [
  25435. {
  25436. name: "Shrunken",
  25437. height: math.unit(10, "cm")
  25438. },
  25439. {
  25440. name: "Normal",
  25441. height: math.unit(150, "cm"),
  25442. default: true
  25443. },
  25444. ]
  25445. ))
  25446. characterMakers.push(() => makeCharacter(
  25447. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  25448. {
  25449. front: {
  25450. height: math.unit(100, "feet"),
  25451. name: "Front",
  25452. image: {
  25453. source: "./media/characters/erza-bear/front.svg",
  25454. extra: 2449 / 2390,
  25455. bottom: 46 / 2494
  25456. }
  25457. },
  25458. back: {
  25459. height: math.unit(100, "feet"),
  25460. name: "Back",
  25461. image: {
  25462. source: "./media/characters/erza-bear/back.svg",
  25463. extra: 2489 / 2430,
  25464. bottom: 85.4 / 2480
  25465. }
  25466. },
  25467. tail: {
  25468. height: math.unit(42, "feet"),
  25469. name: "Tail",
  25470. image: {
  25471. source: "./media/characters/erza-bear/tail.svg"
  25472. }
  25473. },
  25474. tongue: {
  25475. height: math.unit(8, "feet"),
  25476. name: "Tongue",
  25477. image: {
  25478. source: "./media/characters/erza-bear/tongue.svg"
  25479. }
  25480. },
  25481. dick: {
  25482. height: math.unit(10.5, "feet"),
  25483. name: "Dick",
  25484. image: {
  25485. source: "./media/characters/erza-bear/dick.svg"
  25486. }
  25487. },
  25488. dickVertical: {
  25489. height: math.unit(16.9, "feet"),
  25490. name: "Dick (Vertical)",
  25491. image: {
  25492. source: "./media/characters/erza-bear/dick-vertical.svg"
  25493. }
  25494. },
  25495. },
  25496. [
  25497. {
  25498. name: "Macro",
  25499. height: math.unit(100, "feet"),
  25500. default: true
  25501. },
  25502. ]
  25503. ))
  25504. characterMakers.push(() => makeCharacter(
  25505. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  25506. {
  25507. front: {
  25508. height: math.unit(172, "cm"),
  25509. weight: math.unit(73, "kg"),
  25510. name: "Front",
  25511. image: {
  25512. source: "./media/characters/violet-flor/front.svg",
  25513. extra: 1530 / 1442,
  25514. bottom: 61.9 / 1588.8
  25515. }
  25516. },
  25517. back: {
  25518. height: math.unit(180, "cm"),
  25519. weight: math.unit(73, "kg"),
  25520. name: "Back",
  25521. image: {
  25522. source: "./media/characters/violet-flor/back.svg",
  25523. extra: 1692 / 1630,
  25524. bottom: 20 / 1712
  25525. }
  25526. },
  25527. },
  25528. [
  25529. {
  25530. name: "Normal",
  25531. height: math.unit(172, "cm"),
  25532. default: true
  25533. },
  25534. ]
  25535. ))
  25536. characterMakers.push(() => makeCharacter(
  25537. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  25538. {
  25539. front: {
  25540. height: math.unit(6, "feet"),
  25541. weight: math.unit(220, "lb"),
  25542. name: "Front",
  25543. image: {
  25544. source: "./media/characters/lynn-rhea/front.svg",
  25545. extra: 310 / 273
  25546. }
  25547. },
  25548. back: {
  25549. height: math.unit(6, "feet"),
  25550. weight: math.unit(220, "lb"),
  25551. name: "Back",
  25552. image: {
  25553. source: "./media/characters/lynn-rhea/back.svg",
  25554. extra: 310 / 273
  25555. }
  25556. },
  25557. dicks: {
  25558. height: math.unit(0.9, "feet"),
  25559. name: "Dicks",
  25560. image: {
  25561. source: "./media/characters/lynn-rhea/dicks.svg"
  25562. }
  25563. },
  25564. slit: {
  25565. height: math.unit(0.4, "feet"),
  25566. name: "Slit",
  25567. image: {
  25568. source: "./media/characters/lynn-rhea/slit.svg"
  25569. }
  25570. },
  25571. },
  25572. [
  25573. {
  25574. name: "Micro",
  25575. height: math.unit(1, "inch")
  25576. },
  25577. {
  25578. name: "Macro",
  25579. height: math.unit(60, "feet"),
  25580. default: true
  25581. },
  25582. {
  25583. name: "Megamacro",
  25584. height: math.unit(2, "miles")
  25585. },
  25586. {
  25587. name: "Gigamacro",
  25588. height: math.unit(3, "earths")
  25589. },
  25590. {
  25591. name: "Galactic",
  25592. height: math.unit(0.8, "galaxies")
  25593. },
  25594. ]
  25595. ))
  25596. characterMakers.push(() => makeCharacter(
  25597. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  25598. {
  25599. front: {
  25600. height: math.unit(1600, "feet"),
  25601. weight: math.unit(85758785169, "kg"),
  25602. name: "Front",
  25603. image: {
  25604. source: "./media/characters/valathos/front.svg",
  25605. extra: 1451 / 1339
  25606. }
  25607. },
  25608. },
  25609. [
  25610. {
  25611. name: "Macro",
  25612. height: math.unit(1600, "feet"),
  25613. default: true
  25614. },
  25615. ]
  25616. ))
  25617. characterMakers.push(() => makeCharacter(
  25618. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  25619. {
  25620. front: {
  25621. height: math.unit(7 + 5 / 12, "feet"),
  25622. weight: math.unit(300, "lb"),
  25623. name: "Front",
  25624. image: {
  25625. source: "./media/characters/azula/front.svg",
  25626. extra: 3208 / 2880,
  25627. bottom: 80.2 / 3277
  25628. }
  25629. },
  25630. back: {
  25631. height: math.unit(7 + 5 / 12, "feet"),
  25632. weight: math.unit(300, "lb"),
  25633. name: "Back",
  25634. image: {
  25635. source: "./media/characters/azula/back.svg",
  25636. extra: 3169 / 2822,
  25637. bottom: 150.6 / 3321
  25638. }
  25639. },
  25640. },
  25641. [
  25642. {
  25643. name: "Normal",
  25644. height: math.unit(7 + 5 / 12, "feet"),
  25645. default: true
  25646. },
  25647. {
  25648. name: "Big",
  25649. height: math.unit(20, "feet")
  25650. },
  25651. ]
  25652. ))
  25653. characterMakers.push(() => makeCharacter(
  25654. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  25655. {
  25656. front: {
  25657. height: math.unit(5 + 1 / 12, "feet"),
  25658. weight: math.unit(110, "lb"),
  25659. name: "Front",
  25660. image: {
  25661. source: "./media/characters/rupert/front.svg",
  25662. extra: 1549 / 1495,
  25663. bottom: 54.2 / 1604.4
  25664. }
  25665. },
  25666. },
  25667. [
  25668. {
  25669. name: "Normal",
  25670. height: math.unit(5 + 1 / 12, "feet"),
  25671. default: true
  25672. },
  25673. ]
  25674. ))
  25675. characterMakers.push(() => makeCharacter(
  25676. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  25677. {
  25678. front: {
  25679. height: math.unit(8 + 4 / 12, "feet"),
  25680. weight: math.unit(350, "lb"),
  25681. name: "Front",
  25682. image: {
  25683. source: "./media/characters/sheera-castellar/front.svg",
  25684. extra: 1957 / 1894,
  25685. bottom: 26.97 / 1975.017
  25686. }
  25687. },
  25688. side: {
  25689. height: math.unit(8 + 4 / 12, "feet"),
  25690. weight: math.unit(350, "lb"),
  25691. name: "Side",
  25692. image: {
  25693. source: "./media/characters/sheera-castellar/side.svg",
  25694. extra: 1957 / 1894
  25695. }
  25696. },
  25697. back: {
  25698. height: math.unit(8 + 4 / 12, "feet"),
  25699. weight: math.unit(350, "lb"),
  25700. name: "Back",
  25701. image: {
  25702. source: "./media/characters/sheera-castellar/back.svg",
  25703. extra: 1957 / 1894
  25704. }
  25705. },
  25706. angled: {
  25707. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  25708. weight: math.unit(350, "lb"),
  25709. name: "Angled",
  25710. image: {
  25711. source: "./media/characters/sheera-castellar/angled.svg",
  25712. extra: 1807 / 1707,
  25713. bottom: 68 / 1875
  25714. }
  25715. },
  25716. genitals: {
  25717. height: math.unit(2.2, "feet"),
  25718. name: "Genitals",
  25719. image: {
  25720. source: "./media/characters/sheera-castellar/genitals.svg"
  25721. }
  25722. },
  25723. taur: {
  25724. height: math.unit(10 + 6/12, "feet"),
  25725. name: "Taur",
  25726. image: {
  25727. source: "./media/characters/sheera-castellar/taur.svg",
  25728. extra: 2017/1909,
  25729. bottom: 185/2202
  25730. }
  25731. },
  25732. },
  25733. [
  25734. {
  25735. name: "Normal",
  25736. height: math.unit(8 + 4 / 12, "feet")
  25737. },
  25738. {
  25739. name: "Macro",
  25740. height: math.unit(150, "feet"),
  25741. default: true
  25742. },
  25743. {
  25744. name: "Macro+",
  25745. height: math.unit(800, "feet")
  25746. },
  25747. ]
  25748. ))
  25749. characterMakers.push(() => makeCharacter(
  25750. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  25751. {
  25752. front: {
  25753. height: math.unit(6, "feet"),
  25754. weight: math.unit(150, "lb"),
  25755. name: "Front",
  25756. image: {
  25757. source: "./media/characters/jaipur/front.svg",
  25758. extra: 3860 / 3731,
  25759. bottom: 287 / 4140
  25760. }
  25761. },
  25762. back: {
  25763. height: math.unit(6, "feet"),
  25764. weight: math.unit(150, "lb"),
  25765. name: "Back",
  25766. image: {
  25767. source: "./media/characters/jaipur/back.svg",
  25768. extra: 1637/1561,
  25769. bottom: 154/1791
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Normal",
  25776. height: math.unit(1.85, "meters"),
  25777. default: true
  25778. },
  25779. {
  25780. name: "Macro",
  25781. height: math.unit(150, "meters")
  25782. },
  25783. {
  25784. name: "Macro+",
  25785. height: math.unit(0.5, "miles")
  25786. },
  25787. {
  25788. name: "Macro++",
  25789. height: math.unit(2.5, "miles")
  25790. },
  25791. {
  25792. name: "Macro+++",
  25793. height: math.unit(12, "miles")
  25794. },
  25795. {
  25796. name: "Macro++++",
  25797. height: math.unit(120, "miles")
  25798. },
  25799. {
  25800. name: "Macro+++++",
  25801. height: math.unit(1200, "miles")
  25802. },
  25803. ]
  25804. ))
  25805. characterMakers.push(() => makeCharacter(
  25806. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  25807. {
  25808. front: {
  25809. height: math.unit(6, "feet"),
  25810. weight: math.unit(150, "lb"),
  25811. name: "Front",
  25812. image: {
  25813. source: "./media/characters/sheila-wolf/front.svg",
  25814. extra: 1931 / 1808,
  25815. bottom: 29.5 / 1960
  25816. }
  25817. },
  25818. dick: {
  25819. height: math.unit(1.464, "feet"),
  25820. name: "Dick",
  25821. image: {
  25822. source: "./media/characters/sheila-wolf/dick.svg"
  25823. }
  25824. },
  25825. muzzle: {
  25826. height: math.unit(0.513, "feet"),
  25827. name: "Muzzle",
  25828. image: {
  25829. source: "./media/characters/sheila-wolf/muzzle.svg"
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Macro",
  25836. height: math.unit(70, "feet"),
  25837. default: true
  25838. },
  25839. ]
  25840. ))
  25841. characterMakers.push(() => makeCharacter(
  25842. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  25843. {
  25844. front: {
  25845. height: math.unit(32, "meters"),
  25846. weight: math.unit(300000, "kg"),
  25847. name: "Front",
  25848. image: {
  25849. source: "./media/characters/almor/front.svg",
  25850. extra: 1408 / 1322,
  25851. bottom: 94.6 / 1506.5
  25852. }
  25853. },
  25854. },
  25855. [
  25856. {
  25857. name: "Macro",
  25858. height: math.unit(32, "meters"),
  25859. default: true
  25860. },
  25861. ]
  25862. ))
  25863. characterMakers.push(() => makeCharacter(
  25864. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  25865. {
  25866. front: {
  25867. height: math.unit(7, "feet"),
  25868. weight: math.unit(200, "lb"),
  25869. name: "Front",
  25870. image: {
  25871. source: "./media/characters/silver/front.svg",
  25872. extra: 472.1 / 450.5,
  25873. bottom: 26.5 / 499.424
  25874. }
  25875. },
  25876. },
  25877. [
  25878. {
  25879. name: "Normal",
  25880. height: math.unit(7, "feet"),
  25881. default: true
  25882. },
  25883. {
  25884. name: "Macro",
  25885. height: math.unit(800, "feet")
  25886. },
  25887. {
  25888. name: "Megamacro",
  25889. height: math.unit(250, "miles")
  25890. },
  25891. ]
  25892. ))
  25893. characterMakers.push(() => makeCharacter(
  25894. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  25895. {
  25896. front: {
  25897. height: math.unit(6, "feet"),
  25898. weight: math.unit(150, "lb"),
  25899. name: "Front",
  25900. image: {
  25901. source: "./media/characters/pliskin/front.svg",
  25902. extra: 1469 / 1359,
  25903. bottom: 70 / 1540
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Micro",
  25910. height: math.unit(3, "inches")
  25911. },
  25912. {
  25913. name: "Normal",
  25914. height: math.unit(5 + 11 / 12, "feet"),
  25915. default: true
  25916. },
  25917. {
  25918. name: "Macro",
  25919. height: math.unit(120, "feet")
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(6, "feet"),
  25928. weight: math.unit(150, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/sammy/front.svg",
  25932. extra: 1193 / 1089,
  25933. bottom: 30.5 / 1226
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Macro",
  25940. height: math.unit(1700, "feet"),
  25941. default: true
  25942. },
  25943. {
  25944. name: "Examacro",
  25945. height: math.unit(2.5e9, "lightyears")
  25946. },
  25947. ]
  25948. ))
  25949. characterMakers.push(() => makeCharacter(
  25950. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  25951. {
  25952. front: {
  25953. height: math.unit(21, "meters"),
  25954. weight: math.unit(12, "tonnes"),
  25955. name: "Front",
  25956. image: {
  25957. source: "./media/characters/kuru/front.svg",
  25958. extra: 4301 / 3785,
  25959. bottom: 371.3 / 4691
  25960. }
  25961. },
  25962. },
  25963. [
  25964. {
  25965. name: "Macro",
  25966. height: math.unit(21, "meters"),
  25967. default: true
  25968. },
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  25973. {
  25974. front: {
  25975. height: math.unit(23, "meters"),
  25976. weight: math.unit(12.2, "tonnes"),
  25977. name: "Front",
  25978. image: {
  25979. source: "./media/characters/rakka/front.svg",
  25980. extra: 4670 / 4169,
  25981. bottom: 301 / 4968.7
  25982. }
  25983. },
  25984. },
  25985. [
  25986. {
  25987. name: "Macro",
  25988. height: math.unit(23, "meters"),
  25989. default: true
  25990. },
  25991. ]
  25992. ))
  25993. characterMakers.push(() => makeCharacter(
  25994. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  25995. {
  25996. front: {
  25997. height: math.unit(6, "feet"),
  25998. weight: math.unit(150, "lb"),
  25999. name: "Front",
  26000. image: {
  26001. source: "./media/characters/rhys-feline/front.svg",
  26002. extra: 2488 / 2308,
  26003. bottom: 35.67 / 2519.19
  26004. }
  26005. },
  26006. },
  26007. [
  26008. {
  26009. name: "Really Small",
  26010. height: math.unit(1, "nm")
  26011. },
  26012. {
  26013. name: "Micro",
  26014. height: math.unit(4, "inches")
  26015. },
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(4 + 10 / 12, "feet"),
  26019. default: true
  26020. },
  26021. {
  26022. name: "Macro",
  26023. height: math.unit(100, "feet")
  26024. },
  26025. {
  26026. name: "Megamacto",
  26027. height: math.unit(50, "miles")
  26028. },
  26029. ]
  26030. ))
  26031. characterMakers.push(() => makeCharacter(
  26032. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  26033. {
  26034. side: {
  26035. height: math.unit(30, "feet"),
  26036. weight: math.unit(35000, "kg"),
  26037. name: "Side",
  26038. image: {
  26039. source: "./media/characters/alydar/side.svg",
  26040. extra: 234 / 222,
  26041. bottom: 6.5 / 241
  26042. }
  26043. },
  26044. front: {
  26045. height: math.unit(30, "feet"),
  26046. weight: math.unit(35000, "kg"),
  26047. name: "Front",
  26048. image: {
  26049. source: "./media/characters/alydar/front.svg",
  26050. extra: 223.37 / 210.2,
  26051. bottom: 22.3 / 246.76
  26052. }
  26053. },
  26054. top: {
  26055. height: math.unit(64.54, "feet"),
  26056. weight: math.unit(35000, "kg"),
  26057. name: "Top",
  26058. image: {
  26059. source: "./media/characters/alydar/top.svg"
  26060. }
  26061. },
  26062. anthro: {
  26063. height: math.unit(30, "feet"),
  26064. weight: math.unit(9000, "kg"),
  26065. name: "Anthro",
  26066. image: {
  26067. source: "./media/characters/alydar/anthro.svg",
  26068. extra: 432 / 421,
  26069. bottom: 7.18 / 440
  26070. }
  26071. },
  26072. maw: {
  26073. height: math.unit(11.693, "feet"),
  26074. name: "Maw",
  26075. image: {
  26076. source: "./media/characters/alydar/maw.svg"
  26077. }
  26078. },
  26079. head: {
  26080. height: math.unit(11.693, "feet"),
  26081. name: "Head",
  26082. image: {
  26083. source: "./media/characters/alydar/head.svg"
  26084. }
  26085. },
  26086. headAlt: {
  26087. height: math.unit(12.861, "feet"),
  26088. name: "Head (Alt)",
  26089. image: {
  26090. source: "./media/characters/alydar/head-alt.svg"
  26091. }
  26092. },
  26093. wing: {
  26094. height: math.unit(20.712, "feet"),
  26095. name: "Wing",
  26096. image: {
  26097. source: "./media/characters/alydar/wing.svg"
  26098. }
  26099. },
  26100. wingFeather: {
  26101. height: math.unit(9.662, "feet"),
  26102. name: "Wing Feather",
  26103. image: {
  26104. source: "./media/characters/alydar/wing-feather.svg"
  26105. }
  26106. },
  26107. countourFeather: {
  26108. height: math.unit(4.154, "feet"),
  26109. name: "Contour Feather",
  26110. image: {
  26111. source: "./media/characters/alydar/contour-feather.svg"
  26112. }
  26113. },
  26114. },
  26115. [
  26116. {
  26117. name: "Diplomatic",
  26118. height: math.unit(13, "feet"),
  26119. default: true
  26120. },
  26121. {
  26122. name: "Small",
  26123. height: math.unit(30, "feet")
  26124. },
  26125. {
  26126. name: "Normal",
  26127. height: math.unit(95, "feet"),
  26128. default: true
  26129. },
  26130. {
  26131. name: "Large",
  26132. height: math.unit(285, "feet")
  26133. },
  26134. {
  26135. name: "Incomprehensible",
  26136. height: math.unit(450, "megameters")
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  26142. {
  26143. side: {
  26144. height: math.unit(11, "feet"),
  26145. weight: math.unit(1750, "kg"),
  26146. name: "Side",
  26147. image: {
  26148. source: "./media/characters/selicia/side.svg",
  26149. extra: 440 / 396,
  26150. bottom: 24.8 / 465.979
  26151. }
  26152. },
  26153. maw: {
  26154. height: math.unit(4.665, "feet"),
  26155. name: "Maw",
  26156. image: {
  26157. source: "./media/characters/selicia/maw.svg"
  26158. }
  26159. },
  26160. },
  26161. [
  26162. {
  26163. name: "Normal",
  26164. height: math.unit(11, "feet"),
  26165. default: true
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Layla", species: ["zorua", "vulpix", "dragon"], tags: ["feral"] },
  26171. {
  26172. side: {
  26173. height: math.unit(2 + 6 / 12, "feet"),
  26174. weight: math.unit(30, "lb"),
  26175. name: "Side",
  26176. image: {
  26177. source: "./media/characters/layla/side.svg",
  26178. extra: 244 / 188,
  26179. bottom: 18.2 / 262.1
  26180. }
  26181. },
  26182. back: {
  26183. height: math.unit(2 + 6 / 12, "feet"),
  26184. weight: math.unit(30, "lb"),
  26185. name: "Back",
  26186. image: {
  26187. source: "./media/characters/layla/back.svg",
  26188. extra: 308 / 241.5,
  26189. bottom: 8.9 / 316.8
  26190. }
  26191. },
  26192. cumming: {
  26193. height: math.unit(2 + 6 / 12, "feet"),
  26194. weight: math.unit(30, "lb"),
  26195. name: "Cumming",
  26196. image: {
  26197. source: "./media/characters/layla/cumming.svg",
  26198. extra: 342 / 279,
  26199. bottom: 595 / 938
  26200. }
  26201. },
  26202. dickFlaccid: {
  26203. height: math.unit(2.595, "feet"),
  26204. name: "Flaccid Genitals",
  26205. image: {
  26206. source: "./media/characters/layla/dick-flaccid.svg"
  26207. }
  26208. },
  26209. dickErect: {
  26210. height: math.unit(2.359, "feet"),
  26211. name: "Erect Genitals",
  26212. image: {
  26213. source: "./media/characters/layla/dick-erect.svg"
  26214. }
  26215. },
  26216. dragon: {
  26217. height: math.unit(40, "feet"),
  26218. name: "Dragon",
  26219. image: {
  26220. source: "./media/characters/layla/dragon.svg",
  26221. extra: 610/535,
  26222. bottom: 367/977
  26223. }
  26224. },
  26225. taur: {
  26226. height: math.unit(30, "feet"),
  26227. name: "Taur",
  26228. image: {
  26229. source: "./media/characters/layla/taur.svg",
  26230. extra: 1268/1199,
  26231. bottom: 112/1380
  26232. }
  26233. },
  26234. },
  26235. [
  26236. {
  26237. name: "Micro",
  26238. height: math.unit(1, "inch")
  26239. },
  26240. {
  26241. name: "Small",
  26242. height: math.unit(1, "foot")
  26243. },
  26244. {
  26245. name: "Normal",
  26246. height: math.unit(2 + 6 / 12, "feet"),
  26247. default: true
  26248. },
  26249. {
  26250. name: "Macro",
  26251. height: math.unit(200, "feet")
  26252. },
  26253. {
  26254. name: "Megamacro",
  26255. height: math.unit(1000, "miles")
  26256. },
  26257. {
  26258. name: "Planetary",
  26259. height: math.unit(8000, "miles")
  26260. },
  26261. {
  26262. name: "True Layla",
  26263. height: math.unit(200000 * 7, "multiverses")
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  26269. {
  26270. back: {
  26271. height: math.unit(10.5, "feet"),
  26272. weight: math.unit(800, "lb"),
  26273. name: "Back",
  26274. image: {
  26275. source: "./media/characters/knox/back.svg",
  26276. extra: 1486 / 1089,
  26277. bottom: 107 / 1601.4
  26278. }
  26279. },
  26280. side: {
  26281. height: math.unit(10.5, "feet"),
  26282. weight: math.unit(800, "lb"),
  26283. name: "Side",
  26284. image: {
  26285. source: "./media/characters/knox/side.svg",
  26286. extra: 244 / 218,
  26287. bottom: 14 / 260
  26288. }
  26289. },
  26290. },
  26291. [
  26292. {
  26293. name: "Compact",
  26294. height: math.unit(10.5, "feet"),
  26295. default: true
  26296. },
  26297. {
  26298. name: "Dynamax",
  26299. height: math.unit(210, "feet")
  26300. },
  26301. {
  26302. name: "Full Macro",
  26303. height: math.unit(850, "feet")
  26304. },
  26305. ]
  26306. ))
  26307. characterMakers.push(() => makeCharacter(
  26308. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  26309. {
  26310. front: {
  26311. height: math.unit(28, "feet"),
  26312. weight: math.unit(10500, "lb"),
  26313. name: "Front",
  26314. image: {
  26315. source: "./media/characters/kayda/front.svg",
  26316. extra: 1536 / 1428,
  26317. bottom: 68.7 / 1603
  26318. }
  26319. },
  26320. back: {
  26321. height: math.unit(28, "feet"),
  26322. weight: math.unit(10500, "lb"),
  26323. name: "Back",
  26324. image: {
  26325. source: "./media/characters/kayda/back.svg",
  26326. extra: 1557 / 1464,
  26327. bottom: 39.5 / 1597.49
  26328. }
  26329. },
  26330. dick: {
  26331. height: math.unit(3.858, "feet"),
  26332. name: "Dick",
  26333. image: {
  26334. source: "./media/characters/kayda/dick.svg"
  26335. }
  26336. },
  26337. },
  26338. [
  26339. {
  26340. name: "Macro",
  26341. height: math.unit(28, "feet"),
  26342. default: true
  26343. },
  26344. ]
  26345. ))
  26346. characterMakers.push(() => makeCharacter(
  26347. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  26348. {
  26349. front: {
  26350. height: math.unit(10 + 11 / 12, "feet"),
  26351. weight: math.unit(1400, "lb"),
  26352. name: "Front",
  26353. image: {
  26354. source: "./media/characters/brian/front.svg",
  26355. extra: 737 / 692,
  26356. bottom: 55.4 / 785
  26357. }
  26358. },
  26359. },
  26360. [
  26361. {
  26362. name: "Normal",
  26363. height: math.unit(10 + 11 / 12, "feet"),
  26364. default: true
  26365. },
  26366. ]
  26367. ))
  26368. characterMakers.push(() => makeCharacter(
  26369. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  26370. {
  26371. front: {
  26372. height: math.unit(5 + 8 / 12, "feet"),
  26373. weight: math.unit(140, "lb"),
  26374. name: "Front",
  26375. image: {
  26376. source: "./media/characters/khemri/front.svg",
  26377. extra: 4780 / 4059,
  26378. bottom: 80.1 / 4859.25
  26379. }
  26380. },
  26381. },
  26382. [
  26383. {
  26384. name: "Micro",
  26385. height: math.unit(6, "inches")
  26386. },
  26387. {
  26388. name: "Normal",
  26389. height: math.unit(5 + 8 / 12, "feet"),
  26390. default: true
  26391. },
  26392. ]
  26393. ))
  26394. characterMakers.push(() => makeCharacter(
  26395. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  26396. {
  26397. front: {
  26398. height: math.unit(13, "feet"),
  26399. weight: math.unit(1700, "lb"),
  26400. name: "Front",
  26401. image: {
  26402. source: "./media/characters/felix-braveheart/front.svg",
  26403. extra: 1222 / 1157,
  26404. bottom: 53.2 / 1280
  26405. }
  26406. },
  26407. back: {
  26408. height: math.unit(13, "feet"),
  26409. weight: math.unit(1700, "lb"),
  26410. name: "Back",
  26411. image: {
  26412. source: "./media/characters/felix-braveheart/back.svg",
  26413. extra: 1277 / 1203,
  26414. bottom: 50.2 / 1327
  26415. }
  26416. },
  26417. feral: {
  26418. height: math.unit(6, "feet"),
  26419. weight: math.unit(400, "lb"),
  26420. name: "Feral",
  26421. image: {
  26422. source: "./media/characters/felix-braveheart/feral.svg",
  26423. extra: 682 / 625,
  26424. bottom: 6.9 / 688
  26425. }
  26426. },
  26427. },
  26428. [
  26429. {
  26430. name: "Normal",
  26431. height: math.unit(13, "feet"),
  26432. default: true
  26433. },
  26434. ]
  26435. ))
  26436. characterMakers.push(() => makeCharacter(
  26437. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  26438. {
  26439. side: {
  26440. height: math.unit(5 + 11 / 12, "feet"),
  26441. weight: math.unit(1400, "lb"),
  26442. name: "Side",
  26443. image: {
  26444. source: "./media/characters/shadow-blade/side.svg",
  26445. extra: 1726 / 1267,
  26446. bottom: 58.4 / 1785
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Normal",
  26453. height: math.unit(5 + 11 / 12, "feet"),
  26454. default: true
  26455. },
  26456. ]
  26457. ))
  26458. characterMakers.push(() => makeCharacter(
  26459. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  26460. {
  26461. front: {
  26462. height: math.unit(1 + 6 / 12, "feet"),
  26463. weight: math.unit(25, "lb"),
  26464. name: "Front",
  26465. image: {
  26466. source: "./media/characters/karla-halldor/front.svg",
  26467. extra: 1459 / 1383,
  26468. bottom: 12 / 1472
  26469. }
  26470. },
  26471. },
  26472. [
  26473. {
  26474. name: "Normal",
  26475. height: math.unit(1 + 6 / 12, "feet"),
  26476. default: true
  26477. },
  26478. ]
  26479. ))
  26480. characterMakers.push(() => makeCharacter(
  26481. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  26482. {
  26483. front: {
  26484. height: math.unit(6 + 2 / 12, "feet"),
  26485. weight: math.unit(160, "lb"),
  26486. name: "Front",
  26487. image: {
  26488. source: "./media/characters/ariam/front.svg",
  26489. extra: 1073/976,
  26490. bottom: 52/1125
  26491. }
  26492. },
  26493. back: {
  26494. height: math.unit(6 + 2/12, "feet"),
  26495. weight: math.unit(160, "lb"),
  26496. name: "Back",
  26497. image: {
  26498. source: "./media/characters/ariam/back.svg",
  26499. extra: 1103/1023,
  26500. bottom: 9/1112
  26501. }
  26502. },
  26503. dressed: {
  26504. height: math.unit(6 + 2/12, "feet"),
  26505. weight: math.unit(160, "lb"),
  26506. name: "Dressed",
  26507. image: {
  26508. source: "./media/characters/ariam/dressed.svg",
  26509. extra: 1099/1009,
  26510. bottom: 25/1124
  26511. }
  26512. },
  26513. squatting: {
  26514. height: math.unit(4.1, "feet"),
  26515. weight: math.unit(160, "lb"),
  26516. name: "Squatting",
  26517. image: {
  26518. source: "./media/characters/ariam/squatting.svg",
  26519. extra: 2617 / 2112,
  26520. bottom: 61.2 / 2681,
  26521. }
  26522. },
  26523. },
  26524. [
  26525. {
  26526. name: "Normal",
  26527. height: math.unit(6 + 2 / 12, "feet"),
  26528. default: true
  26529. },
  26530. {
  26531. name: "Normal+",
  26532. height: math.unit(4, "meters")
  26533. },
  26534. {
  26535. name: "Macro",
  26536. height: math.unit(50, "meters")
  26537. },
  26538. {
  26539. name: "Macro+",
  26540. height: math.unit(100, "meters")
  26541. },
  26542. {
  26543. name: "Megamacro",
  26544. height: math.unit(20, "km")
  26545. },
  26546. {
  26547. name: "Caretaker",
  26548. height: math.unit(444, "megameters")
  26549. },
  26550. ]
  26551. ))
  26552. characterMakers.push(() => makeCharacter(
  26553. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  26554. {
  26555. front: {
  26556. height: math.unit(1.67, "meters"),
  26557. weight: math.unit(140, "lb"),
  26558. name: "Front",
  26559. image: {
  26560. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  26561. extra: 438 / 410,
  26562. bottom: 0.75 / 439
  26563. }
  26564. },
  26565. },
  26566. [
  26567. {
  26568. name: "Shrunken",
  26569. height: math.unit(7.6, "cm")
  26570. },
  26571. {
  26572. name: "Human Scale",
  26573. height: math.unit(1.67, "meters")
  26574. },
  26575. {
  26576. name: "Wolxi Scale",
  26577. height: math.unit(36.7, "meters"),
  26578. default: true
  26579. },
  26580. ]
  26581. ))
  26582. characterMakers.push(() => makeCharacter(
  26583. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  26584. {
  26585. front: {
  26586. height: math.unit(1.73, "meters"),
  26587. weight: math.unit(240, "lb"),
  26588. name: "Front",
  26589. image: {
  26590. source: "./media/characters/izue-two-mothers/front.svg",
  26591. extra: 469 / 437,
  26592. bottom: 1.24 / 470.6
  26593. }
  26594. },
  26595. },
  26596. [
  26597. {
  26598. name: "Shrunken",
  26599. height: math.unit(7.86, "cm")
  26600. },
  26601. {
  26602. name: "Human Scale",
  26603. height: math.unit(1.73, "meters")
  26604. },
  26605. {
  26606. name: "Wolxi Scale",
  26607. height: math.unit(38, "meters"),
  26608. default: true
  26609. },
  26610. ]
  26611. ))
  26612. characterMakers.push(() => makeCharacter(
  26613. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  26614. {
  26615. front: {
  26616. height: math.unit(1.55, "meters"),
  26617. weight: math.unit(120, "lb"),
  26618. name: "Front",
  26619. image: {
  26620. source: "./media/characters/teeku-love-shack/front.svg",
  26621. extra: 387 / 362,
  26622. bottom: 1.51 / 388
  26623. }
  26624. },
  26625. },
  26626. [
  26627. {
  26628. name: "Shrunken",
  26629. height: math.unit(7, "cm")
  26630. },
  26631. {
  26632. name: "Human Scale",
  26633. height: math.unit(1.55, "meters")
  26634. },
  26635. {
  26636. name: "Wolxi Scale",
  26637. height: math.unit(34.1, "meters"),
  26638. default: true
  26639. },
  26640. ]
  26641. ))
  26642. characterMakers.push(() => makeCharacter(
  26643. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  26644. {
  26645. front: {
  26646. height: math.unit(1.83, "meters"),
  26647. weight: math.unit(135, "lb"),
  26648. name: "Front",
  26649. image: {
  26650. source: "./media/characters/dejma-the-red/front.svg",
  26651. extra: 480 / 458,
  26652. bottom: 1.8 / 482
  26653. }
  26654. },
  26655. },
  26656. [
  26657. {
  26658. name: "Shrunken",
  26659. height: math.unit(8.3, "cm")
  26660. },
  26661. {
  26662. name: "Human Scale",
  26663. height: math.unit(1.83, "meters")
  26664. },
  26665. {
  26666. name: "Wolxi Scale",
  26667. height: math.unit(40, "meters"),
  26668. default: true
  26669. },
  26670. ]
  26671. ))
  26672. characterMakers.push(() => makeCharacter(
  26673. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  26674. {
  26675. front: {
  26676. height: math.unit(1.78, "meters"),
  26677. weight: math.unit(65, "kg"),
  26678. name: "Front",
  26679. image: {
  26680. source: "./media/characters/aki/front.svg",
  26681. extra: 452 / 415
  26682. }
  26683. },
  26684. frontNsfw: {
  26685. height: math.unit(1.78, "meters"),
  26686. weight: math.unit(65, "kg"),
  26687. name: "Front (NSFW)",
  26688. image: {
  26689. source: "./media/characters/aki/front-nsfw.svg",
  26690. extra: 452 / 415
  26691. }
  26692. },
  26693. back: {
  26694. height: math.unit(1.78, "meters"),
  26695. weight: math.unit(65, "kg"),
  26696. name: "Back",
  26697. image: {
  26698. source: "./media/characters/aki/back.svg",
  26699. extra: 452 / 415
  26700. }
  26701. },
  26702. rump: {
  26703. height: math.unit(2.05, "feet"),
  26704. name: "Rump",
  26705. image: {
  26706. source: "./media/characters/aki/rump.svg"
  26707. }
  26708. },
  26709. dick: {
  26710. height: math.unit(0.95, "feet"),
  26711. name: "Dick",
  26712. image: {
  26713. source: "./media/characters/aki/dick.svg"
  26714. }
  26715. },
  26716. },
  26717. [
  26718. {
  26719. name: "Micro",
  26720. height: math.unit(15, "cm")
  26721. },
  26722. {
  26723. name: "Normal",
  26724. height: math.unit(178, "cm"),
  26725. default: true
  26726. },
  26727. {
  26728. name: "Macro",
  26729. height: math.unit(214, "m")
  26730. },
  26731. {
  26732. name: "Macro+",
  26733. height: math.unit(534, "m")
  26734. },
  26735. ]
  26736. ))
  26737. characterMakers.push(() => makeCharacter(
  26738. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  26739. {
  26740. front: {
  26741. height: math.unit(5 + 5 / 12, "feet"),
  26742. weight: math.unit(120, "lb"),
  26743. name: "Front",
  26744. image: {
  26745. source: "./media/characters/ari/front.svg",
  26746. extra: 1550/1471,
  26747. bottom: 39/1589
  26748. }
  26749. },
  26750. },
  26751. [
  26752. {
  26753. name: "Normal",
  26754. height: math.unit(5 + 5 / 12, "feet")
  26755. },
  26756. {
  26757. name: "Macro",
  26758. height: math.unit(100, "feet"),
  26759. default: true
  26760. },
  26761. {
  26762. name: "Megamacro",
  26763. height: math.unit(100, "miles")
  26764. },
  26765. {
  26766. name: "Gigamacro",
  26767. height: math.unit(80000, "miles")
  26768. },
  26769. ]
  26770. ))
  26771. characterMakers.push(() => makeCharacter(
  26772. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  26773. {
  26774. side: {
  26775. height: math.unit(9, "feet"),
  26776. weight: math.unit(400, "kg"),
  26777. name: "Side",
  26778. image: {
  26779. source: "./media/characters/bolt/side.svg",
  26780. extra: 1126 / 896,
  26781. bottom: 60 / 1187.3,
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Micro",
  26788. height: math.unit(5, "inches")
  26789. },
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(9, "feet"),
  26793. default: true
  26794. },
  26795. {
  26796. name: "Macro",
  26797. height: math.unit(700, "feet")
  26798. },
  26799. {
  26800. name: "Max Size",
  26801. height: math.unit(1.52e22, "yottameters")
  26802. },
  26803. ]
  26804. ))
  26805. characterMakers.push(() => makeCharacter(
  26806. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  26807. {
  26808. front: {
  26809. height: math.unit(4.3, "meters"),
  26810. weight: math.unit(3, "tons"),
  26811. name: "Front",
  26812. image: {
  26813. source: "./media/characters/draekon-sylviar/front.svg",
  26814. extra: 2072/1512,
  26815. bottom: 74/2146
  26816. }
  26817. },
  26818. back: {
  26819. height: math.unit(4.3, "meters"),
  26820. weight: math.unit(3, "tons"),
  26821. name: "Back",
  26822. image: {
  26823. source: "./media/characters/draekon-sylviar/back.svg",
  26824. extra: 1639/1483,
  26825. bottom: 41/1680
  26826. }
  26827. },
  26828. feral: {
  26829. height: math.unit(1.15, "meters"),
  26830. weight: math.unit(3, "tons"),
  26831. name: "Feral",
  26832. image: {
  26833. source: "./media/characters/draekon-sylviar/feral.svg",
  26834. extra: 1033/395,
  26835. bottom: 130/1163
  26836. }
  26837. },
  26838. maw: {
  26839. height: math.unit(1.3, "meters"),
  26840. name: "Maw",
  26841. image: {
  26842. source: "./media/characters/draekon-sylviar/maw.svg"
  26843. }
  26844. },
  26845. mawSeparated: {
  26846. height: math.unit(1.53, "meters"),
  26847. name: "Separated Maw",
  26848. image: {
  26849. source: "./media/characters/draekon-sylviar/maw-separated.svg"
  26850. }
  26851. },
  26852. tail: {
  26853. height: math.unit(1.15, "meters"),
  26854. name: "Tail",
  26855. image: {
  26856. source: "./media/characters/draekon-sylviar/tail.svg"
  26857. }
  26858. },
  26859. tailDick: {
  26860. height: math.unit(1.15, "meters"),
  26861. name: "Tail (Dick)",
  26862. image: {
  26863. source: "./media/characters/draekon-sylviar/tail-dick.svg"
  26864. }
  26865. },
  26866. tailDickSeparated: {
  26867. height: math.unit(1.19, "meters"),
  26868. name: "Tail (Separated Dick)",
  26869. image: {
  26870. source: "./media/characters/draekon-sylviar/tail-dick-separated.svg"
  26871. }
  26872. },
  26873. slit: {
  26874. height: math.unit(1, "meters"),
  26875. name: "Slit",
  26876. image: {
  26877. source: "./media/characters/draekon-sylviar/slit.svg"
  26878. }
  26879. },
  26880. dick: {
  26881. height: math.unit(1.15, "meters"),
  26882. name: "Dick",
  26883. image: {
  26884. source: "./media/characters/draekon-sylviar/dick.svg"
  26885. }
  26886. },
  26887. dickSeparated: {
  26888. height: math.unit(1.1, "meters"),
  26889. name: "Separated Dick",
  26890. image: {
  26891. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  26892. }
  26893. },
  26894. sheath: {
  26895. height: math.unit(1.15, "meters"),
  26896. name: "Sheath",
  26897. image: {
  26898. source: "./media/characters/draekon-sylviar/sheath.svg"
  26899. }
  26900. },
  26901. },
  26902. [
  26903. {
  26904. name: "Small",
  26905. height: math.unit(4.53 / 2, "meters"),
  26906. default: true
  26907. },
  26908. {
  26909. name: "Normal",
  26910. height: math.unit(4.53, "meters"),
  26911. default: true
  26912. },
  26913. {
  26914. name: "Large",
  26915. height: math.unit(4.53 * 2, "meters"),
  26916. },
  26917. ]
  26918. ))
  26919. characterMakers.push(() => makeCharacter(
  26920. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  26921. {
  26922. front: {
  26923. height: math.unit(6 + 2 / 12, "feet"),
  26924. weight: math.unit(180, "lb"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/brawler/front.svg",
  26928. extra: 3301 / 3027,
  26929. bottom: 138 / 3439
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Normal",
  26936. height: math.unit(6 + 2 / 12, "feet"),
  26937. default: true
  26938. },
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(11, "feet"),
  26946. weight: math.unit(1000, "lb"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/alex/front.svg",
  26950. bottom: 44.5 / 620
  26951. }
  26952. },
  26953. },
  26954. [
  26955. {
  26956. name: "Micro",
  26957. height: math.unit(5, "inches")
  26958. },
  26959. {
  26960. name: "Normal",
  26961. height: math.unit(11, "feet"),
  26962. default: true
  26963. },
  26964. {
  26965. name: "Macro",
  26966. height: math.unit(9.5e9, "feet")
  26967. },
  26968. {
  26969. name: "Max Size",
  26970. height: math.unit(1.4e283, "yottameters")
  26971. },
  26972. ]
  26973. ))
  26974. characterMakers.push(() => makeCharacter(
  26975. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  26976. {
  26977. female: {
  26978. height: math.unit(29.9, "m"),
  26979. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  26980. name: "Female",
  26981. image: {
  26982. source: "./media/characters/zenari/female.svg",
  26983. extra: 3281.6 / 3217,
  26984. bottom: 72.2 / 3353
  26985. }
  26986. },
  26987. male: {
  26988. height: math.unit(27.7, "m"),
  26989. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  26990. name: "Male",
  26991. image: {
  26992. source: "./media/characters/zenari/male.svg",
  26993. extra: 3008 / 2991,
  26994. bottom: 54.6 / 3069
  26995. }
  26996. },
  26997. },
  26998. [
  26999. {
  27000. name: "Macro",
  27001. height: math.unit(29.7, "meters"),
  27002. default: true
  27003. },
  27004. ]
  27005. ))
  27006. characterMakers.push(() => makeCharacter(
  27007. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  27008. {
  27009. female: {
  27010. height: math.unit(23.8, "m"),
  27011. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27012. name: "Female",
  27013. image: {
  27014. source: "./media/characters/mactarian/female.svg",
  27015. extra: 2662 / 2569,
  27016. bottom: 73 / 2736
  27017. }
  27018. },
  27019. male: {
  27020. height: math.unit(23.8, "m"),
  27021. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  27022. name: "Male",
  27023. image: {
  27024. source: "./media/characters/mactarian/male.svg",
  27025. extra: 2673 / 2600,
  27026. bottom: 76 / 2750
  27027. }
  27028. },
  27029. },
  27030. [
  27031. {
  27032. name: "Macro",
  27033. height: math.unit(23.8, "meters"),
  27034. default: true
  27035. },
  27036. ]
  27037. ))
  27038. characterMakers.push(() => makeCharacter(
  27039. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  27040. {
  27041. female: {
  27042. height: math.unit(19.3, "m"),
  27043. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  27044. name: "Female",
  27045. image: {
  27046. source: "./media/characters/umok/female.svg",
  27047. extra: 2186 / 2078,
  27048. bottom: 87 / 2277
  27049. }
  27050. },
  27051. male: {
  27052. height: math.unit(19.5, "m"),
  27053. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  27054. name: "Male",
  27055. image: {
  27056. source: "./media/characters/umok/male.svg",
  27057. extra: 2233 / 2140,
  27058. bottom: 24.4 / 2258
  27059. }
  27060. },
  27061. },
  27062. [
  27063. {
  27064. name: "Macro",
  27065. height: math.unit(19.3, "meters"),
  27066. default: true
  27067. },
  27068. ]
  27069. ))
  27070. characterMakers.push(() => makeCharacter(
  27071. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  27072. {
  27073. female: {
  27074. height: math.unit(26.15, "m"),
  27075. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  27076. name: "Female",
  27077. image: {
  27078. source: "./media/characters/joraxian/female.svg",
  27079. extra: 2912 / 2824,
  27080. bottom: 36 / 2956
  27081. }
  27082. },
  27083. male: {
  27084. height: math.unit(25.4, "m"),
  27085. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  27086. name: "Male",
  27087. image: {
  27088. source: "./media/characters/joraxian/male.svg",
  27089. extra: 2877 / 2721,
  27090. bottom: 82 / 2967
  27091. }
  27092. },
  27093. },
  27094. [
  27095. {
  27096. name: "Macro",
  27097. height: math.unit(26.15, "meters"),
  27098. default: true
  27099. },
  27100. ]
  27101. ))
  27102. characterMakers.push(() => makeCharacter(
  27103. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  27104. {
  27105. female: {
  27106. height: math.unit(21.6, "m"),
  27107. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  27108. name: "Female",
  27109. image: {
  27110. source: "./media/characters/sthara/female.svg",
  27111. extra: 2516 / 2347,
  27112. bottom: 21.5 / 2537
  27113. }
  27114. },
  27115. male: {
  27116. height: math.unit(24, "m"),
  27117. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  27118. name: "Male",
  27119. image: {
  27120. source: "./media/characters/sthara/male.svg",
  27121. extra: 2732 / 2607,
  27122. bottom: 23 / 2732
  27123. }
  27124. },
  27125. },
  27126. [
  27127. {
  27128. name: "Macro",
  27129. height: math.unit(21.6, "meters"),
  27130. default: true
  27131. },
  27132. ]
  27133. ))
  27134. characterMakers.push(() => makeCharacter(
  27135. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  27136. {
  27137. front: {
  27138. height: math.unit(6 + 4 / 12, "feet"),
  27139. weight: math.unit(175, "lb"),
  27140. name: "Front",
  27141. image: {
  27142. source: "./media/characters/luka-bryzant/front.svg",
  27143. extra: 311 / 289,
  27144. bottom: 4 / 315
  27145. }
  27146. },
  27147. back: {
  27148. height: math.unit(6 + 4 / 12, "feet"),
  27149. weight: math.unit(175, "lb"),
  27150. name: "Back",
  27151. image: {
  27152. source: "./media/characters/luka-bryzant/back.svg",
  27153. extra: 311 / 289,
  27154. bottom: 3.8 / 313.7
  27155. }
  27156. },
  27157. },
  27158. [
  27159. {
  27160. name: "Micro",
  27161. height: math.unit(10, "inches")
  27162. },
  27163. {
  27164. name: "Normal",
  27165. height: math.unit(6 + 4 / 12, "feet"),
  27166. default: true
  27167. },
  27168. {
  27169. name: "Large",
  27170. height: math.unit(12, "feet")
  27171. },
  27172. ]
  27173. ))
  27174. characterMakers.push(() => makeCharacter(
  27175. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  27176. {
  27177. front: {
  27178. height: math.unit(5 + 7 / 12, "feet"),
  27179. weight: math.unit(185, "lb"),
  27180. name: "Front",
  27181. image: {
  27182. source: "./media/characters/aman-aquila/front.svg",
  27183. extra: 1013 / 976,
  27184. bottom: 45.6 / 1057
  27185. }
  27186. },
  27187. side: {
  27188. height: math.unit(5 + 7 / 12, "feet"),
  27189. weight: math.unit(185, "lb"),
  27190. name: "Side",
  27191. image: {
  27192. source: "./media/characters/aman-aquila/side.svg",
  27193. extra: 1054 / 1011,
  27194. bottom: 15 / 1070
  27195. }
  27196. },
  27197. back: {
  27198. height: math.unit(5 + 7 / 12, "feet"),
  27199. weight: math.unit(185, "lb"),
  27200. name: "Back",
  27201. image: {
  27202. source: "./media/characters/aman-aquila/back.svg",
  27203. extra: 1026 / 970,
  27204. bottom: 12 / 1039
  27205. }
  27206. },
  27207. head: {
  27208. height: math.unit(1.211, "feet"),
  27209. name: "Head",
  27210. image: {
  27211. source: "./media/characters/aman-aquila/head.svg",
  27212. }
  27213. },
  27214. },
  27215. [
  27216. {
  27217. name: "Minimicro",
  27218. height: math.unit(0.057, "inches")
  27219. },
  27220. {
  27221. name: "Micro",
  27222. height: math.unit(7, "inches")
  27223. },
  27224. {
  27225. name: "Mini",
  27226. height: math.unit(3 + 7 / 12, "feet")
  27227. },
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(5 + 7 / 12, "feet"),
  27231. default: true
  27232. },
  27233. {
  27234. name: "Macro",
  27235. height: math.unit(157 + 7 / 12, "feet")
  27236. },
  27237. {
  27238. name: "Megamacro",
  27239. height: math.unit(1557 + 7 / 12, "feet")
  27240. },
  27241. {
  27242. name: "Gigamacro",
  27243. height: math.unit(15557 + 7 / 12, "feet")
  27244. },
  27245. ]
  27246. ))
  27247. characterMakers.push(() => makeCharacter(
  27248. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  27249. {
  27250. front: {
  27251. height: math.unit(3 + 2 / 12, "inches"),
  27252. weight: math.unit(0.3, "ounces"),
  27253. name: "Front",
  27254. image: {
  27255. source: "./media/characters/hiphae/front.svg",
  27256. extra: 1931 / 1683,
  27257. bottom: 24 / 1955
  27258. }
  27259. },
  27260. },
  27261. [
  27262. {
  27263. name: "Normal",
  27264. height: math.unit(3 + 1 / 2, "inches"),
  27265. default: true
  27266. },
  27267. ]
  27268. ))
  27269. characterMakers.push(() => makeCharacter(
  27270. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  27271. {
  27272. front: {
  27273. height: math.unit(5 + 10 / 12, "feet"),
  27274. weight: math.unit(165, "lb"),
  27275. name: "Front",
  27276. image: {
  27277. source: "./media/characters/nicky/front.svg",
  27278. extra: 3144 / 2886,
  27279. bottom: 45.6 / 3192
  27280. }
  27281. },
  27282. back: {
  27283. height: math.unit(5 + 10 / 12, "feet"),
  27284. weight: math.unit(165, "lb"),
  27285. name: "Back",
  27286. image: {
  27287. source: "./media/characters/nicky/back.svg",
  27288. extra: 3055 / 2804,
  27289. bottom: 28.4 / 3087
  27290. }
  27291. },
  27292. frontclothed: {
  27293. height: math.unit(5 + 10 / 12, "feet"),
  27294. weight: math.unit(165, "lb"),
  27295. name: "Front-clothed",
  27296. image: {
  27297. source: "./media/characters/nicky/front-clothed.svg",
  27298. extra: 3184.9 / 2926.9,
  27299. bottom: 86.5 / 3239.9
  27300. }
  27301. },
  27302. foot: {
  27303. height: math.unit(1.16, "feet"),
  27304. name: "Foot",
  27305. image: {
  27306. source: "./media/characters/nicky/foot.svg"
  27307. }
  27308. },
  27309. feet: {
  27310. height: math.unit(1.34, "feet"),
  27311. name: "Feet",
  27312. image: {
  27313. source: "./media/characters/nicky/feet.svg"
  27314. }
  27315. },
  27316. maw: {
  27317. height: math.unit(0.9, "feet"),
  27318. name: "Maw",
  27319. image: {
  27320. source: "./media/characters/nicky/maw.svg"
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(5 + 10 / 12, "feet"),
  27328. default: true
  27329. },
  27330. {
  27331. name: "Macro",
  27332. height: math.unit(60, "feet")
  27333. },
  27334. {
  27335. name: "Megamacro",
  27336. height: math.unit(1, "mile")
  27337. },
  27338. ]
  27339. ))
  27340. characterMakers.push(() => makeCharacter(
  27341. { name: "Blair", species: ["seal"], tags: ["taur"] },
  27342. {
  27343. side: {
  27344. height: math.unit(10, "feet"),
  27345. weight: math.unit(600, "lb"),
  27346. name: "Side",
  27347. image: {
  27348. source: "./media/characters/blair/side.svg",
  27349. bottom: 16.6 / 475,
  27350. extra: 458 / 431
  27351. }
  27352. },
  27353. },
  27354. [
  27355. {
  27356. name: "Micro",
  27357. height: math.unit(8, "inches")
  27358. },
  27359. {
  27360. name: "Normal",
  27361. height: math.unit(10, "feet"),
  27362. default: true
  27363. },
  27364. {
  27365. name: "Macro",
  27366. height: math.unit(180, "feet")
  27367. },
  27368. ]
  27369. ))
  27370. characterMakers.push(() => makeCharacter(
  27371. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  27372. {
  27373. front: {
  27374. height: math.unit(5 + 4 / 12, "feet"),
  27375. weight: math.unit(125, "lb"),
  27376. name: "Front",
  27377. image: {
  27378. source: "./media/characters/fisher/front.svg",
  27379. extra: 444 / 390,
  27380. bottom: 2 / 444.8
  27381. }
  27382. },
  27383. },
  27384. [
  27385. {
  27386. name: "Micro",
  27387. height: math.unit(4, "inches")
  27388. },
  27389. {
  27390. name: "Normal",
  27391. height: math.unit(5 + 4 / 12, "feet"),
  27392. default: true
  27393. },
  27394. {
  27395. name: "Macro",
  27396. height: math.unit(100, "feet")
  27397. },
  27398. ]
  27399. ))
  27400. characterMakers.push(() => makeCharacter(
  27401. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  27402. {
  27403. front: {
  27404. height: math.unit(6.71, "feet"),
  27405. weight: math.unit(200, "lb"),
  27406. preyCapacity: math.unit(1000000, "people"),
  27407. name: "Front",
  27408. image: {
  27409. source: "./media/characters/gliss/front.svg",
  27410. extra: 2347 / 2231,
  27411. bottom: 113 / 2462
  27412. }
  27413. },
  27414. hammerspaceSize: {
  27415. height: math.unit(6.71 * 717, "feet"),
  27416. weight: math.unit(200, "lb"),
  27417. preyCapacity: math.unit(1000000, "people"),
  27418. name: "Hammerspace Size",
  27419. image: {
  27420. source: "./media/characters/gliss/front.svg",
  27421. extra: 2347 / 2231,
  27422. bottom: 113 / 2462
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(6.71, "feet"),
  27430. default: true
  27431. },
  27432. ]
  27433. ))
  27434. characterMakers.push(() => makeCharacter(
  27435. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  27436. {
  27437. side: {
  27438. height: math.unit(1.44, "m"),
  27439. weight: math.unit(80, "kg"),
  27440. name: "Side",
  27441. image: {
  27442. source: "./media/characters/dune-anderson/side.svg",
  27443. bottom: 49 / 1426
  27444. }
  27445. },
  27446. },
  27447. [
  27448. {
  27449. name: "Wolf-sized",
  27450. height: math.unit(1.44, "meters")
  27451. },
  27452. {
  27453. name: "Normal",
  27454. height: math.unit(5.05, "meters"),
  27455. default: true
  27456. },
  27457. {
  27458. name: "Big",
  27459. height: math.unit(14.4, "meters")
  27460. },
  27461. {
  27462. name: "Huge",
  27463. height: math.unit(144, "meters")
  27464. },
  27465. ]
  27466. ))
  27467. characterMakers.push(() => makeCharacter(
  27468. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  27469. {
  27470. front: {
  27471. height: math.unit(7, "feet"),
  27472. weight: math.unit(425, "lb"),
  27473. name: "Front",
  27474. image: {
  27475. source: "./media/characters/hind/front.svg",
  27476. extra: 2091 / 1860,
  27477. bottom: 129 / 2220
  27478. }
  27479. },
  27480. back: {
  27481. height: math.unit(7, "feet"),
  27482. weight: math.unit(425, "lb"),
  27483. name: "Back",
  27484. image: {
  27485. source: "./media/characters/hind/back.svg",
  27486. extra: 2091 / 1860,
  27487. bottom: 24.6 / 2309
  27488. }
  27489. },
  27490. tail: {
  27491. height: math.unit(2.8, "feet"),
  27492. name: "Tail",
  27493. image: {
  27494. source: "./media/characters/hind/tail.svg"
  27495. }
  27496. },
  27497. head: {
  27498. height: math.unit(2.55, "feet"),
  27499. name: "Head",
  27500. image: {
  27501. source: "./media/characters/hind/head.svg"
  27502. }
  27503. },
  27504. },
  27505. [
  27506. {
  27507. name: "XS",
  27508. height: math.unit(0.7, "feet")
  27509. },
  27510. {
  27511. name: "Normal",
  27512. height: math.unit(7, "feet"),
  27513. default: true
  27514. },
  27515. {
  27516. name: "XL",
  27517. height: math.unit(70, "feet")
  27518. },
  27519. ]
  27520. ))
  27521. characterMakers.push(() => makeCharacter(
  27522. { name: "Tharquench Sizestealer", species: ["skaven"], tags: ["anthro"] },
  27523. {
  27524. front: {
  27525. height: math.unit(2.1, "meters"),
  27526. weight: math.unit(150, "lb"),
  27527. name: "Front",
  27528. image: {
  27529. source: "./media/characters/tharquench-sizestealer/front.svg",
  27530. extra: 1605/1470,
  27531. bottom: 36/1641
  27532. }
  27533. },
  27534. frontAlt: {
  27535. height: math.unit(2.1, "meters"),
  27536. weight: math.unit(150, "lb"),
  27537. name: "Front (Alt)",
  27538. image: {
  27539. source: "./media/characters/tharquench-sizestealer/front-alt.svg",
  27540. extra: 2318 / 2063,
  27541. bottom: 93.4 / 2410
  27542. }
  27543. },
  27544. },
  27545. [
  27546. {
  27547. name: "Nano",
  27548. height: math.unit(1, "mm")
  27549. },
  27550. {
  27551. name: "Micro",
  27552. height: math.unit(1, "cm")
  27553. },
  27554. {
  27555. name: "Normal",
  27556. height: math.unit(2.1, "meters"),
  27557. default: true
  27558. },
  27559. ]
  27560. ))
  27561. characterMakers.push(() => makeCharacter(
  27562. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  27563. {
  27564. front: {
  27565. height: math.unit(7 + 5 / 12, "feet"),
  27566. weight: math.unit(357, "lb"),
  27567. name: "Front",
  27568. image: {
  27569. source: "./media/characters/solex-draconov/front.svg",
  27570. extra: 1993 / 1865,
  27571. bottom: 117 / 2111
  27572. }
  27573. },
  27574. },
  27575. [
  27576. {
  27577. name: "Natural Height",
  27578. height: math.unit(7 + 5 / 12, "feet"),
  27579. default: true
  27580. },
  27581. {
  27582. name: "Macro",
  27583. height: math.unit(350, "feet")
  27584. },
  27585. {
  27586. name: "Macro+",
  27587. height: math.unit(1000, "feet")
  27588. },
  27589. {
  27590. name: "Megamacro",
  27591. height: math.unit(20, "km")
  27592. },
  27593. {
  27594. name: "Megamacro+",
  27595. height: math.unit(1000, "km")
  27596. },
  27597. {
  27598. name: "Gigamacro",
  27599. height: math.unit(2.5, "Gm")
  27600. },
  27601. {
  27602. name: "Teramacro",
  27603. height: math.unit(15, "Tm")
  27604. },
  27605. {
  27606. name: "Galactic",
  27607. height: math.unit(30, "Zm")
  27608. },
  27609. {
  27610. name: "Universal",
  27611. height: math.unit(21000, "Ym")
  27612. },
  27613. {
  27614. name: "Omniversal",
  27615. height: math.unit(9.861e50, "Ym")
  27616. },
  27617. {
  27618. name: "Existential",
  27619. height: math.unit(1e300, "meters")
  27620. },
  27621. ]
  27622. ))
  27623. characterMakers.push(() => makeCharacter(
  27624. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  27625. {
  27626. side: {
  27627. height: math.unit(25, "feet"),
  27628. weight: math.unit(90000, "lb"),
  27629. name: "Side",
  27630. image: {
  27631. source: "./media/characters/mandarax/side.svg",
  27632. extra: 614 / 332,
  27633. bottom: 55 / 630
  27634. }
  27635. },
  27636. lounging: {
  27637. height: math.unit(15.4, "feet"),
  27638. weight: math.unit(90000, "lb"),
  27639. name: "Lounging",
  27640. image: {
  27641. source: "./media/characters/mandarax/lounging.svg",
  27642. extra: 817/609,
  27643. bottom: 685/1502
  27644. }
  27645. },
  27646. head: {
  27647. height: math.unit(11.4, "feet"),
  27648. name: "Head",
  27649. image: {
  27650. source: "./media/characters/mandarax/head.svg"
  27651. }
  27652. },
  27653. belly: {
  27654. height: math.unit(33, "feet"),
  27655. name: "Belly",
  27656. preyCapacity: math.unit(500, "people"),
  27657. image: {
  27658. source: "./media/characters/mandarax/belly.svg"
  27659. }
  27660. },
  27661. dick: {
  27662. height: math.unit(8.46, "feet"),
  27663. name: "Dick",
  27664. image: {
  27665. source: "./media/characters/mandarax/dick.svg"
  27666. }
  27667. },
  27668. top: {
  27669. height: math.unit(28, "meters"),
  27670. name: "Top",
  27671. image: {
  27672. source: "./media/characters/mandarax/top.svg"
  27673. }
  27674. },
  27675. },
  27676. [
  27677. {
  27678. name: "Normal",
  27679. height: math.unit(25, "feet"),
  27680. default: true
  27681. },
  27682. ]
  27683. ))
  27684. characterMakers.push(() => makeCharacter(
  27685. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  27686. {
  27687. front: {
  27688. height: math.unit(5, "feet"),
  27689. weight: math.unit(90, "lb"),
  27690. name: "Front",
  27691. image: {
  27692. source: "./media/characters/pixil/front.svg",
  27693. extra: 2000 / 1618,
  27694. bottom: 12.3 / 2011
  27695. }
  27696. },
  27697. },
  27698. [
  27699. {
  27700. name: "Normal",
  27701. height: math.unit(5, "feet"),
  27702. default: true
  27703. },
  27704. {
  27705. name: "Megamacro",
  27706. height: math.unit(10, "miles"),
  27707. },
  27708. ]
  27709. ))
  27710. characterMakers.push(() => makeCharacter(
  27711. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  27712. {
  27713. front: {
  27714. height: math.unit(7 + 2 / 12, "feet"),
  27715. weight: math.unit(200, "lb"),
  27716. name: "Front",
  27717. image: {
  27718. source: "./media/characters/angel/front.svg",
  27719. extra: 1946/1840,
  27720. bottom: 30/1976
  27721. }
  27722. },
  27723. },
  27724. [
  27725. {
  27726. name: "Normal",
  27727. height: math.unit(7 + 2 / 12, "feet"),
  27728. default: true
  27729. },
  27730. {
  27731. name: "Macro",
  27732. height: math.unit(1000, "feet")
  27733. },
  27734. {
  27735. name: "Megamacro",
  27736. height: math.unit(2, "miles")
  27737. },
  27738. {
  27739. name: "Gigamacro",
  27740. height: math.unit(20, "earths")
  27741. },
  27742. ]
  27743. ))
  27744. characterMakers.push(() => makeCharacter(
  27745. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  27746. {
  27747. front: {
  27748. height: math.unit(5, "feet"),
  27749. weight: math.unit(180, "lb"),
  27750. name: "Front",
  27751. image: {
  27752. source: "./media/characters/mekana/front.svg",
  27753. extra: 1671 / 1605,
  27754. bottom: 3.5 / 1691
  27755. }
  27756. },
  27757. side: {
  27758. height: math.unit(5, "feet"),
  27759. weight: math.unit(180, "lb"),
  27760. name: "Side",
  27761. image: {
  27762. source: "./media/characters/mekana/side.svg",
  27763. extra: 1671 / 1605,
  27764. bottom: 3.5 / 1691
  27765. }
  27766. },
  27767. back: {
  27768. height: math.unit(5, "feet"),
  27769. weight: math.unit(180, "lb"),
  27770. name: "Back",
  27771. image: {
  27772. source: "./media/characters/mekana/back.svg",
  27773. extra: 1671 / 1605,
  27774. bottom: 3.5 / 1691
  27775. }
  27776. },
  27777. },
  27778. [
  27779. {
  27780. name: "Normal",
  27781. height: math.unit(5, "feet"),
  27782. default: true
  27783. },
  27784. ]
  27785. ))
  27786. characterMakers.push(() => makeCharacter(
  27787. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  27788. {
  27789. front: {
  27790. height: math.unit(4 + 6 / 12, "feet"),
  27791. weight: math.unit(80, "lb"),
  27792. name: "Front",
  27793. image: {
  27794. source: "./media/characters/pixie/front.svg",
  27795. extra: 1924 / 1825,
  27796. bottom: 22.4 / 1946
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(4 + 6 / 12, "feet"),
  27804. default: true
  27805. },
  27806. {
  27807. name: "Macro",
  27808. height: math.unit(40, "feet")
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  27814. {
  27815. front: {
  27816. height: math.unit(2.1, "meters"),
  27817. weight: math.unit(200, "lb"),
  27818. name: "Front",
  27819. image: {
  27820. source: "./media/characters/the-lascivious/front.svg",
  27821. extra: 1 / 0.893,
  27822. bottom: 3.5 / 573.7
  27823. }
  27824. },
  27825. },
  27826. [
  27827. {
  27828. name: "Human Scale",
  27829. height: math.unit(2.1, "meters")
  27830. },
  27831. {
  27832. name: "Wolxi Scale",
  27833. height: math.unit(46.2, "m"),
  27834. default: true
  27835. },
  27836. {
  27837. name: "Boinker of Buildings",
  27838. height: math.unit(10, "km")
  27839. },
  27840. {
  27841. name: "Shagger of Skyscrapers",
  27842. height: math.unit(40, "km")
  27843. },
  27844. {
  27845. name: "Banger of Boroughs",
  27846. height: math.unit(4000, "km")
  27847. },
  27848. {
  27849. name: "Screwer of States",
  27850. height: math.unit(100000, "km")
  27851. },
  27852. {
  27853. name: "Pounder of Planets",
  27854. height: math.unit(2000000, "km")
  27855. },
  27856. ]
  27857. ))
  27858. characterMakers.push(() => makeCharacter(
  27859. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  27860. {
  27861. front: {
  27862. height: math.unit(6, "feet"),
  27863. weight: math.unit(150, "lb"),
  27864. name: "Front",
  27865. image: {
  27866. source: "./media/characters/aj/front.svg",
  27867. extra: 2039 / 1562,
  27868. bottom: 40 / 2079
  27869. }
  27870. },
  27871. },
  27872. [
  27873. {
  27874. name: "Normal",
  27875. height: math.unit(11 + 6 / 12, "feet"),
  27876. default: true
  27877. },
  27878. {
  27879. name: "Megamacro",
  27880. height: math.unit(60, "megameters")
  27881. },
  27882. ]
  27883. ))
  27884. characterMakers.push(() => makeCharacter(
  27885. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  27886. {
  27887. side: {
  27888. height: math.unit(31 + 8 / 12, "feet"),
  27889. weight: math.unit(75000, "kg"),
  27890. name: "Side",
  27891. image: {
  27892. source: "./media/characters/koros/side.svg",
  27893. extra: 1442 / 1297,
  27894. bottom: 122.7 / 1562
  27895. }
  27896. },
  27897. dicksKingsCrown: {
  27898. height: math.unit(6, "feet"),
  27899. name: "Dicks (King's Crown)",
  27900. image: {
  27901. source: "./media/characters/koros/dicks-kings-crown.svg"
  27902. }
  27903. },
  27904. dicksTailSet: {
  27905. height: math.unit(3, "feet"),
  27906. name: "Dicks (Tail Set)",
  27907. image: {
  27908. source: "./media/characters/koros/dicks-tail-set.svg"
  27909. }
  27910. },
  27911. dickCumming: {
  27912. height: math.unit(7.98, "feet"),
  27913. name: "Dick (Cumming)",
  27914. image: {
  27915. source: "./media/characters/koros/dick-cumming.svg"
  27916. }
  27917. },
  27918. dicksBack: {
  27919. height: math.unit(5.9, "feet"),
  27920. name: "Dicks (Back)",
  27921. image: {
  27922. source: "./media/characters/koros/dicks-back.svg"
  27923. }
  27924. },
  27925. dicksFront: {
  27926. height: math.unit(3.72, "feet"),
  27927. name: "Dicks (Front)",
  27928. image: {
  27929. source: "./media/characters/koros/dicks-front.svg"
  27930. }
  27931. },
  27932. dicksPeeking: {
  27933. height: math.unit(3.0, "feet"),
  27934. name: "Dicks (Peeking)",
  27935. image: {
  27936. source: "./media/characters/koros/dicks-peeking.svg"
  27937. }
  27938. },
  27939. eye: {
  27940. height: math.unit(1.7, "feet"),
  27941. name: "Eye",
  27942. image: {
  27943. source: "./media/characters/koros/eye.svg"
  27944. }
  27945. },
  27946. headFront: {
  27947. height: math.unit(11.69, "feet"),
  27948. name: "Head (Front)",
  27949. image: {
  27950. source: "./media/characters/koros/head-front.svg"
  27951. }
  27952. },
  27953. headSide: {
  27954. height: math.unit(14, "feet"),
  27955. name: "Head (Side)",
  27956. image: {
  27957. source: "./media/characters/koros/head-side.svg"
  27958. }
  27959. },
  27960. leg: {
  27961. height: math.unit(17, "feet"),
  27962. name: "Leg",
  27963. image: {
  27964. source: "./media/characters/koros/leg.svg"
  27965. }
  27966. },
  27967. mawSide: {
  27968. height: math.unit(12.8, "feet"),
  27969. name: "Maw (Side)",
  27970. image: {
  27971. source: "./media/characters/koros/maw-side.svg"
  27972. }
  27973. },
  27974. mawSpitting: {
  27975. height: math.unit(17, "feet"),
  27976. name: "Maw (Spitting)",
  27977. image: {
  27978. source: "./media/characters/koros/maw-spitting.svg"
  27979. }
  27980. },
  27981. slit: {
  27982. height: math.unit(2.8, "feet"),
  27983. name: "Slit",
  27984. image: {
  27985. source: "./media/characters/koros/slit.svg"
  27986. }
  27987. },
  27988. stomach: {
  27989. height: math.unit(6.8, "feet"),
  27990. preyCapacity: math.unit(20, "people"),
  27991. name: "Stomach",
  27992. image: {
  27993. source: "./media/characters/koros/stomach.svg"
  27994. }
  27995. },
  27996. wingspanBottom: {
  27997. height: math.unit(114, "feet"),
  27998. name: "Wingspan (Bottom)",
  27999. image: {
  28000. source: "./media/characters/koros/wingspan-bottom.svg"
  28001. }
  28002. },
  28003. wingspanTop: {
  28004. height: math.unit(104, "feet"),
  28005. name: "Wingspan (Top)",
  28006. image: {
  28007. source: "./media/characters/koros/wingspan-top.svg"
  28008. }
  28009. },
  28010. },
  28011. [
  28012. {
  28013. name: "Normal",
  28014. height: math.unit(31 + 8 / 12, "feet"),
  28015. default: true
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  28021. {
  28022. front: {
  28023. height: math.unit(18 + 5 / 12, "feet"),
  28024. weight: math.unit(3750, "kg"),
  28025. name: "Front",
  28026. image: {
  28027. source: "./media/characters/vexx/front.svg",
  28028. extra: 426 / 396,
  28029. bottom: 31.5 / 458
  28030. }
  28031. },
  28032. maw: {
  28033. height: math.unit(6, "feet"),
  28034. name: "Maw",
  28035. image: {
  28036. source: "./media/characters/vexx/maw.svg"
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(18 + 5 / 12, "feet"),
  28044. default: true
  28045. },
  28046. ]
  28047. ))
  28048. characterMakers.push(() => makeCharacter(
  28049. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  28050. {
  28051. front: {
  28052. height: math.unit(17 + 6 / 12, "feet"),
  28053. weight: math.unit(150, "lb"),
  28054. name: "Front",
  28055. image: {
  28056. source: "./media/characters/baadra/front.svg",
  28057. extra: 1694/1553,
  28058. bottom: 179/1873
  28059. }
  28060. },
  28061. frontAlt: {
  28062. height: math.unit(17 + 6 / 12, "feet"),
  28063. weight: math.unit(150, "lb"),
  28064. name: "Front (Alt)",
  28065. image: {
  28066. source: "./media/characters/baadra/front-alt.svg",
  28067. extra: 3137 / 2890,
  28068. bottom: 168.4 / 3305
  28069. }
  28070. },
  28071. back: {
  28072. height: math.unit(17 + 6 / 12, "feet"),
  28073. weight: math.unit(150, "lb"),
  28074. name: "Back",
  28075. image: {
  28076. source: "./media/characters/baadra/back.svg",
  28077. extra: 3142 / 2890,
  28078. bottom: 220 / 3371
  28079. }
  28080. },
  28081. head: {
  28082. height: math.unit(5.45, "feet"),
  28083. name: "Head",
  28084. image: {
  28085. source: "./media/characters/baadra/head.svg"
  28086. }
  28087. },
  28088. headAngry: {
  28089. height: math.unit(4.95, "feet"),
  28090. name: "Head (Angry)",
  28091. image: {
  28092. source: "./media/characters/baadra/head-angry.svg"
  28093. }
  28094. },
  28095. headOpen: {
  28096. height: math.unit(6, "feet"),
  28097. name: "Head (Open)",
  28098. image: {
  28099. source: "./media/characters/baadra/head-open.svg"
  28100. }
  28101. },
  28102. },
  28103. [
  28104. {
  28105. name: "Normal",
  28106. height: math.unit(17 + 6 / 12, "feet"),
  28107. default: true
  28108. },
  28109. ]
  28110. ))
  28111. characterMakers.push(() => makeCharacter(
  28112. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  28113. {
  28114. front: {
  28115. height: math.unit(7 + 3 / 12, "feet"),
  28116. weight: math.unit(180, "lb"),
  28117. name: "Front",
  28118. image: {
  28119. source: "./media/characters/juri/front.svg",
  28120. extra: 1401 / 1237,
  28121. bottom: 18.5 / 1418
  28122. }
  28123. },
  28124. side: {
  28125. height: math.unit(7 + 3 / 12, "feet"),
  28126. weight: math.unit(180, "lb"),
  28127. name: "Side",
  28128. image: {
  28129. source: "./media/characters/juri/side.svg",
  28130. extra: 1424 / 1242,
  28131. bottom: 18.5 / 1447
  28132. }
  28133. },
  28134. sitting: {
  28135. height: math.unit(6, "feet"),
  28136. weight: math.unit(180, "lb"),
  28137. name: "Sitting",
  28138. image: {
  28139. source: "./media/characters/juri/sitting.svg",
  28140. extra: 1270 / 1143,
  28141. bottom: 100 / 1343
  28142. }
  28143. },
  28144. back: {
  28145. height: math.unit(7 + 3 / 12, "feet"),
  28146. weight: math.unit(180, "lb"),
  28147. name: "Back",
  28148. image: {
  28149. source: "./media/characters/juri/back.svg",
  28150. extra: 1377 / 1240,
  28151. bottom: 23.7 / 1405
  28152. }
  28153. },
  28154. maw: {
  28155. height: math.unit(2.8, "feet"),
  28156. name: "Maw",
  28157. image: {
  28158. source: "./media/characters/juri/maw.svg"
  28159. }
  28160. },
  28161. stomach: {
  28162. height: math.unit(0.89, "feet"),
  28163. preyCapacity: math.unit(4, "liters"),
  28164. name: "Stomach",
  28165. image: {
  28166. source: "./media/characters/juri/stomach.svg"
  28167. }
  28168. },
  28169. },
  28170. [
  28171. {
  28172. name: "Normal",
  28173. height: math.unit(7 + 3 / 12, "feet"),
  28174. default: true
  28175. },
  28176. ]
  28177. ))
  28178. characterMakers.push(() => makeCharacter(
  28179. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  28180. {
  28181. fox: {
  28182. height: math.unit(5 + 6 / 12, "feet"),
  28183. weight: math.unit(140, "lb"),
  28184. name: "Fox",
  28185. image: {
  28186. source: "./media/characters/maxene-sita/fox.svg",
  28187. extra: 146 / 138,
  28188. bottom: 2.1 / 148.19
  28189. }
  28190. },
  28191. foxLaying: {
  28192. height: math.unit(1.70, "feet"),
  28193. weight: math.unit(140, "lb"),
  28194. name: "Fox (Laying)",
  28195. image: {
  28196. source: "./media/characters/maxene-sita/fox-laying.svg",
  28197. extra: 910 / 572,
  28198. bottom: 71 / 981
  28199. }
  28200. },
  28201. kitsune: {
  28202. height: math.unit(10, "feet"),
  28203. weight: math.unit(800, "lb"),
  28204. name: "Kitsune",
  28205. image: {
  28206. source: "./media/characters/maxene-sita/kitsune.svg",
  28207. extra: 185 / 176,
  28208. bottom: 4.7 / 189.9
  28209. }
  28210. },
  28211. hellhound: {
  28212. height: math.unit(10, "feet"),
  28213. weight: math.unit(700, "lb"),
  28214. name: "Hellhound",
  28215. image: {
  28216. source: "./media/characters/maxene-sita/hellhound.svg",
  28217. extra: 1600 / 1545,
  28218. bottom: 81 / 1681
  28219. }
  28220. },
  28221. },
  28222. [
  28223. {
  28224. name: "Normal",
  28225. height: math.unit(5 + 6 / 12, "feet"),
  28226. default: true
  28227. },
  28228. ]
  28229. ))
  28230. characterMakers.push(() => makeCharacter(
  28231. { name: "Maia", species: ["mew"], tags: ["feral"] },
  28232. {
  28233. front: {
  28234. height: math.unit(3 + 4 / 12, "feet"),
  28235. weight: math.unit(70, "lb"),
  28236. name: "Front",
  28237. image: {
  28238. source: "./media/characters/maia/front.svg",
  28239. extra: 227 / 219.5,
  28240. bottom: 40 / 267
  28241. }
  28242. },
  28243. back: {
  28244. height: math.unit(3 + 4 / 12, "feet"),
  28245. weight: math.unit(70, "lb"),
  28246. name: "Back",
  28247. image: {
  28248. source: "./media/characters/maia/back.svg",
  28249. extra: 237 / 225
  28250. }
  28251. },
  28252. },
  28253. [
  28254. {
  28255. name: "Normal",
  28256. height: math.unit(3 + 4 / 12, "feet"),
  28257. default: true
  28258. },
  28259. ]
  28260. ))
  28261. characterMakers.push(() => makeCharacter(
  28262. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  28263. {
  28264. front: {
  28265. height: math.unit(5 + 10 / 12, "feet"),
  28266. weight: math.unit(197, "lb"),
  28267. name: "Front",
  28268. image: {
  28269. source: "./media/characters/jabaro/front.svg",
  28270. extra: 225 / 216,
  28271. bottom: 5.06 / 230
  28272. }
  28273. },
  28274. back: {
  28275. height: math.unit(5 + 10 / 12, "feet"),
  28276. weight: math.unit(197, "lb"),
  28277. name: "Back",
  28278. image: {
  28279. source: "./media/characters/jabaro/back.svg",
  28280. extra: 225 / 219,
  28281. bottom: 1.9 / 227
  28282. }
  28283. },
  28284. },
  28285. [
  28286. {
  28287. name: "Normal",
  28288. height: math.unit(5 + 10 / 12, "feet"),
  28289. default: true
  28290. },
  28291. ]
  28292. ))
  28293. characterMakers.push(() => makeCharacter(
  28294. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  28295. {
  28296. front: {
  28297. height: math.unit(5 + 8 / 12, "feet"),
  28298. weight: math.unit(139, "lb"),
  28299. name: "Front",
  28300. image: {
  28301. source: "./media/characters/risa/front.svg",
  28302. extra: 270 / 260,
  28303. bottom: 11.2 / 282
  28304. }
  28305. },
  28306. back: {
  28307. height: math.unit(5 + 8 / 12, "feet"),
  28308. weight: math.unit(139, "lb"),
  28309. name: "Back",
  28310. image: {
  28311. source: "./media/characters/risa/back.svg",
  28312. extra: 264 / 255,
  28313. bottom: 4 / 268
  28314. }
  28315. },
  28316. },
  28317. [
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(5 + 8 / 12, "feet"),
  28321. default: true
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  28327. {
  28328. front: {
  28329. height: math.unit(2 + 11 / 12, "feet"),
  28330. weight: math.unit(30, "lb"),
  28331. name: "Front",
  28332. image: {
  28333. source: "./media/characters/weatley/front.svg",
  28334. bottom: 10.7 / 414,
  28335. extra: 403.5 / 362
  28336. }
  28337. },
  28338. back: {
  28339. height: math.unit(2 + 11 / 12, "feet"),
  28340. weight: math.unit(30, "lb"),
  28341. name: "Back",
  28342. image: {
  28343. source: "./media/characters/weatley/back.svg",
  28344. bottom: 10.7 / 414,
  28345. extra: 403.5 / 362
  28346. }
  28347. },
  28348. },
  28349. [
  28350. {
  28351. name: "Normal",
  28352. height: math.unit(2 + 11 / 12, "feet"),
  28353. default: true
  28354. },
  28355. ]
  28356. ))
  28357. characterMakers.push(() => makeCharacter(
  28358. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  28359. {
  28360. front: {
  28361. height: math.unit(5 + 2 / 12, "feet"),
  28362. weight: math.unit(50, "kg"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/mercury-crescent/front.svg",
  28366. extra: 1088 / 1033,
  28367. bottom: 18.9 / 1109
  28368. }
  28369. },
  28370. },
  28371. [
  28372. {
  28373. name: "Normal",
  28374. height: math.unit(5 + 2 / 12, "feet"),
  28375. default: true
  28376. },
  28377. ]
  28378. ))
  28379. characterMakers.push(() => makeCharacter(
  28380. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  28381. {
  28382. front: {
  28383. height: math.unit(2, "feet"),
  28384. weight: math.unit(15, "kg"),
  28385. name: "Front",
  28386. image: {
  28387. source: "./media/characters/diamond-jones/front.svg",
  28388. extra: 727/723,
  28389. bottom: 46/773
  28390. }
  28391. },
  28392. },
  28393. [
  28394. {
  28395. name: "Normal",
  28396. height: math.unit(2, "feet"),
  28397. default: true
  28398. },
  28399. ]
  28400. ))
  28401. characterMakers.push(() => makeCharacter(
  28402. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  28403. {
  28404. front: {
  28405. height: math.unit(3, "feet"),
  28406. weight: math.unit(30, "kg"),
  28407. name: "Front",
  28408. image: {
  28409. source: "./media/characters/sweet-bit/front.svg",
  28410. extra: 675 / 567,
  28411. bottom: 27.7 / 703
  28412. }
  28413. },
  28414. },
  28415. [
  28416. {
  28417. name: "Normal",
  28418. height: math.unit(3, "feet"),
  28419. default: true
  28420. },
  28421. ]
  28422. ))
  28423. characterMakers.push(() => makeCharacter(
  28424. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  28425. {
  28426. side: {
  28427. height: math.unit(9.178, "feet"),
  28428. weight: math.unit(500, "lb"),
  28429. name: "Side",
  28430. image: {
  28431. source: "./media/characters/umbrazen/side.svg",
  28432. extra: 1730 / 1473,
  28433. bottom: 34.6 / 1765
  28434. }
  28435. },
  28436. },
  28437. [
  28438. {
  28439. name: "Normal",
  28440. height: math.unit(9.178, "feet"),
  28441. default: true
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(10, "feet"),
  28450. weight: math.unit(750, "lb"),
  28451. name: "Front",
  28452. image: {
  28453. source: "./media/characters/arlist/front.svg",
  28454. extra: 961 / 778,
  28455. bottom: 6.2 / 986
  28456. }
  28457. },
  28458. },
  28459. [
  28460. {
  28461. name: "Normal",
  28462. height: math.unit(10, "feet"),
  28463. default: true
  28464. },
  28465. ]
  28466. ))
  28467. characterMakers.push(() => makeCharacter(
  28468. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  28469. {
  28470. front: {
  28471. height: math.unit(5 + 1 / 12, "feet"),
  28472. weight: math.unit(110, "lb"),
  28473. name: "Front",
  28474. image: {
  28475. source: "./media/characters/aradel/front.svg",
  28476. extra: 324 / 303,
  28477. bottom: 3.6 / 329.4
  28478. }
  28479. },
  28480. },
  28481. [
  28482. {
  28483. name: "Normal",
  28484. height: math.unit(5 + 1 / 12, "feet"),
  28485. default: true
  28486. },
  28487. ]
  28488. ))
  28489. characterMakers.push(() => makeCharacter(
  28490. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  28491. {
  28492. dressed: {
  28493. height: math.unit(3 + 8 / 12, "feet"),
  28494. weight: math.unit(50, "lb"),
  28495. name: "Dressed",
  28496. image: {
  28497. source: "./media/characters/serryn/dressed.svg",
  28498. extra: 1792 / 1656,
  28499. bottom: 43.5 / 1840
  28500. }
  28501. },
  28502. nude: {
  28503. height: math.unit(3 + 8 / 12, "feet"),
  28504. weight: math.unit(50, "lb"),
  28505. name: "Nude",
  28506. image: {
  28507. source: "./media/characters/serryn/nude.svg",
  28508. extra: 1792 / 1656,
  28509. bottom: 43.5 / 1840
  28510. }
  28511. },
  28512. },
  28513. [
  28514. {
  28515. name: "Normal",
  28516. height: math.unit(3 + 8 / 12, "feet"),
  28517. default: true
  28518. },
  28519. ]
  28520. ))
  28521. characterMakers.push(() => makeCharacter(
  28522. { name: "Xavier Thyme", "species": ["fox"], tags: ["anthro"] },
  28523. {
  28524. front: {
  28525. height: math.unit(7 + 10 / 12, "feet"),
  28526. weight: math.unit(255, "lb"),
  28527. name: "Front",
  28528. image: {
  28529. source: "./media/characters/xavier-thyme/front.svg",
  28530. extra: 3733 / 3642,
  28531. bottom: 131 / 3869
  28532. }
  28533. },
  28534. frontRaven: {
  28535. height: math.unit(7 + 10 / 12, "feet"),
  28536. weight: math.unit(255, "lb"),
  28537. name: "Front (Raven)",
  28538. image: {
  28539. source: "./media/characters/xavier-thyme/front-raven.svg",
  28540. extra: 4385 / 3642,
  28541. bottom: 131 / 4517
  28542. }
  28543. },
  28544. },
  28545. [
  28546. {
  28547. name: "Normal",
  28548. height: math.unit(7 + 10 / 12, "feet"),
  28549. default: true
  28550. },
  28551. ]
  28552. ))
  28553. characterMakers.push(() => makeCharacter(
  28554. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  28555. {
  28556. front: {
  28557. height: math.unit(1.6, "m"),
  28558. weight: math.unit(50, "kg"),
  28559. name: "Front",
  28560. image: {
  28561. source: "./media/characters/kiki/front.svg",
  28562. extra: 4682 / 3610,
  28563. bottom: 115 / 4777
  28564. }
  28565. },
  28566. },
  28567. [
  28568. {
  28569. name: "Normal",
  28570. height: math.unit(1.6, "meters"),
  28571. default: true
  28572. },
  28573. ]
  28574. ))
  28575. characterMakers.push(() => makeCharacter(
  28576. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  28577. {
  28578. front: {
  28579. height: math.unit(50, "m"),
  28580. weight: math.unit(500, "tonnes"),
  28581. name: "Front",
  28582. image: {
  28583. source: "./media/characters/ryoko/front.svg",
  28584. extra: 4632 / 3926,
  28585. bottom: 193 / 4823
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Normal",
  28592. height: math.unit(50, "meters"),
  28593. default: true
  28594. },
  28595. ]
  28596. ))
  28597. characterMakers.push(() => makeCharacter(
  28598. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  28599. {
  28600. front: {
  28601. height: math.unit(30, "m"),
  28602. weight: math.unit(22, "tonnes"),
  28603. name: "Front",
  28604. image: {
  28605. source: "./media/characters/elio/front.svg",
  28606. extra: 4582 / 3720,
  28607. bottom: 236 / 4828
  28608. }
  28609. },
  28610. },
  28611. [
  28612. {
  28613. name: "Normal",
  28614. height: math.unit(30, "meters"),
  28615. default: true
  28616. },
  28617. ]
  28618. ))
  28619. characterMakers.push(() => makeCharacter(
  28620. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  28621. {
  28622. front: {
  28623. height: math.unit(6 + 3 / 12, "feet"),
  28624. weight: math.unit(120, "lb"),
  28625. name: "Front",
  28626. image: {
  28627. source: "./media/characters/azura/front.svg",
  28628. extra: 1149 / 1135,
  28629. bottom: 45 / 1194
  28630. }
  28631. },
  28632. frontClothed: {
  28633. height: math.unit(6 + 3 / 12, "feet"),
  28634. weight: math.unit(120, "lb"),
  28635. name: "Front (Clothed)",
  28636. image: {
  28637. source: "./media/characters/azura/front-clothed.svg",
  28638. extra: 1149 / 1135,
  28639. bottom: 45 / 1194
  28640. }
  28641. },
  28642. },
  28643. [
  28644. {
  28645. name: "Normal",
  28646. height: math.unit(6 + 3 / 12, "feet"),
  28647. default: true
  28648. },
  28649. {
  28650. name: "Macro",
  28651. height: math.unit(20 + 6 / 12, "feet")
  28652. },
  28653. {
  28654. name: "Megamacro",
  28655. height: math.unit(12, "miles")
  28656. },
  28657. {
  28658. name: "Gigamacro",
  28659. height: math.unit(10000, "miles")
  28660. },
  28661. {
  28662. name: "Teramacro",
  28663. height: math.unit(900000, "miles")
  28664. },
  28665. ]
  28666. ))
  28667. characterMakers.push(() => makeCharacter(
  28668. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  28669. {
  28670. front: {
  28671. height: math.unit(12, "feet"),
  28672. weight: math.unit(1, "ton"),
  28673. capacity: math.unit(660000, "gallons"),
  28674. name: "Front",
  28675. image: {
  28676. source: "./media/characters/zeus/front.svg",
  28677. extra: 5005 / 4717,
  28678. bottom: 363 / 5388
  28679. }
  28680. },
  28681. },
  28682. [
  28683. {
  28684. name: "Normal",
  28685. height: math.unit(12, "feet")
  28686. },
  28687. {
  28688. name: "Preferred Size",
  28689. height: math.unit(0.5, "miles"),
  28690. default: true
  28691. },
  28692. {
  28693. name: "Giga Horse",
  28694. height: math.unit(300, "miles")
  28695. },
  28696. {
  28697. name: "Riding Planets",
  28698. height: math.unit(30, "megameters")
  28699. },
  28700. {
  28701. name: "Cosmic Giant",
  28702. height: math.unit(3, "zettameters")
  28703. },
  28704. {
  28705. name: "Breeding God",
  28706. height: math.unit(9.92e22, "yottameters")
  28707. },
  28708. ]
  28709. ))
  28710. characterMakers.push(() => makeCharacter(
  28711. { name: "Fang", species: ["monster"], tags: ["feral"] },
  28712. {
  28713. side: {
  28714. height: math.unit(9, "feet"),
  28715. weight: math.unit(1500, "kg"),
  28716. name: "Side",
  28717. image: {
  28718. source: "./media/characters/fang/side.svg",
  28719. extra: 924 / 866,
  28720. bottom: 47.5 / 972.3
  28721. }
  28722. },
  28723. },
  28724. [
  28725. {
  28726. name: "Normal",
  28727. height: math.unit(9, "feet"),
  28728. default: true
  28729. },
  28730. {
  28731. name: "Macro",
  28732. height: math.unit(75 + 6 / 12, "feet")
  28733. },
  28734. {
  28735. name: "Teramacro",
  28736. height: math.unit(50000, "miles")
  28737. },
  28738. ]
  28739. ))
  28740. characterMakers.push(() => makeCharacter(
  28741. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  28742. {
  28743. front: {
  28744. height: math.unit(10, "feet"),
  28745. weight: math.unit(2, "tons"),
  28746. name: "Front",
  28747. image: {
  28748. source: "./media/characters/rekhit/front.svg",
  28749. extra: 2796 / 2590,
  28750. bottom: 225 / 3022
  28751. }
  28752. },
  28753. },
  28754. [
  28755. {
  28756. name: "Normal",
  28757. height: math.unit(10, "feet"),
  28758. default: true
  28759. },
  28760. {
  28761. name: "Macro",
  28762. height: math.unit(500, "feet")
  28763. },
  28764. ]
  28765. ))
  28766. characterMakers.push(() => makeCharacter(
  28767. { name: "Dahlia Verrick", "species": ["dhole", "springbok"], "tags": ["anthro"] },
  28768. {
  28769. front: {
  28770. height: math.unit(7 + 6.451 / 12, "feet"),
  28771. weight: math.unit(310, "lb"),
  28772. name: "Front",
  28773. image: {
  28774. source: "./media/characters/dahlia-verrick/front.svg",
  28775. extra: 1488 / 1365,
  28776. bottom: 6.2 / 1495
  28777. }
  28778. },
  28779. back: {
  28780. height: math.unit(7 + 6.451 / 12, "feet"),
  28781. weight: math.unit(310, "lb"),
  28782. name: "Back",
  28783. image: {
  28784. source: "./media/characters/dahlia-verrick/back.svg",
  28785. extra: 1472 / 1351,
  28786. bottom: 5.28 / 1477
  28787. }
  28788. },
  28789. frontBusiness: {
  28790. height: math.unit(7 + 6.451 / 12, "feet"),
  28791. weight: math.unit(200, "lb"),
  28792. name: "Front (Business)",
  28793. image: {
  28794. source: "./media/characters/dahlia-verrick/front-business.svg",
  28795. extra: 1478 / 1381,
  28796. bottom: 5.5 / 1484
  28797. }
  28798. },
  28799. frontCasual: {
  28800. height: math.unit(7 + 6.451 / 12, "feet"),
  28801. weight: math.unit(200, "lb"),
  28802. name: "Front (Casual)",
  28803. image: {
  28804. source: "./media/characters/dahlia-verrick/front-casual.svg",
  28805. extra: 1478 / 1381,
  28806. bottom: 5.5 / 1484
  28807. }
  28808. },
  28809. },
  28810. [
  28811. {
  28812. name: "Travel-Sized",
  28813. height: math.unit(7.45, "inches")
  28814. },
  28815. {
  28816. name: "Normal",
  28817. height: math.unit(7 + 6.451 / 12, "feet"),
  28818. default: true
  28819. },
  28820. {
  28821. name: "Hitting the Town",
  28822. height: math.unit(37 + 8 / 12, "feet")
  28823. },
  28824. {
  28825. name: "Stomp in the Suburbs",
  28826. height: math.unit(964 + 9.728 / 12, "feet")
  28827. },
  28828. {
  28829. name: "Sit on the City",
  28830. height: math.unit(61747 + 10.592 / 12, "feet")
  28831. },
  28832. {
  28833. name: "Glomp the Globe",
  28834. height: math.unit(252919327 + 4.832 / 12, "feet")
  28835. },
  28836. ]
  28837. ))
  28838. characterMakers.push(() => makeCharacter(
  28839. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  28840. {
  28841. front: {
  28842. height: math.unit(6 + 4 / 12, "feet"),
  28843. weight: math.unit(320, "lb"),
  28844. name: "Front",
  28845. image: {
  28846. source: "./media/characters/balina-mahigan/front.svg",
  28847. extra: 447 / 428,
  28848. bottom: 18 / 466
  28849. }
  28850. },
  28851. back: {
  28852. height: math.unit(6 + 4 / 12, "feet"),
  28853. weight: math.unit(320, "lb"),
  28854. name: "Back",
  28855. image: {
  28856. source: "./media/characters/balina-mahigan/back.svg",
  28857. extra: 445 / 428,
  28858. bottom: 4.07 / 448
  28859. }
  28860. },
  28861. arm: {
  28862. height: math.unit(1.88, "feet"),
  28863. name: "Arm",
  28864. image: {
  28865. source: "./media/characters/balina-mahigan/arm.svg"
  28866. }
  28867. },
  28868. backPort: {
  28869. height: math.unit(0.685, "feet"),
  28870. name: "Back Port",
  28871. image: {
  28872. source: "./media/characters/balina-mahigan/back-port.svg"
  28873. }
  28874. },
  28875. hoofpaw: {
  28876. height: math.unit(1.41, "feet"),
  28877. name: "Hoofpaw",
  28878. image: {
  28879. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  28880. }
  28881. },
  28882. leftHandBack: {
  28883. height: math.unit(0.938, "feet"),
  28884. name: "Left Hand (Back)",
  28885. image: {
  28886. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  28887. }
  28888. },
  28889. leftHandFront: {
  28890. height: math.unit(0.938, "feet"),
  28891. name: "Left Hand (Front)",
  28892. image: {
  28893. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  28894. }
  28895. },
  28896. rightHandBack: {
  28897. height: math.unit(0.95, "feet"),
  28898. name: "Right Hand (Back)",
  28899. image: {
  28900. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  28901. }
  28902. },
  28903. rightHandFront: {
  28904. height: math.unit(0.95, "feet"),
  28905. name: "Right Hand (Front)",
  28906. image: {
  28907. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  28908. }
  28909. },
  28910. },
  28911. [
  28912. {
  28913. name: "Normal",
  28914. height: math.unit(6 + 4 / 12, "feet"),
  28915. default: true
  28916. },
  28917. ]
  28918. ))
  28919. characterMakers.push(() => makeCharacter(
  28920. { name: "Balina Mejeri", species: ["wolf", "cow"], tags: ["anthro"] },
  28921. {
  28922. front: {
  28923. height: math.unit(6, "feet"),
  28924. weight: math.unit(320, "lb"),
  28925. name: "Front",
  28926. image: {
  28927. source: "./media/characters/balina-mejeri/front.svg",
  28928. extra: 517 / 488,
  28929. bottom: 44.2 / 561
  28930. }
  28931. },
  28932. },
  28933. [
  28934. {
  28935. name: "Normal",
  28936. height: math.unit(6 + 4 / 12, "feet")
  28937. },
  28938. {
  28939. name: "Business",
  28940. height: math.unit(155, "feet"),
  28941. default: true
  28942. },
  28943. ]
  28944. ))
  28945. characterMakers.push(() => makeCharacter(
  28946. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  28947. {
  28948. kneeling: {
  28949. height: math.unit(6 + 4 / 12, "feet"),
  28950. weight: math.unit(300 * 20, "lb"),
  28951. name: "Kneeling",
  28952. image: {
  28953. source: "./media/characters/balbarian/kneeling.svg",
  28954. extra: 922 / 862,
  28955. bottom: 42.4 / 965
  28956. }
  28957. },
  28958. },
  28959. [
  28960. {
  28961. name: "Normal",
  28962. height: math.unit(6 + 4 / 12, "feet")
  28963. },
  28964. {
  28965. name: "Treasured",
  28966. height: math.unit(18 + 9 / 12, "feet"),
  28967. default: true
  28968. },
  28969. {
  28970. name: "Macro",
  28971. height: math.unit(900, "feet")
  28972. },
  28973. ]
  28974. ))
  28975. characterMakers.push(() => makeCharacter(
  28976. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  28977. {
  28978. front: {
  28979. height: math.unit(6 + 4 / 12, "feet"),
  28980. weight: math.unit(325, "lb"),
  28981. name: "Front",
  28982. image: {
  28983. source: "./media/characters/balina-amarini/front.svg",
  28984. extra: 415 / 403,
  28985. bottom: 19 / 433.4
  28986. }
  28987. },
  28988. back: {
  28989. height: math.unit(6 + 4 / 12, "feet"),
  28990. weight: math.unit(325, "lb"),
  28991. name: "Back",
  28992. image: {
  28993. source: "./media/characters/balina-amarini/back.svg",
  28994. extra: 415 / 403,
  28995. bottom: 13.5 / 432
  28996. }
  28997. },
  28998. overdrive: {
  28999. height: math.unit(6 + 4 / 12, "feet"),
  29000. weight: math.unit(400, "lb"),
  29001. name: "Overdrive",
  29002. image: {
  29003. source: "./media/characters/balina-amarini/overdrive.svg",
  29004. extra: 269 / 259,
  29005. bottom: 12 / 282
  29006. }
  29007. },
  29008. },
  29009. [
  29010. {
  29011. name: "Boom",
  29012. height: math.unit(9 + 10 / 12, "feet"),
  29013. default: true
  29014. },
  29015. {
  29016. name: "Macro",
  29017. height: math.unit(280, "feet")
  29018. },
  29019. ]
  29020. ))
  29021. characterMakers.push(() => makeCharacter(
  29022. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  29023. {
  29024. goddess: {
  29025. height: math.unit(600, "feet"),
  29026. weight: math.unit(2000000, "tons"),
  29027. name: "Goddess",
  29028. image: {
  29029. source: "./media/characters/lady-kubwa/goddess.svg",
  29030. extra: 1240.5 / 1223,
  29031. bottom: 22 / 1263
  29032. }
  29033. },
  29034. goddesser: {
  29035. height: math.unit(900, "feet"),
  29036. weight: math.unit(20000000, "lb"),
  29037. name: "Goddess-er",
  29038. image: {
  29039. source: "./media/characters/lady-kubwa/goddess-er.svg",
  29040. extra: 899 / 888,
  29041. bottom: 12.6 / 912
  29042. }
  29043. },
  29044. },
  29045. [
  29046. {
  29047. name: "Macro",
  29048. height: math.unit(600, "feet"),
  29049. default: true
  29050. },
  29051. {
  29052. name: "Megamacro",
  29053. height: math.unit(250, "miles")
  29054. },
  29055. ]
  29056. ))
  29057. characterMakers.push(() => makeCharacter(
  29058. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  29059. {
  29060. front: {
  29061. height: math.unit(7 + 7 / 12, "feet"),
  29062. weight: math.unit(250, "lb"),
  29063. name: "Front",
  29064. image: {
  29065. source: "./media/characters/tala-grovehorn/front.svg",
  29066. extra: 2636 / 2525,
  29067. bottom: 147 / 2781
  29068. }
  29069. },
  29070. back: {
  29071. height: math.unit(7 + 7 / 12, "feet"),
  29072. weight: math.unit(250, "lb"),
  29073. name: "Back",
  29074. image: {
  29075. source: "./media/characters/tala-grovehorn/back.svg",
  29076. extra: 2635 / 2539,
  29077. bottom: 100 / 2732.8
  29078. }
  29079. },
  29080. mouth: {
  29081. height: math.unit(1.15, "feet"),
  29082. name: "Mouth",
  29083. image: {
  29084. source: "./media/characters/tala-grovehorn/mouth.svg"
  29085. }
  29086. },
  29087. dick: {
  29088. height: math.unit(2.36, "feet"),
  29089. name: "Dick",
  29090. image: {
  29091. source: "./media/characters/tala-grovehorn/dick.svg"
  29092. }
  29093. },
  29094. slit: {
  29095. height: math.unit(0.61, "feet"),
  29096. name: "Slit",
  29097. image: {
  29098. source: "./media/characters/tala-grovehorn/slit.svg"
  29099. }
  29100. },
  29101. },
  29102. [
  29103. ]
  29104. ))
  29105. characterMakers.push(() => makeCharacter(
  29106. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  29107. {
  29108. front: {
  29109. height: math.unit(7 + 7 / 12, "feet"),
  29110. weight: math.unit(225, "lb"),
  29111. name: "Front",
  29112. image: {
  29113. source: "./media/characters/epona/front.svg",
  29114. extra: 2445 / 2290,
  29115. bottom: 251 / 2696
  29116. }
  29117. },
  29118. back: {
  29119. height: math.unit(7 + 7 / 12, "feet"),
  29120. weight: math.unit(225, "lb"),
  29121. name: "Back",
  29122. image: {
  29123. source: "./media/characters/epona/back.svg",
  29124. extra: 2546 / 2408,
  29125. bottom: 44 / 2589
  29126. }
  29127. },
  29128. genitals: {
  29129. height: math.unit(1.5, "feet"),
  29130. name: "Genitals",
  29131. image: {
  29132. source: "./media/characters/epona/genitals.svg"
  29133. }
  29134. },
  29135. },
  29136. [
  29137. {
  29138. name: "Normal",
  29139. height: math.unit(7 + 7 / 12, "feet"),
  29140. default: true
  29141. },
  29142. ]
  29143. ))
  29144. characterMakers.push(() => makeCharacter(
  29145. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  29146. {
  29147. front: {
  29148. height: math.unit(7, "feet"),
  29149. weight: math.unit(518, "lb"),
  29150. name: "Front",
  29151. image: {
  29152. source: "./media/characters/avia-bloodbourn/front.svg",
  29153. extra: 1466 / 1350,
  29154. bottom: 65 / 1527
  29155. }
  29156. },
  29157. },
  29158. [
  29159. ]
  29160. ))
  29161. characterMakers.push(() => makeCharacter(
  29162. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  29163. {
  29164. front: {
  29165. height: math.unit(9.35, "feet"),
  29166. weight: math.unit(600, "lb"),
  29167. name: "Front",
  29168. image: {
  29169. source: "./media/characters/amera/front.svg",
  29170. extra: 891 / 818,
  29171. bottom: 30 / 922.7
  29172. }
  29173. },
  29174. back: {
  29175. height: math.unit(9.35, "feet"),
  29176. weight: math.unit(600, "lb"),
  29177. name: "Back",
  29178. image: {
  29179. source: "./media/characters/amera/back.svg",
  29180. extra: 876 / 824,
  29181. bottom: 6.8 / 884
  29182. }
  29183. },
  29184. dick: {
  29185. height: math.unit(2.14, "feet"),
  29186. name: "Dick",
  29187. image: {
  29188. source: "./media/characters/amera/dick.svg"
  29189. }
  29190. },
  29191. },
  29192. [
  29193. {
  29194. name: "Normal",
  29195. height: math.unit(9.35, "feet"),
  29196. default: true
  29197. },
  29198. ]
  29199. ))
  29200. characterMakers.push(() => makeCharacter(
  29201. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  29202. {
  29203. kneeling: {
  29204. height: math.unit(3 + 4 / 12, "feet"),
  29205. weight: math.unit(90, "lb"),
  29206. name: "Kneeling",
  29207. image: {
  29208. source: "./media/characters/rosewen/kneeling.svg",
  29209. extra: 1835 / 1571,
  29210. bottom: 27.7 / 1862
  29211. }
  29212. },
  29213. },
  29214. [
  29215. {
  29216. name: "Normal",
  29217. height: math.unit(3 + 4 / 12, "feet"),
  29218. default: true
  29219. },
  29220. ]
  29221. ))
  29222. characterMakers.push(() => makeCharacter(
  29223. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  29224. {
  29225. front: {
  29226. height: math.unit(5 + 10 / 12, "feet"),
  29227. weight: math.unit(200, "lb"),
  29228. name: "Front",
  29229. image: {
  29230. source: "./media/characters/sabah/front.svg",
  29231. extra: 849 / 763,
  29232. bottom: 33.9 / 881
  29233. }
  29234. },
  29235. },
  29236. [
  29237. {
  29238. name: "Normal",
  29239. height: math.unit(5 + 10 / 12, "feet"),
  29240. default: true
  29241. },
  29242. ]
  29243. ))
  29244. characterMakers.push(() => makeCharacter(
  29245. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  29246. {
  29247. front: {
  29248. height: math.unit(3 + 5 / 12, "feet"),
  29249. weight: math.unit(40, "kg"),
  29250. name: "Front",
  29251. image: {
  29252. source: "./media/characters/purple-flame/front.svg",
  29253. extra: 1577 / 1412,
  29254. bottom: 97 / 1694
  29255. }
  29256. },
  29257. frontDressed: {
  29258. height: math.unit(3 + 5 / 12, "feet"),
  29259. weight: math.unit(40, "kg"),
  29260. name: "Front (Dressed)",
  29261. image: {
  29262. source: "./media/characters/purple-flame/front-dressed.svg",
  29263. extra: 1577 / 1412,
  29264. bottom: 97 / 1694
  29265. }
  29266. },
  29267. headphones: {
  29268. height: math.unit(0.85, "feet"),
  29269. name: "Headphones",
  29270. image: {
  29271. source: "./media/characters/purple-flame/headphones.svg"
  29272. }
  29273. },
  29274. },
  29275. [
  29276. {
  29277. name: "Really Small",
  29278. height: math.unit(5, "cm")
  29279. },
  29280. {
  29281. name: "Micro",
  29282. height: math.unit(1 + 5 / 12, "feet")
  29283. },
  29284. {
  29285. name: "Normal",
  29286. height: math.unit(3 + 5 / 12, "feet"),
  29287. default: true
  29288. },
  29289. {
  29290. name: "Minimacro",
  29291. height: math.unit(125, "feet")
  29292. },
  29293. {
  29294. name: "Macro",
  29295. height: math.unit(0.5, "miles")
  29296. },
  29297. {
  29298. name: "Megamacro",
  29299. height: math.unit(50, "miles")
  29300. },
  29301. {
  29302. name: "Gigantic",
  29303. height: math.unit(750, "miles")
  29304. },
  29305. {
  29306. name: "Planetary",
  29307. height: math.unit(15000, "miles")
  29308. },
  29309. ]
  29310. ))
  29311. characterMakers.push(() => makeCharacter(
  29312. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  29313. {
  29314. front: {
  29315. height: math.unit(14, "feet"),
  29316. weight: math.unit(959, "lb"),
  29317. name: "Front",
  29318. image: {
  29319. source: "./media/characters/arsenal/front.svg",
  29320. extra: 2357 / 2157,
  29321. bottom: 93 / 2458
  29322. }
  29323. },
  29324. },
  29325. [
  29326. {
  29327. name: "Normal",
  29328. height: math.unit(14, "feet"),
  29329. default: true
  29330. },
  29331. ]
  29332. ))
  29333. characterMakers.push(() => makeCharacter(
  29334. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  29335. {
  29336. front: {
  29337. height: math.unit(6, "feet"),
  29338. weight: math.unit(150, "lb"),
  29339. name: "Front",
  29340. image: {
  29341. source: "./media/characters/adira/front.svg",
  29342. extra: 1078 / 1029,
  29343. bottom: 87 / 1166
  29344. }
  29345. },
  29346. },
  29347. [
  29348. {
  29349. name: "Micro",
  29350. height: math.unit(4, "inches"),
  29351. default: true
  29352. },
  29353. {
  29354. name: "Macro",
  29355. height: math.unit(50, "feet")
  29356. },
  29357. ]
  29358. ))
  29359. characterMakers.push(() => makeCharacter(
  29360. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  29361. {
  29362. front: {
  29363. height: math.unit(16, "feet"),
  29364. weight: math.unit(1000, "lb"),
  29365. name: "Front",
  29366. image: {
  29367. source: "./media/characters/grim/front.svg",
  29368. extra: 622 / 614,
  29369. bottom: 18.1 / 642
  29370. }
  29371. },
  29372. back: {
  29373. height: math.unit(16, "feet"),
  29374. weight: math.unit(1000, "lb"),
  29375. name: "Back",
  29376. image: {
  29377. source: "./media/characters/grim/back.svg",
  29378. extra: 610.6 / 602,
  29379. bottom: 40.8 / 652
  29380. }
  29381. },
  29382. hunched: {
  29383. height: math.unit(9.75, "feet"),
  29384. weight: math.unit(1000, "lb"),
  29385. name: "Hunched",
  29386. image: {
  29387. source: "./media/characters/grim/hunched.svg",
  29388. extra: 304 / 297,
  29389. bottom: 35.4 / 394
  29390. }
  29391. },
  29392. },
  29393. [
  29394. {
  29395. name: "Normal",
  29396. height: math.unit(16, "feet"),
  29397. default: true
  29398. },
  29399. ]
  29400. ))
  29401. characterMakers.push(() => makeCharacter(
  29402. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  29403. {
  29404. front: {
  29405. height: math.unit(2.3, "meters"),
  29406. weight: math.unit(300, "lb"),
  29407. name: "Front",
  29408. image: {
  29409. source: "./media/characters/sinja/front-sfw.svg",
  29410. extra: 1393 / 1294,
  29411. bottom: 70 / 1463
  29412. }
  29413. },
  29414. frontNsfw: {
  29415. height: math.unit(2.3, "meters"),
  29416. weight: math.unit(300, "lb"),
  29417. name: "Front (NSFW)",
  29418. image: {
  29419. source: "./media/characters/sinja/front-nsfw.svg",
  29420. extra: 1393 / 1294,
  29421. bottom: 70 / 1463
  29422. }
  29423. },
  29424. back: {
  29425. height: math.unit(2.3, "meters"),
  29426. weight: math.unit(300, "lb"),
  29427. name: "Back",
  29428. image: {
  29429. source: "./media/characters/sinja/back.svg",
  29430. extra: 1393 / 1294,
  29431. bottom: 70 / 1463
  29432. }
  29433. },
  29434. head: {
  29435. height: math.unit(1.771, "feet"),
  29436. name: "Head",
  29437. image: {
  29438. source: "./media/characters/sinja/head.svg"
  29439. }
  29440. },
  29441. slit: {
  29442. height: math.unit(0.8, "feet"),
  29443. name: "Slit",
  29444. image: {
  29445. source: "./media/characters/sinja/slit.svg"
  29446. }
  29447. },
  29448. },
  29449. [
  29450. {
  29451. name: "Normal",
  29452. height: math.unit(2.3, "meters")
  29453. },
  29454. {
  29455. name: "Macro",
  29456. height: math.unit(91, "meters"),
  29457. default: true
  29458. },
  29459. {
  29460. name: "Megamacro",
  29461. height: math.unit(91440, "meters")
  29462. },
  29463. {
  29464. name: "Gigamacro",
  29465. height: math.unit(60960000, "meters")
  29466. },
  29467. {
  29468. name: "Teramacro",
  29469. height: math.unit(9144000000, "meters")
  29470. },
  29471. ]
  29472. ))
  29473. characterMakers.push(() => makeCharacter(
  29474. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  29475. {
  29476. front: {
  29477. height: math.unit(1.7, "meters"),
  29478. weight: math.unit(130, "lb"),
  29479. name: "Front",
  29480. image: {
  29481. source: "./media/characters/kyu/front.svg",
  29482. extra: 415 / 395,
  29483. bottom: 5 / 420
  29484. }
  29485. },
  29486. head: {
  29487. height: math.unit(1.75, "feet"),
  29488. name: "Head",
  29489. image: {
  29490. source: "./media/characters/kyu/head.svg"
  29491. }
  29492. },
  29493. foot: {
  29494. height: math.unit(0.81, "feet"),
  29495. name: "Foot",
  29496. image: {
  29497. source: "./media/characters/kyu/foot.svg"
  29498. }
  29499. },
  29500. },
  29501. [
  29502. {
  29503. name: "Normal",
  29504. height: math.unit(1.7, "meters")
  29505. },
  29506. {
  29507. name: "Macro",
  29508. height: math.unit(131, "feet"),
  29509. default: true
  29510. },
  29511. {
  29512. name: "Megamacro",
  29513. height: math.unit(91440, "meters")
  29514. },
  29515. {
  29516. name: "Gigamacro",
  29517. height: math.unit(60960000, "meters")
  29518. },
  29519. {
  29520. name: "Teramacro",
  29521. height: math.unit(9144000000, "meters")
  29522. },
  29523. ]
  29524. ))
  29525. characterMakers.push(() => makeCharacter(
  29526. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  29527. {
  29528. front: {
  29529. height: math.unit(7 + 1 / 12, "feet"),
  29530. weight: math.unit(250, "lb"),
  29531. name: "Front",
  29532. image: {
  29533. source: "./media/characters/joey/front.svg",
  29534. extra: 1791 / 1537,
  29535. bottom: 28 / 1816
  29536. }
  29537. },
  29538. },
  29539. [
  29540. {
  29541. name: "Micro",
  29542. height: math.unit(3, "inches")
  29543. },
  29544. {
  29545. name: "Normal",
  29546. height: math.unit(7 + 1 / 12, "feet"),
  29547. default: true
  29548. },
  29549. ]
  29550. ))
  29551. characterMakers.push(() => makeCharacter(
  29552. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  29553. {
  29554. front: {
  29555. height: math.unit(165, "cm"),
  29556. weight: math.unit(140, "lb"),
  29557. name: "Front",
  29558. image: {
  29559. source: "./media/characters/sam-evans/front.svg",
  29560. extra: 3417 / 3230,
  29561. bottom: 41.3 / 3417
  29562. }
  29563. },
  29564. frontSixTails: {
  29565. height: math.unit(165, "cm"),
  29566. weight: math.unit(140, "lb"),
  29567. name: "Front-six-tails",
  29568. image: {
  29569. source: "./media/characters/sam-evans/front-six-tails.svg",
  29570. extra: 3417 / 3230,
  29571. bottom: 41.3 / 3417
  29572. }
  29573. },
  29574. back: {
  29575. height: math.unit(165, "cm"),
  29576. weight: math.unit(140, "lb"),
  29577. name: "Back",
  29578. image: {
  29579. source: "./media/characters/sam-evans/back.svg",
  29580. extra: 3227 / 3032,
  29581. bottom: 6.8 / 3234
  29582. }
  29583. },
  29584. face: {
  29585. height: math.unit(0.68, "feet"),
  29586. name: "Face",
  29587. image: {
  29588. source: "./media/characters/sam-evans/face.svg"
  29589. }
  29590. },
  29591. },
  29592. [
  29593. {
  29594. name: "Normal",
  29595. height: math.unit(165, "cm"),
  29596. default: true
  29597. },
  29598. {
  29599. name: "Macro",
  29600. height: math.unit(100, "meters")
  29601. },
  29602. {
  29603. name: "Macro+",
  29604. height: math.unit(800, "meters")
  29605. },
  29606. {
  29607. name: "Macro++",
  29608. height: math.unit(3, "km")
  29609. },
  29610. {
  29611. name: "Macro+++",
  29612. height: math.unit(30, "km")
  29613. },
  29614. ]
  29615. ))
  29616. characterMakers.push(() => makeCharacter(
  29617. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  29618. {
  29619. front: {
  29620. height: math.unit(10, "feet"),
  29621. weight: math.unit(750, "lb"),
  29622. name: "Front",
  29623. image: {
  29624. source: "./media/characters/juliet-a/front.svg",
  29625. extra: 1766 / 1720,
  29626. bottom: 43 / 1809
  29627. }
  29628. },
  29629. back: {
  29630. height: math.unit(10, "feet"),
  29631. weight: math.unit(750, "lb"),
  29632. name: "Back",
  29633. image: {
  29634. source: "./media/characters/juliet-a/back.svg",
  29635. extra: 1781 / 1734,
  29636. bottom: 35 / 1810,
  29637. }
  29638. },
  29639. },
  29640. [
  29641. {
  29642. name: "Normal",
  29643. height: math.unit(10, "feet"),
  29644. default: true
  29645. },
  29646. {
  29647. name: "Dragon Form",
  29648. height: math.unit(250, "feet")
  29649. },
  29650. {
  29651. name: "Macro",
  29652. height: math.unit(1000, "feet")
  29653. },
  29654. {
  29655. name: "Megamacro",
  29656. height: math.unit(10000, "feet")
  29657. }
  29658. ]
  29659. ))
  29660. characterMakers.push(() => makeCharacter(
  29661. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  29662. {
  29663. regular: {
  29664. height: math.unit(7 + 3 / 12, "feet"),
  29665. weight: math.unit(260, "lb"),
  29666. name: "Regular",
  29667. image: {
  29668. source: "./media/characters/wild/regular.svg",
  29669. extra: 97.45 / 92,
  29670. bottom: 6.8 / 104.3
  29671. }
  29672. },
  29673. biggums: {
  29674. height: math.unit(8 + 6 / 12, "feet"),
  29675. weight: math.unit(425, "lb"),
  29676. name: "Biggums",
  29677. image: {
  29678. source: "./media/characters/wild/biggums.svg",
  29679. extra: 97.45 / 92,
  29680. bottom: 7.5 / 132.34
  29681. }
  29682. },
  29683. mawRegular: {
  29684. height: math.unit(1.24, "feet"),
  29685. name: "Maw (Regular)",
  29686. image: {
  29687. source: "./media/characters/wild/maw.svg"
  29688. }
  29689. },
  29690. mawBiggums: {
  29691. height: math.unit(1.47, "feet"),
  29692. name: "Maw (Biggums)",
  29693. image: {
  29694. source: "./media/characters/wild/maw.svg"
  29695. }
  29696. },
  29697. },
  29698. [
  29699. {
  29700. name: "Normal",
  29701. height: math.unit(7 + 3 / 12, "feet"),
  29702. default: true
  29703. },
  29704. ]
  29705. ))
  29706. characterMakers.push(() => makeCharacter(
  29707. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  29708. {
  29709. front: {
  29710. height: math.unit(2.5, "meters"),
  29711. weight: math.unit(200, "kg"),
  29712. name: "Front",
  29713. image: {
  29714. source: "./media/characters/vidar/front.svg",
  29715. extra: 2994 / 2795,
  29716. bottom: 56 / 3061
  29717. }
  29718. },
  29719. back: {
  29720. height: math.unit(2.5, "meters"),
  29721. weight: math.unit(200, "kg"),
  29722. name: "Back",
  29723. image: {
  29724. source: "./media/characters/vidar/back.svg",
  29725. extra: 3131 / 2928,
  29726. bottom: 13.5 / 3141.5
  29727. }
  29728. },
  29729. feral: {
  29730. height: math.unit(2.5, "meters"),
  29731. weight: math.unit(2000, "kg"),
  29732. name: "Feral",
  29733. image: {
  29734. source: "./media/characters/vidar/feral.svg",
  29735. extra: 2790 / 1765,
  29736. bottom: 6 / 2796
  29737. }
  29738. },
  29739. },
  29740. [
  29741. {
  29742. name: "Normal",
  29743. height: math.unit(2.5, "meters"),
  29744. default: true
  29745. },
  29746. {
  29747. name: "Macro",
  29748. height: math.unit(100, "meters")
  29749. },
  29750. ]
  29751. ))
  29752. characterMakers.push(() => makeCharacter(
  29753. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  29754. {
  29755. front: {
  29756. height: math.unit(5 + 9 / 12, "feet"),
  29757. weight: math.unit(120, "lb"),
  29758. name: "Front",
  29759. image: {
  29760. source: "./media/characters/ash/front.svg",
  29761. extra: 2189 / 1961,
  29762. bottom: 5.2 / 2194
  29763. }
  29764. },
  29765. },
  29766. [
  29767. {
  29768. name: "Normal",
  29769. height: math.unit(5 + 9 / 12, "feet"),
  29770. default: true
  29771. },
  29772. ]
  29773. ))
  29774. characterMakers.push(() => makeCharacter(
  29775. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  29776. {
  29777. front: {
  29778. height: math.unit(9, "feet"),
  29779. weight: math.unit(10000, "lb"),
  29780. name: "Front",
  29781. image: {
  29782. source: "./media/characters/gygabite/front.svg",
  29783. bottom: 31.7 / 537.8,
  29784. extra: 505 / 370
  29785. }
  29786. },
  29787. },
  29788. [
  29789. {
  29790. name: "Normal",
  29791. height: math.unit(9, "feet"),
  29792. default: true
  29793. },
  29794. ]
  29795. ))
  29796. characterMakers.push(() => makeCharacter(
  29797. { name: "P0TAT0", species: ["protogen"], tags: ["anthro"] },
  29798. {
  29799. front: {
  29800. height: math.unit(12, "feet"),
  29801. weight: math.unit(4000, "lb"),
  29802. name: "Front",
  29803. image: {
  29804. source: "./media/characters/p0tat0/front.svg",
  29805. extra: 1065 / 921,
  29806. bottom: 55.7 / 1121.25
  29807. }
  29808. },
  29809. },
  29810. [
  29811. {
  29812. name: "Normal",
  29813. height: math.unit(12, "feet"),
  29814. default: true
  29815. },
  29816. ]
  29817. ))
  29818. characterMakers.push(() => makeCharacter(
  29819. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  29820. {
  29821. side: {
  29822. height: math.unit(6.5, "feet"),
  29823. weight: math.unit(800, "lb"),
  29824. name: "Side",
  29825. image: {
  29826. source: "./media/characters/dusk/side.svg",
  29827. extra: 615 / 373,
  29828. bottom: 53 / 664
  29829. }
  29830. },
  29831. sitting: {
  29832. height: math.unit(7, "feet"),
  29833. weight: math.unit(800, "lb"),
  29834. name: "Sitting",
  29835. image: {
  29836. source: "./media/characters/dusk/sitting.svg",
  29837. extra: 753 / 425,
  29838. bottom: 33 / 774
  29839. }
  29840. },
  29841. head: {
  29842. height: math.unit(6.1, "feet"),
  29843. name: "Head",
  29844. image: {
  29845. source: "./media/characters/dusk/head.svg"
  29846. }
  29847. },
  29848. },
  29849. [
  29850. {
  29851. name: "Normal",
  29852. height: math.unit(7, "feet"),
  29853. default: true
  29854. },
  29855. ]
  29856. ))
  29857. characterMakers.push(() => makeCharacter(
  29858. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  29859. {
  29860. front: {
  29861. height: math.unit(15, "feet"),
  29862. weight: math.unit(7000, "lb"),
  29863. name: "Front",
  29864. image: {
  29865. source: "./media/characters/jay-direwolf/front.svg",
  29866. extra: 1810 / 1732,
  29867. bottom: 66 / 1892
  29868. }
  29869. },
  29870. },
  29871. [
  29872. {
  29873. name: "Normal",
  29874. height: math.unit(15, "feet"),
  29875. default: true
  29876. },
  29877. ]
  29878. ))
  29879. characterMakers.push(() => makeCharacter(
  29880. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  29881. {
  29882. front: {
  29883. height: math.unit(4 + 9 / 12, "feet"),
  29884. weight: math.unit(130, "lb"),
  29885. name: "Front",
  29886. image: {
  29887. source: "./media/characters/anchovie/front.svg",
  29888. extra: 382 / 350,
  29889. bottom: 25 / 409
  29890. }
  29891. },
  29892. back: {
  29893. height: math.unit(4 + 9 / 12, "feet"),
  29894. weight: math.unit(130, "lb"),
  29895. name: "Back",
  29896. image: {
  29897. source: "./media/characters/anchovie/back.svg",
  29898. extra: 385 / 352,
  29899. bottom: 16.6 / 402
  29900. }
  29901. },
  29902. frontDressed: {
  29903. height: math.unit(4 + 9 / 12, "feet"),
  29904. weight: math.unit(130, "lb"),
  29905. name: "Front (Dressed)",
  29906. image: {
  29907. source: "./media/characters/anchovie/front-dressed.svg",
  29908. extra: 382 / 350,
  29909. bottom: 25 / 409
  29910. }
  29911. },
  29912. backDressed: {
  29913. height: math.unit(4 + 9 / 12, "feet"),
  29914. weight: math.unit(130, "lb"),
  29915. name: "Back (Dressed)",
  29916. image: {
  29917. source: "./media/characters/anchovie/back-dressed.svg",
  29918. extra: 385 / 352,
  29919. bottom: 16.6 / 402
  29920. }
  29921. },
  29922. },
  29923. [
  29924. {
  29925. name: "Micro",
  29926. height: math.unit(6.4, "inches")
  29927. },
  29928. {
  29929. name: "Normal",
  29930. height: math.unit(4 + 9 / 12, "feet"),
  29931. default: true
  29932. },
  29933. ]
  29934. ))
  29935. characterMakers.push(() => makeCharacter(
  29936. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  29937. {
  29938. front: {
  29939. height: math.unit(2, "meters"),
  29940. weight: math.unit(180, "lb"),
  29941. name: "Front",
  29942. image: {
  29943. source: "./media/characters/acidrenamon/front.svg",
  29944. extra: 987 / 890,
  29945. bottom: 22.8 / 1009
  29946. }
  29947. },
  29948. back: {
  29949. height: math.unit(2, "meters"),
  29950. weight: math.unit(180, "lb"),
  29951. name: "Back",
  29952. image: {
  29953. source: "./media/characters/acidrenamon/back.svg",
  29954. extra: 983 / 891,
  29955. bottom: 8.4 / 992
  29956. }
  29957. },
  29958. head: {
  29959. height: math.unit(1.92, "feet"),
  29960. name: "Head",
  29961. image: {
  29962. source: "./media/characters/acidrenamon/head.svg"
  29963. }
  29964. },
  29965. rump: {
  29966. height: math.unit(1.72, "feet"),
  29967. name: "Rump",
  29968. image: {
  29969. source: "./media/characters/acidrenamon/rump.svg"
  29970. }
  29971. },
  29972. tail: {
  29973. height: math.unit(4.2, "feet"),
  29974. name: "Tail",
  29975. image: {
  29976. source: "./media/characters/acidrenamon/tail.svg"
  29977. }
  29978. },
  29979. },
  29980. [
  29981. {
  29982. name: "Normal",
  29983. height: math.unit(2, "meters"),
  29984. default: true
  29985. },
  29986. {
  29987. name: "Minimacro",
  29988. height: math.unit(7, "meters")
  29989. },
  29990. {
  29991. name: "Macro",
  29992. height: math.unit(200, "meters")
  29993. },
  29994. {
  29995. name: "Gigamacro",
  29996. height: math.unit(0.2, "earths")
  29997. },
  29998. ]
  29999. ))
  30000. characterMakers.push(() => makeCharacter(
  30001. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  30002. {
  30003. front: {
  30004. height: math.unit(152, "feet"),
  30005. name: "Front",
  30006. image: {
  30007. source: "./media/characters/kenzie-lee/front.svg",
  30008. extra: 1869/1774,
  30009. bottom: 128/1997
  30010. }
  30011. },
  30012. side: {
  30013. height: math.unit(86, "feet"),
  30014. name: "Side",
  30015. image: {
  30016. source: "./media/characters/kenzie-lee/side.svg",
  30017. extra: 930/815,
  30018. bottom: 177/1107
  30019. }
  30020. },
  30021. paw: {
  30022. height: math.unit(15, "feet"),
  30023. name: "Paw",
  30024. image: {
  30025. source: "./media/characters/kenzie-lee/paw.svg"
  30026. }
  30027. },
  30028. },
  30029. [
  30030. {
  30031. name: "Kenzie Flea",
  30032. height: math.unit(2, "mm"),
  30033. default: true
  30034. },
  30035. {
  30036. name: "Micro",
  30037. height: math.unit(2, "inches")
  30038. },
  30039. {
  30040. name: "Normal",
  30041. height: math.unit(152, "feet")
  30042. },
  30043. {
  30044. name: "Megamacro",
  30045. height: math.unit(7, "miles")
  30046. },
  30047. {
  30048. name: "Gigamacro",
  30049. height: math.unit(8000, "miles")
  30050. },
  30051. ]
  30052. ))
  30053. characterMakers.push(() => makeCharacter(
  30054. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  30055. {
  30056. front: {
  30057. height: math.unit(6, "feet"),
  30058. name: "Front",
  30059. image: {
  30060. source: "./media/characters/withers/front.svg",
  30061. extra: 1935/1760,
  30062. bottom: 72/2007
  30063. }
  30064. },
  30065. back: {
  30066. height: math.unit(6, "feet"),
  30067. name: "Back",
  30068. image: {
  30069. source: "./media/characters/withers/back.svg",
  30070. extra: 1944/1792,
  30071. bottom: 12/1956
  30072. }
  30073. },
  30074. dressed: {
  30075. height: math.unit(6, "feet"),
  30076. name: "Dressed",
  30077. image: {
  30078. source: "./media/characters/withers/dressed.svg",
  30079. extra: 1937/1765,
  30080. bottom: 73/2010
  30081. }
  30082. },
  30083. phase1: {
  30084. height: math.unit(1.1, "feet"),
  30085. name: "Phase 1",
  30086. image: {
  30087. source: "./media/characters/withers/phase-1.svg",
  30088. extra: 1885/1232,
  30089. bottom: 0/1885
  30090. }
  30091. },
  30092. phase2: {
  30093. height: math.unit(1.05, "feet"),
  30094. name: "Phase 2",
  30095. image: {
  30096. source: "./media/characters/withers/phase-2.svg",
  30097. extra: 1792/1090,
  30098. bottom: 0/1792
  30099. }
  30100. },
  30101. partyWipe: {
  30102. height: math.unit(1.1, "feet"),
  30103. name: "Party Wipe",
  30104. image: {
  30105. source: "./media/characters/withers/party-wipe.svg",
  30106. extra: 1864/1207,
  30107. bottom: 0/1864
  30108. }
  30109. },
  30110. },
  30111. [
  30112. {
  30113. name: "Macro",
  30114. height: math.unit(167, "feet"),
  30115. default: true
  30116. },
  30117. {
  30118. name: "Megamacro",
  30119. height: math.unit(15, "miles")
  30120. }
  30121. ]
  30122. ))
  30123. characterMakers.push(() => makeCharacter(
  30124. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  30125. {
  30126. front: {
  30127. height: math.unit(6 + 7 / 12, "feet"),
  30128. weight: math.unit(250, "lb"),
  30129. name: "Front",
  30130. image: {
  30131. source: "./media/characters/nemoskii/front.svg",
  30132. extra: 2270 / 1734,
  30133. bottom: 86 / 2354
  30134. }
  30135. },
  30136. back: {
  30137. height: math.unit(6 + 7 / 12, "feet"),
  30138. weight: math.unit(250, "lb"),
  30139. name: "Back",
  30140. image: {
  30141. source: "./media/characters/nemoskii/back.svg",
  30142. extra: 1845 / 1788,
  30143. bottom: 10.5 / 1852
  30144. }
  30145. },
  30146. head: {
  30147. height: math.unit(1.31, "feet"),
  30148. name: "Head",
  30149. image: {
  30150. source: "./media/characters/nemoskii/head.svg"
  30151. }
  30152. },
  30153. },
  30154. [
  30155. {
  30156. name: "Micro",
  30157. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  30158. },
  30159. {
  30160. name: "Normal",
  30161. height: math.unit(6 + 7 / 12, "feet"),
  30162. default: true
  30163. },
  30164. {
  30165. name: "Macro",
  30166. height: math.unit((6 + 7 / 12) * 150, "feet")
  30167. },
  30168. {
  30169. name: "Macro+",
  30170. height: math.unit((6 + 7 / 12) * 500, "feet")
  30171. },
  30172. {
  30173. name: "Megamacro",
  30174. height: math.unit((6 + 7 / 12) * 100000, "feet")
  30175. },
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  30180. {
  30181. front: {
  30182. height: math.unit(1, "mile"),
  30183. weight: math.unit(265261.9, "lb"),
  30184. name: "Front",
  30185. image: {
  30186. source: "./media/characters/shui/front.svg",
  30187. extra: 1633 / 1564,
  30188. bottom: 91.5 / 1726
  30189. }
  30190. },
  30191. },
  30192. [
  30193. {
  30194. name: "Macro",
  30195. height: math.unit(1, "mile"),
  30196. default: true
  30197. },
  30198. ]
  30199. ))
  30200. characterMakers.push(() => makeCharacter(
  30201. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  30202. {
  30203. front: {
  30204. height: math.unit(12 + 6 / 12, "feet"),
  30205. weight: math.unit(1342, "lb"),
  30206. name: "Front",
  30207. image: {
  30208. source: "./media/characters/arokh-takakura/front.svg",
  30209. extra: 1089 / 1043,
  30210. bottom: 77.4 / 1176.7
  30211. }
  30212. },
  30213. back: {
  30214. height: math.unit(12 + 6 / 12, "feet"),
  30215. weight: math.unit(1342, "lb"),
  30216. name: "Back",
  30217. image: {
  30218. source: "./media/characters/arokh-takakura/back.svg",
  30219. extra: 1046 / 1019,
  30220. bottom: 102 / 1150
  30221. }
  30222. },
  30223. },
  30224. [
  30225. {
  30226. name: "Big",
  30227. height: math.unit(12 + 6 / 12, "feet"),
  30228. default: true
  30229. },
  30230. ]
  30231. ))
  30232. characterMakers.push(() => makeCharacter(
  30233. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  30234. {
  30235. front: {
  30236. height: math.unit(5 + 6 / 12, "feet"),
  30237. weight: math.unit(150, "lb"),
  30238. name: "Front",
  30239. image: {
  30240. source: "./media/characters/theo/front.svg",
  30241. extra: 1184 / 1131,
  30242. bottom: 7.4 / 1191
  30243. }
  30244. },
  30245. },
  30246. [
  30247. {
  30248. name: "Micro",
  30249. height: math.unit(5, "inches")
  30250. },
  30251. {
  30252. name: "Normal",
  30253. height: math.unit(5 + 6 / 12, "feet"),
  30254. default: true
  30255. },
  30256. ]
  30257. ))
  30258. characterMakers.push(() => makeCharacter(
  30259. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  30260. {
  30261. front: {
  30262. height: math.unit(5 + 9 / 12, "feet"),
  30263. weight: math.unit(130, "lb"),
  30264. name: "Front",
  30265. image: {
  30266. source: "./media/characters/cecelia-swift/front.svg",
  30267. extra: 502 / 484,
  30268. bottom: 23 / 523
  30269. }
  30270. },
  30271. back: {
  30272. height: math.unit(5 + 9 / 12, "feet"),
  30273. weight: math.unit(130, "lb"),
  30274. name: "Back",
  30275. image: {
  30276. source: "./media/characters/cecelia-swift/back.svg",
  30277. extra: 499 / 485,
  30278. bottom: 12 / 511
  30279. }
  30280. },
  30281. head: {
  30282. height: math.unit(0.90, "feet"),
  30283. name: "Head",
  30284. image: {
  30285. source: "./media/characters/cecelia-swift/head.svg"
  30286. }
  30287. },
  30288. rump: {
  30289. height: math.unit(1.75, "feet"),
  30290. name: "Rump",
  30291. image: {
  30292. source: "./media/characters/cecelia-swift/rump.svg"
  30293. }
  30294. },
  30295. },
  30296. [
  30297. {
  30298. name: "Normal",
  30299. height: math.unit(5 + 9 / 12, "feet"),
  30300. default: true
  30301. },
  30302. {
  30303. name: "Big",
  30304. height: math.unit(50, "feet")
  30305. },
  30306. {
  30307. name: "Macro",
  30308. height: math.unit(100, "feet")
  30309. },
  30310. {
  30311. name: "Macro+",
  30312. height: math.unit(500, "feet")
  30313. },
  30314. {
  30315. name: "Macro++",
  30316. height: math.unit(1000, "feet")
  30317. },
  30318. ]
  30319. ))
  30320. characterMakers.push(() => makeCharacter(
  30321. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  30322. {
  30323. front: {
  30324. height: math.unit(6, "feet"),
  30325. weight: math.unit(150, "lb"),
  30326. name: "Front",
  30327. image: {
  30328. source: "./media/characters/kaunan/front.svg",
  30329. extra: 2890 / 2523,
  30330. bottom: 49 / 2939
  30331. }
  30332. },
  30333. },
  30334. [
  30335. {
  30336. name: "Macro",
  30337. height: math.unit(150, "feet"),
  30338. default: true
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  30344. {
  30345. dressed: {
  30346. height: math.unit(175, "cm"),
  30347. weight: math.unit(60, "kg"),
  30348. name: "Dressed",
  30349. image: {
  30350. source: "./media/characters/fei/dressed.svg",
  30351. extra: 1402/1278,
  30352. bottom: 27/1429
  30353. }
  30354. },
  30355. nude: {
  30356. height: math.unit(175, "cm"),
  30357. weight: math.unit(60, "kg"),
  30358. name: "Nude",
  30359. image: {
  30360. source: "./media/characters/fei/nude.svg",
  30361. extra: 1402/1278,
  30362. bottom: 27/1429
  30363. }
  30364. },
  30365. heels: {
  30366. height: math.unit(0.466, "feet"),
  30367. name: "Heels",
  30368. image: {
  30369. source: "./media/characters/fei/heels.svg",
  30370. extra: 156/152,
  30371. bottom: 28/184
  30372. }
  30373. },
  30374. },
  30375. [
  30376. {
  30377. name: "Mortal",
  30378. height: math.unit(175, "cm")
  30379. },
  30380. {
  30381. name: "Normal",
  30382. height: math.unit(3500, "m")
  30383. },
  30384. {
  30385. name: "Stroll",
  30386. height: math.unit(18.4, "km"),
  30387. default: true
  30388. },
  30389. {
  30390. name: "Showoff",
  30391. height: math.unit(175, "km")
  30392. },
  30393. ]
  30394. ))
  30395. characterMakers.push(() => makeCharacter(
  30396. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  30397. {
  30398. front: {
  30399. height: math.unit(7, "feet"),
  30400. weight: math.unit(1000, "kg"),
  30401. name: "Front",
  30402. image: {
  30403. source: "./media/characters/edrax/front.svg",
  30404. extra: 2838 / 2550,
  30405. bottom: 130 / 2968
  30406. }
  30407. },
  30408. },
  30409. [
  30410. {
  30411. name: "Small",
  30412. height: math.unit(7, "feet")
  30413. },
  30414. {
  30415. name: "Normal",
  30416. height: math.unit(1500, "meters")
  30417. },
  30418. {
  30419. name: "Mega",
  30420. height: math.unit(12000000, "km"),
  30421. default: true
  30422. },
  30423. {
  30424. name: "Megamacro",
  30425. height: math.unit(10600000, "lightyears")
  30426. },
  30427. {
  30428. name: "Hypermacro",
  30429. height: math.unit(256, "yottameters")
  30430. },
  30431. ]
  30432. ))
  30433. characterMakers.push(() => makeCharacter(
  30434. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  30435. {
  30436. front: {
  30437. height: math.unit(10, "feet"),
  30438. weight: math.unit(750, "lb"),
  30439. name: "Front",
  30440. image: {
  30441. source: "./media/characters/clove/front.svg",
  30442. extra: 1918/1751,
  30443. bottom: 52/1970
  30444. }
  30445. },
  30446. back: {
  30447. height: math.unit(10, "feet"),
  30448. weight: math.unit(750, "lb"),
  30449. name: "Back",
  30450. image: {
  30451. source: "./media/characters/clove/back.svg",
  30452. extra: 1912/1747,
  30453. bottom: 50/1962
  30454. }
  30455. },
  30456. },
  30457. [
  30458. {
  30459. name: "Normal",
  30460. height: math.unit(10, "feet"),
  30461. default: true
  30462. },
  30463. ]
  30464. ))
  30465. characterMakers.push(() => makeCharacter(
  30466. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30467. {
  30468. front: {
  30469. height: math.unit(4, "feet"),
  30470. weight: math.unit(50, "lb"),
  30471. name: "Front",
  30472. image: {
  30473. source: "./media/characters/alex-rabbit/front.svg",
  30474. extra: 507 / 458,
  30475. bottom: 18.5 / 527
  30476. }
  30477. },
  30478. back: {
  30479. height: math.unit(4, "feet"),
  30480. weight: math.unit(50, "lb"),
  30481. name: "Back",
  30482. image: {
  30483. source: "./media/characters/alex-rabbit/back.svg",
  30484. extra: 502 / 460,
  30485. bottom: 18.9 / 521
  30486. }
  30487. },
  30488. },
  30489. [
  30490. {
  30491. name: "Normal",
  30492. height: math.unit(4, "feet"),
  30493. default: true
  30494. },
  30495. ]
  30496. ))
  30497. characterMakers.push(() => makeCharacter(
  30498. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  30499. {
  30500. front: {
  30501. height: math.unit(1 + 3 / 12, "feet"),
  30502. weight: math.unit(80, "lb"),
  30503. name: "Front",
  30504. image: {
  30505. source: "./media/characters/zander-rose/front.svg",
  30506. extra: 916 / 797,
  30507. bottom: 17 / 933
  30508. }
  30509. },
  30510. back: {
  30511. height: math.unit(1 + 3 / 12, "feet"),
  30512. weight: math.unit(80, "lb"),
  30513. name: "Back",
  30514. image: {
  30515. source: "./media/characters/zander-rose/back.svg",
  30516. extra: 903 / 779,
  30517. bottom: 31 / 934
  30518. }
  30519. },
  30520. },
  30521. [
  30522. {
  30523. name: "Normal",
  30524. height: math.unit(1 + 3 / 12, "feet"),
  30525. default: true
  30526. },
  30527. ]
  30528. ))
  30529. characterMakers.push(() => makeCharacter(
  30530. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  30531. {
  30532. anthro: {
  30533. height: math.unit(6, "feet"),
  30534. weight: math.unit(150, "lb"),
  30535. name: "Anthro",
  30536. image: {
  30537. source: "./media/characters/razz/anthro.svg",
  30538. extra: 1437 / 1343,
  30539. bottom: 48 / 1485
  30540. }
  30541. },
  30542. feral: {
  30543. height: math.unit(6, "feet"),
  30544. weight: math.unit(150, "lb"),
  30545. name: "Feral",
  30546. image: {
  30547. source: "./media/characters/razz/feral.svg",
  30548. extra: 2569 / 1385,
  30549. bottom: 95 / 2664
  30550. }
  30551. },
  30552. },
  30553. [
  30554. {
  30555. name: "Normal",
  30556. height: math.unit(6, "feet"),
  30557. default: true
  30558. },
  30559. ]
  30560. ))
  30561. characterMakers.push(() => makeCharacter(
  30562. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  30563. {
  30564. front: {
  30565. height: math.unit(9 + 4 / 12, "feet"),
  30566. weight: math.unit(500, "lb"),
  30567. name: "Front",
  30568. image: {
  30569. source: "./media/characters/morrigan/front.svg",
  30570. extra: 2707 / 2579,
  30571. bottom: 156 / 2863
  30572. }
  30573. },
  30574. },
  30575. [
  30576. {
  30577. name: "Normal",
  30578. height: math.unit(9 + 4 / 12, "feet"),
  30579. default: true
  30580. },
  30581. ]
  30582. ))
  30583. characterMakers.push(() => makeCharacter(
  30584. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  30585. {
  30586. front: {
  30587. height: math.unit(5, "stories"),
  30588. weight: math.unit(4000, "lb"),
  30589. name: "Front",
  30590. image: {
  30591. source: "./media/characters/jenene/front.svg",
  30592. extra: 1780 / 1710,
  30593. bottom: 57 / 1837
  30594. }
  30595. },
  30596. },
  30597. [
  30598. {
  30599. name: "Normal",
  30600. height: math.unit(5, "stories"),
  30601. default: true
  30602. },
  30603. ]
  30604. ))
  30605. characterMakers.push(() => makeCharacter(
  30606. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  30607. {
  30608. taurSfw: {
  30609. height: math.unit(10, "meters"),
  30610. weight: math.unit(17500, "kg"),
  30611. name: "Taur",
  30612. image: {
  30613. source: "./media/characters/faey/taur-sfw.svg",
  30614. extra: 1200 / 968,
  30615. bottom: 41 / 1241
  30616. }
  30617. },
  30618. chestmaw: {
  30619. height: math.unit(2.01, "meters"),
  30620. name: "Chestmaw",
  30621. image: {
  30622. source: "./media/characters/faey/chestmaw.svg"
  30623. }
  30624. },
  30625. foot: {
  30626. height: math.unit(2.43, "meters"),
  30627. name: "Foot",
  30628. image: {
  30629. source: "./media/characters/faey/foot.svg"
  30630. }
  30631. },
  30632. jaws: {
  30633. height: math.unit(1.66, "meters"),
  30634. name: "Jaws",
  30635. image: {
  30636. source: "./media/characters/faey/jaws.svg"
  30637. }
  30638. },
  30639. tongues: {
  30640. height: math.unit(2.01, "meters"),
  30641. name: "Tongues",
  30642. image: {
  30643. source: "./media/characters/faey/tongues.svg"
  30644. }
  30645. },
  30646. },
  30647. [
  30648. {
  30649. name: "Small",
  30650. height: math.unit(10, "meters"),
  30651. default: true
  30652. },
  30653. {
  30654. name: "Big",
  30655. height: math.unit(500000, "km")
  30656. },
  30657. ]
  30658. ))
  30659. characterMakers.push(() => makeCharacter(
  30660. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  30661. {
  30662. front: {
  30663. height: math.unit(7, "feet"),
  30664. weight: math.unit(275, "lb"),
  30665. name: "Front",
  30666. image: {
  30667. source: "./media/characters/roku/front.svg",
  30668. extra: 903 / 878,
  30669. bottom: 37 / 940
  30670. }
  30671. },
  30672. },
  30673. [
  30674. {
  30675. name: "Normal",
  30676. height: math.unit(7, "feet"),
  30677. default: true
  30678. },
  30679. {
  30680. name: "Macro",
  30681. height: math.unit(500, "feet")
  30682. },
  30683. {
  30684. name: "Megamacro",
  30685. height: math.unit(200, "miles")
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  30691. {
  30692. front: {
  30693. height: math.unit(6 + 2 / 12, "feet"),
  30694. weight: math.unit(150, "lb"),
  30695. name: "Front",
  30696. image: {
  30697. source: "./media/characters/lira/front.svg",
  30698. extra: 1727 / 1605,
  30699. bottom: 26 / 1753
  30700. }
  30701. },
  30702. back: {
  30703. height: math.unit(6 + 2 / 12, "feet"),
  30704. weight: math.unit(150, "lb"),
  30705. name: "Back",
  30706. image: {
  30707. source: "./media/characters/lira/back.svg",
  30708. extra: 1713/1621,
  30709. bottom: 20/1733
  30710. }
  30711. },
  30712. hand: {
  30713. height: math.unit(0.75, "feet"),
  30714. name: "Hand",
  30715. image: {
  30716. source: "./media/characters/lira/hand.svg"
  30717. }
  30718. },
  30719. maw: {
  30720. height: math.unit(0.65, "feet"),
  30721. name: "Maw",
  30722. image: {
  30723. source: "./media/characters/lira/maw.svg"
  30724. }
  30725. },
  30726. pawDigi: {
  30727. height: math.unit(1.6, "feet"),
  30728. name: "Paw Digi",
  30729. image: {
  30730. source: "./media/characters/lira/paw-digi.svg"
  30731. }
  30732. },
  30733. pawPlanti: {
  30734. height: math.unit(1.4, "feet"),
  30735. name: "Paw Planti",
  30736. image: {
  30737. source: "./media/characters/lira/paw-planti.svg"
  30738. }
  30739. },
  30740. },
  30741. [
  30742. {
  30743. name: "Normal",
  30744. height: math.unit(6 + 2 / 12, "feet"),
  30745. default: true
  30746. },
  30747. {
  30748. name: "Macro",
  30749. height: math.unit(100, "feet")
  30750. },
  30751. {
  30752. name: "Macro²",
  30753. height: math.unit(1600, "feet")
  30754. },
  30755. {
  30756. name: "Planetary",
  30757. height: math.unit(20, "earths")
  30758. },
  30759. ]
  30760. ))
  30761. characterMakers.push(() => makeCharacter(
  30762. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  30763. {
  30764. front: {
  30765. height: math.unit(6, "feet"),
  30766. weight: math.unit(150, "lb"),
  30767. name: "Front",
  30768. image: {
  30769. source: "./media/characters/hadjet/front.svg",
  30770. extra: 1480 / 1346,
  30771. bottom: 26 / 1506
  30772. }
  30773. },
  30774. frontNsfw: {
  30775. height: math.unit(6, "feet"),
  30776. weight: math.unit(150, "lb"),
  30777. name: "Front (NSFW)",
  30778. image: {
  30779. source: "./media/characters/hadjet/front-nsfw.svg",
  30780. extra: 1440 / 1358,
  30781. bottom: 52 / 1492
  30782. }
  30783. },
  30784. },
  30785. [
  30786. {
  30787. name: "Macro",
  30788. height: math.unit(10, "stories"),
  30789. default: true
  30790. },
  30791. {
  30792. name: "Megamacro",
  30793. height: math.unit(1.5, "miles")
  30794. },
  30795. {
  30796. name: "Megamacro+",
  30797. height: math.unit(5, "miles")
  30798. },
  30799. ]
  30800. ))
  30801. characterMakers.push(() => makeCharacter(
  30802. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  30803. {
  30804. side: {
  30805. height: math.unit(106, "feet"),
  30806. weight: math.unit(500, "tonnes"),
  30807. name: "Side",
  30808. image: {
  30809. source: "./media/characters/kodran/side.svg",
  30810. extra: 553 / 480,
  30811. bottom: 33 / 586
  30812. }
  30813. },
  30814. front: {
  30815. height: math.unit(132, "feet"),
  30816. weight: math.unit(500, "tonnes"),
  30817. name: "Front",
  30818. image: {
  30819. source: "./media/characters/kodran/front.svg",
  30820. extra: 667 / 643,
  30821. bottom: 42 / 709
  30822. }
  30823. },
  30824. flying: {
  30825. height: math.unit(350, "feet"),
  30826. weight: math.unit(500, "tonnes"),
  30827. name: "Flying",
  30828. image: {
  30829. source: "./media/characters/kodran/flying.svg"
  30830. }
  30831. },
  30832. foot: {
  30833. height: math.unit(33, "feet"),
  30834. name: "Foot",
  30835. image: {
  30836. source: "./media/characters/kodran/foot.svg"
  30837. }
  30838. },
  30839. footFront: {
  30840. height: math.unit(19, "feet"),
  30841. name: "Foot (Front)",
  30842. image: {
  30843. source: "./media/characters/kodran/foot-front.svg",
  30844. extra: 261 / 261,
  30845. bottom: 91 / 352
  30846. }
  30847. },
  30848. headFront: {
  30849. height: math.unit(53, "feet"),
  30850. name: "Head (Front)",
  30851. image: {
  30852. source: "./media/characters/kodran/head-front.svg"
  30853. }
  30854. },
  30855. headSide: {
  30856. height: math.unit(65, "feet"),
  30857. name: "Head (Side)",
  30858. image: {
  30859. source: "./media/characters/kodran/head-side.svg"
  30860. }
  30861. },
  30862. throat: {
  30863. height: math.unit(79, "feet"),
  30864. name: "Throat",
  30865. image: {
  30866. source: "./media/characters/kodran/throat.svg"
  30867. }
  30868. },
  30869. },
  30870. [
  30871. {
  30872. name: "Large",
  30873. height: math.unit(106, "feet"),
  30874. default: true
  30875. },
  30876. ]
  30877. ))
  30878. characterMakers.push(() => makeCharacter(
  30879. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  30880. {
  30881. side: {
  30882. height: math.unit(11, "feet"),
  30883. weight: math.unit(150, "lb"),
  30884. name: "Side",
  30885. image: {
  30886. source: "./media/characters/pyxaron/side.svg",
  30887. extra: 305 / 195,
  30888. bottom: 17 / 322
  30889. }
  30890. },
  30891. },
  30892. [
  30893. {
  30894. name: "Normal",
  30895. height: math.unit(11, "feet"),
  30896. default: true
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  30902. {
  30903. front: {
  30904. height: math.unit(6, "feet"),
  30905. weight: math.unit(150, "lb"),
  30906. name: "Front",
  30907. image: {
  30908. source: "./media/characters/meep/front.svg",
  30909. extra: 88 / 80,
  30910. bottom: 6 / 94
  30911. }
  30912. },
  30913. },
  30914. [
  30915. {
  30916. name: "Fun Sized",
  30917. height: math.unit(2, "inches"),
  30918. default: true
  30919. },
  30920. {
  30921. name: "Friend Sized",
  30922. height: math.unit(8, "inches")
  30923. },
  30924. ]
  30925. ))
  30926. characterMakers.push(() => makeCharacter(
  30927. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  30928. {
  30929. front: {
  30930. height: math.unit(15, "feet"),
  30931. weight: math.unit(2500, "lb"),
  30932. name: "Front",
  30933. image: {
  30934. source: "./media/characters/holly-rabbit/front.svg",
  30935. extra: 1433 / 1233,
  30936. bottom: 125 / 1558
  30937. }
  30938. },
  30939. dick: {
  30940. height: math.unit(4.6, "feet"),
  30941. name: "Dick",
  30942. image: {
  30943. source: "./media/characters/holly-rabbit/dick.svg"
  30944. }
  30945. },
  30946. },
  30947. [
  30948. {
  30949. name: "Normal",
  30950. height: math.unit(15, "feet"),
  30951. default: true
  30952. },
  30953. {
  30954. name: "Macro",
  30955. height: math.unit(250, "feet")
  30956. },
  30957. {
  30958. name: "Macro+",
  30959. height: math.unit(2500, "feet")
  30960. },
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  30965. {
  30966. front: {
  30967. height: math.unit(3.02, "meters"),
  30968. weight: math.unit(500, "kg"),
  30969. name: "Front",
  30970. image: {
  30971. source: "./media/characters/drena/front.svg",
  30972. extra: 282 / 243,
  30973. bottom: 8 / 290
  30974. }
  30975. },
  30976. side: {
  30977. height: math.unit(3.02, "meters"),
  30978. weight: math.unit(500, "kg"),
  30979. name: "Side",
  30980. image: {
  30981. source: "./media/characters/drena/side.svg",
  30982. extra: 280 / 245,
  30983. bottom: 10 / 290
  30984. }
  30985. },
  30986. back: {
  30987. height: math.unit(3.02, "meters"),
  30988. weight: math.unit(500, "kg"),
  30989. name: "Back",
  30990. image: {
  30991. source: "./media/characters/drena/back.svg",
  30992. extra: 278 / 243,
  30993. bottom: 2 / 280
  30994. }
  30995. },
  30996. foot: {
  30997. height: math.unit(0.75, "meters"),
  30998. name: "Foot",
  30999. image: {
  31000. source: "./media/characters/drena/foot.svg"
  31001. }
  31002. },
  31003. maw: {
  31004. height: math.unit(0.82, "meters"),
  31005. name: "Maw",
  31006. image: {
  31007. source: "./media/characters/drena/maw.svg"
  31008. }
  31009. },
  31010. eating: {
  31011. height: math.unit(0.75, "meters"),
  31012. name: "Eating",
  31013. image: {
  31014. source: "./media/characters/drena/eating.svg"
  31015. }
  31016. },
  31017. rump: {
  31018. height: math.unit(0.93, "meters"),
  31019. name: "Rump",
  31020. image: {
  31021. source: "./media/characters/drena/rump.svg"
  31022. }
  31023. },
  31024. },
  31025. [
  31026. {
  31027. name: "Normal",
  31028. height: math.unit(3.02, "meters"),
  31029. default: true
  31030. },
  31031. ]
  31032. ))
  31033. characterMakers.push(() => makeCharacter(
  31034. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  31035. {
  31036. front: {
  31037. height: math.unit(6 + 4 / 12, "feet"),
  31038. weight: math.unit(250, "lb"),
  31039. name: "Front",
  31040. image: {
  31041. source: "./media/characters/remmyzilla/front.svg",
  31042. extra: 4033 / 3588,
  31043. bottom: 123 / 4156
  31044. }
  31045. },
  31046. back: {
  31047. height: math.unit(6 + 4 / 12, "feet"),
  31048. weight: math.unit(250, "lb"),
  31049. name: "Back",
  31050. image: {
  31051. source: "./media/characters/remmyzilla/back.svg",
  31052. extra: 1696/1602,
  31053. bottom: 63/1759
  31054. }
  31055. },
  31056. paw: {
  31057. height: math.unit(1.73, "feet"),
  31058. name: "Paw",
  31059. image: {
  31060. source: "./media/characters/remmyzilla/paw.svg"
  31061. },
  31062. extraAttributes: {
  31063. "toeSize": {
  31064. name: "Toe Size",
  31065. power: 2,
  31066. type: "area",
  31067. base: math.unit(0.0035, "m^2")
  31068. },
  31069. "padSize": {
  31070. name: "Pad Size",
  31071. power: 2,
  31072. type: "area",
  31073. base: math.unit(0.015, "m^2")
  31074. },
  31075. "pawsize": {
  31076. name: "Paw Size",
  31077. power: 2,
  31078. type: "area",
  31079. base: math.unit(0.072, "m^2")
  31080. },
  31081. }
  31082. },
  31083. maw: {
  31084. height: math.unit(1.73, "feet"),
  31085. name: "Maw",
  31086. image: {
  31087. source: "./media/characters/remmyzilla/maw.svg"
  31088. }
  31089. },
  31090. },
  31091. [
  31092. {
  31093. name: "Normal",
  31094. height: math.unit(6 + 4 / 12, "feet")
  31095. },
  31096. {
  31097. name: "Minimacro",
  31098. height: math.unit(12 + 8 / 12, "feet")
  31099. },
  31100. {
  31101. name: "Normal",
  31102. height: math.unit(640, "feet"),
  31103. default: true
  31104. },
  31105. {
  31106. name: "Megamacro",
  31107. height: math.unit(6400, "feet")
  31108. },
  31109. {
  31110. name: "Gigamacro",
  31111. height: math.unit(64000, "miles")
  31112. },
  31113. ]
  31114. ))
  31115. characterMakers.push(() => makeCharacter(
  31116. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  31117. {
  31118. front: {
  31119. height: math.unit(2.5, "meters"),
  31120. weight: math.unit(300, "lb"),
  31121. name: "Front",
  31122. image: {
  31123. source: "./media/characters/lawrence/front.svg",
  31124. extra: 357 / 335,
  31125. bottom: 30 / 387
  31126. }
  31127. },
  31128. back: {
  31129. height: math.unit(2.5, "meters"),
  31130. weight: math.unit(300, "lb"),
  31131. name: "Back",
  31132. image: {
  31133. source: "./media/characters/lawrence/back.svg",
  31134. extra: 357 / 338,
  31135. bottom: 16 / 373
  31136. }
  31137. },
  31138. head: {
  31139. height: math.unit(0.9, "meter"),
  31140. name: "Head",
  31141. image: {
  31142. source: "./media/characters/lawrence/head.svg"
  31143. }
  31144. },
  31145. maw: {
  31146. height: math.unit(0.7, "meter"),
  31147. name: "Maw",
  31148. image: {
  31149. source: "./media/characters/lawrence/maw.svg"
  31150. }
  31151. },
  31152. footBottom: {
  31153. height: math.unit(0.5, "meter"),
  31154. name: "Foot (Bottom)",
  31155. image: {
  31156. source: "./media/characters/lawrence/foot-bottom.svg"
  31157. }
  31158. },
  31159. footTop: {
  31160. height: math.unit(0.5, "meter"),
  31161. name: "Foot (Top)",
  31162. image: {
  31163. source: "./media/characters/lawrence/foot-top.svg"
  31164. }
  31165. },
  31166. },
  31167. [
  31168. {
  31169. name: "Normal",
  31170. height: math.unit(2.5, "meters"),
  31171. default: true
  31172. },
  31173. {
  31174. name: "Macro",
  31175. height: math.unit(95, "meters")
  31176. },
  31177. {
  31178. name: "Megamacro",
  31179. height: math.unit(150, "km")
  31180. },
  31181. ]
  31182. ))
  31183. characterMakers.push(() => makeCharacter(
  31184. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  31185. {
  31186. front: {
  31187. height: math.unit(4.2, "meters"),
  31188. preyCapacity: math.unit(50, "m^3"),
  31189. weight: math.unit(30, "tonnes"),
  31190. name: "Front",
  31191. image: {
  31192. source: "./media/characters/sydney/front.svg",
  31193. extra: 1177/1129,
  31194. bottom: 197/1374
  31195. },
  31196. extraAttributes: {
  31197. "length": {
  31198. name: "Length",
  31199. power: 1,
  31200. type: "length",
  31201. base: math.unit(21, "meters")
  31202. },
  31203. }
  31204. },
  31205. },
  31206. [
  31207. {
  31208. name: "Normal",
  31209. height: math.unit(4.2, "meters"),
  31210. default: true
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  31216. {
  31217. back: {
  31218. height: math.unit(201, "feet"),
  31219. name: "Back",
  31220. image: {
  31221. source: "./media/characters/jessica/back.svg",
  31222. extra: 273 / 259,
  31223. bottom: 7 / 280
  31224. }
  31225. },
  31226. },
  31227. [
  31228. {
  31229. name: "Normal",
  31230. height: math.unit(201, "feet"),
  31231. default: true
  31232. },
  31233. {
  31234. name: "Megamacro",
  31235. height: math.unit(8, "miles")
  31236. },
  31237. ]
  31238. ))
  31239. characterMakers.push(() => makeCharacter(
  31240. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  31241. {
  31242. side: {
  31243. height: math.unit(5.6, "m"),
  31244. weight: math.unit(8000, "kg"),
  31245. name: "Side",
  31246. image: {
  31247. source: "./media/characters/victoria/side.svg",
  31248. extra: 1542/1229,
  31249. bottom: 124/1666
  31250. }
  31251. },
  31252. maw: {
  31253. height: math.unit(7.14, "feet"),
  31254. name: "Maw",
  31255. image: {
  31256. source: "./media/characters/victoria/maw.svg"
  31257. }
  31258. },
  31259. },
  31260. [
  31261. {
  31262. name: "Normal",
  31263. height: math.unit(5.6, "m"),
  31264. default: true
  31265. },
  31266. ]
  31267. ))
  31268. characterMakers.push(() => makeCharacter(
  31269. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  31270. {
  31271. front: {
  31272. height: math.unit(5 + 6 / 12, "feet"),
  31273. name: "Front",
  31274. image: {
  31275. source: "./media/characters/cat/front.svg",
  31276. extra: 1449/1295,
  31277. bottom: 34/1483
  31278. },
  31279. form: "cat",
  31280. default: true
  31281. },
  31282. back: {
  31283. height: math.unit(5 + 6 / 12, "feet"),
  31284. name: "Back",
  31285. image: {
  31286. source: "./media/characters/cat/back.svg",
  31287. extra: 1466/1301,
  31288. bottom: 19/1485
  31289. },
  31290. form: "cat"
  31291. },
  31292. taur: {
  31293. height: math.unit(7, "feet"),
  31294. name: "Taur",
  31295. image: {
  31296. source: "./media/characters/cat/taur.svg",
  31297. extra: 1389/1233,
  31298. bottom: 83/1472
  31299. },
  31300. form: "taur",
  31301. default: true
  31302. },
  31303. lucarioFront: {
  31304. height: math.unit(4, "feet"),
  31305. name: "Lucario (Front)",
  31306. image: {
  31307. source: "./media/characters/cat/lucario-front.svg",
  31308. extra: 1149/1019,
  31309. bottom: 84/1233
  31310. },
  31311. form: "lucario",
  31312. default: true
  31313. },
  31314. lucarioBack: {
  31315. height: math.unit(4, "feet"),
  31316. name: "Lucario (Back)",
  31317. image: {
  31318. source: "./media/characters/cat/lucario-back.svg",
  31319. extra: 1190/1059,
  31320. bottom: 33/1223
  31321. },
  31322. form: "lucario"
  31323. },
  31324. megaLucario: {
  31325. height: math.unit(4, "feet"),
  31326. name: "Mega Lucario",
  31327. image: {
  31328. source: "./media/characters/cat/mega-lucario.svg",
  31329. extra: 1515 / 1319,
  31330. bottom: 63 / 1578
  31331. },
  31332. form: "lucario"
  31333. },
  31334. nickit: {
  31335. height: math.unit(2, "feet"),
  31336. name: "Nickit",
  31337. image: {
  31338. source: "./media/characters/cat/nickit.svg",
  31339. extra: 1980 / 1585,
  31340. bottom: 102 / 2082
  31341. },
  31342. form: "nickit",
  31343. default: true
  31344. },
  31345. lopunnyFront: {
  31346. height: math.unit(5, "feet"),
  31347. name: "Lopunny (Front)",
  31348. image: {
  31349. source: "./media/characters/cat/lopunny-front.svg",
  31350. extra: 1782 / 1469,
  31351. bottom: 38 / 1820
  31352. },
  31353. form: "lopunny",
  31354. default: true
  31355. },
  31356. lopunnyBack: {
  31357. height: math.unit(5, "feet"),
  31358. name: "Lopunny (Back)",
  31359. image: {
  31360. source: "./media/characters/cat/lopunny-back.svg",
  31361. extra: 1660 / 1490,
  31362. bottom: 25 / 1685
  31363. },
  31364. form: "lopunny"
  31365. },
  31366. },
  31367. [
  31368. {
  31369. name: "Really small",
  31370. height: math.unit(1, "nm"),
  31371. allForms: true
  31372. },
  31373. {
  31374. name: "Micro",
  31375. height: math.unit(5, "inches"),
  31376. allForms: true
  31377. },
  31378. {
  31379. name: "Normal",
  31380. height: math.unit(5 + 6 / 12, "feet"),
  31381. default: true,
  31382. form: "cat"
  31383. },
  31384. {
  31385. name: "Normal",
  31386. height: math.unit(7, "feet"),
  31387. default: true,
  31388. form: "taur"
  31389. },
  31390. {
  31391. name: "Normal",
  31392. height: math.unit(4, "feet"),
  31393. default: true,
  31394. form: "lucario"
  31395. },
  31396. {
  31397. name: "Normal",
  31398. height: math.unit(2, "feet"),
  31399. default: true,
  31400. form: "nickit"
  31401. },
  31402. {
  31403. name: "Normal",
  31404. height: math.unit(5, "feet"),
  31405. default: true,
  31406. form: "lopunny"
  31407. },
  31408. {
  31409. name: "Macro",
  31410. height: math.unit(50, "feet"),
  31411. allForms: true
  31412. },
  31413. {
  31414. name: "Macro+",
  31415. height: math.unit(150, "feet"),
  31416. allForms: true
  31417. },
  31418. {
  31419. name: "Megamacro",
  31420. height: math.unit(100, "miles"),
  31421. allForms: true
  31422. },
  31423. ],
  31424. {
  31425. "cat": {
  31426. name: "Cat",
  31427. default: true
  31428. },
  31429. "taur": {
  31430. name: "Taur",
  31431. },
  31432. "lucario": {
  31433. name: "Lucario",
  31434. },
  31435. "nickit": {
  31436. name: "Nickit",
  31437. },
  31438. "lopunny": {
  31439. name: "Lopunny",
  31440. }
  31441. }
  31442. ))
  31443. characterMakers.push(() => makeCharacter(
  31444. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  31445. {
  31446. front: {
  31447. height: math.unit(63.4, "meters"),
  31448. weight: math.unit(3.28349e+6, "kilograms"),
  31449. name: "Front",
  31450. image: {
  31451. source: "./media/characters/kirina-violet/front.svg",
  31452. extra: 2812 / 2725,
  31453. bottom: 0 / 2812
  31454. }
  31455. },
  31456. back: {
  31457. height: math.unit(63.4, "meters"),
  31458. weight: math.unit(3.28349e+6, "kilograms"),
  31459. name: "Back",
  31460. image: {
  31461. source: "./media/characters/kirina-violet/back.svg",
  31462. extra: 2812 / 2725,
  31463. bottom: 0 / 2812
  31464. }
  31465. },
  31466. mouth: {
  31467. height: math.unit(4.35, "meters"),
  31468. name: "Mouth",
  31469. image: {
  31470. source: "./media/characters/kirina-violet/mouth.svg"
  31471. }
  31472. },
  31473. paw: {
  31474. height: math.unit(5.6, "meters"),
  31475. name: "Paw",
  31476. image: {
  31477. source: "./media/characters/kirina-violet/paw.svg"
  31478. }
  31479. },
  31480. tail: {
  31481. height: math.unit(18, "meters"),
  31482. name: "Tail",
  31483. image: {
  31484. source: "./media/characters/kirina-violet/tail.svg"
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Macro",
  31491. height: math.unit(63.4, "meters"),
  31492. default: true
  31493. },
  31494. ]
  31495. ))
  31496. characterMakers.push(() => makeCharacter(
  31497. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  31498. {
  31499. front: {
  31500. height: math.unit(75, "feet"),
  31501. name: "Front",
  31502. image: {
  31503. source: "./media/characters/cat-gigachu/front.svg",
  31504. extra: 1239/1027,
  31505. bottom: 32/1271
  31506. }
  31507. },
  31508. back: {
  31509. height: math.unit(75, "feet"),
  31510. name: "Back",
  31511. image: {
  31512. source: "./media/characters/cat-gigachu/back.svg",
  31513. extra: 1229/1030,
  31514. bottom: 9/1238
  31515. }
  31516. },
  31517. },
  31518. [
  31519. {
  31520. name: "Dynamax",
  31521. height: math.unit(75, "feet"),
  31522. default: true
  31523. },
  31524. ]
  31525. ))
  31526. characterMakers.push(() => makeCharacter(
  31527. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  31528. {
  31529. front: {
  31530. height: math.unit(6, "feet"),
  31531. weight: math.unit(150, "lb"),
  31532. name: "Front",
  31533. image: {
  31534. source: "./media/characters/sfaiyan/front.svg",
  31535. extra: 999 / 978,
  31536. bottom: 5 / 1004
  31537. }
  31538. },
  31539. },
  31540. [
  31541. {
  31542. name: "Normal",
  31543. height: math.unit(1.82, "meters")
  31544. },
  31545. {
  31546. name: "Giant",
  31547. height: math.unit(2.27, "km"),
  31548. default: true
  31549. },
  31550. ]
  31551. ))
  31552. characterMakers.push(() => makeCharacter(
  31553. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  31554. {
  31555. front: {
  31556. height: math.unit(179, "cm"),
  31557. weight: math.unit(100, "kg"),
  31558. name: "Front",
  31559. image: {
  31560. source: "./media/characters/raunehkeli/front.svg",
  31561. extra: 1934 / 1926,
  31562. bottom: 0 / 1934
  31563. }
  31564. },
  31565. },
  31566. [
  31567. {
  31568. name: "Normal",
  31569. height: math.unit(179, "cm")
  31570. },
  31571. {
  31572. name: "Maximum",
  31573. height: math.unit(575, "meters"),
  31574. default: true
  31575. },
  31576. ]
  31577. ))
  31578. characterMakers.push(() => makeCharacter(
  31579. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  31580. {
  31581. front: {
  31582. height: math.unit(6, "feet"),
  31583. weight: math.unit(150, "lb"),
  31584. name: "Front",
  31585. image: {
  31586. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  31587. extra: 2625 / 2518,
  31588. bottom: 60 / 2685
  31589. }
  31590. },
  31591. },
  31592. [
  31593. {
  31594. name: "Normal",
  31595. height: math.unit(6 + 2 / 12, "feet")
  31596. },
  31597. {
  31598. name: "Macro",
  31599. height: math.unit(1180, "feet"),
  31600. default: true
  31601. },
  31602. ]
  31603. ))
  31604. characterMakers.push(() => makeCharacter(
  31605. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  31606. {
  31607. front: {
  31608. height: math.unit(5 + 6 / 12, "feet"),
  31609. weight: math.unit(108, "lb"),
  31610. name: "Front",
  31611. image: {
  31612. source: "./media/characters/lilith-zott/front.svg",
  31613. extra: 2510 / 2238,
  31614. bottom: 100 / 2610
  31615. }
  31616. },
  31617. frontDressed: {
  31618. height: math.unit(5 + 6 / 12, "feet"),
  31619. weight: math.unit(108, "lb"),
  31620. name: "Front (Dressed)",
  31621. image: {
  31622. source: "./media/characters/lilith-zott/front-dressed.svg",
  31623. extra: 2510 / 2238,
  31624. bottom: 100 / 2610
  31625. }
  31626. },
  31627. },
  31628. [
  31629. {
  31630. name: "Normal",
  31631. height: math.unit(5 + 6 / 12, "feet")
  31632. },
  31633. {
  31634. name: "Macro",
  31635. height: math.unit(1030, "feet"),
  31636. default: true
  31637. },
  31638. ]
  31639. ))
  31640. characterMakers.push(() => makeCharacter(
  31641. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  31642. {
  31643. front: {
  31644. height: math.unit(6, "feet"),
  31645. weight: math.unit(150, "lb"),
  31646. name: "Front",
  31647. image: {
  31648. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  31649. extra: 2567 / 2435,
  31650. bottom: 39 / 2606
  31651. }
  31652. },
  31653. frontSuper: {
  31654. height: math.unit(6, "feet"),
  31655. name: "Front (Super)",
  31656. image: {
  31657. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  31658. extra: 2567 / 2435,
  31659. bottom: 39 / 2606
  31660. }
  31661. },
  31662. },
  31663. [
  31664. {
  31665. name: "Normal",
  31666. height: math.unit(5 + 10 / 12, "feet")
  31667. },
  31668. {
  31669. name: "Macro",
  31670. height: math.unit(1100, "feet"),
  31671. default: true
  31672. },
  31673. ]
  31674. ))
  31675. characterMakers.push(() => makeCharacter(
  31676. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  31677. {
  31678. front: {
  31679. height: math.unit(100, "miles"),
  31680. name: "Front",
  31681. image: {
  31682. source: "./media/characters/sona/front.svg",
  31683. extra: 2433 / 2201,
  31684. bottom: 53 / 2486
  31685. }
  31686. },
  31687. foot: {
  31688. height: math.unit(16.1, "miles"),
  31689. name: "Foot",
  31690. image: {
  31691. source: "./media/characters/sona/foot.svg"
  31692. }
  31693. },
  31694. },
  31695. [
  31696. {
  31697. name: "Macro",
  31698. height: math.unit(100, "miles"),
  31699. default: true
  31700. },
  31701. ]
  31702. ))
  31703. characterMakers.push(() => makeCharacter(
  31704. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  31705. {
  31706. front: {
  31707. height: math.unit(6, "feet"),
  31708. weight: math.unit(150, "lb"),
  31709. name: "Front",
  31710. image: {
  31711. source: "./media/characters/bailey/front.svg",
  31712. extra: 1778 / 1724,
  31713. bottom: 30 / 1808
  31714. }
  31715. },
  31716. },
  31717. [
  31718. {
  31719. name: "Micro",
  31720. height: math.unit(4, "inches")
  31721. },
  31722. {
  31723. name: "Normal",
  31724. height: math.unit(5 + 5 / 12, "feet"),
  31725. default: true
  31726. },
  31727. {
  31728. name: "Macro",
  31729. height: math.unit(250, "feet")
  31730. },
  31731. {
  31732. name: "Megamacro",
  31733. height: math.unit(100, "miles")
  31734. },
  31735. ]
  31736. ))
  31737. characterMakers.push(() => makeCharacter(
  31738. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  31739. {
  31740. front: {
  31741. height: math.unit(5 + 2 / 12, "feet"),
  31742. weight: math.unit(120, "lb"),
  31743. name: "Front",
  31744. image: {
  31745. source: "./media/characters/snaps/front.svg",
  31746. extra: 2370 / 2177,
  31747. bottom: 48 / 2418
  31748. }
  31749. },
  31750. back: {
  31751. height: math.unit(5 + 2 / 12, "feet"),
  31752. weight: math.unit(120, "lb"),
  31753. name: "Back",
  31754. image: {
  31755. source: "./media/characters/snaps/back.svg",
  31756. extra: 2408 / 2258,
  31757. bottom: 15 / 2423
  31758. }
  31759. },
  31760. },
  31761. [
  31762. {
  31763. name: "Micro",
  31764. height: math.unit(9, "inches")
  31765. },
  31766. {
  31767. name: "Normal",
  31768. height: math.unit(5 + 2 / 12, "feet"),
  31769. default: true
  31770. },
  31771. {
  31772. name: "Mini Macro",
  31773. height: math.unit(10, "feet")
  31774. },
  31775. ]
  31776. ))
  31777. characterMakers.push(() => makeCharacter(
  31778. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  31779. {
  31780. front: {
  31781. height: math.unit(1.8, "meters"),
  31782. weight: math.unit(85, "kg"),
  31783. name: "Front",
  31784. image: {
  31785. source: "./media/characters/azteck/front.svg",
  31786. extra: 2815 / 2625,
  31787. bottom: 89 / 2904
  31788. }
  31789. },
  31790. back: {
  31791. height: math.unit(1.8, "meters"),
  31792. weight: math.unit(85, "kg"),
  31793. name: "Back",
  31794. image: {
  31795. source: "./media/characters/azteck/back.svg",
  31796. extra: 2856 / 2648,
  31797. bottom: 85 / 2941
  31798. }
  31799. },
  31800. frontDressed: {
  31801. height: math.unit(1.8, "meters"),
  31802. weight: math.unit(85, "kg"),
  31803. name: "Front (Dressed)",
  31804. image: {
  31805. source: "./media/characters/azteck/front-dressed.svg",
  31806. extra: 2147 / 2003,
  31807. bottom: 68 / 2215
  31808. }
  31809. },
  31810. head: {
  31811. height: math.unit(0.47, "meters"),
  31812. weight: math.unit(85, "kg"),
  31813. name: "Head",
  31814. image: {
  31815. source: "./media/characters/azteck/head.svg"
  31816. }
  31817. },
  31818. },
  31819. [
  31820. {
  31821. name: "Bite sized",
  31822. height: math.unit(16, "cm")
  31823. },
  31824. {
  31825. name: "Normal",
  31826. height: math.unit(1.8, "meters"),
  31827. default: true
  31828. },
  31829. ]
  31830. ))
  31831. characterMakers.push(() => makeCharacter(
  31832. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  31833. {
  31834. front: {
  31835. height: math.unit(6, "feet"),
  31836. weight: math.unit(150, "lb"),
  31837. name: "Front",
  31838. image: {
  31839. source: "./media/characters/pidge/front.svg",
  31840. extra: 1936/1820,
  31841. bottom: 0/1936
  31842. }
  31843. },
  31844. back: {
  31845. height: math.unit(6, "feet"),
  31846. weight: math.unit(150, "lb"),
  31847. name: "Back",
  31848. image: {
  31849. source: "./media/characters/pidge/back.svg",
  31850. extra: 1938/1843,
  31851. bottom: 0/1938
  31852. }
  31853. },
  31854. casual: {
  31855. height: math.unit(6, "feet"),
  31856. weight: math.unit(150, "lb"),
  31857. name: "Casual",
  31858. image: {
  31859. source: "./media/characters/pidge/casual.svg",
  31860. extra: 1936/1820,
  31861. bottom: 0/1936
  31862. }
  31863. },
  31864. tech: {
  31865. height: math.unit(6, "feet"),
  31866. weight: math.unit(150, "lb"),
  31867. name: "Tech",
  31868. image: {
  31869. source: "./media/characters/pidge/tech.svg",
  31870. extra: 1802/1682,
  31871. bottom: 0/1802
  31872. }
  31873. },
  31874. head: {
  31875. height: math.unit(1.61, "feet"),
  31876. name: "Head",
  31877. image: {
  31878. source: "./media/characters/pidge/head.svg"
  31879. }
  31880. },
  31881. collar: {
  31882. height: math.unit(0.82, "feet"),
  31883. name: "Collar",
  31884. image: {
  31885. source: "./media/characters/pidge/collar.svg"
  31886. }
  31887. },
  31888. },
  31889. [
  31890. {
  31891. name: "Macro",
  31892. height: math.unit(2, "mile"),
  31893. default: true
  31894. },
  31895. {
  31896. name: "PUPPY",
  31897. height: math.unit(20, "miles")
  31898. },
  31899. ]
  31900. ))
  31901. characterMakers.push(() => makeCharacter(
  31902. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  31903. {
  31904. front: {
  31905. height: math.unit(6, "feet"),
  31906. weight: math.unit(150, "lb"),
  31907. name: "Front",
  31908. image: {
  31909. source: "./media/characters/en/front.svg",
  31910. extra: 1697 / 1563,
  31911. bottom: 103 / 1800
  31912. }
  31913. },
  31914. back: {
  31915. height: math.unit(6, "feet"),
  31916. weight: math.unit(150, "lb"),
  31917. name: "Back",
  31918. image: {
  31919. source: "./media/characters/en/back.svg",
  31920. extra: 1700 / 1570,
  31921. bottom: 51 / 1751
  31922. }
  31923. },
  31924. frontDressed: {
  31925. height: math.unit(6, "feet"),
  31926. weight: math.unit(150, "lb"),
  31927. name: "Front (Dressed)",
  31928. image: {
  31929. source: "./media/characters/en/front-dressed.svg",
  31930. extra: 1697 / 1563,
  31931. bottom: 103 / 1800
  31932. }
  31933. },
  31934. backDressed: {
  31935. height: math.unit(6, "feet"),
  31936. weight: math.unit(150, "lb"),
  31937. name: "Back (Dressed)",
  31938. image: {
  31939. source: "./media/characters/en/back-dressed.svg",
  31940. extra: 1700 / 1570,
  31941. bottom: 51 / 1751
  31942. }
  31943. },
  31944. },
  31945. [
  31946. {
  31947. name: "Macro",
  31948. height: math.unit(210, "feet"),
  31949. default: true
  31950. },
  31951. ]
  31952. ))
  31953. characterMakers.push(() => makeCharacter(
  31954. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  31955. {
  31956. front: {
  31957. height: math.unit(6, "feet"),
  31958. weight: math.unit(150, "lb"),
  31959. name: "Front",
  31960. image: {
  31961. source: "./media/characters/haze-orris/front.svg",
  31962. extra: 3975 / 3525,
  31963. bottom: 137 / 4112
  31964. }
  31965. },
  31966. },
  31967. [
  31968. {
  31969. name: "Micro",
  31970. height: math.unit(150, "mm"),
  31971. default: true
  31972. },
  31973. ]
  31974. ))
  31975. characterMakers.push(() => makeCharacter(
  31976. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  31977. {
  31978. front: {
  31979. height: math.unit(6, "feet"),
  31980. weight: math.unit(150, "lb"),
  31981. name: "Front",
  31982. image: {
  31983. source: "./media/characters/casselene-yaro/front.svg",
  31984. extra: 4721 / 4541,
  31985. bottom: 82 / 4803
  31986. }
  31987. },
  31988. back: {
  31989. height: math.unit(6, "feet"),
  31990. weight: math.unit(150, "lb"),
  31991. name: "Back",
  31992. image: {
  31993. source: "./media/characters/casselene-yaro/back.svg",
  31994. extra: 4569 / 4377,
  31995. bottom: 69 / 4638
  31996. }
  31997. },
  31998. dressed: {
  31999. height: math.unit(6, "feet"),
  32000. weight: math.unit(150, "lb"),
  32001. name: "Dressed",
  32002. image: {
  32003. source: "./media/characters/casselene-yaro/dressed.svg",
  32004. extra: 4721 / 4541,
  32005. bottom: 82 / 4803
  32006. }
  32007. },
  32008. maw: {
  32009. height: math.unit(1, "feet"),
  32010. name: "Maw",
  32011. image: {
  32012. source: "./media/characters/casselene-yaro/maw.svg"
  32013. }
  32014. },
  32015. },
  32016. [
  32017. {
  32018. name: "Macro",
  32019. height: math.unit(190, "feet"),
  32020. default: true
  32021. },
  32022. ]
  32023. ))
  32024. characterMakers.push(() => makeCharacter(
  32025. { name: "Platine", species: ["raven"], tags: ["anthro"] },
  32026. {
  32027. front: {
  32028. height: math.unit(10, "feet"),
  32029. weight: math.unit(15015, "lb"),
  32030. name: "Front",
  32031. image: {
  32032. source: "./media/characters/platine/front.svg",
  32033. extra: 1741/1650,
  32034. bottom: 84/1825
  32035. }
  32036. },
  32037. side: {
  32038. height: math.unit(10, "feet"),
  32039. weight: math.unit(15015, "lb"),
  32040. name: "Side",
  32041. image: {
  32042. source: "./media/characters/platine/side.svg",
  32043. extra: 1790/1705,
  32044. bottom: 29/1819
  32045. }
  32046. },
  32047. },
  32048. [
  32049. {
  32050. name: "Normal",
  32051. height: math.unit(10, "feet"),
  32052. default: true
  32053. },
  32054. {
  32055. name: "Macro",
  32056. height: math.unit(100, "feet")
  32057. },
  32058. {
  32059. name: "Megamacro",
  32060. height: math.unit(1000, "feet")
  32061. },
  32062. ]
  32063. ))
  32064. characterMakers.push(() => makeCharacter(
  32065. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  32066. {
  32067. front: {
  32068. height: math.unit(15 + 5 / 12, "feet"),
  32069. weight: math.unit(4600, "lb"),
  32070. name: "Front",
  32071. image: {
  32072. source: "./media/characters/neapolitan-ananassa/front.svg",
  32073. extra: 2903 / 2736,
  32074. bottom: 0 / 2903
  32075. }
  32076. },
  32077. side: {
  32078. height: math.unit(15 + 5 / 12, "feet"),
  32079. weight: math.unit(4600, "lb"),
  32080. name: "Side",
  32081. image: {
  32082. source: "./media/characters/neapolitan-ananassa/side.svg",
  32083. extra: 2925 / 2719,
  32084. bottom: 0 / 2925
  32085. }
  32086. },
  32087. back: {
  32088. height: math.unit(15 + 5 / 12, "feet"),
  32089. weight: math.unit(4600, "lb"),
  32090. name: "Back",
  32091. image: {
  32092. source: "./media/characters/neapolitan-ananassa/back.svg",
  32093. extra: 2903 / 2736,
  32094. bottom: 0 / 2903
  32095. }
  32096. },
  32097. },
  32098. [
  32099. {
  32100. name: "Normal",
  32101. height: math.unit(15 + 5 / 12, "feet"),
  32102. default: true
  32103. },
  32104. {
  32105. name: "Post-Millenium",
  32106. height: math.unit(35 + 5 / 12, "feet")
  32107. },
  32108. {
  32109. name: "Post-Era",
  32110. height: math.unit(450 + 5 / 12, "feet")
  32111. },
  32112. ]
  32113. ))
  32114. characterMakers.push(() => makeCharacter(
  32115. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  32116. {
  32117. front: {
  32118. height: math.unit(300, "meters"),
  32119. weight: math.unit(125000, "tonnes"),
  32120. name: "Front",
  32121. image: {
  32122. source: "./media/characters/pazuzu/front.svg",
  32123. extra: 877 / 794,
  32124. bottom: 47 / 924
  32125. }
  32126. },
  32127. },
  32128. [
  32129. {
  32130. name: "Macro",
  32131. height: math.unit(300, "meters"),
  32132. default: true
  32133. },
  32134. ]
  32135. ))
  32136. characterMakers.push(() => makeCharacter(
  32137. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  32138. {
  32139. side: {
  32140. height: math.unit(10 + 7 / 12, "feet"),
  32141. weight: math.unit(2.5, "tons"),
  32142. name: "Side",
  32143. image: {
  32144. source: "./media/characters/aasha/side.svg",
  32145. extra: 1345 / 1245,
  32146. bottom: 111 / 1456
  32147. }
  32148. },
  32149. back: {
  32150. height: math.unit(10 + 7 / 12, "feet"),
  32151. weight: math.unit(2.5, "tons"),
  32152. name: "Back",
  32153. image: {
  32154. source: "./media/characters/aasha/back.svg",
  32155. extra: 1133 / 1057,
  32156. bottom: 257 / 1390
  32157. }
  32158. },
  32159. },
  32160. [
  32161. {
  32162. name: "Normal",
  32163. height: math.unit(10 + 7 / 12, "feet"),
  32164. default: true
  32165. },
  32166. ]
  32167. ))
  32168. characterMakers.push(() => makeCharacter(
  32169. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  32170. {
  32171. front: {
  32172. height: math.unit(6 + 3 / 12, "feet"),
  32173. name: "Front",
  32174. image: {
  32175. source: "./media/characters/nevan/front.svg",
  32176. extra: 704 / 704,
  32177. bottom: 28 / 732
  32178. }
  32179. },
  32180. back: {
  32181. height: math.unit(6 + 3 / 12, "feet"),
  32182. name: "Back",
  32183. image: {
  32184. source: "./media/characters/nevan/back.svg",
  32185. extra: 714 / 714,
  32186. bottom: 21 / 735
  32187. }
  32188. },
  32189. frontFlaccid: {
  32190. height: math.unit(6 + 3 / 12, "feet"),
  32191. name: "Front (Flaccid)",
  32192. image: {
  32193. source: "./media/characters/nevan/front-flaccid.svg",
  32194. extra: 704 / 704,
  32195. bottom: 28 / 732
  32196. }
  32197. },
  32198. frontErect: {
  32199. height: math.unit(6 + 3 / 12, "feet"),
  32200. name: "Front (Erect)",
  32201. image: {
  32202. source: "./media/characters/nevan/front-erect.svg",
  32203. extra: 704 / 704,
  32204. bottom: 28 / 732
  32205. }
  32206. },
  32207. backFlaccid: {
  32208. height: math.unit(6 + 3 / 12, "feet"),
  32209. name: "Back (Flaccid)",
  32210. image: {
  32211. source: "./media/characters/nevan/back-flaccid.svg",
  32212. extra: 714 / 714,
  32213. bottom: 21 / 735
  32214. }
  32215. },
  32216. },
  32217. [
  32218. {
  32219. name: "Normal",
  32220. height: math.unit(6 + 3 / 12, "feet"),
  32221. default: true
  32222. },
  32223. ]
  32224. ))
  32225. characterMakers.push(() => makeCharacter(
  32226. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  32227. {
  32228. front: {
  32229. height: math.unit(4, "feet"),
  32230. name: "Front",
  32231. image: {
  32232. source: "./media/characters/arhan/front.svg",
  32233. extra: 3368 / 3133,
  32234. bottom: 0 / 3368
  32235. }
  32236. },
  32237. side: {
  32238. height: math.unit(4, "feet"),
  32239. name: "Side",
  32240. image: {
  32241. source: "./media/characters/arhan/side.svg",
  32242. extra: 3347 / 3105,
  32243. bottom: 0 / 3347
  32244. }
  32245. },
  32246. tongue: {
  32247. height: math.unit(1.42, "feet"),
  32248. name: "Tongue",
  32249. image: {
  32250. source: "./media/characters/arhan/tongue.svg"
  32251. }
  32252. },
  32253. head: {
  32254. height: math.unit(0.85, "feet"),
  32255. name: "Head",
  32256. image: {
  32257. source: "./media/characters/arhan/head.svg"
  32258. }
  32259. },
  32260. },
  32261. [
  32262. {
  32263. name: "Normal",
  32264. height: math.unit(4, "feet"),
  32265. default: true
  32266. },
  32267. ]
  32268. ))
  32269. characterMakers.push(() => makeCharacter(
  32270. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  32271. {
  32272. front: {
  32273. height: math.unit(5 + 7.5 / 12, "feet"),
  32274. weight: math.unit(120, "lb"),
  32275. name: "Front",
  32276. image: {
  32277. source: "./media/characters/digi-duncan/front.svg",
  32278. extra: 330 / 326,
  32279. bottom: 16 / 346
  32280. }
  32281. },
  32282. side: {
  32283. height: math.unit(5 + 7.5 / 12, "feet"),
  32284. weight: math.unit(120, "lb"),
  32285. name: "Side",
  32286. image: {
  32287. source: "./media/characters/digi-duncan/side.svg",
  32288. extra: 341 / 337,
  32289. bottom: 1 / 342
  32290. }
  32291. },
  32292. back: {
  32293. height: math.unit(5 + 7.5 / 12, "feet"),
  32294. weight: math.unit(120, "lb"),
  32295. name: "Back",
  32296. image: {
  32297. source: "./media/characters/digi-duncan/back.svg",
  32298. extra: 330 / 326,
  32299. bottom: 12 / 342
  32300. }
  32301. },
  32302. },
  32303. [
  32304. {
  32305. name: "Speck",
  32306. height: math.unit(0.25, "mm")
  32307. },
  32308. {
  32309. name: "Micro",
  32310. height: math.unit(5, "mm")
  32311. },
  32312. {
  32313. name: "Tiny",
  32314. height: math.unit(0.5, "inches"),
  32315. default: true
  32316. },
  32317. {
  32318. name: "Human",
  32319. height: math.unit(5 + 7.5 / 12, "feet")
  32320. },
  32321. {
  32322. name: "Minigiant",
  32323. height: math.unit(8 + 5.25, "feet")
  32324. },
  32325. {
  32326. name: "Giant",
  32327. height: math.unit(2000, "feet")
  32328. },
  32329. {
  32330. name: "Mega",
  32331. height: math.unit(371.1, "miles")
  32332. },
  32333. ]
  32334. ))
  32335. characterMakers.push(() => makeCharacter(
  32336. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  32337. {
  32338. front: {
  32339. height: math.unit(2, "meters"),
  32340. weight: math.unit(350, "kg"),
  32341. name: "Front",
  32342. image: {
  32343. source: "./media/characters/jagaz-soulbreaker/front.svg",
  32344. extra: 898 / 838,
  32345. bottom: 9 / 907
  32346. }
  32347. },
  32348. },
  32349. [
  32350. {
  32351. name: "Micro",
  32352. height: math.unit(8, "meters")
  32353. },
  32354. {
  32355. name: "Normal",
  32356. height: math.unit(50, "meters"),
  32357. default: true
  32358. },
  32359. {
  32360. name: "Macro",
  32361. height: math.unit(500, "meters")
  32362. },
  32363. ]
  32364. ))
  32365. characterMakers.push(() => makeCharacter(
  32366. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  32367. {
  32368. front: {
  32369. height: math.unit(6 + 6 / 12, "feet"),
  32370. name: "Front",
  32371. image: {
  32372. source: "./media/characters/khardesh/front.svg",
  32373. extra: 1788/1596,
  32374. bottom: 66/1854
  32375. }
  32376. },
  32377. back: {
  32378. height: math.unit(6 + 6 / 12, "feet"),
  32379. name: "Back",
  32380. image: {
  32381. source: "./media/characters/khardesh/back.svg",
  32382. extra: 1781/1584,
  32383. bottom: 68/1849
  32384. }
  32385. },
  32386. },
  32387. [
  32388. {
  32389. name: "Normal",
  32390. height: math.unit(6 + 6 / 12, "feet"),
  32391. default: true
  32392. },
  32393. {
  32394. name: "Normal+",
  32395. height: math.unit(4, "meters")
  32396. },
  32397. {
  32398. name: "Macro",
  32399. height: math.unit(50, "meters")
  32400. },
  32401. {
  32402. name: "Macro+",
  32403. height: math.unit(100, "meters")
  32404. },
  32405. {
  32406. name: "Megamacro",
  32407. height: math.unit(20, "km")
  32408. },
  32409. ]
  32410. ))
  32411. characterMakers.push(() => makeCharacter(
  32412. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  32413. {
  32414. front: {
  32415. height: math.unit(6, "feet"),
  32416. weight: math.unit(150, "lb"),
  32417. name: "Front",
  32418. image: {
  32419. source: "./media/characters/kosho/front.svg",
  32420. extra: 1847 / 1847,
  32421. bottom: 86 / 1933
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Second-stage micro",
  32428. height: math.unit(0.5, "inches")
  32429. },
  32430. {
  32431. name: "First-stage micro",
  32432. height: math.unit(6, "inches")
  32433. },
  32434. {
  32435. name: "Normal",
  32436. height: math.unit(6, "feet"),
  32437. default: true
  32438. },
  32439. {
  32440. name: "First-stage macro",
  32441. height: math.unit(72, "feet")
  32442. },
  32443. {
  32444. name: "Second-stage macro",
  32445. height: math.unit(864, "feet")
  32446. },
  32447. ]
  32448. ))
  32449. characterMakers.push(() => makeCharacter(
  32450. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  32451. {
  32452. normal: {
  32453. height: math.unit(4 + 6 / 12, "feet"),
  32454. name: "Normal",
  32455. image: {
  32456. source: "./media/characters/hydra/normal.svg",
  32457. extra: 2833 / 2634,
  32458. bottom: 68 / 2901
  32459. }
  32460. },
  32461. smol: {
  32462. height: math.unit(0.705, "inches"),
  32463. name: "Smol",
  32464. image: {
  32465. source: "./media/characters/hydra/smol.svg",
  32466. extra: 2715 / 2540,
  32467. bottom: 0 / 2715
  32468. }
  32469. },
  32470. },
  32471. [
  32472. {
  32473. name: "Normal",
  32474. height: math.unit(4 + 6 / 12, "feet"),
  32475. default: true
  32476. }
  32477. ]
  32478. ))
  32479. characterMakers.push(() => makeCharacter(
  32480. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  32481. {
  32482. front: {
  32483. height: math.unit(0.6, "cm"),
  32484. name: "Front",
  32485. image: {
  32486. source: "./media/characters/daz/front.svg",
  32487. extra: 1682 / 1164,
  32488. bottom: 42 / 1724
  32489. }
  32490. },
  32491. },
  32492. [
  32493. {
  32494. name: "Normal",
  32495. height: math.unit(0.6, "cm"),
  32496. default: true
  32497. },
  32498. ]
  32499. ))
  32500. characterMakers.push(() => makeCharacter(
  32501. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  32502. {
  32503. front: {
  32504. height: math.unit(6, "feet"),
  32505. weight: math.unit(235, "lb"),
  32506. name: "Front",
  32507. image: {
  32508. source: "./media/characters/theo-pangolin/front.svg",
  32509. extra: 1996 / 1969,
  32510. bottom: 115 / 2111
  32511. }
  32512. },
  32513. back: {
  32514. height: math.unit(6, "feet"),
  32515. weight: math.unit(235, "lb"),
  32516. name: "Back",
  32517. image: {
  32518. source: "./media/characters/theo-pangolin/back.svg",
  32519. extra: 1979 / 1979,
  32520. bottom: 40 / 2019
  32521. }
  32522. },
  32523. feral: {
  32524. height: math.unit(2, "feet"),
  32525. weight: math.unit(30, "lb"),
  32526. name: "Feral",
  32527. image: {
  32528. source: "./media/characters/theo-pangolin/feral.svg",
  32529. extra: 803 / 791,
  32530. bottom: 181 / 984
  32531. }
  32532. },
  32533. footFive: {
  32534. height: math.unit(1.43, "feet"),
  32535. name: "Foot (Five Toes)",
  32536. image: {
  32537. source: "./media/characters/theo-pangolin/foot-five.svg"
  32538. }
  32539. },
  32540. footFour: {
  32541. height: math.unit(1.43, "feet"),
  32542. name: "Foot (Four Toes)",
  32543. image: {
  32544. source: "./media/characters/theo-pangolin/foot-four.svg"
  32545. }
  32546. },
  32547. handFour: {
  32548. height: math.unit(0.81, "feet"),
  32549. name: "Hand (Four Fingers)",
  32550. image: {
  32551. source: "./media/characters/theo-pangolin/hand-four.svg"
  32552. }
  32553. },
  32554. handThree: {
  32555. height: math.unit(0.81, "feet"),
  32556. name: "Hand (Three Fingers)",
  32557. image: {
  32558. source: "./media/characters/theo-pangolin/hand-three.svg"
  32559. }
  32560. },
  32561. headFront: {
  32562. height: math.unit(1.37, "feet"),
  32563. name: "Head (Front)",
  32564. image: {
  32565. source: "./media/characters/theo-pangolin/head-front.svg"
  32566. }
  32567. },
  32568. headSide: {
  32569. height: math.unit(1.43, "feet"),
  32570. name: "Head (Side)",
  32571. image: {
  32572. source: "./media/characters/theo-pangolin/head-side.svg"
  32573. }
  32574. },
  32575. tongue: {
  32576. height: math.unit(2.29, "feet"),
  32577. name: "Tongue",
  32578. image: {
  32579. source: "./media/characters/theo-pangolin/tongue.svg"
  32580. }
  32581. },
  32582. },
  32583. [
  32584. {
  32585. name: "Normal",
  32586. height: math.unit(6, "feet")
  32587. },
  32588. {
  32589. name: "Macro",
  32590. height: math.unit(400, "feet"),
  32591. default: true
  32592. },
  32593. ]
  32594. ))
  32595. characterMakers.push(() => makeCharacter(
  32596. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  32597. {
  32598. front: {
  32599. height: math.unit(6, "inches"),
  32600. weight: math.unit(0.036, "kg"),
  32601. name: "Front",
  32602. image: {
  32603. source: "./media/characters/renée/front.svg",
  32604. extra: 900 / 886,
  32605. bottom: 8 / 908
  32606. }
  32607. },
  32608. },
  32609. [
  32610. {
  32611. name: "Nano",
  32612. height: math.unit(1, "nm")
  32613. },
  32614. {
  32615. name: "Micro",
  32616. height: math.unit(1, "mm")
  32617. },
  32618. {
  32619. name: "Normal",
  32620. height: math.unit(6, "inches")
  32621. },
  32622. {
  32623. name: "Macro",
  32624. height: math.unit(2000, "feet"),
  32625. default: true
  32626. },
  32627. {
  32628. name: "Megamacro",
  32629. height: math.unit(2, "km")
  32630. },
  32631. {
  32632. name: "Gigamacro",
  32633. height: math.unit(2000, "km")
  32634. },
  32635. {
  32636. name: "Teramacro",
  32637. height: math.unit(250000, "km")
  32638. },
  32639. ]
  32640. ))
  32641. characterMakers.push(() => makeCharacter(
  32642. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  32643. {
  32644. front: {
  32645. height: math.unit(4, "meters"),
  32646. weight: math.unit(150, "kg"),
  32647. name: "Front",
  32648. image: {
  32649. source: "./media/characters/caledvwlch/front.svg",
  32650. extra: 1757/1537,
  32651. bottom: 31/1788
  32652. }
  32653. },
  32654. side: {
  32655. height: math.unit(4, "meters"),
  32656. weight: math.unit(150, "kg"),
  32657. name: "Side",
  32658. image: {
  32659. source: "./media/characters/caledvwlch/side.svg",
  32660. extra: 1605 / 1536,
  32661. bottom: 31 / 1636
  32662. }
  32663. },
  32664. back: {
  32665. height: math.unit(4, "meters"),
  32666. weight: math.unit(150, "kg"),
  32667. name: "Back",
  32668. image: {
  32669. source: "./media/characters/caledvwlch/back.svg",
  32670. extra: 1635 / 1565,
  32671. bottom: 27 / 1662
  32672. }
  32673. },
  32674. },
  32675. [
  32676. {
  32677. name: "\"Incognito\"",
  32678. height: math.unit(4, "meters")
  32679. },
  32680. {
  32681. name: "Small rampage",
  32682. height: math.unit(600, "meters")
  32683. },
  32684. {
  32685. name: "Mega",
  32686. height: math.unit(30, "km")
  32687. },
  32688. {
  32689. name: "Home-size",
  32690. height: math.unit(50, "km"),
  32691. default: true
  32692. },
  32693. {
  32694. name: "Giga",
  32695. height: math.unit(300, "km")
  32696. },
  32697. {
  32698. name: "Lounging",
  32699. height: math.unit(11000, "km")
  32700. },
  32701. {
  32702. name: "Planet snacking",
  32703. height: math.unit(2000000, "km")
  32704. },
  32705. ]
  32706. ))
  32707. characterMakers.push(() => makeCharacter(
  32708. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  32709. {
  32710. front: {
  32711. height: math.unit(6, "feet"),
  32712. weight: math.unit(215, "lb"),
  32713. name: "Front",
  32714. image: {
  32715. source: "./media/characters/sapphire-svell/front.svg",
  32716. extra: 495 / 455,
  32717. bottom: 20 / 515
  32718. }
  32719. },
  32720. back: {
  32721. height: math.unit(6, "feet"),
  32722. weight: math.unit(216, "lb"),
  32723. name: "Back",
  32724. image: {
  32725. source: "./media/characters/sapphire-svell/back.svg",
  32726. extra: 497 / 477,
  32727. bottom: 7 / 504
  32728. }
  32729. },
  32730. maw: {
  32731. height: math.unit(1.57, "feet"),
  32732. name: "Maw",
  32733. image: {
  32734. source: "./media/characters/sapphire-svell/maw.svg"
  32735. }
  32736. },
  32737. foot: {
  32738. height: math.unit(1.07, "feet"),
  32739. name: "Foot",
  32740. image: {
  32741. source: "./media/characters/sapphire-svell/foot.svg"
  32742. }
  32743. },
  32744. toering: {
  32745. height: math.unit(1.7, "inch"),
  32746. name: "Toering",
  32747. image: {
  32748. source: "./media/characters/sapphire-svell/toering.svg"
  32749. }
  32750. },
  32751. },
  32752. [
  32753. {
  32754. name: "Normal",
  32755. height: math.unit(300, "feet"),
  32756. default: true
  32757. },
  32758. {
  32759. name: "Augmented",
  32760. height: math.unit(1250, "feet")
  32761. },
  32762. {
  32763. name: "Unleashed",
  32764. height: math.unit(3000, "feet")
  32765. },
  32766. ]
  32767. ))
  32768. characterMakers.push(() => makeCharacter(
  32769. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  32770. {
  32771. side: {
  32772. height: math.unit(2 + 3 / 12, "feet"),
  32773. weight: math.unit(110, "lb"),
  32774. name: "Side",
  32775. image: {
  32776. source: "./media/characters/glitch-flux/side.svg",
  32777. extra: 997 / 805,
  32778. bottom: 20 / 1017
  32779. }
  32780. },
  32781. },
  32782. [
  32783. {
  32784. name: "Normal",
  32785. height: math.unit(2 + 3 / 12, "feet"),
  32786. default: true
  32787. },
  32788. ]
  32789. ))
  32790. characterMakers.push(() => makeCharacter(
  32791. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  32792. {
  32793. front: {
  32794. height: math.unit(4, "meters"),
  32795. name: "Front",
  32796. image: {
  32797. source: "./media/characters/mid/front.svg",
  32798. extra: 507 / 476,
  32799. bottom: 17 / 524
  32800. }
  32801. },
  32802. back: {
  32803. height: math.unit(4, "meters"),
  32804. name: "Back",
  32805. image: {
  32806. source: "./media/characters/mid/back.svg",
  32807. extra: 519 / 487,
  32808. bottom: 7 / 526
  32809. }
  32810. },
  32811. stuck: {
  32812. height: math.unit(2.2, "meters"),
  32813. name: "Stuck",
  32814. image: {
  32815. source: "./media/characters/mid/stuck.svg",
  32816. extra: 1951 / 1869,
  32817. bottom: 88 / 2039
  32818. }
  32819. }
  32820. },
  32821. [
  32822. {
  32823. name: "Normal",
  32824. height: math.unit(4, "meters"),
  32825. default: true
  32826. },
  32827. {
  32828. name: "Big",
  32829. height: math.unit(10, "meters")
  32830. },
  32831. {
  32832. name: "Macro",
  32833. height: math.unit(800, "meters")
  32834. },
  32835. {
  32836. name: "Megamacro",
  32837. height: math.unit(100, "km")
  32838. },
  32839. {
  32840. name: "Overgrown",
  32841. height: math.unit(1, "parsec")
  32842. },
  32843. ]
  32844. ))
  32845. characterMakers.push(() => makeCharacter(
  32846. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  32847. {
  32848. front: {
  32849. height: math.unit(2.5, "meters"),
  32850. weight: math.unit(225, "kg"),
  32851. name: "Front",
  32852. image: {
  32853. source: "./media/characters/iris/front.svg",
  32854. extra: 3348 / 3251,
  32855. bottom: 205 / 3553
  32856. }
  32857. },
  32858. maw: {
  32859. height: math.unit(0.56, "meter"),
  32860. name: "Maw",
  32861. image: {
  32862. source: "./media/characters/iris/maw.svg"
  32863. }
  32864. },
  32865. },
  32866. [
  32867. {
  32868. name: "Mewter cat",
  32869. height: math.unit(1.2, "meters")
  32870. },
  32871. {
  32872. name: "Normal",
  32873. height: math.unit(2.5, "meters"),
  32874. default: true
  32875. },
  32876. {
  32877. name: "Minimacro",
  32878. height: math.unit(18, "feet")
  32879. },
  32880. {
  32881. name: "Macro",
  32882. height: math.unit(140, "feet")
  32883. },
  32884. {
  32885. name: "Macro+",
  32886. height: math.unit(180, "meters")
  32887. },
  32888. {
  32889. name: "Megamacro",
  32890. height: math.unit(2746, "meters")
  32891. },
  32892. ]
  32893. ))
  32894. characterMakers.push(() => makeCharacter(
  32895. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  32896. {
  32897. front: {
  32898. height: math.unit(6, "feet"),
  32899. weight: math.unit(135, "lb"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/axel/front.svg",
  32903. extra: 908 / 908,
  32904. bottom: 58 / 966
  32905. }
  32906. },
  32907. side: {
  32908. height: math.unit(6, "feet"),
  32909. weight: math.unit(135, "lb"),
  32910. name: "Side",
  32911. image: {
  32912. source: "./media/characters/axel/side.svg",
  32913. extra: 958 / 958,
  32914. bottom: 11 / 969
  32915. }
  32916. },
  32917. back: {
  32918. height: math.unit(6, "feet"),
  32919. weight: math.unit(135, "lb"),
  32920. name: "Back",
  32921. image: {
  32922. source: "./media/characters/axel/back.svg",
  32923. extra: 887 / 887,
  32924. bottom: 34 / 921
  32925. }
  32926. },
  32927. head: {
  32928. height: math.unit(1.07, "feet"),
  32929. name: "Head",
  32930. image: {
  32931. source: "./media/characters/axel/head.svg"
  32932. }
  32933. },
  32934. beak: {
  32935. height: math.unit(1.4, "feet"),
  32936. name: "Beak",
  32937. image: {
  32938. source: "./media/characters/axel/beak.svg"
  32939. }
  32940. },
  32941. beakSide: {
  32942. height: math.unit(1.4, "feet"),
  32943. name: "Beak Side",
  32944. image: {
  32945. source: "./media/characters/axel/beak-side.svg"
  32946. }
  32947. },
  32948. sheath: {
  32949. height: math.unit(0.5, "feet"),
  32950. name: "Sheath",
  32951. image: {
  32952. source: "./media/characters/axel/sheath.svg"
  32953. }
  32954. },
  32955. dick: {
  32956. height: math.unit(0.98, "feet"),
  32957. name: "Dick",
  32958. image: {
  32959. source: "./media/characters/axel/dick.svg"
  32960. }
  32961. },
  32962. },
  32963. [
  32964. {
  32965. name: "Macro",
  32966. height: math.unit(68, "meters"),
  32967. default: true
  32968. },
  32969. ]
  32970. ))
  32971. characterMakers.push(() => makeCharacter(
  32972. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  32973. {
  32974. front: {
  32975. height: math.unit(3.5, "meters"),
  32976. weight: math.unit(1200, "kg"),
  32977. name: "Front",
  32978. image: {
  32979. source: "./media/characters/joanna/front.svg",
  32980. extra: 1596 / 1488,
  32981. bottom: 29 / 1625
  32982. }
  32983. },
  32984. back: {
  32985. height: math.unit(3.5, "meters"),
  32986. weight: math.unit(1200, "kg"),
  32987. name: "Back",
  32988. image: {
  32989. source: "./media/characters/joanna/back.svg",
  32990. extra: 1594 / 1495,
  32991. bottom: 26 / 1620
  32992. }
  32993. },
  32994. frontShorts: {
  32995. height: math.unit(3.5, "meters"),
  32996. weight: math.unit(1200, "kg"),
  32997. name: "Front (Shorts)",
  32998. image: {
  32999. source: "./media/characters/joanna/front-shorts.svg",
  33000. extra: 1596 / 1488,
  33001. bottom: 29 / 1625
  33002. }
  33003. },
  33004. frontBiker: {
  33005. height: math.unit(3.5, "meters"),
  33006. weight: math.unit(1200, "kg"),
  33007. name: "Front (Biker)",
  33008. image: {
  33009. source: "./media/characters/joanna/front-biker.svg",
  33010. extra: 1596 / 1488,
  33011. bottom: 29 / 1625
  33012. }
  33013. },
  33014. backBiker: {
  33015. height: math.unit(3.5, "meters"),
  33016. weight: math.unit(1200, "kg"),
  33017. name: "Back (Biker)",
  33018. image: {
  33019. source: "./media/characters/joanna/back-biker.svg",
  33020. extra: 1594 / 1495,
  33021. bottom: 88 / 1682
  33022. }
  33023. },
  33024. bikeLeft: {
  33025. height: math.unit(2.4, "meters"),
  33026. weight: math.unit(1600, "kg"),
  33027. name: "Bike (Left)",
  33028. image: {
  33029. source: "./media/characters/joanna/bike-left.svg",
  33030. extra: 720 / 720,
  33031. bottom: 8 / 728
  33032. }
  33033. },
  33034. bikeRight: {
  33035. height: math.unit(2.4, "meters"),
  33036. weight: math.unit(1600, "kg"),
  33037. name: "Bike (Right)",
  33038. image: {
  33039. source: "./media/characters/joanna/bike-right.svg",
  33040. extra: 720 / 720,
  33041. bottom: 8 / 728
  33042. }
  33043. },
  33044. },
  33045. [
  33046. {
  33047. name: "Incognito",
  33048. height: math.unit(3.5, "meters")
  33049. },
  33050. {
  33051. name: "Casual Big",
  33052. height: math.unit(200, "meters")
  33053. },
  33054. {
  33055. name: "Macro",
  33056. height: math.unit(600, "meters")
  33057. },
  33058. {
  33059. name: "Original",
  33060. height: math.unit(20, "km"),
  33061. default: true
  33062. },
  33063. {
  33064. name: "Giga",
  33065. height: math.unit(400, "km")
  33066. },
  33067. {
  33068. name: "Lounging",
  33069. height: math.unit(1500, "km")
  33070. },
  33071. {
  33072. name: "Planetary",
  33073. height: math.unit(200000, "km")
  33074. },
  33075. ]
  33076. ))
  33077. characterMakers.push(() => makeCharacter(
  33078. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  33079. {
  33080. front: {
  33081. height: math.unit(6, "feet"),
  33082. weight: math.unit(150, "lb"),
  33083. name: "Front",
  33084. image: {
  33085. source: "./media/characters/hugo-sigil/front.svg",
  33086. extra: 522 / 500,
  33087. bottom: 2 / 524
  33088. }
  33089. },
  33090. back: {
  33091. height: math.unit(6, "feet"),
  33092. weight: math.unit(150, "lb"),
  33093. name: "Back",
  33094. image: {
  33095. source: "./media/characters/hugo-sigil/back.svg",
  33096. extra: 519 / 495,
  33097. bottom: 5 / 524
  33098. }
  33099. },
  33100. maw: {
  33101. height: math.unit(1.4, "feet"),
  33102. weight: math.unit(150, "lb"),
  33103. name: "Maw",
  33104. image: {
  33105. source: "./media/characters/hugo-sigil/maw.svg"
  33106. }
  33107. },
  33108. feet: {
  33109. height: math.unit(1.56, "feet"),
  33110. weight: math.unit(150, "lb"),
  33111. name: "Feet",
  33112. image: {
  33113. source: "./media/characters/hugo-sigil/feet.svg",
  33114. extra: 177 / 177,
  33115. bottom: 12 / 189
  33116. }
  33117. },
  33118. },
  33119. [
  33120. {
  33121. name: "Normal",
  33122. height: math.unit(6, "feet")
  33123. },
  33124. {
  33125. name: "Macro",
  33126. height: math.unit(200, "feet"),
  33127. default: true
  33128. },
  33129. ]
  33130. ))
  33131. characterMakers.push(() => makeCharacter(
  33132. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  33133. {
  33134. front: {
  33135. height: math.unit(6, "feet"),
  33136. weight: math.unit(150, "lb"),
  33137. name: "Front",
  33138. image: {
  33139. source: "./media/characters/peri/front.svg",
  33140. extra: 2354 / 2233,
  33141. bottom: 49 / 2403
  33142. }
  33143. },
  33144. },
  33145. [
  33146. {
  33147. name: "Really Small",
  33148. height: math.unit(1, "nm")
  33149. },
  33150. {
  33151. name: "Micro",
  33152. height: math.unit(4, "inches")
  33153. },
  33154. {
  33155. name: "Normal",
  33156. height: math.unit(7, "inches"),
  33157. default: true
  33158. },
  33159. {
  33160. name: "Macro",
  33161. height: math.unit(400, "feet")
  33162. },
  33163. {
  33164. name: "Megamacro",
  33165. height: math.unit(100, "miles")
  33166. },
  33167. ]
  33168. ))
  33169. characterMakers.push(() => makeCharacter(
  33170. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  33171. {
  33172. frontSlim: {
  33173. height: math.unit(7, "feet"),
  33174. name: "Front (Slim)",
  33175. image: {
  33176. source: "./media/characters/issilora/front-slim.svg",
  33177. extra: 529 / 449,
  33178. bottom: 53 / 582
  33179. }
  33180. },
  33181. sideSlim: {
  33182. height: math.unit(7, "feet"),
  33183. name: "Side (Slim)",
  33184. image: {
  33185. source: "./media/characters/issilora/side-slim.svg",
  33186. extra: 570 / 480,
  33187. bottom: 30 / 600
  33188. }
  33189. },
  33190. backSlim: {
  33191. height: math.unit(7, "feet"),
  33192. name: "Back (Slim)",
  33193. image: {
  33194. source: "./media/characters/issilora/back-slim.svg",
  33195. extra: 537 / 455,
  33196. bottom: 46 / 583
  33197. }
  33198. },
  33199. frontBuff: {
  33200. height: math.unit(7, "feet"),
  33201. name: "Front (Buff)",
  33202. image: {
  33203. source: "./media/characters/issilora/front-buff.svg",
  33204. extra: 2310 / 2035,
  33205. bottom: 335 / 2645
  33206. }
  33207. },
  33208. head: {
  33209. height: math.unit(1.94, "feet"),
  33210. name: "Head",
  33211. image: {
  33212. source: "./media/characters/issilora/head.svg"
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Minimum",
  33219. height: math.unit(7, "feet")
  33220. },
  33221. {
  33222. name: "Comfortable",
  33223. height: math.unit(17, "feet")
  33224. },
  33225. {
  33226. name: "Fun Size",
  33227. height: math.unit(47, "feet")
  33228. },
  33229. {
  33230. name: "Natural Macro",
  33231. height: math.unit(137, "feet"),
  33232. default: true
  33233. },
  33234. {
  33235. name: "Maximum Kaiju",
  33236. height: math.unit(397, "feet")
  33237. },
  33238. ]
  33239. ))
  33240. characterMakers.push(() => makeCharacter(
  33241. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  33242. {
  33243. front: {
  33244. height: math.unit(50 + 9/12, "feet"),
  33245. weight: math.unit(32.8, "tons"),
  33246. name: "Front",
  33247. image: {
  33248. source: "./media/characters/irb'iiritaahn/front.svg",
  33249. extra: 1878/1826,
  33250. bottom: 326/2204
  33251. }
  33252. },
  33253. back: {
  33254. height: math.unit(50 + 9/12, "feet"),
  33255. weight: math.unit(32.8, "tons"),
  33256. name: "Back",
  33257. image: {
  33258. source: "./media/characters/irb'iiritaahn/back.svg",
  33259. extra: 2052/2018,
  33260. bottom: 152/2204
  33261. }
  33262. },
  33263. head: {
  33264. height: math.unit(12.86, "feet"),
  33265. name: "Head",
  33266. image: {
  33267. source: "./media/characters/irb'iiritaahn/head.svg"
  33268. }
  33269. },
  33270. maw: {
  33271. height: math.unit(9.66, "feet"),
  33272. name: "Maw",
  33273. image: {
  33274. source: "./media/characters/irb'iiritaahn/maw.svg"
  33275. }
  33276. },
  33277. frontDick: {
  33278. height: math.unit(8.78461, "feet"),
  33279. name: "Front Dick",
  33280. image: {
  33281. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  33282. }
  33283. },
  33284. rearDick: {
  33285. height: math.unit(8.78461, "feet"),
  33286. name: "Rear Dick",
  33287. image: {
  33288. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  33289. }
  33290. },
  33291. rearDickUnfolded: {
  33292. height: math.unit(8.78, "feet"),
  33293. name: "Rear Dick (Unfolded)",
  33294. image: {
  33295. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  33296. }
  33297. },
  33298. wings: {
  33299. height: math.unit(43, "feet"),
  33300. name: "Wings",
  33301. image: {
  33302. source: "./media/characters/irb'iiritaahn/wings.svg"
  33303. }
  33304. },
  33305. },
  33306. [
  33307. {
  33308. name: "Macro",
  33309. height: math.unit(50 + 9/12, "feet"),
  33310. default: true
  33311. },
  33312. ]
  33313. ))
  33314. characterMakers.push(() => makeCharacter(
  33315. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  33316. {
  33317. front: {
  33318. height: math.unit(205, "cm"),
  33319. weight: math.unit(102, "kg"),
  33320. name: "Front",
  33321. image: {
  33322. source: "./media/characters/irbisgreif/front.svg",
  33323. extra: 785/706,
  33324. bottom: 13/798
  33325. }
  33326. },
  33327. back: {
  33328. height: math.unit(205, "cm"),
  33329. weight: math.unit(102, "kg"),
  33330. name: "Back",
  33331. image: {
  33332. source: "./media/characters/irbisgreif/back.svg",
  33333. extra: 713/701,
  33334. bottom: 26/739
  33335. }
  33336. },
  33337. frontDressed: {
  33338. height: math.unit(216, "cm"),
  33339. weight: math.unit(102, "kg"),
  33340. name: "Front-dressed",
  33341. image: {
  33342. source: "./media/characters/irbisgreif/front-dressed.svg",
  33343. extra: 902/776,
  33344. bottom: 14/916
  33345. }
  33346. },
  33347. sideDressed: {
  33348. height: math.unit(195, "cm"),
  33349. weight: math.unit(102, "kg"),
  33350. name: "Side-dressed",
  33351. image: {
  33352. source: "./media/characters/irbisgreif/side-dressed.svg",
  33353. extra: 788/688,
  33354. bottom: 21/809
  33355. }
  33356. },
  33357. backDressed: {
  33358. height: math.unit(216, "cm"),
  33359. weight: math.unit(102, "kg"),
  33360. name: "Back-dressed",
  33361. image: {
  33362. source: "./media/characters/irbisgreif/back-dressed.svg",
  33363. extra: 901/783,
  33364. bottom: 10/911
  33365. }
  33366. },
  33367. dick: {
  33368. height: math.unit(0.49, "feet"),
  33369. name: "Dick",
  33370. image: {
  33371. source: "./media/characters/irbisgreif/dick.svg"
  33372. }
  33373. },
  33374. wingTop: {
  33375. height: math.unit(1.93 , "feet"),
  33376. name: "Wing-top",
  33377. image: {
  33378. source: "./media/characters/irbisgreif/wing-top.svg"
  33379. }
  33380. },
  33381. wingBottom: {
  33382. height: math.unit(1.93 , "feet"),
  33383. name: "Wing-bottom",
  33384. image: {
  33385. source: "./media/characters/irbisgreif/wing-bottom.svg"
  33386. }
  33387. },
  33388. },
  33389. [
  33390. {
  33391. name: "Normal",
  33392. height: math.unit(216, "cm"),
  33393. default: true
  33394. },
  33395. ]
  33396. ))
  33397. characterMakers.push(() => makeCharacter(
  33398. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  33399. {
  33400. front: {
  33401. height: math.unit(6, "feet"),
  33402. weight: math.unit(150, "lb"),
  33403. name: "Front",
  33404. image: {
  33405. source: "./media/characters/pride/front.svg",
  33406. extra: 1299/1230,
  33407. bottom: 18/1317
  33408. }
  33409. },
  33410. },
  33411. [
  33412. {
  33413. name: "Normal",
  33414. height: math.unit(7, "feet")
  33415. },
  33416. {
  33417. name: "Mini-macro",
  33418. height: math.unit(11, "feet")
  33419. },
  33420. {
  33421. name: "Macro",
  33422. height: math.unit(15, "meters"),
  33423. default: true
  33424. },
  33425. {
  33426. name: "Macro+",
  33427. height: math.unit(40, "meters")
  33428. },
  33429. ]
  33430. ))
  33431. characterMakers.push(() => makeCharacter(
  33432. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  33433. {
  33434. front: {
  33435. height: math.unit(4 + 2 / 12, "feet"),
  33436. weight: math.unit(95, "lb"),
  33437. name: "Front",
  33438. image: {
  33439. source: "./media/characters/vaelophis-nyx/front.svg",
  33440. extra: 2532/2330,
  33441. bottom: 0/2532
  33442. }
  33443. },
  33444. back: {
  33445. height: math.unit(4 + 2 / 12, "feet"),
  33446. weight: math.unit(95, "lb"),
  33447. name: "Back",
  33448. image: {
  33449. source: "./media/characters/vaelophis-nyx/back.svg",
  33450. extra: 2484/2361,
  33451. bottom: 0/2484
  33452. }
  33453. },
  33454. feralSide: {
  33455. height: math.unit(2 + 1/12, "feet"),
  33456. weight: math.unit(20, "lb"),
  33457. name: "Feral (Side)",
  33458. image: {
  33459. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  33460. extra: 1721/1581,
  33461. bottom: 70/1791
  33462. }
  33463. },
  33464. feralLazing: {
  33465. height: math.unit(1.08, "feet"),
  33466. weight: math.unit(20, "lb"),
  33467. name: "Feral (Lazing)",
  33468. image: {
  33469. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  33470. extra: 822/822,
  33471. bottom: 248/1070
  33472. }
  33473. },
  33474. ear: {
  33475. height: math.unit(0.416, "feet"),
  33476. name: "Ear",
  33477. image: {
  33478. source: "./media/characters/vaelophis-nyx/ear.svg"
  33479. }
  33480. },
  33481. eye: {
  33482. height: math.unit(0.0748, "feet"),
  33483. name: "Eye",
  33484. image: {
  33485. source: "./media/characters/vaelophis-nyx/eye.svg"
  33486. }
  33487. },
  33488. mouth: {
  33489. height: math.unit(0.378, "feet"),
  33490. name: "Mouth",
  33491. image: {
  33492. source: "./media/characters/vaelophis-nyx/mouth.svg"
  33493. }
  33494. },
  33495. spade: {
  33496. height: math.unit(0.55, "feet"),
  33497. name: "Spade",
  33498. image: {
  33499. source: "./media/characters/vaelophis-nyx/spade.svg"
  33500. }
  33501. },
  33502. },
  33503. [
  33504. {
  33505. name: "Normal",
  33506. height: math.unit(4 + 2/12, "feet"),
  33507. default: true
  33508. },
  33509. ]
  33510. ))
  33511. characterMakers.push(() => makeCharacter(
  33512. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  33513. {
  33514. front: {
  33515. height: math.unit(7, "feet"),
  33516. weight: math.unit(231, "lb"),
  33517. name: "Front",
  33518. image: {
  33519. source: "./media/characters/flux/front.svg",
  33520. extra: 919/871,
  33521. bottom: 0/919
  33522. }
  33523. },
  33524. back: {
  33525. height: math.unit(7, "feet"),
  33526. weight: math.unit(231, "lb"),
  33527. name: "Back",
  33528. image: {
  33529. source: "./media/characters/flux/back.svg",
  33530. extra: 1040/992,
  33531. bottom: 0/1040
  33532. }
  33533. },
  33534. frontDressed: {
  33535. height: math.unit(7, "feet"),
  33536. weight: math.unit(231, "lb"),
  33537. name: "Front (Dressed)",
  33538. image: {
  33539. source: "./media/characters/flux/front-dressed.svg",
  33540. extra: 919/871,
  33541. bottom: 0/919
  33542. }
  33543. },
  33544. feralSide: {
  33545. height: math.unit(5, "feet"),
  33546. weight: math.unit(150, "lb"),
  33547. name: "Feral (Side)",
  33548. image: {
  33549. source: "./media/characters/flux/feral-side.svg",
  33550. extra: 598/528,
  33551. bottom: 28/626
  33552. }
  33553. },
  33554. head: {
  33555. height: math.unit(1.585, "feet"),
  33556. name: "Head",
  33557. image: {
  33558. source: "./media/characters/flux/head.svg"
  33559. }
  33560. },
  33561. headSide: {
  33562. height: math.unit(1.74, "feet"),
  33563. name: "Head (Side)",
  33564. image: {
  33565. source: "./media/characters/flux/head-side.svg"
  33566. }
  33567. },
  33568. headSideFire: {
  33569. height: math.unit(1.76, "feet"),
  33570. name: "Head (Side, Fire)",
  33571. image: {
  33572. source: "./media/characters/flux/head-side-fire.svg"
  33573. }
  33574. },
  33575. },
  33576. [
  33577. {
  33578. name: "Normal",
  33579. height: math.unit(7, "feet"),
  33580. default: true
  33581. },
  33582. ]
  33583. ))
  33584. characterMakers.push(() => makeCharacter(
  33585. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  33586. {
  33587. front: {
  33588. height: math.unit(9, "feet"),
  33589. weight: math.unit(1012, "lb"),
  33590. name: "Front",
  33591. image: {
  33592. source: "./media/characters/ulfra-lupae/front.svg",
  33593. extra: 1083/1011,
  33594. bottom: 67/1150
  33595. }
  33596. },
  33597. },
  33598. [
  33599. {
  33600. name: "Micro",
  33601. height: math.unit(6, "inches")
  33602. },
  33603. {
  33604. name: "Socializing",
  33605. height: math.unit(6 + 5/12, "feet")
  33606. },
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(9, "feet"),
  33610. default: true
  33611. },
  33612. {
  33613. name: "Macro",
  33614. height: math.unit(150, "feet")
  33615. },
  33616. ]
  33617. ))
  33618. characterMakers.push(() => makeCharacter(
  33619. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  33620. {
  33621. front: {
  33622. height: math.unit(5 + 2/12, "feet"),
  33623. weight: math.unit(120, "lb"),
  33624. name: "Front",
  33625. image: {
  33626. source: "./media/characters/timber/front.svg",
  33627. extra: 2814/2705,
  33628. bottom: 181/2995
  33629. }
  33630. },
  33631. },
  33632. [
  33633. {
  33634. name: "Normal",
  33635. height: math.unit(5 + 2/12, "feet"),
  33636. default: true
  33637. },
  33638. ]
  33639. ))
  33640. characterMakers.push(() => makeCharacter(
  33641. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  33642. {
  33643. front: {
  33644. height: math.unit(9, "feet"),
  33645. name: "Front",
  33646. image: {
  33647. source: "./media/characters/nicki/front.svg",
  33648. extra: 1240/990,
  33649. bottom: 45/1285
  33650. },
  33651. form: "anthro",
  33652. default: true
  33653. },
  33654. side: {
  33655. height: math.unit(9, "feet"),
  33656. name: "Side",
  33657. image: {
  33658. source: "./media/characters/nicki/side.svg",
  33659. extra: 1047/973,
  33660. bottom: 61/1108
  33661. },
  33662. form: "anthro"
  33663. },
  33664. back: {
  33665. height: math.unit(9, "feet"),
  33666. name: "Back",
  33667. image: {
  33668. source: "./media/characters/nicki/back.svg",
  33669. extra: 1006/965,
  33670. bottom: 39/1045
  33671. },
  33672. form: "anthro"
  33673. },
  33674. taur: {
  33675. height: math.unit(15, "feet"),
  33676. name: "Taur",
  33677. image: {
  33678. source: "./media/characters/nicki/taur.svg",
  33679. extra: 1592/1347,
  33680. bottom: 0/1592
  33681. },
  33682. form: "taur",
  33683. default: true
  33684. },
  33685. },
  33686. [
  33687. {
  33688. name: "Normal",
  33689. height: math.unit(9, "feet"),
  33690. form: "anthro",
  33691. default: true
  33692. },
  33693. {
  33694. name: "Normal",
  33695. height: math.unit(15, "feet"),
  33696. form: "taur",
  33697. default: true
  33698. }
  33699. ],
  33700. {
  33701. "anthro": {
  33702. name: "Anthro",
  33703. default: true
  33704. },
  33705. "taur": {
  33706. name: "Taur"
  33707. }
  33708. }
  33709. ))
  33710. characterMakers.push(() => makeCharacter(
  33711. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  33712. {
  33713. front: {
  33714. height: math.unit(7 + 10/12, "feet"),
  33715. weight: math.unit(3.5, "tons"),
  33716. name: "Front",
  33717. image: {
  33718. source: "./media/characters/lee/front.svg",
  33719. extra: 1773/1615,
  33720. bottom: 86/1859
  33721. }
  33722. },
  33723. hand: {
  33724. height: math.unit(1.78, "feet"),
  33725. name: "Hand",
  33726. image: {
  33727. source: "./media/characters/lee/hand.svg"
  33728. }
  33729. },
  33730. maw: {
  33731. height: math.unit(1.18, "feet"),
  33732. name: "Maw",
  33733. image: {
  33734. source: "./media/characters/lee/maw.svg"
  33735. }
  33736. },
  33737. },
  33738. [
  33739. {
  33740. name: "Normal",
  33741. height: math.unit(7 + 10/12, "feet"),
  33742. default: true
  33743. },
  33744. ]
  33745. ))
  33746. characterMakers.push(() => makeCharacter(
  33747. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  33748. {
  33749. front: {
  33750. height: math.unit(9, "feet"),
  33751. name: "Front",
  33752. image: {
  33753. source: "./media/characters/guti/front.svg",
  33754. extra: 4551/4355,
  33755. bottom: 123/4674
  33756. }
  33757. },
  33758. tongue: {
  33759. height: math.unit(1, "feet"),
  33760. name: "Tongue",
  33761. image: {
  33762. source: "./media/characters/guti/tongue.svg"
  33763. }
  33764. },
  33765. paw: {
  33766. height: math.unit(1.18, "feet"),
  33767. name: "Paw",
  33768. image: {
  33769. source: "./media/characters/guti/paw.svg"
  33770. }
  33771. },
  33772. },
  33773. [
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(9, "feet"),
  33777. default: true
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  33783. {
  33784. side: {
  33785. height: math.unit(5, "meters"),
  33786. name: "Side",
  33787. image: {
  33788. source: "./media/characters/vesper/side.svg",
  33789. extra: 1605/1518,
  33790. bottom: 0/1605
  33791. }
  33792. },
  33793. },
  33794. [
  33795. {
  33796. name: "Small",
  33797. height: math.unit(5, "meters")
  33798. },
  33799. {
  33800. name: "Sage",
  33801. height: math.unit(100, "meters"),
  33802. default: true
  33803. },
  33804. {
  33805. name: "Fun Size",
  33806. height: math.unit(600, "meters")
  33807. },
  33808. {
  33809. name: "Goddess",
  33810. height: math.unit(20000, "km")
  33811. },
  33812. {
  33813. name: "Maximum",
  33814. height: math.unit(5, "galaxies")
  33815. },
  33816. ]
  33817. ))
  33818. characterMakers.push(() => makeCharacter(
  33819. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  33820. {
  33821. front: {
  33822. height: math.unit(6 + 3/12, "feet"),
  33823. weight: math.unit(190, "lb"),
  33824. name: "Front",
  33825. image: {
  33826. source: "./media/characters/gawain/front.svg",
  33827. extra: 2222/2139,
  33828. bottom: 90/2312
  33829. }
  33830. },
  33831. back: {
  33832. height: math.unit(6 + 3/12, "feet"),
  33833. weight: math.unit(190, "lb"),
  33834. name: "Back",
  33835. image: {
  33836. source: "./media/characters/gawain/back.svg",
  33837. extra: 2199/2111,
  33838. bottom: 73/2272
  33839. }
  33840. },
  33841. },
  33842. [
  33843. {
  33844. name: "Normal",
  33845. height: math.unit(6 + 3/12, "feet"),
  33846. default: true
  33847. },
  33848. ]
  33849. ))
  33850. characterMakers.push(() => makeCharacter(
  33851. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  33852. {
  33853. side: {
  33854. height: math.unit(3.5, "meters"),
  33855. weight: math.unit(16000, "lb"),
  33856. name: "Side",
  33857. image: {
  33858. source: "./media/characters/dascalti/side.svg",
  33859. extra: 392/273,
  33860. bottom: 47/439
  33861. }
  33862. },
  33863. breath: {
  33864. height: math.unit(7.4, "feet"),
  33865. name: "Breath",
  33866. image: {
  33867. source: "./media/characters/dascalti/breath.svg"
  33868. }
  33869. },
  33870. fed: {
  33871. height: math.unit(3.6, "meters"),
  33872. weight: math.unit(16000, "lb"),
  33873. name: "Fed",
  33874. image: {
  33875. source: "./media/characters/dascalti/fed.svg",
  33876. extra: 1419/820,
  33877. bottom: 95/1514
  33878. }
  33879. },
  33880. },
  33881. [
  33882. {
  33883. name: "Normal",
  33884. height: math.unit(3.5, "meters"),
  33885. default: true
  33886. },
  33887. ]
  33888. ))
  33889. characterMakers.push(() => makeCharacter(
  33890. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  33891. {
  33892. front: {
  33893. height: math.unit(3 + 5/12, "feet"),
  33894. name: "Front",
  33895. image: {
  33896. source: "./media/characters/mauve/front.svg",
  33897. extra: 1126/1033,
  33898. bottom: 65/1191
  33899. }
  33900. },
  33901. side: {
  33902. height: math.unit(3 + 5/12, "feet"),
  33903. name: "Side",
  33904. image: {
  33905. source: "./media/characters/mauve/side.svg",
  33906. extra: 1089/1001,
  33907. bottom: 29/1118
  33908. }
  33909. },
  33910. back: {
  33911. height: math.unit(3 + 5/12, "feet"),
  33912. name: "Back",
  33913. image: {
  33914. source: "./media/characters/mauve/back.svg",
  33915. extra: 1173/1053,
  33916. bottom: 109/1282
  33917. }
  33918. },
  33919. },
  33920. [
  33921. {
  33922. name: "Normal",
  33923. height: math.unit(3 + 5/12, "feet"),
  33924. default: true
  33925. },
  33926. ]
  33927. ))
  33928. characterMakers.push(() => makeCharacter(
  33929. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  33930. {
  33931. front: {
  33932. height: math.unit(6 + 3/12, "feet"),
  33933. weight: math.unit(430, "lb"),
  33934. name: "Front",
  33935. image: {
  33936. source: "./media/characters/carlos/front.svg",
  33937. extra: 1964/1913,
  33938. bottom: 70/2034
  33939. }
  33940. },
  33941. },
  33942. [
  33943. {
  33944. name: "Normal",
  33945. height: math.unit(6 + 3/12, "feet"),
  33946. default: true
  33947. },
  33948. ]
  33949. ))
  33950. characterMakers.push(() => makeCharacter(
  33951. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  33952. {
  33953. back: {
  33954. height: math.unit(5 + 10/12, "feet"),
  33955. weight: math.unit(200, "lb"),
  33956. name: "Back",
  33957. image: {
  33958. source: "./media/characters/jax/back.svg",
  33959. extra: 764/739,
  33960. bottom: 25/789
  33961. }
  33962. },
  33963. },
  33964. [
  33965. {
  33966. name: "Normal",
  33967. height: math.unit(5 + 10/12, "feet"),
  33968. default: true
  33969. },
  33970. ]
  33971. ))
  33972. characterMakers.push(() => makeCharacter(
  33973. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  33974. {
  33975. front: {
  33976. height: math.unit(8, "feet"),
  33977. weight: math.unit(250, "lb"),
  33978. name: "Front",
  33979. image: {
  33980. source: "./media/characters/eikthynir/front.svg",
  33981. extra: 1332/1166,
  33982. bottom: 82/1414
  33983. }
  33984. },
  33985. back: {
  33986. height: math.unit(8, "feet"),
  33987. weight: math.unit(250, "lb"),
  33988. name: "Back",
  33989. image: {
  33990. source: "./media/characters/eikthynir/back.svg",
  33991. extra: 1342/1190,
  33992. bottom: 19/1361
  33993. }
  33994. },
  33995. dick: {
  33996. height: math.unit(2.35, "feet"),
  33997. name: "Dick",
  33998. image: {
  33999. source: "./media/characters/eikthynir/dick.svg"
  34000. }
  34001. },
  34002. },
  34003. [
  34004. {
  34005. name: "Normal",
  34006. height: math.unit(8, "feet"),
  34007. default: true
  34008. },
  34009. ]
  34010. ))
  34011. characterMakers.push(() => makeCharacter(
  34012. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  34013. {
  34014. front: {
  34015. height: math.unit(99, "meters"),
  34016. weight: math.unit(13000, "tons"),
  34017. name: "Front",
  34018. image: {
  34019. source: "./media/characters/zlmos/front.svg",
  34020. extra: 2202/1992,
  34021. bottom: 315/2517
  34022. }
  34023. },
  34024. },
  34025. [
  34026. {
  34027. name: "Macro",
  34028. height: math.unit(99, "meters"),
  34029. default: true
  34030. },
  34031. ]
  34032. ))
  34033. characterMakers.push(() => makeCharacter(
  34034. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  34035. {
  34036. front: {
  34037. height: math.unit(6 + 5/12, "feet"),
  34038. name: "Front",
  34039. image: {
  34040. source: "./media/characters/purri/front.svg",
  34041. extra: 1698/1610,
  34042. bottom: 32/1730
  34043. }
  34044. },
  34045. frontAlt: {
  34046. height: math.unit(6 + 5/12, "feet"),
  34047. name: "Front (Alt)",
  34048. image: {
  34049. source: "./media/characters/purri/front-alt.svg",
  34050. extra: 450/420,
  34051. bottom: 26/476
  34052. }
  34053. },
  34054. boots: {
  34055. height: math.unit(5.5, "feet"),
  34056. name: "Boots",
  34057. image: {
  34058. source: "./media/characters/purri/boots.svg",
  34059. extra: 905/853,
  34060. bottom: 18/923
  34061. },
  34062. extraAttributes: {
  34063. "shoeSize": {
  34064. name: "Shoe Size",
  34065. power: 1,
  34066. type: "length",
  34067. base: math.unit(12, "ShoeSizeMensUS")
  34068. },
  34069. "platformHeight": {
  34070. name: "Platform Height",
  34071. power: 1,
  34072. type: "length",
  34073. base: math.unit(2, "inches")
  34074. },
  34075. }
  34076. },
  34077. lying: {
  34078. height: math.unit(2, "feet"),
  34079. name: "Lying",
  34080. image: {
  34081. source: "./media/characters/purri/lying.svg",
  34082. extra: 940/843,
  34083. bottom: 146/1086
  34084. }
  34085. },
  34086. devious: {
  34087. height: math.unit(1.77, "feet"),
  34088. name: "Devious",
  34089. image: {
  34090. source: "./media/characters/purri/devious.svg",
  34091. extra: 1440/1155,
  34092. bottom: 147/1587
  34093. }
  34094. },
  34095. bean: {
  34096. height: math.unit(1.94, "feet"),
  34097. name: "Bean",
  34098. image: {
  34099. source: "./media/characters/purri/bean.svg"
  34100. }
  34101. },
  34102. },
  34103. [
  34104. {
  34105. name: "Micro",
  34106. height: math.unit(1, "mm")
  34107. },
  34108. {
  34109. name: "Normal",
  34110. height: math.unit(6 + 5/12, "feet"),
  34111. default: true
  34112. },
  34113. {
  34114. name: "Macro :3c",
  34115. height: math.unit(2, "miles")
  34116. },
  34117. ]
  34118. ))
  34119. characterMakers.push(() => makeCharacter(
  34120. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  34121. {
  34122. front: {
  34123. height: math.unit(6 + 2/12, "feet"),
  34124. weight: math.unit(250, "lb"),
  34125. name: "Front",
  34126. image: {
  34127. source: "./media/characters/moonlight/front.svg",
  34128. extra: 1044/908,
  34129. bottom: 56/1100
  34130. }
  34131. },
  34132. feral: {
  34133. height: math.unit(3 + 1/12, "feet"),
  34134. weight: math.unit(50, "kg"),
  34135. name: "Feral",
  34136. image: {
  34137. source: "./media/characters/moonlight/feral.svg",
  34138. extra: 3705/2791,
  34139. bottom: 145/3850
  34140. }
  34141. },
  34142. paw: {
  34143. height: math.unit(1, "feet"),
  34144. name: "Paw",
  34145. image: {
  34146. source: "./media/characters/moonlight/paw.svg"
  34147. }
  34148. },
  34149. paws: {
  34150. height: math.unit(0.98, "feet"),
  34151. name: "Paws",
  34152. image: {
  34153. source: "./media/characters/moonlight/paws.svg",
  34154. extra: 939/939,
  34155. bottom: 50/989
  34156. }
  34157. },
  34158. mouth: {
  34159. height: math.unit(0.48, "feet"),
  34160. name: "Mouth",
  34161. image: {
  34162. source: "./media/characters/moonlight/mouth.svg"
  34163. }
  34164. },
  34165. dick: {
  34166. height: math.unit(1.46, "feet"),
  34167. name: "Dick",
  34168. image: {
  34169. source: "./media/characters/moonlight/dick.svg"
  34170. }
  34171. },
  34172. },
  34173. [
  34174. {
  34175. name: "Normal",
  34176. height: math.unit(6 + 2/12, "feet"),
  34177. default: true
  34178. },
  34179. {
  34180. name: "Macro",
  34181. height: math.unit(300, "feet")
  34182. },
  34183. {
  34184. name: "Macro+",
  34185. height: math.unit(1, "mile")
  34186. },
  34187. {
  34188. name: "Mt. Moon",
  34189. height: math.unit(5, "miles")
  34190. },
  34191. {
  34192. name: "Megamacro",
  34193. height: math.unit(15, "miles")
  34194. },
  34195. ]
  34196. ))
  34197. characterMakers.push(() => makeCharacter(
  34198. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  34199. {
  34200. back: {
  34201. height: math.unit(6, "feet"),
  34202. weight: math.unit(150, "lb"),
  34203. name: "Back",
  34204. image: {
  34205. source: "./media/characters/sylen/back.svg",
  34206. extra: 1335/1273,
  34207. bottom: 107/1442
  34208. }
  34209. },
  34210. },
  34211. [
  34212. {
  34213. name: "Normal",
  34214. height: math.unit(5 + 5/12, "feet")
  34215. },
  34216. {
  34217. name: "Megamacro",
  34218. height: math.unit(3, "miles"),
  34219. default: true
  34220. },
  34221. ]
  34222. ))
  34223. characterMakers.push(() => makeCharacter(
  34224. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  34225. {
  34226. front: {
  34227. height: math.unit(6, "feet"),
  34228. weight: math.unit(190, "lb"),
  34229. name: "Front",
  34230. image: {
  34231. source: "./media/characters/huttser/front.svg",
  34232. extra: 1152/1058,
  34233. bottom: 23/1175
  34234. }
  34235. },
  34236. side: {
  34237. height: math.unit(6, "feet"),
  34238. weight: math.unit(190, "lb"),
  34239. name: "Side",
  34240. image: {
  34241. source: "./media/characters/huttser/side.svg",
  34242. extra: 1174/1065,
  34243. bottom: 18/1192
  34244. }
  34245. },
  34246. back: {
  34247. height: math.unit(6, "feet"),
  34248. weight: math.unit(190, "lb"),
  34249. name: "Back",
  34250. image: {
  34251. source: "./media/characters/huttser/back.svg",
  34252. extra: 1158/1056,
  34253. bottom: 12/1170
  34254. }
  34255. },
  34256. },
  34257. [
  34258. ]
  34259. ))
  34260. characterMakers.push(() => makeCharacter(
  34261. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  34262. {
  34263. side: {
  34264. height: math.unit(12 + 9/12, "feet"),
  34265. weight: math.unit(15000, "lb"),
  34266. name: "Side",
  34267. image: {
  34268. source: "./media/characters/faan/side.svg",
  34269. extra: 2747/2697,
  34270. bottom: 0/2747
  34271. }
  34272. },
  34273. front: {
  34274. height: math.unit(12 + 9/12, "feet"),
  34275. weight: math.unit(15000, "lb"),
  34276. name: "Front",
  34277. image: {
  34278. source: "./media/characters/faan/front.svg",
  34279. extra: 607/571,
  34280. bottom: 24/631
  34281. }
  34282. },
  34283. head: {
  34284. height: math.unit(2.85, "feet"),
  34285. name: "Head",
  34286. image: {
  34287. source: "./media/characters/faan/head.svg"
  34288. }
  34289. },
  34290. headAlt: {
  34291. height: math.unit(3.13, "feet"),
  34292. name: "Head-alt",
  34293. image: {
  34294. source: "./media/characters/faan/head-alt.svg"
  34295. }
  34296. },
  34297. },
  34298. [
  34299. {
  34300. name: "Normal",
  34301. height: math.unit(12 + 9/12, "feet"),
  34302. default: true
  34303. },
  34304. ]
  34305. ))
  34306. characterMakers.push(() => makeCharacter(
  34307. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  34308. {
  34309. front: {
  34310. height: math.unit(6, "feet"),
  34311. weight: math.unit(300, "lb"),
  34312. name: "Front",
  34313. image: {
  34314. source: "./media/characters/tanio/front.svg",
  34315. extra: 711/673,
  34316. bottom: 25/736
  34317. }
  34318. },
  34319. },
  34320. [
  34321. {
  34322. name: "Normal",
  34323. height: math.unit(6, "feet"),
  34324. default: true
  34325. },
  34326. ]
  34327. ))
  34328. characterMakers.push(() => makeCharacter(
  34329. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  34330. {
  34331. front: {
  34332. height: math.unit(3, "inches"),
  34333. name: "Front",
  34334. image: {
  34335. source: "./media/characters/noboru/front.svg",
  34336. extra: 1039/932,
  34337. bottom: 18/1057
  34338. }
  34339. },
  34340. },
  34341. [
  34342. {
  34343. name: "Micro",
  34344. height: math.unit(3, "inches"),
  34345. default: true
  34346. },
  34347. ]
  34348. ))
  34349. characterMakers.push(() => makeCharacter(
  34350. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  34351. {
  34352. front: {
  34353. height: math.unit(1.85, "meters"),
  34354. weight: math.unit(80, "kg"),
  34355. name: "Front",
  34356. image: {
  34357. source: "./media/characters/daniel-barrett/front.svg",
  34358. extra: 355/337,
  34359. bottom: 9/364
  34360. }
  34361. },
  34362. },
  34363. [
  34364. {
  34365. name: "Pico",
  34366. height: math.unit(0.0433, "mm")
  34367. },
  34368. {
  34369. name: "Nano",
  34370. height: math.unit(1.5, "mm")
  34371. },
  34372. {
  34373. name: "Micro",
  34374. height: math.unit(5.3, "cm"),
  34375. default: true
  34376. },
  34377. {
  34378. name: "Normal",
  34379. height: math.unit(1.85, "meters")
  34380. },
  34381. {
  34382. name: "Macro",
  34383. height: math.unit(64.7, "meters")
  34384. },
  34385. {
  34386. name: "Megamacro",
  34387. height: math.unit(2.26, "km")
  34388. },
  34389. {
  34390. name: "Gigamacro",
  34391. height: math.unit(79, "km")
  34392. },
  34393. {
  34394. name: "Teramacro",
  34395. height: math.unit(2765, "km")
  34396. },
  34397. {
  34398. name: "Petamacro",
  34399. height: math.unit(96678, "km")
  34400. },
  34401. ]
  34402. ))
  34403. characterMakers.push(() => makeCharacter(
  34404. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  34405. {
  34406. front: {
  34407. height: math.unit(30, "meters"),
  34408. weight: math.unit(400, "tons"),
  34409. name: "Front",
  34410. image: {
  34411. source: "./media/characters/zeel/front.svg",
  34412. extra: 2599/2599,
  34413. bottom: 226/2825
  34414. }
  34415. },
  34416. },
  34417. [
  34418. {
  34419. name: "Macro",
  34420. height: math.unit(30, "meters"),
  34421. default: true
  34422. },
  34423. ]
  34424. ))
  34425. characterMakers.push(() => makeCharacter(
  34426. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  34427. {
  34428. front: {
  34429. height: math.unit(6 + 7/12, "feet"),
  34430. weight: math.unit(210, "lb"),
  34431. name: "Front",
  34432. image: {
  34433. source: "./media/characters/tarn/front.svg",
  34434. extra: 3517/3220,
  34435. bottom: 91/3608
  34436. }
  34437. },
  34438. back: {
  34439. height: math.unit(6 + 7/12, "feet"),
  34440. weight: math.unit(210, "lb"),
  34441. name: "Back",
  34442. image: {
  34443. source: "./media/characters/tarn/back.svg",
  34444. extra: 3566/3241,
  34445. bottom: 34/3600
  34446. }
  34447. },
  34448. dick: {
  34449. height: math.unit(1.65, "feet"),
  34450. name: "Dick",
  34451. image: {
  34452. source: "./media/characters/tarn/dick.svg"
  34453. }
  34454. },
  34455. paw: {
  34456. height: math.unit(1.80, "feet"),
  34457. name: "Paw",
  34458. image: {
  34459. source: "./media/characters/tarn/paw.svg"
  34460. }
  34461. },
  34462. tongue: {
  34463. height: math.unit(0.97, "feet"),
  34464. name: "Tongue",
  34465. image: {
  34466. source: "./media/characters/tarn/tongue.svg"
  34467. }
  34468. },
  34469. },
  34470. [
  34471. {
  34472. name: "Micro",
  34473. height: math.unit(4, "inches")
  34474. },
  34475. {
  34476. name: "Normal",
  34477. height: math.unit(6 + 7/12, "feet"),
  34478. default: true
  34479. },
  34480. {
  34481. name: "Macro",
  34482. height: math.unit(300, "feet")
  34483. },
  34484. ]
  34485. ))
  34486. characterMakers.push(() => makeCharacter(
  34487. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  34488. {
  34489. front: {
  34490. height: math.unit(5 + 7/12, "feet"),
  34491. weight: math.unit(80, "kg"),
  34492. name: "Front",
  34493. image: {
  34494. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  34495. extra: 3023/2865,
  34496. bottom: 33/3056
  34497. }
  34498. },
  34499. back: {
  34500. height: math.unit(5 + 7/12, "feet"),
  34501. weight: math.unit(80, "kg"),
  34502. name: "Back",
  34503. image: {
  34504. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  34505. extra: 3020/2886,
  34506. bottom: 30/3050
  34507. }
  34508. },
  34509. dick: {
  34510. height: math.unit(0.98, "feet"),
  34511. name: "Dick",
  34512. image: {
  34513. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  34514. }
  34515. },
  34516. anatomy: {
  34517. height: math.unit(2.86, "feet"),
  34518. name: "Anatomy",
  34519. image: {
  34520. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  34521. }
  34522. },
  34523. },
  34524. [
  34525. {
  34526. name: "Really Small",
  34527. height: math.unit(2, "inches")
  34528. },
  34529. {
  34530. name: "Micro",
  34531. height: math.unit(5.583, "inches")
  34532. },
  34533. {
  34534. name: "Normal",
  34535. height: math.unit(5 + 7/12, "feet"),
  34536. default: true
  34537. },
  34538. {
  34539. name: "Macro",
  34540. height: math.unit(67, "feet")
  34541. },
  34542. {
  34543. name: "Megamacro",
  34544. height: math.unit(134, "feet")
  34545. },
  34546. ]
  34547. ))
  34548. characterMakers.push(() => makeCharacter(
  34549. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  34550. {
  34551. front: {
  34552. height: math.unit(9, "feet"),
  34553. weight: math.unit(120, "lb"),
  34554. name: "Front",
  34555. image: {
  34556. source: "./media/characters/sally/front.svg",
  34557. extra: 1506/1349,
  34558. bottom: 66/1572
  34559. }
  34560. },
  34561. },
  34562. [
  34563. {
  34564. name: "Normal",
  34565. height: math.unit(9, "feet"),
  34566. default: true
  34567. },
  34568. ]
  34569. ))
  34570. characterMakers.push(() => makeCharacter(
  34571. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  34572. {
  34573. front: {
  34574. height: math.unit(8, "feet"),
  34575. weight: math.unit(900, "lb"),
  34576. name: "Front",
  34577. image: {
  34578. source: "./media/characters/owen/front.svg",
  34579. extra: 1761/1657,
  34580. bottom: 74/1835
  34581. }
  34582. },
  34583. side: {
  34584. height: math.unit(8, "feet"),
  34585. weight: math.unit(900, "lb"),
  34586. name: "Side",
  34587. image: {
  34588. source: "./media/characters/owen/side.svg",
  34589. extra: 1797/1734,
  34590. bottom: 30/1827
  34591. }
  34592. },
  34593. back: {
  34594. height: math.unit(8, "feet"),
  34595. weight: math.unit(900, "lb"),
  34596. name: "Back",
  34597. image: {
  34598. source: "./media/characters/owen/back.svg",
  34599. extra: 1796/1706,
  34600. bottom: 59/1855
  34601. }
  34602. },
  34603. maw: {
  34604. height: math.unit(1.76, "feet"),
  34605. name: "Maw",
  34606. image: {
  34607. source: "./media/characters/owen/maw.svg"
  34608. }
  34609. },
  34610. },
  34611. [
  34612. {
  34613. name: "Normal",
  34614. height: math.unit(8, "feet"),
  34615. default: true
  34616. },
  34617. ]
  34618. ))
  34619. characterMakers.push(() => makeCharacter(
  34620. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  34621. {
  34622. front: {
  34623. height: math.unit(4, "feet"),
  34624. weight: math.unit(400, "lb"),
  34625. name: "Front",
  34626. image: {
  34627. source: "./media/characters/ryth/front.svg",
  34628. extra: 1920/1748,
  34629. bottom: 42/1962
  34630. }
  34631. },
  34632. back: {
  34633. height: math.unit(4, "feet"),
  34634. weight: math.unit(400, "lb"),
  34635. name: "Back",
  34636. image: {
  34637. source: "./media/characters/ryth/back.svg",
  34638. extra: 1897/1690,
  34639. bottom: 89/1986
  34640. }
  34641. },
  34642. mouth: {
  34643. height: math.unit(1.39, "feet"),
  34644. name: "Mouth",
  34645. image: {
  34646. source: "./media/characters/ryth/mouth.svg"
  34647. }
  34648. },
  34649. tailmaw: {
  34650. height: math.unit(1.23, "feet"),
  34651. name: "Tailmaw",
  34652. image: {
  34653. source: "./media/characters/ryth/tailmaw.svg"
  34654. }
  34655. },
  34656. goia: {
  34657. height: math.unit(4, "meters"),
  34658. weight: math.unit(10800, "lb"),
  34659. name: "Goia",
  34660. image: {
  34661. source: "./media/characters/ryth/goia.svg",
  34662. extra: 745/640,
  34663. bottom: 107/852
  34664. }
  34665. },
  34666. goiaFront: {
  34667. height: math.unit(4, "meters"),
  34668. weight: math.unit(10800, "lb"),
  34669. name: "Goia (Front)",
  34670. image: {
  34671. source: "./media/characters/ryth/goia-front.svg",
  34672. extra: 750/586,
  34673. bottom: 114/864
  34674. }
  34675. },
  34676. goiaMaw: {
  34677. height: math.unit(5.55, "feet"),
  34678. name: "Goia Maw",
  34679. image: {
  34680. source: "./media/characters/ryth/goia-maw.svg"
  34681. }
  34682. },
  34683. goiaForepaw: {
  34684. height: math.unit(3.5, "feet"),
  34685. name: "Goia Forepaw",
  34686. image: {
  34687. source: "./media/characters/ryth/goia-forepaw.svg"
  34688. }
  34689. },
  34690. goiaHindpaw: {
  34691. height: math.unit(5.55, "feet"),
  34692. name: "Goia Hindpaw",
  34693. image: {
  34694. source: "./media/characters/ryth/goia-hindpaw.svg"
  34695. }
  34696. },
  34697. },
  34698. [
  34699. {
  34700. name: "Normal",
  34701. height: math.unit(4, "feet"),
  34702. default: true
  34703. },
  34704. ]
  34705. ))
  34706. characterMakers.push(() => makeCharacter(
  34707. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  34708. {
  34709. front: {
  34710. height: math.unit(7, "feet"),
  34711. weight: math.unit(180, "lb"),
  34712. name: "Front",
  34713. image: {
  34714. source: "./media/characters/necrolance/front.svg",
  34715. extra: 1062/947,
  34716. bottom: 41/1103
  34717. }
  34718. },
  34719. back: {
  34720. height: math.unit(7, "feet"),
  34721. weight: math.unit(180, "lb"),
  34722. name: "Back",
  34723. image: {
  34724. source: "./media/characters/necrolance/back.svg",
  34725. extra: 1045/984,
  34726. bottom: 14/1059
  34727. }
  34728. },
  34729. wing: {
  34730. height: math.unit(2.67, "feet"),
  34731. name: "Wing",
  34732. image: {
  34733. source: "./media/characters/necrolance/wing.svg"
  34734. }
  34735. },
  34736. },
  34737. [
  34738. {
  34739. name: "Normal",
  34740. height: math.unit(7, "feet"),
  34741. default: true
  34742. },
  34743. ]
  34744. ))
  34745. characterMakers.push(() => makeCharacter(
  34746. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  34747. {
  34748. front: {
  34749. height: math.unit(76, "meters"),
  34750. weight: math.unit(30000, "tons"),
  34751. name: "Front",
  34752. image: {
  34753. source: "./media/characters/tyler/front.svg",
  34754. extra: 1640/1640,
  34755. bottom: 114/1754
  34756. }
  34757. },
  34758. },
  34759. [
  34760. {
  34761. name: "Macro",
  34762. height: math.unit(76, "meters"),
  34763. default: true
  34764. },
  34765. ]
  34766. ))
  34767. characterMakers.push(() => makeCharacter(
  34768. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  34769. {
  34770. front: {
  34771. height: math.unit(4 + 11/12, "feet"),
  34772. weight: math.unit(132, "lb"),
  34773. name: "Front",
  34774. image: {
  34775. source: "./media/characters/icey/front.svg",
  34776. extra: 2750/2550,
  34777. bottom: 33/2783
  34778. }
  34779. },
  34780. back: {
  34781. height: math.unit(4 + 11/12, "feet"),
  34782. weight: math.unit(132, "lb"),
  34783. name: "Back",
  34784. image: {
  34785. source: "./media/characters/icey/back.svg",
  34786. extra: 2624/2481,
  34787. bottom: 35/2659
  34788. }
  34789. },
  34790. },
  34791. [
  34792. {
  34793. name: "Normal",
  34794. height: math.unit(4 + 11/12, "feet"),
  34795. default: true
  34796. },
  34797. ]
  34798. ))
  34799. characterMakers.push(() => makeCharacter(
  34800. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  34801. {
  34802. front: {
  34803. height: math.unit(100, "feet"),
  34804. weight: math.unit(0, "lb"),
  34805. name: "Front",
  34806. image: {
  34807. source: "./media/characters/smile/front.svg",
  34808. extra: 2983/2912,
  34809. bottom: 162/3145
  34810. }
  34811. },
  34812. back: {
  34813. height: math.unit(100, "feet"),
  34814. weight: math.unit(0, "lb"),
  34815. name: "Back",
  34816. image: {
  34817. source: "./media/characters/smile/back.svg",
  34818. extra: 3143/3031,
  34819. bottom: 91/3234
  34820. }
  34821. },
  34822. head: {
  34823. height: math.unit(26.3, "feet"),
  34824. weight: math.unit(0, "lb"),
  34825. name: "Head",
  34826. image: {
  34827. source: "./media/characters/smile/head.svg"
  34828. }
  34829. },
  34830. collar: {
  34831. height: math.unit(5.3, "feet"),
  34832. weight: math.unit(0, "lb"),
  34833. name: "Collar",
  34834. image: {
  34835. source: "./media/characters/smile/collar.svg"
  34836. }
  34837. },
  34838. },
  34839. [
  34840. {
  34841. name: "Macro",
  34842. height: math.unit(100, "feet"),
  34843. default: true
  34844. },
  34845. ]
  34846. ))
  34847. characterMakers.push(() => makeCharacter(
  34848. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  34849. {
  34850. dragon: {
  34851. height: math.unit(26, "feet"),
  34852. weight: math.unit(36, "tons"),
  34853. name: "Dragon",
  34854. image: {
  34855. source: "./media/characters/arimphae/dragon.svg",
  34856. extra: 1574/983,
  34857. bottom: 357/1931
  34858. }
  34859. },
  34860. drake: {
  34861. height: math.unit(9, "feet"),
  34862. weight: math.unit(1.5, "tons"),
  34863. name: "Drake",
  34864. image: {
  34865. source: "./media/characters/arimphae/drake.svg",
  34866. extra: 1120/925,
  34867. bottom: 435/1555
  34868. }
  34869. },
  34870. },
  34871. [
  34872. {
  34873. name: "Small",
  34874. height: math.unit(26*5/9, "feet")
  34875. },
  34876. {
  34877. name: "Normal",
  34878. height: math.unit(26, "feet"),
  34879. default: true
  34880. },
  34881. ]
  34882. ))
  34883. characterMakers.push(() => makeCharacter(
  34884. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  34885. {
  34886. front: {
  34887. height: math.unit(8 + 9/12, "feet"),
  34888. name: "Front",
  34889. image: {
  34890. source: "./media/characters/xander/front.svg",
  34891. extra: 1237/974,
  34892. bottom: 94/1331
  34893. }
  34894. },
  34895. },
  34896. [
  34897. {
  34898. name: "Normal",
  34899. height: math.unit(8 + 9/12, "feet"),
  34900. default: true
  34901. },
  34902. {
  34903. name: "Gaze Grabber",
  34904. height: math.unit(13 + 8/12, "feet")
  34905. },
  34906. {
  34907. name: "Jaw Dropper",
  34908. height: math.unit(27, "feet")
  34909. },
  34910. {
  34911. name: "Show Stopper",
  34912. height: math.unit(136, "feet")
  34913. },
  34914. {
  34915. name: "Superstar",
  34916. height: math.unit(1.9e6, "miles")
  34917. },
  34918. ]
  34919. ))
  34920. characterMakers.push(() => makeCharacter(
  34921. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  34922. {
  34923. side: {
  34924. height: math.unit(2100, "feet"),
  34925. name: "Side",
  34926. image: {
  34927. source: "./media/characters/osiris/side.svg",
  34928. extra: 1105/939,
  34929. bottom: 167/1272
  34930. }
  34931. },
  34932. },
  34933. [
  34934. {
  34935. name: "Macro",
  34936. height: math.unit(2100, "feet"),
  34937. default: true
  34938. },
  34939. ]
  34940. ))
  34941. characterMakers.push(() => makeCharacter(
  34942. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  34943. {
  34944. front: {
  34945. height: math.unit(6 + 8/12, "feet"),
  34946. weight: math.unit(225, "lb"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/rhys-londe/front.svg",
  34950. extra: 2258/2141,
  34951. bottom: 188/2446
  34952. }
  34953. },
  34954. back: {
  34955. height: math.unit(6 + 8/12, "feet"),
  34956. weight: math.unit(225, "lb"),
  34957. name: "Back",
  34958. image: {
  34959. source: "./media/characters/rhys-londe/back.svg",
  34960. extra: 2237/2137,
  34961. bottom: 63/2300
  34962. }
  34963. },
  34964. frontNsfw: {
  34965. height: math.unit(6 + 8/12, "feet"),
  34966. weight: math.unit(225, "lb"),
  34967. name: "Front (NSFW)",
  34968. image: {
  34969. source: "./media/characters/rhys-londe/front-nsfw.svg",
  34970. extra: 2258/2141,
  34971. bottom: 188/2446
  34972. }
  34973. },
  34974. backNsfw: {
  34975. height: math.unit(6 + 8/12, "feet"),
  34976. weight: math.unit(225, "lb"),
  34977. name: "Back (NSFW)",
  34978. image: {
  34979. source: "./media/characters/rhys-londe/back-nsfw.svg",
  34980. extra: 2237/2137,
  34981. bottom: 63/2300
  34982. }
  34983. },
  34984. dick: {
  34985. height: math.unit(30, "inches"),
  34986. name: "Dick",
  34987. image: {
  34988. source: "./media/characters/rhys-londe/dick.svg"
  34989. }
  34990. },
  34991. maw: {
  34992. height: math.unit(1.6, "feet"),
  34993. name: "Maw",
  34994. image: {
  34995. source: "./media/characters/rhys-londe/maw.svg"
  34996. }
  34997. },
  34998. },
  34999. [
  35000. {
  35001. name: "Normal",
  35002. height: math.unit(6 + 8/12, "feet"),
  35003. default: true
  35004. },
  35005. ]
  35006. ))
  35007. characterMakers.push(() => makeCharacter(
  35008. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  35009. {
  35010. front: {
  35011. height: math.unit(3 + 10/12, "feet"),
  35012. weight: math.unit(90, "lb"),
  35013. name: "Front",
  35014. image: {
  35015. source: "./media/characters/taivas-ensim/front.svg",
  35016. extra: 1327/1216,
  35017. bottom: 96/1423
  35018. }
  35019. },
  35020. back: {
  35021. height: math.unit(3 + 10/12, "feet"),
  35022. weight: math.unit(90, "lb"),
  35023. name: "Back",
  35024. image: {
  35025. source: "./media/characters/taivas-ensim/back.svg",
  35026. extra: 1355/1247,
  35027. bottom: 11/1366
  35028. }
  35029. },
  35030. frontNsfw: {
  35031. height: math.unit(3 + 10/12, "feet"),
  35032. weight: math.unit(90, "lb"),
  35033. name: "Front (NSFW)",
  35034. image: {
  35035. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  35036. extra: 1327/1216,
  35037. bottom: 96/1423
  35038. }
  35039. },
  35040. backNsfw: {
  35041. height: math.unit(3 + 10/12, "feet"),
  35042. weight: math.unit(90, "lb"),
  35043. name: "Back (NSFW)",
  35044. image: {
  35045. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  35046. extra: 1355/1247,
  35047. bottom: 11/1366
  35048. }
  35049. },
  35050. },
  35051. [
  35052. {
  35053. name: "Normal",
  35054. height: math.unit(3 + 10/12, "feet"),
  35055. default: true
  35056. },
  35057. ]
  35058. ))
  35059. characterMakers.push(() => makeCharacter(
  35060. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  35061. {
  35062. front: {
  35063. height: math.unit(9 + 6/12, "feet"),
  35064. weight: math.unit(940, "lb"),
  35065. name: "Front",
  35066. image: {
  35067. source: "./media/characters/byliss/front.svg",
  35068. extra: 1327/1290,
  35069. bottom: 82/1409
  35070. }
  35071. },
  35072. back: {
  35073. height: math.unit(9 + 6/12, "feet"),
  35074. weight: math.unit(940, "lb"),
  35075. name: "Back",
  35076. image: {
  35077. source: "./media/characters/byliss/back.svg",
  35078. extra: 1376/1349,
  35079. bottom: 9/1385
  35080. }
  35081. },
  35082. frontNsfw: {
  35083. height: math.unit(9 + 6/12, "feet"),
  35084. weight: math.unit(940, "lb"),
  35085. name: "Front (NSFW)",
  35086. image: {
  35087. source: "./media/characters/byliss/front-nsfw.svg",
  35088. extra: 1327/1290,
  35089. bottom: 82/1409
  35090. }
  35091. },
  35092. backNsfw: {
  35093. height: math.unit(9 + 6/12, "feet"),
  35094. weight: math.unit(940, "lb"),
  35095. name: "Back (NSFW)",
  35096. image: {
  35097. source: "./media/characters/byliss/back-nsfw.svg",
  35098. extra: 1376/1349,
  35099. bottom: 9/1385
  35100. }
  35101. },
  35102. },
  35103. [
  35104. {
  35105. name: "Normal",
  35106. height: math.unit(9 + 6/12, "feet"),
  35107. default: true
  35108. },
  35109. ]
  35110. ))
  35111. characterMakers.push(() => makeCharacter(
  35112. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  35113. {
  35114. front: {
  35115. height: math.unit(5 + 2/12, "feet"),
  35116. weight: math.unit(200, "lb"),
  35117. name: "Front",
  35118. image: {
  35119. source: "./media/characters/noraly/front.svg",
  35120. extra: 4985/4773,
  35121. bottom: 150/5135
  35122. }
  35123. },
  35124. full: {
  35125. height: math.unit(5 + 2/12, "feet"),
  35126. weight: math.unit(164, "lb"),
  35127. name: "Full",
  35128. image: {
  35129. source: "./media/characters/noraly/full.svg",
  35130. extra: 1114/1059,
  35131. bottom: 35/1149
  35132. }
  35133. },
  35134. fuller: {
  35135. height: math.unit(5 + 2/12, "feet"),
  35136. weight: math.unit(230, "lb"),
  35137. name: "Fuller",
  35138. image: {
  35139. source: "./media/characters/noraly/fuller.svg",
  35140. extra: 1114/1059,
  35141. bottom: 35/1149
  35142. }
  35143. },
  35144. fullest: {
  35145. height: math.unit(5 + 2/12, "feet"),
  35146. weight: math.unit(300, "lb"),
  35147. name: "Fullest",
  35148. image: {
  35149. source: "./media/characters/noraly/fullest.svg",
  35150. extra: 1114/1059,
  35151. bottom: 35/1149
  35152. }
  35153. },
  35154. },
  35155. [
  35156. {
  35157. name: "Normal",
  35158. height: math.unit(5 + 2/12, "feet"),
  35159. default: true
  35160. },
  35161. ]
  35162. ))
  35163. characterMakers.push(() => makeCharacter(
  35164. { name: "Pera", species: ["snake"], tags: ["naga"] },
  35165. {
  35166. front: {
  35167. height: math.unit(5 + 2/12, "feet"),
  35168. weight: math.unit(210, "lb"),
  35169. name: "Front",
  35170. image: {
  35171. source: "./media/characters/pera/front.svg",
  35172. extra: 1560/1531,
  35173. bottom: 165/1725
  35174. }
  35175. },
  35176. back: {
  35177. height: math.unit(5 + 2/12, "feet"),
  35178. weight: math.unit(210, "lb"),
  35179. name: "Back",
  35180. image: {
  35181. source: "./media/characters/pera/back.svg",
  35182. extra: 1523/1493,
  35183. bottom: 152/1675
  35184. }
  35185. },
  35186. dick: {
  35187. height: math.unit(2.4, "feet"),
  35188. name: "Dick",
  35189. image: {
  35190. source: "./media/characters/pera/dick.svg"
  35191. }
  35192. },
  35193. },
  35194. [
  35195. {
  35196. name: "Normal",
  35197. height: math.unit(5 + 2/12, "feet"),
  35198. default: true
  35199. },
  35200. ]
  35201. ))
  35202. characterMakers.push(() => makeCharacter(
  35203. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  35204. {
  35205. front: {
  35206. height: math.unit(12, "feet"),
  35207. weight: math.unit(3200, "lb"),
  35208. name: "Front",
  35209. image: {
  35210. source: "./media/characters/julian/front.svg",
  35211. extra: 2962/2701,
  35212. bottom: 184/3146
  35213. }
  35214. },
  35215. maw: {
  35216. height: math.unit(5.35, "feet"),
  35217. name: "Maw",
  35218. image: {
  35219. source: "./media/characters/julian/maw.svg"
  35220. }
  35221. },
  35222. paw: {
  35223. height: math.unit(3.07, "feet"),
  35224. name: "Paw",
  35225. image: {
  35226. source: "./media/characters/julian/paw.svg"
  35227. }
  35228. },
  35229. },
  35230. [
  35231. {
  35232. name: "Default",
  35233. height: math.unit(12, "feet"),
  35234. default: true
  35235. },
  35236. {
  35237. name: "Big",
  35238. height: math.unit(50, "feet")
  35239. },
  35240. {
  35241. name: "Really Big",
  35242. height: math.unit(1, "mile")
  35243. },
  35244. {
  35245. name: "Extremely Big",
  35246. height: math.unit(100, "miles")
  35247. },
  35248. {
  35249. name: "Planet Hugger",
  35250. height: math.unit(200, "megameters")
  35251. },
  35252. {
  35253. name: "Unreasonably Big",
  35254. height: math.unit(1e300, "meters")
  35255. },
  35256. ]
  35257. ))
  35258. characterMakers.push(() => makeCharacter(
  35259. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  35260. {
  35261. solgooleo: {
  35262. height: math.unit(4, "meters"),
  35263. weight: math.unit(6000*1.5, "kg"),
  35264. volume: math.unit(6000, "liters"),
  35265. name: "Solgooleo",
  35266. image: {
  35267. source: "./media/characters/pi/solgooleo.svg",
  35268. extra: 388/331,
  35269. bottom: 29/417
  35270. }
  35271. },
  35272. },
  35273. [
  35274. {
  35275. name: "Normal",
  35276. height: math.unit(4, "meters"),
  35277. default: true
  35278. },
  35279. ]
  35280. ))
  35281. characterMakers.push(() => makeCharacter(
  35282. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  35283. {
  35284. front: {
  35285. height: math.unit(8, "feet"),
  35286. weight: math.unit(4, "tons"),
  35287. name: "Front",
  35288. image: {
  35289. source: "./media/characters/shaun/front.svg",
  35290. extra: 503/495,
  35291. bottom: 20/523
  35292. }
  35293. },
  35294. back: {
  35295. height: math.unit(8, "feet"),
  35296. weight: math.unit(4, "tons"),
  35297. name: "Back",
  35298. image: {
  35299. source: "./media/characters/shaun/back.svg",
  35300. extra: 487/480,
  35301. bottom: 20/507
  35302. }
  35303. },
  35304. },
  35305. [
  35306. {
  35307. name: "Lorg",
  35308. height: math.unit(8, "feet"),
  35309. default: true
  35310. },
  35311. ]
  35312. ))
  35313. characterMakers.push(() => makeCharacter(
  35314. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  35315. {
  35316. frontAnthro: {
  35317. height: math.unit(7, "feet"),
  35318. name: "Front",
  35319. image: {
  35320. source: "./media/characters/sini/front-anthro.svg",
  35321. extra: 726/678,
  35322. bottom: 35/761
  35323. },
  35324. form: "anthro",
  35325. default: true
  35326. },
  35327. backAnthro: {
  35328. height: math.unit(7, "feet"),
  35329. name: "Back",
  35330. image: {
  35331. source: "./media/characters/sini/back-anthro.svg",
  35332. extra: 743/701,
  35333. bottom: 12/755
  35334. },
  35335. form: "anthro",
  35336. },
  35337. frontAnthroNsfw: {
  35338. height: math.unit(7, "feet"),
  35339. name: "Front (NSFW)",
  35340. image: {
  35341. source: "./media/characters/sini/front-anthro-nsfw.svg",
  35342. extra: 726/678,
  35343. bottom: 35/761
  35344. },
  35345. form: "anthro"
  35346. },
  35347. backAnthroNsfw: {
  35348. height: math.unit(7, "feet"),
  35349. name: "Back (NSFW)",
  35350. image: {
  35351. source: "./media/characters/sini/back-anthro-nsfw.svg",
  35352. extra: 743/701,
  35353. bottom: 12/755
  35354. },
  35355. form: "anthro",
  35356. },
  35357. mawAnthro: {
  35358. height: math.unit(2.14, "feet"),
  35359. name: "Maw",
  35360. image: {
  35361. source: "./media/characters/sini/maw-anthro.svg"
  35362. },
  35363. form: "anthro"
  35364. },
  35365. dick: {
  35366. height: math.unit(1.45, "feet"),
  35367. name: "Dick",
  35368. image: {
  35369. source: "./media/characters/sini/dick-anthro.svg"
  35370. },
  35371. form: "anthro"
  35372. },
  35373. feral: {
  35374. height: math.unit(16, "feet"),
  35375. name: "Feral",
  35376. image: {
  35377. source: "./media/characters/sini/feral.svg",
  35378. extra: 814/605,
  35379. bottom: 11/825
  35380. },
  35381. form: "feral",
  35382. default: true
  35383. },
  35384. feralNsfw: {
  35385. height: math.unit(16, "feet"),
  35386. name: "Feral (NSFW)",
  35387. image: {
  35388. source: "./media/characters/sini/feral-nsfw.svg",
  35389. extra: 814/605,
  35390. bottom: 11/825
  35391. },
  35392. form: "feral"
  35393. },
  35394. mawFeral: {
  35395. height: math.unit(5.66, "feet"),
  35396. name: "Maw",
  35397. image: {
  35398. source: "./media/characters/sini/maw-feral.svg"
  35399. },
  35400. form: "feral",
  35401. },
  35402. pawFeral: {
  35403. height: math.unit(5.17, "feet"),
  35404. name: "Paw",
  35405. image: {
  35406. source: "./media/characters/sini/paw-feral.svg"
  35407. },
  35408. form: "feral",
  35409. },
  35410. rumpFeral: {
  35411. height: math.unit(13.11, "feet"),
  35412. name: "Rump",
  35413. image: {
  35414. source: "./media/characters/sini/rump-feral.svg"
  35415. },
  35416. form: "feral",
  35417. },
  35418. dickFeral: {
  35419. height: math.unit(1, "feet"),
  35420. name: "Dick",
  35421. image: {
  35422. source: "./media/characters/sini/dick-feral.svg"
  35423. },
  35424. form: "feral",
  35425. },
  35426. eyeFeral: {
  35427. height: math.unit(1.23, "feet"),
  35428. name: "Eye",
  35429. image: {
  35430. source: "./media/characters/sini/eye-feral.svg"
  35431. },
  35432. form: "feral",
  35433. },
  35434. },
  35435. [
  35436. {
  35437. name: "Normal",
  35438. height: math.unit(7, "feet"),
  35439. default: true,
  35440. form: "anthro"
  35441. },
  35442. {
  35443. name: "Normal",
  35444. height: math.unit(16, "feet"),
  35445. default: true,
  35446. form: "feral"
  35447. },
  35448. ],
  35449. {
  35450. "anthro": {
  35451. name: "Anthro",
  35452. default: true
  35453. },
  35454. "feral": {
  35455. name: "Feral",
  35456. }
  35457. }
  35458. ))
  35459. characterMakers.push(() => makeCharacter(
  35460. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  35461. {
  35462. side: {
  35463. height: math.unit(47.2, "meters"),
  35464. weight: math.unit(10000, "tons"),
  35465. name: "Side",
  35466. image: {
  35467. source: "./media/characters/raylldo/side.svg",
  35468. extra: 2363/642,
  35469. bottom: 221/2584
  35470. }
  35471. },
  35472. top: {
  35473. height: math.unit(240, "meters"),
  35474. weight: math.unit(10000, "tons"),
  35475. name: "Top",
  35476. image: {
  35477. source: "./media/characters/raylldo/top.svg"
  35478. }
  35479. },
  35480. bottom: {
  35481. height: math.unit(240, "meters"),
  35482. weight: math.unit(10000, "tons"),
  35483. name: "Bottom",
  35484. image: {
  35485. source: "./media/characters/raylldo/bottom.svg"
  35486. }
  35487. },
  35488. head: {
  35489. height: math.unit(38.6, "meters"),
  35490. name: "Head",
  35491. image: {
  35492. source: "./media/characters/raylldo/head.svg",
  35493. extra: 1335/1112,
  35494. bottom: 0/1335
  35495. }
  35496. },
  35497. maw: {
  35498. height: math.unit(16.37, "meters"),
  35499. name: "Maw",
  35500. image: {
  35501. source: "./media/characters/raylldo/maw.svg",
  35502. extra: 883/660,
  35503. bottom: 0/883
  35504. },
  35505. extraAttributes: {
  35506. preyCapacity: {
  35507. name: "Capacity",
  35508. power: 3,
  35509. type: "volume",
  35510. base: math.unit(1000, "people")
  35511. },
  35512. tongueSize: {
  35513. name: "Tongue Size",
  35514. power: 2,
  35515. type: "area",
  35516. base: math.unit(21, "m^2")
  35517. }
  35518. }
  35519. },
  35520. forepaw: {
  35521. height: math.unit(18, "meters"),
  35522. name: "Forepaw",
  35523. image: {
  35524. source: "./media/characters/raylldo/forepaw.svg"
  35525. }
  35526. },
  35527. hindpaw: {
  35528. height: math.unit(23, "meters"),
  35529. name: "Hindpaw",
  35530. image: {
  35531. source: "./media/characters/raylldo/hindpaw.svg"
  35532. }
  35533. },
  35534. genitals: {
  35535. height: math.unit(42, "meters"),
  35536. name: "Genitals",
  35537. image: {
  35538. source: "./media/characters/raylldo/genitals.svg"
  35539. }
  35540. },
  35541. },
  35542. [
  35543. {
  35544. name: "Normal",
  35545. height: math.unit(47.2, "meters"),
  35546. default: true
  35547. },
  35548. ]
  35549. ))
  35550. characterMakers.push(() => makeCharacter(
  35551. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  35552. {
  35553. anthroFront: {
  35554. height: math.unit(9, "feet"),
  35555. weight: math.unit(600, "lb"),
  35556. name: "Anthro (Front)",
  35557. image: {
  35558. source: "./media/characters/glint/anthro-front.svg",
  35559. extra: 1097/1018,
  35560. bottom: 28/1125
  35561. }
  35562. },
  35563. anthroBack: {
  35564. height: math.unit(9, "feet"),
  35565. weight: math.unit(600, "lb"),
  35566. name: "Anthro (Back)",
  35567. image: {
  35568. source: "./media/characters/glint/anthro-back.svg",
  35569. extra: 1154/997,
  35570. bottom: 36/1190
  35571. }
  35572. },
  35573. feral: {
  35574. height: math.unit(11, "feet"),
  35575. weight: math.unit(50000, "lb"),
  35576. name: "Feral",
  35577. image: {
  35578. source: "./media/characters/glint/feral.svg",
  35579. extra: 3035/1585,
  35580. bottom: 1169/4204
  35581. }
  35582. },
  35583. dickAnthro: {
  35584. height: math.unit(0.7, "meters"),
  35585. name: "Dick (Anthro)",
  35586. image: {
  35587. source: "./media/characters/glint/dick-anthro.svg"
  35588. }
  35589. },
  35590. dickFeral: {
  35591. height: math.unit(2.65, "meters"),
  35592. name: "Dick (Feral)",
  35593. image: {
  35594. source: "./media/characters/glint/dick-feral.svg"
  35595. }
  35596. },
  35597. slitHidden: {
  35598. height: math.unit(5.85, "meters"),
  35599. name: "Slit (Hidden)",
  35600. image: {
  35601. source: "./media/characters/glint/slit-hidden.svg"
  35602. }
  35603. },
  35604. slitErect: {
  35605. height: math.unit(5.85, "meters"),
  35606. name: "Slit (Erect)",
  35607. image: {
  35608. source: "./media/characters/glint/slit-erect.svg"
  35609. }
  35610. },
  35611. mawAnthro: {
  35612. height: math.unit(0.63, "meters"),
  35613. name: "Maw (Anthro)",
  35614. image: {
  35615. source: "./media/characters/glint/maw.svg"
  35616. }
  35617. },
  35618. mawFeral: {
  35619. height: math.unit(2.89, "meters"),
  35620. name: "Maw (Feral)",
  35621. image: {
  35622. source: "./media/characters/glint/maw.svg"
  35623. }
  35624. },
  35625. },
  35626. [
  35627. {
  35628. name: "Normal",
  35629. height: math.unit(9, "feet"),
  35630. default: true
  35631. },
  35632. ]
  35633. ))
  35634. characterMakers.push(() => makeCharacter(
  35635. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  35636. {
  35637. side: {
  35638. height: math.unit(15, "feet"),
  35639. weight: math.unit(5000, "kg"),
  35640. name: "Side",
  35641. image: {
  35642. source: "./media/characters/kairne/side.svg",
  35643. extra: 979/811,
  35644. bottom: 13/992
  35645. }
  35646. },
  35647. front: {
  35648. height: math.unit(15, "feet"),
  35649. weight: math.unit(5000, "kg"),
  35650. name: "Front",
  35651. image: {
  35652. source: "./media/characters/kairne/front.svg",
  35653. extra: 908/814,
  35654. bottom: 26/934
  35655. }
  35656. },
  35657. sideNsfw: {
  35658. height: math.unit(15, "feet"),
  35659. weight: math.unit(5000, "kg"),
  35660. name: "Side (NSFW)",
  35661. image: {
  35662. source: "./media/characters/kairne/side-nsfw.svg",
  35663. extra: 979/811,
  35664. bottom: 13/992
  35665. }
  35666. },
  35667. frontNsfw: {
  35668. height: math.unit(15, "feet"),
  35669. weight: math.unit(5000, "kg"),
  35670. name: "Front (NSFW)",
  35671. image: {
  35672. source: "./media/characters/kairne/front-nsfw.svg",
  35673. extra: 908/814,
  35674. bottom: 26/934
  35675. }
  35676. },
  35677. dickCaged: {
  35678. height: math.unit(0.65, "meters"),
  35679. name: "Dick-caged",
  35680. image: {
  35681. source: "./media/characters/kairne/dick-caged.svg"
  35682. }
  35683. },
  35684. dick: {
  35685. height: math.unit(0.79, "meters"),
  35686. name: "Dick",
  35687. image: {
  35688. source: "./media/characters/kairne/dick.svg"
  35689. }
  35690. },
  35691. genitals: {
  35692. height: math.unit(1.29, "meters"),
  35693. name: "Genitals",
  35694. image: {
  35695. source: "./media/characters/kairne/genitals.svg"
  35696. }
  35697. },
  35698. maw: {
  35699. height: math.unit(1.73, "meters"),
  35700. name: "Maw",
  35701. image: {
  35702. source: "./media/characters/kairne/maw.svg"
  35703. }
  35704. },
  35705. },
  35706. [
  35707. {
  35708. name: "Normal",
  35709. height: math.unit(15, "feet"),
  35710. default: true
  35711. },
  35712. ]
  35713. ))
  35714. characterMakers.push(() => makeCharacter(
  35715. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  35716. {
  35717. front: {
  35718. height: math.unit(5 + 8/12, "feet"),
  35719. weight: math.unit(139, "lb"),
  35720. name: "Front",
  35721. image: {
  35722. source: "./media/characters/biscuit-jackal/front.svg",
  35723. extra: 2106/1961,
  35724. bottom: 58/2164
  35725. }
  35726. },
  35727. back: {
  35728. height: math.unit(5 + 8/12, "feet"),
  35729. weight: math.unit(139, "lb"),
  35730. name: "Back",
  35731. image: {
  35732. source: "./media/characters/biscuit-jackal/back.svg",
  35733. extra: 2132/1976,
  35734. bottom: 57/2189
  35735. }
  35736. },
  35737. werejackal: {
  35738. height: math.unit(6 + 3/12, "feet"),
  35739. weight: math.unit(188, "lb"),
  35740. name: "Werejackal",
  35741. image: {
  35742. source: "./media/characters/biscuit-jackal/werejackal.svg",
  35743. extra: 2373/2178,
  35744. bottom: 53/2426
  35745. }
  35746. },
  35747. },
  35748. [
  35749. {
  35750. name: "Normal",
  35751. height: math.unit(5 + 8/12, "feet"),
  35752. default: true
  35753. },
  35754. ]
  35755. ))
  35756. characterMakers.push(() => makeCharacter(
  35757. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  35758. {
  35759. front: {
  35760. height: math.unit(140, "cm"),
  35761. weight: math.unit(45, "kg"),
  35762. name: "Front",
  35763. image: {
  35764. source: "./media/characters/tayra-white/front.svg",
  35765. extra: 2229/2192,
  35766. bottom: 75/2304
  35767. }
  35768. },
  35769. },
  35770. [
  35771. {
  35772. name: "Normal",
  35773. height: math.unit(140, "cm"),
  35774. default: true
  35775. },
  35776. ]
  35777. ))
  35778. characterMakers.push(() => makeCharacter(
  35779. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  35780. {
  35781. front: {
  35782. height: math.unit(4 + 5/12, "feet"),
  35783. name: "Front",
  35784. image: {
  35785. source: "./media/characters/scoop/front.svg",
  35786. extra: 1257/1136,
  35787. bottom: 69/1326
  35788. }
  35789. },
  35790. back: {
  35791. height: math.unit(4 + 5/12, "feet"),
  35792. name: "Back",
  35793. image: {
  35794. source: "./media/characters/scoop/back.svg",
  35795. extra: 1321/1152,
  35796. bottom: 32/1353
  35797. }
  35798. },
  35799. maw: {
  35800. height: math.unit(0.68, "feet"),
  35801. name: "Maw",
  35802. image: {
  35803. source: "./media/characters/scoop/maw.svg"
  35804. }
  35805. },
  35806. },
  35807. [
  35808. {
  35809. name: "Really Small",
  35810. height: math.unit(1, "mm")
  35811. },
  35812. {
  35813. name: "Micro",
  35814. height: math.unit(1, "inch")
  35815. },
  35816. {
  35817. name: "Normal",
  35818. height: math.unit(4 + 5/12, "feet"),
  35819. default: true
  35820. },
  35821. {
  35822. name: "Macro",
  35823. height: math.unit(200, "feet")
  35824. },
  35825. {
  35826. name: "Megamacro",
  35827. height: math.unit(3240, "feet")
  35828. },
  35829. {
  35830. name: "Teramacro",
  35831. height: math.unit(2500, "miles")
  35832. },
  35833. ]
  35834. ))
  35835. characterMakers.push(() => makeCharacter(
  35836. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  35837. {
  35838. front: {
  35839. height: math.unit(15 + 7/12, "feet"),
  35840. weight: math.unit(1150, "tons"),
  35841. name: "Front",
  35842. image: {
  35843. source: "./media/characters/saphinara/front.svg",
  35844. extra: 1837/1643,
  35845. bottom: 84/1921
  35846. },
  35847. form: "normal",
  35848. default: true
  35849. },
  35850. side: {
  35851. height: math.unit(15 + 7/12, "feet"),
  35852. weight: math.unit(1150, "tons"),
  35853. name: "Side",
  35854. image: {
  35855. source: "./media/characters/saphinara/side.svg",
  35856. extra: 605/547,
  35857. bottom: 6/611
  35858. },
  35859. form: "normal"
  35860. },
  35861. back: {
  35862. height: math.unit(15 + 7/12, "feet"),
  35863. weight: math.unit(1150, "tons"),
  35864. name: "Back",
  35865. image: {
  35866. source: "./media/characters/saphinara/back.svg",
  35867. extra: 591/531,
  35868. bottom: 13/604
  35869. },
  35870. form: "normal"
  35871. },
  35872. frontTail: {
  35873. height: math.unit(15 + 7/12, "feet"),
  35874. weight: math.unit(1150, "tons"),
  35875. name: "Front (Full Tail)",
  35876. image: {
  35877. source: "./media/characters/saphinara/front-tail.svg",
  35878. extra: 2256/1630,
  35879. bottom: 261/2517
  35880. },
  35881. form: "normal"
  35882. },
  35883. insides: {
  35884. height: math.unit(11.92, "feet"),
  35885. name: "Insides",
  35886. image: {
  35887. source: "./media/characters/saphinara/insides.svg"
  35888. },
  35889. form: "normal"
  35890. },
  35891. head: {
  35892. height: math.unit(4.17, "feet"),
  35893. name: "Head",
  35894. image: {
  35895. source: "./media/characters/saphinara/head.svg"
  35896. },
  35897. form: "normal"
  35898. },
  35899. tongue: {
  35900. height: math.unit(4.60, "feet"),
  35901. name: "Tongue",
  35902. image: {
  35903. source: "./media/characters/saphinara/tongue.svg"
  35904. },
  35905. form: "normal"
  35906. },
  35907. headEnraged: {
  35908. height: math.unit(5.55, "feet"),
  35909. name: "Head (Enraged)",
  35910. image: {
  35911. source: "./media/characters/saphinara/head-enraged.svg"
  35912. },
  35913. form: "normal"
  35914. },
  35915. wings: {
  35916. height: math.unit(11.95, "feet"),
  35917. name: "Wings",
  35918. image: {
  35919. source: "./media/characters/saphinara/wings.svg"
  35920. },
  35921. form: "normal"
  35922. },
  35923. feathers: {
  35924. height: math.unit(8.92, "feet"),
  35925. name: "Feathers",
  35926. image: {
  35927. source: "./media/characters/saphinara/feathers.svg"
  35928. },
  35929. form: "normal"
  35930. },
  35931. shackles: {
  35932. height: math.unit(2, "feet"),
  35933. name: "Shackles",
  35934. image: {
  35935. source: "./media/characters/saphinara/shackles.svg"
  35936. },
  35937. form: "normal"
  35938. },
  35939. eyes: {
  35940. height: math.unit(1.331, "feet"),
  35941. name: "Eyes",
  35942. image: {
  35943. source: "./media/characters/saphinara/eyes.svg"
  35944. },
  35945. form: "normal"
  35946. },
  35947. eyesEnraged: {
  35948. height: math.unit(1.331, "feet"),
  35949. name: "Eyes (Enraged)",
  35950. image: {
  35951. source: "./media/characters/saphinara/eyes-enraged.svg"
  35952. },
  35953. form: "normal"
  35954. },
  35955. trueFormSide: {
  35956. height: math.unit(200, "feet"),
  35957. weight: math.unit(1e7, "tons"),
  35958. name: "Side",
  35959. image: {
  35960. source: "./media/characters/saphinara/true-form-side.svg",
  35961. extra: 1399/770,
  35962. bottom: 97/1496
  35963. },
  35964. form: "true-form",
  35965. default: true
  35966. },
  35967. trueFormMaw: {
  35968. height: math.unit(71.5, "feet"),
  35969. name: "Maw",
  35970. image: {
  35971. source: "./media/characters/saphinara/true-form-maw.svg",
  35972. extra: 2302/1453,
  35973. bottom: 0/2302
  35974. },
  35975. form: "true-form"
  35976. },
  35977. meowberusSide: {
  35978. height: math.unit(75, "feet"),
  35979. weight: math.unit(180000, "kg"),
  35980. preyCapacity: math.unit(50000, "people"),
  35981. name: "Side",
  35982. image: {
  35983. source: "./media/characters/saphinara/meowberus-side.svg",
  35984. extra: 1400/711,
  35985. bottom: 126/1526
  35986. },
  35987. form: "meowberus",
  35988. extraAttributes: {
  35989. "pawArea": {
  35990. name: "Paw Size",
  35991. power: 2,
  35992. type: "area",
  35993. base: math.unit(35, "m^2")
  35994. }
  35995. }
  35996. },
  35997. },
  35998. [
  35999. {
  36000. name: "Normal",
  36001. height: math.unit(15 + 7/12, "feet"),
  36002. default: true,
  36003. form: "normal"
  36004. },
  36005. {
  36006. name: "Angry",
  36007. height: math.unit(30 + 6/12, "feet"),
  36008. form: "normal"
  36009. },
  36010. {
  36011. name: "Enraged",
  36012. height: math.unit(102 + 1/12, "feet"),
  36013. form: "normal"
  36014. },
  36015. {
  36016. name: "True",
  36017. height: math.unit(200, "feet"),
  36018. default: true,
  36019. form: "true-form"
  36020. },
  36021. {
  36022. name: "Normal",
  36023. height: math.unit(75, "feet"),
  36024. default: true,
  36025. form: "meowberus"
  36026. },
  36027. ],
  36028. {
  36029. "normal": {
  36030. name: "Normal",
  36031. default: true
  36032. },
  36033. "true-form": {
  36034. name: "True Form"
  36035. },
  36036. "meowberus": {
  36037. name: "Meowberus",
  36038. },
  36039. }
  36040. ))
  36041. characterMakers.push(() => makeCharacter(
  36042. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  36043. {
  36044. front: {
  36045. height: math.unit(6 + 8/12, "feet"),
  36046. weight: math.unit(300, "lb"),
  36047. name: "Front",
  36048. image: {
  36049. source: "./media/characters/jrain/front.svg",
  36050. extra: 3039/2865,
  36051. bottom: 399/3438
  36052. }
  36053. },
  36054. back: {
  36055. height: math.unit(6 + 8/12, "feet"),
  36056. weight: math.unit(300, "lb"),
  36057. name: "Back",
  36058. image: {
  36059. source: "./media/characters/jrain/back.svg",
  36060. extra: 3089/2938,
  36061. bottom: 172/3261
  36062. }
  36063. },
  36064. head: {
  36065. height: math.unit(2.14, "feet"),
  36066. name: "Head",
  36067. image: {
  36068. source: "./media/characters/jrain/head.svg"
  36069. }
  36070. },
  36071. maw: {
  36072. height: math.unit(1.77, "feet"),
  36073. name: "Maw",
  36074. image: {
  36075. source: "./media/characters/jrain/maw.svg"
  36076. }
  36077. },
  36078. leftHand: {
  36079. height: math.unit(1.1, "feet"),
  36080. name: "Left Hand",
  36081. image: {
  36082. source: "./media/characters/jrain/left-hand.svg"
  36083. }
  36084. },
  36085. rightHand: {
  36086. height: math.unit(1.1, "feet"),
  36087. name: "Right Hand",
  36088. image: {
  36089. source: "./media/characters/jrain/right-hand.svg"
  36090. }
  36091. },
  36092. eye: {
  36093. height: math.unit(0.35, "feet"),
  36094. name: "Eye",
  36095. image: {
  36096. source: "./media/characters/jrain/eye.svg"
  36097. }
  36098. },
  36099. },
  36100. [
  36101. {
  36102. name: "Normal",
  36103. height: math.unit(6 + 8/12, "feet"),
  36104. default: true
  36105. },
  36106. {
  36107. name: "Casually Large",
  36108. height: math.unit(25, "feet")
  36109. },
  36110. {
  36111. name: "Giant",
  36112. height: math.unit(100, "feet")
  36113. },
  36114. {
  36115. name: "Kaiju",
  36116. height: math.unit(300, "feet")
  36117. },
  36118. ]
  36119. ))
  36120. characterMakers.push(() => makeCharacter(
  36121. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  36122. {
  36123. dragon: {
  36124. height: math.unit(5, "meters"),
  36125. name: "Dragon",
  36126. image: {
  36127. source: "./media/characters/sabrina/dragon.svg",
  36128. extra: 3670 / 2365,
  36129. bottom: 333 / 4003
  36130. }
  36131. },
  36132. gryphon: {
  36133. height: math.unit(3, "meters"),
  36134. name: "Gryphon",
  36135. image: {
  36136. source: "./media/characters/sabrina/gryphon.svg",
  36137. extra: 1576 / 945,
  36138. bottom: 71 / 1647
  36139. }
  36140. },
  36141. snake: {
  36142. height: math.unit(12, "meters"),
  36143. name: "Snake",
  36144. image: {
  36145. source: "./media/characters/sabrina/snake.svg",
  36146. extra: 1758 / 1320,
  36147. bottom: 186 / 1944
  36148. }
  36149. },
  36150. collar: {
  36151. height: math.unit(1.86, "meters"),
  36152. name: "Collar",
  36153. image: {
  36154. source: "./media/characters/sabrina/collar.svg"
  36155. }
  36156. },
  36157. eye: {
  36158. height: math.unit(0.53, "meters"),
  36159. name: "Eye",
  36160. image: {
  36161. source: "./media/characters/sabrina/eye.svg"
  36162. }
  36163. },
  36164. foot: {
  36165. height: math.unit(1.86, "meters"),
  36166. name: "Foot",
  36167. image: {
  36168. source: "./media/characters/sabrina/foot.svg"
  36169. }
  36170. },
  36171. hand: {
  36172. height: math.unit(1.32, "meters"),
  36173. name: "Hand",
  36174. image: {
  36175. source: "./media/characters/sabrina/hand.svg"
  36176. }
  36177. },
  36178. head: {
  36179. height: math.unit(2.44, "meters"),
  36180. name: "Head",
  36181. image: {
  36182. source: "./media/characters/sabrina/head.svg"
  36183. }
  36184. },
  36185. headAngry: {
  36186. height: math.unit(2.44, "meters"),
  36187. name: "Head (Angry))",
  36188. image: {
  36189. source: "./media/characters/sabrina/head-angry.svg"
  36190. }
  36191. },
  36192. maw: {
  36193. height: math.unit(1.65, "meters"),
  36194. name: "Maw",
  36195. image: {
  36196. source: "./media/characters/sabrina/maw.svg"
  36197. }
  36198. },
  36199. spikes: {
  36200. height: math.unit(1.69, "meters"),
  36201. name: "Spikes",
  36202. image: {
  36203. source: "./media/characters/sabrina/spikes.svg"
  36204. }
  36205. },
  36206. stomach: {
  36207. height: math.unit(1.15, "meters"),
  36208. name: "Stomach",
  36209. image: {
  36210. source: "./media/characters/sabrina/stomach.svg"
  36211. }
  36212. },
  36213. tongue: {
  36214. height: math.unit(1.27, "meters"),
  36215. name: "Tongue",
  36216. image: {
  36217. source: "./media/characters/sabrina/tongue.svg"
  36218. }
  36219. },
  36220. wingDorsal: {
  36221. height: math.unit(4.85, "meters"),
  36222. name: "Wing (Dorsal)",
  36223. image: {
  36224. source: "./media/characters/sabrina/wing-dorsal.svg"
  36225. }
  36226. },
  36227. wingVentral: {
  36228. height: math.unit(4.85, "meters"),
  36229. name: "Wing (Ventral)",
  36230. image: {
  36231. source: "./media/characters/sabrina/wing-ventral.svg"
  36232. }
  36233. },
  36234. },
  36235. [
  36236. {
  36237. name: "Normal",
  36238. height: math.unit(5, "meters"),
  36239. default: true
  36240. },
  36241. ]
  36242. ))
  36243. characterMakers.push(() => makeCharacter(
  36244. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  36245. {
  36246. frontMaid: {
  36247. height: math.unit(5 + 5/12, "feet"),
  36248. weight: math.unit(130, "lb"),
  36249. name: "Front (Maid)",
  36250. image: {
  36251. source: "./media/characters/midnight-tales/front-maid.svg",
  36252. extra: 489/454,
  36253. bottom: 61/550
  36254. }
  36255. },
  36256. frontFormal: {
  36257. height: math.unit(5 + 5/12, "feet"),
  36258. weight: math.unit(130, "lb"),
  36259. name: "Front (Formal)",
  36260. image: {
  36261. source: "./media/characters/midnight-tales/front-formal.svg",
  36262. extra: 489/454,
  36263. bottom: 61/550
  36264. }
  36265. },
  36266. back: {
  36267. height: math.unit(5 + 5/12, "feet"),
  36268. weight: math.unit(130, "lb"),
  36269. name: "Back",
  36270. image: {
  36271. source: "./media/characters/midnight-tales/back.svg",
  36272. extra: 498/456,
  36273. bottom: 33/531
  36274. }
  36275. },
  36276. frontBeast: {
  36277. height: math.unit(40, "feet"),
  36278. weight: math.unit(64000, "lb"),
  36279. name: "Front (Beast)",
  36280. image: {
  36281. source: "./media/characters/midnight-tales/front-beast.svg",
  36282. extra: 927/860,
  36283. bottom: 53/980
  36284. }
  36285. },
  36286. backBeast: {
  36287. height: math.unit(40, "feet"),
  36288. weight: math.unit(64000, "lb"),
  36289. name: "Back (Beast)",
  36290. image: {
  36291. source: "./media/characters/midnight-tales/back-beast.svg",
  36292. extra: 929/855,
  36293. bottom: 16/945
  36294. }
  36295. },
  36296. footBeast: {
  36297. height: math.unit(6.7, "feet"),
  36298. name: "Foot (Beast)",
  36299. image: {
  36300. source: "./media/characters/midnight-tales/foot-beast.svg"
  36301. }
  36302. },
  36303. headBeast: {
  36304. height: math.unit(8, "feet"),
  36305. name: "Head (Beast)",
  36306. image: {
  36307. source: "./media/characters/midnight-tales/head-beast.svg"
  36308. }
  36309. },
  36310. },
  36311. [
  36312. {
  36313. name: "Normal",
  36314. height: math.unit(5 + 5 / 12, "feet"),
  36315. default: true
  36316. },
  36317. {
  36318. name: "Macro",
  36319. height: math.unit(25, "feet")
  36320. },
  36321. ]
  36322. ))
  36323. characterMakers.push(() => makeCharacter(
  36324. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  36325. {
  36326. front: {
  36327. height: math.unit(5 + 10/12, "feet"),
  36328. name: "Front",
  36329. image: {
  36330. source: "./media/characters/argon/front.svg",
  36331. extra: 2009/1935,
  36332. bottom: 118/2127
  36333. }
  36334. },
  36335. back: {
  36336. height: math.unit(5 + 10/12, "feet"),
  36337. name: "Back",
  36338. image: {
  36339. source: "./media/characters/argon/back.svg",
  36340. extra: 2047/1992,
  36341. bottom: 20/2067
  36342. }
  36343. },
  36344. frontDressed: {
  36345. height: math.unit(5 + 10/12, "feet"),
  36346. name: "Front (Dressed)",
  36347. image: {
  36348. source: "./media/characters/argon/front-dressed.svg",
  36349. extra: 2009/1935,
  36350. bottom: 118/2127
  36351. }
  36352. },
  36353. },
  36354. [
  36355. {
  36356. name: "Normal",
  36357. height: math.unit(5 + 10/12, "feet"),
  36358. default: true
  36359. },
  36360. ]
  36361. ))
  36362. characterMakers.push(() => makeCharacter(
  36363. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  36364. {
  36365. front: {
  36366. height: math.unit(8 + 6/12, "feet"),
  36367. weight: math.unit(1150, "lb"),
  36368. name: "Front",
  36369. image: {
  36370. source: "./media/characters/kichi/front.svg",
  36371. extra: 1267/1164,
  36372. bottom: 61/1328
  36373. }
  36374. },
  36375. back: {
  36376. height: math.unit(8 + 6/12, "feet"),
  36377. weight: math.unit(1150, "lb"),
  36378. name: "Back",
  36379. image: {
  36380. source: "./media/characters/kichi/back.svg",
  36381. extra: 1273/1166,
  36382. bottom: 33/1306
  36383. }
  36384. },
  36385. },
  36386. [
  36387. {
  36388. name: "Normal",
  36389. height: math.unit(8 + 6/12, "feet"),
  36390. default: true
  36391. },
  36392. ]
  36393. ))
  36394. characterMakers.push(() => makeCharacter(
  36395. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  36396. {
  36397. front: {
  36398. height: math.unit(6, "feet"),
  36399. weight: math.unit(210, "lb"),
  36400. name: "Front",
  36401. image: {
  36402. source: "./media/characters/manetel-greyscale/front.svg",
  36403. extra: 350/312,
  36404. bottom: 8/358
  36405. }
  36406. },
  36407. },
  36408. [
  36409. {
  36410. name: "Micro",
  36411. height: math.unit(2, "inches")
  36412. },
  36413. {
  36414. name: "Normal",
  36415. height: math.unit(6, "feet"),
  36416. default: true
  36417. },
  36418. {
  36419. name: "Minimacro",
  36420. height: math.unit(17, "feet")
  36421. },
  36422. {
  36423. name: "Macro",
  36424. height: math.unit(117, "feet")
  36425. },
  36426. ]
  36427. ))
  36428. characterMakers.push(() => makeCharacter(
  36429. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  36430. {
  36431. side: {
  36432. height: math.unit(5 + 1/12, "feet"),
  36433. weight: math.unit(418, "lb"),
  36434. name: "Side",
  36435. image: {
  36436. source: "./media/characters/softpurr/side.svg",
  36437. extra: 1993/1945,
  36438. bottom: 134/2127
  36439. }
  36440. },
  36441. front: {
  36442. height: math.unit(5 + 1/12, "feet"),
  36443. weight: math.unit(418, "lb"),
  36444. name: "Front",
  36445. image: {
  36446. source: "./media/characters/softpurr/front.svg",
  36447. extra: 1950/1856,
  36448. bottom: 174/2124
  36449. }
  36450. },
  36451. paw: {
  36452. height: math.unit(1, "feet"),
  36453. name: "Paw",
  36454. image: {
  36455. source: "./media/characters/softpurr/paw.svg"
  36456. }
  36457. },
  36458. },
  36459. [
  36460. {
  36461. name: "Normal",
  36462. height: math.unit(5 + 1/12, "feet"),
  36463. default: true
  36464. },
  36465. ]
  36466. ))
  36467. characterMakers.push(() => makeCharacter(
  36468. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  36469. {
  36470. front: {
  36471. height: math.unit(260, "meters"),
  36472. name: "Front",
  36473. image: {
  36474. source: "./media/characters/anahita/front.svg",
  36475. extra: 665/635,
  36476. bottom: 89/754
  36477. }
  36478. },
  36479. },
  36480. [
  36481. {
  36482. name: "Macro",
  36483. height: math.unit(260, "meters"),
  36484. default: true
  36485. },
  36486. ]
  36487. ))
  36488. characterMakers.push(() => makeCharacter(
  36489. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  36490. {
  36491. front: {
  36492. height: math.unit(4 + 10/12, "feet"),
  36493. weight: math.unit(160, "lb"),
  36494. name: "Front",
  36495. image: {
  36496. source: "./media/characters/chip-mouse/front.svg",
  36497. extra: 3528/3408,
  36498. bottom: 0/3528
  36499. }
  36500. },
  36501. frontNsfw: {
  36502. height: math.unit(4 + 10/12, "feet"),
  36503. weight: math.unit(160, "lb"),
  36504. name: "Front (NSFW)",
  36505. image: {
  36506. source: "./media/characters/chip-mouse/front-nsfw.svg",
  36507. extra: 3528/3408,
  36508. bottom: 0/3528
  36509. }
  36510. },
  36511. },
  36512. [
  36513. {
  36514. name: "Normal",
  36515. height: math.unit(4 + 10/12, "feet"),
  36516. default: true
  36517. },
  36518. ]
  36519. ))
  36520. characterMakers.push(() => makeCharacter(
  36521. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  36522. {
  36523. side: {
  36524. height: math.unit(10, "feet"),
  36525. weight: math.unit(14000, "lb"),
  36526. name: "Side",
  36527. image: {
  36528. source: "./media/characters/kremm/side.svg",
  36529. extra: 1390/1053,
  36530. bottom: 90/1480
  36531. }
  36532. },
  36533. gut: {
  36534. height: math.unit(5.8, "feet"),
  36535. name: "Gut",
  36536. image: {
  36537. source: "./media/characters/kremm/gut.svg"
  36538. }
  36539. },
  36540. ass: {
  36541. height: math.unit(6.1, "feet"),
  36542. name: "Ass",
  36543. image: {
  36544. source: "./media/characters/kremm/ass.svg"
  36545. }
  36546. },
  36547. jaws: {
  36548. height: math.unit(2.2, "feet"),
  36549. name: "Jaws",
  36550. image: {
  36551. source: "./media/characters/kremm/jaws.svg"
  36552. }
  36553. },
  36554. dick: {
  36555. height: math.unit(4.26, "feet"),
  36556. name: "Dick",
  36557. image: {
  36558. source: "./media/characters/kremm/dick.svg"
  36559. }
  36560. },
  36561. },
  36562. [
  36563. {
  36564. name: "Normal",
  36565. height: math.unit(10, "feet"),
  36566. default: true
  36567. },
  36568. ]
  36569. ))
  36570. characterMakers.push(() => makeCharacter(
  36571. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  36572. {
  36573. front: {
  36574. height: math.unit(30, "stories"),
  36575. name: "Front",
  36576. image: {
  36577. source: "./media/characters/kai/front.svg",
  36578. extra: 1892/1718,
  36579. bottom: 162/2054
  36580. }
  36581. },
  36582. },
  36583. [
  36584. {
  36585. name: "Macro",
  36586. height: math.unit(30, "stories"),
  36587. default: true
  36588. },
  36589. ]
  36590. ))
  36591. characterMakers.push(() => makeCharacter(
  36592. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  36593. {
  36594. front: {
  36595. height: math.unit(6 + 4/12, "feet"),
  36596. weight: math.unit(145, "lb"),
  36597. name: "Front",
  36598. image: {
  36599. source: "./media/characters/sykes/front.svg",
  36600. extra: 1321 / 1187,
  36601. bottom: 66 / 1387
  36602. }
  36603. },
  36604. back: {
  36605. height: math.unit(6 + 4/12, "feet"),
  36606. weight: math.unit(145, "lb"),
  36607. name: "Back",
  36608. image: {
  36609. source: "./media/characters/sykes/back.svg",
  36610. extra: 1326/1181,
  36611. bottom: 31/1357
  36612. }
  36613. },
  36614. traditionalOutfit: {
  36615. height: math.unit(6 + 4/12, "feet"),
  36616. weight: math.unit(145, "lb"),
  36617. name: "Traditional Outfit",
  36618. image: {
  36619. source: "./media/characters/sykes/traditional-outfit.svg",
  36620. extra: 1321 / 1187,
  36621. bottom: 66 / 1387
  36622. }
  36623. },
  36624. adventureOutfit: {
  36625. height: math.unit(6 + 4/12, "feet"),
  36626. weight: math.unit(145, "lb"),
  36627. name: "Adventure Outfit",
  36628. image: {
  36629. source: "./media/characters/sykes/adventure-outfit.svg",
  36630. extra: 1321 / 1187,
  36631. bottom: 66 / 1387
  36632. }
  36633. },
  36634. handLeft: {
  36635. height: math.unit(0.9, "feet"),
  36636. name: "Hand (Left)",
  36637. image: {
  36638. source: "./media/characters/sykes/hand-left.svg"
  36639. }
  36640. },
  36641. handRight: {
  36642. height: math.unit(0.839, "feet"),
  36643. name: "Hand (Right)",
  36644. image: {
  36645. source: "./media/characters/sykes/hand-right.svg"
  36646. }
  36647. },
  36648. leftFoot: {
  36649. height: math.unit(1.2, "feet"),
  36650. name: "Foot (Left)",
  36651. image: {
  36652. source: "./media/characters/sykes/foot-left.svg"
  36653. }
  36654. },
  36655. rightFoot: {
  36656. height: math.unit(1.2, "feet"),
  36657. name: "Foot (Right)",
  36658. image: {
  36659. source: "./media/characters/sykes/foot-right.svg"
  36660. }
  36661. },
  36662. maw: {
  36663. height: math.unit(1.93, "feet"),
  36664. name: "Maw",
  36665. image: {
  36666. source: "./media/characters/sykes/maw.svg"
  36667. }
  36668. },
  36669. teeth: {
  36670. height: math.unit(0.51, "feet"),
  36671. name: "Teeth",
  36672. image: {
  36673. source: "./media/characters/sykes/teeth.svg"
  36674. }
  36675. },
  36676. tongue: {
  36677. height: math.unit(2.13, "feet"),
  36678. name: "Tongue",
  36679. image: {
  36680. source: "./media/characters/sykes/tongue.svg"
  36681. }
  36682. },
  36683. uvula: {
  36684. height: math.unit(0.16, "feet"),
  36685. name: "Uvula",
  36686. image: {
  36687. source: "./media/characters/sykes/uvula.svg"
  36688. }
  36689. },
  36690. collar: {
  36691. height: math.unit(0.287, "feet"),
  36692. name: "Collar",
  36693. image: {
  36694. source: "./media/characters/sykes/collar.svg"
  36695. }
  36696. },
  36697. tail: {
  36698. height: math.unit(3.8, "feet"),
  36699. name: "Tail",
  36700. image: {
  36701. source: "./media/characters/sykes/tail.svg"
  36702. }
  36703. },
  36704. },
  36705. [
  36706. {
  36707. name: "Shrunken",
  36708. height: math.unit(5, "inches")
  36709. },
  36710. {
  36711. name: "Normal",
  36712. height: math.unit(6 + 4 / 12, "feet"),
  36713. default: true
  36714. },
  36715. {
  36716. name: "Big",
  36717. height: math.unit(15, "feet")
  36718. },
  36719. ]
  36720. ))
  36721. characterMakers.push(() => makeCharacter(
  36722. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  36723. {
  36724. front: {
  36725. height: math.unit(5 + 8/12, "feet"),
  36726. weight: math.unit(190, "lb"),
  36727. name: "Front",
  36728. image: {
  36729. source: "./media/characters/oven-otter/front.svg",
  36730. extra: 1809/1740,
  36731. bottom: 181/1990
  36732. }
  36733. },
  36734. back: {
  36735. height: math.unit(5 + 8/12, "feet"),
  36736. weight: math.unit(190, "lb"),
  36737. name: "Back",
  36738. image: {
  36739. source: "./media/characters/oven-otter/back.svg",
  36740. extra: 1709/1635,
  36741. bottom: 118/1827
  36742. }
  36743. },
  36744. hand: {
  36745. height: math.unit(1.07, "feet"),
  36746. name: "Hand",
  36747. image: {
  36748. source: "./media/characters/oven-otter/hand.svg"
  36749. }
  36750. },
  36751. beans: {
  36752. height: math.unit(1.74, "feet"),
  36753. name: "Beans",
  36754. image: {
  36755. source: "./media/characters/oven-otter/beans.svg"
  36756. }
  36757. },
  36758. },
  36759. [
  36760. {
  36761. name: "Micro",
  36762. height: math.unit(0.5, "inches")
  36763. },
  36764. {
  36765. name: "Normal",
  36766. height: math.unit(5 + 8/12, "feet"),
  36767. default: true
  36768. },
  36769. {
  36770. name: "Macro",
  36771. height: math.unit(250, "feet")
  36772. },
  36773. {
  36774. name: "Really High",
  36775. height: math.unit(420, "feet")
  36776. },
  36777. ]
  36778. ))
  36779. characterMakers.push(() => makeCharacter(
  36780. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  36781. {
  36782. front: {
  36783. height: math.unit(5, "meters"),
  36784. weight: math.unit(292000000000000, "kg"),
  36785. name: "Front",
  36786. image: {
  36787. source: "./media/characters/devourer/front.svg",
  36788. extra: 1800/1733,
  36789. bottom: 211/2011
  36790. }
  36791. },
  36792. maw: {
  36793. height: math.unit(1.1, "meter"),
  36794. name: "Maw",
  36795. image: {
  36796. source: "./media/characters/devourer/maw.svg"
  36797. }
  36798. },
  36799. },
  36800. [
  36801. {
  36802. name: "Small",
  36803. height: math.unit(3, "meters")
  36804. },
  36805. {
  36806. name: "Large",
  36807. height: math.unit(5, "meters"),
  36808. default: true
  36809. },
  36810. ]
  36811. ))
  36812. characterMakers.push(() => makeCharacter(
  36813. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  36814. {
  36815. front: {
  36816. height: math.unit(6, "feet"),
  36817. weight: math.unit(400, "lb"),
  36818. name: "Front",
  36819. image: {
  36820. source: "./media/characters/ellarby/front.svg",
  36821. extra: 1909/1763,
  36822. bottom: 80/1989
  36823. }
  36824. },
  36825. back: {
  36826. height: math.unit(6, "feet"),
  36827. weight: math.unit(400, "lb"),
  36828. name: "Back",
  36829. image: {
  36830. source: "./media/characters/ellarby/back.svg",
  36831. extra: 1914/1784,
  36832. bottom: 172/2086
  36833. }
  36834. },
  36835. },
  36836. [
  36837. {
  36838. name: "Mischief",
  36839. height: math.unit(18, "inches")
  36840. },
  36841. {
  36842. name: "Trouble",
  36843. height: math.unit(12, "feet")
  36844. },
  36845. {
  36846. name: "Havoc",
  36847. height: math.unit(200, "feet"),
  36848. default: true
  36849. },
  36850. {
  36851. name: "Pandemonium",
  36852. height: math.unit(1, "mile")
  36853. },
  36854. {
  36855. name: "Catastrophe",
  36856. height: math.unit(100, "miles")
  36857. },
  36858. ]
  36859. ))
  36860. characterMakers.push(() => makeCharacter(
  36861. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  36862. {
  36863. front: {
  36864. height: math.unit(4.7, "meters"),
  36865. weight: math.unit(6500, "kg"),
  36866. name: "Front",
  36867. image: {
  36868. source: "./media/characters/vex/front.svg",
  36869. extra: 1288/1140,
  36870. bottom: 100/1388
  36871. }
  36872. },
  36873. },
  36874. [
  36875. {
  36876. name: "Normal",
  36877. height: math.unit(4.7, "meters"),
  36878. default: true
  36879. },
  36880. ]
  36881. ))
  36882. characterMakers.push(() => makeCharacter(
  36883. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  36884. {
  36885. normal: {
  36886. height: math.unit(6, "feet"),
  36887. weight: math.unit(350, "lb"),
  36888. name: "Normal",
  36889. image: {
  36890. source: "./media/characters/teshy/normal.svg",
  36891. extra: 1795/1735,
  36892. bottom: 16/1811
  36893. }
  36894. },
  36895. monsterFront: {
  36896. height: math.unit(12, "feet"),
  36897. weight: math.unit(4700, "lb"),
  36898. name: "Monster (Front)",
  36899. image: {
  36900. source: "./media/characters/teshy/monster-front.svg",
  36901. extra: 2042/2034,
  36902. bottom: 128/2170
  36903. }
  36904. },
  36905. monsterSide: {
  36906. height: math.unit(12, "feet"),
  36907. weight: math.unit(4700, "lb"),
  36908. name: "Monster (Side)",
  36909. image: {
  36910. source: "./media/characters/teshy/monster-side.svg",
  36911. extra: 2067/2056,
  36912. bottom: 70/2137
  36913. }
  36914. },
  36915. monsterBack: {
  36916. height: math.unit(12, "feet"),
  36917. weight: math.unit(4700, "lb"),
  36918. name: "Monster (Back)",
  36919. image: {
  36920. source: "./media/characters/teshy/monster-back.svg",
  36921. extra: 1921/1914,
  36922. bottom: 171/2092
  36923. }
  36924. },
  36925. },
  36926. [
  36927. {
  36928. name: "Normal",
  36929. height: math.unit(6, "feet"),
  36930. default: true
  36931. },
  36932. ]
  36933. ))
  36934. characterMakers.push(() => makeCharacter(
  36935. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  36936. {
  36937. front: {
  36938. height: math.unit(6, "feet"),
  36939. name: "Front",
  36940. image: {
  36941. source: "./media/characters/ramey/front.svg",
  36942. extra: 790/787,
  36943. bottom: 27/817
  36944. }
  36945. },
  36946. },
  36947. [
  36948. {
  36949. name: "Normal",
  36950. height: math.unit(6, "feet"),
  36951. default: true
  36952. },
  36953. ]
  36954. ))
  36955. characterMakers.push(() => makeCharacter(
  36956. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  36957. {
  36958. front: {
  36959. height: math.unit(5 + 5/12, "feet"),
  36960. weight: math.unit(120, "lb"),
  36961. name: "Front",
  36962. image: {
  36963. source: "./media/characters/phirae/front.svg",
  36964. extra: 2491/2436,
  36965. bottom: 38/2529
  36966. }
  36967. },
  36968. },
  36969. [
  36970. {
  36971. name: "Normal",
  36972. height: math.unit(5 + 5/12, "feet"),
  36973. default: true
  36974. },
  36975. ]
  36976. ))
  36977. characterMakers.push(() => makeCharacter(
  36978. { name: "Stagglas", species: ["dragon"], tags: ["anthro", "feral"] },
  36979. {
  36980. front: {
  36981. height: math.unit(5 + 3/12, "feet"),
  36982. name: "Front",
  36983. image: {
  36984. source: "./media/characters/stagglas/front.svg",
  36985. extra: 962/882,
  36986. bottom: 53/1015
  36987. }
  36988. },
  36989. feral: {
  36990. height: math.unit(335, "cm"),
  36991. name: "Feral",
  36992. image: {
  36993. source: "./media/characters/stagglas/feral.svg",
  36994. extra: 1732/1090,
  36995. bottom: 48/1780
  36996. }
  36997. },
  36998. },
  36999. [
  37000. {
  37001. name: "Normal",
  37002. height: math.unit(5 + 3/12, "feet"),
  37003. default: true
  37004. },
  37005. ]
  37006. ))
  37007. characterMakers.push(() => makeCharacter(
  37008. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  37009. {
  37010. front: {
  37011. height: math.unit(5 + 4/12, "feet"),
  37012. weight: math.unit(145, "lb"),
  37013. name: "Front",
  37014. image: {
  37015. source: "./media/characters/starra/front.svg",
  37016. extra: 1790/1691,
  37017. bottom: 91/1881
  37018. }
  37019. },
  37020. },
  37021. [
  37022. {
  37023. name: "Normal",
  37024. height: math.unit(5 + 4/12, "feet"),
  37025. default: true
  37026. },
  37027. ]
  37028. ))
  37029. characterMakers.push(() => makeCharacter(
  37030. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  37031. {
  37032. front: {
  37033. height: math.unit(3.5, "meters"),
  37034. name: "Front",
  37035. image: {
  37036. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  37037. extra: 1248/972,
  37038. bottom: 38/1286
  37039. }
  37040. },
  37041. },
  37042. [
  37043. {
  37044. name: "Normal",
  37045. height: math.unit(3.5, "meters"),
  37046. default: true
  37047. },
  37048. ]
  37049. ))
  37050. characterMakers.push(() => makeCharacter(
  37051. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  37052. {
  37053. side: {
  37054. height: math.unit(8 + 2/12, "feet"),
  37055. weight: math.unit(1240, "lb"),
  37056. name: "Side",
  37057. image: {
  37058. source: "./media/characters/mika-valentine/side.svg",
  37059. extra: 2670/2501,
  37060. bottom: 250/2920
  37061. }
  37062. },
  37063. },
  37064. [
  37065. {
  37066. name: "Normal",
  37067. height: math.unit(8 + 2/12, "feet"),
  37068. default: true
  37069. },
  37070. ]
  37071. ))
  37072. characterMakers.push(() => makeCharacter(
  37073. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  37074. {
  37075. front: {
  37076. height: math.unit(7 + 2/12, "feet"),
  37077. name: "Front",
  37078. image: {
  37079. source: "./media/characters/xoltol/front.svg",
  37080. extra: 2212/2124,
  37081. bottom: 84/2296
  37082. }
  37083. },
  37084. side: {
  37085. height: math.unit(7 + 2/12, "feet"),
  37086. name: "Side",
  37087. image: {
  37088. source: "./media/characters/xoltol/side.svg",
  37089. extra: 2273/2197,
  37090. bottom: 26/2299
  37091. }
  37092. },
  37093. hand: {
  37094. height: math.unit(2.5, "feet"),
  37095. name: "Hand",
  37096. image: {
  37097. source: "./media/characters/xoltol/hand.svg"
  37098. }
  37099. },
  37100. },
  37101. [
  37102. {
  37103. name: "Small-ish",
  37104. height: math.unit(5 + 11/12, "feet")
  37105. },
  37106. {
  37107. name: "Normal",
  37108. height: math.unit(7 + 2/12, "feet")
  37109. },
  37110. {
  37111. name: "\"Macro\"",
  37112. height: math.unit(14 + 9/12, "feet"),
  37113. default: true
  37114. },
  37115. {
  37116. name: "Alternate Height",
  37117. height: math.unit(20, "feet")
  37118. },
  37119. {
  37120. name: "Actually Macro",
  37121. height: math.unit(100, "feet")
  37122. },
  37123. ]
  37124. ))
  37125. characterMakers.push(() => makeCharacter(
  37126. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  37127. {
  37128. front: {
  37129. height: math.unit(5 + 2/12, "feet"),
  37130. weight: math.unit(75, "kg"),
  37131. name: "Front",
  37132. image: {
  37133. source: "./media/characters/kotetsu-redwood/front.svg",
  37134. extra: 1053/942,
  37135. bottom: 60/1113
  37136. }
  37137. },
  37138. },
  37139. [
  37140. {
  37141. name: "Normal",
  37142. height: math.unit(5 + 2/12, "feet"),
  37143. default: true
  37144. },
  37145. ]
  37146. ))
  37147. characterMakers.push(() => makeCharacter(
  37148. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  37149. {
  37150. front: {
  37151. height: math.unit(2.4, "meters"),
  37152. weight: math.unit(125, "kg"),
  37153. name: "Front",
  37154. image: {
  37155. source: "./media/characters/lilith/front.svg",
  37156. extra: 1590/1513,
  37157. bottom: 203/1793
  37158. }
  37159. },
  37160. },
  37161. [
  37162. {
  37163. name: "Humanoid",
  37164. height: math.unit(2.4, "meters")
  37165. },
  37166. {
  37167. name: "Normal",
  37168. height: math.unit(6, "meters"),
  37169. default: true
  37170. },
  37171. {
  37172. name: "Largest",
  37173. height: math.unit(55, "meters")
  37174. },
  37175. ]
  37176. ))
  37177. characterMakers.push(() => makeCharacter(
  37178. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  37179. {
  37180. front: {
  37181. height: math.unit(8 + 4/12, "feet"),
  37182. weight: math.unit(535, "lb"),
  37183. name: "Front",
  37184. image: {
  37185. source: "./media/characters/beh'kah-bolger/front.svg",
  37186. extra: 1660/1603,
  37187. bottom: 37/1697
  37188. }
  37189. },
  37190. },
  37191. [
  37192. {
  37193. name: "Normal",
  37194. height: math.unit(8 + 4/12, "feet"),
  37195. default: true
  37196. },
  37197. {
  37198. name: "Kaiju",
  37199. height: math.unit(250, "feet")
  37200. },
  37201. {
  37202. name: "Still Growing",
  37203. height: math.unit(10, "miles")
  37204. },
  37205. {
  37206. name: "Continental",
  37207. height: math.unit(5000, "miles")
  37208. },
  37209. {
  37210. name: "Final Form",
  37211. height: math.unit(2500000, "miles")
  37212. },
  37213. ]
  37214. ))
  37215. characterMakers.push(() => makeCharacter(
  37216. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  37217. {
  37218. front: {
  37219. height: math.unit(7 + 2/12, "feet"),
  37220. weight: math.unit(230, "kg"),
  37221. name: "Front",
  37222. image: {
  37223. source: "./media/characters/tatyana-milewska/front.svg",
  37224. extra: 1199/1150,
  37225. bottom: 86/1285
  37226. }
  37227. },
  37228. },
  37229. [
  37230. {
  37231. name: "Normal",
  37232. height: math.unit(7 + 2/12, "feet"),
  37233. default: true
  37234. },
  37235. {
  37236. name: "Big",
  37237. height: math.unit(12, "feet")
  37238. },
  37239. {
  37240. name: "Minimacro",
  37241. height: math.unit(20, "feet")
  37242. },
  37243. {
  37244. name: "Macro",
  37245. height: math.unit(120, "feet")
  37246. },
  37247. ]
  37248. ))
  37249. characterMakers.push(() => makeCharacter(
  37250. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  37251. {
  37252. front: {
  37253. height: math.unit(7 + 8/12, "feet"),
  37254. weight: math.unit(152, "kg"),
  37255. name: "Front",
  37256. image: {
  37257. source: "./media/characters/helen-arri/front.svg",
  37258. extra: 440/423,
  37259. bottom: 14/454
  37260. }
  37261. },
  37262. back: {
  37263. height: math.unit(7 + 8/12, "feet"),
  37264. weight: math.unit(152, "kg"),
  37265. name: "Back",
  37266. image: {
  37267. source: "./media/characters/helen-arri/back.svg",
  37268. extra: 443/426,
  37269. bottom: 8/451
  37270. }
  37271. },
  37272. },
  37273. [
  37274. {
  37275. name: "Normal",
  37276. height: math.unit(7 + 8/12, "feet"),
  37277. default: true
  37278. },
  37279. {
  37280. name: "Big",
  37281. height: math.unit(14, "feet")
  37282. },
  37283. {
  37284. name: "Minimacro",
  37285. height: math.unit(24, "feet")
  37286. },
  37287. {
  37288. name: "Macro",
  37289. height: math.unit(140, "feet")
  37290. },
  37291. ]
  37292. ))
  37293. characterMakers.push(() => makeCharacter(
  37294. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  37295. {
  37296. front: {
  37297. height: math.unit(6, "meters"),
  37298. name: "Front",
  37299. image: {
  37300. source: "./media/characters/ehanu-rehu/front.svg",
  37301. extra: 1800/1800,
  37302. bottom: 59/1859
  37303. }
  37304. },
  37305. },
  37306. [
  37307. {
  37308. name: "Normal",
  37309. height: math.unit(6, "meters"),
  37310. default: true
  37311. },
  37312. ]
  37313. ))
  37314. characterMakers.push(() => makeCharacter(
  37315. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  37316. {
  37317. front: {
  37318. height: math.unit(7 + 3/12, "feet"),
  37319. name: "Front",
  37320. image: {
  37321. source: "./media/characters/renholder/front.svg",
  37322. extra: 3096/2960,
  37323. bottom: 250/3346
  37324. }
  37325. },
  37326. },
  37327. [
  37328. {
  37329. name: "Normal Bat",
  37330. height: math.unit(7 + 3/12, "feet"),
  37331. default: true
  37332. },
  37333. {
  37334. name: "Slightly Tall Bat",
  37335. height: math.unit(100, "feet")
  37336. },
  37337. {
  37338. name: "Big Bat",
  37339. height: math.unit(1000, "feet")
  37340. },
  37341. {
  37342. name: "City-Sized Bat",
  37343. height: math.unit(200000, "feet")
  37344. },
  37345. {
  37346. name: "Bigger Bat",
  37347. height: math.unit(10000, "miles")
  37348. },
  37349. {
  37350. name: "Solar Sized Bat",
  37351. height: math.unit(100, "AU")
  37352. },
  37353. {
  37354. name: "Galactic Bat",
  37355. height: math.unit(200000, "lightyears")
  37356. },
  37357. {
  37358. name: "Universally Known Bat",
  37359. height: math.unit(1, "universe")
  37360. },
  37361. ]
  37362. ))
  37363. characterMakers.push(() => makeCharacter(
  37364. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  37365. {
  37366. front: {
  37367. height: math.unit(6 + 11/12, "feet"),
  37368. weight: math.unit(250, "lb"),
  37369. name: "Front",
  37370. image: {
  37371. source: "./media/characters/cookiecat/front.svg",
  37372. extra: 893/827,
  37373. bottom: 14/907
  37374. }
  37375. },
  37376. },
  37377. [
  37378. {
  37379. name: "Micro",
  37380. height: math.unit(3, "inches")
  37381. },
  37382. {
  37383. name: "Normal",
  37384. height: math.unit(6 + 11/12, "feet"),
  37385. default: true
  37386. },
  37387. {
  37388. name: "Macro",
  37389. height: math.unit(100, "feet")
  37390. },
  37391. {
  37392. name: "Macro+",
  37393. height: math.unit(404, "feet")
  37394. },
  37395. {
  37396. name: "Megamacro",
  37397. height: math.unit(165, "miles")
  37398. },
  37399. {
  37400. name: "Planetary",
  37401. height: math.unit(4600, "miles")
  37402. },
  37403. ]
  37404. ))
  37405. characterMakers.push(() => makeCharacter(
  37406. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  37407. {
  37408. front: {
  37409. height: math.unit(10 + 3/12, "feet"),
  37410. weight: math.unit(1500, "lb"),
  37411. name: "Front",
  37412. image: {
  37413. source: "./media/characters/tux-kusanagi/front.svg",
  37414. extra: 944/840,
  37415. bottom: 39/983
  37416. }
  37417. },
  37418. back: {
  37419. height: math.unit(10 + 3/12, "feet"),
  37420. weight: math.unit(1500, "lb"),
  37421. name: "Back",
  37422. image: {
  37423. source: "./media/characters/tux-kusanagi/back.svg",
  37424. extra: 941/842,
  37425. bottom: 28/969
  37426. }
  37427. },
  37428. rump: {
  37429. height: math.unit(5.25, "feet"),
  37430. name: "Rump",
  37431. image: {
  37432. source: "./media/characters/tux-kusanagi/rump.svg"
  37433. }
  37434. },
  37435. beak: {
  37436. height: math.unit(1.54, "feet"),
  37437. name: "Beak",
  37438. image: {
  37439. source: "./media/characters/tux-kusanagi/beak.svg"
  37440. }
  37441. },
  37442. },
  37443. [
  37444. {
  37445. name: "Normal",
  37446. height: math.unit(10 + 3/12, "feet"),
  37447. default: true
  37448. },
  37449. ]
  37450. ))
  37451. characterMakers.push(() => makeCharacter(
  37452. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  37453. {
  37454. front: {
  37455. height: math.unit(58, "feet"),
  37456. weight: math.unit(200, "tons"),
  37457. name: "Front",
  37458. image: {
  37459. source: "./media/characters/uzarmazari/front.svg",
  37460. extra: 1575/1455,
  37461. bottom: 152/1727
  37462. }
  37463. },
  37464. back: {
  37465. height: math.unit(58, "feet"),
  37466. weight: math.unit(200, "tons"),
  37467. name: "Back",
  37468. image: {
  37469. source: "./media/characters/uzarmazari/back.svg",
  37470. extra: 1585/1510,
  37471. bottom: 157/1742
  37472. }
  37473. },
  37474. head: {
  37475. height: math.unit(26, "feet"),
  37476. name: "Head",
  37477. image: {
  37478. source: "./media/characters/uzarmazari/head.svg"
  37479. }
  37480. },
  37481. },
  37482. [
  37483. {
  37484. name: "Normal",
  37485. height: math.unit(58, "feet"),
  37486. default: true
  37487. },
  37488. ]
  37489. ))
  37490. characterMakers.push(() => makeCharacter(
  37491. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  37492. {
  37493. side: {
  37494. height: math.unit(15, "feet"),
  37495. name: "Side",
  37496. image: {
  37497. source: "./media/characters/akitu/side.svg",
  37498. extra: 1421/1321,
  37499. bottom: 157/1578
  37500. }
  37501. },
  37502. front: {
  37503. height: math.unit(15, "feet"),
  37504. name: "Front",
  37505. image: {
  37506. source: "./media/characters/akitu/front.svg",
  37507. extra: 1435/1326,
  37508. bottom: 232/1667
  37509. }
  37510. },
  37511. },
  37512. [
  37513. {
  37514. name: "Normal",
  37515. height: math.unit(15, "feet"),
  37516. default: true
  37517. },
  37518. ]
  37519. ))
  37520. characterMakers.push(() => makeCharacter(
  37521. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  37522. {
  37523. front: {
  37524. height: math.unit(10 + 8/12, "feet"),
  37525. name: "Front",
  37526. image: {
  37527. source: "./media/characters/azalie-croixland/front.svg",
  37528. extra: 1972/1856,
  37529. bottom: 31/2003
  37530. }
  37531. },
  37532. },
  37533. [
  37534. {
  37535. name: "Original Height",
  37536. height: math.unit(5 + 4/12, "feet")
  37537. },
  37538. {
  37539. name: "Normal Height",
  37540. height: math.unit(10 + 8/12, "feet"),
  37541. default: true
  37542. },
  37543. ]
  37544. ))
  37545. characterMakers.push(() => makeCharacter(
  37546. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  37547. {
  37548. side: {
  37549. height: math.unit(7 + 1/12, "feet"),
  37550. weight: math.unit(245, "lb"),
  37551. name: "Side",
  37552. image: {
  37553. source: "./media/characters/kavus-kazian/side.svg",
  37554. extra: 349/342,
  37555. bottom: 15/364
  37556. }
  37557. },
  37558. },
  37559. [
  37560. {
  37561. name: "Normal",
  37562. height: math.unit(7 + 1/12, "feet"),
  37563. default: true
  37564. },
  37565. ]
  37566. ))
  37567. characterMakers.push(() => makeCharacter(
  37568. { name: "Moonlight Rose", species: ["eevee", "leafeon", "jolteon", "demon", "vaporeon"], tags: ["anthro"] },
  37569. {
  37570. normalFront: {
  37571. height: math.unit(5 + 11/12, "feet"),
  37572. name: "Front",
  37573. image: {
  37574. source: "./media/characters/moonlight-rose/normal-front.svg",
  37575. extra: 1980/1825,
  37576. bottom: 18/1998
  37577. },
  37578. form: "normal",
  37579. default: true
  37580. },
  37581. normalBack: {
  37582. height: math.unit(5 + 11/12, "feet"),
  37583. name: "Back",
  37584. image: {
  37585. source: "./media/characters/moonlight-rose/normal-back.svg",
  37586. extra: 2010/1839,
  37587. bottom: 10/2020
  37588. },
  37589. form: "normal"
  37590. },
  37591. demonFront: {
  37592. height: math.unit(1.5, "earths"),
  37593. name: "Front",
  37594. image: {
  37595. source: "./media/characters/moonlight-rose/demon.svg",
  37596. extra: 1400/1294,
  37597. bottom: 45/1445
  37598. },
  37599. form: "demon",
  37600. default: true
  37601. },
  37602. terraFront: {
  37603. height: math.unit(1.5, "earths"),
  37604. name: "Front",
  37605. image: {
  37606. source: "./media/characters/moonlight-rose/terra.svg"
  37607. },
  37608. form: "terra",
  37609. default: true
  37610. },
  37611. jupiterFront: {
  37612. height: math.unit(69911*2, "km"),
  37613. name: "Front",
  37614. image: {
  37615. source: "./media/characters/moonlight-rose/jupiter-front.svg",
  37616. extra: 1367/1286,
  37617. bottom: 55/1422
  37618. },
  37619. form: "jupiter",
  37620. default: true
  37621. },
  37622. neptuneFront: {
  37623. height: math.unit(24622*2, "feet"),
  37624. name: "Front",
  37625. image: {
  37626. source: "./media/characters/moonlight-rose/neptune-front.svg",
  37627. extra: 1851/1712,
  37628. bottom: 0/1851
  37629. },
  37630. form: "neptune",
  37631. default: true
  37632. },
  37633. },
  37634. [
  37635. {
  37636. name: "\"Natural\" Height",
  37637. height: math.unit(5 + 11/12, "feet"),
  37638. form: "normal"
  37639. },
  37640. {
  37641. name: "Smallest comfortable size",
  37642. height: math.unit(40, "meters"),
  37643. form: "normal"
  37644. },
  37645. {
  37646. name: "Common size",
  37647. height: math.unit(50, "km"),
  37648. form: "normal",
  37649. default: true
  37650. },
  37651. {
  37652. name: "Normal",
  37653. height: math.unit(1.5, "earths"),
  37654. form: "demon",
  37655. default: true
  37656. },
  37657. {
  37658. name: "Universal",
  37659. height: math.unit(15, "universes"),
  37660. form: "demon"
  37661. },
  37662. {
  37663. name: "Earth",
  37664. height: math.unit(1.5, "earths"),
  37665. form: "terra",
  37666. default: true
  37667. },
  37668. {
  37669. name: "Super Earth",
  37670. height: math.unit(67.5, "earths"),
  37671. form: "terra"
  37672. },
  37673. {
  37674. name: "Doesn't fit in a solar system...",
  37675. height: math.unit(1, "galaxy"),
  37676. form: "terra"
  37677. },
  37678. {
  37679. name: "Saturn",
  37680. height: math.unit(58232*2, "km"),
  37681. form: "jupiter"
  37682. },
  37683. {
  37684. name: "Jupiter",
  37685. height: math.unit(69911*2, "km"),
  37686. form: "jupiter",
  37687. default: true
  37688. },
  37689. {
  37690. name: "HD 100546 b",
  37691. height: math.unit(482938, "km"),
  37692. form: "jupiter"
  37693. },
  37694. {
  37695. name: "Enceladus",
  37696. height: math.unit(513*2, "km"),
  37697. form: "neptune"
  37698. },
  37699. {
  37700. name: "Europe",
  37701. height: math.unit(1560*2, "km"),
  37702. form: "neptune"
  37703. },
  37704. {
  37705. name: "Neptune",
  37706. height: math.unit(24622*2, "km"),
  37707. form: "neptune",
  37708. default: true
  37709. },
  37710. {
  37711. name: "CoRoT-9b",
  37712. height: math.unit(75067*2, "km"),
  37713. form: "neptune"
  37714. },
  37715. ],
  37716. {
  37717. "normal": {
  37718. name: "Normal",
  37719. default: true
  37720. },
  37721. "demon": {
  37722. name: "Demon"
  37723. },
  37724. "terra": {
  37725. name: "Terra"
  37726. },
  37727. "jupiter": {
  37728. name: "Jupiter"
  37729. },
  37730. "neptune": {
  37731. name: "Neptune"
  37732. }
  37733. }
  37734. ))
  37735. characterMakers.push(() => makeCharacter(
  37736. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  37737. {
  37738. front: {
  37739. height: math.unit(16, "feet"),
  37740. weight: math.unit(610, "kg"),
  37741. name: "Front",
  37742. image: {
  37743. source: "./media/characters/huckle/front.svg",
  37744. extra: 1731/1625,
  37745. bottom: 33/1764
  37746. }
  37747. },
  37748. back: {
  37749. height: math.unit(16, "feet"),
  37750. weight: math.unit(610, "kg"),
  37751. name: "Back",
  37752. image: {
  37753. source: "./media/characters/huckle/back.svg",
  37754. extra: 1738/1651,
  37755. bottom: 37/1775
  37756. }
  37757. },
  37758. laughing: {
  37759. height: math.unit(3.75, "feet"),
  37760. name: "Laughing",
  37761. image: {
  37762. source: "./media/characters/huckle/laughing.svg"
  37763. }
  37764. },
  37765. angry: {
  37766. height: math.unit(4.15, "feet"),
  37767. name: "Angry",
  37768. image: {
  37769. source: "./media/characters/huckle/angry.svg"
  37770. }
  37771. },
  37772. },
  37773. [
  37774. {
  37775. name: "Normal",
  37776. height: math.unit(16, "feet"),
  37777. default: true
  37778. },
  37779. {
  37780. name: "Mini Macro",
  37781. height: math.unit(463, "feet")
  37782. },
  37783. {
  37784. name: "Macro",
  37785. height: math.unit(1680, "meters")
  37786. },
  37787. {
  37788. name: "Mega Macro",
  37789. height: math.unit(175, "km")
  37790. },
  37791. {
  37792. name: "Terra Macro",
  37793. height: math.unit(32, "gigameters")
  37794. },
  37795. {
  37796. name: "Multiverse+",
  37797. height: math.unit(2.56e23, "yottameters")
  37798. },
  37799. ]
  37800. ))
  37801. characterMakers.push(() => makeCharacter(
  37802. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  37803. {
  37804. front: {
  37805. height: math.unit(6 + 9/12, "feet"),
  37806. weight: math.unit(280, "lb"),
  37807. name: "Front",
  37808. image: {
  37809. source: "./media/characters/candy/front.svg",
  37810. extra: 234/217,
  37811. bottom: 11/245
  37812. }
  37813. },
  37814. },
  37815. [
  37816. {
  37817. name: "Really Small",
  37818. height: math.unit(0.1, "nm")
  37819. },
  37820. {
  37821. name: "Micro",
  37822. height: math.unit(2, "inches")
  37823. },
  37824. {
  37825. name: "Normal",
  37826. height: math.unit(6 + 9/12, "feet"),
  37827. default: true
  37828. },
  37829. {
  37830. name: "Small Macro",
  37831. height: math.unit(69, "feet")
  37832. },
  37833. {
  37834. name: "Macro",
  37835. height: math.unit(160, "feet")
  37836. },
  37837. {
  37838. name: "Megamacro",
  37839. height: math.unit(22000, "miles")
  37840. },
  37841. {
  37842. name: "Gigamacro",
  37843. height: math.unit(50000, "miles")
  37844. },
  37845. ]
  37846. ))
  37847. characterMakers.push(() => makeCharacter(
  37848. { name: "Joey McDonald", species: ["rabbit", "kobold"], tags: ["anthro"] },
  37849. {
  37850. front: {
  37851. height: math.unit(4, "feet"),
  37852. weight: math.unit(90, "lb"),
  37853. name: "Front",
  37854. image: {
  37855. source: "./media/characters/joey-mcdonald/front.svg",
  37856. extra: 1059/852,
  37857. bottom: 33/1092
  37858. }
  37859. },
  37860. back: {
  37861. height: math.unit(4, "feet"),
  37862. weight: math.unit(90, "lb"),
  37863. name: "Back",
  37864. image: {
  37865. source: "./media/characters/joey-mcdonald/back.svg",
  37866. extra: 1077/879,
  37867. bottom: 5/1082
  37868. }
  37869. },
  37870. frontKobold: {
  37871. height: math.unit(4, "feet"),
  37872. weight: math.unit(100, "lb"),
  37873. name: "Front-kobold",
  37874. image: {
  37875. source: "./media/characters/joey-mcdonald/front-kobold.svg",
  37876. extra: 1480/1367,
  37877. bottom: 0/1480
  37878. }
  37879. },
  37880. backKobold: {
  37881. height: math.unit(4, "feet"),
  37882. weight: math.unit(100, "lb"),
  37883. name: "Back-kobold",
  37884. image: {
  37885. source: "./media/characters/joey-mcdonald/back-kobold.svg",
  37886. extra: 1449/1361,
  37887. bottom: 0/1449
  37888. }
  37889. },
  37890. },
  37891. [
  37892. {
  37893. name: "Normal",
  37894. height: math.unit(4, "feet"),
  37895. default: true
  37896. },
  37897. ]
  37898. ))
  37899. characterMakers.push(() => makeCharacter(
  37900. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  37901. {
  37902. front: {
  37903. height: math.unit(12 + 6/12, "feet"),
  37904. name: "Front",
  37905. image: {
  37906. source: "./media/characters/kass-lockheed/front.svg",
  37907. extra: 354/343,
  37908. bottom: 9/363
  37909. }
  37910. },
  37911. back: {
  37912. height: math.unit(12 + 6/12, "feet"),
  37913. name: "Back",
  37914. image: {
  37915. source: "./media/characters/kass-lockheed/back.svg",
  37916. extra: 364/352,
  37917. bottom: 3/367
  37918. }
  37919. },
  37920. dick: {
  37921. height: math.unit(3.12, "feet"),
  37922. name: "Dick",
  37923. image: {
  37924. source: "./media/characters/kass-lockheed/dick.svg"
  37925. }
  37926. },
  37927. head: {
  37928. height: math.unit(2.6, "feet"),
  37929. name: "Head",
  37930. image: {
  37931. source: "./media/characters/kass-lockheed/head.svg"
  37932. }
  37933. },
  37934. bleh: {
  37935. height: math.unit(2.85, "feet"),
  37936. name: "Bleh",
  37937. image: {
  37938. source: "./media/characters/kass-lockheed/bleh.svg"
  37939. }
  37940. },
  37941. smug: {
  37942. height: math.unit(2.85, "feet"),
  37943. name: "Smug",
  37944. image: {
  37945. source: "./media/characters/kass-lockheed/smug.svg"
  37946. }
  37947. },
  37948. },
  37949. [
  37950. {
  37951. name: "Normal",
  37952. height: math.unit(12 + 6/12, "feet"),
  37953. default: true
  37954. },
  37955. ]
  37956. ))
  37957. characterMakers.push(() => makeCharacter(
  37958. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  37959. {
  37960. front: {
  37961. height: math.unit(6 + 2/12, "feet"),
  37962. name: "Front",
  37963. image: {
  37964. source: "./media/characters/taylor/front.svg",
  37965. extra: 639/495,
  37966. bottom: 12/651
  37967. }
  37968. },
  37969. },
  37970. [
  37971. {
  37972. name: "Normal",
  37973. height: math.unit(6 + 2/12, "feet"),
  37974. default: true
  37975. },
  37976. {
  37977. name: "Big",
  37978. height: math.unit(15, "feet")
  37979. },
  37980. {
  37981. name: "Lorg",
  37982. height: math.unit(80, "feet")
  37983. },
  37984. {
  37985. name: "Too Lorg",
  37986. height: math.unit(120, "feet")
  37987. },
  37988. ]
  37989. ))
  37990. characterMakers.push(() => makeCharacter(
  37991. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  37992. {
  37993. front: {
  37994. height: math.unit(15, "feet"),
  37995. name: "Front",
  37996. image: {
  37997. source: "./media/characters/kaizer/front.svg",
  37998. extra: 1612/1436,
  37999. bottom: 43/1655
  38000. }
  38001. },
  38002. },
  38003. [
  38004. {
  38005. name: "Normal",
  38006. height: math.unit(15, "feet"),
  38007. default: true
  38008. },
  38009. ]
  38010. ))
  38011. characterMakers.push(() => makeCharacter(
  38012. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  38013. {
  38014. front: {
  38015. height: math.unit(2, "feet"),
  38016. weight: math.unit(30, "lb"),
  38017. name: "Front",
  38018. image: {
  38019. source: "./media/characters/sandy/front.svg",
  38020. extra: 1439/1307,
  38021. bottom: 194/1633
  38022. }
  38023. },
  38024. },
  38025. [
  38026. {
  38027. name: "Normal",
  38028. height: math.unit(2, "feet"),
  38029. default: true
  38030. },
  38031. ]
  38032. ))
  38033. characterMakers.push(() => makeCharacter(
  38034. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  38035. {
  38036. front: {
  38037. height: math.unit(3, "feet"),
  38038. name: "Front",
  38039. image: {
  38040. source: "./media/characters/mellvi/front.svg",
  38041. extra: 1831/1630,
  38042. bottom: 58/1889
  38043. }
  38044. },
  38045. },
  38046. [
  38047. {
  38048. name: "Normal",
  38049. height: math.unit(3, "feet"),
  38050. default: true
  38051. },
  38052. ]
  38053. ))
  38054. characterMakers.push(() => makeCharacter(
  38055. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  38056. {
  38057. front: {
  38058. height: math.unit(5 + 11/12, "feet"),
  38059. weight: math.unit(200, "lb"),
  38060. name: "Front",
  38061. image: {
  38062. source: "./media/characters/shirou/front.svg",
  38063. extra: 2491/2383,
  38064. bottom: 189/2680
  38065. }
  38066. },
  38067. back: {
  38068. height: math.unit(5 + 11/12, "feet"),
  38069. weight: math.unit(200, "lb"),
  38070. name: "Back",
  38071. image: {
  38072. source: "./media/characters/shirou/back.svg",
  38073. extra: 2554/2450,
  38074. bottom: 76/2630
  38075. }
  38076. },
  38077. },
  38078. [
  38079. {
  38080. name: "Normal",
  38081. height: math.unit(5 + 11/12, "feet"),
  38082. default: true
  38083. },
  38084. ]
  38085. ))
  38086. characterMakers.push(() => makeCharacter(
  38087. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  38088. {
  38089. front: {
  38090. height: math.unit(6 + 3/12, "feet"),
  38091. weight: math.unit(177, "lb"),
  38092. name: "Front",
  38093. image: {
  38094. source: "./media/characters/noryu/front.svg",
  38095. extra: 973/885,
  38096. bottom: 10/983
  38097. }
  38098. },
  38099. },
  38100. [
  38101. {
  38102. name: "Normal",
  38103. height: math.unit(6 + 3/12, "feet"),
  38104. default: true
  38105. },
  38106. ]
  38107. ))
  38108. characterMakers.push(() => makeCharacter(
  38109. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  38110. {
  38111. front: {
  38112. height: math.unit(5 + 6/12, "feet"),
  38113. weight: math.unit(170, "lb"),
  38114. name: "Front",
  38115. image: {
  38116. source: "./media/characters/mevolas-rubenido/front.svg",
  38117. extra: 2109/1901,
  38118. bottom: 96/2205
  38119. }
  38120. },
  38121. },
  38122. [
  38123. {
  38124. name: "Normal",
  38125. height: math.unit(5 + 6/12, "feet"),
  38126. default: true
  38127. },
  38128. ]
  38129. ))
  38130. characterMakers.push(() => makeCharacter(
  38131. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  38132. {
  38133. front: {
  38134. height: math.unit(100, "feet"),
  38135. name: "Front",
  38136. image: {
  38137. source: "./media/characters/dee/front.svg",
  38138. extra: 2153/2036,
  38139. bottom: 59/2212
  38140. }
  38141. },
  38142. back: {
  38143. height: math.unit(100, "feet"),
  38144. name: "Back",
  38145. image: {
  38146. source: "./media/characters/dee/back.svg",
  38147. extra: 2183/2058,
  38148. bottom: 75/2258
  38149. }
  38150. },
  38151. foot: {
  38152. height: math.unit(19.43, "feet"),
  38153. name: "Foot",
  38154. image: {
  38155. source: "./media/characters/dee/foot.svg"
  38156. }
  38157. },
  38158. hoof: {
  38159. height: math.unit(20.6, "feet"),
  38160. name: "Hoof",
  38161. image: {
  38162. source: "./media/characters/dee/hoof.svg"
  38163. }
  38164. },
  38165. },
  38166. [
  38167. {
  38168. name: "Macro",
  38169. height: math.unit(100, "feet"),
  38170. default: true
  38171. },
  38172. ]
  38173. ))
  38174. characterMakers.push(() => makeCharacter(
  38175. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  38176. {
  38177. front: {
  38178. height: math.unit(5 + 6/12, "feet"),
  38179. name: "Front",
  38180. image: {
  38181. source: "./media/characters/teh/front.svg",
  38182. extra: 1002/847,
  38183. bottom: 62/1064
  38184. }
  38185. },
  38186. },
  38187. [
  38188. {
  38189. name: "Normal",
  38190. height: math.unit(5 + 6/12, "feet"),
  38191. default: true
  38192. },
  38193. ]
  38194. ))
  38195. characterMakers.push(() => makeCharacter(
  38196. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  38197. {
  38198. side: {
  38199. height: math.unit(6 + 1/12, "feet"),
  38200. weight: math.unit(204, "lb"),
  38201. name: "Side",
  38202. image: {
  38203. source: "./media/characters/quicksilver-ayukoti/side.svg",
  38204. extra: 974/775,
  38205. bottom: 169/1143
  38206. }
  38207. },
  38208. sitting: {
  38209. height: math.unit(6 + 2/12, "feet"),
  38210. weight: math.unit(204, "lb"),
  38211. name: "Sitting",
  38212. image: {
  38213. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  38214. extra: 1175/964,
  38215. bottom: 378/1553
  38216. }
  38217. },
  38218. },
  38219. [
  38220. {
  38221. name: "Normal",
  38222. height: math.unit(6 + 1/12, "feet"),
  38223. default: true
  38224. },
  38225. ]
  38226. ))
  38227. characterMakers.push(() => makeCharacter(
  38228. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  38229. {
  38230. front: {
  38231. height: math.unit(6, "inches"),
  38232. name: "Front",
  38233. image: {
  38234. source: "./media/characters/tululi/front.svg",
  38235. extra: 1997/1876,
  38236. bottom: 20/2017
  38237. }
  38238. },
  38239. },
  38240. [
  38241. {
  38242. name: "Normal",
  38243. height: math.unit(6, "inches"),
  38244. default: true
  38245. },
  38246. ]
  38247. ))
  38248. characterMakers.push(() => makeCharacter(
  38249. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  38250. {
  38251. front: {
  38252. height: math.unit(4 + 1/12, "feet"),
  38253. name: "Front",
  38254. image: {
  38255. source: "./media/characters/star/front.svg",
  38256. extra: 1493/1189,
  38257. bottom: 48/1541
  38258. }
  38259. },
  38260. },
  38261. [
  38262. {
  38263. name: "Normal",
  38264. height: math.unit(4 + 1/12, "feet"),
  38265. default: true
  38266. },
  38267. ]
  38268. ))
  38269. characterMakers.push(() => makeCharacter(
  38270. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  38271. {
  38272. front: {
  38273. height: math.unit(6 + 3/12, "feet"),
  38274. name: "Front",
  38275. image: {
  38276. source: "./media/characters/comet/front.svg",
  38277. extra: 1681/1462,
  38278. bottom: 26/1707
  38279. }
  38280. },
  38281. },
  38282. [
  38283. {
  38284. name: "Normal",
  38285. height: math.unit(6 + 3/12, "feet"),
  38286. default: true
  38287. },
  38288. ]
  38289. ))
  38290. characterMakers.push(() => makeCharacter(
  38291. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  38292. {
  38293. front: {
  38294. height: math.unit(950, "feet"),
  38295. name: "Front",
  38296. image: {
  38297. source: "./media/characters/vortex/front.svg",
  38298. extra: 1497/1434,
  38299. bottom: 56/1553
  38300. }
  38301. },
  38302. maw: {
  38303. height: math.unit(285, "feet"),
  38304. name: "Maw",
  38305. image: {
  38306. source: "./media/characters/vortex/maw.svg"
  38307. }
  38308. },
  38309. },
  38310. [
  38311. {
  38312. name: "Macro",
  38313. height: math.unit(950, "feet"),
  38314. default: true
  38315. },
  38316. ]
  38317. ))
  38318. characterMakers.push(() => makeCharacter(
  38319. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  38320. {
  38321. front: {
  38322. height: math.unit(600, "feet"),
  38323. weight: math.unit(0.02, "grams"),
  38324. name: "Front",
  38325. image: {
  38326. source: "./media/characters/doodle/front.svg",
  38327. extra: 1578/1413,
  38328. bottom: 37/1615
  38329. }
  38330. },
  38331. },
  38332. [
  38333. {
  38334. name: "Macro",
  38335. height: math.unit(600, "feet"),
  38336. default: true
  38337. },
  38338. ]
  38339. ))
  38340. characterMakers.push(() => makeCharacter(
  38341. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  38342. {
  38343. front: {
  38344. height: math.unit(6 + 6/12, "feet"),
  38345. name: "Front",
  38346. image: {
  38347. source: "./media/characters/jai/front.svg",
  38348. extra: 1645/1534,
  38349. bottom: 115/1760
  38350. }
  38351. },
  38352. },
  38353. [
  38354. {
  38355. name: "Normal",
  38356. height: math.unit(6 + 6/12, "feet"),
  38357. default: true
  38358. },
  38359. ]
  38360. ))
  38361. characterMakers.push(() => makeCharacter(
  38362. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  38363. {
  38364. front: {
  38365. height: math.unit(6 + 8/12, "feet"),
  38366. name: "Front",
  38367. image: {
  38368. source: "./media/characters/pixel/front.svg",
  38369. extra: 1900/1735,
  38370. bottom: 63/1963
  38371. }
  38372. },
  38373. },
  38374. [
  38375. {
  38376. name: "Normal",
  38377. height: math.unit(6 + 8/12, "feet"),
  38378. default: true
  38379. },
  38380. ]
  38381. ))
  38382. characterMakers.push(() => makeCharacter(
  38383. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  38384. {
  38385. back: {
  38386. height: math.unit(4 + 1/12, "feet"),
  38387. weight: math.unit(75, "lb"),
  38388. name: "Back",
  38389. image: {
  38390. source: "./media/characters/rhett/back.svg",
  38391. extra: 930/878,
  38392. bottom: 25/955
  38393. }
  38394. },
  38395. front: {
  38396. height: math.unit(4 + 1/12, "feet"),
  38397. weight: math.unit(75, "lb"),
  38398. name: "Front",
  38399. image: {
  38400. source: "./media/characters/rhett/front.svg",
  38401. extra: 1682/1586,
  38402. bottom: 92/1774
  38403. }
  38404. },
  38405. },
  38406. [
  38407. {
  38408. name: "Micro",
  38409. height: math.unit(8, "inches")
  38410. },
  38411. {
  38412. name: "Tiny",
  38413. height: math.unit(2, "feet")
  38414. },
  38415. {
  38416. name: "Normal",
  38417. height: math.unit(4 + 1/12, "feet"),
  38418. default: true
  38419. },
  38420. ]
  38421. ))
  38422. characterMakers.push(() => makeCharacter(
  38423. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  38424. {
  38425. front: {
  38426. height: math.unit(3 + 3/12, "feet"),
  38427. name: "Front",
  38428. image: {
  38429. source: "./media/characters/penny/front.svg",
  38430. extra: 1406/1311,
  38431. bottom: 26/1432
  38432. }
  38433. },
  38434. },
  38435. [
  38436. {
  38437. name: "Normal",
  38438. height: math.unit(3 + 3/12, "feet"),
  38439. default: true
  38440. },
  38441. ]
  38442. ))
  38443. characterMakers.push(() => makeCharacter(
  38444. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  38445. {
  38446. front: {
  38447. height: math.unit(4 + 11/12, "feet"),
  38448. name: "Front",
  38449. image: {
  38450. source: "./media/characters/monty/front.svg",
  38451. extra: 1479/1209,
  38452. bottom: 0/1479
  38453. }
  38454. },
  38455. },
  38456. [
  38457. {
  38458. name: "Normal",
  38459. height: math.unit(4 + 11/12, "feet"),
  38460. default: true
  38461. },
  38462. ]
  38463. ))
  38464. characterMakers.push(() => makeCharacter(
  38465. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  38466. {
  38467. front: {
  38468. height: math.unit(8 + 4/12, "feet"),
  38469. name: "Front",
  38470. image: {
  38471. source: "./media/characters/sterling/front.svg",
  38472. extra: 1420/1236,
  38473. bottom: 27/1447
  38474. }
  38475. },
  38476. },
  38477. [
  38478. {
  38479. name: "Normal",
  38480. height: math.unit(8 + 4/12, "feet"),
  38481. default: true
  38482. },
  38483. ]
  38484. ))
  38485. characterMakers.push(() => makeCharacter(
  38486. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  38487. {
  38488. front: {
  38489. height: math.unit(15, "feet"),
  38490. name: "Front",
  38491. image: {
  38492. source: "./media/characters/marble/front.svg",
  38493. extra: 973/937,
  38494. bottom: 32/1005
  38495. }
  38496. },
  38497. },
  38498. [
  38499. {
  38500. name: "Normal",
  38501. height: math.unit(15, "feet"),
  38502. default: true
  38503. },
  38504. ]
  38505. ))
  38506. characterMakers.push(() => makeCharacter(
  38507. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  38508. {
  38509. front: {
  38510. height: math.unit(3, "inches"),
  38511. name: "Front",
  38512. image: {
  38513. source: "./media/characters/powder/front.svg",
  38514. extra: 1504/1334,
  38515. bottom: 518/2022
  38516. }
  38517. },
  38518. },
  38519. [
  38520. {
  38521. name: "Normal",
  38522. height: math.unit(3, "inches"),
  38523. default: true
  38524. },
  38525. ]
  38526. ))
  38527. characterMakers.push(() => makeCharacter(
  38528. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  38529. {
  38530. front: {
  38531. height: math.unit(4 + 5/12, "feet"),
  38532. name: "Front",
  38533. image: {
  38534. source: "./media/characters/joey-raccoon/front.svg",
  38535. extra: 1273/1197,
  38536. bottom: 0/1273
  38537. }
  38538. },
  38539. },
  38540. [
  38541. {
  38542. name: "Normal",
  38543. height: math.unit(4 + 5/12, "feet"),
  38544. default: true
  38545. },
  38546. ]
  38547. ))
  38548. characterMakers.push(() => makeCharacter(
  38549. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  38550. {
  38551. front: {
  38552. height: math.unit(8 + 4/12, "feet"),
  38553. name: "Front",
  38554. image: {
  38555. source: "./media/characters/vick/front.svg",
  38556. extra: 2187/2118,
  38557. bottom: 47/2234
  38558. }
  38559. },
  38560. },
  38561. [
  38562. {
  38563. name: "Normal",
  38564. height: math.unit(8 + 4/12, "feet"),
  38565. default: true
  38566. },
  38567. ]
  38568. ))
  38569. characterMakers.push(() => makeCharacter(
  38570. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  38571. {
  38572. front: {
  38573. height: math.unit(5 + 5/12, "feet"),
  38574. name: "Front",
  38575. image: {
  38576. source: "./media/characters/mitsy/front.svg",
  38577. extra: 1842/1695,
  38578. bottom: 0/1842
  38579. }
  38580. },
  38581. },
  38582. [
  38583. {
  38584. name: "Normal",
  38585. height: math.unit(5 + 5/12, "feet"),
  38586. default: true
  38587. },
  38588. ]
  38589. ))
  38590. characterMakers.push(() => makeCharacter(
  38591. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  38592. {
  38593. front: {
  38594. height: math.unit(6 + 3/12, "feet"),
  38595. name: "Front",
  38596. image: {
  38597. source: "./media/characters/silvy/front.svg",
  38598. extra: 1995/1836,
  38599. bottom: 225/2220
  38600. }
  38601. },
  38602. },
  38603. [
  38604. {
  38605. name: "Normal",
  38606. height: math.unit(6 + 3/12, "feet"),
  38607. default: true
  38608. },
  38609. ]
  38610. ))
  38611. characterMakers.push(() => makeCharacter(
  38612. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  38613. {
  38614. front: {
  38615. height: math.unit(3 + 8/12, "feet"),
  38616. name: "Front",
  38617. image: {
  38618. source: "./media/characters/rodney/front.svg",
  38619. extra: 1956/1747,
  38620. bottom: 31/1987
  38621. }
  38622. },
  38623. frontDressed: {
  38624. height: math.unit(2.9, "feet"),
  38625. name: "Front (Dressed)",
  38626. image: {
  38627. source: "./media/characters/rodney/front-dressed.svg",
  38628. extra: 1382/1241,
  38629. bottom: 385/1767
  38630. }
  38631. },
  38632. },
  38633. [
  38634. {
  38635. name: "Normal",
  38636. height: math.unit(3 + 8/12, "feet"),
  38637. default: true
  38638. },
  38639. ]
  38640. ))
  38641. characterMakers.push(() => makeCharacter(
  38642. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  38643. {
  38644. front: {
  38645. height: math.unit(5 + 9/12, "feet"),
  38646. weight: math.unit(194, "lbs"),
  38647. name: "Front",
  38648. image: {
  38649. source: "./media/characters/zakail-sudekai/front.svg",
  38650. extra: 2696/2533,
  38651. bottom: 248/2944
  38652. }
  38653. },
  38654. maw: {
  38655. height: math.unit(1.35, "feet"),
  38656. name: "Maw",
  38657. image: {
  38658. source: "./media/characters/zakail-sudekai/maw.svg"
  38659. }
  38660. },
  38661. },
  38662. [
  38663. {
  38664. name: "Normal",
  38665. height: math.unit(5 + 9/12, "feet"),
  38666. default: true
  38667. },
  38668. ]
  38669. ))
  38670. characterMakers.push(() => makeCharacter(
  38671. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  38672. {
  38673. front: {
  38674. height: math.unit(8 + 4/12, "feet"),
  38675. weight: math.unit(1200, "lb"),
  38676. name: "Front",
  38677. image: {
  38678. source: "./media/characters/eleanor/front.svg",
  38679. extra: 1226/1192,
  38680. bottom: 52/1278
  38681. }
  38682. },
  38683. back: {
  38684. height: math.unit(8 + 4/12, "feet"),
  38685. weight: math.unit(1200, "lb"),
  38686. name: "Back",
  38687. image: {
  38688. source: "./media/characters/eleanor/back.svg",
  38689. extra: 1242/1184,
  38690. bottom: 60/1302
  38691. }
  38692. },
  38693. head: {
  38694. height: math.unit(2.62, "feet"),
  38695. name: "Head",
  38696. image: {
  38697. source: "./media/characters/eleanor/head.svg"
  38698. }
  38699. },
  38700. },
  38701. [
  38702. {
  38703. name: "Normal",
  38704. height: math.unit(8 + 4/12, "feet"),
  38705. default: true
  38706. },
  38707. ]
  38708. ))
  38709. characterMakers.push(() => makeCharacter(
  38710. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  38711. {
  38712. front: {
  38713. height: math.unit(8 + 4/12, "feet"),
  38714. weight: math.unit(750, "lb"),
  38715. name: "Front",
  38716. image: {
  38717. source: "./media/characters/tanya/front.svg",
  38718. extra: 1749/1615,
  38719. bottom: 33/1782
  38720. }
  38721. },
  38722. },
  38723. [
  38724. {
  38725. name: "Normal",
  38726. height: math.unit(8 + 4/12, "feet"),
  38727. default: true
  38728. },
  38729. ]
  38730. ))
  38731. characterMakers.push(() => makeCharacter(
  38732. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  38733. {
  38734. front: {
  38735. height: math.unit(5, "feet"),
  38736. weight: math.unit(225, "lb"),
  38737. name: "Front",
  38738. image: {
  38739. source: "./media/characters/cindy/front.svg",
  38740. extra: 1320/1250,
  38741. bottom: 42/1362
  38742. }
  38743. },
  38744. frontDressed: {
  38745. height: math.unit(5, "feet"),
  38746. weight: math.unit(225, "lb"),
  38747. name: "Front (Dressed)",
  38748. image: {
  38749. source: "./media/characters/cindy/front-dressed.svg",
  38750. extra: 1320/1250,
  38751. bottom: 42/1362
  38752. }
  38753. },
  38754. back: {
  38755. height: math.unit(5, "feet"),
  38756. weight: math.unit(225, "lb"),
  38757. name: "Back",
  38758. image: {
  38759. source: "./media/characters/cindy/back.svg",
  38760. extra: 1384/1346,
  38761. bottom: 14/1398
  38762. }
  38763. },
  38764. },
  38765. [
  38766. {
  38767. name: "Normal",
  38768. height: math.unit(5, "feet"),
  38769. default: true
  38770. },
  38771. ]
  38772. ))
  38773. characterMakers.push(() => makeCharacter(
  38774. { name: "Wilbur Owen", species: ["donkey"], tags: ["anthro"] },
  38775. {
  38776. front: {
  38777. height: math.unit(6 + 9/12, "feet"),
  38778. weight: math.unit(440, "lb"),
  38779. name: "Front",
  38780. image: {
  38781. source: "./media/characters/wilbur-owen/front.svg",
  38782. extra: 1575/1448,
  38783. bottom: 72/1647
  38784. }
  38785. },
  38786. back: {
  38787. height: math.unit(6 + 9/12, "feet"),
  38788. weight: math.unit(440, "lb"),
  38789. name: "Back",
  38790. image: {
  38791. source: "./media/characters/wilbur-owen/back.svg",
  38792. extra: 1578/1445,
  38793. bottom: 36/1614
  38794. }
  38795. },
  38796. },
  38797. [
  38798. {
  38799. name: "Normal",
  38800. height: math.unit(6 + 9/12, "feet"),
  38801. default: true
  38802. },
  38803. ]
  38804. ))
  38805. characterMakers.push(() => makeCharacter(
  38806. { name: "Keegan", species: ["chinchilla", "tiger"], tags: ["anthro"] },
  38807. {
  38808. front: {
  38809. height: math.unit(6 + 5/12, "feet"),
  38810. weight: math.unit(650, "lb"),
  38811. name: "Front",
  38812. image: {
  38813. source: "./media/characters/keegan/front.svg",
  38814. extra: 2387/2198,
  38815. bottom: 33/2420
  38816. }
  38817. },
  38818. side: {
  38819. height: math.unit(6 + 5/12, "feet"),
  38820. weight: math.unit(650, "lb"),
  38821. name: "Side",
  38822. image: {
  38823. source: "./media/characters/keegan/side.svg",
  38824. extra: 2390/2202,
  38825. bottom: 47/2437
  38826. }
  38827. },
  38828. back: {
  38829. height: math.unit(6 + 5/12, "feet"),
  38830. weight: math.unit(650, "lb"),
  38831. name: "Back",
  38832. image: {
  38833. source: "./media/characters/keegan/back.svg",
  38834. extra: 2418/2268,
  38835. bottom: 15/2433
  38836. }
  38837. },
  38838. frontSfw: {
  38839. height: math.unit(6 + 5/12, "feet"),
  38840. weight: math.unit(650, "lb"),
  38841. name: "Front (SFW)",
  38842. image: {
  38843. source: "./media/characters/keegan/front-sfw.svg",
  38844. extra: 2387/2198,
  38845. bottom: 33/2420
  38846. }
  38847. },
  38848. beans: {
  38849. height: math.unit(1.85, "feet"),
  38850. name: "Beans",
  38851. image: {
  38852. source: "./media/characters/keegan/beans.svg"
  38853. }
  38854. },
  38855. },
  38856. [
  38857. {
  38858. name: "Normal",
  38859. height: math.unit(6 + 5/12, "feet"),
  38860. default: true
  38861. },
  38862. ]
  38863. ))
  38864. characterMakers.push(() => makeCharacter(
  38865. { name: "Colton", species: ["bat", "imp", "deity"], tags: ["anthro"] },
  38866. {
  38867. front: {
  38868. height: math.unit(9, "feet"),
  38869. name: "Front",
  38870. image: {
  38871. source: "./media/characters/colton/front.svg",
  38872. extra: 1589/1326,
  38873. bottom: 139/1728
  38874. }
  38875. },
  38876. },
  38877. [
  38878. {
  38879. name: "Normal",
  38880. height: math.unit(9, "feet"),
  38881. default: true
  38882. },
  38883. ]
  38884. ))
  38885. characterMakers.push(() => makeCharacter(
  38886. { name: "Bora", species: ["chinchilla"], tags: ["anthro"] },
  38887. {
  38888. front: {
  38889. height: math.unit(2 + 9/12, "feet"),
  38890. name: "Front",
  38891. image: {
  38892. source: "./media/characters/bora/front.svg",
  38893. extra: 1265/1250,
  38894. bottom: 24/1289
  38895. }
  38896. },
  38897. },
  38898. [
  38899. {
  38900. name: "Normal",
  38901. height: math.unit(2 + 9/12, "feet"),
  38902. default: true
  38903. },
  38904. ]
  38905. ))
  38906. characterMakers.push(() => makeCharacter(
  38907. { name: "Myu-myu", species: ["monster"], tags: ["anthro"] },
  38908. {
  38909. front: {
  38910. height: math.unit(8, "feet"),
  38911. name: "Front",
  38912. image: {
  38913. source: "./media/characters/myu-myu/front.svg",
  38914. extra: 1949/1857,
  38915. bottom: 90/2039
  38916. }
  38917. },
  38918. },
  38919. [
  38920. {
  38921. name: "Normal",
  38922. height: math.unit(8, "feet"),
  38923. default: true
  38924. },
  38925. {
  38926. name: "Big",
  38927. height: math.unit(15, "feet")
  38928. },
  38929. {
  38930. name: "BIG",
  38931. height: math.unit(25, "feet")
  38932. },
  38933. ]
  38934. ))
  38935. characterMakers.push(() => makeCharacter(
  38936. { name: "Haloren", species: ["felkin"], tags: ["anthro"] },
  38937. {
  38938. side: {
  38939. height: math.unit(7 + 5/12, "feet"),
  38940. weight: math.unit(2800, "lb"),
  38941. name: "Side",
  38942. image: {
  38943. source: "./media/characters/haloren/side.svg",
  38944. extra: 1793/409,
  38945. bottom: 59/1852
  38946. }
  38947. },
  38948. frontPaw: {
  38949. height: math.unit(2.36, "feet"),
  38950. name: "Front paw",
  38951. image: {
  38952. source: "./media/characters/haloren/front-paw.svg"
  38953. }
  38954. },
  38955. hindPaw: {
  38956. height: math.unit(3.18, "feet"),
  38957. name: "Hind paw",
  38958. image: {
  38959. source: "./media/characters/haloren/hind-paw.svg"
  38960. }
  38961. },
  38962. maw: {
  38963. height: math.unit(5.05, "feet"),
  38964. name: "Maw",
  38965. image: {
  38966. source: "./media/characters/haloren/maw.svg"
  38967. }
  38968. },
  38969. dick: {
  38970. height: math.unit(2.90, "feet"),
  38971. name: "Dick",
  38972. image: {
  38973. source: "./media/characters/haloren/dick.svg"
  38974. }
  38975. },
  38976. },
  38977. [
  38978. {
  38979. name: "Normal",
  38980. height: math.unit(7 + 5/12, "feet"),
  38981. default: true
  38982. },
  38983. {
  38984. name: "Enhanced",
  38985. height: math.unit(14 + 3/12, "feet")
  38986. },
  38987. ]
  38988. ))
  38989. characterMakers.push(() => makeCharacter(
  38990. { name: "Kimmy", species: ["kitsune"], tags: ["anthro"] },
  38991. {
  38992. front: {
  38993. height: math.unit(171, "cm"),
  38994. name: "Front",
  38995. image: {
  38996. source: "./media/characters/kimmy/front.svg",
  38997. extra: 1491/1435,
  38998. bottom: 53/1544
  38999. }
  39000. },
  39001. },
  39002. [
  39003. {
  39004. name: "Small",
  39005. height: math.unit(9, "cm")
  39006. },
  39007. {
  39008. name: "Normal",
  39009. height: math.unit(171, "cm"),
  39010. default: true
  39011. },
  39012. ]
  39013. ))
  39014. characterMakers.push(() => makeCharacter(
  39015. { name: "Galeboomer", species: ["wolf"], tags: ["anthro"] },
  39016. {
  39017. front: {
  39018. height: math.unit(8, "feet"),
  39019. weight: math.unit(300, "lb"),
  39020. name: "Front",
  39021. image: {
  39022. source: "./media/characters/galeboomer/front.svg",
  39023. extra: 4651/4415,
  39024. bottom: 162/4813
  39025. }
  39026. },
  39027. back: {
  39028. height: math.unit(8, "feet"),
  39029. weight: math.unit(300, "lb"),
  39030. name: "Back",
  39031. image: {
  39032. source: "./media/characters/galeboomer/back.svg",
  39033. extra: 4544/4314,
  39034. bottom: 16/4560
  39035. }
  39036. },
  39037. frontAlt: {
  39038. height: math.unit(8, "feet"),
  39039. weight: math.unit(300, "lb"),
  39040. name: "Front (Alt)",
  39041. image: {
  39042. source: "./media/characters/galeboomer/front-alt.svg",
  39043. extra: 4458/4228,
  39044. bottom: 68/4526
  39045. }
  39046. },
  39047. maw: {
  39048. height: math.unit(1.2, "feet"),
  39049. name: "Maw",
  39050. image: {
  39051. source: "./media/characters/galeboomer/maw.svg"
  39052. }
  39053. },
  39054. },
  39055. [
  39056. {
  39057. name: "Normal",
  39058. height: math.unit(8, "feet"),
  39059. default: true
  39060. },
  39061. ]
  39062. ))
  39063. characterMakers.push(() => makeCharacter(
  39064. { name: "Chyr", species: ["fox"], tags: ["anthro"] },
  39065. {
  39066. front: {
  39067. height: math.unit(5 + 9/12, "feet"),
  39068. weight: math.unit(120, "lb"),
  39069. name: "Front",
  39070. image: {
  39071. source: "./media/characters/chyr/front.svg",
  39072. extra: 1323/1254,
  39073. bottom: 63/1386
  39074. }
  39075. },
  39076. back: {
  39077. height: math.unit(5 + 9/12, "feet"),
  39078. weight: math.unit(120, "lb"),
  39079. name: "Back",
  39080. image: {
  39081. source: "./media/characters/chyr/back.svg",
  39082. extra: 1323/1252,
  39083. bottom: 48/1371
  39084. }
  39085. },
  39086. },
  39087. [
  39088. {
  39089. name: "Normal",
  39090. height: math.unit(5 + 9/12, "feet"),
  39091. default: true
  39092. },
  39093. ]
  39094. ))
  39095. characterMakers.push(() => makeCharacter(
  39096. { name: "Solarus", species: ["tykeriel"], tags: ["anthro"] },
  39097. {
  39098. front: {
  39099. height: math.unit(7, "feet"),
  39100. weight: math.unit(310, "lb"),
  39101. name: "Front",
  39102. image: {
  39103. source: "./media/characters/solarus/front.svg",
  39104. extra: 2415/2021,
  39105. bottom: 103/2518
  39106. }
  39107. },
  39108. back: {
  39109. height: math.unit(7, "feet"),
  39110. weight: math.unit(310, "lb"),
  39111. name: "Back",
  39112. image: {
  39113. source: "./media/characters/solarus/back.svg",
  39114. extra: 2463/2089,
  39115. bottom: 79/2542
  39116. }
  39117. },
  39118. },
  39119. [
  39120. {
  39121. name: "Normal",
  39122. height: math.unit(7, "feet"),
  39123. default: true
  39124. },
  39125. ]
  39126. ))
  39127. characterMakers.push(() => makeCharacter(
  39128. { name: "Mutsuju Koizaemon", species: ["snow-leopard", "lynx"], tags: ["anthro"] },
  39129. {
  39130. front: {
  39131. height: math.unit(16, "feet"),
  39132. name: "Front",
  39133. image: {
  39134. source: "./media/characters/mutsuju-koizaemon/front.svg",
  39135. extra: 1844/1780,
  39136. bottom: 58/1902
  39137. }
  39138. },
  39139. winterCoat: {
  39140. height: math.unit(16, "feet"),
  39141. name: "Winter Coat",
  39142. image: {
  39143. source: "./media/characters/mutsuju-koizaemon/winter-coat.svg",
  39144. extra: 1807/1775,
  39145. bottom: 69/1876
  39146. }
  39147. },
  39148. },
  39149. [
  39150. {
  39151. name: "Normal",
  39152. height: math.unit(16, "feet"),
  39153. default: true
  39154. },
  39155. {
  39156. name: "Chicago Size",
  39157. height: math.unit(560, "feet")
  39158. },
  39159. ]
  39160. ))
  39161. characterMakers.push(() => makeCharacter(
  39162. { name: "Lexor", species: ["dragon"], tags: ["anthro"] },
  39163. {
  39164. front: {
  39165. height: math.unit(11 + 6/12, "feet"),
  39166. weight: math.unit(1366, "lb"),
  39167. name: "Front",
  39168. image: {
  39169. source: "./media/characters/lexor/front.svg",
  39170. extra: 1560/1481,
  39171. bottom: 211/1771
  39172. }
  39173. },
  39174. back: {
  39175. height: math.unit(11 + 6/12, "feet"),
  39176. weight: math.unit(1366, "lb"),
  39177. name: "Back",
  39178. image: {
  39179. source: "./media/characters/lexor/back.svg",
  39180. extra: 1614/1533,
  39181. bottom: 76/1690
  39182. }
  39183. },
  39184. maw: {
  39185. height: math.unit(3, "feet"),
  39186. name: "Maw",
  39187. image: {
  39188. source: "./media/characters/lexor/maw.svg"
  39189. }
  39190. },
  39191. dick: {
  39192. height: math.unit(2.59, "feet"),
  39193. name: "Dick",
  39194. image: {
  39195. source: "./media/characters/lexor/dick.svg"
  39196. }
  39197. },
  39198. },
  39199. [
  39200. {
  39201. name: "Normal",
  39202. height: math.unit(11 + 6/12, "feet"),
  39203. default: true
  39204. },
  39205. ]
  39206. ))
  39207. characterMakers.push(() => makeCharacter(
  39208. { name: "Magnum", species: ["folf"], tags: ["anthro"] },
  39209. {
  39210. front: {
  39211. height: math.unit(5 + 8/12, "feet"),
  39212. name: "Front",
  39213. image: {
  39214. source: "./media/characters/magnum/front.svg",
  39215. extra: 942/855,
  39216. bottom: 26/968
  39217. }
  39218. },
  39219. },
  39220. [
  39221. {
  39222. name: "Normal",
  39223. height: math.unit(5 + 8/12, "feet"),
  39224. default: true
  39225. },
  39226. ]
  39227. ))
  39228. characterMakers.push(() => makeCharacter(
  39229. { name: "Solas Sharpsman", species: ["kitsune"], tags: ["anthro"] },
  39230. {
  39231. front: {
  39232. height: math.unit(18 + 4/12, "feet"),
  39233. weight: math.unit(1500, "kg"),
  39234. name: "Front",
  39235. image: {
  39236. source: "./media/characters/solas-sharpsman/front.svg",
  39237. extra: 1698/1589,
  39238. bottom: 0/1698
  39239. }
  39240. },
  39241. },
  39242. [
  39243. {
  39244. name: "Normal",
  39245. height: math.unit(18 + 4/12, "feet"),
  39246. default: true
  39247. },
  39248. ]
  39249. ))
  39250. characterMakers.push(() => makeCharacter(
  39251. { name: "October", species: ["tiger"], tags: ["anthro"] },
  39252. {
  39253. front: {
  39254. height: math.unit(5 + 5/12, "feet"),
  39255. weight: math.unit(180, "lb"),
  39256. name: "Front",
  39257. image: {
  39258. source: "./media/characters/october/front.svg",
  39259. extra: 1800/1650,
  39260. bottom: 0/1800
  39261. }
  39262. },
  39263. frontNsfw: {
  39264. height: math.unit(5 + 5/12, "feet"),
  39265. weight: math.unit(180, "lb"),
  39266. name: "Front (NSFW)",
  39267. image: {
  39268. source: "./media/characters/october/front-nsfw.svg",
  39269. extra: 1392/1307,
  39270. bottom: 42/1434
  39271. }
  39272. },
  39273. },
  39274. [
  39275. {
  39276. name: "Normal",
  39277. height: math.unit(5 + 5/12, "feet"),
  39278. default: true
  39279. },
  39280. ]
  39281. ))
  39282. characterMakers.push(() => makeCharacter(
  39283. { name: "Essynkardi", species: ["dragon"], tags: ["anthro"] },
  39284. {
  39285. front: {
  39286. height: math.unit(8 + 6/12, "feet"),
  39287. name: "Front",
  39288. image: {
  39289. source: "./media/characters/essynkardi/front.svg",
  39290. extra: 1541/1457,
  39291. bottom: 47/1588
  39292. }
  39293. },
  39294. },
  39295. [
  39296. {
  39297. name: "Normal",
  39298. height: math.unit(8 + 6/12, "feet"),
  39299. default: true
  39300. },
  39301. ]
  39302. ))
  39303. characterMakers.push(() => makeCharacter(
  39304. { name: "Icky", species: ["raven", "pooltoy"], tags: ["anthro"] },
  39305. {
  39306. front: {
  39307. height: math.unit(6 + 6/12, "feet"),
  39308. weight: math.unit(7, "lb"),
  39309. name: "Front",
  39310. image: {
  39311. source: "./media/characters/icky/front.svg",
  39312. extra: 813/782,
  39313. bottom: 66/879
  39314. }
  39315. },
  39316. back: {
  39317. height: math.unit(6 + 6/12, "feet"),
  39318. weight: math.unit(7, "lb"),
  39319. name: "Back",
  39320. image: {
  39321. source: "./media/characters/icky/back.svg",
  39322. extra: 754/735,
  39323. bottom: 56/810
  39324. }
  39325. },
  39326. },
  39327. [
  39328. {
  39329. name: "Normal",
  39330. height: math.unit(6 + 6/12, "feet"),
  39331. default: true
  39332. },
  39333. ]
  39334. ))
  39335. characterMakers.push(() => makeCharacter(
  39336. { name: "Rojas", species: ["dragon", "human"], tags: ["anthro"] },
  39337. {
  39338. front: {
  39339. height: math.unit(15, "feet"),
  39340. name: "Front",
  39341. image: {
  39342. source: "./media/characters/rojas/front.svg",
  39343. extra: 1462/1408,
  39344. bottom: 95/1557
  39345. }
  39346. },
  39347. back: {
  39348. height: math.unit(15, "feet"),
  39349. name: "Back",
  39350. image: {
  39351. source: "./media/characters/rojas/back.svg",
  39352. extra: 1023/954,
  39353. bottom: 28/1051
  39354. }
  39355. },
  39356. },
  39357. [
  39358. {
  39359. name: "Normal",
  39360. height: math.unit(15, "feet"),
  39361. default: true
  39362. },
  39363. ]
  39364. ))
  39365. characterMakers.push(() => makeCharacter(
  39366. { name: "Alek Dryagan", species: ["sea-monster", "human", "demi"], tags: ["anthro"] },
  39367. {
  39368. frontHuman: {
  39369. height: math.unit(5 + 7/12, "feet"),
  39370. name: "Front (Human)",
  39371. image: {
  39372. source: "./media/characters/alek-dryagan/front-human.svg",
  39373. extra: 1687/1667,
  39374. bottom: 69/1756
  39375. }
  39376. },
  39377. backHuman: {
  39378. height: math.unit(5 + 7/12, "feet"),
  39379. name: "Back (Human)",
  39380. image: {
  39381. source: "./media/characters/alek-dryagan/back-human.svg",
  39382. extra: 1670/1649,
  39383. bottom: 65/1735
  39384. }
  39385. },
  39386. frontDemi: {
  39387. height: math.unit(65, "feet"),
  39388. name: "Front (Demi)",
  39389. image: {
  39390. source: "./media/characters/alek-dryagan/front-demi.svg",
  39391. extra: 1669/1642,
  39392. bottom: 49/1718
  39393. }
  39394. },
  39395. backDemi: {
  39396. height: math.unit(65, "feet"),
  39397. name: "Back (Demi)",
  39398. image: {
  39399. source: "./media/characters/alek-dryagan/back-demi.svg",
  39400. extra: 1658/1637,
  39401. bottom: 40/1698
  39402. }
  39403. },
  39404. mawHuman: {
  39405. height: math.unit(0.3, "feet"),
  39406. name: "Maw (Human)",
  39407. image: {
  39408. source: "./media/characters/alek-dryagan/maw-human.svg"
  39409. }
  39410. },
  39411. mawDemi: {
  39412. height: math.unit(3.8, "feet"),
  39413. name: "Maw (Demi)",
  39414. image: {
  39415. source: "./media/characters/alek-dryagan/maw-demi.svg"
  39416. }
  39417. },
  39418. },
  39419. [
  39420. {
  39421. name: "Normal",
  39422. height: math.unit(5 + 7/12, "feet"),
  39423. default: true
  39424. },
  39425. ]
  39426. ))
  39427. characterMakers.push(() => makeCharacter(
  39428. { name: "Gen", species: ["cat", "human", "demi"], tags: ["anthro"] },
  39429. {
  39430. frontHuman: {
  39431. height: math.unit(5 + 2/12, "feet"),
  39432. name: "Front (Human)",
  39433. image: {
  39434. source: "./media/characters/gen/front-human.svg",
  39435. extra: 1627/1538,
  39436. bottom: 71/1698
  39437. }
  39438. },
  39439. backHuman: {
  39440. height: math.unit(5 + 2/12, "feet"),
  39441. name: "Back (Human)",
  39442. image: {
  39443. source: "./media/characters/gen/back-human.svg",
  39444. extra: 1638/1548,
  39445. bottom: 69/1707
  39446. }
  39447. },
  39448. frontDemi: {
  39449. height: math.unit(5 + 2/12, "feet"),
  39450. name: "Front (Demi)",
  39451. image: {
  39452. source: "./media/characters/gen/front-demi.svg",
  39453. extra: 1627/1538,
  39454. bottom: 71/1698
  39455. }
  39456. },
  39457. backDemi: {
  39458. height: math.unit(5 + 2/12, "feet"),
  39459. name: "Back (Demi)",
  39460. image: {
  39461. source: "./media/characters/gen/back-demi.svg",
  39462. extra: 1638/1548,
  39463. bottom: 69/1707
  39464. }
  39465. },
  39466. },
  39467. [
  39468. {
  39469. name: "Normal",
  39470. height: math.unit(5 + 2/12, "feet"),
  39471. default: true
  39472. },
  39473. ]
  39474. ))
  39475. characterMakers.push(() => makeCharacter(
  39476. { name: "Max Kobold", species: ["imp", "human", "demi"], tags: ["anthro"] },
  39477. {
  39478. frontImp: {
  39479. height: math.unit(1 + 11/12, "feet"),
  39480. name: "Front (Imp)",
  39481. image: {
  39482. source: "./media/characters/max-kobold/front-imp.svg",
  39483. extra: 1238/1134,
  39484. bottom: 81/1319
  39485. }
  39486. },
  39487. backImp: {
  39488. height: math.unit(1 + 11/12, "feet"),
  39489. name: "Back (Imp)",
  39490. image: {
  39491. source: "./media/characters/max-kobold/back-imp.svg",
  39492. extra: 1334/1175,
  39493. bottom: 34/1368
  39494. }
  39495. },
  39496. frontDemi: {
  39497. height: math.unit(5 + 9/12, "feet"),
  39498. name: "Front (Demi)",
  39499. image: {
  39500. source: "./media/characters/max-kobold/front-demi.svg",
  39501. extra: 1715/1685,
  39502. bottom: 54/1769
  39503. }
  39504. },
  39505. backDemi: {
  39506. height: math.unit(5 + 9/12, "feet"),
  39507. name: "Back (Demi)",
  39508. image: {
  39509. source: "./media/characters/max-kobold/back-demi.svg",
  39510. extra: 1752/1729,
  39511. bottom: 41/1793
  39512. }
  39513. },
  39514. handImp: {
  39515. height: math.unit(0.45, "feet"),
  39516. name: "Hand (Imp)",
  39517. image: {
  39518. source: "./media/characters/max-kobold/hand.svg"
  39519. }
  39520. },
  39521. pawImp: {
  39522. height: math.unit(0.46, "feet"),
  39523. name: "Paw (Imp)",
  39524. image: {
  39525. source: "./media/characters/max-kobold/paw.svg"
  39526. }
  39527. },
  39528. handDemi: {
  39529. height: math.unit(0.80, "feet"),
  39530. name: "Hand (Demi)",
  39531. image: {
  39532. source: "./media/characters/max-kobold/hand.svg"
  39533. }
  39534. },
  39535. pawDemi: {
  39536. height: math.unit(1.1, "feet"),
  39537. name: "Paw (Demi)",
  39538. image: {
  39539. source: "./media/characters/max-kobold/paw.svg"
  39540. }
  39541. },
  39542. headImp: {
  39543. height: math.unit(1.33, "feet"),
  39544. name: "Head (Imp)",
  39545. image: {
  39546. source: "./media/characters/max-kobold/head-imp.svg"
  39547. }
  39548. },
  39549. mawImp: {
  39550. height: math.unit(0.75, "feet"),
  39551. name: "Maw (Imp)",
  39552. image: {
  39553. source: "./media/characters/max-kobold/maw-imp.svg"
  39554. }
  39555. },
  39556. mawDemi: {
  39557. height: math.unit(0.42, "feet"),
  39558. name: "Maw (Demi)",
  39559. image: {
  39560. source: "./media/characters/max-kobold/maw-demi.svg"
  39561. }
  39562. },
  39563. },
  39564. [
  39565. {
  39566. name: "Normal",
  39567. height: math.unit(1 + 11/12, "feet"),
  39568. default: true
  39569. },
  39570. ]
  39571. ))
  39572. characterMakers.push(() => makeCharacter(
  39573. { name: "Carbon", species: ["charizard", "demi"], tags: ["anthro"] },
  39574. {
  39575. front: {
  39576. height: math.unit(7 + 5/12, "feet"),
  39577. name: "Front",
  39578. image: {
  39579. source: "./media/characters/carbon/front.svg",
  39580. extra: 1754/1689,
  39581. bottom: 65/1819
  39582. }
  39583. },
  39584. back: {
  39585. height: math.unit(7 + 5/12, "feet"),
  39586. name: "Back",
  39587. image: {
  39588. source: "./media/characters/carbon/back.svg",
  39589. extra: 1762/1695,
  39590. bottom: 24/1786
  39591. }
  39592. },
  39593. frontGigantamax: {
  39594. height: math.unit(150, "feet"),
  39595. name: "Front (Gigantamax)",
  39596. image: {
  39597. source: "./media/characters/carbon/front-gigantamax.svg",
  39598. extra: 1826/1669,
  39599. bottom: 59/1885
  39600. }
  39601. },
  39602. backGigantamax: {
  39603. height: math.unit(150, "feet"),
  39604. name: "Back (Gigantamax)",
  39605. image: {
  39606. source: "./media/characters/carbon/back-gigantamax.svg",
  39607. extra: 1796/1653,
  39608. bottom: 53/1849
  39609. }
  39610. },
  39611. maw: {
  39612. height: math.unit(0.48, "feet"),
  39613. name: "Maw",
  39614. image: {
  39615. source: "./media/characters/carbon/maw.svg"
  39616. }
  39617. },
  39618. mawGigantamax: {
  39619. height: math.unit(7.5, "feet"),
  39620. name: "Maw (Gigantamax)",
  39621. image: {
  39622. source: "./media/characters/carbon/maw-gigantamax.svg"
  39623. }
  39624. },
  39625. },
  39626. [
  39627. {
  39628. name: "Normal",
  39629. height: math.unit(7 + 5/12, "feet"),
  39630. default: true
  39631. },
  39632. ]
  39633. ))
  39634. characterMakers.push(() => makeCharacter(
  39635. { name: "Maverick", species: ["salazzle", "demi"], tags: ["anthro"] },
  39636. {
  39637. front: {
  39638. height: math.unit(6, "feet"),
  39639. name: "Front",
  39640. image: {
  39641. source: "./media/characters/maverick/front.svg",
  39642. extra: 1672/1661,
  39643. bottom: 85/1757
  39644. }
  39645. },
  39646. back: {
  39647. height: math.unit(6, "feet"),
  39648. name: "Back",
  39649. image: {
  39650. source: "./media/characters/maverick/back.svg",
  39651. extra: 1642/1631,
  39652. bottom: 38/1680
  39653. }
  39654. },
  39655. },
  39656. [
  39657. {
  39658. name: "Normal",
  39659. height: math.unit(6, "feet"),
  39660. default: true
  39661. },
  39662. ]
  39663. ))
  39664. characterMakers.push(() => makeCharacter(
  39665. { name: "Grockle", species: ["stegosaurus"], tags: ["anthro"] },
  39666. {
  39667. front: {
  39668. height: math.unit(15, "feet"),
  39669. weight: math.unit(615, "lb"),
  39670. name: "Front",
  39671. image: {
  39672. source: "./media/characters/grockle/front.svg",
  39673. extra: 1535/1427,
  39674. bottom: 56/1591
  39675. }
  39676. },
  39677. },
  39678. [
  39679. {
  39680. name: "Normal",
  39681. height: math.unit(15, "feet"),
  39682. default: true
  39683. },
  39684. {
  39685. name: "Large",
  39686. height: math.unit(150, "feet")
  39687. },
  39688. {
  39689. name: "Macro",
  39690. height: math.unit(1876, "feet")
  39691. },
  39692. {
  39693. name: "Mega Macro",
  39694. height: math.unit(121940, "feet")
  39695. },
  39696. {
  39697. name: "Giga Macro",
  39698. height: math.unit(750, "km")
  39699. },
  39700. {
  39701. name: "Tera Macro",
  39702. height: math.unit(750000, "km")
  39703. },
  39704. {
  39705. name: "Galactic",
  39706. height: math.unit(1.4e5, "km")
  39707. },
  39708. {
  39709. name: "Godlike",
  39710. height: math.unit(9.8e280, "galaxies")
  39711. },
  39712. ]
  39713. ))
  39714. characterMakers.push(() => makeCharacter(
  39715. { name: "Alistair", species: ["dragon"], tags: ["anthro"] },
  39716. {
  39717. front: {
  39718. height: math.unit(11, "meters"),
  39719. weight: math.unit(20, "tonnes"),
  39720. name: "Front",
  39721. image: {
  39722. source: "./media/characters/alistair/front.svg",
  39723. extra: 1265/1009,
  39724. bottom: 93/1358
  39725. }
  39726. },
  39727. },
  39728. [
  39729. {
  39730. name: "Normal",
  39731. height: math.unit(11, "meters"),
  39732. default: true
  39733. },
  39734. ]
  39735. ))
  39736. characterMakers.push(() => makeCharacter(
  39737. { name: "Haruka", species: ["raptor"], tags: ["anthro"] },
  39738. {
  39739. front: {
  39740. height: math.unit(5 + 8/12, "feet"),
  39741. name: "Front",
  39742. image: {
  39743. source: "./media/characters/haruka/front.svg",
  39744. extra: 2012/1952,
  39745. bottom: 0/2012
  39746. }
  39747. },
  39748. },
  39749. [
  39750. {
  39751. name: "Normal",
  39752. height: math.unit(5 + 8/12, "feet"),
  39753. default: true
  39754. },
  39755. ]
  39756. ))
  39757. characterMakers.push(() => makeCharacter(
  39758. { name: "Vivian Sylveon", species: ["sylveon", "computer-virus"], tags: ["anthro"] },
  39759. {
  39760. back: {
  39761. height: math.unit(9, "feet"),
  39762. name: "Back",
  39763. image: {
  39764. source: "./media/characters/vivian-sylveon/back.svg",
  39765. extra: 1853/1714,
  39766. bottom: 0/1853
  39767. }
  39768. },
  39769. hyper: {
  39770. height: math.unit(5.58, "feet"),
  39771. name: "Hyper",
  39772. preyCapacity: math.unit(2.80616218797, "m^3"),
  39773. image: {
  39774. source: "./media/characters/vivian-sylveon/hyper.svg",
  39775. extra: 999/676,
  39776. bottom: 697/1696
  39777. },
  39778. },
  39779. paw: {
  39780. height: math.unit(1.8, "feet"),
  39781. name: "Paw",
  39782. image: {
  39783. source: "./media/characters/vivian-sylveon/paw.svg"
  39784. }
  39785. },
  39786. danger: {
  39787. height: math.unit(7.5, "feet"),
  39788. name: "DANGER",
  39789. image: {
  39790. source: "./media/characters/vivian-sylveon/danger.svg"
  39791. }
  39792. },
  39793. },
  39794. [
  39795. {
  39796. name: "Normal",
  39797. height: math.unit(9, "feet"),
  39798. default: true
  39799. },
  39800. {
  39801. name: "Macro",
  39802. height: math.unit(500, "feet")
  39803. },
  39804. {
  39805. name: "Megamacro",
  39806. height: math.unit(600, "miles")
  39807. },
  39808. {
  39809. name: "Gigamacro",
  39810. height: math.unit(30000, "miles")
  39811. },
  39812. ]
  39813. ))
  39814. characterMakers.push(() => makeCharacter(
  39815. { name: "Daiki", species: ["bat", "dragon"], tags: ["anthro" ,"feral"] },
  39816. {
  39817. anthro: {
  39818. height: math.unit(5 + 10/12, "feet"),
  39819. weight: math.unit(100, "lb"),
  39820. name: "Anthro",
  39821. image: {
  39822. source: "./media/characters/daiki/anthro.svg",
  39823. extra: 1115/1027,
  39824. bottom: 69/1184
  39825. }
  39826. },
  39827. feral: {
  39828. height: math.unit(200, "feet"),
  39829. name: "Feral",
  39830. image: {
  39831. source: "./media/characters/daiki/feral.svg",
  39832. extra: 1256/313,
  39833. bottom: 39/1295
  39834. }
  39835. },
  39836. feralHead: {
  39837. height: math.unit(171, "feet"),
  39838. name: "Feral Head",
  39839. image: {
  39840. source: "./media/characters/daiki/feral-head.svg"
  39841. }
  39842. },
  39843. manaDragon: {
  39844. height: math.unit(170, "meters"),
  39845. name: "Mana-dragon",
  39846. image: {
  39847. source: "./media/characters/daiki/mana-dragon.svg",
  39848. extra: 763/420,
  39849. bottom: 97/860
  39850. }
  39851. },
  39852. },
  39853. [
  39854. {
  39855. name: "Normal",
  39856. height: math.unit(5 + 10/12, "feet"),
  39857. default: true
  39858. },
  39859. ]
  39860. ))
  39861. characterMakers.push(() => makeCharacter(
  39862. { name: "Tea Spot", species: ["space-springhare"], tags: ["anthro"] },
  39863. {
  39864. fullyEquippedFront: {
  39865. height: math.unit(3 + 1/12, "feet"),
  39866. weight: math.unit(24, "lb"),
  39867. name: "Fully Equipped (Front)",
  39868. image: {
  39869. source: "./media/characters/tea-spot/fully-equipped-front.svg",
  39870. extra: 687/605,
  39871. bottom: 18/705
  39872. }
  39873. },
  39874. fullyEquippedBack: {
  39875. height: math.unit(3 + 1/12, "feet"),
  39876. weight: math.unit(24, "lb"),
  39877. name: "Fully Equipped (Back)",
  39878. image: {
  39879. source: "./media/characters/tea-spot/fully-equipped-back.svg",
  39880. extra: 689/590,
  39881. bottom: 18/707
  39882. }
  39883. },
  39884. dailyWear: {
  39885. height: math.unit(3 + 1/12, "feet"),
  39886. weight: math.unit(24, "lb"),
  39887. name: "Daily Wear",
  39888. image: {
  39889. source: "./media/characters/tea-spot/daily-wear.svg",
  39890. extra: 701/620,
  39891. bottom: 21/722
  39892. }
  39893. },
  39894. maidWork: {
  39895. height: math.unit(3 + 1/12, "feet"),
  39896. weight: math.unit(24, "lb"),
  39897. name: "Maid Work",
  39898. image: {
  39899. source: "./media/characters/tea-spot/maid-work.svg",
  39900. extra: 693/609,
  39901. bottom: 15/708
  39902. }
  39903. },
  39904. },
  39905. [
  39906. {
  39907. name: "Normal",
  39908. height: math.unit(3 + 1/12, "feet"),
  39909. default: true
  39910. },
  39911. ]
  39912. ))
  39913. characterMakers.push(() => makeCharacter(
  39914. { name: "Chee", species: ["cheetah"], tags: ["anthro"] },
  39915. {
  39916. front: {
  39917. height: math.unit(175, "cm"),
  39918. weight: math.unit(75, "kg"),
  39919. name: "Front",
  39920. image: {
  39921. source: "./media/characters/chee/front.svg",
  39922. extra: 1796/1740,
  39923. bottom: 40/1836
  39924. }
  39925. },
  39926. },
  39927. [
  39928. {
  39929. name: "Micro-Micro",
  39930. height: math.unit(1, "nm")
  39931. },
  39932. {
  39933. name: "Micro-erst",
  39934. height: math.unit(1, "micrometer")
  39935. },
  39936. {
  39937. name: "Micro-er",
  39938. height: math.unit(1, "cm")
  39939. },
  39940. {
  39941. name: "Normal",
  39942. height: math.unit(175, "cm"),
  39943. default: true
  39944. },
  39945. {
  39946. name: "Macro",
  39947. height: math.unit(100, "m")
  39948. },
  39949. {
  39950. name: "Macro-er",
  39951. height: math.unit(1, "km")
  39952. },
  39953. {
  39954. name: "Macro-erst",
  39955. height: math.unit(10, "km")
  39956. },
  39957. {
  39958. name: "Macro-Macro",
  39959. height: math.unit(100, "km")
  39960. },
  39961. ]
  39962. ))
  39963. characterMakers.push(() => makeCharacter(
  39964. { name: "Kingsley", species: ["dragon"], tags: ["anthro"] },
  39965. {
  39966. front: {
  39967. height: math.unit(11 + 9/12, "feet"),
  39968. weight: math.unit(935, "lb"),
  39969. name: "Front",
  39970. image: {
  39971. source: "./media/characters/kingsley/front.svg",
  39972. extra: 1803/1674,
  39973. bottom: 127/1930
  39974. }
  39975. },
  39976. frontNude: {
  39977. height: math.unit(11 + 9/12, "feet"),
  39978. weight: math.unit(935, "lb"),
  39979. name: "Front (Nude)",
  39980. image: {
  39981. source: "./media/characters/kingsley/front-nude.svg",
  39982. extra: 1803/1674,
  39983. bottom: 127/1930
  39984. }
  39985. },
  39986. },
  39987. [
  39988. {
  39989. name: "Normal",
  39990. height: math.unit(11 + 9/12, "feet"),
  39991. default: true
  39992. },
  39993. ]
  39994. ))
  39995. characterMakers.push(() => makeCharacter(
  39996. { name: "Rymel", species: ["river-drake"], tags: ["feral"] },
  39997. {
  39998. side: {
  39999. height: math.unit(9, "feet"),
  40000. name: "Side",
  40001. image: {
  40002. source: "./media/characters/rymel/side.svg",
  40003. extra: 792/469,
  40004. bottom: 121/913
  40005. }
  40006. },
  40007. maw: {
  40008. height: math.unit(2.4, "meters"),
  40009. name: "Maw",
  40010. image: {
  40011. source: "./media/characters/rymel/maw.svg"
  40012. }
  40013. },
  40014. },
  40015. [
  40016. {
  40017. name: "House Drake",
  40018. height: math.unit(2, "feet")
  40019. },
  40020. {
  40021. name: "Reduced",
  40022. height: math.unit(4.5, "feet")
  40023. },
  40024. {
  40025. name: "Normal",
  40026. height: math.unit(9, "feet"),
  40027. default: true
  40028. },
  40029. ]
  40030. ))
  40031. characterMakers.push(() => makeCharacter(
  40032. { name: "Rubus", species: ["plant", "dragon", "construct"], tags: ["anthro"] },
  40033. {
  40034. front: {
  40035. height: math.unit(1.74, "meters"),
  40036. weight: math.unit(55, "kg"),
  40037. name: "Front",
  40038. image: {
  40039. source: "./media/characters/rubus/front.svg",
  40040. extra: 1894/1742,
  40041. bottom: 44/1938
  40042. }
  40043. },
  40044. },
  40045. [
  40046. {
  40047. name: "Normal",
  40048. height: math.unit(1.74, "meters"),
  40049. default: true
  40050. },
  40051. ]
  40052. ))
  40053. characterMakers.push(() => makeCharacter(
  40054. { name: "Cassie Kingston", species: ["border-collie"], tags: ["anthro"] },
  40055. {
  40056. front: {
  40057. height: math.unit(5 + 2/12, "feet"),
  40058. weight: math.unit(112, "lb"),
  40059. name: "Front",
  40060. image: {
  40061. source: "./media/characters/cassie-kingston/front.svg",
  40062. extra: 1438/1390,
  40063. bottom: 47/1485
  40064. }
  40065. },
  40066. },
  40067. [
  40068. {
  40069. name: "Normal",
  40070. height: math.unit(5 + 2/12, "feet"),
  40071. default: true
  40072. },
  40073. {
  40074. name: "Macro",
  40075. height: math.unit(128, "feet")
  40076. },
  40077. {
  40078. name: "Megamacro",
  40079. height: math.unit(2.56, "miles")
  40080. },
  40081. ]
  40082. ))
  40083. characterMakers.push(() => makeCharacter(
  40084. { name: "Fox", species: ["fox"], tags: ["anthro"] },
  40085. {
  40086. front: {
  40087. height: math.unit(7, "feet"),
  40088. name: "Front",
  40089. image: {
  40090. source: "./media/characters/fox/front.svg",
  40091. extra: 1798/1703,
  40092. bottom: 55/1853
  40093. }
  40094. },
  40095. back: {
  40096. height: math.unit(7, "feet"),
  40097. name: "Back",
  40098. image: {
  40099. source: "./media/characters/fox/back.svg",
  40100. extra: 1748/1649,
  40101. bottom: 32/1780
  40102. }
  40103. },
  40104. head: {
  40105. height: math.unit(1.95, "feet"),
  40106. name: "Head",
  40107. image: {
  40108. source: "./media/characters/fox/head.svg"
  40109. }
  40110. },
  40111. dick: {
  40112. height: math.unit(1.33, "feet"),
  40113. name: "Dick",
  40114. image: {
  40115. source: "./media/characters/fox/dick.svg"
  40116. }
  40117. },
  40118. foot: {
  40119. height: math.unit(1, "feet"),
  40120. name: "Foot",
  40121. image: {
  40122. source: "./media/characters/fox/foot.svg"
  40123. }
  40124. },
  40125. paw: {
  40126. height: math.unit(0.92, "feet"),
  40127. name: "Paw",
  40128. image: {
  40129. source: "./media/characters/fox/paw.svg"
  40130. }
  40131. },
  40132. },
  40133. [
  40134. {
  40135. name: "Small",
  40136. height: math.unit(3, "inches")
  40137. },
  40138. {
  40139. name: "\"Realistic\"",
  40140. height: math.unit(7, "feet")
  40141. },
  40142. {
  40143. name: "Normal",
  40144. height: math.unit(150, "feet"),
  40145. default: true
  40146. },
  40147. {
  40148. name: "BIG",
  40149. height: math.unit(1200, "feet")
  40150. },
  40151. {
  40152. name: "👀",
  40153. height: math.unit(5, "miles")
  40154. },
  40155. {
  40156. name: "👀👀👀",
  40157. height: math.unit(64, "miles")
  40158. },
  40159. ]
  40160. ))
  40161. characterMakers.push(() => makeCharacter(
  40162. { name: "Asonja Rossa", species: ["wolf", "dragon"], tags: ["anthro"] },
  40163. {
  40164. front: {
  40165. height: math.unit(625, "feet"),
  40166. name: "Front",
  40167. image: {
  40168. source: "./media/characters/asonja-rossa/front.svg",
  40169. extra: 1833/1686,
  40170. bottom: 24/1857
  40171. }
  40172. },
  40173. back: {
  40174. height: math.unit(625, "feet"),
  40175. name: "Back",
  40176. image: {
  40177. source: "./media/characters/asonja-rossa/back.svg",
  40178. extra: 1852/1753,
  40179. bottom: 26/1878
  40180. }
  40181. },
  40182. },
  40183. [
  40184. {
  40185. name: "Macro",
  40186. height: math.unit(625, "feet"),
  40187. default: true
  40188. },
  40189. ]
  40190. ))
  40191. characterMakers.push(() => makeCharacter(
  40192. { name: "Rezukii", species: ["dragon"], tags: ["feral"] },
  40193. {
  40194. side: {
  40195. height: math.unit(8, "feet"),
  40196. name: "Side",
  40197. image: {
  40198. source: "./media/characters/rezukii/side.svg",
  40199. extra: 979/542,
  40200. bottom: 87/1066
  40201. }
  40202. },
  40203. sitting: {
  40204. height: math.unit(14.6, "feet"),
  40205. name: "Sitting",
  40206. image: {
  40207. source: "./media/characters/rezukii/sitting.svg",
  40208. extra: 1023/813,
  40209. bottom: 45/1068
  40210. }
  40211. },
  40212. },
  40213. [
  40214. {
  40215. name: "Tiny",
  40216. height: math.unit(2, "feet")
  40217. },
  40218. {
  40219. name: "Smol",
  40220. height: math.unit(4, "feet")
  40221. },
  40222. {
  40223. name: "Normal",
  40224. height: math.unit(8, "feet"),
  40225. default: true
  40226. },
  40227. {
  40228. name: "Big",
  40229. height: math.unit(12, "feet")
  40230. },
  40231. {
  40232. name: "Macro",
  40233. height: math.unit(30, "feet")
  40234. },
  40235. ]
  40236. ))
  40237. characterMakers.push(() => makeCharacter(
  40238. { name: "Dawnheart", species: ["horse"], tags: ["anthro"] },
  40239. {
  40240. front: {
  40241. height: math.unit(14, "feet"),
  40242. weight: math.unit(9.5, "tonnes"),
  40243. name: "Front",
  40244. image: {
  40245. source: "./media/characters/dawnheart/front.svg",
  40246. extra: 2792/2675,
  40247. bottom: 64/2856
  40248. }
  40249. },
  40250. },
  40251. [
  40252. {
  40253. name: "Normal",
  40254. height: math.unit(14, "feet"),
  40255. default: true
  40256. },
  40257. ]
  40258. ))
  40259. characterMakers.push(() => makeCharacter(
  40260. { name: "Gladi", species: ["cat" ,"dragon"], tags: ["anthro", "feral"] },
  40261. {
  40262. front: {
  40263. height: math.unit(1.7, "m"),
  40264. name: "Front",
  40265. image: {
  40266. source: "./media/characters/gladi/front.svg",
  40267. extra: 1460/1362,
  40268. bottom: 19/1479
  40269. }
  40270. },
  40271. back: {
  40272. height: math.unit(1.7, "m"),
  40273. name: "Back",
  40274. image: {
  40275. source: "./media/characters/gladi/back.svg",
  40276. extra: 1459/1357,
  40277. bottom: 12/1471
  40278. }
  40279. },
  40280. feral: {
  40281. height: math.unit(2.05, "m"),
  40282. name: "Feral",
  40283. image: {
  40284. source: "./media/characters/gladi/feral.svg",
  40285. extra: 821/557,
  40286. bottom: 91/912
  40287. }
  40288. },
  40289. },
  40290. [
  40291. {
  40292. name: "Shortest",
  40293. height: math.unit(70, "cm")
  40294. },
  40295. {
  40296. name: "Normal",
  40297. height: math.unit(1.7, "m")
  40298. },
  40299. {
  40300. name: "Macro",
  40301. height: math.unit(10, "m"),
  40302. default: true
  40303. },
  40304. {
  40305. name: "Tallest",
  40306. height: math.unit(200, "m")
  40307. },
  40308. ]
  40309. ))
  40310. characterMakers.push(() => makeCharacter(
  40311. { name: "Erdno", species: ["mouse", "djinn"], tags: ["anthro"] },
  40312. {
  40313. front: {
  40314. height: math.unit(5 + 7/12, "feet"),
  40315. weight: math.unit(2, "tons"),
  40316. name: "Front",
  40317. image: {
  40318. source: "./media/characters/erdno/front.svg",
  40319. extra: 1234/1129,
  40320. bottom: 35/1269
  40321. }
  40322. },
  40323. angled: {
  40324. height: math.unit(5 + 7/12, "feet"),
  40325. weight: math.unit(2, "tons"),
  40326. name: "Angled",
  40327. image: {
  40328. source: "./media/characters/erdno/angled.svg",
  40329. extra: 1185/1139,
  40330. bottom: 36/1221
  40331. }
  40332. },
  40333. side: {
  40334. height: math.unit(5 + 7/12, "feet"),
  40335. weight: math.unit(2, "tons"),
  40336. name: "Side",
  40337. image: {
  40338. source: "./media/characters/erdno/side.svg",
  40339. extra: 1191/1144,
  40340. bottom: 40/1231
  40341. }
  40342. },
  40343. back: {
  40344. height: math.unit(5 + 7/12, "feet"),
  40345. weight: math.unit(2, "tons"),
  40346. name: "Back",
  40347. image: {
  40348. source: "./media/characters/erdno/back.svg",
  40349. extra: 1202/1146,
  40350. bottom: 17/1219
  40351. }
  40352. },
  40353. frontNsfw: {
  40354. height: math.unit(5 + 7/12, "feet"),
  40355. weight: math.unit(2, "tons"),
  40356. name: "Front (NSFW)",
  40357. image: {
  40358. source: "./media/characters/erdno/front-nsfw.svg",
  40359. extra: 1234/1129,
  40360. bottom: 35/1269
  40361. }
  40362. },
  40363. angledNsfw: {
  40364. height: math.unit(5 + 7/12, "feet"),
  40365. weight: math.unit(2, "tons"),
  40366. name: "Angled (NSFW)",
  40367. image: {
  40368. source: "./media/characters/erdno/angled-nsfw.svg",
  40369. extra: 1185/1139,
  40370. bottom: 36/1221
  40371. }
  40372. },
  40373. sideNsfw: {
  40374. height: math.unit(5 + 7/12, "feet"),
  40375. weight: math.unit(2, "tons"),
  40376. name: "Side (NSFW)",
  40377. image: {
  40378. source: "./media/characters/erdno/side-nsfw.svg",
  40379. extra: 1191/1144,
  40380. bottom: 40/1231
  40381. }
  40382. },
  40383. backNsfw: {
  40384. height: math.unit(5 + 7/12, "feet"),
  40385. weight: math.unit(2, "tons"),
  40386. name: "Back (NSFW)",
  40387. image: {
  40388. source: "./media/characters/erdno/back-nsfw.svg",
  40389. extra: 1202/1146,
  40390. bottom: 17/1219
  40391. }
  40392. },
  40393. frontHyper: {
  40394. height: math.unit(5 + 7/12, "feet"),
  40395. weight: math.unit(2, "tons"),
  40396. name: "Front (Hyper)",
  40397. image: {
  40398. source: "./media/characters/erdno/front-hyper.svg",
  40399. extra: 1298/1136,
  40400. bottom: 35/1333
  40401. }
  40402. },
  40403. },
  40404. [
  40405. {
  40406. name: "Normal",
  40407. height: math.unit(5 + 7/12, "feet"),
  40408. default: true
  40409. },
  40410. {
  40411. name: "Big",
  40412. height: math.unit(5.7, "meters")
  40413. },
  40414. {
  40415. name: "Macro",
  40416. height: math.unit(5.7, "kilometers")
  40417. },
  40418. {
  40419. name: "Megamacro",
  40420. height: math.unit(5.7, "earths")
  40421. },
  40422. ]
  40423. ))
  40424. characterMakers.push(() => makeCharacter(
  40425. { name: "Jamie", species: ["fox"], tags: ["anthro"] },
  40426. {
  40427. front: {
  40428. height: math.unit(5 + 10/12, "feet"),
  40429. weight: math.unit(150, "lb"),
  40430. name: "Front",
  40431. image: {
  40432. source: "./media/characters/jamie/front.svg",
  40433. extra: 1908/1768,
  40434. bottom: 19/1927
  40435. }
  40436. },
  40437. },
  40438. [
  40439. {
  40440. name: "Minimum",
  40441. height: math.unit(2, "cm")
  40442. },
  40443. {
  40444. name: "Micro",
  40445. height: math.unit(3, "inches")
  40446. },
  40447. {
  40448. name: "Normal",
  40449. height: math.unit(5 + 10/12, "feet"),
  40450. default: true
  40451. },
  40452. {
  40453. name: "Macro",
  40454. height: math.unit(150, "feet")
  40455. },
  40456. {
  40457. name: "Megamacro",
  40458. height: math.unit(10000, "m")
  40459. },
  40460. ]
  40461. ))
  40462. characterMakers.push(() => makeCharacter(
  40463. { name: "Shiron", species: ["wolf"], tags: ["anthro"] },
  40464. {
  40465. front: {
  40466. height: math.unit(2, "meters"),
  40467. weight: math.unit(100, "kg"),
  40468. name: "Front",
  40469. image: {
  40470. source: "./media/characters/shiron/front.svg",
  40471. extra: 2103/1985,
  40472. bottom: 98/2201
  40473. }
  40474. },
  40475. back: {
  40476. height: math.unit(2, "meters"),
  40477. weight: math.unit(100, "kg"),
  40478. name: "Back",
  40479. image: {
  40480. source: "./media/characters/shiron/back.svg",
  40481. extra: 2110/2015,
  40482. bottom: 89/2199
  40483. }
  40484. },
  40485. hand: {
  40486. height: math.unit(0.96, "feet"),
  40487. name: "Hand",
  40488. image: {
  40489. source: "./media/characters/shiron/hand.svg"
  40490. }
  40491. },
  40492. foot: {
  40493. height: math.unit(1.464, "feet"),
  40494. name: "Foot",
  40495. image: {
  40496. source: "./media/characters/shiron/foot.svg"
  40497. }
  40498. },
  40499. },
  40500. [
  40501. {
  40502. name: "Normal",
  40503. height: math.unit(2, "meters")
  40504. },
  40505. {
  40506. name: "Macro",
  40507. height: math.unit(500, "meters"),
  40508. default: true
  40509. },
  40510. {
  40511. name: "Megamacro",
  40512. height: math.unit(20, "km")
  40513. },
  40514. ]
  40515. ))
  40516. characterMakers.push(() => makeCharacter(
  40517. { name: "Sam", species: ["red-panda"], tags: ["anthro"] },
  40518. {
  40519. front: {
  40520. height: math.unit(6, "feet"),
  40521. name: "Front",
  40522. image: {
  40523. source: "./media/characters/sam/front.svg",
  40524. extra: 849/826,
  40525. bottom: 19/868
  40526. }
  40527. },
  40528. },
  40529. [
  40530. {
  40531. name: "Normal",
  40532. height: math.unit(6, "feet"),
  40533. default: true
  40534. },
  40535. ]
  40536. ))
  40537. characterMakers.push(() => makeCharacter(
  40538. { name: "Namori Kurogawa", species: ["fox"], tags: ["anthro"] },
  40539. {
  40540. front: {
  40541. height: math.unit(8 + 4/12, "feet"),
  40542. weight: math.unit(122, "kg"),
  40543. name: "Front",
  40544. image: {
  40545. source: "./media/characters/namori-kurogawa/front.svg",
  40546. extra: 1894/1576,
  40547. bottom: 34/1928
  40548. }
  40549. },
  40550. },
  40551. [
  40552. {
  40553. name: "Normal",
  40554. height: math.unit(8 + 4/12, "feet"),
  40555. default: true
  40556. },
  40557. ]
  40558. ))
  40559. characterMakers.push(() => makeCharacter(
  40560. { name: "Unmru", species: ["horse", "demon"], tags: ["anthro"] },
  40561. {
  40562. front: {
  40563. height: math.unit(9, "feet"),
  40564. weight: math.unit(621, "lb"),
  40565. name: "Front",
  40566. image: {
  40567. source: "./media/characters/unmru/front.svg",
  40568. extra: 1853/1747,
  40569. bottom: 73/1926
  40570. }
  40571. },
  40572. side: {
  40573. height: math.unit(9, "feet"),
  40574. weight: math.unit(621, "lb"),
  40575. name: "Side",
  40576. image: {
  40577. source: "./media/characters/unmru/side.svg",
  40578. extra: 1781/1671,
  40579. bottom: 127/1908
  40580. }
  40581. },
  40582. back: {
  40583. height: math.unit(9, "feet"),
  40584. weight: math.unit(621, "lb"),
  40585. name: "Back",
  40586. image: {
  40587. source: "./media/characters/unmru/back.svg",
  40588. extra: 1894/1765,
  40589. bottom: 75/1969
  40590. }
  40591. },
  40592. dick: {
  40593. height: math.unit(3, "feet"),
  40594. weight: math.unit(35, "lb"),
  40595. name: "Dick",
  40596. image: {
  40597. source: "./media/characters/unmru/dick.svg"
  40598. }
  40599. },
  40600. },
  40601. [
  40602. {
  40603. name: "Normal",
  40604. height: math.unit(9, "feet")
  40605. },
  40606. {
  40607. name: "Natural",
  40608. height: math.unit(27, "feet"),
  40609. default: true
  40610. },
  40611. {
  40612. name: "Giant",
  40613. height: math.unit(90, "feet")
  40614. },
  40615. {
  40616. name: "Kaiju",
  40617. height: math.unit(270, "feet")
  40618. },
  40619. {
  40620. name: "Macro",
  40621. height: math.unit(900, "feet")
  40622. },
  40623. {
  40624. name: "Macro+",
  40625. height: math.unit(2700, "feet")
  40626. },
  40627. {
  40628. name: "Megamacro",
  40629. height: math.unit(9000, "feet")
  40630. },
  40631. {
  40632. name: "City-Crushing",
  40633. height: math.unit(27000, "feet")
  40634. },
  40635. {
  40636. name: "Mountain-Mashing",
  40637. height: math.unit(90000, "feet")
  40638. },
  40639. {
  40640. name: "Earth-Eclipsing",
  40641. height: math.unit(2.7e8, "feet")
  40642. },
  40643. {
  40644. name: "Sol-Swallowing",
  40645. height: math.unit(9e10, "feet")
  40646. },
  40647. {
  40648. name: "Majoris-Munching",
  40649. height: math.unit(2.7e13, "feet")
  40650. },
  40651. ]
  40652. ))
  40653. characterMakers.push(() => makeCharacter(
  40654. { name: "Squeaks (Mouse)", species: ["grasshopper-mouse"], tags: ["feral"] },
  40655. {
  40656. front: {
  40657. height: math.unit(1, "inch"),
  40658. name: "Front",
  40659. image: {
  40660. source: "./media/characters/squeaks-mouse/front.svg",
  40661. extra: 352/308,
  40662. bottom: 25/377
  40663. }
  40664. },
  40665. },
  40666. [
  40667. {
  40668. name: "Micro",
  40669. height: math.unit(1, "inch"),
  40670. default: true
  40671. },
  40672. ]
  40673. ))
  40674. characterMakers.push(() => makeCharacter(
  40675. { name: "Sayko", species: ["dragon"], tags: ["feral"] },
  40676. {
  40677. side: {
  40678. height: math.unit(35, "feet"),
  40679. name: "Side",
  40680. image: {
  40681. source: "./media/characters/sayko/side.svg",
  40682. extra: 1697/1021,
  40683. bottom: 82/1779
  40684. }
  40685. },
  40686. head: {
  40687. height: math.unit(16, "feet"),
  40688. name: "Head",
  40689. image: {
  40690. source: "./media/characters/sayko/head.svg"
  40691. }
  40692. },
  40693. forepaw: {
  40694. height: math.unit(7.85, "feet"),
  40695. name: "Forepaw",
  40696. image: {
  40697. source: "./media/characters/sayko/forepaw.svg"
  40698. }
  40699. },
  40700. hindpaw: {
  40701. height: math.unit(8.8, "feet"),
  40702. name: "Hindpaw",
  40703. image: {
  40704. source: "./media/characters/sayko/hindpaw.svg"
  40705. }
  40706. },
  40707. },
  40708. [
  40709. {
  40710. name: "Normal",
  40711. height: math.unit(35, "feet"),
  40712. default: true
  40713. },
  40714. {
  40715. name: "Colossus",
  40716. height: math.unit(100, "meters")
  40717. },
  40718. {
  40719. name: "\"Small\" Deity",
  40720. height: math.unit(1, "km")
  40721. },
  40722. {
  40723. name: "\"Large\" Deity",
  40724. height: math.unit(15, "km")
  40725. },
  40726. ]
  40727. ))
  40728. characterMakers.push(() => makeCharacter(
  40729. { name: "Mukiro", species: ["somali-cat"], tags: ["anthro"] },
  40730. {
  40731. front: {
  40732. height: math.unit(6, "feet"),
  40733. weight: math.unit(250, "lb"),
  40734. name: "Front",
  40735. image: {
  40736. source: "./media/characters/mukiro/front.svg",
  40737. extra: 1368/1310,
  40738. bottom: 34/1402
  40739. }
  40740. },
  40741. },
  40742. [
  40743. {
  40744. name: "Normal",
  40745. height: math.unit(6, "feet"),
  40746. default: true
  40747. },
  40748. ]
  40749. ))
  40750. characterMakers.push(() => makeCharacter(
  40751. { name: "Zeph the Tiger God", species: ["deity"], tags: ["anthro"] },
  40752. {
  40753. front: {
  40754. height: math.unit(12 + 4/12, "feet"),
  40755. name: "Front",
  40756. image: {
  40757. source: "./media/characters/zeph-the-tiger-god/front.svg",
  40758. extra: 1346/1311,
  40759. bottom: 65/1411
  40760. }
  40761. },
  40762. },
  40763. [
  40764. {
  40765. name: "Base",
  40766. height: math.unit(12 + 4/12, "feet"),
  40767. default: true
  40768. },
  40769. {
  40770. name: "Macro",
  40771. height: math.unit(150, "feet")
  40772. },
  40773. {
  40774. name: "Mega",
  40775. height: math.unit(2, "miles")
  40776. },
  40777. {
  40778. name: "Demi God",
  40779. height: math.unit(4, "AU")
  40780. },
  40781. {
  40782. name: "God Size",
  40783. height: math.unit(1, "universe")
  40784. },
  40785. ]
  40786. ))
  40787. characterMakers.push(() => makeCharacter(
  40788. { name: "Trey", species: ["minccino"], tags: ["anthro"] },
  40789. {
  40790. front: {
  40791. height: math.unit(3 + 3/12, "feet"),
  40792. weight: math.unit(88, "lb"),
  40793. name: "Front",
  40794. image: {
  40795. source: "./media/characters/trey/front.svg",
  40796. extra: 1815/1509,
  40797. bottom: 60/1875
  40798. }
  40799. },
  40800. },
  40801. [
  40802. {
  40803. name: "Normal",
  40804. height: math.unit(3 + 3/12, "feet"),
  40805. default: true
  40806. },
  40807. ]
  40808. ))
  40809. characterMakers.push(() => makeCharacter(
  40810. { name: "Adelonda", species: ["dragon"], tags: ["anthro", "feral"] },
  40811. {
  40812. front: {
  40813. height: math.unit(4, "meters"),
  40814. name: "Front",
  40815. image: {
  40816. source: "./media/characters/adelonda/front.svg",
  40817. extra: 1077/982,
  40818. bottom: 39/1116
  40819. }
  40820. },
  40821. back: {
  40822. height: math.unit(4, "meters"),
  40823. name: "Back",
  40824. image: {
  40825. source: "./media/characters/adelonda/back.svg",
  40826. extra: 1105/1003,
  40827. bottom: 25/1130
  40828. }
  40829. },
  40830. feral: {
  40831. height: math.unit(40/1.5, "meters"),
  40832. name: "Feral",
  40833. image: {
  40834. source: "./media/characters/adelonda/feral.svg",
  40835. extra: 597/271,
  40836. bottom: 387/984
  40837. }
  40838. },
  40839. },
  40840. [
  40841. {
  40842. name: "Normal",
  40843. height: math.unit(4, "meters"),
  40844. default: true
  40845. },
  40846. ]
  40847. ))
  40848. characterMakers.push(() => makeCharacter(
  40849. { name: "Acadiel", species: ["dragon"], tags: ["anthro"] },
  40850. {
  40851. front: {
  40852. height: math.unit(8 + 4/12, "feet"),
  40853. weight: math.unit(670, "lb"),
  40854. name: "Front",
  40855. image: {
  40856. source: "./media/characters/acadiel/front.svg",
  40857. extra: 1901/1595,
  40858. bottom: 142/2043
  40859. }
  40860. },
  40861. },
  40862. [
  40863. {
  40864. name: "Normal",
  40865. height: math.unit(8 + 4/12, "feet"),
  40866. default: true
  40867. },
  40868. {
  40869. name: "Macro",
  40870. height: math.unit(200, "feet")
  40871. },
  40872. ]
  40873. ))
  40874. characterMakers.push(() => makeCharacter(
  40875. { name: "Kayne Ein", species: ["dragon", "wolf"], tags: ["anthro"] },
  40876. {
  40877. front: {
  40878. height: math.unit(6 + 2/12, "feet"),
  40879. weight: math.unit(185, "lb"),
  40880. name: "Front",
  40881. image: {
  40882. source: "./media/characters/kayne-ein/front.svg",
  40883. extra: 1780/1560,
  40884. bottom: 81/1861
  40885. }
  40886. },
  40887. },
  40888. [
  40889. {
  40890. name: "Normal",
  40891. height: math.unit(6 + 2/12, "feet"),
  40892. default: true
  40893. },
  40894. {
  40895. name: "Transformation Stage",
  40896. height: math.unit(15, "feet")
  40897. },
  40898. {
  40899. name: "Macro",
  40900. height: math.unit(150, "feet")
  40901. },
  40902. {
  40903. name: "Earth's Shadow",
  40904. height: math.unit(6200, "miles")
  40905. },
  40906. {
  40907. name: "Universal Demon",
  40908. height: math.unit(28e9, "parsecs")
  40909. },
  40910. {
  40911. name: "Multiverse God",
  40912. height: math.unit(3, "multiverses")
  40913. },
  40914. ]
  40915. ))
  40916. characterMakers.push(() => makeCharacter(
  40917. { name: "Fawn", species: ["deer"], tags: ["anthro"] },
  40918. {
  40919. front: {
  40920. height: math.unit(5 + 5/12, "feet"),
  40921. name: "Front",
  40922. image: {
  40923. source: "./media/characters/fawn/front.svg",
  40924. extra: 1873/1731,
  40925. bottom: 95/1968
  40926. }
  40927. },
  40928. back: {
  40929. height: math.unit(5 + 5/12, "feet"),
  40930. name: "Back",
  40931. image: {
  40932. source: "./media/characters/fawn/back.svg",
  40933. extra: 1813/1700,
  40934. bottom: 14/1827
  40935. }
  40936. },
  40937. hoof: {
  40938. height: math.unit(1.45, "feet"),
  40939. name: "Hoof",
  40940. image: {
  40941. source: "./media/characters/fawn/hoof.svg"
  40942. }
  40943. },
  40944. },
  40945. [
  40946. {
  40947. name: "Normal",
  40948. height: math.unit(5 + 5/12, "feet"),
  40949. default: true
  40950. },
  40951. ]
  40952. ))
  40953. characterMakers.push(() => makeCharacter(
  40954. { name: "Orion", species: ["pine-marten"], tags: ["anthro"] },
  40955. {
  40956. front: {
  40957. height: math.unit(2 + 5/12, "feet"),
  40958. name: "Front",
  40959. image: {
  40960. source: "./media/characters/orion/front.svg",
  40961. extra: 1366/1304,
  40962. bottom: 43/1409
  40963. }
  40964. },
  40965. paw: {
  40966. height: math.unit(0.52, "feet"),
  40967. name: "Paw",
  40968. image: {
  40969. source: "./media/characters/orion/paw.svg"
  40970. }
  40971. },
  40972. },
  40973. [
  40974. {
  40975. name: "Normal",
  40976. height: math.unit(2 + 5/12, "feet"),
  40977. default: true
  40978. },
  40979. ]
  40980. ))
  40981. characterMakers.push(() => makeCharacter(
  40982. { name: "Vera", species: ["husky", "arcanine"], tags: ["anthro"] },
  40983. {
  40984. front: {
  40985. height: math.unit(5 + 10/12, "feet"),
  40986. name: "Front",
  40987. image: {
  40988. source: "./media/characters/vera/front.svg",
  40989. extra: 1680/1575,
  40990. bottom: 49/1729
  40991. }
  40992. },
  40993. back: {
  40994. height: math.unit(5 + 10/12, "feet"),
  40995. name: "Back",
  40996. image: {
  40997. source: "./media/characters/vera/back.svg",
  40998. extra: 1700/1588,
  40999. bottom: 18/1718
  41000. }
  41001. },
  41002. arcanine: {
  41003. height: math.unit(6 + 8/12, "feet"),
  41004. name: "Arcanine",
  41005. image: {
  41006. source: "./media/characters/vera/arcanine.svg",
  41007. extra: 1590/1511,
  41008. bottom: 71/1661
  41009. }
  41010. },
  41011. maw: {
  41012. height: math.unit(0.82, "feet"),
  41013. name: "Maw",
  41014. image: {
  41015. source: "./media/characters/vera/maw.svg"
  41016. }
  41017. },
  41018. mawArcanine: {
  41019. height: math.unit(0.97, "feet"),
  41020. name: "Maw (Arcanine)",
  41021. image: {
  41022. source: "./media/characters/vera/maw-arcanine.svg"
  41023. }
  41024. },
  41025. paw: {
  41026. height: math.unit(0.75, "feet"),
  41027. name: "Paw",
  41028. image: {
  41029. source: "./media/characters/vera/paw.svg"
  41030. }
  41031. },
  41032. pawprint: {
  41033. height: math.unit(0.52, "feet"),
  41034. name: "Pawprint",
  41035. image: {
  41036. source: "./media/characters/vera/pawprint.svg"
  41037. }
  41038. },
  41039. },
  41040. [
  41041. {
  41042. name: "Normal",
  41043. height: math.unit(5 + 10/12, "feet"),
  41044. default: true
  41045. },
  41046. {
  41047. name: "Macro",
  41048. height: math.unit(75, "feet")
  41049. },
  41050. ]
  41051. ))
  41052. characterMakers.push(() => makeCharacter(
  41053. { name: "Orvan Rabbit", species: ["rabbit"], tags: ["anthro"] },
  41054. {
  41055. front: {
  41056. height: math.unit(4, "feet"),
  41057. weight: math.unit(40, "lb"),
  41058. name: "Front",
  41059. image: {
  41060. source: "./media/characters/orvan-rabbit/front.svg",
  41061. extra: 1896/1642,
  41062. bottom: 29/1925
  41063. }
  41064. },
  41065. },
  41066. [
  41067. {
  41068. name: "Normal",
  41069. height: math.unit(4, "feet"),
  41070. default: true
  41071. },
  41072. ]
  41073. ))
  41074. characterMakers.push(() => makeCharacter(
  41075. { name: "Lisa", species: ["fox", "deity", "caribou", "kitsune"], tags: ["anthro"] },
  41076. {
  41077. front: {
  41078. height: math.unit(6, "feet"),
  41079. weight: math.unit(168, "lb"),
  41080. name: "Front",
  41081. image: {
  41082. source: "./media/characters/lisa/front.svg",
  41083. extra: 2065/1867,
  41084. bottom: 46/2111
  41085. }
  41086. },
  41087. back: {
  41088. height: math.unit(6, "feet"),
  41089. weight: math.unit(168, "lb"),
  41090. name: "Back",
  41091. image: {
  41092. source: "./media/characters/lisa/back.svg",
  41093. extra: 1982/1838,
  41094. bottom: 29/2011
  41095. }
  41096. },
  41097. maw: {
  41098. height: math.unit(0.81, "feet"),
  41099. name: "Maw",
  41100. image: {
  41101. source: "./media/characters/lisa/maw.svg"
  41102. }
  41103. },
  41104. paw: {
  41105. height: math.unit(0.9, "feet"),
  41106. name: "Paw",
  41107. image: {
  41108. source: "./media/characters/lisa/paw.svg"
  41109. }
  41110. },
  41111. caribousune: {
  41112. height: math.unit(7 + 2/12, "feet"),
  41113. weight: math.unit(268, "lb"),
  41114. name: "Caribousune",
  41115. image: {
  41116. source: "./media/characters/lisa/caribousune.svg",
  41117. extra: 1843/1633,
  41118. bottom: 29/1872
  41119. }
  41120. },
  41121. frontCaribousune: {
  41122. height: math.unit(7 + 2/12, "feet"),
  41123. weight: math.unit(268, "lb"),
  41124. name: "Front (Caribousune)",
  41125. image: {
  41126. source: "./media/characters/lisa/front-caribousune.svg",
  41127. extra: 1818/1638,
  41128. bottom: 52/1870
  41129. }
  41130. },
  41131. sideCaribousune: {
  41132. height: math.unit(7 + 2/12, "feet"),
  41133. weight: math.unit(268, "lb"),
  41134. name: "Side (Caribousune)",
  41135. image: {
  41136. source: "./media/characters/lisa/side-caribousune.svg",
  41137. extra: 1851/1635,
  41138. bottom: 16/1867
  41139. }
  41140. },
  41141. backCaribousune: {
  41142. height: math.unit(7 + 2/12, "feet"),
  41143. weight: math.unit(268, "lb"),
  41144. name: "Back (Caribousune)",
  41145. image: {
  41146. source: "./media/characters/lisa/back-caribousune.svg",
  41147. extra: 1801/1604,
  41148. bottom: 44/1845
  41149. }
  41150. },
  41151. caribou: {
  41152. height: math.unit(7 + 2/12, "feet"),
  41153. weight: math.unit(268, "lb"),
  41154. name: "Caribou",
  41155. image: {
  41156. source: "./media/characters/lisa/caribou.svg",
  41157. extra: 1843/1633,
  41158. bottom: 29/1872
  41159. }
  41160. },
  41161. frontCaribou: {
  41162. height: math.unit(7 + 2/12, "feet"),
  41163. weight: math.unit(268, "lb"),
  41164. name: "Front (Caribou)",
  41165. image: {
  41166. source: "./media/characters/lisa/front-caribou.svg",
  41167. extra: 1818/1638,
  41168. bottom: 52/1870
  41169. }
  41170. },
  41171. sideCaribou: {
  41172. height: math.unit(7 + 2/12, "feet"),
  41173. weight: math.unit(268, "lb"),
  41174. name: "Side (Caribou)",
  41175. image: {
  41176. source: "./media/characters/lisa/side-caribou.svg",
  41177. extra: 1851/1635,
  41178. bottom: 16/1867
  41179. }
  41180. },
  41181. backCaribou: {
  41182. height: math.unit(7 + 2/12, "feet"),
  41183. weight: math.unit(268, "lb"),
  41184. name: "Back (Caribou)",
  41185. image: {
  41186. source: "./media/characters/lisa/back-caribou.svg",
  41187. extra: 1801/1604,
  41188. bottom: 44/1845
  41189. }
  41190. },
  41191. mawCaribou: {
  41192. height: math.unit(1.45, "feet"),
  41193. name: "Maw (Caribou)",
  41194. image: {
  41195. source: "./media/characters/lisa/maw-caribou.svg"
  41196. }
  41197. },
  41198. mawCaribousune: {
  41199. height: math.unit(1.45, "feet"),
  41200. name: "Maw (Caribousune)",
  41201. image: {
  41202. source: "./media/characters/lisa/maw-caribousune.svg"
  41203. }
  41204. },
  41205. pawCaribousune: {
  41206. height: math.unit(1.61, "feet"),
  41207. name: "Paw (Caribou)",
  41208. image: {
  41209. source: "./media/characters/lisa/paw-caribousune.svg"
  41210. }
  41211. },
  41212. },
  41213. [
  41214. {
  41215. name: "Normal",
  41216. height: math.unit(6, "feet")
  41217. },
  41218. {
  41219. name: "God Size",
  41220. height: math.unit(72, "feet"),
  41221. default: true
  41222. },
  41223. {
  41224. name: "Towering",
  41225. height: math.unit(288, "feet")
  41226. },
  41227. {
  41228. name: "City Size",
  41229. height: math.unit(48384, "feet")
  41230. },
  41231. {
  41232. name: "Continental",
  41233. height: math.unit(4200, "miles")
  41234. },
  41235. {
  41236. name: "Planet Eater",
  41237. height: math.unit(42, "earths")
  41238. },
  41239. {
  41240. name: "Star Swallower",
  41241. height: math.unit(42, "solarradii")
  41242. },
  41243. {
  41244. name: "System Swallower",
  41245. height: math.unit(84000, "AU")
  41246. },
  41247. {
  41248. name: "Galaxy Gobbler",
  41249. height: math.unit(42, "galaxies")
  41250. },
  41251. {
  41252. name: "Universe Devourer",
  41253. height: math.unit(42, "universes")
  41254. },
  41255. {
  41256. name: "Multiverse Muncher",
  41257. height: math.unit(42, "multiverses")
  41258. },
  41259. ]
  41260. ))
  41261. characterMakers.push(() => makeCharacter(
  41262. { name: "Shadow (Rat)", species: ["rat"], tags: ["anthro"] },
  41263. {
  41264. front: {
  41265. height: math.unit(36, "feet"),
  41266. name: "Front",
  41267. image: {
  41268. source: "./media/characters/shadow-rat/front.svg",
  41269. extra: 1845/1758,
  41270. bottom: 83/1928
  41271. }
  41272. },
  41273. },
  41274. [
  41275. {
  41276. name: "Macro",
  41277. height: math.unit(36, "feet"),
  41278. default: true
  41279. },
  41280. ]
  41281. ))
  41282. characterMakers.push(() => makeCharacter(
  41283. { name: "Torallia", species: ["cobra", "demon"], tags: ["naga"] },
  41284. {
  41285. side: {
  41286. height: math.unit(8, "feet"),
  41287. weight: math.unit(2630, "lb"),
  41288. name: "Side",
  41289. image: {
  41290. source: "./media/characters/torallia/side.svg",
  41291. extra: 2164/2021,
  41292. bottom: 371/2535
  41293. }
  41294. },
  41295. },
  41296. [
  41297. {
  41298. name: "Mortal Interaction",
  41299. height: math.unit(8, "feet")
  41300. },
  41301. {
  41302. name: "Natural",
  41303. height: math.unit(24, "feet"),
  41304. default: true
  41305. },
  41306. {
  41307. name: "Giant",
  41308. height: math.unit(80, "feet")
  41309. },
  41310. {
  41311. name: "Kaiju",
  41312. height: math.unit(240, "feet")
  41313. },
  41314. {
  41315. name: "Macro",
  41316. height: math.unit(800, "feet")
  41317. },
  41318. {
  41319. name: "Macro+",
  41320. height: math.unit(2400, "feet")
  41321. },
  41322. {
  41323. name: "Macro++",
  41324. height: math.unit(8000, "feet")
  41325. },
  41326. {
  41327. name: "City-Crushing",
  41328. height: math.unit(24000, "feet")
  41329. },
  41330. {
  41331. name: "Mountain-Mashing",
  41332. height: math.unit(80000, "feet")
  41333. },
  41334. {
  41335. name: "District Demolisher",
  41336. height: math.unit(240000, "feet")
  41337. },
  41338. {
  41339. name: "Tri-County Terror",
  41340. height: math.unit(800000, "feet")
  41341. },
  41342. {
  41343. name: "State Smasher",
  41344. height: math.unit(2.4e6, "feet")
  41345. },
  41346. {
  41347. name: "Nation Nemesis",
  41348. height: math.unit(8e6, "feet")
  41349. },
  41350. {
  41351. name: "Continent Cracker",
  41352. height: math.unit(2.4e7, "feet")
  41353. },
  41354. {
  41355. name: "Planet-Pillaging",
  41356. height: math.unit(8e7, "feet")
  41357. },
  41358. {
  41359. name: "Earth-Eclipsing",
  41360. height: math.unit(2.4e8, "feet")
  41361. },
  41362. {
  41363. name: "Jovian-Jostling",
  41364. height: math.unit(8e8, "feet")
  41365. },
  41366. {
  41367. name: "Gas Giant Gulper",
  41368. height: math.unit(2.4e9, "feet")
  41369. },
  41370. {
  41371. name: "Astral Annihilator",
  41372. height: math.unit(8e9, "feet")
  41373. },
  41374. {
  41375. name: "Celestial Conqueror",
  41376. height: math.unit(2.4e10, "feet")
  41377. },
  41378. {
  41379. name: "Sol-Swallowing",
  41380. height: math.unit(8e10, "feet")
  41381. },
  41382. {
  41383. name: "Hunter of the Heavens",
  41384. height: math.unit(2.4e13, "feet")
  41385. },
  41386. ]
  41387. ))
  41388. characterMakers.push(() => makeCharacter(
  41389. { name: "Rebecca Pawlson", species: ["fennec-fox"], tags: ["anthro"] },
  41390. {
  41391. front: {
  41392. height: math.unit(6 + 8/12, "feet"),
  41393. weight: math.unit(250, "kilograms"),
  41394. volume: math.unit(28, "liters"),
  41395. name: "Front",
  41396. image: {
  41397. source: "./media/characters/rebecca-pawlson/front.svg",
  41398. extra: 1737/1596,
  41399. bottom: 107/1844
  41400. }
  41401. },
  41402. back: {
  41403. height: math.unit(6 + 8/12, "feet"),
  41404. weight: math.unit(250, "kilograms"),
  41405. volume: math.unit(28, "liters"),
  41406. name: "Back",
  41407. image: {
  41408. source: "./media/characters/rebecca-pawlson/back.svg",
  41409. extra: 1702/1523,
  41410. bottom: 86/1788
  41411. }
  41412. },
  41413. },
  41414. [
  41415. {
  41416. name: "Normal",
  41417. height: math.unit(6 + 8/12, "feet")
  41418. },
  41419. {
  41420. name: "Mini Macro",
  41421. height: math.unit(10, "feet"),
  41422. default: true
  41423. },
  41424. {
  41425. name: "Macro",
  41426. height: math.unit(100, "feet")
  41427. },
  41428. {
  41429. name: "Mega Macro",
  41430. height: math.unit(2500, "feet")
  41431. },
  41432. {
  41433. name: "Giga Macro",
  41434. height: math.unit(50, "miles")
  41435. },
  41436. ]
  41437. ))
  41438. characterMakers.push(() => makeCharacter(
  41439. { name: "Moxie Nova", species: ["dragon", "cat"], tags: ["anthro"] },
  41440. {
  41441. front: {
  41442. height: math.unit(7 + 6/12, "feet"),
  41443. weight: math.unit(600, "lb"),
  41444. name: "Front",
  41445. image: {
  41446. source: "./media/characters/moxie-nova/front.svg",
  41447. extra: 1734/1652,
  41448. bottom: 41/1775
  41449. }
  41450. },
  41451. },
  41452. [
  41453. {
  41454. name: "Normal",
  41455. height: math.unit(7 + 6/12, "feet"),
  41456. default: true
  41457. },
  41458. ]
  41459. ))
  41460. characterMakers.push(() => makeCharacter(
  41461. { name: "Tiffany", species: ["fox", "raccoon"], tags: ["anthro"] },
  41462. {
  41463. goat: {
  41464. height: math.unit(4, "feet"),
  41465. weight: math.unit(180, "lb"),
  41466. name: "Goat",
  41467. image: {
  41468. source: "./media/characters/tiffany/goat.svg",
  41469. extra: 1845/1595,
  41470. bottom: 106/1951
  41471. }
  41472. },
  41473. front: {
  41474. height: math.unit(5, "feet"),
  41475. weight: math.unit(150, "lb"),
  41476. name: "Foxcoon",
  41477. image: {
  41478. source: "./media/characters/tiffany/foxcoon.svg",
  41479. extra: 1941/1845,
  41480. bottom: 58/1999
  41481. }
  41482. },
  41483. },
  41484. [
  41485. {
  41486. name: "Normal",
  41487. height: math.unit(5, "feet"),
  41488. default: true
  41489. },
  41490. ]
  41491. ))
  41492. characterMakers.push(() => makeCharacter(
  41493. { name: "Raxinath", species: ["dragon"], tags: ["anthro"] },
  41494. {
  41495. front: {
  41496. height: math.unit(8, "feet"),
  41497. weight: math.unit(300, "lb"),
  41498. name: "Front",
  41499. image: {
  41500. source: "./media/characters/raxinath/front.svg",
  41501. extra: 1407/1309,
  41502. bottom: 39/1446
  41503. }
  41504. },
  41505. back: {
  41506. height: math.unit(8, "feet"),
  41507. weight: math.unit(300, "lb"),
  41508. name: "Back",
  41509. image: {
  41510. source: "./media/characters/raxinath/back.svg",
  41511. extra: 1405/1315,
  41512. bottom: 9/1414
  41513. }
  41514. },
  41515. },
  41516. [
  41517. {
  41518. name: "Speck",
  41519. height: math.unit(0.5, "nm")
  41520. },
  41521. {
  41522. name: "Micro",
  41523. height: math.unit(3, "inches")
  41524. },
  41525. {
  41526. name: "Kobold",
  41527. height: math.unit(3, "feet")
  41528. },
  41529. {
  41530. name: "Normal",
  41531. height: math.unit(8, "feet"),
  41532. default: true
  41533. },
  41534. {
  41535. name: "Giant",
  41536. height: math.unit(50, "feet")
  41537. },
  41538. {
  41539. name: "Macro",
  41540. height: math.unit(1000, "feet")
  41541. },
  41542. {
  41543. name: "Megamacro",
  41544. height: math.unit(1, "mile")
  41545. },
  41546. ]
  41547. ))
  41548. characterMakers.push(() => makeCharacter(
  41549. { name: "Mal (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  41550. {
  41551. front: {
  41552. height: math.unit(10, "feet"),
  41553. weight: math.unit(1442, "lb"),
  41554. name: "Front",
  41555. image: {
  41556. source: "./media/characters/mal-dragon/front.svg",
  41557. extra: 1515/1444,
  41558. bottom: 113/1628
  41559. }
  41560. },
  41561. back: {
  41562. height: math.unit(10, "feet"),
  41563. weight: math.unit(1442, "lb"),
  41564. name: "Back",
  41565. image: {
  41566. source: "./media/characters/mal-dragon/back.svg",
  41567. extra: 1527/1434,
  41568. bottom: 25/1552
  41569. }
  41570. },
  41571. },
  41572. [
  41573. {
  41574. name: "Mortal Interaction",
  41575. height: math.unit(10, "feet"),
  41576. default: true
  41577. },
  41578. {
  41579. name: "Large",
  41580. height: math.unit(30, "feet")
  41581. },
  41582. {
  41583. name: "Kaiju",
  41584. height: math.unit(300, "feet")
  41585. },
  41586. {
  41587. name: "Megamacro",
  41588. height: math.unit(10000, "feet")
  41589. },
  41590. {
  41591. name: "Continent Cracker",
  41592. height: math.unit(30000000, "feet")
  41593. },
  41594. {
  41595. name: "Sol-Swallowing",
  41596. height: math.unit(1e11, "feet")
  41597. },
  41598. {
  41599. name: "Light Universal",
  41600. height: math.unit(5, "universes")
  41601. },
  41602. {
  41603. name: "Universe Atoms",
  41604. height: math.unit(1.829e9, "universes")
  41605. },
  41606. {
  41607. name: "Light Multiversal",
  41608. height: math.unit(5, "multiverses")
  41609. },
  41610. {
  41611. name: "Multiverse Atoms",
  41612. height: math.unit(1.829e9, "multiverses")
  41613. },
  41614. {
  41615. name: "Fabric of Time",
  41616. height: math.unit(1e262, "multiverses")
  41617. },
  41618. ]
  41619. ))
  41620. characterMakers.push(() => makeCharacter(
  41621. { name: "Tabitha", species: ["mouse", "cat"], tags: ["anthro"] },
  41622. {
  41623. front: {
  41624. height: math.unit(9, "feet"),
  41625. weight: math.unit(1050, "lb"),
  41626. name: "Front",
  41627. image: {
  41628. source: "./media/characters/tabitha/front.svg",
  41629. extra: 2083/1994,
  41630. bottom: 68/2151
  41631. }
  41632. },
  41633. },
  41634. [
  41635. {
  41636. name: "Baseline",
  41637. height: math.unit(9, "feet"),
  41638. default: true
  41639. },
  41640. {
  41641. name: "Giant",
  41642. height: math.unit(90, "feet")
  41643. },
  41644. {
  41645. name: "Macro",
  41646. height: math.unit(900, "feet")
  41647. },
  41648. {
  41649. name: "Megamacro",
  41650. height: math.unit(9000, "feet")
  41651. },
  41652. {
  41653. name: "City-Crushing",
  41654. height: math.unit(27000, "feet")
  41655. },
  41656. {
  41657. name: "Mountain-Mashing",
  41658. height: math.unit(90000, "feet")
  41659. },
  41660. {
  41661. name: "Nation Nemesis",
  41662. height: math.unit(9e6, "feet")
  41663. },
  41664. {
  41665. name: "Continent Cracker",
  41666. height: math.unit(27e6, "feet")
  41667. },
  41668. {
  41669. name: "Earth-Eclipsing",
  41670. height: math.unit(2.7e8, "feet")
  41671. },
  41672. {
  41673. name: "Gas Giant Gulper",
  41674. height: math.unit(2.7e9, "feet")
  41675. },
  41676. {
  41677. name: "Sol-Swallowing",
  41678. height: math.unit(9e10, "feet")
  41679. },
  41680. {
  41681. name: "Galaxy Gulper",
  41682. height: math.unit(9, "galaxies")
  41683. },
  41684. {
  41685. name: "Cosmos Churner",
  41686. height: math.unit(9, "universes")
  41687. },
  41688. ]
  41689. ))
  41690. characterMakers.push(() => makeCharacter(
  41691. { name: "Tow", species: ["cat"], tags: ["anthro"] },
  41692. {
  41693. front: {
  41694. height: math.unit(160, "cm"),
  41695. weight: math.unit(55, "kg"),
  41696. name: "Front",
  41697. image: {
  41698. source: "./media/characters/tow/front.svg",
  41699. extra: 1751/1722,
  41700. bottom: 74/1825
  41701. }
  41702. },
  41703. },
  41704. [
  41705. {
  41706. name: "Norm",
  41707. height: math.unit(160, "cm")
  41708. },
  41709. {
  41710. name: "Casual",
  41711. height: math.unit(3200, "m"),
  41712. default: true
  41713. },
  41714. {
  41715. name: "Show-Off",
  41716. height: math.unit(160, "km")
  41717. },
  41718. ]
  41719. ))
  41720. characterMakers.push(() => makeCharacter(
  41721. { name: "Vivian (Ocra Dragon)", species: ["dragon", "orca"], tags: ["anthro", "goo"] },
  41722. {
  41723. front: {
  41724. height: math.unit(7 + 11/12, "feet"),
  41725. weight: math.unit(342.8, "lb"),
  41726. name: "Front",
  41727. image: {
  41728. source: "./media/characters/vivian-orca-dragon/front.svg",
  41729. extra: 1890/1865,
  41730. bottom: 28/1918
  41731. }
  41732. },
  41733. },
  41734. [
  41735. {
  41736. name: "Micro",
  41737. height: math.unit(5, "inches")
  41738. },
  41739. {
  41740. name: "Normal",
  41741. height: math.unit(7 + 11/12, "feet"),
  41742. default: true
  41743. },
  41744. {
  41745. name: "Macro",
  41746. height: math.unit(395 + 7/12, "feet")
  41747. },
  41748. ]
  41749. ))
  41750. characterMakers.push(() => makeCharacter(
  41751. { name: "Lotherakon", species: ["hellhound", "deity"], tags: ["anthro"] },
  41752. {
  41753. side: {
  41754. height: math.unit(10, "feet"),
  41755. weight: math.unit(1442, "lb"),
  41756. name: "Side",
  41757. image: {
  41758. source: "./media/characters/lotherakon/side.svg",
  41759. extra: 1604/1497,
  41760. bottom: 89/1693
  41761. }
  41762. },
  41763. },
  41764. [
  41765. {
  41766. name: "Mortal Interaction",
  41767. height: math.unit(10, "feet")
  41768. },
  41769. {
  41770. name: "Large",
  41771. height: math.unit(30, "feet"),
  41772. default: true
  41773. },
  41774. {
  41775. name: "Giant",
  41776. height: math.unit(100, "feet")
  41777. },
  41778. {
  41779. name: "Kaiju",
  41780. height: math.unit(300, "feet")
  41781. },
  41782. {
  41783. name: "Macro",
  41784. height: math.unit(1000, "feet")
  41785. },
  41786. {
  41787. name: "Macro+",
  41788. height: math.unit(3000, "feet")
  41789. },
  41790. {
  41791. name: "Megamacro",
  41792. height: math.unit(10000, "feet")
  41793. },
  41794. {
  41795. name: "City-Crushing",
  41796. height: math.unit(30000, "feet")
  41797. },
  41798. {
  41799. name: "Continent Cracker",
  41800. height: math.unit(30e6, "feet")
  41801. },
  41802. {
  41803. name: "Earth Eclipsing",
  41804. height: math.unit(3e8, "feet")
  41805. },
  41806. {
  41807. name: "Gas Giant Gulper",
  41808. height: math.unit(3e9, "feet")
  41809. },
  41810. {
  41811. name: "Sol-Swallowing",
  41812. height: math.unit(1e11, "feet")
  41813. },
  41814. {
  41815. name: "System Swallower",
  41816. height: math.unit(3e14, "feet")
  41817. },
  41818. {
  41819. name: "Galaxy Gulper",
  41820. height: math.unit(10, "galaxies")
  41821. },
  41822. {
  41823. name: "Light Universal",
  41824. height: math.unit(5, "universes")
  41825. },
  41826. {
  41827. name: "Universe Palm",
  41828. height: math.unit(20, "universes")
  41829. },
  41830. {
  41831. name: "Light Multiversal",
  41832. height: math.unit(5, "multiverses")
  41833. },
  41834. {
  41835. name: "Multiverse Palm",
  41836. height: math.unit(20, "multiverses")
  41837. },
  41838. {
  41839. name: "Inferno Incarnate",
  41840. height: math.unit(1e7, "multiverses")
  41841. },
  41842. ]
  41843. ))
  41844. characterMakers.push(() => makeCharacter(
  41845. { name: "Malithee", species: ["frog", "dragon", "deity"], tags: ["anthro"] },
  41846. {
  41847. front: {
  41848. height: math.unit(8, "feet"),
  41849. weight: math.unit(1200, "lb"),
  41850. name: "Front",
  41851. image: {
  41852. source: "./media/characters/malithee/front.svg",
  41853. extra: 1675/1640,
  41854. bottom: 162/1837
  41855. }
  41856. },
  41857. },
  41858. [
  41859. {
  41860. name: "Mortal Interaction",
  41861. height: math.unit(8, "feet"),
  41862. default: true
  41863. },
  41864. {
  41865. name: "Large",
  41866. height: math.unit(24, "feet")
  41867. },
  41868. {
  41869. name: "Kaiju",
  41870. height: math.unit(240, "feet")
  41871. },
  41872. {
  41873. name: "Megamacro",
  41874. height: math.unit(8000, "feet")
  41875. },
  41876. {
  41877. name: "Continent Cracker",
  41878. height: math.unit(24e6, "feet")
  41879. },
  41880. {
  41881. name: "Earth-Eclipsing",
  41882. height: math.unit(2.4e8, "feet")
  41883. },
  41884. {
  41885. name: "Sol-Swallowing",
  41886. height: math.unit(8e10, "feet")
  41887. },
  41888. {
  41889. name: "Galaxy Gulper",
  41890. height: math.unit(8, "galaxies")
  41891. },
  41892. {
  41893. name: "Light Universal",
  41894. height: math.unit(4, "universes")
  41895. },
  41896. {
  41897. name: "Universe Atoms",
  41898. height: math.unit(1.829e9, "universes")
  41899. },
  41900. {
  41901. name: "Light Multiversal",
  41902. height: math.unit(4, "multiverses")
  41903. },
  41904. {
  41905. name: "Multiverse Atoms",
  41906. height: math.unit(1.829e9, "multiverses")
  41907. },
  41908. {
  41909. name: "Nigh-Omnipresence",
  41910. height: math.unit(8e261, "multiverses")
  41911. },
  41912. ]
  41913. ))
  41914. characterMakers.push(() => makeCharacter(
  41915. { name: "Miles Thestia", species: ["wolf", "dog"], tags: ["anthro"] },
  41916. {
  41917. front: {
  41918. height: math.unit(10, "feet"),
  41919. weight: math.unit(1500, "lb"),
  41920. name: "Front",
  41921. image: {
  41922. source: "./media/characters/miles-thestia/front.svg",
  41923. extra: 1812/1727,
  41924. bottom: 86/1898
  41925. }
  41926. },
  41927. back: {
  41928. height: math.unit(10, "feet"),
  41929. weight: math.unit(1500, "lb"),
  41930. name: "Back",
  41931. image: {
  41932. source: "./media/characters/miles-thestia/back.svg",
  41933. extra: 1799/1690,
  41934. bottom: 47/1846
  41935. }
  41936. },
  41937. frontNsfw: {
  41938. height: math.unit(10, "feet"),
  41939. weight: math.unit(1500, "lb"),
  41940. name: "Front (NSFW)",
  41941. image: {
  41942. source: "./media/characters/miles-thestia/front-nsfw.svg",
  41943. extra: 1812/1727,
  41944. bottom: 86/1898
  41945. }
  41946. },
  41947. },
  41948. [
  41949. {
  41950. name: "Mini-Macro",
  41951. height: math.unit(10, "feet"),
  41952. default: true
  41953. },
  41954. ]
  41955. ))
  41956. characterMakers.push(() => makeCharacter(
  41957. { name: "TITAN.S.WULF", species: ["wolf"], tags: ["anthro"] },
  41958. {
  41959. front: {
  41960. height: math.unit(25, "feet"),
  41961. name: "Front",
  41962. image: {
  41963. source: "./media/characters/titan-s-wulf/front.svg",
  41964. extra: 1560/1484,
  41965. bottom: 76/1636
  41966. }
  41967. },
  41968. },
  41969. [
  41970. {
  41971. name: "Smallest",
  41972. height: math.unit(25, "feet"),
  41973. default: true
  41974. },
  41975. {
  41976. name: "Normal",
  41977. height: math.unit(200, "feet")
  41978. },
  41979. {
  41980. name: "Macro",
  41981. height: math.unit(200000, "feet")
  41982. },
  41983. {
  41984. name: "Multiversal Original",
  41985. height: math.unit(10000, "multiverses")
  41986. },
  41987. ]
  41988. ))
  41989. characterMakers.push(() => makeCharacter(
  41990. { name: "Tawendeh", species: ["otter", "deity"], tags: ["anthro"] },
  41991. {
  41992. front: {
  41993. height: math.unit(8, "feet"),
  41994. weight: math.unit(553, "lb"),
  41995. name: "Front",
  41996. image: {
  41997. source: "./media/characters/tawendeh/front.svg",
  41998. extra: 2365/2268,
  41999. bottom: 83/2448
  42000. }
  42001. },
  42002. frontClothed: {
  42003. height: math.unit(8, "feet"),
  42004. weight: math.unit(553, "lb"),
  42005. name: "Front (Clothed)",
  42006. image: {
  42007. source: "./media/characters/tawendeh/front-clothed.svg",
  42008. extra: 2365/2268,
  42009. bottom: 83/2448
  42010. }
  42011. },
  42012. back: {
  42013. height: math.unit(8, "feet"),
  42014. weight: math.unit(553, "lb"),
  42015. name: "Back",
  42016. image: {
  42017. source: "./media/characters/tawendeh/back.svg",
  42018. extra: 2397/2294,
  42019. bottom: 42/2439
  42020. }
  42021. },
  42022. },
  42023. [
  42024. {
  42025. name: "Mortal Interaction",
  42026. height: math.unit(8, "feet"),
  42027. default: true
  42028. },
  42029. {
  42030. name: "Giant",
  42031. height: math.unit(80, "feet")
  42032. },
  42033. {
  42034. name: "Macro",
  42035. height: math.unit(800, "feet")
  42036. },
  42037. {
  42038. name: "Megamacro",
  42039. height: math.unit(8000, "feet")
  42040. },
  42041. {
  42042. name: "City-Crushing",
  42043. height: math.unit(24000, "feet")
  42044. },
  42045. {
  42046. name: "Mountain-Mashing",
  42047. height: math.unit(80000, "feet")
  42048. },
  42049. {
  42050. name: "Nation Nemesis",
  42051. height: math.unit(8e6, "feet")
  42052. },
  42053. {
  42054. name: "Continent Cracker",
  42055. height: math.unit(24e6, "feet")
  42056. },
  42057. {
  42058. name: "Earth-Eclipsing",
  42059. height: math.unit(2.4e8, "feet")
  42060. },
  42061. {
  42062. name: "Gas Giant Gulper",
  42063. height: math.unit(2.4e9, "feet")
  42064. },
  42065. {
  42066. name: "Sol-Swallowing",
  42067. height: math.unit(8e10, "feet")
  42068. },
  42069. {
  42070. name: "Galaxy Gulper",
  42071. height: math.unit(8, "galaxies")
  42072. },
  42073. {
  42074. name: "Cosmos Churner",
  42075. height: math.unit(8, "universes")
  42076. },
  42077. {
  42078. name: "Omnipotent Otter",
  42079. height: math.unit(80, "universes")
  42080. },
  42081. ]
  42082. ))
  42083. characterMakers.push(() => makeCharacter(
  42084. { name: "Neesha", species: ["gnoll"], tags: ["anthro"] },
  42085. {
  42086. front: {
  42087. height: math.unit(2.6, "meters"),
  42088. weight: math.unit(900, "kg"),
  42089. name: "Front",
  42090. image: {
  42091. source: "./media/characters/neesha/front.svg",
  42092. extra: 1803/1653,
  42093. bottom: 128/1931
  42094. }
  42095. },
  42096. },
  42097. [
  42098. {
  42099. name: "Normal",
  42100. height: math.unit(2.6, "meters"),
  42101. default: true
  42102. },
  42103. {
  42104. name: "Macro",
  42105. height: math.unit(50, "meters")
  42106. },
  42107. ]
  42108. ))
  42109. characterMakers.push(() => makeCharacter(
  42110. { name: "Kyera", species: ["dragon", "mouse"], tags: ["anthro"] },
  42111. {
  42112. front: {
  42113. height: math.unit(5, "feet"),
  42114. weight: math.unit(185, "lb"),
  42115. name: "Front",
  42116. image: {
  42117. source: "./media/characters/kyera/front.svg",
  42118. extra: 1875/1790,
  42119. bottom: 96/1971
  42120. }
  42121. },
  42122. },
  42123. [
  42124. {
  42125. name: "Normal",
  42126. height: math.unit(5, "feet"),
  42127. default: true
  42128. },
  42129. ]
  42130. ))
  42131. characterMakers.push(() => makeCharacter(
  42132. { name: "Yuko", species: ["catgirl"], tags: ["anthro"] },
  42133. {
  42134. front: {
  42135. height: math.unit(7 + 6/12, "feet"),
  42136. weight: math.unit(540, "lb"),
  42137. name: "Front",
  42138. image: {
  42139. source: "./media/characters/yuko/front.svg",
  42140. extra: 1282/1222,
  42141. bottom: 101/1383
  42142. }
  42143. },
  42144. frontClothed: {
  42145. height: math.unit(7 + 6/12, "feet"),
  42146. weight: math.unit(540, "lb"),
  42147. name: "Front (Clothed)",
  42148. image: {
  42149. source: "./media/characters/yuko/front-clothed.svg",
  42150. extra: 1282/1222,
  42151. bottom: 101/1383
  42152. }
  42153. },
  42154. },
  42155. [
  42156. {
  42157. name: "Normal",
  42158. height: math.unit(7 + 6/12, "feet"),
  42159. default: true
  42160. },
  42161. {
  42162. name: "Macro",
  42163. height: math.unit(26 + 9/12, "feet")
  42164. },
  42165. {
  42166. name: "Megamacro",
  42167. height: math.unit(300, "feet")
  42168. },
  42169. {
  42170. name: "Gigamacro",
  42171. height: math.unit(5000, "feet")
  42172. },
  42173. {
  42174. name: "Planetary",
  42175. height: math.unit(10000, "miles")
  42176. },
  42177. ]
  42178. ))
  42179. characterMakers.push(() => makeCharacter(
  42180. { name: "Deam Nitrel", species: ["wolf"], tags: ["anthro"] },
  42181. {
  42182. front: {
  42183. height: math.unit(8 + 2/12, "feet"),
  42184. weight: math.unit(600, "lb"),
  42185. name: "Front",
  42186. image: {
  42187. source: "./media/characters/deam-nitrel/front.svg",
  42188. extra: 1308/1234,
  42189. bottom: 125/1433
  42190. }
  42191. },
  42192. },
  42193. [
  42194. {
  42195. name: "Normal",
  42196. height: math.unit(8 + 2/12, "feet"),
  42197. default: true
  42198. },
  42199. ]
  42200. ))
  42201. characterMakers.push(() => makeCharacter(
  42202. { name: "Skyress", species: ["dragon"], tags: ["anthro"] },
  42203. {
  42204. front: {
  42205. height: math.unit(6.1, "feet"),
  42206. weight: math.unit(180, "lb"),
  42207. name: "Front",
  42208. image: {
  42209. source: "./media/characters/skyress/front.svg",
  42210. extra: 1045/915,
  42211. bottom: 28/1073
  42212. }
  42213. },
  42214. maw: {
  42215. height: math.unit(1, "feet"),
  42216. name: "Maw",
  42217. image: {
  42218. source: "./media/characters/skyress/maw.svg"
  42219. }
  42220. },
  42221. },
  42222. [
  42223. {
  42224. name: "Normal",
  42225. height: math.unit(6.1, "feet"),
  42226. default: true
  42227. },
  42228. {
  42229. name: "Macro",
  42230. height: math.unit(200, "feet")
  42231. },
  42232. ]
  42233. ))
  42234. characterMakers.push(() => makeCharacter(
  42235. { name: "Amethyst Jones", species: ["kobold"], tags: ["anthro"] },
  42236. {
  42237. front: {
  42238. height: math.unit(4 + 2/12, "feet"),
  42239. weight: math.unit(40, "kg"),
  42240. name: "Front",
  42241. image: {
  42242. source: "./media/characters/amethyst-jones/front.svg",
  42243. extra: 1220/1150,
  42244. bottom: 101/1321
  42245. }
  42246. },
  42247. },
  42248. [
  42249. {
  42250. name: "Normal",
  42251. height: math.unit(4 + 2/12, "feet"),
  42252. default: true
  42253. },
  42254. ]
  42255. ))
  42256. characterMakers.push(() => makeCharacter(
  42257. { name: "Jade", species: ["panther", "dragon"], tags: ["anthro"] },
  42258. {
  42259. front: {
  42260. height: math.unit(1.7, "m"),
  42261. weight: math.unit(135, "lb"),
  42262. name: "Front",
  42263. image: {
  42264. source: "./media/characters/jade/front.svg",
  42265. extra: 1818/1767,
  42266. bottom: 32/1850
  42267. }
  42268. },
  42269. back: {
  42270. height: math.unit(1.7, "m"),
  42271. weight: math.unit(135, "lb"),
  42272. name: "Back",
  42273. image: {
  42274. source: "./media/characters/jade/back.svg",
  42275. extra: 1869/1809,
  42276. bottom: 35/1904
  42277. }
  42278. },
  42279. hand: {
  42280. height: math.unit(0.24, "m"),
  42281. name: "Hand",
  42282. image: {
  42283. source: "./media/characters/jade/hand.svg"
  42284. }
  42285. },
  42286. foot: {
  42287. height: math.unit(0.263, "m"),
  42288. name: "Foot",
  42289. image: {
  42290. source: "./media/characters/jade/foot.svg"
  42291. }
  42292. },
  42293. dick: {
  42294. height: math.unit(0.47, "m"),
  42295. name: "Dick",
  42296. image: {
  42297. source: "./media/characters/jade/dick.svg"
  42298. }
  42299. },
  42300. },
  42301. [
  42302. {
  42303. name: "Micro",
  42304. height: math.unit(22, "cm")
  42305. },
  42306. {
  42307. name: "Normal",
  42308. height: math.unit(1.7, "m"),
  42309. default: true
  42310. },
  42311. {
  42312. name: "Macro",
  42313. height: math.unit(152, "m")
  42314. },
  42315. ]
  42316. ))
  42317. characterMakers.push(() => makeCharacter(
  42318. { name: "Cookie", species: ["snow-leopard"], tags: ["anthro"] },
  42319. {
  42320. front: {
  42321. height: math.unit(100, "miles"),
  42322. weight: math.unit(20000, "tons"),
  42323. name: "Front",
  42324. image: {
  42325. source: "./media/characters/cookie/front.svg",
  42326. extra: 1125/1070,
  42327. bottom: 30/1155
  42328. }
  42329. },
  42330. },
  42331. [
  42332. {
  42333. name: "Big",
  42334. height: math.unit(50, "feet")
  42335. },
  42336. {
  42337. name: "Macro",
  42338. height: math.unit(100, "miles"),
  42339. default: true
  42340. },
  42341. {
  42342. name: "Megamacro",
  42343. height: math.unit(90000, "miles")
  42344. },
  42345. ]
  42346. ))
  42347. characterMakers.push(() => makeCharacter(
  42348. { name: "Farzian", species: ["folf"], tags: ["anthro"] },
  42349. {
  42350. front: {
  42351. height: math.unit(6, "feet"),
  42352. weight: math.unit(145, "lb"),
  42353. name: "Front",
  42354. image: {
  42355. source: "./media/characters/farzian/front.svg",
  42356. extra: 1902/1693,
  42357. bottom: 108/2010
  42358. }
  42359. },
  42360. },
  42361. [
  42362. {
  42363. name: "Macro",
  42364. height: math.unit(500, "feet"),
  42365. default: true
  42366. },
  42367. ]
  42368. ))
  42369. characterMakers.push(() => makeCharacter(
  42370. { name: "Kimberly Tilson", species: ["rabbit"], tags: ["anthro"] },
  42371. {
  42372. front: {
  42373. height: math.unit(3 + 6/12, "feet"),
  42374. weight: math.unit(50, "lb"),
  42375. name: "Front",
  42376. image: {
  42377. source: "./media/characters/kimberly-tilson/front.svg",
  42378. extra: 1400/1322,
  42379. bottom: 36/1436
  42380. }
  42381. },
  42382. back: {
  42383. height: math.unit(3 + 6/12, "feet"),
  42384. weight: math.unit(50, "lb"),
  42385. name: "Back",
  42386. image: {
  42387. source: "./media/characters/kimberly-tilson/back.svg",
  42388. extra: 1370/1307,
  42389. bottom: 20/1390
  42390. }
  42391. },
  42392. },
  42393. [
  42394. {
  42395. name: "Normal",
  42396. height: math.unit(3 + 6/12, "feet"),
  42397. default: true
  42398. },
  42399. ]
  42400. ))
  42401. characterMakers.push(() => makeCharacter(
  42402. { name: "Harthos", species: ["peacekeeper", "allusus"], tags: ["anthro"] },
  42403. {
  42404. front: {
  42405. height: math.unit(350, "meters"),
  42406. weight: math.unit(7.57059e+8, "lb"),
  42407. name: "Front",
  42408. image: {
  42409. source: "./media/characters/harthos/front.svg",
  42410. extra: 455/446,
  42411. bottom: 15/470
  42412. },
  42413. form: "peacekeeper",
  42414. default: true
  42415. },
  42416. allusus_front: {
  42417. height: math.unit(270, "meters"),
  42418. weight: math.unit(3.47550e+8, "lb"),
  42419. name: "Front",
  42420. image: {
  42421. source: "./media/characters/harthos/allusus-front.svg",
  42422. extra: 455/446,
  42423. bottom: 15/470
  42424. },
  42425. form: "allusus",
  42426. },
  42427. },
  42428. [
  42429. {
  42430. name: "Macro",
  42431. height: math.unit(350, "meters"),
  42432. default: true,
  42433. form: "peacekeeper"
  42434. },
  42435. {
  42436. name: "Macro",
  42437. height: math.unit(270, "meters"),
  42438. default: true,
  42439. form: "allusus"
  42440. },
  42441. ],
  42442. {
  42443. "peacekeeper": {
  42444. name: "Peacekeeper",
  42445. default: true
  42446. },
  42447. "allusus": {
  42448. name: "Allusus",
  42449. },
  42450. }
  42451. ))
  42452. characterMakers.push(() => makeCharacter(
  42453. { name: "Hypatia", species: ["gardevoir", "deity"], tags: ["anthro"] },
  42454. {
  42455. front: {
  42456. height: math.unit(15, "feet"),
  42457. name: "Front",
  42458. image: {
  42459. source: "./media/characters/hypatia/front.svg",
  42460. extra: 1653/1591,
  42461. bottom: 79/1732
  42462. }
  42463. },
  42464. },
  42465. [
  42466. {
  42467. name: "Normal",
  42468. height: math.unit(15, "feet")
  42469. },
  42470. {
  42471. name: "Small",
  42472. height: math.unit(300, "feet")
  42473. },
  42474. {
  42475. name: "Macro",
  42476. height: math.unit(2500, "feet"),
  42477. default: true
  42478. },
  42479. {
  42480. name: "Mega Macro",
  42481. height: math.unit(1500, "miles")
  42482. },
  42483. {
  42484. name: "Giga Macro",
  42485. height: math.unit(1.5e6, "miles")
  42486. },
  42487. ]
  42488. ))
  42489. characterMakers.push(() => makeCharacter(
  42490. { name: "Wulver", species: ["werewolf"], tags: ["anthro"] },
  42491. {
  42492. front: {
  42493. height: math.unit(6, "feet"),
  42494. weight: math.unit(200, "lb"),
  42495. name: "Front",
  42496. image: {
  42497. source: "./media/characters/wulver/front.svg",
  42498. extra: 1724/1632,
  42499. bottom: 130/1854
  42500. }
  42501. },
  42502. frontNsfw: {
  42503. height: math.unit(6, "feet"),
  42504. weight: math.unit(200, "lb"),
  42505. name: "Front (NSFW)",
  42506. image: {
  42507. source: "./media/characters/wulver/front-nsfw.svg",
  42508. extra: 1724/1632,
  42509. bottom: 130/1854
  42510. }
  42511. },
  42512. },
  42513. [
  42514. {
  42515. name: "Human-Sized",
  42516. height: math.unit(6, "feet")
  42517. },
  42518. {
  42519. name: "Normal",
  42520. height: math.unit(4, "meters"),
  42521. default: true
  42522. },
  42523. {
  42524. name: "Large",
  42525. height: math.unit(6, "m")
  42526. },
  42527. ]
  42528. ))
  42529. characterMakers.push(() => makeCharacter(
  42530. { name: "Maru", species: ["tiger"], tags: ["anthro"] },
  42531. {
  42532. front: {
  42533. height: math.unit(7, "feet"),
  42534. name: "Front",
  42535. image: {
  42536. source: "./media/characters/maru/front.svg",
  42537. extra: 1595/1570,
  42538. bottom: 0/1595
  42539. }
  42540. },
  42541. },
  42542. [
  42543. {
  42544. name: "Normal",
  42545. height: math.unit(7, "feet"),
  42546. default: true
  42547. },
  42548. {
  42549. name: "Macro",
  42550. height: math.unit(700, "feet")
  42551. },
  42552. {
  42553. name: "Mega Macro",
  42554. height: math.unit(25, "miles")
  42555. },
  42556. ]
  42557. ))
  42558. characterMakers.push(() => makeCharacter(
  42559. { name: "Xenon", species: ["river-otter", "wolf"], tags: ["anthro"] },
  42560. {
  42561. front: {
  42562. height: math.unit(6, "feet"),
  42563. weight: math.unit(170, "lb"),
  42564. name: "Front",
  42565. image: {
  42566. source: "./media/characters/xenon/front.svg",
  42567. extra: 1376/1305,
  42568. bottom: 56/1432
  42569. }
  42570. },
  42571. back: {
  42572. height: math.unit(6, "feet"),
  42573. weight: math.unit(170, "lb"),
  42574. name: "Back",
  42575. image: {
  42576. source: "./media/characters/xenon/back.svg",
  42577. extra: 1328/1259,
  42578. bottom: 95/1423
  42579. }
  42580. },
  42581. maw: {
  42582. height: math.unit(0.52, "feet"),
  42583. name: "Maw",
  42584. image: {
  42585. source: "./media/characters/xenon/maw.svg"
  42586. }
  42587. },
  42588. handLeft: {
  42589. height: math.unit(0.82 * 169 / 153, "feet"),
  42590. name: "Hand (Left)",
  42591. image: {
  42592. source: "./media/characters/xenon/hand-left.svg"
  42593. }
  42594. },
  42595. handRight: {
  42596. height: math.unit(0.82, "feet"),
  42597. name: "Hand (Right)",
  42598. image: {
  42599. source: "./media/characters/xenon/hand-right.svg"
  42600. }
  42601. },
  42602. footLeft: {
  42603. height: math.unit(1.13, "feet"),
  42604. name: "Foot (Left)",
  42605. image: {
  42606. source: "./media/characters/xenon/foot-left.svg"
  42607. }
  42608. },
  42609. footRight: {
  42610. height: math.unit(1.13 * 194 / 196, "feet"),
  42611. name: "Foot (Right)",
  42612. image: {
  42613. source: "./media/characters/xenon/foot-right.svg"
  42614. }
  42615. },
  42616. },
  42617. [
  42618. {
  42619. name: "Micro",
  42620. height: math.unit(0.8, "inches")
  42621. },
  42622. {
  42623. name: "Normal",
  42624. height: math.unit(6, "feet")
  42625. },
  42626. {
  42627. name: "Macro",
  42628. height: math.unit(50, "feet"),
  42629. default: true
  42630. },
  42631. {
  42632. name: "Macro+",
  42633. height: math.unit(250, "feet")
  42634. },
  42635. {
  42636. name: "Megamacro",
  42637. height: math.unit(1500, "feet")
  42638. },
  42639. ]
  42640. ))
  42641. characterMakers.push(() => makeCharacter(
  42642. { name: "Zane", species: ["wolf", "werewolf"], tags: ["anthro"] },
  42643. {
  42644. front: {
  42645. height: math.unit(7 + 5/12, "feet"),
  42646. name: "Front",
  42647. image: {
  42648. source: "./media/characters/zane/front.svg",
  42649. extra: 1260/1203,
  42650. bottom: 94/1354
  42651. }
  42652. },
  42653. back: {
  42654. height: math.unit(5.05, "feet"),
  42655. name: "Back",
  42656. image: {
  42657. source: "./media/characters/zane/back.svg",
  42658. extra: 893/829,
  42659. bottom: 30/923
  42660. }
  42661. },
  42662. werewolf: {
  42663. height: math.unit(11, "feet"),
  42664. name: "Werewolf",
  42665. image: {
  42666. source: "./media/characters/zane/werewolf.svg",
  42667. extra: 1383/1323,
  42668. bottom: 89/1472
  42669. }
  42670. },
  42671. foot: {
  42672. height: math.unit(1.46, "feet"),
  42673. name: "Foot",
  42674. image: {
  42675. source: "./media/characters/zane/foot.svg"
  42676. }
  42677. },
  42678. footFront: {
  42679. height: math.unit(0.784, "feet"),
  42680. name: "Foot (Front)",
  42681. image: {
  42682. source: "./media/characters/zane/foot-front.svg"
  42683. }
  42684. },
  42685. dick: {
  42686. height: math.unit(1.95, "feet"),
  42687. name: "Dick",
  42688. image: {
  42689. source: "./media/characters/zane/dick.svg"
  42690. }
  42691. },
  42692. dickWerewolf: {
  42693. height: math.unit(3.77, "feet"),
  42694. name: "Dick (Werewolf)",
  42695. image: {
  42696. source: "./media/characters/zane/dick.svg"
  42697. }
  42698. },
  42699. },
  42700. [
  42701. {
  42702. name: "Normal",
  42703. height: math.unit(7 + 5/12, "feet"),
  42704. default: true
  42705. },
  42706. ]
  42707. ))
  42708. characterMakers.push(() => makeCharacter(
  42709. { name: "Benni Desparque", species: ["tiger", "rabbit"], tags: ["anthro"] },
  42710. {
  42711. front: {
  42712. height: math.unit(6 + 2/12, "feet"),
  42713. weight: math.unit(284, "lb"),
  42714. name: "Front",
  42715. image: {
  42716. source: "./media/characters/benni-desparque/front.svg",
  42717. extra: 1353/1126,
  42718. bottom: 69/1422
  42719. }
  42720. },
  42721. },
  42722. [
  42723. {
  42724. name: "Civilian",
  42725. height: math.unit(6 + 2/12, "feet")
  42726. },
  42727. {
  42728. name: "Normal",
  42729. height: math.unit(98, "feet"),
  42730. default: true
  42731. },
  42732. {
  42733. name: "Kaiju Fighter",
  42734. height: math.unit(268, "feet")
  42735. },
  42736. ]
  42737. ))
  42738. characterMakers.push(() => makeCharacter(
  42739. { name: "Maxine", species: ["human"], tags: ["anthro"] },
  42740. {
  42741. front: {
  42742. height: math.unit(5, "feet"),
  42743. weight: math.unit(105, "lb"),
  42744. name: "Front",
  42745. image: {
  42746. source: "./media/characters/maxine/front.svg",
  42747. extra: 1386/1250,
  42748. bottom: 71/1457
  42749. }
  42750. },
  42751. },
  42752. [
  42753. {
  42754. name: "Normal",
  42755. height: math.unit(5, "feet"),
  42756. default: true
  42757. },
  42758. ]
  42759. ))
  42760. characterMakers.push(() => makeCharacter(
  42761. { name: "Scaly", species: ["charizard"], tags: ["anthro"] },
  42762. {
  42763. front: {
  42764. height: math.unit(11 + 7/12, "feet"),
  42765. weight: math.unit(9576, "lb"),
  42766. name: "Front",
  42767. image: {
  42768. source: "./media/characters/scaly/front.svg",
  42769. extra: 888/867,
  42770. bottom: 36/924
  42771. }
  42772. },
  42773. },
  42774. [
  42775. {
  42776. name: "Normal",
  42777. height: math.unit(11 + 7/12, "feet"),
  42778. default: true
  42779. },
  42780. ]
  42781. ))
  42782. characterMakers.push(() => makeCharacter(
  42783. { name: "Saelria", species: ["slime", "dragon"], tags: ["goo"] },
  42784. {
  42785. front: {
  42786. height: math.unit(6 + 3/12, "feet"),
  42787. name: "Front",
  42788. image: {
  42789. source: "./media/characters/saelria/front.svg",
  42790. extra: 1243/1138,
  42791. bottom: 46/1289
  42792. }
  42793. },
  42794. },
  42795. [
  42796. {
  42797. name: "Micro",
  42798. height: math.unit(6, "inches"),
  42799. },
  42800. {
  42801. name: "Normal",
  42802. height: math.unit(6 + 3/12, "feet"),
  42803. default: true
  42804. },
  42805. {
  42806. name: "Macro",
  42807. height: math.unit(25, "feet")
  42808. },
  42809. ]
  42810. ))
  42811. characterMakers.push(() => makeCharacter(
  42812. { name: "Tef", species: ["human", "deity"], tags: ["anthro"] },
  42813. {
  42814. front: {
  42815. height: math.unit(80, "meters"),
  42816. weight: math.unit(7000, "tonnes"),
  42817. name: "Front",
  42818. image: {
  42819. source: "./media/characters/tef/front.svg",
  42820. extra: 2036/1991,
  42821. bottom: 54/2090
  42822. }
  42823. },
  42824. back: {
  42825. height: math.unit(80, "meters"),
  42826. weight: math.unit(7000, "tonnes"),
  42827. name: "Back",
  42828. image: {
  42829. source: "./media/characters/tef/back.svg",
  42830. extra: 2036/1991,
  42831. bottom: 54/2090
  42832. }
  42833. },
  42834. },
  42835. [
  42836. {
  42837. name: "Macro",
  42838. height: math.unit(80, "meters"),
  42839. default: true
  42840. },
  42841. ]
  42842. ))
  42843. characterMakers.push(() => makeCharacter(
  42844. { name: "Rover", species: ["mouse"], tags: ["anthro"] },
  42845. {
  42846. front: {
  42847. height: math.unit(13, "feet"),
  42848. weight: math.unit(6, "tons"),
  42849. name: "Front",
  42850. image: {
  42851. source: "./media/characters/rover/front.svg",
  42852. extra: 1233/1156,
  42853. bottom: 50/1283
  42854. }
  42855. },
  42856. back: {
  42857. height: math.unit(13, "feet"),
  42858. weight: math.unit(6, "tons"),
  42859. name: "Back",
  42860. image: {
  42861. source: "./media/characters/rover/back.svg",
  42862. extra: 1327/1258,
  42863. bottom: 39/1366
  42864. }
  42865. },
  42866. },
  42867. [
  42868. {
  42869. name: "Normal",
  42870. height: math.unit(13, "feet"),
  42871. default: true
  42872. },
  42873. {
  42874. name: "Macro",
  42875. height: math.unit(1300, "feet")
  42876. },
  42877. {
  42878. name: "Megamacro",
  42879. height: math.unit(1300, "miles")
  42880. },
  42881. {
  42882. name: "Gigamacro",
  42883. height: math.unit(1300000, "miles")
  42884. },
  42885. ]
  42886. ))
  42887. characterMakers.push(() => makeCharacter(
  42888. { name: "Ariz", species: ["peacekeeper"], tags: ["anthro"] },
  42889. {
  42890. front: {
  42891. height: math.unit(10, "feet"),
  42892. weight: math.unit(500, "lb"),
  42893. name: "Front",
  42894. image: {
  42895. source: "./media/characters/ariz/front.svg",
  42896. extra: 461/450,
  42897. bottom: 16/477
  42898. }
  42899. },
  42900. },
  42901. [
  42902. {
  42903. name: "MiniMacro",
  42904. height: math.unit(10, "feet"),
  42905. default: true
  42906. },
  42907. ]
  42908. ))
  42909. characterMakers.push(() => makeCharacter(
  42910. { name: "Sigrun", species: ["peacekeeper"], tags: ["anthro"] },
  42911. {
  42912. front: {
  42913. height: math.unit(6, "feet"),
  42914. weight: math.unit(140, "lb"),
  42915. name: "Front",
  42916. image: {
  42917. source: "./media/characters/sigrun/front.svg",
  42918. extra: 1418/1359,
  42919. bottom: 27/1445
  42920. }
  42921. },
  42922. },
  42923. [
  42924. {
  42925. name: "Macro",
  42926. height: math.unit(35, "feet"),
  42927. default: true
  42928. },
  42929. ]
  42930. ))
  42931. characterMakers.push(() => makeCharacter(
  42932. { name: "Numin", species: ["peacekeeper"], tags: ["anthro"] },
  42933. {
  42934. front: {
  42935. height: math.unit(6, "feet"),
  42936. weight: math.unit(150, "lb"),
  42937. name: "Front",
  42938. image: {
  42939. source: "./media/characters/numin/front.svg",
  42940. extra: 1433/1388,
  42941. bottom: 12/1445
  42942. }
  42943. },
  42944. },
  42945. [
  42946. {
  42947. name: "Macro",
  42948. height: math.unit(21.5, "km"),
  42949. default: true
  42950. },
  42951. ]
  42952. ))
  42953. characterMakers.push(() => makeCharacter(
  42954. { name: "Melwa", species: ["kaiju"], tags: ["anthro"] },
  42955. {
  42956. front: {
  42957. height: math.unit(6, "feet"),
  42958. weight: math.unit(463, "lb"),
  42959. name: "Front",
  42960. image: {
  42961. source: "./media/characters/melwa/front.svg",
  42962. extra: 1307/1248,
  42963. bottom: 93/1400
  42964. }
  42965. },
  42966. },
  42967. [
  42968. {
  42969. name: "Macro",
  42970. height: math.unit(50, "meters"),
  42971. default: true
  42972. },
  42973. ]
  42974. ))
  42975. characterMakers.push(() => makeCharacter(
  42976. { name: "Zorkaiju", species: ["kaiju", "cat"], tags: ["anthro"] },
  42977. {
  42978. front: {
  42979. height: math.unit(325, "feet"),
  42980. name: "Front",
  42981. image: {
  42982. source: "./media/characters/zorkaiju/front.svg",
  42983. extra: 1955/1814,
  42984. bottom: 40/1995
  42985. }
  42986. },
  42987. frontExtended: {
  42988. height: math.unit(325, "feet"),
  42989. name: "Front (Extended)",
  42990. image: {
  42991. source: "./media/characters/zorkaiju/front-extended.svg",
  42992. extra: 1955/1814,
  42993. bottom: 40/1995
  42994. }
  42995. },
  42996. side: {
  42997. height: math.unit(325, "feet"),
  42998. name: "Side",
  42999. image: {
  43000. source: "./media/characters/zorkaiju/side.svg",
  43001. extra: 1495/1396,
  43002. bottom: 17/1512
  43003. }
  43004. },
  43005. sideExtended: {
  43006. height: math.unit(325, "feet"),
  43007. name: "Side (Extended)",
  43008. image: {
  43009. source: "./media/characters/zorkaiju/side-extended.svg",
  43010. extra: 1495/1396,
  43011. bottom: 17/1512
  43012. }
  43013. },
  43014. back: {
  43015. height: math.unit(325, "feet"),
  43016. name: "Back",
  43017. image: {
  43018. source: "./media/characters/zorkaiju/back.svg",
  43019. extra: 1959/1821,
  43020. bottom: 31/1990
  43021. }
  43022. },
  43023. backExtended: {
  43024. height: math.unit(325, "feet"),
  43025. name: "Back (Extended)",
  43026. image: {
  43027. source: "./media/characters/zorkaiju/back-extended.svg",
  43028. extra: 1959/1821,
  43029. bottom: 31/1990
  43030. }
  43031. },
  43032. hand: {
  43033. height: math.unit(58.4, "feet"),
  43034. name: "Hand",
  43035. image: {
  43036. source: "./media/characters/zorkaiju/hand.svg"
  43037. }
  43038. },
  43039. handExtended: {
  43040. height: math.unit(61.4, "feet"),
  43041. name: "Hand (Extended)",
  43042. image: {
  43043. source: "./media/characters/zorkaiju/hand-extended.svg"
  43044. }
  43045. },
  43046. foot: {
  43047. height: math.unit(95, "feet"),
  43048. name: "Foot",
  43049. image: {
  43050. source: "./media/characters/zorkaiju/foot.svg"
  43051. }
  43052. },
  43053. leftArm: {
  43054. height: math.unit(59, "feet"),
  43055. name: "Left Arm",
  43056. image: {
  43057. source: "./media/characters/zorkaiju/left-arm.svg"
  43058. }
  43059. },
  43060. rightArm: {
  43061. height: math.unit(59, "feet"),
  43062. name: "Right Arm",
  43063. image: {
  43064. source: "./media/characters/zorkaiju/right-arm.svg"
  43065. }
  43066. },
  43067. leftArmExtended: {
  43068. height: math.unit(59 * 1.033546, "feet"),
  43069. name: "Left Arm (Extended)",
  43070. image: {
  43071. source: "./media/characters/zorkaiju/left-arm-extended.svg"
  43072. }
  43073. },
  43074. rightArmExtended: {
  43075. height: math.unit(59 * 1.0496, "feet"),
  43076. name: "Right Arm (Extended)",
  43077. image: {
  43078. source: "./media/characters/zorkaiju/right-arm-extended.svg"
  43079. }
  43080. },
  43081. tail: {
  43082. height: math.unit(104, "feet"),
  43083. name: "Tail",
  43084. image: {
  43085. source: "./media/characters/zorkaiju/tail.svg"
  43086. }
  43087. },
  43088. tailExtended: {
  43089. height: math.unit(104, "feet"),
  43090. name: "Tail (Extended)",
  43091. image: {
  43092. source: "./media/characters/zorkaiju/tail-extended.svg"
  43093. }
  43094. },
  43095. tailBottom: {
  43096. height: math.unit(104, "feet"),
  43097. name: "Tail Bottom",
  43098. image: {
  43099. source: "./media/characters/zorkaiju/tail-bottom.svg"
  43100. }
  43101. },
  43102. crystal: {
  43103. height: math.unit(27.54, "feet"),
  43104. name: "Crystal",
  43105. image: {
  43106. source: "./media/characters/zorkaiju/crystal.svg"
  43107. }
  43108. },
  43109. },
  43110. [
  43111. {
  43112. name: "Kaiju",
  43113. height: math.unit(325, "feet"),
  43114. default: true
  43115. },
  43116. ]
  43117. ))
  43118. characterMakers.push(() => makeCharacter(
  43119. { name: "Bailey Belfry", species: ["townsend-big-eared-bat"], tags: ["anthro"] },
  43120. {
  43121. front: {
  43122. height: math.unit(6 + 1/12, "feet"),
  43123. weight: math.unit(115, "lb"),
  43124. name: "Front",
  43125. image: {
  43126. source: "./media/characters/bailey-belfry/front.svg",
  43127. extra: 1240/1121,
  43128. bottom: 101/1341
  43129. }
  43130. },
  43131. },
  43132. [
  43133. {
  43134. name: "Normal",
  43135. height: math.unit(6 + 1/12, "feet"),
  43136. default: true
  43137. },
  43138. ]
  43139. ))
  43140. characterMakers.push(() => makeCharacter(
  43141. { name: "Blacky", species: ["cat", "dragon"], tags: ["feral"] },
  43142. {
  43143. side: {
  43144. height: math.unit(4, "meters"),
  43145. weight: math.unit(250, "kg"),
  43146. name: "Side",
  43147. image: {
  43148. source: "./media/characters/blacky/side.svg",
  43149. extra: 1027/919,
  43150. bottom: 43/1070
  43151. }
  43152. },
  43153. maw: {
  43154. height: math.unit(1, "meters"),
  43155. name: "Maw",
  43156. image: {
  43157. source: "./media/characters/blacky/maw.svg"
  43158. }
  43159. },
  43160. paw: {
  43161. height: math.unit(1, "meters"),
  43162. name: "Paw",
  43163. image: {
  43164. source: "./media/characters/blacky/paw.svg"
  43165. }
  43166. },
  43167. },
  43168. [
  43169. {
  43170. name: "Normal",
  43171. height: math.unit(4, "meters"),
  43172. default: true
  43173. },
  43174. ]
  43175. ))
  43176. characterMakers.push(() => makeCharacter(
  43177. { name: "Thux-Ei", species: ["fox"], tags: ["anthro"] },
  43178. {
  43179. front: {
  43180. height: math.unit(170, "cm"),
  43181. weight: math.unit(66, "kg"),
  43182. name: "Front",
  43183. image: {
  43184. source: "./media/characters/thux-ei/front.svg",
  43185. extra: 1109/1011,
  43186. bottom: 8/1117
  43187. }
  43188. },
  43189. },
  43190. [
  43191. {
  43192. name: "Normal",
  43193. height: math.unit(170, "cm"),
  43194. default: true
  43195. },
  43196. ]
  43197. ))
  43198. characterMakers.push(() => makeCharacter(
  43199. { name: "Roxanne Voltaire", species: ["jaguar"], tags: ["anthro"] },
  43200. {
  43201. front: {
  43202. height: math.unit(5, "feet"),
  43203. weight: math.unit(120, "lb"),
  43204. name: "Front",
  43205. image: {
  43206. source: "./media/characters/roxanne-voltaire/front.svg",
  43207. extra: 1901/1779,
  43208. bottom: 53/1954
  43209. }
  43210. },
  43211. },
  43212. [
  43213. {
  43214. name: "Normal",
  43215. height: math.unit(5, "feet"),
  43216. default: true
  43217. },
  43218. {
  43219. name: "Giant",
  43220. height: math.unit(50, "feet")
  43221. },
  43222. {
  43223. name: "Titan",
  43224. height: math.unit(500, "feet")
  43225. },
  43226. {
  43227. name: "Macro",
  43228. height: math.unit(5000, "feet")
  43229. },
  43230. {
  43231. name: "Megamacro",
  43232. height: math.unit(50000, "feet")
  43233. },
  43234. {
  43235. name: "Gigamacro",
  43236. height: math.unit(500000, "feet")
  43237. },
  43238. {
  43239. name: "Teramacro",
  43240. height: math.unit(5e6, "feet")
  43241. },
  43242. ]
  43243. ))
  43244. characterMakers.push(() => makeCharacter(
  43245. { name: "Squeaks", species: ["rough-collie"], tags: ["anthro"] },
  43246. {
  43247. front: {
  43248. height: math.unit(6 + 2/12, "feet"),
  43249. name: "Front",
  43250. image: {
  43251. source: "./media/characters/squeaks/front.svg",
  43252. extra: 1823/1768,
  43253. bottom: 138/1961
  43254. }
  43255. },
  43256. },
  43257. [
  43258. {
  43259. name: "Micro",
  43260. height: math.unit(0.5, "inches")
  43261. },
  43262. {
  43263. name: "Normal",
  43264. height: math.unit(6 + 2/12, "feet"),
  43265. default: true
  43266. },
  43267. {
  43268. name: "Macro",
  43269. height: math.unit(600, "feet")
  43270. },
  43271. ]
  43272. ))
  43273. characterMakers.push(() => makeCharacter(
  43274. { name: "Archinger", species: ["squirrel"], tags: ["anthro"] },
  43275. {
  43276. front: {
  43277. height: math.unit(1.72, "meters"),
  43278. name: "Front",
  43279. image: {
  43280. source: "./media/characters/archinger/front.svg",
  43281. extra: 1861/1675,
  43282. bottom: 125/1986
  43283. }
  43284. },
  43285. back: {
  43286. height: math.unit(1.72, "meters"),
  43287. name: "Back",
  43288. image: {
  43289. source: "./media/characters/archinger/back.svg",
  43290. extra: 1844/1701,
  43291. bottom: 104/1948
  43292. }
  43293. },
  43294. cock: {
  43295. height: math.unit(0.59, "feet"),
  43296. name: "Cock",
  43297. image: {
  43298. source: "./media/characters/archinger/cock.svg"
  43299. }
  43300. },
  43301. },
  43302. [
  43303. {
  43304. name: "Normal",
  43305. height: math.unit(1.72, "meters"),
  43306. default: true
  43307. },
  43308. {
  43309. name: "Macro",
  43310. height: math.unit(84, "meters")
  43311. },
  43312. {
  43313. name: "Macro+",
  43314. height: math.unit(112, "meters")
  43315. },
  43316. {
  43317. name: "Macro++",
  43318. height: math.unit(960, "meters")
  43319. },
  43320. {
  43321. name: "Macro+++",
  43322. height: math.unit(4, "km")
  43323. },
  43324. {
  43325. name: "Macro++++",
  43326. height: math.unit(48, "km")
  43327. },
  43328. {
  43329. name: "Macro+++++",
  43330. height: math.unit(4500, "km")
  43331. },
  43332. ]
  43333. ))
  43334. characterMakers.push(() => makeCharacter(
  43335. { name: "Alsnapz", species: ["avian"], tags: ["anthro"] },
  43336. {
  43337. front: {
  43338. height: math.unit(5 + 5/12, "feet"),
  43339. name: "Front",
  43340. image: {
  43341. source: "./media/characters/alsnapz/front.svg",
  43342. extra: 1157/1065,
  43343. bottom: 42/1199
  43344. }
  43345. },
  43346. },
  43347. [
  43348. {
  43349. name: "Normal",
  43350. height: math.unit(5 + 5/12, "feet"),
  43351. default: true
  43352. },
  43353. ]
  43354. ))
  43355. characterMakers.push(() => makeCharacter(
  43356. { name: "Mag", species: ["magpie"], tags: ["feral"] },
  43357. {
  43358. side: {
  43359. height: math.unit(3.2, "earths"),
  43360. name: "Side",
  43361. image: {
  43362. source: "./media/characters/mag/side.svg",
  43363. extra: 1331/1008,
  43364. bottom: 52/1383
  43365. }
  43366. },
  43367. wing: {
  43368. height: math.unit(1.94, "earths"),
  43369. name: "Wing",
  43370. image: {
  43371. source: "./media/characters/mag/wing.svg"
  43372. }
  43373. },
  43374. dick: {
  43375. height: math.unit(1.8, "earths"),
  43376. name: "Dick",
  43377. image: {
  43378. source: "./media/characters/mag/dick.svg"
  43379. }
  43380. },
  43381. ass: {
  43382. height: math.unit(1.33, "earths"),
  43383. name: "Ass",
  43384. image: {
  43385. source: "./media/characters/mag/ass.svg"
  43386. }
  43387. },
  43388. head: {
  43389. height: math.unit(1.1, "earths"),
  43390. name: "Head",
  43391. image: {
  43392. source: "./media/characters/mag/head.svg"
  43393. }
  43394. },
  43395. maw: {
  43396. height: math.unit(1.62, "earths"),
  43397. name: "Maw",
  43398. image: {
  43399. source: "./media/characters/mag/maw.svg"
  43400. }
  43401. },
  43402. },
  43403. [
  43404. {
  43405. name: "Small",
  43406. height: math.unit(162, "feet")
  43407. },
  43408. {
  43409. name: "Normal",
  43410. height: math.unit(3.2, "earths"),
  43411. default: true
  43412. },
  43413. ]
  43414. ))
  43415. characterMakers.push(() => makeCharacter(
  43416. { name: "Vorrel Harroc", species: ["t-rex"], tags: ["anthro"] },
  43417. {
  43418. front: {
  43419. height: math.unit(512, "feet"),
  43420. weight: math.unit(63509, "tonnes"),
  43421. name: "Front",
  43422. image: {
  43423. source: "./media/characters/vorrel-harroc/front.svg",
  43424. extra: 1075/1063,
  43425. bottom: 62/1137
  43426. }
  43427. },
  43428. },
  43429. [
  43430. {
  43431. name: "Normal",
  43432. height: math.unit(10, "feet")
  43433. },
  43434. {
  43435. name: "Macro",
  43436. height: math.unit(512, "feet"),
  43437. default: true
  43438. },
  43439. {
  43440. name: "Megamacro",
  43441. height: math.unit(256, "miles")
  43442. },
  43443. {
  43444. name: "Gigamacro",
  43445. height: math.unit(4096, "miles")
  43446. },
  43447. ]
  43448. ))
  43449. characterMakers.push(() => makeCharacter(
  43450. { name: "Froimar", species: ["eastern-dragon"], tags: ["anthro"] },
  43451. {
  43452. side: {
  43453. height: math.unit(50, "feet"),
  43454. name: "Side",
  43455. image: {
  43456. source: "./media/characters/froimar/side.svg",
  43457. extra: 855/638,
  43458. bottom: 99/954
  43459. }
  43460. },
  43461. },
  43462. [
  43463. {
  43464. name: "Macro",
  43465. height: math.unit(50, "feet"),
  43466. default: true
  43467. },
  43468. ]
  43469. ))
  43470. characterMakers.push(() => makeCharacter(
  43471. { name: "Timothy", species: ["rabbit"], tags: ["anthro"] },
  43472. {
  43473. front: {
  43474. height: math.unit(210, "miles"),
  43475. name: "Front",
  43476. image: {
  43477. source: "./media/characters/timothy/front.svg",
  43478. extra: 1007/943,
  43479. bottom: 62/1069
  43480. }
  43481. },
  43482. frontSkirt: {
  43483. height: math.unit(210, "miles"),
  43484. name: "Front (Skirt)",
  43485. image: {
  43486. source: "./media/characters/timothy/front-skirt.svg",
  43487. extra: 1007/943,
  43488. bottom: 62/1069
  43489. }
  43490. },
  43491. frontCoat: {
  43492. height: math.unit(210, "miles"),
  43493. name: "Front (Coat)",
  43494. image: {
  43495. source: "./media/characters/timothy/front-coat.svg",
  43496. extra: 1007/943,
  43497. bottom: 62/1069
  43498. }
  43499. },
  43500. },
  43501. [
  43502. {
  43503. name: "Macro",
  43504. height: math.unit(210, "miles"),
  43505. default: true
  43506. },
  43507. {
  43508. name: "Megamacro",
  43509. height: math.unit(210000, "miles")
  43510. },
  43511. ]
  43512. ))
  43513. characterMakers.push(() => makeCharacter(
  43514. { name: "Pyotr", species: ["fox"], tags: ["anthro"] },
  43515. {
  43516. front: {
  43517. height: math.unit(188, "feet"),
  43518. name: "Front",
  43519. image: {
  43520. source: "./media/characters/pyotr/front.svg",
  43521. extra: 1912/1826,
  43522. bottom: 18/1930
  43523. }
  43524. },
  43525. },
  43526. [
  43527. {
  43528. name: "Macro",
  43529. height: math.unit(188, "feet"),
  43530. default: true
  43531. },
  43532. {
  43533. name: "Megamacro",
  43534. height: math.unit(8, "miles")
  43535. },
  43536. ]
  43537. ))
  43538. characterMakers.push(() => makeCharacter(
  43539. { name: "Ackart", species: ["fox"], tags: ["taur"] },
  43540. {
  43541. side: {
  43542. height: math.unit(10, "feet"),
  43543. weight: math.unit(4500, "lb"),
  43544. name: "Side",
  43545. image: {
  43546. source: "./media/characters/ackart/side.svg",
  43547. extra: 1776/1668,
  43548. bottom: 116/1892
  43549. }
  43550. },
  43551. },
  43552. [
  43553. {
  43554. name: "Normal",
  43555. height: math.unit(10, "feet"),
  43556. default: true
  43557. },
  43558. ]
  43559. ))
  43560. characterMakers.push(() => makeCharacter(
  43561. { name: "Nolow", species: ["cheetah"], tags: ["taur"] },
  43562. {
  43563. side: {
  43564. height: math.unit(21, "feet"),
  43565. name: "Side",
  43566. image: {
  43567. source: "./media/characters/nolow/side.svg",
  43568. extra: 1484/1434,
  43569. bottom: 85/1569
  43570. }
  43571. },
  43572. sideErect: {
  43573. height: math.unit(21, "feet"),
  43574. name: "Side-erect",
  43575. image: {
  43576. source: "./media/characters/nolow/side-erect.svg",
  43577. extra: 1484/1434,
  43578. bottom: 85/1569
  43579. }
  43580. },
  43581. },
  43582. [
  43583. {
  43584. name: "Regular",
  43585. height: math.unit(12, "feet")
  43586. },
  43587. {
  43588. name: "Big Chee",
  43589. height: math.unit(21, "feet"),
  43590. default: true
  43591. },
  43592. ]
  43593. ))
  43594. characterMakers.push(() => makeCharacter(
  43595. { name: "Nines", species: ["kitsune"], tags: ["anthro"] },
  43596. {
  43597. front: {
  43598. height: math.unit(7, "feet"),
  43599. weight: math.unit(250, "lb"),
  43600. name: "Front",
  43601. image: {
  43602. source: "./media/characters/nines/front.svg",
  43603. extra: 1741/1607,
  43604. bottom: 41/1782
  43605. }
  43606. },
  43607. side: {
  43608. height: math.unit(7, "feet"),
  43609. weight: math.unit(250, "lb"),
  43610. name: "Side",
  43611. image: {
  43612. source: "./media/characters/nines/side.svg",
  43613. extra: 1854/1735,
  43614. bottom: 93/1947
  43615. }
  43616. },
  43617. back: {
  43618. height: math.unit(7, "feet"),
  43619. weight: math.unit(250, "lb"),
  43620. name: "Back",
  43621. image: {
  43622. source: "./media/characters/nines/back.svg",
  43623. extra: 1748/1615,
  43624. bottom: 20/1768
  43625. }
  43626. },
  43627. },
  43628. [
  43629. {
  43630. name: "Megamacro",
  43631. height: math.unit(99, "km"),
  43632. default: true
  43633. },
  43634. ]
  43635. ))
  43636. characterMakers.push(() => makeCharacter(
  43637. { name: "Zenith", species: ["civet", "hyena"], tags: ["anthro"] },
  43638. {
  43639. front: {
  43640. height: math.unit(5 + 10/12, "feet"),
  43641. weight: math.unit(210, "lb"),
  43642. name: "Front",
  43643. image: {
  43644. source: "./media/characters/zenith/front.svg",
  43645. extra: 1531/1452,
  43646. bottom: 198/1729
  43647. }
  43648. },
  43649. back: {
  43650. height: math.unit(5 + 10/12, "feet"),
  43651. weight: math.unit(210, "lb"),
  43652. name: "Back",
  43653. image: {
  43654. source: "./media/characters/zenith/back.svg",
  43655. extra: 1571/1487,
  43656. bottom: 75/1646
  43657. }
  43658. },
  43659. },
  43660. [
  43661. {
  43662. name: "Normal",
  43663. height: math.unit(5 + 10/12, "feet"),
  43664. default: true
  43665. }
  43666. ]
  43667. ))
  43668. characterMakers.push(() => makeCharacter(
  43669. { name: "Jasper", species: ["cat"], tags: ["anthro"] },
  43670. {
  43671. front: {
  43672. height: math.unit(4, "feet"),
  43673. weight: math.unit(60, "lb"),
  43674. name: "Front",
  43675. image: {
  43676. source: "./media/characters/jasper/front.svg",
  43677. extra: 1450/1379,
  43678. bottom: 19/1469
  43679. }
  43680. },
  43681. },
  43682. [
  43683. {
  43684. name: "Normal",
  43685. height: math.unit(4, "feet"),
  43686. default: true
  43687. },
  43688. ]
  43689. ))
  43690. characterMakers.push(() => makeCharacter(
  43691. { name: "Tiberius Thyben", species: ["raccoon"], tags: ["anthro"] },
  43692. {
  43693. front: {
  43694. height: math.unit(6 + 5/12, "feet"),
  43695. weight: math.unit(290, "lb"),
  43696. name: "Front",
  43697. image: {
  43698. source: "./media/characters/tiberius-thyben/front.svg",
  43699. extra: 757/739,
  43700. bottom: 39/796
  43701. }
  43702. },
  43703. },
  43704. [
  43705. {
  43706. name: "Micro",
  43707. height: math.unit(1.5, "inches")
  43708. },
  43709. {
  43710. name: "Normal",
  43711. height: math.unit(6 + 5/12, "feet"),
  43712. default: true
  43713. },
  43714. {
  43715. name: "Macro",
  43716. height: math.unit(300, "feet")
  43717. },
  43718. ]
  43719. ))
  43720. characterMakers.push(() => makeCharacter(
  43721. { name: "Sabre", species: ["jackal"], tags: ["anthro"] },
  43722. {
  43723. front: {
  43724. height: math.unit(5 + 6/12, "feet"),
  43725. weight: math.unit(60, "kg"),
  43726. name: "Front",
  43727. image: {
  43728. source: "./media/characters/sabre/front.svg",
  43729. extra: 738/671,
  43730. bottom: 27/765
  43731. }
  43732. },
  43733. },
  43734. [
  43735. {
  43736. name: "Teeny",
  43737. height: math.unit(2, "inches")
  43738. },
  43739. {
  43740. name: "Smol",
  43741. height: math.unit(8, "inches")
  43742. },
  43743. {
  43744. name: "Normal",
  43745. height: math.unit(5 + 6/12, "feet"),
  43746. default: true
  43747. },
  43748. {
  43749. name: "Mini-Macro",
  43750. height: math.unit(15, "feet")
  43751. },
  43752. {
  43753. name: "Macro",
  43754. height: math.unit(50, "feet")
  43755. },
  43756. ]
  43757. ))
  43758. characterMakers.push(() => makeCharacter(
  43759. { name: "Charlie", species: ["deer"], tags: ["anthro"] },
  43760. {
  43761. front: {
  43762. height: math.unit(6 + 4/12, "feet"),
  43763. weight: math.unit(170, "lb"),
  43764. name: "Front",
  43765. image: {
  43766. source: "./media/characters/charlie/front.svg",
  43767. extra: 1348/1228,
  43768. bottom: 15/1363
  43769. }
  43770. },
  43771. },
  43772. [
  43773. {
  43774. name: "Macro",
  43775. height: math.unit(1700, "meters"),
  43776. default: true
  43777. },
  43778. {
  43779. name: "MegaMacro",
  43780. height: math.unit(20400, "meters")
  43781. },
  43782. ]
  43783. ))
  43784. characterMakers.push(() => makeCharacter(
  43785. { name: "Susan Grant", species: ["human"], tags: ["anthro"] },
  43786. {
  43787. front: {
  43788. height: math.unit(1.96, "meters"),
  43789. weight: math.unit(220, "lb"),
  43790. name: "Front",
  43791. image: {
  43792. source: "./media/characters/susan-grant/front.svg",
  43793. extra: 482/478,
  43794. bottom: 7/489
  43795. }
  43796. },
  43797. },
  43798. [
  43799. {
  43800. name: "Normal",
  43801. height: math.unit(1.96, "meters"),
  43802. default: true
  43803. },
  43804. {
  43805. name: "Macro",
  43806. height: math.unit(76.2, "meters")
  43807. },
  43808. {
  43809. name: "MegaMacro",
  43810. height: math.unit(305, "meters")
  43811. },
  43812. {
  43813. name: "GigaMacro",
  43814. height: math.unit(1220, "meters")
  43815. },
  43816. {
  43817. name: "SuperMacro",
  43818. height: math.unit(4878, "meters")
  43819. },
  43820. ]
  43821. ))
  43822. characterMakers.push(() => makeCharacter(
  43823. { name: "Axel Isanov", species: ["human"], tags: ["anthro"] },
  43824. {
  43825. front: {
  43826. height: math.unit(5 + 4/12, "feet"),
  43827. weight: math.unit(110, "lb"),
  43828. name: "Front",
  43829. image: {
  43830. source: "./media/characters/axel-isanov/front.svg",
  43831. extra: 1096/1065,
  43832. bottom: 13/1109
  43833. }
  43834. },
  43835. },
  43836. [
  43837. {
  43838. name: "Normal",
  43839. height: math.unit(5 + 4/12, "feet"),
  43840. default: true
  43841. },
  43842. ]
  43843. ))
  43844. characterMakers.push(() => makeCharacter(
  43845. { name: "Necahual", species: ["cat"], tags: ["anthro"] },
  43846. {
  43847. front: {
  43848. height: math.unit(9, "feet"),
  43849. weight: math.unit(467, "lb"),
  43850. name: "Front",
  43851. image: {
  43852. source: "./media/characters/necahual/front.svg",
  43853. extra: 920/873,
  43854. bottom: 26/946
  43855. }
  43856. },
  43857. back: {
  43858. height: math.unit(9, "feet"),
  43859. weight: math.unit(467, "lb"),
  43860. name: "Back",
  43861. image: {
  43862. source: "./media/characters/necahual/back.svg",
  43863. extra: 930/884,
  43864. bottom: 16/946
  43865. }
  43866. },
  43867. frontUnderwear: {
  43868. height: math.unit(9, "feet"),
  43869. weight: math.unit(467, "lb"),
  43870. name: "Front (Underwear)",
  43871. image: {
  43872. source: "./media/characters/necahual/front-underwear.svg",
  43873. extra: 920/873,
  43874. bottom: 26/946
  43875. }
  43876. },
  43877. frontDressed: {
  43878. height: math.unit(9, "feet"),
  43879. weight: math.unit(467, "lb"),
  43880. name: "Front (Dressed)",
  43881. image: {
  43882. source: "./media/characters/necahual/front-dressed.svg",
  43883. extra: 920/873,
  43884. bottom: 26/946
  43885. }
  43886. },
  43887. },
  43888. [
  43889. {
  43890. name: "Comprsesed",
  43891. height: math.unit(9, "feet")
  43892. },
  43893. {
  43894. name: "Natural",
  43895. height: math.unit(15, "feet"),
  43896. default: true
  43897. },
  43898. {
  43899. name: "Boosted",
  43900. height: math.unit(50, "feet")
  43901. },
  43902. {
  43903. name: "Boosted+",
  43904. height: math.unit(150, "feet")
  43905. },
  43906. {
  43907. name: "Max",
  43908. height: math.unit(500, "feet")
  43909. },
  43910. ]
  43911. ))
  43912. characterMakers.push(() => makeCharacter(
  43913. { name: "Theo Acacia", species: ["giraffe"], tags: ["anthro"] },
  43914. {
  43915. front: {
  43916. height: math.unit(22 + 1/12, "feet"),
  43917. weight: math.unit(3200, "lb"),
  43918. name: "Front",
  43919. image: {
  43920. source: "./media/characters/theo-acacia/front.svg",
  43921. extra: 1796/1741,
  43922. bottom: 83/1879
  43923. }
  43924. },
  43925. frontUnderwear: {
  43926. height: math.unit(22 + 1/12, "feet"),
  43927. weight: math.unit(3200, "lb"),
  43928. name: "Front (Underwear)",
  43929. image: {
  43930. source: "./media/characters/theo-acacia/front-underwear.svg",
  43931. extra: 1796/1741,
  43932. bottom: 83/1879
  43933. }
  43934. },
  43935. frontNude: {
  43936. height: math.unit(22 + 1/12, "feet"),
  43937. weight: math.unit(3200, "lb"),
  43938. name: "Front (Nude)",
  43939. image: {
  43940. source: "./media/characters/theo-acacia/front-nude.svg",
  43941. extra: 1796/1741,
  43942. bottom: 83/1879
  43943. }
  43944. },
  43945. },
  43946. [
  43947. {
  43948. name: "Normal",
  43949. height: math.unit(22 + 1/12, "feet"),
  43950. default: true
  43951. },
  43952. ]
  43953. ))
  43954. characterMakers.push(() => makeCharacter(
  43955. { name: "Astra", species: ["jackal", "umbreon"], tags: ["anthro"] },
  43956. {
  43957. front: {
  43958. height: math.unit(20, "feet"),
  43959. name: "Front",
  43960. image: {
  43961. source: "./media/characters/astra/front.svg",
  43962. extra: 1850/1714,
  43963. bottom: 106/1956
  43964. }
  43965. },
  43966. frontUndressed: {
  43967. height: math.unit(20, "feet"),
  43968. name: "Front (Undressed)",
  43969. image: {
  43970. source: "./media/characters/astra/front-undressed.svg",
  43971. extra: 1926/1749,
  43972. bottom: 0/1926
  43973. }
  43974. },
  43975. hand: {
  43976. height: math.unit(1.53, "feet"),
  43977. name: "Hand",
  43978. image: {
  43979. source: "./media/characters/astra/hand.svg"
  43980. }
  43981. },
  43982. paw: {
  43983. height: math.unit(1.53, "feet"),
  43984. name: "Paw",
  43985. image: {
  43986. source: "./media/characters/astra/paw.svg"
  43987. }
  43988. },
  43989. },
  43990. [
  43991. {
  43992. name: "Smallest",
  43993. height: math.unit(20, "feet")
  43994. },
  43995. {
  43996. name: "Normal",
  43997. height: math.unit(1e9, "miles"),
  43998. default: true
  43999. },
  44000. {
  44001. name: "Larger",
  44002. height: math.unit(5, "multiverses")
  44003. },
  44004. {
  44005. name: "Largest",
  44006. height: math.unit(1e9, "multiverses")
  44007. },
  44008. ]
  44009. ))
  44010. characterMakers.push(() => makeCharacter(
  44011. { name: "Breanna", species: ["jackal", "umbreon"], tags: ["anthro"] },
  44012. {
  44013. front: {
  44014. height: math.unit(8, "feet"),
  44015. name: "Front",
  44016. image: {
  44017. source: "./media/characters/breanna/front.svg",
  44018. extra: 1912/1632,
  44019. bottom: 33/1945
  44020. }
  44021. },
  44022. },
  44023. [
  44024. {
  44025. name: "Smallest",
  44026. height: math.unit(8, "feet")
  44027. },
  44028. {
  44029. name: "Normal",
  44030. height: math.unit(1, "mile"),
  44031. default: true
  44032. },
  44033. {
  44034. name: "Maximum",
  44035. height: math.unit(1500000000000, "lightyears")
  44036. },
  44037. ]
  44038. ))
  44039. characterMakers.push(() => makeCharacter(
  44040. { name: "Cai", species: ["fox"], tags: ["anthro"] },
  44041. {
  44042. front: {
  44043. height: math.unit(5 + 11/12, "feet"),
  44044. weight: math.unit(155, "lb"),
  44045. name: "Front",
  44046. image: {
  44047. source: "./media/characters/cai/front.svg",
  44048. extra: 1823/1702,
  44049. bottom: 32/1855
  44050. }
  44051. },
  44052. back: {
  44053. height: math.unit(5 + 11/12, "feet"),
  44054. weight: math.unit(155, "lb"),
  44055. name: "Back",
  44056. image: {
  44057. source: "./media/characters/cai/back.svg",
  44058. extra: 1809/1708,
  44059. bottom: 31/1840
  44060. }
  44061. },
  44062. },
  44063. [
  44064. {
  44065. name: "Normal",
  44066. height: math.unit(5 + 11/12, "feet"),
  44067. default: true
  44068. },
  44069. {
  44070. name: "Big",
  44071. height: math.unit(15, "feet")
  44072. },
  44073. {
  44074. name: "Macro",
  44075. height: math.unit(200, "feet")
  44076. },
  44077. ]
  44078. ))
  44079. characterMakers.push(() => makeCharacter(
  44080. { name: "Zanna Virtuedòttir", species: ["tiefling"], tags: ["anthro"] },
  44081. {
  44082. front: {
  44083. height: math.unit(5 + 6/12, "feet"),
  44084. weight: math.unit(160, "lb"),
  44085. name: "Front",
  44086. image: {
  44087. source: "./media/characters/zanna-virtuedòttir/front.svg",
  44088. extra: 1227/1174,
  44089. bottom: 37/1264
  44090. }
  44091. },
  44092. },
  44093. [
  44094. {
  44095. name: "Macro",
  44096. height: math.unit(444, "meters"),
  44097. default: true
  44098. },
  44099. ]
  44100. ))
  44101. characterMakers.push(() => makeCharacter(
  44102. { name: "Rex", species: ["dragon"], tags: ["anthro"] },
  44103. {
  44104. front: {
  44105. height: math.unit(18 + 7/12, "feet"),
  44106. name: "Front",
  44107. image: {
  44108. source: "./media/characters/rex/front.svg",
  44109. extra: 1941/1807,
  44110. bottom: 66/2007
  44111. }
  44112. },
  44113. back: {
  44114. height: math.unit(18 + 7/12, "feet"),
  44115. name: "Back",
  44116. image: {
  44117. source: "./media/characters/rex/back.svg",
  44118. extra: 1937/1822,
  44119. bottom: 42/1979
  44120. }
  44121. },
  44122. boot: {
  44123. height: math.unit(3.45, "feet"),
  44124. name: "Boot",
  44125. image: {
  44126. source: "./media/characters/rex/boot.svg"
  44127. }
  44128. },
  44129. paw: {
  44130. height: math.unit(4.17, "feet"),
  44131. name: "Paw",
  44132. image: {
  44133. source: "./media/characters/rex/paw.svg"
  44134. }
  44135. },
  44136. head: {
  44137. height: math.unit(6.728, "feet"),
  44138. name: "Head",
  44139. image: {
  44140. source: "./media/characters/rex/head.svg"
  44141. }
  44142. },
  44143. },
  44144. [
  44145. {
  44146. name: "Nano",
  44147. height: math.unit(18 + 7/12, "feet")
  44148. },
  44149. {
  44150. name: "Micro",
  44151. height: math.unit(1.5, "megameters")
  44152. },
  44153. {
  44154. name: "Normal",
  44155. height: math.unit(440, "megameters"),
  44156. default: true
  44157. },
  44158. {
  44159. name: "Macro",
  44160. height: math.unit(2.5, "gigameters")
  44161. },
  44162. {
  44163. name: "Gigamacro",
  44164. height: math.unit(2, "galaxies")
  44165. },
  44166. ]
  44167. ))
  44168. characterMakers.push(() => makeCharacter(
  44169. { name: "Silverwing", species: ["lugia"], tags: ["feral"] },
  44170. {
  44171. side: {
  44172. height: math.unit(32, "feet"),
  44173. weight: math.unit(250000, "lb"),
  44174. name: "Side",
  44175. image: {
  44176. source: "./media/characters/silverwing/side.svg",
  44177. extra: 1100/1019,
  44178. bottom: 204/1304
  44179. }
  44180. },
  44181. },
  44182. [
  44183. {
  44184. name: "Normal",
  44185. height: math.unit(32, "feet"),
  44186. default: true
  44187. },
  44188. ]
  44189. ))
  44190. characterMakers.push(() => makeCharacter(
  44191. { name: "Tristan Hawthorne", species: ["labrador", "skunk"], tags: ["anthro"] },
  44192. {
  44193. front: {
  44194. height: math.unit(6 + 6/12, "feet"),
  44195. weight: math.unit(350, "lb"),
  44196. name: "Front",
  44197. image: {
  44198. source: "./media/characters/tristan-hawthorne/front.svg",
  44199. extra: 1159/1124,
  44200. bottom: 37/1196
  44201. },
  44202. form: "labrador",
  44203. default: true
  44204. },
  44205. skunkFront: {
  44206. height: math.unit(4 + 6/12, "feet"),
  44207. weight: math.unit(120, "lb"),
  44208. name: "Front",
  44209. image: {
  44210. source: "./media/characters/tristan-hawthorne/skunk-front.svg",
  44211. extra: 1609/1551,
  44212. bottom: 169/1778
  44213. },
  44214. form: "skunk",
  44215. default: true
  44216. },
  44217. },
  44218. [
  44219. {
  44220. name: "Normal",
  44221. height: math.unit(6 + 6/12, "feet"),
  44222. form: "labrador",
  44223. default: true
  44224. },
  44225. {
  44226. name: "Normal",
  44227. height: math.unit(4 + 6/12, "feet"),
  44228. form: "skunk",
  44229. default: true
  44230. },
  44231. ],
  44232. {
  44233. "labrador": {
  44234. name: "Labrador",
  44235. default: true
  44236. },
  44237. "skunk": {
  44238. name: "Skunk"
  44239. }
  44240. }
  44241. ))
  44242. characterMakers.push(() => makeCharacter(
  44243. { name: "Mizu", species: ["sika-deer"], tags: ["anthro"] },
  44244. {
  44245. front: {
  44246. height: math.unit(5 + 11/12, "feet"),
  44247. weight: math.unit(190, "lb"),
  44248. name: "Front",
  44249. image: {
  44250. source: "./media/characters/mizu/front.svg",
  44251. extra: 1988/1788,
  44252. bottom: 14/2002
  44253. }
  44254. },
  44255. },
  44256. [
  44257. {
  44258. name: "Normal",
  44259. height: math.unit(5 + 11/12, "feet"),
  44260. default: true
  44261. },
  44262. ]
  44263. ))
  44264. characterMakers.push(() => makeCharacter(
  44265. { name: "Dechroma", species: ["dragon", "plant"], tags: ["anthro"] },
  44266. {
  44267. front: {
  44268. height: math.unit(1.7, "feet"),
  44269. weight: math.unit(50, "lb"),
  44270. name: "Front",
  44271. image: {
  44272. source: "./media/characters/dechroma/front.svg",
  44273. extra: 1095/859,
  44274. bottom: 64/1159
  44275. }
  44276. },
  44277. },
  44278. [
  44279. {
  44280. name: "Normal",
  44281. height: math.unit(1.7, "feet"),
  44282. default: true
  44283. },
  44284. ]
  44285. ))
  44286. characterMakers.push(() => makeCharacter(
  44287. { name: "Veluren Thanazel", species: ["dragon"], tags: ["feral"] },
  44288. {
  44289. side: {
  44290. height: math.unit(30, "feet"),
  44291. name: "Side",
  44292. image: {
  44293. source: "./media/characters/veluren-thanazel/side.svg",
  44294. extra: 1611/633,
  44295. bottom: 118/1729
  44296. }
  44297. },
  44298. front: {
  44299. height: math.unit(30, "feet"),
  44300. name: "Front",
  44301. image: {
  44302. source: "./media/characters/veluren-thanazel/front.svg",
  44303. extra: 1486/636,
  44304. bottom: 238/1724
  44305. }
  44306. },
  44307. head: {
  44308. height: math.unit(21.4, "feet"),
  44309. name: "Head",
  44310. image: {
  44311. source: "./media/characters/veluren-thanazel/head.svg"
  44312. }
  44313. },
  44314. genitals: {
  44315. height: math.unit(19.4, "feet"),
  44316. name: "Genitals",
  44317. image: {
  44318. source: "./media/characters/veluren-thanazel/genitals.svg"
  44319. }
  44320. },
  44321. },
  44322. [
  44323. {
  44324. name: "Social",
  44325. height: math.unit(6, "feet")
  44326. },
  44327. {
  44328. name: "Play",
  44329. height: math.unit(12, "feet")
  44330. },
  44331. {
  44332. name: "True",
  44333. height: math.unit(30, "feet"),
  44334. default: true
  44335. },
  44336. ]
  44337. ))
  44338. characterMakers.push(() => makeCharacter(
  44339. { name: "Arcturas", species: ["dragon", "elemental"], tags: ["anthro"] },
  44340. {
  44341. front: {
  44342. height: math.unit(7 + 6/12, "feet"),
  44343. weight: math.unit(500, "kg"),
  44344. name: "Front",
  44345. image: {
  44346. source: "./media/characters/arcturas/front.svg",
  44347. extra: 1700/1500,
  44348. bottom: 145/1845
  44349. }
  44350. },
  44351. },
  44352. [
  44353. {
  44354. name: "Normal",
  44355. height: math.unit(7 + 6/12, "feet"),
  44356. default: true
  44357. },
  44358. ]
  44359. ))
  44360. characterMakers.push(() => makeCharacter(
  44361. { name: "Vitaen", species: ["zorgoia", "vampire"], tags: ["feral"] },
  44362. {
  44363. side: {
  44364. height: math.unit(6, "feet"),
  44365. weight: math.unit(2, "tons"),
  44366. name: "Side",
  44367. image: {
  44368. source: "./media/characters/vitaen/side.svg",
  44369. extra: 1157/617,
  44370. bottom: 122/1279
  44371. }
  44372. },
  44373. },
  44374. [
  44375. {
  44376. name: "Normal",
  44377. height: math.unit(6, "feet"),
  44378. default: true
  44379. },
  44380. ]
  44381. ))
  44382. characterMakers.push(() => makeCharacter(
  44383. { name: "Fia Dreamweaver", species: ["spireborn"], tags: ["anthro"] },
  44384. {
  44385. front: {
  44386. height: math.unit(19, "feet"),
  44387. name: "Front",
  44388. image: {
  44389. source: "./media/characters/fia-dreamweaver/front.svg",
  44390. extra: 1630/1504,
  44391. bottom: 25/1655
  44392. }
  44393. },
  44394. },
  44395. [
  44396. {
  44397. name: "Normal",
  44398. height: math.unit(19, "feet"),
  44399. default: true
  44400. },
  44401. ]
  44402. ))
  44403. characterMakers.push(() => makeCharacter(
  44404. { name: "Artan", species: ["fennec-fox"], tags: ["anthro"] },
  44405. {
  44406. front: {
  44407. height: math.unit(5 + 4/12, "feet"),
  44408. name: "Front",
  44409. image: {
  44410. source: "./media/characters/artan/front.svg",
  44411. extra: 1618/1535,
  44412. bottom: 46/1664
  44413. }
  44414. },
  44415. back: {
  44416. height: math.unit(5 + 4/12, "feet"),
  44417. name: "Back",
  44418. image: {
  44419. source: "./media/characters/artan/back.svg",
  44420. extra: 1618/1543,
  44421. bottom: 31/1649
  44422. }
  44423. },
  44424. },
  44425. [
  44426. {
  44427. name: "Normal",
  44428. height: math.unit(5 + 4/12, "feet"),
  44429. default: true
  44430. },
  44431. ]
  44432. ))
  44433. characterMakers.push(() => makeCharacter(
  44434. { name: "Silver (Dragon)", species: ["dragon"], tags: ["feral"] },
  44435. {
  44436. side: {
  44437. height: math.unit(182, "cm"),
  44438. weight: math.unit(1000, "lb"),
  44439. name: "Side",
  44440. image: {
  44441. source: "./media/characters/silver-dragon/side.svg",
  44442. extra: 710/287,
  44443. bottom: 88/798
  44444. }
  44445. },
  44446. },
  44447. [
  44448. {
  44449. name: "Normal",
  44450. height: math.unit(182, "cm"),
  44451. default: true
  44452. },
  44453. ]
  44454. ))
  44455. characterMakers.push(() => makeCharacter(
  44456. { name: "Zephyr", species: ["zorgoia"], tags: ["feral"] },
  44457. {
  44458. side: {
  44459. height: math.unit(6 + 6/12, "feet"),
  44460. weight: math.unit(1.5, "tons"),
  44461. name: "Side",
  44462. image: {
  44463. source: "./media/characters/zephyr/side.svg",
  44464. extra: 1433/586,
  44465. bottom: 109/1542
  44466. }
  44467. },
  44468. },
  44469. [
  44470. {
  44471. name: "Normal",
  44472. height: math.unit(6 + 6/12, "feet"),
  44473. default: true
  44474. },
  44475. ]
  44476. ))
  44477. characterMakers.push(() => makeCharacter(
  44478. { name: "Vixye", species: ["extraplanar"], tags: ["anthro"] },
  44479. {
  44480. side: {
  44481. height: math.unit(1, "feet"),
  44482. name: "Side",
  44483. image: {
  44484. source: "./media/characters/vixye/side.svg",
  44485. extra: 632/541,
  44486. bottom: 0/632
  44487. }
  44488. },
  44489. },
  44490. [
  44491. {
  44492. name: "Normal",
  44493. height: math.unit(1, "feet"),
  44494. default: true
  44495. },
  44496. {
  44497. name: "True",
  44498. height: math.unit(1e15, "multiverses")
  44499. },
  44500. ]
  44501. ))
  44502. characterMakers.push(() => makeCharacter(
  44503. { name: "Darla Mac Lochlainn", species: ["bear", "werebeast"], tags: ["anthro"] },
  44504. {
  44505. front: {
  44506. height: math.unit(8 + 2/12, "feet"),
  44507. weight: math.unit(650, "lb"),
  44508. name: "Front",
  44509. image: {
  44510. source: "./media/characters/darla-mac-lochlainn/front.svg",
  44511. extra: 1174/1137,
  44512. bottom: 82/1256
  44513. }
  44514. },
  44515. back: {
  44516. height: math.unit(8 + 2/12, "feet"),
  44517. weight: math.unit(650, "lb"),
  44518. name: "Back",
  44519. image: {
  44520. source: "./media/characters/darla-mac-lochlainn/back.svg",
  44521. extra: 1204/1157,
  44522. bottom: 46/1250
  44523. }
  44524. },
  44525. },
  44526. [
  44527. {
  44528. name: "Wildform",
  44529. height: math.unit(8 + 2/12, "feet"),
  44530. default: true
  44531. },
  44532. ]
  44533. ))
  44534. characterMakers.push(() => makeCharacter(
  44535. { name: "Cyphin", species: ["spireborn"], tags: ["anthro"] },
  44536. {
  44537. front: {
  44538. height: math.unit(18, "feet"),
  44539. name: "Front",
  44540. image: {
  44541. source: "./media/characters/cyphin/front.svg",
  44542. extra: 970/886,
  44543. bottom: 42/1012
  44544. }
  44545. },
  44546. back: {
  44547. height: math.unit(18, "feet"),
  44548. name: "Back",
  44549. image: {
  44550. source: "./media/characters/cyphin/back.svg",
  44551. extra: 1009/894,
  44552. bottom: 24/1033
  44553. }
  44554. },
  44555. head: {
  44556. height: math.unit(5.05, "feet"),
  44557. name: "Head",
  44558. image: {
  44559. source: "./media/characters/cyphin/head.svg"
  44560. }
  44561. },
  44562. tailbud: {
  44563. height: math.unit(5, "feet"),
  44564. name: "Tailbud",
  44565. image: {
  44566. source: "./media/characters/cyphin/tailbud.svg"
  44567. }
  44568. },
  44569. },
  44570. [
  44571. ]
  44572. ))
  44573. characterMakers.push(() => makeCharacter(
  44574. { name: "Raijin", species: ["zorgoia"], tags: ["feral"] },
  44575. {
  44576. side: {
  44577. height: math.unit(10, "feet"),
  44578. weight: math.unit(6, "tons"),
  44579. name: "Side",
  44580. image: {
  44581. source: "./media/characters/raijin/side.svg",
  44582. extra: 1529/613,
  44583. bottom: 337/1866
  44584. }
  44585. },
  44586. },
  44587. [
  44588. {
  44589. name: "Normal",
  44590. height: math.unit(10, "feet"),
  44591. default: true
  44592. },
  44593. ]
  44594. ))
  44595. characterMakers.push(() => makeCharacter(
  44596. { name: "Nilghais", species: ["felkin"], tags: ["feral"] },
  44597. {
  44598. side: {
  44599. height: math.unit(9, "feet"),
  44600. name: "Side",
  44601. image: {
  44602. source: "./media/characters/nilghais/side.svg",
  44603. extra: 1047/744,
  44604. bottom: 91/1138
  44605. }
  44606. },
  44607. head: {
  44608. height: math.unit(3.14, "feet"),
  44609. name: "Head",
  44610. image: {
  44611. source: "./media/characters/nilghais/head.svg"
  44612. }
  44613. },
  44614. mouth: {
  44615. height: math.unit(4.6, "feet"),
  44616. name: "Mouth",
  44617. image: {
  44618. source: "./media/characters/nilghais/mouth.svg"
  44619. }
  44620. },
  44621. wings: {
  44622. height: math.unit(24, "feet"),
  44623. name: "Wings",
  44624. image: {
  44625. source: "./media/characters/nilghais/wings.svg"
  44626. }
  44627. },
  44628. ass: {
  44629. height: math.unit(6.12, "feet"),
  44630. name: "Ass",
  44631. image: {
  44632. source: "./media/characters/nilghais/ass.svg"
  44633. }
  44634. },
  44635. },
  44636. [
  44637. {
  44638. name: "Normal",
  44639. height: math.unit(9, "feet"),
  44640. default: true
  44641. },
  44642. ]
  44643. ))
  44644. characterMakers.push(() => makeCharacter(
  44645. { name: "Zolgar", species: ["alien", "opossum", "bear"], tags: ["anthro"] },
  44646. {
  44647. regular: {
  44648. height: math.unit(16 + 2/12, "feet"),
  44649. weight: math.unit(2300, "lb"),
  44650. name: "Regular",
  44651. image: {
  44652. source: "./media/characters/zolgar/regular.svg",
  44653. extra: 1246/1004,
  44654. bottom: 124/1370
  44655. }
  44656. },
  44657. boxers: {
  44658. height: math.unit(16 + 2/12, "feet"),
  44659. weight: math.unit(2300, "lb"),
  44660. name: "Boxers",
  44661. image: {
  44662. source: "./media/characters/zolgar/boxers.svg",
  44663. extra: 1246/1004,
  44664. bottom: 124/1370
  44665. }
  44666. },
  44667. armored: {
  44668. height: math.unit(16 + 2/12, "feet"),
  44669. weight: math.unit(2300, "lb"),
  44670. name: "Armored",
  44671. image: {
  44672. source: "./media/characters/zolgar/armored.svg",
  44673. extra: 1246/1004,
  44674. bottom: 124/1370
  44675. }
  44676. },
  44677. goth: {
  44678. height: math.unit(16 + 2/12, "feet"),
  44679. weight: math.unit(2300, "lb"),
  44680. name: "Goth",
  44681. image: {
  44682. source: "./media/characters/zolgar/goth.svg",
  44683. extra: 1246/1004,
  44684. bottom: 124/1370
  44685. }
  44686. },
  44687. },
  44688. [
  44689. {
  44690. name: "Shrunken Down",
  44691. height: math.unit(9 + 2/12, "feet")
  44692. },
  44693. {
  44694. name: "Normal",
  44695. height: math.unit(16 + 2/12, "feet"),
  44696. default: true
  44697. },
  44698. ]
  44699. ))
  44700. characterMakers.push(() => makeCharacter(
  44701. { name: "Luca", species: ["zoroark", "lucario"], tags: ["anthro"] },
  44702. {
  44703. front: {
  44704. height: math.unit(6, "feet"),
  44705. weight: math.unit(168, "lb"),
  44706. name: "Front",
  44707. image: {
  44708. source: "./media/characters/luca/front.svg",
  44709. extra: 841/667,
  44710. bottom: 102/943
  44711. }
  44712. },
  44713. },
  44714. [
  44715. {
  44716. name: "Normal",
  44717. height: math.unit(6, "feet"),
  44718. default: true
  44719. },
  44720. ]
  44721. ))
  44722. characterMakers.push(() => makeCharacter(
  44723. { name: "Zezo", species: ["goo"], tags: ["feral"] },
  44724. {
  44725. side: {
  44726. height: math.unit(7 + 3/12, "feet"),
  44727. weight: math.unit(312, "lb"),
  44728. name: "Side",
  44729. image: {
  44730. source: "./media/characters/zezo/side.svg",
  44731. extra: 1192/1067,
  44732. bottom: 63/1255
  44733. }
  44734. },
  44735. },
  44736. [
  44737. {
  44738. name: "Normal",
  44739. height: math.unit(7 + 3/12, "feet"),
  44740. default: true
  44741. },
  44742. ]
  44743. ))
  44744. characterMakers.push(() => makeCharacter(
  44745. { name: "Mayso", species: ["dunnoh"], tags: ["anthro"] },
  44746. {
  44747. front: {
  44748. height: math.unit(5 + 5/12, "feet"),
  44749. weight: math.unit(170, "lb"),
  44750. name: "Front",
  44751. image: {
  44752. source: "./media/characters/mayso/front.svg",
  44753. extra: 1215/1108,
  44754. bottom: 16/1231
  44755. }
  44756. },
  44757. },
  44758. [
  44759. {
  44760. name: "Normal",
  44761. height: math.unit(5 + 5/12, "feet"),
  44762. default: true
  44763. },
  44764. ]
  44765. ))
  44766. characterMakers.push(() => makeCharacter(
  44767. { name: "Hess", species: ["gryphon"], tags: ["anthro"] },
  44768. {
  44769. front: {
  44770. height: math.unit(4 + 3/12, "feet"),
  44771. weight: math.unit(80, "lb"),
  44772. name: "Front",
  44773. image: {
  44774. source: "./media/characters/hess/front.svg",
  44775. extra: 1200/1123,
  44776. bottom: 16/1216
  44777. }
  44778. },
  44779. },
  44780. [
  44781. {
  44782. name: "Normal",
  44783. height: math.unit(4 + 3/12, "feet"),
  44784. default: true
  44785. },
  44786. ]
  44787. ))
  44788. characterMakers.push(() => makeCharacter(
  44789. { name: "Ashgar", species: ["bear", "lizard"], tags: ["anthro", "feral"] },
  44790. {
  44791. front: {
  44792. height: math.unit(1.9, "meters"),
  44793. name: "Front",
  44794. image: {
  44795. source: "./media/characters/ashgar/front.svg",
  44796. extra: 1177/1146,
  44797. bottom: 99/1276
  44798. }
  44799. },
  44800. back: {
  44801. height: math.unit(1.9, "meters"),
  44802. name: "Back",
  44803. image: {
  44804. source: "./media/characters/ashgar/back.svg",
  44805. extra: 1201/1183,
  44806. bottom: 53/1254
  44807. }
  44808. },
  44809. feral: {
  44810. height: math.unit(1.4, "meters"),
  44811. name: "Feral",
  44812. image: {
  44813. source: "./media/characters/ashgar/feral.svg",
  44814. extra: 370/345,
  44815. bottom: 45/415
  44816. }
  44817. },
  44818. },
  44819. [
  44820. {
  44821. name: "Normal",
  44822. height: math.unit(1.9, "meters"),
  44823. default: true
  44824. },
  44825. ]
  44826. ))
  44827. characterMakers.push(() => makeCharacter(
  44828. { name: "Phillip", species: ["wolf"], tags: ["anthro"] },
  44829. {
  44830. regular: {
  44831. height: math.unit(6, "feet"),
  44832. weight: math.unit(220, "lb"),
  44833. name: "Regular",
  44834. image: {
  44835. source: "./media/characters/phillip/regular.svg",
  44836. extra: 1373/1277,
  44837. bottom: 75/1448
  44838. }
  44839. },
  44840. dressed: {
  44841. height: math.unit(6, "feet"),
  44842. weight: math.unit(220, "lb"),
  44843. name: "Dressed",
  44844. image: {
  44845. source: "./media/characters/phillip/dressed.svg",
  44846. extra: 1373/1277,
  44847. bottom: 75/1448
  44848. }
  44849. },
  44850. paw: {
  44851. height: math.unit(1.44, "feet"),
  44852. name: "Paw",
  44853. image: {
  44854. source: "./media/characters/phillip/paw.svg"
  44855. }
  44856. },
  44857. },
  44858. [
  44859. {
  44860. name: "Normal",
  44861. height: math.unit(6, "feet"),
  44862. default: true
  44863. },
  44864. ]
  44865. ))
  44866. characterMakers.push(() => makeCharacter(
  44867. { name: "Uvula", species: ["dragon", "monster"], tags: ["feral"] },
  44868. {
  44869. side: {
  44870. height: math.unit(42, "feet"),
  44871. name: "Side",
  44872. image: {
  44873. source: "./media/characters/uvula/side.svg",
  44874. extra: 683/586,
  44875. bottom: 60/743
  44876. }
  44877. },
  44878. front: {
  44879. height: math.unit(42, "feet"),
  44880. name: "Front",
  44881. image: {
  44882. source: "./media/characters/uvula/front.svg",
  44883. extra: 705/613,
  44884. bottom: 54/759
  44885. }
  44886. },
  44887. maw: {
  44888. height: math.unit(23.5, "feet"),
  44889. name: "Maw",
  44890. image: {
  44891. source: "./media/characters/uvula/maw.svg"
  44892. }
  44893. },
  44894. },
  44895. [
  44896. {
  44897. name: "Original Size",
  44898. height: math.unit(14, "inches")
  44899. },
  44900. {
  44901. name: "Human Size",
  44902. height: math.unit(6, "feet")
  44903. },
  44904. {
  44905. name: "Big",
  44906. height: math.unit(42, "feet"),
  44907. default: true
  44908. },
  44909. {
  44910. name: "Bigger",
  44911. height: math.unit(100, "feet")
  44912. },
  44913. ]
  44914. ))
  44915. characterMakers.push(() => makeCharacter(
  44916. { name: "Lannah", species: ["wolf"], tags: ["anthro"] },
  44917. {
  44918. front: {
  44919. height: math.unit(5 + 11/12, "feet"),
  44920. name: "Front",
  44921. image: {
  44922. source: "./media/characters/lannah/front.svg",
  44923. extra: 1208/1113,
  44924. bottom: 97/1305
  44925. }
  44926. },
  44927. },
  44928. [
  44929. {
  44930. name: "Normal",
  44931. height: math.unit(5 + 11/12, "feet"),
  44932. default: true
  44933. },
  44934. ]
  44935. ))
  44936. characterMakers.push(() => makeCharacter(
  44937. { name: "Emberflame", species: ["ninetales"], tags: ["feral"] },
  44938. {
  44939. front: {
  44940. height: math.unit(6 + 3/12, "feet"),
  44941. weight: math.unit(3.5, "tons"),
  44942. name: "Front",
  44943. image: {
  44944. source: "./media/characters/emberflame/front.svg",
  44945. extra: 1198/672,
  44946. bottom: 82/1280
  44947. }
  44948. },
  44949. side: {
  44950. height: math.unit(6 + 3/12, "feet"),
  44951. weight: math.unit(3.5, "tons"),
  44952. name: "Side",
  44953. image: {
  44954. source: "./media/characters/emberflame/side.svg",
  44955. extra: 938/527,
  44956. bottom: 56/994
  44957. }
  44958. },
  44959. },
  44960. [
  44961. {
  44962. name: "Normal",
  44963. height: math.unit(6 + 3/12, "feet"),
  44964. default: true
  44965. },
  44966. ]
  44967. ))
  44968. characterMakers.push(() => makeCharacter(
  44969. { name: "Sophie Ambrose", species: ["zorgoia"], tags: ["feral"] },
  44970. {
  44971. side: {
  44972. height: math.unit(17.5, "feet"),
  44973. weight: math.unit(35, "tons"),
  44974. name: "Side",
  44975. image: {
  44976. source: "./media/characters/sophie-ambrose/side.svg",
  44977. extra: 1573/1242,
  44978. bottom: 71/1644
  44979. }
  44980. },
  44981. maw: {
  44982. height: math.unit(7.4, "feet"),
  44983. name: "Maw",
  44984. image: {
  44985. source: "./media/characters/sophie-ambrose/maw.svg"
  44986. }
  44987. },
  44988. },
  44989. [
  44990. {
  44991. name: "Normal",
  44992. height: math.unit(17.5, "feet"),
  44993. default: true
  44994. },
  44995. ]
  44996. ))
  44997. characterMakers.push(() => makeCharacter(
  44998. { name: "King Mugi", species: ["kaiju", "canine", "reptile"], tags: ["anthro"] },
  44999. {
  45000. front: {
  45001. height: math.unit(280, "feet"),
  45002. weight: math.unit(550, "tons"),
  45003. name: "Front",
  45004. image: {
  45005. source: "./media/characters/king-mugi/front.svg",
  45006. extra: 1102/947,
  45007. bottom: 104/1206
  45008. }
  45009. },
  45010. },
  45011. [
  45012. {
  45013. name: "King Mugi",
  45014. height: math.unit(280, "feet"),
  45015. default: true
  45016. },
  45017. ]
  45018. ))
  45019. characterMakers.push(() => makeCharacter(
  45020. { name: "Nova (Fox)", species: ["fox"], tags: ["anthro"] },
  45021. {
  45022. front: {
  45023. height: math.unit(64, "meters"),
  45024. name: "Front",
  45025. image: {
  45026. source: "./media/characters/nova-fox/front.svg",
  45027. extra: 1310/1246,
  45028. bottom: 65/1375
  45029. }
  45030. },
  45031. },
  45032. [
  45033. {
  45034. name: "Macro",
  45035. height: math.unit(64, "meters"),
  45036. default: true
  45037. },
  45038. ]
  45039. ))
  45040. characterMakers.push(() => makeCharacter(
  45041. { name: "Sam (Bat)", species: ["bat", "rat"], tags: ["anthro"] },
  45042. {
  45043. front: {
  45044. height: math.unit(6 + 3/12, "feet"),
  45045. weight: math.unit(170, "lb"),
  45046. name: "Front",
  45047. image: {
  45048. source: "./media/characters/sam-bat/front.svg",
  45049. extra: 1601/1411,
  45050. bottom: 125/1726
  45051. }
  45052. },
  45053. back: {
  45054. height: math.unit(6 + 3/12, "feet"),
  45055. weight: math.unit(170, "lb"),
  45056. name: "Back",
  45057. image: {
  45058. source: "./media/characters/sam-bat/back.svg",
  45059. extra: 1577/1405,
  45060. bottom: 58/1635
  45061. }
  45062. },
  45063. },
  45064. [
  45065. {
  45066. name: "Normal",
  45067. height: math.unit(6 + 3/12, "feet"),
  45068. default: true
  45069. },
  45070. ]
  45071. ))
  45072. characterMakers.push(() => makeCharacter(
  45073. { name: "Inari", species: ["eevee"], tags: ["feral"] },
  45074. {
  45075. front: {
  45076. height: math.unit(59, "feet"),
  45077. weight: math.unit(40000, "lb"),
  45078. name: "Front",
  45079. image: {
  45080. source: "./media/characters/inari/front.svg",
  45081. extra: 1884/1350,
  45082. bottom: 95/1979
  45083. }
  45084. },
  45085. },
  45086. [
  45087. {
  45088. name: "Gigantamax",
  45089. height: math.unit(59, "feet"),
  45090. default: true
  45091. },
  45092. ]
  45093. ))
  45094. characterMakers.push(() => makeCharacter(
  45095. { name: "Elizabeth", species: ["bat"], tags: ["anthro"] },
  45096. {
  45097. front: {
  45098. height: math.unit(5 + 8/12, "feet"),
  45099. name: "Front",
  45100. image: {
  45101. source: "./media/characters/elizabeth/front.svg",
  45102. extra: 1395/1298,
  45103. bottom: 54/1449
  45104. }
  45105. },
  45106. mouth: {
  45107. height: math.unit(1.97, "feet"),
  45108. name: "Mouth",
  45109. image: {
  45110. source: "./media/characters/elizabeth/mouth.svg"
  45111. }
  45112. },
  45113. foot: {
  45114. height: math.unit(1.17, "feet"),
  45115. name: "Foot",
  45116. image: {
  45117. source: "./media/characters/elizabeth/foot.svg"
  45118. }
  45119. },
  45120. },
  45121. [
  45122. {
  45123. name: "Normal",
  45124. height: math.unit(5 + 8/12, "feet"),
  45125. default: true
  45126. },
  45127. {
  45128. name: "Minimacro",
  45129. height: math.unit(18, "feet")
  45130. },
  45131. {
  45132. name: "Macro",
  45133. height: math.unit(180, "feet")
  45134. },
  45135. ]
  45136. ))
  45137. characterMakers.push(() => makeCharacter(
  45138. { name: "October Gossamer", species: ["cat"], tags: ["anthro"] },
  45139. {
  45140. front: {
  45141. height: math.unit(5 + 2/12, "feet"),
  45142. name: "Front",
  45143. image: {
  45144. source: "./media/characters/october-gossamer/front.svg",
  45145. extra: 505/454,
  45146. bottom: 7/512
  45147. }
  45148. },
  45149. back: {
  45150. height: math.unit(5 + 2/12, "feet"),
  45151. name: "Back",
  45152. image: {
  45153. source: "./media/characters/october-gossamer/back.svg",
  45154. extra: 501/454,
  45155. bottom: 11/512
  45156. }
  45157. },
  45158. },
  45159. [
  45160. {
  45161. name: "Normal",
  45162. height: math.unit(5 + 2/12, "feet"),
  45163. default: true
  45164. },
  45165. ]
  45166. ))
  45167. characterMakers.push(() => makeCharacter(
  45168. { name: "Epiglottis \"Glottis\" Larynx", species: ["dragon", "monster"], tags: ["anthro"] },
  45169. {
  45170. front: {
  45171. height: math.unit(5, "feet"),
  45172. name: "Front",
  45173. image: {
  45174. source: "./media/characters/epiglottis/front.svg",
  45175. extra: 923/849,
  45176. bottom: 17/940
  45177. }
  45178. },
  45179. },
  45180. [
  45181. {
  45182. name: "Original Size",
  45183. height: math.unit(10, "inches")
  45184. },
  45185. {
  45186. name: "Human Size",
  45187. height: math.unit(5, "feet"),
  45188. default: true
  45189. },
  45190. {
  45191. name: "Big",
  45192. height: math.unit(25, "feet")
  45193. },
  45194. {
  45195. name: "Bigger",
  45196. height: math.unit(50, "feet")
  45197. },
  45198. {
  45199. name: "oh lawd",
  45200. height: math.unit(75, "feet")
  45201. },
  45202. ]
  45203. ))
  45204. characterMakers.push(() => makeCharacter(
  45205. { name: "Lerm", species: ["skink"], tags: ["anthro"] },
  45206. {
  45207. front: {
  45208. height: math.unit(2 + 4/12, "feet"),
  45209. weight: math.unit(60, "lb"),
  45210. name: "Front",
  45211. image: {
  45212. source: "./media/characters/lerm/front.svg",
  45213. extra: 796/790,
  45214. bottom: 79/875
  45215. }
  45216. },
  45217. },
  45218. [
  45219. {
  45220. name: "Normal",
  45221. height: math.unit(2 + 4/12, "feet"),
  45222. default: true
  45223. },
  45224. ]
  45225. ))
  45226. characterMakers.push(() => makeCharacter(
  45227. { name: "Xena Nebadon", species: ["wolf"], tags: ["anthro"] },
  45228. {
  45229. front: {
  45230. height: math.unit(5.5, "feet"),
  45231. weight: math.unit(130, "lb"),
  45232. name: "Front",
  45233. image: {
  45234. source: "./media/characters/xena-nebadon/front.svg",
  45235. extra: 1828/1730,
  45236. bottom: 79/1907
  45237. }
  45238. },
  45239. },
  45240. [
  45241. {
  45242. name: "Tiny Puppy",
  45243. height: math.unit(3, "inches")
  45244. },
  45245. {
  45246. name: "Normal",
  45247. height: math.unit(5.5, "feet"),
  45248. default: true
  45249. },
  45250. {
  45251. name: "Lotta Lady",
  45252. height: math.unit(12, "feet")
  45253. },
  45254. {
  45255. name: "Pretty Big",
  45256. height: math.unit(100, "feet")
  45257. },
  45258. {
  45259. name: "Big",
  45260. height: math.unit(500, "feet")
  45261. },
  45262. {
  45263. name: "Skyscraper Toys",
  45264. height: math.unit(2500, "feet")
  45265. },
  45266. {
  45267. name: "Plane Catcher",
  45268. height: math.unit(8, "miles")
  45269. },
  45270. {
  45271. name: "Planet Toys",
  45272. height: math.unit(15, "earths")
  45273. },
  45274. {
  45275. name: "Stardust",
  45276. height: math.unit(0.25, "galaxies")
  45277. },
  45278. {
  45279. name: "Snacks",
  45280. height: math.unit(70, "universes")
  45281. },
  45282. ]
  45283. ))
  45284. characterMakers.push(() => makeCharacter(
  45285. { name: "Bounty", species: ["bat-eared-fox"], tags: ["anthro"] },
  45286. {
  45287. front: {
  45288. height: math.unit(1.6, "meters"),
  45289. weight: math.unit(60, "kg"),
  45290. name: "Front",
  45291. image: {
  45292. source: "./media/characters/bounty/front.svg",
  45293. extra: 1426/1308,
  45294. bottom: 15/1441
  45295. }
  45296. },
  45297. back: {
  45298. height: math.unit(1.6, "meters"),
  45299. weight: math.unit(60, "kg"),
  45300. name: "Back",
  45301. image: {
  45302. source: "./media/characters/bounty/back.svg",
  45303. extra: 1417/1307,
  45304. bottom: 8/1425
  45305. }
  45306. },
  45307. },
  45308. [
  45309. {
  45310. name: "Normal",
  45311. height: math.unit(1.6, "meters"),
  45312. default: true
  45313. },
  45314. {
  45315. name: "Macro",
  45316. height: math.unit(300, "meters")
  45317. },
  45318. ]
  45319. ))
  45320. characterMakers.push(() => makeCharacter(
  45321. { name: "Mochi", species: ["gryphon", "belted-kingfisher", "snow-leopard", "kaiju"], tags: ["anthro", "feral"] },
  45322. {
  45323. front: {
  45324. height: math.unit(2 + 8/12, "feet"),
  45325. weight: math.unit(15, "lb"),
  45326. name: "Front",
  45327. image: {
  45328. source: "./media/characters/mochi/front.svg",
  45329. extra: 1022/852,
  45330. bottom: 435/1457
  45331. }
  45332. },
  45333. back: {
  45334. height: math.unit(2 + 8/12, "feet"),
  45335. weight: math.unit(15, "lb"),
  45336. name: "Back",
  45337. image: {
  45338. source: "./media/characters/mochi/back.svg",
  45339. extra: 1335/1119,
  45340. bottom: 39/1374
  45341. }
  45342. },
  45343. bird: {
  45344. height: math.unit(2 + 8/12, "feet"),
  45345. weight: math.unit(15, "lb"),
  45346. name: "Bird",
  45347. image: {
  45348. source: "./media/characters/mochi/bird.svg",
  45349. extra: 1251/1113,
  45350. bottom: 178/1429
  45351. }
  45352. },
  45353. kaiju: {
  45354. height: math.unit(154, "feet"),
  45355. weight: math.unit(1e7, "lb"),
  45356. name: "Kaiju",
  45357. image: {
  45358. source: "./media/characters/mochi/kaiju.svg",
  45359. extra: 460/324,
  45360. bottom: 40/500
  45361. }
  45362. },
  45363. head: {
  45364. height: math.unit(1.21, "feet"),
  45365. name: "Head",
  45366. image: {
  45367. source: "./media/characters/mochi/head.svg"
  45368. }
  45369. },
  45370. alternateTail: {
  45371. height: math.unit(2 + 8/12, "feet"),
  45372. weight: math.unit(45, "lb"),
  45373. name: "Alternate Tail",
  45374. image: {
  45375. source: "./media/characters/mochi/alternate-tail.svg",
  45376. extra: 139/76,
  45377. bottom: 45/184
  45378. }
  45379. },
  45380. },
  45381. [
  45382. {
  45383. name: "Micro",
  45384. height: math.unit(2, "inches")
  45385. },
  45386. {
  45387. name: "Normal",
  45388. height: math.unit(2 + 8/12, "feet"),
  45389. default: true
  45390. },
  45391. {
  45392. name: "Macro",
  45393. height: math.unit(106, "feet")
  45394. },
  45395. ]
  45396. ))
  45397. characterMakers.push(() => makeCharacter(
  45398. { name: "Sarel", species: ["omnifalcon"], tags: ["anthro"] },
  45399. {
  45400. front: {
  45401. height: math.unit(5.67, "feet"),
  45402. weight: math.unit(135, "lb"),
  45403. name: "Front",
  45404. image: {
  45405. source: "./media/characters/sarel/front.svg",
  45406. extra: 865/788,
  45407. bottom: 97/962
  45408. }
  45409. },
  45410. back: {
  45411. height: math.unit(5.67, "feet"),
  45412. weight: math.unit(135, "lb"),
  45413. name: "Back",
  45414. image: {
  45415. source: "./media/characters/sarel/back.svg",
  45416. extra: 857/777,
  45417. bottom: 32/889
  45418. }
  45419. },
  45420. chozoan: {
  45421. height: math.unit(5.67, "feet"),
  45422. weight: math.unit(135, "lb"),
  45423. name: "Chozoan",
  45424. image: {
  45425. source: "./media/characters/sarel/chozoan.svg",
  45426. extra: 865/788,
  45427. bottom: 97/962
  45428. }
  45429. },
  45430. current: {
  45431. height: math.unit(5.67, "feet"),
  45432. weight: math.unit(135, "lb"),
  45433. name: "Current",
  45434. image: {
  45435. source: "./media/characters/sarel/current.svg",
  45436. extra: 865/788,
  45437. bottom: 97/962
  45438. }
  45439. },
  45440. head: {
  45441. height: math.unit(1.77, "feet"),
  45442. name: "Head",
  45443. image: {
  45444. source: "./media/characters/sarel/head.svg"
  45445. }
  45446. },
  45447. claws: {
  45448. height: math.unit(1.8, "feet"),
  45449. name: "Claws",
  45450. image: {
  45451. source: "./media/characters/sarel/claws.svg"
  45452. }
  45453. },
  45454. clawsAlt: {
  45455. height: math.unit(1.8, "feet"),
  45456. name: "Claws-alt",
  45457. image: {
  45458. source: "./media/characters/sarel/claws-alt.svg"
  45459. }
  45460. },
  45461. },
  45462. [
  45463. {
  45464. name: "Normal",
  45465. height: math.unit(5.67, "feet"),
  45466. default: true
  45467. },
  45468. ]
  45469. ))
  45470. characterMakers.push(() => makeCharacter(
  45471. { name: "Alyonia", species: ["shark"], tags: ["anthro"] },
  45472. {
  45473. front: {
  45474. height: math.unit(5500, "feet"),
  45475. name: "Front",
  45476. image: {
  45477. source: "./media/characters/alyonia/front.svg",
  45478. extra: 1200/1135,
  45479. bottom: 29/1229
  45480. }
  45481. },
  45482. back: {
  45483. height: math.unit(5500, "feet"),
  45484. name: "Back",
  45485. image: {
  45486. source: "./media/characters/alyonia/back.svg",
  45487. extra: 1205/1138,
  45488. bottom: 10/1215
  45489. }
  45490. },
  45491. },
  45492. [
  45493. {
  45494. name: "Small",
  45495. height: math.unit(10, "feet")
  45496. },
  45497. {
  45498. name: "Macro",
  45499. height: math.unit(500, "feet")
  45500. },
  45501. {
  45502. name: "Mega Macro",
  45503. height: math.unit(5500, "feet"),
  45504. default: true
  45505. },
  45506. {
  45507. name: "Mega Macro+",
  45508. height: math.unit(500000, "feet")
  45509. },
  45510. {
  45511. name: "Giga Macro",
  45512. height: math.unit(3000, "miles")
  45513. },
  45514. {
  45515. name: "Tera Macro",
  45516. height: math.unit(2.8e6, "miles")
  45517. },
  45518. {
  45519. name: "Galactic",
  45520. height: math.unit(120000, "lightyears")
  45521. },
  45522. ]
  45523. ))
  45524. characterMakers.push(() => makeCharacter(
  45525. { name: "Autumn", species: ["werewolf", "human"], tags: ["anthro"] },
  45526. {
  45527. werewolf: {
  45528. height: math.unit(8, "feet"),
  45529. weight: math.unit(425, "lb"),
  45530. name: "Werewolf",
  45531. image: {
  45532. source: "./media/characters/autumn/werewolf.svg",
  45533. extra: 2154/2031,
  45534. bottom: 160/2314
  45535. }
  45536. },
  45537. human: {
  45538. height: math.unit(5 + 8/12, "feet"),
  45539. weight: math.unit(150, "lb"),
  45540. name: "Human",
  45541. image: {
  45542. source: "./media/characters/autumn/human.svg",
  45543. extra: 1200/1149,
  45544. bottom: 30/1230
  45545. }
  45546. },
  45547. },
  45548. [
  45549. {
  45550. name: "Normal",
  45551. height: math.unit(8, "feet"),
  45552. default: true
  45553. },
  45554. ]
  45555. ))
  45556. characterMakers.push(() => makeCharacter(
  45557. { name: "Cobalt (Charizard)", species: ["charizard"], tags: ["anthro"] },
  45558. {
  45559. front: {
  45560. height: math.unit(8 + 5/12, "feet"),
  45561. weight: math.unit(825, "lb"),
  45562. name: "Front",
  45563. image: {
  45564. source: "./media/characters/cobalt-charizard/front.svg",
  45565. extra: 1268/1155,
  45566. bottom: 122/1390
  45567. }
  45568. },
  45569. side: {
  45570. height: math.unit(8 + 5/12, "feet"),
  45571. weight: math.unit(825, "lb"),
  45572. name: "Side",
  45573. image: {
  45574. source: "./media/characters/cobalt-charizard/side.svg",
  45575. extra: 1348/1257,
  45576. bottom: 58/1406
  45577. }
  45578. },
  45579. gMax: {
  45580. height: math.unit(134 + 11/12, "feet"),
  45581. name: "G-Max",
  45582. image: {
  45583. source: "./media/characters/cobalt-charizard/g-max.svg",
  45584. extra: 1835/1541,
  45585. bottom: 151/1986
  45586. }
  45587. },
  45588. },
  45589. [
  45590. {
  45591. name: "Normal",
  45592. height: math.unit(8 + 5/12, "feet"),
  45593. default: true
  45594. },
  45595. ]
  45596. ))
  45597. characterMakers.push(() => makeCharacter(
  45598. { name: "Stella", species: ["gryphon"], tags: ["anthro"] },
  45599. {
  45600. front: {
  45601. height: math.unit(6 + 3/12, "feet"),
  45602. weight: math.unit(210, "lb"),
  45603. name: "Front",
  45604. image: {
  45605. source: "./media/characters/stella/front.svg",
  45606. extra: 3549/3335,
  45607. bottom: 51/3600
  45608. }
  45609. },
  45610. },
  45611. [
  45612. {
  45613. name: "Normal",
  45614. height: math.unit(6 + 3/12, "feet"),
  45615. default: true
  45616. },
  45617. ]
  45618. ))
  45619. characterMakers.push(() => makeCharacter(
  45620. { name: "Riley Bishop", species: ["human"], tags: ["anthro"] },
  45621. {
  45622. front: {
  45623. height: math.unit(5, "feet"),
  45624. weight: math.unit(90, "lb"),
  45625. name: "Front",
  45626. image: {
  45627. source: "./media/characters/riley-bishop/front.svg",
  45628. extra: 1450/1428,
  45629. bottom: 152/1602
  45630. }
  45631. },
  45632. },
  45633. [
  45634. {
  45635. name: "Normal",
  45636. height: math.unit(5, "feet"),
  45637. default: true
  45638. },
  45639. ]
  45640. ))
  45641. characterMakers.push(() => makeCharacter(
  45642. { name: "Theo (Arcanine)", species: ["arcanine"], tags: ["feral"] },
  45643. {
  45644. side: {
  45645. height: math.unit(8 + 2/12, "feet"),
  45646. weight: math.unit(500, "kg"),
  45647. name: "Side",
  45648. image: {
  45649. source: "./media/characters/theo-arcanine/side.svg",
  45650. extra: 1342/1074,
  45651. bottom: 111/1453
  45652. }
  45653. },
  45654. },
  45655. [
  45656. {
  45657. name: "Normal",
  45658. height: math.unit(8 + 2/12, "feet"),
  45659. default: true
  45660. },
  45661. ]
  45662. ))
  45663. characterMakers.push(() => makeCharacter(
  45664. { name: "Kali", species: ["avali"], tags: ["anthro"] },
  45665. {
  45666. front: {
  45667. height: math.unit(4, "feet"),
  45668. name: "Front",
  45669. image: {
  45670. source: "./media/characters/kali/front.svg",
  45671. extra: 1074/867,
  45672. bottom: 34/1108
  45673. }
  45674. },
  45675. back: {
  45676. height: math.unit(4, "feet"),
  45677. name: "Back",
  45678. image: {
  45679. source: "./media/characters/kali/back.svg",
  45680. extra: 1068/863,
  45681. bottom: 26/1094
  45682. }
  45683. },
  45684. frontAlt: {
  45685. height: math.unit(4, "feet"),
  45686. name: "Front (Alt)",
  45687. image: {
  45688. source: "./media/characters/kali/front-alt.svg",
  45689. extra: 1921/1357,
  45690. bottom: 70/1991
  45691. }
  45692. },
  45693. },
  45694. [
  45695. {
  45696. name: "Normal",
  45697. height: math.unit(4, "feet"),
  45698. default: true
  45699. },
  45700. {
  45701. name: "Big'vali",
  45702. height: math.unit(11, "feet")
  45703. },
  45704. {
  45705. name: "Macro",
  45706. height: math.unit(32, "meters")
  45707. },
  45708. {
  45709. name: "Macro+",
  45710. height: math.unit(150, "meters")
  45711. },
  45712. {
  45713. name: "Megamacro",
  45714. height: math.unit(7500, "meters")
  45715. },
  45716. {
  45717. name: "Megamacro+",
  45718. height: math.unit(80, "kilometers")
  45719. },
  45720. ]
  45721. ))
  45722. characterMakers.push(() => makeCharacter(
  45723. { name: "Gapp", species: ["zorgoia"], tags: ["feral"] },
  45724. {
  45725. side: {
  45726. height: math.unit(5 + 11/12, "feet"),
  45727. weight: math.unit(236, "lb"),
  45728. name: "Side",
  45729. image: {
  45730. source: "./media/characters/gapp/side.svg",
  45731. extra: 775/340,
  45732. bottom: 58/833
  45733. }
  45734. },
  45735. mouth: {
  45736. height: math.unit(2.98, "feet"),
  45737. name: "Mouth",
  45738. image: {
  45739. source: "./media/characters/gapp/mouth.svg"
  45740. }
  45741. },
  45742. },
  45743. [
  45744. {
  45745. name: "Normal",
  45746. height: math.unit(5 + 1/12, "feet"),
  45747. default: true
  45748. },
  45749. ]
  45750. ))
  45751. characterMakers.push(() => makeCharacter(
  45752. { name: "Persephone", species: ["absol"], tags: ["anthro"] },
  45753. {
  45754. front: {
  45755. height: math.unit(6, "feet"),
  45756. name: "Front",
  45757. image: {
  45758. source: "./media/characters/persephone/front.svg",
  45759. extra: 1895/1717,
  45760. bottom: 96/1991
  45761. }
  45762. },
  45763. back: {
  45764. height: math.unit(6, "feet"),
  45765. name: "Back",
  45766. image: {
  45767. source: "./media/characters/persephone/back.svg",
  45768. extra: 1868/1679,
  45769. bottom: 26/1894
  45770. }
  45771. },
  45772. casual: {
  45773. height: math.unit(6, "feet"),
  45774. name: "Casual",
  45775. image: {
  45776. source: "./media/characters/persephone/casual.svg",
  45777. extra: 1713/1541,
  45778. bottom: 76/1789
  45779. }
  45780. },
  45781. gaming: {
  45782. height: math.unit(3.55, "feet"),
  45783. name: "Gaming",
  45784. image: {
  45785. source: "./media/characters/persephone/gaming.svg",
  45786. extra: 1242/1038,
  45787. bottom: 66/1308
  45788. }
  45789. },
  45790. head: {
  45791. height: math.unit(2.15, "feet"),
  45792. name: "😐",
  45793. image: {
  45794. source: "./media/characters/persephone/head.svg"
  45795. }
  45796. },
  45797. talking: {
  45798. height: math.unit(2.5, "feet"),
  45799. name: "💬",
  45800. image: {
  45801. source: "./media/characters/persephone/talking.svg"
  45802. }
  45803. },
  45804. hmm: {
  45805. height: math.unit(2.28, "feet"),
  45806. name: "🤨",
  45807. image: {
  45808. source: "./media/characters/persephone/hmm.svg"
  45809. }
  45810. },
  45811. },
  45812. [
  45813. {
  45814. name: "Human Size",
  45815. height: math.unit(6, "feet")
  45816. },
  45817. {
  45818. name: "Big Steppy",
  45819. height: math.unit(600, "meters"),
  45820. default: true
  45821. },
  45822. {
  45823. name: "Galaxy Brain",
  45824. height: math.unit(1, "zettameter")
  45825. },
  45826. ]
  45827. ))
  45828. characterMakers.push(() => makeCharacter(
  45829. { name: "Riley Foxthing", species: ["fox"], tags: ["anthro"] },
  45830. {
  45831. front: {
  45832. height: math.unit(1.85, "meters"),
  45833. name: "Front",
  45834. image: {
  45835. source: "./media/characters/riley-foxthing/front.svg",
  45836. extra: 1495/1354,
  45837. bottom: 122/1617
  45838. }
  45839. },
  45840. frontAlt: {
  45841. height: math.unit(1.85, "meters"),
  45842. name: "Front (Alt)",
  45843. image: {
  45844. source: "./media/characters/riley-foxthing/front-alt.svg",
  45845. extra: 1572/1389,
  45846. bottom: 116/1688
  45847. }
  45848. },
  45849. },
  45850. [
  45851. {
  45852. name: "Normal Sized",
  45853. height: math.unit(1.85, "meters"),
  45854. default: true
  45855. },
  45856. {
  45857. name: "Quite Sizable",
  45858. height: math.unit(5, "meters")
  45859. },
  45860. {
  45861. name: "Rather Large",
  45862. height: math.unit(20, "meters")
  45863. },
  45864. {
  45865. name: "Macro",
  45866. height: math.unit(450, "meters")
  45867. },
  45868. {
  45869. name: "Giga",
  45870. height: math.unit(5, "km")
  45871. },
  45872. ]
  45873. ))
  45874. characterMakers.push(() => makeCharacter(
  45875. { name: "Blizzard", species: ["arctic-fox"], tags: ["anthro"] },
  45876. {
  45877. front: {
  45878. height: math.unit(6, "feet"),
  45879. weight: math.unit(200, "lb"),
  45880. name: "Front",
  45881. image: {
  45882. source: "./media/characters/blizzard/front.svg",
  45883. extra: 1136/990,
  45884. bottom: 136/1272
  45885. }
  45886. },
  45887. back: {
  45888. height: math.unit(6, "feet"),
  45889. weight: math.unit(200, "lb"),
  45890. name: "Back",
  45891. image: {
  45892. source: "./media/characters/blizzard/back.svg",
  45893. extra: 1175/1034,
  45894. bottom: 97/1272
  45895. }
  45896. },
  45897. sitting: {
  45898. height: math.unit(3.725, "feet"),
  45899. weight: math.unit(200, "lb"),
  45900. name: "Sitting",
  45901. image: {
  45902. source: "./media/characters/blizzard/sitting.svg",
  45903. extra: 581/485,
  45904. bottom: 90/671
  45905. }
  45906. },
  45907. frontWizard: {
  45908. height: math.unit(7.9, "feet"),
  45909. weight: math.unit(200, "lb"),
  45910. name: "Front (Wizard)",
  45911. image: {
  45912. source: "./media/characters/blizzard/front-wizard.svg"
  45913. }
  45914. },
  45915. backWizard: {
  45916. height: math.unit(7.9, "feet"),
  45917. weight: math.unit(200, "lb"),
  45918. name: "Back (Wizard)",
  45919. image: {
  45920. source: "./media/characters/blizzard/back-wizard.svg"
  45921. }
  45922. },
  45923. frontNsfw: {
  45924. height: math.unit(6, "feet"),
  45925. weight: math.unit(200, "lb"),
  45926. name: "Front (NSFW)",
  45927. image: {
  45928. source: "./media/characters/blizzard/front-nsfw.svg",
  45929. extra: 1136/990,
  45930. bottom: 136/1272
  45931. }
  45932. },
  45933. backNsfw: {
  45934. height: math.unit(6, "feet"),
  45935. weight: math.unit(200, "lb"),
  45936. name: "Back (NSFW)",
  45937. image: {
  45938. source: "./media/characters/blizzard/back-nsfw.svg",
  45939. extra: 1175/1034,
  45940. bottom: 97/1272
  45941. }
  45942. },
  45943. sittingNsfw: {
  45944. height: math.unit(3.725, "feet"),
  45945. weight: math.unit(200, "lb"),
  45946. name: "Sitting (NSFW)",
  45947. image: {
  45948. source: "./media/characters/blizzard/sitting-nsfw.svg",
  45949. extra: 581/485,
  45950. bottom: 90/671
  45951. }
  45952. },
  45953. wizardFrontNsfw: {
  45954. height: math.unit(7.9, "feet"),
  45955. weight: math.unit(200, "lb"),
  45956. name: "Wizard (Front, NSFW)",
  45957. image: {
  45958. source: "./media/characters/blizzard/wizard-front-nsfw.svg"
  45959. }
  45960. },
  45961. },
  45962. [
  45963. {
  45964. name: "Normal",
  45965. height: math.unit(6, "feet"),
  45966. default: true
  45967. },
  45968. ]
  45969. ))
  45970. characterMakers.push(() => makeCharacter(
  45971. { name: "Lumi", species: ["snow-tiger"], tags: ["anthro"] },
  45972. {
  45973. front: {
  45974. height: math.unit(5 + 2/12, "feet"),
  45975. name: "Front",
  45976. image: {
  45977. source: "./media/characters/lumi/front.svg",
  45978. extra: 1328/1268,
  45979. bottom: 103/1431
  45980. }
  45981. },
  45982. back: {
  45983. height: math.unit(5 + 2/12, "feet"),
  45984. name: "Back",
  45985. image: {
  45986. source: "./media/characters/lumi/back.svg",
  45987. extra: 1381/1327,
  45988. bottom: 43/1424
  45989. }
  45990. },
  45991. },
  45992. [
  45993. {
  45994. name: "Normal",
  45995. height: math.unit(5 + 2/12, "feet"),
  45996. default: true
  45997. },
  45998. ]
  45999. ))
  46000. characterMakers.push(() => makeCharacter(
  46001. { name: "Aliya Cotton", species: ["rabbit"], tags: ["anthro"] },
  46002. {
  46003. front: {
  46004. height: math.unit(5 + 9/12, "feet"),
  46005. name: "Front",
  46006. image: {
  46007. source: "./media/characters/aliya-cotton/front.svg",
  46008. extra: 577/564,
  46009. bottom: 29/606
  46010. }
  46011. },
  46012. },
  46013. [
  46014. {
  46015. name: "Normal",
  46016. height: math.unit(5 + 9/12, "feet"),
  46017. default: true
  46018. },
  46019. ]
  46020. ))
  46021. characterMakers.push(() => makeCharacter(
  46022. { name: "Noah (Luxray)", species: ["luxray"], tags: ["anthro"] },
  46023. {
  46024. front: {
  46025. height: math.unit(2.7, "meters"),
  46026. weight: math.unit(25000, "lb"),
  46027. name: "Front",
  46028. image: {
  46029. source: "./media/characters/noah-luxray/front.svg",
  46030. extra: 1644/825,
  46031. bottom: 339/1983
  46032. }
  46033. },
  46034. side: {
  46035. height: math.unit(2.97, "meters"),
  46036. weight: math.unit(25000, "lb"),
  46037. name: "Side",
  46038. image: {
  46039. source: "./media/characters/noah-luxray/side.svg",
  46040. extra: 1319/650,
  46041. bottom: 163/1482
  46042. }
  46043. },
  46044. dick: {
  46045. height: math.unit(7.4, "feet"),
  46046. weight: math.unit(2500, "lb"),
  46047. name: "Dick",
  46048. image: {
  46049. source: "./media/characters/noah-luxray/dick.svg"
  46050. }
  46051. },
  46052. dickAlt: {
  46053. height: math.unit(10.83, "feet"),
  46054. weight: math.unit(2500, "lb"),
  46055. name: "Dick-alt",
  46056. image: {
  46057. source: "./media/characters/noah-luxray/dick-alt.svg"
  46058. }
  46059. },
  46060. },
  46061. [
  46062. {
  46063. name: "BIG",
  46064. height: math.unit(2.7, "meters"),
  46065. default: true
  46066. },
  46067. ]
  46068. ))
  46069. characterMakers.push(() => makeCharacter(
  46070. { name: "Arion", species: ["horse"], tags: ["anthro"] },
  46071. {
  46072. standing: {
  46073. height: math.unit(183, "cm"),
  46074. weight: math.unit(68, "kg"),
  46075. name: "Standing",
  46076. image: {
  46077. source: "./media/characters/arion/standing.svg",
  46078. extra: 1869/1807,
  46079. bottom: 93/1962
  46080. }
  46081. },
  46082. reclining: {
  46083. height: math.unit(70.5, "cm"),
  46084. weight: math.unit(68, "lb"),
  46085. name: "Reclining",
  46086. image: {
  46087. source: "./media/characters/arion/reclining.svg",
  46088. extra: 937/870,
  46089. bottom: 63/1000
  46090. }
  46091. },
  46092. },
  46093. [
  46094. {
  46095. name: "Colossus Size, Low",
  46096. height: math.unit(33, "meters"),
  46097. default: true
  46098. },
  46099. {
  46100. name: "Colossus Size, Mid",
  46101. height: math.unit(52, "meters")
  46102. },
  46103. {
  46104. name: "Colossus Size, High",
  46105. height: math.unit(60, "meters")
  46106. },
  46107. {
  46108. name: "Titan Size, Low",
  46109. height: math.unit(91, "meters"),
  46110. },
  46111. {
  46112. name: "Titan Size, Mid",
  46113. height: math.unit(122, "meters")
  46114. },
  46115. {
  46116. name: "Titan Size, High",
  46117. height: math.unit(162, "meters")
  46118. },
  46119. ]
  46120. ))
  46121. characterMakers.push(() => makeCharacter(
  46122. { name: "Stellar Marbey", species: ["marble-fox"], tags: ["anthro"] },
  46123. {
  46124. front: {
  46125. height: math.unit(53, "meters"),
  46126. name: "Front",
  46127. image: {
  46128. source: "./media/characters/stellar-marbey/front.svg",
  46129. extra: 1913/1805,
  46130. bottom: 92/2005
  46131. }
  46132. },
  46133. back: {
  46134. height: math.unit(53, "meters"),
  46135. name: "Back",
  46136. image: {
  46137. source: "./media/characters/stellar-marbey/back.svg",
  46138. extra: 1960/1851,
  46139. bottom: 28/1988
  46140. }
  46141. },
  46142. mouth: {
  46143. height: math.unit(3.5, "meters"),
  46144. name: "Mouth",
  46145. image: {
  46146. source: "./media/characters/stellar-marbey/mouth.svg"
  46147. }
  46148. },
  46149. },
  46150. [
  46151. {
  46152. name: "Macro",
  46153. height: math.unit(53, "meters"),
  46154. default: true
  46155. },
  46156. ]
  46157. ))
  46158. characterMakers.push(() => makeCharacter(
  46159. { name: "Matsu", species: ["dragon", "deer"], tags: ["anthro"] },
  46160. {
  46161. front: {
  46162. height: math.unit(8 + 1/12, "feet"),
  46163. weight: math.unit(233, "lb"),
  46164. name: "Front",
  46165. image: {
  46166. source: "./media/characters/matsu/front.svg",
  46167. extra: 832/772,
  46168. bottom: 40/872
  46169. }
  46170. },
  46171. back: {
  46172. height: math.unit(8 + 1/12, "feet"),
  46173. weight: math.unit(233, "lb"),
  46174. name: "Back",
  46175. image: {
  46176. source: "./media/characters/matsu/back.svg",
  46177. extra: 839/780,
  46178. bottom: 47/886
  46179. }
  46180. },
  46181. },
  46182. [
  46183. {
  46184. name: "Normal",
  46185. height: math.unit(8 + 1/12, "feet"),
  46186. default: true
  46187. },
  46188. ]
  46189. ))
  46190. characterMakers.push(() => makeCharacter(
  46191. { name: "Thiz", species: ["gremlin"], tags: ["anthro"] },
  46192. {
  46193. front: {
  46194. height: math.unit(4, "feet"),
  46195. weight: math.unit(148, "lb"),
  46196. name: "Front",
  46197. image: {
  46198. source: "./media/characters/thiz/front.svg",
  46199. extra: 1913/1748,
  46200. bottom: 62/1975
  46201. }
  46202. },
  46203. },
  46204. [
  46205. {
  46206. name: "Normal",
  46207. height: math.unit(4, "feet"),
  46208. default: true
  46209. },
  46210. ]
  46211. ))
  46212. characterMakers.push(() => makeCharacter(
  46213. { name: "Marcel", species: ["king-wickerbeast"], tags: ["anthro"] },
  46214. {
  46215. front: {
  46216. height: math.unit(7 + 6/12, "feet"),
  46217. weight: math.unit(267, "lb"),
  46218. name: "Front",
  46219. image: {
  46220. source: "./media/characters/marcel/front.svg",
  46221. extra: 1221/1096,
  46222. bottom: 76/1297
  46223. }
  46224. },
  46225. },
  46226. [
  46227. {
  46228. name: "Normal",
  46229. height: math.unit(7 + 6/12, "feet"),
  46230. default: true
  46231. },
  46232. ]
  46233. ))
  46234. characterMakers.push(() => makeCharacter(
  46235. { name: "Flake", species: ["dragon"], tags: ["feral"] },
  46236. {
  46237. side: {
  46238. height: math.unit(42, "meters"),
  46239. name: "Side",
  46240. image: {
  46241. source: "./media/characters/flake/side.svg",
  46242. extra: 1525/1306,
  46243. bottom: 209/1734
  46244. }
  46245. },
  46246. },
  46247. [
  46248. {
  46249. name: "Normal",
  46250. height: math.unit(42, "meters"),
  46251. default: true
  46252. },
  46253. ]
  46254. ))
  46255. characterMakers.push(() => makeCharacter(
  46256. { name: "Someonne", species: ["alien", "robot"], tags: ["anthro"] },
  46257. {
  46258. dressed: {
  46259. height: math.unit(6 + 4/12, "feet"),
  46260. weight: math.unit(520, "lb"),
  46261. name: "Dressed",
  46262. image: {
  46263. source: "./media/characters/someonne/dressed.svg",
  46264. extra: 1020/1010,
  46265. bottom: 178/1198
  46266. }
  46267. },
  46268. undressed: {
  46269. height: math.unit(6 + 4/12, "feet"),
  46270. weight: math.unit(520, "lb"),
  46271. name: "Undressed",
  46272. image: {
  46273. source: "./media/characters/someonne/undressed.svg",
  46274. extra: 1019/1014,
  46275. bottom: 169/1188
  46276. }
  46277. },
  46278. },
  46279. [
  46280. {
  46281. name: "Normal",
  46282. height: math.unit(6 + 4/12, "feet"),
  46283. default: true
  46284. },
  46285. ]
  46286. ))
  46287. characterMakers.push(() => makeCharacter(
  46288. { name: "Till", species: ["kobold"], tags: ["anthro"] },
  46289. {
  46290. front: {
  46291. height: math.unit(3, "feet"),
  46292. weight: math.unit(30, "lb"),
  46293. name: "Front",
  46294. image: {
  46295. source: "./media/characters/till/front.svg",
  46296. extra: 892/823,
  46297. bottom: 55/947
  46298. }
  46299. },
  46300. },
  46301. [
  46302. {
  46303. name: "Normal",
  46304. height: math.unit(3, "feet"),
  46305. default: true
  46306. },
  46307. ]
  46308. ))
  46309. characterMakers.push(() => makeCharacter(
  46310. { name: "Sydney Heki", species: ["werewolf"], tags: ["anthro"] },
  46311. {
  46312. front: {
  46313. height: math.unit(9 + 8/12, "feet"),
  46314. weight: math.unit(800, "lb"),
  46315. name: "Front",
  46316. image: {
  46317. source: "./media/characters/sydney-heki/front.svg",
  46318. extra: 1360/1300,
  46319. bottom: 22/1382
  46320. }
  46321. },
  46322. back: {
  46323. height: math.unit(9 + 8/12, "feet"),
  46324. weight: math.unit(800, "lb"),
  46325. name: "Back",
  46326. image: {
  46327. source: "./media/characters/sydney-heki/back.svg",
  46328. extra: 1356/1293,
  46329. bottom: 12/1368
  46330. }
  46331. },
  46332. frontDressed: {
  46333. height: math.unit(9 + 8/12, "feet"),
  46334. weight: math.unit(800, "lb"),
  46335. name: "Front-dressed",
  46336. image: {
  46337. source: "./media/characters/sydney-heki/front-dressed.svg",
  46338. extra: 1360/1300,
  46339. bottom: 22/1382
  46340. }
  46341. },
  46342. },
  46343. [
  46344. {
  46345. name: "Normal",
  46346. height: math.unit(9 + 8/12, "feet"),
  46347. default: true
  46348. },
  46349. {
  46350. name: "Macro",
  46351. height: math.unit(500, "feet")
  46352. },
  46353. {
  46354. name: "Megamacro",
  46355. height: math.unit(3.6, "miles")
  46356. },
  46357. ]
  46358. ))
  46359. characterMakers.push(() => makeCharacter(
  46360. { name: "Fowler Karlsson", species: ["horse"], tags: ["anthro"] },
  46361. {
  46362. front: {
  46363. height: math.unit(200, "cm"),
  46364. weight: math.unit(250, "lb"),
  46365. name: "Front",
  46366. image: {
  46367. source: "./media/characters/fowler-karlsson/front.svg",
  46368. extra: 897/845,
  46369. bottom: 123/1020
  46370. }
  46371. },
  46372. back: {
  46373. height: math.unit(200, "cm"),
  46374. weight: math.unit(250, "lb"),
  46375. name: "Back",
  46376. image: {
  46377. source: "./media/characters/fowler-karlsson/back.svg",
  46378. extra: 999/944,
  46379. bottom: 26/1025
  46380. }
  46381. },
  46382. dick: {
  46383. height: math.unit(1.92, "feet"),
  46384. weight: math.unit(150, "lb"),
  46385. name: "Dick",
  46386. image: {
  46387. source: "./media/characters/fowler-karlsson/dick.svg"
  46388. }
  46389. },
  46390. },
  46391. [
  46392. {
  46393. name: "Normal",
  46394. height: math.unit(200, "cm"),
  46395. default: true
  46396. },
  46397. {
  46398. name: "Smaller Macro",
  46399. height: math.unit(90, "m")
  46400. },
  46401. {
  46402. name: "Macro",
  46403. height: math.unit(150, "m")
  46404. },
  46405. {
  46406. name: "Bigger Macro",
  46407. height: math.unit(300, "m")
  46408. },
  46409. ]
  46410. ))
  46411. characterMakers.push(() => makeCharacter(
  46412. { name: "Rylide", species: ["jackalope"], tags: ["taur"] },
  46413. {
  46414. side: {
  46415. height: math.unit(8 + 2/12, "feet"),
  46416. weight: math.unit(1, "tonne"),
  46417. name: "Side",
  46418. image: {
  46419. source: "./media/characters/rylide/side.svg",
  46420. extra: 1318/1034,
  46421. bottom: 106/1424
  46422. }
  46423. },
  46424. sitting: {
  46425. height: math.unit(303, "cm"),
  46426. weight: math.unit(1, "tonne"),
  46427. name: "Sitting",
  46428. image: {
  46429. source: "./media/characters/rylide/sitting.svg",
  46430. extra: 1303/1103,
  46431. bottom: 36/1339
  46432. }
  46433. },
  46434. },
  46435. [
  46436. {
  46437. name: "Normal",
  46438. height: math.unit(8 + 2/12, "feet"),
  46439. default: true
  46440. },
  46441. ]
  46442. ))
  46443. characterMakers.push(() => makeCharacter(
  46444. { name: "Pudask", species: ["european-polecat"], tags: ["anthro"] },
  46445. {
  46446. front: {
  46447. height: math.unit(5 + 10/12, "feet"),
  46448. weight: math.unit(160, "lb"),
  46449. name: "Front",
  46450. image: {
  46451. source: "./media/characters/pudask/front.svg",
  46452. extra: 1616/1590,
  46453. bottom: 161/1777
  46454. }
  46455. },
  46456. },
  46457. [
  46458. {
  46459. name: "Ferret Height",
  46460. height: math.unit(2 + 5/12, "feet")
  46461. },
  46462. {
  46463. name: "Canon Height",
  46464. height: math.unit(5 + 10/12, "feet"),
  46465. default: true
  46466. },
  46467. ]
  46468. ))
  46469. characterMakers.push(() => makeCharacter(
  46470. { name: "Ramita", species: ["teshari"], tags: ["anthro"] },
  46471. {
  46472. front: {
  46473. height: math.unit(3 + 6/12, "feet"),
  46474. weight: math.unit(60, "lb"),
  46475. name: "Front",
  46476. image: {
  46477. source: "./media/characters/ramita/front.svg",
  46478. extra: 1402/1232,
  46479. bottom: 62/1464
  46480. }
  46481. },
  46482. dressed: {
  46483. height: math.unit(3 + 6/12, "feet"),
  46484. weight: math.unit(60, "lb"),
  46485. name: "Dressed",
  46486. image: {
  46487. source: "./media/characters/ramita/dressed.svg",
  46488. extra: 1534/1249,
  46489. bottom: 50/1584
  46490. }
  46491. },
  46492. },
  46493. [
  46494. {
  46495. name: "Normal",
  46496. height: math.unit(3 + 6/12, "feet"),
  46497. default: true
  46498. },
  46499. ]
  46500. ))
  46501. characterMakers.push(() => makeCharacter(
  46502. { name: "Ark", species: ["dragon"], tags: ["anthro"] },
  46503. {
  46504. front: {
  46505. height: math.unit(8, "feet"),
  46506. name: "Front",
  46507. image: {
  46508. source: "./media/characters/ark/front.svg",
  46509. extra: 772/693,
  46510. bottom: 45/817
  46511. }
  46512. },
  46513. },
  46514. [
  46515. {
  46516. name: "Normal",
  46517. height: math.unit(8, "feet"),
  46518. default: true
  46519. },
  46520. ]
  46521. ))
  46522. characterMakers.push(() => makeCharacter(
  46523. { name: "Ludwig-Horn", species: ["tiger", "dragon"], tags: ["anthro"] },
  46524. {
  46525. front: {
  46526. height: math.unit(6, "feet"),
  46527. weight: math.unit(250, "lb"),
  46528. volume: math.unit(5/8, "gallons"),
  46529. name: "Front",
  46530. image: {
  46531. source: "./media/characters/ludwig-horn/front.svg",
  46532. extra: 1782/1635,
  46533. bottom: 96/1878
  46534. }
  46535. },
  46536. back: {
  46537. height: math.unit(6, "feet"),
  46538. weight: math.unit(250, "lb"),
  46539. volume: math.unit(5/8, "gallons"),
  46540. name: "Back",
  46541. image: {
  46542. source: "./media/characters/ludwig-horn/back.svg",
  46543. extra: 1874/1729,
  46544. bottom: 27/1901
  46545. }
  46546. },
  46547. dick: {
  46548. height: math.unit(1.05, "feet"),
  46549. weight: math.unit(15, "lb"),
  46550. volume: math.unit(5/8, "gallons"),
  46551. name: "Dick",
  46552. image: {
  46553. source: "./media/characters/ludwig-horn/dick.svg"
  46554. }
  46555. },
  46556. },
  46557. [
  46558. {
  46559. name: "Small",
  46560. height: math.unit(6, "feet")
  46561. },
  46562. {
  46563. name: "Typical",
  46564. height: math.unit(12, "feet"),
  46565. default: true
  46566. },
  46567. {
  46568. name: "Building",
  46569. height: math.unit(80, "feet")
  46570. },
  46571. {
  46572. name: "Town",
  46573. height: math.unit(800, "feet")
  46574. },
  46575. {
  46576. name: "Kingdom",
  46577. height: math.unit(80000, "feet")
  46578. },
  46579. {
  46580. name: "Planet",
  46581. height: math.unit(8000000, "feet")
  46582. },
  46583. {
  46584. name: "Universe",
  46585. height: math.unit(8000000000, "feet")
  46586. },
  46587. {
  46588. name: "Transcended",
  46589. height: math.unit(8e27, "feet")
  46590. },
  46591. ]
  46592. ))
  46593. characterMakers.push(() => makeCharacter(
  46594. { name: "Biot Avery", species: ["dragon"], tags: ["anthro"] },
  46595. {
  46596. front: {
  46597. height: math.unit(5, "feet"),
  46598. weight: math.unit(50, "kg"),
  46599. name: "Front",
  46600. image: {
  46601. source: "./media/characters/biot-avery/front.svg",
  46602. extra: 1295/1232,
  46603. bottom: 86/1381
  46604. }
  46605. },
  46606. },
  46607. [
  46608. {
  46609. name: "Normal",
  46610. height: math.unit(5, "feet"),
  46611. default: true
  46612. },
  46613. ]
  46614. ))
  46615. characterMakers.push(() => makeCharacter(
  46616. { name: "Kitsune Kiro", species: ["kitsune"], tags: ["anthro"] },
  46617. {
  46618. front: {
  46619. height: math.unit(6, "feet"),
  46620. name: "Front",
  46621. image: {
  46622. source: "./media/characters/kitsune-kiro/front.svg",
  46623. extra: 1270/1158,
  46624. bottom: 42/1312
  46625. }
  46626. },
  46627. frontAlt: {
  46628. height: math.unit(6, "feet"),
  46629. name: "Front-alt",
  46630. image: {
  46631. source: "./media/characters/kitsune-kiro/front-alt.svg",
  46632. extra: 1130/1081,
  46633. bottom: 36/1166
  46634. }
  46635. },
  46636. },
  46637. [
  46638. {
  46639. name: "Smol",
  46640. height: math.unit(3, "feet")
  46641. },
  46642. {
  46643. name: "Normal",
  46644. height: math.unit(6, "feet"),
  46645. default: true
  46646. },
  46647. ]
  46648. ))
  46649. characterMakers.push(() => makeCharacter(
  46650. { name: "Jack Thatcher", species: ["fox"], tags: ["anthro"] },
  46651. {
  46652. front: {
  46653. height: math.unit(6, "feet"),
  46654. weight: math.unit(125, "lb"),
  46655. name: "Front",
  46656. image: {
  46657. source: "./media/characters/jack-thatcher/front.svg",
  46658. extra: 1474/1370,
  46659. bottom: 26/1500
  46660. }
  46661. },
  46662. back: {
  46663. height: math.unit(6, "feet"),
  46664. weight: math.unit(125, "lb"),
  46665. name: "Back",
  46666. image: {
  46667. source: "./media/characters/jack-thatcher/back.svg",
  46668. extra: 1489/1384,
  46669. bottom: 18/1507
  46670. }
  46671. },
  46672. },
  46673. [
  46674. {
  46675. name: "Normal",
  46676. height: math.unit(6, "feet"),
  46677. default: true
  46678. },
  46679. {
  46680. name: "Macro",
  46681. height: math.unit(75, "feet")
  46682. },
  46683. {
  46684. name: "Macro-er",
  46685. height: math.unit(250, "feet")
  46686. },
  46687. ]
  46688. ))
  46689. characterMakers.push(() => makeCharacter(
  46690. { name: "Max Hyper", species: ["husky"], tags: ["anthro"] },
  46691. {
  46692. front: {
  46693. height: math.unit(7, "feet"),
  46694. weight: math.unit(110, "kg"),
  46695. name: "Front",
  46696. image: {
  46697. source: "./media/characters/max-hyper/front.svg",
  46698. extra: 1969/1881,
  46699. bottom: 49/2018
  46700. }
  46701. },
  46702. },
  46703. [
  46704. {
  46705. name: "Normal",
  46706. height: math.unit(7, "feet"),
  46707. default: true
  46708. },
  46709. ]
  46710. ))
  46711. characterMakers.push(() => makeCharacter(
  46712. { name: "Spook", species: ["alien"], tags: ["anthro"] },
  46713. {
  46714. front: {
  46715. height: math.unit(5 + 5/12, "feet"),
  46716. weight: math.unit(160, "lb"),
  46717. name: "Front",
  46718. image: {
  46719. source: "./media/characters/spook/front.svg",
  46720. extra: 794/791,
  46721. bottom: 54/848
  46722. }
  46723. },
  46724. back: {
  46725. height: math.unit(5 + 5/12, "feet"),
  46726. weight: math.unit(160, "lb"),
  46727. name: "Back",
  46728. image: {
  46729. source: "./media/characters/spook/back.svg",
  46730. extra: 812/798,
  46731. bottom: 32/844
  46732. }
  46733. },
  46734. },
  46735. [
  46736. {
  46737. name: "Normal",
  46738. height: math.unit(5 + 5/12, "feet"),
  46739. default: true
  46740. },
  46741. ]
  46742. ))
  46743. characterMakers.push(() => makeCharacter(
  46744. { name: "Xeaduulix", species: ["dragon"], tags: ["anthro"] },
  46745. {
  46746. front: {
  46747. height: math.unit(18, "feet"),
  46748. name: "Front",
  46749. image: {
  46750. source: "./media/characters/xeaduulix/front.svg",
  46751. extra: 1380/1166,
  46752. bottom: 110/1490
  46753. }
  46754. },
  46755. back: {
  46756. height: math.unit(18, "feet"),
  46757. name: "Back",
  46758. image: {
  46759. source: "./media/characters/xeaduulix/back.svg",
  46760. extra: 1592/1170,
  46761. bottom: 128/1720
  46762. }
  46763. },
  46764. frontNsfw: {
  46765. height: math.unit(18, "feet"),
  46766. name: "Front (NSFW)",
  46767. image: {
  46768. source: "./media/characters/xeaduulix/front-nsfw.svg",
  46769. extra: 1380/1166,
  46770. bottom: 110/1490
  46771. }
  46772. },
  46773. backNsfw: {
  46774. height: math.unit(18, "feet"),
  46775. name: "Back (NSFW)",
  46776. image: {
  46777. source: "./media/characters/xeaduulix/back-nsfw.svg",
  46778. extra: 1592/1170,
  46779. bottom: 128/1720
  46780. }
  46781. },
  46782. },
  46783. [
  46784. {
  46785. name: "Normal",
  46786. height: math.unit(18, "feet"),
  46787. default: true
  46788. },
  46789. ]
  46790. ))
  46791. characterMakers.push(() => makeCharacter(
  46792. { name: "Fledge", species: ["alicorn"], tags: ["anthro"] },
  46793. {
  46794. spreadWings: {
  46795. height: math.unit(20, "feet"),
  46796. name: "Spread Wings",
  46797. image: {
  46798. source: "./media/characters/fledge/spread-wings.svg",
  46799. extra: 693/635,
  46800. bottom: 26/719
  46801. }
  46802. },
  46803. front: {
  46804. height: math.unit(20, "feet"),
  46805. name: "Front",
  46806. image: {
  46807. source: "./media/characters/fledge/front.svg",
  46808. extra: 684/637,
  46809. bottom: 18/702
  46810. }
  46811. },
  46812. frontAlt: {
  46813. height: math.unit(20, "feet"),
  46814. name: "Front (Alt)",
  46815. image: {
  46816. source: "./media/characters/fledge/front-alt.svg",
  46817. extra: 708/664,
  46818. bottom: 13/721
  46819. }
  46820. },
  46821. back: {
  46822. height: math.unit(20, "feet"),
  46823. name: "Back",
  46824. image: {
  46825. source: "./media/characters/fledge/back.svg",
  46826. extra: 718/634,
  46827. bottom: 22/740
  46828. }
  46829. },
  46830. head: {
  46831. height: math.unit(5.55, "feet"),
  46832. name: "Head",
  46833. image: {
  46834. source: "./media/characters/fledge/head.svg"
  46835. }
  46836. },
  46837. headAlt: {
  46838. height: math.unit(5.1, "feet"),
  46839. name: "Head (Alt)",
  46840. image: {
  46841. source: "./media/characters/fledge/head-alt.svg"
  46842. }
  46843. },
  46844. },
  46845. [
  46846. {
  46847. name: "Small",
  46848. height: math.unit(6 + 2/12, "feet")
  46849. },
  46850. {
  46851. name: "Big",
  46852. height: math.unit(20, "feet"),
  46853. default: true
  46854. },
  46855. {
  46856. name: "Giant",
  46857. height: math.unit(100, "feet")
  46858. },
  46859. {
  46860. name: "Macro",
  46861. height: math.unit(200, "feet")
  46862. },
  46863. ]
  46864. ))
  46865. characterMakers.push(() => makeCharacter(
  46866. { name: "Atlas Morenai", species: ["red-panda", "atlas-moth"], tags: ["anthro"] },
  46867. {
  46868. front: {
  46869. height: math.unit(1, "meter"),
  46870. name: "Front",
  46871. image: {
  46872. source: "./media/characters/atlas-morenai/front.svg",
  46873. extra: 1275/1043,
  46874. bottom: 19/1294
  46875. }
  46876. },
  46877. back: {
  46878. height: math.unit(1, "meter"),
  46879. name: "Back",
  46880. image: {
  46881. source: "./media/characters/atlas-morenai/back.svg",
  46882. extra: 1141/1001,
  46883. bottom: 25/1166
  46884. }
  46885. },
  46886. },
  46887. [
  46888. {
  46889. name: "Normal",
  46890. height: math.unit(1, "meter"),
  46891. default: true
  46892. },
  46893. {
  46894. name: "Magic-Infused",
  46895. height: math.unit(5, "meters")
  46896. },
  46897. ]
  46898. ))
  46899. characterMakers.push(() => makeCharacter(
  46900. { name: "Cintia", species: ["fox"], tags: ["anthro"] },
  46901. {
  46902. front: {
  46903. height: math.unit(5, "meters"),
  46904. name: "Front",
  46905. image: {
  46906. source: "./media/characters/cintia/front.svg",
  46907. extra: 1312/1228,
  46908. bottom: 38/1350
  46909. }
  46910. },
  46911. back: {
  46912. height: math.unit(5, "meters"),
  46913. name: "Back",
  46914. image: {
  46915. source: "./media/characters/cintia/back.svg",
  46916. extra: 1260/1166,
  46917. bottom: 98/1358
  46918. }
  46919. },
  46920. frontDick: {
  46921. height: math.unit(5, "meters"),
  46922. name: "Front (Dick)",
  46923. image: {
  46924. source: "./media/characters/cintia/front-dick.svg",
  46925. extra: 1312/1228,
  46926. bottom: 38/1350
  46927. }
  46928. },
  46929. backDick: {
  46930. height: math.unit(5, "meters"),
  46931. name: "Back (Dick)",
  46932. image: {
  46933. source: "./media/characters/cintia/back-dick.svg",
  46934. extra: 1260/1166,
  46935. bottom: 98/1358
  46936. }
  46937. },
  46938. bust: {
  46939. height: math.unit(1.97, "meters"),
  46940. name: "Bust",
  46941. image: {
  46942. source: "./media/characters/cintia/bust.svg",
  46943. extra: 617/565,
  46944. bottom: 0/617
  46945. }
  46946. },
  46947. },
  46948. [
  46949. {
  46950. name: "Normal",
  46951. height: math.unit(5, "meters"),
  46952. default: true
  46953. },
  46954. ]
  46955. ))
  46956. characterMakers.push(() => makeCharacter(
  46957. { name: "Denora", species: ["husky"], tags: ["anthro"] },
  46958. {
  46959. side: {
  46960. height: math.unit(100, "feet"),
  46961. name: "Side",
  46962. image: {
  46963. source: "./media/characters/denora/side.svg",
  46964. extra: 875/803,
  46965. bottom: 9/884
  46966. }
  46967. },
  46968. },
  46969. [
  46970. {
  46971. name: "Standard",
  46972. height: math.unit(100, "feet"),
  46973. default: true
  46974. },
  46975. {
  46976. name: "Grand",
  46977. height: math.unit(1000, "feet")
  46978. },
  46979. {
  46980. name: "Conquering",
  46981. height: math.unit(10000, "feet")
  46982. },
  46983. ]
  46984. ))
  46985. characterMakers.push(() => makeCharacter(
  46986. { name: "Kiva", species: ["dire-wolf"], tags: ["anthro"] },
  46987. {
  46988. dressed: {
  46989. height: math.unit(8 + 5/12, "feet"),
  46990. weight: math.unit(700, "lb"),
  46991. name: "Dressed",
  46992. image: {
  46993. source: "./media/characters/kiva/dressed.svg",
  46994. extra: 1102/1055,
  46995. bottom: 60/1162
  46996. }
  46997. },
  46998. nude: {
  46999. height: math.unit(8 + 5/12, "feet"),
  47000. weight: math.unit(700, "lb"),
  47001. name: "Nude",
  47002. image: {
  47003. source: "./media/characters/kiva/nude.svg",
  47004. extra: 1102/1055,
  47005. bottom: 60/1162
  47006. }
  47007. },
  47008. },
  47009. [
  47010. {
  47011. name: "Base Height",
  47012. height: math.unit(8 + 5/12, "feet"),
  47013. default: true
  47014. },
  47015. {
  47016. name: "Macro",
  47017. height: math.unit(100, "feet")
  47018. },
  47019. {
  47020. name: "Max",
  47021. height: math.unit(3280, "feet")
  47022. },
  47023. ]
  47024. ))
  47025. characterMakers.push(() => makeCharacter(
  47026. { name: "ZTragon", species: ["dragon"], tags: ["anthro"] },
  47027. {
  47028. front: {
  47029. height: math.unit(6 + 8/12, "feet"),
  47030. weight: math.unit(250, "lb"),
  47031. name: "Front",
  47032. image: {
  47033. source: "./media/characters/ztragon/front.svg",
  47034. extra: 1825/1684,
  47035. bottom: 98/1923
  47036. }
  47037. },
  47038. },
  47039. [
  47040. {
  47041. name: "Normal",
  47042. height: math.unit(6 + 8/12, "feet"),
  47043. default: true
  47044. },
  47045. {
  47046. name: "Macro",
  47047. height: math.unit(80, "feet")
  47048. },
  47049. ]
  47050. ))
  47051. characterMakers.push(() => makeCharacter(
  47052. { name: "Yesenia", species: ["snake"], tags: ["naga"] },
  47053. {
  47054. front: {
  47055. height: math.unit(10.4, "feet"),
  47056. weight: math.unit(2, "tons"),
  47057. name: "Front",
  47058. image: {
  47059. source: "./media/characters/yesenia/front.svg",
  47060. extra: 1479/1474,
  47061. bottom: 233/1712
  47062. }
  47063. },
  47064. },
  47065. [
  47066. {
  47067. name: "Normal",
  47068. height: math.unit(10.4, "feet"),
  47069. default: true
  47070. },
  47071. ]
  47072. ))
  47073. characterMakers.push(() => makeCharacter(
  47074. { name: "Leanne Lycheborne", species: ["wolf", "dog", "werewolf"], tags: ["anthro"] },
  47075. {
  47076. normal: {
  47077. height: math.unit(6 + 1/12, "feet"),
  47078. weight: math.unit(180, "lb"),
  47079. name: "Normal",
  47080. image: {
  47081. source: "./media/characters/leanne-lycheborne/normal.svg",
  47082. extra: 1748/1660,
  47083. bottom: 98/1846
  47084. }
  47085. },
  47086. were: {
  47087. height: math.unit(12, "feet"),
  47088. weight: math.unit(1600, "lb"),
  47089. name: "Were",
  47090. image: {
  47091. source: "./media/characters/leanne-lycheborne/were.svg",
  47092. extra: 1485/1432,
  47093. bottom: 66/1551
  47094. }
  47095. },
  47096. },
  47097. [
  47098. {
  47099. name: "Normal",
  47100. height: math.unit(6 + 1/12, "feet"),
  47101. default: true
  47102. },
  47103. ]
  47104. ))
  47105. characterMakers.push(() => makeCharacter(
  47106. { name: "Kira Tyler", species: ["dragon", "cat"], tags: ["feral"] },
  47107. {
  47108. side: {
  47109. height: math.unit(13, "feet"),
  47110. name: "Side",
  47111. image: {
  47112. source: "./media/characters/kira-tyler/side.svg",
  47113. extra: 693/393,
  47114. bottom: 58/751
  47115. }
  47116. },
  47117. },
  47118. [
  47119. {
  47120. name: "Normal",
  47121. height: math.unit(13, "feet"),
  47122. default: true
  47123. },
  47124. ]
  47125. ))
  47126. characterMakers.push(() => makeCharacter(
  47127. { name: "Blaze", species: ["octopus", "avian"], tags: ["anthro"] },
  47128. {
  47129. front: {
  47130. height: math.unit(10.3, "feet"),
  47131. weight: math.unit(150, "lb"),
  47132. name: "Front",
  47133. image: {
  47134. source: "./media/characters/blaze/front.svg",
  47135. extra: 1378/1286,
  47136. bottom: 172/1550
  47137. }
  47138. },
  47139. },
  47140. [
  47141. {
  47142. name: "Normal",
  47143. height: math.unit(10.3, "feet"),
  47144. default: true
  47145. },
  47146. ]
  47147. ))
  47148. characterMakers.push(() => makeCharacter(
  47149. { name: "Anu", species: ["fennec-fox", "jackal"], tags: ["taur"] },
  47150. {
  47151. side: {
  47152. height: math.unit(2, "meters"),
  47153. weight: math.unit(400, "kg"),
  47154. name: "Side",
  47155. image: {
  47156. source: "./media/characters/anu/side.svg",
  47157. extra: 506/394,
  47158. bottom: 18/524
  47159. }
  47160. },
  47161. },
  47162. [
  47163. {
  47164. name: "Humanoid",
  47165. height: math.unit(2, "meters")
  47166. },
  47167. {
  47168. name: "Normal",
  47169. height: math.unit(5, "meters"),
  47170. default: true
  47171. },
  47172. ]
  47173. ))
  47174. characterMakers.push(() => makeCharacter(
  47175. { name: "Synx the Lynx", species: ["lynx"], tags: ["anthro"] },
  47176. {
  47177. front: {
  47178. height: math.unit(5 + 5/12, "feet"),
  47179. weight: math.unit(170, "lb"),
  47180. name: "Front",
  47181. image: {
  47182. source: "./media/characters/synx-the-lynx/front.svg",
  47183. extra: 1893/1745,
  47184. bottom: 17/1910
  47185. }
  47186. },
  47187. side: {
  47188. height: math.unit(5 + 5/12, "feet"),
  47189. weight: math.unit(170, "lb"),
  47190. name: "Side",
  47191. image: {
  47192. source: "./media/characters/synx-the-lynx/side.svg",
  47193. extra: 1884/1740,
  47194. bottom: 39/1923
  47195. }
  47196. },
  47197. back: {
  47198. height: math.unit(5 + 5/12, "feet"),
  47199. weight: math.unit(170, "lb"),
  47200. name: "Back",
  47201. image: {
  47202. source: "./media/characters/synx-the-lynx/back.svg",
  47203. extra: 1903/1755,
  47204. bottom: 14/1917
  47205. }
  47206. },
  47207. },
  47208. [
  47209. {
  47210. name: "Normal",
  47211. height: math.unit(5 + 5/12, "feet"),
  47212. default: true
  47213. },
  47214. ]
  47215. ))
  47216. characterMakers.push(() => makeCharacter(
  47217. { name: "Nadezda Fex", species: ["fox"], tags: ["anthro"] },
  47218. {
  47219. back: {
  47220. height: math.unit(15, "feet"),
  47221. name: "Back",
  47222. image: {
  47223. source: "./media/characters/nadezda-fex/back.svg",
  47224. extra: 1695/1481,
  47225. bottom: 25/1720
  47226. }
  47227. },
  47228. },
  47229. [
  47230. {
  47231. name: "Normal",
  47232. height: math.unit(15, "feet"),
  47233. default: true
  47234. },
  47235. {
  47236. name: "Macro",
  47237. height: math.unit(2.5, "miles")
  47238. },
  47239. {
  47240. name: "Goddess",
  47241. height: math.unit(2, "multiverses")
  47242. },
  47243. ]
  47244. ))
  47245. characterMakers.push(() => makeCharacter(
  47246. { name: "Lev", species: ["snake"], tags: ["anthro"] },
  47247. {
  47248. front: {
  47249. height: math.unit(216, "cm"),
  47250. name: "Front",
  47251. image: {
  47252. source: "./media/characters/lev/front.svg",
  47253. extra: 1728/1670,
  47254. bottom: 82/1810
  47255. }
  47256. },
  47257. back: {
  47258. height: math.unit(216, "cm"),
  47259. name: "Back",
  47260. image: {
  47261. source: "./media/characters/lev/back.svg",
  47262. extra: 1738/1675,
  47263. bottom: 24/1762
  47264. }
  47265. },
  47266. dressed: {
  47267. height: math.unit(216, "cm"),
  47268. name: "Dressed",
  47269. image: {
  47270. source: "./media/characters/lev/dressed.svg",
  47271. extra: 1397/1351,
  47272. bottom: 73/1470
  47273. }
  47274. },
  47275. head: {
  47276. height: math.unit(0.51, "meter"),
  47277. name: "Head",
  47278. image: {
  47279. source: "./media/characters/lev/head.svg"
  47280. }
  47281. },
  47282. },
  47283. [
  47284. {
  47285. name: "Normal",
  47286. height: math.unit(216, "cm"),
  47287. default: true
  47288. },
  47289. {
  47290. name: "Relatively Macro",
  47291. height: math.unit(80, "meters")
  47292. },
  47293. {
  47294. name: "Megamacro",
  47295. height: math.unit(21600, "meters")
  47296. },
  47297. {
  47298. name: "Megamacro+",
  47299. height: math.unit(64800, "meters")
  47300. },
  47301. ]
  47302. ))
  47303. characterMakers.push(() => makeCharacter(
  47304. { name: "Moka", species: ["dragon"], tags: ["anthro"] },
  47305. {
  47306. front: {
  47307. height: math.unit(2, "meters"),
  47308. weight: math.unit(80, "kg"),
  47309. name: "Front",
  47310. image: {
  47311. source: "./media/characters/moka/front.svg",
  47312. extra: 1337/1255,
  47313. bottom: 58/1395
  47314. }
  47315. },
  47316. },
  47317. [
  47318. {
  47319. name: "Micro",
  47320. height: math.unit(15, "cm")
  47321. },
  47322. {
  47323. name: "Normal",
  47324. height: math.unit(2, "meters"),
  47325. default: true
  47326. },
  47327. {
  47328. name: "Macro",
  47329. height: math.unit(20, "meters"),
  47330. },
  47331. ]
  47332. ))
  47333. characterMakers.push(() => makeCharacter(
  47334. { name: "Kuzco", species: ["snake"], tags: ["anthro"] },
  47335. {
  47336. front: {
  47337. height: math.unit(9, "feet"),
  47338. weight: math.unit(240, "lb"),
  47339. name: "Front",
  47340. image: {
  47341. source: "./media/characters/kuzco/front.svg",
  47342. extra: 1593/1487,
  47343. bottom: 32/1625
  47344. }
  47345. },
  47346. side: {
  47347. height: math.unit(9, "feet"),
  47348. weight: math.unit(240, "lb"),
  47349. name: "Side",
  47350. image: {
  47351. source: "./media/characters/kuzco/side.svg",
  47352. extra: 1575/1485,
  47353. bottom: 30/1605
  47354. }
  47355. },
  47356. back: {
  47357. height: math.unit(9, "feet"),
  47358. weight: math.unit(240, "lb"),
  47359. name: "Back",
  47360. image: {
  47361. source: "./media/characters/kuzco/back.svg",
  47362. extra: 1603/1514,
  47363. bottom: 14/1617
  47364. }
  47365. },
  47366. },
  47367. [
  47368. {
  47369. name: "Normal",
  47370. height: math.unit(9, "feet"),
  47371. default: true
  47372. },
  47373. ]
  47374. ))
  47375. characterMakers.push(() => makeCharacter(
  47376. { name: "Ceruleus", species: ["fox", "dragon"], tags: ["feral"] },
  47377. {
  47378. side: {
  47379. height: math.unit(2, "meters"),
  47380. weight: math.unit(300, "kg"),
  47381. name: "Side",
  47382. image: {
  47383. source: "./media/characters/ceruleus/side.svg",
  47384. extra: 1068/974,
  47385. bottom: 126/1194
  47386. }
  47387. },
  47388. maw: {
  47389. height: math.unit(0.8125, "meter"),
  47390. name: "Maw",
  47391. image: {
  47392. source: "./media/characters/ceruleus/maw.svg"
  47393. }
  47394. },
  47395. },
  47396. [
  47397. {
  47398. name: "Normal",
  47399. height: math.unit(16, "meters"),
  47400. default: true
  47401. },
  47402. ]
  47403. ))
  47404. characterMakers.push(() => makeCharacter(
  47405. { name: "Acouya", species: ["kangaroo"], tags: ["anthro"] },
  47406. {
  47407. front: {
  47408. height: math.unit(9, "feet"),
  47409. weight: math.unit(500, "kg"),
  47410. name: "Front",
  47411. image: {
  47412. source: "./media/characters/acouya/front.svg",
  47413. extra: 1660/1473,
  47414. bottom: 28/1688
  47415. }
  47416. },
  47417. },
  47418. [
  47419. {
  47420. name: "Normal",
  47421. height: math.unit(9, "feet"),
  47422. default: true
  47423. },
  47424. ]
  47425. ))
  47426. characterMakers.push(() => makeCharacter(
  47427. { name: "Vant", species: ["husky"], tags: ["anthro"] },
  47428. {
  47429. front: {
  47430. height: math.unit(5 + 6/12, "feet"),
  47431. weight: math.unit(195, "lb"),
  47432. name: "Front",
  47433. image: {
  47434. source: "./media/characters/vant/front.svg",
  47435. extra: 1396/1320,
  47436. bottom: 20/1416
  47437. }
  47438. },
  47439. back: {
  47440. height: math.unit(5 + 6/12, "feet"),
  47441. weight: math.unit(195, "lb"),
  47442. name: "Back",
  47443. image: {
  47444. source: "./media/characters/vant/back.svg",
  47445. extra: 1396/1320,
  47446. bottom: 20/1416
  47447. }
  47448. },
  47449. maw: {
  47450. height: math.unit(0.75, "feet"),
  47451. name: "Maw",
  47452. image: {
  47453. source: "./media/characters/vant/maw.svg"
  47454. }
  47455. },
  47456. paw: {
  47457. height: math.unit(1.07, "feet"),
  47458. name: "Paw",
  47459. image: {
  47460. source: "./media/characters/vant/paw.svg"
  47461. }
  47462. },
  47463. },
  47464. [
  47465. {
  47466. name: "Micro",
  47467. height: math.unit(0.25, "inches")
  47468. },
  47469. {
  47470. name: "Normal",
  47471. height: math.unit(5 + 6/12, "feet"),
  47472. default: true
  47473. },
  47474. {
  47475. name: "Macro",
  47476. height: math.unit(75, "feet")
  47477. },
  47478. ]
  47479. ))
  47480. characterMakers.push(() => makeCharacter(
  47481. { name: "Ahra", species: ["fox"], tags: ["anthro"] },
  47482. {
  47483. front: {
  47484. height: math.unit(30, "meters"),
  47485. weight: math.unit(363, "tons"),
  47486. name: "Front",
  47487. image: {
  47488. source: "./media/characters/ahra/front.svg",
  47489. extra: 1914/1814,
  47490. bottom: 46/1960
  47491. }
  47492. },
  47493. },
  47494. [
  47495. {
  47496. name: "Macro",
  47497. height: math.unit(30, "meters"),
  47498. default: true
  47499. },
  47500. ]
  47501. ))
  47502. characterMakers.push(() => makeCharacter(
  47503. { name: "Coriander", species: ["owlbear"], tags: ["anthro"] },
  47504. {
  47505. undressed: {
  47506. height: math.unit(2, "m"),
  47507. weight: math.unit(250, "kg"),
  47508. name: "Undressed",
  47509. image: {
  47510. source: "./media/characters/coriander/undressed.svg",
  47511. extra: 1757/1606,
  47512. bottom: 107/1864
  47513. }
  47514. },
  47515. dressed: {
  47516. height: math.unit(2, "m"),
  47517. weight: math.unit(250, "kg"),
  47518. name: "Dressed",
  47519. image: {
  47520. source: "./media/characters/coriander/dressed.svg",
  47521. extra: 1757/1606,
  47522. bottom: 107/1864
  47523. }
  47524. },
  47525. },
  47526. [
  47527. {
  47528. name: "Normal",
  47529. height: math.unit(4, "meters"),
  47530. default: true
  47531. },
  47532. {
  47533. name: "XL",
  47534. height: math.unit(6, "meters")
  47535. },
  47536. {
  47537. name: "XXL",
  47538. height: math.unit(8, "meters")
  47539. },
  47540. ]
  47541. ))
  47542. characterMakers.push(() => makeCharacter(
  47543. { name: "Syrinx", species: ["phoenix"], tags: ["anthro"] },
  47544. {
  47545. front: {
  47546. height: math.unit(6, "feet"),
  47547. name: "Front",
  47548. image: {
  47549. source: "./media/characters/syrinx/front.svg",
  47550. extra: 1557/1259,
  47551. bottom: 171/1728
  47552. }
  47553. },
  47554. },
  47555. [
  47556. {
  47557. name: "Normal",
  47558. height: math.unit(6 + 3/12, "feet"),
  47559. default: true
  47560. },
  47561. ]
  47562. ))
  47563. characterMakers.push(() => makeCharacter(
  47564. { name: "Bor", species: ["silvertongue"], tags: ["anthro"] },
  47565. {
  47566. front: {
  47567. height: math.unit(11 + 6/12, "feet"),
  47568. weight: math.unit(1.5, "tons"),
  47569. name: "Front",
  47570. image: {
  47571. source: "./media/characters/bor/front.svg",
  47572. extra: 1189/1109,
  47573. bottom: 170/1359
  47574. }
  47575. },
  47576. },
  47577. [
  47578. {
  47579. name: "Normal",
  47580. height: math.unit(11 + 6/12, "feet"),
  47581. default: true
  47582. },
  47583. {
  47584. name: "Macro",
  47585. height: math.unit(32 + 9/12, "feet")
  47586. },
  47587. ]
  47588. ))
  47589. characterMakers.push(() => makeCharacter(
  47590. { name: "Abacus", species: ["construct", "corvid"], tags: ["anthro", "feral"] },
  47591. {
  47592. anthro: {
  47593. height: math.unit(9, "feet"),
  47594. weight: math.unit(2076, "lb"),
  47595. name: "Anthro",
  47596. image: {
  47597. source: "./media/characters/abacus/anthro.svg",
  47598. extra: 1540/1494,
  47599. bottom: 233/1773
  47600. }
  47601. },
  47602. pigeon: {
  47603. height: math.unit(1, "feet"),
  47604. name: "Pigeon",
  47605. image: {
  47606. source: "./media/characters/abacus/pigeon.svg",
  47607. extra: 528/525,
  47608. bottom: 46/574
  47609. }
  47610. },
  47611. },
  47612. [
  47613. {
  47614. name: "Normal",
  47615. height: math.unit(9, "feet"),
  47616. default: true
  47617. },
  47618. ]
  47619. ))
  47620. characterMakers.push(() => makeCharacter(
  47621. { name: "Delkhan", species: ["t-rex"], tags: ["feral"] },
  47622. {
  47623. side: {
  47624. height: math.unit(6, "feet"),
  47625. name: "Side",
  47626. image: {
  47627. source: "./media/characters/delkhan/side.svg",
  47628. extra: 1884/1786,
  47629. bottom: 308/2192
  47630. }
  47631. },
  47632. head: {
  47633. height: math.unit(3.38, "feet"),
  47634. name: "Head",
  47635. image: {
  47636. source: "./media/characters/delkhan/head.svg"
  47637. }
  47638. },
  47639. },
  47640. [
  47641. {
  47642. name: "Normal",
  47643. height: math.unit(72, "feet"),
  47644. default: true
  47645. },
  47646. {
  47647. name: "Giant",
  47648. height: math.unit(172, "feet")
  47649. },
  47650. ]
  47651. ))
  47652. characterMakers.push(() => makeCharacter(
  47653. { name: "Euchidat", species: ["opossum"], tags: ["anthro"] },
  47654. {
  47655. standing: {
  47656. height: math.unit(6, "feet"),
  47657. name: "Standing",
  47658. image: {
  47659. source: "./media/characters/euchidat/standing.svg",
  47660. extra: 1612/1553,
  47661. bottom: 116/1728
  47662. }
  47663. },
  47664. leaning: {
  47665. height: math.unit(6, "feet"),
  47666. name: "Leaning",
  47667. image: {
  47668. source: "./media/characters/euchidat/leaning.svg",
  47669. extra: 1719/1674,
  47670. bottom: 27/1746
  47671. }
  47672. },
  47673. },
  47674. [
  47675. {
  47676. name: "Normal",
  47677. height: math.unit(175, "feet"),
  47678. default: true
  47679. },
  47680. {
  47681. name: "Megamacro",
  47682. height: math.unit(190, "miles")
  47683. },
  47684. {
  47685. name: "Gigamacro",
  47686. height: math.unit(190000, "miles")
  47687. },
  47688. ]
  47689. ))
  47690. characterMakers.push(() => makeCharacter(
  47691. { name: "Rebecca Stack", species: ["human"], tags: ["anthro"] },
  47692. {
  47693. front: {
  47694. height: math.unit(6, "feet"),
  47695. weight: math.unit(150, "lb"),
  47696. name: "Front",
  47697. image: {
  47698. source: "./media/characters/rebecca-stack/front.svg",
  47699. extra: 1256/1201,
  47700. bottom: 18/1274
  47701. }
  47702. },
  47703. },
  47704. [
  47705. {
  47706. name: "Normal",
  47707. height: math.unit(5 + 8/12, "feet"),
  47708. default: true
  47709. },
  47710. {
  47711. name: "Demolitionist",
  47712. height: math.unit(200, "feet")
  47713. },
  47714. {
  47715. name: "Out of Control",
  47716. height: math.unit(2, "miles")
  47717. },
  47718. {
  47719. name: "Giga",
  47720. height: math.unit(7200, "miles")
  47721. },
  47722. ]
  47723. ))
  47724. characterMakers.push(() => makeCharacter(
  47725. { name: "Jenny Cartwright", species: ["human"], tags: ["anthro"] },
  47726. {
  47727. front: {
  47728. height: math.unit(6, "feet"),
  47729. weight: math.unit(150, "lb"),
  47730. name: "Front",
  47731. image: {
  47732. source: "./media/characters/jenny-cartwright/front.svg",
  47733. extra: 1384/1376,
  47734. bottom: 58/1442
  47735. }
  47736. },
  47737. },
  47738. [
  47739. {
  47740. name: "Normal",
  47741. height: math.unit(6 + 7/12, "feet"),
  47742. default: true
  47743. },
  47744. {
  47745. name: "Librarian",
  47746. height: math.unit(55, "feet")
  47747. },
  47748. {
  47749. name: "Sightseer",
  47750. height: math.unit(50, "miles")
  47751. },
  47752. {
  47753. name: "Giga",
  47754. height: math.unit(30000, "miles")
  47755. },
  47756. ]
  47757. ))
  47758. characterMakers.push(() => makeCharacter(
  47759. { name: "Marvy", species: ["sergal"], tags: ["anthro"] },
  47760. {
  47761. nude: {
  47762. height: math.unit(8, "feet"),
  47763. weight: math.unit(225, "lb"),
  47764. name: "Nude",
  47765. image: {
  47766. source: "./media/characters/marvy/nude.svg",
  47767. extra: 1900/1683,
  47768. bottom: 89/1989
  47769. }
  47770. },
  47771. dressed: {
  47772. height: math.unit(8, "feet"),
  47773. weight: math.unit(225, "lb"),
  47774. name: "Dressed",
  47775. image: {
  47776. source: "./media/characters/marvy/dressed.svg",
  47777. extra: 1900/1683,
  47778. bottom: 89/1989
  47779. }
  47780. },
  47781. head: {
  47782. height: math.unit(2.85, "feet"),
  47783. name: "Head",
  47784. image: {
  47785. source: "./media/characters/marvy/head.svg"
  47786. }
  47787. },
  47788. },
  47789. [
  47790. {
  47791. name: "Normal",
  47792. height: math.unit(8, "feet"),
  47793. default: true
  47794. },
  47795. ]
  47796. ))
  47797. characterMakers.push(() => makeCharacter(
  47798. { name: "Leah", species: ["maned-wolf"], tags: ["anthro"] },
  47799. {
  47800. front: {
  47801. height: math.unit(8, "feet"),
  47802. weight: math.unit(250, "lb"),
  47803. name: "Front",
  47804. image: {
  47805. source: "./media/characters/leah/front.svg",
  47806. extra: 1257/1149,
  47807. bottom: 109/1366
  47808. }
  47809. },
  47810. },
  47811. [
  47812. {
  47813. name: "Normal",
  47814. height: math.unit(8, "feet"),
  47815. default: true
  47816. },
  47817. {
  47818. name: "Minimacro",
  47819. height: math.unit(40, "feet")
  47820. },
  47821. {
  47822. name: "Macro",
  47823. height: math.unit(124, "feet")
  47824. },
  47825. {
  47826. name: "Megamacro",
  47827. height: math.unit(850, "feet")
  47828. },
  47829. ]
  47830. ))
  47831. characterMakers.push(() => makeCharacter(
  47832. { name: "Alvir", species: ["ahuizotl"], tags: ["feral"] },
  47833. {
  47834. side: {
  47835. height: math.unit(13 + 6/12, "feet"),
  47836. weight: math.unit(3200, "lb"),
  47837. name: "Side",
  47838. image: {
  47839. source: "./media/characters/alvir/side.svg",
  47840. extra: 896/589,
  47841. bottom: 26/922
  47842. }
  47843. },
  47844. },
  47845. [
  47846. {
  47847. name: "Normal",
  47848. height: math.unit(13 + 6/12, "feet"),
  47849. default: true
  47850. },
  47851. ]
  47852. ))
  47853. characterMakers.push(() => makeCharacter(
  47854. { name: "Zaina Khalil", species: ["human"], tags: ["anthro"] },
  47855. {
  47856. front: {
  47857. height: math.unit(5 + 4/12, "feet"),
  47858. weight: math.unit(236, "lb"),
  47859. name: "Front",
  47860. image: {
  47861. source: "./media/characters/zaina-khalil/front.svg",
  47862. extra: 1533/1485,
  47863. bottom: 94/1627
  47864. }
  47865. },
  47866. side: {
  47867. height: math.unit(5 + 4/12, "feet"),
  47868. weight: math.unit(236, "lb"),
  47869. name: "Side",
  47870. image: {
  47871. source: "./media/characters/zaina-khalil/side.svg",
  47872. extra: 1537/1498,
  47873. bottom: 66/1603
  47874. }
  47875. },
  47876. back: {
  47877. height: math.unit(5 + 4/12, "feet"),
  47878. weight: math.unit(236, "lb"),
  47879. name: "Back",
  47880. image: {
  47881. source: "./media/characters/zaina-khalil/back.svg",
  47882. extra: 1546/1494,
  47883. bottom: 89/1635
  47884. }
  47885. },
  47886. },
  47887. [
  47888. {
  47889. name: "Normal",
  47890. height: math.unit(5 + 4/12, "feet"),
  47891. default: true
  47892. },
  47893. ]
  47894. ))
  47895. characterMakers.push(() => makeCharacter(
  47896. { name: "Terry", species: ["husky"], tags: ["taur"] },
  47897. {
  47898. side: {
  47899. height: math.unit(12, "feet"),
  47900. weight: math.unit(4000, "lb"),
  47901. name: "Side",
  47902. image: {
  47903. source: "./media/characters/terry/side.svg",
  47904. extra: 1518/1439,
  47905. bottom: 149/1667
  47906. }
  47907. },
  47908. },
  47909. [
  47910. {
  47911. name: "Normal",
  47912. height: math.unit(12, "feet"),
  47913. default: true
  47914. },
  47915. ]
  47916. ))
  47917. characterMakers.push(() => makeCharacter(
  47918. { name: "Kahea", species: ["werewolf"], tags: ["anthro"] },
  47919. {
  47920. front: {
  47921. height: math.unit(12, "feet"),
  47922. weight: math.unit(1500, "lb"),
  47923. name: "Front",
  47924. image: {
  47925. source: "./media/characters/kahea/front.svg",
  47926. extra: 1722/1617,
  47927. bottom: 179/1901
  47928. }
  47929. },
  47930. },
  47931. [
  47932. {
  47933. name: "Normal",
  47934. height: math.unit(12, "feet"),
  47935. default: true
  47936. },
  47937. ]
  47938. ))
  47939. characterMakers.push(() => makeCharacter(
  47940. { name: "Alex Xuria", species: ["demon", "rabbit"], tags: ["anthro"] },
  47941. {
  47942. demonFront: {
  47943. height: math.unit(36, "feet"),
  47944. name: "Front",
  47945. image: {
  47946. source: "./media/characters/alex-xuria/demon-front.svg",
  47947. extra: 1705/1673,
  47948. bottom: 198/1903
  47949. },
  47950. form: "demon",
  47951. default: true
  47952. },
  47953. demonBack: {
  47954. height: math.unit(36, "feet"),
  47955. name: "Back",
  47956. image: {
  47957. source: "./media/characters/alex-xuria/demon-back.svg",
  47958. extra: 1725/1693,
  47959. bottom: 70/1795
  47960. },
  47961. form: "demon"
  47962. },
  47963. demonHead: {
  47964. height: math.unit(2.14, "meters"),
  47965. name: "Head",
  47966. image: {
  47967. source: "./media/characters/alex-xuria/demon-head.svg"
  47968. },
  47969. form: "demon"
  47970. },
  47971. demonHand: {
  47972. height: math.unit(1.61, "meters"),
  47973. name: "Hand",
  47974. image: {
  47975. source: "./media/characters/alex-xuria/demon-hand.svg"
  47976. },
  47977. form: "demon"
  47978. },
  47979. demonPaw: {
  47980. height: math.unit(1.35, "meters"),
  47981. name: "Paw",
  47982. image: {
  47983. source: "./media/characters/alex-xuria/demon-paw.svg"
  47984. },
  47985. form: "demon"
  47986. },
  47987. demonFoot: {
  47988. height: math.unit(2.2, "meters"),
  47989. name: "Foot",
  47990. image: {
  47991. source: "./media/characters/alex-xuria/demon-foot.svg"
  47992. },
  47993. form: "demon"
  47994. },
  47995. demonCock: {
  47996. height: math.unit(1.74, "meters"),
  47997. name: "Cock",
  47998. image: {
  47999. source: "./media/characters/alex-xuria/demon-cock.svg"
  48000. },
  48001. form: "demon"
  48002. },
  48003. demonTailClosed: {
  48004. height: math.unit(1.47, "meters"),
  48005. name: "Tail (Closed)",
  48006. image: {
  48007. source: "./media/characters/alex-xuria/demon-tail-closed.svg"
  48008. },
  48009. form: "demon"
  48010. },
  48011. demonTailOpen: {
  48012. height: math.unit(2.85, "meters"),
  48013. name: "Tail (Open)",
  48014. image: {
  48015. source: "./media/characters/alex-xuria/demon-tail-open.svg"
  48016. },
  48017. form: "demon"
  48018. },
  48019. incubusFront: {
  48020. height: math.unit(12, "feet"),
  48021. name: "Front",
  48022. image: {
  48023. source: "./media/characters/alex-xuria/incubus-front.svg",
  48024. extra: 1754/1677,
  48025. bottom: 125/1879
  48026. },
  48027. form: "incubus",
  48028. default: true
  48029. },
  48030. incubusBack: {
  48031. height: math.unit(12, "feet"),
  48032. name: "Back",
  48033. image: {
  48034. source: "./media/characters/alex-xuria/incubus-back.svg",
  48035. extra: 1702/1647,
  48036. bottom: 30/1732
  48037. },
  48038. form: "incubus"
  48039. },
  48040. incubusHead: {
  48041. height: math.unit(3.45, "feet"),
  48042. name: "Head",
  48043. image: {
  48044. source: "./media/characters/alex-xuria/incubus-head.svg"
  48045. },
  48046. form: "incubus"
  48047. },
  48048. rabbitFront: {
  48049. height: math.unit(6, "feet"),
  48050. name: "Front",
  48051. image: {
  48052. source: "./media/characters/alex-xuria/rabbit-front.svg",
  48053. extra: 1369/1349,
  48054. bottom: 45/1414
  48055. },
  48056. form: "rabbit",
  48057. default: true
  48058. },
  48059. rabbitSide: {
  48060. height: math.unit(6, "feet"),
  48061. name: "Side",
  48062. image: {
  48063. source: "./media/characters/alex-xuria/rabbit-side.svg",
  48064. extra: 1370/1356,
  48065. bottom: 37/1407
  48066. },
  48067. form: "rabbit"
  48068. },
  48069. rabbitBack: {
  48070. height: math.unit(6, "feet"),
  48071. name: "Back",
  48072. image: {
  48073. source: "./media/characters/alex-xuria/rabbit-back.svg",
  48074. extra: 1375/1358,
  48075. bottom: 43/1418
  48076. },
  48077. form: "rabbit"
  48078. },
  48079. },
  48080. [
  48081. {
  48082. name: "Normal",
  48083. height: math.unit(6, "feet"),
  48084. default: true,
  48085. form: "rabbit"
  48086. },
  48087. {
  48088. name: "Incubus",
  48089. height: math.unit(12, "feet"),
  48090. default: true,
  48091. form: "incubus"
  48092. },
  48093. {
  48094. name: "Demon",
  48095. height: math.unit(36, "feet"),
  48096. default: true,
  48097. form: "demon"
  48098. }
  48099. ],
  48100. {
  48101. "demon": {
  48102. name: "Demon",
  48103. default: true
  48104. },
  48105. "incubus": {
  48106. name: "Incubus",
  48107. },
  48108. "rabbit": {
  48109. name: "Rabbit"
  48110. }
  48111. }
  48112. ))
  48113. characterMakers.push(() => makeCharacter(
  48114. { name: "Syrup", species: ["rabbit"], tags: ["anthro"] },
  48115. {
  48116. front: {
  48117. height: math.unit(7 + 5/12, "feet"),
  48118. weight: math.unit(510, "lb"),
  48119. name: "Front",
  48120. image: {
  48121. source: "./media/characters/syrup/front.svg",
  48122. extra: 932/916,
  48123. bottom: 26/958
  48124. }
  48125. },
  48126. },
  48127. [
  48128. {
  48129. name: "Normal",
  48130. height: math.unit(7 + 5/12, "feet"),
  48131. default: true
  48132. },
  48133. {
  48134. name: "Big",
  48135. height: math.unit(50, "feet")
  48136. },
  48137. {
  48138. name: "Macro",
  48139. height: math.unit(300, "feet")
  48140. },
  48141. {
  48142. name: "Megamacro",
  48143. height: math.unit(1, "mile")
  48144. },
  48145. ]
  48146. ))
  48147. characterMakers.push(() => makeCharacter(
  48148. { name: "Zeimne", species: ["kitsune", "demon", "deity"], tags: ["anthro"] },
  48149. {
  48150. front: {
  48151. height: math.unit(6 + 9/12, "feet"),
  48152. name: "Front",
  48153. image: {
  48154. source: "./media/characters/zeimne/front.svg",
  48155. extra: 1969/1806,
  48156. bottom: 53/2022
  48157. }
  48158. },
  48159. },
  48160. [
  48161. {
  48162. name: "Normal",
  48163. height: math.unit(6 + 9/12, "feet"),
  48164. default: true
  48165. },
  48166. {
  48167. name: "Giant",
  48168. height: math.unit(550, "feet")
  48169. },
  48170. {
  48171. name: "Mega",
  48172. height: math.unit(3, "miles")
  48173. },
  48174. {
  48175. name: "Giga",
  48176. height: math.unit(250, "miles")
  48177. },
  48178. {
  48179. name: "Tera",
  48180. height: math.unit(1, "AU")
  48181. },
  48182. ]
  48183. ))
  48184. characterMakers.push(() => makeCharacter(
  48185. { name: "Grar", species: ["jackalope"], tags: ["anthro"] },
  48186. {
  48187. front: {
  48188. height: math.unit(5 + 2/12, "feet"),
  48189. name: "Front",
  48190. image: {
  48191. source: "./media/characters/grar/front.svg",
  48192. extra: 1331/1119,
  48193. bottom: 60/1391
  48194. }
  48195. },
  48196. back: {
  48197. height: math.unit(5 + 2/12, "feet"),
  48198. name: "Back",
  48199. image: {
  48200. source: "./media/characters/grar/back.svg",
  48201. extra: 1385/1169,
  48202. bottom: 23/1408
  48203. }
  48204. },
  48205. },
  48206. [
  48207. {
  48208. name: "Normal",
  48209. height: math.unit(5 + 2/12, "feet"),
  48210. default: true
  48211. },
  48212. ]
  48213. ))
  48214. characterMakers.push(() => makeCharacter(
  48215. { name: "Endraya", species: ["ender-dragon"], tags: ["anthro"] },
  48216. {
  48217. front: {
  48218. height: math.unit(13 + 7/12, "feet"),
  48219. weight: math.unit(2200, "lb"),
  48220. name: "Front",
  48221. image: {
  48222. source: "./media/characters/endraya/front.svg",
  48223. extra: 1289/1215,
  48224. bottom: 50/1339
  48225. }
  48226. },
  48227. nude: {
  48228. height: math.unit(13 + 7/12, "feet"),
  48229. weight: math.unit(2200, "lb"),
  48230. name: "Nude",
  48231. image: {
  48232. source: "./media/characters/endraya/nude.svg",
  48233. extra: 1247/1171,
  48234. bottom: 40/1287
  48235. }
  48236. },
  48237. head: {
  48238. height: math.unit(2.6, "feet"),
  48239. name: "Head",
  48240. image: {
  48241. source: "./media/characters/endraya/head.svg"
  48242. }
  48243. },
  48244. slit: {
  48245. height: math.unit(3.4, "feet"),
  48246. name: "Slit",
  48247. image: {
  48248. source: "./media/characters/endraya/slit.svg"
  48249. }
  48250. },
  48251. },
  48252. [
  48253. {
  48254. name: "Normal",
  48255. height: math.unit(13 + 7/12, "feet"),
  48256. default: true
  48257. },
  48258. {
  48259. name: "Macro",
  48260. height: math.unit(200, "feet")
  48261. },
  48262. ]
  48263. ))
  48264. characterMakers.push(() => makeCharacter(
  48265. { name: "Rodryana", species: ["hyena"], tags: ["anthro"] },
  48266. {
  48267. front: {
  48268. height: math.unit(1.81, "meters"),
  48269. weight: math.unit(69, "kg"),
  48270. name: "Front",
  48271. image: {
  48272. source: "./media/characters/rodryana/front.svg",
  48273. extra: 2002/1921,
  48274. bottom: 53/2055
  48275. }
  48276. },
  48277. back: {
  48278. height: math.unit(1.81, "meters"),
  48279. weight: math.unit(69, "kg"),
  48280. name: "Back",
  48281. image: {
  48282. source: "./media/characters/rodryana/back.svg",
  48283. extra: 1993/1926,
  48284. bottom: 48/2041
  48285. }
  48286. },
  48287. maw: {
  48288. height: math.unit(0.19769417475, "meters"),
  48289. name: "Maw",
  48290. image: {
  48291. source: "./media/characters/rodryana/maw.svg"
  48292. }
  48293. },
  48294. slit: {
  48295. height: math.unit(0.31631067961, "meters"),
  48296. name: "Slit",
  48297. image: {
  48298. source: "./media/characters/rodryana/slit.svg"
  48299. }
  48300. },
  48301. },
  48302. [
  48303. {
  48304. name: "Normal",
  48305. height: math.unit(1.81, "meters")
  48306. },
  48307. {
  48308. name: "Mini Macro",
  48309. height: math.unit(181, "meters")
  48310. },
  48311. {
  48312. name: "Macro",
  48313. height: math.unit(452, "meters"),
  48314. default: true
  48315. },
  48316. {
  48317. name: "Mega Macro",
  48318. height: math.unit(1.375, "km")
  48319. },
  48320. {
  48321. name: "Giga Macro",
  48322. height: math.unit(13.575, "km")
  48323. },
  48324. ]
  48325. ))
  48326. characterMakers.push(() => makeCharacter(
  48327. { name: "Asaya", species: ["human", "deity"], tags: ["anthro"] },
  48328. {
  48329. front: {
  48330. height: math.unit(6, "feet"),
  48331. weight: math.unit(1000, "lb"),
  48332. name: "Front",
  48333. image: {
  48334. source: "./media/characters/asaya/front.svg",
  48335. extra: 1460/1200,
  48336. bottom: 71/1531
  48337. }
  48338. },
  48339. },
  48340. [
  48341. {
  48342. name: "Normal",
  48343. height: math.unit(8, "km"),
  48344. default: true
  48345. },
  48346. ]
  48347. ))
  48348. characterMakers.push(() => makeCharacter(
  48349. { name: "Sarzu and Israz", species: ["naga"], tags: ["naga"] },
  48350. {
  48351. front: {
  48352. height: math.unit(3.5, "meters"),
  48353. name: "Front",
  48354. image: {
  48355. source: "./media/characters/sarzu-and-israz/front.svg",
  48356. extra: 1570/1558,
  48357. bottom: 150/1720
  48358. },
  48359. },
  48360. back: {
  48361. height: math.unit(3.5, "meters"),
  48362. name: "Back",
  48363. image: {
  48364. source: "./media/characters/sarzu-and-israz/back.svg",
  48365. extra: 1523/1509,
  48366. bottom: 132/1655
  48367. },
  48368. },
  48369. frontFemale: {
  48370. height: math.unit(3.5, "meters"),
  48371. name: "Front (Female)",
  48372. image: {
  48373. source: "./media/characters/sarzu-and-israz/front-female.svg",
  48374. extra: 1570/1558,
  48375. bottom: 150/1720
  48376. },
  48377. },
  48378. frontHerm: {
  48379. height: math.unit(3.5, "meters"),
  48380. name: "Front (Herm)",
  48381. image: {
  48382. source: "./media/characters/sarzu-and-israz/front-herm.svg",
  48383. extra: 1570/1558,
  48384. bottom: 150/1720
  48385. },
  48386. },
  48387. },
  48388. [
  48389. {
  48390. name: "Normal",
  48391. height: math.unit(3.5, "meters"),
  48392. default: true,
  48393. },
  48394. {
  48395. name: "Macro",
  48396. height: math.unit(65.5, "meters"),
  48397. },
  48398. ],
  48399. ))
  48400. characterMakers.push(() => makeCharacter(
  48401. { name: "Zenimma", species: ["bruhathkayosaurus"], tags: ["anthro"] },
  48402. {
  48403. front: {
  48404. height: math.unit(6, "feet"),
  48405. weight: math.unit(250, "lb"),
  48406. name: "Front",
  48407. image: {
  48408. source: "./media/characters/zenimma/front.svg",
  48409. extra: 1346/1320,
  48410. bottom: 58/1404
  48411. }
  48412. },
  48413. back: {
  48414. height: math.unit(6, "feet"),
  48415. weight: math.unit(250, "lb"),
  48416. name: "Back",
  48417. image: {
  48418. source: "./media/characters/zenimma/back.svg",
  48419. extra: 1324/1308,
  48420. bottom: 44/1368
  48421. }
  48422. },
  48423. dick: {
  48424. height: math.unit(1.44, "feet"),
  48425. name: "Dick",
  48426. image: {
  48427. source: "./media/characters/zenimma/dick.svg"
  48428. }
  48429. },
  48430. },
  48431. [
  48432. {
  48433. name: "Canon Height",
  48434. height: math.unit(66, "miles"),
  48435. default: true
  48436. },
  48437. ]
  48438. ))
  48439. characterMakers.push(() => makeCharacter(
  48440. { name: "Shavon", species: ["black-sable-antelope"], tags: ["anthro"] },
  48441. {
  48442. nude: {
  48443. height: math.unit(6, "feet"),
  48444. weight: math.unit(150, "lb"),
  48445. name: "Nude",
  48446. image: {
  48447. source: "./media/characters/shavon/nude.svg",
  48448. extra: 1242/1096,
  48449. bottom: 98/1340
  48450. }
  48451. },
  48452. dressed: {
  48453. height: math.unit(6, "feet"),
  48454. weight: math.unit(150, "lb"),
  48455. name: "Dressed",
  48456. image: {
  48457. source: "./media/characters/shavon/dressed.svg",
  48458. extra: 1242/1096,
  48459. bottom: 98/1340
  48460. }
  48461. },
  48462. },
  48463. [
  48464. {
  48465. name: "Macro",
  48466. height: math.unit(255, "feet"),
  48467. default: true
  48468. },
  48469. ]
  48470. ))
  48471. characterMakers.push(() => makeCharacter(
  48472. { name: "Steph", species: ["shark"], tags: ["anthro"] },
  48473. {
  48474. front: {
  48475. height: math.unit(6, "feet"),
  48476. name: "Front",
  48477. image: {
  48478. source: "./media/characters/steph/front.svg",
  48479. extra: 1430/1330,
  48480. bottom: 54/1484
  48481. }
  48482. },
  48483. },
  48484. [
  48485. {
  48486. name: "Normal",
  48487. height: math.unit(6, "feet"),
  48488. default: true
  48489. },
  48490. ]
  48491. ))
  48492. characterMakers.push(() => makeCharacter(
  48493. { name: "Kil'aman", species: ["dragon", "deity"], tags: ["anthro"] },
  48494. {
  48495. front: {
  48496. height: math.unit(9, "feet"),
  48497. weight: math.unit(400, "lb"),
  48498. name: "Front",
  48499. image: {
  48500. source: "./media/characters/kil'aman/front.svg",
  48501. extra: 1210/1159,
  48502. bottom: 109/1319
  48503. }
  48504. },
  48505. head: {
  48506. height: math.unit(2.14, "feet"),
  48507. name: "Head",
  48508. image: {
  48509. source: "./media/characters/kil'aman/head.svg"
  48510. }
  48511. },
  48512. maw: {
  48513. height: math.unit(1.21, "feet"),
  48514. name: "Maw",
  48515. image: {
  48516. source: "./media/characters/kil'aman/maw.svg"
  48517. }
  48518. },
  48519. foot: {
  48520. height: math.unit(1.7, "feet"),
  48521. name: "Foot",
  48522. image: {
  48523. source: "./media/characters/kil'aman/foot.svg"
  48524. }
  48525. },
  48526. dick: {
  48527. height: math.unit(2.1, "feet"),
  48528. name: "Dick",
  48529. image: {
  48530. source: "./media/characters/kil'aman/dick.svg"
  48531. }
  48532. },
  48533. },
  48534. [
  48535. {
  48536. name: "Normal",
  48537. height: math.unit(9, "feet")
  48538. },
  48539. {
  48540. name: "Canon Height",
  48541. height: math.unit(10, "miles"),
  48542. default: true
  48543. },
  48544. {
  48545. name: "Maximum",
  48546. height: math.unit(6e9, "miles")
  48547. },
  48548. ]
  48549. ))
  48550. characterMakers.push(() => makeCharacter(
  48551. { name: "Qadan", species: ["utahraptor"], tags: ["anthro"] },
  48552. {
  48553. front: {
  48554. height: math.unit(90, "feet"),
  48555. weight: math.unit(675000, "lb"),
  48556. name: "Front",
  48557. image: {
  48558. source: "./media/characters/qadan/front.svg",
  48559. extra: 1012/1004,
  48560. bottom: 78/1090
  48561. }
  48562. },
  48563. back: {
  48564. height: math.unit(90, "feet"),
  48565. weight: math.unit(675000, "lb"),
  48566. name: "Back",
  48567. image: {
  48568. source: "./media/characters/qadan/back.svg",
  48569. extra: 1042/1031,
  48570. bottom: 55/1097
  48571. }
  48572. },
  48573. armored: {
  48574. height: math.unit(90, "feet"),
  48575. weight: math.unit(675000, "lb"),
  48576. name: "Armored",
  48577. image: {
  48578. source: "./media/characters/qadan/armored.svg",
  48579. extra: 1047/1037,
  48580. bottom: 48/1095
  48581. }
  48582. },
  48583. },
  48584. [
  48585. {
  48586. name: "Normal",
  48587. height: math.unit(90, "feet"),
  48588. default: true
  48589. },
  48590. ]
  48591. ))
  48592. characterMakers.push(() => makeCharacter(
  48593. { name: "Brooke", species: ["indian-giant-squirrel"], tags: ["anthro"] },
  48594. {
  48595. front: {
  48596. height: math.unit(6, "feet"),
  48597. weight: math.unit(225, "lb"),
  48598. name: "Front",
  48599. image: {
  48600. source: "./media/characters/brooke/front.svg",
  48601. extra: 1050/1010,
  48602. bottom: 66/1116
  48603. }
  48604. },
  48605. back: {
  48606. height: math.unit(6, "feet"),
  48607. weight: math.unit(225, "lb"),
  48608. name: "Back",
  48609. image: {
  48610. source: "./media/characters/brooke/back.svg",
  48611. extra: 1053/1013,
  48612. bottom: 41/1094
  48613. }
  48614. },
  48615. dressed: {
  48616. height: math.unit(6, "feet"),
  48617. weight: math.unit(225, "lb"),
  48618. name: "Dressed",
  48619. image: {
  48620. source: "./media/characters/brooke/dressed.svg",
  48621. extra: 1050/1010,
  48622. bottom: 66/1116
  48623. }
  48624. },
  48625. },
  48626. [
  48627. {
  48628. name: "Canon Height",
  48629. height: math.unit(500, "miles"),
  48630. default: true
  48631. },
  48632. ]
  48633. ))
  48634. characterMakers.push(() => makeCharacter(
  48635. { name: "Wubs", species: ["golden-retriever"], tags: ["anthro"] },
  48636. {
  48637. front: {
  48638. height: math.unit(6 + 2/12, "feet"),
  48639. weight: math.unit(210, "lb"),
  48640. name: "Front",
  48641. image: {
  48642. source: "./media/characters/wubs/front.svg",
  48643. extra: 1345/1325,
  48644. bottom: 70/1415
  48645. }
  48646. },
  48647. back: {
  48648. height: math.unit(6 + 2/12, "feet"),
  48649. weight: math.unit(210, "lb"),
  48650. name: "Back",
  48651. image: {
  48652. source: "./media/characters/wubs/back.svg",
  48653. extra: 1296/1275,
  48654. bottom: 58/1354
  48655. }
  48656. },
  48657. },
  48658. [
  48659. {
  48660. name: "Normal",
  48661. height: math.unit(6 + 2/12, "feet"),
  48662. default: true
  48663. },
  48664. {
  48665. name: "Macro",
  48666. height: math.unit(1000, "feet")
  48667. },
  48668. {
  48669. name: "Megamacro",
  48670. height: math.unit(1, "mile")
  48671. },
  48672. ]
  48673. ))
  48674. characterMakers.push(() => makeCharacter(
  48675. { name: "Blue", species: ["deer", "bat"], tags: ["anthro"] },
  48676. {
  48677. front: {
  48678. height: math.unit(4, "feet"),
  48679. weight: math.unit(120, "lb"),
  48680. name: "Front",
  48681. image: {
  48682. source: "./media/characters/blue/front.svg",
  48683. extra: 1636/1525,
  48684. bottom: 43/1679
  48685. }
  48686. },
  48687. back: {
  48688. height: math.unit(4, "feet"),
  48689. weight: math.unit(120, "lb"),
  48690. name: "Back",
  48691. image: {
  48692. source: "./media/characters/blue/back.svg",
  48693. extra: 1660/1560,
  48694. bottom: 57/1717
  48695. }
  48696. },
  48697. paws: {
  48698. height: math.unit(0.826, "feet"),
  48699. name: "Paws",
  48700. image: {
  48701. source: "./media/characters/blue/paws.svg"
  48702. }
  48703. },
  48704. },
  48705. [
  48706. {
  48707. name: "Micro",
  48708. height: math.unit(3, "inches")
  48709. },
  48710. {
  48711. name: "Normal",
  48712. height: math.unit(4, "feet"),
  48713. default: true
  48714. },
  48715. {
  48716. name: "Femenine Form",
  48717. height: math.unit(14, "feet")
  48718. },
  48719. {
  48720. name: "Werebat Form",
  48721. height: math.unit(18, "feet")
  48722. },
  48723. ]
  48724. ))
  48725. characterMakers.push(() => makeCharacter(
  48726. { name: "Kaya", species: ["dragon"], tags: ["anthro"] },
  48727. {
  48728. female: {
  48729. height: math.unit(7 + 4/12, "feet"),
  48730. weight: math.unit(243, "lb"),
  48731. name: "Female",
  48732. image: {
  48733. source: "./media/characters/kaya/female.svg",
  48734. extra: 975/898,
  48735. bottom: 34/1009
  48736. }
  48737. },
  48738. herm: {
  48739. height: math.unit(7 + 4/12, "feet"),
  48740. weight: math.unit(243, "lb"),
  48741. name: "Herm",
  48742. image: {
  48743. source: "./media/characters/kaya/herm.svg",
  48744. extra: 975/898,
  48745. bottom: 34/1009
  48746. }
  48747. },
  48748. },
  48749. [
  48750. {
  48751. name: "Normal",
  48752. height: math.unit(7 + 4/12, "feet"),
  48753. default: true
  48754. },
  48755. ]
  48756. ))
  48757. characterMakers.push(() => makeCharacter(
  48758. { name: "Kassandra", species: ["dragon", "snake"], tags: ["anthro"] },
  48759. {
  48760. female: {
  48761. height: math.unit(9 + 4/12, "feet"),
  48762. weight: math.unit(398, "lb"),
  48763. name: "Female",
  48764. image: {
  48765. source: "./media/characters/kassandra/female.svg",
  48766. extra: 908/839,
  48767. bottom: 61/969
  48768. }
  48769. },
  48770. intersex: {
  48771. height: math.unit(9 + 4/12, "feet"),
  48772. weight: math.unit(398, "lb"),
  48773. name: "Intersex",
  48774. image: {
  48775. source: "./media/characters/kassandra/intersex.svg",
  48776. extra: 908/839,
  48777. bottom: 61/969
  48778. }
  48779. },
  48780. },
  48781. [
  48782. {
  48783. name: "Normal",
  48784. height: math.unit(9 + 4/12, "feet"),
  48785. default: true
  48786. },
  48787. ]
  48788. ))
  48789. characterMakers.push(() => makeCharacter(
  48790. { name: "Amy", species: ["snow-leopard"], tags: ["anthro"] },
  48791. {
  48792. front: {
  48793. height: math.unit(3, "meters"),
  48794. name: "Front",
  48795. image: {
  48796. source: "./media/characters/amy/front.svg",
  48797. extra: 1380/1343,
  48798. bottom: 70/1450
  48799. }
  48800. },
  48801. back: {
  48802. height: math.unit(3, "meters"),
  48803. name: "Back",
  48804. image: {
  48805. source: "./media/characters/amy/back.svg",
  48806. extra: 1380/1347,
  48807. bottom: 66/1446
  48808. }
  48809. },
  48810. },
  48811. [
  48812. {
  48813. name: "Normal",
  48814. height: math.unit(3, "meters"),
  48815. default: true
  48816. },
  48817. ]
  48818. ))
  48819. characterMakers.push(() => makeCharacter(
  48820. { name: "Alphaschakal", species: ["jackal"], tags: ["feral"] },
  48821. {
  48822. side: {
  48823. height: math.unit(47, "cm"),
  48824. weight: math.unit(10.8, "kg"),
  48825. name: "Side",
  48826. image: {
  48827. source: "./media/characters/alphaschakal/side.svg",
  48828. extra: 1058/568,
  48829. bottom: 62/1120
  48830. }
  48831. },
  48832. back: {
  48833. height: math.unit(78, "cm"),
  48834. weight: math.unit(10.8, "kg"),
  48835. name: "Back",
  48836. image: {
  48837. source: "./media/characters/alphaschakal/back.svg",
  48838. extra: 1102/942,
  48839. bottom: 185/1287
  48840. }
  48841. },
  48842. head: {
  48843. height: math.unit(28, "cm"),
  48844. name: "Head",
  48845. image: {
  48846. source: "./media/characters/alphaschakal/head.svg",
  48847. extra: 696/508,
  48848. bottom: 0/696
  48849. }
  48850. },
  48851. paw: {
  48852. height: math.unit(16, "cm"),
  48853. name: "Paw",
  48854. image: {
  48855. source: "./media/characters/alphaschakal/paw.svg"
  48856. }
  48857. },
  48858. },
  48859. [
  48860. {
  48861. name: "Normal",
  48862. height: math.unit(47, "cm"),
  48863. default: true
  48864. },
  48865. {
  48866. name: "Macro",
  48867. height: math.unit(340, "cm")
  48868. },
  48869. ]
  48870. ))
  48871. characterMakers.push(() => makeCharacter(
  48872. { name: "EcoByss", species: ["goat", "deity", "demon"], tags: ["anthro"] },
  48873. {
  48874. front: {
  48875. height: math.unit(36, "earths"),
  48876. name: "Front",
  48877. image: {
  48878. source: "./media/characters/ecobyss/front.svg",
  48879. extra: 1282/1215,
  48880. bottom: 11/1293
  48881. }
  48882. },
  48883. back: {
  48884. height: math.unit(36, "earths"),
  48885. name: "Back",
  48886. image: {
  48887. source: "./media/characters/ecobyss/back.svg",
  48888. extra: 1291/1222,
  48889. bottom: 8/1299
  48890. }
  48891. },
  48892. },
  48893. [
  48894. {
  48895. name: "Normal",
  48896. height: math.unit(36, "earths"),
  48897. default: true
  48898. },
  48899. ]
  48900. ))
  48901. characterMakers.push(() => makeCharacter(
  48902. { name: "Vasuk", species: ["snake", "chimera"], tags: ["naga"] },
  48903. {
  48904. front: {
  48905. height: math.unit(12, "feet"),
  48906. name: "Front",
  48907. image: {
  48908. source: "./media/characters/vasuk/front.svg",
  48909. extra: 1326/1207,
  48910. bottom: 64/1390
  48911. }
  48912. },
  48913. },
  48914. [
  48915. {
  48916. name: "Normal",
  48917. height: math.unit(12, "feet"),
  48918. default: true
  48919. },
  48920. ]
  48921. ))
  48922. characterMakers.push(() => makeCharacter(
  48923. { name: "Linneaus", species: ["cougar", "deer"], tags: ["taur"] },
  48924. {
  48925. side: {
  48926. height: math.unit(100, "feet"),
  48927. name: "Side",
  48928. image: {
  48929. source: "./media/characters/linneaus/side.svg",
  48930. extra: 987/807,
  48931. bottom: 47/1034
  48932. }
  48933. },
  48934. },
  48935. [
  48936. {
  48937. name: "Macro",
  48938. height: math.unit(100, "feet"),
  48939. default: true
  48940. },
  48941. ]
  48942. ))
  48943. characterMakers.push(() => makeCharacter(
  48944. { name: "Nyterious Daligdig", species: ["triceratops"], tags: ["anthro"] },
  48945. {
  48946. front: {
  48947. height: math.unit(8, "feet"),
  48948. weight: math.unit(1200, "lb"),
  48949. name: "Front",
  48950. image: {
  48951. source: "./media/characters/nyterious-daligdig/front.svg",
  48952. extra: 1284/1094,
  48953. bottom: 84/1368
  48954. }
  48955. },
  48956. back: {
  48957. height: math.unit(8, "feet"),
  48958. weight: math.unit(1200, "lb"),
  48959. name: "Back",
  48960. image: {
  48961. source: "./media/characters/nyterious-daligdig/back.svg",
  48962. extra: 1301/1121,
  48963. bottom: 129/1430
  48964. }
  48965. },
  48966. mouth: {
  48967. height: math.unit(1.464, "feet"),
  48968. name: "Mouth",
  48969. image: {
  48970. source: "./media/characters/nyterious-daligdig/mouth.svg"
  48971. }
  48972. },
  48973. },
  48974. [
  48975. {
  48976. name: "Small",
  48977. height: math.unit(8, "feet"),
  48978. default: true
  48979. },
  48980. {
  48981. name: "Normal",
  48982. height: math.unit(15, "feet")
  48983. },
  48984. {
  48985. name: "Macro",
  48986. height: math.unit(90, "feet")
  48987. },
  48988. ]
  48989. ))
  48990. characterMakers.push(() => makeCharacter(
  48991. { name: "Bandel", species: ["drake"], tags: ["anthro"] },
  48992. {
  48993. front: {
  48994. height: math.unit(7 + 4/12, "feet"),
  48995. weight: math.unit(252, "lb"),
  48996. name: "Front",
  48997. image: {
  48998. source: "./media/characters/bandel/front.svg",
  48999. extra: 1946/1775,
  49000. bottom: 26/1972
  49001. }
  49002. },
  49003. back: {
  49004. height: math.unit(7 + 4/12, "feet"),
  49005. weight: math.unit(252, "lb"),
  49006. name: "Back",
  49007. image: {
  49008. source: "./media/characters/bandel/back.svg",
  49009. extra: 1940/1770,
  49010. bottom: 25/1965
  49011. }
  49012. },
  49013. maw: {
  49014. height: math.unit(2.15, "feet"),
  49015. name: "Maw",
  49016. image: {
  49017. source: "./media/characters/bandel/maw.svg"
  49018. }
  49019. },
  49020. stomach: {
  49021. height: math.unit(1.95, "feet"),
  49022. name: "Stomach",
  49023. image: {
  49024. source: "./media/characters/bandel/stomach.svg"
  49025. }
  49026. },
  49027. },
  49028. [
  49029. {
  49030. name: "Normal",
  49031. height: math.unit(7 + 4/12, "feet"),
  49032. default: true
  49033. },
  49034. ]
  49035. ))
  49036. characterMakers.push(() => makeCharacter(
  49037. { name: "Zed", species: ["avian", "mimic"], tags: ["anthro"] },
  49038. {
  49039. front: {
  49040. height: math.unit(10 + 5/12, "feet"),
  49041. weight: math.unit(773.5, "kg"),
  49042. name: "Front",
  49043. image: {
  49044. source: "./media/characters/zed/front.svg",
  49045. extra: 987/941,
  49046. bottom: 52/1039
  49047. }
  49048. },
  49049. },
  49050. [
  49051. {
  49052. name: "Short",
  49053. height: math.unit(5 + 4/12, "feet")
  49054. },
  49055. {
  49056. name: "Average",
  49057. height: math.unit(10 + 5/12, "feet"),
  49058. default: true
  49059. },
  49060. {
  49061. name: "Mini-Macro",
  49062. height: math.unit(24 + 9/12, "feet")
  49063. },
  49064. {
  49065. name: "Macro",
  49066. height: math.unit(249, "feet")
  49067. },
  49068. {
  49069. name: "Mega-Macro",
  49070. height: math.unit(12490, "feet")
  49071. },
  49072. {
  49073. name: "Giga-Macro",
  49074. height: math.unit(24.9, "miles")
  49075. },
  49076. {
  49077. name: "Tera-Macro",
  49078. height: math.unit(24900, "miles")
  49079. },
  49080. {
  49081. name: "Cosmic Scale",
  49082. height: math.unit(38.9, "lightyears")
  49083. },
  49084. {
  49085. name: "Universal Scale",
  49086. height: math.unit(138e12, "lightyears")
  49087. },
  49088. ]
  49089. ))
  49090. characterMakers.push(() => makeCharacter(
  49091. { name: "Ivan", species: ["okapi"], tags: ["anthro"] },
  49092. {
  49093. front: {
  49094. height: math.unit(1561, "inches"),
  49095. name: "Front",
  49096. image: {
  49097. source: "./media/characters/ivan/front.svg",
  49098. extra: 1126/1071,
  49099. bottom: 26/1152
  49100. }
  49101. },
  49102. back: {
  49103. height: math.unit(1561, "inches"),
  49104. name: "Back",
  49105. image: {
  49106. source: "./media/characters/ivan/back.svg",
  49107. extra: 1134/1079,
  49108. bottom: 30/1164
  49109. }
  49110. },
  49111. },
  49112. [
  49113. {
  49114. name: "Normal",
  49115. height: math.unit(1561, "inches"),
  49116. default: true
  49117. },
  49118. ]
  49119. ))
  49120. characterMakers.push(() => makeCharacter(
  49121. { name: "Robin (Arctic Hare)", species: ["arctic-hare"], tags: ["anthro"] },
  49122. {
  49123. front: {
  49124. height: math.unit(5 + 7/12, "feet"),
  49125. weight: math.unit(150, "lb"),
  49126. name: "Front",
  49127. image: {
  49128. source: "./media/characters/robin-arctic-hare/front.svg",
  49129. extra: 1148/974,
  49130. bottom: 20/1168
  49131. }
  49132. },
  49133. },
  49134. [
  49135. {
  49136. name: "Normal",
  49137. height: math.unit(5 + 7/12, "feet"),
  49138. default: true
  49139. },
  49140. ]
  49141. ))
  49142. characterMakers.push(() => makeCharacter(
  49143. { name: "Birch", species: ["dragon"], tags: ["feral"] },
  49144. {
  49145. side: {
  49146. height: math.unit(5, "feet"),
  49147. name: "Side",
  49148. image: {
  49149. source: "./media/characters/birch/side.svg",
  49150. extra: 985/796,
  49151. bottom: 111/1096
  49152. }
  49153. },
  49154. },
  49155. [
  49156. {
  49157. name: "Normal",
  49158. height: math.unit(5, "feet"),
  49159. default: true
  49160. },
  49161. ]
  49162. ))
  49163. characterMakers.push(() => makeCharacter(
  49164. { name: "Rasp", species: ["mew"], tags: ["anthro"] },
  49165. {
  49166. front: {
  49167. height: math.unit(4, "feet"),
  49168. name: "Front",
  49169. image: {
  49170. source: "./media/characters/rasp/front.svg",
  49171. extra: 561/478,
  49172. bottom: 74/635
  49173. }
  49174. },
  49175. },
  49176. [
  49177. {
  49178. name: "Normal",
  49179. height: math.unit(4, "feet"),
  49180. default: true
  49181. },
  49182. ]
  49183. ))
  49184. characterMakers.push(() => makeCharacter(
  49185. { name: "Agatha", species: ["leopard-gecko"], tags: ["anthro"] },
  49186. {
  49187. front: {
  49188. height: math.unit(4 + 6/12, "feet"),
  49189. name: "Front",
  49190. image: {
  49191. source: "./media/characters/agatha/front.svg",
  49192. extra: 947/933,
  49193. bottom: 42/989
  49194. }
  49195. },
  49196. back: {
  49197. height: math.unit(4 + 6/12, "feet"),
  49198. name: "Back",
  49199. image: {
  49200. source: "./media/characters/agatha/back.svg",
  49201. extra: 935/922,
  49202. bottom: 48/983
  49203. }
  49204. },
  49205. },
  49206. [
  49207. {
  49208. name: "Normal",
  49209. height: math.unit(4 + 6 /12, "feet"),
  49210. default: true
  49211. },
  49212. {
  49213. name: "Max Size",
  49214. height: math.unit(500, "feet")
  49215. },
  49216. ]
  49217. ))
  49218. characterMakers.push(() => makeCharacter(
  49219. { name: "Roggy", species: ["monster"], tags: ["feral"] },
  49220. {
  49221. side: {
  49222. height: math.unit(30, "feet"),
  49223. name: "Side",
  49224. image: {
  49225. source: "./media/characters/roggy/side.svg",
  49226. extra: 909/643,
  49227. bottom: 63/972
  49228. }
  49229. },
  49230. lounging: {
  49231. height: math.unit(20, "feet"),
  49232. name: "Lounging",
  49233. image: {
  49234. source: "./media/characters/roggy/lounging.svg",
  49235. extra: 643/479,
  49236. bottom: 145/788
  49237. }
  49238. },
  49239. handpaw: {
  49240. height: math.unit(13.1, "feet"),
  49241. name: "Handpaw",
  49242. image: {
  49243. source: "./media/characters/roggy/handpaw.svg"
  49244. }
  49245. },
  49246. footpaw: {
  49247. height: math.unit(15.8, "feet"),
  49248. name: "Footpaw",
  49249. image: {
  49250. source: "./media/characters/roggy/footpaw.svg"
  49251. }
  49252. },
  49253. },
  49254. [
  49255. {
  49256. name: "Menacing",
  49257. height: math.unit(30, "feet"),
  49258. default: true
  49259. },
  49260. ]
  49261. ))
  49262. characterMakers.push(() => makeCharacter(
  49263. { name: "Naomi", species: ["mienshao"], tags: ["anthro"] },
  49264. {
  49265. front: {
  49266. height: math.unit(5 + 7/12, "feet"),
  49267. weight: math.unit(135, "lb"),
  49268. name: "Front",
  49269. image: {
  49270. source: "./media/characters/naomi/front.svg",
  49271. extra: 1209/1154,
  49272. bottom: 129/1338
  49273. }
  49274. },
  49275. back: {
  49276. height: math.unit(5 + 7/12, "feet"),
  49277. weight: math.unit(135, "lb"),
  49278. name: "Back",
  49279. image: {
  49280. source: "./media/characters/naomi/back.svg",
  49281. extra: 1252/1190,
  49282. bottom: 23/1275
  49283. }
  49284. },
  49285. },
  49286. [
  49287. {
  49288. name: "Normal",
  49289. height: math.unit(5 + 7 /12, "feet"),
  49290. default: true
  49291. },
  49292. ]
  49293. ))
  49294. characterMakers.push(() => makeCharacter(
  49295. { name: "Kimpi", species: ["dreamspawn"], tags: ["feral"] },
  49296. {
  49297. side: {
  49298. height: math.unit(35, "meters"),
  49299. name: "Side",
  49300. image: {
  49301. source: "./media/characters/kimpi/side.svg",
  49302. extra: 419/382,
  49303. bottom: 63/482
  49304. }
  49305. },
  49306. hand: {
  49307. height: math.unit(8.96, "meters"),
  49308. name: "Hand",
  49309. image: {
  49310. source: "./media/characters/kimpi/hand.svg"
  49311. }
  49312. },
  49313. },
  49314. [
  49315. {
  49316. name: "Normal",
  49317. height: math.unit(35, "meters"),
  49318. default: true
  49319. },
  49320. ]
  49321. ))
  49322. characterMakers.push(() => makeCharacter(
  49323. { name: "Pepper (Purrloin)", species: ["purrloin"], tags: ["anthro"] },
  49324. {
  49325. front: {
  49326. height: math.unit(4 + 4/12, "feet"),
  49327. name: "Front",
  49328. image: {
  49329. source: "./media/characters/pepper-purrloin/front.svg",
  49330. extra: 1141/1024,
  49331. bottom: 21/1162
  49332. }
  49333. },
  49334. },
  49335. [
  49336. {
  49337. name: "Normal",
  49338. height: math.unit(4 + 4/12, "feet"),
  49339. default: true
  49340. },
  49341. ]
  49342. ))
  49343. characterMakers.push(() => makeCharacter(
  49344. { name: "Raphael", species: ["noivern"], tags: ["anthro"] },
  49345. {
  49346. front: {
  49347. height: math.unit(6 + 2/12, "feet"),
  49348. name: "Front",
  49349. image: {
  49350. source: "./media/characters/raphael/front.svg",
  49351. extra: 1101/962,
  49352. bottom: 59/1160
  49353. }
  49354. },
  49355. },
  49356. [
  49357. {
  49358. name: "Normal",
  49359. height: math.unit(6 + 2/12, "feet"),
  49360. default: true
  49361. },
  49362. ]
  49363. ))
  49364. characterMakers.push(() => makeCharacter(
  49365. { name: "Victor Williams", species: ["wolf"], tags: ["anthro"] },
  49366. {
  49367. front: {
  49368. height: math.unit(6, "feet"),
  49369. weight: math.unit(150, "lb"),
  49370. name: "Front",
  49371. image: {
  49372. source: "./media/characters/victor-williams/front.svg",
  49373. extra: 1894/1825,
  49374. bottom: 67/1961
  49375. }
  49376. },
  49377. },
  49378. [
  49379. {
  49380. name: "Normal",
  49381. height: math.unit(6, "feet"),
  49382. default: true
  49383. },
  49384. ]
  49385. ))
  49386. characterMakers.push(() => makeCharacter(
  49387. { name: "Rachel", species: ["hedgehog"], tags: ["anthro"] },
  49388. {
  49389. front: {
  49390. height: math.unit(5 + 8/12, "feet"),
  49391. weight: math.unit(150, "lb"),
  49392. name: "Front",
  49393. image: {
  49394. source: "./media/characters/rachel/front.svg",
  49395. extra: 1902/1787,
  49396. bottom: 46/1948
  49397. }
  49398. },
  49399. },
  49400. [
  49401. {
  49402. name: "Base Height",
  49403. height: math.unit(5 + 8/12, "feet"),
  49404. default: true
  49405. },
  49406. {
  49407. name: "Macro",
  49408. height: math.unit(200, "feet")
  49409. },
  49410. {
  49411. name: "Mega Macro",
  49412. height: math.unit(1, "mile")
  49413. },
  49414. {
  49415. name: "Giga Macro",
  49416. height: math.unit(1500, "miles")
  49417. },
  49418. {
  49419. name: "Tera Macro",
  49420. height: math.unit(8000, "miles")
  49421. },
  49422. {
  49423. name: "Tera Macro+",
  49424. height: math.unit(2e5, "miles")
  49425. },
  49426. ]
  49427. ))
  49428. characterMakers.push(() => makeCharacter(
  49429. { name: "Svetlana Rozovskaya", species: ["dragon", "naga"], tags: ["naga"] },
  49430. {
  49431. front: {
  49432. height: math.unit(6.5, "feet"),
  49433. name: "Front",
  49434. image: {
  49435. source: "./media/characters/svetlana-rozovskaya/front.svg",
  49436. extra: 860/819,
  49437. bottom: 307/1167
  49438. }
  49439. },
  49440. back: {
  49441. height: math.unit(6.5, "feet"),
  49442. name: "Back",
  49443. image: {
  49444. source: "./media/characters/svetlana-rozovskaya/back.svg",
  49445. extra: 880/837,
  49446. bottom: 395/1275
  49447. }
  49448. },
  49449. sleeping: {
  49450. height: math.unit(2.79, "feet"),
  49451. name: "Sleeping",
  49452. image: {
  49453. source: "./media/characters/svetlana-rozovskaya/sleeping.svg",
  49454. extra: 465/383,
  49455. bottom: 263/728
  49456. }
  49457. },
  49458. maw: {
  49459. height: math.unit(2.52, "feet"),
  49460. name: "Maw",
  49461. image: {
  49462. source: "./media/characters/svetlana-rozovskaya/maw.svg"
  49463. }
  49464. },
  49465. },
  49466. [
  49467. {
  49468. name: "Normal",
  49469. height: math.unit(6.5, "feet"),
  49470. default: true
  49471. },
  49472. ]
  49473. ))
  49474. characterMakers.push(() => makeCharacter(
  49475. { name: "Nova Nerium", species: ["dragon", "cat"], tags: ["anthro"] },
  49476. {
  49477. front: {
  49478. height: math.unit(5, "feet"),
  49479. name: "Front",
  49480. image: {
  49481. source: "./media/characters/nova-nerium/front.svg",
  49482. extra: 1548/1392,
  49483. bottom: 374/1922
  49484. }
  49485. },
  49486. back: {
  49487. height: math.unit(5, "feet"),
  49488. name: "Back",
  49489. image: {
  49490. source: "./media/characters/nova-nerium/back.svg",
  49491. extra: 1658/1468,
  49492. bottom: 257/1915
  49493. }
  49494. },
  49495. },
  49496. [
  49497. {
  49498. name: "Normal",
  49499. height: math.unit(5, "feet"),
  49500. default: true
  49501. },
  49502. ]
  49503. ))
  49504. characterMakers.push(() => makeCharacter(
  49505. { name: "Ashe Pyriph", species: ["liger"], tags: ["anthro"] },
  49506. {
  49507. front: {
  49508. height: math.unit(5 + 4/12, "feet"),
  49509. name: "Front",
  49510. image: {
  49511. source: "./media/characters/ashe-pyriph/front.svg",
  49512. extra: 1935/1747,
  49513. bottom: 60/1995
  49514. }
  49515. },
  49516. },
  49517. [
  49518. {
  49519. name: "Normal",
  49520. height: math.unit(5 + 4/12, "feet"),
  49521. default: true
  49522. },
  49523. ]
  49524. ))
  49525. characterMakers.push(() => makeCharacter(
  49526. { name: "Flicker Wisp", species: ["wolf", "drider"], tags: ["anthro"] },
  49527. {
  49528. front: {
  49529. height: math.unit(8.7, "feet"),
  49530. name: "Front",
  49531. image: {
  49532. source: "./media/characters/flicker-wisp/front.svg",
  49533. extra: 1835/1613,
  49534. bottom: 449/2284
  49535. }
  49536. },
  49537. side: {
  49538. height: math.unit(8.7, "feet"),
  49539. name: "Side",
  49540. image: {
  49541. source: "./media/characters/flicker-wisp/side.svg",
  49542. extra: 1841/1642,
  49543. bottom: 336/2177
  49544. },
  49545. default: true
  49546. },
  49547. maw: {
  49548. height: math.unit(3.35, "feet"),
  49549. name: "Maw",
  49550. image: {
  49551. source: "./media/characters/flicker-wisp/maw.svg",
  49552. extra: 2338/1506,
  49553. bottom: 0/2338
  49554. }
  49555. },
  49556. ovipositor: {
  49557. height: math.unit(4.95, "feet"),
  49558. name: "Ovipositor",
  49559. image: {
  49560. source: "./media/characters/flicker-wisp/ovipositor.svg"
  49561. }
  49562. },
  49563. egg: {
  49564. height: math.unit(0.385, "feet"),
  49565. weight: math.unit(2, "lb"),
  49566. name: "Egg",
  49567. image: {
  49568. source: "./media/characters/flicker-wisp/egg.svg"
  49569. }
  49570. },
  49571. },
  49572. [
  49573. {
  49574. name: "Normal",
  49575. height: math.unit(8.7, "feet"),
  49576. default: true
  49577. },
  49578. ]
  49579. ))
  49580. characterMakers.push(() => makeCharacter(
  49581. { name: "Faefnul", species: ["alien", "lizard"], tags: ["anthro"] },
  49582. {
  49583. side: {
  49584. height: math.unit(11, "feet"),
  49585. name: "Side",
  49586. image: {
  49587. source: "./media/characters/faefnul/side.svg",
  49588. extra: 1100/1007,
  49589. bottom: 0/1100
  49590. }
  49591. },
  49592. },
  49593. [
  49594. {
  49595. name: "Normal",
  49596. height: math.unit(11, "feet"),
  49597. default: true
  49598. },
  49599. ]
  49600. ))
  49601. characterMakers.push(() => makeCharacter(
  49602. { name: "Shady", species: ["fox"], tags: ["anthro"] },
  49603. {
  49604. front: {
  49605. height: math.unit(6 + 2/12, "feet"),
  49606. name: "Front",
  49607. image: {
  49608. source: "./media/characters/shady/front.svg",
  49609. extra: 502/461,
  49610. bottom: 9/511
  49611. }
  49612. },
  49613. kneeling: {
  49614. height: math.unit(4.6, "feet"),
  49615. name: "Kneeling",
  49616. image: {
  49617. source: "./media/characters/shady/kneeling.svg",
  49618. extra: 1328/1219,
  49619. bottom: 117/1445
  49620. }
  49621. },
  49622. maw: {
  49623. height: math.unit(2, "feet"),
  49624. name: "Maw",
  49625. image: {
  49626. source: "./media/characters/shady/maw.svg"
  49627. }
  49628. },
  49629. },
  49630. [
  49631. {
  49632. name: "Nano",
  49633. height: math.unit(1, "mm")
  49634. },
  49635. {
  49636. name: "Micro",
  49637. height: math.unit(12, "mm")
  49638. },
  49639. {
  49640. name: "Tiny",
  49641. height: math.unit(3, "inches")
  49642. },
  49643. {
  49644. name: "Normal",
  49645. height: math.unit(6 + 2/12, "feet"),
  49646. default: true
  49647. },
  49648. {
  49649. name: "Big",
  49650. height: math.unit(15, "feet")
  49651. },
  49652. {
  49653. name: "Macro",
  49654. height: math.unit(150, "feet")
  49655. },
  49656. {
  49657. name: "Titanic",
  49658. height: math.unit(500, "feet")
  49659. },
  49660. ]
  49661. ))
  49662. characterMakers.push(() => makeCharacter(
  49663. { name: "Fenrir", species: ["wolf"], tags: ["anthro"] },
  49664. {
  49665. front: {
  49666. height: math.unit(12, "feet"),
  49667. name: "Front",
  49668. image: {
  49669. source: "./media/characters/fenrir/front.svg",
  49670. extra: 968/875,
  49671. bottom: 22/990
  49672. }
  49673. },
  49674. },
  49675. [
  49676. {
  49677. name: "Big",
  49678. height: math.unit(12, "feet"),
  49679. default: true
  49680. },
  49681. ]
  49682. ))
  49683. characterMakers.push(() => makeCharacter(
  49684. { name: "Makar", species: ["cat"], tags: ["anthro"] },
  49685. {
  49686. front: {
  49687. height: math.unit(5 + 4/12, "feet"),
  49688. name: "Front",
  49689. image: {
  49690. source: "./media/characters/makar/front.svg",
  49691. extra: 1181/1112,
  49692. bottom: 78/1259
  49693. }
  49694. },
  49695. },
  49696. [
  49697. {
  49698. name: "Normal",
  49699. height: math.unit(5 + 4/12, "feet"),
  49700. default: true
  49701. },
  49702. ]
  49703. ))
  49704. characterMakers.push(() => makeCharacter(
  49705. { name: "Callow", species: ["deer"], tags: ["anthro"] },
  49706. {
  49707. front: {
  49708. height: math.unit(5 + 7/12, "feet"),
  49709. name: "Front",
  49710. image: {
  49711. source: "./media/characters/callow/front.svg",
  49712. extra: 1482/1304,
  49713. bottom: 23/1505
  49714. }
  49715. },
  49716. back: {
  49717. height: math.unit(5 + 7/12, "feet"),
  49718. name: "Back",
  49719. image: {
  49720. source: "./media/characters/callow/back.svg",
  49721. extra: 1484/1296,
  49722. bottom: 25/1509
  49723. }
  49724. },
  49725. },
  49726. [
  49727. {
  49728. name: "Micro",
  49729. height: math.unit(3, "inches"),
  49730. default: true
  49731. },
  49732. {
  49733. name: "Normal",
  49734. height: math.unit(5 + 7/12, "feet")
  49735. },
  49736. ]
  49737. ))
  49738. characterMakers.push(() => makeCharacter(
  49739. { name: "Natel", species: ["folf"], tags: ["anthro"] },
  49740. {
  49741. front: {
  49742. height: math.unit(6 + 2/12, "feet"),
  49743. name: "Front",
  49744. image: {
  49745. source: "./media/characters/natel/front.svg",
  49746. extra: 1833/1692,
  49747. bottom: 166/1999
  49748. }
  49749. },
  49750. },
  49751. [
  49752. {
  49753. name: "Normal",
  49754. height: math.unit(6 + 2/12, "feet"),
  49755. default: true
  49756. },
  49757. ]
  49758. ))
  49759. characterMakers.push(() => makeCharacter(
  49760. { name: "Misu", species: ["coyote"], tags: ["anthro"] },
  49761. {
  49762. front: {
  49763. height: math.unit(1.75, "meters"),
  49764. name: "Front",
  49765. image: {
  49766. source: "./media/characters/misu/front.svg",
  49767. extra: 1690/1558,
  49768. bottom: 234/1924
  49769. }
  49770. },
  49771. back: {
  49772. height: math.unit(1.75, "meters"),
  49773. name: "Back",
  49774. image: {
  49775. source: "./media/characters/misu/back.svg",
  49776. extra: 1762/1618,
  49777. bottom: 146/1908
  49778. }
  49779. },
  49780. frontNude: {
  49781. height: math.unit(1.75, "meters"),
  49782. name: "Front (Nude)",
  49783. image: {
  49784. source: "./media/characters/misu/front-nude.svg",
  49785. extra: 1690/1558,
  49786. bottom: 234/1924
  49787. }
  49788. },
  49789. backNude: {
  49790. height: math.unit(1.75, "meters"),
  49791. name: "Back (Nude)",
  49792. image: {
  49793. source: "./media/characters/misu/back-nude.svg",
  49794. extra: 1762/1618,
  49795. bottom: 146/1908
  49796. }
  49797. },
  49798. frontErect: {
  49799. height: math.unit(1.75, "meters"),
  49800. name: "Front (Erect)",
  49801. image: {
  49802. source: "./media/characters/misu/front-erect.svg",
  49803. extra: 1690/1558,
  49804. bottom: 234/1924
  49805. }
  49806. },
  49807. maw: {
  49808. height: math.unit(0.47, "meters"),
  49809. name: "Maw",
  49810. image: {
  49811. source: "./media/characters/misu/maw.svg"
  49812. }
  49813. },
  49814. head: {
  49815. height: math.unit(0.35, "meters"),
  49816. name: "Head",
  49817. image: {
  49818. source: "./media/characters/misu/head.svg"
  49819. }
  49820. },
  49821. rear: {
  49822. height: math.unit(0.47, "meters"),
  49823. name: "Rear",
  49824. image: {
  49825. source: "./media/characters/misu/rear.svg"
  49826. }
  49827. },
  49828. },
  49829. [
  49830. {
  49831. name: "Normal",
  49832. height: math.unit(1.75, "meters")
  49833. },
  49834. {
  49835. name: "Not good for the people",
  49836. height: math.unit(42, "meters")
  49837. },
  49838. {
  49839. name: "Not good for the neighborhood",
  49840. height: math.unit(135, "meters")
  49841. },
  49842. {
  49843. name: "Bit bigger problem",
  49844. height: math.unit(380, "meters"),
  49845. default: true
  49846. },
  49847. {
  49848. name: "Not good for the city",
  49849. height: math.unit(1.5, "km")
  49850. },
  49851. {
  49852. name: "Not good for the county",
  49853. height: math.unit(5.5, "km")
  49854. },
  49855. {
  49856. name: "Not good for the state",
  49857. height: math.unit(25, "km")
  49858. },
  49859. {
  49860. name: "Not good for the country",
  49861. height: math.unit(125, "km")
  49862. },
  49863. {
  49864. name: "Not good for the continent",
  49865. height: math.unit(2100, "km")
  49866. },
  49867. {
  49868. name: "Not good for the planet",
  49869. height: math.unit(35000, "km")
  49870. },
  49871. {
  49872. name: "Just no",
  49873. height: math.unit(8.5e18, "km")
  49874. },
  49875. ]
  49876. ))
  49877. characterMakers.push(() => makeCharacter(
  49878. { name: "Poppy", species: ["human"], tags: ["anthro"] },
  49879. {
  49880. front: {
  49881. height: math.unit(6.5, "feet"),
  49882. name: "Front",
  49883. image: {
  49884. source: "./media/characters/poppy/front.svg",
  49885. extra: 1878/1812,
  49886. bottom: 43/1921
  49887. }
  49888. },
  49889. feet: {
  49890. height: math.unit(1.06, "feet"),
  49891. name: "Feet",
  49892. image: {
  49893. source: "./media/characters/poppy/feet.svg",
  49894. extra: 1083/1083,
  49895. bottom: 87/1170
  49896. }
  49897. },
  49898. },
  49899. [
  49900. {
  49901. name: "Human",
  49902. height: math.unit(6.5, "feet")
  49903. },
  49904. {
  49905. name: "Default",
  49906. height: math.unit(300, "feet"),
  49907. default: true
  49908. },
  49909. {
  49910. name: "Huge",
  49911. height: math.unit(850, "feet")
  49912. },
  49913. {
  49914. name: "Mega",
  49915. height: math.unit(8000, "feet")
  49916. },
  49917. {
  49918. name: "Giga",
  49919. height: math.unit(300, "miles")
  49920. },
  49921. ]
  49922. ))
  49923. characterMakers.push(() => makeCharacter(
  49924. { name: "Zener", species: ["dragon" ,"robot"], tags: ["anthro", "feral"] },
  49925. {
  49926. bipedal: {
  49927. height: math.unit(7, "feet"),
  49928. name: "Bipedal",
  49929. image: {
  49930. source: "./media/characters/zener/bipedal.svg",
  49931. extra: 874/805,
  49932. bottom: 109/983
  49933. }
  49934. },
  49935. quadrupedal: {
  49936. height: math.unit(4.64, "feet"),
  49937. name: "Quadrupedal",
  49938. image: {
  49939. source: "./media/characters/zener/quadrupedal.svg",
  49940. extra: 638/507,
  49941. bottom: 190/828
  49942. }
  49943. },
  49944. cock: {
  49945. height: math.unit(18, "inches"),
  49946. name: "Cock",
  49947. image: {
  49948. source: "./media/characters/zener/cock.svg"
  49949. }
  49950. },
  49951. },
  49952. [
  49953. {
  49954. name: "Normal",
  49955. height: math.unit(7, "feet"),
  49956. default: true
  49957. },
  49958. ]
  49959. ))
  49960. characterMakers.push(() => makeCharacter(
  49961. { name: "Charlie (Dog)", species: ["dog"], tags: ["anthro"] },
  49962. {
  49963. nude: {
  49964. height: math.unit(5 + 6/12, "feet"),
  49965. name: "Nude",
  49966. image: {
  49967. source: "./media/characters/charlie-dog/nude.svg",
  49968. extra: 768/734,
  49969. bottom: 26/794
  49970. }
  49971. },
  49972. dressed: {
  49973. height: math.unit(5 + 6/12, "feet"),
  49974. name: "Dressed",
  49975. image: {
  49976. source: "./media/characters/charlie-dog/dressed.svg",
  49977. extra: 768/734,
  49978. bottom: 26/794
  49979. }
  49980. },
  49981. },
  49982. [
  49983. {
  49984. name: "Normal",
  49985. height: math.unit(5 + 6/12, "feet"),
  49986. default: true
  49987. },
  49988. ]
  49989. ))
  49990. characterMakers.push(() => makeCharacter(
  49991. { name: "Ir'istrasz", species: ["dragon"], tags: ["anthro"] },
  49992. {
  49993. front: {
  49994. height: math.unit(6 + 4/12, "feet"),
  49995. name: "Front",
  49996. image: {
  49997. source: "./media/characters/ir'istrasz/front.svg",
  49998. extra: 1014/977,
  49999. bottom: 65/1079
  50000. }
  50001. },
  50002. back: {
  50003. height: math.unit(6 + 4/12, "feet"),
  50004. name: "Back",
  50005. image: {
  50006. source: "./media/characters/ir'istrasz/back.svg",
  50007. extra: 1024/992,
  50008. bottom: 34/1058
  50009. }
  50010. },
  50011. },
  50012. [
  50013. {
  50014. name: "Normal",
  50015. height: math.unit(6 + 4/12, "feet"),
  50016. default: true
  50017. },
  50018. ]
  50019. ))
  50020. characterMakers.push(() => makeCharacter(
  50021. { name: "Dee (Ditto)", species: ["ditto"], tags: ["anthro", "goo"] },
  50022. {
  50023. front: {
  50024. height: math.unit(5 + 8/12, "feet"),
  50025. name: "Front",
  50026. image: {
  50027. source: "./media/characters/dee-ditto/front.svg",
  50028. extra: 1874/1785,
  50029. bottom: 68/1942
  50030. }
  50031. },
  50032. back: {
  50033. height: math.unit(5 + 8/12, "feet"),
  50034. name: "Back",
  50035. image: {
  50036. source: "./media/characters/dee-ditto/back.svg",
  50037. extra: 1870/1783,
  50038. bottom: 77/1947
  50039. }
  50040. },
  50041. },
  50042. [
  50043. {
  50044. name: "Normal",
  50045. height: math.unit(5 + 8/12, "feet"),
  50046. default: true
  50047. },
  50048. ]
  50049. ))
  50050. characterMakers.push(() => makeCharacter(
  50051. { name: "Fey", species: ["werebeast", "fox"], tags: ["anthro"] },
  50052. {
  50053. front: {
  50054. height: math.unit(7 + 6/12, "feet"),
  50055. name: "Front",
  50056. image: {
  50057. source: "./media/characters/fey/front.svg",
  50058. extra: 995/979,
  50059. bottom: 30/1025
  50060. }
  50061. },
  50062. back: {
  50063. height: math.unit(7 + 6/12, "feet"),
  50064. name: "Back",
  50065. image: {
  50066. source: "./media/characters/fey/back.svg",
  50067. extra: 1079/1008,
  50068. bottom: 5/1084
  50069. }
  50070. },
  50071. dressed: {
  50072. height: math.unit(7 + 6/12, "feet"),
  50073. name: "Dressed",
  50074. image: {
  50075. source: "./media/characters/fey/dressed.svg",
  50076. extra: 995/979,
  50077. bottom: 30/1025
  50078. }
  50079. },
  50080. },
  50081. [
  50082. {
  50083. name: "Normal",
  50084. height: math.unit(7 + 6/12, "feet"),
  50085. default: true
  50086. },
  50087. ]
  50088. ))
  50089. characterMakers.push(() => makeCharacter(
  50090. { name: "Aster", species: ["alien"], tags: ["anthro"] },
  50091. {
  50092. standing: {
  50093. height: math.unit(17, "feet"),
  50094. name: "Standing",
  50095. image: {
  50096. source: "./media/characters/aster/standing.svg",
  50097. extra: 1798/1598,
  50098. bottom: 117/1915
  50099. }
  50100. },
  50101. },
  50102. [
  50103. {
  50104. name: "Normal",
  50105. height: math.unit(17, "feet"),
  50106. default: true
  50107. },
  50108. {
  50109. name: "Homewrecker",
  50110. height: math.unit(95, "feet")
  50111. },
  50112. {
  50113. name: "Planet Devourer",
  50114. height: math.unit(1008000, "miles")
  50115. },
  50116. ]
  50117. ))
  50118. characterMakers.push(() => makeCharacter(
  50119. { name: "Devon Childs", species: ["hyena"], tags: ["anthro"] },
  50120. {
  50121. front: {
  50122. height: math.unit(6 + 5/12, "feet"),
  50123. weight: math.unit(265, "lb"),
  50124. name: "Front",
  50125. image: {
  50126. source: "./media/characters/devon-childs/front.svg",
  50127. extra: 1795/1721,
  50128. bottom: 41/1836
  50129. }
  50130. },
  50131. side: {
  50132. height: math.unit(6 + 5/12, "feet"),
  50133. weight: math.unit(265, "lb"),
  50134. name: "Side",
  50135. image: {
  50136. source: "./media/characters/devon-childs/side.svg",
  50137. extra: 1812/1738,
  50138. bottom: 30/1842
  50139. }
  50140. },
  50141. back: {
  50142. height: math.unit(6 + 5/12, "feet"),
  50143. weight: math.unit(265, "lb"),
  50144. name: "Back",
  50145. image: {
  50146. source: "./media/characters/devon-childs/back.svg",
  50147. extra: 1808/1735,
  50148. bottom: 23/1831
  50149. }
  50150. },
  50151. hand: {
  50152. height: math.unit(1.464, "feet"),
  50153. name: "Hand",
  50154. image: {
  50155. source: "./media/characters/devon-childs/hand.svg"
  50156. }
  50157. },
  50158. foot: {
  50159. height: math.unit(1.6, "feet"),
  50160. name: "Foot",
  50161. image: {
  50162. source: "./media/characters/devon-childs/foot.svg"
  50163. }
  50164. },
  50165. },
  50166. [
  50167. {
  50168. name: "Micro",
  50169. height: math.unit(7, "cm")
  50170. },
  50171. {
  50172. name: "Normal",
  50173. height: math.unit(6 + 5/12, "feet"),
  50174. default: true
  50175. },
  50176. {
  50177. name: "Macro",
  50178. height: math.unit(154, "feet")
  50179. },
  50180. ]
  50181. ))
  50182. characterMakers.push(() => makeCharacter(
  50183. { name: "Lydemox Vir", species: ["kitsune"], tags: ["anthro"] },
  50184. {
  50185. front: {
  50186. height: math.unit(6, "feet"),
  50187. weight: math.unit(180, "lb"),
  50188. name: "Front",
  50189. image: {
  50190. source: "./media/characters/lydemox-vir/front.svg",
  50191. extra: 1632/1435,
  50192. bottom: 58/1690
  50193. }
  50194. },
  50195. frontSFW: {
  50196. height: math.unit(6, "feet"),
  50197. weight: math.unit(180, "lb"),
  50198. name: "Front (SFW)",
  50199. image: {
  50200. source: "./media/characters/lydemox-vir/front-sfw.svg",
  50201. extra: 1632/1435,
  50202. bottom: 58/1690
  50203. }
  50204. },
  50205. back: {
  50206. height: math.unit(6, "feet"),
  50207. weight: math.unit(180, "lb"),
  50208. name: "Back",
  50209. image: {
  50210. source: "./media/characters/lydemox-vir/back.svg",
  50211. extra: 1593/1408,
  50212. bottom: 31/1624
  50213. }
  50214. },
  50215. paw: {
  50216. height: math.unit(1.85, "feet"),
  50217. name: "Paw",
  50218. image: {
  50219. source: "./media/characters/lydemox-vir/paw.svg"
  50220. }
  50221. },
  50222. dick: {
  50223. height: math.unit(1.8, "feet"),
  50224. name: "Dick",
  50225. image: {
  50226. source: "./media/characters/lydemox-vir/dick.svg"
  50227. }
  50228. },
  50229. },
  50230. [
  50231. {
  50232. name: "Macro",
  50233. height: math.unit(100, "feet"),
  50234. default: true
  50235. },
  50236. {
  50237. name: "Teramacro",
  50238. height: math.unit(1, "earth")
  50239. },
  50240. {
  50241. name: "Planetary",
  50242. height: math.unit(20, "earths")
  50243. },
  50244. ]
  50245. ))
  50246. characterMakers.push(() => makeCharacter(
  50247. { name: "Mia", species: ["panda"], tags: ["anthro"] },
  50248. {
  50249. front: {
  50250. height: math.unit(15 + 8/12, "feet"),
  50251. weight: math.unit(1237, "kg"),
  50252. name: "Front",
  50253. image: {
  50254. source: "./media/characters/mia/front.svg",
  50255. extra: 1573/1446,
  50256. bottom: 58/1631
  50257. }
  50258. },
  50259. },
  50260. [
  50261. {
  50262. name: "Small",
  50263. height: math.unit(9 + 5/12, "feet")
  50264. },
  50265. {
  50266. name: "Normal",
  50267. height: math.unit(15 + 8/12, "feet"),
  50268. default: true
  50269. },
  50270. ]
  50271. ))
  50272. characterMakers.push(() => makeCharacter(
  50273. { name: "Mr. Graves", species: ["wolf"], tags: ["anthro"] },
  50274. {
  50275. front: {
  50276. height: math.unit(10 + 6/12, "feet"),
  50277. weight: math.unit(1.3, "tons"),
  50278. name: "Front",
  50279. image: {
  50280. source: "./media/characters/mr-graves/front.svg",
  50281. extra: 1779/1695,
  50282. bottom: 198/1977
  50283. }
  50284. },
  50285. },
  50286. [
  50287. {
  50288. name: "Normal",
  50289. height: math.unit(10 + 6 /12, "feet"),
  50290. default: true
  50291. },
  50292. ]
  50293. ))
  50294. characterMakers.push(() => makeCharacter(
  50295. { name: "Jess", species: ["human"], tags: ["anthro"] },
  50296. {
  50297. dressedFront: {
  50298. height: math.unit(5 + 8/12, "feet"),
  50299. weight: math.unit(125, "lb"),
  50300. name: "Dressed (Front)",
  50301. image: {
  50302. source: "./media/characters/jess/dressed-front.svg",
  50303. extra: 1176/1152,
  50304. bottom: 42/1218
  50305. }
  50306. },
  50307. dressedSide: {
  50308. height: math.unit(5 + 8/12, "feet"),
  50309. weight: math.unit(125, "lb"),
  50310. name: "Dressed (Side)",
  50311. image: {
  50312. source: "./media/characters/jess/dressed-side.svg",
  50313. extra: 1204/1190,
  50314. bottom: 6/1210
  50315. }
  50316. },
  50317. nudeFront: {
  50318. height: math.unit(5 + 8/12, "feet"),
  50319. weight: math.unit(125, "lb"),
  50320. name: "Nude (Front)",
  50321. image: {
  50322. source: "./media/characters/jess/nude-front.svg",
  50323. extra: 1176/1152,
  50324. bottom: 42/1218
  50325. }
  50326. },
  50327. nudeSide: {
  50328. height: math.unit(5 + 8/12, "feet"),
  50329. weight: math.unit(125, "lb"),
  50330. name: "Nude (Side)",
  50331. image: {
  50332. source: "./media/characters/jess/nude-side.svg",
  50333. extra: 1204/1190,
  50334. bottom: 6/1210
  50335. }
  50336. },
  50337. organsFront: {
  50338. height: math.unit(2.83799342105, "feet"),
  50339. name: "Organs (Front)",
  50340. image: {
  50341. source: "./media/characters/jess/organs-front.svg"
  50342. }
  50343. },
  50344. organsSide: {
  50345. height: math.unit(2.64225290474, "feet"),
  50346. name: "Organs (Side)",
  50347. image: {
  50348. source: "./media/characters/jess/organs-side.svg"
  50349. }
  50350. },
  50351. digestiveTractFront: {
  50352. height: math.unit(2.8106580871, "feet"),
  50353. name: "Digestive Tract (Front)",
  50354. image: {
  50355. source: "./media/characters/jess/digestive-tract-front.svg"
  50356. }
  50357. },
  50358. digestiveTractSide: {
  50359. height: math.unit(2.54365045014, "feet"),
  50360. name: "Digestive Tract (Side)",
  50361. image: {
  50362. source: "./media/characters/jess/digestive-tract-side.svg"
  50363. }
  50364. },
  50365. respiratorySystemFront: {
  50366. height: math.unit(1.11196233456, "feet"),
  50367. name: "Respiratory System (Front)",
  50368. image: {
  50369. source: "./media/characters/jess/respiratory-system-front.svg"
  50370. }
  50371. },
  50372. respiratorySystemSide: {
  50373. height: math.unit(0.89327966297, "feet"),
  50374. name: "Respiratory System (Side)",
  50375. image: {
  50376. source: "./media/characters/jess/respiratory-system-side.svg"
  50377. }
  50378. },
  50379. urinaryTractFront: {
  50380. height: math.unit(1.16126356186, "feet"),
  50381. name: "Urinary Tract (Front)",
  50382. image: {
  50383. source: "./media/characters/jess/urinary-tract-front.svg"
  50384. }
  50385. },
  50386. urinaryTractSide: {
  50387. height: math.unit(1.20910039627, "feet"),
  50388. name: "Urinary Tract (Side)",
  50389. image: {
  50390. source: "./media/characters/jess/urinary-tract-side.svg"
  50391. }
  50392. },
  50393. reproductiveOrgansFront: {
  50394. height: math.unit(0.48422591566, "feet"),
  50395. name: "Reproductive Organs (Front)",
  50396. image: {
  50397. source: "./media/characters/jess/reproductive-organs-front.svg"
  50398. }
  50399. },
  50400. reproductiveOrgansSide: {
  50401. height: math.unit(0.61553314481, "feet"),
  50402. name: "Reproductive Organs (Side)",
  50403. image: {
  50404. source: "./media/characters/jess/reproductive-organs-side.svg"
  50405. }
  50406. },
  50407. breastsFront: {
  50408. height: math.unit(0.47690395121, "feet"),
  50409. name: "Breasts (Front)",
  50410. image: {
  50411. source: "./media/characters/jess/breasts-front.svg"
  50412. }
  50413. },
  50414. breastsSide: {
  50415. height: math.unit(0.30556998307, "feet"),
  50416. name: "Breasts (Side)",
  50417. image: {
  50418. source: "./media/characters/jess/breasts-side.svg"
  50419. }
  50420. },
  50421. heartFront: {
  50422. height: math.unit(0.53011022622, "feet"),
  50423. name: "Heart (Front)",
  50424. image: {
  50425. source: "./media/characters/jess/heart-front.svg"
  50426. }
  50427. },
  50428. heartSide: {
  50429. height: math.unit(0.51790695213, "feet"),
  50430. name: "Heart (Side)",
  50431. image: {
  50432. source: "./media/characters/jess/heart-side.svg"
  50433. }
  50434. },
  50435. earsAndNoseFront: {
  50436. height: math.unit(0.29385483995, "feet"),
  50437. name: "Ears and Nose (Front)",
  50438. image: {
  50439. source: "./media/characters/jess/ears-and-nose-front.svg"
  50440. }
  50441. },
  50442. earsAndNoseSide: {
  50443. height: math.unit(0.18109658741, "feet"),
  50444. name: "Ears and Nose (Side)",
  50445. image: {
  50446. source: "./media/characters/jess/ears-and-nose-side.svg"
  50447. }
  50448. },
  50449. },
  50450. [
  50451. {
  50452. name: "Normal",
  50453. height: math.unit(5 + 8/12, "feet"),
  50454. default: true
  50455. },
  50456. ]
  50457. ))
  50458. characterMakers.push(() => makeCharacter(
  50459. { name: "Wimpering", species: ["human"], tags: ["anthro"] },
  50460. {
  50461. front: {
  50462. height: math.unit(6, "feet"),
  50463. weight: math.unit(6.64467e-7, "grams"),
  50464. name: "Front",
  50465. image: {
  50466. source: "./media/characters/wimpering/front.svg",
  50467. extra: 597/587,
  50468. bottom: 34/631
  50469. }
  50470. },
  50471. },
  50472. [
  50473. {
  50474. name: "Micro",
  50475. height: math.unit(0.4, "mm"),
  50476. default: true
  50477. },
  50478. ]
  50479. ))
  50480. characterMakers.push(() => makeCharacter(
  50481. { name: "Keltre", species: ["dog"], tags: ["anthro"] },
  50482. {
  50483. front: {
  50484. height: math.unit(5 + 2/12, "feet"),
  50485. weight: math.unit(110, "lb"),
  50486. name: "Front",
  50487. image: {
  50488. source: "./media/characters/keltre/front.svg",
  50489. extra: 1099/1057,
  50490. bottom: 22/1121
  50491. }
  50492. },
  50493. back: {
  50494. height: math.unit(5 + 2/12, "feet"),
  50495. weight: math.unit(110, "lb"),
  50496. name: "Back",
  50497. image: {
  50498. source: "./media/characters/keltre/back.svg",
  50499. extra: 1095/1053,
  50500. bottom: 17/1112
  50501. }
  50502. },
  50503. dressed: {
  50504. height: math.unit(5 + 2/12, "feet"),
  50505. weight: math.unit(110, "lb"),
  50506. name: "Dressed",
  50507. image: {
  50508. source: "./media/characters/keltre/dressed.svg",
  50509. extra: 1099/1057,
  50510. bottom: 22/1121
  50511. }
  50512. },
  50513. winter: {
  50514. height: math.unit(5 + 2/12, "feet"),
  50515. weight: math.unit(110, "lb"),
  50516. name: "Winter",
  50517. image: {
  50518. source: "./media/characters/keltre/winter.svg",
  50519. extra: 1099/1057,
  50520. bottom: 22/1121
  50521. }
  50522. },
  50523. head: {
  50524. height: math.unit(1.61 * 0.86, "feet"),
  50525. name: "Head",
  50526. image: {
  50527. source: "./media/characters/keltre/head.svg",
  50528. extra: 534/421,
  50529. bottom: 0/534
  50530. }
  50531. },
  50532. hand: {
  50533. height: math.unit(1.3 * 0.86, "feet"),
  50534. name: "Hand",
  50535. image: {
  50536. source: "./media/characters/keltre/hand.svg"
  50537. }
  50538. },
  50539. foot: {
  50540. height: math.unit(1.8 * 0.86, "feet"),
  50541. name: "Foot",
  50542. image: {
  50543. source: "./media/characters/keltre/foot.svg"
  50544. }
  50545. },
  50546. },
  50547. [
  50548. {
  50549. name: "Fine",
  50550. height: math.unit(1, "inch")
  50551. },
  50552. {
  50553. name: "Dimnutive",
  50554. height: math.unit(4, "inches")
  50555. },
  50556. {
  50557. name: "Tiny",
  50558. height: math.unit(1, "foot")
  50559. },
  50560. {
  50561. name: "Small",
  50562. height: math.unit(3, "feet")
  50563. },
  50564. {
  50565. name: "Normal",
  50566. height: math.unit(5 + 2/12, "feet"),
  50567. default: true
  50568. },
  50569. ]
  50570. ))
  50571. characterMakers.push(() => makeCharacter(
  50572. { name: "Nox", species: ["cat"], tags: ["anthro"] },
  50573. {
  50574. front: {
  50575. height: math.unit(6 + 2/12, "feet"),
  50576. name: "Front",
  50577. image: {
  50578. source: "./media/characters/nox/front.svg",
  50579. extra: 1917/1830,
  50580. bottom: 74/1991
  50581. }
  50582. },
  50583. back: {
  50584. height: math.unit(6 + 2/12, "feet"),
  50585. name: "Back",
  50586. image: {
  50587. source: "./media/characters/nox/back.svg",
  50588. extra: 1896/1815,
  50589. bottom: 21/1917
  50590. }
  50591. },
  50592. head: {
  50593. height: math.unit(1.1, "feet"),
  50594. name: "Head",
  50595. image: {
  50596. source: "./media/characters/nox/head.svg",
  50597. extra: 874/704,
  50598. bottom: 0/874
  50599. }
  50600. },
  50601. tattoo: {
  50602. height: math.unit(0.729, "feet"),
  50603. name: "Tattoo",
  50604. image: {
  50605. source: "./media/characters/nox/tattoo.svg"
  50606. }
  50607. },
  50608. },
  50609. [
  50610. {
  50611. name: "Normal",
  50612. height: math.unit(6 + 2/12, "feet")
  50613. },
  50614. {
  50615. name: "Gigamacro",
  50616. height: math.unit(2, "earths"),
  50617. default: true
  50618. },
  50619. {
  50620. name: "Cosmic",
  50621. height: math.unit(867, "yottameters")
  50622. },
  50623. ]
  50624. ))
  50625. characterMakers.push(() => makeCharacter(
  50626. { name: "Caspian", species: ["ferret"], tags: ["anthro"] },
  50627. {
  50628. front: {
  50629. height: math.unit(6, "feet"),
  50630. weight: math.unit(150, "lb"),
  50631. name: "Front",
  50632. image: {
  50633. source: "./media/characters/caspian/front.svg",
  50634. extra: 1443/1359,
  50635. bottom: 0/1443
  50636. }
  50637. },
  50638. back: {
  50639. height: math.unit(6, "feet"),
  50640. weight: math.unit(150, "lb"),
  50641. name: "Back",
  50642. image: {
  50643. source: "./media/characters/caspian/back.svg",
  50644. extra: 1379/1309,
  50645. bottom: 0/1379
  50646. }
  50647. },
  50648. head: {
  50649. height: math.unit(0.9, "feet"),
  50650. name: "Head",
  50651. image: {
  50652. source: "./media/characters/caspian/head.svg",
  50653. extra: 692/492,
  50654. bottom: 0/692
  50655. }
  50656. },
  50657. headAlt: {
  50658. height: math.unit(0.95, "feet"),
  50659. name: "Head (Alt)",
  50660. image: {
  50661. source: "./media/characters/caspian/head-alt.svg",
  50662. extra: 668/508,
  50663. bottom: 0/668
  50664. }
  50665. },
  50666. hand: {
  50667. height: math.unit(0.8, "feet"),
  50668. name: "Hand",
  50669. image: {
  50670. source: "./media/characters/caspian/hand.svg"
  50671. }
  50672. },
  50673. paw: {
  50674. height: math.unit(0.95, "feet"),
  50675. name: "Paw",
  50676. image: {
  50677. source: "./media/characters/caspian/paw.svg"
  50678. }
  50679. },
  50680. },
  50681. [
  50682. {
  50683. name: "Normal",
  50684. height: math.unit(162, "feet"),
  50685. default: true
  50686. },
  50687. ]
  50688. ))
  50689. characterMakers.push(() => makeCharacter(
  50690. { name: "Myra Aisling", species: ["coyote"], tags: ["anthro"] },
  50691. {
  50692. front: {
  50693. height: math.unit(6, "feet"),
  50694. name: "Front",
  50695. image: {
  50696. source: "./media/characters/myra-aisling/front.svg",
  50697. extra: 1268/1166,
  50698. bottom: 73/1341
  50699. }
  50700. },
  50701. back: {
  50702. height: math.unit(6, "feet"),
  50703. name: "Back",
  50704. image: {
  50705. source: "./media/characters/myra-aisling/back.svg",
  50706. extra: 1249/1149,
  50707. bottom: 79/1328
  50708. }
  50709. },
  50710. dressed: {
  50711. height: math.unit(6, "feet"),
  50712. name: "Dressed",
  50713. image: {
  50714. source: "./media/characters/myra-aisling/dressed.svg",
  50715. extra: 1290/1189,
  50716. bottom: 47/1337
  50717. }
  50718. },
  50719. hand: {
  50720. height: math.unit(1.1, "feet"),
  50721. name: "Hand",
  50722. image: {
  50723. source: "./media/characters/myra-aisling/hand.svg"
  50724. }
  50725. },
  50726. paw: {
  50727. height: math.unit(1.23, "feet"),
  50728. name: "Paw",
  50729. image: {
  50730. source: "./media/characters/myra-aisling/paw.svg"
  50731. }
  50732. },
  50733. },
  50734. [
  50735. {
  50736. name: "Normal",
  50737. height: math.unit(160, "feet"),
  50738. default: true
  50739. },
  50740. ]
  50741. ))
  50742. characterMakers.push(() => makeCharacter(
  50743. { name: "Tenley Sidero", species: ["lycanroc"], tags: ["anthro"] },
  50744. {
  50745. front: {
  50746. height: math.unit(6, "feet"),
  50747. name: "Front",
  50748. image: {
  50749. source: "./media/characters/tenley-sidero/front.svg",
  50750. extra: 1365/1276,
  50751. bottom: 47/1412
  50752. }
  50753. },
  50754. back: {
  50755. height: math.unit(6, "feet"),
  50756. name: "Back",
  50757. image: {
  50758. source: "./media/characters/tenley-sidero/back.svg",
  50759. extra: 1383/1283,
  50760. bottom: 35/1418
  50761. }
  50762. },
  50763. dressed: {
  50764. height: math.unit(6, "feet"),
  50765. name: "Dressed",
  50766. image: {
  50767. source: "./media/characters/tenley-sidero/dressed.svg",
  50768. extra: 1364/1275,
  50769. bottom: 42/1406
  50770. }
  50771. },
  50772. head: {
  50773. height: math.unit(1.47, "feet"),
  50774. name: "Head",
  50775. image: {
  50776. source: "./media/characters/tenley-sidero/head.svg",
  50777. extra: 610/490,
  50778. bottom: 0/610
  50779. }
  50780. },
  50781. },
  50782. [
  50783. {
  50784. name: "Normal",
  50785. height: math.unit(154, "feet"),
  50786. default: true
  50787. },
  50788. ]
  50789. ))
  50790. characterMakers.push(() => makeCharacter(
  50791. { name: "Mallory", species: ["rabbit"], tags: ["anthro"] },
  50792. {
  50793. front: {
  50794. height: math.unit(5, "inches"),
  50795. name: "Front",
  50796. image: {
  50797. source: "./media/characters/mallory/front.svg",
  50798. extra: 1919/1678,
  50799. bottom: 29/1948
  50800. }
  50801. },
  50802. hand: {
  50803. height: math.unit(0.73, "inches"),
  50804. name: "Hand",
  50805. image: {
  50806. source: "./media/characters/mallory/hand.svg"
  50807. }
  50808. },
  50809. paw: {
  50810. height: math.unit(0.68, "inches"),
  50811. name: "Paw",
  50812. image: {
  50813. source: "./media/characters/mallory/paw.svg"
  50814. }
  50815. },
  50816. },
  50817. [
  50818. {
  50819. name: "Small",
  50820. height: math.unit(5, "inches"),
  50821. default: true
  50822. },
  50823. ]
  50824. ))
  50825. characterMakers.push(() => makeCharacter(
  50826. { name: "Mab", species: ["opossum"], tags: ["anthro"] },
  50827. {
  50828. naked: {
  50829. height: math.unit(6, "feet"),
  50830. name: "Naked",
  50831. image: {
  50832. source: "./media/characters/mab/naked.svg",
  50833. extra: 1855/1757,
  50834. bottom: 208/2063
  50835. }
  50836. },
  50837. outside: {
  50838. height: math.unit(6, "feet"),
  50839. name: "Outside",
  50840. image: {
  50841. source: "./media/characters/mab/outside.svg",
  50842. extra: 1855/1757,
  50843. bottom: 208/2063
  50844. }
  50845. },
  50846. party: {
  50847. height: math.unit(6, "feet"),
  50848. name: "Party",
  50849. image: {
  50850. source: "./media/characters/mab/party.svg",
  50851. extra: 1855/1757,
  50852. bottom: 208/2063
  50853. }
  50854. },
  50855. },
  50856. [
  50857. {
  50858. name: "Normal",
  50859. height: math.unit(165, "feet"),
  50860. default: true
  50861. },
  50862. ]
  50863. ))
  50864. characterMakers.push(() => makeCharacter(
  50865. { name: "Winter", species: ["arcanine"], tags: ["feral"] },
  50866. {
  50867. feral: {
  50868. height: math.unit(12, "feet"),
  50869. weight: math.unit(20000, "lb"),
  50870. name: "Side",
  50871. image: {
  50872. source: "./media/characters/winter/feral.svg",
  50873. extra: 1286/943,
  50874. bottom: 112/1398
  50875. },
  50876. form: "feral",
  50877. default: true
  50878. },
  50879. feralNsfw: {
  50880. height: math.unit(12, "feet"),
  50881. weight: math.unit(20000, "lb"),
  50882. name: "Side (NSFW)",
  50883. image: {
  50884. source: "./media/characters/winter/feral-nsfw.svg",
  50885. extra: 1286/943,
  50886. bottom: 112/1398
  50887. },
  50888. form: "feral"
  50889. },
  50890. dick: {
  50891. height: math.unit(3.79, "feet"),
  50892. name: "Dick",
  50893. image: {
  50894. source: "./media/characters/winter/dick.svg"
  50895. },
  50896. form: "feral"
  50897. },
  50898. anthro: {
  50899. height: math.unit(12, "feet"),
  50900. weight: math.unit(10, "tons"),
  50901. name: "Anthro",
  50902. image: {
  50903. source: "./media/characters/winter/anthro.svg",
  50904. extra: 1701/1553,
  50905. bottom: 64/1765
  50906. },
  50907. form: "anthro",
  50908. default: true
  50909. },
  50910. },
  50911. [
  50912. {
  50913. name: "Big",
  50914. height: math.unit(12, "feet"),
  50915. default: true,
  50916. form: "feral"
  50917. },
  50918. {
  50919. name: "Big",
  50920. height: math.unit(12, "feet"),
  50921. default: true,
  50922. form: "anthro"
  50923. },
  50924. ],
  50925. {
  50926. "feral": {
  50927. name: "Feral",
  50928. default: true
  50929. },
  50930. "anthro": {
  50931. name: "Anthro"
  50932. }
  50933. }
  50934. ))
  50935. characterMakers.push(() => makeCharacter(
  50936. { name: "Alto", species: ["mouse", "chinchilla"], tags: ["anthro"] },
  50937. {
  50938. front: {
  50939. height: math.unit(4.1, "inches"),
  50940. name: "Front",
  50941. image: {
  50942. source: "./media/characters/alto/front.svg",
  50943. extra: 736/627,
  50944. bottom: 90/826
  50945. }
  50946. },
  50947. },
  50948. [
  50949. {
  50950. name: "Normal",
  50951. height: math.unit(4.1, "inches"),
  50952. default: true
  50953. },
  50954. ]
  50955. ))
  50956. characterMakers.push(() => makeCharacter(
  50957. { name: "Ratstrid V", species: ["opossum"], tags: ["anthro"] },
  50958. {
  50959. sitting: {
  50960. height: math.unit(3, "feet"),
  50961. name: "Sitting",
  50962. image: {
  50963. source: "./media/characters/ratstrid-v/sitting.svg",
  50964. extra: 355/310,
  50965. bottom: 136/491
  50966. }
  50967. },
  50968. },
  50969. [
  50970. {
  50971. name: "Normal",
  50972. height: math.unit(3, "feet"),
  50973. default: true
  50974. },
  50975. ]
  50976. ))
  50977. characterMakers.push(() => makeCharacter(
  50978. { name: "Siz", species: ["cinderace"], tags: ["anthro"] },
  50979. {
  50980. back: {
  50981. height: math.unit(6, "feet"),
  50982. weight: math.unit(450, "lb"),
  50983. name: "Back",
  50984. image: {
  50985. source: "./media/characters/siz/back.svg",
  50986. extra: 1449/1274,
  50987. bottom: 13/1462
  50988. }
  50989. },
  50990. },
  50991. [
  50992. {
  50993. name: "Smallest",
  50994. height: math.unit(18 + 3/12, "feet")
  50995. },
  50996. {
  50997. name: "Modest",
  50998. height: math.unit(56 + 8/12, "feet"),
  50999. default: true
  51000. },
  51001. {
  51002. name: "Largest",
  51003. height: math.unit(3590, "feet")
  51004. },
  51005. ]
  51006. ))
  51007. characterMakers.push(() => makeCharacter(
  51008. { name: "Ven", species: ["raven"], tags: ["anthro"] },
  51009. {
  51010. front: {
  51011. height: math.unit(5 + 9/12, "feet"),
  51012. weight: math.unit(150, "lb"),
  51013. name: "Front",
  51014. image: {
  51015. source: "./media/characters/ven/front.svg",
  51016. extra: 1372/1320,
  51017. bottom: 73/1445
  51018. }
  51019. },
  51020. side: {
  51021. height: math.unit(5 + 9/12, "feet"),
  51022. weight: math.unit(1150, "lb"),
  51023. name: "Side",
  51024. image: {
  51025. source: "./media/characters/ven/side.svg",
  51026. extra: 1119/1070,
  51027. bottom: 42/1161
  51028. },
  51029. default: true
  51030. },
  51031. },
  51032. [
  51033. {
  51034. name: "Normal",
  51035. height: math.unit(5 + 9/12, "feet"),
  51036. default: true
  51037. },
  51038. ]
  51039. ))
  51040. characterMakers.push(() => makeCharacter(
  51041. { name: "Maple", species: ["caudin"], tags: ["anthro"] },
  51042. {
  51043. front: {
  51044. height: math.unit(12, "feet"),
  51045. weight: math.unit(1000, "kg"),
  51046. name: "Front",
  51047. image: {
  51048. source: "./media/characters/maple/front.svg",
  51049. extra: 1193/1081,
  51050. bottom: 22/1215
  51051. }
  51052. },
  51053. },
  51054. [
  51055. {
  51056. name: "Compressed",
  51057. height: math.unit(7, "feet")
  51058. },
  51059. {
  51060. name: "Normal",
  51061. height: math.unit(12, "feet"),
  51062. default: true
  51063. },
  51064. ]
  51065. ))
  51066. characterMakers.push(() => makeCharacter(
  51067. { name: "Nora", species: ["blaziken"], tags: ["anthro"] },
  51068. {
  51069. front: {
  51070. height: math.unit(9, "feet"),
  51071. weight: math.unit(1500, "lb"),
  51072. name: "Front",
  51073. image: {
  51074. source: "./media/characters/nora/front.svg",
  51075. extra: 1348/1286,
  51076. bottom: 218/1566
  51077. }
  51078. },
  51079. erect: {
  51080. height: math.unit(9, "feet"),
  51081. weight: math.unit(11500, "lb"),
  51082. name: "Erect",
  51083. image: {
  51084. source: "./media/characters/nora/erect.svg",
  51085. extra: 1488/1433,
  51086. bottom: 133/1621
  51087. }
  51088. },
  51089. },
  51090. [
  51091. {
  51092. name: "Normal",
  51093. height: math.unit(9, "feet"),
  51094. default: true
  51095. },
  51096. ]
  51097. ))
  51098. characterMakers.push(() => makeCharacter(
  51099. { name: "North (Caudin)", species: ["caudin"], tags: ["anthro"] },
  51100. {
  51101. front: {
  51102. height: math.unit(25, "feet"),
  51103. weight: math.unit(27500, "lb"),
  51104. name: "Front",
  51105. image: {
  51106. source: "./media/characters/north-caudin/front.svg",
  51107. extra: 1184/1082,
  51108. bottom: 23/1207
  51109. }
  51110. },
  51111. },
  51112. [
  51113. {
  51114. name: "Compressed",
  51115. height: math.unit(10, "feet")
  51116. },
  51117. {
  51118. name: "Normal",
  51119. height: math.unit(25, "feet"),
  51120. default: true
  51121. },
  51122. ]
  51123. ))
  51124. characterMakers.push(() => makeCharacter(
  51125. { name: "Merrian", species: ["caudin", "avian"], tags: ["anthro"] },
  51126. {
  51127. front: {
  51128. height: math.unit(9, "feet"),
  51129. weight: math.unit(1250, "lb"),
  51130. name: "Front",
  51131. image: {
  51132. source: "./media/characters/merrian/front.svg",
  51133. extra: 2393/2304,
  51134. bottom: 40/2433
  51135. }
  51136. },
  51137. },
  51138. [
  51139. {
  51140. name: "Normal",
  51141. height: math.unit(9, "feet"),
  51142. default: true
  51143. },
  51144. ]
  51145. ))
  51146. characterMakers.push(() => makeCharacter(
  51147. { name: "Hazel", species: ["red-winged-blackbird"], tags: ["anthro"] },
  51148. {
  51149. front: {
  51150. height: math.unit(9, "feet"),
  51151. weight: math.unit(1000, "lb"),
  51152. name: "Front",
  51153. image: {
  51154. source: "./media/characters/hazel/front.svg",
  51155. extra: 2351/2298,
  51156. bottom: 38/2389
  51157. }
  51158. },
  51159. },
  51160. [
  51161. {
  51162. name: "Normal",
  51163. height: math.unit(9, "feet"),
  51164. default: true
  51165. },
  51166. ]
  51167. ))
  51168. characterMakers.push(() => makeCharacter(
  51169. { name: "Emma", species: ["caudin"], tags: ["anthro"] },
  51170. {
  51171. front: {
  51172. height: math.unit(13, "feet"),
  51173. weight: math.unit(3200, "lb"),
  51174. name: "Front",
  51175. image: {
  51176. source: "./media/characters/emma/front.svg",
  51177. extra: 2263/2029,
  51178. bottom: 68/2331
  51179. }
  51180. },
  51181. },
  51182. [
  51183. {
  51184. name: "Normal",
  51185. height: math.unit(13, "feet"),
  51186. default: true
  51187. },
  51188. ]
  51189. ))
  51190. characterMakers.push(() => makeCharacter(
  51191. { name: "Ilumina", species: ["hooded-wheater"], tags: ["anthro"] },
  51192. {
  51193. front: {
  51194. height: math.unit(11 + 9/12, "feet"),
  51195. weight: math.unit(2500, "lb"),
  51196. name: "Front",
  51197. image: {
  51198. source: "./media/characters/ilumina/front.svg",
  51199. extra: 2248/2209,
  51200. bottom: 164/2412
  51201. }
  51202. },
  51203. },
  51204. [
  51205. {
  51206. name: "Normal",
  51207. height: math.unit(11 + 9/12, "feet"),
  51208. default: true
  51209. },
  51210. ]
  51211. ))
  51212. characterMakers.push(() => makeCharacter(
  51213. { name: "Moonshine", species: ["caudin"], tags: ["anthro"] },
  51214. {
  51215. front: {
  51216. height: math.unit(8 + 10/12, "feet"),
  51217. weight: math.unit(1350, "lb"),
  51218. name: "Front",
  51219. image: {
  51220. source: "./media/characters/moonshine/front.svg",
  51221. extra: 2395/2288,
  51222. bottom: 40/2435
  51223. }
  51224. },
  51225. },
  51226. [
  51227. {
  51228. name: "Normal",
  51229. height: math.unit(8 + 10/12, "feet"),
  51230. default: true
  51231. },
  51232. ]
  51233. ))
  51234. characterMakers.push(() => makeCharacter(
  51235. { name: "Aletia", species: ["caudin"], tags: ["anthro"] },
  51236. {
  51237. front: {
  51238. height: math.unit(14, "feet"),
  51239. weight: math.unit(3400, "lb"),
  51240. name: "Front",
  51241. image: {
  51242. source: "./media/characters/aletia/front.svg",
  51243. extra: 1185/1052,
  51244. bottom: 21/1206
  51245. }
  51246. },
  51247. },
  51248. [
  51249. {
  51250. name: "Compressed",
  51251. height: math.unit(8, "feet")
  51252. },
  51253. {
  51254. name: "Normal",
  51255. height: math.unit(14, "feet"),
  51256. default: true
  51257. },
  51258. ]
  51259. ))
  51260. characterMakers.push(() => makeCharacter(
  51261. { name: "Deidra", species: ["caudin"], tags: ["anthro"] },
  51262. {
  51263. front: {
  51264. height: math.unit(17, "feet"),
  51265. weight: math.unit(6500, "lb"),
  51266. name: "Front",
  51267. image: {
  51268. source: "./media/characters/deidra/front.svg",
  51269. extra: 1201/1081,
  51270. bottom: 16/1217
  51271. }
  51272. },
  51273. },
  51274. [
  51275. {
  51276. name: "Compressed",
  51277. height: math.unit(9 + 6/12, "feet")
  51278. },
  51279. {
  51280. name: "Normal",
  51281. height: math.unit(17, "feet"),
  51282. default: true
  51283. },
  51284. ]
  51285. ))
  51286. characterMakers.push(() => makeCharacter(
  51287. { name: "Freki Yrmori", species: ["folf"], tags: ["anthro"] },
  51288. {
  51289. front: {
  51290. height: math.unit(7 + 4/12, "feet"),
  51291. weight: math.unit(280, "lb"),
  51292. name: "Front",
  51293. image: {
  51294. source: "./media/characters/freki-yrmori/front.svg",
  51295. extra: 1286/1182,
  51296. bottom: 29/1315
  51297. }
  51298. },
  51299. maw: {
  51300. height: math.unit(0.9, "feet"),
  51301. name: "Maw",
  51302. image: {
  51303. source: "./media/characters/freki-yrmori/maw.svg"
  51304. }
  51305. },
  51306. },
  51307. [
  51308. {
  51309. name: "Normal",
  51310. height: math.unit(7 + 4/12, "feet"),
  51311. default: true
  51312. },
  51313. {
  51314. name: "Macro",
  51315. height: math.unit(38.5, "meters")
  51316. },
  51317. ]
  51318. ))
  51319. characterMakers.push(() => makeCharacter(
  51320. { name: "Aetherios", species: ["dragon"], tags: ["feral"] },
  51321. {
  51322. side: {
  51323. height: math.unit(47.2, "meters"),
  51324. weight: math.unit(10000, "tons"),
  51325. name: "Side",
  51326. image: {
  51327. source: "./media/characters/aetherios/side.svg",
  51328. extra: 2363/642,
  51329. bottom: 221/2584
  51330. }
  51331. },
  51332. top: {
  51333. height: math.unit(240, "meters"),
  51334. weight: math.unit(10000, "tons"),
  51335. name: "Top",
  51336. image: {
  51337. source: "./media/characters/aetherios/top.svg"
  51338. }
  51339. },
  51340. bottom: {
  51341. height: math.unit(240, "meters"),
  51342. weight: math.unit(10000, "tons"),
  51343. name: "Bottom",
  51344. image: {
  51345. source: "./media/characters/aetherios/bottom.svg"
  51346. }
  51347. },
  51348. head: {
  51349. height: math.unit(38.6, "meters"),
  51350. name: "Head",
  51351. image: {
  51352. source: "./media/characters/aetherios/head.svg",
  51353. extra: 1335/1112,
  51354. bottom: 0/1335
  51355. }
  51356. },
  51357. front: {
  51358. height: math.unit(29, "meters"),
  51359. name: "Front",
  51360. image: {
  51361. source: "./media/characters/aetherios/front.svg",
  51362. extra: 1266/953,
  51363. bottom: 158/1424
  51364. }
  51365. },
  51366. maw: {
  51367. height: math.unit(16.37, "meters"),
  51368. name: "Maw",
  51369. image: {
  51370. source: "./media/characters/aetherios/maw.svg",
  51371. extra: 748/637,
  51372. bottom: 0/748
  51373. },
  51374. extraAttributes: {
  51375. preyCapacity: {
  51376. name: "Capacity",
  51377. power: 3,
  51378. type: "volume",
  51379. base: math.unit(1000, "people")
  51380. },
  51381. tongueSize: {
  51382. name: "Tongue Size",
  51383. power: 2,
  51384. type: "area",
  51385. base: math.unit(21, "m^2")
  51386. }
  51387. }
  51388. },
  51389. forepaw: {
  51390. height: math.unit(18, "meters"),
  51391. name: "Forepaw",
  51392. image: {
  51393. source: "./media/characters/aetherios/forepaw.svg"
  51394. }
  51395. },
  51396. hindpaw: {
  51397. height: math.unit(23, "meters"),
  51398. name: "Hindpaw",
  51399. image: {
  51400. source: "./media/characters/aetherios/hindpaw.svg"
  51401. }
  51402. },
  51403. genitals: {
  51404. height: math.unit(42, "meters"),
  51405. name: "Genitals",
  51406. image: {
  51407. source: "./media/characters/aetherios/genitals.svg"
  51408. }
  51409. },
  51410. },
  51411. [
  51412. {
  51413. name: "Normal",
  51414. height: math.unit(47.2, "meters"),
  51415. default: true
  51416. },
  51417. {
  51418. name: "Macro",
  51419. height: math.unit(160, "meters")
  51420. },
  51421. {
  51422. name: "Mega",
  51423. height: math.unit(1.87, "km")
  51424. },
  51425. {
  51426. name: "Giga",
  51427. height: math.unit(40000, "km")
  51428. },
  51429. {
  51430. name: "Stellar",
  51431. height: math.unit(158000000, "km")
  51432. },
  51433. {
  51434. name: "Cosmic",
  51435. height: math.unit(9.46e12, "km")
  51436. },
  51437. ]
  51438. ))
  51439. characterMakers.push(() => makeCharacter(
  51440. { name: "Mizu (Gieeg)", species: ["gieeg"], tags: ["anthro"] },
  51441. {
  51442. front: {
  51443. height: math.unit(5 + 4/12, "feet"),
  51444. weight: math.unit(80, "lb"),
  51445. name: "Front",
  51446. image: {
  51447. source: "./media/characters/mizu-gieeg/front.svg",
  51448. extra: 850/709,
  51449. bottom: 52/902
  51450. }
  51451. },
  51452. back: {
  51453. height: math.unit(5 + 4/12, "feet"),
  51454. weight: math.unit(80, "lb"),
  51455. name: "Back",
  51456. image: {
  51457. source: "./media/characters/mizu-gieeg/back.svg",
  51458. extra: 882/745,
  51459. bottom: 25/907
  51460. }
  51461. },
  51462. },
  51463. [
  51464. {
  51465. name: "Normal",
  51466. height: math.unit(5 + 4/12, "feet"),
  51467. default: true
  51468. },
  51469. ]
  51470. ))
  51471. characterMakers.push(() => makeCharacter(
  51472. { name: "Roselle St. Papier", species: ["ringtail"], tags: ["anthro"] },
  51473. {
  51474. front: {
  51475. height: math.unit(6, "feet"),
  51476. name: "Front",
  51477. image: {
  51478. source: "./media/characters/roselle-st-papier/front.svg",
  51479. extra: 1430/1280,
  51480. bottom: 37/1467
  51481. }
  51482. },
  51483. back: {
  51484. height: math.unit(6, "feet"),
  51485. name: "Back",
  51486. image: {
  51487. source: "./media/characters/roselle-st-papier/back.svg",
  51488. extra: 1491/1296,
  51489. bottom: 23/1514
  51490. }
  51491. },
  51492. ear: {
  51493. height: math.unit(1.26, "feet"),
  51494. name: "Ear",
  51495. image: {
  51496. source: "./media/characters/roselle-st-papier/ear.svg"
  51497. }
  51498. },
  51499. },
  51500. [
  51501. {
  51502. name: "Normal",
  51503. height: math.unit(150, "feet"),
  51504. default: true
  51505. },
  51506. ]
  51507. ))
  51508. characterMakers.push(() => makeCharacter(
  51509. { name: "Valargent", species: ["fox"], tags: ["anthro"] },
  51510. {
  51511. front: {
  51512. height: math.unit(1, "inches"),
  51513. name: "Front",
  51514. image: {
  51515. source: "./media/characters/valargent/front.svg",
  51516. extra: 1825/1694,
  51517. bottom: 62/1887
  51518. }
  51519. },
  51520. back: {
  51521. height: math.unit(1, "inches"),
  51522. name: "Back",
  51523. image: {
  51524. source: "./media/characters/valargent/back.svg",
  51525. extra: 1775/1682,
  51526. bottom: 88/1863
  51527. }
  51528. },
  51529. },
  51530. [
  51531. {
  51532. name: "Micro",
  51533. height: math.unit(1, "inch"),
  51534. default: true
  51535. },
  51536. ]
  51537. ))
  51538. characterMakers.push(() => makeCharacter(
  51539. { name: "Zarina", species: ["hisuian-zoroark"], tags: ["anthro"] },
  51540. {
  51541. front: {
  51542. height: math.unit(3.4, "meters"),
  51543. name: "Front",
  51544. image: {
  51545. source: "./media/characters/zarina/front.svg",
  51546. extra: 1733/1425,
  51547. bottom: 93/1826
  51548. }
  51549. },
  51550. squatting: {
  51551. height: math.unit(2.14, "meters"),
  51552. name: "Squatting",
  51553. image: {
  51554. source: "./media/characters/zarina/squatting.svg",
  51555. extra: 1073/788,
  51556. bottom: 63/1136
  51557. }
  51558. },
  51559. back: {
  51560. height: math.unit(2.14, "meters"),
  51561. name: "Back",
  51562. image: {
  51563. source: "./media/characters/zarina/back.svg",
  51564. extra: 1128/885,
  51565. bottom: 0/1128
  51566. }
  51567. },
  51568. },
  51569. [
  51570. {
  51571. name: "Normal",
  51572. height: math.unit(3.4, "meters"),
  51573. default: true
  51574. },
  51575. {
  51576. name: "Big",
  51577. height: math.unit(5, "meters")
  51578. },
  51579. {
  51580. name: "Macro",
  51581. height: math.unit(110, "meters")
  51582. },
  51583. ]
  51584. ))
  51585. characterMakers.push(() => makeCharacter(
  51586. { name: "VentusAstroFox", species: ["fox"], tags: ["anthro"] },
  51587. {
  51588. front: {
  51589. height: math.unit(7, "feet"),
  51590. name: "Front",
  51591. image: {
  51592. source: "./media/characters/ventus-astro-fox/front.svg",
  51593. extra: 1792/1623,
  51594. bottom: 28/1820
  51595. }
  51596. },
  51597. back: {
  51598. height: math.unit(7, "feet"),
  51599. name: "Back",
  51600. image: {
  51601. source: "./media/characters/ventus-astro-fox/back.svg",
  51602. extra: 1789/1620,
  51603. bottom: 31/1820
  51604. }
  51605. },
  51606. outfit: {
  51607. height: math.unit(7, "feet"),
  51608. name: "Outfit",
  51609. image: {
  51610. source: "./media/characters/ventus-astro-fox/outfit.svg",
  51611. extra: 1054/925,
  51612. bottom: 15/1069
  51613. }
  51614. },
  51615. head: {
  51616. height: math.unit(1.12, "feet"),
  51617. name: "Head",
  51618. image: {
  51619. source: "./media/characters/ventus-astro-fox/head.svg",
  51620. extra: 866/504,
  51621. bottom: 0/866
  51622. }
  51623. },
  51624. hand: {
  51625. height: math.unit(1, "feet"),
  51626. name: "Hand",
  51627. image: {
  51628. source: "./media/characters/ventus-astro-fox/hand.svg"
  51629. }
  51630. },
  51631. paw: {
  51632. height: math.unit(1.5, "feet"),
  51633. name: "Paw",
  51634. image: {
  51635. source: "./media/characters/ventus-astro-fox/paw.svg"
  51636. }
  51637. },
  51638. },
  51639. [
  51640. {
  51641. name: "Normal",
  51642. height: math.unit(7, "feet"),
  51643. default: true
  51644. },
  51645. {
  51646. name: "Macro",
  51647. height: math.unit(200, "feet")
  51648. },
  51649. {
  51650. name: "Cosmic",
  51651. height: math.unit(3, "universes")
  51652. },
  51653. ]
  51654. ))
  51655. characterMakers.push(() => makeCharacter(
  51656. { name: "CORE-T", species: ["cybeast"], tags: ["anthro"] },
  51657. {
  51658. front: {
  51659. height: math.unit(3, "meters"),
  51660. weight: math.unit(7000, "lb"),
  51661. name: "Front",
  51662. image: {
  51663. source: "./media/characters/core-t/front.svg",
  51664. extra: 5729/4941,
  51665. bottom: 1129/6858
  51666. }
  51667. },
  51668. },
  51669. [
  51670. {
  51671. name: "Big",
  51672. height: math.unit(3, "meters"),
  51673. default: true
  51674. },
  51675. ]
  51676. ))
  51677. characterMakers.push(() => makeCharacter(
  51678. { name: "Cadbunny", species: ["cinderace"], tags: ["anthro"] },
  51679. {
  51680. normal: {
  51681. height: math.unit(6 + 6/12, "feet"),
  51682. weight: math.unit(275, "lb"),
  51683. name: "Front",
  51684. image: {
  51685. source: "./media/characters/cadbunny/normal.svg",
  51686. extra: 1129/947,
  51687. bottom: 93/1222
  51688. },
  51689. default: true,
  51690. form: "normal"
  51691. },
  51692. gigantamax: {
  51693. height: math.unit(26, "feet"),
  51694. weight: math.unit(16000, "lb"),
  51695. name: "Front",
  51696. image: {
  51697. source: "./media/characters/cadbunny/gigantamax.svg",
  51698. extra: 1133/944,
  51699. bottom: 90/1223
  51700. },
  51701. default: true,
  51702. form: "gigantamax"
  51703. },
  51704. },
  51705. [
  51706. {
  51707. name: "Normal",
  51708. height: math.unit(6 + 6/12, "feet"),
  51709. default: true,
  51710. form: "normal"
  51711. },
  51712. {
  51713. name: "Small",
  51714. height: math.unit(26, "feet"),
  51715. default: true,
  51716. form: "gigantamax"
  51717. },
  51718. {
  51719. name: "Large",
  51720. height: math.unit(78, "feet"),
  51721. form: "gigantamax"
  51722. },
  51723. ],
  51724. {
  51725. "normal": {
  51726. name: "Normal",
  51727. default: true
  51728. },
  51729. "gigantamax": {
  51730. name: "Gigantamax"
  51731. }
  51732. }
  51733. ))
  51734. characterMakers.push(() => makeCharacter(
  51735. { name: "Blitz Dunkelheit", species: ["wolf"], tags: ["anthro", "feral"] },
  51736. {
  51737. anthroFront: {
  51738. height: math.unit(8, "feet"),
  51739. weight: math.unit(300, "lb"),
  51740. name: "Front",
  51741. image: {
  51742. source: "./media/characters/blitz-dunkelheit/anthro-front.svg",
  51743. extra: 1272/1176,
  51744. bottom: 53/1325
  51745. },
  51746. form: "anthro",
  51747. default: true
  51748. },
  51749. feralSide: {
  51750. height: math.unit(4, "feet"),
  51751. weight: math.unit(250, "lb"),
  51752. name: "Side",
  51753. image: {
  51754. source: "./media/characters/blitz-dunkelheit/feral-side.svg",
  51755. extra: 731/621,
  51756. bottom: 0/731
  51757. },
  51758. form: "feral",
  51759. default: true
  51760. },
  51761. },
  51762. [
  51763. {
  51764. name: "Regular",
  51765. height: math.unit(8, "feet"),
  51766. form: "anthro"
  51767. },
  51768. {
  51769. name: "Macro",
  51770. height: math.unit(250, "feet"),
  51771. form: "anthro",
  51772. default: true
  51773. },
  51774. {
  51775. name: "Regular",
  51776. height: math.unit(4, "feet"),
  51777. form: "feral"
  51778. },
  51779. {
  51780. name: "Macro",
  51781. height: math.unit(125, "feet"),
  51782. form: "feral",
  51783. default: true
  51784. },
  51785. ],
  51786. {
  51787. "anthro": {
  51788. name: "Anthro",
  51789. default: true
  51790. },
  51791. "feral": {
  51792. name: "Feral",
  51793. },
  51794. }
  51795. ))
  51796. characterMakers.push(() => makeCharacter(
  51797. { name: "Maple (Javira Dragon)", species: ["javira-dragon"], tags: ["feral"] },
  51798. {
  51799. front: {
  51800. height: math.unit(11 + 10/12, "feet"),
  51801. weight: math.unit(1587, "kg"),
  51802. name: "Front",
  51803. image: {
  51804. source: "./media/characters/maple-javira-dragon/front.svg",
  51805. extra: 1136/744,
  51806. bottom: 73/1209
  51807. }
  51808. },
  51809. side: {
  51810. height: math.unit(11 + 10/12, "feet"),
  51811. weight: math.unit(1587, "kg"),
  51812. name: "Side",
  51813. image: {
  51814. source: "./media/characters/maple-javira-dragon/side.svg",
  51815. extra: 712/505,
  51816. bottom: 17/729
  51817. }
  51818. },
  51819. head: {
  51820. height: math.unit(8.05, "feet"),
  51821. name: "Head",
  51822. image: {
  51823. source: "./media/characters/maple-javira-dragon/head.svg",
  51824. extra: 1420/1344,
  51825. bottom: 0/1420
  51826. }
  51827. },
  51828. },
  51829. [
  51830. {
  51831. name: "Normal",
  51832. height: math.unit(11 + 10/12, "feet"),
  51833. default: true
  51834. },
  51835. ]
  51836. ))
  51837. characterMakers.push(() => makeCharacter(
  51838. { name: "Sonia Wyverntail", species: ["kobold"], tags: ["anthro"] },
  51839. {
  51840. front: {
  51841. height: math.unit(117, "cm"),
  51842. weight: math.unit(50, "kg"),
  51843. name: "Front",
  51844. image: {
  51845. source: "./media/characters/sonia-wyverntail/front.svg",
  51846. extra: 708/592,
  51847. bottom: 25/733
  51848. }
  51849. },
  51850. },
  51851. [
  51852. {
  51853. name: "Normal",
  51854. height: math.unit(117, "cm"),
  51855. default: true
  51856. },
  51857. ]
  51858. ))
  51859. characterMakers.push(() => makeCharacter(
  51860. { name: "Micah", species: ["moth"], tags: ["anthro"] },
  51861. {
  51862. front: {
  51863. height: math.unit(6 + 5/12, "feet"),
  51864. name: "Front",
  51865. image: {
  51866. source: "./media/characters/micah/front.svg",
  51867. extra: 1758/1546,
  51868. bottom: 214/1972
  51869. }
  51870. },
  51871. },
  51872. [
  51873. {
  51874. name: "Normal",
  51875. height: math.unit(6 + 5/12, "feet"),
  51876. default: true
  51877. },
  51878. ]
  51879. ))
  51880. characterMakers.push(() => makeCharacter(
  51881. { name: "Zarya", species: ["skunk"], tags: ["anthro"] },
  51882. {
  51883. front: {
  51884. height: math.unit(1.75, "meters"),
  51885. weight: math.unit(100, "kg"),
  51886. name: "Front",
  51887. image: {
  51888. source: "./media/characters/zarya/front.svg",
  51889. extra: 741/735,
  51890. bottom: 44/785
  51891. },
  51892. extraAttributes: {
  51893. "tailLength": {
  51894. name: "Tail Length",
  51895. power: 1,
  51896. type: "length",
  51897. base: math.unit(180, "cm")
  51898. },
  51899. "pawLength": {
  51900. name: "Paw Length",
  51901. power: 1,
  51902. type: "length",
  51903. base: math.unit(31, "cm")
  51904. },
  51905. }
  51906. },
  51907. side: {
  51908. height: math.unit(1.75, "meters"),
  51909. weight: math.unit(100, "kg"),
  51910. name: "Side",
  51911. image: {
  51912. source: "./media/characters/zarya/side.svg",
  51913. extra: 776/770,
  51914. bottom: 17/793
  51915. },
  51916. extraAttributes: {
  51917. "tailLength": {
  51918. name: "Tail Length",
  51919. power: 1,
  51920. type: "length",
  51921. base: math.unit(180, "cm")
  51922. },
  51923. "pawLength": {
  51924. name: "Paw Length",
  51925. power: 1,
  51926. type: "length",
  51927. base: math.unit(31, "cm")
  51928. },
  51929. }
  51930. },
  51931. back: {
  51932. height: math.unit(1.75, "meters"),
  51933. weight: math.unit(100, "kg"),
  51934. name: "Back",
  51935. image: {
  51936. source: "./media/characters/zarya/back.svg",
  51937. extra: 741/735,
  51938. bottom: 44/785
  51939. },
  51940. extraAttributes: {
  51941. "tailLength": {
  51942. name: "Tail Length",
  51943. power: 1,
  51944. type: "length",
  51945. base: math.unit(180, "cm")
  51946. },
  51947. "pawLength": {
  51948. name: "Paw Length",
  51949. power: 1,
  51950. type: "length",
  51951. base: math.unit(31, "cm")
  51952. },
  51953. }
  51954. },
  51955. frontNoTail: {
  51956. height: math.unit(1.75, "meters"),
  51957. weight: math.unit(100, "kg"),
  51958. name: "Front (No Tail)",
  51959. image: {
  51960. source: "./media/characters/zarya/front-no-tail.svg",
  51961. extra: 741/735,
  51962. bottom: 44/785
  51963. },
  51964. extraAttributes: {
  51965. "tailLength": {
  51966. name: "Tail Length",
  51967. power: 1,
  51968. type: "length",
  51969. base: math.unit(180, "cm")
  51970. },
  51971. "pawLength": {
  51972. name: "Paw Length",
  51973. power: 1,
  51974. type: "length",
  51975. base: math.unit(31, "cm")
  51976. },
  51977. }
  51978. },
  51979. dressed: {
  51980. height: math.unit(1.75, "meters"),
  51981. weight: math.unit(100, "kg"),
  51982. name: "Dressed",
  51983. image: {
  51984. source: "./media/characters/zarya/dressed.svg",
  51985. extra: 683/672,
  51986. bottom: 79/762
  51987. },
  51988. extraAttributes: {
  51989. "tailLength": {
  51990. name: "Tail Length",
  51991. power: 1,
  51992. type: "length",
  51993. base: math.unit(180, "cm")
  51994. },
  51995. "pawLength": {
  51996. name: "Paw Length",
  51997. power: 1,
  51998. type: "length",
  51999. base: math.unit(31, "cm")
  52000. },
  52001. }
  52002. },
  52003. },
  52004. [
  52005. {
  52006. name: "Micro",
  52007. height: math.unit(5, "cm")
  52008. },
  52009. {
  52010. name: "Normal",
  52011. height: math.unit(1.75, "meters"),
  52012. default: true
  52013. },
  52014. {
  52015. name: "Macro",
  52016. height: math.unit(122, "meters")
  52017. },
  52018. ]
  52019. ))
  52020. characterMakers.push(() => makeCharacter(
  52021. { name: "Sven Hatisson", species: ["wolf"], tags: ["anthro"] },
  52022. {
  52023. front: {
  52024. height: math.unit(7.5, "feet"),
  52025. name: "Front",
  52026. image: {
  52027. source: "./media/characters/sven-hatisson/front.svg",
  52028. extra: 917/857,
  52029. bottom: 42/959
  52030. }
  52031. },
  52032. back: {
  52033. height: math.unit(7.5, "feet"),
  52034. name: "Back",
  52035. image: {
  52036. source: "./media/characters/sven-hatisson/back.svg",
  52037. extra: 903/856,
  52038. bottom: 15/918
  52039. }
  52040. },
  52041. },
  52042. [
  52043. {
  52044. name: "Base Height",
  52045. height: math.unit(7.5, "feet")
  52046. },
  52047. {
  52048. name: "Usual Height",
  52049. height: math.unit(13.5, "feet"),
  52050. default: true
  52051. },
  52052. {
  52053. name: "Smaller Macro",
  52054. height: math.unit(85, "feet")
  52055. },
  52056. {
  52057. name: "Moderate Macro",
  52058. height: math.unit(320, "feet")
  52059. },
  52060. {
  52061. name: "Large Macro",
  52062. height: math.unit(1000, "feet")
  52063. },
  52064. {
  52065. name: "Largest Size",
  52066. height: math.unit(2, "miles")
  52067. },
  52068. ]
  52069. ))
  52070. characterMakers.push(() => makeCharacter(
  52071. { name: "Terra", species: ["dragon", "otter"], tags: ["feral"] },
  52072. {
  52073. side: {
  52074. height: math.unit(1.8, "meters"),
  52075. weight: math.unit(275, "kg"),
  52076. name: "Side",
  52077. image: {
  52078. source: "./media/characters/terra/side.svg",
  52079. extra: 1273/1147,
  52080. bottom: 0/1273
  52081. }
  52082. },
  52083. },
  52084. [
  52085. {
  52086. name: "Normal",
  52087. height: math.unit(16.2, "meters"),
  52088. default: true
  52089. },
  52090. ]
  52091. ))
  52092. characterMakers.push(() => makeCharacter(
  52093. { name: "Rae", species: ["borzoi", "werewolf"], tags: ["anthro"] },
  52094. {
  52095. borzoiFront: {
  52096. height: math.unit(6 + 9/12, "feet"),
  52097. name: "Front",
  52098. image: {
  52099. source: "./media/characters/rae/borzoi-front.svg",
  52100. extra: 1161/1098,
  52101. bottom: 31/1192
  52102. },
  52103. form: "borzoi",
  52104. default: true
  52105. },
  52106. werewolfFront: {
  52107. height: math.unit(8 + 7/12, "feet"),
  52108. name: "Front",
  52109. image: {
  52110. source: "./media/characters/rae/werewolf-front.svg",
  52111. extra: 1411/1334,
  52112. bottom: 127/1538
  52113. },
  52114. form: "werewolf",
  52115. default: true
  52116. },
  52117. },
  52118. [
  52119. {
  52120. name: "Normal",
  52121. height: math.unit(6 + 9/12, "feet"),
  52122. default: true,
  52123. form: "borzoi"
  52124. },
  52125. {
  52126. name: "Normal",
  52127. height: math.unit(8 + 7/12, "feet"),
  52128. default: true,
  52129. form: "werewolf"
  52130. },
  52131. ],
  52132. {
  52133. "borzoi": {
  52134. name: "Borzoi",
  52135. default: true
  52136. },
  52137. "werewolf": {
  52138. name: "Werewolf",
  52139. },
  52140. }
  52141. ))
  52142. characterMakers.push(() => makeCharacter(
  52143. { name: "Kit", species: ["kitsune"], tags: ["anthro"] },
  52144. {
  52145. front: {
  52146. height: math.unit(8 + 7/12, "feet"),
  52147. weight: math.unit(482, "lb"),
  52148. name: "Front",
  52149. image: {
  52150. source: "./media/characters/kit/front.svg",
  52151. extra: 1247/1103,
  52152. bottom: 41/1288
  52153. }
  52154. },
  52155. back: {
  52156. height: math.unit(8 + 7/12, "feet"),
  52157. weight: math.unit(482, "lb"),
  52158. name: "Back",
  52159. image: {
  52160. source: "./media/characters/kit/back.svg",
  52161. extra: 1252/1123,
  52162. bottom: 21/1273
  52163. }
  52164. },
  52165. paw: {
  52166. height: math.unit(1.46, "feet"),
  52167. name: "Paw",
  52168. image: {
  52169. source: "./media/characters/kit/paw.svg"
  52170. }
  52171. },
  52172. },
  52173. [
  52174. {
  52175. name: "Normal",
  52176. height: math.unit(2.61, "meters"),
  52177. default: true
  52178. },
  52179. {
  52180. name: "\"Tall\"",
  52181. height: math.unit(8.21, "meters")
  52182. },
  52183. {
  52184. name: "Tall",
  52185. height: math.unit(19.6, "meters")
  52186. },
  52187. {
  52188. name: "Very Tall",
  52189. height: math.unit(57.91, "meters")
  52190. },
  52191. {
  52192. name: "Semi-Macro",
  52193. height: math.unit(138.64, "meters")
  52194. },
  52195. {
  52196. name: "Macro",
  52197. height: math.unit(831.99, "meters")
  52198. },
  52199. {
  52200. name: "EX-Macro",
  52201. height: math.unit(96451121, "meters")
  52202. },
  52203. {
  52204. name: "S1-Omnipotent",
  52205. height: math.unit(4.42074e+9, "meters")
  52206. },
  52207. {
  52208. name: "S2-Omnipotent",
  52209. height: math.unit(9.42074e+17, "meters")
  52210. },
  52211. {
  52212. name: "Omnipotent",
  52213. height: math.unit(4.23112e+24, "meters")
  52214. },
  52215. {
  52216. name: "Hypergod",
  52217. height: math.unit(5.05176e+27, "meters")
  52218. },
  52219. {
  52220. name: "Hypergod-EX",
  52221. height: math.unit(9.45532e+49, "meters")
  52222. },
  52223. {
  52224. name: "Hypergod-SP",
  52225. height: math.unit(9.45532e+195, "meters")
  52226. },
  52227. ]
  52228. ))
  52229. characterMakers.push(() => makeCharacter(
  52230. { name: "Celeste", species: ["raptor", "alien"], tags: ["feral"] },
  52231. {
  52232. side: {
  52233. height: math.unit(0.6, "meters"),
  52234. weight: math.unit(24, "kg"),
  52235. name: "Side",
  52236. image: {
  52237. source: "./media/characters/celeste/side.svg",
  52238. extra: 810/517,
  52239. bottom: 53/863
  52240. }
  52241. },
  52242. },
  52243. [
  52244. {
  52245. name: "Velociraptor",
  52246. height: math.unit(0.6, "meters"),
  52247. default: true
  52248. },
  52249. {
  52250. name: "Utahraptor",
  52251. height: math.unit(1.8, "meters")
  52252. },
  52253. {
  52254. name: "Gallimimus",
  52255. height: math.unit(4.0, "meters")
  52256. },
  52257. {
  52258. name: "Large",
  52259. height: math.unit(20, "meters")
  52260. },
  52261. {
  52262. name: "Planetary",
  52263. height: math.unit(50, "megameters")
  52264. },
  52265. {
  52266. name: "Stellar",
  52267. height: math.unit(1.5, "gigameters")
  52268. },
  52269. {
  52270. name: "Galactic",
  52271. height: math.unit(100, "exameters")
  52272. },
  52273. ]
  52274. ))
  52275. characterMakers.push(() => makeCharacter(
  52276. { name: "Glacia", species: ["koopew"], tags: ["anthro"] },
  52277. {
  52278. front: {
  52279. height: math.unit(6, "feet"),
  52280. weight: math.unit(210, "lb"),
  52281. name: "Front",
  52282. image: {
  52283. source: "./media/characters/glacia/front.svg",
  52284. extra: 958/901,
  52285. bottom: 45/1003
  52286. }
  52287. },
  52288. },
  52289. [
  52290. {
  52291. name: "Macro",
  52292. height: math.unit(1000, "meters"),
  52293. default: true
  52294. },
  52295. ]
  52296. ))
  52297. characterMakers.push(() => makeCharacter(
  52298. { name: "Giri", species: ["giraffe"], tags: ["anthro"] },
  52299. {
  52300. front: {
  52301. height: math.unit(4, "meters"),
  52302. name: "Front",
  52303. image: {
  52304. source: "./media/characters/giri/front.svg",
  52305. extra: 966/894,
  52306. bottom: 21/987
  52307. }
  52308. },
  52309. },
  52310. [
  52311. {
  52312. name: "Normal",
  52313. height: math.unit(4, "meters"),
  52314. default: true
  52315. },
  52316. ]
  52317. ))
  52318. characterMakers.push(() => makeCharacter(
  52319. { name: "Tin", species: ["nevrean"], tags: ["anthro"] },
  52320. {
  52321. back: {
  52322. height: math.unit(4, "feet"),
  52323. weight: math.unit(37, "lb"),
  52324. name: "Back",
  52325. image: {
  52326. source: "./media/characters/tin/back.svg",
  52327. extra: 845/780,
  52328. bottom: 28/873
  52329. }
  52330. },
  52331. },
  52332. [
  52333. {
  52334. name: "Normal",
  52335. height: math.unit(4, "feet"),
  52336. default: true
  52337. },
  52338. ]
  52339. ))
  52340. characterMakers.push(() => makeCharacter(
  52341. { name: "Cadenza Vivace", species: ["titanoboa"], tags: ["feral"] },
  52342. {
  52343. front: {
  52344. height: math.unit(25, "feet"),
  52345. name: "Front",
  52346. image: {
  52347. source: "./media/characters/cadenza-vivace/front.svg",
  52348. extra: 1842/1578,
  52349. bottom: 30/1872
  52350. }
  52351. },
  52352. },
  52353. [
  52354. {
  52355. name: "Macro",
  52356. height: math.unit(25, "feet"),
  52357. default: true
  52358. },
  52359. ]
  52360. ))
  52361. characterMakers.push(() => makeCharacter(
  52362. { name: "Zain", species: ["kangaroo"], tags: ["anthro"] },
  52363. {
  52364. front: {
  52365. height: math.unit(10, "feet"),
  52366. weight: math.unit(625, "kg"),
  52367. name: "Front",
  52368. image: {
  52369. source: "./media/characters/zain/front.svg",
  52370. extra: 1682/1498,
  52371. bottom: 223/1905
  52372. }
  52373. },
  52374. back: {
  52375. height: math.unit(10, "feet"),
  52376. weight: math.unit(625, "kg"),
  52377. name: "Back",
  52378. image: {
  52379. source: "./media/characters/zain/back.svg",
  52380. extra: 1814/1657,
  52381. bottom: 152/1966
  52382. }
  52383. },
  52384. head: {
  52385. height: math.unit(10, "feet"),
  52386. weight: math.unit(625, "kg"),
  52387. name: "Head",
  52388. image: {
  52389. source: "./media/characters/zain/head.svg",
  52390. extra: 1059/762,
  52391. bottom: 0/1059
  52392. }
  52393. },
  52394. },
  52395. [
  52396. {
  52397. name: "Normal",
  52398. height: math.unit(10, "feet"),
  52399. default: true
  52400. },
  52401. ]
  52402. ))
  52403. characterMakers.push(() => makeCharacter(
  52404. { name: "Ruchex", species: ["raichu"], tags: ["anthro"] },
  52405. {
  52406. front: {
  52407. height: math.unit(6 + 5/12, "feet"),
  52408. weight: math.unit(750, "lb"),
  52409. name: "Front",
  52410. image: {
  52411. source: "./media/characters/ruchex/front.svg",
  52412. extra: 877/820,
  52413. bottom: 17/894
  52414. },
  52415. extraAttributes: {
  52416. "width": {
  52417. name: "Width",
  52418. power: 1,
  52419. type: "length",
  52420. base: math.unit(4.757, "feet")
  52421. },
  52422. }
  52423. },
  52424. },
  52425. [
  52426. {
  52427. name: "Normal",
  52428. height: math.unit(6 + 5/12, "feet"),
  52429. default: true
  52430. },
  52431. ]
  52432. ))
  52433. characterMakers.push(() => makeCharacter(
  52434. { name: "Buster", species: ["sergal", "goo"], tags: ["anthro"] },
  52435. {
  52436. dressedFront: {
  52437. height: math.unit(191, "cm"),
  52438. weight: math.unit(80, "kg"),
  52439. name: "Front",
  52440. image: {
  52441. source: "./media/characters/buster/dressed-front.svg",
  52442. extra: 1022/973,
  52443. bottom: 69/1091
  52444. }
  52445. },
  52446. dressedBack: {
  52447. height: math.unit(191, "cm"),
  52448. weight: math.unit(80, "kg"),
  52449. name: "Back",
  52450. image: {
  52451. source: "./media/characters/buster/dressed-back.svg",
  52452. extra: 1018/970,
  52453. bottom: 55/1073
  52454. }
  52455. },
  52456. nudeFront: {
  52457. height: math.unit(191, "cm"),
  52458. weight: math.unit(80, "kg"),
  52459. name: "Front (Nude)",
  52460. image: {
  52461. source: "./media/characters/buster/nude-front.svg",
  52462. extra: 1022/973,
  52463. bottom: 69/1091
  52464. }
  52465. },
  52466. nudeBack: {
  52467. height: math.unit(191, "cm"),
  52468. weight: math.unit(80, "kg"),
  52469. name: "Back (Nude)",
  52470. image: {
  52471. source: "./media/characters/buster/nude-back.svg",
  52472. extra: 1018/970,
  52473. bottom: 55/1073
  52474. }
  52475. },
  52476. dick: {
  52477. height: math.unit(2.59, "feet"),
  52478. name: "Dick",
  52479. image: {
  52480. source: "./media/characters/buster/dick.svg"
  52481. }
  52482. },
  52483. ass: {
  52484. height: math.unit(1.2, "feet"),
  52485. name: "Ass",
  52486. image: {
  52487. source: "./media/characters/buster/ass.svg"
  52488. }
  52489. },
  52490. },
  52491. [
  52492. {
  52493. name: "Normal",
  52494. height: math.unit(191, "cm"),
  52495. default: true
  52496. },
  52497. ]
  52498. ))
  52499. characterMakers.push(() => makeCharacter(
  52500. { name: "Sonya", species: ["suicune"], tags: ["feral"] },
  52501. {
  52502. side: {
  52503. height: math.unit(8.1, "feet"),
  52504. weight: math.unit(3500, "lb"),
  52505. name: "Side",
  52506. image: {
  52507. source: "./media/characters/sonya/side.svg",
  52508. extra: 1730/1317,
  52509. bottom: 86/1816
  52510. }
  52511. },
  52512. },
  52513. [
  52514. {
  52515. name: "Normal",
  52516. height: math.unit(8.1, "feet"),
  52517. default: true
  52518. },
  52519. ]
  52520. ))
  52521. characterMakers.push(() => makeCharacter(
  52522. { name: "Cadence Andrysiak", species: ["civet"], tags: ["anthro"] },
  52523. {
  52524. front: {
  52525. height: math.unit(6, "feet"),
  52526. weight: math.unit(150, "lb"),
  52527. name: "Front",
  52528. image: {
  52529. source: "./media/characters/cadence-andrysiak/front.svg",
  52530. extra: 1164/1121,
  52531. bottom: 60/1224
  52532. }
  52533. },
  52534. back: {
  52535. height: math.unit(6, "feet"),
  52536. weight: math.unit(150, "lb"),
  52537. name: "Back",
  52538. image: {
  52539. source: "./media/characters/cadence-andrysiak/back.svg",
  52540. extra: 1200/1165,
  52541. bottom: 9/1209
  52542. }
  52543. },
  52544. dressed: {
  52545. height: math.unit(6, "feet"),
  52546. weight: math.unit(150, "lb"),
  52547. name: "Dressed",
  52548. image: {
  52549. source: "./media/characters/cadence-andrysiak/dressed.svg",
  52550. extra: 1164/1121,
  52551. bottom: 60/1224
  52552. }
  52553. },
  52554. },
  52555. [
  52556. {
  52557. name: "Micro",
  52558. height: math.unit(1, "mm")
  52559. },
  52560. {
  52561. name: "Normal",
  52562. height: math.unit(6, "feet"),
  52563. default: true
  52564. },
  52565. ]
  52566. ))
  52567. characterMakers.push(() => makeCharacter(
  52568. { name: "PENNY", species: ["lynx" ,"computer-virus"], tags: ["anthro"] },
  52569. {
  52570. front: {
  52571. height: math.unit(60, "inches"),
  52572. weight: math.unit(16, "lb"),
  52573. preyCapacity: math.unit(80, "liters"),
  52574. name: "Front",
  52575. image: {
  52576. source: "./media/characters/penny-lynx/front.svg",
  52577. extra: 1959/1769,
  52578. bottom: 49/2008
  52579. }
  52580. },
  52581. },
  52582. [
  52583. {
  52584. name: "Nokia",
  52585. height: math.unit(2, "inches")
  52586. },
  52587. {
  52588. name: "Desktop",
  52589. height: math.unit(24, "inches")
  52590. },
  52591. {
  52592. name: "TV",
  52593. height: math.unit(60, "inches")
  52594. },
  52595. {
  52596. name: "Jumbotron",
  52597. height: math.unit(12, "feet")
  52598. },
  52599. {
  52600. name: "Billboard",
  52601. height: math.unit(48, "feet"),
  52602. default: true
  52603. },
  52604. {
  52605. name: "IMAX",
  52606. height: math.unit(96, "feet")
  52607. },
  52608. {
  52609. name: "SINGULARITY",
  52610. height: math.unit(864938, "miles")
  52611. },
  52612. ]
  52613. ))
  52614. characterMakers.push(() => makeCharacter(
  52615. { name: "Sukebe", species: ["panda"], tags: ["anthro"] },
  52616. {
  52617. front: {
  52618. height: math.unit(5 + 4/12, "feet"),
  52619. weight: math.unit(230, "lb"),
  52620. name: "Front",
  52621. image: {
  52622. source: "./media/characters/sukebe/front.svg",
  52623. extra: 2130/2038,
  52624. bottom: 90/2220
  52625. }
  52626. },
  52627. back: {
  52628. height: math.unit(3.48, "feet"),
  52629. weight: math.unit(230, "lb"),
  52630. name: "Back",
  52631. image: {
  52632. source: "./media/characters/sukebe/back.svg",
  52633. extra: 1670/1604,
  52634. bottom: 0/1670
  52635. }
  52636. },
  52637. },
  52638. [
  52639. {
  52640. name: "Normal",
  52641. height: math.unit(5 + 4/12, "feet"),
  52642. default: true
  52643. },
  52644. ]
  52645. ))
  52646. characterMakers.push(() => makeCharacter(
  52647. { name: "Nylla", species: ["dragon"], tags: ["anthro"] },
  52648. {
  52649. front: {
  52650. height: math.unit(6, "feet"),
  52651. name: "Front",
  52652. image: {
  52653. source: "./media/characters/nylla/front.svg",
  52654. extra: 1868/1699,
  52655. bottom: 97/1965
  52656. }
  52657. },
  52658. back: {
  52659. height: math.unit(6, "feet"),
  52660. name: "Back",
  52661. image: {
  52662. source: "./media/characters/nylla/back.svg",
  52663. extra: 1889/1712,
  52664. bottom: 93/1982
  52665. }
  52666. },
  52667. frontNsfw: {
  52668. height: math.unit(6, "feet"),
  52669. name: "Front (NSFW)",
  52670. image: {
  52671. source: "./media/characters/nylla/front-nsfw.svg",
  52672. extra: 1868/1699,
  52673. bottom: 97/1965
  52674. },
  52675. extraAttributes: {
  52676. "dickLength": {
  52677. name: "Dick Length",
  52678. power: 1,
  52679. type: "length",
  52680. base: math.unit(1.4, "feet")
  52681. },
  52682. "cumVolume": {
  52683. name: "Cum Volume",
  52684. power: 3,
  52685. type: "volume",
  52686. base: math.unit(100, "mL")
  52687. },
  52688. }
  52689. },
  52690. backNsfw: {
  52691. height: math.unit(6, "feet"),
  52692. name: "Back (NSFW)",
  52693. image: {
  52694. source: "./media/characters/nylla/back-nsfw.svg",
  52695. extra: 1889/1712,
  52696. bottom: 93/1982
  52697. }
  52698. },
  52699. maw: {
  52700. height: math.unit(2.10, "feet"),
  52701. name: "Maw",
  52702. image: {
  52703. source: "./media/characters/nylla/maw.svg"
  52704. }
  52705. },
  52706. paws: {
  52707. height: math.unit(2.06, "feet"),
  52708. name: "Paws",
  52709. image: {
  52710. source: "./media/characters/nylla/paws.svg"
  52711. }
  52712. },
  52713. muzzle: {
  52714. height: math.unit(0.61, "feet"),
  52715. name: "Muzzle",
  52716. image: {
  52717. source: "./media/characters/nylla/muzzle.svg"
  52718. }
  52719. },
  52720. sheath: {
  52721. height: math.unit(1.305, "feet"),
  52722. name: "Sheath",
  52723. image: {
  52724. source: "./media/characters/nylla/sheath.svg"
  52725. }
  52726. },
  52727. },
  52728. [
  52729. {
  52730. name: "Micro",
  52731. height: math.unit(7.5, "inches")
  52732. },
  52733. {
  52734. name: "Normal",
  52735. height: math.unit(7, "feet"),
  52736. default: true
  52737. },
  52738. {
  52739. name: "Macro",
  52740. height: math.unit(60, "feet")
  52741. },
  52742. {
  52743. name: "Mega",
  52744. height: math.unit(200, "feet")
  52745. },
  52746. ]
  52747. ))
  52748. characterMakers.push(() => makeCharacter(
  52749. { name: "HUNT3R", species: ["protogen"], tags: ["anthro"] },
  52750. {
  52751. front: {
  52752. height: math.unit(10, "feet"),
  52753. weight: math.unit(2300, "lb"),
  52754. name: "Front",
  52755. image: {
  52756. source: "./media/characters/hunt3r/front.svg",
  52757. extra: 1909/1742,
  52758. bottom: 46/1955
  52759. }
  52760. },
  52761. },
  52762. [
  52763. {
  52764. name: "Normal",
  52765. height: math.unit(10, "feet"),
  52766. default: true
  52767. },
  52768. ]
  52769. ))
  52770. characterMakers.push(() => makeCharacter(
  52771. { name: "Cylphis", species: ["draconi", "deity"], tags: ["anthro"] },
  52772. {
  52773. dressed: {
  52774. height: math.unit(11, "feet"),
  52775. weight: math.unit(18500, "lb"),
  52776. preyCapacity: math.unit(9, "people"),
  52777. name: "Dressed",
  52778. image: {
  52779. source: "./media/characters/cylphis/dressed.svg",
  52780. extra: 1028/1003,
  52781. bottom: 75/1103
  52782. },
  52783. },
  52784. undressed: {
  52785. height: math.unit(11, "feet"),
  52786. weight: math.unit(18500, "lb"),
  52787. preyCapacity: math.unit(9, "people"),
  52788. name: "Undressed",
  52789. image: {
  52790. source: "./media/characters/cylphis/undressed.svg",
  52791. extra: 1028/1003,
  52792. bottom: 75/1103
  52793. }
  52794. },
  52795. full: {
  52796. height: math.unit(11, "feet"),
  52797. weight: math.unit(18500 + 150*9, "lb"),
  52798. preyCapacity: math.unit(9, "people"),
  52799. name: "Full",
  52800. image: {
  52801. source: "./media/characters/cylphis/full.svg",
  52802. extra: 1028/1003,
  52803. bottom: 75/1103
  52804. }
  52805. },
  52806. },
  52807. [
  52808. {
  52809. name: "Small",
  52810. height: math.unit(8, "feet")
  52811. },
  52812. {
  52813. name: "Normal",
  52814. height: math.unit(11, "feet"),
  52815. default: true
  52816. },
  52817. ]
  52818. ))
  52819. characterMakers.push(() => makeCharacter(
  52820. { name: "Orishan", species: ["rabbit"], tags: ["anthro"] },
  52821. {
  52822. front: {
  52823. height: math.unit(2 + 7/12, "feet"),
  52824. name: "Front",
  52825. image: {
  52826. source: "./media/characters/orishan/front.svg",
  52827. extra: 1058/1023,
  52828. bottom: 23/1081
  52829. }
  52830. },
  52831. back: {
  52832. height: math.unit(2 + 7/12, "feet"),
  52833. name: "Back",
  52834. image: {
  52835. source: "./media/characters/orishan/back.svg",
  52836. extra: 1058/1023,
  52837. bottom: 23/1081
  52838. }
  52839. },
  52840. },
  52841. [
  52842. {
  52843. name: "Micro",
  52844. height: math.unit(2, "cm")
  52845. },
  52846. {
  52847. name: "Normal",
  52848. height: math.unit(2 + 7/12, "feet"),
  52849. default: true
  52850. },
  52851. ]
  52852. ))
  52853. characterMakers.push(() => makeCharacter(
  52854. { name: "Seranis", species: ["cat"], tags: ["anthro"] },
  52855. {
  52856. front: {
  52857. height: math.unit(3, "meters"),
  52858. weight: math.unit(508, "kg"),
  52859. name: "Front",
  52860. image: {
  52861. source: "./media/characters/seranis/front.svg",
  52862. extra: 1478/1454,
  52863. bottom: 41/1519
  52864. }
  52865. },
  52866. },
  52867. [
  52868. {
  52869. name: "Normal",
  52870. height: math.unit(3, "meters"),
  52871. default: true
  52872. },
  52873. {
  52874. name: "Macro",
  52875. height: math.unit(108, "meters")
  52876. },
  52877. {
  52878. name: "Megamacro",
  52879. height: math.unit(1250, "meters")
  52880. },
  52881. ]
  52882. ))
  52883. characterMakers.push(() => makeCharacter(
  52884. { name: "Ankou", species: ["mouse", "imp"], tags: ["anthro"] },
  52885. {
  52886. undressed: {
  52887. height: math.unit(5 + 3/12, "feet"),
  52888. name: "Undressed",
  52889. image: {
  52890. source: "./media/characters/ankou/undressed.svg",
  52891. extra: 1301/1213,
  52892. bottom: 87/1388
  52893. }
  52894. },
  52895. dressed: {
  52896. height: math.unit(5 + 3/12, "feet"),
  52897. name: "Dressed",
  52898. image: {
  52899. source: "./media/characters/ankou/dressed.svg",
  52900. extra: 1301/1213,
  52901. bottom: 87/1388
  52902. }
  52903. },
  52904. head: {
  52905. height: math.unit(1.61, "feet"),
  52906. name: "Head",
  52907. image: {
  52908. source: "./media/characters/ankou/head.svg"
  52909. }
  52910. },
  52911. },
  52912. [
  52913. {
  52914. name: "Normal",
  52915. height: math.unit(5 + 3/12, "feet"),
  52916. default: true
  52917. },
  52918. ]
  52919. ))
  52920. characterMakers.push(() => makeCharacter(
  52921. { name: "Juniper Skunktaur", species: ["skunk", "taur"], tags: ["taur"] },
  52922. {
  52923. side: {
  52924. height: math.unit(6 + 3/12, "feet"),
  52925. weight: math.unit(200, "kg"),
  52926. name: "Side",
  52927. image: {
  52928. source: "./media/characters/juniper-skunktaur/side.svg",
  52929. extra: 1574/1229,
  52930. bottom: 38/1612
  52931. }
  52932. },
  52933. front: {
  52934. height: math.unit(6 + 3/12, "feet"),
  52935. weight: math.unit(200, "kg"),
  52936. name: "Front",
  52937. image: {
  52938. source: "./media/characters/juniper-skunktaur/front.svg",
  52939. extra: 1337/1278,
  52940. bottom: 22/1359
  52941. }
  52942. },
  52943. back: {
  52944. height: math.unit(6 + 3/12, "feet"),
  52945. weight: math.unit(200, "kg"),
  52946. name: "Back",
  52947. image: {
  52948. source: "./media/characters/juniper-skunktaur/back.svg",
  52949. extra: 1618/1273,
  52950. bottom: 13/1631
  52951. }
  52952. },
  52953. top: {
  52954. height: math.unit(2.62, "feet"),
  52955. weight: math.unit(200, "kg"),
  52956. name: "Top",
  52957. image: {
  52958. source: "./media/characters/juniper-skunktaur/top.svg"
  52959. }
  52960. },
  52961. },
  52962. [
  52963. {
  52964. name: "Normal",
  52965. height: math.unit(6 + 3/12, "feet"),
  52966. default: true
  52967. },
  52968. ]
  52969. ))
  52970. characterMakers.push(() => makeCharacter(
  52971. { name: "Rei", species: ["kitsune"], tags: ["anthro"] },
  52972. {
  52973. front: {
  52974. height: math.unit(20.5, "feet"),
  52975. name: "Front",
  52976. image: {
  52977. source: "./media/characters/rei/front.svg",
  52978. extra: 1349/1195,
  52979. bottom: 31/1380
  52980. }
  52981. },
  52982. back: {
  52983. height: math.unit(20.5, "feet"),
  52984. name: "Back",
  52985. image: {
  52986. source: "./media/characters/rei/back.svg",
  52987. extra: 1358/1204,
  52988. bottom: 22/1380
  52989. }
  52990. },
  52991. pawsDigi: {
  52992. height: math.unit(3.45, "feet"),
  52993. name: "Paws (Digi)",
  52994. image: {
  52995. source: "./media/characters/rei/paws-digi.svg"
  52996. }
  52997. },
  52998. pawsPlanti: {
  52999. height: math.unit(3.45, "feet"),
  53000. name: "Paws (Planti)",
  53001. image: {
  53002. source: "./media/characters/rei/paws-planti.svg"
  53003. }
  53004. },
  53005. },
  53006. [
  53007. {
  53008. name: "Normal",
  53009. height: math.unit(20.5, "feet"),
  53010. default: true
  53011. },
  53012. ]
  53013. ))
  53014. characterMakers.push(() => makeCharacter(
  53015. { name: "Carina", species: ["arctic-fox"], tags: ["anthro"] },
  53016. {
  53017. front: {
  53018. height: math.unit(5 + 11/12, "feet"),
  53019. name: "Front",
  53020. image: {
  53021. source: "./media/characters/carina/front.svg",
  53022. extra: 1720/1449,
  53023. bottom: 14/1734
  53024. }
  53025. },
  53026. back: {
  53027. height: math.unit(5 + 11/12, "feet"),
  53028. name: "Back",
  53029. image: {
  53030. source: "./media/characters/carina/back.svg",
  53031. extra: 1493/1445,
  53032. bottom: 17/1510
  53033. }
  53034. },
  53035. paw: {
  53036. height: math.unit(0.92, "feet"),
  53037. name: "Paw",
  53038. image: {
  53039. source: "./media/characters/carina/paw.svg"
  53040. }
  53041. },
  53042. },
  53043. [
  53044. {
  53045. name: "Normal",
  53046. height: math.unit(5 + 11/12, "feet"),
  53047. default: true
  53048. },
  53049. ]
  53050. ))
  53051. characterMakers.push(() => makeCharacter(
  53052. { name: "Maya", species: ["cat"], tags: ["anthro", "taur"] },
  53053. {
  53054. normal_front: {
  53055. height: math.unit(4.88, "meters"),
  53056. name: "Front",
  53057. image: {
  53058. source: "./media/characters/maya/normal-front.svg",
  53059. extra: 1222/1145,
  53060. bottom: 57/1279
  53061. },
  53062. form: "normal",
  53063. default: true
  53064. },
  53065. monstrous_front: {
  53066. height: math.unit(10, "meters"),
  53067. name: "Front",
  53068. image: {
  53069. source: "./media/characters/maya/monstrous-front.svg",
  53070. extra: 1523/1109,
  53071. bottom: 113/1636
  53072. },
  53073. form: "monstrous",
  53074. extraAttributes: {
  53075. "swallowSize": {
  53076. name: "Tailmaw Bite Size",
  53077. power: 3,
  53078. type: "volume",
  53079. base: math.unit(43000, "liters")
  53080. },
  53081. }
  53082. },
  53083. taur_front: {
  53084. height: math.unit(10, "meters"),
  53085. name: "Front",
  53086. image: {
  53087. source: "./media/characters/maya/taur-front.svg",
  53088. extra: 743/506,
  53089. bottom: 101/844
  53090. },
  53091. form: "taur",
  53092. },
  53093. },
  53094. [
  53095. {
  53096. name: "Normal",
  53097. height: math.unit(4.88, "meters"),
  53098. default: true,
  53099. form: "normal"
  53100. },
  53101. {
  53102. name: "Macro",
  53103. height: math.unit(38.1, "meters"),
  53104. form: "normal"
  53105. },
  53106. {
  53107. name: "Macro+",
  53108. height: math.unit(152.4, "meters"),
  53109. form: "normal"
  53110. },
  53111. {
  53112. name: "Macro++",
  53113. height: math.unit(16.09, "km"),
  53114. form: "normal"
  53115. },
  53116. {
  53117. name: "Mega-macro",
  53118. height: math.unit(700, "megameters"),
  53119. form: "normal"
  53120. },
  53121. {
  53122. name: "Satiated",
  53123. height: math.unit(10, "meters"),
  53124. default: true,
  53125. form: "monstrous"
  53126. },
  53127. {
  53128. name: "Hungry",
  53129. height: math.unit(75, "meters"),
  53130. form: "monstrous"
  53131. },
  53132. {
  53133. name: "Ravenous",
  53134. height: math.unit(500, "meters"),
  53135. form: "monstrous"
  53136. },
  53137. {
  53138. name: "\"Normal\"",
  53139. height: math.unit(10, "meters"),
  53140. form: "taur"
  53141. },
  53142. {
  53143. name: "Macro",
  53144. height: math.unit(50, "meters"),
  53145. form: "taur"
  53146. },
  53147. ],
  53148. {
  53149. "normal": {
  53150. name: "Normal",
  53151. default: true
  53152. },
  53153. "monstrous": {
  53154. name: "Monstrous",
  53155. },
  53156. "taur": {
  53157. name: "Taur",
  53158. },
  53159. }
  53160. ))
  53161. characterMakers.push(() => makeCharacter(
  53162. { name: "Yepir", species: ["hyena"], tags: ["anthro"] },
  53163. {
  53164. front: {
  53165. height: math.unit(6 + 2/12, "feet"),
  53166. weight: math.unit(500, "lb"),
  53167. preyCapacity: math.unit(4, "people"),
  53168. name: "Front",
  53169. image: {
  53170. source: "./media/characters/yepir/front.svg"
  53171. }
  53172. },
  53173. side: {
  53174. height: math.unit(6 + 2/12, "feet"),
  53175. weight: math.unit(500, "lb"),
  53176. preyCapacity: math.unit(4, "people"),
  53177. name: "Side",
  53178. image: {
  53179. source: "./media/characters/yepir/side.svg"
  53180. }
  53181. },
  53182. paw: {
  53183. height: math.unit(1.05, "feet"),
  53184. name: "Paw",
  53185. image: {
  53186. source: "./media/characters/yepir/paw.svg"
  53187. }
  53188. },
  53189. },
  53190. [
  53191. {
  53192. name: "Normal",
  53193. height: math.unit(6 + 2/12, "feet"),
  53194. default: true
  53195. },
  53196. ]
  53197. ))
  53198. characterMakers.push(() => makeCharacter(
  53199. { name: "Russec", species: ["continental-giant-rabbit"], tags: ["anthro"] },
  53200. {
  53201. front: {
  53202. height: math.unit(5 + 4/12, "feet"),
  53203. name: "Front",
  53204. image: {
  53205. source: "./media/characters/russec/front.svg",
  53206. extra: 1926/1626,
  53207. bottom: 72/1998
  53208. }
  53209. },
  53210. back: {
  53211. height: math.unit(5 + 4/12, "feet"),
  53212. name: "Back",
  53213. image: {
  53214. source: "./media/characters/russec/back.svg",
  53215. extra: 1910/1591,
  53216. bottom: 48/1958
  53217. }
  53218. },
  53219. },
  53220. [
  53221. {
  53222. name: "Small",
  53223. height: math.unit(5 + 4/12, "feet")
  53224. },
  53225. {
  53226. name: "Normal",
  53227. height: math.unit(72, "feet"),
  53228. default: true
  53229. },
  53230. ]
  53231. ))
  53232. characterMakers.push(() => makeCharacter(
  53233. { name: "Cianus", species: ["demigryph"], tags: ["anthro"] },
  53234. {
  53235. side: {
  53236. height: math.unit(12, "feet"),
  53237. name: "Side",
  53238. image: {
  53239. source: "./media/characters/cianus/side.svg",
  53240. extra: 808/526,
  53241. bottom: 61/869
  53242. }
  53243. },
  53244. },
  53245. [
  53246. {
  53247. name: "Normal",
  53248. height: math.unit(12, "feet"),
  53249. default: true
  53250. },
  53251. ]
  53252. ))
  53253. characterMakers.push(() => makeCharacter(
  53254. { name: "Ahab", species: ["bald-eagle"], tags: ["anthro"] },
  53255. {
  53256. front: {
  53257. height: math.unit(9 + 6/12, "feet"),
  53258. weight: math.unit(300, "lb"),
  53259. name: "Front",
  53260. image: {
  53261. source: "./media/characters/ahab/front.svg",
  53262. extra: 1897/1868,
  53263. bottom: 121/2018
  53264. }
  53265. },
  53266. frontNsfw: {
  53267. height: math.unit(9 + 6/12, "feet"),
  53268. weight: math.unit(300, "lb"),
  53269. name: "Front-nsfw",
  53270. image: {
  53271. source: "./media/characters/ahab/front-nsfw.svg",
  53272. extra: 1897/1868,
  53273. bottom: 121/2018
  53274. }
  53275. },
  53276. },
  53277. [
  53278. {
  53279. name: "Normal",
  53280. height: math.unit(9 + 6/12, "feet")
  53281. },
  53282. {
  53283. name: "Macro",
  53284. height: math.unit(657, "feet"),
  53285. default: true
  53286. },
  53287. ]
  53288. ))
  53289. characterMakers.push(() => makeCharacter(
  53290. { name: "Aarkus", species: ["deer"], tags: ["anthro"] },
  53291. {
  53292. front: {
  53293. height: math.unit(2.69, "meters"),
  53294. weight: math.unit(132, "kg"),
  53295. name: "Front",
  53296. image: {
  53297. source: "./media/characters/aarkus/front.svg",
  53298. extra: 1400/1231,
  53299. bottom: 34/1434
  53300. }
  53301. },
  53302. back: {
  53303. height: math.unit(2.69, "meters"),
  53304. weight: math.unit(132, "kg"),
  53305. name: "Back",
  53306. image: {
  53307. source: "./media/characters/aarkus/back.svg",
  53308. extra: 1381/1218,
  53309. bottom: 30/1411
  53310. }
  53311. },
  53312. frontNsfw: {
  53313. height: math.unit(2.69, "meters"),
  53314. weight: math.unit(132, "kg"),
  53315. name: "Front (NSFW)",
  53316. image: {
  53317. source: "./media/characters/aarkus/front-nsfw.svg",
  53318. extra: 1400/1231,
  53319. bottom: 34/1434
  53320. }
  53321. },
  53322. foot: {
  53323. height: math.unit(1.45, "feet"),
  53324. name: "Foot",
  53325. image: {
  53326. source: "./media/characters/aarkus/foot.svg"
  53327. }
  53328. },
  53329. head: {
  53330. height: math.unit(2.85, "feet"),
  53331. name: "Head",
  53332. image: {
  53333. source: "./media/characters/aarkus/head.svg"
  53334. }
  53335. },
  53336. headAlt: {
  53337. height: math.unit(3.07, "feet"),
  53338. name: "Head (Alt)",
  53339. image: {
  53340. source: "./media/characters/aarkus/head-alt.svg"
  53341. }
  53342. },
  53343. mouth: {
  53344. height: math.unit(1.25, "feet"),
  53345. name: "Mouth",
  53346. image: {
  53347. source: "./media/characters/aarkus/mouth.svg"
  53348. }
  53349. },
  53350. dick: {
  53351. height: math.unit(1.77, "feet"),
  53352. name: "Dick",
  53353. image: {
  53354. source: "./media/characters/aarkus/dick.svg"
  53355. }
  53356. },
  53357. },
  53358. [
  53359. {
  53360. name: "Normal",
  53361. height: math.unit(2.69, "meters"),
  53362. default: true
  53363. },
  53364. {
  53365. name: "Macro",
  53366. height: math.unit(269, "meters")
  53367. },
  53368. {
  53369. name: "Macro+",
  53370. height: math.unit(672.5, "meters")
  53371. },
  53372. {
  53373. name: "Megamacro",
  53374. height: math.unit(2.017, "km")
  53375. },
  53376. ]
  53377. ))
  53378. characterMakers.push(() => makeCharacter(
  53379. { name: "Diode", species: ["moth"], tags: ["anthro"] },
  53380. {
  53381. front: {
  53382. height: math.unit(23.47, "cm"),
  53383. weight: math.unit(600, "grams"),
  53384. name: "Front",
  53385. image: {
  53386. source: "./media/characters/diode/front.svg",
  53387. extra: 1778/1396,
  53388. bottom: 95/1873
  53389. }
  53390. },
  53391. side: {
  53392. height: math.unit(23.47, "cm"),
  53393. weight: math.unit(600, "grams"),
  53394. name: "Side",
  53395. image: {
  53396. source: "./media/characters/diode/side.svg",
  53397. extra: 1831/1404,
  53398. bottom: 86/1917
  53399. }
  53400. },
  53401. wings: {
  53402. height: math.unit(0.683, "feet"),
  53403. name: "Wings",
  53404. image: {
  53405. source: "./media/characters/diode/wings.svg"
  53406. }
  53407. },
  53408. },
  53409. [
  53410. {
  53411. name: "Normal",
  53412. height: math.unit(23.47, "cm"),
  53413. default: true
  53414. },
  53415. ]
  53416. ))
  53417. characterMakers.push(() => makeCharacter(
  53418. { name: "Reika", species: ["kestrel", "mockingbird"], tags: ["anthro"] },
  53419. {
  53420. front: {
  53421. height: math.unit(6 + 3/12, "feet"),
  53422. weight: math.unit(250, "lb"),
  53423. name: "Front",
  53424. image: {
  53425. source: "./media/characters/reika/front.svg",
  53426. extra: 1120/1078,
  53427. bottom: 86/1206
  53428. }
  53429. },
  53430. },
  53431. [
  53432. {
  53433. name: "Normal",
  53434. height: math.unit(6 + 3/12, "feet"),
  53435. default: true
  53436. },
  53437. ]
  53438. ))
  53439. characterMakers.push(() => makeCharacter(
  53440. { name: "Lokuto Takama", species: ["arctic-fox", "kitsune"], tags: ["anthro"] },
  53441. {
  53442. front: {
  53443. height: math.unit(16 + 8/12, "feet"),
  53444. weight: math.unit(9000, "lb"),
  53445. name: "Front",
  53446. image: {
  53447. source: "./media/characters/lokuto-takama/front.svg",
  53448. extra: 1774/1632,
  53449. bottom: 147/1921
  53450. },
  53451. extraAttributes: {
  53452. "bustWidth": {
  53453. name: "Bust Width",
  53454. power: 1,
  53455. type: "length",
  53456. base: math.unit(2.4, "meters")
  53457. },
  53458. "breastWeight": {
  53459. name: "Breast Weight",
  53460. power: 3,
  53461. type: "mass",
  53462. base: math.unit(1000, "kg")
  53463. },
  53464. }
  53465. },
  53466. },
  53467. [
  53468. {
  53469. name: "Normal",
  53470. height: math.unit(16 + 8/12, "feet"),
  53471. default: true
  53472. },
  53473. ]
  53474. ))
  53475. characterMakers.push(() => makeCharacter(
  53476. { name: "Owak Bone", species: ["marowak"], tags: ["anthro"] },
  53477. {
  53478. front: {
  53479. height: math.unit(10, "cm"),
  53480. weight: math.unit(850, "grams"),
  53481. name: "Front",
  53482. image: {
  53483. source: "./media/characters/owak-bone/front.svg",
  53484. extra: 1965/1801,
  53485. bottom: 31/1996
  53486. }
  53487. },
  53488. },
  53489. [
  53490. {
  53491. name: "Normal",
  53492. height: math.unit(10, "cm"),
  53493. default: true
  53494. },
  53495. ]
  53496. ))
  53497. characterMakers.push(() => makeCharacter(
  53498. { name: "Muffin", species: ["ferret"], tags: ["anthro"] },
  53499. {
  53500. front: {
  53501. height: math.unit(2 + 6/12, "feet"),
  53502. weight: math.unit(9, "lb"),
  53503. name: "Front",
  53504. image: {
  53505. source: "./media/characters/muffin/front.svg",
  53506. extra: 1220/1195,
  53507. bottom: 84/1304
  53508. }
  53509. },
  53510. },
  53511. [
  53512. {
  53513. name: "Normal",
  53514. height: math.unit(2 + 6/12, "feet"),
  53515. default: true
  53516. },
  53517. ]
  53518. ))
  53519. characterMakers.push(() => makeCharacter(
  53520. { name: "Chimera", species: ["pegasus"], tags: ["anthro"] },
  53521. {
  53522. front: {
  53523. height: math.unit(7, "feet"),
  53524. name: "Front",
  53525. image: {
  53526. source: "./media/characters/chimera/front.svg",
  53527. extra: 1752/1614,
  53528. bottom: 68/1820
  53529. }
  53530. },
  53531. },
  53532. [
  53533. {
  53534. name: "Normal",
  53535. height: math.unit(7, "feet")
  53536. },
  53537. {
  53538. name: "Gigamacro",
  53539. height: math.unit(2.9, "gigameters"),
  53540. default: true
  53541. },
  53542. {
  53543. name: "Universal",
  53544. height: math.unit(1.56e26, "yottameters")
  53545. },
  53546. ]
  53547. ))
  53548. characterMakers.push(() => makeCharacter(
  53549. { name: "Kit (Fennec Fox)", species: ["fennec-fox"], tags: ["anthro"] },
  53550. {
  53551. front: {
  53552. height: math.unit(3, "feet"),
  53553. weight: math.unit(20, "lb"),
  53554. name: "Front",
  53555. image: {
  53556. source: "./media/characters/kit-fennec-fox/front.svg",
  53557. extra: 1027/932,
  53558. bottom: 16/1043
  53559. }
  53560. },
  53561. back: {
  53562. height: math.unit(3, "feet"),
  53563. weight: math.unit(20, "lb"),
  53564. name: "Back",
  53565. image: {
  53566. source: "./media/characters/kit-fennec-fox/back.svg",
  53567. extra: 1027/932,
  53568. bottom: 16/1043
  53569. }
  53570. },
  53571. },
  53572. [
  53573. {
  53574. name: "Normal",
  53575. height: math.unit(3, "feet"),
  53576. default: true
  53577. },
  53578. ]
  53579. ))
  53580. characterMakers.push(() => makeCharacter(
  53581. { name: "Blue (Otter)", species: ["otter"], tags: ["anthro"] },
  53582. {
  53583. front: {
  53584. height: math.unit(167, "cm"),
  53585. name: "Front",
  53586. image: {
  53587. source: "./media/characters/blue-otter/front.svg",
  53588. extra: 1951/1920,
  53589. bottom: 31/1982
  53590. }
  53591. },
  53592. },
  53593. [
  53594. {
  53595. name: "Otter-Sized",
  53596. height: math.unit(100, "cm")
  53597. },
  53598. {
  53599. name: "Normal",
  53600. height: math.unit(167, "cm"),
  53601. default: true
  53602. },
  53603. ]
  53604. ))
  53605. characterMakers.push(() => makeCharacter(
  53606. { name: "Maverick (Leopard Gecko)", species: ["leopard-gecko"], tags: ["anthro"] },
  53607. {
  53608. front: {
  53609. height: math.unit(4 + 4/12, "feet"),
  53610. name: "Front",
  53611. image: {
  53612. source: "./media/characters/maverick-leopard-gecko/front.svg",
  53613. extra: 1072/1067,
  53614. bottom: 117/1189
  53615. }
  53616. },
  53617. back: {
  53618. height: math.unit(4 + 4/12, "feet"),
  53619. name: "Back",
  53620. image: {
  53621. source: "./media/characters/maverick-leopard-gecko/back.svg",
  53622. extra: 1135/1129,
  53623. bottom: 57/1192
  53624. }
  53625. },
  53626. head: {
  53627. height: math.unit(1.77, "feet"),
  53628. name: "Head",
  53629. image: {
  53630. source: "./media/characters/maverick-leopard-gecko/head.svg"
  53631. }
  53632. },
  53633. },
  53634. [
  53635. {
  53636. name: "Normal",
  53637. height: math.unit(4 + 4/12, "feet"),
  53638. default: true
  53639. },
  53640. ]
  53641. ))
  53642. characterMakers.push(() => makeCharacter(
  53643. { name: "Carley Hartford", species: ["joltik"], tags: ["anthro"] },
  53644. {
  53645. front: {
  53646. height: math.unit(2, "inches"),
  53647. name: "Front",
  53648. image: {
  53649. source: "./media/characters/carley-hartford/front.svg",
  53650. extra: 1035/988,
  53651. bottom: 23/1058
  53652. }
  53653. },
  53654. back: {
  53655. height: math.unit(2, "inches"),
  53656. name: "Back",
  53657. image: {
  53658. source: "./media/characters/carley-hartford/back.svg",
  53659. extra: 1035/988,
  53660. bottom: 23/1058
  53661. }
  53662. },
  53663. dressed: {
  53664. height: math.unit(2, "inches"),
  53665. name: "Dressed",
  53666. image: {
  53667. source: "./media/characters/carley-hartford/dressed.svg",
  53668. extra: 651/620,
  53669. bottom: 0/651
  53670. }
  53671. },
  53672. },
  53673. [
  53674. {
  53675. name: "Micro",
  53676. height: math.unit(2, "inches"),
  53677. default: true
  53678. },
  53679. {
  53680. name: "Macro",
  53681. height: math.unit(6 + 3/12, "feet")
  53682. },
  53683. ]
  53684. ))
  53685. characterMakers.push(() => makeCharacter(
  53686. { name: "Duke", species: ["ferret"], tags: ["anthro"] },
  53687. {
  53688. front: {
  53689. height: math.unit(2 + 3/12, "feet"),
  53690. weight: math.unit(15 + 7/16, "lb"),
  53691. name: "Front",
  53692. image: {
  53693. source: "./media/characters/duke/front.svg",
  53694. extra: 910/815,
  53695. bottom: 30/940
  53696. }
  53697. },
  53698. },
  53699. [
  53700. {
  53701. name: "Normal",
  53702. height: math.unit(2 + 3/12, "feet"),
  53703. default: true
  53704. },
  53705. ]
  53706. ))
  53707. characterMakers.push(() => makeCharacter(
  53708. { name: "Dein", species: ["ferret"], tags: ["anthro"] },
  53709. {
  53710. front: {
  53711. height: math.unit(5 + 4/12, "feet"),
  53712. weight: math.unit(156, "lb"),
  53713. name: "Front",
  53714. image: {
  53715. source: "./media/characters/dein/front.svg",
  53716. extra: 855/815,
  53717. bottom: 48/903
  53718. }
  53719. },
  53720. side: {
  53721. height: math.unit(5 + 4/12, "feet"),
  53722. weight: math.unit(156, "lb"),
  53723. name: "side",
  53724. image: {
  53725. source: "./media/characters/dein/side.svg",
  53726. extra: 846/803,
  53727. bottom: 25/871
  53728. }
  53729. },
  53730. maw: {
  53731. height: math.unit(1.45, "feet"),
  53732. name: "Maw",
  53733. image: {
  53734. source: "./media/characters/dein/maw.svg"
  53735. }
  53736. },
  53737. },
  53738. [
  53739. {
  53740. name: "Ferret Sized",
  53741. height: math.unit(2 + 5/12, "feet")
  53742. },
  53743. {
  53744. name: "Normal",
  53745. height: math.unit(5 + 4/12, "feet"),
  53746. default: true
  53747. },
  53748. ]
  53749. ))
  53750. characterMakers.push(() => makeCharacter(
  53751. { name: "Daurine Arima", species: ["werewolf"], tags: ["anthro"] },
  53752. {
  53753. front: {
  53754. height: math.unit(84 + 8/12, "feet"),
  53755. weight: math.unit(942180, "lb"),
  53756. name: "Front",
  53757. image: {
  53758. source: "./media/characters/daurine-arima/front.svg",
  53759. extra: 1989/1782,
  53760. bottom: 37/2026
  53761. }
  53762. },
  53763. side: {
  53764. height: math.unit(84 + 8/12, "feet"),
  53765. weight: math.unit(942180, "lb"),
  53766. name: "Side",
  53767. image: {
  53768. source: "./media/characters/daurine-arima/side.svg",
  53769. extra: 1997/1790,
  53770. bottom: 21/2018
  53771. }
  53772. },
  53773. back: {
  53774. height: math.unit(84 + 8/12, "feet"),
  53775. weight: math.unit(942180, "lb"),
  53776. name: "Back",
  53777. image: {
  53778. source: "./media/characters/daurine-arima/back.svg",
  53779. extra: 1992/1800,
  53780. bottom: 12/2004
  53781. }
  53782. },
  53783. head: {
  53784. height: math.unit(15.5, "feet"),
  53785. name: "Head",
  53786. image: {
  53787. source: "./media/characters/daurine-arima/head.svg"
  53788. }
  53789. },
  53790. headAlt: {
  53791. height: math.unit(19.19, "feet"),
  53792. name: "Head (Alt)",
  53793. image: {
  53794. source: "./media/characters/daurine-arima/head-alt.svg"
  53795. }
  53796. },
  53797. },
  53798. [
  53799. {
  53800. name: "Minimum height",
  53801. height: math.unit(8 + 10/12, "feet")
  53802. },
  53803. {
  53804. name: "Comfort height",
  53805. height: math.unit(19 + 6 /12, "feet")
  53806. },
  53807. {
  53808. name: "\"Normal\" height",
  53809. height: math.unit(28 + 10/12, "feet")
  53810. },
  53811. {
  53812. name: "Base height",
  53813. height: math.unit(84 + 8/12, "feet"),
  53814. default: true
  53815. },
  53816. {
  53817. name: "Mini-macro",
  53818. height: math.unit(2360, "feet")
  53819. },
  53820. {
  53821. name: "Macro",
  53822. height: math.unit(10, "miles")
  53823. },
  53824. {
  53825. name: "Goddess",
  53826. height: math.unit(9.99e40, "yottameters")
  53827. },
  53828. ]
  53829. ))
  53830. characterMakers.push(() => makeCharacter(
  53831. { name: "Cilenomon", species: ["slime"], tags: ["anthro"] },
  53832. {
  53833. front: {
  53834. height: math.unit(2.3, "meters"),
  53835. name: "Front",
  53836. image: {
  53837. source: "./media/characters/cilenomon/front.svg",
  53838. extra: 1963/1778,
  53839. bottom: 54/2017
  53840. }
  53841. },
  53842. },
  53843. [
  53844. {
  53845. name: "Normal",
  53846. height: math.unit(2.3, "meters"),
  53847. default: true
  53848. },
  53849. {
  53850. name: "Big",
  53851. height: math.unit(5, "meters")
  53852. },
  53853. {
  53854. name: "Macro",
  53855. height: math.unit(30, "meters")
  53856. },
  53857. {
  53858. name: "True",
  53859. height: math.unit(1, "universe")
  53860. },
  53861. ]
  53862. ))
  53863. characterMakers.push(() => makeCharacter(
  53864. { name: "Sen (Mink)", species: ["mink"], tags: ["anthro"] },
  53865. {
  53866. front: {
  53867. height: math.unit(5, "feet"),
  53868. name: "Front",
  53869. image: {
  53870. source: "./media/characters/sen-mink/front.svg",
  53871. extra: 1727/1675,
  53872. bottom: 35/1762
  53873. }
  53874. },
  53875. },
  53876. [
  53877. {
  53878. name: "Normal",
  53879. height: math.unit(5, "feet"),
  53880. default: true
  53881. },
  53882. ]
  53883. ))
  53884. characterMakers.push(() => makeCharacter(
  53885. { name: "Ophois", species: ["jackal", "sandcat"], tags: ["anthro"] },
  53886. {
  53887. front: {
  53888. height: math.unit(5.42999, "feet"),
  53889. weight: math.unit(100, "lb"),
  53890. name: "Front",
  53891. image: {
  53892. source: "./media/characters/ophois/front.svg",
  53893. extra: 1429/1286,
  53894. bottom: 60/1489
  53895. }
  53896. },
  53897. },
  53898. [
  53899. {
  53900. name: "Normal",
  53901. height: math.unit(5.42999, "feet"),
  53902. default: true
  53903. },
  53904. ]
  53905. ))
  53906. characterMakers.push(() => makeCharacter(
  53907. { name: "Riley", species: ["eagle"], tags: ["anthro"] },
  53908. {
  53909. front: {
  53910. height: math.unit(2, "meters"),
  53911. name: "Front",
  53912. image: {
  53913. source: "./media/characters/riley/front.svg",
  53914. extra: 1779/1754,
  53915. bottom: 139/1918
  53916. }
  53917. },
  53918. },
  53919. [
  53920. {
  53921. name: "Normal",
  53922. height: math.unit(2, "meters"),
  53923. default: true
  53924. },
  53925. ]
  53926. ))
  53927. characterMakers.push(() => makeCharacter(
  53928. { name: "Shuken Flash", species: ["arctic-fox"], tags: ["anthro"] },
  53929. {
  53930. front: {
  53931. height: math.unit(6 + 2/12, "feet"),
  53932. weight: math.unit(195, "lb"),
  53933. preyCapacity: math.unit(6, "people"),
  53934. name: "Front",
  53935. image: {
  53936. source: "./media/characters/shuken-flash/front.svg",
  53937. extra: 1905/1739,
  53938. bottom: 65/1970
  53939. }
  53940. },
  53941. back: {
  53942. height: math.unit(6 + 2/12, "feet"),
  53943. weight: math.unit(195, "lb"),
  53944. preyCapacity: math.unit(6, "people"),
  53945. name: "Back",
  53946. image: {
  53947. source: "./media/characters/shuken-flash/back.svg",
  53948. extra: 1912/1751,
  53949. bottom: 13/1925
  53950. }
  53951. },
  53952. },
  53953. [
  53954. {
  53955. name: "Normal",
  53956. height: math.unit(6 + 2/12, "feet"),
  53957. default: true
  53958. },
  53959. ]
  53960. ))
  53961. characterMakers.push(() => makeCharacter(
  53962. { name: "Plat", species: ["raven"], tags: ["anthro"] },
  53963. {
  53964. front: {
  53965. height: math.unit(5 + 9/12, "feet"),
  53966. weight: math.unit(150, "lb"),
  53967. name: "Front",
  53968. image: {
  53969. source: "./media/characters/plat/front.svg",
  53970. extra: 1816/1703,
  53971. bottom: 43/1859
  53972. }
  53973. },
  53974. side: {
  53975. height: math.unit(5 + 9/12, "feet"),
  53976. weight: math.unit(300, "lb"),
  53977. name: "Side",
  53978. image: {
  53979. source: "./media/characters/plat/side.svg",
  53980. extra: 1824/1699,
  53981. bottom: 18/1842
  53982. }
  53983. },
  53984. },
  53985. [
  53986. {
  53987. name: "Normal",
  53988. height: math.unit(5 + 9/12, "feet"),
  53989. default: true
  53990. },
  53991. ]
  53992. ))
  53993. characterMakers.push(() => makeCharacter(
  53994. { name: "Elaine", species: ["snake", "dragon"], tags: ["anthro"] },
  53995. {
  53996. front: {
  53997. height: math.unit(9, "feet"),
  53998. weight: math.unit(1800, "lb"),
  53999. name: "Front",
  54000. image: {
  54001. source: "./media/characters/elaine/front.svg",
  54002. extra: 1833/1354,
  54003. bottom: 25/1858
  54004. }
  54005. },
  54006. back: {
  54007. height: math.unit(8.8, "feet"),
  54008. weight: math.unit(1800, "lb"),
  54009. name: "Back",
  54010. image: {
  54011. source: "./media/characters/elaine/back.svg",
  54012. extra: 1641/1233,
  54013. bottom: 53/1694
  54014. }
  54015. },
  54016. },
  54017. [
  54018. {
  54019. name: "Normal",
  54020. height: math.unit(9, "feet"),
  54021. default: true
  54022. },
  54023. ]
  54024. ))
  54025. characterMakers.push(() => makeCharacter(
  54026. { name: "Vera (Raven)", species: ["raven"], tags: ["anthro"] },
  54027. {
  54028. front: {
  54029. height: math.unit(17 + 9/12, "feet"),
  54030. weight: math.unit(8000, "lb"),
  54031. name: "Front",
  54032. image: {
  54033. source: "./media/characters/vera-raven/front.svg",
  54034. extra: 1457/1412,
  54035. bottom: 121/1578
  54036. }
  54037. },
  54038. side: {
  54039. height: math.unit(17 + 9/12, "feet"),
  54040. weight: math.unit(8000, "lb"),
  54041. name: "Side",
  54042. image: {
  54043. source: "./media/characters/vera-raven/side.svg",
  54044. extra: 1510/1464,
  54045. bottom: 54/1564
  54046. }
  54047. },
  54048. },
  54049. [
  54050. {
  54051. name: "Normal",
  54052. height: math.unit(17 + 9/12, "feet"),
  54053. default: true
  54054. },
  54055. ]
  54056. ))
  54057. characterMakers.push(() => makeCharacter(
  54058. { name: "Nakisha", species: ["sabertooth-tiger", "leopard"], tags: ["anthro"] },
  54059. {
  54060. dressed: {
  54061. height: math.unit(6 + 9/12, "feet"),
  54062. name: "Dressed",
  54063. image: {
  54064. source: "./media/characters/nakisha/dressed.svg",
  54065. extra: 1909/1757,
  54066. bottom: 48/1957
  54067. }
  54068. },
  54069. nude: {
  54070. height: math.unit(6 + 9/12, "feet"),
  54071. name: "Nude",
  54072. image: {
  54073. source: "./media/characters/nakisha/nude.svg",
  54074. extra: 1917/1765,
  54075. bottom: 34/1951
  54076. }
  54077. },
  54078. },
  54079. [
  54080. {
  54081. name: "Normal",
  54082. height: math.unit(6 + 9/12, "feet"),
  54083. default: true
  54084. },
  54085. ]
  54086. ))
  54087. characterMakers.push(() => makeCharacter(
  54088. { name: "Serafin", species: ["dragon"], tags: ["anthro"] },
  54089. {
  54090. front: {
  54091. height: math.unit(87, "meters"),
  54092. name: "Front",
  54093. image: {
  54094. source: "./media/characters/serafin/front.svg",
  54095. extra: 1919/1776,
  54096. bottom: 65/1984
  54097. }
  54098. },
  54099. },
  54100. [
  54101. {
  54102. name: "Normal",
  54103. height: math.unit(87, "meters"),
  54104. default: true
  54105. },
  54106. ]
  54107. ))
  54108. characterMakers.push(() => makeCharacter(
  54109. { name: "Poptart", species: ["red-panda", "husky"], tags: ["anthro"] },
  54110. {
  54111. front: {
  54112. height: math.unit(6, "feet"),
  54113. weight: math.unit(200, "lb"),
  54114. name: "Front",
  54115. image: {
  54116. source: "./media/characters/poptart/front.svg",
  54117. extra: 615/583,
  54118. bottom: 23/638
  54119. }
  54120. },
  54121. back: {
  54122. height: math.unit(6, "feet"),
  54123. weight: math.unit(200, "lb"),
  54124. name: "Back",
  54125. image: {
  54126. source: "./media/characters/poptart/back.svg",
  54127. extra: 617/584,
  54128. bottom: 22/639
  54129. }
  54130. },
  54131. frontNsfw: {
  54132. height: math.unit(6, "feet"),
  54133. weight: math.unit(200, "lb"),
  54134. name: "Front (NSFW)",
  54135. image: {
  54136. source: "./media/characters/poptart/front-nsfw.svg",
  54137. extra: 615/583,
  54138. bottom: 23/638
  54139. }
  54140. },
  54141. backNsfw: {
  54142. height: math.unit(6, "feet"),
  54143. weight: math.unit(200, "lb"),
  54144. name: "Back (NSFW)",
  54145. image: {
  54146. source: "./media/characters/poptart/back-nsfw.svg",
  54147. extra: 617/584,
  54148. bottom: 22/639
  54149. }
  54150. },
  54151. hand: {
  54152. height: math.unit(1.14, "feet"),
  54153. name: "Hand",
  54154. image: {
  54155. source: "./media/characters/poptart/hand.svg"
  54156. }
  54157. },
  54158. foot: {
  54159. height: math.unit(1.5, "feet"),
  54160. name: "Foot",
  54161. image: {
  54162. source: "./media/characters/poptart/foot.svg"
  54163. }
  54164. },
  54165. },
  54166. [
  54167. {
  54168. name: "Normal",
  54169. height: math.unit(6, "feet"),
  54170. default: true
  54171. },
  54172. {
  54173. name: "Grande",
  54174. height: math.unit(350, "feet")
  54175. },
  54176. {
  54177. name: "Massif",
  54178. height: math.unit(967, "feet")
  54179. },
  54180. ]
  54181. ))
  54182. characterMakers.push(() => makeCharacter(
  54183. { name: "Trance", species: ["hyena"], tags: ["anthro"] },
  54184. {
  54185. hyenaSide: {
  54186. height: math.unit(120, "cm"),
  54187. weight: math.unit(120, "lb"),
  54188. name: "Side",
  54189. image: {
  54190. source: "./media/characters/trance/hyena-side.svg",
  54191. extra: 998/904,
  54192. bottom: 76/1074
  54193. }
  54194. },
  54195. },
  54196. [
  54197. {
  54198. name: "Normal",
  54199. height: math.unit(120, "cm"),
  54200. default: true
  54201. },
  54202. {
  54203. name: "Dire",
  54204. height: math.unit(230, "cm")
  54205. },
  54206. {
  54207. name: "Macro",
  54208. height: math.unit(37, "feet")
  54209. },
  54210. ]
  54211. ))
  54212. characterMakers.push(() => makeCharacter(
  54213. { name: "Michael Berretta", species: ["lion"], tags: ["anthro"] },
  54214. {
  54215. front: {
  54216. height: math.unit(6 + 3/12, "feet"),
  54217. name: "Front",
  54218. image: {
  54219. source: "./media/characters/michael-berretta/front.svg",
  54220. extra: 515/494,
  54221. bottom: 20/535
  54222. }
  54223. },
  54224. back: {
  54225. height: math.unit(6 + 3/12, "feet"),
  54226. name: "Back",
  54227. image: {
  54228. source: "./media/characters/michael-berretta/back.svg",
  54229. extra: 520/497,
  54230. bottom: 21/541
  54231. }
  54232. },
  54233. frontNsfw: {
  54234. height: math.unit(6 + 3/12, "feet"),
  54235. name: "Front (NSFW)",
  54236. image: {
  54237. source: "./media/characters/michael-berretta/front-nsfw.svg",
  54238. extra: 515/494,
  54239. bottom: 20/535
  54240. }
  54241. },
  54242. dick: {
  54243. height: math.unit(1, "feet"),
  54244. name: "Dick",
  54245. image: {
  54246. source: "./media/characters/michael-berretta/dick.svg"
  54247. }
  54248. },
  54249. },
  54250. [
  54251. {
  54252. name: "Normal",
  54253. height: math.unit(6 + 3/12, "feet"),
  54254. default: true
  54255. },
  54256. {
  54257. name: "Big",
  54258. height: math.unit(12, "feet")
  54259. },
  54260. {
  54261. name: "Macro",
  54262. height: math.unit(187.5, "feet")
  54263. },
  54264. ]
  54265. ))
  54266. characterMakers.push(() => makeCharacter(
  54267. { name: "Stella Edgecomb", species: ["bear"], tags: ["anthro"] },
  54268. {
  54269. front: {
  54270. height: math.unit(9 + 9/12, "feet"),
  54271. weight: math.unit(1244, "lb"),
  54272. name: "Front",
  54273. image: {
  54274. source: "./media/characters/stella-edgecomb/front.svg",
  54275. extra: 1835/1706,
  54276. bottom: 49/1884
  54277. }
  54278. },
  54279. pen: {
  54280. height: math.unit(0.95, "feet"),
  54281. name: "Pen",
  54282. image: {
  54283. source: "./media/characters/stella-edgecomb/pen.svg"
  54284. }
  54285. },
  54286. },
  54287. [
  54288. {
  54289. name: "Cozy Bear",
  54290. height: math.unit(0.5, "inches")
  54291. },
  54292. {
  54293. name: "Normal",
  54294. height: math.unit(9 + 9/12, "feet"),
  54295. default: true
  54296. },
  54297. {
  54298. name: "Giga Bear",
  54299. height: math.unit(1, "mile")
  54300. },
  54301. {
  54302. name: "Great Bear",
  54303. height: math.unit(53, "miles")
  54304. },
  54305. {
  54306. name: "Goddess Bear",
  54307. height: math.unit(40000, "miles")
  54308. },
  54309. {
  54310. name: "Sun Bear",
  54311. height: math.unit(900000, "miles")
  54312. },
  54313. ]
  54314. ))
  54315. characterMakers.push(() => makeCharacter(
  54316. { name: "Ash´iika", species: ["dragon"], tags: ["anthro", "feral"] },
  54317. {
  54318. anthroFront: {
  54319. height: math.unit(556, "cm"),
  54320. weight: math.unit(2650, "kg"),
  54321. preyCapacity: math.unit(3, "people"),
  54322. name: "Front",
  54323. image: {
  54324. source: "./media/characters/ash´iika/front.svg",
  54325. extra: 710/673,
  54326. bottom: 15/725
  54327. },
  54328. form: "anthro",
  54329. default: true
  54330. },
  54331. anthroSide: {
  54332. height: math.unit(556, "cm"),
  54333. weight: math.unit(2650, "kg"),
  54334. preyCapacity: math.unit(3, "people"),
  54335. name: "Side",
  54336. image: {
  54337. source: "./media/characters/ash´iika/side.svg",
  54338. extra: 696/676,
  54339. bottom: 13/709
  54340. },
  54341. form: "anthro"
  54342. },
  54343. anthroDressed: {
  54344. height: math.unit(556, "cm"),
  54345. weight: math.unit(2650, "kg"),
  54346. preyCapacity: math.unit(3, "people"),
  54347. name: "Dressed",
  54348. image: {
  54349. source: "./media/characters/ash´iika/dressed.svg",
  54350. extra: 710/673,
  54351. bottom: 15/725
  54352. },
  54353. form: "anthro"
  54354. },
  54355. anthroHead: {
  54356. height: math.unit(3.5, "feet"),
  54357. name: "Head",
  54358. image: {
  54359. source: "./media/characters/ash´iika/head.svg",
  54360. extra: 348/291,
  54361. bottom: 45/393
  54362. },
  54363. form: "anthro"
  54364. },
  54365. feralSide: {
  54366. height: math.unit(870, "cm"),
  54367. weight: math.unit(17500, "kg"),
  54368. preyCapacity: math.unit(15, "people"),
  54369. name: "Side",
  54370. image: {
  54371. source: "./media/characters/ash´iika/feral.svg",
  54372. extra: 595/199,
  54373. bottom: 7/602
  54374. },
  54375. form: "feral",
  54376. default: true,
  54377. },
  54378. },
  54379. [
  54380. {
  54381. name: "Normal",
  54382. height: math.unit(556, "cm"),
  54383. default: true,
  54384. form: "anthro"
  54385. },
  54386. {
  54387. name: "Macro",
  54388. height: math.unit(88, "meters"),
  54389. form: "anthro"
  54390. },
  54391. {
  54392. name: "Normal",
  54393. height: math.unit(870, "cm"),
  54394. default: true,
  54395. form: "feral"
  54396. },
  54397. {
  54398. name: "Large",
  54399. height: math.unit(25, "meters"),
  54400. form: "feral"
  54401. },
  54402. ],
  54403. {
  54404. "anthro": {
  54405. name: "Anthro",
  54406. default: true
  54407. },
  54408. "feral": {
  54409. name: "Feral",
  54410. },
  54411. }
  54412. ))
  54413. characterMakers.push(() => makeCharacter(
  54414. { name: "Yen", species: ["hrothgar"], tags: ["anthro"] },
  54415. {
  54416. front: {
  54417. height: math.unit(10, "feet"),
  54418. weight: math.unit(800, "lb"),
  54419. name: "Front",
  54420. image: {
  54421. source: "./media/characters/yen/front.svg",
  54422. extra: 443/411,
  54423. bottom: 6/449
  54424. }
  54425. },
  54426. sleeping: {
  54427. height: math.unit(10, "feet"),
  54428. weight: math.unit(800, "lb"),
  54429. name: "Sleeping",
  54430. image: {
  54431. source: "./media/characters/yen/sleeping.svg",
  54432. extra: 470/422,
  54433. bottom: 0/470
  54434. }
  54435. },
  54436. head: {
  54437. height: math.unit(2.2, "feet"),
  54438. name: "Head",
  54439. image: {
  54440. source: "./media/characters/yen/head.svg"
  54441. }
  54442. },
  54443. headAlt: {
  54444. height: math.unit(2.1, "feet"),
  54445. name: "Head (Alt)",
  54446. image: {
  54447. source: "./media/characters/yen/head-alt.svg"
  54448. }
  54449. },
  54450. },
  54451. [
  54452. {
  54453. name: "Normal",
  54454. height: math.unit(10, "feet"),
  54455. default: true
  54456. },
  54457. ]
  54458. ))
  54459. characterMakers.push(() => makeCharacter(
  54460. { name: "Citra", species: ["dragon"], tags: ["anthro"] },
  54461. {
  54462. front: {
  54463. height: math.unit(12, "feet"),
  54464. name: "Front",
  54465. image: {
  54466. source: "./media/characters/citra/front.svg",
  54467. extra: 1950/1710,
  54468. bottom: 47/1997
  54469. }
  54470. },
  54471. },
  54472. [
  54473. {
  54474. name: "Normal",
  54475. height: math.unit(12, "feet"),
  54476. default: true
  54477. },
  54478. ]
  54479. ))
  54480. characterMakers.push(() => makeCharacter(
  54481. { name: "Sholstim", species: ["dragon"], tags: ["feral"] },
  54482. {
  54483. side: {
  54484. height: math.unit(7 + 10/12, "feet"),
  54485. name: "Side",
  54486. image: {
  54487. source: "./media/characters/sholstim/side.svg",
  54488. extra: 786/682,
  54489. bottom: 40/826
  54490. }
  54491. },
  54492. },
  54493. [
  54494. {
  54495. name: "Normal",
  54496. height: math.unit(7 + 10/12, "feet"),
  54497. default: true
  54498. },
  54499. ]
  54500. ))
  54501. characterMakers.push(() => makeCharacter(
  54502. { name: "Aggyn", species: ["human", "cobra"], tags: ["anthro"] },
  54503. {
  54504. front: {
  54505. height: math.unit(3.10, "meters"),
  54506. name: "Front",
  54507. image: {
  54508. source: "./media/characters/aggyn/front.svg",
  54509. extra: 1188/963,
  54510. bottom: 24/1212
  54511. }
  54512. },
  54513. },
  54514. [
  54515. {
  54516. name: "Normal",
  54517. height: math.unit(3.10, "meters"),
  54518. default: true
  54519. },
  54520. ]
  54521. ))
  54522. characterMakers.push(() => makeCharacter(
  54523. { name: "Alsandair Hergenroether", species: ["pangolin", "deity"], tags: ["anthro"] },
  54524. {
  54525. front: {
  54526. height: math.unit(7 + 5/12, "feet"),
  54527. weight: math.unit(687, "lb"),
  54528. name: "Front",
  54529. image: {
  54530. source: "./media/characters/alsandair-hergenroether/front.svg",
  54531. extra: 1251/1186,
  54532. bottom: 75/1326
  54533. }
  54534. },
  54535. back: {
  54536. height: math.unit(7 + 5/12, "feet"),
  54537. weight: math.unit(687, "lb"),
  54538. name: "Back",
  54539. image: {
  54540. source: "./media/characters/alsandair-hergenroether/back.svg",
  54541. extra: 1290/1229,
  54542. bottom: 17/1307
  54543. }
  54544. },
  54545. },
  54546. [
  54547. {
  54548. name: "Max Compression",
  54549. height: math.unit(7 + 5/12, "feet"),
  54550. default: true
  54551. },
  54552. {
  54553. name: "\"Normal\"",
  54554. height: math.unit(2, "universes")
  54555. },
  54556. ]
  54557. ))
  54558. characterMakers.push(() => makeCharacter(
  54559. { name: "Ie", species: ["teshari"], tags: ["anthro"] },
  54560. {
  54561. front: {
  54562. height: math.unit(4 + 1/12, "feet"),
  54563. weight: math.unit(92, "lb"),
  54564. name: "Front",
  54565. image: {
  54566. source: "./media/characters/ie/front.svg",
  54567. extra: 1585/1352,
  54568. bottom: 91/1676
  54569. }
  54570. },
  54571. },
  54572. [
  54573. {
  54574. name: "Normal",
  54575. height: math.unit(4 + 1/12, "feet"),
  54576. default: true
  54577. },
  54578. ]
  54579. ))
  54580. characterMakers.push(() => makeCharacter(
  54581. { name: "Willow", species: ["nargacuga", "garchomp"], tags: ["anthro", "taur"] },
  54582. {
  54583. anthro: {
  54584. height: math.unit(6, "feet"),
  54585. weight: math.unit(150, "lb"),
  54586. name: "Front",
  54587. image: {
  54588. source: "./media/characters/willow/anthro.svg",
  54589. extra: 1073/986,
  54590. bottom: 34/1107
  54591. },
  54592. form: "anthro",
  54593. default: true
  54594. },
  54595. taur: {
  54596. height: math.unit(6, "feet"),
  54597. weight: math.unit(150, "lb"),
  54598. name: "Side",
  54599. image: {
  54600. source: "./media/characters/willow/taur.svg",
  54601. extra: 647/512,
  54602. bottom: 136/783
  54603. },
  54604. form: "taur",
  54605. default: true
  54606. },
  54607. },
  54608. [
  54609. {
  54610. name: "Humanoid",
  54611. height: math.unit(2.7, "meters"),
  54612. form: "anthro"
  54613. },
  54614. {
  54615. name: "Normal",
  54616. height: math.unit(9, "meters"),
  54617. form: "anthro",
  54618. default: true
  54619. },
  54620. {
  54621. name: "Humanoid",
  54622. height: math.unit(2.1, "meters"),
  54623. form: "taur"
  54624. },
  54625. {
  54626. name: "Normal",
  54627. height: math.unit(7, "meters"),
  54628. form: "taur",
  54629. default: true
  54630. },
  54631. ],
  54632. {
  54633. "anthro": {
  54634. name: "Anthro",
  54635. default: true
  54636. },
  54637. "taur": {
  54638. name: "Taur",
  54639. },
  54640. }
  54641. ))
  54642. characterMakers.push(() => makeCharacter(
  54643. { name: "Kyan", species: ["sable"], tags: ["anthro"] },
  54644. {
  54645. front: {
  54646. height: math.unit(2 + 5/12, "feet"),
  54647. name: "Front",
  54648. image: {
  54649. source: "./media/characters/kyan/front.svg",
  54650. extra: 460/334,
  54651. bottom: 23/483
  54652. },
  54653. extraAttributes: {
  54654. "toeLength": {
  54655. name: "Toe Length",
  54656. power: 1,
  54657. type: "length",
  54658. base: math.unit(7, "cm")
  54659. },
  54660. "toeclawLength": {
  54661. name: "Toeclaw Length",
  54662. power: 1,
  54663. type: "length",
  54664. base: math.unit(4.7, "cm")
  54665. },
  54666. "earHeight": {
  54667. name: "Ear Height",
  54668. power: 1,
  54669. type: "length",
  54670. base: math.unit(14.1, "cm")
  54671. },
  54672. }
  54673. },
  54674. paws: {
  54675. height: math.unit(0.45, "feet"),
  54676. name: "Paws",
  54677. image: {
  54678. source: "./media/characters/kyan/paws.svg",
  54679. extra: 581/581,
  54680. bottom: 114/695
  54681. }
  54682. },
  54683. },
  54684. [
  54685. {
  54686. name: "Normal",
  54687. height: math.unit(2 + 5/12, "feet"),
  54688. default: true
  54689. },
  54690. ]
  54691. ))
  54692. characterMakers.push(() => makeCharacter(
  54693. { name: "Xazzon", species: ["deino"], tags: ["anthro"] },
  54694. {
  54695. front: {
  54696. height: math.unit(2 + 2/3, "feet"),
  54697. name: "Front",
  54698. image: {
  54699. source: "./media/characters/xazzon/front.svg",
  54700. extra: 1109/984,
  54701. bottom: 42/1151
  54702. }
  54703. },
  54704. back: {
  54705. height: math.unit(2 + 2/3, "feet"),
  54706. name: "Back",
  54707. image: {
  54708. source: "./media/characters/xazzon/back.svg",
  54709. extra: 1095/971,
  54710. bottom: 23/1118
  54711. }
  54712. },
  54713. },
  54714. [
  54715. {
  54716. name: "Normal",
  54717. height: math.unit(2 + 2/3, "feet"),
  54718. default: true
  54719. },
  54720. ]
  54721. ))
  54722. characterMakers.push(() => makeCharacter(
  54723. { name: "Khyla Shadowsong", species: ["charr"], tags: ["anthro"] },
  54724. {
  54725. front: {
  54726. height: math.unit(8, "feet"),
  54727. weight: math.unit(300, "lb"),
  54728. name: "Front",
  54729. image: {
  54730. source: "./media/characters/khyla-shadowsong/front.svg",
  54731. extra: 861/798,
  54732. bottom: 32/893
  54733. }
  54734. },
  54735. side: {
  54736. height: math.unit(8, "feet"),
  54737. weight: math.unit(300, "lb"),
  54738. name: "Side",
  54739. image: {
  54740. source: "./media/characters/khyla-shadowsong/side.svg",
  54741. extra: 790/750,
  54742. bottom: 87/877
  54743. }
  54744. },
  54745. back: {
  54746. height: math.unit(8, "feet"),
  54747. weight: math.unit(300, "lb"),
  54748. name: "Back",
  54749. image: {
  54750. source: "./media/characters/khyla-shadowsong/back.svg",
  54751. extra: 855/808,
  54752. bottom: 14/869
  54753. }
  54754. },
  54755. head: {
  54756. height: math.unit(2.7, "feet"),
  54757. name: "Head",
  54758. image: {
  54759. source: "./media/characters/khyla-shadowsong/head.svg"
  54760. }
  54761. },
  54762. },
  54763. [
  54764. {
  54765. name: "Micro",
  54766. height: math.unit(6, "inches")
  54767. },
  54768. {
  54769. name: "Normal",
  54770. height: math.unit(8, "feet"),
  54771. default: true
  54772. },
  54773. ]
  54774. ))
  54775. characterMakers.push(() => makeCharacter(
  54776. { name: "Tiden", species: ["housecat"], tags: ["anthro"] },
  54777. {
  54778. hyperFront: {
  54779. height: math.unit(9 + 4/12, "feet"),
  54780. weight: math.unit(2000, "lb"),
  54781. name: "Front",
  54782. image: {
  54783. source: "./media/characters/tiden/hyper-front.svg",
  54784. extra: 400/382,
  54785. bottom: 6/406
  54786. },
  54787. form: "hyper",
  54788. },
  54789. regularFront: {
  54790. height: math.unit(7 + 10/12, "feet"),
  54791. weight: math.unit(470, "lb"),
  54792. name: "Front",
  54793. image: {
  54794. source: "./media/characters/tiden/regular-front.svg",
  54795. extra: 468/442,
  54796. bottom: 6/474
  54797. },
  54798. form: "regular",
  54799. },
  54800. },
  54801. [
  54802. {
  54803. name: "Normal",
  54804. height: math.unit(9 + 4/12, "feet"),
  54805. default: true,
  54806. form: "hyper"
  54807. },
  54808. {
  54809. name: "Normal",
  54810. height: math.unit(7 + 10/12, "feet"),
  54811. default: true,
  54812. form: "regular"
  54813. },
  54814. ],
  54815. {
  54816. "hyper": {
  54817. name: "Hyper",
  54818. default: true
  54819. },
  54820. "regular": {
  54821. name: "Regular",
  54822. },
  54823. }
  54824. ))
  54825. characterMakers.push(() => makeCharacter(
  54826. { name: "Jason Crowe", species: ["gryphon", "raven", "bombay-cat"], tags: ["feral"] },
  54827. {
  54828. side: {
  54829. height: math.unit(6, "feet"),
  54830. weight: math.unit(150, "lb"),
  54831. name: "Side",
  54832. image: {
  54833. source: "./media/characters/jason-crowe/side.svg",
  54834. extra: 1771/766,
  54835. bottom: 219/1990
  54836. }
  54837. },
  54838. },
  54839. [
  54840. {
  54841. name: "Pocket Gryphon",
  54842. height: math.unit(6, "cm")
  54843. },
  54844. {
  54845. name: "Raven",
  54846. height: math.unit(60, "cm")
  54847. },
  54848. {
  54849. name: "Normal",
  54850. height: math.unit(1, "meter"),
  54851. default: true
  54852. },
  54853. ]
  54854. ))
  54855. characterMakers.push(() => makeCharacter(
  54856. { name: "Django", species: ["maine-coon"], tags: ["anthro"] },
  54857. {
  54858. front: {
  54859. height: math.unit(9 + 6/12, "feet"),
  54860. weight: math.unit(1100, "lb"),
  54861. name: "Front",
  54862. image: {
  54863. source: "./media/characters/django/front.svg",
  54864. extra: 1231/1136,
  54865. bottom: 34/1265
  54866. }
  54867. },
  54868. side: {
  54869. height: math.unit(9 + 6/12, "feet"),
  54870. weight: math.unit(1100, "lb"),
  54871. name: "Side",
  54872. image: {
  54873. source: "./media/characters/django/side.svg",
  54874. extra: 1267/1174,
  54875. bottom: 9/1276
  54876. }
  54877. },
  54878. },
  54879. [
  54880. {
  54881. name: "Normal",
  54882. height: math.unit(9 + 6/12, "feet"),
  54883. default: true
  54884. },
  54885. {
  54886. name: "Macro 1",
  54887. height: math.unit(50, "feet")
  54888. },
  54889. {
  54890. name: "Macro 2",
  54891. height: math.unit(500, "feet")
  54892. },
  54893. {
  54894. name: "Mega Macro",
  54895. height: math.unit(5300, "feet")
  54896. },
  54897. ]
  54898. ))
  54899. characterMakers.push(() => makeCharacter(
  54900. { name: "Eri", species: ["moth", "alien"], tags: ["anthro"] },
  54901. {
  54902. frontSfw: {
  54903. height: math.unit(120, "cm"),
  54904. weight: math.unit(15, "kg"),
  54905. name: "Front (SFW)",
  54906. image: {
  54907. source: "./media/characters/eri/front-sfw.svg",
  54908. extra: 1014/939,
  54909. bottom: 37/1051
  54910. },
  54911. form: "moth",
  54912. },
  54913. frontNsfw: {
  54914. height: math.unit(120, "cm"),
  54915. weight: math.unit(15, "kg"),
  54916. name: "Front (NSFW)",
  54917. image: {
  54918. source: "./media/characters/eri/front-nsfw.svg",
  54919. extra: 1014/939,
  54920. bottom: 37/1051
  54921. },
  54922. form: "moth",
  54923. default: true
  54924. },
  54925. egg: {
  54926. height: math.unit(10, "cm"),
  54927. name: "Egg",
  54928. image: {
  54929. source: "./media/characters/eri/egg.svg"
  54930. },
  54931. form: "egg",
  54932. default: true
  54933. },
  54934. },
  54935. [
  54936. {
  54937. name: "Normal",
  54938. height: math.unit(120, "cm"),
  54939. default: true,
  54940. form: "moth"
  54941. },
  54942. {
  54943. name: "Normal",
  54944. height: math.unit(10, "cm"),
  54945. default: true,
  54946. form: "egg"
  54947. },
  54948. ],
  54949. {
  54950. "moth": {
  54951. name: "Moth",
  54952. default: true
  54953. },
  54954. "egg": {
  54955. name: "Egg",
  54956. },
  54957. }
  54958. ))
  54959. characterMakers.push(() => makeCharacter(
  54960. { name: "Bishop Dowser", species: ["red-panda"], tags: ["anthro"] },
  54961. {
  54962. front: {
  54963. height: math.unit(200, "feet"),
  54964. name: "Front",
  54965. image: {
  54966. source: "./media/characters/bishop-dowser/front.svg",
  54967. extra: 933/868,
  54968. bottom: 106/1039
  54969. }
  54970. },
  54971. },
  54972. [
  54973. {
  54974. name: "Giant",
  54975. height: math.unit(200, "feet"),
  54976. default: true
  54977. },
  54978. ]
  54979. ))
  54980. characterMakers.push(() => makeCharacter(
  54981. { name: "Fryra", species: ["dragon", "cow"], tags: ["anthro"] },
  54982. {
  54983. front: {
  54984. height: math.unit(2, "meters"),
  54985. preyCapacity: math.unit(3, "people"),
  54986. name: "Front",
  54987. image: {
  54988. source: "./media/characters/fryra/front.svg",
  54989. extra: 1025/948,
  54990. bottom: 30/1055
  54991. },
  54992. extraAttributes: {
  54993. "breastVolume": {
  54994. name: "Breast Volume",
  54995. power: 3,
  54996. type: "volume",
  54997. base: math.unit(8, "liters")
  54998. },
  54999. }
  55000. },
  55001. back: {
  55002. height: math.unit(2, "meters"),
  55003. preyCapacity: math.unit(3, "people"),
  55004. name: "Back",
  55005. image: {
  55006. source: "./media/characters/fryra/back.svg",
  55007. extra: 993/938,
  55008. bottom: 38/1031
  55009. },
  55010. extraAttributes: {
  55011. "breastVolume": {
  55012. name: "Breast Volume",
  55013. power: 3,
  55014. type: "volume",
  55015. base: math.unit(8, "liters")
  55016. },
  55017. }
  55018. },
  55019. head: {
  55020. height: math.unit(1.33, "feet"),
  55021. name: "Head",
  55022. image: {
  55023. source: "./media/characters/fryra/head.svg"
  55024. }
  55025. },
  55026. maw: {
  55027. height: math.unit(0.56, "feet"),
  55028. name: "Maw",
  55029. image: {
  55030. source: "./media/characters/fryra/maw.svg"
  55031. }
  55032. },
  55033. },
  55034. [
  55035. {
  55036. name: "Micro",
  55037. height: math.unit(5, "cm")
  55038. },
  55039. {
  55040. name: "Normal",
  55041. height: math.unit(2, "meters"),
  55042. default: true
  55043. },
  55044. {
  55045. name: "Small Macro",
  55046. height: math.unit(8, "meters")
  55047. },
  55048. {
  55049. name: "Macro",
  55050. height: math.unit(50, "meters")
  55051. },
  55052. {
  55053. name: "Megamacro",
  55054. height: math.unit(1, "km")
  55055. },
  55056. {
  55057. name: "Planetary",
  55058. height: math.unit(300000, "km")
  55059. },
  55060. {
  55061. name: "Universal",
  55062. height: math.unit(250, "lightyears")
  55063. },
  55064. {
  55065. name: "Fabric of Reality",
  55066. height: math.unit(1000, "multiverses")
  55067. },
  55068. ]
  55069. ))
  55070. characterMakers.push(() => makeCharacter(
  55071. { name: "Fiera", species: ["husky"], tags: ["anthro"] },
  55072. {
  55073. frontDressed: {
  55074. height: math.unit(6 + 2/12, "feet"),
  55075. name: "Front (Dressed)",
  55076. image: {
  55077. source: "./media/characters/fiera/front-dressed.svg",
  55078. extra: 1883/1793,
  55079. bottom: 70/1953
  55080. }
  55081. },
  55082. backDressed: {
  55083. height: math.unit(6 + 2/12, "feet"),
  55084. name: "Back (Dressed)",
  55085. image: {
  55086. source: "./media/characters/fiera/back-dressed.svg",
  55087. extra: 1847/1780,
  55088. bottom: 70/1917
  55089. }
  55090. },
  55091. frontNude: {
  55092. height: math.unit(6 + 2/12, "feet"),
  55093. name: "Front (Nude)",
  55094. image: {
  55095. source: "./media/characters/fiera/front-nude.svg",
  55096. extra: 1875/1785,
  55097. bottom: 66/1941
  55098. }
  55099. },
  55100. backNude: {
  55101. height: math.unit(6 + 2/12, "feet"),
  55102. name: "Back (Nude)",
  55103. image: {
  55104. source: "./media/characters/fiera/back-nude.svg",
  55105. extra: 1855/1788,
  55106. bottom: 44/1899
  55107. }
  55108. },
  55109. maw: {
  55110. height: math.unit(1.3, "feet"),
  55111. name: "Maw",
  55112. image: {
  55113. source: "./media/characters/fiera/maw.svg"
  55114. }
  55115. },
  55116. paw: {
  55117. height: math.unit(1, "feet"),
  55118. name: "Paw",
  55119. image: {
  55120. source: "./media/characters/fiera/paw.svg"
  55121. }
  55122. },
  55123. shoe: {
  55124. height: math.unit(1.05, "feet"),
  55125. name: "Shoe",
  55126. image: {
  55127. source: "./media/characters/fiera/shoe.svg"
  55128. }
  55129. },
  55130. },
  55131. [
  55132. {
  55133. name: "Normal",
  55134. height: math.unit(6 + 2/12, "feet"),
  55135. default: true
  55136. },
  55137. {
  55138. name: "Size Difference",
  55139. height: math.unit(13, "feet")
  55140. },
  55141. {
  55142. name: "Macro",
  55143. height: math.unit(60, "feet")
  55144. },
  55145. {
  55146. name: "Mega Macro",
  55147. height: math.unit(200, "feet")
  55148. },
  55149. ]
  55150. ))
  55151. characterMakers.push(() => makeCharacter(
  55152. { name: "Flare", species: ["husky"], tags: ["anthro"] },
  55153. {
  55154. back: {
  55155. height: math.unit(6, "feet"),
  55156. name: "Back",
  55157. image: {
  55158. source: "./media/characters/flare/back.svg",
  55159. extra: 1883/1765,
  55160. bottom: 32/1915
  55161. }
  55162. },
  55163. },
  55164. [
  55165. {
  55166. name: "Normal",
  55167. height: math.unit(6 + 2/12, "feet"),
  55168. default: true
  55169. },
  55170. {
  55171. name: "Size Difference",
  55172. height: math.unit(13, "feet")
  55173. },
  55174. {
  55175. name: "Macro",
  55176. height: math.unit(60, "feet")
  55177. },
  55178. {
  55179. name: "Macro 2",
  55180. height: math.unit(100, "feet")
  55181. },
  55182. {
  55183. name: "Mega Macro",
  55184. height: math.unit(200, "feet")
  55185. },
  55186. ]
  55187. ))
  55188. characterMakers.push(() => makeCharacter(
  55189. { name: "Hanna", species: ["coelacanth"], tags: ["anthro"] },
  55190. {
  55191. front: {
  55192. height: math.unit(2.2, "m"),
  55193. weight: math.unit(300, "kg"),
  55194. name: "Front",
  55195. image: {
  55196. source: "./media/characters/hanna/front.svg",
  55197. extra: 1696/1502,
  55198. bottom: 206/1902
  55199. }
  55200. },
  55201. },
  55202. [
  55203. {
  55204. name: "Humanoid",
  55205. height: math.unit(2.2, "meters")
  55206. },
  55207. {
  55208. name: "Normal",
  55209. height: math.unit(4.8, "meters"),
  55210. default: true
  55211. },
  55212. ]
  55213. ))
  55214. characterMakers.push(() => makeCharacter(
  55215. { name: "Argo", species: ["silvally"], tags: ["taur"] },
  55216. {
  55217. front: {
  55218. height: math.unit(2.8, "meters"),
  55219. name: "Front",
  55220. image: {
  55221. source: "./media/characters/argo/front.svg",
  55222. extra: 731/518,
  55223. bottom: 84/815
  55224. }
  55225. },
  55226. },
  55227. [
  55228. {
  55229. name: "Normal",
  55230. height: math.unit(3, "meters"),
  55231. default: true
  55232. },
  55233. ]
  55234. ))
  55235. characterMakers.push(() => makeCharacter(
  55236. { name: "Sybil", species: ["scolipede", "typhlosion"], tags: ["feral"] },
  55237. {
  55238. side: {
  55239. height: math.unit(3.8, "meters"),
  55240. name: "Side",
  55241. image: {
  55242. source: "./media/characters/sybil/side.svg",
  55243. extra: 382/361,
  55244. bottom: 25/407
  55245. }
  55246. },
  55247. },
  55248. [
  55249. {
  55250. name: "Normal",
  55251. height: math.unit(3.8, "meters"),
  55252. default: true
  55253. },
  55254. ]
  55255. ))
  55256. characterMakers.push(() => makeCharacter(
  55257. { name: "Plum", species: ["great-maccao"], tags: ["taur", "feral"] },
  55258. {
  55259. side: {
  55260. height: math.unit(6, "meters"),
  55261. name: "Side",
  55262. image: {
  55263. source: "./media/characters/plum/side.svg",
  55264. extra: 858/755,
  55265. bottom: 45/903
  55266. },
  55267. form: "taur",
  55268. default: true
  55269. },
  55270. back: {
  55271. height: math.unit(6.3, "meters"),
  55272. name: "Back",
  55273. image: {
  55274. source: "./media/characters/plum/back.svg",
  55275. extra: 887/813,
  55276. bottom: 32/919
  55277. },
  55278. form: "taur",
  55279. },
  55280. feral: {
  55281. height: math.unit(5.5, "meter"),
  55282. name: "Front",
  55283. image: {
  55284. source: "./media/characters/plum/feral.svg",
  55285. extra: 568/403,
  55286. bottom: 51/619
  55287. },
  55288. form: "feral",
  55289. default: true
  55290. },
  55291. head: {
  55292. height: math.unit(1.46, "meter"),
  55293. name: "Head",
  55294. image: {
  55295. source: "./media/characters/plum/head.svg"
  55296. },
  55297. form: "taur"
  55298. },
  55299. tailTop: {
  55300. height: math.unit(5.6, "meter"),
  55301. name: "Tail (Top)",
  55302. image: {
  55303. source: "./media/characters/plum/tail-top.svg"
  55304. },
  55305. form: "taur",
  55306. },
  55307. tailBottom: {
  55308. height: math.unit(5.6, "meter"),
  55309. name: "Tail (Bottom)",
  55310. image: {
  55311. source: "./media/characters/plum/tail-bottom.svg"
  55312. },
  55313. form: "taur",
  55314. },
  55315. feralHead: {
  55316. height: math.unit(2.56549521, "meter"),
  55317. name: "Head",
  55318. image: {
  55319. source: "./media/characters/plum/head.svg"
  55320. },
  55321. form: "feral"
  55322. },
  55323. feralTailTop: {
  55324. height: math.unit(5.44728435, "meter"),
  55325. name: "Tail (Top)",
  55326. image: {
  55327. source: "./media/characters/plum/tail-top.svg"
  55328. },
  55329. form: "feral",
  55330. },
  55331. feralTailBottom: {
  55332. height: math.unit(5.44728435, "meter"),
  55333. name: "Tail (Bottom)",
  55334. image: {
  55335. source: "./media/characters/plum/tail-bottom.svg"
  55336. },
  55337. form: "feral",
  55338. },
  55339. },
  55340. [
  55341. {
  55342. name: "Normal",
  55343. height: math.unit(6, "meters"),
  55344. default: true,
  55345. form: "taur"
  55346. },
  55347. {
  55348. name: "Normal",
  55349. height: math.unit(5.5, "meters"),
  55350. default: true,
  55351. form: "feral"
  55352. },
  55353. ],
  55354. {
  55355. "taur": {
  55356. name: "Taur",
  55357. default: true
  55358. },
  55359. "feral": {
  55360. name: "Feral",
  55361. },
  55362. }
  55363. ))
  55364. characterMakers.push(() => makeCharacter(
  55365. { name: "Celeste (Kitsune)", species: ["kitsune"], tags: ["anthro"] },
  55366. {
  55367. front: {
  55368. height: math.unit(6, "feet"),
  55369. weight: math.unit(115, "lb"),
  55370. name: "Front",
  55371. image: {
  55372. source: "./media/characters/celeste-kitsune/front.svg",
  55373. extra: 393/366,
  55374. bottom: 7/400
  55375. }
  55376. },
  55377. side: {
  55378. height: math.unit(6, "feet"),
  55379. weight: math.unit(115, "lb"),
  55380. name: "Side",
  55381. image: {
  55382. source: "./media/characters/celeste-kitsune/side.svg",
  55383. extra: 818/765,
  55384. bottom: 40/858
  55385. }
  55386. },
  55387. },
  55388. [
  55389. {
  55390. name: "Megamacro",
  55391. height: math.unit(1500, "miles"),
  55392. default: true
  55393. },
  55394. ]
  55395. ))
  55396. characterMakers.push(() => makeCharacter(
  55397. { name: "Io", species: ["shapeshifter"], tags: ["anthro"] },
  55398. {
  55399. front: {
  55400. height: math.unit(8, "meters"),
  55401. name: "Front",
  55402. image: {
  55403. source: "./media/characters/io/front.svg",
  55404. extra: 865/722,
  55405. bottom: 58/923
  55406. }
  55407. },
  55408. back: {
  55409. height: math.unit(8, "meters"),
  55410. name: "Back",
  55411. image: {
  55412. source: "./media/characters/io/back.svg",
  55413. extra: 920/776,
  55414. bottom: 42/962
  55415. }
  55416. },
  55417. head: {
  55418. height: math.unit(5.09, "meters"),
  55419. name: "Head",
  55420. image: {
  55421. source: "./media/characters/io/head.svg"
  55422. }
  55423. },
  55424. hand: {
  55425. height: math.unit(1.6, "meters"),
  55426. name: "Hand",
  55427. image: {
  55428. source: "./media/characters/io/hand.svg"
  55429. }
  55430. },
  55431. foot: {
  55432. height: math.unit(2.4, "meters"),
  55433. name: "Foot",
  55434. image: {
  55435. source: "./media/characters/io/foot.svg"
  55436. }
  55437. },
  55438. },
  55439. [
  55440. {
  55441. name: "Normal",
  55442. height: math.unit(8, "meters"),
  55443. default: true
  55444. },
  55445. ]
  55446. ))
  55447. characterMakers.push(() => makeCharacter(
  55448. { name: "Silas", species: ["skaven"], tags: ["anthro"] },
  55449. {
  55450. side: {
  55451. height: math.unit(6 + 3/12, "feet"),
  55452. weight: math.unit(225, "lb"),
  55453. name: "Side",
  55454. image: {
  55455. source: "./media/characters/silas/side.svg",
  55456. extra: 703/653,
  55457. bottom: 23/726
  55458. },
  55459. extraAttributes: {
  55460. "pawLength": {
  55461. name: "Paw Length",
  55462. power: 1,
  55463. type: "length",
  55464. base: math.unit(12, "inches")
  55465. },
  55466. "pawWidth": {
  55467. name: "Paw Width",
  55468. power: 1,
  55469. type: "length",
  55470. base: math.unit(4.5, "inches")
  55471. },
  55472. "pawArea": {
  55473. name: "Paw Area",
  55474. power: 2,
  55475. type: "area",
  55476. base: math.unit(12 * 4.5, "inches^2")
  55477. },
  55478. }
  55479. },
  55480. },
  55481. [
  55482. {
  55483. name: "Normal",
  55484. height: math.unit(6 + 3/12, "feet"),
  55485. default: true
  55486. },
  55487. ]
  55488. ))
  55489. characterMakers.push(() => makeCharacter(
  55490. { name: "Zari", species: ["otter"], tags: ["anthro"] },
  55491. {
  55492. back: {
  55493. height: math.unit(1.6, "meters"),
  55494. weight: math.unit(150, "lb"),
  55495. name: "Back",
  55496. image: {
  55497. source: "./media/characters/zari/back.svg",
  55498. extra: 424/411,
  55499. bottom: 32/456
  55500. },
  55501. extraAttributes: {
  55502. "bladderCapacity": {
  55503. name: "Bladder Size",
  55504. power: 3,
  55505. type: "volume",
  55506. base: math.unit(500, "mL")
  55507. },
  55508. "bladderFlow": {
  55509. name: "Flow Rate",
  55510. power: 3,
  55511. type: "volume",
  55512. base: math.unit(25, "mL")
  55513. },
  55514. }
  55515. },
  55516. },
  55517. [
  55518. {
  55519. name: "Normal",
  55520. height: math.unit(1.6, "meters"),
  55521. default: true
  55522. },
  55523. ]
  55524. ))
  55525. characterMakers.push(() => makeCharacter(
  55526. { name: "Charlie (Human)", species: ["human"], tags: ["anthro"] },
  55527. {
  55528. front: {
  55529. height: math.unit(25, "feet"),
  55530. weight: math.unit(5, "tons"),
  55531. name: "Front",
  55532. image: {
  55533. source: "./media/characters/charlie-human/front.svg",
  55534. extra: 1870/1740,
  55535. bottom: 102/1972
  55536. },
  55537. extraAttributes: {
  55538. "dickLength": {
  55539. name: "Dick Length",
  55540. power: 1,
  55541. type: "length",
  55542. base: math.unit(9, "feet")
  55543. },
  55544. }
  55545. },
  55546. back: {
  55547. height: math.unit(25, "feet"),
  55548. weight: math.unit(5, "tons"),
  55549. name: "Back",
  55550. image: {
  55551. source: "./media/characters/charlie-human/back.svg",
  55552. extra: 1858/1733,
  55553. bottom: 105/1963
  55554. },
  55555. extraAttributes: {
  55556. "dickLength": {
  55557. name: "Dick Length",
  55558. power: 1,
  55559. type: "length",
  55560. base: math.unit(9, "feet")
  55561. },
  55562. }
  55563. },
  55564. },
  55565. [
  55566. {
  55567. name: "\"Normal\"",
  55568. height: math.unit(6 + 4/12, "feet")
  55569. },
  55570. {
  55571. name: "Big",
  55572. height: math.unit(25, "feet"),
  55573. default: true
  55574. },
  55575. ]
  55576. ))
  55577. characterMakers.push(() => makeCharacter(
  55578. { name: "Ookitsu", species: ["kitsune"], tags: ["anthro"] },
  55579. {
  55580. front: {
  55581. height: math.unit(6 + 4/12, "feet"),
  55582. weight: math.unit(320, "lb"),
  55583. name: "Front",
  55584. image: {
  55585. source: "./media/characters/ookitsu/front.svg",
  55586. extra: 1160/976,
  55587. bottom: 38/1198
  55588. }
  55589. },
  55590. frontNsfw: {
  55591. height: math.unit(6 + 4/12, "feet"),
  55592. weight: math.unit(320, "lb"),
  55593. name: "Front (NSFW)",
  55594. image: {
  55595. source: "./media/characters/ookitsu/front-nsfw.svg",
  55596. extra: 1160/976,
  55597. bottom: 38/1198
  55598. }
  55599. },
  55600. back: {
  55601. height: math.unit(6 + 4/12, "feet"),
  55602. weight: math.unit(320, "lb"),
  55603. name: "Back",
  55604. image: {
  55605. source: "./media/characters/ookitsu/back.svg",
  55606. extra: 1030/975,
  55607. bottom: 70/1100
  55608. }
  55609. },
  55610. head: {
  55611. height: math.unit(1.79, "feet"),
  55612. name: "Head",
  55613. image: {
  55614. source: "./media/characters/ookitsu/head.svg"
  55615. }
  55616. },
  55617. hand: {
  55618. height: math.unit(0.92, "feet"),
  55619. name: "Hand",
  55620. image: {
  55621. source: "./media/characters/ookitsu/hand.svg"
  55622. }
  55623. },
  55624. tails: {
  55625. height: math.unit(3.3, "feet"),
  55626. name: "Tails",
  55627. image: {
  55628. source: "./media/characters/ookitsu/tails.svg"
  55629. }
  55630. },
  55631. dick: {
  55632. height: math.unit(1.10833, "feet"),
  55633. name: "Dick",
  55634. image: {
  55635. source: "./media/characters/ookitsu/dick.svg"
  55636. }
  55637. },
  55638. },
  55639. [
  55640. {
  55641. name: "Normal",
  55642. height: math.unit(6 + 4/12, "feet"),
  55643. default: true
  55644. },
  55645. {
  55646. name: "Macro",
  55647. height: math.unit(30, "feet")
  55648. },
  55649. ]
  55650. ))
  55651. characterMakers.push(() => makeCharacter(
  55652. { name: "JHusky", species: ["husky"], tags: ["anthro", "taur"] },
  55653. {
  55654. anthroFront: {
  55655. height: math.unit(6, "feet"),
  55656. weight: math.unit(250, "lb"),
  55657. name: "Front",
  55658. image: {
  55659. source: "./media/characters/jhusky/anthro-front.svg",
  55660. extra: 474/439,
  55661. bottom: 7/481
  55662. },
  55663. form: "anthro",
  55664. default: true
  55665. },
  55666. taurSideSfw: {
  55667. height: math.unit(6 + 4/12, "feet"),
  55668. weight: math.unit(500, "lb"),
  55669. name: "Side (SFW)",
  55670. image: {
  55671. source: "./media/characters/jhusky/taur-side-sfw.svg",
  55672. extra: 1741/1629,
  55673. bottom: 196/1937
  55674. },
  55675. form: "taur",
  55676. default: true
  55677. },
  55678. taurSideNsfw: {
  55679. height: math.unit(6 + 4/12, "feet"),
  55680. weight: math.unit(500, "lb"),
  55681. name: "Taur (NSFW)",
  55682. image: {
  55683. source: "./media/characters/jhusky/taur-side-nsfw.svg",
  55684. extra: 1741/1629,
  55685. bottom: 196/1937
  55686. },
  55687. form: "taur",
  55688. },
  55689. },
  55690. [
  55691. {
  55692. name: "Huge",
  55693. height: math.unit(500, "feet"),
  55694. form: "anthro"
  55695. },
  55696. {
  55697. name: "Macro",
  55698. height: math.unit(1000, "feet"),
  55699. default: true,
  55700. form: "anthro"
  55701. },
  55702. {
  55703. name: "Megamacro",
  55704. height: math.unit(10000, "feet"),
  55705. form: "anthro"
  55706. },
  55707. {
  55708. name: "Huge",
  55709. height: math.unit(528, "feet"),
  55710. form: "taur"
  55711. },
  55712. {
  55713. name: "Macro",
  55714. height: math.unit(1056, "feet"),
  55715. default: true,
  55716. form: "taur"
  55717. },
  55718. {
  55719. name: "Megamacro",
  55720. height: math.unit(10556, "feet"),
  55721. form: "taur"
  55722. },
  55723. ],
  55724. {
  55725. "anthro": {
  55726. name: "Anthro",
  55727. default: true
  55728. },
  55729. "taur": {
  55730. name: "Taur",
  55731. },
  55732. }
  55733. ))
  55734. characterMakers.push(() => makeCharacter(
  55735. { name: "Armail", species: ["obstagoon"], tags: ["anthro"] },
  55736. {
  55737. front: {
  55738. height: math.unit(8, "feet"),
  55739. weight: math.unit(500, "lb"),
  55740. name: "Front",
  55741. image: {
  55742. source: "./media/characters/armail/front.svg",
  55743. extra: 1753/1669,
  55744. bottom: 155/1908
  55745. }
  55746. },
  55747. back: {
  55748. height: math.unit(8, "feet"),
  55749. weight: math.unit(500, "lb"),
  55750. name: "Back",
  55751. image: {
  55752. source: "./media/characters/armail/back.svg",
  55753. extra: 1872/1803,
  55754. bottom: 63/1935
  55755. }
  55756. },
  55757. },
  55758. [
  55759. {
  55760. name: "Micro",
  55761. height: math.unit(0.25, "feet")
  55762. },
  55763. {
  55764. name: "Normal",
  55765. height: math.unit(8, "feet"),
  55766. default: true
  55767. },
  55768. {
  55769. name: "Mini-macro",
  55770. height: math.unit(30, "feet")
  55771. },
  55772. {
  55773. name: "Macro",
  55774. height: math.unit(400, "feet")
  55775. },
  55776. {
  55777. name: "Mega-macro",
  55778. height: math.unit(6000, "feet")
  55779. },
  55780. ]
  55781. ))
  55782. characterMakers.push(() => makeCharacter(
  55783. { name: "Wilfred T. Buxton", species: ["thomsons-gazelle"], tags: ["anthro"] },
  55784. {
  55785. front: {
  55786. height: math.unit(6 + 7/12, "feet"),
  55787. weight: math.unit(210, "lb"),
  55788. name: "Front",
  55789. image: {
  55790. source: "./media/characters/wilfred-t-buxton/front.svg",
  55791. extra: 1068/882,
  55792. bottom: 28/1096
  55793. }
  55794. },
  55795. },
  55796. [
  55797. {
  55798. name: "Normal",
  55799. height: math.unit(6 + 7/12, "feet"),
  55800. default: true
  55801. },
  55802. ]
  55803. ))
  55804. characterMakers.push(() => makeCharacter(
  55805. { name: "Leighton Marrow", species: ["deer"], tags: ["anthro"] },
  55806. {
  55807. front: {
  55808. height: math.unit(5 + 2/12, "feet"),
  55809. weight: math.unit(120, "lb"),
  55810. name: "Front",
  55811. image: {
  55812. source: "./media/characters/leighton-marrow/front.svg",
  55813. extra: 441/409,
  55814. bottom: 37/478
  55815. }
  55816. },
  55817. },
  55818. [
  55819. {
  55820. name: "Normal",
  55821. height: math.unit(5 + 2/12, "feet"),
  55822. default: true
  55823. },
  55824. ]
  55825. ))
  55826. characterMakers.push(() => makeCharacter(
  55827. { name: "Licos", species: ["werewolf"], tags: ["anthro", "taur"] },
  55828. {
  55829. front: {
  55830. height: math.unit(4, "meters"),
  55831. weight: math.unit(1200, "kg"),
  55832. name: "Front",
  55833. image: {
  55834. source: "./media/characters/licos/front.svg",
  55835. extra: 1727/1604,
  55836. bottom: 101/1828
  55837. },
  55838. form: "anthro",
  55839. default: true
  55840. },
  55841. taur_side: {
  55842. height: math.unit(20, "meters"),
  55843. weight: math.unit(1100000, "kg"),
  55844. name: "Side",
  55845. image: {
  55846. source: "./media/characters/licos/taur.svg",
  55847. extra: 1158/1091,
  55848. bottom: 80/1238
  55849. },
  55850. form: "taur",
  55851. default: true
  55852. },
  55853. },
  55854. [
  55855. {
  55856. name: "Normal",
  55857. height: math.unit(4, "meters"),
  55858. default: true,
  55859. form: "anthro"
  55860. },
  55861. {
  55862. name: "Normal",
  55863. height: math.unit(20, "meters"),
  55864. default: true,
  55865. form: "taur"
  55866. },
  55867. ],
  55868. {
  55869. "anthro": {
  55870. name: "Anthro",
  55871. default: true
  55872. },
  55873. "taur": {
  55874. name: "Taur",
  55875. },
  55876. }
  55877. ))
  55878. characterMakers.push(() => makeCharacter(
  55879. { name: "Theo (Monkey)", species: ["monkey"], tags: ["anthro"] },
  55880. {
  55881. front: {
  55882. height: math.unit(10 + 3/12, "feet"),
  55883. name: "Front",
  55884. image: {
  55885. source: "./media/characters/theo-monkey/front.svg",
  55886. extra: 1735/1658,
  55887. bottom: 73/1808
  55888. }
  55889. },
  55890. back: {
  55891. height: math.unit(10 + 3/12, "feet"),
  55892. name: "Back",
  55893. image: {
  55894. source: "./media/characters/theo-monkey/back.svg",
  55895. extra: 1742/1664,
  55896. bottom: 33/1775
  55897. }
  55898. },
  55899. head: {
  55900. height: math.unit(2.29, "feet"),
  55901. name: "Head",
  55902. image: {
  55903. source: "./media/characters/theo-monkey/head.svg"
  55904. }
  55905. },
  55906. handPalm: {
  55907. height: math.unit(1.73, "feet"),
  55908. name: "Hand (Palm)",
  55909. image: {
  55910. source: "./media/characters/theo-monkey/hand-palm.svg"
  55911. }
  55912. },
  55913. handBack: {
  55914. height: math.unit(1.63, "feet"),
  55915. name: "Hand (Back)",
  55916. image: {
  55917. source: "./media/characters/theo-monkey/hand-back.svg"
  55918. }
  55919. },
  55920. footSole: {
  55921. height: math.unit(2.15, "feet"),
  55922. name: "Foot (Sole)",
  55923. image: {
  55924. source: "./media/characters/theo-monkey/foot-sole.svg"
  55925. }
  55926. },
  55927. footSide: {
  55928. height: math.unit(1.6, "feet"),
  55929. name: "Foot (Side)",
  55930. image: {
  55931. source: "./media/characters/theo-monkey/foot-side.svg"
  55932. }
  55933. },
  55934. },
  55935. [
  55936. {
  55937. name: "Normal",
  55938. height: math.unit(10 + 3/12, "feet"),
  55939. default: true
  55940. },
  55941. ]
  55942. ))
  55943. characterMakers.push(() => makeCharacter(
  55944. { name: "Brook", species: ["serval"], tags: ["anthro"] },
  55945. {
  55946. front: {
  55947. height: math.unit(11, "feet"),
  55948. weight: math.unit(3000, "lb"),
  55949. preyCapacity: math.unit(10, "people"),
  55950. name: "Front",
  55951. image: {
  55952. source: "./media/characters/brook/front.svg",
  55953. extra: 909/835,
  55954. bottom: 108/1017
  55955. }
  55956. },
  55957. back: {
  55958. height: math.unit(11, "feet"),
  55959. weight: math.unit(3000, "lb"),
  55960. preyCapacity: math.unit(10, "people"),
  55961. name: "Back",
  55962. image: {
  55963. source: "./media/characters/brook/back.svg",
  55964. extra: 976/916,
  55965. bottom: 34/1010
  55966. }
  55967. },
  55968. backAlt: {
  55969. height: math.unit(11, "feet"),
  55970. weight: math.unit(3000, "lb"),
  55971. preyCapacity: math.unit(10, "people"),
  55972. name: "Back (Alt)",
  55973. image: {
  55974. source: "./media/characters/brook/back-alt.svg",
  55975. extra: 1283/1213,
  55976. bottom: 35/1318
  55977. }
  55978. },
  55979. bust: {
  55980. height: math.unit(9.0859030837, "feet"),
  55981. weight: math.unit(3000, "lb"),
  55982. preyCapacity: math.unit(10, "people"),
  55983. name: "Bust",
  55984. image: {
  55985. source: "./media/characters/brook/bust.svg",
  55986. extra: 2043/1923,
  55987. bottom: 0/2043
  55988. }
  55989. },
  55990. },
  55991. [
  55992. {
  55993. name: "Small",
  55994. height: math.unit(11, "feet"),
  55995. default: true
  55996. },
  55997. {
  55998. name: "Towering",
  55999. height: math.unit(5, "km")
  56000. },
  56001. {
  56002. name: "Enormous",
  56003. height: math.unit(25, "earths")
  56004. },
  56005. ]
  56006. ))
  56007. characterMakers.push(() => makeCharacter(
  56008. { name: "Squishi", species: ["swampert"], tags: ["anthro"] },
  56009. {
  56010. front: {
  56011. height: math.unit(4, "feet"),
  56012. weight: math.unit(150, "lb"),
  56013. name: "Front",
  56014. image: {
  56015. source: "./media/characters/squishi/front.svg",
  56016. extra: 1428/1271,
  56017. bottom: 30/1458
  56018. },
  56019. extraAttributes: {
  56020. "pawSize": {
  56021. name: "Paw Size",
  56022. power: 1,
  56023. type: "length",
  56024. base: math.unit(14, "ShoeSizeMensUS"),
  56025. defaultUnit: "ShoeSizeMensUS"
  56026. },
  56027. }
  56028. },
  56029. side: {
  56030. height: math.unit(4, "feet"),
  56031. weight: math.unit(150, "lb"),
  56032. name: "Side",
  56033. image: {
  56034. source: "./media/characters/squishi/side.svg",
  56035. extra: 1428/1271,
  56036. bottom: 30/1458
  56037. },
  56038. extraAttributes: {
  56039. "pawSize": {
  56040. name: "Paw Size",
  56041. power: 1,
  56042. type: "length",
  56043. base: math.unit(14, "ShoeSizeMensUS"),
  56044. defaultUnit: "ShoeSizeMensUS"
  56045. },
  56046. }
  56047. },
  56048. back: {
  56049. height: math.unit(4, "feet"),
  56050. weight: math.unit(150, "lb"),
  56051. name: "Back",
  56052. image: {
  56053. source: "./media/characters/squishi/back.svg",
  56054. extra: 1428/1271,
  56055. bottom: 30/1458
  56056. },
  56057. extraAttributes: {
  56058. "pawSize": {
  56059. name: "Paw Size",
  56060. power: 1,
  56061. type: "length",
  56062. base: math.unit(14, "ShoeSizeMensUS"),
  56063. defaultUnit: "ShoeSizeMensUS"
  56064. },
  56065. }
  56066. },
  56067. },
  56068. [
  56069. {
  56070. name: "Normal",
  56071. height: math.unit(4, "feet"),
  56072. default: true
  56073. },
  56074. ]
  56075. ))
  56076. characterMakers.push(() => makeCharacter(
  56077. { name: "Vincent Vasroc", species: ["red-fox"], tags: ["anthro"] },
  56078. {
  56079. front: {
  56080. height: math.unit(7 + 8/12, "feet"),
  56081. weight: math.unit(333, "lb"),
  56082. name: "Front",
  56083. image: {
  56084. source: "./media/characters/vincent-vasroc/front.svg",
  56085. extra: 1962/1860,
  56086. bottom: 41/2003
  56087. }
  56088. },
  56089. back: {
  56090. height: math.unit(7 + 8/12, "feet"),
  56091. weight: math.unit(333, "lb"),
  56092. name: "Back",
  56093. image: {
  56094. source: "./media/characters/vincent-vasroc/back.svg",
  56095. extra: 1952/1815,
  56096. bottom: 33/1985
  56097. }
  56098. },
  56099. paw: {
  56100. height: math.unit(1.24, "feet"),
  56101. name: "Paw",
  56102. image: {
  56103. source: "./media/characters/vincent-vasroc/paw.svg"
  56104. }
  56105. },
  56106. ear: {
  56107. height: math.unit(0.75, "feet"),
  56108. name: "Ear",
  56109. image: {
  56110. source: "./media/characters/vincent-vasroc/ear.svg"
  56111. }
  56112. },
  56113. },
  56114. [
  56115. {
  56116. name: "Nano",
  56117. height: math.unit(92, "micrometers")
  56118. },
  56119. {
  56120. name: "Normal",
  56121. height: math.unit(7 + 8/12, "feet"),
  56122. default: true
  56123. },
  56124. ]
  56125. ))
  56126. characterMakers.push(() => makeCharacter(
  56127. { name: "Ru-Kahn", species: ["fennec-fox"], tags: ["anthro"] },
  56128. {
  56129. frontNsfw: {
  56130. height: math.unit(40, "feet"),
  56131. weight: math.unit(58, "tons"),
  56132. name: "Front (NSFW)",
  56133. image: {
  56134. source: "./media/characters/ru-kahn/front-nsfw.svg",
  56135. extra: 1265/965,
  56136. bottom: 155/1420
  56137. }
  56138. },
  56139. frontSfw: {
  56140. height: math.unit(40, "feet"),
  56141. weight: math.unit(58, "tons"),
  56142. name: "Front (SFW)",
  56143. image: {
  56144. source: "./media/characters/ru-kahn/front-sfw.svg",
  56145. extra: 1265/965,
  56146. bottom: 80/1345
  56147. }
  56148. },
  56149. },
  56150. [
  56151. {
  56152. name: "Small",
  56153. height: math.unit(4, "feet")
  56154. },
  56155. {
  56156. name: "Normal",
  56157. height: math.unit(40, "feet"),
  56158. default: true
  56159. },
  56160. {
  56161. name: "Macro",
  56162. height: math.unit(400, "feet")
  56163. },
  56164. ]
  56165. ))
  56166. characterMakers.push(() => makeCharacter(
  56167. { name: "Sylvie LaForge", species: ["alligator"], tags: ["anthro"] },
  56168. {
  56169. frontNude: {
  56170. height: math.unit(6 + 5/12, "feet"),
  56171. name: "Front (Nude)",
  56172. image: {
  56173. source: "./media/characters/sylvie-laforge/front-nude.svg",
  56174. extra: 1369/1366,
  56175. bottom: 68/1437
  56176. }
  56177. },
  56178. frontDressed: {
  56179. height: math.unit(6 + 5/12, "feet"),
  56180. name: "Front (Dressed)",
  56181. image: {
  56182. source: "./media/characters/sylvie-laforge/front-dressed.svg",
  56183. extra: 1369/1366,
  56184. bottom: 68/1437
  56185. }
  56186. },
  56187. },
  56188. [
  56189. {
  56190. name: "Normal",
  56191. height: math.unit(6 + 5/12, "feet"),
  56192. default: true
  56193. },
  56194. {
  56195. name: "Maximum",
  56196. height: math.unit(1930, "feet")
  56197. },
  56198. ]
  56199. ))
  56200. characterMakers.push(() => makeCharacter(
  56201. { name: "Kaja", species: ["zoroark"], tags: ["anthro"] },
  56202. {
  56203. front: {
  56204. height: math.unit(5 + 6/12, "feet"),
  56205. name: "Front",
  56206. image: {
  56207. source: "./media/characters/kaja/front.svg",
  56208. extra: 1874/1514,
  56209. bottom: 117/1991
  56210. }
  56211. },
  56212. },
  56213. [
  56214. {
  56215. name: "Normal",
  56216. height: math.unit(5 + 6/12, "feet"),
  56217. default: true
  56218. },
  56219. ]
  56220. ))
  56221. characterMakers.push(() => makeCharacter(
  56222. { name: "Mark Smith", species: ["husky"], tags: ["anthro"] },
  56223. {
  56224. front: {
  56225. height: math.unit(5 + 9/12, "feet"),
  56226. weight: math.unit(200, "lb"),
  56227. name: "Front",
  56228. image: {
  56229. source: "./media/characters/mark-smith/front.svg",
  56230. extra: 1004/943,
  56231. bottom: 58/1062
  56232. }
  56233. },
  56234. back: {
  56235. height: math.unit(5 + 9/12, "feet"),
  56236. weight: math.unit(200, "lb"),
  56237. name: "Back",
  56238. image: {
  56239. source: "./media/characters/mark-smith/back.svg",
  56240. extra: 1023/953,
  56241. bottom: 24/1047
  56242. }
  56243. },
  56244. head: {
  56245. height: math.unit(1.82, "feet"),
  56246. name: "Head",
  56247. image: {
  56248. source: "./media/characters/mark-smith/head.svg"
  56249. }
  56250. },
  56251. hand: {
  56252. height: math.unit(1.4, "feet"),
  56253. name: "Hand",
  56254. image: {
  56255. source: "./media/characters/mark-smith/hand.svg"
  56256. }
  56257. },
  56258. paw: {
  56259. height: math.unit(1.69, "feet"),
  56260. name: "Paw",
  56261. image: {
  56262. source: "./media/characters/mark-smith/paw.svg"
  56263. }
  56264. },
  56265. },
  56266. [
  56267. {
  56268. name: "Micro",
  56269. height: math.unit(0.25, "inches")
  56270. },
  56271. {
  56272. name: "Normal",
  56273. height: math.unit(5 + 9/12, "feet"),
  56274. default: true
  56275. },
  56276. {
  56277. name: "Macro",
  56278. height: math.unit(500, "feet")
  56279. },
  56280. ]
  56281. ))
  56282. characterMakers.push(() => makeCharacter(
  56283. { name: "Rebecca 'Becky' Houston", species: ["gryphon"], tags: ["anthro"] },
  56284. {
  56285. frontNude: {
  56286. height: math.unit(6, "feet"),
  56287. name: "Front (Nude)",
  56288. image: {
  56289. source: "./media/characters/rebecca-becky-houston/front-nude.svg",
  56290. extra: 1384/1321,
  56291. bottom: 57/1441
  56292. }
  56293. },
  56294. frontDressed: {
  56295. height: math.unit(6, "feet"),
  56296. name: "Front (Dressed)",
  56297. image: {
  56298. source: "./media/characters/rebecca-becky-houston/front-dressed.svg",
  56299. extra: 1384/1321,
  56300. bottom: 57/1441
  56301. }
  56302. },
  56303. },
  56304. [
  56305. {
  56306. name: "Normal",
  56307. height: math.unit(6, "feet"),
  56308. default: true
  56309. },
  56310. {
  56311. name: "Maximum",
  56312. height: math.unit(1776, "feet")
  56313. },
  56314. ]
  56315. ))
  56316. characterMakers.push(() => makeCharacter(
  56317. { name: "Devos", species: ["dragon"], tags: ["feral"] },
  56318. {
  56319. front: {
  56320. height: math.unit(2 + 4/12, "feet"),
  56321. weight: math.unit(350, "lb"),
  56322. name: "Front",
  56323. image: {
  56324. source: "./media/characters/devos/front.svg",
  56325. extra: 958/852,
  56326. bottom: 143/1101
  56327. }
  56328. },
  56329. },
  56330. [
  56331. {
  56332. name: "Base",
  56333. height: math.unit(2 + 4/12, "feet"),
  56334. default: true
  56335. },
  56336. ]
  56337. ))
  56338. characterMakers.push(() => makeCharacter(
  56339. { name: "Hiveheart", species: ["sliver"], tags: ["anthro"] },
  56340. {
  56341. front: {
  56342. height: math.unit(9 + 2/12, "feet"),
  56343. name: "Front",
  56344. image: {
  56345. source: "./media/characters/hiveheart/front.svg",
  56346. extra: 394/364,
  56347. bottom: 65/459
  56348. }
  56349. },
  56350. back: {
  56351. height: math.unit(9 + 2/12, "feet"),
  56352. name: "Back",
  56353. image: {
  56354. source: "./media/characters/hiveheart/back.svg",
  56355. extra: 374/357,
  56356. bottom: 63/437
  56357. }
  56358. },
  56359. },
  56360. [
  56361. {
  56362. name: "Base",
  56363. height: math.unit(9 + 2/12, "feet"),
  56364. default: true
  56365. },
  56366. ]
  56367. ))
  56368. characterMakers.push(() => makeCharacter(
  56369. { name: "Bryn", species: ["moth"], tags: ["anthro"] },
  56370. {
  56371. front: {
  56372. height: math.unit(2.5, "inches"),
  56373. weight: math.unit(0.6, "oz"),
  56374. name: "Front",
  56375. image: {
  56376. source: "./media/characters/bryn/front.svg",
  56377. extra: 1480/1205,
  56378. bottom: 27/1507
  56379. }
  56380. },
  56381. back: {
  56382. height: math.unit(2.5, "inches"),
  56383. weight: math.unit(0.6, "oz"),
  56384. name: "Back",
  56385. image: {
  56386. source: "./media/characters/bryn/back.svg",
  56387. extra: 1475/1201,
  56388. bottom: 39/1514
  56389. }
  56390. },
  56391. foot: {
  56392. height: math.unit(0.4, "inches"),
  56393. name: "Foot",
  56394. image: {
  56395. source: "./media/characters/bryn/foot.svg"
  56396. }
  56397. },
  56398. },
  56399. [
  56400. {
  56401. name: "Normal",
  56402. height: math.unit(2.5, "inches"),
  56403. default: true
  56404. },
  56405. ]
  56406. ))
  56407. characterMakers.push(() => makeCharacter(
  56408. { name: "Delta", species: ["dragon"], tags: ["feral"] },
  56409. {
  56410. side: {
  56411. height: math.unit(7, "feet"),
  56412. weight: math.unit(657, "kg"),
  56413. name: "Side",
  56414. image: {
  56415. source: "./media/characters/delta/side.svg",
  56416. extra: 781/212,
  56417. bottom: 7/788
  56418. },
  56419. extraAttributes: {
  56420. "wingspan": {
  56421. name: "Wingspan",
  56422. power: 1,
  56423. type: "length",
  56424. base: math.unit(48, "feet")
  56425. },
  56426. "length": {
  56427. name: "Length",
  56428. power: 1,
  56429. type: "length",
  56430. base: math.unit(21, "feet")
  56431. },
  56432. "pawSize": {
  56433. name: "Paw Size",
  56434. power: 2,
  56435. type: "area",
  56436. base: math.unit(1.5*1.4, "feet^2")
  56437. },
  56438. }
  56439. },
  56440. },
  56441. [
  56442. {
  56443. name: "Normal",
  56444. height: math.unit(6, "feet"),
  56445. default: true
  56446. },
  56447. ]
  56448. ))
  56449. characterMakers.push(() => makeCharacter(
  56450. { name: "Pyrow", species: ["sergix"], tags: ["anthro"] },
  56451. {
  56452. front: {
  56453. height: math.unit(6, "feet"),
  56454. name: "Front",
  56455. image: {
  56456. source: "./media/characters/pyrow/front.svg",
  56457. extra: 513/486,
  56458. bottom: 14/527
  56459. }
  56460. },
  56461. frontWing: {
  56462. height: math.unit(6, "feet"),
  56463. name: "Front (Wing)",
  56464. image: {
  56465. source: "./media/characters/pyrow/front-wing.svg",
  56466. extra: 539/383,
  56467. bottom: 20/559
  56468. }
  56469. },
  56470. back: {
  56471. height: math.unit(6, "feet"),
  56472. name: "Back",
  56473. image: {
  56474. source: "./media/characters/pyrow/back.svg",
  56475. extra: 500/473,
  56476. bottom: 9/509
  56477. }
  56478. },
  56479. },
  56480. [
  56481. {
  56482. name: "Normal",
  56483. height: math.unit(6, "feet"),
  56484. default: true
  56485. },
  56486. ]
  56487. ))
  56488. characterMakers.push(() => makeCharacter(
  56489. { name: "Velikan", species: ["behemoth"], tags: ["anthro"] },
  56490. {
  56491. front: {
  56492. height: math.unit(5, "meters"),
  56493. weight: math.unit(3, "tonnes"),
  56494. name: "Front",
  56495. image: {
  56496. source: "./media/characters/velikan/front.svg",
  56497. extra: 867/744,
  56498. bottom: 71/938
  56499. },
  56500. extraAttributes: {
  56501. "shoeSize": {
  56502. name: "Shoe Size",
  56503. power: 1,
  56504. type: "length",
  56505. base: math.unit(135, "ShoeSizeUK"),
  56506. defaultUnit: "ShoeSizeUK"
  56507. },
  56508. }
  56509. },
  56510. },
  56511. [
  56512. {
  56513. name: "Normal",
  56514. height: math.unit(5, "meters"),
  56515. default: true
  56516. },
  56517. {
  56518. name: "Macro",
  56519. height: math.unit(1, "km")
  56520. },
  56521. {
  56522. name: "Mega Macro",
  56523. height: math.unit(100, "km")
  56524. },
  56525. {
  56526. name: "Giga Macro",
  56527. height: math.unit(2, "megameters")
  56528. },
  56529. {
  56530. name: "Planetary",
  56531. height: math.unit(22, "megameters")
  56532. },
  56533. {
  56534. name: "Solar",
  56535. height: math.unit(8, "gigameters")
  56536. },
  56537. {
  56538. name: "Cosmic",
  56539. height: math.unit(10, "zettameters")
  56540. },
  56541. {
  56542. name: "Omni",
  56543. height: math.unit(9e260, "multiverses")
  56544. },
  56545. ]
  56546. ))
  56547. characterMakers.push(() => makeCharacter(
  56548. { name: "Sabiki", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  56549. {
  56550. front: {
  56551. height: math.unit(4 + 3/12, "feet"),
  56552. weight: math.unit(90, "lb"),
  56553. name: "Front",
  56554. image: {
  56555. source: "./media/characters/sabiki/front.svg",
  56556. extra: 1662/1423,
  56557. bottom: 65/1727
  56558. }
  56559. },
  56560. },
  56561. [
  56562. {
  56563. name: "Normal",
  56564. height: math.unit(4 + 3/12, "feet"),
  56565. default: true
  56566. },
  56567. ]
  56568. ))
  56569. characterMakers.push(() => makeCharacter(
  56570. { name: "Carmel", species: ["ant"], tags: ["anthro"] },
  56571. {
  56572. frontSfw: {
  56573. height: math.unit(2, "mm"),
  56574. name: "Front (SFW)",
  56575. image: {
  56576. source: "./media/characters/carmel/front-sfw.svg",
  56577. extra: 1131/1006,
  56578. bottom: 66/1197
  56579. }
  56580. },
  56581. frontNsfw: {
  56582. height: math.unit(2, "mm"),
  56583. name: "Front (NSFW)",
  56584. image: {
  56585. source: "./media/characters/carmel/front-nsfw.svg",
  56586. extra: 1131/1006,
  56587. bottom: 66/1197
  56588. }
  56589. },
  56590. foot: {
  56591. height: math.unit(0.3, "mm"),
  56592. name: "Foot",
  56593. image: {
  56594. source: "./media/characters/carmel/foot.svg"
  56595. }
  56596. },
  56597. tongue: {
  56598. height: math.unit(0.71, "mm"),
  56599. name: "Tongue",
  56600. image: {
  56601. source: "./media/characters/carmel/tongue.svg"
  56602. }
  56603. },
  56604. dick: {
  56605. height: math.unit(0.085, "mm"),
  56606. name: "Dick",
  56607. image: {
  56608. source: "./media/characters/carmel/dick.svg"
  56609. }
  56610. },
  56611. },
  56612. [
  56613. {
  56614. name: "Micro",
  56615. height: math.unit(2, "mm"),
  56616. default: true
  56617. },
  56618. {
  56619. name: "Normal",
  56620. height: math.unit(4 + 8/12, "feet")
  56621. },
  56622. {
  56623. name: "Mega Macro",
  56624. height: math.unit(250, "feet")
  56625. },
  56626. {
  56627. name: "BIGGER",
  56628. height: math.unit(1000, "feet")
  56629. },
  56630. {
  56631. name: "BIGGEST",
  56632. height: math.unit(2, "miles")
  56633. },
  56634. ]
  56635. ))
  56636. characterMakers.push(() => makeCharacter(
  56637. { name: "Tamani", species: ["lion"], tags: ["anthro", "feral"] },
  56638. {
  56639. front: {
  56640. height: math.unit(6.5, "feet"),
  56641. weight: math.unit(198, "lb"),
  56642. name: "Front",
  56643. image: {
  56644. source: "./media/characters/tamani/anthro.svg",
  56645. extra: 930/890,
  56646. bottom: 34/964
  56647. },
  56648. form: "anthro",
  56649. default: true
  56650. },
  56651. side: {
  56652. height: math.unit(6, "feet"),
  56653. weight: math.unit(198*2, "lb"),
  56654. name: "Side",
  56655. image: {
  56656. source: "./media/characters/tamani/feral.svg",
  56657. extra: 559/519,
  56658. bottom: 43/602
  56659. },
  56660. form: "feral"
  56661. },
  56662. },
  56663. [
  56664. {
  56665. name: "Normal",
  56666. height: math.unit(6.5, "feet"),
  56667. default: true,
  56668. form: "anthro"
  56669. },
  56670. {
  56671. name: "Normal",
  56672. height: math.unit(6, "feet"),
  56673. default: true,
  56674. form: "feral"
  56675. },
  56676. ],
  56677. {
  56678. "anthro": {
  56679. name: "Anthro",
  56680. default: true
  56681. },
  56682. "feral": {
  56683. name: "Feral",
  56684. },
  56685. }
  56686. ))
  56687. characterMakers.push(() => makeCharacter(
  56688. { name: "Dex", species: ["eastern-cottontail-rabbit"], tags: ["anthro"] },
  56689. {
  56690. front: {
  56691. height: math.unit(4 + 1/12, "feet"),
  56692. weight: math.unit(114, "lb"),
  56693. name: "Front",
  56694. image: {
  56695. source: "./media/characters/dex/front.svg",
  56696. extra: 787/680,
  56697. bottom: 18/805
  56698. }
  56699. },
  56700. side: {
  56701. height: math.unit(4 + 1/12, "feet"),
  56702. weight: math.unit(114, "lb"),
  56703. name: "Side",
  56704. image: {
  56705. source: "./media/characters/dex/side.svg",
  56706. extra: 785/680,
  56707. bottom: 12/797
  56708. }
  56709. },
  56710. back: {
  56711. height: math.unit(4 + 1/12, "feet"),
  56712. weight: math.unit(114, "lb"),
  56713. name: "Back",
  56714. image: {
  56715. source: "./media/characters/dex/back.svg",
  56716. extra: 785/681,
  56717. bottom: 17/802
  56718. }
  56719. },
  56720. loungewear: {
  56721. height: math.unit(4 + 1/12, "feet"),
  56722. weight: math.unit(114, "lb"),
  56723. name: "Loungewear",
  56724. image: {
  56725. source: "./media/characters/dex/loungewear.svg",
  56726. extra: 787/680,
  56727. bottom: 18/805
  56728. }
  56729. },
  56730. workout: {
  56731. height: math.unit(4 + 1/12, "feet"),
  56732. weight: math.unit(114, "lb"),
  56733. name: "Workout",
  56734. image: {
  56735. source: "./media/characters/dex/workout.svg",
  56736. extra: 787/680,
  56737. bottom: 18/805
  56738. }
  56739. },
  56740. schoolUniform: {
  56741. height: math.unit(4 + 1/12, "feet"),
  56742. weight: math.unit(114, "lb"),
  56743. name: "School-uniform",
  56744. image: {
  56745. source: "./media/characters/dex/school-uniform.svg",
  56746. extra: 787/680,
  56747. bottom: 18/805
  56748. }
  56749. },
  56750. maw: {
  56751. height: math.unit(0.55, "feet"),
  56752. name: "Maw",
  56753. image: {
  56754. source: "./media/characters/dex/maw.svg"
  56755. }
  56756. },
  56757. paw: {
  56758. height: math.unit(0.87, "feet"),
  56759. name: "Paw",
  56760. image: {
  56761. source: "./media/characters/dex/paw.svg"
  56762. }
  56763. },
  56764. bust: {
  56765. height: math.unit(1.67, "feet"),
  56766. name: "Bust",
  56767. image: {
  56768. source: "./media/characters/dex/bust.svg"
  56769. }
  56770. },
  56771. },
  56772. [
  56773. {
  56774. name: "Normal",
  56775. height: math.unit(4 + 1/12, "feet"),
  56776. default: true
  56777. },
  56778. ]
  56779. ))
  56780. characterMakers.push(() => makeCharacter(
  56781. { name: "Silke", species: ["sylveon"], tags: ["anthro"] },
  56782. {
  56783. front: {
  56784. height: math.unit(4 + 3/12, "feet"),
  56785. weight: math.unit(60, "lb"),
  56786. name: "Front",
  56787. image: {
  56788. source: "./media/characters/silke/front.svg",
  56789. extra: 1334/1122,
  56790. bottom: 21/1355
  56791. }
  56792. },
  56793. back: {
  56794. height: math.unit(4 + 3/12, "feet"),
  56795. weight: math.unit(60, "lb"),
  56796. name: "Back",
  56797. image: {
  56798. source: "./media/characters/silke/back.svg",
  56799. extra: 1328/1092,
  56800. bottom: 16/1344
  56801. }
  56802. },
  56803. dressed: {
  56804. height: math.unit(4 + 3/12, "feet"),
  56805. weight: math.unit(60, "lb"),
  56806. name: "Dressed",
  56807. image: {
  56808. source: "./media/characters/silke/dressed.svg",
  56809. extra: 1334/1122,
  56810. bottom: 43/1377
  56811. }
  56812. },
  56813. },
  56814. [
  56815. {
  56816. name: "Normal",
  56817. height: math.unit(4 + 3/12, "feet"),
  56818. default: true
  56819. },
  56820. ]
  56821. ))
  56822. characterMakers.push(() => makeCharacter(
  56823. { name: "Wireshark", species: ["thresher-shark"], tags: ["anthro"] },
  56824. {
  56825. front: {
  56826. height: math.unit(1.58, "meters"),
  56827. weight: math.unit(47, "kg"),
  56828. name: "Front",
  56829. image: {
  56830. source: "./media/characters/wireshark/front.svg",
  56831. extra: 883/838,
  56832. bottom: 66/949
  56833. }
  56834. },
  56835. },
  56836. [
  56837. {
  56838. name: "Normal",
  56839. height: math.unit(1.58, "meters"),
  56840. default: true
  56841. },
  56842. ]
  56843. ))
  56844. characterMakers.push(() => makeCharacter(
  56845. { name: "Gallagher", species: ["shark", "cyborg", "ai"], tags: ["anthro"] },
  56846. {
  56847. front: {
  56848. height: math.unit(6, "meters"),
  56849. weight: math.unit(15000, "kg"),
  56850. name: "Front",
  56851. image: {
  56852. source: "./media/characters/gallagher/front.svg",
  56853. extra: 532/493,
  56854. bottom: 0/532
  56855. }
  56856. },
  56857. },
  56858. [
  56859. {
  56860. name: "Normal",
  56861. height: math.unit(6, "meters"),
  56862. default: true
  56863. },
  56864. ]
  56865. ))
  56866. characterMakers.push(() => makeCharacter(
  56867. { name: "Alice", species: ["black-tip-reef-shark"], tags: ["anthro"] },
  56868. {
  56869. front: {
  56870. height: math.unit(2.4, "meters"),
  56871. weight: math.unit(270, "kg"),
  56872. name: "Front",
  56873. image: {
  56874. source: "./media/characters/alice/front.svg",
  56875. extra: 950/900,
  56876. bottom: 36/986
  56877. }
  56878. },
  56879. side: {
  56880. height: math.unit(2.4, "meters"),
  56881. weight: math.unit(270, "kg"),
  56882. name: "Side",
  56883. image: {
  56884. source: "./media/characters/alice/side.svg",
  56885. extra: 921/876,
  56886. bottom: 19/940
  56887. }
  56888. },
  56889. dressed: {
  56890. height: math.unit(2.4, "meters"),
  56891. weight: math.unit(270, "kg"),
  56892. name: "Dressed",
  56893. image: {
  56894. source: "./media/characters/alice/dressed.svg",
  56895. extra: 905/850,
  56896. bottom: 81/986
  56897. }
  56898. },
  56899. fishnet: {
  56900. height: math.unit(2.4, "meters"),
  56901. weight: math.unit(270, "kg"),
  56902. name: "Fishnet",
  56903. image: {
  56904. source: "./media/characters/alice/fishnet.svg",
  56905. extra: 905/850,
  56906. bottom: 81/986
  56907. }
  56908. },
  56909. },
  56910. [
  56911. {
  56912. name: "Normal",
  56913. height: math.unit(2.4, "meters"),
  56914. default: true
  56915. },
  56916. ]
  56917. ))
  56918. characterMakers.push(() => makeCharacter(
  56919. { name: "Fio", species: ["deer"], tags: ["anthro"] },
  56920. {
  56921. front: {
  56922. height: math.unit(175.25, "feet"),
  56923. name: "Front",
  56924. image: {
  56925. source: "./media/characters/fio/front.svg",
  56926. extra: 1883/1591,
  56927. bottom: 34/1917
  56928. }
  56929. },
  56930. },
  56931. [
  56932. {
  56933. name: "Normal",
  56934. height: math.unit(175.25, "cm"),
  56935. default: true
  56936. },
  56937. ]
  56938. ))
  56939. characterMakers.push(() => makeCharacter(
  56940. { name: "Hass", species: ["quetzalcoatlus-northropi"], tags: ["feral"] },
  56941. {
  56942. side: {
  56943. height: math.unit(6, "meters"),
  56944. weight: math.unit(3400, "kg"),
  56945. preyCapacity: math.unit(1700, "liters"),
  56946. name: "Side",
  56947. image: {
  56948. source: "./media/characters/hass/side.svg",
  56949. extra: 1058/997,
  56950. bottom: 177/1235
  56951. }
  56952. },
  56953. feeding: {
  56954. height: math.unit(6*0.63, "meters"),
  56955. weight: math.unit(3400, "kg"),
  56956. preyCapacity: math.unit(1700, "liters"),
  56957. name: "Feeding",
  56958. image: {
  56959. source: "./media/characters/hass/feeding.svg",
  56960. extra: 689/579,
  56961. bottom: 146/835
  56962. }
  56963. },
  56964. guts: {
  56965. height: math.unit(6, "meters"),
  56966. weight: math.unit(3400, "kg"),
  56967. name: "Guts",
  56968. image: {
  56969. source: "./media/characters/hass/guts.svg",
  56970. extra: 1223/1198,
  56971. bottom: 182/1405
  56972. }
  56973. },
  56974. dickFront: {
  56975. height: math.unit(1.4, "meters"),
  56976. name: "Dick (Front)",
  56977. image: {
  56978. source: "./media/characters/hass/dick-front.svg"
  56979. }
  56980. },
  56981. dickSide: {
  56982. height: math.unit(1.3, "meters"),
  56983. name: "Dick (Side)",
  56984. image: {
  56985. source: "./media/characters/hass/dick-side.svg"
  56986. }
  56987. },
  56988. dickBack: {
  56989. height: math.unit(1.4, "meters"),
  56990. name: "Dick (Back)",
  56991. image: {
  56992. source: "./media/characters/hass/dick-back.svg"
  56993. }
  56994. },
  56995. },
  56996. [
  56997. {
  56998. name: "Normal",
  56999. height: math.unit(6, "meters"),
  57000. default: true
  57001. },
  57002. ]
  57003. ))
  57004. characterMakers.push(() => makeCharacter(
  57005. { name: "Hickory Finnegan", species: ["fennec-fox"], tags: ["anthro"] },
  57006. {
  57007. front: {
  57008. height: math.unit(4, "feet"),
  57009. weight: math.unit(60, "lb"),
  57010. name: "Front",
  57011. image: {
  57012. source: "./media/characters/hickory-finnegan/front.svg",
  57013. extra: 444/411,
  57014. bottom: 10/454
  57015. }
  57016. },
  57017. side: {
  57018. height: math.unit(4, "feet"),
  57019. weight: math.unit(60, "lb"),
  57020. name: "Side",
  57021. image: {
  57022. source: "./media/characters/hickory-finnegan/side.svg",
  57023. extra: 444/411,
  57024. bottom: 10/454
  57025. }
  57026. },
  57027. back: {
  57028. height: math.unit(4, "feet"),
  57029. weight: math.unit(60, "lb"),
  57030. name: "Back",
  57031. image: {
  57032. source: "./media/characters/hickory-finnegan/back.svg",
  57033. extra: 444/411,
  57034. bottom: 10/454
  57035. }
  57036. },
  57037. },
  57038. [
  57039. {
  57040. name: "Normal",
  57041. height: math.unit(4, "feet"),
  57042. default: true
  57043. },
  57044. ]
  57045. ))
  57046. characterMakers.push(() => makeCharacter(
  57047. { name: "Robin Phox", species: ["snivy", "yoshi", "delphox", "mienshao", "inteleon", "reshiram", "samurott"], tags: ["anthro"] },
  57048. {
  57049. snivy_front: {
  57050. height: math.unit(2, "feet"),
  57051. weight: math.unit(17.9, "lb"),
  57052. name: "Front",
  57053. image: {
  57054. source: "./media/characters/robin-phox/snivy-front.svg",
  57055. extra: 569/504,
  57056. bottom: 33/602
  57057. },
  57058. form: "snivy",
  57059. default: true
  57060. },
  57061. snivy_frontNsfw: {
  57062. height: math.unit(2, "feet"),
  57063. weight: math.unit(17.9, "lb"),
  57064. name: "Front (NSFW)",
  57065. image: {
  57066. source: "./media/characters/robin-phox/snivy-front-nsfw.svg",
  57067. extra: 569/504,
  57068. bottom: 33/602
  57069. },
  57070. form: "snivy",
  57071. },
  57072. snivy_back: {
  57073. height: math.unit(2, "feet"),
  57074. weight: math.unit(17.9, "lb"),
  57075. name: "Back",
  57076. image: {
  57077. source: "./media/characters/robin-phox/snivy-back.svg",
  57078. extra: 577/508,
  57079. bottom: 21/598
  57080. },
  57081. form: "snivy",
  57082. },
  57083. snivy_foot: {
  57084. height: math.unit(0.68, "feet"),
  57085. name: "Foot",
  57086. image: {
  57087. source: "./media/characters/robin-phox/snivy-foot.svg"
  57088. },
  57089. form: "snivy",
  57090. },
  57091. snivy_sole: {
  57092. height: math.unit(0.68, "feet"),
  57093. name: "Sole",
  57094. image: {
  57095. source: "./media/characters/robin-phox/snivy-sole.svg"
  57096. },
  57097. form: "snivy",
  57098. },
  57099. yoshi_front: {
  57100. height: math.unit(6, "feet"),
  57101. weight: math.unit(150, "lb"),
  57102. name: "Front",
  57103. image: {
  57104. source: "./media/characters/robin-phox/yoshi-front.svg",
  57105. extra: 890/792,
  57106. bottom: 29/919
  57107. },
  57108. form: "yoshi",
  57109. default: true
  57110. },
  57111. yoshi_frontNsfw: {
  57112. height: math.unit(6, "feet"),
  57113. weight: math.unit(150, "lb"),
  57114. name: "Front (NSFW)",
  57115. image: {
  57116. source: "./media/characters/robin-phox/yoshi-front-nsfw.svg",
  57117. extra: 890/792,
  57118. bottom: 29/919
  57119. },
  57120. form: "yoshi",
  57121. },
  57122. yoshi_back: {
  57123. height: math.unit(6, "feet"),
  57124. weight: math.unit(150, "lb"),
  57125. name: "Back",
  57126. image: {
  57127. source: "./media/characters/robin-phox/yoshi-back.svg",
  57128. extra: 890/792,
  57129. bottom: 29/919
  57130. },
  57131. form: "yoshi",
  57132. },
  57133. yoshi_foot: {
  57134. height: math.unit(1.5, "feet"),
  57135. name: "Foot",
  57136. image: {
  57137. source: "./media/characters/robin-phox/yoshi-foot.svg"
  57138. },
  57139. form: "yoshi",
  57140. },
  57141. delphox_front: {
  57142. height: math.unit(4 + 11/12, "feet"),
  57143. weight: math.unit(86, "lb"),
  57144. name: "Front",
  57145. image: {
  57146. source: "./media/characters/robin-phox/delphox-front.svg",
  57147. extra: 1266/1069,
  57148. bottom: 32/1298
  57149. },
  57150. form: "delphox",
  57151. default: true
  57152. },
  57153. delphox_frontNsfw: {
  57154. height: math.unit(4 + 11/12, "feet"),
  57155. weight: math.unit(86, "lb"),
  57156. name: "Front (NSFW)",
  57157. image: {
  57158. source: "./media/characters/robin-phox/delphox-front-nsfw.svg",
  57159. extra: 1266/1069,
  57160. bottom: 32/1298
  57161. },
  57162. form: "delphox",
  57163. },
  57164. delphox_back: {
  57165. height: math.unit(4 + 11/12, "feet"),
  57166. weight: math.unit(86, "lb"),
  57167. name: "Back",
  57168. image: {
  57169. source: "./media/characters/robin-phox/delphox-back.svg",
  57170. extra: 1269/1083,
  57171. bottom: 15/1284
  57172. },
  57173. form: "delphox",
  57174. },
  57175. mienshao_front: {
  57176. height: math.unit(4 + 7/12, "feet"),
  57177. weight: math.unit(78.3, "lb"),
  57178. name: "Front",
  57179. image: {
  57180. source: "./media/characters/robin-phox/mienshao-front.svg",
  57181. extra: 1052/970,
  57182. bottom: 108/1160
  57183. },
  57184. form: "mienshao",
  57185. default: true
  57186. },
  57187. mienshao_frontNsfw: {
  57188. height: math.unit(4 + 7/12, "feet"),
  57189. weight: math.unit(78.3, "lb"),
  57190. name: "Front (NSFW)",
  57191. image: {
  57192. source: "./media/characters/robin-phox/mienshao-front-nsfw.svg",
  57193. extra: 1052/970,
  57194. bottom: 108/1160
  57195. },
  57196. form: "mienshao",
  57197. },
  57198. mienshao_back: {
  57199. height: math.unit(4 + 7/12, "feet"),
  57200. weight: math.unit(78.3, "lb"),
  57201. name: "Back",
  57202. image: {
  57203. source: "./media/characters/robin-phox/mienshao-back.svg",
  57204. extra: 1102/982,
  57205. bottom: 32/1134
  57206. },
  57207. form: "mienshao",
  57208. },
  57209. inteleon_front: {
  57210. height: math.unit(6 + 3/12, "feet"),
  57211. weight: math.unit(99.6, "lb"),
  57212. name: "Front",
  57213. image: {
  57214. source: "./media/characters/robin-phox/inteleon-front.svg",
  57215. extra: 910/799,
  57216. bottom: 76/986
  57217. },
  57218. form: "inteleon",
  57219. default: true
  57220. },
  57221. inteleon_frontNsfw: {
  57222. height: math.unit(6 + 3/12, "feet"),
  57223. weight: math.unit(99.6, "lb"),
  57224. name: "Front (NSFW)",
  57225. image: {
  57226. source: "./media/characters/robin-phox/inteleon-front-nsfw.svg",
  57227. extra: 910/799,
  57228. bottom: 76/986
  57229. },
  57230. form: "inteleon",
  57231. },
  57232. inteleon_back: {
  57233. height: math.unit(6 + 3/12, "feet"),
  57234. weight: math.unit(99.6, "lb"),
  57235. name: "Back",
  57236. image: {
  57237. source: "./media/characters/robin-phox/inteleon-back.svg",
  57238. extra: 907/796,
  57239. bottom: 25/932
  57240. },
  57241. form: "inteleon",
  57242. },
  57243. reshiram_front: {
  57244. height: math.unit(10 + 6/12, "feet"),
  57245. weight: math.unit(727.5, "lb"),
  57246. name: "Front",
  57247. image: {
  57248. source: "./media/characters/robin-phox/reshiram-front.svg",
  57249. extra: 1198/940,
  57250. bottom: 123/1321
  57251. },
  57252. form: "reshiram",
  57253. },
  57254. reshiram_frontNsfw: {
  57255. height: math.unit(10 + 6/12, "feet"),
  57256. weight: math.unit(727.5, "lb"),
  57257. name: "Front-nsfw",
  57258. image: {
  57259. source: "./media/characters/robin-phox/reshiram-front-nsfw.svg",
  57260. extra: 1198/940,
  57261. bottom: 123/1321
  57262. },
  57263. form: "reshiram",
  57264. },
  57265. reshiram_back: {
  57266. height: math.unit(10 + 6/12, "feet"),
  57267. weight: math.unit(727.5, "lb"),
  57268. name: "Back",
  57269. image: {
  57270. source: "./media/characters/robin-phox/reshiram-back.svg",
  57271. extra: 1024/904,
  57272. bottom: 85/1109
  57273. },
  57274. form: "reshiram",
  57275. },
  57276. samurott_front: {
  57277. height: math.unit(8, "feet"),
  57278. weight: math.unit(208.6, "lb"),
  57279. name: "Front",
  57280. image: {
  57281. source: "./media/characters/robin-phox/samurott-front.svg",
  57282. extra: 1048/984,
  57283. bottom: 100/1148
  57284. },
  57285. form: "samurott",
  57286. },
  57287. samurott_frontNsfw: {
  57288. height: math.unit(8, "feet"),
  57289. weight: math.unit(208.6, "lb"),
  57290. name: "Front-nsfw",
  57291. image: {
  57292. source: "./media/characters/robin-phox/samurott-front-nsfw.svg",
  57293. extra: 1048/984,
  57294. bottom: 100/1148
  57295. },
  57296. form: "samurott",
  57297. },
  57298. samurott_back: {
  57299. height: math.unit(8, "feet"),
  57300. weight: math.unit(208.6, "lb"),
  57301. name: "Back",
  57302. image: {
  57303. source: "./media/characters/robin-phox/samurott-back.svg",
  57304. extra: 1110/1042,
  57305. bottom: 12/1122
  57306. },
  57307. form: "samurott",
  57308. },
  57309. samurott_feral: {
  57310. height: math.unit(4 + 11/12, "feet"),
  57311. weight: math.unit(208.6, "lb"),
  57312. name: "Feral",
  57313. image: {
  57314. source: "./media/characters/robin-phox/samurott-feral.svg",
  57315. extra: 766/681,
  57316. bottom: 108/874
  57317. },
  57318. form: "samurott",
  57319. },
  57320. },
  57321. [
  57322. {
  57323. name: "Normal",
  57324. height: math.unit(2, "feet"),
  57325. default: true,
  57326. form: "snivy"
  57327. },
  57328. {
  57329. name: "Normal",
  57330. height: math.unit(6, "feet"),
  57331. default: true,
  57332. form: "yoshi"
  57333. },
  57334. {
  57335. name: "Normal",
  57336. height: math.unit(4 + 11/12, "feet"),
  57337. default: true,
  57338. form: "delphox"
  57339. },
  57340. {
  57341. name: "Normal",
  57342. height: math.unit(4 + 7/12, "feet"),
  57343. default: true,
  57344. form: "mienshao"
  57345. },
  57346. {
  57347. name: "Normal",
  57348. height: math.unit(6 + 3/12, "feet"),
  57349. default: true,
  57350. form: "inteleon"
  57351. },
  57352. {
  57353. name: "Normal",
  57354. height: math.unit(10 + 6/12, "feet"),
  57355. default: true,
  57356. form: "reshiram"
  57357. },
  57358. {
  57359. name: "Normal",
  57360. height: math.unit(8, "feet"),
  57361. default: true,
  57362. form: "samurott"
  57363. },
  57364. {
  57365. name: "Macro",
  57366. height: math.unit(500, "feet"),
  57367. allForms: true
  57368. },
  57369. {
  57370. name: "Mega Macro",
  57371. height: math.unit(10, "earths"),
  57372. allForms: true
  57373. },
  57374. {
  57375. name: "Giga Macro",
  57376. height: math.unit(1, "galaxy"),
  57377. allForms: true
  57378. },
  57379. {
  57380. name: "Godly Macro",
  57381. height: math.unit(1e10, "multiverses"),
  57382. allForms: true
  57383. },
  57384. ],
  57385. {
  57386. "snivy": {
  57387. name: "Snivy",
  57388. default: true
  57389. },
  57390. "yoshi": {
  57391. name: "Yoshi",
  57392. },
  57393. "delphox": {
  57394. name: "Delphox",
  57395. },
  57396. "mienshao": {
  57397. name: "Mienshao",
  57398. },
  57399. "inteleon": {
  57400. name: "Inteleon",
  57401. },
  57402. "reshiram": {
  57403. name: "Reshiram",
  57404. },
  57405. "samurott": {
  57406. name: "Samurott",
  57407. },
  57408. }
  57409. ))
  57410. characterMakers.push(() => makeCharacter(
  57411. { name: "Ash Leung", species: ["red-panda"], tags: ["anthro"] },
  57412. {
  57413. front: {
  57414. height: math.unit(4, "feet"),
  57415. name: "Front",
  57416. image: {
  57417. source: "./media/characters/ash-leung/front.svg",
  57418. extra: 1916/1792,
  57419. bottom: 50/1966
  57420. }
  57421. },
  57422. },
  57423. [
  57424. {
  57425. name: "Atomic",
  57426. height: math.unit(1, "angstrom")
  57427. },
  57428. {
  57429. name: "Microscopic",
  57430. height: math.unit(4000, "angstroms")
  57431. },
  57432. {
  57433. name: "Speck",
  57434. height: math.unit(1, "mm")
  57435. },
  57436. {
  57437. name: "Small",
  57438. height: math.unit(1, "inch")
  57439. },
  57440. {
  57441. name: "Normal",
  57442. height: math.unit(4, "feet"),
  57443. default: true
  57444. },
  57445. ]
  57446. ))
  57447. characterMakers.push(() => makeCharacter(
  57448. { name: "Carie", species: ["lucario"], tags: ["anthro"] },
  57449. {
  57450. frontDressed: {
  57451. height: math.unit(2.08, "meters"),
  57452. weight: math.unit(175, "lb"),
  57453. name: "Front (Dressed)",
  57454. image: {
  57455. source: "./media/characters/carie/front-dressed.svg",
  57456. extra: 456/417,
  57457. bottom: 7/463
  57458. }
  57459. },
  57460. backDressed: {
  57461. height: math.unit(2.08, "meters"),
  57462. weight: math.unit(175, "lb"),
  57463. name: "Back (Dressed)",
  57464. image: {
  57465. source: "./media/characters/carie/back-dressed.svg",
  57466. extra: 455/414,
  57467. bottom: 11/466
  57468. }
  57469. },
  57470. front: {
  57471. height: math.unit(2, "meters"),
  57472. weight: math.unit(175, "lb"),
  57473. name: "Front",
  57474. image: {
  57475. source: "./media/characters/carie/front.svg",
  57476. extra: 438/399,
  57477. bottom: 12/450
  57478. }
  57479. },
  57480. back: {
  57481. height: math.unit(2, "meters"),
  57482. weight: math.unit(175, "lb"),
  57483. name: "Back",
  57484. image: {
  57485. source: "./media/characters/carie/back.svg",
  57486. extra: 438/397,
  57487. bottom: 7/445
  57488. }
  57489. },
  57490. },
  57491. [
  57492. {
  57493. name: "Normal",
  57494. height: math.unit(2.08, "meters"),
  57495. default: true
  57496. },
  57497. {
  57498. name: "Macro",
  57499. height: math.unit(2.08e3, "meters")
  57500. },
  57501. {
  57502. name: "Mega Macro",
  57503. height: math.unit(2.08e6, "meters")
  57504. },
  57505. {
  57506. name: "Giga Macro",
  57507. height: math.unit(2.08e9, "meters")
  57508. },
  57509. {
  57510. name: "Tera Macro",
  57511. height: math.unit(2.08e12, "meters")
  57512. },
  57513. {
  57514. name: "Peta Macro",
  57515. height: math.unit(2.08e15, "meters")
  57516. },
  57517. {
  57518. name: "Exa Macro",
  57519. height: math.unit(2.08e18, "meters")
  57520. },
  57521. {
  57522. name: "Zetta Macro",
  57523. height: math.unit(2.08e21, "meters")
  57524. },
  57525. {
  57526. name: "Yotta Macro",
  57527. height: math.unit(2.08e24, "meters")
  57528. },
  57529. ]
  57530. ))
  57531. characterMakers.push(() => makeCharacter(
  57532. { name: "Sai Bree", species: ["sabertooth-tiger"], tags: ["anthro"] },
  57533. {
  57534. front: {
  57535. height: math.unit(5 + 2/12, "feet"),
  57536. weight: math.unit(120, "lb"),
  57537. name: "Front",
  57538. image: {
  57539. source: "./media/characters/sai-bree/front.svg",
  57540. extra: 1843/1702,
  57541. bottom: 91/1934
  57542. }
  57543. },
  57544. back: {
  57545. height: math.unit(5 + 2/12, "feet"),
  57546. weight: math.unit(120, "lb"),
  57547. name: "Back",
  57548. image: {
  57549. source: "./media/characters/sai-bree/back.svg",
  57550. extra: 1809/1637,
  57551. bottom: 56/1865
  57552. }
  57553. },
  57554. },
  57555. [
  57556. {
  57557. name: "Normal",
  57558. height: math.unit(5 + 2/12, "feet"),
  57559. default: true
  57560. },
  57561. {
  57562. name: "Macro",
  57563. height: math.unit(500, "feet")
  57564. },
  57565. ]
  57566. ))
  57567. characterMakers.push(() => makeCharacter(
  57568. { name: "Davwyn", species: ["dragon"], tags: ["feral"] },
  57569. {
  57570. side: {
  57571. height: math.unit(0.77, "meters"),
  57572. weight: math.unit(120, "lb"),
  57573. name: "Side",
  57574. image: {
  57575. source: "./media/characters/davwyn/side.svg",
  57576. extra: 1557/1225,
  57577. bottom: 131/1688
  57578. }
  57579. },
  57580. front: {
  57581. height: math.unit(0.835410, "meters"),
  57582. weight: math.unit(120, "lb"),
  57583. name: "Front",
  57584. image: {
  57585. source: "./media/characters/davwyn/front.svg",
  57586. extra: 870/843,
  57587. bottom: 175/1045
  57588. }
  57589. },
  57590. },
  57591. [
  57592. {
  57593. name: "Minidrake",
  57594. height: math.unit(0.77/4, "meters")
  57595. },
  57596. {
  57597. name: "Normal",
  57598. height: math.unit(0.77, "meters"),
  57599. default: true
  57600. },
  57601. ]
  57602. ))
  57603. characterMakers.push(() => makeCharacter(
  57604. { name: "Balans", species: ["dragon", "kangaroo"], tags: ["anthro"] },
  57605. {
  57606. front: {
  57607. height: math.unit(10 + 3/12, "feet"),
  57608. weight: math.unit(2857, "lb"),
  57609. name: "Front",
  57610. image: {
  57611. source: "./media/characters/balans/front.svg",
  57612. extra: 427/402,
  57613. bottom: 26/453
  57614. }
  57615. },
  57616. side: {
  57617. height: math.unit(10 + 3/12, "feet"),
  57618. weight: math.unit(2857, "lb"),
  57619. name: "Side",
  57620. image: {
  57621. source: "./media/characters/balans/side.svg",
  57622. extra: 397/371,
  57623. bottom: 17/414
  57624. }
  57625. },
  57626. back: {
  57627. height: math.unit(10 + 3/12, "feet"),
  57628. weight: math.unit(2857, "lb"),
  57629. name: "Back",
  57630. image: {
  57631. source: "./media/characters/balans/back.svg",
  57632. extra: 408/381,
  57633. bottom: 14/422
  57634. }
  57635. },
  57636. hand: {
  57637. height: math.unit(1.15, "feet"),
  57638. name: "Hand",
  57639. image: {
  57640. source: "./media/characters/balans/hand.svg"
  57641. }
  57642. },
  57643. footRest: {
  57644. height: math.unit(3.1, "feet"),
  57645. name: "Foot (Rest)",
  57646. image: {
  57647. source: "./media/characters/balans/foot-rest.svg"
  57648. }
  57649. },
  57650. footActive: {
  57651. height: math.unit(3.5, "feet"),
  57652. name: "Foot (Active)",
  57653. image: {
  57654. source: "./media/characters/balans/foot-active.svg"
  57655. }
  57656. },
  57657. },
  57658. [
  57659. {
  57660. name: "Normal",
  57661. height: math.unit(10 + 3/12, "feet"),
  57662. default: true
  57663. },
  57664. ]
  57665. ))
  57666. characterMakers.push(() => makeCharacter(
  57667. { name: "Eldkveikir", species: ["dragon"], tags: ["feral"] },
  57668. {
  57669. side: {
  57670. height: math.unit(9, "meters"),
  57671. weight: math.unit(114, "tonnes"),
  57672. name: "Side",
  57673. image: {
  57674. source: "./media/characters/eldkveikir/side.svg",
  57675. extra: 1927/338,
  57676. bottom: 42/1969
  57677. }
  57678. },
  57679. sitting: {
  57680. height: math.unit(13.4, "meters"),
  57681. weight: math.unit(114, "tonnes"),
  57682. name: "Sitting",
  57683. image: {
  57684. source: "./media/characters/eldkveikir/sitting.svg",
  57685. extra: 1108/963,
  57686. bottom: 610/1718
  57687. }
  57688. },
  57689. maw: {
  57690. height: math.unit(8.36, "meters"),
  57691. name: "Maw",
  57692. image: {
  57693. source: "./media/characters/eldkveikir/maw.svg"
  57694. }
  57695. },
  57696. hand: {
  57697. height: math.unit(4.84, "meters"),
  57698. name: "Hand",
  57699. image: {
  57700. source: "./media/characters/eldkveikir/hand.svg"
  57701. }
  57702. },
  57703. foot: {
  57704. height: math.unit(6.9, "meters"),
  57705. name: "Foot",
  57706. image: {
  57707. source: "./media/characters/eldkveikir/foot.svg"
  57708. }
  57709. },
  57710. genitals: {
  57711. height: math.unit(9.6, "meters"),
  57712. name: "Genitals",
  57713. image: {
  57714. source: "./media/characters/eldkveikir/genitals.svg"
  57715. }
  57716. },
  57717. },
  57718. [
  57719. {
  57720. name: "Normal",
  57721. height: math.unit(9, "meters"),
  57722. default: true
  57723. },
  57724. ]
  57725. ))
  57726. characterMakers.push(() => makeCharacter(
  57727. { name: "Arrow", species: ["wolf"], tags: ["anthro"] },
  57728. {
  57729. front: {
  57730. height: math.unit(14, "feet"),
  57731. weight: math.unit(4100, "lb"),
  57732. name: "Front",
  57733. image: {
  57734. source: "./media/characters/arrow/front.svg",
  57735. extra: 330/318,
  57736. bottom: 56/386
  57737. }
  57738. },
  57739. },
  57740. [
  57741. {
  57742. name: "Normal",
  57743. height: math.unit(14, "feet"),
  57744. default: true
  57745. },
  57746. {
  57747. name: "Minimacro",
  57748. height: math.unit(63, "feet")
  57749. },
  57750. {
  57751. name: "Macro",
  57752. height: math.unit(630, "feet")
  57753. },
  57754. {
  57755. name: "Megamacro",
  57756. height: math.unit(12600, "feet")
  57757. },
  57758. {
  57759. name: "Gigamacro",
  57760. height: math.unit(18000, "miles")
  57761. },
  57762. ]
  57763. ))
  57764. characterMakers.push(() => makeCharacter(
  57765. { name: "3YK-K0 Unit", species: ["synth"], tags: ["anthro"] },
  57766. {
  57767. front: {
  57768. height: math.unit(10, "feet"),
  57769. weight: math.unit(2.4, "tons"),
  57770. name: "Front",
  57771. image: {
  57772. source: "./media/characters/3yk-k0-unit/front.svg",
  57773. extra: 573/561,
  57774. bottom: 33/606
  57775. }
  57776. },
  57777. back: {
  57778. height: math.unit(10, "feet"),
  57779. weight: math.unit(2.4, "tons"),
  57780. name: "Back",
  57781. image: {
  57782. source: "./media/characters/3yk-k0-unit/back.svg",
  57783. extra: 614/573,
  57784. bottom: 32/646
  57785. }
  57786. },
  57787. maw: {
  57788. height: math.unit(2.15, "feet"),
  57789. name: "Maw",
  57790. image: {
  57791. source: "./media/characters/3yk-k0-unit/maw.svg"
  57792. }
  57793. },
  57794. },
  57795. [
  57796. {
  57797. name: "Normal",
  57798. height: math.unit(10, "feet"),
  57799. default: true
  57800. },
  57801. ]
  57802. ))
  57803. characterMakers.push(() => makeCharacter(
  57804. { name: "Nemo", species: ["dragon"], tags: ["anthro"] },
  57805. {
  57806. front: {
  57807. height: math.unit(8 + 8/12, "feet"),
  57808. name: "Front",
  57809. image: {
  57810. source: "./media/characters/nemo/front.svg",
  57811. extra: 1308/1217,
  57812. bottom: 57/1365
  57813. }
  57814. },
  57815. },
  57816. [
  57817. {
  57818. name: "Normal",
  57819. height: math.unit(8 + 8/12, "feet"),
  57820. default: true
  57821. },
  57822. ]
  57823. ))
  57824. characterMakers.push(() => makeCharacter(
  57825. { name: "Rexx", species: ["wolf"], tags: ["anthro"] },
  57826. {
  57827. front: {
  57828. height: math.unit(8, "feet"),
  57829. weight: math.unit(760, "lb"),
  57830. name: "Front",
  57831. image: {
  57832. source: "./media/characters/rexx/front.svg",
  57833. extra: 786/750,
  57834. bottom: 17/803
  57835. },
  57836. extraAttributes: {
  57837. "pawLength": {
  57838. name: "Paw Length",
  57839. power: 1,
  57840. type: "length",
  57841. base: math.unit(27, "inches")
  57842. },
  57843. }
  57844. },
  57845. },
  57846. [
  57847. {
  57848. name: "Micro",
  57849. height: math.unit(2, "inches")
  57850. },
  57851. {
  57852. name: "Normal",
  57853. height: math.unit(8, "feet"),
  57854. default: true
  57855. },
  57856. {
  57857. name: "Macro",
  57858. height: math.unit(150, "feet")
  57859. },
  57860. ]
  57861. ))
  57862. characterMakers.push(() => makeCharacter(
  57863. { name: "Draco", species: ["dragon"], tags: ["anthro"] },
  57864. {
  57865. front: {
  57866. height: math.unit(18, "feet"),
  57867. weight: math.unit(1975, "lb"),
  57868. name: "Front",
  57869. image: {
  57870. source: "./media/characters/draco/front.svg",
  57871. extra: 1325/1241,
  57872. bottom: 83/1408
  57873. }
  57874. },
  57875. back: {
  57876. height: math.unit(18, "feet"),
  57877. weight: math.unit(1975, "lb"),
  57878. name: "Back",
  57879. image: {
  57880. source: "./media/characters/draco/back.svg",
  57881. extra: 1332/1250,
  57882. bottom: 43/1375
  57883. }
  57884. },
  57885. dick: {
  57886. height: math.unit(7.5, "feet"),
  57887. name: "Dick",
  57888. image: {
  57889. source: "./media/characters/draco/dick.svg"
  57890. }
  57891. },
  57892. },
  57893. [
  57894. {
  57895. name: "Normal",
  57896. height: math.unit(18, "feet"),
  57897. default: true
  57898. },
  57899. ]
  57900. ))
  57901. characterMakers.push(() => makeCharacter(
  57902. { name: "Harriett", species: ["nedynvor"], tags: ["anthro"] },
  57903. {
  57904. front: {
  57905. height: math.unit(3.2, "meters"),
  57906. name: "Front",
  57907. image: {
  57908. source: "./media/characters/harriett/front.svg",
  57909. extra: 1966/1915,
  57910. bottom: 9/1975
  57911. }
  57912. },
  57913. },
  57914. [
  57915. {
  57916. name: "Normal",
  57917. height: math.unit(3.2, "meters"),
  57918. default: true
  57919. },
  57920. ]
  57921. ))
  57922. characterMakers.push(() => makeCharacter(
  57923. { name: "Serpentus", species: ["snake"], tags: ["anthro"] },
  57924. {
  57925. sitting: {
  57926. height: math.unit(0.8, "meter"),
  57927. name: "Sitting",
  57928. image: {
  57929. source: "./media/characters/serpentus/sitting.svg",
  57930. extra: 293/290,
  57931. bottom: 140/433
  57932. }
  57933. },
  57934. },
  57935. [
  57936. {
  57937. name: "Normal",
  57938. height: math.unit(0.8, "meter"),
  57939. default: true
  57940. },
  57941. ]
  57942. ))
  57943. characterMakers.push(() => makeCharacter(
  57944. { name: "Nova (Polecat)", species: ["marbled-polecat"], tags: ["anthro"] },
  57945. {
  57946. front: {
  57947. height: math.unit(5.7174385736, "feet"),
  57948. name: "Front",
  57949. image: {
  57950. source: "./media/characters/nova-polecat/front.svg",
  57951. extra: 1317/1216,
  57952. bottom: 92/1409
  57953. }
  57954. },
  57955. },
  57956. [
  57957. {
  57958. name: "Normal",
  57959. height: math.unit(5.7174385736, "feet"),
  57960. default: true
  57961. },
  57962. ]
  57963. ))
  57964. characterMakers.push(() => makeCharacter(
  57965. { name: "Mook", species: ["monkey", "ape"], tags: ["anthro"] },
  57966. {
  57967. front: {
  57968. height: math.unit(5 + 4/12, "feet"),
  57969. weight: math.unit(250, "lb"),
  57970. name: "Front",
  57971. image: {
  57972. source: "./media/characters/mook/front.svg",
  57973. extra: 1088/1037,
  57974. bottom: 132/1220
  57975. }
  57976. },
  57977. back: {
  57978. height: math.unit(5 + 1/12, "feet"),
  57979. weight: math.unit(250, "lb"),
  57980. name: "Back",
  57981. image: {
  57982. source: "./media/characters/mook/back.svg",
  57983. extra: 1184/905,
  57984. bottom: 96/1280
  57985. }
  57986. },
  57987. head: {
  57988. height: math.unit(1.85, "feet"),
  57989. name: "Head",
  57990. image: {
  57991. source: "./media/characters/mook/head.svg"
  57992. }
  57993. },
  57994. hand: {
  57995. height: math.unit(1.9, "feet"),
  57996. name: "Hand",
  57997. image: {
  57998. source: "./media/characters/mook/hand.svg"
  57999. }
  58000. },
  58001. palm: {
  58002. height: math.unit(1.84, "feet"),
  58003. name: "Palm",
  58004. image: {
  58005. source: "./media/characters/mook/palm.svg"
  58006. }
  58007. },
  58008. foot: {
  58009. height: math.unit(1.44, "feet"),
  58010. name: "Foot",
  58011. image: {
  58012. source: "./media/characters/mook/foot.svg"
  58013. }
  58014. },
  58015. sole: {
  58016. height: math.unit(1.44, "feet"),
  58017. name: "Sole",
  58018. image: {
  58019. source: "./media/characters/mook/sole.svg"
  58020. }
  58021. },
  58022. },
  58023. [
  58024. {
  58025. name: "Normal",
  58026. height: math.unit(5 + 4/12, "feet"),
  58027. default: true
  58028. },
  58029. {
  58030. name: "Big",
  58031. height: math.unit(12, "feet")
  58032. },
  58033. ]
  58034. ))
  58035. characterMakers.push(() => makeCharacter(
  58036. { name: "Kayla", species: ["human"], tags: ["anthro"] },
  58037. {
  58038. front: {
  58039. height: math.unit(6 + 10/12, "feet"),
  58040. weight: math.unit(233, "lb"),
  58041. name: "Front",
  58042. image: {
  58043. source: "./media/characters/kayla/front.svg",
  58044. extra: 1850/1775,
  58045. bottom: 65/1915
  58046. }
  58047. },
  58048. },
  58049. [
  58050. {
  58051. name: "Normal",
  58052. height: math.unit(6 + 10/12, "feet"),
  58053. default: true
  58054. },
  58055. {
  58056. name: "Amazonian",
  58057. height: math.unit(12 + 5/12, "feet")
  58058. },
  58059. {
  58060. name: "Mini Giantess",
  58061. height: math.unit(26, "feet")
  58062. },
  58063. {
  58064. name: "Giantess",
  58065. height: math.unit(200, "feet")
  58066. },
  58067. {
  58068. name: "Mega Giantess",
  58069. height: math.unit(2500, "feet")
  58070. },
  58071. {
  58072. name: "City Sized",
  58073. height: math.unit(50, "miles")
  58074. },
  58075. {
  58076. name: "Country Sized",
  58077. height: math.unit(500, "miles")
  58078. },
  58079. {
  58080. name: "Continent Sized",
  58081. height: math.unit(2500, "miles")
  58082. },
  58083. {
  58084. name: "Planet Sized",
  58085. height: math.unit(10000, "miles")
  58086. },
  58087. {
  58088. name: "Star Sized",
  58089. height: math.unit(5e6, "miles")
  58090. },
  58091. {
  58092. name: "Solar System Sized",
  58093. height: math.unit(125, "AU")
  58094. },
  58095. {
  58096. name: "Galaxy Sized",
  58097. height: math.unit(300e3, "lightyears")
  58098. },
  58099. {
  58100. name: "Universe Sized",
  58101. height: math.unit(200e9, "lightyears")
  58102. },
  58103. {
  58104. name: "Multiverse Sized",
  58105. height: math.unit(20, "exauniverses")
  58106. },
  58107. {
  58108. name: "Mother of Existence",
  58109. height: math.unit(1e6, "yottauniverses")
  58110. },
  58111. ]
  58112. ))
  58113. characterMakers.push(() => makeCharacter(
  58114. { name: "Kulve Ragnarok", species: ["kulve-taroth"], tags: ["taur"] },
  58115. {
  58116. side: {
  58117. height: math.unit(9.5, "meters"),
  58118. name: "Side",
  58119. image: {
  58120. source: "./media/characters/kulve-ragnarok/side.svg",
  58121. extra: 364/326,
  58122. bottom: 50/414
  58123. }
  58124. },
  58125. },
  58126. [
  58127. {
  58128. name: "Normal",
  58129. height: math.unit(9.5, "meters"),
  58130. default: true
  58131. },
  58132. ]
  58133. ))
  58134. characterMakers.push(() => makeCharacter(
  58135. { name: "Atlas (Goat)", species: ["goat"], tags: ["anthro"] },
  58136. {
  58137. front: {
  58138. height: math.unit(8 + 9/12, "feet"),
  58139. name: "Front",
  58140. image: {
  58141. source: "./media/characters/atlas-goat/front.svg",
  58142. extra: 1462/1323,
  58143. bottom: 12/1474
  58144. }
  58145. },
  58146. },
  58147. [
  58148. {
  58149. name: "Normal",
  58150. height: math.unit(8 + 9/12, "feet"),
  58151. default: true
  58152. },
  58153. {
  58154. name: "Skyline",
  58155. height: math.unit(845, "feet")
  58156. },
  58157. {
  58158. name: "Orbital",
  58159. height: math.unit(93000, "miles")
  58160. },
  58161. {
  58162. name: "Constellation",
  58163. height: math.unit(27000, "lightyears")
  58164. },
  58165. ]
  58166. ))
  58167. characterMakers.push(() => makeCharacter(
  58168. { name: "Xie Ling", species: ["irthos"], tags: ["anthro"] },
  58169. {
  58170. side: {
  58171. height: math.unit(1.8, "meters"),
  58172. weight: math.unit(120, "kg"),
  58173. name: "Side",
  58174. image: {
  58175. source: "./media/characters/xie-ling/side.svg",
  58176. extra: 646/574,
  58177. bottom: 44/690
  58178. }
  58179. },
  58180. },
  58181. [
  58182. {
  58183. name: "Tiny",
  58184. height: math.unit(1.80, "meters")
  58185. },
  58186. {
  58187. name: "Small",
  58188. height: math.unit(6, "meters")
  58189. },
  58190. {
  58191. name: "Medium",
  58192. height: math.unit(15, "meters")
  58193. },
  58194. {
  58195. name: "Normal",
  58196. height: math.unit(30, "meters"),
  58197. default: true
  58198. },
  58199. {
  58200. name: "Above Normal",
  58201. height: math.unit(60, "meters")
  58202. },
  58203. {
  58204. name: "Big",
  58205. height: math.unit(220, "meters")
  58206. },
  58207. {
  58208. name: "Giant",
  58209. height: math.unit(2.2, "km")
  58210. },
  58211. {
  58212. name: "Macro",
  58213. height: math.unit(25, "km")
  58214. },
  58215. {
  58216. name: "Mega Macro",
  58217. height: math.unit(350, "km")
  58218. },
  58219. {
  58220. name: "Mega Macro+",
  58221. height: math.unit(5000, "km")
  58222. },
  58223. {
  58224. name: "Goddess",
  58225. height: math.unit(3, "multiverses")
  58226. },
  58227. ]
  58228. ))
  58229. characterMakers.push(() => makeCharacter(
  58230. { name: "Sune Nemeruva", species: ["furred-dragon"], tags: ["anthro"] },
  58231. {
  58232. frontSfw: {
  58233. height: math.unit(5 + 11/12, "feet"),
  58234. weight: math.unit(210, "lb"),
  58235. name: "Front",
  58236. image: {
  58237. source: "./media/characters/sune-nemeruva/front-sfw.svg",
  58238. extra: 1928/1821,
  58239. bottom: 45/1973
  58240. }
  58241. },
  58242. backSfw: {
  58243. height: math.unit(5 + 11/12, "feet"),
  58244. weight: math.unit(210, "lb"),
  58245. name: "Back",
  58246. image: {
  58247. source: "./media/characters/sune-nemeruva/back-sfw.svg",
  58248. extra: 1920/1813,
  58249. bottom: 34/1954
  58250. }
  58251. },
  58252. frontNsfw: {
  58253. height: math.unit(5 + 11/12, "feet"),
  58254. weight: math.unit(210, "lb"),
  58255. name: "Front (NSFW)",
  58256. image: {
  58257. source: "./media/characters/sune-nemeruva/front-nsfw.svg",
  58258. extra: 1928/1821,
  58259. bottom: 45/1973
  58260. }
  58261. },
  58262. backNsfw: {
  58263. height: math.unit(5 + 11/12, "feet"),
  58264. weight: math.unit(210, "lb"),
  58265. name: "Back (NSFW)",
  58266. image: {
  58267. source: "./media/characters/sune-nemeruva/back-nsfw.svg",
  58268. extra: 1920/1813,
  58269. bottom: 34/1954
  58270. }
  58271. },
  58272. },
  58273. [
  58274. {
  58275. name: "Normal",
  58276. height: math.unit(5 + 11/12, "feet"),
  58277. default: true
  58278. },
  58279. {
  58280. name: "Goddess",
  58281. height: math.unit(20 + 3/12, "feet")
  58282. },
  58283. {
  58284. name: "Breaker of Man",
  58285. height: math.unit(329 + 9/12, "feet")
  58286. },
  58287. {
  58288. name: "Solar Justice",
  58289. height: math.unit(0.6, "solarradii")
  58290. },
  58291. {
  58292. name: "She Who Judges",
  58293. height: math.unit(1, "universe")
  58294. },
  58295. ]
  58296. ))
  58297. characterMakers.push(() => makeCharacter(
  58298. { name: "Managarmr", species: ["dragon", "deity"], tags: ["anthro"] },
  58299. {
  58300. casual_front: {
  58301. height: math.unit(6 + 1/12, "feet"),
  58302. weight: math.unit(190, "lb"),
  58303. preyCapacity: math.unit(1, "people"),
  58304. name: "Front",
  58305. image: {
  58306. source: "./media/characters/managarmr/casual-front.svg",
  58307. extra: 411/381,
  58308. bottom: 15/426
  58309. },
  58310. extraAttributes: {
  58311. "pawSize": {
  58312. name: "Paw Size",
  58313. power: 1,
  58314. type: "length",
  58315. base: math.unit(0.2, "meters")
  58316. },
  58317. },
  58318. form: "casual",
  58319. },
  58320. casual_back: {
  58321. height: math.unit(6 + 1/12, "feet"),
  58322. weight: math.unit(190, "lb"),
  58323. preyCapacity: math.unit(1, "people"),
  58324. name: "Back",
  58325. image: {
  58326. source: "./media/characters/managarmr/casual-back.svg",
  58327. extra: 413/383,
  58328. bottom: 13/426
  58329. },
  58330. extraAttributes: {
  58331. "pawSize": {
  58332. name: "Paw Size",
  58333. power: 1,
  58334. type: "length",
  58335. base: math.unit(0.2, "meters")
  58336. },
  58337. },
  58338. form: "casual",
  58339. },
  58340. base_front: {
  58341. height: math.unit(7, "feet"),
  58342. weight: math.unit(210, "lb"),
  58343. preyCapacity: math.unit(2, "people"),
  58344. name: "Front",
  58345. image: {
  58346. source: "./media/characters/managarmr/base-front.svg",
  58347. extra: 580/485,
  58348. bottom: 32/612
  58349. },
  58350. extraAttributes: {
  58351. "wingspan": {
  58352. name: "Wingspan",
  58353. power: 1,
  58354. type: "length",
  58355. base: math.unit(4, "meters")
  58356. },
  58357. "pawSize": {
  58358. name: "Paw Size",
  58359. power: 1,
  58360. type: "length",
  58361. base: math.unit(0.2, "meters")
  58362. },
  58363. },
  58364. form: "base",
  58365. },
  58366. "true-divine_front": {
  58367. height: math.unit(40, "feet"),
  58368. weight: math.unit(39000, "lb"),
  58369. preyCapacity: math.unit(375, "people"),
  58370. name: "Front",
  58371. image: {
  58372. source: "./media/characters/managarmr/true-divine-front.svg",
  58373. extra: 725/573,
  58374. bottom: 120/845
  58375. },
  58376. extraAttributes: {
  58377. "wingspan": {
  58378. name: "Wingspan",
  58379. power: 1,
  58380. type: "length",
  58381. base: math.unit(20, "meters")
  58382. },
  58383. "pawSize": {
  58384. name: "Paw Size",
  58385. power: 1,
  58386. type: "length",
  58387. base: math.unit(1.5, "meters")
  58388. },
  58389. },
  58390. form: "true-divine",
  58391. },
  58392. },
  58393. [
  58394. {
  58395. name: "Normal",
  58396. height: math.unit(6 + 1/12, "feet"),
  58397. form: "casual",
  58398. default: true
  58399. },
  58400. {
  58401. name: "Normal",
  58402. height: math.unit(7, "feet"),
  58403. form: "base",
  58404. default: true
  58405. },
  58406. ],
  58407. {
  58408. "casual": {
  58409. name: "Casual",
  58410. default: true
  58411. },
  58412. "base": {
  58413. name: "Base",
  58414. },
  58415. "true-divine": {
  58416. name: "True Divine",
  58417. },
  58418. }
  58419. ))
  58420. characterMakers.push(() => makeCharacter(
  58421. { name: "Mystra", species: ["sergal", "deity"], tags: ["anthro"] },
  58422. {
  58423. front: {
  58424. height: math.unit(1.8, "meters"),
  58425. weight: math.unit(110, "kg"),
  58426. name: "Front",
  58427. image: {
  58428. source: "./media/characters/mystra/front.svg",
  58429. extra: 529/442,
  58430. bottom: 31/560
  58431. }
  58432. },
  58433. frontLewd: {
  58434. height: math.unit(1.8, "meters"),
  58435. weight: math.unit(110, "kg"),
  58436. name: "Front (Lewd)",
  58437. image: {
  58438. source: "./media/characters/mystra/front-lewd.svg",
  58439. extra: 529/442,
  58440. bottom: 31/560
  58441. }
  58442. },
  58443. head: {
  58444. height: math.unit(1.63, "feet"),
  58445. name: "Head",
  58446. image: {
  58447. source: "./media/characters/mystra/head.svg"
  58448. }
  58449. },
  58450. paw: {
  58451. height: math.unit(1.9, "feet"),
  58452. name: "Paw",
  58453. image: {
  58454. source: "./media/characters/mystra/paw.svg"
  58455. }
  58456. },
  58457. },
  58458. [
  58459. {
  58460. name: "Incognito",
  58461. height: math.unit(2.3, "meters")
  58462. },
  58463. {
  58464. name: "Small Macro",
  58465. height: math.unit(300, "meters")
  58466. },
  58467. {
  58468. name: "Small Mega",
  58469. height: math.unit(2, "km")
  58470. },
  58471. {
  58472. name: "Mega",
  58473. height: math.unit(30, "km")
  58474. },
  58475. {
  58476. name: "Small Giga",
  58477. height: math.unit(100, "km")
  58478. },
  58479. {
  58480. name: "Giga",
  58481. height: math.unit(1000, "km"),
  58482. default: true
  58483. },
  58484. {
  58485. name: "Continental",
  58486. height: math.unit(5000, "km")
  58487. },
  58488. {
  58489. name: "Terra",
  58490. height: math.unit(20000, "km")
  58491. },
  58492. {
  58493. name: "Solar",
  58494. height: math.unit(2e6, "km")
  58495. },
  58496. {
  58497. name: "Galactic",
  58498. height: math.unit(528502, "lightyears")
  58499. },
  58500. {
  58501. name: "Universal",
  58502. height: math.unit(20, "universes")
  58503. },
  58504. ]
  58505. ))
  58506. characterMakers.push(() => makeCharacter(
  58507. { name: "Caleb", species: ["lion", "cobra", "dragon", "chimera", "deity"], tags: ["anthro"] },
  58508. {
  58509. front: {
  58510. height: math.unit(2, "meters"),
  58511. weight: math.unit(140, "kg"),
  58512. name: "Front",
  58513. image: {
  58514. source: "./media/characters/caleb/front.svg",
  58515. extra: 873/817,
  58516. bottom: 47/920
  58517. }
  58518. },
  58519. back: {
  58520. height: math.unit(2, "meters"),
  58521. weight: math.unit(140, "kg"),
  58522. name: "Back",
  58523. image: {
  58524. source: "./media/characters/caleb/back.svg",
  58525. extra: 877/828,
  58526. bottom: 24/901
  58527. }
  58528. },
  58529. snakeTail: {
  58530. height: math.unit(1.44, "feet"),
  58531. name: "Snake Tail",
  58532. image: {
  58533. source: "./media/characters/caleb/snake-tail.svg"
  58534. }
  58535. },
  58536. dick: {
  58537. height: math.unit(2.6, "feet"),
  58538. name: "Dick",
  58539. image: {
  58540. source: "./media/characters/caleb/dick.svg"
  58541. }
  58542. },
  58543. },
  58544. [
  58545. {
  58546. name: "Incognito",
  58547. height: math.unit(3, "meters")
  58548. },
  58549. {
  58550. name: "Home Size",
  58551. height: math.unit(200, "meters"),
  58552. default: true
  58553. },
  58554. {
  58555. name: "Macro",
  58556. height: math.unit(500, "meters")
  58557. },
  58558. {
  58559. name: "Big Macro",
  58560. height: math.unit(5, "km")
  58561. },
  58562. {
  58563. name: "Giga",
  58564. height: math.unit(250, "km")
  58565. },
  58566. {
  58567. name: "Giga+",
  58568. height: math.unit(5000, "km")
  58569. },
  58570. {
  58571. name: "Small Terra",
  58572. height: math.unit(35e3, "km")
  58573. },
  58574. {
  58575. name: "Terra",
  58576. height: math.unit(2e6, "km")
  58577. },
  58578. {
  58579. name: "Terra+",
  58580. height: math.unit(1.5e6, "km")
  58581. },
  58582. ]
  58583. ))
  58584. characterMakers.push(() => makeCharacter(
  58585. { name: "Gilirian", species: ["giraffe", "zebra", "deity"], tags: ["anthro"] },
  58586. {
  58587. front: {
  58588. height: math.unit(2, "meters"),
  58589. weight: math.unit(120, "kg"),
  58590. name: "Front",
  58591. image: {
  58592. source: "./media/characters/gilirian/front.svg",
  58593. extra: 805/737,
  58594. bottom: 13/818
  58595. }
  58596. },
  58597. side: {
  58598. height: math.unit(2, "meters"),
  58599. weight: math.unit(120, "kg"),
  58600. name: "Side",
  58601. image: {
  58602. source: "./media/characters/gilirian/side.svg",
  58603. extra: 810/746,
  58604. bottom: 6/816
  58605. }
  58606. },
  58607. back: {
  58608. height: math.unit(2, "meters"),
  58609. weight: math.unit(120, "kg"),
  58610. name: "Back",
  58611. image: {
  58612. source: "./media/characters/gilirian/back.svg",
  58613. extra: 815/745,
  58614. bottom: 15/830
  58615. }
  58616. },
  58617. frontNsfw: {
  58618. height: math.unit(2, "meters"),
  58619. weight: math.unit(120, "kg"),
  58620. name: "Front (NSFW)",
  58621. image: {
  58622. source: "./media/characters/gilirian/front-nsfw.svg",
  58623. extra: 805/737,
  58624. bottom: 13/818
  58625. }
  58626. },
  58627. sideNsfw: {
  58628. height: math.unit(2, "meters"),
  58629. weight: math.unit(120, "kg"),
  58630. name: "Side (NSFW)",
  58631. image: {
  58632. source: "./media/characters/gilirian/side-nsfw.svg",
  58633. extra: 810/746,
  58634. bottom: 6/816
  58635. }
  58636. },
  58637. },
  58638. [
  58639. {
  58640. name: "Incognito",
  58641. height: math.unit(2, "meters"),
  58642. default: true
  58643. },
  58644. {
  58645. name: "Macro",
  58646. height: math.unit(250, "meters")
  58647. },
  58648. {
  58649. name: "Big Macro",
  58650. height: math.unit(1500, "meters")
  58651. },
  58652. {
  58653. name: "Mega",
  58654. height: math.unit(40, "km")
  58655. },
  58656. {
  58657. name: "Giga",
  58658. height: math.unit(300, "km")
  58659. },
  58660. {
  58661. name: "Extra Giga",
  58662. height: math.unit(5000, "km")
  58663. },
  58664. {
  58665. name: "Small Terra",
  58666. height: math.unit(10e3, "km")
  58667. },
  58668. {
  58669. name: "Terra",
  58670. height: math.unit(3e5, "km")
  58671. },
  58672. {
  58673. name: "Galactic",
  58674. height: math.unit(369950, "lightyears")
  58675. },
  58676. ]
  58677. ))
  58678. characterMakers.push(() => makeCharacter(
  58679. { name: "Tarken", species: ["t-rex", "kaiju", "deity"], tags: ["anthro"] },
  58680. {
  58681. front: {
  58682. height: math.unit(2.5, "meters"),
  58683. weight: math.unit(230, "lb"),
  58684. name: "Front",
  58685. image: {
  58686. source: "./media/characters/tarken/front.svg",
  58687. extra: 764/720,
  58688. bottom: 49/813
  58689. }
  58690. },
  58691. back: {
  58692. height: math.unit(2.5, "meters"),
  58693. weight: math.unit(230, "lb"),
  58694. name: "Back",
  58695. image: {
  58696. source: "./media/characters/tarken/back.svg",
  58697. extra: 756/720,
  58698. bottom: 35/791
  58699. }
  58700. },
  58701. frontNsfw: {
  58702. height: math.unit(2.5, "meters"),
  58703. weight: math.unit(230, "lb"),
  58704. name: "Front (NSFW)",
  58705. image: {
  58706. source: "./media/characters/tarken/front-nsfw.svg",
  58707. extra: 764/720,
  58708. bottom: 49/813
  58709. }
  58710. },
  58711. backNsfw: {
  58712. height: math.unit(2.5, "meters"),
  58713. weight: math.unit(230, "lb"),
  58714. name: "Back (NSFW)",
  58715. image: {
  58716. source: "./media/characters/tarken/back-nsfw.svg",
  58717. extra: 756/720,
  58718. bottom: 35/791
  58719. }
  58720. },
  58721. head: {
  58722. height: math.unit(2.22, "feet"),
  58723. name: "Head",
  58724. image: {
  58725. source: "./media/characters/tarken/head.svg"
  58726. }
  58727. },
  58728. tail: {
  58729. height: math.unit(5.25, "feet"),
  58730. name: "Tail",
  58731. image: {
  58732. source: "./media/characters/tarken/tail.svg"
  58733. }
  58734. },
  58735. dick: {
  58736. height: math.unit(1.95, "feet"),
  58737. name: "Dick",
  58738. image: {
  58739. source: "./media/characters/tarken/dick.svg"
  58740. }
  58741. },
  58742. hand: {
  58743. height: math.unit(1.78, "feet"),
  58744. name: "Hand",
  58745. image: {
  58746. source: "./media/characters/tarken/hand.svg"
  58747. }
  58748. },
  58749. beam: {
  58750. height: math.unit(1.5, "feet"),
  58751. name: "Beam",
  58752. image: {
  58753. source: "./media/characters/tarken/beam.svg"
  58754. }
  58755. },
  58756. },
  58757. [
  58758. {
  58759. name: "Original Size",
  58760. height: math.unit(2.5, "meters")
  58761. },
  58762. {
  58763. name: "Macro",
  58764. height: math.unit(150, "meters"),
  58765. default: true
  58766. },
  58767. {
  58768. name: "Macro+",
  58769. height: math.unit(300, "meters")
  58770. },
  58771. {
  58772. name: "Mega",
  58773. height: math.unit(2, "km")
  58774. },
  58775. {
  58776. name: "Mega+",
  58777. height: math.unit(35, "km")
  58778. },
  58779.  {
  58780. name: "Mega++",
  58781. height: math.unit(60, "km")
  58782. },
  58783. {
  58784. name: "Giga",
  58785. height: math.unit(200, "km")
  58786. },
  58787. {
  58788. name: "Giga+",
  58789. height: math.unit(2500, "km")
  58790. },
  58791. {
  58792. name: "Giga++",
  58793. height: math.unit(6600, "km")
  58794. },
  58795. {
  58796. name: "Terra",
  58797. height: math.unit(20000, "km")
  58798. },
  58799. {
  58800. name: "Terra+",
  58801. height: math.unit(300000, "km")
  58802. },
  58803. ]
  58804. ))
  58805. characterMakers.push(() => makeCharacter(
  58806. { name: "Otreus", species: ["magpie", "hippogriff", "deity"], tags: ["anthro"] },
  58807. {
  58808. magpie_dressed: {
  58809. height: math.unit(1.7, "meters"),
  58810. weight: math.unit(70, "kg"),
  58811. name: "Dressed",
  58812. image: {
  58813. source: "./media/characters/otreus/magpie-dressed.svg",
  58814. extra: 691/672,
  58815. bottom: 116/807
  58816. },
  58817. form: "magpie",
  58818. default: true
  58819. },
  58820. magpie_nude: {
  58821. height: math.unit(1.7, "meters"),
  58822. weight: math.unit(70, "kg"),
  58823. name: "Nude",
  58824. image: {
  58825. source: "./media/characters/otreus/magpie-nude.svg",
  58826. extra: 691/672,
  58827. bottom: 116/807
  58828. },
  58829. form: "magpie",
  58830. },
  58831. magpie_dressedLewd: {
  58832. height: math.unit(1.7, "meters"),
  58833. weight: math.unit(70, "kg"),
  58834. name: "Dressed (Lewd)",
  58835. image: {
  58836. source: "./media/characters/otreus/magpie-dressed-lewd.svg",
  58837. extra: 691/672,
  58838. bottom: 116/807
  58839. },
  58840. form: "magpie",
  58841. },
  58842. magpie_nudeLewd: {
  58843. height: math.unit(1.7, "meters"),
  58844. weight: math.unit(70, "kg"),
  58845. name: "Nude (Lewd)",
  58846. image: {
  58847. source: "./media/characters/otreus/magpie-nude-lewd.svg",
  58848. extra: 691/672,
  58849. bottom: 116/807
  58850. },
  58851. form: "magpie",
  58852. },
  58853. magpie_leftFoot: {
  58854. height: math.unit(1.58, "feet"),
  58855. name: "Left Foot",
  58856. image: {
  58857. source: "./media/characters/otreus/magpie-left-foot.svg"
  58858. },
  58859. form: "magpie",
  58860. },
  58861. magpie_rightFoot: {
  58862. height: math.unit(1.58, "feet"),
  58863. name: "Right Foot",
  58864. image: {
  58865. source: "./media/characters/otreus/magpie-right-foot.svg"
  58866. },
  58867. form: "magpie",
  58868. },
  58869. magpie_wingspan: {
  58870. height: math.unit(2, "meters"),
  58871. weight: math.unit(70, "kg"),
  58872. name: "Wingspan",
  58873. image: {
  58874. source: "./media/characters/otreus/magpie-wingspan.svg"
  58875. },
  58876. extraAttributes: {
  58877. "wingspan": {
  58878. name: "Wingspan",
  58879. power: 1,
  58880. type: "length",
  58881. base: math.unit(3.35, "meters")
  58882. },
  58883. },
  58884. form: "magpie",
  58885. },
  58886. hippogriff_dressed: {
  58887. height: math.unit(1.7, "meters"),
  58888. weight: math.unit(70, "kg"),
  58889. name: "Dressed",
  58890. image: {
  58891. source: "./media/characters/otreus/hippogriff-dressed.svg",
  58892. extra: 710/689,
  58893. bottom: 67/777
  58894. },
  58895. form: "hippogriff",
  58896. default: true
  58897. },
  58898. hippogriff_nude: {
  58899. height: math.unit(1.7, "meters"),
  58900. weight: math.unit(70, "kg"),
  58901. name: "Nude",
  58902. image: {
  58903. source: "./media/characters/otreus/hippogriff-nude.svg",
  58904. extra: 710/689,
  58905. bottom: 67/777
  58906. },
  58907. form: "hippogriff",
  58908. },
  58909. hippogriff_dressedLewd: {
  58910. height: math.unit(1.7, "meters"),
  58911. weight: math.unit(70, "kg"),
  58912. name: "Dressed (Lewd)",
  58913. image: {
  58914. source: "./media/characters/otreus/hippogriff-dressed-lewd.svg",
  58915. extra: 710/689,
  58916. bottom: 67/777
  58917. },
  58918. form: "hippogriff",
  58919. },
  58920. hippogriff_nudeLewd: {
  58921. height: math.unit(1.7, "meters"),
  58922. weight: math.unit(70, "kg"),
  58923. name: "Nude (Lewd)",
  58924. image: {
  58925. source: "./media/characters/otreus/hippogriff-nude-lewd.svg",
  58926. extra: 710/689,
  58927. bottom: 67/777
  58928. },
  58929. form: "hippogriff",
  58930. },
  58931. },
  58932. [
  58933. {
  58934. name: "Original Size",
  58935. height: math.unit(1.7, "meters"),
  58936. allForms: true
  58937. },
  58938. {
  58939. name: "Incognito Size",
  58940. height: math.unit(2, "meters"),
  58941. allForms: true
  58942. },
  58943. {
  58944. name: "Mega",
  58945. height: math.unit(2, "km"),
  58946. allForms: true
  58947. },
  58948. {
  58949. name: "Mega+",
  58950. height: math.unit(40, "km"),
  58951. allForms: true
  58952. },
  58953. {
  58954. name: "Giga",
  58955. height: math.unit(250, "km"),
  58956. allForms: true
  58957. },
  58958. {
  58959. name: "Giga+",
  58960. height: math.unit(3000, "km"),
  58961. allForms: true
  58962. },
  58963. {
  58964. name: "Terra",
  58965. height: math.unit(20000, "km"),
  58966. allForms: true
  58967. },
  58968. {
  58969. name: "Solar (Home Size)",
  58970. height: math.unit(3e6, "km"),
  58971. allForms: true,
  58972. default: true
  58973. },
  58974. ],
  58975. {
  58976. "magpie": {
  58977. name: "Magpie",
  58978. default: true
  58979. },
  58980. "hippogriff": {
  58981. name: "Hippogriff",
  58982. },
  58983. }
  58984. ))
  58985. characterMakers.push(() => makeCharacter(
  58986. { name: "Thalia", species: ["flying-fox", "fox", "deity"], tags: ["anthro"] },
  58987. {
  58988. frontDressed: {
  58989. height: math.unit(1.8, "meters"),
  58990. weight: math.unit(90, "kg"),
  58991. name: "Front (Dressed)",
  58992. image: {
  58993. source: "./media/characters/thalia/front-dressed.svg",
  58994. extra: 478/402,
  58995. bottom: 55/533
  58996. }
  58997. },
  58998. backDressed: {
  58999. height: math.unit(1.8, "meters"),
  59000. weight: math.unit(90, "kg"),
  59001. name: "Back (Dressed)",
  59002. image: {
  59003. source: "./media/characters/thalia/back-dressed.svg",
  59004. extra: 500/424,
  59005. bottom: 15/515
  59006. }
  59007. },
  59008. frontNude: {
  59009. height: math.unit(1.8, "meters"),
  59010. weight: math.unit(90, "kg"),
  59011. name: "Front (Nude)",
  59012. image: {
  59013. source: "./media/characters/thalia/front-nude.svg",
  59014. extra: 478/402,
  59015. bottom: 55/533
  59016. }
  59017. },
  59018. backNude: {
  59019. height: math.unit(1.8, "meters"),
  59020. weight: math.unit(90, "kg"),
  59021. name: "Back (Nude)",
  59022. image: {
  59023. source: "./media/characters/thalia/back-nude.svg",
  59024. extra: 500/424,
  59025. bottom: 15/515
  59026. }
  59027. },
  59028. },
  59029. [
  59030. {
  59031. name: "Incognito",
  59032. height: math.unit(3, "meters")
  59033. },
  59034. {
  59035. name: "Macro",
  59036. height: math.unit(500, "meters")
  59037. },
  59038. {
  59039. name: "Mega",
  59040. height: math.unit(5, "km")
  59041. },
  59042. {
  59043. name: "Mega+",
  59044. height: math.unit(30, "km")
  59045. },
  59046. {
  59047. name: "Giga",
  59048. height: math.unit(350, "km")
  59049. },
  59050. {
  59051. name: "Giga+",
  59052. height: math.unit(4000, "km")
  59053. },
  59054. {
  59055. name: "Terra",
  59056. height: math.unit(35000, "km")
  59057. },
  59058. {
  59059. name: "Original Size",
  59060. height: math.unit(130000, "km")
  59061. },
  59062. {
  59063. name: "Solar (Home Size)",
  59064. height: math.unit(4e6, "km"),
  59065. default: true
  59066. },
  59067. ]
  59068. ))
  59069. characterMakers.push(() => makeCharacter(
  59070. { name: "Shango", species: ["african-wild-dog", "deity"], tags: ["anthro"] },
  59071. {
  59072. front: {
  59073. height: math.unit(1.8, "meters"),
  59074. weight: math.unit(95, "kg"),
  59075. name: "Front",
  59076. image: {
  59077. source: "./media/characters/shango/front.svg",
  59078. extra: 1925/1774,
  59079. bottom: 67/1992
  59080. }
  59081. },
  59082. back: {
  59083. height: math.unit(1.8, "meters"),
  59084. weight: math.unit(95, "kg"),
  59085. name: "Back",
  59086. image: {
  59087. source: "./media/characters/shango/back.svg",
  59088. extra: 1915/1766,
  59089. bottom: 52/1967
  59090. }
  59091. },
  59092. frontLewd: {
  59093. height: math.unit(1.8, "meters"),
  59094. weight: math.unit(95, "kg"),
  59095. name: "Front (Lewd)",
  59096. image: {
  59097. source: "./media/characters/shango/front-lewd.svg",
  59098. extra: 1925/1774,
  59099. bottom: 67/1992
  59100. }
  59101. },
  59102. backLewd: {
  59103. height: math.unit(1.8, "meters"),
  59104. weight: math.unit(95, "kg"),
  59105. name: "Back (Lewd)",
  59106. image: {
  59107. source: "./media/characters/shango/back-lewd.svg",
  59108. extra: 1915/1766,
  59109. bottom: 52/1967
  59110. }
  59111. },
  59112. maw: {
  59113. height: math.unit(1.64, "feet"),
  59114. name: "Maw",
  59115. image: {
  59116. source: "./media/characters/shango/maw.svg"
  59117. }
  59118. },
  59119. dick: {
  59120. height: math.unit(2.14, "feet"),
  59121. name: "Dick",
  59122. image: {
  59123. source: "./media/characters/shango/dick.svg"
  59124. }
  59125. },
  59126. },
  59127. [
  59128. {
  59129. name: "Incognito",
  59130. height: math.unit(1.8, "meters")
  59131. },
  59132. {
  59133. name: "Home Size",
  59134. height: math.unit(60, "meters"),
  59135. default: true
  59136. },
  59137. {
  59138. name: "Macro",
  59139. height: math.unit(450, "meters")
  59140. },
  59141. {
  59142. name: "Mega",
  59143. height: math.unit(6, "km")
  59144. },
  59145. {
  59146. name: "Mega+",
  59147. height: math.unit(35, "km")
  59148. },
  59149. {
  59150. name: "Giga",
  59151. height: math.unit(500, "km")
  59152. },
  59153. {
  59154. name: "Giga+",
  59155. height: math.unit(5000, "km")
  59156. },
  59157. {
  59158. name: "Terra",
  59159. height: math.unit(60000, "km")
  59160. },
  59161. {
  59162. name: "Terra+",
  59163. height: math.unit(400000, "km")
  59164. },
  59165. ]
  59166. ))
  59167. characterMakers.push(() => makeCharacter(
  59168. { name: "Osiris (Gryphon)", species: ["gryphon", "snow-leopard", "peregrine-falcon", "deity"], tags: ["anthro"] },
  59169. {
  59170. front: {
  59171. height: math.unit(2, "meters"),
  59172. weight: math.unit(95, "kg"),
  59173. name: "Front",
  59174. image: {
  59175. source: "./media/characters/osiris-gryphon/front.svg",
  59176. extra: 1508/1313,
  59177. bottom: 87/1595
  59178. }
  59179. },
  59180. back: {
  59181. height: math.unit(2, "meters"),
  59182. weight: math.unit(95, "kg"),
  59183. name: "Back",
  59184. image: {
  59185. source: "./media/characters/osiris-gryphon/back.svg",
  59186. extra: 1436/1309,
  59187. bottom: 64/1500
  59188. }
  59189. },
  59190. frontLewd: {
  59191. height: math.unit(2, "meters"),
  59192. weight: math.unit(95, "kg"),
  59193. name: "Front-lewd",
  59194. image: {
  59195. source: "./media/characters/osiris-gryphon/front-lewd.svg",
  59196. extra: 1508/1313,
  59197. bottom: 87/1595
  59198. }
  59199. },
  59200. wing: {
  59201. height: math.unit(6.3333, "feet"),
  59202. name: "Wing",
  59203. image: {
  59204. source: "./media/characters/osiris-gryphon/wing.svg"
  59205. }
  59206. },
  59207. },
  59208. [
  59209. {
  59210. name: "Incognito",
  59211. height: math.unit(2, "meters")
  59212. },
  59213. {
  59214. name: "Home Size",
  59215. height: math.unit(30, "meters"),
  59216. default: true
  59217. },
  59218. {
  59219. name: "Macro",
  59220. height: math.unit(100, "meters")
  59221. },
  59222. {
  59223. name: "Macro+",
  59224. height: math.unit(350, "meters")
  59225. },
  59226. {
  59227. name: "Mega",
  59228. height: math.unit(40, "km")
  59229. },
  59230. {
  59231. name: "Giga",
  59232. height: math.unit(300, "km")
  59233. },
  59234. {
  59235. name: "Giga+",
  59236. height: math.unit(2000, "km")
  59237. },
  59238. {
  59239. name: "Terra",
  59240. height: math.unit(30000, "km")
  59241. },
  59242. ]
  59243. ))
  59244. characterMakers.push(() => makeCharacter(
  59245. { name: "Atlas (Dragon)", species: ["dragon", "deity"], tags: ["anthro"] },
  59246. {
  59247. front: {
  59248. height: math.unit(2.5, "meters"),
  59249. weight: math.unit(200, "kg"),
  59250. name: "Front",
  59251. image: {
  59252. source: "./media/characters/atlas-dragon/front.svg",
  59253. extra: 745/462,
  59254. bottom: 36/781
  59255. }
  59256. },
  59257. back: {
  59258. height: math.unit(2.5, "meters"),
  59259. weight: math.unit(200, "kg"),
  59260. name: "Back",
  59261. image: {
  59262. source: "./media/characters/atlas-dragon/back.svg",
  59263. extra: 848/822,
  59264. bottom: 57/905
  59265. }
  59266. },
  59267. frontLewd: {
  59268. height: math.unit(2.5, "meters"),
  59269. weight: math.unit(200, "kg"),
  59270. name: "Front (Lewd)",
  59271. image: {
  59272. source: "./media/characters/atlas-dragon/front-lewd.svg",
  59273. extra: 745/462,
  59274. bottom: 36/781
  59275. }
  59276. },
  59277. backLewd: {
  59278. height: math.unit(2.5, "meters"),
  59279. weight: math.unit(200, "kg"),
  59280. name: "Back (Lewd)",
  59281. image: {
  59282. source: "./media/characters/atlas-dragon/back-lewd.svg",
  59283. extra: 848/822,
  59284. bottom: 57/905
  59285. }
  59286. },
  59287. },
  59288. [
  59289. {
  59290. name: "Incognito",
  59291. height: math.unit(2.5, "meters")
  59292. },
  59293. {
  59294. name: "Small Macro",
  59295. height: math.unit(50, "meters")
  59296. },
  59297. {
  59298. name: "Macro",
  59299. height: math.unit(350, "meters")
  59300. },
  59301. {
  59302. name: "Mega",
  59303. height: math.unit(5.5, "kilometers")
  59304. },
  59305. {
  59306. name: "Mega+",
  59307. height: math.unit(50, "km")
  59308. },
  59309. {
  59310. name: "Giga",
  59311. height: math.unit(350, "km")
  59312. },
  59313. {
  59314. name: "Giga+",
  59315. height: math.unit(2000, "km")
  59316. },
  59317. {
  59318. name: "Giga++",
  59319. height: math.unit(6500, "km")
  59320. },
  59321. {
  59322. name: "Terra",
  59323. height: math.unit(30000, "km")
  59324. },
  59325. {
  59326. name: "Terra+",
  59327. height: math.unit(250000, "km")
  59328. },
  59329. {
  59330. name: "True Size",
  59331. height: math.unit(100, "multiverses"),
  59332. default: true
  59333. },
  59334. ]
  59335. ))
  59336. characterMakers.push(() => makeCharacter(
  59337. { name: "Chey", species: ["coyote", "deity"], tags: ["anthro"] },
  59338. {
  59339. front: {
  59340. height: math.unit(1.8, "m"),
  59341. weight: math.unit(120, "kg"),
  59342. name: "Front",
  59343. image: {
  59344. source: "./media/characters/chey/front.svg",
  59345. extra: 1359/1270,
  59346. bottom: 18/1377
  59347. }
  59348. },
  59349. arm: {
  59350. height: math.unit(2.05, "feet"),
  59351. name: "Arm",
  59352. image: {
  59353. source: "./media/characters/chey/arm.svg"
  59354. }
  59355. },
  59356. head: {
  59357. height: math.unit(1.89, "feet"),
  59358. name: "Head",
  59359. image: {
  59360. source: "./media/characters/chey/head.svg"
  59361. }
  59362. },
  59363. },
  59364. [
  59365. {
  59366. name: "Original Size",
  59367. height: math.unit(5, "cm")
  59368. },
  59369. {
  59370. name: "Incognito Size",
  59371. height: math.unit(2.4, "m")
  59372. },
  59373. {
  59374. name: "Home Size",
  59375. height: math.unit(200, "meters"),
  59376. default: true
  59377. },
  59378. {
  59379. name: "Mega",
  59380. height: math.unit(2, "km")
  59381. },
  59382. {
  59383. name: "Giga (Preferred Size)",
  59384. height: math.unit(2000, "km")
  59385. },
  59386. {
  59387. name: "Giga+",
  59388. height: math.unit(6000, "km")
  59389. },
  59390. {
  59391. name: "Terra",
  59392. height: math.unit(17000, "km")
  59393. },
  59394. {
  59395. name: "Terra+",
  59396. height: math.unit(75000, "km")
  59397. },
  59398. {
  59399. name: "Terra++",
  59400. height: math.unit(225000, "km")
  59401. },
  59402. ]
  59403. ))
  59404. characterMakers.push(() => makeCharacter(
  59405. { name: "Ragnarok", species: ["suicune"], tags: ["taur"] },
  59406. {
  59407. side: {
  59408. height: math.unit(7.8, "meters"),
  59409. name: "Side",
  59410. image: {
  59411. source: "./media/characters/ragnarok/side.svg",
  59412. extra: 725/621,
  59413. bottom: 72/797
  59414. }
  59415. },
  59416. },
  59417. [
  59418. {
  59419. name: "Normal",
  59420. height: math.unit(7.8, "meters"),
  59421. default: true
  59422. },
  59423. ]
  59424. ))
  59425. characterMakers.push(() => makeCharacter(
  59426. { name: "Nima", species: ["hyena", "shark", "deity"], tags: ["anthro"] },
  59427. {
  59428. hyena_front: {
  59429. height: math.unit(2.1, "meters"),
  59430. weight: math.unit(110, "kg"),
  59431. name: "Front",
  59432. image: {
  59433. source: "./media/characters/nima/hyena-front.svg",
  59434. extra: 1904/1796,
  59435. bottom: 67/1971
  59436. },
  59437. form: "hyena",
  59438. },
  59439. hyena_back: {
  59440. height: math.unit(2.1, "meters"),
  59441. weight: math.unit(110, "kg"),
  59442. name: "Back",
  59443. image: {
  59444. source: "./media/characters/nima/hyena-back.svg",
  59445. extra: 1964/1884,
  59446. bottom: 35/1999
  59447. },
  59448. form: "hyena",
  59449. },
  59450. shark_front: {
  59451. height: math.unit(1.95, "meters"),
  59452. weight: math.unit(110, "kg"),
  59453. name: "Front",
  59454. image: {
  59455. source: "./media/characters/nima/shark-front.svg",
  59456. extra: 2238/2013,
  59457. bottom: 0/223
  59458. },
  59459. form: "shark",
  59460. },
  59461. paw: {
  59462. height: math.unit(1, "feet"),
  59463. name: "Paw",
  59464. image: {
  59465. source: "./media/characters/nima/paw.svg"
  59466. }
  59467. },
  59468. circlet: {
  59469. height: math.unit(0.3, "feet"),
  59470. name: "Circlet",
  59471. image: {
  59472. source: "./media/characters/nima/circlet.svg"
  59473. }
  59474. },
  59475. necklace: {
  59476. height: math.unit(1.2, "feet"),
  59477. name: "Necklace",
  59478. image: {
  59479. source: "./media/characters/nima/necklace.svg"
  59480. }
  59481. },
  59482. bracelet: {
  59483. height: math.unit(0.51, "feet"),
  59484. name: "Bracelet",
  59485. image: {
  59486. source: "./media/characters/nima/bracelet.svg"
  59487. }
  59488. },
  59489. armband: {
  59490. height: math.unit(1.3, "feet"),
  59491. name: "Armband",
  59492. image: {
  59493. source: "./media/characters/nima/armband.svg"
  59494. }
  59495. },
  59496. },
  59497. [
  59498. {
  59499. name: "Incognito",
  59500. height: math.unit(2.1, "meters"),
  59501. allForms: true
  59502. },
  59503. {
  59504. name: "Small Macro",
  59505. height: math.unit(50, "meters"),
  59506. allForms: true
  59507. },
  59508. {
  59509. name: "Macro",
  59510. height: math.unit(200, "meters"),
  59511. allForms: true
  59512. },
  59513. {
  59514. name: "Mega",
  59515. height: math.unit(2.5, "km"),
  59516. allForms: true
  59517. },
  59518. {
  59519. name: "Mega+",
  59520. height: math.unit(30, "km"),
  59521. allForms: true
  59522. },
  59523. {
  59524. name: "Giga (Home Size)",
  59525. height: math.unit(400, "km"),
  59526. allForms: true,
  59527. default: true
  59528. },
  59529. {
  59530. name: "Giga+",
  59531. height: math.unit(2500, "km"),
  59532. allForms: true
  59533. },
  59534. {
  59535. name: "Giga++",
  59536. height: math.unit(8000, "km"),
  59537. allForms: true
  59538. },
  59539. {
  59540. name: "Terra",
  59541. height: math.unit(20000, "km"),
  59542. allForms: true
  59543. },
  59544. {
  59545. name: "Terra+",
  59546. height: math.unit(70000, "km"),
  59547. allForms: true
  59548. },
  59549. {
  59550. name: "Terra++",
  59551. height: math.unit(600000, "km"),
  59552. allForms: true
  59553. },
  59554. {
  59555. name: "Galactic",
  59556. height: math.unit(40, "galaxies"),
  59557. allForms: true
  59558. },
  59559. {
  59560. name: "Universal",
  59561. height: math.unit(40, "universes"),
  59562. allForms: true
  59563. },
  59564. ],
  59565. {
  59566. "hyena": {
  59567. name: "Hyena",
  59568. default: true
  59569. },
  59570. "shark": {
  59571. name: "Shark",
  59572. },
  59573. }
  59574. ))
  59575. characterMakers.push(() => makeCharacter(
  59576. { name: "Adelaide", species: ["deinonychus"], tags: ["anthro", "feral"] },
  59577. {
  59578. anthro_front: {
  59579. height: math.unit(1.5, "meters"),
  59580. name: "Front",
  59581. image: {
  59582. source: "./media/characters/adelaide/anthro-front.svg",
  59583. extra: 860/783,
  59584. bottom: 60/920
  59585. },
  59586. form: "anthro",
  59587. default: true
  59588. },
  59589. hand: {
  59590. height: math.unit(0.65, "feet"),
  59591. name: "Hand",
  59592. image: {
  59593. source: "./media/characters/adelaide/hand.svg"
  59594. },
  59595. form: "anthro"
  59596. },
  59597. foot: {
  59598. height: math.unit(1.38 * 259 / 314, "feet"),
  59599. name: "Foot",
  59600. image: {
  59601. source: "./media/characters/adelaide/foot.svg",
  59602. extra: 259/259,
  59603. bottom: 55/314
  59604. },
  59605. form: "anthro"
  59606. },
  59607. feather: {
  59608. height: math.unit(0.85, "feet"),
  59609. name: "Feather",
  59610. image: {
  59611. source: "./media/characters/adelaide/feather.svg"
  59612. },
  59613. form: "anthro"
  59614. },
  59615. feral_side: {
  59616. height: math.unit(1, "meters"),
  59617. name: "Side",
  59618. image: {
  59619. source: "./media/characters/adelaide/feral-side.svg",
  59620. extra: 550/467,
  59621. bottom: 37/587
  59622. },
  59623. form: "feral",
  59624. default: true
  59625. },
  59626. feral_hand: {
  59627. height: math.unit(0.58, "feet"),
  59628. name: "Hand",
  59629. image: {
  59630. source: "./media/characters/adelaide/hand.svg"
  59631. },
  59632. form: "feral"
  59633. },
  59634. feral_foot: {
  59635. height: math.unit(1.2 * 259 / 314, "feet"),
  59636. name: "Foot",
  59637. image: {
  59638. source: "./media/characters/adelaide/foot.svg",
  59639. extra: 259/259,
  59640. bottom: 55/314
  59641. },
  59642. form: "feral"
  59643. },
  59644. feral_feather: {
  59645. height: math.unit(0.63, "feet"),
  59646. name: "Feather",
  59647. image: {
  59648. source: "./media/characters/adelaide/feather.svg"
  59649. },
  59650. form: "feral"
  59651. },
  59652. },
  59653. [
  59654. {
  59655. name: "Normal",
  59656. height: math.unit(1.5, "meters"),
  59657. form: "anthro",
  59658. default: true
  59659. },
  59660. {
  59661. name: "Normal",
  59662. height: math.unit(1, "meters"),
  59663. form: "feral",
  59664. default: true
  59665. },
  59666. ],
  59667. {
  59668. "anthro": {
  59669. name: "Anthro",
  59670. default: true
  59671. },
  59672. "feral": {
  59673. name: "Feral",
  59674. },
  59675. }
  59676. ))
  59677. characterMakers.push(() => makeCharacter(
  59678. { name: "Goa", species: ["chocobo"], tags: ["taur"] },
  59679. {
  59680. front: {
  59681. height: math.unit(2.5, "meters"),
  59682. name: "Front",
  59683. image: {
  59684. source: "./media/characters/goa/front.svg",
  59685. extra: 1109/1013,
  59686. bottom: 150/1259
  59687. }
  59688. },
  59689. },
  59690. [
  59691. {
  59692. name: "Normal",
  59693. height: math.unit(2.5, "meters"),
  59694. default: true
  59695. },
  59696. ]
  59697. ))
  59698. characterMakers.push(() => makeCharacter(
  59699. { name: "Kiki (Weavile)", species: ["weavile"], tags: ["anthro"] },
  59700. {
  59701. front: {
  59702. height: math.unit(2, "meters"),
  59703. weight: math.unit(100, "kg"),
  59704. name: "Front",
  59705. image: {
  59706. source: "./media/characters/kiki-weavile/front.svg",
  59707. extra: 357/332,
  59708. bottom: 60/417
  59709. }
  59710. },
  59711. },
  59712. [
  59713. {
  59714. name: "Normal",
  59715. height: math.unit(2, "meters"),
  59716. default: true
  59717. },
  59718. ]
  59719. ))
  59720. characterMakers.push(() => makeCharacter(
  59721. { name: "Liza", species: ["stilio"], tags: ["taur"] },
  59722. {
  59723. side: {
  59724. height: math.unit(1.6, "meters"),
  59725. name: "Side",
  59726. image: {
  59727. source: "./media/characters/liza/side.svg",
  59728. extra: 943/915,
  59729. bottom: 72/1015
  59730. }
  59731. },
  59732. },
  59733. [
  59734. {
  59735. name: "Normal",
  59736. height: math.unit(1.6, "meters"),
  59737. default: true
  59738. },
  59739. ]
  59740. ))
  59741. characterMakers.push(() => makeCharacter(
  59742. { name: "Persephone Sweetbreath", species: ["hyena", "gnoll"], tags: ["taur"] },
  59743. {
  59744. side: {
  59745. height: math.unit(2.5, "meters"),
  59746. preyCapacity: math.unit(1, "people"),
  59747. name: "Side",
  59748. image: {
  59749. source: "./media/characters/persephone-sweetbreath/side.svg",
  59750. extra: 796/700,
  59751. bottom: 44/840
  59752. }
  59753. },
  59754. sideVore: {
  59755. height: math.unit(2.5, "meters"),
  59756. preyCapacity: math.unit(1, "people"),
  59757. name: "Side (Full)",
  59758. image: {
  59759. source: "./media/characters/persephone-sweetbreath/side-vore.svg",
  59760. extra: 796/700,
  59761. bottom: 44/840
  59762. }
  59763. },
  59764. },
  59765. [
  59766. {
  59767. name: "Normal",
  59768. height: math.unit(2.5, "meters"),
  59769. default: true
  59770. },
  59771. ]
  59772. ))
  59773. characterMakers.push(() => makeCharacter(
  59774. { name: "Pierce", species: ["dragon"], tags: ["feral"] },
  59775. {
  59776. front: {
  59777. height: math.unit(32, "meters"),
  59778. name: "Front",
  59779. image: {
  59780. source: "./media/characters/pierce/front.svg",
  59781. extra: 1695/1475,
  59782. bottom: 185/1880
  59783. }
  59784. },
  59785. side: {
  59786. height: math.unit(32, "meters"),
  59787. name: "Side",
  59788. image: {
  59789. source: "./media/characters/pierce/side.svg",
  59790. extra: 974/859,
  59791. bottom: 43/1017
  59792. }
  59793. },
  59794. frontWingless: {
  59795. height: math.unit(32, "meters"),
  59796. name: "Front (Wingless)",
  59797. image: {
  59798. source: "./media/characters/pierce/front-wingless.svg",
  59799. extra: 1695/1475,
  59800. bottom: 185/1880
  59801. }
  59802. },
  59803. sideWingless: {
  59804. height: math.unit(32, "meters"),
  59805. name: "Side (Wingless)",
  59806. image: {
  59807. source: "./media/characters/pierce/side-wingless.svg",
  59808. extra: 974/859,
  59809. bottom: 43/1017
  59810. }
  59811. },
  59812. maw: {
  59813. height: math.unit(19.3, "meters"),
  59814. name: "Maw",
  59815. image: {
  59816. source: "./media/characters/pierce/maw.svg"
  59817. }
  59818. },
  59819. },
  59820. [
  59821. {
  59822. name: "Small",
  59823. height: math.unit(8.5, "meters")
  59824. },
  59825. {
  59826. name: "Normal",
  59827. height: math.unit(32, "meters"),
  59828. default: true
  59829. },
  59830. ]
  59831. ))
  59832. characterMakers.push(() => makeCharacter(
  59833. { name: "Shira", species: ["cobra", "deity", "dragon"], tags: ["anthro"] },
  59834. {
  59835. front: {
  59836. height: math.unit(2.3, "meters"),
  59837. weight: math.unit(165, "kg"),
  59838. name: "Front",
  59839. image: {
  59840. source: "./media/characters/shira/front.svg",
  59841. extra: 924/919,
  59842. bottom: 17/941
  59843. },
  59844. form: "cobra",
  59845. default: true
  59846. },
  59847. back: {
  59848. height: math.unit(2.3, "meters"),
  59849. weight: math.unit(165, "kg"),
  59850. name: "Back",
  59851. image: {
  59852. source: "./media/characters/shira/back.svg",
  59853. extra: 928/922,
  59854. bottom: 18/946
  59855. },
  59856. form: "cobra"
  59857. },
  59858. frontLewd: {
  59859. height: math.unit(2.3, "meters"),
  59860. weight: math.unit(165, "kg"),
  59861. name: "Front (Lewd)",
  59862. image: {
  59863. source: "./media/characters/shira/front-lewd.svg",
  59864. extra: 924/919,
  59865. bottom: 17/941
  59866. },
  59867. form: "cobra"
  59868. },
  59869. backLewd: {
  59870. height: math.unit(2.3, "meters"),
  59871. weight: math.unit(165, "kg"),
  59872. name: "Back (Lewd)",
  59873. image: {
  59874. source: "./media/characters/shira/back-lewd.svg",
  59875. extra: 928/922,
  59876. bottom: 18/946
  59877. },
  59878. form: "cobra"
  59879. },
  59880. maw: {
  59881. height: math.unit(1.14, "feet"),
  59882. name: "Maw",
  59883. image: {
  59884. source: "./media/characters/shira/maw.svg"
  59885. },
  59886. form: "cobra"
  59887. },
  59888. magma_front: {
  59889. height: math.unit(2.3, "meters"),
  59890. weight: math.unit(165, "kg"),
  59891. name: "Front",
  59892. image: {
  59893. source: "./media/characters/shira/magma-front.svg",
  59894. extra: 1870/1693,
  59895. bottom: 24/1894
  59896. },
  59897. form: "magma",
  59898. },
  59899. magma_back: {
  59900. height: math.unit(2.3, "meters"),
  59901. weight: math.unit(165, "kg"),
  59902. name: "Back",
  59903. image: {
  59904. source: "./media/characters/shira/magma-back.svg",
  59905. extra: 1918/1756,
  59906. bottom: 46/1964
  59907. },
  59908. form: "magma",
  59909. },
  59910. },
  59911. [
  59912. {
  59913. name: "Incognito",
  59914. height: math.unit(2.3, "meters"),
  59915. allForms: true
  59916. },
  59917. {
  59918. name: "Home Size",
  59919. height: math.unit(150, "meters"),
  59920. default: true,
  59921. allForms: true
  59922. },
  59923. {
  59924. name: "Macro",
  59925. height: math.unit(2, "km"),
  59926. allForms: true
  59927. },
  59928. {
  59929. name: "Mega",
  59930. height: math.unit(30, "km"),
  59931. allForms: true
  59932. },
  59933. {
  59934. name: "Giga",
  59935. height: math.unit(450, "km"),
  59936. allForms: true
  59937. },
  59938. {
  59939. name: "Giga+",
  59940. height: math.unit(3000, "km"),
  59941. allForms: true
  59942. },
  59943. {
  59944. name: "Giga++",
  59945. height: math.unit(6000, "km"),
  59946. allForms: true
  59947. },
  59948. {
  59949. name: "Terra",
  59950. height: math.unit(80000, "km"),
  59951. allForms: true
  59952. },
  59953. {
  59954. name: "Terra+",
  59955. height: math.unit(350000, "km"),
  59956. allForms: true
  59957. },
  59958. {
  59959. name: "Solar",
  59960. height: math.unit(1e6, "km"),
  59961. allForms: true
  59962. },
  59963. ],
  59964. {
  59965. "cobra": {
  59966. name: "Cobra",
  59967. default: true
  59968. },
  59969. "magma": {
  59970. name: "Magma Dragon",
  59971. },
  59972. }
  59973. ))
  59974. characterMakers.push(() => makeCharacter(
  59975. { name: "Daxerios", species: ["wolf", "cerberus", "deity"], tags: ["anthro"] },
  59976. {
  59977. front: {
  59978. height: math.unit(2, "meters"),
  59979. weight: math.unit(160, "kg"),
  59980. name: "Front",
  59981. image: {
  59982. source: "./media/characters/daxerios/front.svg",
  59983. extra: 1334/1277,
  59984. bottom: 45/1379
  59985. }
  59986. },
  59987. frontLewd: {
  59988. height: math.unit(2, "meters"),
  59989. weight: math.unit(160, "kg"),
  59990. name: "Front (Lewd)",
  59991. image: {
  59992. source: "./media/characters/daxerios/front-lewd.svg",
  59993. extra: 1334/1277,
  59994. bottom: 45/1379
  59995. }
  59996. },
  59997. dick: {
  59998. height: math.unit(2.35, "feet"),
  59999. name: "Dick",
  60000. image: {
  60001. source: "./media/characters/daxerios/dick.svg"
  60002. }
  60003. },
  60004. },
  60005. [
  60006. {
  60007. name: "\"Small\"",
  60008. height: math.unit(5, "meters")
  60009. },
  60010. {
  60011. name: "Original Size",
  60012. height: math.unit(500, "meters"),
  60013. default: true
  60014. },
  60015. {
  60016. name: "Mega",
  60017. height: math.unit(2, "km")
  60018. },
  60019. {
  60020. name: "Mega+",
  60021. height: math.unit(35, "km")
  60022. },
  60023. {
  60024. name: "Giga",
  60025. height: math.unit(250, "km")
  60026. },
  60027. {
  60028. name: "Giga+",
  60029. height: math.unit(3000, "km")
  60030. },
  60031. {
  60032. name: "Terra",
  60033. height: math.unit(25000, "km")
  60034. },
  60035. {
  60036. name: "Terra+",
  60037. height: math.unit(300000, "km")
  60038. },
  60039. {
  60040. name: "Solar",
  60041. height: math.unit(1e6, "km")
  60042. },
  60043. ]
  60044. ))
  60045. characterMakers.push(() => makeCharacter(
  60046. { name: "Caveat", species: ["luxray", "plush"], tags: ["anthro"] },
  60047. {
  60048. front: {
  60049. height: math.unit(8 + 4/12, "feet"),
  60050. weight: math.unit(464, "lb"),
  60051. name: "Front",
  60052. image: {
  60053. source: "./media/characters/caveat/front.svg",
  60054. extra: 1861/1678,
  60055. bottom: 40/1901
  60056. }
  60057. },
  60058. },
  60059. [
  60060. {
  60061. name: "Normal",
  60062. height: math.unit(8 + 4/12, "feet"),
  60063. default: true
  60064. },
  60065. ]
  60066. ))
  60067. characterMakers.push(() => makeCharacter(
  60068. { name: "Centbair", species: ["kardox"], tags: ["anthro"] },
  60069. {
  60070. front: {
  60071. height: math.unit(12, "feet"),
  60072. weight: math.unit(1800, "lb"),
  60073. name: "Front",
  60074. image: {
  60075. source: "./media/characters/centbair/front.svg",
  60076. extra: 781/663,
  60077. bottom: 25/806
  60078. }
  60079. },
  60080. frontNsfw: {
  60081. height: math.unit(12, "feet"),
  60082. weight: math.unit(1800, "lb"),
  60083. name: "Front (NSFW)",
  60084. image: {
  60085. source: "./media/characters/centbair/front-nsfw.svg",
  60086. extra: 781/663,
  60087. bottom: 25/806
  60088. }
  60089. },
  60090. back: {
  60091. height: math.unit(12, "feet"),
  60092. weight: math.unit(1800, "lb"),
  60093. name: "Back",
  60094. image: {
  60095. source: "./media/characters/centbair/back.svg",
  60096. extra: 808/761,
  60097. bottom: 19/827
  60098. }
  60099. },
  60100. dick: {
  60101. height: math.unit(6.5, "feet"),
  60102. name: "Dick",
  60103. image: {
  60104. source: "./media/characters/centbair/dick.svg"
  60105. }
  60106. },
  60107. slit: {
  60108. height: math.unit(3.25, "feet"),
  60109. name: "Slit",
  60110. image: {
  60111. source: "./media/characters/centbair/slit.svg"
  60112. }
  60113. },
  60114. },
  60115. [
  60116. {
  60117. name: "Normal",
  60118. height: math.unit(12, "feet"),
  60119. default: true
  60120. },
  60121. ]
  60122. ))
  60123. characterMakers.push(() => makeCharacter(
  60124. { name: "Andy", species: ["tanuki"], tags: ["anthro"] },
  60125. {
  60126. front: {
  60127. height: math.unit(5 + 7/12, "feet"),
  60128. name: "Front",
  60129. image: {
  60130. source: "./media/characters/andy/front.svg",
  60131. extra: 634/588,
  60132. bottom: 36/670
  60133. },
  60134. extraAttributes: {
  60135. "pawLength": {
  60136. name: "Paw Length",
  60137. power: 1,
  60138. type: "length",
  60139. base: math.unit(1, "feet")
  60140. },
  60141. }
  60142. },
  60143. side: {
  60144. height: math.unit(5 + 7/12, "feet"),
  60145. name: "Side",
  60146. image: {
  60147. source: "./media/characters/andy/side.svg",
  60148. extra: 641/596,
  60149. bottom: 34/675
  60150. },
  60151. extraAttributes: {
  60152. "pawLength": {
  60153. name: "Paw Length",
  60154. power: 1,
  60155. type: "length",
  60156. base: math.unit(1, "feet")
  60157. },
  60158. }
  60159. },
  60160. back: {
  60161. height: math.unit(5 + 7/12, "feet"),
  60162. name: "Back",
  60163. image: {
  60164. source: "./media/characters/andy/back.svg",
  60165. extra: 618/583,
  60166. bottom: 39/657
  60167. },
  60168. extraAttributes: {
  60169. "pawLength": {
  60170. name: "Paw Length",
  60171. power: 1,
  60172. type: "length",
  60173. base: math.unit(1, "feet")
  60174. },
  60175. }
  60176. },
  60177. paw: {
  60178. height: math.unit(1.13, "feet"),
  60179. name: "Paw",
  60180. image: {
  60181. source: "./media/characters/andy/paw.svg"
  60182. }
  60183. },
  60184. },
  60185. [
  60186. {
  60187. name: "Micro",
  60188. height: math.unit(4, "inches")
  60189. },
  60190. {
  60191. name: "Normal",
  60192. height: math.unit(5 + 7/12, "feet"),
  60193. default: true
  60194. },
  60195. {
  60196. name: "Macro",
  60197. height: math.unit(390.42, "feet")
  60198. },
  60199. ]
  60200. ))
  60201. characterMakers.push(() => makeCharacter(
  60202. { name: "Vix Titan", species: ["fox", "demon"], tags: ["anthro"] },
  60203. {
  60204. front: {
  60205. height: math.unit(7, "feet"),
  60206. weight: math.unit(250, "lb"),
  60207. name: "Front",
  60208. image: {
  60209. source: "./media/characters/vix-titan/front.svg",
  60210. extra: 460/428,
  60211. bottom: 15/475
  60212. },
  60213. extraAttributes: {
  60214. "pawWidth": {
  60215. name: "Paw Width",
  60216. power: 1,
  60217. type: "length",
  60218. base: math.unit(0.75, "feet")
  60219. },
  60220. }
  60221. },
  60222. },
  60223. [
  60224. {
  60225. name: "Normal",
  60226. height: math.unit(7, "feet"),
  60227. default: true
  60228. },
  60229. {
  60230. name: "Giant",
  60231. height: math.unit(1500, "feet")
  60232. },
  60233. {
  60234. name: "Mega",
  60235. height: math.unit(10, "miles")
  60236. },
  60237. {
  60238. name: "Giga",
  60239. height: math.unit(150, "miles")
  60240. },
  60241. {
  60242. name: "Tera",
  60243. height: math.unit(144000, "miles")
  60244. },
  60245. ]
  60246. ))
  60247. characterMakers.push(() => makeCharacter(
  60248. { name: "Reiku", species: ["dragon"], tags: ["anthro"] },
  60249. {
  60250. front: {
  60251. height: math.unit(6 + 2/12, "feet"),
  60252. name: "Front",
  60253. image: {
  60254. source: "./media/characters/reiku/front.svg",
  60255. extra: 1910/1757,
  60256. bottom: 103/2013
  60257. },
  60258. extraAttributes: {
  60259. "thighThickness": {
  60260. name: "Thigh Thickness",
  60261. power: 1,
  60262. type: "length",
  60263. base: math.unit(1.12, "feet")
  60264. },
  60265. "assThickness": {
  60266. name: "Ass Thickness",
  60267. power: 1,
  60268. type: "length",
  60269. base: math.unit(1.12*2, "feet")
  60270. },
  60271. }
  60272. },
  60273. side: {
  60274. height: math.unit(6 + 2/12, "feet"),
  60275. name: "Side",
  60276. image: {
  60277. source: "./media/characters/reiku/side.svg",
  60278. extra: 1846/1748,
  60279. bottom: 99/1945
  60280. },
  60281. extraAttributes: {
  60282. "thighThickness": {
  60283. name: "Thigh Thickness",
  60284. power: 1,
  60285. type: "length",
  60286. base: math.unit(1.12, "feet")
  60287. },
  60288. "assThickness": {
  60289. name: "Ass Thickness",
  60290. power: 1,
  60291. type: "length",
  60292. base: math.unit(1.12*2, "feet")
  60293. },
  60294. }
  60295. },
  60296. back: {
  60297. height: math.unit(6 + 2/12, "feet"),
  60298. name: "Back",
  60299. image: {
  60300. source: "./media/characters/reiku/back.svg",
  60301. extra: 1941/1786,
  60302. bottom: 34/1975
  60303. },
  60304. extraAttributes: {
  60305. "thighThickness": {
  60306. name: "Thigh Thickness",
  60307. power: 1,
  60308. type: "length",
  60309. base: math.unit(1.12, "feet")
  60310. },
  60311. "assThickness": {
  60312. name: "Ass Thickness",
  60313. power: 1,
  60314. type: "length",
  60315. base: math.unit(1.12*2, "feet")
  60316. },
  60317. }
  60318. },
  60319. head: {
  60320. height: math.unit(1.8, "feet"),
  60321. name: "Head",
  60322. image: {
  60323. source: "./media/characters/reiku/head.svg"
  60324. }
  60325. },
  60326. tailTop: {
  60327. height: math.unit(8.4, "feet"),
  60328. name: "Tail (Top)",
  60329. image: {
  60330. source: "./media/characters/reiku/tail-top.svg"
  60331. }
  60332. },
  60333. tailBottom: {
  60334. height: math.unit(8.4, "feet"),
  60335. name: "Tail (Bottom)",
  60336. image: {
  60337. source: "./media/characters/reiku/tail-bottom.svg"
  60338. }
  60339. },
  60340. foot: {
  60341. height: math.unit(2.6, "feet"),
  60342. name: "Foot",
  60343. image: {
  60344. source: "./media/characters/reiku/foot.svg"
  60345. }
  60346. },
  60347. footCurled: {
  60348. height: math.unit(2.3, "feet"),
  60349. name: "Foot (Curled)",
  60350. image: {
  60351. source: "./media/characters/reiku/foot-curled.svg"
  60352. }
  60353. },
  60354. footSide: {
  60355. height: math.unit(1.26, "feet"),
  60356. name: "Foot (Side)",
  60357. image: {
  60358. source: "./media/characters/reiku/foot-side.svg"
  60359. }
  60360. },
  60361. },
  60362. [
  60363. {
  60364. name: "Normal",
  60365. height: math.unit(6 + 2/12, "feet"),
  60366. default: true
  60367. },
  60368. ]
  60369. ))
  60370. characterMakers.push(() => makeCharacter(
  60371. { name: "Cialda", species: ["zorgoia", "food"], tags: ["feral"] },
  60372. {
  60373. front: {
  60374. height: math.unit(7, "feet"),
  60375. weight: math.unit(500, "kg"),
  60376. name: "Front",
  60377. image: {
  60378. source: "./media/characters/cialda/front.svg",
  60379. extra: 912/745,
  60380. bottom: 55/967
  60381. }
  60382. },
  60383. },
  60384. [
  60385. {
  60386. name: "Normal",
  60387. height: math.unit(7, "feet"),
  60388. default: true
  60389. },
  60390. ]
  60391. ))
  60392. characterMakers.push(() => makeCharacter(
  60393. { name: "Darkkin", species: ["honey-badger", "behemoth"], tags: ["anthro"] },
  60394. {
  60395. side: {
  60396. height: math.unit(6, "feet"),
  60397. weight: math.unit(600, "lb"),
  60398. preyCapacity: math.unit(25, "liters"),
  60399. name: "Side",
  60400. image: {
  60401. source: "./media/characters/darkkin/side.svg",
  60402. extra: 1597/1447,
  60403. bottom: 101/1698
  60404. }
  60405. },
  60406. },
  60407. [
  60408. {
  60409. name: "Canon Height",
  60410. height: math.unit(568, "feet"),
  60411. default: true
  60412. },
  60413. ]
  60414. ))
  60415. characterMakers.push(() => makeCharacter(
  60416. { name: "Livnia", species: ["rattlesnake", "diamondback"], tags: ["naga"] },
  60417. {
  60418. front: {
  60419. height: math.unit(6, "feet"),
  60420. weight: math.unit(1500, "lb"),
  60421. preyCapacity: math.unit(3, "people"),
  60422. name: "Front",
  60423. image: {
  60424. source: "./media/characters/livnia/front.svg",
  60425. extra: 934/932,
  60426. bottom: 83/1017
  60427. }
  60428. },
  60429. back: {
  60430. height: math.unit(6, "feet"),
  60431. weight: math.unit(1500, "lb"),
  60432. preyCapacity: math.unit(3, "people"),
  60433. name: "Back",
  60434. image: {
  60435. source: "./media/characters/livnia/back.svg",
  60436. extra: 916/915,
  60437. bottom: 58/974
  60438. }
  60439. },
  60440. head: {
  60441. height: math.unit(1.53, "feet"),
  60442. name: "Head",
  60443. image: {
  60444. source: "./media/characters/livnia/head.svg"
  60445. }
  60446. },
  60447. maw: {
  60448. height: math.unit(0.78, "feet"),
  60449. name: "Maw",
  60450. image: {
  60451. source: "./media/characters/livnia/maw.svg"
  60452. }
  60453. },
  60454. genitals: {
  60455. height: math.unit(0.35, "feet"),
  60456. name: "Genitals",
  60457. image: {
  60458. source: "./media/characters/livnia/genitals.svg"
  60459. }
  60460. },
  60461. },
  60462. [
  60463. {
  60464. name: "Normal",
  60465. height: math.unit(1000, "feet"),
  60466. default: true
  60467. },
  60468. ]
  60469. ))
  60470. characterMakers.push(() => makeCharacter(
  60471. { name: "Hayaku", species: ["spidox"], tags: ["anthro"] },
  60472. {
  60473. front: {
  60474. height: math.unit(4, "feet"),
  60475. weight: math.unit(73, "lb"),
  60476. name: "Front",
  60477. image: {
  60478. source: "./media/characters/hayaku/front.svg",
  60479. extra: 1011/888,
  60480. bottom: 33/1044
  60481. }
  60482. },
  60483. back: {
  60484. height: math.unit(4, "feet"),
  60485. weight: math.unit(73, "lb"),
  60486. name: "Back",
  60487. image: {
  60488. source: "./media/characters/hayaku/back.svg",
  60489. extra: 1040/930,
  60490. bottom: 20/1060
  60491. }
  60492. },
  60493. },
  60494. [
  60495. {
  60496. name: "Normal",
  60497. height: math.unit(4, "feet"),
  60498. default: true
  60499. },
  60500. ]
  60501. ))
  60502. characterMakers.push(() => makeCharacter(
  60503. { name: "Athena Bryzant", species: ["gryphon"], tags: ["anthro"] },
  60504. {
  60505. front: {
  60506. height: math.unit(6 + 7/12, "feet"),
  60507. weight: math.unit(300, "lb"),
  60508. name: "Front",
  60509. image: {
  60510. source: "./media/characters/athena-bryzant/front.svg",
  60511. extra: 870/835,
  60512. bottom: 33/903
  60513. }
  60514. },
  60515. back: {
  60516. height: math.unit(6 + 7/12, "feet"),
  60517. weight: math.unit(300, "lb"),
  60518. name: "Back",
  60519. image: {
  60520. source: "./media/characters/athena-bryzant/back.svg",
  60521. extra: 858/823,
  60522. bottom: 30/888
  60523. }
  60524. },
  60525. head: {
  60526. height: math.unit(2.38, "feet"),
  60527. name: "Head",
  60528. image: {
  60529. source: "./media/characters/athena-bryzant/head.svg"
  60530. }
  60531. },
  60532. wings: {
  60533. height: math.unit(2.85, "feet"),
  60534. name: "Wings",
  60535. image: {
  60536. source: "./media/characters/athena-bryzant/wings.svg"
  60537. }
  60538. },
  60539. },
  60540. [
  60541. {
  60542. name: "Normal",
  60543. height: math.unit(6 + 7/12, "feet"),
  60544. default: true
  60545. },
  60546. {
  60547. name: "Big",
  60548. height: math.unit(8, "feet")
  60549. },
  60550. {
  60551. name: "Very Big",
  60552. height: math.unit(11, "feet")
  60553. },
  60554. ]
  60555. ))
  60556. characterMakers.push(() => makeCharacter(
  60557. { name: "Zel-Kesh", species: ["zorgoia", "demon"], tags: ["feral"] },
  60558. {
  60559. side: {
  60560. height: math.unit(3, "meters"),
  60561. weight: math.unit(7500, "kg"),
  60562. preyCapacity: math.unit(1e12, "people"),
  60563. name: "Side",
  60564. image: {
  60565. source: "./media/characters/zel-kesh/side.svg",
  60566. extra: 910/407,
  60567. bottom: 147/1057
  60568. }
  60569. },
  60570. },
  60571. [
  60572. {
  60573. name: "Normal",
  60574. height: math.unit(3, "meters"),
  60575. default: true
  60576. },
  60577. ]
  60578. ))
  60579. characterMakers.push(() => makeCharacter(
  60580. { name: "Kane (Fox)", species: ["fox", "deity"], tags: ["anthro"] },
  60581. {
  60582. front: {
  60583. height: math.unit(2, "meters"),
  60584. weight: math.unit(95, "kg"),
  60585. name: "Front",
  60586. image: {
  60587. source: "./media/characters/kane-fox/front.svg",
  60588. extra: 945/888,
  60589. bottom: 27/972
  60590. }
  60591. },
  60592. back: {
  60593. height: math.unit(2, "meters"),
  60594. weight: math.unit(95, "kg"),
  60595. name: "Back",
  60596. image: {
  60597. source: "./media/characters/kane-fox/back.svg",
  60598. extra: 959/914,
  60599. bottom: 15/974
  60600. }
  60601. },
  60602. frontLewd: {
  60603. height: math.unit(2, "meters"),
  60604. weight: math.unit(95, "kg"),
  60605. name: "Front (Lewd)",
  60606. image: {
  60607. source: "./media/characters/kane-fox/front-lewd.svg",
  60608. extra: 945/888,
  60609. bottom: 27/972
  60610. }
  60611. },
  60612. },
  60613. [
  60614. {
  60615. name: "Home Size",
  60616. height: math.unit(2, "meters"),
  60617. default: true
  60618. },
  60619. {
  60620. name: "Macro",
  60621. height: math.unit(200, "meters")
  60622. },
  60623. {
  60624. name: "Small Mega",
  60625. height: math.unit(3, "km")
  60626. },
  60627. {
  60628. name: "Mega",
  60629. height: math.unit(50, "km")
  60630. },
  60631. {
  60632. name: "Giga",
  60633. height: math.unit(200, "km")
  60634. },
  60635. {
  60636. name: "Giga+",
  60637. height: math.unit(2500, "km")
  60638. },
  60639. {
  60640. name: "Terra",
  60641. height: math.unit(70000, "km")
  60642. },
  60643. {
  60644. name: "Terra+",
  60645. height: math.unit(150000, "km")
  60646. },
  60647. {
  60648. name: "Terra++",
  60649. height: math.unit(400000, "km")
  60650. },
  60651. ]
  60652. ))
  60653. characterMakers.push(() => makeCharacter(
  60654. { name: "Ayranus", species: ["otter", "lion", "bat", "deity"], tags: ["anthro"] },
  60655. {
  60656. otter_front: {
  60657. height: math.unit(1.8, "meters"),
  60658. weight: math.unit(90, "kg"),
  60659. name: "Front",
  60660. image: {
  60661. source: "./media/characters/ayranus/otter-front.svg",
  60662. extra: 468/452,
  60663. bottom: 43/511
  60664. },
  60665. form: "otter",
  60666. },
  60667. otter_frontLewd: {
  60668. height: math.unit(1.8, "meters"),
  60669. weight: math.unit(90, "kg"),
  60670. name: "Front (Lewd)",
  60671. image: {
  60672. source: "./media/characters/ayranus/otter-front-lewd.svg",
  60673. extra: 468/452,
  60674. bottom: 43/511
  60675. },
  60676. form: "otter",
  60677. },
  60678. lionbat_front: {
  60679. height: math.unit(1.8, "meters"),
  60680. weight: math.unit(90, "kg"),
  60681. name: "Front (Lewd)",
  60682. image: {
  60683. source: "./media/characters/ayranus/lionbat-front-lewd.svg",
  60684. extra: 797/740,
  60685. bottom: 78/875
  60686. },
  60687. form: "lionbat",
  60688. },
  60689. paw: {
  60690. height: math.unit(1.5, "feet"),
  60691. name: "Paw",
  60692. image: {
  60693. source: "./media/characters/ayranus/paw.svg"
  60694. },
  60695. },
  60696. },
  60697. [
  60698. {
  60699. name: "Incognito",
  60700. height: math.unit(1.8, "meters"),
  60701. allForms: true
  60702. },
  60703. {
  60704. name: "Macro",
  60705. height: math.unit(60, "meters"),
  60706. allForms: true
  60707. },
  60708. {
  60709. name: "Macro+",
  60710. height: math.unit(200, "meters"),
  60711. allForms: true
  60712. },
  60713. {
  60714. name: "Mega",
  60715. height: math.unit(35, "km"),
  60716. allForms: true
  60717. },
  60718. {
  60719. name: "Giga",
  60720. height: math.unit(220, "km"),
  60721. allForms: true
  60722. },
  60723. {
  60724. name: "Giga+",
  60725. height: math.unit(1500, "km"),
  60726. allForms: true
  60727. },
  60728. {
  60729. name: "Terra",
  60730. height: math.unit(13000, "km"),
  60731. allForms: true
  60732. },
  60733. {
  60734. name: "Terra+",
  60735. height: math.unit(500000, "km"),
  60736. allForms: true
  60737. },
  60738. {
  60739. name: "Galactic",
  60740. height: math.unit(486080, "parsecs"),
  60741. default: true,
  60742. allForms: true
  60743. },
  60744. ],
  60745. {
  60746. "otter": {
  60747. name: "Otter",
  60748. default: true
  60749. },
  60750. "lionbat": {
  60751. name: "Lionbat",
  60752. },
  60753. }
  60754. ))
  60755. characterMakers.push(() => makeCharacter(
  60756. { name: "Proxy", species: ["kodiak-bear"], tags: ["anthro"] },
  60757. {
  60758. front: {
  60759. height: math.unit(7 + 4/12, "feet"),
  60760. weight: math.unit(400, "lb"),
  60761. name: "Front",
  60762. image: {
  60763. source: "./media/characters/proxy/front.svg",
  60764. extra: 1605/1542,
  60765. bottom: 55/1660
  60766. }
  60767. },
  60768. side: {
  60769. height: math.unit(7 + 4/12, "feet"),
  60770. weight: math.unit(400, "lb"),
  60771. name: "Side",
  60772. image: {
  60773. source: "./media/characters/proxy/side.svg",
  60774. extra: 794/759,
  60775. bottom: 6/800
  60776. }
  60777. },
  60778. hand: {
  60779. height: math.unit(1.54, "feet"),
  60780. name: "Hand",
  60781. image: {
  60782. source: "./media/characters/proxy/hand.svg"
  60783. }
  60784. },
  60785. paw: {
  60786. height: math.unit(1.53, "feet"),
  60787. name: "Paw",
  60788. image: {
  60789. source: "./media/characters/proxy/paw.svg"
  60790. }
  60791. },
  60792. maw: {
  60793. height: math.unit(1.9, "feet"),
  60794. name: "Maw",
  60795. image: {
  60796. source: "./media/characters/proxy/maw.svg"
  60797. }
  60798. },
  60799. },
  60800. [
  60801. {
  60802. name: "Normal",
  60803. height: math.unit(7 + 4/12, "feet"),
  60804. default: true
  60805. },
  60806. ]
  60807. ))
  60808. characterMakers.push(() => makeCharacter(
  60809. { name: "Crocozilla", species: ["crocodile"], tags: ["anthro"] },
  60810. {
  60811. front: {
  60812. height: math.unit(4, "meters"),
  60813. name: "Front",
  60814. image: {
  60815. source: "./media/characters/crocozilla/front.svg",
  60816. extra: 1790/1742,
  60817. bottom: 78/1868
  60818. }
  60819. },
  60820. },
  60821. [
  60822. {
  60823. name: "Normal",
  60824. height: math.unit(4, "meters"),
  60825. default: true
  60826. },
  60827. ]
  60828. ))
  60829. characterMakers.push(() => makeCharacter(
  60830. { name: "Kurz", species: ["alurean", "deity"], tags: ["anthro"] },
  60831. {
  60832. front: {
  60833. height: math.unit(1.8, "meters"),
  60834. weight: math.unit(120, "kg"),
  60835. name: "Front",
  60836. image: {
  60837. source: "./media/characters/kurz/front.svg",
  60838. extra: 1960/1824,
  60839. bottom: 41/2001
  60840. }
  60841. },
  60842. back: {
  60843. height: math.unit(1.8, "meters"),
  60844. weight: math.unit(120, "kg"),
  60845. name: "Back",
  60846. image: {
  60847. source: "./media/characters/kurz/back.svg",
  60848. extra: 1906/1787,
  60849. bottom: 60/1966
  60850. }
  60851. },
  60852. frontLewd: {
  60853. height: math.unit(1.8, "meters"),
  60854. weight: math.unit(120, "kg"),
  60855. name: "Front (Lewd)",
  60856. image: {
  60857. source: "./media/characters/kurz/front-lewd.svg",
  60858. extra: 1960/1824,
  60859. bottom: 41/2001
  60860. }
  60861. },
  60862. maw: {
  60863. height: math.unit(0.69, "meters"),
  60864. name: "Maw",
  60865. image: {
  60866. source: "./media/characters/kurz/maw.svg"
  60867. }
  60868. },
  60869. },
  60870. [
  60871. {
  60872. name: "Original Size",
  60873. height: math.unit(1.8, "meters")
  60874. },
  60875. {
  60876. name: "Incognito Size",
  60877. height: math.unit(2.4, "meters"),
  60878. default: true
  60879. },
  60880. {
  60881. name: "Macro",
  60882. height: math.unit(30, "meters")
  60883. },
  60884. {
  60885. name: "Macro+",
  60886. height: math.unit(250, "meters")
  60887. },
  60888. {
  60889. name: "Mega",
  60890. height: math.unit(2, "km")
  60891. },
  60892. {
  60893. name: "Mega+",
  60894. height: math.unit(35, "km")
  60895. },
  60896. {
  60897. name: "Mega++",
  60898. height: math.unit(75, "km")
  60899. },
  60900. {
  60901. name: "Giga",
  60902. height: math.unit(250, "km")
  60903. },
  60904. {
  60905. name: "Terra",
  60906. height: math.unit(15000, "km")
  60907. },
  60908. {
  60909. name: "Terra+",
  60910. height: math.unit(2250000, "km")
  60911. },
  60912. ]
  60913. ))
  60914. characterMakers.push(() => makeCharacter(
  60915. { name: "Nikita", species: ["werewolf"], tags: ["anthro"] },
  60916. {
  60917. front: {
  60918. height: math.unit(16 + 3/12, "feet"),
  60919. weight: math.unit(3575, "lb"),
  60920. name: "Front",
  60921. image: {
  60922. source: "./media/characters/nikita/front.svg",
  60923. extra: 1064/955,
  60924. bottom: 47/1111
  60925. }
  60926. },
  60927. },
  60928. [
  60929. {
  60930. name: "Normal",
  60931. height: math.unit(16 + 3/12, "feet"),
  60932. default: true
  60933. },
  60934. {
  60935. name: "Big",
  60936. height: math.unit(21, "feet")
  60937. },
  60938. {
  60939. name: "Biggest",
  60940. height: math.unit(50, "feet")
  60941. },
  60942. ]
  60943. ))
  60944. characterMakers.push(() => makeCharacter(
  60945. { name: "Kyara", species: ["wolf"], tags: ["anthro"] },
  60946. {
  60947. front: {
  60948. height: math.unit(1.92, "m"),
  60949. weight: math.unit(76, "kg"),
  60950. name: "Front",
  60951. image: {
  60952. source: "./media/characters/kyara/front.svg",
  60953. extra: 1550/1438,
  60954. bottom: 139/1689
  60955. }
  60956. },
  60957. back: {
  60958. height: math.unit(1.92, "m"),
  60959. weight: math.unit(76, "kg"),
  60960. name: "Back",
  60961. image: {
  60962. source: "./media/characters/kyara/back.svg",
  60963. extra: 1523/1427,
  60964. bottom: 83/1606
  60965. }
  60966. },
  60967. head: {
  60968. height: math.unit(1.22, "feet"),
  60969. name: "Head",
  60970. image: {
  60971. source: "./media/characters/kyara/head.svg"
  60972. }
  60973. },
  60974. maw: {
  60975. height: math.unit(0.73, "feet"),
  60976. name: "Maw",
  60977. image: {
  60978. source: "./media/characters/kyara/maw.svg"
  60979. }
  60980. },
  60981. paws: {
  60982. height: math.unit(0.95, "feet"),
  60983. name: "Paws",
  60984. image: {
  60985. source: "./media/characters/kyara/paws.svg"
  60986. }
  60987. },
  60988. },
  60989. [
  60990. {
  60991. name: "Normal",
  60992. height: math.unit(1.92, "meters"),
  60993. default: true
  60994. },
  60995. {
  60996. name: "Mini Macro",
  60997. height: math.unit(192, "meters")
  60998. },
  60999. {
  61000. name: "Macro",
  61001. height: math.unit(480, "meters")
  61002. },
  61003. {
  61004. name: "Mega Macro",
  61005. height: math.unit(1440, "meters")
  61006. },
  61007. ]
  61008. ))
  61009. characterMakers.push(() => makeCharacter(
  61010. { name: "Layla Amari", species: ["rabbit"], tags: ["anthro"] },
  61011. {
  61012. front: {
  61013. height: math.unit(6, "feet"),
  61014. weight: math.unit(160, "lbs"),
  61015. preyCapacity: math.unit(0.05, "people"),
  61016. name: "Front",
  61017. image: {
  61018. source: "./media/characters/layla-amari/front.svg",
  61019. extra: 1922/1723,
  61020. bottom: 90/2012
  61021. }
  61022. },
  61023. back: {
  61024. height: math.unit(6, "feet"),
  61025. weight: math.unit(160, "lbs"),
  61026. preyCapacity: math.unit(0.05, "people"),
  61027. name: "Back",
  61028. image: {
  61029. source: "./media/characters/layla-amari/back.svg",
  61030. extra: 1917/1718,
  61031. bottom: 50/1967
  61032. }
  61033. },
  61034. frontDressed: {
  61035. height: math.unit(6, "feet"),
  61036. weight: math.unit(160, "lbs"),
  61037. preyCapacity: math.unit(0.05, "people"),
  61038. name: "Front (Dressed)",
  61039. image: {
  61040. source: "./media/characters/layla-amari/front-dressed.svg",
  61041. extra: 1922/1723,
  61042. bottom: 90/2012
  61043. }
  61044. },
  61045. face: {
  61046. height: math.unit(0.93, "feet"),
  61047. name: "Face",
  61048. image: {
  61049. source: "./media/characters/layla-amari/face.svg"
  61050. }
  61051. },
  61052. hand: {
  61053. height: math.unit(0.66 , "feet"),
  61054. name: "Hand",
  61055. image: {
  61056. source: "./media/characters/layla-amari/hand.svg"
  61057. }
  61058. },
  61059. foot: {
  61060. height: math.unit(1, "feet"),
  61061. name: "Foot",
  61062. image: {
  61063. source: "./media/characters/layla-amari/foot.svg"
  61064. }
  61065. },
  61066. necklace: {
  61067. height: math.unit(0.32, "feet"),
  61068. name: "Necklace",
  61069. image: {
  61070. source: "./media/characters/layla-amari/necklace.svg"
  61071. }
  61072. },
  61073. nipple: {
  61074. height: math.unit(0.2, "feet"),
  61075. name: "Nipple",
  61076. image: {
  61077. source: "./media/characters/layla-amari/nipple.svg"
  61078. }
  61079. },
  61080. slit: {
  61081. height: math.unit(0.26, "feet"),
  61082. name: "Slit",
  61083. image: {
  61084. source: "./media/characters/layla-amari/slit.svg"
  61085. }
  61086. },
  61087. },
  61088. [
  61089. {
  61090. name: "Natural",
  61091. height: math.unit(825, "feet"),
  61092. default: true
  61093. },
  61094. {
  61095. name: "Enhanced",
  61096. height: math.unit(8250, "feet")
  61097. },
  61098. {
  61099. name: "Apparent Size",
  61100. height: math.unit(9.04363e+8, "meters")
  61101. },
  61102. ]
  61103. ))
  61104. characterMakers.push(() => makeCharacter(
  61105. { name: "Percy", species: ["magpie", "leopard", "gryphon"], tags: ["anthro"] },
  61106. {
  61107. front: {
  61108. height: math.unit(1.3, "meters"),
  61109. name: "Front",
  61110. image: {
  61111. source: "./media/characters/percy/front.svg",
  61112. extra: 1444/1289,
  61113. bottom: 54/1498
  61114. }
  61115. },
  61116. },
  61117. [
  61118. {
  61119. name: "Normal",
  61120. height: math.unit(1.3, "meters"),
  61121. default: true
  61122. },
  61123. ]
  61124. ))
  61125. characterMakers.push(() => makeCharacter(
  61126. { name: "Grev", species: ["tigrex"], tags: ["feral"] },
  61127. {
  61128. side: {
  61129. height: math.unit(10, "meters"),
  61130. name: "Side",
  61131. image: {
  61132. source: "./media/characters/grev/side.svg",
  61133. extra: 653/266,
  61134. bottom: 77/730
  61135. }
  61136. },
  61137. head: {
  61138. height: math.unit(16.2, "m"),
  61139. name: "Head",
  61140. image: {
  61141. source: "./media/characters/grev/head.svg"
  61142. }
  61143. },
  61144. dick: {
  61145. height: math.unit(2.8135932034, "m"),
  61146. name: "Dick",
  61147. image: {
  61148. source: "./media/characters/grev/dick.svg"
  61149. }
  61150. },
  61151. },
  61152. [
  61153. {
  61154. name: "Friend-Sized",
  61155. height: math.unit(80, "cm")
  61156. },
  61157. {
  61158. name: "Normal",
  61159. height: math.unit(10, "meters"),
  61160. default: true
  61161. },
  61162. {
  61163. name: "Macro",
  61164. height: math.unit(200, "meters")
  61165. },
  61166. ]
  61167. ))
  61168. characterMakers.push(() => makeCharacter(
  61169. { name: "Azuuca", species: ["catfish"], tags: ["anthro"] },
  61170. {
  61171. front: {
  61172. height: math.unit(19.75, "feet"),
  61173. weight: math.unit(20000, "lb"),
  61174. name: "Front",
  61175. image: {
  61176. source: "./media/characters/azuuca/front.svg",
  61177. extra: 1593/1511,
  61178. bottom: 55/1648
  61179. }
  61180. },
  61181. },
  61182. [
  61183. {
  61184. name: "Normal",
  61185. height: math.unit(19.75, "feet"),
  61186. default: true
  61187. },
  61188. ]
  61189. ))
  61190. characterMakers.push(() => makeCharacter(
  61191. { name: "Valuria", species: ["vesempress"], tags: ["anthro"] },
  61192. {
  61193. front: {
  61194. height: math.unit(15, "feet"),
  61195. weight: math.unit(1500, "lb"),
  61196. name: "Front",
  61197. image: {
  61198. source: "./media/characters/valuria/front.svg",
  61199. extra: 1588/1486,
  61200. bottom: 31/1619
  61201. }
  61202. },
  61203. },
  61204. [
  61205. {
  61206. name: "Normal",
  61207. height: math.unit(15, "feet"),
  61208. default: true
  61209. },
  61210. {
  61211. name: "Small",
  61212. height: math.unit(500, "feet")
  61213. },
  61214. {
  61215. name: "Macro",
  61216. height: math.unit(4000, "feet")
  61217. },
  61218. {
  61219. name: "Mega Macro",
  61220. height: math.unit(2000, "miles")
  61221. },
  61222. {
  61223. name: "Giga Macro",
  61224. height: math.unit(3e6, "miles")
  61225. },
  61226. ]
  61227. ))
  61228. characterMakers.push(() => makeCharacter(
  61229. { name: "Terigaia", species: ["gaelterranian"], tags: ["anthro"] },
  61230. {
  61231. front: {
  61232. height: math.unit(3500, "solarradii"),
  61233. name: "Front",
  61234. image: {
  61235. source: "./media/characters/terigaia/front.svg",
  61236. extra: 1531/1451,
  61237. bottom: 98/1629
  61238. }
  61239. },
  61240. },
  61241. [
  61242. {
  61243. name: "Normal",
  61244. height: math.unit(3500, "solarradii"),
  61245. default: true
  61246. },
  61247. ]
  61248. ))
  61249. characterMakers.push(() => makeCharacter(
  61250. { name: "Blair (Blaziken)", species: ["blaziken"], tags: ["anthro"] },
  61251. {
  61252. front: {
  61253. height: math.unit(9.34, "feet"),
  61254. weight: math.unit(600, "lb"),
  61255. name: "Front",
  61256. image: {
  61257. source: "./media/characters/blair-blaziken/front.svg",
  61258. extra: 1557/1462,
  61259. bottom: 55/1612
  61260. }
  61261. },
  61262. },
  61263. [
  61264. {
  61265. name: "Normal",
  61266. height: math.unit(9.34, "feet"),
  61267. default: true
  61268. },
  61269. ]
  61270. ))
  61271. characterMakers.push(() => makeCharacter(
  61272. { name: "Braxia", species: ["pistrogre", "human"], tags: ["anthro"] },
  61273. {
  61274. pistrogre_front: {
  61275. height: math.unit(10, "feet"),
  61276. weight: math.unit(10, "tons"),
  61277. name: "Front",
  61278. image: {
  61279. source: "./media/characters/braxia/pistrogre-front.svg",
  61280. extra: 1531/1334,
  61281. bottom: 114/1645
  61282. },
  61283. form: "pistrogre",
  61284. default: true
  61285. },
  61286. human_front: {
  61287. height: math.unit(10, "feet"),
  61288. weight: math.unit(10, "tons"),
  61289. name: "Front",
  61290. image: {
  61291. source: "./media/characters/braxia/human-front.svg",
  61292. extra: 1574/1501,
  61293. bottom: 37/1611
  61294. },
  61295. form: "human",
  61296. default: true
  61297. },
  61298. },
  61299. [
  61300. {
  61301. name: "Normal",
  61302. height: math.unit(10, "feet"),
  61303. default: true,
  61304. allForms: true
  61305. },
  61306. {
  61307. name: "Macro",
  61308. height: math.unit(1000, "feet"),
  61309. allForms: true
  61310. },
  61311. {
  61312. name: "Mega Macro",
  61313. height: math.unit(100, "miles"),
  61314. allForms: true
  61315. },
  61316. {
  61317. name: "Cosmic",
  61318. height: math.unit(1000000, "lightyears"),
  61319. allForms: true
  61320. },
  61321. {
  61322. name: "ϐѮԆԬӁꭍϞԢ",
  61323. height: math.unit(1000, "multiverses"),
  61324. allForms: true
  61325. },
  61326. ],
  61327. {
  61328. "pistrogre": {
  61329. name: "Pistrogre",
  61330. default: true
  61331. },
  61332. "human": {
  61333. name: "Human",
  61334. },
  61335. }
  61336. ))
  61337. characterMakers.push(() => makeCharacter(
  61338. { name: "Kiriga Yato", species: ["zorgoia"], tags: ["anthro"] },
  61339. {
  61340. front: {
  61341. height: math.unit(6 + 1/12, "feet"),
  61342. weight: math.unit(280, "lb"),
  61343. name: "Front",
  61344. image: {
  61345. source: "./media/characters/kiriga-yato/front.svg",
  61346. extra: 445/394,
  61347. bottom: 11/456
  61348. }
  61349. },
  61350. },
  61351. [
  61352. {
  61353. name: "Descended",
  61354. height: math.unit(3, "feet")
  61355. },
  61356. {
  61357. name: "Average",
  61358. height: math.unit(6 + 1/12, "feet"),
  61359. default: true
  61360. },
  61361. {
  61362. name: "Ascended",
  61363. height: math.unit(9 + 2/12, "feet")
  61364. },
  61365. ]
  61366. ))
  61367. characterMakers.push(() => makeCharacter(
  61368. { name: "Kylie", species: ["giraffe"], tags: ["anthro"] },
  61369. {
  61370. front: {
  61371. height: math.unit(6, "feet"),
  61372. weight: math.unit(150, "lb"),
  61373. name: "Front",
  61374. image: {
  61375. source: "./media/characters/kylie/front.svg",
  61376. extra: 1114/1046,
  61377. bottom: 65/1179
  61378. },
  61379. extraAttributes: {
  61380. "hoofSize": {
  61381. name: "Hoof Size",
  61382. power: 2,
  61383. type: "area",
  61384. base: math.unit(0.034, "m^2")
  61385. },
  61386. "footSize": {
  61387. name: "Foot Size",
  61388. power: 2,
  61389. type: "area",
  61390. base: math.unit(0.75, "m^2")
  61391. },
  61392. }
  61393. },
  61394. side: {
  61395. height: math.unit(6, "feet"),
  61396. weight: math.unit(150, "lb"),
  61397. name: "Side",
  61398. image: {
  61399. source: "./media/characters/kylie/side.svg",
  61400. extra: 1178/1110,
  61401. bottom: 21/1199
  61402. },
  61403. extraAttributes: {
  61404. "hoofSize": {
  61405. name: "Hoof Size",
  61406. power: 2,
  61407. type: "area",
  61408. base: math.unit(0.034, "m^2")
  61409. },
  61410. "footSize": {
  61411. name: "Foot Size",
  61412. power: 2,
  61413. type: "area",
  61414. base: math.unit(0.75, "m^2")
  61415. },
  61416. }
  61417. },
  61418. back: {
  61419. height: math.unit(6, "feet"),
  61420. weight: math.unit(150, "lb"),
  61421. name: "Back",
  61422. image: {
  61423. source: "./media/characters/kylie/back.svg",
  61424. extra: 1115/1047,
  61425. bottom: 66/1181
  61426. },
  61427. extraAttributes: {
  61428. "hoofSize": {
  61429. name: "Hoof Size",
  61430. power: 2,
  61431. type: "area",
  61432. base: math.unit(0.034, "m^2")
  61433. },
  61434. "footSize": {
  61435. name: "Foot Size",
  61436. power: 2,
  61437. type: "area",
  61438. base: math.unit(0.75, "m^2")
  61439. },
  61440. }
  61441. },
  61442. head: {
  61443. height: math.unit(1.85, "feet"),
  61444. name: "Head",
  61445. image: {
  61446. source: "./media/characters/kylie/head.svg"
  61447. }
  61448. },
  61449. },
  61450. [
  61451. {
  61452. name: "Normal",
  61453. height: math.unit(90, "meters"),
  61454. default: true
  61455. },
  61456. ]
  61457. ))
  61458. characterMakers.push(() => makeCharacter(
  61459. { name: "Sabado", species: ["suicune"], tags: ["anthro"] },
  61460. {
  61461. front: {
  61462. height: math.unit(245, "feet"),
  61463. weight: math.unit(400000, "lb"),
  61464. name: "Front",
  61465. image: {
  61466. source: "./media/characters/sabado/front.svg",
  61467. extra: 1309/1164,
  61468. bottom: 29/1338
  61469. }
  61470. },
  61471. },
  61472. [
  61473. {
  61474. name: "Normal",
  61475. height: math.unit(245, "feet"),
  61476. default: true
  61477. },
  61478. ]
  61479. ))
  61480. characterMakers.push(() => makeCharacter(
  61481. { name: "Zechal", species: ["shark", "dragon", "deity"], tags: ["anthro"] },
  61482. {
  61483. shark_front: {
  61484. height: math.unit(2, "meters"),
  61485. weight: math.unit(200, "kg"),
  61486. name: "Front",
  61487. image: {
  61488. source: "./media/characters/zechal/shark-front.svg",
  61489. extra: 969/925,
  61490. bottom: 74/1043
  61491. },
  61492. form: "shark",
  61493. },
  61494. shark_back: {
  61495. height: math.unit(2, "meters"),
  61496. weight: math.unit(200, "kg"),
  61497. name: "Back",
  61498. image: {
  61499. source: "./media/characters/zechal/shark-back.svg",
  61500. extra: 994/949,
  61501. bottom: 176/1170
  61502. },
  61503. form: "shark",
  61504. },
  61505. shark_frontLewd: {
  61506. height: math.unit(2, "meters"),
  61507. weight: math.unit(200, "kg"),
  61508. name: "Front (Lewd)",
  61509. image: {
  61510. source: "./media/characters/zechal/shark-front-lewd.svg",
  61511. extra: 969/925,
  61512. bottom: 74/1043
  61513. },
  61514. form: "shark",
  61515. },
  61516. shark_side: {
  61517. height: math.unit(1.56, "meters"),
  61518. weight: math.unit(200, "kg"),
  61519. name: "Side",
  61520. image: {
  61521. source: "./media/characters/zechal/shark-side.svg"
  61522. },
  61523. form: "shark",
  61524. },
  61525. dragon_front: {
  61526. height: math.unit(2, "meters"),
  61527. weight: math.unit(200, "kg"),
  61528. name: "Front",
  61529. image: {
  61530. source: "./media/characters/zechal/dragon-front.svg",
  61531. extra: 1041/925,
  61532. bottom: 74/1115
  61533. },
  61534. form: "dragon",
  61535. },
  61536. dragon_back: {
  61537. height: math.unit(2, "meters"),
  61538. weight: math.unit(200, "kg"),
  61539. name: "Back",
  61540. image: {
  61541. source: "./media/characters/zechal/dragon-back.svg",
  61542. extra: 1061/949,
  61543. bottom: 176/1237
  61544. },
  61545. form: "dragon",
  61546. },
  61547. dragon_frontLewd: {
  61548. height: math.unit(2, "meters"),
  61549. weight: math.unit(200, "kg"),
  61550. name: "Front (Lewd)",
  61551. image: {
  61552. source: "./media/characters/zechal/dragon-front-lewd.svg",
  61553. extra: 1041/925,
  61554. bottom: 74/1115
  61555. },
  61556. form: "dragon",
  61557. },
  61558. dragon_side: {
  61559. height: math.unit(1.56, "meters"),
  61560. weight: math.unit(200, "kg"),
  61561. name: "Side",
  61562. image: {
  61563. source: "./media/characters/zechal/dragon-side.svg"
  61564. },
  61565. form: "dragon",
  61566. },
  61567. foot: {
  61568. height: math.unit(0.5, "meters"),
  61569. name: "Foot",
  61570. image: {
  61571. source: "./media/characters/zechal/foot.svg"
  61572. }
  61573. },
  61574. sheathFront: {
  61575. height: math.unit(0.45, "meters"),
  61576. name: "Sheath (Front)",
  61577. image: {
  61578. source: "./media/characters/zechal/sheath-front.svg"
  61579. }
  61580. },
  61581. sheathSide: {
  61582. height: math.unit(0.45, "meters"),
  61583. name: "Sheath (Side)",
  61584. image: {
  61585. source: "./media/characters/zechal/sheath-side.svg"
  61586. }
  61587. },
  61588. },
  61589. [
  61590. {
  61591. name: "Incognito",
  61592. height: math.unit(2, "meters"),
  61593. allForms: true
  61594. },
  61595. {
  61596. name: "Small Rampage",
  61597. height: math.unit(25, "meters"),
  61598. allForms: true
  61599. },
  61600. {
  61601. name: "Home Size",
  61602. height: math.unit(250, "meters"),
  61603. allForms: true,
  61604. default: true
  61605. },
  61606. {
  61607. name: "Macro+",
  61608. height: math.unit(700, "meters"),
  61609. allForms: true
  61610. },
  61611. {
  61612. name: "Small Mega",
  61613. height: math.unit(3, "km"),
  61614. allForms: true
  61615. },
  61616. {
  61617. name: "Mega",
  61618. height: math.unit(15, "km"),
  61619. allForms: true
  61620. },
  61621. {
  61622. name: "Giga",
  61623. height: math.unit(300, "km"),
  61624. allForms: true
  61625. },
  61626. {
  61627. name: "Giga+",
  61628. height: math.unit(1750, "km"),
  61629. allForms: true
  61630. },
  61631. {
  61632. name: "Continental",
  61633. height: math.unit(5000, "km"),
  61634. allForms: true
  61635. },
  61636. {
  61637. name: "Terra",
  61638. height: math.unit(20000, "km"),
  61639. allForms: true
  61640. },
  61641. {
  61642. name: "Terra+",
  61643. height: math.unit(300000, "km"),
  61644. allForms: true
  61645. },
  61646. {
  61647. name: "Solar",
  61648. height: math.unit(40000000, "km"),
  61649. allForms: true
  61650. },
  61651. {
  61652. name: "Galactic",
  61653. height: math.unit(810133, "parsecs"),
  61654. allForms: true
  61655. },
  61656. {
  61657. name: "Universal",
  61658. height: math.unit(25, "universes"),
  61659. allForms: true
  61660. },
  61661. ],
  61662. {
  61663. "shark": {
  61664. name: "Shark",
  61665. default: true
  61666. },
  61667. "dragon": {
  61668. name: "Dragon",
  61669. },
  61670. }
  61671. ))
  61672. characterMakers.push(() => makeCharacter(
  61673. { name: "Sergis", species: ["komodo-dragon", "deity"], tags: ["anthro"] },
  61674. {
  61675. front: {
  61676. height: math.unit(2.2, "meters"),
  61677. weight: math.unit(150, "kg"),
  61678. name: "Front",
  61679. image: {
  61680. source: "./media/characters/sergis/front.svg",
  61681. extra: 1314/1312,
  61682. bottom: 112/1426
  61683. }
  61684. },
  61685. back: {
  61686. height: math.unit(2.2, "meters"),
  61687. weight: math.unit(150, "kg"),
  61688. name: "Back",
  61689. image: {
  61690. source: "./media/characters/sergis/back.svg",
  61691. extra: 1335/1333,
  61692. bottom: 19/1354
  61693. }
  61694. },
  61695. frontLewd: {
  61696. height: math.unit(2.2, "meters"),
  61697. weight: math.unit(150, "kg"),
  61698. name: "Front (Lewd)",
  61699. image: {
  61700. source: "./media/characters/sergis/front-lewd.svg",
  61701. extra: 1314/1312,
  61702. bottom: 112/1426
  61703. }
  61704. },
  61705. frontDressed: {
  61706. height: math.unit(2.2, "meters"),
  61707. weight: math.unit(150, "kg"),
  61708. name: "Front (Dressed)",
  61709. image: {
  61710. source: "./media/characters/sergis/front-dressed.svg",
  61711. extra: 1330/1328,
  61712. bottom: 95/1425
  61713. }
  61714. },
  61715. frontDressedLewd: {
  61716. height: math.unit(2.2, "meters"),
  61717. weight: math.unit(150, "kg"),
  61718. name: "Front (Dressed, Lewd)",
  61719. image: {
  61720. source: "./media/characters/sergis/front-dressed-lewd.svg",
  61721. extra: 1330/1328,
  61722. bottom: 95/1425
  61723. }
  61724. },
  61725. maw: {
  61726. height: math.unit(0.48, "meters"),
  61727. name: "Maw",
  61728. image: {
  61729. source: "./media/characters/sergis/maw.svg"
  61730. }
  61731. },
  61732. sheath: {
  61733. height: math.unit(0.38, "meters"),
  61734. name: "Sheath",
  61735. image: {
  61736. source: "./media/characters/sergis/sheath.svg"
  61737. }
  61738. },
  61739. },
  61740. [
  61741. {
  61742. name: "Incognito Size",
  61743. height: math.unit(2.2, "meters")
  61744. },
  61745. {
  61746. name: "Small Macro",
  61747. height: math.unit(40, "meters")
  61748. },
  61749. {
  61750. name: "Macro",
  61751. height: math.unit(150, "meters")
  61752. },
  61753. {
  61754. name: "Macro+",
  61755. height: math.unit(300, "meters")
  61756. },
  61757. {
  61758. name: "Mega",
  61759. height: math.unit(2.5, "km")
  61760. },
  61761. {
  61762. name: "Mega+",
  61763. height: math.unit(30, "km")
  61764. },
  61765. {
  61766. name: "Home Size",
  61767. height: math.unit(300, "km"),
  61768. default: true
  61769. },
  61770. {
  61771. name: "Giga+",
  61772. height: math.unit(1000, "km")
  61773. },
  61774. {
  61775. name: "Giga++",
  61776. height: math.unit(6000, "km")
  61777. },
  61778. {
  61779. name: "Terra",
  61780. height: math.unit(70000, "km")
  61781. },
  61782. {
  61783. name: "Terra+",
  61784. height: math.unit(200000, "km")
  61785. },
  61786. {
  61787. name: "Galactic",
  61788. height: math.unit(634200, "lightyears")
  61789. },
  61790. ]
  61791. ))
  61792. characterMakers.push(() => makeCharacter(
  61793. { name: "Spade", species: ["demon", "mouse"], tags: ["anthro"] },
  61794. {
  61795. standard: {
  61796. height: math.unit(1 + 5/12, "feet"),
  61797. name: "Standard",
  61798. image: {
  61799. source: "./media/characters/spade/standard.svg",
  61800. extra: 1794/1703,
  61801. bottom: 115/1909
  61802. }
  61803. },
  61804. disguised: {
  61805. height: math.unit(1 + 5/12, "feet"),
  61806. name: "Disguised",
  61807. image: {
  61808. source: "./media/characters/spade/disguised.svg",
  61809. extra: 1794/1700,
  61810. bottom: 98/1892
  61811. }
  61812. },
  61813. },
  61814. [
  61815. {
  61816. name: "Normal",
  61817. height: math.unit(1 + 5/12, "feet"),
  61818. default: true
  61819. },
  61820. ]
  61821. ))
  61822. characterMakers.push(() => makeCharacter(
  61823. { name: "Zeanlain", species: ["harpy-eagle"], tags: ["anthro"] },
  61824. {
  61825. frontNsfw: {
  61826. height: math.unit(5, "meters"),
  61827. weight: math.unit(2000, "kg"),
  61828. preyCapacity: math.unit(5, "people"),
  61829. name: "Front (NSFW)",
  61830. image: {
  61831. source: "./media/characters/zeanlain/front-nsfw.svg",
  61832. extra: 1087/938,
  61833. bottom: 93/1180
  61834. },
  61835. extraAttributes: {
  61836. "wingspan": {
  61837. name: "Wingspan",
  61838. power: 1,
  61839. type: "length",
  61840. base: math.unit(10, "meters")
  61841. },
  61842. "footSize": {
  61843. name: "Foot Size",
  61844. power: 1,
  61845. type: "length",
  61846. base: math.unit(0.68, "meters")
  61847. },
  61848. "cockLength": {
  61849. name: "Cock Length",
  61850. power: 1,
  61851. type: "length",
  61852. base: math.unit(1.69, "meters")
  61853. },
  61854. "ballVolume": {
  61855. name: "Ball Volume",
  61856. power: 3,
  61857. type: "volume",
  61858. base: math.unit(0.028, "m^3")
  61859. },
  61860. }
  61861. },
  61862. front: {
  61863. height: math.unit(5, "meters"),
  61864. weight: math.unit(2000, "kg"),
  61865. preyCapacity: math.unit(3, "people"),
  61866. name: "Front",
  61867. image: {
  61868. source: "./media/characters/zeanlain/front.svg",
  61869. extra: 1087/938,
  61870. bottom: 93/1180
  61871. },
  61872. extraAttributes: {
  61873. "wingspan": {
  61874. name: "Wingspan",
  61875. power: 1,
  61876. type: "length",
  61877. base: math.unit(10, "meters")
  61878. },
  61879. "footSize": {
  61880. name: "Foot Size",
  61881. power: 1,
  61882. type: "length",
  61883. base: math.unit(0.68, "meters")
  61884. },
  61885. }
  61886. },
  61887. },
  61888. [
  61889. {
  61890. name: "Normal",
  61891. height: math.unit(5, "meters"),
  61892. default: true
  61893. },
  61894. ]
  61895. ))
  61896. characterMakers.push(() => makeCharacter(
  61897. { name: "Airamis", species: ["aeromorph", "dragon"], tags: ["anthro"] },
  61898. {
  61899. front: {
  61900. height: math.unit(10, "meters"),
  61901. weight: math.unit(250000, "kg"),
  61902. name: "Front",
  61903. image: {
  61904. source: "./media/characters/airamis/front.svg",
  61905. extra: 865/835,
  61906. bottom: 13/878
  61907. }
  61908. },
  61909. },
  61910. [
  61911. {
  61912. name: "Normal",
  61913. height: math.unit(10, "meters"),
  61914. default: true
  61915. },
  61916. ]
  61917. ))
  61918. characterMakers.push(() => makeCharacter(
  61919. { name: "Corra Tourmaline", species: ["vaporeon"], tags: ["anthro"] },
  61920. {
  61921. front: {
  61922. height: math.unit(3 + 3/12, "feet"),
  61923. weight: math.unit(75, "lb"),
  61924. name: "Front",
  61925. image: {
  61926. source: "./media/characters/corra-tourmaline/front.svg",
  61927. extra: 1037/864,
  61928. bottom: 39/1076
  61929. }
  61930. },
  61931. back: {
  61932. height: math.unit(3 + 3/12, "feet"),
  61933. weight: math.unit(75, "lb"),
  61934. name: "Back",
  61935. image: {
  61936. source: "./media/characters/corra-tourmaline/back.svg",
  61937. extra: 1022/849,
  61938. bottom: 26/1048
  61939. }
  61940. },
  61941. dressed: {
  61942. height: math.unit(3 + 3/12, "feet"),
  61943. weight: math.unit(75, "lb"),
  61944. name: "Dressed",
  61945. image: {
  61946. source: "./media/characters/corra-tourmaline/dressed.svg",
  61947. extra: 1037/864,
  61948. bottom: 39/1076
  61949. }
  61950. },
  61951. beans: {
  61952. height: math.unit(0.37, "feet"),
  61953. name: "Beans",
  61954. image: {
  61955. source: "./media/characters/corra-tourmaline/beans.svg"
  61956. }
  61957. },
  61958. },
  61959. [
  61960. {
  61961. name: "Normal",
  61962. height: math.unit(3 + 3/12, "feet"),
  61963. default: true
  61964. },
  61965. {
  61966. name: "Macro",
  61967. height: math.unit(32, "feet")
  61968. },
  61969. ]
  61970. ))
  61971. characterMakers.push(() => makeCharacter(
  61972. { name: "Maki Kawa", species: ["sabertooth-tiger", "serval"], tags: ["anthro"] },
  61973. {
  61974. front: {
  61975. height: math.unit(6 + 2/12, "feet"),
  61976. weight: math.unit(203, "lb"),
  61977. name: "Front",
  61978. image: {
  61979. source: "./media/characters/maki-kawa/front.svg",
  61980. extra: 950/890,
  61981. bottom: 62/1012
  61982. }
  61983. },
  61984. back: {
  61985. height: math.unit(6 + 2/12, "feet"),
  61986. weight: math.unit(203, "lb"),
  61987. name: "Back",
  61988. image: {
  61989. source: "./media/characters/maki-kawa/back.svg",
  61990. extra: 953/878,
  61991. bottom: 49/1002
  61992. }
  61993. },
  61994. frontBarista: {
  61995. height: math.unit(6 + 2/12, "feet"),
  61996. weight: math.unit(203, "lb"),
  61997. name: "Front (Barista)",
  61998. image: {
  61999. source: "./media/characters/maki-kawa/front-barista.svg",
  62000. extra: 943/883,
  62001. bottom: 69/1012
  62002. }
  62003. },
  62004. backBarista: {
  62005. height: math.unit(6 + 2/12, "feet"),
  62006. weight: math.unit(203, "lb"),
  62007. name: "Back (Barista)",
  62008. image: {
  62009. source: "./media/characters/maki-kawa/back-barista.svg",
  62010. extra: 953/878,
  62011. bottom: 49/1002
  62012. }
  62013. },
  62014. frontWrestler: {
  62015. height: math.unit(6 + 2/12, "feet"),
  62016. weight: math.unit(203, "lb"),
  62017. name: "Front (Wrestler)",
  62018. image: {
  62019. source: "./media/characters/maki-kawa/front-wrestler.svg",
  62020. extra: 950/890,
  62021. bottom: 62/1012
  62022. }
  62023. },
  62024. backWrestler: {
  62025. height: math.unit(6 + 2/12, "feet"),
  62026. weight: math.unit(203, "lb"),
  62027. name: "Back (Wrestler)",
  62028. image: {
  62029. source: "./media/characters/maki-kawa/back-wrestler.svg",
  62030. extra: 953/878,
  62031. bottom: 49/1002
  62032. }
  62033. },
  62034. headFront: {
  62035. height: math.unit(1.64, "feet"),
  62036. name: "Head (Front)",
  62037. image: {
  62038. source: "./media/characters/maki-kawa/head-front.svg"
  62039. }
  62040. },
  62041. headSide: {
  62042. height: math.unit(1.59, "feet"),
  62043. name: "Head (Side)",
  62044. image: {
  62045. source: "./media/characters/maki-kawa/head-side.svg"
  62046. }
  62047. },
  62048. paw: {
  62049. height: math.unit(0.9, "feet"),
  62050. name: "Paw",
  62051. image: {
  62052. source: "./media/characters/maki-kawa/paw.svg"
  62053. }
  62054. },
  62055. },
  62056. [
  62057. {
  62058. name: "Normal",
  62059. height: math.unit(6 + 2/12, "feet"),
  62060. default: true
  62061. },
  62062. {
  62063. name: "Macro",
  62064. height: math.unit(617, "feet")
  62065. },
  62066. ]
  62067. ))
  62068. characterMakers.push(() => makeCharacter(
  62069. { name: "Lennox", species: ["wolf"], tags: ["anthro"] },
  62070. {
  62071. front: {
  62072. height: math.unit(10, "feet"),
  62073. weight: math.unit(1500, "lb"),
  62074. name: "Front",
  62075. image: {
  62076. source: "./media/characters/lennox/front.svg",
  62077. extra: 1623/1496,
  62078. bottom: 18/1641
  62079. }
  62080. },
  62081. back: {
  62082. height: math.unit(10, "feet"),
  62083. weight: math.unit(1500, "lb"),
  62084. name: "Back",
  62085. image: {
  62086. source: "./media/characters/lennox/back.svg",
  62087. extra: 1641/1481,
  62088. bottom: 13/1654
  62089. }
  62090. },
  62091. maw: {
  62092. height: math.unit(2.94, "feet"),
  62093. name: "Maw",
  62094. image: {
  62095. source: "./media/characters/lennox/maw.svg"
  62096. }
  62097. },
  62098. },
  62099. [
  62100. {
  62101. name: "Micro",
  62102. height: math.unit(1, "inch")
  62103. },
  62104. {
  62105. name: "Normal",
  62106. height: math.unit(10, "feet"),
  62107. default: true
  62108. },
  62109. {
  62110. name: "Macro",
  62111. height: math.unit(200, "feet")
  62112. },
  62113. ]
  62114. ))
  62115. characterMakers.push(() => makeCharacter(
  62116. { name: "Vyse Iron-Thunder", species: ["luxray", "shiny"], tags: ["anthro"] },
  62117. {
  62118. frontDressed: {
  62119. height: math.unit(15 + 7/12, "feet"),
  62120. weight: math.unit(5000, "lb"),
  62121. name: "Front (Dressed)",
  62122. image: {
  62123. source: "./media/characters/vyse-iron-thunder/front-dressed.svg",
  62124. extra: 1136/1023,
  62125. bottom: 51/1187
  62126. }
  62127. },
  62128. backDressed: {
  62129. height: math.unit(15 + 7/12, "feet"),
  62130. weight: math.unit(5000, "lb"),
  62131. name: "Back (Dressed)",
  62132. image: {
  62133. source: "./media/characters/vyse-iron-thunder/back-dressed.svg",
  62134. extra: 2359/2143,
  62135. bottom: 103/2462
  62136. }
  62137. },
  62138. front: {
  62139. height: math.unit(15 + 7/12, "feet"),
  62140. weight: math.unit(5000, "lb"),
  62141. name: "Front",
  62142. image: {
  62143. source: "./media/characters/vyse-iron-thunder/front.svg",
  62144. extra: 1136/1023,
  62145. bottom: 51/1187
  62146. }
  62147. },
  62148. hand: {
  62149. height: math.unit(2.36, "feet"),
  62150. name: "Hand",
  62151. image: {
  62152. source: "./media/characters/vyse-iron-thunder/hand.svg"
  62153. }
  62154. },
  62155. foot: {
  62156. height: math.unit(1.72, "feet"),
  62157. name: "Foot",
  62158. image: {
  62159. source: "./media/characters/vyse-iron-thunder/foot.svg"
  62160. }
  62161. },
  62162. mouth: {
  62163. height: math.unit(2, "feet"),
  62164. name: "Mouth",
  62165. image: {
  62166. source: "./media/characters/vyse-iron-thunder/mouth.svg"
  62167. }
  62168. },
  62169. eye: {
  62170. height: math.unit(0.58, "feet"),
  62171. name: "Eye",
  62172. image: {
  62173. source: "./media/characters/vyse-iron-thunder/eye.svg"
  62174. }
  62175. },
  62176. },
  62177. [
  62178. {
  62179. name: "Normal",
  62180. height: math.unit(15 + 7/12, "feet"),
  62181. default: true
  62182. },
  62183. {
  62184. name: "Macro",
  62185. height: math.unit(157, "feet")
  62186. },
  62187. {
  62188. name: "Macro+",
  62189. height: math.unit(1570, "feet")
  62190. },
  62191. {
  62192. name: "Macro++",
  62193. height: math.unit(15700, "feet")
  62194. },
  62195. {
  62196. name: "Macro+++",
  62197. height: math.unit(157000, "feet")
  62198. },
  62199. {
  62200. name: "Macro++++",
  62201. height: math.unit(1570000, "feet")
  62202. },
  62203. ]
  62204. ))
  62205. characterMakers.push(() => makeCharacter(
  62206. { name: "Moonbeam", species: ["latex", "wolf"], tags: ["feral"] },
  62207. {
  62208. side: {
  62209. height: math.unit(6, "feet"),
  62210. weight: math.unit(115, "lb"),
  62211. name: "Side",
  62212. image: {
  62213. source: "./media/characters/moonbeam/side.svg",
  62214. extra: 839/485,
  62215. bottom: 60/899
  62216. }
  62217. },
  62218. },
  62219. [
  62220. {
  62221. name: "Normal",
  62222. height: math.unit(6, "feet"),
  62223. default: true
  62224. },
  62225. ]
  62226. ))
  62227. characterMakers.push(() => makeCharacter(
  62228. { name: "Baltica", species: ["orca"], tags: ["anthro"] },
  62229. {
  62230. front: {
  62231. height: math.unit(3500, "miles"),
  62232. weight: math.unit(1659, "petatonnes"),
  62233. name: "Front",
  62234. image: {
  62235. source: "./media/characters/baltica/front.svg",
  62236. extra: 429/428,
  62237. bottom: 41/470
  62238. }
  62239. },
  62240. back: {
  62241. height: math.unit(3500, "miles"),
  62242. weight: math.unit(1659, "petatonnes"),
  62243. name: "Back",
  62244. image: {
  62245. source: "./media/characters/baltica/back.svg",
  62246. extra: 452/451,
  62247. bottom: 8/460
  62248. }
  62249. },
  62250. },
  62251. [
  62252. {
  62253. name: "Gigamacro",
  62254. height: math.unit(3500, "miles"),
  62255. default: true
  62256. },
  62257. ]
  62258. ))
  62259. characterMakers.push(() => makeCharacter(
  62260. { name: "Shadow (Wolf)", species: ["wolf", "demi"], tags: ["anthro"] },
  62261. {
  62262. front: {
  62263. height: math.unit(6 + 10/12, "feet"),
  62264. weight: math.unit(200, "lb"),
  62265. name: "Front",
  62266. image: {
  62267. source: "./media/characters/shadow-wolf/front.svg",
  62268. extra: 1931/1760,
  62269. bottom: 88/2019
  62270. }
  62271. },
  62272. },
  62273. [
  62274. {
  62275. name: "Normal",
  62276. height: math.unit(6 + 10/12, "feet"),
  62277. default: true
  62278. },
  62279. ]
  62280. ))
  62281. characterMakers.push(() => makeCharacter(
  62282. { name: "Quincy (Praying Mantis)", species: ["praying-mantis"], tags: ["anthro"] },
  62283. {
  62284. front: {
  62285. height: math.unit(5 + 10/12, "feet"),
  62286. name: "Front",
  62287. image: {
  62288. source: "./media/characters/quincy-praying-mantis/front.svg",
  62289. extra: 1055/891,
  62290. bottom: 92/1147
  62291. }
  62292. },
  62293. soles: {
  62294. height: math.unit(0.85, "feet"),
  62295. name: "Soles",
  62296. image: {
  62297. source: "./media/characters/quincy-praying-mantis/soles.svg",
  62298. extra: 429/324,
  62299. bottom: 89/518
  62300. },
  62301. extraAttributes: {
  62302. "shoeSize": {
  62303. name: "Shoe Size",
  62304. power: 1,
  62305. type: "length",
  62306. base: math.unit(23, "ShoeSizeMensUS"),
  62307. defaultUnit: "ShoeSizeMensUS"
  62308. },
  62309. }
  62310. },
  62311. foot: {
  62312. height: math.unit(0.72, "feet"),
  62313. name: "Foot",
  62314. image: {
  62315. source: "./media/characters/quincy-praying-mantis/foot.svg",
  62316. extra: 349/349,
  62317. bottom: 76/425
  62318. }
  62319. },
  62320. },
  62321. [
  62322. {
  62323. name: "Normal",
  62324. height: math.unit(5 + 10/12, "feet"),
  62325. default: true
  62326. },
  62327. ]
  62328. ))
  62329. characterMakers.push(() => makeCharacter(
  62330. { name: "Christopher Redwood", species: ["gray-wolf"], tags: ["anthro"] },
  62331. {
  62332. front: {
  62333. height: math.unit(6, "feet"),
  62334. name: "Front",
  62335. image: {
  62336. source: "./media/characters/christopher-redwood/front.svg",
  62337. extra: 1402/1341,
  62338. bottom: 23/1425
  62339. }
  62340. },
  62341. back: {
  62342. height: math.unit(6, "feet"),
  62343. name: "Back",
  62344. image: {
  62345. source: "./media/characters/christopher-redwood/back.svg",
  62346. extra: 1406/1345,
  62347. bottom: 36/1442
  62348. }
  62349. },
  62350. head: {
  62351. height: math.unit(1.685, "feet"),
  62352. name: "Head",
  62353. image: {
  62354. source: "./media/characters/christopher-redwood/head.svg"
  62355. }
  62356. },
  62357. },
  62358. [
  62359. {
  62360. name: "Normal",
  62361. height: math.unit(6, "feet"),
  62362. default: true
  62363. },
  62364. ]
  62365. ))
  62366. characterMakers.push(() => makeCharacter(
  62367. { name: "Kara (Fox)", species: ["fox"], tags: ["anthro"] },
  62368. {
  62369. front: {
  62370. height: math.unit(1.9, "meters"),
  62371. weight: math.unit(140, "lb"),
  62372. name: "Front",
  62373. image: {
  62374. source: "./media/characters/kara-fox/front.svg",
  62375. extra: 766/711,
  62376. bottom: 41/807
  62377. }
  62378. },
  62379. back: {
  62380. height: math.unit(1.9, "meters"),
  62381. weight: math.unit(140, "lb"),
  62382. name: "Back",
  62383. image: {
  62384. source: "./media/characters/kara-fox/back.svg",
  62385. extra: 766/596,
  62386. bottom: 29/795
  62387. }
  62388. },
  62389. maw: {
  62390. height: math.unit(0.78, "feet"),
  62391. name: "Maw",
  62392. image: {
  62393. source: "./media/characters/kara-fox/maw.svg"
  62394. }
  62395. },
  62396. pawpads: {
  62397. height: math.unit(0.96, "feet"),
  62398. name: "Pawpads",
  62399. image: {
  62400. source: "./media/characters/kara-fox/pawpads.svg"
  62401. }
  62402. },
  62403. },
  62404. [
  62405. {
  62406. name: "Normal",
  62407. height: math.unit(1.9, "meters"),
  62408. default: true
  62409. },
  62410. {
  62411. name: "Giantess",
  62412. height: math.unit(80, "meters")
  62413. },
  62414. ]
  62415. ))
  62416. characterMakers.push(() => makeCharacter(
  62417. { name: "Naomi (Espeon)", species: ["espeon"], tags: ["anthro"] },
  62418. {
  62419. front: {
  62420. height: math.unit(12, "feet"),
  62421. name: "Front",
  62422. image: {
  62423. source: "./media/characters/naomi-espeon/front.svg",
  62424. extra: 892/797,
  62425. bottom: 5/897
  62426. }
  62427. },
  62428. back: {
  62429. height: math.unit(12, "feet"),
  62430. name: "Back",
  62431. image: {
  62432. source: "./media/characters/naomi-espeon/back.svg",
  62433. extra: 890/785,
  62434. bottom: 12/902
  62435. }
  62436. },
  62437. },
  62438. [
  62439. {
  62440. name: "Normal",
  62441. height: math.unit(12, "feet"),
  62442. default: true
  62443. },
  62444. ]
  62445. ))
  62446. characterMakers.push(() => makeCharacter(
  62447. { name: "Asher Heulfyrn", species: ["skullwolf"], tags: ["anthro", "taur"] },
  62448. {
  62449. anthro_front: {
  62450. height: math.unit(8, "feet"),
  62451. weight: math.unit(625, "lb"),
  62452. name: "Front",
  62453. image: {
  62454. source: "./media/characters/asher-heulfyrn/anthro-front.svg",
  62455. extra: 638/574,
  62456. bottom: 73/711
  62457. },
  62458. form: "anthro",
  62459. default: true
  62460. },
  62461. anthro_back: {
  62462. height: math.unit(8, "feet"),
  62463. weight: math.unit(625, "lb"),
  62464. name: "Back",
  62465. image: {
  62466. source: "./media/characters/asher-heulfyrn/anthro-back.svg",
  62467. extra: 674/614,
  62468. bottom: 7/681
  62469. },
  62470. form: "anthro",
  62471. },
  62472. taur_side: {
  62473. height: math.unit(16, "feet"),
  62474. weight: math.unit(4.5, "tons"),
  62475. name: "Side",
  62476. image: {
  62477. source: "./media/characters/asher-heulfyrn/taur-side.svg",
  62478. extra: 704/646,
  62479. bottom: 132/836
  62480. },
  62481. form: "taur",
  62482. default: true
  62483. },
  62484. },
  62485. [
  62486. {
  62487. name: "Normal",
  62488. height: math.unit(8, "feet"),
  62489. default: true,
  62490. form: "anthro"
  62491. },
  62492. {
  62493. name: "Normal",
  62494. height: math.unit(16, "feet"),
  62495. default: true,
  62496. form: "taur"
  62497. },
  62498. ],
  62499. {
  62500. "anthro": {
  62501. name: "Anthro",
  62502. default: true
  62503. },
  62504. "taur": {
  62505. name: "Taur",
  62506. },
  62507. }
  62508. ))
  62509. characterMakers.push(() => makeCharacter(
  62510. { name: "Amelie", species: ["ferrin"], tags: ["anthro"] },
  62511. {
  62512. front: {
  62513. height: math.unit(190, "cm"),
  62514. weight: math.unit(110, "kg"),
  62515. name: "Front",
  62516. image: {
  62517. source: "./media/characters/amelie/front.svg",
  62518. extra: 530/442,
  62519. bottom: 35/565
  62520. }
  62521. },
  62522. },
  62523. [
  62524. {
  62525. name: "Normal",
  62526. height: math.unit(190, "cm"),
  62527. default: true
  62528. },
  62529. ]
  62530. ))
  62531. characterMakers.push(() => makeCharacter(
  62532. { name: "Valence", species: ["skulldragon"], tags: ["anthro"] },
  62533. {
  62534. front: {
  62535. height: math.unit(21, "feet"),
  62536. weight: math.unit(30000, "lb"),
  62537. name: "Front",
  62538. image: {
  62539. source: "./media/characters/valence/front.svg",
  62540. extra: 1430/1306,
  62541. bottom: 51/1481
  62542. }
  62543. },
  62544. },
  62545. [
  62546. {
  62547. name: "Normal",
  62548. height: math.unit(21, "feet"),
  62549. default: true
  62550. },
  62551. ]
  62552. ))
  62553. characterMakers.push(() => makeCharacter(
  62554. { name: "Aurora Adkins", species: ["rusty-spotted-cat"], tags: ["anthro"] },
  62555. {
  62556. front: {
  62557. height: math.unit(5 + 9/12, "feet"),
  62558. weight: math.unit(170, "lb"),
  62559. name: "Front",
  62560. image: {
  62561. source: "./media/characters/aurora-adkins/front.svg",
  62562. extra: 1141/1089,
  62563. bottom: 41/1182
  62564. }
  62565. },
  62566. },
  62567. [
  62568. {
  62569. name: "Tiny",
  62570. height: math.unit(7, "mm")
  62571. },
  62572. {
  62573. name: "Small",
  62574. height: math.unit(3.4, "inches")
  62575. },
  62576. {
  62577. name: "Normal",
  62578. height: math.unit(5 + 9/12, "feet"),
  62579. default: true
  62580. },
  62581. {
  62582. name: "Big",
  62583. height: math.unit(31, "feet")
  62584. },
  62585. {
  62586. name: "Giant",
  62587. height: math.unit(300, "feet")
  62588. },
  62589. ]
  62590. ))
  62591. characterMakers.push(() => makeCharacter(
  62592. { name: "Cyber", species: ["maned-wolf", "lynx", "deity"], tags: ["anthro"] },
  62593. {
  62594. front: {
  62595. height: math.unit(5 + 6/12, "feet"),
  62596. weight: math.unit(210, "lb"),
  62597. name: "Front",
  62598. image: {
  62599. source: "./media/characters/cyber/front.svg",
  62600. extra: 1968/1798,
  62601. bottom: 10/1978
  62602. },
  62603. extraAttributes: {
  62604. "shoeSize": {
  62605. name: "Shoe Size",
  62606. power: 1,
  62607. type: "length",
  62608. base: math.unit(30, "ShoeSizeMensUS")
  62609. },
  62610. }
  62611. },
  62612. },
  62613. [
  62614. {
  62615. name: "Normal",
  62616. height: math.unit(5 + 6/12, "feet"),
  62617. default: true
  62618. },
  62619. ]
  62620. ))
  62621. characterMakers.push(() => makeCharacter(
  62622. { name: "Sapphire Wairimea", species: ["elf"], tags: ["anthro"] },
  62623. {
  62624. front: {
  62625. height: math.unit(6 + 6/12, "feet"),
  62626. weight: math.unit(140, "lb"),
  62627. name: "Front",
  62628. image: {
  62629. source: "./media/characters/sapphire-wairimea/front.svg",
  62630. extra: 475/458,
  62631. bottom: 14/489
  62632. }
  62633. },
  62634. },
  62635. [
  62636. {
  62637. name: "Normal",
  62638. height: math.unit(6 + 6/12, "feet")
  62639. },
  62640. {
  62641. name: "Macro",
  62642. height: math.unit(132, "feet"),
  62643. default: true
  62644. },
  62645. ]
  62646. ))
  62647. characterMakers.push(() => makeCharacter(
  62648. { name: "Cirkazi", species: ["elf"], tags: ["anthro"] },
  62649. {
  62650. front: {
  62651. height: math.unit(1.6, "meters"),
  62652. weight: math.unit(100, "lb"),
  62653. name: "Front",
  62654. image: {
  62655. source: "./media/characters/cirkazi/front.svg",
  62656. extra: 489/477,
  62657. bottom: 0/489
  62658. }
  62659. },
  62660. },
  62661. [
  62662. {
  62663. name: "Normal",
  62664. height: math.unit(1.6, "meters")
  62665. },
  62666. {
  62667. name: "Macro",
  62668. height: math.unit(800, "feet"),
  62669. default: true
  62670. },
  62671. ]
  62672. ))
  62673. characterMakers.push(() => makeCharacter(
  62674. { name: "Corrin Cavelli", species: ["human"], tags: ["anthro"] },
  62675. {
  62676. front: {
  62677. height: math.unit(5 + 10/12, "feet"),
  62678. weight: math.unit(145, "lb"),
  62679. name: "Front",
  62680. image: {
  62681. source: "./media/characters/corrin-cavelli/front.svg",
  62682. extra: 483/464,
  62683. bottom: 6/489
  62684. }
  62685. },
  62686. },
  62687. [
  62688. {
  62689. name: "Human",
  62690. height: math.unit(5 + 10/12, "feet")
  62691. },
  62692. {
  62693. name: "Giant",
  62694. height: math.unit(210, "feet"),
  62695. default: true
  62696. },
  62697. ]
  62698. ))
  62699. characterMakers.push(() => makeCharacter(
  62700. { name: "Lori Lopez", species: ["human"], tags: ["anthro"] },
  62701. {
  62702. back: {
  62703. height: math.unit(5 + 6/12, "feet"),
  62704. weight: math.unit(115, "lb"),
  62705. name: "Back",
  62706. image: {
  62707. source: "./media/characters/lori-lopez/back.svg",
  62708. extra: 483/474,
  62709. bottom: 6/489
  62710. }
  62711. },
  62712. },
  62713. [
  62714. {
  62715. name: "Human",
  62716. height: math.unit(5 + 6/12, "feet")
  62717. },
  62718. {
  62719. name: "Macro",
  62720. height: math.unit(198, "feet"),
  62721. default: true
  62722. },
  62723. ]
  62724. ))
  62725. characterMakers.push(() => makeCharacter(
  62726. { name: "Sylvia Beauregard", species: ["human"], tags: ["anthro"] },
  62727. {
  62728. front: {
  62729. height: math.unit(6, "feet"),
  62730. weight: math.unit(220, "lb"),
  62731. name: "Front",
  62732. image: {
  62733. source: "./media/characters/sylvia-beauregard/front.svg",
  62734. extra: 483/479,
  62735. bottom: 6/489
  62736. }
  62737. },
  62738. },
  62739. [
  62740. {
  62741. name: "Macro",
  62742. height: math.unit(2071, "feet"),
  62743. default: true
  62744. },
  62745. ]
  62746. ))
  62747. characterMakers.push(() => makeCharacter(
  62748. { name: "Akiko Takahashi", species: ["human"], tags: ["anthro"] },
  62749. {
  62750. back: {
  62751. height: math.unit(5 + 6/12, "feet"),
  62752. weight: math.unit(160, "lb"),
  62753. name: "Back",
  62754. image: {
  62755. source: "./media/characters/akiko-takahashi/back.svg",
  62756. extra: 459/454,
  62757. bottom: 27/486
  62758. }
  62759. },
  62760. },
  62761. [
  62762. {
  62763. name: "Human",
  62764. height: math.unit(5 + 6/12, "feet")
  62765. },
  62766. {
  62767. name: "Macro",
  62768. height: math.unit(198, "feet"),
  62769. default: true
  62770. },
  62771. {
  62772. name: "Megamacro",
  62773. height: math.unit(7128, "feet")
  62774. },
  62775. ]
  62776. ))
  62777. characterMakers.push(() => makeCharacter(
  62778. { name: "Velvet Garza", species: ["human"], tags: ["anthro"] },
  62779. {
  62780. front: {
  62781. height: math.unit(6, "feet"),
  62782. weight: math.unit(140, "lb"),
  62783. name: "Front",
  62784. image: {
  62785. source: "./media/characters/velvet-garza/front.svg",
  62786. extra: 480/462,
  62787. bottom: 7/487
  62788. }
  62789. },
  62790. },
  62791. [
  62792. {
  62793. name: "Macro",
  62794. height: math.unit(37, "feet"),
  62795. default: true
  62796. },
  62797. ]
  62798. ))
  62799. characterMakers.push(() => makeCharacter(
  62800. { name: "Gaia", species: ["deity", "human"], tags: ["anthro"] },
  62801. {
  62802. front: {
  62803. height: math.unit(7 + 6/12, "feet"),
  62804. weight: math.unit(400, "lb"),
  62805. name: "Front",
  62806. image: {
  62807. source: "./media/characters/gaia/front.svg",
  62808. extra: 474/463,
  62809. bottom: 13/487
  62810. }
  62811. },
  62812. },
  62813. [
  62814. {
  62815. name: "MiniMacro",
  62816. height: math.unit(7 + 6/12, "feet")
  62817. },
  62818. {
  62819. name: "GigaMacro",
  62820. height: math.unit(14500, "feet"),
  62821. default: true
  62822. },
  62823. ]
  62824. ))
  62825. characterMakers.push(() => makeCharacter(
  62826. { name: "Tim", species: ["rabbit"], tags: ["anthro"] },
  62827. {
  62828. front: {
  62829. height: math.unit(6, "feet"),
  62830. weight: math.unit(150, "lb"),
  62831. name: "Front",
  62832. image: {
  62833. source: "./media/characters/tim/front.svg",
  62834. extra: 1878/1743,
  62835. bottom: 9/1887
  62836. }
  62837. },
  62838. frontDressed: {
  62839. height: math.unit(6, "feet"),
  62840. weight: math.unit(150, "lb"),
  62841. name: "Front (Dressed)",
  62842. image: {
  62843. source: "./media/characters/tim/front-dressed.svg",
  62844. extra: 1765/1485,
  62845. bottom: 48/1813
  62846. }
  62847. },
  62848. backDressed: {
  62849. height: math.unit(6, "feet"),
  62850. weight: math.unit(150, "lb"),
  62851. name: "Back (Dressed)",
  62852. image: {
  62853. source: "./media/characters/tim/back-dressed.svg",
  62854. extra: 1750/1465,
  62855. bottom: 25/1775
  62856. }
  62857. },
  62858. dick: {
  62859. height: math.unit(1.5, "feet"),
  62860. weight: math.unit(6, "lb"),
  62861. name: "Dick",
  62862. image: {
  62863. source: "./media/characters/tim/dick.svg"
  62864. }
  62865. },
  62866. hand: {
  62867. height: math.unit(0.522, "feet"),
  62868. name: "Hand",
  62869. image: {
  62870. source: "./media/characters/tim/hand.svg"
  62871. }
  62872. },
  62873. palm: {
  62874. height: math.unit(0.48, "feet"),
  62875. name: "Palm",
  62876. image: {
  62877. source: "./media/characters/tim/palm.svg"
  62878. }
  62879. },
  62880. paw: {
  62881. height: math.unit(0.9, "feet"),
  62882. name: "Paw",
  62883. image: {
  62884. source: "./media/characters/tim/paw.svg"
  62885. }
  62886. },
  62887. sole: {
  62888. height: math.unit(0.88, "feet"),
  62889. name: "Sole",
  62890. image: {
  62891. source: "./media/characters/tim/sole.svg"
  62892. }
  62893. },
  62894. },
  62895. [
  62896. {
  62897. name: "Macro",
  62898. height: math.unit(1000, "feet")
  62899. },
  62900. {
  62901. name: "Megamacro",
  62902. height: math.unit(10000, "feet"),
  62903. default: true
  62904. },
  62905. {
  62906. name: "Megamacro+",
  62907. height: math.unit(50000, "feet")
  62908. },
  62909. {
  62910. name: "Gigamacro",
  62911. height: math.unit(150000, "km")
  62912. },
  62913. ]
  62914. ))
  62915. characterMakers.push(() => makeCharacter(
  62916. { name: "Abel Delreoux", species: ["maine-coon"], tags: ["anthro"] },
  62917. {
  62918. front: {
  62919. height: math.unit(5 + 8/12, "feet"),
  62920. weight: math.unit(170, "lb"),
  62921. name: "Front",
  62922. image: {
  62923. source: "./media/characters/abel-delreoux/front.svg",
  62924. extra: 1615/1500,
  62925. bottom: 82/1697
  62926. }
  62927. },
  62928. back: {
  62929. height: math.unit(5 + 8/12, "feet"),
  62930. weight: math.unit(170, "lb"),
  62931. name: "Back",
  62932. image: {
  62933. source: "./media/characters/abel-delreoux/back.svg",
  62934. extra: 1644/1534,
  62935. bottom: 24/1668
  62936. }
  62937. },
  62938. casual: {
  62939. height: math.unit(5 + 8/12, "feet"),
  62940. weight: math.unit(170, "lb"),
  62941. name: "Casual",
  62942. image: {
  62943. source: "./media/characters/abel-delreoux/casual.svg",
  62944. extra: 1716/1598,
  62945. bottom: 29/1745
  62946. }
  62947. },
  62948. sleepy: {
  62949. height: math.unit(5 + 8/12, "feet"),
  62950. weight: math.unit(170, "lb"),
  62951. name: "Sleepy",
  62952. image: {
  62953. source: "./media/characters/abel-delreoux/sleepy.svg",
  62954. extra: 1649/1573,
  62955. bottom: 22/1671
  62956. }
  62957. },
  62958. fem: {
  62959. height: math.unit(5 + 8/12, "feet"),
  62960. weight: math.unit(170, "lb"),
  62961. name: "Fem",
  62962. image: {
  62963. source: "./media/characters/abel-delreoux/fem.svg",
  62964. extra: 1680/1564,
  62965. bottom: 17/1697
  62966. }
  62967. },
  62968. hand: {
  62969. height: math.unit(0.78, "feet"),
  62970. name: "Hand",
  62971. image: {
  62972. source: "./media/characters/abel-delreoux/hand.svg"
  62973. }
  62974. },
  62975. paw: {
  62976. height: math.unit(0.78, "feet"),
  62977. name: "Paw",
  62978. image: {
  62979. source: "./media/characters/abel-delreoux/paw.svg"
  62980. }
  62981. },
  62982. },
  62983. [
  62984. {
  62985. name: "Normal",
  62986. height: math.unit(5 + 8/12, "feet"),
  62987. default: true
  62988. },
  62989. ]
  62990. ))
  62991. characterMakers.push(() => makeCharacter(
  62992. { name: "Meus", species: ["phoenix"], tags: ["anthro"] },
  62993. {
  62994. front: {
  62995. height: math.unit(6, "feet"),
  62996. weight: math.unit(159, "lb"),
  62997. name: "Front",
  62998. image: {
  62999. source: "./media/characters/meus/front.svg",
  63000. extra: 938/843,
  63001. bottom: 37/975
  63002. }
  63003. },
  63004. back: {
  63005. height: math.unit(6, "feet"),
  63006. weight: math.unit(159, "lb"),
  63007. name: "Back",
  63008. image: {
  63009. source: "./media/characters/meus/back.svg",
  63010. extra: 967/873,
  63011. bottom: 12/979
  63012. }
  63013. },
  63014. },
  63015. [
  63016. {
  63017. name: "Micro",
  63018. height: math.unit(2, "inches")
  63019. },
  63020. {
  63021. name: "Mini",
  63022. height: math.unit(6, "inches")
  63023. },
  63024. {
  63025. name: "Normal",
  63026. height: math.unit(6, "feet"),
  63027. default: true
  63028. },
  63029. {
  63030. name: "Macro",
  63031. height: math.unit(84, "feet")
  63032. },
  63033. ]
  63034. ))
  63035. characterMakers.push(() => makeCharacter(
  63036. { name: "Yamato", species: ["kobold"], tags: ["anthro"] },
  63037. {
  63038. front: {
  63039. height: math.unit(60, "cm"),
  63040. weight: math.unit(18, "kg"),
  63041. name: "Front",
  63042. image: {
  63043. source: "./media/characters/yamato/front.svg",
  63044. extra: 733/688,
  63045. bottom: 29/762
  63046. }
  63047. },
  63048. },
  63049. [
  63050. {
  63051. name: "Micro",
  63052. height: math.unit(6, "cm")
  63053. },
  63054. {
  63055. name: "Normal",
  63056. height: math.unit(60, "cm"),
  63057. default: true
  63058. },
  63059. ]
  63060. ))
  63061. characterMakers.push(() => makeCharacter(
  63062. { name: "Barus", species: ["deity"], tags: ["anthro"] },
  63063. {
  63064. front: {
  63065. height: math.unit(9, "feet"),
  63066. weight: math.unit(518, "lb"),
  63067. name: "Front",
  63068. image: {
  63069. source: "./media/characters/barus/front.svg",
  63070. extra: 1877/1795,
  63071. bottom: 55/1932
  63072. }
  63073. },
  63074. },
  63075. [
  63076. {
  63077. name: "Base Height",
  63078. height: math.unit(9, "feet"),
  63079. default: true
  63080. },
  63081. {
  63082. name: "Large",
  63083. height: math.unit(18, "feet")
  63084. },
  63085. {
  63086. name: "Giant",
  63087. height: math.unit(100, "feet")
  63088. },
  63089. {
  63090. name: "Huge",
  63091. height: math.unit(500, "feet")
  63092. },
  63093. {
  63094. name: "Enormous",
  63095. height: math.unit(300, "meters")
  63096. },
  63097. {
  63098. name: "Deity Among Man",
  63099. height: math.unit(3000, "meters")
  63100. },
  63101. ]
  63102. ))
  63103. //characters
  63104. function makeCharacters() {
  63105. const results = [];
  63106. characterMakers.forEach(character => {
  63107. results.push(character());
  63108. });
  63109. return results;
  63110. }